diff --git a/src/aks-agent/.gitignore b/src/aks-agent/.gitignore new file mode 100644 index 00000000000..3b4f4680dd2 --- /dev/null +++ b/src/aks-agent/.gitignore @@ -0,0 +1,3 @@ +# Ignore Poetry artifacts +poetry.lock +pyproject.toml diff --git a/src/aks-agent/azext_aks_agent/tests/evals/README.md b/src/aks-agent/azext_aks_agent/tests/evals/README.md new file mode 100644 index 00000000000..aaa22cd1e5c --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/README.md @@ -0,0 +1,142 @@ +# AKS Agent Evals + +## Environment Setup + +Create and activate a virtual environment (example shown for bash-compatible shells): + +```bash +python -m venv .venv +source .venv/bin/activate +python -m pip install --upgrade pip +python -m pip install -e . +``` + +Optional tooling used by the eval harness (Braintrust uploads and semantic classifier helpers): + +```bash +python -m pip install braintrust openai autoevals +``` + +## Running Live Scenarios + +```bash +RUN_LIVE=true \ +MODEL=azure/gpt-4.1 \ +CLASSIFIER_MODEL=azure/gpt-4o \ +AKS_AGENT_RESOURCE_GROUP= \ +AKS_AGENT_CLUSTER= \ +KUBECONFIG= \ +AZURE_API_KEY= \ +AZURE_API_BASE= \ +AZURE_API_VERSION= \ +python -m pytest azext_aks_agent/tests/evals/test_ask_agent.py -k 01_list_all_nodes -m aks_eval +``` + +Per-scenario overrides (`resource_group`, `cluster_name`, `kubeconfig`, `test_env_vars`) still apply. Use `--skip-setup` or `--skip-cleanup` to bypass hooks. Expect the test to log iteration progress, classifier scores, and (on the final iteration) a Braintrust link when uploads are enabled. + +**Example output (live run with classifier)** + +``` +[iteration 1/3] running setup commands for 01_list_all_nodes +[iteration 1/3] invoking AKS Agent CLI for 01_list_all_nodes +[iteration 1/3] classifier score for 01_list_all_nodes: 1 +[iteration 2/3] invoking AKS Agent CLI for 01_list_all_nodes +[iteration 2/3] classifier score for 01_list_all_nodes: 1 +[iteration 3/3] invoking AKS Agent CLI for 01_list_all_nodes +[iteration 3/3] classifier score for 01_list_all_nodes: 1 +... +🔍 Braintrust: https://www.braintrust.dev/app//p/aks-agent/experiments/aks-agent/... +``` + +## Mock Workflow + +```bash +# Generate fresh mocks from a live run +RUN_LIVE=true GENERATE_MOCKS=true \ +MODEL=azure/gpt-4.1 \ +AKS_AGENT_RESOURCE_GROUP= \ +AKS_AGENT_CLUSTER= \ +KUBECONFIG= \ +AZURE_API_KEY= \ +AZURE_API_BASE= \ +AZURE_API_VERSION= \ +python -m pytest azext_aks_agent/tests/evals/test_ask_agent.py -k 02_list_clusters -m aks_eval + +# Re-run offline using the recorded response +python -m pytest azext_aks_agent/tests/evals/test_ask_agent.py -k 02_list_clusters -m aks_eval +``` + +If a mock is missing, pytest skips the scenario with instructions to regenerate it. + +**Regression guardrails** + +- Mocked answers make iterations deterministic, so you can update parsing or prompts without waiting on live infrastructure. +- If you check in a new mock after behavior changes, reviewers see the exact diff in `mocks/response.txt`, making regressions obvious. +- CI can run `RUN_LIVE` off by default, catching logical regressions early without needing cluster credentials. + + +**Example skip (no mock present)** + +``` +azext_aks_agent/tests/evals/test_ask_agent.py::test_ask_agent_live[02_list_clusters] + SKIPPED: Mock response missing for scenario 02_list_clusters; rerun with RUN_LIVE=true GENERATE_MOCKS=true +``` + +## Braintrust Uploads + +Set the following environment variables to push results: + +- `BRAINTRUST_API_KEY` and `BRAINTRUST_ORG` (required) +- Optional overrides: `BRAINTRUST_PROJECT` (default `aks-agent`), `BRAINTRUST_DATASET` (default `aks-agent/ask`), `EXPERIMENT_ID` + +Each iteration logs to Braintrust; the console prints a clickable link (for aware terminals) when uploads succeed. + +**Tips** + +- Leave `EXPERIMENT_ID` unset to generate a fresh experiment name each run (`aks-agent//`). +- Use `BRAINTRUST_RUN_ID=` if you want deterministic experiment names across retries. +- The upload payload includes classifier score, rationale, raw CLI output, cluster, and resource group metadata for later filtering. + +## Semantic Classifier + +- Enabled by default; set `ENABLE_CLASSIFIER=false` to opt out. +- Requires Azure OpenAI credentials: `AZURE_API_BASE`, `AZURE_API_KEY`, `AZURE_API_VERSION`, and a classifier deployment specified via `CLASSIFIER_MODEL` (e.g. `azure/`). Defaults to the same deployment as `MODEL` when not provided. +- Install classifier dependencies when online (see Environment Setup above if not already installed). + +- Scenarios can override the grading style by adding: + + ```yaml + evaluation: + correctness: + type: loose # or strict (default) + ``` + +Classifier scores and rationales are attached to Braintrust uploads and printed in the pytest output metadata. + +**Debugging classifiers** + +``` +python -m pytest ... -o log_cli=true -o log_cli_level=DEBUG -s +``` + +Look for `classifier score ...` lines to confirm the semantic judge executed. + +## Iterations & Tags + +- `ITERATIONS=` repeats every scenario, useful for non-deterministic models. +- Filter suites with pytest markers: `-m aks_eval`, `-m easy`, `-m medium`, etc. + +## Troubleshooting + +- Missing mocks: rerun with `RUN_LIVE=true GENERATE_MOCKS=true`. +- Cleanup always executes unless `--skip-cleanup` is provided; check the `[cleanup]` log line. +- Braintrust disabled messages mean credentials or the SDK are missing. +- Classifier disabled messages usually indicate missing Azure settings (`AZURE_API_BASE`, `AZURE_API_KEY`, `AZURE_API_VERSION`). + +## Quick Checklist + +- Install dependencies inside a virtual environment (`python -m pip install -e .`) and, if needed, the optional tooling (`python -m pip install braintrust openai autoevals`). +- `RUN_LIVE=true`: set Azure creds (`AZURE_API_KEY`, `AZURE_API_BASE`, `AZURE_API_VERSION`), `MODEL`, kubeconfig, and optional Braintrust vars. +- `RUN_LIVE` unset/false: ensure each scenario directory has `mocks/response.txt`. +- Classifier overrides: `CLASSIFIER_MODEL` (defaults to `MODEL`) and per-scenario `evaluation.correctness.type`. +- Optional: `BRAINTRUST_RUN_ID=` to reuse experiment names across retries. diff --git a/src/aks-agent/azext_aks_agent/tests/evals/__init__.py b/src/aks-agent/azext_aks_agent/tests/evals/__init__.py new file mode 100644 index 00000000000..34913fb394d --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/__init__.py @@ -0,0 +1,4 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- diff --git a/src/aks-agent/azext_aks_agent/tests/evals/braintrust_uploader.py b/src/aks-agent/azext_aks_agent/tests/evals/braintrust_uploader.py new file mode 100644 index 00000000000..d7092fce873 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/braintrust_uploader.py @@ -0,0 +1,216 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from __future__ import annotations + +import logging +import os +from dataclasses import dataclass +from typing import Any, Dict, Mapping, Optional +from urllib.parse import quote + +LOGGER = logging.getLogger(__name__) + + +@dataclass +class BraintrustMetadata: + project: str + dataset: str + experiment: Optional[str] + api_key: str + org: str + + +class BraintrustUploader: + """Uploads eval results to Braintrust when credentials and SDK are available.""" + + def __init__(self, env: Mapping[str, str | None]) -> None: + self._env = env + self._metadata = self._load_metadata(env) + self._enabled = self._metadata is not None + self._braintrust = None + self._dataset = None + self._experiments: Dict[str, Any] = {} + self._warning_emitted = False + + @staticmethod + def _load_metadata(env: Mapping[str, str | None]) -> Optional[BraintrustMetadata]: + api_key = env.get("BRAINTRUST_API_KEY") or "" + org = env.get("BRAINTRUST_ORG") or "" + if not api_key or not org: + return None + project = env.get("BRAINTRUST_PROJECT") or "aks-agent" + dataset = env.get("BRAINTRUST_DATASET") or "aks-agent/ask" + experiment = env.get("EXPERIMENT_ID") + return BraintrustMetadata( + project=project, + dataset=dataset, + experiment=experiment, + api_key=api_key, + org=org, + ) + + @property + def enabled(self) -> bool: + return self._enabled + + def _warn_once(self, message: str) -> None: + if not self._warning_emitted: + LOGGER.warning("[braintrust] %s", message) + self._warning_emitted = True + + def _ensure_braintrust(self) -> bool: + if self._braintrust is not None: + return True + if not self._enabled or not self._metadata: + return False + try: + import braintrust # type: ignore + except ImportError: + self._warn_once( + "braintrust package not installed; skipping Braintrust uploads" + ) + self._enabled = False + return False + + # Configure environment for braintrust SDK + os.environ.setdefault("BRAINTRUST_API_KEY", self._metadata.api_key) + os.environ.setdefault("BRAINTRUST_ORG", self._metadata.org) + self._braintrust = braintrust + return True + + def _ensure_dataset(self) -> Optional[Any]: + if not self._ensure_braintrust(): + return None + if self._dataset is None and self._metadata: + try: + self._dataset = self._braintrust.init_dataset( # type: ignore[attr-defined] + project=self._metadata.project, + name=self._metadata.dataset, + ) + except Exception as exc: # pragma: no cover - SDK specific failure + self._warn_once(f"Unable to initialise Braintrust dataset: {exc}") + self._enabled = False + return None + return self._dataset + + def _get_experiment(self, experiment_name: str) -> Optional[Any]: + if experiment_name in self._experiments: + return self._experiments[experiment_name] + dataset = self._ensure_dataset() + if dataset is None or not self._metadata: + return None + try: + experiment = self._braintrust.init( # type: ignore[attr-defined] + project=self._metadata.project, + experiment=experiment_name, + dataset=dataset, + open=False, + update=True, + metadata={"aks_agent": True}, + ) + except Exception as exc: # pragma: no cover - SDK specific failure + self._warn_once(f"Unable to initialise Braintrust experiment: {exc}") + self._enabled = False + return None + self._experiments[experiment_name] = experiment + return experiment + + def _build_url( + self, + experiment_name: str, + span_id: Optional[str], + root_span_id: Optional[str], + ) -> Optional[str]: + if not self._metadata: + return None + encoded_exp = quote(experiment_name, safe="") + base = ( + f"https://www.braintrust.dev/app/{self._metadata.org}/p/" + f"{self._metadata.project}/experiments/{encoded_exp}" + ) + if span_id and root_span_id: + return f"{base}?r={span_id}&s={root_span_id}" + return base + + def record( + self, + *, + scenario_name: str, + iteration: int, + total_iterations: int, + prompt: str, + answer: str, + expected_output: list[str], + model: str, + tags: list[str], + passed: bool, + run_live: bool, + raw_output: str, + resource_group: str, + cluster_name: str, + error_message: Optional[str] = None, + classifier_score: Optional[float] = None, + classifier_rationale: Optional[str] = None, + ) -> Optional[Dict[str, Optional[str]]]: + if not self._enabled: + return None + metadata = self._metadata + if not metadata: + return None + + if metadata.experiment: + experiment_name = metadata.experiment + else: + iteration_token = os.environ.get("BRAINTRUST_RUN_ID") or os.environ.get("GITHUB_RUN_ID") or os.environ.get("CI_PIPELINE_ID") + if not iteration_token: + iteration_token = f"{model}-{os.getpid()}" + experiment_name = f"aks-agent/{model}/{iteration_token}" + experiment = self._get_experiment(experiment_name) + if experiment is None: + return None + + span = experiment.start_span( + name=f"{scenario_name} [iter {iteration + 1}/{total_iterations}]" + ) + metadata: Dict[str, Any] = { + "raw_output": raw_output, + "resource_group": resource_group, + "cluster_name": cluster_name, + "error": error_message, + } + if classifier_score is not None: + metadata["classifier_score"] = classifier_score + if classifier_rationale: + metadata["classifier_rationale"] = classifier_rationale + + span.log( + input=prompt, + output=answer, + expected="\n".join(expected_output), + dataset_record_id=scenario_name, + scores={ + "correctness": 1 if passed else 0, + "classifier": classifier_score, + }, + tags=list(tags) + [f"model:{model}", f"run_live:{run_live}"], + metadata=metadata, + ) + span_id = getattr(span, "id", None) + root_span_id = getattr(span, "root_span_id", None) + span.end() + try: + experiment.flush() + except Exception as exc: # pragma: no cover - SDK specific failure + self._warn_once(f"Failed flushing Braintrust experiment: {exc}") + self._enabled = False + return None + return { + "span_id": span_id, + "root_span_id": root_span_id, + "url": self._build_url(experiment_name, span_id, root_span_id), + "classifier_score": classifier_score, + "classifier_rationale": classifier_rationale, + } diff --git a/src/aks-agent/azext_aks_agent/tests/evals/classifier.py b/src/aks-agent/azext_aks_agent/tests/evals/classifier.py new file mode 100644 index 00000000000..3c2b7f7e1c3 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/classifier.py @@ -0,0 +1,246 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from __future__ import annotations + +import logging +import os +from functools import lru_cache +from typing import Iterable, List, Optional, Sequence + +try: + import openai +except ImportError: # pragma: no cover - optional dependency + openai = None # type: ignore + +try: + from autoevals import LLMClassifier, init as autoevals_init + _AUTOEVALS_AVAILABLE = True +except ImportError: # pragma: no cover - optional dependency + LLMClassifier = None # type: ignore + autoevals_init = None # type: ignore + _AUTOEVALS_AVAILABLE = False + +try: + from braintrust.oai import wrap_openai +except ImportError: # pragma: no cover - optional dependency + wrap_openai = lambda client: client # type: ignore + +from braintrust import Span, SpanTypeAttribute # type: ignore + +LOGGER = logging.getLogger(__name__) + +ENABLE_CLASSIFIER = os.environ.get("ENABLE_CLASSIFIER", "true").lower() != "false" +CLASSIFIER_ENABLED = ENABLE_CLASSIFIER +DEFAULT_EVALUATION_TYPE = ( + os.environ.get("CLASSIFIER_EVALUATION", "strict").strip().lower() or "strict" +) +CLASSIFIER_MODEL = os.environ.get("CLASSIFIER_MODEL", os.environ.get("MODEL", "")) +AZURE_API_KEY = os.environ.get("AZURE_API_KEY") +AZURE_API_BASE = os.environ.get("AZURE_API_BASE") +AZURE_API_VERSION = os.environ.get("AZURE_API_VERSION") + +_STRICT_PROMPT = """ +You are evaluating the correctness of an OUTPUT given by a LLM. You must return a score that +represents the correctness of that OUTPUT. + +The correctness is defined by the presence of EXPECTED ELEMENTS in the OUTPUT. +Make a judgement call whether each ELEMENT sufficiently matches the OUTPUT. ELEMENTS do +not need to appear verbatim or be a perfect match but their essence should be +present in the whole OUTPUT, even if it spans multiple sentences. + +# EXPECTED ELEMENTS + +- {{expected}} + +# OUTPUT + +{{output}} + + +Return a choice based on the number of EXPECTED ELEMENTS present in the OUTPUT. +Possible choices: +- A: All elements are presents +- B: Either no element is present or only some but not all elements are present +""" + +_LOOSE_PROMPT = """ +You are evaluating the correctness of an OUTPUT given by a LLM. You must return a score that +represents the correctness of that OUTPUT. + +The correctness is defined by the presence of EXPECTED content in the OUTPUT. +Make a judgement call whether the EXPECTED content sufficiently matches the OUTPUT. EXPECTED +content does not need to appear verbatim or be a perfect match but its essence should be +present in the whole OUTPUT, even if it spans multiple sentences. + +# EXPECTED + +{{expected}} + +# OUTPUT + +{{output}} + + +Return a choice based on whether the OUTPUT matches the EXPECTED content. +Possible choices: +- A: The OUTPUT reasonably matches the EXPECTED content +- B: The OUTPUT does not match the EXPECTED content +""" + + +_client_initialised = False +_client_available = False +_model_for_api: Optional[str] = None + + +def _ensure_client() -> bool: + global _client_initialised, _client_available, _model_for_api + if _client_initialised: + return _client_available + + _client_initialised = True + + if not ENABLE_CLASSIFIER: + LOGGER.debug("Classifier disabled via ENABLE_CLASSIFIER") + return False + if not _AUTOEVALS_AVAILABLE: + LOGGER.warning("autoevals package not installed; skipping classifier") + return False + if openai is None: + LOGGER.warning("openai package not installed; skipping classifier") + return False + if not AZURE_API_BASE or not AZURE_API_KEY or not AZURE_API_VERSION: + LOGGER.warning( + "Azure classifier requires AZURE_API_BASE, AZURE_API_KEY, AZURE_API_VERSION" + ) + return False + + try: + client, model_for_api = create_llm_client() + except Exception as exc: # pragma: no cover - setup failure + LOGGER.warning("Unable to initialise classifier client: %s", exc) + return False + + if AZURE_API_BASE: + wrapped_client = wrap_openai(client) + autoevals_init(wrapped_client) # type: ignore[arg-type] + else: + autoevals_init(client) # type: ignore[arg-type] + + _model_for_api = model_for_api + _client_available = True + return True + + +@lru_cache(maxsize=4) +def _prompt_for(evaluation_type: str) -> str: + if evaluation_type == "loose": + return _LOOSE_PROMPT + return _STRICT_PROMPT + + +@lru_cache(maxsize=4) +def _classifier_for(evaluation_type: str) -> Optional[LLMClassifier]: + if not _ensure_client(): + return None + prompt = _prompt_for(evaluation_type) + return LLMClassifier( # type: ignore[call-arg] + name="Correctness", + prompt_template=prompt, + choice_scores={"A": 1, "B": 0}, + use_cot=True, + model=CLASSIFIER_MODEL, + api_key=AZURE_API_KEY, + base_url=AZURE_API_BASE, + api_version=AZURE_API_VERSION, + ) + + +def _normalise_expected(expected: Sequence[str] | str) -> List[str]: + if isinstance(expected, str): + return [expected] + return [str(item) for item in expected] + + +def evaluate_correctness( + *, + expected_elements: Sequence[str] | str, + output: Optional[str], + parent_span: Optional[Span] = None, + evaluation_type: Optional[str] = None, + caplog=None, +): + evaluation_type = (evaluation_type or DEFAULT_EVALUATION_TYPE or "strict").strip().lower() + if evaluation_type not in {"strict", "loose"}: + evaluation_type = "strict" + + if caplog is not None: + caplog.set_level("INFO", logger="classifier") + logger = logging.getLogger("classifier") + + classifier = _classifier_for(evaluation_type) + if classifier is None: + logger.info("Classifier unavailable; skipping semantic evaluation") + return None + + expected_list = _normalise_expected(expected_elements) + expected_str = "\n- ".join(expected_list) + prompt_template = _prompt_for(evaluation_type) + + logger.info( + "Evaluating correctness with Azure OpenAI; base_url=%s, api_version=%s, model=%s", + AZURE_API_BASE, + AZURE_API_VERSION, + CLASSIFIER_MODEL, + ) + + def _run(): + return classifier( # type: ignore[operator] + input=prompt_template, + output=output, + expected=expected_str, + ) + + if parent_span: + with parent_span.start_span( + name="Correctness", type=SpanTypeAttribute.SCORE + ) as span: + result = _run() + span.log( + input=prompt_template, + output=result.metadata.get("rationale", ""), + expected=expected_str, + scores={"correctness": result.score}, + metadata=result.metadata, + ) + return result + return _run() + + +def create_llm_client(): + if openai is None: + raise RuntimeError("openai package not available") + if not AZURE_API_BASE or not AZURE_API_KEY or not AZURE_API_VERSION: + raise ValueError("Azure OpenAI classifier requires AZURE_API_BASE, AZURE_API_KEY, AZURE_API_VERSION") + + model_name = CLASSIFIER_MODEL or "azure/deployment" + if model_name.startswith("azure/"): + parts = model_name.split("/", 1) + if len(parts) != 2: + raise ValueError( + "CLASSIFIER_MODEL must follow 'azure/' when using Azure OpenAI" + ) + deployment = parts[1] + else: + deployment = model_name + + client = openai.AzureOpenAI( # type: ignore[attr-defined] + azure_endpoint=AZURE_API_BASE, + azure_deployment=deployment, + api_version=AZURE_API_VERSION, + api_key=AZURE_API_KEY, + ) + return client, deployment diff --git a/src/aks-agent/azext_aks_agent/tests/evals/conftest.py b/src/aks-agent/azext_aks_agent/tests/evals/conftest.py new file mode 100644 index 00000000000..f65c22f1fcb --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/conftest.py @@ -0,0 +1,60 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from __future__ import annotations + +import pytest +from pytest import StashKey + + +BRAINTRUST_LAST_LINK = StashKey[str]() + + +@pytest.fixture +def aks_skip_setup(pytestconfig: pytest.Config) -> bool: + return bool(pytestconfig.getoption("aks_skip_setup")) + + +@pytest.fixture +def aks_skip_cleanup(pytestconfig: pytest.Config) -> bool: + return bool(pytestconfig.getoption("aks_skip_cleanup")) + + +@pytest.fixture(autouse=True) +def aks_braintrust_link(request: pytest.FixtureRequest) -> None: + yield + if not request.node.get_closest_marker('aks_eval'): + return + + span_id = None + root_span_id = None + url = None + for key, value in getattr(request.node, 'user_properties', []): + if key == 'braintrust_span_id': + span_id = value + elif key == 'braintrust_root_span_id': + root_span_id = value + elif key == 'braintrust_experiment_url': + url = value + + if not url: + return + + if span_id and root_span_id and '?' not in url: + url = f"{url}?r={span_id}&s={root_span_id}" + + clickable_url = f"\u001b]8;;{url}\u001b\\{url}\u001b]8;;\u001b\\" + request.config.stash[BRAINTRUST_LAST_LINK] = clickable_url + + +def pytest_sessionfinish(session: pytest.Session, exitstatus: int) -> None: + try: + link = session.config.stash[BRAINTRUST_LAST_LINK] + except KeyError: + return + if not link: + return + + print(f"\n🔍 Braintrust: {link}\n") diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/01_how_many_pods/manifests.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/01_how_many_pods/manifests.yaml new file mode 100644 index 00000000000..984ff37b2bc --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/01_how_many_pods/manifests.yaml @@ -0,0 +1,214 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: test-1 +--- +apiVersion: v1 +kind: Pod +metadata: + name: apple-pod + namespace: test-1 + labels: + app: test-pod + instance: apple +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: banana-pod + namespace: test-1 + labels: + app: test-pod + instance: banana +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: cherry-pod + namespace: test-1 + labels: + app: test-pod + instance: cherry +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: dragon-pod + namespace: test-1 + labels: + app: test-pod + instance: dragon +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: elephant-pod + namespace: test-1 + labels: + app: test-pod + instance: elephant +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: falcon-pod + namespace: test-1 + labels: + app: test-pod + instance: falcon +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: giraffe-pod + namespace: test-1 + labels: + app: test-pod + instance: giraffe +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: hippo-pod + namespace: test-1 + labels: + app: test-pod + instance: hippo +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: iguana-pod + namespace: test-1 + labels: + app: test-pod + instance: iguana +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: jaguar-pod + namespace: test-1 + labels: + app: test-pod + instance: jaguar +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: koala-pod + namespace: test-1 + labels: + app: test-pod + instance: koala +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: lion-pod + namespace: test-1 + labels: + app: test-pod + instance: lion +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: monkey-pod + namespace: test-1 + labels: + app: test-pod + instance: monkey +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: narwhal-pod + namespace: test-1 + labels: + app: test-pod + instance: narwhal +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/01_how_many_pods/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/01_how_many_pods/mocks/response.txt new file mode 100644 index 00000000000..878b09db541 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/01_how_many_pods/mocks/response.txt @@ -0,0 +1 @@ +There are 14 pods in the test-1 namespace. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/01_how_many_pods/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/01_how_many_pods/test_case.yaml new file mode 100644 index 00000000000..1e236e00b80 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/01_how_many_pods/test_case.yaml @@ -0,0 +1,12 @@ +user_prompt: "How many pods are in the test-1 namespace?" +expected_output: + - There are 14 pods in the test-1 namespace +before_test: | + kubectl apply -f manifests.yaml + sleep 60 +after_test: | + kubectl delete -f manifests.yaml +tags: + - easy + - counting + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/fetch_pod_logs100_app-02_giant-narwhal-6958c5bdd8-69gtn.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/fetch_pod_logs100_app-02_giant-narwhal-6958c5bdd8-69gtn.txt new file mode 100644 index 00000000000..f4de6c4b9b6 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/fetch_pod_logs100_app-02_giant-narwhal-6958c5bdd8-69gtn.txt @@ -0,0 +1,30 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"giant-narwhal-6958c5bdd8-69gtn","namespace":"app-02","limit":100}} +{"schema_version": "robusta:v1.0.0", "status": "no_data", "error": null, "return_code": 0, "url": null, "invocation": null, "params": {"namespace": "app-02", "pod_name": "giant-narwhal-6958c5bdd8-69gtn", "start_time": null, "end_time": null, "filter": null, "exclude_filter": null, "limit": 100}} + +================================================================================ +LOG QUERY METADATA +================================================================================ +Time Context: +- Query executed at: 2025-08-12T04:43:58Z (UTC) + +Query Parameters: +- Pod: giant-narwhal-6958c5bdd8-69gtn +- Namespace: app-02 +- Log source: Current and previous container logs +- Log time range: None (fetching logs available via `kubectl logs`) + +Total logs found before filtering: 0 + +Display: Showing all 0 logs + +Result: No logs found for this pod + +⚠️ Possible reasons: + - Pod may not exist or may have been recently created + - Container might not be logging to stdout/stderr + - Logs might be going to a file instead of stdout/stderr + +⚠️ Try: + - Check if pod exists: kubectl get pods -n app-02 + - Check pod events: kubectl describe pod giant-narwhal-6958c5bdd8-69gtn -n app-02 +================================================================================ diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/fetch_pod_logs100_app-02_giant-narwhal-6958c5bdd8-69gtn_-604800.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/fetch_pod_logs100_app-02_giant-narwhal-6958c5bdd8-69gtn_-604800.txt new file mode 100644 index 00000000000..068f4b4759c --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/fetch_pod_logs100_app-02_giant-narwhal-6958c5bdd8-69gtn_-604800.txt @@ -0,0 +1,31 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"giant-narwhal-6958c5bdd8-69gtn","namespace":"app-02","limit":100,"start_time":"-604800"}} +{"schema_version": "robusta:v1.0.0", "status": "no_data", "error": null, "return_code": 0, "url": null, "invocation": null, "params": {"namespace": "app-02", "pod_name": "giant-narwhal-6958c5bdd8-69gtn", "start_time": "-604800", "end_time": null, "filter": null, "exclude_filter": null, "limit": 100}} + +================================================================================ +LOG QUERY METADATA +================================================================================ +Time Context: +- Query executed at: 2025-08-12T04:43:58Z (UTC) + +Query Parameters: +- Pod: giant-narwhal-6958c5bdd8-69gtn +- Namespace: app-02 +- Log source: Current and previous container logs +- Log time range: -604800 (UTC) to now (UTC) + Started: 7 days before end time + +Total logs found before filtering: 0 + +Display: Showing all 0 logs + +Result: No logs found for this pod + +⚠️ Possible reasons: + - Pod was not running during this time period + - Container might not be logging to stdout/stderr + - Logs might be going to a file instead of stdout/stderr + +⚠️ Try: + - Remove time range to see ALL available logs (recommended unless you need this specific timeframe) + - Or expand time range (e.g., last 24 hours) +================================================================================ diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/fetch_pod_logs100_default_giant-narwhal-6958c5bdd8-69gtn.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/fetch_pod_logs100_default_giant-narwhal-6958c5bdd8-69gtn.txt new file mode 100644 index 00000000000..43df42e950f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/fetch_pod_logs100_default_giant-narwhal-6958c5bdd8-69gtn.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"giant-narwhal-6958c5bdd8-69gtn","namespace":"default","limit":100}} +{"schema_version": "robusta:v1.0.0", "status": "error", "error": "error: error from server (NotFound): pods \"giant-narwhal-6958c5bdd8-69gtn\" not found in namespace \"default\"", "return_code": 1, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "giant-narwhal-6958c5bdd8-69gtn", "start_time": null, "end_time": null, "filter": null, "exclude_filter": null, "limit": 100}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/fetch_pod_logserr_error_fatal_critical_fail_exception_panic_crash_100_default_giant-narwhal-6958c5bdd8-69gtn.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/fetch_pod_logserr_error_fatal_critical_fail_exception_panic_crash_100_default_giant-narwhal-6958c5bdd8-69gtn.txt new file mode 100644 index 00000000000..232b1c7be43 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/fetch_pod_logserr_error_fatal_critical_fail_exception_panic_crash_100_default_giant-narwhal-6958c5bdd8-69gtn.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"giant-narwhal-6958c5bdd8-69gtn","namespace":"default","limit":100,"filter":"err|error|fatal|critical|fail|exception|panic|crash"}} +{"schema_version": "robusta:v1.0.0", "status": "error", "error": "error: error from server (NotFound): pods \"giant-narwhal-6958c5bdd8-69gtn\" not found in namespace \"default\"", "return_code": 1, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "giant-narwhal-6958c5bdd8-69gtn", "start_time": null, "end_time": null, "filter": "err|error|fatal|critical|fail|exception|panic|crash", "exclude_filter": null, "limit": 100}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/kubectl_describepod_giant-narwhal-6958c5bdd8-69gtn_app-02.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/kubectl_describepod_giant-narwhal-6958c5bdd8-69gtn_app-02.txt new file mode 100644 index 00000000000..8048eca3f7c --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/kubectl_describepod_giant-narwhal-6958c5bdd8-69gtn_app-02.txt @@ -0,0 +1,67 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"pod","name":"giant-narwhal-6958c5bdd8-69gtn","namespace":"app-02"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl describe pod giant-narwhal-6958c5bdd8-69gtn -n app-02", "params": {"kind": "pod", "name": "giant-narwhal-6958c5bdd8-69gtn", "namespace": "app-02"}} +Name: giant-narwhal-6958c5bdd8-69gtn +Namespace: app-02 +Priority: 0 +Service Account: default +Node: robusta-demo-prod-double-node-worker/172.18.0.4 +Start Time: Tue, 12 Aug 2025 05:45:20 +0200 +Labels: app=ocean-explorer +Annotations: +Status: Running +IP: 10.244.1.18 +IPs: + IP: 10.244.1.18 +Containers: + main: + Container ID: containerd://58906e3ca1cef97c0089e986a5fc245f078db6bde15445d403592fd7dced2962 + Image: busybox:1.35 + Image ID: docker.io/library/busybox@sha256:98ad9d1a2be345201bb0709b0d38655eb1b370145c7d94ca1fe9c421f76e245a + Port: + Host Port: + Command: + sh + -c + tail /dev/zero + State: Waiting + Reason: CrashLoopBackOff + Last State: Terminated + Reason: OOMKilled + Exit Code: 137 + Started: Tue, 12 Aug 2025 06:42:07 +0200 + Finished: Tue, 12 Aug 2025 06:42:07 +0200 + Ready: False + Restart Count: 16 + Limits: + memory: 50Mi + Requests: + memory: 50Mi + Environment: + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-86pfq (ro) +Conditions: + Type Status + PodReadyToStartContainers True + Initialized True + Ready False + ContainersReady False + PodScheduled True +Volumes: + kube-api-access-86pfq: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: Burstable +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal Scheduled 58m default-scheduler Successfully assigned app-02/giant-narwhal-6958c5bdd8-69gtn to robusta-demo-prod-double-node-worker + Normal Pulled 56m (x5 over 58m) kubelet Container image "busybox:1.35" already present on machine + Normal Created 56m (x5 over 58m) kubelet Created container main + Normal Started 56m (x5 over 58m) kubelet Started container main + Warning BackOff 3m19s (x256 over 58m) kubelet Back-off restarting failed container main in pod giant-narwhal-6958c5bdd8-69gtn_app-02(8209d63f-aa89-450d-9813-d555ddcaa175) diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/kubectl_describepod_giant-narwhal-6958c5bdd8-69gtn_default.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/kubectl_describepod_giant-narwhal-6958c5bdd8-69gtn_default.txt new file mode 100644 index 00000000000..de14ce36d59 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/kubectl_describepod_giant-narwhal-6958c5bdd8-69gtn_default.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"pod","name":"giant-narwhal-6958c5bdd8-69gtn","namespace":"default"}} +{"schema_version": "robusta:v1.0.0", "status": "error", "error": "Command `kubectl describe pod giant-narwhal-6958c5bdd8-69gtn -n default` failed with return code 1\nOutput:\nError from server (NotFound): pods \"giant-narwhal-6958c5bdd8-69gtn\" not found", "return_code": 1, "url": null, "invocation": "kubectl describe pod giant-narwhal-6958c5bdd8-69gtn -n default", "params": {"kind": "pod", "name": "giant-narwhal-6958c5bdd8-69gtn", "namespace": "default"}} +Error from server (NotFound): pods "giant-narwhal-6958c5bdd8-69gtn" not found diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/kubectl_eventsapp-02_giant-narwhal-6958c5bdd8-69gtn_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/kubectl_eventsapp-02_giant-narwhal-6958c5bdd8-69gtn_pod.txt new file mode 100644 index 00000000000..d6dd6765e17 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/kubectl_eventsapp-02_giant-narwhal-6958c5bdd8-69gtn_pod.txt @@ -0,0 +1,8 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_events","match_params":{"resource_type":"pod","resource_name":"giant-narwhal-6958c5bdd8-69gtn","namespace":"app-02"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl events --for pod/giant-narwhal-6958c5bdd8-69gtn -n app-02", "params": {"resource_type": "pod", "resource_name": "giant-narwhal-6958c5bdd8-69gtn", "namespace": "app-02"}} +LAST SEEN TYPE REASON OBJECT MESSAGE +58m Normal Scheduled Pod/giant-narwhal-6958c5bdd8-69gtn Successfully assigned app-02/giant-narwhal-6958c5bdd8-69gtn to robusta-demo-prod-double-node-worker +56m (x5 over 58m) Normal Pulled Pod/giant-narwhal-6958c5bdd8-69gtn Container image "busybox:1.35" already present on machine +56m (x5 over 58m) Normal Created Pod/giant-narwhal-6958c5bdd8-69gtn Created container main +56m (x5 over 58m) Normal Started Pod/giant-narwhal-6958c5bdd8-69gtn Started container main +3m30s (x256 over 58m) Warning BackOff Pod/giant-narwhal-6958c5bdd8-69gtn Back-off restarting failed container main in pod giant-narwhal-6958c5bdd8-69gtn_app-02(8209d63f-aa89-450d-9813-d555ddcaa175) diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/kubectl_eventsdefault_giant-narwhal-6958c5bdd8-69gtn_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/kubectl_eventsdefault_giant-narwhal-6958c5bdd8-69gtn_pod.txt new file mode 100644 index 00000000000..c095707958d --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/kubectl_eventsdefault_giant-narwhal-6958c5bdd8-69gtn_pod.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_events","match_params":{"resource_type":"pod","resource_name":"giant-narwhal-6958c5bdd8-69gtn","namespace":"default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl events --for pod/giant-narwhal-6958c5bdd8-69gtn -n default", "params": {"resource_type": "pod", "resource_name": "giant-narwhal-6958c5bdd8-69gtn", "namespace": "default"}} +No events found in default namespace. diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/manifest.yaml new file mode 100644 index 00000000000..5225d3b2f44 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/manifest.yaml @@ -0,0 +1,17 @@ +apiVersion: v1 +kind: Pod +metadata: + name: giant-narwhal-6958c5bdd8-69gtn + namespace: app-02 + labels: + app: ocean-explorer +spec: + containers: + - name: main + image: busybox:1.35 + command: ["sh", "-c", "tail /dev/zero"] + resources: + limits: + memory: "50Mi" + requests: + memory: "50Mi" diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/mocks/response.txt new file mode 100644 index 00000000000..7defc0cefd2 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/mocks/response.txt @@ -0,0 +1,5 @@ +Pod giant-narwhal-6958c5bdd8-69gtn (namespace app-02) is repeatedly crashing due to OOMKilled (out of memory). Container "main" is +set with a 50Mi memory limit and is running the command tail /dev/zero, which consumes unlimited memory and quickly exceeds the +limit. Pod is in a crash loop with Restart Count: 4 and frequent BackOff events. + +Fix: Increase the memory limit or change the container command to avoid unbounded memory usage. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/test_case.yaml new file mode 100644 index 00000000000..c0d858f7c1f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/02_what_is_wrong_with_pod/test_case.yaml @@ -0,0 +1,17 @@ +user_prompt: 'What is wrong with << { "type": "pod", "name": "giant-narwhal-6958c5bdd8-69gtn", "namespace": "app-02" } >> ?' +expected_output: + - The pod was killed due to it being out of memory + +tags: + - kubernetes + - easy + +# This test creates a pod that consumes memory until it gets OOMKilled +# Using 'tail /dev/zero' which reads infinite zeros and buffers them in memory +before_test: | + kubectl create namespace app-02 + kubectl apply -f ./manifest.yaml + sleep 60 + +after_test: | + kubectl delete namespace app-02 --ignore-not-found --wait=false diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/kubectl_describe.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/kubectl_describe.txt new file mode 100644 index 00000000000..ed428509bb4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/kubectl_describe.txt @@ -0,0 +1,55 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"pod","name":"my_grafana_4j981","namespace":"default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl describe pod my_grafana_4j981 -n default", "params": {"kind": "pod", "name": "my_grafana_4j981", "namespace": "default"}} +Name: my_grafana_4j981 +Namespace: default +Priority: 0 +Service Account: my_grafana_4j981-service-account +Node: ip-172-31-21-139.us-east-2.compute.internal/172.31.21.139 +Start Time: Mon, 04 Nov 2024 10:28:53 +0100 +Labels: app=grafana + pod-template-hash=6958c5bdd8 +Annotations: +Status: Running +IP: 172.31.25.172 +IPs: + IP: 172.31.25.172 +Controlled By: ReplicaSet/my_grafana_4j981 +Containers: + runner: + Container ID: containerd://b1d346ba710299dd3e1c1745c362062570488b57356072dbc4637cbf6b77ccb2 + Image: robustadev/grafana:0.18.0 + Image ID: docker.io/robustadev/grafana@sha256:273035ec62f104da1452d65fc30cfcb0085e8a49ce73b9ffa043f747f3afc31b + Port: 3000 + Host Port: + State: Running + Started: Mon, 04 Nov 2024 10:29:17 +0100 + Ready: True + Restart Count: 0 + Limits: + memory: 1Gi + Requests: + cpu: 250m + memory: 1Gi + Mounts: + /etc/robusta/auth from auth-config-secret (rw) + /etc/robusta/config from playbooks-config-secret (rw) + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-prfkr (ro) +Conditions: + Type Status + PodReadyToStartContainers True + Initialized True + Ready True + ContainersReady True + PodScheduled True +QoS Class: Burstable +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal Scheduled 4m28s default-scheduler Successfully assigned default/nginxreplica to aks-nodepool1-26081864-vmss000004 + Normal Pulling 4m28s kubelet Pulling image "grafana" + Normal Pulled 4m28s kubelet Successfully pulled image "grafana" in 272.563572ms + Normal Created 4m28s kubelet Created container grafana + Normal Started 4m28s kubelet Started container grafana diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/kubectl_get_all.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/kubectl_get_all.txt new file mode 100644 index 00000000000..6d1e2f6b7e6 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/kubectl_get_all.txt @@ -0,0 +1,13 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_get_all", "params": {}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_get_all command", "params": {}} +NAME READY STATUS RESTARTS AGE +pod/my_grafana_4j981 1/1 Running 0 7m27s + +NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE +service/my_grafana_4j981 LoadBalancer 10.5.243.226 3000:31171/TCP 7m27s + +NAME READY UP-TO-DATE AVAILABLE AGE +deployment.apps/grafana 1/1 1 1 7m29s + +NAME DESIRED CURRENT READY AGE +replicaset.apps/my_grafana_4j981 1 1 1 7m30s diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/kubectl_get_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/kubectl_get_pod.txt new file mode 100644 index 00000000000..5a2e651ce21 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/kubectl_get_pod.txt @@ -0,0 +1,4 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_get_by_name", "match_params": {"kind": "pod", "name": "my_grafana_4j981", "namespace": "default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_get_by_name command", "params": {"kind": "pod", "name": "my_grafana_4j981", "namespace": "default"}} +NAME READY STATUS RESTARTS AGE +pod/my_grafana_4j981 1/1 Running 0 7m27s diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/mocks/response.txt new file mode 100644 index 00000000000..083ba788d03 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/mocks/response.txt @@ -0,0 +1,7 @@ +Run this command to port forward to the Grafana pod in app-03: + + + kubectl port-forward -n app-03 pod/grafana-7f8b9c6d5-x2m4n 3000:3000 + + +This forwards local port 3000 to port 3000 on the pod. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/test_case.yaml new file mode 100644 index 00000000000..d357cb8f888 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/03_what_is_the_command_to_port_forward/test_case.yaml @@ -0,0 +1,36 @@ +user_prompt: 'port forward to grafana pod in app-03' +expected_output: + - Must find the actual grafana pod name (grafana-7f8b9c6d5-x2m4n) + - Must include the correct port (3000) + - "Full kubectl port-forward command like: kubectl port-forward -n app-03 grafana-7f8b9c6d5-x2m4n 3000:3000" + - Should NOT just say "find grafana in your cluster" or give generic instructions +tags: + - kubernetes + - medium + - answer-given-wrong-place # LLM gave the answer in intermediate steps, not final answer, so harder for user to see +before_test: | + kubectl create namespace app-03 + cat < Pulling -> Pulled -> Created -> Started" +before_test: | + kubectl apply -f manifest.yaml + sleep 30 +after_test: | + kubectl delete -f manifest.yaml +tags: + - easy + - kubernetes +skip: true +skip_reason: When running with many iterations (or on an existing setup) this test can fail because the events disappear from the cluster diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/kubectl_find_resource.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/kubectl_find_resource.txt new file mode 100644 index 00000000000..facf85164f0 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/kubectl_find_resource.txt @@ -0,0 +1,3 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_find_resource", "match_params": {"kind": "pod", "keyword": "robusta-runner"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_find_resource command", "params": {"kind": "pod", "keyword": "robusta-runner"}} +default robusta-runner-6958c5bdd8-69gtn 1/1 Running 0 47h 172.31.25.172 ip-172-31-21-139.us-east-2.compute.internal app=robusta-runner,pod-template-hash=6958c5bdd8,robustaComponent=runner diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/kubectl_get_yaml.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/kubectl_get_yaml.txt new file mode 100644 index 00000000000..bf6f4c23b4c --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/kubectl_get_yaml.txt @@ -0,0 +1,179 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_get_yaml", "match_params": {"kind": "pod", "name": "robusta-runner-6958c5bdd8-69gtn", "namespace": "default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_get_yaml command", "params": {"kind": "pod", "name": "robusta-runner-6958c5bdd8-69gtn", "namespace": "default"}} +apiVersion: v1 +kind: Pod +metadata: + creationTimestamp: "2024-11-04T09:28:53Z" + generateName: robusta-runner-6958c5bdd8- + labels: + app: robusta-runner + pod-template-hash: 6958c5bdd8 + robustaComponent: runner + name: robusta-runner-6958c5bdd8-69gtn + namespace: default + ownerReferences: + - apiVersion: apps/v1 + blockOwnerDeletion: true + controller: true + kind: ReplicaSet + name: robusta-runner-6958c5bdd8 + uid: b1d8c61d-e786-456b-b297-276fdb4ee7f7 + resourceVersion: "6592918" + uid: d5aca3fa-2445-48ad-ad38-398c143001b5 +spec: + automountServiceAccountToken: true + containers: + - env: + - name: PLAYBOOKS_CONFIG_FILE_PATH + value: /etc/robusta/config/active_playbooks.yaml + - name: RELEASE_NAME + value: robusta + - name: PROMETHEUS_ENABLED + value: "true" + - name: MANAGED_CONFIGURATION_ENABLED + value: "false" + - name: SEND_ADDITIONAL_TELEMETRY + value: "true" + - name: LOG_LEVEL + value: INFO + - name: INSTALLATION_NAMESPACE + valueFrom: + fieldRef: + apiVersion: v1 + fieldPath: metadata.namespace + - name: HOLMES_ENABLED + value: "True" + - name: RUNNER_VERSION + value: 0.18.0 + - name: CERTIFICATE + - name: IMAGE_REGISTRY + value: robustadev + - name: CLUSTER_DOMAIN + value: cluster.local + envFrom: + - secretRef: + name: robusta-runner-secret + optional: true + image: robustadev/robusta-runner:0.18.0 + imagePullPolicy: IfNotPresent + lifecycle: + preStop: + exec: + command: + - bash + - -c + - kill -SIGINT 1 + name: runner + resources: + limits: + memory: 1Gi + requests: + cpu: 250m + memory: 1Gi + securityContext: + allowPrivilegeEscalation: false + capabilities: {} + privileged: false + readOnlyRootFilesystem: false + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + volumeMounts: + - mountPath: /etc/robusta/auth + name: auth-config-secret + - mountPath: /etc/robusta/config + name: playbooks-config-secret + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-prfkr + readOnly: true + dnsPolicy: ClusterFirst + enableServiceLinks: true + nodeName: ip-172-31-21-139.us-east-2.compute.internal + preemptionPolicy: PreemptLowerPriority + priority: 0 + restartPolicy: Always + schedulerName: default-scheduler + securityContext: {} + serviceAccount: robusta-runner-service-account + serviceAccountName: robusta-runner-service-account + terminationGracePeriodSeconds: 30 + tolerations: + - effect: NoExecute + key: node.kubernetes.io/not-ready + operator: Exists + tolerationSeconds: 300 + - effect: NoExecute + key: node.kubernetes.io/unreachable + operator: Exists + tolerationSeconds: 300 + volumes: + - name: playbooks-config-secret + secret: + defaultMode: 420 + optional: true + secretName: robusta-playbooks-config-secret + - name: auth-config-secret + secret: + defaultMode: 420 + optional: true + secretName: robusta-auth-config-secret + - name: kube-api-access-prfkr + projected: + defaultMode: 420 + sources: + - serviceAccountToken: + expirationSeconds: 3607 + path: token + - configMap: + items: + - key: ca.crt + path: ca.crt + name: kube-root-ca.crt + - downwardAPI: + items: + - fieldRef: + apiVersion: v1 + fieldPath: metadata.namespace + path: namespace +status: + conditions: + - lastProbeTime: null + lastTransitionTime: "2024-11-04T09:29:18Z" + status: "True" + type: PodReadyToStartContainers + - lastProbeTime: null + lastTransitionTime: "2024-11-04T09:28:53Z" + status: "True" + type: Initialized + - lastProbeTime: null + lastTransitionTime: "2024-11-04T09:29:18Z" + status: "True" + type: Ready + - lastProbeTime: null + lastTransitionTime: "2024-11-04T09:29:18Z" + status: "True" + type: ContainersReady + - lastProbeTime: null + lastTransitionTime: "2024-11-04T09:28:53Z" + status: "True" + type: PodScheduled + containerStatuses: + - containerID: containerd://b1d346ba710299dd3e1c1745c362062570488b57356072dbc4637cbf6b77ccb2 + image: docker.io/robustadev/robusta-runner:0.18.0 + imageID: docker.io/robustadev/robusta-runner@sha256:273035ec62f104da1452d65fc30cfcb0085e8a49ce73b9ffa043f747f3afc31b + lastState: {} + name: runner + ready: true + restartCount: 0 + started: true + state: + running: + startedAt: "2024-11-04T09:29:17Z" + hostIP: 172.31.21.139 + hostIPs: + - ip: 172.31.21.139 + phase: Running + podIP: 172.31.25.172 + podIPs: + - ip: 172.31.25.172 + qosClass: Burstable + startTime: "2024-11-04T09:28:53Z" diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/mocks/response.txt new file mode 100644 index 00000000000..bca82762b21 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/mocks/response.txt @@ -0,0 +1 @@ +Pod sea-turtle in namespace app-05 uses image: nginx:1.23.4. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/test_case.yaml new file mode 100644 index 00000000000..d25dcb11839 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/05_image_version/test_case.yaml @@ -0,0 +1,28 @@ +user_prompt: 'what is the image version of << { "type": "pod", "name": "sea-turtle" } >>' +expected_output: + - The image version of the `sea-turtle` pod is either `1.23.4` or `nginx:1.23.4`. +tags: + - kubernetes + - easy +before_test: | + kubectl create namespace app-05 + cat < +Annotations: deployment.kubernetes.io/revision: 1 +Selector: name=front-end +Replicas: 1 desired | 1 updated | 1 total | 1 available | 0 unavailable +StrategyType: RollingUpdate +MinReadySeconds: 0 +RollingUpdateStrategy: 25% max unavailable, 25% max surge +Pod Template: + Labels: name=front-end + Annotations: admission.datadoghq.com/dotnet-lib.version: v2.53.2-musl + Containers: + front-end: + Image: weaveworksdemos/front-end:0.3.12 + Port: 8079/TCP + Host Port: 0/TCP + Limits: + cpu: 300m + memory: 1000Mi + Requests: + cpu: 100m + memory: 300Mi + Liveness: http-get http://:8079/ delay=300s timeout=1s period=3s #success=1 #failure=3 + Readiness: http-get http://:8079/ delay=30s timeout=1s period=3s #success=1 #failure=3 + Environment: + SESSION_REDIS: true + Mounts: + Volumes: + Node-Selectors: beta.kubernetes.io/os=linux + Tolerations: +Conditions: + Type Status Reason + ---- ------ ------ + Progressing True NewReplicaSetAvailable + Available True MinimumReplicasAvailable +OldReplicaSets: +NewReplicaSet: front-end-6bc5876d74 (1/1 replicas created) +Events: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_describe_pod_front-end-6bc5876d74-4lbfd_sock-shop.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_describe_pod_front-end-6bc5876d74-4lbfd_sock-shop.txt new file mode 100644 index 00000000000..89424bf55c4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_describe_pod_front-end-6bc5876d74-4lbfd_sock-shop.txt @@ -0,0 +1,69 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"pod","name":"front-end-6bc5876d74-4lbfd","namespace":"sock-shop"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl describe pod front-end-6bc5876d74-4lbfd -n sock-shop", "params": {"kind": "pod", "name": "front-end-6bc5876d74-4lbfd", "namespace": "sock-shop"}} +Name: front-end-6bc5876d74-4lbfd +Namespace: sock-shop +Priority: 0 +Service Account: default +Node: kind-double-node-worker/172.18.0.3 +Start Time: Thu, 24 Apr 2025 12:29:17 +0200 +Labels: name=front-end + pod-template-hash=6bc5876d74 +Annotations: admission.datadoghq.com/dotnet-lib.version: v2.53.2-musl +Status: Running +IP: 10.244.1.2 +IPs: + IP: 10.244.1.2 +Controlled By: ReplicaSet/front-end-6bc5876d74 +Containers: + front-end: + Container ID: containerd://3970ca6870883a734d6dd8d3c3a2885e57f1d03157fb92263079f8e48731e120 + Image: weaveworksdemos/front-end:0.3.12 + Image ID: docker.io/weaveworksdemos/front-end@sha256:26a2d9b6b291dee2dca32fca3f5bff6c2fa07bb5954359afcbc8001cc70eac71 + Port: 8079/TCP + Host Port: 0/TCP + State: Running + Started: Mon, 02 Jun 2025 14:22:35 +0200 + Last State: Terminated + Reason: Error + Exit Code: 1 + Started: Mon, 02 Jun 2025 14:21:55 +0200 + Finished: Mon, 02 Jun 2025 14:22:09 +0200 + Ready: False + Restart Count: 27 + Limits: + cpu: 300m + memory: 1000Mi + Requests: + cpu: 100m + memory: 300Mi + Liveness: http-get http://:8079/ delay=300s timeout=1s period=3s #success=1 #failure=3 + Readiness: http-get http://:8079/ delay=30s timeout=1s period=3s #success=1 #failure=3 + Environment: + SESSION_REDIS: true + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-dx77q (ro) +Conditions: + Type Status + PodReadyToStartContainers True + Initialized True + Ready False + ContainersReady False + PodScheduled True +Volumes: + kube-api-access-dx77q: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: Burstable +Node-Selectors: beta.kubernetes.io/os=linux +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Warning BackOff 32s (x6 over 77s) kubelet Back-off restarting failed container front-end in pod front-end-6bc5876d74-4lbfd_sock-shop(30bb85e5-a688-4516-be69-77c3ec9c9aa7) + Normal Pulled 21s (x4 over 171m) kubelet Container image "weaveworksdemos/front-end:0.3.12" already present on machine + Normal Created 21s (x4 over 171m) kubelet Created container front-end + Normal Started 20s (x4 over 171m) kubelet Started container front-end diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_find_resource_deployment.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_find_resource_deployment.txt new file mode 100644 index 00000000000..397ee7dce10 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_find_resource_deployment.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"deployment","keyword":"front-end"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide deployment | grep front-end", "params": {"kind": "deployment", "keyword": "front-end"}} +sock-shop front-end 1/1 1 1 18d front-end weaveworksdemos/front-end:0.3.12 name=front-end diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_find_resource_pod_front-end.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_find_resource_pod_front-end.txt new file mode 100644 index 00000000000..084acbbd231 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_find_resource_pod_front-end.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"pod","keyword":"front-end"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide pod | grep front-end", "params": {"kind": "pod", "keyword": "front-end"}} +sock-shop front-end-6bc5876d74-4lbfd 0/1 Running 27 (43s ago) 39d 10.244.1.2 kind-double-node-worker name=front-end,pod-template-hash=6bc5876d74 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_find_resource_sock-shop-deployment.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_find_resource_sock-shop-deployment.txt new file mode 100644 index 00000000000..712b41a1cc9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_find_resource_sock-shop-deployment.txt @@ -0,0 +1,16 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"deployment","keyword":"sock-shop"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide deployment | grep sock-shop", "params": {"kind": "deployment", "keyword": "sock-shop"}} +sock-shop carts 1/1 1 1 18d carts weaveworksdemos/carts:0.4.8 name=carts name=carts +sock-shop carts-db 1/1 1 1 18d carts-db mongo name=carts-db name=carts-db +sock-shop catalogue 1/1 1 1 18d catalogue weaveworksdemos/catalogue:0.3.5 name=catalogue name=catalogue +sock-shop catalogue-db 1/1 1 1 18d catalogue-db weaveworksdemos/catalogue-db:0.3.0 name=catalogue-db name=catalogue-db +sock-shop front-end 1/1 1 1 18d front-end weaveworksdemos/front-end:0.3.12 name=front-end +sock-shop orders 1/1 1 1 18d orders weaveworksdemos/orders:0.4.7 name=orders name=orders +sock-shop orders-db 1/1 1 1 18d orders-db mongo name=orders-db name=orders-db +sock-shop payment 1/1 1 1 18d payment weaveworksdemos/payment:0.4.3 name=payment name=payment +sock-shop queue-master 1/1 1 1 18d queue-master weaveworksdemos/queue-master:0.3.1 name=queue-master name=queue-master +sock-shop rabbitmq 1/1 1 1 18d rabbitmq,rabbitmq-exporter rabbitmq:3.6.8-management,kbudde/rabbitmq-exporter name=rabbitmq name=rabbitmq +sock-shop session-db 1/1 1 1 18d session-db redis:alpine name=session-db name=session-db +sock-shop shipping 1/1 1 1 18d shipping weaveworksdemos/shipping:0.4.8 name=shipping name=shipping +sock-shop user 1/1 1 1 18d user weaveworksdemos/user:0.4.7 name=user name=user +sock-shop user-db 1/1 1 1 18d user-db weaveworksdemos/user-db:0.3.0 name=user-db name=user-db diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_lineage_children.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_lineage_children.txt new file mode 100644 index 00000000000..6e4d76eaddd --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_lineage_children.txt @@ -0,0 +1,8 @@ +{"toolset_name":"kubernetes/kube-lineage-extras","tool_name":"kubectl_lineage_children","match_params":{"kind":"deployment","name":"front-end","namespace":"sock-shop"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kube-lineage deployment front-end -n sock-shop", "params": {"kind": "deployment", "name": "front-end", "namespace": "sock-shop"}} +NAME READY STATUS AGE +Deployment/front-end 1/1 18d +└── ReplicaSet/front-end-6bc5876d74 1/1 18d + └── Pod/front-end-6bc5876d74-kn2zt 1/1 Running 18d + └── Service/front-end - 18d + └── EndpointSlice/front-end-gxs7w - 18d diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_logs_front-end-6bc5876d74-4lbfd_sock-shop.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_logs_front-end-6bc5876d74-4lbfd_sock-shop.txt new file mode 100644 index 00000000000..56728cac9ba --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/kubectl_logs_front-end-6bc5876d74-4lbfd_sock-shop.txt @@ -0,0 +1,13 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"front-end-6bc5876d74-4lbfd","namespace":"sock-shop"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl logs front-end-6bc5876d74-4lbfd -n sock-shop", "params": {"pod_name": "front-end-6bc5876d74-4lbfd", "namespace": "sock-shop"}} +npm info it worked if it ends with ok +npm info using npm@2.15.11 +npm info using node@v4.8.0 +npm info prestart microservices-demo-front-end@0.0.1 +npm info start microservices-demo-front-end@0.0.1 + +> microservices-demo-front-end@0.0.1 start /usr/src/app +> node server.js + +Using the redis based session manager +App now running in production mode on port 8079 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/test_case.yaml new file mode 100644 index 00000000000..3a048c4f3b5 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/test_case.yaml @@ -0,0 +1,22 @@ +user_prompt: "Why did the sock-shop front-end stop working?" +tags: + - logs + - hard + - kubernetes +skip: true +skip_reason: need to check any issues with test setup +expected_output: + - There is an error related to the database + - The MongoDB client driver may require an upgrade +before_test: | + kubectl apply -f ./helm/sock-shop.yaml + sleep 20 + kubectl apply -f ./helm/trigger-carts-issue.yaml + sleep 10 + kubectl delete -f ./helm/trigger-carts-issue.yaml +after_test: | + kubectl delete -f ./helm/sock-shop.yaml || true + kubectl delete -f ./helm/trigger-carts-issue.yaml + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/toolsets.yaml new file mode 100644 index 00000000000..76bd393f0b5 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/08_sock_shop_frontend/toolsets.yaml @@ -0,0 +1,9 @@ +toolsets: + prometheus/metrics: + enabled: False + kubernetes/kube-lineage-extras: + enabled: true + kubernetes/logs: + enabled: true + kubernetes/core: + enabled: true diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/kubectl_describe.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/kubectl_describe.txt new file mode 100644 index 00000000000..f1419ab7a8e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/kubectl_describe.txt @@ -0,0 +1,71 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_describe", "match_params": {"kind": "pod", "name": "payment-processing-worker-747ccfb9db-78qds", "namespace": "default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_describe command", "params": {"kind": "pod", "name": "payment-processing-worker-747ccfb9db-78qds", "namespace": "default"}} +stdout: +Name: payment-processing-worker-747ccfb9db-78qds +Namespace: default +Priority: 0 +Service Account: default +Node: kind-control-plane/172.18.0.2 +Start Time: Tue, 26 Nov 2024 12:38:55 +0100 +Labels: app=payment-processing-worker + pod-template-hash=747ccfb9db +Annotations: +Status: Running +IP: 10.244.0.196 +IPs: + IP: 10.244.0.196 +Controlled By: ReplicaSet/payment-processing-worker-747ccfb9db +Containers: + payment-processing-container: + Container ID: containerd://1311b089c8ec9b0ccb4da8721613b6e3a76649cd20feb68270cc9867e632ce9f + Image: bash + Image ID: docker.io/library/bash@sha256:4bbfbe07eceeed5ab9136b37faf4f5cff3c28a339087ce068a76f2c1733054e8 + Port: + Host Port: + Command: + /bin/sh + Args: + -c + if [[ -z "${DEPLOY_ENV}" ]]; then echo Environment variable DEPLOY_ENV is undefined ; else while true; do echo hello; sleep 10;done; fi + State: Waiting + Reason: CrashLoopBackOff + Last State: Terminated + Reason: Completed + Exit Code: 0 + Started: Tue, 26 Nov 2024 12:38:59 +0100 + Finished: Tue, 26 Nov 2024 12:38:59 +0100 + Ready: False + Restart Count: 1 + Environment: + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-pplcf (ro) +Conditions: + Type Status + PodReadyToStartContainers True + Initialized True + Ready False + ContainersReady False + PodScheduled True +Volumes: + kube-api-access-pplcf: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: BestEffort +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal Scheduled 15s default-scheduler Successfully assigned default/payment-processing-worker-747ccfb9db-78qds to kind-control-plane + Normal Pulled 14s kubelet Successfully pulled image "bash" in 891ms (891ms including waiting). Image size: 6335174 bytes. + Normal Pulling 13s (x2 over 15s) kubelet Pulling image "bash" + Normal Created 12s (x2 over 14s) kubelet Created container payment-processing-container + Normal Started 12s (x2 over 14s) kubelet Started container payment-processing-container + Normal Pulled 12s kubelet Successfully pulled image "bash" in 814ms (1.495s including waiting). Image size: 6335174 bytes. + Warning BackOff 10s (x2 over 11s) kubelet Back-off restarting failed container payment-processing-container in pod payment-processing-worker-747ccfb9db-78qds_default(321da3d1-2435-4987-bdd9-cc69dd3617ba) + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/kubectl_find_resource.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/kubectl_find_resource.txt new file mode 100644 index 00000000000..a32f427321e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/kubectl_find_resource.txt @@ -0,0 +1,6 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_find_resource", "match_params": {"kind": "pod", "keyword": "payment-processing-worker"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_find_resource command", "params": {"kind": "pod", "keyword": "payment-processing-worker"}} +stdout: +default payment-processing-worker-747ccfb9db-78qds 0/1 CrashLoopBackOff 1 (8s ago) 12s 10.244.0.196 kind-control-plane app=payment-processing-worker,pod-template-hash=747ccfb9db + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/kubectl_logs.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/kubectl_logs.txt new file mode 100644 index 00000000000..403c9f12b1e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/kubectl_logs.txt @@ -0,0 +1,6 @@ +{"toolset_name": "kubernetes/logs", "tool_name": "fetch_pod_logs", "match_params": {"pod_name": "payment-processing-worker-747ccfb9db-78qds", "namespace": "default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "fetch_pod_logs command", "params": {"pod_name": "payment-processing-worker-747ccfb9db-78qds", "namespace": "default"}} +stdout: +Environment variable DEPLOY_ENV is undefined + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/mocks/response.txt new file mode 100644 index 00000000000..4e0c533421d --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/mocks/response.txt @@ -0,0 +1,6 @@ +payment-processing-worker-747ccfb9db-tl5gf is crashing due to missing DEPLOY_ENV environment variable. + +Crash reason: Container command checks if DEPLOY_ENV is set. If not, it prints "Environment variable DEPLOY_ENV is undefined" and +exits. No DEPLOY_ENV is defined, so the container exits immediately, causing CrashLoopBackOff. + +Fix: Set DEPLOY_ENV environment variable in the deployment spec. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/test_case.yaml new file mode 100644 index 00000000000..4d7c2ae310e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/09_crashpod/test_case.yaml @@ -0,0 +1,11 @@ +user_prompt: "What is the issue with payment-processing-worker?" +expected_output: + - The `DEPLOY_ENV` environment variable is undefined or missing +before_test: | + kubectl apply -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/crashpod/broken.yaml + kubectl wait --for=jsonpath='{.status.containerStatuses[0].state.waiting.reason}'=CrashLoopBackOff pod -l app=payment-processing-worker --timeout=120s +after_test: | + kubectl delete -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/crashpod/broken.yaml +tags: + - easy + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/app.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/app.py new file mode 100644 index 00000000000..4f98fa73d50 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/app.py @@ -0,0 +1,295 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import os +import time +import json +from datetime import datetime, timedelta +from http.server import HTTPServer, BaseHTTPRequestHandler +import threading +import random + +# Set random seed for reproducible logs +random.seed(100) + + +def log_structured(level, message, timestamp=None, **kwargs): + """Log in structured format for Loki.""" + if timestamp is None: + timestamp = datetime.utcnow() + + log_entry = { + "timestamp": timestamp.isoformat() + "Z", + "level": level, + "message": message, + "service": "payment-api", + "pod": os.environ.get("HOSTNAME", "payment-api-pod"), + **kwargs, + } + with open("/var/log/payment-api.log", "a") as f: + f.write(json.dumps(log_entry) + "\n") + f.flush() + + +class HealthHandler(BaseHTTPRequestHandler): + def do_GET(self): + if self.path == "/healthz": + self.send_response(200) + self.send_header("Content-type", "application/json") + self.end_headers() + response = {"status": "healthy", "uptime_seconds": 60} + self.wfile.write(json.dumps(response).encode()) + else: + self.send_response(404) + self.end_headers() + + def log_message(self, format, *args): + # Log health checks occasionally + if random.random() < 0.1: + log_structured( + "INFO", + "Health check passed", + endpoint="/healthz", + response_time_ms=random.randint(50, 200), + ) + + +def generate_historical_logs(): + """Generate all historical logs including the incident period.""" + # Define the problematic period + problem_start = datetime(2025, 8, 2, 13, 45, 0) + problem_end = datetime(2025, 8, 2, 14, 45, 0) + + # Generate logs from August 1 to August 4 + current_time = datetime(2025, 8, 1, 0, 0, 0) + scenario_now = datetime(2025, 8, 4, 14, 0, 0) + + while current_time < scenario_now: + # Normal operation logs + if random.random() < 0.1: + log_structured( + "INFO", + "Payment processed successfully", + timestamp=current_time, + payment_id=f"PAY-{random.randint(1000, 9999)}", + amount=round(random.uniform(10, 1000), 2), + currency="USD", + processing_time_ms=random.randint(100, 500), + ) + + if random.random() < 0.05: + log_structured( + "INFO", + "User authenticated", + timestamp=current_time, + user_id=f"USER-{random.randint(100, 999)}", + method="oauth2", + ip_address=f"192.168.{random.randint(1,254)}.{random.randint(1,254)}", + ) + + # Database query logs + if random.random() < 0.2: + query_time = random.randint(10, 100) + if problem_start <= current_time <= problem_end: + query_time = random.randint(1000, 5000) # Slow queries during issues + + log_structured( + "DEBUG", + "Database query executed", + timestamp=current_time, + query="SELECT * FROM payments WHERE status = ?", + duration_ms=query_time, + rows_returned=random.randint(0, 100), + ) + + # Cache operations + if random.random() < 0.15: + log_structured( + "DEBUG", + "Cache operation", + timestamp=current_time, + operation=random.choice(["get", "set", "expire"]), + key=f"user:{random.randint(100, 999)}:profile", + hit=random.choice([True, False]), + ) + + # During incident period, generate the specific errors + if problem_start <= current_time <= problem_end: + # Connection pool exhaustion errors + if random.random() < 0.4: + log_structured( + "ERROR", + "Failed to acquire database connection - pool exhausted", + timestamp=current_time, + wait_time_ms=random.randint(1000, 5000), + queue_length=random.randint(5, 15), + ) + + if random.random() < 0.1: + log_structured( + "ERROR", + "Transaction rollback due to connection timeout", + timestamp=current_time, + transaction_id=f"TXN-{random.randint(10000, 99999)}", + error="ConnectionTimeout", + ) + + # Health check failures with specific error + if random.random() < 0.2: + log_structured( + "ERROR", + "Liveness probe failed - health check timeout", + timestamp=current_time, + endpoint="/healthz", + timeout_ms=10000, + error="ConnectionPoolExhausted", + ) + + # Simulate consecutive probe failures occasionally + if random.random() < 0.1: + for i in range(3): + probe_time = current_time + timedelta(seconds=i * 10) + log_structured( + "ERROR", + f"Liveness probe failed ({i+1}/3)", + timestamp=probe_time, + endpoint="/healthz", + failure_count=i + 1, + failure_threshold=3, + error="HealthCheckTimeout", + ) + + # Advance time + current_time += timedelta(seconds=random.randint(10, 30)) + + +def main(): + # Generate all historical logs first + log_thread = threading.Thread(target=generate_historical_logs, daemon=True) + log_thread.start() + + # Give time for historical logs to be written + time.sleep(2) + + # Start health endpoint server + server = HTTPServer(("0.0.0.0", 8080), HealthHandler) + log_structured("INFO", "Payment API started", port=8080, version="1.2.3") + + # Add startup logs + log_structured( + "INFO", + "Initializing database connection pool", + pool_size=20, + min_connections=5, + max_connections=50, + ) + log_structured( + "INFO", + "Database connection established", + host="postgres-primary", + port=5432, + database="payments", + ) + log_structured( + "INFO", "Connection pool initialized", active_connections=5, idle_connections=15 + ) + log_structured( + "INFO", + "Loading configuration from environment", + config_source="env", + vars_loaded=42, + ) + log_structured( + "INFO", "Initializing Redis cache client", host="redis-master", port=6379 + ) + log_structured( + "INFO", + "Payment gateway connection test", + status="success", + response_time_ms=245, + ) + log_structured( + "INFO", + "Starting background workers", + workers=["payment-processor", "fraud-detector", "webhook-sender"], + ) + + # Initial database queries + queries = [ + ( + "SELECT COUNT(*) FROM payments WHERE created_at > NOW() - INTERVAL '24 hours'", + 156, + 23, + ), + ( + "SELECT * FROM payment_methods WHERE active = true ORDER BY last_used DESC LIMIT 100", + 100, + 45, + ), + ( + "SELECT COUNT(*) FROM users WHERE last_login > NOW() - INTERVAL '7 days'", + 1, + 12, + ), + ] + + for query, rows, duration in queries: + log_structured( + "DEBUG", + "Database query executed", + query=query, + rows_returned=rows, + duration_ms=duration, + ) + + log_structured("INFO", "Application initialization complete", startup_time_ms=2150) + + # Generate real-time logs with variety + def real_time_logs(): + while True: + log_type = random.random() + if log_type < 0.6: + log_structured( + "INFO", + "Payment processed successfully", + payment_id=f"PAY-{random.randint(1000, 9999)}", + amount=round(random.uniform(10, 1000), 2), + currency="USD", + processing_time_ms=random.randint(100, 500), + ) + elif log_type < 0.75: + log_structured( + "DEBUG", + "Database query executed", + query="SELECT * FROM payments WHERE user_id = ?", + duration_ms=random.randint(5, 50), + rows_returned=random.randint(0, 10), + ) + elif log_type < 0.85: + log_structured( + "INFO", + "User authenticated", + user_id=f"USER-{random.randint(100, 999)}", + method=random.choice(["oauth2", "api_key", "jwt"]), + ) + elif log_type < 0.95: + log_structured( + "DEBUG", + "Cache operation", + operation=random.choice(["get", "set"]), + key=f"session:{random.randint(1000, 9999)}", + hit=random.choice([True, False]), + ) + time.sleep(random.randint(3, 8)) + + rt_thread = threading.Thread(target=real_time_logs, daemon=True) + rt_thread.start() + + server.serve_forever() + + +if __name__ == "__main__": + main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/payment-api.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/payment-api.yaml new file mode 100644 index 00000000000..ca1b4ea74ca --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/payment-api.yaml @@ -0,0 +1,80 @@ +# Payment API deployment with Promtail sidecar +apiVersion: apps/v1 +kind: Deployment +metadata: + name: payment-api + namespace: app-100 +spec: + replicas: 1 + selector: + matchLabels: + app: payment-api + template: + metadata: + labels: + app: payment-api + spec: + containers: + # Main application container + - name: payment-api + image: python:3.9-slim + command: ["python", "/app/app.py"] + ports: + - containerPort: 8080 + name: http + env: + - name: HOSTNAME + valueFrom: + fieldRef: + fieldPath: metadata.name + livenessProbe: + httpGet: + path: /healthz + port: 8080 + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 10 + failureThreshold: 3 + volumeMounts: + - name: app-script + mountPath: /app + - name: logs + mountPath: /var/log + resources: + requests: + memory: "128Mi" + cpu: "10m" + limits: + memory: "256Mi" + # Promtail sidecar for log shipping + - name: promtail + image: grafana/promtail:2.9.0 + args: + - -config.file=/etc/promtail/promtail-config.yaml + env: + - name: HOSTNAME + valueFrom: + fieldRef: + fieldPath: metadata.name + volumeMounts: + - name: promtail-config + mountPath: /etc/promtail + - name: logs + mountPath: /var/log + resources: + requests: + memory: "32Mi" + cpu: "10m" + limits: + memory: "64Mi" + cpu: "50m" + volumes: + - name: app-script + secret: + secretName: payment-api-script + defaultMode: 0755 + - name: logs + emptyDir: {} + - name: promtail-config + configMap: + name: promtail-config diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/promtail-config.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/promtail-config.yaml new file mode 100644 index 00000000000..1246a62591b --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/promtail-config.yaml @@ -0,0 +1,46 @@ +# Promtail ConfigMap - specific to this test for log collection +apiVersion: v1 +kind: ConfigMap +metadata: + name: promtail-config +data: + promtail-config.yaml: | + server: + http_listen_port: 9080 + positions: + filename: /tmp/positions.yaml + sync_period: 10s + ignore_invalid_yaml: true + clients: + - url: http://loki:3100/loki/api/v1/push + batchwait: 100ms # Send batches more frequently + batchsize: 102400 # 100KB batch size (smaller batches) + backoff_config: + min_period: 100ms + max_period: 1m + max_retries: 20 + timeout: 10s + scrape_configs: + - job_name: payment-api + static_configs: + - targets: + - localhost + labels: + job: payment-api + namespace: app-100 + __path__: /var/log/*.log + pipeline_stages: + - json: + expressions: + timestamp: timestamp + level: level + message: message + service: service + pod_name: pod + - timestamp: + source: timestamp + format: RFC3339 + - labels: + level: + service: + pod_name: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/test_case.yaml new file mode 100644 index 00000000000..b715274f72b --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/test_case.yaml @@ -0,0 +1,76 @@ +user_prompt: "The payment-api pod in namespace app-100 had issues on August 2, 2025 around 13:45 UTC. What happened?" + +expected_output: + - The payment-api pod experienced failures caused by database connection pool exhaustion + +# - The issue occurred on August 2, 2025 between 13:45-14:45 UTC and lasted for about 1 hour +# - Health checks at /healthz endpoint failed because they couldn't acquire database connections +# - Logs show "ConnectionPoolExhausted" errors and "Failed to acquire database connection - pool exhausted" + +tags: + - logs + - kubernetes + - medium + +port_forwards: + - namespace: app-100 + service: loki + local_port: 3100 + remote_port: 3100 + +before_test: | + # Create namespace + kubectl create namespace app-100 || true + + # Deploy Loki infrastructure from shared config + kubectl apply -f ../../shared/loki.yaml -n app-100 + + # Create promtail config for this test + kubectl apply -f promtail-config.yaml -n app-100 + + # Create secret for payment-api + kubectl create secret generic payment-api-script \ + --from-file=app.py=./app.py \ + -n app-100 --dry-run=client -o yaml | kubectl apply -f - + + # Wait for Loki to be ready + kubectl wait --for=condition=ready pod -l app=loki -n app-100 --timeout=60s + + # Wait for Loki ingester to be ready + for i in {1..60}; do + if kubectl exec -n app-100 deployment/loki -- wget -q -O- http://localhost:3100/ready 2>/dev/null | grep -q "ready"; then + break + fi + [ $i -eq 60 ] && echo "ERROR: Loki not ready" && exit 1 + sleep 1 + done + + # Deploy payment-api + kubectl apply -f payment-api.yaml + + # Wait for payment-api pod to be ready + kubectl wait --for=condition=ready pod -l app=payment-api -n app-100 --timeout=60s + + # Wait for logs to appear in Loki + sleep 5 # Let Promtail initialize + START_TIME=$(date +%s) + while [ $(($(date +%s) - START_TIME)) -lt 120 ]; do + LOG_COUNT=$(kubectl exec -n app-100 deployment/loki -- wget -q -O- 'http://localhost:3100/loki/api/v1/query_range?query={namespace="app-100"}&limit=1' 2>/dev/null | grep -o '"values"' | wc -l) + HISTORICAL_COUNT=$(kubectl exec -n app-100 deployment/loki -- wget -q -O- 'http://localhost:3100/loki/api/v1/query_range?query={namespace="app-100"}&start=2025-08-02T13:00:00Z&end=2025-08-02T15:00:00Z&limit=1' 2>/dev/null | grep -o '"values"' | wc -l) + ERROR_COUNT=$(kubectl exec -n app-100 deployment/loki -- wget -q -O- 'http://localhost:3100/loki/api/v1/query_range?query={namespace="app-100",level="ERROR"}&start=2025-08-02T13:00:00Z&end=2025-08-02T15:00:00Z&limit=1' 2>/dev/null | grep -o '"values"' | wc -l) + + if [ "$LOG_COUNT" -gt "0" ] && [ "$HISTORICAL_COUNT" -gt "0" ] && [ "$ERROR_COUNT" -gt "0" ]; then + echo "Logs ready in Loki" + exit 0 + fi + sleep 2 + done + + echo "ERROR: Logs not found in Loki after 120s" + exit 1 + +after_test: | + kubectl delete namespace app-100 --ignore-not-found --wait=false || true + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/toolsets.yaml new file mode 100644 index 00000000000..e468aacbf90 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/100_historical_logs/toolsets.yaml @@ -0,0 +1,13 @@ +toolsets: + kubernetes/logs: + enabled: false + kubernetes/core: + enabled: true + grafana/loki: + enabled: true + config: + url: http://localhost:3100 + api_key: "" # No auth needed for local Loki + labels: + pod: pod_name # Match the label used by Promtail + namespace: namespace diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/app.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/app.py new file mode 100644 index 00000000000..8822b3679fa --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/app.py @@ -0,0 +1,95 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import os +import json +from datetime import datetime, timedelta +from http.server import HTTPServer, BaseHTTPRequestHandler +import random + +random.seed(100) + + +def log_structured(level, message, timestamp=None, **kwargs): + """Log in structured format for Loki.""" + if timestamp is None: + timestamp = datetime.utcnow() + + log_entry = { + "timestamp": timestamp.isoformat() + "Z", + "level": level, + "message": message, + "service": "payment-api", + "pod": os.environ.get("HOSTNAME", "payment-api-pod"), + **kwargs, + } + with open("/var/log/payment-api.log", "a") as f: + f.write(json.dumps(log_entry) + "\n") + f.flush() + + +class HealthHandler(BaseHTTPRequestHandler): + def do_GET(self): + if self.path == "/healthz": + self.send_response(200) + self.end_headers() + else: + self.send_response(404) + self.end_headers() + + def log_message(self, format, *args): + pass # Suppress default logging + + +def generate_historical_logs(): + """Generate minimal historical logs with the incident.""" + problem_start = datetime(2025, 8, 2, 13, 45, 0) + problem_end = datetime(2025, 8, 2, 14, 45, 0) + + # Start from August 1 to have some context + current_time = datetime(2025, 8, 1, 12, 0, 0) + scenario_end = datetime(2025, 8, 4, 14, 0, 0) + + while current_time < scenario_end: + # Minimal normal logs + if random.random() < 0.05: + log_structured( + "INFO", + "Payment processed successfully", + timestamp=current_time, + payment_id=f"PAY-{random.randint(1000, 9999)}", + ) + + # During incident period, generate the required errors + if problem_start <= current_time <= problem_end: + # The key error message Holmes needs to find + if random.random() < 0.4: + log_structured( + "ERROR", + "Failed to acquire database connection - pool exhausted", + timestamp=current_time, + wait_time_ms=random.randint(1000, 5000), + queue_length=random.randint(5, 15), + ) + + # Advance time + current_time += timedelta(minutes=random.randint(1, 5)) + + +def main(): + # Generate all historical logs immediately + generate_historical_logs() + + # Start minimal HTTP server + server = HTTPServer(("0.0.0.0", 8080), HealthHandler) + log_structured("INFO", "Payment API started", port=8080) + + # Keep server running (pod will be deleted before investigation) + server.serve_forever() + + +if __name__ == "__main__": + main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/payment-api.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/payment-api.yaml new file mode 100644 index 00000000000..ae394e5771f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/payment-api.yaml @@ -0,0 +1,80 @@ +# Payment API deployment with Promtail sidecar +apiVersion: apps/v1 +kind: Deployment +metadata: + name: payment-api + namespace: app-101 +spec: + replicas: 1 + selector: + matchLabels: + app: payment-api + template: + metadata: + labels: + app: payment-api + spec: + containers: + # Main application container + - name: payment-api + image: python:3.9-slim + command: ["python", "/app/app.py"] + ports: + - containerPort: 8080 + name: http + env: + - name: HOSTNAME + valueFrom: + fieldRef: + fieldPath: metadata.name + livenessProbe: + httpGet: + path: /healthz + port: 8080 + initialDelaySeconds: 10 + periodSeconds: 10 + timeoutSeconds: 10 + failureThreshold: 3 + volumeMounts: + - name: app-script + mountPath: /app + - name: logs + mountPath: /var/log + resources: + requests: + memory: "128Mi" + cpu: "10m" + limits: + memory: "256Mi" + # Promtail sidecar for log shipping + - name: promtail + image: grafana/promtail:2.9.0 + args: + - -config.file=/etc/promtail/promtail-config.yaml + env: + - name: HOSTNAME + valueFrom: + fieldRef: + fieldPath: metadata.name + volumeMounts: + - name: promtail-config + mountPath: /etc/promtail + - name: logs + mountPath: /var/log + resources: + requests: + memory: "32Mi" + cpu: "10m" + limits: + memory: "64Mi" + cpu: "50m" + volumes: + - name: app-script + secret: + secretName: payment-api-script + defaultMode: 0755 + - name: logs + emptyDir: {} + - name: promtail-config + configMap: + name: promtail-config diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/promtail-config.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/promtail-config.yaml new file mode 100644 index 00000000000..a0a10c0940f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/promtail-config.yaml @@ -0,0 +1,46 @@ +# Promtail ConfigMap - specific to this test for log collection +apiVersion: v1 +kind: ConfigMap +metadata: + name: promtail-config +data: + promtail-config.yaml: | + server: + http_listen_port: 9080 + positions: + filename: /tmp/positions.yaml + sync_period: 10s + ignore_invalid_yaml: true + clients: + - url: http://loki:3100/loki/api/v1/push + batchwait: 100ms # Send batches more frequently + batchsize: 102400 # 100KB batch size (smaller batches) + backoff_config: + min_period: 100ms + max_period: 1m + max_retries: 20 + timeout: 10s + scrape_configs: + - job_name: payment-api + static_configs: + - targets: + - localhost + labels: + job: payment-api + namespace: app-101 + __path__: /var/log/*.log + pipeline_stages: + - json: + expressions: + timestamp: timestamp + level: level + message: message + service: service + pod_name: pod + - timestamp: + source: timestamp + format: RFC3339 + - labels: + level: + service: + pod_name: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/test_case.yaml new file mode 100644 index 00000000000..9076328f051 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/test_case.yaml @@ -0,0 +1,88 @@ +user_prompt: "The payment-api pod in namespace app-101 had issues on August 2, 2025 around 13:45 UTC. What happened?" + +description: | + This test verifies that Holmes can analyze historical logs from Loki even when + the pod that generated the logs no longer exists in the cluster. This is a harder + variant of test 100 because Holmes cannot use kubectl describe or get pod commands + to gather additional context - it must rely entirely on the historical logs stored + in Loki. This scenario is common in production where problematic pods are often + deleted or replaced by the time investigation begins. + +expected_output: + - The payment-api pod experienced failures caused by database connection pool exhaustion + +tags: + - logs + - kubernetes + - hard + +port_forwards: + - namespace: app-101 + service: loki + local_port: 3101 + remote_port: 3100 + +before_test: | + # Create namespace + kubectl create namespace app-101 || true + + # Deploy Loki infrastructure from shared config + kubectl apply -f ../../shared/loki.yaml -n app-101 + + # Create promtail config for this test + kubectl apply -f promtail-config.yaml -n app-101 + + # Create secret for payment-api + kubectl create secret generic payment-api-script \ + --from-file=app.py=./app.py \ + -n app-101 --dry-run=client -o yaml | kubectl apply -f - + + # Wait for Loki to be ready + kubectl wait --for=condition=ready pod -l app=loki -n app-101 --timeout=60s + + # Wait for Loki ingester to be ready + for i in {1..60}; do + if kubectl exec -n app-101 deployment/loki -- wget -q -O- http://localhost:3100/ready 2>/dev/null | grep -q "ready"; then + break + fi + [ $i -eq 60 ] && echo "ERROR: Loki not ready" && exit 1 + sleep 1 + done + + # Deploy payment-api + kubectl apply -f payment-api.yaml + + # Wait for payment-api pod to be ready + kubectl wait --for=condition=ready pod -l app=payment-api -n app-101 --timeout=60s + + # Wait for logs to appear in Loki + sleep 5 # Let Promtail initialize + START_TIME=$(date +%s) + while [ $(($(date +%s) - START_TIME)) -lt 120 ]; do + LOG_COUNT=$(kubectl exec -n app-101 deployment/loki -- wget -q -O- 'http://localhost:3100/loki/api/v1/query_range?query={namespace="app-101"}&limit=1' 2>/dev/null | grep -o '"values"' | wc -l) + HISTORICAL_COUNT=$(kubectl exec -n app-101 deployment/loki -- wget -q -O- 'http://localhost:3100/loki/api/v1/query_range?query={namespace="app-101"}&start=2025-08-02T13:00:00Z&end=2025-08-02T15:00:00Z&limit=1' 2>/dev/null | grep -o '"values"' | wc -l) + ERROR_COUNT=$(kubectl exec -n app-101 deployment/loki -- wget -q -O- 'http://localhost:3100/loki/api/v1/query_range?query={namespace="app-101",level="ERROR"}&start=2025-08-02T13:00:00Z&end=2025-08-02T15:00:00Z&limit=1' 2>/dev/null | grep -o '"values"' | wc -l) + + if [ "$LOG_COUNT" -gt "0" ] && [ "$HISTORICAL_COUNT" -gt "0" ] && [ "$ERROR_COUNT" -gt "0" ]; then + echo "Logs ready in Loki" + break + fi + sleep 2 + done + + # DELETE THE POD - this is the key difference from test 100 + # Holmes will need to investigate using only historical logs + echo "Deleting payment-api pod to simulate real-world scenario..." + kubectl delete deployment payment-api -n app-101 + kubectl delete pod -l app=payment-api -n app-101 + + # Verify pod is gone + kubectl get pods -n app-101 -l app=payment-api 2>&1 | grep "No resources found" || (echo "ERROR: Pod still exists" && exit 1) + echo "Pod successfully deleted - Holmes must use historical logs only" + +after_test: | + # Delete namespace in background to avoid hanging + kubectl delete namespace app-101 --wait=false --ignore-not-found || true + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/toolsets.yaml new file mode 100644 index 00000000000..43cb312e80e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/101_historical_logs_pod_deleted/toolsets.yaml @@ -0,0 +1,13 @@ +toolsets: + kubernetes/logs: + enabled: false + kubernetes/core: + enabled: true + grafana/loki: + enabled: true + config: + url: http://localhost:3101 + api_key: "" # No auth needed for local Loki + labels: + pod: pod_name # Match the label used by Promtail + namespace: namespace diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/app.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/app.py new file mode 100644 index 00000000000..f889e996b4e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/app.py @@ -0,0 +1,43 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import json +import os +import time +from datetime import datetime + + +def log(message): + """Write structured log for Promtail.""" + entry = { + "timestamp": datetime.utcnow().isoformat() + "Z", + "level": "WARN" if "warning" in message else "INFO", + "message": message, + "service": "inventory-service", + "pod": os.environ.get("HOSTNAME", "inventory-service-pod"), + } + with open("/var/log/inventory.log", "a") as f: + f.write(json.dumps(entry) + "\n") + f.flush() + + +# Generate the required logs +logs = [ + "Inventory item ITEM-1234 checked - stock level: 45 units", + "Order ORD-5678 processed - 3 units of ITEM-1234", + "Stock updated for ITEM-1234 - new level: 42 units", + "Low stock warning for ITEM-9999 - current level: 5 units", + "Inventory reconciliation completed - 127 items verified", +] + +for msg in logs: + log(msg) + time.sleep(0.5) + +# Keep running with periodic logs +while True: + time.sleep(10) + log("Inventory check completed - all systems operational") diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/deployment.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/deployment.yaml new file mode 100644 index 00000000000..7cef7ed26d1 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/deployment.yaml @@ -0,0 +1,109 @@ +# Promtail ConfigMap with pod_name label (test-specific to demonstrate label mismatch) +apiVersion: v1 +kind: ConfigMap +metadata: + name: promtail-config +data: + promtail-config.yaml: | + server: + http_listen_port: 9080 + positions: + filename: /tmp/positions.yaml + clients: + - url: http://loki:3100/loki/api/v1/push + scrape_configs: + - job_name: inventory + static_configs: + - targets: + - localhost + labels: + job: inventory-service + namespace: app-102 + __path__: /var/log/*.log + pipeline_stages: + - json: + expressions: + timestamp: timestamp + level: level + message: message + service: service + pod_name: pod # Note: using pod_name instead of pod + - timestamp: + source: timestamp + format: RFC3339 + - labels: + level: + service: + pod_name: # This creates the pod_name label +--- +# Inventory Service deployment +apiVersion: apps/v1 +kind: Deployment +metadata: + name: inventory-service +spec: + replicas: 1 + selector: + matchLabels: + app: inventory-service + template: + metadata: + labels: + app: inventory-service + spec: + containers: + - name: inventory-service + image: python:3.9-slim + command: ["python", "/app/app.py"] + ports: + - containerPort: 8080 + name: http + env: + - name: HOSTNAME + valueFrom: + fieldRef: + fieldPath: metadata.name + volumeMounts: + - name: app-script + mountPath: /app + - name: logs + mountPath: /var/log + resources: + requests: + memory: "64Mi" + cpu: "50m" + limits: + memory: "128Mi" + cpu: "100m" + # Promtail sidecar + - name: promtail + image: grafana/promtail:2.9.0 + args: + - -config.file=/etc/promtail/promtail-config.yaml + env: + - name: HOSTNAME + valueFrom: + fieldRef: + fieldPath: metadata.name + volumeMounts: + - name: promtail-config + mountPath: /etc/promtail + - name: logs + mountPath: /var/log + resources: + requests: + memory: "32Mi" + cpu: "10m" + limits: + memory: "64Mi" + cpu: "50m" + volumes: + - name: app-script + secret: + secretName: inventory-service-script + defaultMode: 0755 + - name: logs + emptyDir: {} + - name: promtail-config + configMap: + name: promtail-config diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/test_case.yaml new file mode 100644 index 00000000000..b055bce6ebd --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/test_case.yaml @@ -0,0 +1,77 @@ +user_prompt: "Fetch me the logs for the inventory-service pod in namespace app-102" + +description: | + This test verifies that the agent can discover and handle Loki label mismatches. + The Promtail configuration uses 'pod_name' as the label, but the Grafana/Loki + toolset defaults to 'pod'. The agent should be able to discover this mismatch + and either work around it or clearly explain why logs cannot be fetched. + + NOTE: This is a toolset limitation test. The current Loki toolset cannot + automatically discover available labels in Loki. It assumes standard labels + like 'pod', 'namespace', etc. When non-standard labels are used (like 'pod_name' + instead of 'pod'), the toolset has no mechanism to detect this mismatch or + query for available labels. This requires improvement in the toolset itself, + not in the model's intelligence. + +expected_output: | + - Inventory item ITEM-1234 checked - stock level: 45 units + - Order ORD-5678 processed - 3 units of ITEM-1234 + - Stock updated for ITEM-1234 - new level: 42 units + - Low stock warning for ITEM-9999 - current level: 5 units + - Inventory reconciliation completed - 127 items verified + +tags: + - logs + - kubernetes + - toolset-limitation + - hard + +port_forwards: + - namespace: app-102 + service: loki + local_port: 3102 + remote_port: 3100 + +before_test: | + # Create namespace + kubectl create namespace app-102 || true + + # Deploy Loki from shared config + kubectl apply -f ../../shared/loki.yaml -n app-102 + + # Create secret and deploy test-specific resources + kubectl create secret generic inventory-service-script \ + --from-file=app.py=./app.py \ + -n app-102 --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f deployment.yaml -n app-102 + + # Wait for pods to be ready + kubectl wait --for=condition=ready pod -l app=loki -n app-102 --timeout=60s + kubectl wait --for=condition=ready pod -l app=inventory-service -n app-102 --timeout=60s + + # Wait for Loki ingester to be ready + for i in {1..30}; do + if kubectl exec -n app-102 deployment/loki -- wget -q -O- http://localhost:3100/ready 2>/dev/null | grep -q "ready"; then + break + fi + [ $i -eq 30 ] && echo "ERROR: Loki not ready" && exit 1 + sleep 1 + done + + # Wait for logs to appear in Loki + sleep 5 # Let Promtail initialize + for i in {1..30}; do + LOG_COUNT=$(kubectl exec -n app-102 deployment/loki -- wget -q -O- 'http://localhost:3100/loki/api/v1/query_range?query={namespace="app-102"}&limit=1' 2>/dev/null | grep -o '"values"' | wc -l) + if [ "$LOG_COUNT" -gt "0" ]; then + echo "Logs ready in Loki" + break + fi + [ $i -eq 30 ] && echo "ERROR: No logs in Loki" && exit 1 + sleep 1 + done + +after_test: | + kubectl delete namespace app-102 --wait=false --ignore-not-found || true + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/toolsets.yaml new file mode 100644 index 00000000000..2c45d4ba16a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/102_loki_label_discovery/toolsets.yaml @@ -0,0 +1,12 @@ +toolsets: + kubernetes/logs: + enabled: false # Disable to force use of Loki + kubernetes/core: + enabled: true + grafana/loki: + enabled: true + config: + url: http://localhost:3100 + api_key: "" # No auth needed for local Loki + # Note: No labels configuration provided + # The agent will need to discover that pod_name is used instead of pod diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/103_logs_transparency_default_limit/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/103_logs_transparency_default_limit/manifest.yaml new file mode 100644 index 00000000000..87bf178c355 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/103_logs_transparency_default_limit/manifest.yaml @@ -0,0 +1,78 @@ +apiVersion: v1 +kind: Secret +metadata: + name: deep-diver-app + namespace: app-103 +type: Opaque +stringData: + app.py: | + import time + from datetime import datetime + + def main(): + print("Pod deep-diver starting...", flush=True) + + # Generate a mix of log levels - more than default limit of 100 + for i in range(1, 251): # Generate 250 logs to ensure truncation + timestamp = datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") + + if i % 4 == 0: + print(f"{timestamp} ERROR Database connection failed: timeout after 30s (entry {i})", flush=True) + elif i % 4 == 1: + print(f"{timestamp} INFO Processing request {i} successfully", flush=True) + elif i % 4 == 2: + print(f"{timestamp} ERROR Authentication token expired for user{i}", flush=True) + else: # i % 4 == 3 + print(f"{timestamp} WARN High memory usage detected: 78% (entry {i})", flush=True) + + time.sleep(0.1) + + # Add final logs + timestamp = datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") + print(f"{timestamp} ERROR Critical: Service mesh connectivity lost", flush=True) + print(f"{timestamp} INFO Service startup complete, entering main loop", flush=True) + + # Keep container running + while True: + time.sleep(3600) + + if __name__ == "__main__": + main() + +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: deep-diver + namespace: app-103 +spec: + replicas: 1 + selector: + matchLabels: + app: deep-diver + template: + metadata: + labels: + app: deep-diver + spec: + containers: + - name: deep-diver + image: python:3.9-slim + command: ["python", "/app/app.py"] + env: + - name: PYTHONUNBUFFERED + value: "1" + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "128Mi" + volumeMounts: + - name: app-code + mountPath: /app + volumes: + - name: app-code + secret: + secretName: deep-diver-app + defaultMode: 0755 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/103_logs_transparency_default_limit/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/103_logs_transparency_default_limit/test_case.yaml new file mode 100644 index 00000000000..16619867c35 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/103_logs_transparency_default_limit/test_case.yaml @@ -0,0 +1,25 @@ +user_prompt: "Show me logs from the pod deep-diver in namespace app-103" + +expected_output: | + Holmes should: + 1. Show logs from the pod + 2. Communicate that logs are truncated: mentions showing "100" logs out of a larger total + 3. Should use phrases like "showing last 100", "truncated", or indicate there are more logs available + 4. Should still show the actual log content including various log levels (ERROR, INFO, WARN) + +before_test: | + kubectl create namespace app-103 || true + kubectl apply -f ./manifest.yaml + +after_test: | + kubectl delete -f ./manifest.yaml --ignore-not-found + kubectl delete namespace app-103 --ignore-not-found --wait=false + +tags: + - logs + - transparency + - medium + - kubernetes + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/107_log_filter_http_status_code/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/107_log_filter_http_status_code/manifest.yaml new file mode 100644 index 00000000000..1c3f33bf2f9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/107_log_filter_http_status_code/manifest.yaml @@ -0,0 +1,114 @@ +apiVersion: v1 +kind: Secret +metadata: + name: api-server-app + namespace: app-107 +type: Opaque +stringData: + app.py: | + import time + from datetime import datetime, timezone + import random + + def log_api(timestamp, level, method, endpoint, status, response_time, message): + """Generate HTTP log entry""" + print(f"{timestamp} [{level}] \"{method} {endpoint} HTTP/1.1\" {status} {response_time}ms - {message}", flush=True) + + def main(): + # Simulate HTTP logs with 503 errors on specific endpoint + now = datetime.now(timezone.utc) + + # Lots of successful requests to various endpoints + log_api(f"{now.isoformat()}.001Z", "INFO", "GET", "/api/users/123", "200", "45", "Success") + log_api(f"{now.isoformat()}.002Z", "INFO", "GET", "/api/products", "200", "78", "Success") + log_api(f"{now.isoformat()}.003Z", "INFO", "POST", "/api/orders", "201", "156", "Order created") + log_api(f"{now.isoformat()}.004Z", "INFO", "GET", "/api/inventory/check", "200", "23", "Success") + + # First 503 on report generation + log_api(f"{now.isoformat()}.005Z", "ERROR", "POST", "/api/reports/generate", "503", "30001", "Service timeout after 30s") + + # More successful requests + endpoints = ["/api/users", "/api/products", "/api/orders", "/api/inventory", "/api/auth/verify"] + for i in range(6, 21): + ep = endpoints[i % 5] + log_api(f"{now.isoformat()}.0{i:02d}Z", "INFO", "GET", ep, "200", f"{20 + i}", "Success") + + # Another 503 on same endpoint + log_api(f"{now.isoformat()}.021Z", "ERROR", "POST", "/api/reports/generate", "503", "30002", "Gateway timeout - upstream service not responding") + + # Mix of other status codes + log_api(f"{now.isoformat()}.022Z", "WARN", "GET", "/api/users/999", "404", "12", "User not found") + log_api(f"{now.isoformat()}.023Z", "INFO", "GET", "/api/health", "200", "5", "Healthy") + log_api(f"{now.isoformat()}.024Z", "WARN", "POST", "/api/auth/login", "401", "34", "Invalid credentials") + + # More successful traffic + for i in range(25, 41): + log_api(f"{now.isoformat()}.0{i}Z", "INFO", "GET", f"/api/data/{i}", "200", f"{30 + i}", "Success") + + # Pattern emerges - more 503s on report endpoint + log_api(f"{now.isoformat()}.041Z", "ERROR", "POST", "/api/reports/generate", "503", "30000", "Upstream timeout: report service overloaded") + log_api(f"{now.isoformat()}.042Z", "INFO", "GET", "/api/reports/list", "200", "67", "Success") # GET works fine + log_api(f"{now.isoformat()}.043Z", "ERROR", "POST", "/api/reports/generate", "503", "30003", "Report generation timeout") + + # Other errors to create noise + log_api(f"{now.isoformat()}.044Z", "ERROR", "GET", "/api/invalid", "404", "8", "Endpoint not found") + log_api(f"{now.isoformat()}.045Z", "WARN", "POST", "/api/users", "400", "15", "Invalid request body") + + # More normal traffic + for i in range(46, 61): + log_api(f"{now.isoformat()}.0{i}Z", "INFO", "GET", f"/api/products/{i}", "200", f"{40 + (i % 50)}", "Success") + + # Another 503 cluster + log_api(f"{now.isoformat()}.061Z", "ERROR", "POST", "/api/reports/generate", "503", "30001", "Report service timeout") + log_api(f"{now.isoformat()}.062Z", "ERROR", "POST", "/api/reports/generate", "503", "30000", "Gateway timeout") + + # Summary logs + print(f"{now.isoformat()}.070Z [WARN] Report generation service experiencing high latency", flush=True) + print(f"{now.isoformat()}.071Z [ERROR] 6 requests to /api/reports/generate resulted in 503 errors in the last minute", flush=True) + print(f"{now.isoformat()}.072Z [INFO] All 503 errors timeout after exactly 30 seconds", flush=True) + print(f"{now.isoformat()}.073Z [INFO] Other endpoints operating normally with avg response time 45ms", flush=True) + + # Keep pod running + while True: + time.sleep(3600) + + if __name__ == "__main__": + main() + +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: api-server + namespace: app-107 +spec: + replicas: 1 + selector: + matchLabels: + app: api-server + template: + metadata: + labels: + app: api-server + spec: + containers: + - name: api-server + image: python:3.9-slim + command: ["python", "/app/app.py"] + env: + - name: PYTHONUNBUFFERED + value: "1" + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "128Mi" + volumeMounts: + - name: app-code + mountPath: /app + volumes: + - name: app-code + secret: + secretName: api-server-app + defaultMode: 0755 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/107_log_filter_http_status_code/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/107_log_filter_http_status_code/mocks/response.txt new file mode 100644 index 00000000000..d5f39f0c586 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/107_log_filter_http_status_code/mocks/response.txt @@ -0,0 +1,22 @@ +503 errors in api-server (namespace app-107) are caused by timeouts on the /api/reports/generate endpoint. All other endpoints +respond quickly and successfully. + +Key findings: + + • Pod is healthy, no restarts, all readiness checks pass. + • No Service or Ingress exists in the namespace. + • Logs show repeated 503 errors for /api/reports/generate, each after a 30s timeout, with messages like "Report service timeout" + and "upstream service not responding". + • Other endpoints are fast and healthy. + +Root cause: The /api/reports/generate handler is timing out after 30s, likely due to an internal or upstream dependency being slow +or unavailable. No Kubernetes-level networking or deployment issues detected. + +How to fix: + + 1 Investigate the report generation logic and any dependencies it calls (e.g., external APIs, databases, microservices). + 2 Check for resource bottlenecks or errors in those dependencies. + 3 Add a Service if you intend to expose this pod internally. + 4 If /api/reports/generate depends on another service, ensure that service is running and reachable. + +No cluster or pod-level issues found; this is an application or dependency problem. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/107_log_filter_http_status_code/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/107_log_filter_http_status_code/test_case.yaml new file mode 100644 index 00000000000..48a6658588f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/107_log_filter_http_status_code/test_case.yaml @@ -0,0 +1,25 @@ +description: | + A web service is experiencing 503 errors but they're buried in successful + requests. Holmes needs to filter by status code and identify the pattern - all 503s + are happening on a specific endpoint during high load. + +user_prompt: "Troubleshoot 503 errors in api-server app-107 namespace" + +tags: + - logs + - medium + - kubernetes + +before_test: | + kubectl create namespace app-107 || true + kubectl apply -f ./manifest.yaml -n app-107 + kubectl wait --for=condition=ready pod -l app=api-server -n app-107 --timeout=60s || true + +after_test: | + kubectl delete namespace app-107 --ignore-not-found --wait=false || true + +expected_output: | + 503 status codes occur on the /api/reports/generate endpoint when requests take longer than 30 seconds. + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/108_logs_nearby_lines/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/108_logs_nearby_lines/manifest.yaml new file mode 100644 index 00000000000..b88ad00fdc9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/108_logs_nearby_lines/manifest.yaml @@ -0,0 +1,110 @@ +apiVersion: v1 +kind: Secret +metadata: + name: api-service-app + namespace: app-108 +type: Opaque +stringData: + app.sh: | + #!/bin/sh + # Simulate service with 300+ Connection refused errors from config issue + + # Initial healthy state + echo "2024-01-15T10:00:00.000Z [INFO] API Service v2.5.0 starting in PRODUCTION environment" + echo "2024-01-15T10:00:00.100Z [INFO] Loading configuration..." + echo "2024-01-15T10:00:00.200Z [CONFIG] Environment: PRODUCTION" + echo "2024-01-15T10:00:00.300Z [CONFIG] Database host: db-prod.internal:5432" + echo "2024-01-15T10:00:00.400Z [CONFIG] Cache host: redis-prod.internal:6379" + echo "2024-01-15T10:00:00.500Z [CONFIG] External API: https://api.production.example.com" + echo "2024-01-15T10:00:01.000Z [INFO] Successfully connected to database" + echo "2024-01-15T10:00:01.100Z [INFO] Successfully connected to cache" + echo "2024-01-15T10:00:01.200Z [INFO] Server listening on port 8080" + + # Normal operation for a while + echo "2024-01-15T10:01:00.000Z [HTTP] 200 GET /api/users/123 (45ms)" + echo "2024-01-15T10:01:05.000Z [HTTP] 200 POST /api/orders (89ms)" + echo "2024-01-15T10:01:10.000Z [HTTP] 200 GET /api/products (34ms)" + echo "2024-01-15T10:01:15.000Z [INFO] Health check: OK" + + # THE ROOT CAUSE - Config reload with wrong settings + echo "2024-01-15T10:05:00.000Z [WARN] Configuration file change detected" + echo "2024-01-15T10:05:00.100Z [INFO] Reloading configuration..." + echo "2024-01-15T10:05:00.200Z [CONFIG] Reading from /config/app.yaml" + echo "2024-01-15T10:05:00.300Z [CONFIG] PROD_CONFIG=false (was: true)" + echo "2024-01-15T10:05:00.400Z [CONFIG] Environment: PRODUCTION (unchanged)" + echo "2024-01-15T10:05:00.500Z [CONFIG] Database host: db-staging.internal:5432 (was: db-prod.internal:5432)" + echo "2024-01-15T10:05:00.600Z [CONFIG] Cache host: redis-staging.internal:6379 (was: redis-prod.internal:6379)" + echo "2024-01-15T10:05:00.700Z [WARN] Configuration mismatch: Using staging endpoints in production environment!" + echo "2024-01-15T10:05:00.800Z [INFO] Closing existing connections..." + echo "2024-01-15T10:05:00.900Z [INFO] Establishing new connections with updated config..." + + # First connection refused errors start here + echo "2024-01-15T10:05:01.000Z [ERROR] Failed to connect to database: Connection refused (db-staging.internal:5432)" + echo "2024-01-15T10:05:01.100Z [ERROR] Failed to connect to cache: Connection refused (redis-staging.internal:6379)" + echo "2024-01-15T10:05:01.200Z [ERROR] Service degraded: No database connection" + + # Generate 300+ Connection refused errors as service keeps retrying + for i in $(seq 1 50); do + echo "2024-01-15T10:05:$(printf '%02d' $((i + 1))).000Z [HTTP] 500 GET /api/users/$(($i + 1000)) - Connection refused" + echo "2024-01-15T10:05:$(printf '%02d' $((i + 1))).100Z [ERROR] Database connection failed: Connection refused (db-staging.internal:5432)" + echo "2024-01-15T10:05:$(printf '%02d' $((i + 1))).200Z [ERROR] Cache connection failed: Connection refused (redis-staging.internal:6379)" + echo "2024-01-15T10:05:$(printf '%02d' $((i + 1))).300Z [RETRY] Attempting to reconnect to database..." + echo "2024-01-15T10:05:$(printf '%02d' $((i + 1))).400Z [ERROR] Reconnection failed: Connection refused" + echo "2024-01-15T10:05:$(printf '%02d' $((i + 1))).500Z [HTTP] 500 POST /api/orders - Connection refused" + done + + # Continue with more errors in next minute + for i in $(seq 1 50); do + echo "2024-01-15T10:06:$(printf '%02d' $i).000Z [ERROR] Connection refused (db-staging.internal:5432)" + echo "2024-01-15T10:06:$(printf '%02d' $i).100Z [HTTP] 500 GET /api/products - Connection refused" + echo "2024-01-15T10:06:$(printf '%02d' $i).200Z [ERROR] All database queries failing: Connection refused" + echo "2024-01-15T10:06:$(printf '%02d' $i).300Z [WARN] Circuit breaker opened for database connections" + echo "2024-01-15T10:06:$(printf '%02d' $i).400Z [ERROR] Health check failed: Connection refused" + done + + # Some diagnostic logs mixed in + echo "2024-01-15T10:07:00.000Z [ALERT] Service has been down for 2 minutes" + echo "2024-01-15T10:07:00.100Z [INFO] Current configuration:" + echo "2024-01-15T10:07:00.200Z [INFO] Environment: PRODUCTION" + echo "2024-01-15T10:07:00.300Z [INFO] Database: db-staging.internal (INCORRECT FOR PRODUCTION)" + echo "2024-01-15T10:07:00.400Z [INFO] Cache: redis-staging.internal (INCORRECT FOR PRODUCTION)" + echo "2024-01-15T10:07:00.500Z [ERROR] Staging infrastructure not accessible from production network" + + # More connection refused errors + for i in $(seq 1 30); do + echo "2024-01-15T10:07:$(printf '%02d' $i).000Z [ERROR] Connection refused (db-staging.internal:5432)" + echo "2024-01-15T10:07:$(printf '%02d' $i).100Z [ERROR] Connection refused (redis-staging.internal:6379)" + echo "2024-01-15T10:07:$(printf '%02d' $i).200Z [HTTP] 500 GET /api/health - Connection refused" + done + + # Keep pod running + sleep 3600 + +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: api-service + namespace: app-108 +spec: + replicas: 1 + selector: + matchLabels: + app: api-service + template: + metadata: + labels: + app: api-service + spec: + containers: + - name: api-service + image: busybox + command: ["sh", "/app/app.sh"] + volumeMounts: + - name: app-code + mountPath: /app + volumes: + - name: app-code + secret: + secretName: api-service-app + defaultMode: 0755 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/108_logs_nearby_lines/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/108_logs_nearby_lines/test_case.yaml new file mode 100644 index 00000000000..771a191d9d4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/108_logs_nearby_lines/test_case.yaml @@ -0,0 +1,24 @@ +description: | + A service has "Connection refused" errors + The cause is a configuration change + To understand what happened, holmes needs to see logs immediate BEFORE the first occurrence + +user_prompt: "What is causing connection refused errors in api-service namespace app-108?" + +tags: + - logs + - medium + - kubernetes + +before_test: | + kubectl create namespace app-108 || true + kubectl apply -f ./manifest.yaml -n app-108 + kubectl wait --for=condition=ready pod -l app=api-service -n app-108 --timeout=60s || true + +after_test: | + kubectl delete namespace app-108 --ignore-not-found --wait=false || true + +expected_output: The first Connection refused errors started after a config reload that loaded staging database settings in production. + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/109_logs_transparency_not_found/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/109_logs_transparency_not_found/manifest.yaml new file mode 100644 index 00000000000..4d875fd91b5 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/109_logs_transparency_not_found/manifest.yaml @@ -0,0 +1,51 @@ +apiVersion: v1 +kind: Secret +metadata: + name: data-processor-app + namespace: app-109 +type: Opaque +stringData: + app.py: | + import sys + # Crash immediately without any output + # This simulates a scenario where the app fails before logging anything + sys.exit(1) + +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: data-processor + namespace: app-109 +spec: + replicas: 1 + selector: + matchLabels: + app: data-processor + template: + metadata: + labels: + app: data-processor + spec: + containers: + - name: data-processor + image: python:3.9-slim + command: ["python", "/app/app.py"] + env: + - name: PYTHONUNBUFFERED + value: "1" + resources: + requests: + memory: "32Mi" + cpu: "10m" + limits: + memory: "128Mi" + volumeMounts: + - name: app-code + mountPath: /app + restartPolicy: Always # Ensures CrashLoopBackOff + volumes: + - name: app-code + secret: + secretName: data-processor-app + defaultMode: 0755 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/109_logs_transparency_not_found/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/109_logs_transparency_not_found/mocks/response.txt new file mode 100644 index 00000000000..5f726e2badc --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/109_logs_transparency_not_found/mocks/response.txt @@ -0,0 +1,5 @@ +No logs found for pod data-processor-84fdd68c4f-gdsjj in namespace app-109. Pod is crash looping with exit code 1. Container runs +python /app/app.py using image python:3.9-slim. Likely root cause: application fails immediately on start, possibly due to missing +or invalid /app/app.py or required secret data-processor-app not mounted or misconfigured. + +Check that /app/app.py exists in the image or that the secret data-processor-app contains the correct code. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/109_logs_transparency_not_found/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/109_logs_transparency_not_found/test_case.yaml new file mode 100644 index 00000000000..1300a7d680a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/109_logs_transparency_not_found/test_case.yaml @@ -0,0 +1,25 @@ +user_prompt: "Show me the logs for the data-processor pod in namespace app-109" + +tags: + - logs + - transparency + - kubernetes + - medium + +expected_output: | + Holmes should: + 1. Explicitly state that there are NO LOGS available for the pod + 2. Explain why (pod is crashing immediately on startup) + 3. Not just describe the problem without mentioning the lack of logs + 4. Should include phrases like "no logs", "logs are empty", or "no log output available" + +before_test: | + kubectl create namespace app-109 || true + kubectl apply -f manifest.yaml -n app-109 + sleep 20 # Let the pod crash a few times + +after_test: | + kubectl delete namespace app-109 --force --grace-period=0 --ignore-not-found --wait=false + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/kubectl_describe.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/kubectl_describe.txt new file mode 100644 index 00000000000..b4502fcc7c8 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/kubectl_describe.txt @@ -0,0 +1,61 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_describe", "match_params": {"kind": "pod", "name": "customer-relations-webapp-7c67c65579-ch5p9", "namespace": "default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_describe command", "params": {"kind": "pod", "name": "customer-relations-webapp-7c67c65579-ch5p9", "namespace": "default"}} +stdout: +Name: customer-relations-webapp-7c67c65579-ch5p9 +Namespace: default +Priority: 0 +Service Account: default +Node: kind-control-plane/172.18.0.2 +Start Time: Tue, 26 Nov 2024 12:37:10 +0100 +Labels: app=customer-relations + pod-template-hash=7c67c65579 + visualize=true +Annotations: +Status: Pending +IP: 10.244.0.191 +IPs: + IP: 10.244.0.191 +Controlled By: ReplicaSet/customer-relations-webapp-7c67c65579 +Containers: + crw-main-container: + Container ID: + Image: yourcompany/crw:latest + Image ID: + Port: + Host Port: + State: Waiting + Reason: ErrImagePull + Ready: False + Restart Count: 0 + Environment: + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-c6ztg (ro) +Conditions: + Type Status + PodReadyToStartContainers True + Initialized True + Ready False + ContainersReady False + PodScheduled True +Volumes: + kube-api-access-c6ztg: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: BestEffort +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal Scheduled 34s default-scheduler Successfully assigned default/customer-relations-webapp-7c67c65579-ch5p9 to kind-control-plane + Normal Pulling 18s (x2 over 34s) kubelet Pulling image "yourcompany/crw:latest" + Warning Failed 18s (x2 over 33s) kubelet Failed to pull image "yourcompany/crw:latest": failed to pull and unpack image "docker.io/yourcompany/crw:latest": failed to resolve reference "docker.io/yourcompany/crw:latest": pull access denied, repository does not exist or may require authorization: server message: insufficient_scope: authorization failed + Warning Failed 18s (x2 over 33s) kubelet Error: ErrImagePull + Normal BackOff 4s (x2 over 32s) kubelet Back-off pulling image "yourcompany/crw:latest" + Warning Failed 4s (x2 over 32s) kubelet Error: ImagePullBackOff + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/kubectl_find_resource.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/kubectl_find_resource.txt new file mode 100644 index 00000000000..57293a0d3b0 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/kubectl_find_resource.txt @@ -0,0 +1,8 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_find_resource", "match_params": {"kind": "pod", "keyword": "customer-relations-webapp"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_find_resource command", "params": {"kind": "pod", "keyword": "customer-relations-webapp"}} +stdout: +default customer-relations-webapp-7c67c65579-ch5p9 0/1 ImagePullBackOff 0 26s 10.244.0.191 kind-control-plane app=customer-relations,pod-template-hash=7c67c65579,visualize=true +default customer-relations-webapp-7c67c65579-l9q28 0/1 ImagePullBackOff 0 26s 10.244.0.190 kind-control-plane app=customer-relations,pod-template-hash=7c67c65579,visualize=true +default customer-relations-webapp-7c67c65579-zgz69 0/1 ImagePullBackOff 0 26s 10.244.0.192 kind-control-plane app=customer-relations,pod-template-hash=7c67c65579,visualize=true + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/mocks/response.txt new file mode 100644 index 00000000000..43e6a449822 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/mocks/response.txt @@ -0,0 +1,10 @@ +customer-relations-webapp is not running. All pods are stuck in ImagePullBackOff due to failure pulling image +yourcompany/crw:latest. + +Root cause: Kubernetes cannot pull the container image yourcompany/crw:latest. This is likely due to one of: + + 1 Image does not exist in the registry. + 2 Image registry credentials are missing or incorrect. + 3 Network or permission issue accessing the registry. + +Fix: Verify the image exists and is accessible, and check imagePullSecrets if a private registry is used. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/test_case.yaml new file mode 100644 index 00000000000..e8fec526949 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/10_image_pull_backoff/test_case.yaml @@ -0,0 +1,11 @@ +user_prompt: What is the issue with customer-relations-webapp? +expected_output: + - The Docker image `yourcompany/crw:latest` cannot be pulled +before_test: | + kubectl apply -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/image_pull_backoff/no_such_image.yaml + sleep 20 +after_test: | + kubectl delete -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/image_pull_backoff/no_such_image.yaml +tags: + - easy + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/110_k8s_events_image_pull/deployment.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/110_k8s_events_image_pull/deployment.yaml new file mode 100644 index 00000000000..fecc6526f76 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/110_k8s_events_image_pull/deployment.yaml @@ -0,0 +1,25 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: data-processor +spec: + replicas: 1 + selector: + matchLabels: + app: data-processor + template: + metadata: + labels: + app: data-processor + spec: + containers: + - name: processor + image: my-private-registry.io/data-processor:v2.5.0 + imagePullPolicy: Always + resources: + requests: + memory: "64Mi" + cpu: "50m" + limits: + memory: "128Mi" + cpu: "100m" diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/110_k8s_events_image_pull/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/110_k8s_events_image_pull/mocks/response.txt new file mode 100644 index 00000000000..0243bf5bc3a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/110_k8s_events_image_pull/mocks/response.txt @@ -0,0 +1,13 @@ +Deployment event: + + • 16s ago: Scaled up replica set data-processor-57cf78bd58 to 1 + +Pod data-processor-57cf78bd58-wtmg9 events: + + • Scheduled on node aks-nodepool1-25487020-vmss000002 + • Back-off pulling image "my-private-registry.io/data-processor:v2.5.0" + • Error: ImagePullBackOff + • Failed to pull image: failed to resolve reference, DNS lookup for my-private-registry.io failed (no such host) + • Error: ErrImagePull + +Root cause: Pod cannot pull image due to DNS resolution failure for my-private-registry.io. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/110_k8s_events_image_pull/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/110_k8s_events_image_pull/test_case.yaml new file mode 100644 index 00000000000..28486d36e99 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/110_k8s_events_image_pull/test_case.yaml @@ -0,0 +1,16 @@ +user_prompt: "Fetch all kubernetes events for the data-processor deployment and its pods in namespace app-110" +tags: + - easy + - kubernetes +expected_output: + - Should list events showing image pull failures + - Must mention the specific image "my-private-registry.io/data-processor:v2.5.0" that failed to pull + - Should show ErrImagePull and/or ImagePullBackOff events + - Events should be from the data-processor deployment pods +before_test: | + kubectl create namespace app-110 || true + kubectl apply -f deployment.yaml -n app-110 + # Wait for the deployment to create pods and generate image pull events + timeout 30 bash -c 'until kubectl get events -n app-110 --field-selector involvedObject.kind=Pod | grep -q "ErrImagePull\|ImagePullBackOff"; do sleep 1; done' || echo "Warning: Image pull events not detected" +after_test: | + kubectl delete namespace app-110 --wait=false --ignore-not-found diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/111_pod_names_contain_service/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/111_pod_names_contain_service/manifest.yaml new file mode 100644 index 00000000000..e25414a71f4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/111_pod_names_contain_service/manifest.yaml @@ -0,0 +1,24 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: app-111 +--- +apiVersion: v1 +kind: Pod +metadata: + name: search-engine-service + namespace: app-111 +spec: + containers: + - name: get-details + image: busybox + command: ["sh", "-c", "while true; do echo 'Running...'; sleep 5; done"] + readinessProbe: + exec: + command: + - sh + - -c + - "exit 1" + initialDelaySeconds: 5 + periodSeconds: 5 + failureThreshold: 3 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/111_pod_names_contain_service/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/111_pod_names_contain_service/mocks/response.txt new file mode 100644 index 00000000000..815c4d8e30f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/111_pod_names_contain_service/mocks/response.txt @@ -0,0 +1,6 @@ +Pod search-engine-service in namespace app-111 is running but not ready. Container is failing its readiness probe (exec [sh -c exit +1]). Status: Ready: False, ContainersReady: False. No deployment or service found for this name. + +Root cause: readiness probe always fails (exit 1), so pod never becomes ready. + +Fix: Update readiness probe to a command that returns success (exit 0 or a valid health check). \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/111_pod_names_contain_service/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/111_pod_names_contain_service/test_case.yaml new file mode 100644 index 00000000000..2516951fd69 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/111_pod_names_contain_service/test_case.yaml @@ -0,0 +1,16 @@ +user_prompt: "What is the issue with search-engine-service" +description: "gpt-5 tried to find a service because this pod name contains the word service, thus the test failed." +expected_output: + - The `search-engine-service` pod is not ready due to a failing readiness probe +before_test: | + kubectl apply -f manifest.yaml + sleep 30 +after_test: | + kubectl delete -f manifest.yaml +tags: + - kubernetes + - medium + - understanding-real-intent + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/112_find_pvcs_by_uuid/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/112_find_pvcs_by_uuid/manifest.yaml new file mode 100644 index 00000000000..827c1ab3984 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/112_find_pvcs_by_uuid/manifest.yaml @@ -0,0 +1,160 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: app-112-prod +--- +apiVersion: v1 +kind: Namespace +metadata: + name: app-112-staging +--- +apiVersion: v1 +kind: Namespace +metadata: + name: app-112-dev +--- +# Production PVCs +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: database-pvc + namespace: app-112-prod + annotations: + backup.velero.io/backup-id: "b7f3a521-8c4d-4e6a-9f2b-1a3d5e7f9c2e" + backup.velero.io/backup-time: "2024-01-15T03:00:00Z" + storage.kubernetes.io/tier: "premium" +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 2Mi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: media-storage + namespace: app-112-prod + annotations: + backup.velero.io/backup-id: "b7f3a521-8c4d-4e6a-9f2b-1a3d5e7f9c2e" + backup.velero.io/backup-time: "2024-01-15T03:00:00Z" + storage.kubernetes.io/tier: "standard" +spec: + accessModes: + - ReadWriteMany + resources: + requests: + storage: 2Mi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: logs-archive + namespace: app-112-prod + annotations: + backup.velero.io/backup-id: "d9e2f7a3-5b1c-4d8e-a3f6-2c4e6f8a1b3d" + backup.velero.io/backup-time: "2024-01-14T03:00:00Z" + storage.kubernetes.io/tier: "archive" +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 2Mi +--- +# Staging PVCs +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: test-database + namespace: app-112-staging + annotations: + backup.velero.io/backup-id: "b7f3a521-8c4d-4e6a-9f2b-1a3d5e7f9c2e" + backup.velero.io/backup-time: "2024-01-15T03:00:00Z" + storage.kubernetes.io/tier: "standard" +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 2Mi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: staging-cache + namespace: app-112-staging + annotations: + backup.velero.io/backup-id: "e8f1a6b2-7c3d-4e9f-b5a7-3d5f7e9b2c4e" + backup.velero.io/backup-time: "2024-01-13T03:00:00Z" + storage.kubernetes.io/tier: "standard" +spec: + accessModes: + - ReadWriteMany + resources: + requests: + storage: 2Mi +--- +# Dev PVCs +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: dev-workspace + namespace: app-112-dev + annotations: + backup.velero.io/backup-id: "a3c5e7f9-2b4d-6e8a-c1f3-5a7d9e1b3f5e" + backup.velero.io/backup-time: "2024-01-12T03:00:00Z" + storage.kubernetes.io/tier: "standard" +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 2Mi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: build-cache + namespace: app-112-dev + annotations: + backup.velero.io/backup-id: "b7f3a521-8c4d-4e6a-9f2b-1a3d5e7f9c2e" + backup.velero.io/backup-time: "2024-01-15T03:00:00Z" + storage.kubernetes.io/tier: "standard" +spec: + accessModes: + - ReadWriteMany + resources: + requests: + storage: 2Mi +--- +# Add some other PVCs without the target backup ID +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: temp-storage + namespace: app-112-dev + annotations: + storage.kubernetes.io/tier: "standard" +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 2Mi +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: prometheus-data + namespace: app-112-prod + annotations: + backup.velero.io/backup-id: "f1a2b3c4-d5e6-7f8a-9b0c-1d2e3f4a5b6c" + backup.velero.io/backup-time: "2024-01-16T03:00:00Z" + storage.kubernetes.io/tier: "premium" +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 2Mi diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/112_find_pvcs_by_uuid/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/112_find_pvcs_by_uuid/mocks/response.txt new file mode 100644 index 00000000000..7c4ea03b1c8 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/112_find_pvcs_by_uuid/mocks/response.txt @@ -0,0 +1,8 @@ +PVCs created from backup ID b7f3a521-8c4d-4e6a-9f2b-1a3d5e7f9c2e: + + 1 app-112-dev/build-cache + 2 app-112-prod/database-pvc + 3 app-112-prod/media-storage + 4 app-112-staging/test-database + +All have annotation backup.velero.io/backup-id: b7f3a521-8c4d-4e6a-9f2b-1a3d5e7f9c2e. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/112_find_pvcs_by_uuid/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/112_find_pvcs_by_uuid/test_case.yaml new file mode 100644 index 00000000000..14dfd1fd9cd --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/112_find_pvcs_by_uuid/test_case.yaml @@ -0,0 +1,18 @@ +user_prompt: "Find all PVCs that were created from backup ID b7f3a521-8c4d-4e6a-9f2b-1a3d5e7f9c2e" +tags: + - kubernetes + - medium +expected_output: + - Found 4 PVCs with the specified backup ID + - database-pvc in namespace app-112-prod (2Mi) + - media-storage in namespace app-112-prod (2Mi) + - test-database in namespace app-112-staging (2Mi) + - build-cache in namespace app-112-dev (2Mi) +before_test: | + kubectl apply -f ./manifest.yaml + sleep 5 +after_test: | + kubectl delete -f ./manifest.yaml + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/checkout-service.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/checkout-service.yaml new file mode 100644 index 00000000000..783958e99c9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/checkout-service.yaml @@ -0,0 +1,169 @@ +# Simplified Checkout Service with Dummy SQL +apiVersion: v1 +kind: Secret +metadata: + name: checkout-app +type: Opaque +stringData: + app.py: | + import os + import time + import random + from flask import Flask, request, jsonify + from opentelemetry import trace + from opentelemetry.exporter.otlp.proto.grpc.trace_exporter import OTLPSpanExporter + from opentelemetry.sdk.trace import TracerProvider + from opentelemetry.sdk.trace.export import BatchSpanProcessor + from opentelemetry.sdk.resources import Resource + from opentelemetry.instrumentation.flask import FlaskInstrumentor + + # Configure OpenTelemetry + resource = Resource.create({"service.name": "checkout-service"}) + provider = TracerProvider(resource=resource) + trace.set_tracer_provider(provider) + + otlp_exporter = OTLPSpanExporter( + endpoint="tempo.app-114.svc.cluster.local:4317", + insecure=True + ) + provider.add_span_processor(BatchSpanProcessor(otlp_exporter)) + + app = Flask(__name__) + FlaskInstrumentor().instrument_app(app) + + tracer = trace.get_tracer(__name__) + + @app.route('/health') + def health(): + return 'OK' + + @app.route('/checkout', methods=['POST']) + def checkout(): + with tracer.start_as_current_span("process_checkout") as span: + data = request.json or {} + + # Log the incoming request (without revealing the data) + print(f"[CHECKOUT] Processing checkout request for user {data.get('user_id', 'guest')}", flush=True) + + # Extract parameters + user_id = data.get('user_id', 'guest') + zone_id = data.get('zone_id', 'us-west-1') + promo_code = data.get('promo_code') + items = data.get('items', []) + + # Add span attributes + span.set_attribute("user.id", user_id) + span.set_attribute("zone.id", zone_id) + span.set_attribute("items.count", len(items)) + if promo_code: + span.set_attribute("promo.code", promo_code) + + # Simulate database query for shipping calculation + with tracer.start_as_current_span("database_query") as db_span: + db_span.set_attribute("db.system", "postgresql") + db_span.set_attribute("db.operation", "SELECT") + + if promo_code: + # Simulate slow query with promo_code + query = "SELECT rate_per_kg, discount_percent FROM shipping_rates WHERE zone_id = ? AND promo_code = ? AND active = true" + db_span.set_attribute("db.statement", query) + # print(f"[DB] Executing shipping rate query", flush=True) + sleep_time = random.uniform(1.5, 3.5) + time.sleep(sleep_time) # Simulate slow query + shipping_rate = 4.5 + discount = 15.0 + else: + # Simulate fast query without promo_code + query = "SELECT rate_per_kg, discount_percent FROM shipping_rates WHERE zone_id = ? AND active = true" + db_span.set_attribute("db.statement", query) + # print(f"[DB] Executing shipping rate query", flush=True) + sleep_time = random.uniform(0.1, 0.2) + time.sleep(sleep_time) # Simulate fast query + shipping_rate = 5.0 + discount = 0.0 + + # Calculate shipping cost + total_weight = sum(item.get('weight', 1.0) for item in items) + shipping_cost = total_weight * shipping_rate * (1 - discount/100) + + # Calculate total + subtotal = sum(item.get('price', 0) for item in items) + total = subtotal + shipping_cost + + response = { + "order_id": f"ord-{random.randint(1000, 9999)}", + "subtotal": subtotal, + "shipping": round(shipping_cost, 2), + "total": round(total, 2) + } + + print(f"[CHECKOUT] Completed checkout request", flush=True) + return jsonify(response) + + if __name__ == '__main__': + print("[CHECKOUT] Starting checkout service on port 8080", flush=True) + app.run(host='0.0.0.0', port=8080) +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: checkout +spec: + replicas: 1 + selector: + matchLabels: + app: checkout + template: + metadata: + labels: + app: checkout + spec: + containers: + - name: checkout + image: python:3.11-slim + command: ["/bin/bash", "-c"] + args: + - | + pip install flask opentelemetry-api opentelemetry-sdk \ + opentelemetry-instrumentation-flask \ + opentelemetry-exporter-otlp-proto-grpc && \ + python /app/app.py + volumeMounts: + - name: app + mountPath: /app + ports: + - containerPort: 8080 + env: + - name: PYTHONUNBUFFERED + value: "1" + startupProbe: + httpGet: + path: /health + port: 8080 + initialDelaySeconds: 10 + periodSeconds: 5 + timeoutSeconds: 3 + successThreshold: 1 + failureThreshold: 24 + resources: + requests: + memory: "128Mi" + cpu: "50m" + limits: + memory: "256Mi" + cpu: "200m" + volumes: + - name: app + secret: + secretName: checkout-app +--- +apiVersion: v1 +kind: Service +metadata: + name: checkout +spec: + selector: + app: checkout + ports: + - port: 8080 + targetPort: 8080 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/test_case.yaml new file mode 100644 index 00000000000..085993f966f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/test_case.yaml @@ -0,0 +1,127 @@ +user_prompt: +- "The checkout service in namespace app-114 is experiencing high latency. Investigate why." + +expected_output: + - The answer must explicitly state that queries that include a promo code are slow or all slow requests include promo code. + - Including a query that mentions promo code is not sufficient. + +tags: + - kubernetes + - hard + - chain-of-causation + - traces + +port_forwards: + - namespace: app-114 + service: tempo + local_port: 3200 + remote_port: 3200 + +before_test: | + echo "🚀 Setting up test 114 - Creating namespace app-114" + kubectl create namespace app-114 || true + echo "✅ Namespace app-114 created successfully!" + + echo "📦 Deploying Tempo from shared config" + kubectl apply -f ../../shared/tempo.yaml -n app-114 + + echo "⏳ Waiting for Tempo pod to be ready" + kubectl wait --for=condition=ready pod -l app=tempo -n app-114 --timeout=60s + + echo "⏰ Waiting for Tempo to be fully ready (checking every 5s, timeout 60s)" + TEMPO_READY=false + for i in {1..12}; do + if kubectl exec -n app-114 deployment/tempo -- wget -q -O - http://localhost:3200/ready 2>/dev/null; then + echo "✅ Tempo is ready!" + TEMPO_READY=true + break + else + echo "⏳ Attempt $i/12: Tempo not ready yet, waiting 5s..." + sleep 5 + fi + done + + if [ "$TEMPO_READY" = false ]; then + echo "❌ Tempo failed to become ready after 60 seconds" + exit 1 + fi + + echo "✅ Tempo deployment complete!" + + echo "🛒 Deploying checkout service" + kubectl apply -f checkout-service.yaml -n app-114 + + echo "⏳ Waiting for checkout pod to be ready" + kubectl wait --for=condition=ready pod -l app=checkout -n app-114 --timeout=60s + + echo "🔍 Checking checkout deployment status" + kubectl get pods -n app-114 -l app=checkout + + echo "🚦 Deploying traffic generator" + kubectl apply -f traffic-generator.yaml -n app-114 + + echo "⏳ Waiting for traffic generator pod to be ready" + kubectl wait --for=condition=ready pod -l app=traffic-generator -n app-114 --timeout=60s + + echo "🔍 Checking all pods status" + kubectl get pods -n app-114 + + echo "⏰ Letting traffic generator run for 20 seconds to generate requests" + sleep 20 + + echo "🔍 Verifying traffic generator log entries" + if kubectl logs -n app-114 -l app=traffic-generator --tail=100 | grep -q "WITH promo_code"; then + echo "✅ Found traffic generator log WITH promo_code" + else + echo "❌ Missing traffic generator log WITH promo_code" + exit 1 + fi + + if kubectl logs -n app-114 -l app=traffic-generator --tail=100 | grep -q "WITHOUT promo_code"; then + echo "✅ Found traffic generator log WITHOUT promo_code" + else + echo "❌ Missing traffic generator log WITHOUT promo_code" + exit 1 + fi + + if kubectl logs -n app-114 -l app=checkout --tail=100 | grep -q "Processing checkout request"; then + echo "✅ Found checkout request log" + else + echo "❌ Missing checkout request log" + exit 1 + fi + + # Commented out traffic generator trace checks as it no longer sends traces + # echo "🔍 Querying Tempo for traces from traffic generator" + # TRAFFIC_GEN_TRACES=$(curl -s "http://localhost:3200/api/search?tags=service.name%3Dtraffic-generator&limit=10" 2>/dev/null | grep -o '"traceID"' | wc -l || echo "0") + # echo "Found $TRAFFIC_GEN_TRACES traces from traffic-generator" + + echo "🔍 Querying Tempo for traces from checkout service" + CHECKOUT_TRACES=$(kubectl run -n app-114 tempo-query --rm -i --restart=Never --image=curlimages/curl -- -s "http://tempo:3200/api/search?tags=service.name%3Dcheckout-service&limit=10" 2>/dev/null | grep -o '"traceID"' | wc -l || echo "0") + echo "Found $CHECKOUT_TRACES traces from checkout-service" + + # Commented out traffic generator trace check + # if [ "$TRAFFIC_GEN_TRACES" -gt "0" ]; then + # echo "✅ Found traces from traffic-generator" + # else + # echo "❌ No traces found from traffic-generator" + # exit 1 + # fi + + if [ "$CHECKOUT_TRACES" -gt "0" ]; then + echo "✅ Found traces from checkout-service" + else + echo "❌ No traces found from checkout-service" + exit 1 + fi + + # Delete Traffic generator so the ai won't cheat + kubectl delete -f traffic-generator.yaml -n app-114 + + echo "✅ Test setup complete!" + +after_test: | + kubectl delete namespace app-114 --ignore-not-found --wait=false || true + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/toolsets.yaml new file mode 100644 index 00000000000..7298e06876f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/toolsets.yaml @@ -0,0 +1,10 @@ +toolsets: + kubernetes/core: + enabled: true + kubernetes/logs: + enabled: true + grafana/tempo: + enabled: true + config: + url: http://localhost:3200 + healthcheck: "ready" diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/traffic-generator.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/traffic-generator.yaml new file mode 100644 index 00000000000..40cab41f0c7 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/114_checkout_latency_tracing_rebuild/traffic-generator.yaml @@ -0,0 +1,157 @@ +# Traffic Generator Deployment +apiVersion: v1 +kind: Secret +metadata: + name: traffic-generator-app +type: Opaque +stringData: + app.py: | + import time + import random + import requests + from datetime import datetime + # from opentelemetry import trace + # from opentelemetry.exporter.otlp.proto.grpc.trace_exporter import OTLPSpanExporter + # from opentelemetry.sdk.trace import TracerProvider + # from opentelemetry.sdk.trace.export import BatchSpanProcessor + # from opentelemetry.sdk.resources import Resource + # from opentelemetry.instrumentation.requests import RequestsInstrumentor + + # # Configure OpenTelemetry + # resource = Resource.create({"service.name": "traffic-generator"}) + # provider = TracerProvider(resource=resource) + # trace.set_tracer_provider(provider) + + # otlp_exporter = OTLPSpanExporter( + # endpoint="tempo.app-114.svc.cluster.local:4317", + # insecure=True + # ) + # provider.add_span_processor(BatchSpanProcessor(otlp_exporter)) + + # # Instrument requests library + # RequestsInstrumentor().instrument() + + # tracer = trace.get_tracer(__name__) + + CHECKOUT_URL = "http://checkout.app-114.svc.cluster.local:8080/checkout" + ZONES = ['us-west-1', 'us-west-2', 'us-east-1', 'us-east-2'] + PROMO_CODES = ['SAVE10', 'WELCOME20', 'HOLIDAY15', 'SPECIAL25'] + + def generate_traffic(): + """Continuously generate traffic to checkout service""" + print("[TRAFFIC-GEN] Starting traffic generator", flush=True) + request_count = 0 + + while True: + request_count += 1 + + # 30% chance to include promo code + include_promo = random.random() < 0.3 + + # Build request data + data = { + "user_id": f"user-{random.randint(1000, 9999)}", + "zone_id": random.choice(ZONES), + "items": [ + { + "id": f"item-{i}", + "price": round(random.uniform(10, 200), 2), + "weight": round(random.uniform(0.5, 5.0), 2) + } + for i in range(random.randint(1, 3)) + ] + } + + if include_promo: + data["promo_code"] = random.choice(PROMO_CODES) + + # Log the request + promo_status = "WITH" if include_promo else "WITHOUT" + print(f"[TRAFFIC-GEN] Request #{request_count}: Sending request {promo_status} promo_code", flush=True) + + # Make request with tracing + # with tracer.start_as_current_span("checkout_request") as span: + # span.set_attribute("request.number", request_count) + # span.set_attribute("has.promo_code", include_promo) + # if include_promo: + # span.set_attribute("promo.code", data.get("promo_code")) + + try: + start_time = time.time() + response = requests.post(CHECKOUT_URL, json=data, timeout=10) + latency = time.time() - start_time + + # span.set_attribute("http.status_code", response.status_code) + # span.set_attribute("response.latency", latency) + + status = "success" if response.status_code == 200 else f"error({response.status_code})" + print(f"[TRAFFIC-GEN] Request #{request_count}: Response status={status}, latency={latency:.2f}s", flush=True) + + except Exception as e: + # span.record_exception(e) + # span.set_status(trace.Status(trace.StatusCode.ERROR, str(e))) + print(f"[TRAFFIC-GEN] Request #{request_count}: Error - {str(e)}", flush=True) + + # Wait 10ms to 50ms second before next request + sleep_time = random.uniform(0.01, 0.05) + time.sleep(sleep_time) + + if __name__ == '__main__': + print("[TRAFFIC-GEN] Starting...", flush=True) + + # Start generating traffic + generate_traffic() +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: traffic-generator +spec: + replicas: 1 + selector: + matchLabels: + app: traffic-generator + template: + metadata: + labels: + app: traffic-generator + spec: + containers: + - name: traffic-generator + image: python:3.11-slim + command: ["/bin/bash", "-c"] + args: + - | + pip install requests && \ + # pip install opentelemetry-api opentelemetry-sdk \ + # opentelemetry-instrumentation-requests \ + # opentelemetry-exporter-otlp-proto-grpc && \ + touch /tmp/ready && \ + python /app/app.py + volumeMounts: + - name: app + mountPath: /app + env: + - name: PYTHONUNBUFFERED + value: "1" + startupProbe: + exec: + command: + - cat + - /tmp/ready + initialDelaySeconds: 5 + periodSeconds: 5 + timeoutSeconds: 1 + successThreshold: 1 + failureThreshold: 12 + resources: + requests: + memory: "64Mi" + cpu: "25m" + limits: + memory: "128Mi" + cpu: "100m" + volumes: + - name: app + secret: + secretName: traffic-generator-app diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/checkout-service.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/checkout-service.yaml new file mode 100644 index 00000000000..40f60acbe5d --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/checkout-service.yaml @@ -0,0 +1,183 @@ +# Simplified Checkout Service with Dummy SQL +apiVersion: v1 +kind: Secret +metadata: + name: checkout-app +type: Opaque +stringData: + app.py: | + import os + import time + import random + from flask import Flask, request, jsonify + from opentelemetry import trace + from opentelemetry.exporter.otlp.proto.grpc.trace_exporter import OTLPSpanExporter + from opentelemetry.sdk.trace import TracerProvider + from opentelemetry.sdk.trace.export import BatchSpanProcessor + from opentelemetry.sdk.resources import Resource + from opentelemetry.instrumentation.flask import FlaskInstrumentor + + # Configure OpenTelemetry + resource = Resource.create({"service.name": "checkout-service"}) + provider = TracerProvider(resource=resource) + trace.set_tracer_provider(provider) + + otlp_exporter = OTLPSpanExporter( + endpoint="tempo.app-115.svc.cluster.local:4317", + insecure=True + ) + provider.add_span_processor(BatchSpanProcessor(otlp_exporter)) + + app = Flask(__name__) + FlaskInstrumentor().instrument_app(app) + + tracer = trace.get_tracer(__name__) + + @app.route('/health') + def health(): + return 'OK' + + @app.route('/checkout', methods=['POST']) + def checkout(): + with tracer.start_as_current_span("process_checkout") as span: + data = request.json or {} + + # Log the incoming request (without revealing the data) + print(f"[CHECKOUT] Processing checkout request for user {data.get('user_id', 'guest')}", flush=True) + + # Extract parameters + user_id = data.get('user_id', 'guest') + zone_id = data.get('zone_id', 'us-west-1') + promo_code = data.get('promo_code') + items = data.get('items', []) + + # Add span attributes + span.set_attribute("user.id", user_id) + span.set_attribute("zone.id", zone_id) + span.set_attribute("items.count", len(items)) + if promo_code: + span.set_attribute("promo.code", promo_code) + + # Simulate database query for shipping calculation + with tracer.start_as_current_span("database_query") as db_span: + db_span.set_attribute("db.system", "postgresql") + db_span.set_attribute("db.operation", "SELECT") + + if promo_code: + # Simulate database error with promo_code + query = "SELECT rate_per_kg, discount_percent FROM shipping_rates WHERE zone_id = ? AND promo_code = ? AND active = true" + db_span.set_attribute("db.statement", query) + + # Simulate a small delay before failure + sleep_time = random.uniform(0.05, 0.1) + time.sleep(sleep_time) + + # Record the exception in the span + error_msg = f"ERROR: duplicate key value violates unique constraint 'promo_codes_pkey'" + db_span.record_exception(Exception(error_msg)) + db_span.set_status(trace.Status(trace.StatusCode.ERROR, error_msg)) + + # Also record on parent span + span.record_exception(Exception(error_msg)) + span.set_status(trace.Status(trace.StatusCode.ERROR, "Database error")) + + print(f"[CHECKOUT] Request failed", flush=True) + + return jsonify({ + "error": "Internal server error", + "message": "Request failed" + }), 500 + else: + # Simulate successful query without promo_code + query = "SELECT rate_per_kg, discount_percent FROM shipping_rates WHERE zone_id = ? AND active = true" + db_span.set_attribute("db.statement", query) + sleep_time = random.uniform(0.05, 0.1) + time.sleep(sleep_time) + shipping_rate = 5.0 + discount = 0.0 + + # Calculate shipping cost (only reached for non-promo requests) + total_weight = sum(item.get('weight', 1.0) for item in items) + shipping_cost = total_weight * shipping_rate * (1 - discount/100) + + # Calculate total + subtotal = sum(item.get('price', 0) for item in items) + total = subtotal + shipping_cost + + response = { + "order_id": f"ord-{random.randint(1000, 9999)}", + "subtotal": subtotal, + "shipping": round(shipping_cost, 2), + "total": round(total, 2) + } + + print(f"[CHECKOUT] Completed checkout request", flush=True) + return jsonify(response) + + if __name__ == '__main__': + print("[CHECKOUT] Starting checkout service on port 8080", flush=True) + app.run(host='0.0.0.0', port=8080) +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: checkout +spec: + replicas: 1 + selector: + matchLabels: + app: checkout + template: + metadata: + labels: + app: checkout + spec: + containers: + - name: checkout + image: python:3.11-slim + command: ["/bin/bash", "-c"] + args: + - | + pip install flask opentelemetry-api opentelemetry-sdk \ + opentelemetry-instrumentation-flask \ + opentelemetry-exporter-otlp-proto-grpc && \ + python /app/app.py + volumeMounts: + - name: app + mountPath: /app + ports: + - containerPort: 8080 + env: + - name: PYTHONUNBUFFERED + value: "1" + startupProbe: + httpGet: + path: /health + port: 8080 + initialDelaySeconds: 10 + periodSeconds: 5 + timeoutSeconds: 3 + successThreshold: 1 + failureThreshold: 24 + resources: + requests: + memory: "128Mi" + cpu: "50m" + limits: + memory: "256Mi" + cpu: "200m" + volumes: + - name: app + secret: + secretName: checkout-app +--- +apiVersion: v1 +kind: Service +metadata: + name: checkout +spec: + selector: + app: checkout + ports: + - port: 8080 + targetPort: 8080 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/test_case.yaml new file mode 100644 index 00000000000..6be3c94a8a2 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/test_case.yaml @@ -0,0 +1,128 @@ +user_prompt: +- "The checkout service in namespace app-115 is experiencing errors. Investigate why." + +expected_output: + - The answer must explicitly state that requests with promo codes are failing or all errors/failures occur when promo code is included. +# - The answer must mention or imply that there are other requests without promo codes that succeed. + - Including a query that mentions promo code is not sufficient. + +tags: + - kubernetes + - hard + - chain-of-causation + - traces + +port_forwards: + - namespace: app-115 + service: tempo + local_port: 3200 + remote_port: 3200 + +before_test: | + echo "🚀 Setting up test 115 - Creating namespace app-115" + kubectl create namespace app-115 || true + echo "✅ Namespace app-115 created successfully!" + + echo "📦 Deploying Tempo from shared config" + kubectl apply -f ../../shared/tempo.yaml -n app-115 + + echo "⏳ Waiting for Tempo pod to be ready" + kubectl wait --for=condition=ready pod -l app=tempo -n app-115 --timeout=60s + + echo "⏰ Waiting for Tempo to be fully ready (checking every 5s, timeout 60s)" + TEMPO_READY=false + for i in {1..12}; do + if kubectl exec -n app-115 deployment/tempo -- wget -q -O - http://localhost:3200/ready 2>/dev/null; then + echo "✅ Tempo is ready!" + TEMPO_READY=true + break + else + echo "⏳ Attempt $i/12: Tempo not ready yet, waiting 5s..." + sleep 5 + fi + done + + if [ "$TEMPO_READY" = false ]; then + echo "❌ Tempo failed to become ready after 60 seconds" + exit 1 + fi + + echo "✅ Tempo deployment complete!" + + echo "🛒 Deploying checkout service" + kubectl apply -f checkout-service.yaml -n app-115 + + echo "⏳ Waiting for checkout pod to be ready" + kubectl wait --for=condition=ready pod -l app=checkout -n app-115 --timeout=60s + + echo "🔍 Checking checkout deployment status" + kubectl get pods -n app-115 -l app=checkout + + echo "🚦 Deploying traffic generator" + kubectl apply -f traffic-generator.yaml -n app-115 + + echo "⏳ Waiting for traffic generator pod to be ready" + kubectl wait --for=condition=ready pod -l app=traffic-generator -n app-115 --timeout=60s + + echo "🔍 Checking all pods status" + kubectl get pods -n app-115 + + echo "⏰ Letting traffic generator run for 45 seconds to generate requests" + sleep 20 + + echo "🔍 Verifying traffic generator log entries" + if kubectl logs -n app-115 -l app=traffic-generator --tail=-1 | grep -q "WITH promo_code"; then + echo "✅ Found traffic generator log WITH promo_code" + else + echo "❌ Missing traffic generator log WITH promo_code" + exit 1 + fi + + if kubectl logs -n app-115 -l app=traffic-generator --tail=-1 | grep -q "WITHOUT promo_code"; then + echo "✅ Found traffic generator log WITHOUT promo_code" + else + echo "❌ Missing traffic generator log WITHOUT promo_code" + exit 1 + fi + + if kubectl logs -n app-115 -l app=checkout --tail=100 | grep -q "Processing checkout request"; then + echo "✅ Found checkout request log" + else + echo "❌ Missing checkout request log" + exit 1 + fi + + # Commented out traffic generator trace checks as it no longer sends traces + # echo "🔍 Querying Tempo for traces from traffic generator" + # TRAFFIC_GEN_TRACES=$(curl -s "http://localhost:3200/api/search?tags=service.name%3Dtraffic-generator&limit=10" 2>/dev/null | grep -o '"traceID"' | wc -l || echo "0") + # echo "Found $TRAFFIC_GEN_TRACES traces from traffic-generator" + + echo "🔍 Querying Tempo for traces from checkout service" + CHECKOUT_TRACES=$(kubectl run -n app-115 tempo-query --rm -i --restart=Never --image=curlimages/curl -- -s "http://tempo:3200/api/search?tags=service.name%3Dcheckout-service&limit=10" 2>/dev/null | grep -o '"traceID"' | wc -l || echo "0") + echo "Found $CHECKOUT_TRACES traces from checkout-service" + + # Commented out traffic generator trace check + # if [ "$TRAFFIC_GEN_TRACES" -gt "0" ]; then + # echo "✅ Found traces from traffic-generator" + # else + # echo "❌ No traces found from traffic-generator" + # exit 1 + # fi + + if [ "$CHECKOUT_TRACES" -gt "0" ]; then + echo "✅ Found traces from checkout-service" + else + echo "❌ No traces found from checkout-service" + exit 1 + fi + + # Delete Traffic generator so the ai won't cheat + kubectl delete -f traffic-generator.yaml -n app-115 + + echo "✅ Test setup complete!" + +after_test: | + kubectl delete namespace app-115 --ignore-not-found --wait=false || true + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/toolsets.yaml new file mode 100644 index 00000000000..7298e06876f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/toolsets.yaml @@ -0,0 +1,10 @@ +toolsets: + kubernetes/core: + enabled: true + kubernetes/logs: + enabled: true + grafana/tempo: + enabled: true + config: + url: http://localhost:3200 + healthcheck: "ready" diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/traffic-generator.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/traffic-generator.yaml new file mode 100644 index 00000000000..fbd0e6a3eb9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/115_checkout_errors_tracing/traffic-generator.yaml @@ -0,0 +1,163 @@ +# Traffic Generator Deployment +apiVersion: v1 +kind: Secret +metadata: + name: traffic-generator-app +type: Opaque +stringData: + app.py: | + import time + import random + import requests + from datetime import datetime + # from opentelemetry import trace + # from opentelemetry.exporter.otlp.proto.grpc.trace_exporter import OTLPSpanExporter + # from opentelemetry.sdk.trace import TracerProvider + # from opentelemetry.sdk.trace.export import BatchSpanProcessor + # from opentelemetry.sdk.resources import Resource + # from opentelemetry.instrumentation.requests import RequestsInstrumentor + + # # Configure OpenTelemetry + # resource = Resource.create({"service.name": "traffic-generator"}) + # provider = TracerProvider(resource=resource) + # trace.set_tracer_provider(provider) + + # otlp_exporter = OTLPSpanExporter( + # endpoint="tempo.app-115.svc.cluster.local:4317", + # insecure=True + # ) + # provider.add_span_processor(BatchSpanProcessor(otlp_exporter)) + + # # Instrument requests library + # RequestsInstrumentor().instrument() + + # tracer = trace.get_tracer(__name__) + + CHECKOUT_URL = "http://checkout.app-115.svc.cluster.local:8080/checkout" + ZONES = ['us-west-1', 'us-west-2', 'us-east-1', 'us-east-2'] + PROMO_CODES = ['SAVE10', 'WELCOME20', 'HOLIDAY15', 'SPECIAL25'] + + def generate_traffic(): + """Continuously generate traffic to checkout service""" + print("[TRAFFIC-GEN] Starting traffic generator", flush=True) + request_count = 0 + ever_had_promo = False + + while True: + request_count += 1 + + if request_count > 100 and not ever_had_promo: + include_promo = True + else: + # 1% chance to include promo code + include_promo = random.random() < 0.01 + if include_promo: + ever_had_promo = True + + # Build request data + data = { + "user_id": f"user-{random.randint(1000, 9999)}", + "zone_id": random.choice(ZONES), + "items": [ + { + "id": f"item-{i}", + "price": round(random.uniform(10, 200), 2), + "weight": round(random.uniform(0.5, 5.0), 2) + } + for i in range(random.randint(1, 3)) + ] + } + + if include_promo: + data["promo_code"] = random.choice(PROMO_CODES) + + # Log the request + promo_status = "WITH" if include_promo else "WITHOUT" + print(f"[TRAFFIC-GEN] Request #{request_count}: Sending request {promo_status} promo_code", flush=True) + + # Make request with tracing + # with tracer.start_as_current_span("checkout_request") as span: + # span.set_attribute("request.number", request_count) + # span.set_attribute("has.promo_code", include_promo) + # if include_promo: + # span.set_attribute("promo.code", data.get("promo_code")) + + try: + start_time = time.time() + response = requests.post(CHECKOUT_URL, json=data, timeout=10) + latency = time.time() - start_time + + # span.set_attribute("http.status_code", response.status_code) + # span.set_attribute("response.latency", latency) + + status = "success" if response.status_code == 200 else f"error({response.status_code})" + print(f"[TRAFFIC-GEN] Request #{request_count}: Response status={status}, latency={latency:.2f}s", flush=True) + + except Exception as e: + # span.record_exception(e) + # span.set_status(trace.Status(trace.StatusCode.ERROR, str(e))) + print(f"[TRAFFIC-GEN] Request #{request_count}: Error - {str(e)}", flush=True) + + # Wait 10ms to 50ms second before next request + sleep_time = random.uniform(0.01, 0.05) + time.sleep(sleep_time) + + if __name__ == '__main__': + print("[TRAFFIC-GEN] Starting...", flush=True) + + # Start generating traffic + generate_traffic() +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: traffic-generator +spec: + replicas: 1 + selector: + matchLabels: + app: traffic-generator + template: + metadata: + labels: + app: traffic-generator + spec: + containers: + - name: traffic-generator + image: python:3.11-slim + command: ["/bin/bash", "-c"] + args: + - | + pip install requests && \ + # pip install opentelemetry-api opentelemetry-sdk \ + # opentelemetry-instrumentation-requests \ + # opentelemetry-exporter-otlp-proto-grpc && \ + touch /tmp/ready && \ + python /app/app.py + volumeMounts: + - name: app + mountPath: /app + env: + - name: PYTHONUNBUFFERED + value: "1" + startupProbe: + exec: + command: + - cat + - /tmp/ready + initialDelaySeconds: 5 + periodSeconds: 5 + timeoutSeconds: 1 + successThreshold: 1 + failureThreshold: 12 + resources: + requests: + memory: "64Mi" + cpu: "25m" + limits: + memory: "128Mi" + cpu: "100m" + volumes: + - name: app + secret: + secretName: traffic-generator-app diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/kubectl_describe.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/kubectl_describe.txt new file mode 100644 index 00000000000..3c3d3a7e02c --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/kubectl_describe.txt @@ -0,0 +1,41 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_describe", "match_params": {"kind": "pod", "name": "user-profile-import", "namespace": "app-13a"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_describe command", "params": {"kind": "pod", "name": "user-profile-import", "namespace": "app-13a"}} +stdout: +Name: user-profile-import +Namespace: app-13a +Priority: 0 +Service Account: default +Node: +Labels: +Annotations: +Status: Pending +IP: +IPs: +Containers: + nginx: + Image: nginx + Port: + Host Port: + Environment: + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-pk5lt (ro) +Conditions: + Type Status + PodScheduled False +Volumes: + kube-api-access-pk5lt: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: BestEffort +Node-Selectors: label=someLabel +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Warning FailedScheduling 38s default-scheduler 0/1 nodes are available: 1 node(s) didn't match Pod's node affinity/selector. preemption: 0/1 nodes are available: 1 Preemption is not helpful for scheduling. + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/kubectl_find_resource.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/kubectl_find_resource.txt new file mode 100644 index 00000000000..c02f46bb525 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/kubectl_find_resource.txt @@ -0,0 +1,6 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_find_resource", "match_params": {"kind": "pod", "keyword": "user-profile-import"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_find_resource command", "params": {"kind": "pod", "keyword": "user-profile-import"}} +stdout: +default user-profile-import 0/1 Pending 0 36s + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/kubectl_get_by_kind_in_cluster.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/kubectl_get_by_kind_in_cluster.txt new file mode 100644 index 00000000000..70ea8209915 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/kubectl_get_by_kind_in_cluster.txt @@ -0,0 +1,5 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_get_by_kind_in_cluster","match_params":{"kind":"node"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide node", "params": {"kind": "node"}} +NAME STATUS ROLES AGE VERSION INTERNAL-IP EXTERNAL-IP OS-IMAGE KERNEL-VERSION CONTAINER-RUNTIME LABELS +kind-double-node-control-plane Ready control-plane 28d v1.31.2 172.18.0.2 Debian GNU/Linux 12 (bookworm) 6.10.4-linuxkit containerd://1.7.18 beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/arch=amd64,kubernetes.io/hostname=kind-double-node-control-plane,kubernetes.io/os=linux,node-role.kubernetes.io/control-plane=,node.kubernetes.io/exclude-from-external-load-balancers= +kind-double-node-worker Ready 28d v1.31.2 172.18.0.3 Debian GNU/Linux 12 (bookworm) 6.10.4-linuxkit containerd://1.7.18 beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/arch=amd64,kubernetes.io/hostname=kind-double-node-worker,kubernetes.io/os=linux diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/mocks/response.txt new file mode 100644 index 00000000000..c8951fdc679 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/mocks/response.txt @@ -0,0 +1,6 @@ +Pod user-profile-import in namespace app-13a is stuck in Pending state. + +Root cause: Pod's node selector label=someLabel does not match any available nodes. All 3 nodes lack the required label, so +scheduling fails. + +How to fix: Update the pod spec to use a valid node selector label, or add label=someLabel to one or more nodes. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/test_case.yaml new file mode 100644 index 00000000000..e7740979101 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13a_pending_node_selector_basic/test_case.yaml @@ -0,0 +1,12 @@ +user_prompt: "What is the issue with user-profile-import" +expected_output: "node selector mismatch" +before_test: | + kubectl create namespace app-13a || true + kubectl apply -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/pending_pods/pending_pod_node_selector.yaml -n app-13a + sleep 30 +after_test: | + kubectl delete -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/pending_pods/pending_pod_node_selector.yaml -n app-13a || true + kubectl delete namespace app-13a --ignore-not-found --wait=false || true +tags: + - easy + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/kubectl_describe.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/kubectl_describe.txt new file mode 100644 index 00000000000..55996b9a9e6 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/kubectl_describe.txt @@ -0,0 +1,41 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_describe", "match_params": {"kind": "pod", "name": "user-profile-import", "namespace": "app-13b"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_describe command", "params": {"kind": "pod", "name": "user-profile-import", "namespace": "app-13b"}} +stdout: +Name: user-profile-import +Namespace: app-13b +Priority: 0 +Service Account: default +Node: +Labels: +Annotations: +Status: Pending +IP: +IPs: +Containers: + nginx: + Image: nginx + Port: + Host Port: + Environment: + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-pk5lt (ro) +Conditions: + Type Status + PodScheduled False +Volumes: + kube-api-access-pk5lt: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: BestEffort +Node-Selectors: label=someLabel +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Warning FailedScheduling 38s default-scheduler 0/1 nodes are available: 1 node(s) didn't match Pod's node affinity/selector. preemption: 0/1 nodes are available: 1 Preemption is not helpful for scheduling. + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/kubectl_find_resource.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/kubectl_find_resource.txt new file mode 100644 index 00000000000..c02f46bb525 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/kubectl_find_resource.txt @@ -0,0 +1,6 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_find_resource", "match_params": {"kind": "pod", "keyword": "user-profile-import"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_find_resource command", "params": {"kind": "pod", "keyword": "user-profile-import"}} +stdout: +default user-profile-import 0/1 Pending 0 36s + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/kubectl_get_by_kind_in_cluster.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/kubectl_get_by_kind_in_cluster.txt new file mode 100644 index 00000000000..70ea8209915 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/kubectl_get_by_kind_in_cluster.txt @@ -0,0 +1,5 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_get_by_kind_in_cluster","match_params":{"kind":"node"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide node", "params": {"kind": "node"}} +NAME STATUS ROLES AGE VERSION INTERNAL-IP EXTERNAL-IP OS-IMAGE KERNEL-VERSION CONTAINER-RUNTIME LABELS +kind-double-node-control-plane Ready control-plane 28d v1.31.2 172.18.0.2 Debian GNU/Linux 12 (bookworm) 6.10.4-linuxkit containerd://1.7.18 beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/arch=amd64,kubernetes.io/hostname=kind-double-node-control-plane,kubernetes.io/os=linux,node-role.kubernetes.io/control-plane=,node.kubernetes.io/exclude-from-external-load-balancers= +kind-double-node-worker Ready 28d v1.31.2 172.18.0.3 Debian GNU/Linux 12 (bookworm) 6.10.4-linuxkit containerd://1.7.18 beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/arch=amd64,kubernetes.io/hostname=kind-double-node-worker,kubernetes.io/os=linux diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/mocks/response.txt new file mode 100644 index 00000000000..1efb3872157 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/mocks/response.txt @@ -0,0 +1,4 @@ +Pod user-profile-import in namespace app-13b is Pending. Reason: node selector/affinity label=someLabel does not match any of the 3 +nodes. No node available for scheduling. + +Fix: Remove or correct nodeSelector label in pod spec, or add label=someLabel to a node. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/test_case.yaml new file mode 100644 index 00000000000..8a5ec8e8913 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/13b_pending_node_selector_detailed/test_case.yaml @@ -0,0 +1,18 @@ +user_prompt: "What is the issue with user-profile-import" +expected_output: + - The pod user-profile-import is pending because its nodeSelector "label=someLabel" doesn't match any nodes + - The pod requires a node with label "label=someLabel" but neither node has this label + - To fix, either remove the nodeSelector from the pod or add the label "label=someLabel" to a node +tags: + - medium # requires citing exact labels and node information + - kubernetes +before_test: | + kubectl create namespace app-13b || true + kubectl apply -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/pending_pods/pending_pod_node_selector.yaml -n app-13b + sleep 30 +after_test: | + kubectl delete -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/pending_pods/pending_pod_node_selector.yaml -n app-13b || true + kubectl delete namespace app-13b --ignore-not-found --wait=false || true + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_describe_deployment.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_describe_deployment.txt new file mode 100644 index 00000000000..9daa854f22f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_describe_deployment.txt @@ -0,0 +1,46 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_describe", "match_params": {"kind": "deployment", "name": "user-profile-resources", "namespace": "default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_describe command", "params": {"kind": "deployment", "name": "user-profile-resources", "namespace": "default"}} +stdout: +Name: user-profile-resources +Namespace: default +CreationTimestamp: Fri, 24 Jan 2025 12:41:58 +0100 +Labels: +Annotations: deployment.kubernetes.io/revision: 1 +Selector: app=user-profile-resources +Replicas: 1 desired | 1 updated | 1 total | 0 available | 1 unavailable +StrategyType: RollingUpdate +MinReadySeconds: 0 +RollingUpdateStrategy: 25% max unavailable, 25% max surge +Pod Template: + Labels: app=user-profile-resources + Containers: + profile-getter: + Image: nginx + Port: + Host Port: + Limits: + cpu: 3 + memory: 5Gi + nvidia.com/gpu: 5 + Requests: + cpu: 3 + memory: 5Gi + nvidia.com/gpu: 5 + Environment: + Mounts: + Volumes: + Node-Selectors: + Tolerations: +Conditions: + Type Status Reason + ---- ------ ------ + Available False MinimumReplicasUnavailable + Progressing True ReplicaSetUpdated +OldReplicaSets: +NewReplicaSet: user-profile-resources-659d4dd659 (1/1 replicas created) +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal ScalingReplicaSet 4m58s deployment-controller Scaled up replica set user-profile-resources-659d4dd659 to 1 + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_describe_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_describe_pod.txt new file mode 100644 index 00000000000..432d355cdc0 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_describe_pod.txt @@ -0,0 +1,51 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_describe", "match_params": {"kind": "pod", "name": "user-profile-resources-659d4dd659-cq4kq", "namespace": "default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_describe command", "params": {"kind": "pod", "name": "user-profile-resources-659d4dd659-cq4kq", "namespace": "default"}} +stdout: +Name: user-profile-resources-659d4dd659-cq4kq +Namespace: default +Priority: 0 +Service Account: default +Node: +Labels: app=user-profile-resources + pod-template-hash=659d4dd659 +Annotations: +Status: Pending +IP: +IPs: +Controlled By: ReplicaSet/user-profile-resources-659d4dd659 +Containers: + profile-getter: + Image: nginx + Port: + Host Port: + Limits: + cpu: 3 + memory: 5Gi + nvidia.com/gpu: 5 + Requests: + cpu: 3 + memory: 5Gi + nvidia.com/gpu: 5 + Environment: + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-7hdk7 (ro) +Conditions: + Type Status + PodScheduled False +Volumes: + kube-api-access-7hdk7: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: Guaranteed +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Warning FailedScheduling 3m17s default-scheduler 0/1 nodes are available: 1 Insufficient nvidia.com/gpu. preemption: 0/1 nodes are available: 1 No preemption victims found for incoming pod. + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_find_resource_deployment.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_find_resource_deployment.txt new file mode 100644 index 00000000000..318380f5f38 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_find_resource_deployment.txt @@ -0,0 +1,6 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_find_resource", "match_params": {"kind": "deployment", "keyword": "user-profile-resources"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_find_resource command", "params": {"kind": "deployment", "keyword": "user-profile-resources"}} +stdout: +default user-profile-resources 0/1 1 0 4m56s profile-getter nginx app=user-profile-resources + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_find_resource_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_find_resource_pod.txt new file mode 100644 index 00000000000..713ad3bc802 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_find_resource_pod.txt @@ -0,0 +1,6 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_find_resource", "match_params": {"kind": "pod", "keyword": "user-profile-resources"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_find_resource command", "params": {"kind": "pod", "keyword": "user-profile-resources"}} +stdout: +default user-profile-resources-659d4dd659-cq4kq 0/1 Pending 0 3m16s app=user-profile-resources,pod-template-hash=659d4dd659 + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_lineage_children.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_lineage_children.txt new file mode 100644 index 00000000000..f8f20d4ffc8 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/kubectl_lineage_children.txt @@ -0,0 +1,13 @@ +{"toolset_name": "kubernetes/kube-lineage-extras", "tool_name": "kubectl_lineage_children", "match_params": {"kind": "deployment", "name": "user-profile-resources", "namespace": "default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_lineage_children command", "params": {"kind": "deployment", "name": "user-profile-resources", "namespace": "default"}} +stdout: +NAME READY STATUS AGE +Deployment/user-profile-resources 0/1 4m59s +├── Event/user-profile-resources.181d9e26501d2a00 - ScalingReplicaSet: Scaled up replica set user-profile-resources-659d4dd659 to 1 4m59s +└── ReplicaSet/user-profile-resources-659d4dd659 0/1 4m59s + ├── Event/user-profile-resources-659d4dd659.181d9e2650827d4c - SuccessfulCreate: Created pod: user-profile-resources-659d4dd659-cq4kq 4m59s + └── Pod/user-profile-resources-659d4dd659-cq4kq 0/1 Pending 4m59s + ├── Event/user-profile-resources-659d4dd659-cq4kq.181d9e265085dc4b - FailedScheduling: 0/1 nodes are available: 1 Insufficient nvidia.com/gpu. preemption: 0/1 nodes are available: 1 No preemption victims found for incoming pod. 4m59s + └── Service/kubernetes - 45d + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/mocks/response.txt new file mode 100644 index 00000000000..05e6f0f4aa4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/mocks/response.txt @@ -0,0 +1,11 @@ +Pod user-profile-resources-659d4dd659-xch7g in default namespace is stuck in Pending state. + +Reason: No nodes have enough resources for its requests: + + • CPU: 3 cores + • Memory: 5Gi + • GPU: 5 (nvidia.com/gpu) + +All 3 nodes lack sufficient CPU, memory, and GPU. No preemption victims found. + +To fix: Lower resource requests or add nodes with more CPU, memory, and GPU. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/test_case.yaml new file mode 100644 index 00000000000..af5029bb25f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/14_pending_resources/test_case.yaml @@ -0,0 +1,11 @@ +user_prompt: "What is the issue with user-profile-resources" +expected_output: + - This must mention insufficient GPU resources +before_test: | + kubectl apply -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/pending_pods/pending_pod_resources.yaml + sleep 30 +after_test: | + kubectl delete -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/pending_pods/pending_pod_resources.yaml +tags: + - easy + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/15_failed_readiness_probe/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/15_failed_readiness_probe/manifest.yaml new file mode 100644 index 00000000000..8afc6435ad9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/15_failed_readiness_probe/manifest.yaml @@ -0,0 +1,24 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: app-15 +--- +apiVersion: v1 +kind: Pod +metadata: + name: search-engine + namespace: app-15 +spec: + containers: + - name: get-details + image: busybox + command: ["sh", "-c", "while true; do echo 'Running...'; sleep 5; done"] + readinessProbe: + exec: + command: + - sh + - -c + - "exit 1" + initialDelaySeconds: 5 + periodSeconds: 5 + failureThreshold: 3 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/15_failed_readiness_probe/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/15_failed_readiness_probe/mocks/response.txt new file mode 100644 index 00000000000..4b445139950 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/15_failed_readiness_probe/mocks/response.txt @@ -0,0 +1,3 @@ +search-engine pod is not ready due to failing readiness probe. Container runs a loop printing "Running...", but readiness probe +always fails (exec [sh -c exit 1]). Pod status: Running, but not Ready. Fix: Update readiness probe to a command that returns +success (exit 0) when ready. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/15_failed_readiness_probe/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/15_failed_readiness_probe/test_case.yaml new file mode 100644 index 00000000000..c558bf96d97 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/15_failed_readiness_probe/test_case.yaml @@ -0,0 +1,11 @@ +user_prompt: "What is the issue with search-engine pod" +expected_output: + - The `search-engine` pod is not ready due to a failing readiness probe +before_test: | + kubectl apply -f manifest.yaml + sleep 30 +after_test: | + kubectl delete -f manifest.yaml +tags: + - kubernetes + - easy diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/fast_oom_deployment.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/fast_oom_deployment.yaml new file mode 100644 index 00000000000..b47cbd8b7f5 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/fast_oom_deployment.yaml @@ -0,0 +1,32 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: analytics-exporter-fast +spec: + replicas: 1 + selector: + matchLabels: + app: analytics-exporter-fast + template: + metadata: + labels: + app: analytics-exporter-fast + spec: + containers: + - name: memory-eater + image: us-central1-docker.pkg.dev/genuine-flight-317411/devel/memory-eater:1.0 + imagePullPolicy: Always + args: + - 80Mi + - "0" + - 100Mi + - "10" # +10Mi per second. Will die after 2 seconds if limit is 100Mi + - "1" + resources: + limits: + memory: 100Mi + requests: + memory: 100Mi + restartPolicy: Always + nodeSelector: + kubernetes.io/arch: amd64 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/kubectl_describe.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/kubectl_describe.txt new file mode 100644 index 00000000000..45be92ada27 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/kubectl_describe.txt @@ -0,0 +1,76 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_describe", "match_params": {"kind": "pod", "name": "analytics-exporter-fast-76897854c-jx42x", "namespace": "default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_describe command", "params": {"kind": "pod", "name": "analytics-exporter-fast-76897854c-jx42x", "namespace": "default"}} +stdout: +Name: analytics-exporter-fast-76897854c-jx42x +Namespace: default +Priority: 0 +Service Account: default +Node: kind-control-plane/172.18.0.2 +Start Time: Tue, 26 Nov 2024 12:36:27 +0100 +Labels: app=analytics-exporter-fast + pod-template-hash=76897854c +Annotations: +Status: Running +IP: 10.244.0.186 +IPs: + IP: 10.244.0.186 +Controlled By: ReplicaSet/analytics-exporter-fast-76897854c +Containers: + memory-eater: + Container ID: containerd://0c921d04aa43c897393ab255b5ca85adde43484dfc81ad3de721e7ae6d63ff5d + Image: us-central1-docker.pkg.dev/genuine-flight-317411/devel/memory-eater:1.0 + Image ID: us-central1-docker.pkg.dev/genuine-flight-317411/devel/memory-eater@sha256:b99901aacc6c87f86a767b3a0b02cdc926aae62bb4a5e7361d895f26f4773562 + Port: + Host Port: + Args: + 80Mi + 0 + 100Mi + 10 + 1 + State: Waiting + Reason: CrashLoopBackOff + Last State: Terminated + Reason: OOMKilled + Exit Code: 137 + Started: Tue, 26 Nov 2024 12:36:31 +0100 + Finished: Tue, 26 Nov 2024 12:36:32 +0100 + Ready: False + Restart Count: 1 + Limits: + memory: 100Mi + Requests: + memory: 100Mi + Environment: + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-2dkh7 (ro) +Conditions: + Type Status + PodReadyToStartContainers True + Initialized True + Ready False + ContainersReady False + PodScheduled True +Volumes: + kube-api-access-2dkh7: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: Burstable +Node-Selectors: kubernetes.io/arch=amd64 +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal Scheduled 12s default-scheduler Successfully assigned default/analytics-exporter-fast-76897854c-jx42x to kind-control-plane + Normal Pulled 11s kubelet Successfully pulled image "us-central1-docker.pkg.dev/genuine-flight-317411/devel/memory-eater:1.0" in 1.004s (1.004s including waiting). Image size: 47485901 bytes. + Normal Pulling 10s (x2 over 12s) kubelet Pulling image "us-central1-docker.pkg.dev/genuine-flight-317411/devel/memory-eater:1.0" + Normal Created 9s (x2 over 11s) kubelet Created container memory-eater + Normal Started 9s (x2 over 11s) kubelet Started container memory-eater + Normal Pulled 9s kubelet Successfully pulled image "us-central1-docker.pkg.dev/genuine-flight-317411/devel/memory-eater:1.0" in 906ms (906ms including waiting). Image size: 47485901 bytes. + Warning BackOff 6s (x2 over 7s) kubelet Back-off restarting failed container memory-eater in pod analytics-exporter-fast-76897854c-jx42x_default(2af2f43f-663a-4c40-8102-4d35519c205f) + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/kubectl_find_resource.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/kubectl_find_resource.txt new file mode 100644 index 00000000000..178fbc795bb --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/kubectl_find_resource.txt @@ -0,0 +1,6 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_find_resource", "match_params": {"kind": "pod", "keyword": "analytics-exporter-fast"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_find_resource command", "params": {"kind": "pod", "keyword": "analytics-exporter-fast"}} +stdout: +default analytics-exporter-fast-76897854c-jx42x 0/1 CrashLoopBackOff 1 (5s ago) 10s 10.244.0.186 kind-control-plane app=analytics-exporter-fast,pod-template-hash=76897854c + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/kubectl_logs.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/kubectl_logs.txt new file mode 100644 index 00000000000..9b0e0bcdbb6 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/kubectl_logs.txt @@ -0,0 +1,5 @@ +{"toolset_name": "kubernetes/logs", "tool_name": "fetch_pod_logs", "match_params": {"pod_name": "analytics-exporter-fast-76897854c-jx42x", "namespace": "default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "fetch_pod_logs command", "params": {"pod_name": "analytics-exporter-fast-76897854c-jx42x", "namespace": "default"}} +stdout: + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/mocks/response.txt new file mode 100644 index 00000000000..f26270837d5 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/mocks/response.txt @@ -0,0 +1,4 @@ +analytics-exporter-fast pod is repeatedly OOMKilled (out of memory). Container memory-eater requests and limits are set to 100Mi, +but it tries to allocate 80Mi and then 100Mi, causing it to exceed its memory limit and crash. + +Fix: Increase memory limit above 100Mi in deployment spec. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/test_case.yaml new file mode 100644 index 00000000000..7174bbf9f9a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/17_oom_kill/test_case.yaml @@ -0,0 +1,11 @@ +user_prompt: "What is the issue with analytics-exporter-fast?" +expected_output: + - The result mentions analytics-exporter-fast is getting OOMKILLED +before_test: | + kubectl apply -f ./fast_oom_deployment.yaml + sleep 5 +after_test: | + kubectl delete -f ./fast_oom_deployment.yaml +tags: + - easy + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/kubectl_describe.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/kubectl_describe.txt new file mode 100644 index 00000000000..f11423b5c65 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/kubectl_describe.txt @@ -0,0 +1,74 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_describe", "match_params": {"kind": "pod", "name": "db-certs-authenticator-757f89d977-4qfst", "namespace": "default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_describe command", "params": {"kind": "pod", "name": "db-certs-authenticator-757f89d977-4qfst", "namespace": "default"}} +stdout: +Name: db-certs-authenticator-757f89d977-4qfst +Namespace: default +Priority: 0 +Service Account: default +Node: grafana-cloud-control-plane/172.18.0.3 +Start Time: Fri, 24 Jan 2025 13:24:17 +0100 +Labels: app=flask + pod-template-hash=757f89d977 +Annotations: +Status: Running +IP: 10.244.0.56 +IPs: + IP: 10.244.0.56 +Controlled By: ReplicaSet/db-certs-authenticator-757f89d977 +Containers: + flask: + Container ID: containerd://cf6dcfc78bb7ceb002d74e9fd57d199ee8bd3f96f7ff5ac1cf050f6606de7c21 + Image: us-central1-docker.pkg.dev/genuine-flight-317411/devel/flask-app:latest + Image ID: us-central1-docker.pkg.dev/genuine-flight-317411/devel/flask-app@sha256:2829937cca7723f59949d75911af8d65c4aa92292e7c85a2787e108dfdc14cb4 + Port: 5000/TCP + Host Port: 0/TCP + State: Running + Started: Fri, 24 Jan 2025 13:24:35 +0100 + Ready: True + Restart Count: 0 + Environment: + Mounts: + /certs from writable-certs (rw) + /certs/certificate.pem from cert-volume (rw,path="certificate.pem") + /certs/key.pem from key-volume (rw,path="key.pem") + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-d879h (ro) +Conditions: + Type Status + PodReadyToStartContainers True + Initialized True + Ready True + ContainersReady True + PodScheduled True +Volumes: + cert-volume: + Type: ConfigMap (a volume populated by a ConfigMap) + Name: db-certs-config + Optional: false + key-volume: + Type: ConfigMap (a volume populated by a ConfigMap) + Name: db-certs-config + Optional: false + writable-certs: + Type: EmptyDir (a temporary directory that shares a pod's lifetime) + Medium: + SizeLimit: + kube-api-access-d879h: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: BestEffort +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal Scheduled 69s default-scheduler Successfully assigned default/db-certs-authenticator-757f89d977-4qfst to grafana-cloud-control-plane + Normal Pulling 69s kubelet Pulling image "us-central1-docker.pkg.dev/genuine-flight-317411/devel/flask-app:latest" + Normal Pulled 52s kubelet Successfully pulled image "us-central1-docker.pkg.dev/genuine-flight-317411/devel/flask-app:latest" in 16.67s (16.67s including waiting). Image size: 57542453 bytes. + Normal Created 52s kubelet Created container flask + Normal Started 52s kubelet Started container flask + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/kubectl_find_resource.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/kubectl_find_resource.txt new file mode 100644 index 00000000000..5cee13fd477 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/kubectl_find_resource.txt @@ -0,0 +1,6 @@ +{"toolset_name": "kubernetes/core", "tool_name": "kubectl_find_resource", "match_params": {"kind": "pod", "keyword": "db-certs-authenticator"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl_find_resource command", "params": {"kind": "pod", "keyword": "db-certs-authenticator"}} +stdout: +default db-certs-authenticator-757f89d977-4qfst 1/1 Running 0 69s 10.244.0.56 grafana-cloud-control-plane app=flask,pod-template-hash=757f89d977 + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/kubectl_logs.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/kubectl_logs.txt new file mode 100644 index 00000000000..5bbbf5ccd58 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/kubectl_logs.txt @@ -0,0 +1,58 @@ +{"toolset_name": "kubernetes/logs", "tool_name": "fetch_pod_logs", "match_params": {"pod_name": "db-certs-authenticator-757f89d977-4qfst", "namespace": "default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "fetch_pod_logs command", "params": {"pod_name": "db-certs-authenticator-757f89d977-4qfst", "namespace": "default"}} +stdout: + * Serving Flask app "app" (lazy loading) + * Environment: production + WARNING: This is a development server. Do not use it in a production deployment. + Use a production WSGI server instead. + * Debug mode: off +2025-02-25 10:17:46,884 - DEBUG - Starting new HTTP connection (1): localhost:5000 +2025-02-25 10:17:46,884 - INFO - * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit) +2025-02-25 10:17:46,886 - INFO - 127.0.0.1 - - [25/Feb/2025 10:17:46] "GET / HTTP/1.1" 200 - +2025-02-25 10:17:46,886 - DEBUG - http://localhost:5000 "GET / HTTP/10" 200 1435 +2025-02-25 10:17:48,882 - INFO - check_certificate_expiry thread started +2025-02-25 10:17:51,561 - DEBUG - Starting new HTTP connection (1): localhost:5000 +2025-02-25 10:17:51,562 - INFO - 127.0.0.1 - - [25/Feb/2025 10:17:51] "GET / HTTP/1.1" 200 - +2025-02-25 10:17:51,563 - DEBUG - http://localhost:5000 "GET / HTTP/10" 200 1435 +2025-02-25 10:17:59,796 - DEBUG - Starting new HTTP connection (1): localhost:5000 +2025-02-25 10:17:59,797 - INFO - 127.0.0.1 - - [25/Feb/2025 10:17:59] "GET / HTTP/1.1" 200 - +2025-02-25 10:17:59,797 - DEBUG - http://localhost:5000 "GET / HTTP/10" 200 1435 +2025-02-25 10:18:04,339 - DEBUG - Starting new HTTP connection (1): localhost:5000 +2025-02-25 10:18:04,341 - INFO - 127.0.0.1 - - [25/Feb/2025 10:18:04] "GET / HTTP/1.1" 200 - +2025-02-25 10:18:04,341 - DEBUG - http://localhost:5000 "GET / HTTP/10" 200 1435 +2025-02-25 10:18:11,391 - DEBUG - Starting new HTTP connection (1): localhost:5000 +2025-02-25 10:18:11,392 - INFO - 127.0.0.1 - - [25/Feb/2025 10:18:11] "GET / HTTP/1.1" 200 - +2025-02-25 10:18:11,393 - DEBUG - http://localhost:5000 "GET / HTTP/10" 200 1435 +2025-02-25 10:18:15,503 - DEBUG - Starting new HTTP connection (1): localhost:5000 +2025-02-25 10:18:15,505 - INFO - 127.0.0.1 - - [25/Feb/2025 10:18:15] "GET / HTTP/1.1" 200 - +2025-02-25 10:18:15,505 - DEBUG - http://localhost:5000 "GET / HTTP/10" 200 1435 +2025-02-25 10:18:16,334 - DEBUG - Starting new HTTP connection (1): localhost:5000 +2025-02-25 10:18:16,335 - INFO - 127.0.0.1 - - [25/Feb/2025 10:18:16] "GET / HTTP/1.1" 200 - +2025-02-25 10:18:16,335 - DEBUG - http://localhost:5000 "GET / HTTP/10" 200 1435 +2025-02-25 10:18:24,189 - DEBUG - Starting new HTTP connection (1): localhost:5000 +2025-02-25 10:18:24,190 - INFO - 127.0.0.1 - - [25/Feb/2025 10:18:24] "GET / HTTP/1.1" 200 - +2025-02-25 10:18:24,191 - DEBUG - http://localhost:5000 "GET / HTTP/10" 200 1435 +2025-02-25 10:18:26,230 - DEBUG - Starting new HTTP connection (1): localhost:5000 +2025-02-25 10:18:26,232 - INFO - 127.0.0.1 - - [25/Feb/2025 10:18:26] "GET / HTTP/1.1" 200 - +2025-02-25 10:18:26,232 - DEBUG - http://localhost:5000 "GET / HTTP/10" 200 1435 +2025-02-25 10:18:33,791 - DEBUG - Starting new HTTP connection (1): localhost:5000 +2025-02-25 10:18:33,793 - INFO - 127.0.0.1 - - [25/Feb/2025 10:18:33] "GET / HTTP/1.1" 200 - +2025-02-25 10:18:33,793 - DEBUG - http://localhost:5000 "GET / HTTP/10" 200 1435 +2025-02-25 10:18:34,306 - DEBUG - Starting new HTTP connection (1): localhost:5000 +2025-02-25 10:18:34,307 - INFO - 127.0.0.1 - - [25/Feb/2025 10:18:34] "GET / HTTP/1.1" 200 - +2025-02-25 10:18:34,307 - DEBUG - http://localhost:5000 "GET / HTTP/10" 200 1435 +2025-02-25 10:18:40,689 - DEBUG - Starting new HTTP connection (1): localhost:5000 +2025-02-25 10:18:40,690 - INFO - 127.0.0.1 - - [25/Feb/2025 10:18:40] "GET / HTTP/1.1" 200 - +2025-02-25 10:18:40,691 - DEBUG - http://localhost:5000 "GET / HTTP/10" 200 1435 +2025-02-25 10:18:47,367 - DEBUG - Starting new HTTP connection (1): localhost:5000 +2025-02-25 10:18:47,369 - INFO - 127.0.0.1 - - [25/Feb/2025 10:18:47] "GET / HTTP/1.1" 200 - +2025-02-25 10:18:47,369 - DEBUG - http://localhost:5000 "GET / HTTP/10" 200 1435 +2025-02-25 10:18:48,942 - INFO - Validating cert +2025-02-25 10:18:48,952 - WARNING - Certificate has expired. Update the ssl certificate using the '/update_certificate' API or update the config map. +2025-02-25 10:18:48,952 - ERROR - SSL certificate expired +Traceback (most recent call last): + File "/app/app.py", line 141, in check_certificate_expiry + raise ExpiredCertException(f"Certificate expired on {cert_expiry}") +ExpiredCertException: Certificate expired on 2024-08-03 17:00:08 + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/manifest.yaml new file mode 100644 index 00000000000..a27b903bbca --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/manifest.yaml @@ -0,0 +1,173 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: app-18 +--- +apiVersion: v1 +kind: Secret +metadata: + name: flask-app-code + namespace: app-18 +type: Opaque +stringData: + app.py: | + #!/usr/bin/env python3 + import logging + import threading + import time + import os + import sys + import requests + from datetime import datetime + from flask import Flask + + # Configure logging for both Flask and requests + logging.basicConfig( + level=logging.DEBUG, + format='%(asctime)s - %(levelname)s - %(message)s' + ) + logging.getLogger('urllib3').setLevel(logging.DEBUG) + + app = Flask(__name__) + + class ExpiredCertException(Exception): + pass + + def make_self_requests(): + """Make some requests to self to generate logs""" + try: + for _ in range(3): + logging.debug("Starting new HTTP connection (1): localhost:5000") + response = requests.get('http://localhost:5000/') + logging.debug(f'http://localhost:5000 "GET / HTTP/10" {response.status_code} {len(response.content)}') + time.sleep(0.5) + except: + pass # Ignore errors if server is shutting down + + def check_certificate_expiry(): + """Check certificate expiry after a short delay""" + # Make some self-requests first + make_self_requests() + + logging.info("Validating cert") + + # Simulate an expired certificate + cert_expiry = "2024-08-03 17:00:08" + logging.warning("Certificate has expired. Update the ssl certificate using the '/update_certificate' API or update the config map.") + logging.error("SSL certificate expired") + + # Force the entire process to exit + try: + raise ExpiredCertException(f"Certificate expired on {cert_expiry}") + except ExpiredCertException as e: + # Print traceback in the expected format + print("Traceback (most recent call last):", file=sys.stderr) + print(' File "/app/app.py", line 141, in check_certificate_expiry', file=sys.stderr) + print(f' raise ExpiredCertException(f"Certificate expired on {{cert_expiry}}")', file=sys.stderr) + print(f"ExpiredCertException: {e}", file=sys.stderr) + sys.stderr.flush() + os._exit(1) # Force exit to simulate crash + + @app.route('/') + def home(): + return "Service is running", 200 + + def start_certificate_check(): + """Start the certificate check thread""" + logging.info("check_certificate_expiry thread started") + thread = threading.Thread(target=check_certificate_expiry) + thread.daemon = False # Make it non-daemon so it can affect the main process + thread.start() + + if __name__ == '__main__': + # Configure werkzeug logger (Flask's underlying server) + werkzeug_logger = logging.getLogger('werkzeug') + werkzeug_logger.setLevel(logging.INFO) + + # Start the Flask app in a thread so we can make requests to it + server_thread = threading.Thread(target=lambda: app.run(host='0.0.0.0', port=5000, debug=False, use_reloader=False)) + server_thread.daemon = True + server_thread.start() + + # Give Flask time to start + time.sleep(1) + + # Make initial request + try: + logging.debug("Starting new HTTP connection (1): localhost:5000") + response = requests.get('http://localhost:5000/') + logging.debug(f'http://localhost:5000 "GET / HTTP/10" {response.status_code} {len(response.content)}') + except: + pass + + # Start the certificate check thread after a brief delay + timer = threading.Timer(2.0, start_certificate_check) + timer.start() + + # Keep the main thread alive + server_thread.join() +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: golden-eagle + namespace: app-18 + labels: + app: flask +spec: + replicas: 1 + selector: + matchLabels: + app: flask + template: + metadata: + labels: + app: flask + spec: + containers: + - name: flask + image: python:3.9-slim + command: ["sh", "-c", "pip install flask==2.3.3 requests==2.31.0 && python /app/app.py"] + ports: + - containerPort: 5000 + volumeMounts: + - name: app-code + mountPath: /app + - name: cert-volume + mountPath: /certs/certificate.pem + subPath: certificate.pem + - name: key-volume + mountPath: /certs/key.pem + subPath: key.pem + volumes: + - name: app-code + secret: + secretName: flask-app-code + - name: cert-volume + secret: + secretName: db-certs-config + items: + - key: certificate.pem + path: certificate.pem + - name: key-volume + secret: + secretName: db-certs-config + items: + - key: key.pem + path: key.pem +--- +apiVersion: v1 +kind: Service +metadata: + name: flask-service + namespace: app-18 + labels: + app: flask +spec: + selector: + app: flask + ports: + - protocol: TCP + name: http + port: 80 + targetPort: 5000 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/mocks/response.txt new file mode 100644 index 00000000000..38cd5f0cad8 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/mocks/response.txt @@ -0,0 +1,13 @@ +golden-eagle pod in app-18 namespace crashes due to expired SSL certificate. + +Relevant error: + + + Certificate has expired. Update the ssl certificate using the '/update_certificate' API or update the config map. + ERROR - SSL certificate expired + ExpiredCertException: Certificate expired on 2024-08-03 17:00:08 + + +Root cause: Secret db-certs-config (used for certs) is missing, and the certificate is expired. + +Fix: Create/update the db-certs-config secret with a valid certificate and key. Then restart the deployment. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/test_case.yaml new file mode 100644 index 00000000000..80313caa56f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/18_crash_looping_v2/test_case.yaml @@ -0,0 +1,37 @@ +user_prompt: "What is the issue with golden-eagle?" +expected_output: + - The `golden-eagle` pod experienced an expired SSL certificate. +before_test: | + # Create dummy certificate data (base64 encoded) + DUMMY_CERT=$(echo -n "dummy-certificate-content" | base64) + DUMMY_KEY=$(echo -n "dummy-private-key-content" | base64) + + # Apply the manifest first (which creates the namespace) + kubectl apply -f manifest.yaml + + # Create the certificate Secret in the namespace + kubectl create secret generic db-certs-config \ + --from-literal=certificate.pem="$DUMMY_CERT" \ + --from-literal=key.pem="$DUMMY_KEY" \ + -n app-18 + + # Wait for the SSL certificate error + timeout=60 + elapsed=0 + while [ $elapsed -lt $timeout ]; do + if kubectl logs -l app=flask -n app-18 2>/dev/null | grep -q "ERROR - SSL certificate expired"; then + echo "SSL certificate error detected" + break + fi + sleep 2 + elapsed=$((elapsed + 2)) + done + if [ $elapsed -ge $timeout ]; then + echo "Timeout waiting for SSL certificate error" + exit 1 + fi +after_test: | + kubectl delete namespace app-18 --ignore-not-found --wait=false +tags: + - easy + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/fetch_logs.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/fetch_logs.txt new file mode 100644 index 00000000000..55a62c155b1 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/fetch_logs.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"namespace":"app-20","pod_name":"network-connector","filter":"Peer down"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "app-20", "pod_name": "network-connector", "start_time": null, "end_time": null, "filter_pattern": "Peer down", "limit": 2000}} +Peer down diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/generate_logs.py new file mode 100644 index 00000000000..acf97075ed4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/generate_logs.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import time + + +def main(): + # Generate 100,000 log entries with "Peer down" at line 50,000 + for i in range(1, 100001): + if i == 50000: + print("Peer down") + else: + print(f"Log entry {i}") + + # Keep pod running + while True: + time.sleep(3600) + + +if __name__ == "__main__": + main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/kubectl_describe.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/kubectl_describe.txt new file mode 100644 index 00000000000..011feca4163 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/kubectl_describe.txt @@ -0,0 +1,59 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"pod","name":"network-connector-f6cf57f75-99bhg","namespace":"app-20"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl describe pod network-connector-f6cf57f75-99bhg -n app-20", "params": {"kind": "pod", "name": "network-connector-f6cf57f75-99bhg", "namespace": "app-20"}} +Name: network-connector-f6cf57f75-99bhg +Namespace: app-20 +Priority: 0 +Service Account: default +Node: kind-double-node-worker/172.18.0.3 +Start Time: Tue, 13 May 2025 08:55:40 +0200 +Labels: +Annotations: +Status: Running +IP: 10.244.1.47 +IPs: + IP: 10.244.1.47 +Containers: + network-connector: + Container ID: containerd://3f78168bb78ee47713e3c8387555997809027e2ce0559f329df8e0fcd8f1f643 + Image: python:3.9-slim + Image ID: docker.io/library/busybox@sha256:37f7b378a29ceb4c551b1b5582e27747b855bbfaa73fa11914fe0df028dc581f + Port: + Host Port: + Command: + python + Args: + /scripts/generate_logs.py + + State: Running + Started: Tue, 13 May 2025 08:55:42 +0200 + Ready: True + Restart Count: 0 + Environment: + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-68pv5 (ro) +Conditions: + Type Status + PodReadyToStartContainers True + Initialized True + Ready True + ContainersReady True + PodScheduled True +Volumes: + kube-api-access-68pv5: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: BestEffort +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal Scheduled 4m18s default-scheduler Successfully assigned app-20/network-connector-f6cf57f75-99bhg to kind-double-node-worker + Normal Pulling 4m17s kubelet Pulling image "python:3.9-slim" + Normal Pulled 4m16s kubelet Successfully pulled image "python:3.9-slim" in 878ms (878ms including waiting). Image size: 2156519 bytes. + Normal Created 4m16s kubelet Created container network-connector + Normal Started 4m16s kubelet Started container network-connector diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/kubectl_find_resource.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/kubectl_find_resource.txt new file mode 100644 index 00000000000..88fe9a96f7a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/kubectl_find_resource.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"pod","keyword":"network-connector"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide pod | grep network-connector", "params": {"kind": "pod", "keyword": "network-connector"}} +app-20 network-connector-f6cf57f75-99bhg 1/1 Running 0 4m17s 10.244.1.47 kind-double-node-worker app=network-connector diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/manifest.yaml new file mode 100644 index 00000000000..f85386b001d --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/manifest.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: network-connector + namespace: app-20 + labels: + app: network-connector +spec: + replicas: 1 + selector: + matchLabels: + app: network-connector + template: + metadata: + labels: + app: network-connector + spec: + containers: + - name: network-connector + image: python:3.9-slim + command: ["python"] + args: ["/scripts/generate_logs.py"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + volumes: + - name: script-volume + secret: + secretName: network-connector-logs-script + defaultMode: 0755 + restartPolicy: Always diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/mocks/response.txt new file mode 100644 index 00000000000..bc88c891f39 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/mocks/response.txt @@ -0,0 +1,2 @@ +Yes, "Peer down" was reported for pod network-connector-7bd56c6bff-vnxlp in namespace app-20. This indicates a peer connectivity +issue occurred in the pod. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/test_case.yaml new file mode 100644 index 00000000000..cce4c748481 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/20_long_log_file_search/test_case.yaml @@ -0,0 +1,22 @@ +user_prompt: "Was there any 'Peer down' problem reported for network-connector pod in namespace app-20?" +expected_output: + - There is a Peer down issue +before_test: | + # Create namespace first since the secret depends on it (|| true ignores if it already exists) + kubectl create namespace app-20 || true + kubectl create secret generic network-connector-logs-script \ + --from-file=generate_logs.py=./generate_logs.py \ + -n app-20 --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f ./manifest.yaml + sleep 45 +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret network-connector-logs-script -n app-20 --ignore-not-found + kubectl delete namespace app-20 --ignore-not-found --wait=false +evaluation: + correctness: strict + +tags: + - logs + - easy + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/22_high_latency_dbi_down/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/22_high_latency_dbi_down/manifest.yaml new file mode 100644 index 00000000000..13a42e26798 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/22_high_latency_dbi_down/manifest.yaml @@ -0,0 +1,65 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: customer-orders-for-medium + namespace: app-22 +spec: + replicas: 1 + selector: + matchLabels: + app: customer-orders-for-medium + template: + metadata: + labels: + app: customer-orders-for-medium + spec: + containers: + - name: fastapi-app + image: us-central1-docker.pkg.dev/genuine-flight-317411/devel/rds-demo:v1 + ports: + - containerPort: 8000 + - containerPort: 8001 + env: + - name: DB_USERNAME + valueFrom: + secretKeyRef: + name: db-secrets-for-medium + key: username + - name: DB_PASSWORD + valueFrom: + secretKeyRef: + name: db-secrets-for-medium + key: password + - name: DB_HOST + valueFrom: + secretKeyRef: + name: db-secrets-for-medium + key: host + - name: DB_DATABASE + valueFrom: + secretKeyRef: + name: db-secrets-for-medium + key: database + - name: curl-sidecar + image: curlimages/curl + args: + - /bin/sh + - -c + - while true; do curl -s http://localhost:8000; sleep 1; done +--- +apiVersion: v1 +kind: Service +metadata: + name: customer-orders-service-for-medium + namespace: app-22 + labels: + app: customer-orders-for-medium +spec: + selector: + app: customer-orders-for-medium + ports: + - protocol: TCP + port: 80 + targetPort: 8000 + name: http + type: ClusterIP diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/22_high_latency_dbi_down/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/22_high_latency_dbi_down/test_case.yaml new file mode 100644 index 00000000000..f05bda9f638 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/22_high_latency_dbi_down/test_case.yaml @@ -0,0 +1,83 @@ +# for instructions, see "Medium Credentials for 22_high_latency_dbi_down" in 1Password +user_prompt: "Why is there high latency with the customer-orders-for-medium deployment?" +tags: + - chain-of-causation + - logs + - hard + - kubernetes +description: | + A pod fails because of a bad db access (rds). + The ai needs to use aws/rds tools to check the status of the db and see that it is down. + This requires first creating a the secret 'db-secrets-for-medium' in namespace app-22 w/ credentials for the RDS database. +expected_output: + - The reason for failure is promotions-db-for-medium.cp8rwothwarq.us-east-2.rds.amazonaws.com is stopped or stopping. + - The output states it checked/verified it, not just recommends to check it. +before_test: | + # kubectl create namespace app-22 + # Note - the tests assumes you created the db secret in namespace app-22 + + # Verify critical secret exists with required fields + echo "Verifying db-secrets-for-medium secret..." + kubectl get secret db-secrets-for-medium -n app-22 >/dev/null 2>&1 || { echo "ERROR: secret db-secrets-for-medium not found in app-22"; exit 1; } + + kubectl get secret db-secrets-for-medium -n app-22 -o json \ + | jq -e ' + [.data.username, .data.password, .data.host, .data.database] + | map(select(. != null) | @base64d | select(length > 0)) + | length == 4 + ' >/dev/null \ + || { echo "ERROR: secret missing required non-empty fields"; exit 1; } + + # Stop RDS instance if not already stopped + [ "$(aws rds describe-db-instances --db-instance-identifier promotions-db-for-medium --query "DBInstances[0].DBInstanceStatus" --output text)" != "stopped" ] && aws rds stop-db-instance --db-instance-identifier promotions-db-for-medium || echo "RDS instance is already stopped." + + # Apply deployment + kubectl apply -f ./manifest.yaml -n app-22 + + # Verify RDS instance is stopped or stopping + echo "Verifying RDS instance status..." + timeout=60 + elapsed=0 + while [ $elapsed -lt $timeout ]; do + status=$(aws rds describe-db-instances --db-instance-identifier promotions-db-for-medium --query "DBInstances[0].DBInstanceStatus" --output text) + if [ "$status" = "stopped" ] || [ "$status" = "stopping" ]; then + echo "RDS instance is $status" + break + fi + sleep 2 + elapsed=$((elapsed + 2)) + done + + if [ "$status" != "stopped" ] && [ "$status" != "stopping" ]; then + echo "ERROR: RDS instance status is $status, expected stopped or stopping" + exit 1 + fi + + # Wait for MySQL connection error in logs instead of fixed sleep + echo "Waiting for MySQL connection error in pod logs..." + timeout=60 + elapsed=0 + found=false + while [ $elapsed -lt $timeout ]; do + pod=$(kubectl get pods -n app-22 -l app=customer-orders-for-medium -o jsonpath='{.items[0].metadata.name}' 2>/dev/null) + if [ -n "$pod" ]; then + if kubectl logs "$pod" -n app-22 2>/dev/null | grep -q "Can't connect to MySQL server on 'promotions-db-for-medium.cp8rwothwarq.us-east-2.rds.amazonaws.com"; then + echo "Found MySQL connection error in logs" + found=true + break + fi + fi + sleep 2 + elapsed=$((elapsed + 2)) + done + + if [ "$found" = "false" ]; then + echo "ERROR: Timeout waiting for MySQL connection error in logs" + exit 1 + fi +after_test: | + kubectl delete -f ./manifest.yaml -n app-22 + # kubectl delete namespace app-22 --ignore-not-found --wait=false + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/22_high_latency_dbi_down/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/22_high_latency_dbi_down/toolsets.yaml new file mode 100644 index 00000000000..d04cb4a1756 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/22_high_latency_dbi_down/toolsets.yaml @@ -0,0 +1,11 @@ +toolsets: + prometheus/metrics: + enabled: False + kubernetes/core: + enabled: true + kubernetes/kube-lineage-extras: + enabled: true + kubernetes/logs: + enabled: true + aws/rds: + enabled: true diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/manifests/curl.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/manifests/curl.yaml new file mode 100644 index 00000000000..9a70054e916 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/manifests/curl.yaml @@ -0,0 +1,27 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: curl-deployment + namespace: app-23 +spec: + replicas: 1 + selector: + matchLabels: + app: curl-app + template: + metadata: + labels: + app: curl-app + spec: + containers: + - name: curl-container + image: curlimages/curl:7.78.0 + command: ["/bin/sh"] + args: + - -c + - | + while true; do + echo "Checking endpoint http://meme-service:5000..."; + curl -s http://meme-service:5000 || echo "Failed to reach http://meme-service:5000"; + sleep 30; + done; diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/manifests/deployment.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/manifests/deployment.yaml new file mode 100644 index 00000000000..25cfc64ccfc --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/manifests/deployment.yaml @@ -0,0 +1,39 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: meme-deployment + namespace: app-23 + labels: + app: meme-app +spec: + replicas: 2 + selector: + matchLabels: + app: meme-app + template: + metadata: + labels: + app: meme-app + spec: + containers: + - name: meme-app + # meme-generator source code available here: https://github.com/robusta-dev/Hello-DevOps-Project/tree/demo/code/meme-generator + image: pavangudiwada/meme-generator:latest + ports: + - containerPort: 5000 + protocol: TCP + envFrom: + - configMapRef: + name: meme-generator-config +--- +apiVersion: v1 +kind: Service +metadata: + name: meme-service + namespace: app-23 +spec: + type: ClusterIP + ports: + - port: 5000 + selector: + app: meme-app diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/manifests/namespace.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/manifests/namespace.yaml new file mode 100644 index 00000000000..cd7488548a0 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/manifests/namespace.yaml @@ -0,0 +1,4 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: app-23 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/test_case.yaml new file mode 100644 index 00000000000..0dfe50e444f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/23_app_error_in_current_logs/test_case.yaml @@ -0,0 +1,19 @@ +user_prompt: "Why is meme-deployment not responding to http requests from within the cluster in the app-23 namespace?" +expected_output: + - The `meme-deployment` is experiencing issues due to a DNS resolution error. + - This indicates that the hostname `memcom` cannot be resolved to an IP address. +before_test: | + kubectl create namespace app-23 || true + kubectl apply -f ./manifests/ + kubectl wait --for=condition=available --timeout=120s deployment/curl-deployment -n app-23 + kubectl wait --for=condition=available --timeout=120s deployment/meme-deployment -n app-23 + sleep 60 +after_test: | + kubectl delete -f ./manifests/ +tags: + - medium + - kubernetes + - logs + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24_misconfigured_pvc/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24_misconfigured_pvc/mocks/response.txt new file mode 100644 index 00000000000..3247e8276aa --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24_misconfigured_pvc/mocks/response.txt @@ -0,0 +1,2 @@ +Redis pod is stuck in Pending state because its PersistentVolumeClaim redis-standard-pvc cannot be provisioned. StorageClass +standard-v2 does not exist. Fix: create a StorageClass named standard-v2 or update the PVC to use an existing StorageClass. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24_misconfigured_pvc/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24_misconfigured_pvc/test_case.yaml new file mode 100644 index 00000000000..ee948b64086 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24_misconfigured_pvc/test_case.yaml @@ -0,0 +1,10 @@ +user_prompt: "What is the issue with redis?" +expected_output: + - The PersistentVolumeClaim (pvc) is misconfigured +tags: + - easy # although it failed 1/20 runs and the failure was asking the user for more information and not trying to investigate at all first - see https://www.braintrust.dev/app/robustadev/p/HolmesGPT/experiments/natan-all-easy-ask3?c=github-16532477432.2600.1&r=9ab9ed06-1db1-45f1-a98c-119160af79c3&s=c6b3795a-8984-4537-830b-76a8e4a932a0 + - kubernetes +before_test: | + kubectl apply -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/pvc-misconfiguration/redis-deployment.yaml +after_test: | + kubectl delete -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/pvc-misconfiguration/redis-deployment.yaml diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_describe_PersistentVolumeClaim_redis-standard-pvc_app-24a_2.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_describe_PersistentVolumeClaim_redis-standard-pvc_app-24a_2.txt new file mode 100644 index 00000000000..d11608cafc6 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_describe_PersistentVolumeClaim_redis-standard-pvc_app-24a_2.txt @@ -0,0 +1,18 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"PersistentVolumeClaim","name":"redis-standard-pvc","namespace":"app-24a"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl describe PersistentVolumeClaim redis-standard-pvc -n app-24a", "params": {"kind": "PersistentVolumeClaim", "name": "redis-standard-pvc", "namespace": "app-24a"}} +Name: redis-standard-pvc +Namespace: app-24a +StorageClass: standard-v2 +Status: Pending +Volume: +Labels: +Annotations: +Finalizers: [kubernetes.io/pvc-protection] +Capacity: +Access Modes: +VolumeMode: Filesystem +Used By: redis-747ffc844f-f9ghd +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Warning ProvisioningFailed 21s (x26 over 6m35s) persistentvolume-controller storageclass.storage.k8s.io "standard-v2" not found diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_describe_persistentvolumeclaim_redis-standard-pvc_app-24a.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_describe_persistentvolumeclaim_redis-standard-pvc_app-24a.txt new file mode 100644 index 00000000000..8e5418d1b4c --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_describe_persistentvolumeclaim_redis-standard-pvc_app-24a.txt @@ -0,0 +1,18 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"persistentvolumeclaim","name":"redis-standard-pvc","namespace":"app-24a"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl describe persistentvolumeclaim redis-standard-pvc -n app-24a", "params": {"kind": "persistentvolumeclaim", "name": "redis-standard-pvc", "namespace": "app-24a"}} +Name: redis-standard-pvc +Namespace: app-24a +StorageClass: standard-v2 +Status: Pending +Volume: +Labels: +Annotations: +Finalizers: [kubernetes.io/pvc-protection] +Capacity: +Access Modes: +VolumeMode: Filesystem +Used By: redis-747ffc844f-f9ghd +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Warning ProvisioningFailed 2m12s (x42 over 12m) persistentvolume-controller storageclass.storage.k8s.io "standard-v2" not found diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_describe_pod_redis-747ffc844f-f9ghd_app-24a.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_describe_pod_redis-747ffc844f-f9ghd_app-24a.txt new file mode 100644 index 00000000000..e373abc191e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_describe_pod_redis-747ffc844f-f9ghd_app-24a.txt @@ -0,0 +1,60 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"pod","name":"redis-747ffc844f-f9ghd","namespace":"app-24a"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl describe pod redis-747ffc844f-f9ghd -n app-24a", "params": {"kind": "pod", "name": "redis-747ffc844f-f9ghd", "namespace": "default"}} +Name: redis-747ffc844f-f9ghd +Namespace: app-24a +Priority: 0 +Service Account: default +Node: +Labels: app=redis + pod-template-hash=747ffc844f +Annotations: +Status: Pending +IP: +IPs: +Controlled By: ReplicaSet/redis-747ffc844f +Containers: + redis: + Image: redis:6.2.6 + Port: 6379/TCP + Host Port: 0/TCP + Command: + redis-server + --save + 60 + 1 + --stop-writes-on-bgsave-error + no + --dir + /data + Limits: + cpu: 500m + memory: 2Gi + Requests: + cpu: 100m + memory: 256Mi + Environment: + Mounts: + /data from redis-storage (rw) + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-vdbtm (ro) +Conditions: + Type Status + PodScheduled False +Volumes: + redis-storage: + Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace) + ClaimName: redis-standard-pvc + ReadOnly: false + kube-api-access-vdbtm: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: Burstable +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Warning FailedScheduling 100s (x2 over 6m45s) default-scheduler 0/2 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/2 nodes are available: 2 Preemption is not helpful for scheduling. diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_find_resource_pod_redis.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_find_resource_pod_redis.txt new file mode 100644 index 00000000000..d1d3996bff9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_find_resource_pod_redis.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"pod","keyword":"redis"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide pod | grep redis", "params": {"kind": "pod", "keyword": "redis"}} +default redis-747ffc844f-f9ghd 0/1 Pending 0 6m44s app=redis,pod-template-hash=747ffc844f diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_get_by_name_PersistentVolumeClaim_redis-standard-pvc_app-24a_2.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_get_by_name_PersistentVolumeClaim_redis-standard-pvc_app-24a_2.txt new file mode 100644 index 00000000000..abc24931002 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_get_by_name_PersistentVolumeClaim_redis-standard-pvc_app-24a_2.txt @@ -0,0 +1,4 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_get_by_name","match_params":{"kind":"PersistentVolumeClaim","name":"redis-standard-pvc","namespace":"app-24a"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get --show-labels -o wide PersistentVolumeClaim redis-standard-pvc -n app-24a", "params": {"kind": "PersistentVolumeClaim", "name": "redis-standard-pvc", "namespace": "app-24a"}} +NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS VOLUMEATTRIBUTESCLASS AGE VOLUMEMODE LABELS +redis-standard-pvc Pending standard-v2 6m58s Filesystem diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_get_by_name_persistentvolumeclaim_redis-standard-pvc_app-24a.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_get_by_name_persistentvolumeclaim_redis-standard-pvc_app-24a.txt new file mode 100644 index 00000000000..1d24cac1846 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/kubectl_get_by_name_persistentvolumeclaim_redis-standard-pvc_app-24a.txt @@ -0,0 +1,4 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_get_by_name","match_params":{"kind":"persistentvolumeclaim","name":"redis-standard-pvc","namespace":"app-24a"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get --show-labels -o wide persistentvolumeclaim redis-standard-pvc -n app-24a", "params": {"kind": "persistentvolumeclaim", "name": "redis-standard-pvc", "namespace": "app-24a"}} +NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS VOLUMEATTRIBUTESCLASS AGE VOLUMEMODE LABELS +redis-standard-pvc Pending standard-v2 12m Filesystem diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/mocks/response.txt new file mode 100644 index 00000000000..cbb0f03b8fc --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/mocks/response.txt @@ -0,0 +1,5 @@ +Redis pod is stuck in Pending because its PersistentVolumeClaim redis-standard-pvc is also Pending. No storage has been provisioned +for the PVC, so the pod cannot start. + +To fix: Check if a storage class named standard-v2 exists and is properly configured, and ensure your cluster has a storage +provider that can dynamically provision volumes. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/test_case.yaml new file mode 100644 index 00000000000..4a626d1134b --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24a_misconfigured_pvc_basic/test_case.yaml @@ -0,0 +1,12 @@ +user_prompt: "What is the issue with redis?" +expected_output: + - The PersistentVolumeClaim (pvc) is misconfigured +tags: + - easy # although it failed 1/20 runs and the failure was asking the user for more information and not trying to investigate at all first - see https://www.braintrust.dev/app/robustadev/p/HolmesGPT/experiments/natan-all-easy-ask3?c=github-16532477432.2600.1&r=9ab9ed06-1db1-45f1-a98c-119160af79c3&s=c6b3795a-8984-4537-830b-76a8e4a932a0 + - kubernetes +before_test: | + kubectl create namespace app-24a || true + kubectl apply -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/pvc-misconfiguration/redis-deployment.yaml -n app-24a +after_test: | + kubectl delete -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/pvc-misconfiguration/redis-deployment.yaml -n app-24a + kubectl delete namespace app-24a --ignore-not-found --wait=false || true diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_describe_PersistentVolumeClaim_redis-standard-pvc_app-24b_2.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_describe_PersistentVolumeClaim_redis-standard-pvc_app-24b_2.txt new file mode 100644 index 00000000000..a6742dc1085 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_describe_PersistentVolumeClaim_redis-standard-pvc_app-24b_2.txt @@ -0,0 +1,18 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"PersistentVolumeClaim","name":"redis-standard-pvc","namespace":"app-24b"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl describe PersistentVolumeClaim redis-standard-pvc -n app-24b", "params": {"kind": "PersistentVolumeClaim", "name": "redis-standard-pvc", "namespace": "default"}} +Name: redis-standard-pvc +Namespace: app-24b +StorageClass: standard-v2 +Status: Pending +Volume: +Labels: +Annotations: +Finalizers: [kubernetes.io/pvc-protection] +Capacity: +Access Modes: +VolumeMode: Filesystem +Used By: redis-747ffc844f-f9ghd +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Warning ProvisioningFailed 21s (x26 over 6m35s) persistentvolume-controller storageclass.storage.k8s.io "standard-v2" not found diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_describe_persistentvolumeclaim_redis-standard-pvc_app-24b.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_describe_persistentvolumeclaim_redis-standard-pvc_app-24b.txt new file mode 100644 index 00000000000..ec849415b20 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_describe_persistentvolumeclaim_redis-standard-pvc_app-24b.txt @@ -0,0 +1,18 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"persistentvolumeclaim","name":"redis-standard-pvc","namespace":"app-24b"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl describe persistentvolumeclaim redis-standard-pvc -n app-24b", "params": {"kind": "persistentvolumeclaim", "name": "redis-standard-pvc", "namespace": "default"}} +Name: redis-standard-pvc +Namespace: app-24b +StorageClass: standard-v2 +Status: Pending +Volume: +Labels: +Annotations: +Finalizers: [kubernetes.io/pvc-protection] +Capacity: +Access Modes: +VolumeMode: Filesystem +Used By: redis-747ffc844f-f9ghd +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Warning ProvisioningFailed 2m12s (x42 over 12m) persistentvolume-controller storageclass.storage.k8s.io "standard-v2" not found diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_describe_pod_redis-747ffc844f-f9ghd_app-24b.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_describe_pod_redis-747ffc844f-f9ghd_app-24b.txt new file mode 100644 index 00000000000..491b439ea73 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_describe_pod_redis-747ffc844f-f9ghd_app-24b.txt @@ -0,0 +1,60 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"pod","name":"redis-747ffc844f-f9ghd","namespace":"app-24b"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl describe pod redis-747ffc844f-f9ghd -n app-24b", "params": {"kind": "pod", "name": "redis-747ffc844f-f9ghd", "namespace": "default"}} +Name: redis-747ffc844f-f9ghd +Namespace: app-24b +Priority: 0 +Service Account: default +Node: +Labels: app=redis + pod-template-hash=747ffc844f +Annotations: +Status: Pending +IP: +IPs: +Controlled By: ReplicaSet/redis-747ffc844f +Containers: + redis: + Image: redis:6.2.6 + Port: 6379/TCP + Host Port: 0/TCP + Command: + redis-server + --save + 60 + 1 + --stop-writes-on-bgsave-error + no + --dir + /data + Limits: + cpu: 500m + memory: 2Gi + Requests: + cpu: 100m + memory: 256Mi + Environment: + Mounts: + /data from redis-storage (rw) + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-vdbtm (ro) +Conditions: + Type Status + PodScheduled False +Volumes: + redis-storage: + Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace) + ClaimName: redis-standard-pvc + ReadOnly: false + kube-api-access-vdbtm: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: Burstable +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Warning FailedScheduling 100s (x2 over 6m45s) default-scheduler 0/2 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/2 nodes are available: 2 Preemption is not helpful for scheduling. diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_find_resource_pod_redis.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_find_resource_pod_redis.txt new file mode 100644 index 00000000000..d1d3996bff9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_find_resource_pod_redis.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"pod","keyword":"redis"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide pod | grep redis", "params": {"kind": "pod", "keyword": "redis"}} +default redis-747ffc844f-f9ghd 0/1 Pending 0 6m44s app=redis,pod-template-hash=747ffc844f diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_get_by_name_PersistentVolumeClaim_redis-standard-pvc_app-24b_2.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_get_by_name_PersistentVolumeClaim_redis-standard-pvc_app-24b_2.txt new file mode 100644 index 00000000000..9158cabd006 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_get_by_name_PersistentVolumeClaim_redis-standard-pvc_app-24b_2.txt @@ -0,0 +1,4 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_get_by_name","match_params":{"kind":"PersistentVolumeClaim","name":"redis-standard-pvc","namespace":"app-24b"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get --show-labels -o wide PersistentVolumeClaim redis-standard-pvc -n app-24b", "params": {"kind": "PersistentVolumeClaim", "name": "redis-standard-pvc", "namespace": "app-24b"}} +NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS VOLUMEATTRIBUTESCLASS AGE VOLUMEMODE LABELS +redis-standard-pvc Pending standard-v2 6m58s Filesystem diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_get_by_name_persistentvolumeclaim_redis-standard-pvc_app-24b.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_get_by_name_persistentvolumeclaim_redis-standard-pvc_app-24b.txt new file mode 100644 index 00000000000..76627934ba8 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/kubectl_get_by_name_persistentvolumeclaim_redis-standard-pvc_app-24b.txt @@ -0,0 +1,4 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_get_by_name","match_params":{"kind":"persistentvolumeclaim","name":"redis-standard-pvc","namespace":"app-24b"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get --show-labels -o wide persistentvolumeclaim redis-standard-pvc -n app-24b", "params": {"kind": "persistentvolumeclaim", "name": "redis-standard-pvc", "namespace": "default"}} +NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS VOLUMEATTRIBUTESCLASS AGE VOLUMEMODE LABELS +redis-standard-pvc Pending standard-v2 12m Filesystem diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/test_case.yaml new file mode 100644 index 00000000000..c760e1afcee --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/24b_misconfigured_pvc_detailed/test_case.yaml @@ -0,0 +1,18 @@ +# similar to eval 80 - not sure we need both +user_prompt: "What is the issue with redis?" +expected_output: + - The PersistentVolumeClaim (PVC) redis-standard-pvc cannot bind because the StorageClass "standard-v2" does not exist + - The Redis pod is stuck in Pending state because the PVC is unbound + - To fix this issue, either create the missing StorageClass "standard-v2" or update the PVC to use an existing StorageClass +tags: + - hard + - kubernetes +before_test: | + kubectl create namespace app-24b || true + kubectl apply -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/pvc-misconfiguration/redis-deployment.yaml -n app-24b +after_test: | + kubectl delete -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/pvc-misconfiguration/redis-deployment.yaml -n app-24b + kubectl delete namespace app-24b --ignore-not-found --wait=false || true + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/25_misconfigured_ingress_class/ingress_with_class.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/25_misconfigured_ingress_class/ingress_with_class.yaml new file mode 100644 index 00000000000..31ab59e1509 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/25_misconfigured_ingress_class/ingress_with_class.yaml @@ -0,0 +1,57 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: app-25 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: web-server + namespace: app-25 +spec: + replicas: 1 + selector: + matchLabels: + app: web-server + template: + metadata: + labels: + app: web-server + spec: + containers: + - name: web-server + image: nginx + ports: + - containerPort: 80 +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: web-ingress + namespace: app-25 +spec: + ingressClassName: example-ingress-class + rules: + - host: app.example.com + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: web-service + port: + number: 80 +--- +apiVersion: v1 +kind: Service +metadata: + name: web-service + namespace: app-25 +spec: + selector: + app: web-server + ports: + - protocol: TCP + port: 80 + targetPort: 80 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/25_misconfigured_ingress_class/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/25_misconfigured_ingress_class/test_case.yaml new file mode 100644 index 00000000000..390afae986e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/25_misconfigured_ingress_class/test_case.yaml @@ -0,0 +1,14 @@ +user_prompt: "Other services from outside the K8s cluster are unable to reach app.example.com, why?" +tags: + - chain-of-causation + - network + - kubernetes + - hard +expected_output: + - The reason should be related to the ingress class + - It should clearly state that example-ingress-class does not exist - saying it just might not exist is not good enough. +before_test: kubectl apply -f ./ingress_with_class.yaml +after_test: kubectl delete -f ./ingress_with_class.yaml + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/25_misconfigured_ingress_class/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/25_misconfigured_ingress_class/toolsets.yaml new file mode 100644 index 00000000000..2aa31278c61 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/25_misconfigured_ingress_class/toolsets.yaml @@ -0,0 +1,3 @@ +toolsets: + runbook: + enabled: false diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/generate_logs.py new file mode 100644 index 00000000000..7f4ced2d1a4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/generate_logs.py @@ -0,0 +1,47 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import time +import random +from datetime import datetime + +# Generate checkout page logs with render times +for i in range(50): + timestamp = datetime.utcnow().strftime("%Y-%m-%dT%H:%M:%S.%f")[:-3] + "Z" + render_time = 7 + random.uniform(0, 2) # 7-9 seconds + + print(f"[{timestamp}] INFO:app:Received request for checkout page.", flush=True) + print( + f"[{timestamp}] INFO:app:Connecting to promotions database to see if we should try to upsell user", + flush=True, + ) + print( + f"[{timestamp}] INFO:app:Connecting to database at promotions.example.com", + flush=True, + ) + print( + f"[{timestamp}] INFO:app:Fetching data using stored procedure: sp_CheckUserPromotions", + flush=True, + ) + time.sleep(0.1) + print( + f"[{timestamp}] INFO:app:Database call completed in {render_time:.2f} seconds.", + flush=True, + ) + print(f"[{timestamp}] INFO:app:Promotions result: True", flush=True) + print( + f"[{timestamp}] INFO:app:Page rendered in {render_time:.2f} seconds.", + flush=True, + ) + print( + f'[{timestamp}] INFO: 127.0.0.1:{random.randint(30000, 60000)} - "GET /checkout HTTP/1.1" 200 OK', + flush=True, + ) + time.sleep(1) + +# Keep running +while True: + time.sleep(60) diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/manifest.yaml new file mode 100644 index 00000000000..11167875aa9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/manifest.yaml @@ -0,0 +1,29 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: app-26 +--- +apiVersion: v1 +kind: Pod +metadata: + name: ocean-breeze + namespace: app-26 + labels: + app: checkout-service +spec: + containers: + - name: web + image: python:3.9-slim + command: ["python", "/scripts/generate_logs.py"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + volumes: + - name: script-volume + secret: + secretName: ocean-breeze-logs-script + defaultMode: 0755 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/mocks/response.txt new file mode 100644 index 00000000000..fdf0f9f1308 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/mocks/response.txt @@ -0,0 +1,8 @@ +Checkout page render times for ocean-breeze pod in app-26 namespace: + + • Fastest: 7.07s + • Slowest: 8.97s + • Most requests: 7.1–8.9s range + • Average: ~7.7s + +Render time is dominated by promotions database call, which matches page render time exactly. No errors in logs. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/test_case.yaml new file mode 100644 index 00000000000..de595e205dd --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/26_page_render_times/test_case.yaml @@ -0,0 +1,30 @@ +user_prompt: "Fetch all logs for ocean-breeze pod in app-26 namespace and summarize render times for checkout page?" +expected_output: + - "Page render times for the checkout page range from about 7 to 9 seconds" + +before_test: | + # Create namespace + kubectl create namespace app-26 || true + # Create secret with the logs script + kubectl create secret generic ocean-breeze-logs-script \ + --from-file=generate_logs.py=./generate_logs.py \ + -n app-26 --dry-run=client -o yaml | kubectl apply -f - + # Deploy the application + kubectl apply -f ./manifest.yaml + kubectl wait --for=condition=Ready pod/ocean-breeze -n app-26 --timeout=60s + # Let it generate some logs + sleep 30 + +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret ocean-breeze-logs-script -n app-26 --ignore-not-found + kubectl delete namespace app-26 --ignore-not-found --wait=false + +tags: + - logs + - kubernetes + - medium + - numerical + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/generate_logs.py new file mode 100644 index 00000000000..af8942020c6 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/generate_logs.py @@ -0,0 +1,69 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import time +import random +import sys +from datetime import datetime + + +def generate_web_logs(): + """Generate web container logs""" + for i in range(20): + timestamp = datetime.utcnow().strftime("%Y-%m-%dT%H:%M:%S.%f")[:-3] + "Z" + + print( + f"[{timestamp}] [web container] Starting API server on port 8080", + flush=True, + ) + print(f"[{timestamp}] [web container] Processing API requests...", flush=True) + print( + f"[{timestamp}] [web container] GET /api/users - 200 OK - {random.randint(10, 50)}ms", + flush=True, + ) + print( + f"[{timestamp}] [web container] POST /api/orders - 201 Created - {random.randint(50, 150)}ms", + flush=True, + ) + time.sleep(2) + + # Keep running + while True: + time.sleep(60) + + +def generate_sidecar_logs(): + """Generate sidecar container logs""" + for i in range(20): + timestamp = datetime.utcnow().strftime("%Y-%m-%dT%H:%M:%S.%f")[:-3] + "Z" + + print(f"[{timestamp}] [sidecar container] Collecting metrics...", flush=True) + print( + f"[{timestamp}] [sidecar container] CPU usage: {random.randint(10, 30)}%", + flush=True, + ) + print( + f"[{timestamp}] [sidecar container] Memory usage: {random.randint(100, 200)}MB", + flush=True, + ) + print( + f"[{timestamp}] [sidecar container] Active connections: {random.randint(5, 50)}", + flush=True, + ) + time.sleep(3) + + # Keep running + while True: + time.sleep(60) + + +if __name__ == "__main__": + container = sys.argv[1] if len(sys.argv) > 1 else "web" + + if container == "web": + generate_web_logs() + elif container == "sidecar": + generate_sidecar_logs() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/manifest.yaml new file mode 100644 index 00000000000..5f1eb0f8f20 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/manifest.yaml @@ -0,0 +1,39 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: app-27a +--- +apiVersion: v1 +kind: Pod +metadata: + name: llama + namespace: app-27a + labels: + app: multi-container-app +spec: + containers: + - name: web + image: python:3.9-slim + command: ["python", "/scripts/generate_logs.py", "web"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + - name: sidecar + image: python:3.9-slim + command: ["python", "/scripts/generate_logs.py", "sidecar"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + volumes: + - name: script-volume + secret: + secretName: llama-logs-script + defaultMode: 0755 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/mocks/response.txt new file mode 100644 index 00000000000..edacaacca10 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/mocks/response.txt @@ -0,0 +1,16 @@ +Logs from both containers in llama pod (namespace: app-27a): + +web container: + + • API server starts on port 8080 + • Handles GET /api/users (200 OK) + • Handles POST /api/orders (201 Created) + • Repeats API processing, no errors shown + +sidecar container: + + • Collects metrics regularly + • Reports CPU usage (10–29%), memory usage (112–193MB), active connections (10–45) + • No errors or warnings + +Both containers are running normally, no issues in logs. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/test_case.yaml new file mode 100644 index 00000000000..7aacb41cefd --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27a_multi_container_logs/test_case.yaml @@ -0,0 +1,34 @@ +user_prompt: "Fetch logs from both containers in the llama pod in app-27a namespace?" +expected_output: | + logs mention all of the following + - "web container" + - "API requests" + - "sidecar container" + - "metrics" + - "CPU usage" + +before_test: | + # Create namespace + kubectl create namespace app-27a || true + # Create secret with the logs script + kubectl create secret generic llama-logs-script \ + --from-file=generate_logs.py=./generate_logs.py \ + -n app-27a --dry-run=client -o yaml | kubectl apply -f - + # Deploy the multi-container pod + kubectl apply -f ./manifest.yaml + kubectl wait --for=condition=Ready pod/llama -n app-27a --timeout=60s + # Let it generate some logs + sleep 10 + +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret llama-logs-script -n app-27a --ignore-not-found + kubectl delete namespace app-27a --ignore-not-found --wait=false + +tags: + - logs + - kubernetes + - medium + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/generate_logs.py new file mode 100644 index 00000000000..af8942020c6 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/generate_logs.py @@ -0,0 +1,69 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import time +import random +import sys +from datetime import datetime + + +def generate_web_logs(): + """Generate web container logs""" + for i in range(20): + timestamp = datetime.utcnow().strftime("%Y-%m-%dT%H:%M:%S.%f")[:-3] + "Z" + + print( + f"[{timestamp}] [web container] Starting API server on port 8080", + flush=True, + ) + print(f"[{timestamp}] [web container] Processing API requests...", flush=True) + print( + f"[{timestamp}] [web container] GET /api/users - 200 OK - {random.randint(10, 50)}ms", + flush=True, + ) + print( + f"[{timestamp}] [web container] POST /api/orders - 201 Created - {random.randint(50, 150)}ms", + flush=True, + ) + time.sleep(2) + + # Keep running + while True: + time.sleep(60) + + +def generate_sidecar_logs(): + """Generate sidecar container logs""" + for i in range(20): + timestamp = datetime.utcnow().strftime("%Y-%m-%dT%H:%M:%S.%f")[:-3] + "Z" + + print(f"[{timestamp}] [sidecar container] Collecting metrics...", flush=True) + print( + f"[{timestamp}] [sidecar container] CPU usage: {random.randint(10, 30)}%", + flush=True, + ) + print( + f"[{timestamp}] [sidecar container] Memory usage: {random.randint(100, 200)}MB", + flush=True, + ) + print( + f"[{timestamp}] [sidecar container] Active connections: {random.randint(5, 50)}", + flush=True, + ) + time.sleep(3) + + # Keep running + while True: + time.sleep(60) + + +if __name__ == "__main__": + container = sys.argv[1] if len(sys.argv) > 1 else "web" + + if container == "web": + generate_web_logs() + elif container == "sidecar": + generate_sidecar_logs() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/manifest.yaml new file mode 100644 index 00000000000..0724928aa3a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/manifest.yaml @@ -0,0 +1,39 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: app-27b +--- +apiVersion: v1 +kind: Pod +metadata: + name: arctic-fox + namespace: app-27b + labels: + app: multi-container-app +spec: + containers: + - name: web + image: python:3.9-slim + command: ["python", "/scripts/generate_logs.py", "web"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + - name: sidecar + image: python:3.9-slim + command: ["python", "/scripts/generate_logs.py", "sidecar"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + volumes: + - name: script-volume + secret: + secretName: arctic-fox-logs-script + defaultMode: 0755 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/mocks/response.txt new file mode 100644 index 00000000000..7d980dd953a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/mocks/response.txt @@ -0,0 +1,17 @@ +Logs from arctic-fox pod in app-27b namespace: + +web container: + + • Starting API server on port 8080 + • Processing API requests... + • GET /api/users - 200 OK + • POST /api/orders - 201 Created + +sidecar container: + + • Collecting metrics... + • CPU usage: 12–24% + • Memory usage: 132–183MB + • Active connections: 9–48 + +No errors or warnings found. Pod is running and serving API requests normally. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/test_case.yaml new file mode 100644 index 00000000000..0627477b967 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/27b_multi_container_logs/test_case.yaml @@ -0,0 +1,34 @@ +user_prompt: "Fetch and list all logs from arctic-fox pod in app-27b namespace?" +expected_output: | + logs mention all of the following + - "web container" + - "API requests" + - "sidecar container" + - "metrics" + - "CPU usage" + +before_test: | + # Create namespace + kubectl create namespace app-27b || true + # Create secret with the logs script + kubectl create secret generic arctic-fox-logs-script \ + --from-file=generate_logs.py=./generate_logs.py \ + -n app-27b --dry-run=client -o yaml | kubectl apply -f - + # Deploy the multi-container pod + kubectl apply -f ./manifest.yaml + kubectl wait --for=condition=Ready pod/arctic-fox -n app-27b --timeout=60s + # Let it generate some logs + sleep 10 + +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret arctic-fox-logs-script -n app-27b --ignore-not-found + kubectl delete namespace app-27b --ignore-not-found --wait=false + +tags: + - logs + - kubernetes + - medium + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/00_system.md b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/00_system.md new file mode 100644 index 00000000000..a8cda664e12 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/00_system.md @@ -0,0 +1,105 @@ +You are a tool-calling AI assist provided with common devops and IT tools that you can use to troubleshoot problems or answer questions. +Whenever possible you MUST first use tools to investigate then answer the question. +Do not say 'based on the tool output' or explicitly refer to tools at all. +If you output an answer and then realize you need to call more tools or there are possible next steps, you may do so by calling tools at that point in time. +If you have a good and concrete suggestion for how the user can fix something, tell them even if not asked explicitly + +Use conversation history to maintain continuity when appropriate, ensuring efficiency in your responses. + + +In general: +* when it can provide extra information, first run as many tools as you need to gather more information, then respond. +* if possible, do so repeatedly with different tool calls each time to gather more information. +* do not stop investigating until you are at the final root cause you are able to find. +* use the "five whys" methodology to find the root cause. +* for example, if you found a problem in microservice A that is due to an error in microservice B, look at microservice B too and find the error in that. +* if you cannot find the resource/application that the user referred to, assume they made a typo or included/excluded characters like - and. +* in this case, try to find substrings or search for the correct spellings +* always provide detailed information like exact resource names, versions, labels, etc +* even if you found the root cause, keep investigating to find other possible root causes and to gather data for the answer like exact names +* when giving an answer don't say root cause but "possible root causes" and be clear to distinguish between what you know for certain and what is a possible explanation +* if a runbook url is present as well as tool that can fetch it, you MUST fetch the runbook before beginning your investigation and follow the steps written in it. +* if you don't know, say that the analysis was inconclusive. +* if there are multiple possible causes list them in a numbered list. +* there will often be errors in the data that are not relevant or that do not have an impact - ignore them in your conclusion if you were not able to tie them to an actual error. + +If investigating Kubernetes problems: +* run as many kubectl commands as you need to gather more information, then respond. +* if possible, do so repeatedly on different Kubernetes objects. +* for example, for deployments first run kubectl on the deployment then a replicaset inside it, then a pod inside that. +* if the user wants to find a specific term in a pod's logs, use kubectl_logs_grep +* use both kubectl_previous_logs and kubectl_logs when reading logs. Treat the output of both as a single unified logs stream +* when investigating a pod that crashed or application errors, always run kubectl_describe and fetch the logs +* do not give an answer like "The pod is pending" as that doesn't state why the pod is pending and how to fix it. +* do not give an answer like "Pod's node affinity/selector doesn't match any available nodes" because that doesn't include data on WHICH label doesn't match +* if investigating an issue on many pods, there is no need to check more than 3 individual pods in the same deployment. pick up to a representative 3 from each deployment if relevant +* if the user says something isn't working, ALWAYS: +** use kubectl_describe on the owner workload + individual pods and look for any transient issues they might have been referring to +** check the application aspects through the logs (kubectl_logs and kubectl_previous_logs) and other relevant tools +** look for misconfigured ingresses/services etc + +Handling Permission Errors +If during the investigation you encounter a permissions error (e.g., `Error from server (Forbidden):`), **ALWAYS** follow these steps to ensure a thorough resolution: +1.**Analyze the Error Message** + - Identify the missing resource, API group, and verbs from the error details. + - Never stop at reporting the error + - Proceed with an in-depth investigation. +2.**Locate the Relevant Helm Release** +Check if Helm tools are available, if they are available always use Helm commands to help user find the release associated with the Holmes pod: + - Run `helm list -A | grep holmes` to identify the release name. + - Run `helm get values -n ` to retrieve details such as `customClusterRoleRules` and `clusterName`. +If Helm tools are unavailable, skip this step. +3. **Check for Missing Permissions** + - Check for a cluster role with -holmes-cluster-role in its name and a service account with -holmes-service-account in its name to troubleshoot missing permissions where release name is the name you found earlier if helm tools are available (If the exact cluster role or service account isn't found, search for similar or related names, including variations or prefixes/suffixes that might be used in the cluster.) + - Focus on identifying absent permissions that align with the error message. +4. **Update the Configuration** +If necessary permissions are absent both in customClusterRoleRules and the cluster role mentioned previously, ALWAYS advise the user to update their configuration by modifying the `generated_values.yaml` file as follows: +``` +holmes: + customClusterRoleRules: + - apiGroups: [""] + resources: ["", ""] + verbs: ["", "", ""] +``` +After that instruct them to apply the changes with:: +``` + helm upgrade robusta/robusta --values=generated_values.yaml --set clusterName= +``` +5. **Fallback Guidelines** +- If you cannot determine the release or cluster name, use placeholders `` and ``. +- While you should attempt to retrieve details using Helm commands, do **not** direct the user to execute these commands themselves. +Reminder: +* Always adhere to this process, even if Helm tools are unavailable. +* Strive for thoroughness and precision, ensuring the issue is fully addressed. + +Special cases and how to reply: +* if you are unable to investigate something properly because you do not have tools that let you access the right data, explicitly tell the user that you are missing an integration to access XYZ which you would need to investigate. you should give an answer similar to "I don't have access to
. Please add a Holmes integration for so that I can investigate this." +* make sure you differentiate between "I investigated and found error X caused this problem" and "I tried to investigate but while investigating I got some errors that prevented me from completing the investigation." +* as a special case of that, If a tool generates a permission error when attempting to run it, follow the Handling Permission Errors section for detailed guidance. +* that is different than - for example - fetching a pod's logs and seeing that the pod itself has permission errors. in that case, you explain say that permission errors are the cause of the problem and give details +* Issues are a subset of findings. When asked about an issue or a finding and you have an id, use the tool `fetch_finding_by_id`. +* For any question, try to make the answer specific to the user's cluster. +** For example, if asked to port forward, find out the app or pod port (kubectl decribe) and provide a port forward command specific to the user's question + + + +Style guide: +* Reply with terse output. +* Be painfully concise. +* Leave out "the" and filler words when possible. +* Be terse but not at the expense of leaving out important data like the root cause and how to fix. + +Examples: + +User: Why did the webserver-example app crash? +(Call tool kubectl_find_resource kind=pod keyword=webserver`) +(Call tool kubectl_previous_logs namespace=demos pod=webserver-example-1299492-d9g9d # this pod name was found from the previous tool call) + +AI: `webserver-example-1299492-d9g9d` crashed due to email validation error during HTTP request for /api/create_user +Relevant logs: + +``` +2021-01-01T00:00:00.000Z [ERROR] Missing required field 'email' in request body +``` + +Validation error led to unhandled Java exception causing a crash. diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/01_assistant.md b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/01_assistant.md new file mode 100644 index 00000000000..7af1e3acfe8 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/01_assistant.md @@ -0,0 +1,12 @@ +I have the following alert: Source: `non-prod.eu-west1.mgmt` + +Matching criteria: `cluster: non-prod.eu-west1.mgmt, labels: alternate=TestAlertDevops, team-devops` +Time interval: `12 hours` starting at `2025-05-07 12:31` + +``` + notification | severity | Fired | Resolved +--------------------------------------------------------- + TestAlertDevops | LOW | 2 | 0 +``` + +See thread for individual alerts diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/02_assistant.md b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/02_assistant.md new file mode 100644 index 00000000000..03c2435c0b4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/02_assistant.md @@ -0,0 +1,19 @@ +`Prometheus alert firing` Low + +[Test Alert Devops](https://app.robusta.dev/alerts?id=1234) + +Source: `non-prod.eu-west1.mgmt` + +Alerts: Insignificant alert for devops testing purposes + +> **Alert labels** +> - alertname `TestAlertDevops` +> - context `non-prod.eu-west1.mgmt` +> - deployment `catalogue` +> - env `mgmt-non-prod` +> - envType `non-prod` +> - namespace `sock-shop` +> - prometheus `prometheus/prometheus-kube-prometheus-prometheus` +> - region `eu-west-1` +> - severity `warning` +> - team `devops` diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/03_assistant.md b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/03_assistant.md new file mode 100644 index 00000000000..03c2435c0b4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/conversation_history/03_assistant.md @@ -0,0 +1,19 @@ +`Prometheus alert firing` Low + +[Test Alert Devops](https://app.robusta.dev/alerts?id=1234) + +Source: `non-prod.eu-west1.mgmt` + +Alerts: Insignificant alert for devops testing purposes + +> **Alert labels** +> - alertname `TestAlertDevops` +> - context `non-prod.eu-west1.mgmt` +> - deployment `catalogue` +> - env `mgmt-non-prod` +> - envType `non-prod` +> - namespace `sock-shop` +> - prometheus `prometheus/prometheus-kube-prometheus-prometheus` +> - region `eu-west-1` +> - severity `warning` +> - team `devops` diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/fetch_pod_logs.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/fetch_pod_logs.txt new file mode 100644 index 00000000000..c067596a87e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/fetch_pod_logs.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"namespace":"sock-shop","pod_name":"catalogue-f7687cb4-bjxf2","start_time":"2025-05-07T06:31:00Z","end_time":"2025-05-07T12:31:00Z"}} +{"schema_version": "robusta:v1.0.0", "status": "no_data", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "sock-shop", "pod_name": "catalogue-f7687cb4-bjxf2", "start_time": "2025-05-07T06:31:00Z", "end_time": "2025-05-07T12:31:00Z", "filter": null, "limit": null}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/fetch_pod_logs_absolute.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/fetch_pod_logs_absolute.txt new file mode 100644 index 00000000000..405e20cbc7e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/fetch_pod_logs_absolute.txt @@ -0,0 +1,8500 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"catalogue-f7687cb4-bjxf2","namespace":"sock-shop","start_time":"2025-05-22T04:06:36Z","end_time":"2025-05-22T10:06:36Z"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "sock-shop", "pod_name": "catalogue-f7687cb4-bjxf2", "start_time": "2025-05-22T04:06:36Z", "end_time": "2025-05-22T10:06:36Z", "filter": null, "limit": null}} +images: "./images/" +Abs(images): "/images" () +Getwd: "/" () +ls: ["images/WAT.jpg" "images/WAT2.jpg" "images/bit_of_leg_1.jpeg" "images/bit_of_leg_2.jpeg" "images/catsocks.jpg" "images/catsocks2.jpg" "images/classic.jpg" "images/classic2.jpg" "images/colourful_socks.jpg" "images/cross_1.jpeg" "images/cross_2.jpeg" "images/holy_1.jpeg" "images/holy_2.jpeg" "images/holy_3.jpeg" "images/puma_1.jpeg" "images/puma_2.jpeg" "images/rugby_socks.jpg" "images/sock.jpeg" "images/youtube_1.jpeg" "images/youtube_2.jpeg"] +ts=2025-05-22T06:30:34Z caller=main.go:108 Error="Unable to connect to Database" DSN=catalogue_user:default_password@tcp(catalogue-db:3306)/socksdb +ts=2025-05-22T06:30:34Z caller=main.go:136 transport=HTTP port=80 +ts=2025-05-22T06:33:20Z caller=logging.go:85 method=Health result=2 took=3.190824ms +ts=2025-05-22T06:33:23Z caller=logging.go:85 method=Health result=2 took=44.539µs +ts=2025-05-22T06:33:26Z caller=logging.go:85 method=Health result=2 took=56.159µs +ts=2025-05-22T06:33:29Z caller=logging.go:85 method=Health result=2 took=32.459µs +ts=2025-05-22T06:33:32Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T06:33:35Z caller=logging.go:85 method=Health result=2 took=44.039µs +ts=2025-05-22T06:33:38Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T06:33:41Z caller=logging.go:85 method=Health result=2 took=44.749µs +ts=2025-05-22T06:33:44Z caller=logging.go:85 method=Health result=2 took=41.049µs +ts=2025-05-22T06:33:47Z caller=logging.go:85 method=Health result=2 took=41.289µs +ts=2025-05-22T06:33:50Z caller=logging.go:85 method=Health result=2 took=31.169µs +ts=2025-05-22T06:33:53Z caller=logging.go:85 method=Health result=2 took=39.149µs +ts=2025-05-22T06:33:56Z caller=logging.go:85 method=Health result=2 took=53.198µs +ts=2025-05-22T06:33:59Z caller=logging.go:85 method=Health result=2 took=58.838µs +ts=2025-05-22T06:34:02Z caller=logging.go:85 method=Health result=2 took=46.799µs +ts=2025-05-22T06:34:05Z caller=logging.go:85 method=Health result=2 took=41.039µs +ts=2025-05-22T06:34:08Z caller=logging.go:85 method=Health result=2 took=42.049µs +ts=2025-05-22T06:34:11Z caller=logging.go:85 method=Health result=2 took=44.729µs +ts=2025-05-22T06:34:14Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T06:34:17Z caller=logging.go:85 method=Health result=2 took=29.749µs +ts=2025-05-22T06:34:20Z caller=logging.go:85 method=Health result=2 took=40.289µs +ts=2025-05-22T06:34:23Z caller=logging.go:85 method=Health result=2 took=44.899µs +ts=2025-05-22T06:34:26Z caller=logging.go:85 method=Health result=2 took=33.479µs +ts=2025-05-22T06:34:29Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T06:34:32Z caller=logging.go:85 method=Health result=2 took=42.299µs +ts=2025-05-22T06:34:35Z caller=logging.go:85 method=Health result=2 took=38.279µs +ts=2025-05-22T06:34:38Z caller=logging.go:85 method=Health result=2 took=31.049µs +ts=2025-05-22T06:34:41Z caller=logging.go:85 method=Health result=2 took=30.729µs +ts=2025-05-22T06:34:44Z caller=logging.go:85 method=Health result=2 took=50.399µs +ts=2025-05-22T06:34:47Z caller=logging.go:85 method=Health result=2 took=44.499µs +ts=2025-05-22T06:34:50Z caller=logging.go:85 method=Health result=2 took=51.479µs +ts=2025-05-22T06:34:53Z caller=logging.go:85 method=Health result=2 took=28.599µs +ts=2025-05-22T06:34:56Z caller=logging.go:85 method=Health result=2 took=36.539µs +ts=2025-05-22T06:34:59Z caller=logging.go:85 method=Health result=2 took=31.07µs +ts=2025-05-22T06:35:02Z caller=logging.go:85 method=Health result=2 took=45.848µs +ts=2025-05-22T06:35:05Z caller=logging.go:85 method=Health result=2 took=32.379µs +ts=2025-05-22T06:35:08Z caller=logging.go:85 method=Health result=2 took=41.859µs +ts=2025-05-22T06:35:11Z caller=logging.go:85 method=Health result=2 took=44.499µs +ts=2025-05-22T06:35:14Z caller=logging.go:85 method=Health result=2 took=47.578µs +ts=2025-05-22T06:35:17Z caller=logging.go:85 method=Health result=2 took=40.649µs +ts=2025-05-22T06:35:20Z caller=logging.go:85 method=Health result=2 took=53.179µs +ts=2025-05-22T06:35:20Z caller=logging.go:85 method=Health result=2 took=64.199µs +ts=2025-05-22T06:35:23Z caller=logging.go:85 method=Health result=2 took=57.488µs +ts=2025-05-22T06:35:23Z caller=logging.go:85 method=Health result=2 took=9.32µs +ts=2025-05-22T06:35:26Z caller=logging.go:85 method=Health result=2 took=66.119µs +ts=2025-05-22T06:35:26Z caller=logging.go:85 method=Health result=2 took=58.599µs +ts=2025-05-22T06:35:29Z caller=logging.go:85 method=Health result=2 took=43.129µs +ts=2025-05-22T06:35:29Z caller=logging.go:85 method=Health result=2 took=20.01µs +ts=2025-05-22T06:35:32Z caller=logging.go:85 method=Health result=2 took=36.82µs +ts=2025-05-22T06:35:32Z caller=logging.go:85 method=Health result=2 took=66.428µs +ts=2025-05-22T06:35:35Z caller=logging.go:85 method=Health result=2 took=44.139µs +ts=2025-05-22T06:35:35Z caller=logging.go:85 method=Health result=2 took=47.589µs +ts=2025-05-22T06:35:38Z caller=logging.go:85 method=Health result=2 took=47.779µs +ts=2025-05-22T06:35:38Z caller=logging.go:85 method=Health result=2 took=52.119µs +ts=2025-05-22T06:35:41Z caller=logging.go:85 method=Health result=2 took=39.939µs +ts=2025-05-22T06:35:41Z caller=logging.go:85 method=Health result=2 took=51.039µs +ts=2025-05-22T06:35:44Z caller=logging.go:85 method=Health result=2 took=40.659µs +ts=2025-05-22T06:35:44Z caller=logging.go:85 method=Health result=2 took=43.909µs +ts=2025-05-22T06:35:47Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T06:35:47Z caller=logging.go:85 method=Health result=2 took=47.189µs +ts=2025-05-22T06:35:50Z caller=logging.go:85 method=Health result=2 took=57.428µs +ts=2025-05-22T06:35:50Z caller=logging.go:85 method=Health result=2 took=25.48µs +ts=2025-05-22T06:35:53Z caller=logging.go:85 method=Health result=2 took=37.439µs +ts=2025-05-22T06:35:53Z caller=logging.go:85 method=Health result=2 took=2.115409ms +ts=2025-05-22T06:35:56Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T06:35:56Z caller=logging.go:85 method=Health result=2 took=67.769µs +ts=2025-05-22T06:35:59Z caller=logging.go:85 method=Health result=2 took=31.409µs +ts=2025-05-22T06:35:59Z caller=logging.go:85 method=Health result=2 took=38.389µs +ts=2025-05-22T06:36:02Z caller=logging.go:85 method=Health result=2 took=36.939µs +ts=2025-05-22T06:36:02Z caller=logging.go:85 method=Health result=2 took=47.589µs +ts=2025-05-22T06:36:05Z caller=logging.go:85 method=Health result=2 took=37.809µs +ts=2025-05-22T06:36:05Z caller=logging.go:85 method=Health result=2 took=84.508µs +ts=2025-05-22T06:36:08Z caller=logging.go:85 method=Health result=2 took=27.249µs +ts=2025-05-22T06:36:08Z caller=logging.go:85 method=Health result=2 took=14.06µs +ts=2025-05-22T06:36:11Z caller=logging.go:85 method=Health result=2 took=32.11µs +ts=2025-05-22T06:36:11Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T06:36:14Z caller=logging.go:85 method=Health result=2 took=56.029µs +ts=2025-05-22T06:36:14Z caller=logging.go:85 method=Health result=2 took=91.238µs +ts=2025-05-22T06:36:17Z caller=logging.go:85 method=Health result=2 took=27.419µs +ts=2025-05-22T06:36:17Z caller=logging.go:85 method=Health result=2 took=18.799µs +ts=2025-05-22T06:36:20Z caller=logging.go:85 method=Health result=2 took=33.469µs +ts=2025-05-22T06:36:20Z caller=logging.go:85 method=Health result=2 took=24.19µs +ts=2025-05-22T06:36:23Z caller=logging.go:85 method=Health result=2 took=18.47µs +ts=2025-05-22T06:36:23Z caller=logging.go:85 method=Health result=2 took=30.1µs +ts=2025-05-22T06:36:26Z caller=logging.go:85 method=Health result=2 took=35.199µs +ts=2025-05-22T06:36:26Z caller=logging.go:85 method=Health result=2 took=49.499µs +ts=2025-05-22T06:36:29Z caller=logging.go:85 method=Health result=2 took=50.289µs +ts=2025-05-22T06:36:29Z caller=logging.go:85 method=Health result=2 took=50.139µs +ts=2025-05-22T06:36:32Z caller=logging.go:85 method=Health result=2 took=49.799µs +ts=2025-05-22T06:36:32Z caller=logging.go:85 method=Health result=2 took=49.299µs +ts=2025-05-22T06:36:35Z caller=logging.go:85 method=Health result=2 took=34.09µs +ts=2025-05-22T06:36:35Z caller=logging.go:85 method=Health result=2 took=36.769µs +ts=2025-05-22T06:36:38Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T06:36:38Z caller=logging.go:85 method=Health result=2 took=56.739µs +ts=2025-05-22T06:36:41Z caller=logging.go:85 method=Health result=2 took=29.829µs +ts=2025-05-22T06:36:41Z caller=logging.go:85 method=Health result=2 took=29.749µs +ts=2025-05-22T06:36:44Z caller=logging.go:85 method=Health result=2 took=40.389µs +ts=2025-05-22T06:36:44Z caller=logging.go:85 method=Health result=2 took=27.32µs +ts=2025-05-22T06:36:47Z caller=logging.go:85 method=Health result=2 took=41.839µs +ts=2025-05-22T06:36:47Z caller=logging.go:85 method=Health result=2 took=43.469µs +ts=2025-05-22T06:36:50Z caller=logging.go:85 method=Health result=2 took=27.359µs +ts=2025-05-22T06:36:50Z caller=logging.go:85 method=Health result=2 took=39.349µs +ts=2025-05-22T06:36:53Z caller=logging.go:85 method=Health result=2 took=39.559µs +ts=2025-05-22T06:36:53Z caller=logging.go:85 method=Health result=2 took=39.499µs +ts=2025-05-22T06:36:56Z caller=logging.go:85 method=Health result=2 took=36.069µs +ts=2025-05-22T06:36:56Z caller=logging.go:85 method=Health result=2 took=37.239µs +ts=2025-05-22T06:36:59Z caller=logging.go:85 method=Health result=2 took=30.52µs +ts=2025-05-22T06:36:59Z caller=logging.go:85 method=Health result=2 took=13.29µs +ts=2025-05-22T06:37:02Z caller=logging.go:85 method=Health result=2 took=35.949µs +ts=2025-05-22T06:37:02Z caller=logging.go:85 method=Health result=2 took=24.829µs +ts=2025-05-22T06:37:05Z caller=logging.go:85 method=Health result=2 took=36.659µs +ts=2025-05-22T06:37:05Z caller=logging.go:85 method=Health result=2 took=37.169µs +ts=2025-05-22T06:37:08Z caller=logging.go:85 method=Health result=2 took=35.729µs +ts=2025-05-22T06:37:08Z caller=logging.go:85 method=Health result=2 took=29.47µs +ts=2025-05-22T06:37:11Z caller=logging.go:85 method=Health result=2 took=41.809µs +ts=2025-05-22T06:37:11Z caller=logging.go:85 method=Health result=2 took=39.229µs +ts=2025-05-22T06:37:14Z caller=logging.go:85 method=Health result=2 took=37.249µs +ts=2025-05-22T06:37:14Z caller=logging.go:85 method=Health result=2 took=37.199µs +ts=2025-05-22T06:37:17Z caller=logging.go:85 method=Health result=2 took=45.719µs +ts=2025-05-22T06:37:17Z caller=logging.go:85 method=Health result=2 took=47.309µs +ts=2025-05-22T06:37:20Z caller=logging.go:85 method=Health result=2 took=32µs +ts=2025-05-22T06:37:20Z caller=logging.go:85 method=Health result=2 took=42.169µs +ts=2025-05-22T06:37:23Z caller=logging.go:85 method=Health result=2 took=39.879µs +ts=2025-05-22T06:37:23Z caller=logging.go:85 method=Health result=2 took=41.419µs +ts=2025-05-22T06:37:26Z caller=logging.go:85 method=Health result=2 took=46.758µs +ts=2025-05-22T06:37:26Z caller=logging.go:85 method=Health result=2 took=44.369µs +ts=2025-05-22T06:37:29Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T06:37:29Z caller=logging.go:85 method=Health result=2 took=42.839µs +ts=2025-05-22T06:37:32Z caller=logging.go:85 method=Health result=2 took=40.689µs +ts=2025-05-22T06:37:32Z caller=logging.go:85 method=Health result=2 took=49.949µs +ts=2025-05-22T06:37:35Z caller=logging.go:85 method=Health result=2 took=34.039µs +ts=2025-05-22T06:37:35Z caller=logging.go:85 method=Health result=2 took=34.969µs +ts=2025-05-22T06:37:38Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T06:37:38Z caller=logging.go:85 method=Health result=2 took=50.859µs +ts=2025-05-22T06:37:41Z caller=logging.go:85 method=Health result=2 took=43.178µs +ts=2025-05-22T06:37:41Z caller=logging.go:85 method=Health result=2 took=30.679µs +ts=2025-05-22T06:37:44Z caller=logging.go:85 method=Health result=2 took=40.499µs +ts=2025-05-22T06:37:44Z caller=logging.go:85 method=Health result=2 took=46.649µs +ts=2025-05-22T06:37:47Z caller=logging.go:85 method=Health result=2 took=30.639µs +ts=2025-05-22T06:37:47Z caller=logging.go:85 method=Health result=2 took=30.569µs +ts=2025-05-22T06:37:50Z caller=logging.go:85 method=Health result=2 took=30.209µs +ts=2025-05-22T06:37:50Z caller=logging.go:85 method=Health result=2 took=30.189µs +ts=2025-05-22T06:37:53Z caller=logging.go:85 method=Health result=2 took=38.609µs +ts=2025-05-22T06:37:53Z caller=logging.go:85 method=Health result=2 took=18.62µs +ts=2025-05-22T06:37:56Z caller=logging.go:85 method=Health result=2 took=51.769µs +ts=2025-05-22T06:37:56Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T06:37:59Z caller=logging.go:85 method=Health result=2 took=47.389µs +ts=2025-05-22T06:37:59Z caller=logging.go:85 method=Health result=2 took=48.969µs +ts=2025-05-22T06:38:02Z caller=logging.go:85 method=Health result=2 took=46.039µs +ts=2025-05-22T06:38:02Z caller=logging.go:85 method=Health result=2 took=34.979µs +ts=2025-05-22T06:38:05Z caller=logging.go:85 method=Health result=2 took=26.43µs +ts=2025-05-22T06:38:05Z caller=logging.go:85 method=Health result=2 took=38.659µs +ts=2025-05-22T06:38:08Z caller=logging.go:85 method=Health result=2 took=46.879µs +ts=2025-05-22T06:38:08Z caller=logging.go:85 method=Health result=2 took=51.659µs +ts=2025-05-22T06:38:11Z caller=logging.go:85 method=Health result=2 took=49.609µs +ts=2025-05-22T06:38:11Z caller=logging.go:85 method=Health result=2 took=46.439µs +ts=2025-05-22T06:38:14Z caller=logging.go:85 method=Health result=2 took=45.869µs +ts=2025-05-22T06:38:14Z caller=logging.go:85 method=Health result=2 took=48.169µs +ts=2025-05-22T06:38:17Z caller=logging.go:85 method=Health result=2 took=32.929µs +ts=2025-05-22T06:38:17Z caller=logging.go:85 method=Health result=2 took=32.939µs +ts=2025-05-22T06:38:20Z caller=logging.go:85 method=Health result=2 took=30.059µs +ts=2025-05-22T06:38:20Z caller=logging.go:85 method=Health result=2 took=31.129µs +ts=2025-05-22T06:38:23Z caller=logging.go:85 method=Health result=2 took=44.019µs +ts=2025-05-22T06:38:23Z caller=logging.go:85 method=Health result=2 took=26.439µs +ts=2025-05-22T06:38:26Z caller=logging.go:85 method=Health result=2 took=49.079µs +ts=2025-05-22T06:38:26Z caller=logging.go:85 method=Health result=2 took=51.999µs +ts=2025-05-22T06:38:29Z caller=logging.go:85 method=Health result=2 took=41.459µs +ts=2025-05-22T06:38:29Z caller=logging.go:85 method=Health result=2 took=48.418µs +ts=2025-05-22T06:38:32Z caller=logging.go:85 method=Health result=2 took=29.759µs +ts=2025-05-22T06:38:32Z caller=logging.go:85 method=Health result=2 took=28.7µs +ts=2025-05-22T06:38:35Z caller=logging.go:85 method=Health result=2 took=100.928µs +ts=2025-05-22T06:38:35Z caller=logging.go:85 method=Health result=2 took=100.998µs +ts=2025-05-22T06:38:38Z caller=logging.go:85 method=Health result=2 took=31.279µs +ts=2025-05-22T06:38:38Z caller=logging.go:85 method=Health result=2 took=35.25µs +ts=2025-05-22T06:38:41Z caller=logging.go:85 method=Health result=2 took=54.599µs +ts=2025-05-22T06:38:41Z caller=logging.go:85 method=Health result=2 took=48.449µs +ts=2025-05-22T06:38:44Z caller=logging.go:85 method=Health result=2 took=55.909µs +ts=2025-05-22T06:38:44Z caller=logging.go:85 method=Health result=2 took=45.049µs +ts=2025-05-22T06:38:47Z caller=logging.go:85 method=Health result=2 took=29.389µs +ts=2025-05-22T06:38:47Z caller=logging.go:85 method=Health result=2 took=44.789µs +ts=2025-05-22T06:38:50Z caller=logging.go:85 method=Health result=2 took=44.489µs +ts=2025-05-22T06:38:50Z caller=logging.go:85 method=Health result=2 took=31.59µs +ts=2025-05-22T06:38:53Z caller=logging.go:85 method=Health result=2 took=28.11µs +ts=2025-05-22T06:38:53Z caller=logging.go:85 method=Health result=2 took=28.24µs +ts=2025-05-22T06:38:56Z caller=logging.go:85 method=Health result=2 took=46.329µs +ts=2025-05-22T06:38:56Z caller=logging.go:85 method=Health result=2 took=32.899µs +ts=2025-05-22T06:38:59Z caller=logging.go:85 method=Health result=2 took=40.179µs +ts=2025-05-22T06:38:59Z caller=logging.go:85 method=Health result=2 took=49.118µs +ts=2025-05-22T06:39:02Z caller=logging.go:85 method=Health result=2 took=26.559µs +ts=2025-05-22T06:39:02Z caller=logging.go:85 method=Health result=2 took=73.179µs +ts=2025-05-22T06:39:05Z caller=logging.go:85 method=Health result=2 took=32.139µs +ts=2025-05-22T06:39:05Z caller=logging.go:85 method=Health result=2 took=53.159µs +ts=2025-05-22T06:39:08Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T06:39:08Z caller=logging.go:85 method=Health result=2 took=46.659µs +ts=2025-05-22T06:39:11Z caller=logging.go:85 method=Health result=2 took=29.289µs +ts=2025-05-22T06:39:11Z caller=logging.go:85 method=Health result=2 took=14.92µs +ts=2025-05-22T06:39:14Z caller=logging.go:85 method=Health result=2 took=29.449µs +ts=2025-05-22T06:39:14Z caller=logging.go:85 method=Health result=2 took=13.94µs +ts=2025-05-22T06:39:17Z caller=logging.go:85 method=Health result=2 took=43.689µs +ts=2025-05-22T06:39:17Z caller=logging.go:85 method=Health result=2 took=59.038µs +ts=2025-05-22T06:39:20Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T06:39:20Z caller=logging.go:85 method=Health result=2 took=10.11µs +ts=2025-05-22T06:39:23Z caller=logging.go:85 method=Health result=2 took=45.199µs +ts=2025-05-22T06:39:23Z caller=logging.go:85 method=Health result=2 took=36.939µs +ts=2025-05-22T06:39:26Z caller=logging.go:85 method=Health result=2 took=37.769µs +ts=2025-05-22T06:39:26Z caller=logging.go:85 method=Health result=2 took=48.939µs +ts=2025-05-22T06:39:29Z caller=logging.go:85 method=Health result=2 took=30.88µs +ts=2025-05-22T06:39:29Z caller=logging.go:85 method=Health result=2 took=44.619µs +ts=2025-05-22T06:39:32Z caller=logging.go:85 method=Health result=2 took=56.789µs +ts=2025-05-22T06:39:32Z caller=logging.go:85 method=Health result=2 took=47.999µs +ts=2025-05-22T06:39:35Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T06:39:35Z caller=logging.go:85 method=Health result=2 took=40.919µs +ts=2025-05-22T06:39:38Z caller=logging.go:85 method=Health result=2 took=43.389µs +ts=2025-05-22T06:39:38Z caller=logging.go:85 method=Health result=2 took=47.199µs +ts=2025-05-22T06:39:41Z caller=logging.go:85 method=Health result=2 took=34.04µs +ts=2025-05-22T06:39:41Z caller=logging.go:85 method=Health result=2 took=27.02µs +ts=2025-05-22T06:39:44Z caller=logging.go:85 method=Health result=2 took=29.83µs +ts=2025-05-22T06:39:44Z caller=logging.go:85 method=Health result=2 took=23.38µs +ts=2025-05-22T06:39:47Z caller=logging.go:85 method=Health result=2 took=55.529µs +ts=2025-05-22T06:39:47Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T06:39:50Z caller=logging.go:85 method=Health result=2 took=28.909µs +ts=2025-05-22T06:39:50Z caller=logging.go:85 method=Health result=2 took=28.949µs +ts=2025-05-22T06:39:53Z caller=logging.go:85 method=Health result=2 took=31.769µs +ts=2025-05-22T06:39:53Z caller=logging.go:85 method=Health result=2 took=40.609µs +ts=2025-05-22T06:39:56Z caller=logging.go:85 method=Health result=2 took=45.319µs +ts=2025-05-22T06:39:56Z caller=logging.go:85 method=Health result=2 took=46.049µs +ts=2025-05-22T06:39:59Z caller=logging.go:85 method=Health result=2 took=34.829µs +ts=2025-05-22T06:39:59Z caller=logging.go:85 method=Health result=2 took=31.259µs +ts=2025-05-22T06:40:02Z caller=logging.go:85 method=Health result=2 took=33.649µs +ts=2025-05-22T06:40:02Z caller=logging.go:85 method=Health result=2 took=38.709µs +ts=2025-05-22T06:40:05Z caller=logging.go:85 method=Health result=2 took=37.319µs +ts=2025-05-22T06:40:05Z caller=logging.go:85 method=Health result=2 took=39.579µs +ts=2025-05-22T06:40:08Z caller=logging.go:85 method=Health result=2 took=32.389µs +ts=2025-05-22T06:40:08Z caller=logging.go:85 method=Health result=2 took=48.569µs +ts=2025-05-22T06:40:11Z caller=logging.go:85 method=Health result=2 took=30.77µs +ts=2025-05-22T06:40:11Z caller=logging.go:85 method=Health result=2 took=30.66µs +ts=2025-05-22T06:40:14Z caller=logging.go:85 method=Health result=2 took=37.529µs +ts=2025-05-22T06:40:14Z caller=logging.go:85 method=Health result=2 took=33.649µs +ts=2025-05-22T06:40:17Z caller=logging.go:85 method=Health result=2 took=53.169µs +ts=2025-05-22T06:40:17Z caller=logging.go:85 method=Health result=2 took=40.229µs +ts=2025-05-22T06:40:20Z caller=logging.go:85 method=Health result=2 took=41.599µs +ts=2025-05-22T06:40:20Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T06:40:23Z caller=logging.go:85 method=Health result=2 took=43.259µs +ts=2025-05-22T06:40:23Z caller=logging.go:85 method=Health result=2 took=42.139µs +ts=2025-05-22T06:40:26Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T06:40:26Z caller=logging.go:85 method=Health result=2 took=31.329µs +ts=2025-05-22T06:40:29Z caller=logging.go:85 method=Health result=2 took=29.199µs +ts=2025-05-22T06:40:29Z caller=logging.go:85 method=Health result=2 took=17.69µs +ts=2025-05-22T06:40:32Z caller=logging.go:85 method=Health result=2 took=41.359µs +ts=2025-05-22T06:40:32Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T06:40:35Z caller=logging.go:85 method=Health result=2 took=29.239µs +ts=2025-05-22T06:40:35Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T06:40:38Z caller=logging.go:85 method=Health result=2 took=50.398µs +ts=2025-05-22T06:40:38Z caller=logging.go:85 method=Health result=2 took=66.319µs +ts=2025-05-22T06:40:41Z caller=logging.go:85 method=Health result=2 took=33.84µs +ts=2025-05-22T06:40:41Z caller=logging.go:85 method=Health result=2 took=47.699µs +ts=2025-05-22T06:40:44Z caller=logging.go:85 method=Health result=2 took=27.169µs +ts=2025-05-22T06:40:44Z caller=logging.go:85 method=Health result=2 took=27.049µs +ts=2025-05-22T06:40:47Z caller=logging.go:85 method=Health result=2 took=63.548µs +ts=2025-05-22T06:40:47Z caller=logging.go:85 method=Health result=2 took=34.76µs +ts=2025-05-22T06:40:50Z caller=logging.go:85 method=Health result=2 took=40.589µs +ts=2025-05-22T06:40:50Z caller=logging.go:85 method=Health result=2 took=21.11µs +ts=2025-05-22T06:40:53Z caller=logging.go:85 method=Health result=2 took=30.259µs +ts=2025-05-22T06:40:53Z caller=logging.go:85 method=Health result=2 took=46.429µs +ts=2025-05-22T06:40:56Z caller=logging.go:85 method=Health result=2 took=28.559µs +ts=2025-05-22T06:40:56Z caller=logging.go:85 method=Health result=2 took=40.259µs +ts=2025-05-22T06:40:59Z caller=logging.go:85 method=Health result=2 took=39.419µs +ts=2025-05-22T06:40:59Z caller=logging.go:85 method=Health result=2 took=33.909µs +ts=2025-05-22T06:41:02Z caller=logging.go:85 method=Health result=2 took=42.439µs +ts=2025-05-22T06:41:02Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T06:41:05Z caller=logging.go:85 method=Health result=2 took=44.079µs +ts=2025-05-22T06:41:05Z caller=logging.go:85 method=Health result=2 took=21.42µs +ts=2025-05-22T06:41:08Z caller=logging.go:85 method=Health result=2 took=37.459µs +ts=2025-05-22T06:41:08Z caller=logging.go:85 method=Health result=2 took=34.209µs +ts=2025-05-22T06:41:11Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T06:41:11Z caller=logging.go:85 method=Health result=2 took=26.719µs +ts=2025-05-22T06:41:14Z caller=logging.go:85 method=Health result=2 took=38.809µs +ts=2025-05-22T06:41:14Z caller=logging.go:85 method=Health result=2 took=39.419µs +ts=2025-05-22T06:41:17Z caller=logging.go:85 method=Health result=2 took=33.319µs +ts=2025-05-22T06:41:17Z caller=logging.go:85 method=Health result=2 took=44.889µs +ts=2025-05-22T06:41:20Z caller=logging.go:85 method=Health result=2 took=47.269µs +ts=2025-05-22T06:41:20Z caller=logging.go:85 method=Health result=2 took=47.729µs +ts=2025-05-22T06:41:23Z caller=logging.go:85 method=Health result=2 took=41.209µs +ts=2025-05-22T06:41:23Z caller=logging.go:85 method=Health result=2 took=40.809µs +ts=2025-05-22T06:41:26Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T06:41:26Z caller=logging.go:85 method=Health result=2 took=30.599µs +ts=2025-05-22T06:41:29Z caller=logging.go:85 method=Health result=2 took=40.579µs +ts=2025-05-22T06:41:29Z caller=logging.go:85 method=Health result=2 took=20.149µs +ts=2025-05-22T06:41:32Z caller=logging.go:85 method=Health result=2 took=39.449µs +ts=2025-05-22T06:41:32Z caller=logging.go:85 method=Health result=2 took=39.589µs +ts=2025-05-22T06:41:35Z caller=logging.go:85 method=Health result=2 took=41.839µs +ts=2025-05-22T06:41:35Z caller=logging.go:85 method=Health result=2 took=33.539µs +ts=2025-05-22T06:41:38Z caller=logging.go:85 method=Health result=2 took=55.298µs +ts=2025-05-22T06:41:38Z caller=logging.go:85 method=Health result=2 took=46.879µs +ts=2025-05-22T06:41:41Z caller=logging.go:85 method=Health result=2 took=43.579µs +ts=2025-05-22T06:41:41Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T06:41:44Z caller=logging.go:85 method=Health result=2 took=40.969µs +ts=2025-05-22T06:41:44Z caller=logging.go:85 method=Health result=2 took=46.549µs +ts=2025-05-22T06:41:47Z caller=logging.go:85 method=Health result=2 took=39.299µs +ts=2025-05-22T06:41:47Z caller=logging.go:85 method=Health result=2 took=39.159µs +ts=2025-05-22T06:41:50Z caller=logging.go:85 method=Health result=2 took=28.019µs +ts=2025-05-22T06:41:50Z caller=logging.go:85 method=Health result=2 took=13.16µs +ts=2025-05-22T06:41:53Z caller=logging.go:85 method=Health result=2 took=33.499µs +ts=2025-05-22T06:41:53Z caller=logging.go:85 method=Health result=2 took=46.469µs +ts=2025-05-22T06:41:56Z caller=logging.go:85 method=Health result=2 took=43.539µs +ts=2025-05-22T06:41:56Z caller=logging.go:85 method=Health result=2 took=46.349µs +ts=2025-05-22T06:41:59Z caller=logging.go:85 method=Health result=2 took=44.329µs +ts=2025-05-22T06:41:59Z caller=logging.go:85 method=Health result=2 took=46.358µs +ts=2025-05-22T06:42:02Z caller=logging.go:85 method=Health result=2 took=39.469µs +ts=2025-05-22T06:42:02Z caller=logging.go:85 method=Health result=2 took=11.999µs +ts=2025-05-22T06:42:05Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T06:42:05Z caller=logging.go:85 method=Health result=2 took=39.389µs +ts=2025-05-22T06:42:08Z caller=logging.go:85 method=Health result=2 took=35.329µs +ts=2025-05-22T06:42:08Z caller=logging.go:85 method=Health result=2 took=19.919µs +ts=2025-05-22T06:42:11Z caller=logging.go:85 method=Health result=2 took=28.199µs +ts=2025-05-22T06:42:11Z caller=logging.go:85 method=Health result=2 took=35.829µs +ts=2025-05-22T06:42:14Z caller=logging.go:85 method=Health result=2 took=16.35µs +ts=2025-05-22T06:42:14Z caller=logging.go:85 method=Health result=2 took=34.899µs +ts=2025-05-22T06:42:17Z caller=logging.go:85 method=Health result=2 took=27.319µs +ts=2025-05-22T06:42:17Z caller=logging.go:85 method=Health result=2 took=2.08837ms +ts=2025-05-22T06:42:20Z caller=logging.go:85 method=Health result=2 took=44.449µs +ts=2025-05-22T06:42:20Z caller=logging.go:85 method=Health result=2 took=45.549µs +ts=2025-05-22T06:42:23Z caller=logging.go:85 method=Health result=2 took=43.608µs +ts=2025-05-22T06:42:23Z caller=logging.go:85 method=Health result=2 took=43.428µs +ts=2025-05-22T06:42:26Z caller=logging.go:85 method=Health result=2 took=44.999µs +ts=2025-05-22T06:42:26Z caller=logging.go:85 method=Health result=2 took=61.139µs +ts=2025-05-22T06:42:29Z caller=logging.go:85 method=Health result=2 took=47.669µs +ts=2025-05-22T06:42:29Z caller=logging.go:85 method=Health result=2 took=28.829µs +ts=2025-05-22T06:42:32Z caller=logging.go:85 method=Health result=2 took=29.13µs +ts=2025-05-22T06:42:32Z caller=logging.go:85 method=Health result=2 took=29.09µs +ts=2025-05-22T06:42:35Z caller=logging.go:85 method=Health result=2 took=46.109µs +ts=2025-05-22T06:42:35Z caller=logging.go:85 method=Health result=2 took=50.259µs +ts=2025-05-22T06:42:38Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T06:42:38Z caller=logging.go:85 method=Health result=2 took=33.319µs +ts=2025-05-22T06:42:41Z caller=logging.go:85 method=Health result=2 took=28.84µs +ts=2025-05-22T06:42:41Z caller=logging.go:85 method=Health result=2 took=41.019µs +ts=2025-05-22T06:42:44Z caller=logging.go:85 method=Health result=2 took=30.669µs +ts=2025-05-22T06:42:44Z caller=logging.go:85 method=Health result=2 took=16.419µs +ts=2025-05-22T06:42:47Z caller=logging.go:85 method=Health result=2 took=41.639µs +ts=2025-05-22T06:42:47Z caller=logging.go:85 method=Health result=2 took=63.968µs +ts=2025-05-22T06:42:50Z caller=logging.go:85 method=Health result=2 took=36.299µs +ts=2025-05-22T06:42:50Z caller=logging.go:85 method=Health result=2 took=15.98µs +ts=2025-05-22T06:42:53Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T06:42:53Z caller=logging.go:85 method=Health result=2 took=29.419µs +ts=2025-05-22T06:42:56Z caller=logging.go:85 method=Health result=2 took=45.469µs +ts=2025-05-22T06:42:56Z caller=logging.go:85 method=Health result=2 took=48.249µs +ts=2025-05-22T06:42:59Z caller=logging.go:85 method=Health result=2 took=43.599µs +ts=2025-05-22T06:42:59Z caller=logging.go:85 method=Health result=2 took=103.507µs +ts=2025-05-22T06:43:02Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T06:43:02Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T06:43:05Z caller=logging.go:85 method=Health result=2 took=44.769µs +ts=2025-05-22T06:43:05Z caller=logging.go:85 method=Health result=2 took=48.849µs +ts=2025-05-22T06:43:08Z caller=logging.go:85 method=Health result=2 took=51.708µs +ts=2025-05-22T06:43:08Z caller=logging.go:85 method=Health result=2 took=49.839µs +ts=2025-05-22T06:43:11Z caller=logging.go:85 method=Health result=2 took=38.129µs +ts=2025-05-22T06:43:11Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T06:43:14Z caller=logging.go:85 method=Health result=2 took=45.998µs +ts=2025-05-22T06:43:14Z caller=logging.go:85 method=Health result=2 took=49.309µs +ts=2025-05-22T06:43:17Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T06:43:17Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T06:43:20Z caller=logging.go:85 method=Health result=2 took=35.529µs +ts=2025-05-22T06:43:20Z caller=logging.go:85 method=Health result=2 took=34.989µs +ts=2025-05-22T06:43:23Z caller=logging.go:85 method=Health result=2 took=44.809µs +ts=2025-05-22T06:43:23Z caller=logging.go:85 method=Health result=2 took=49.089µs +ts=2025-05-22T06:43:26Z caller=logging.go:85 method=Health result=2 took=41.609µs +ts=2025-05-22T06:43:26Z caller=logging.go:85 method=Health result=2 took=48.539µs +ts=2025-05-22T06:43:29Z caller=logging.go:85 method=Health result=2 took=45.299µs +ts=2025-05-22T06:43:29Z caller=logging.go:85 method=Health result=2 took=57.768µs +ts=2025-05-22T06:43:32Z caller=logging.go:85 method=Health result=2 took=44.199µs +ts=2025-05-22T06:43:32Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T06:43:35Z caller=logging.go:85 method=Health result=2 took=44.319µs +ts=2025-05-22T06:43:35Z caller=logging.go:85 method=Health result=2 took=43.769µs +ts=2025-05-22T06:43:38Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T06:43:38Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T06:43:41Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T06:43:41Z caller=logging.go:85 method=Health result=2 took=20.149µs +ts=2025-05-22T06:43:44Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T06:43:44Z caller=logging.go:85 method=Health result=2 took=50.329µs +ts=2025-05-22T06:43:47Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T06:43:47Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T06:43:50Z caller=logging.go:85 method=Health result=2 took=46.049µs +ts=2025-05-22T06:43:50Z caller=logging.go:85 method=Health result=2 took=24.99µs +ts=2025-05-22T06:43:53Z caller=logging.go:85 method=Health result=2 took=47.039µs +ts=2025-05-22T06:43:53Z caller=logging.go:85 method=Health result=2 took=51.979µs +ts=2025-05-22T06:43:56Z caller=logging.go:85 method=Health result=2 took=37.329µs +ts=2025-05-22T06:43:56Z caller=logging.go:85 method=Health result=2 took=37.719µs +ts=2025-05-22T06:43:59Z caller=logging.go:85 method=Health result=2 took=39.259µs +ts=2025-05-22T06:43:59Z caller=logging.go:85 method=Health result=2 took=49.019µs +ts=2025-05-22T06:44:02Z caller=logging.go:85 method=Health result=2 took=38.999µs +ts=2025-05-22T06:44:02Z caller=logging.go:85 method=Health result=2 took=39.239µs +ts=2025-05-22T06:44:05Z caller=logging.go:85 method=Health result=2 took=45.638µs +ts=2025-05-22T06:44:05Z caller=logging.go:85 method=Health result=2 took=43.129µs +ts=2025-05-22T06:44:08Z caller=logging.go:85 method=Health result=2 took=44.349µs +ts=2025-05-22T06:44:08Z caller=logging.go:85 method=Health result=2 took=47.269µs +ts=2025-05-22T06:44:11Z caller=logging.go:85 method=Health result=2 took=49.929µs +ts=2025-05-22T06:44:11Z caller=logging.go:85 method=Health result=2 took=34.129µs +ts=2025-05-22T06:44:14Z caller=logging.go:85 method=Health result=2 took=44.439µs +ts=2025-05-22T06:44:14Z caller=logging.go:85 method=Health result=2 took=50.418µs +ts=2025-05-22T06:44:17Z caller=logging.go:85 method=Health result=2 took=46.989µs +ts=2025-05-22T06:44:17Z caller=logging.go:85 method=Health result=2 took=62.458µs +ts=2025-05-22T06:44:20Z caller=logging.go:85 method=Health result=2 took=40.209µs +ts=2025-05-22T06:44:20Z caller=logging.go:85 method=Health result=2 took=47.869µs +ts=2025-05-22T06:44:23Z caller=logging.go:85 method=Health result=2 took=43.619µs +ts=2025-05-22T06:44:23Z caller=logging.go:85 method=Health result=2 took=45.579µs +ts=2025-05-22T06:44:26Z caller=logging.go:85 method=Health result=2 took=41.869µs +ts=2025-05-22T06:44:26Z caller=logging.go:85 method=Health result=2 took=47.539µs +ts=2025-05-22T06:44:29Z caller=logging.go:85 method=Health result=2 took=40.929µs +ts=2025-05-22T06:44:29Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T06:44:32Z caller=logging.go:85 method=Health result=2 took=33.079µs +ts=2025-05-22T06:44:32Z caller=logging.go:85 method=Health result=2 took=47.509µs +ts=2025-05-22T06:44:35Z caller=logging.go:85 method=Health result=2 took=41.229µs +ts=2025-05-22T06:44:35Z caller=logging.go:85 method=Health result=2 took=40.869µs +ts=2025-05-22T06:44:38Z caller=logging.go:85 method=Health result=2 took=41.729µs +ts=2025-05-22T06:44:38Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T06:44:41Z caller=logging.go:85 method=Health result=2 took=39.11µs +ts=2025-05-22T06:44:41Z caller=logging.go:85 method=Health result=2 took=38.92µs +ts=2025-05-22T06:44:44Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T06:44:44Z caller=logging.go:85 method=Health result=2 took=43.589µs +ts=2025-05-22T06:44:47Z caller=logging.go:85 method=Health result=2 took=42.859µs +ts=2025-05-22T06:44:47Z caller=logging.go:85 method=Health result=2 took=42.229µs +ts=2025-05-22T06:44:50Z caller=logging.go:85 method=Health result=2 took=51.569µs +ts=2025-05-22T06:44:50Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T06:44:53Z caller=logging.go:85 method=Health result=2 took=44.449µs +ts=2025-05-22T06:44:53Z caller=logging.go:85 method=Health result=2 took=51.079µs +ts=2025-05-22T06:44:56Z caller=logging.go:85 method=Health result=2 took=45.139µs +ts=2025-05-22T06:44:56Z caller=logging.go:85 method=Health result=2 took=64.399µs +ts=2025-05-22T06:44:59Z caller=logging.go:85 method=Health result=2 took=45.199µs +ts=2025-05-22T06:44:59Z caller=logging.go:85 method=Health result=2 took=34.019µs +ts=2025-05-22T06:45:02Z caller=logging.go:85 method=Health result=2 took=56.648µs +ts=2025-05-22T06:45:02Z caller=logging.go:85 method=Health result=2 took=56.648µs +ts=2025-05-22T06:45:05Z caller=logging.go:85 method=Health result=2 took=29.529µs +ts=2025-05-22T06:45:05Z caller=logging.go:85 method=Health result=2 took=72.978µs +ts=2025-05-22T06:45:08Z caller=logging.go:85 method=Health result=2 took=43.019µs +ts=2025-05-22T06:45:08Z caller=logging.go:85 method=Health result=2 took=42.179µs +ts=2025-05-22T06:45:11Z caller=logging.go:85 method=Health result=2 took=36.149µs +ts=2025-05-22T06:45:11Z caller=logging.go:85 method=Health result=2 took=48.429µs +ts=2025-05-22T06:45:14Z caller=logging.go:85 method=Health result=2 took=43.869µs +ts=2025-05-22T06:45:14Z caller=logging.go:85 method=Health result=2 took=41.389µs +ts=2025-05-22T06:45:17Z caller=logging.go:85 method=Health result=2 took=41.949µs +ts=2025-05-22T06:45:17Z caller=logging.go:85 method=Health result=2 took=41.219µs +ts=2025-05-22T06:45:20Z caller=logging.go:85 method=Health result=2 took=45.819µs +ts=2025-05-22T06:45:20Z caller=logging.go:85 method=Health result=2 took=48.399µs +ts=2025-05-22T06:45:23Z caller=logging.go:85 method=Health result=2 took=38.859µs +ts=2025-05-22T06:45:23Z caller=logging.go:85 method=Health result=2 took=38.189µs +ts=2025-05-22T06:45:26Z caller=logging.go:85 method=Health result=2 took=38.759µs +ts=2025-05-22T06:45:26Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T06:45:29Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T06:45:29Z caller=logging.go:85 method=Health result=2 took=30.269µs +ts=2025-05-22T06:45:32Z caller=logging.go:85 method=Health result=2 took=38.949µs +ts=2025-05-22T06:45:32Z caller=logging.go:85 method=Health result=2 took=39.319µs +ts=2025-05-22T06:45:35Z caller=logging.go:85 method=Health result=2 took=36.789µs +ts=2025-05-22T06:45:35Z caller=logging.go:85 method=Health result=2 took=56.799µs +ts=2025-05-22T06:45:38Z caller=logging.go:85 method=Health result=2 took=34.719µs +ts=2025-05-22T06:45:38Z caller=logging.go:85 method=Health result=2 took=19.18µs +ts=2025-05-22T06:45:41Z caller=logging.go:85 method=Health result=2 took=30.87µs +ts=2025-05-22T06:45:41Z caller=logging.go:85 method=Health result=2 took=45.519µs +ts=2025-05-22T06:45:44Z caller=logging.go:85 method=Health result=2 took=30.489µs +ts=2025-05-22T06:45:44Z caller=logging.go:85 method=Health result=2 took=9.989µs +ts=2025-05-22T06:45:47Z caller=logging.go:85 method=Health result=2 took=45.199µs +ts=2025-05-22T06:45:47Z caller=logging.go:85 method=Health result=2 took=48.979µs +ts=2025-05-22T06:45:50Z caller=logging.go:85 method=Health result=2 took=42.999µs +ts=2025-05-22T06:45:50Z caller=logging.go:85 method=Health result=2 took=43.498µs +ts=2025-05-22T06:45:53Z caller=logging.go:85 method=Health result=2 took=43.778µs +ts=2025-05-22T06:45:53Z caller=logging.go:85 method=Health result=2 took=44.708µs +ts=2025-05-22T06:45:56Z caller=logging.go:85 method=Health result=2 took=41.509µs +ts=2025-05-22T06:45:56Z caller=logging.go:85 method=Health result=2 took=37.619µs +ts=2025-05-22T06:45:59Z caller=logging.go:85 method=Health result=2 took=36.799µs +ts=2025-05-22T06:45:59Z caller=logging.go:85 method=Health result=2 took=37.359µs +ts=2025-05-22T06:46:02Z caller=logging.go:85 method=Health result=2 took=39.509µs +ts=2025-05-22T06:46:02Z caller=logging.go:85 method=Health result=2 took=38.919µs +ts=2025-05-22T06:46:05Z caller=logging.go:85 method=Health result=2 took=41.419µs +ts=2025-05-22T06:46:05Z caller=logging.go:85 method=Health result=2 took=55.728µs +ts=2025-05-22T06:46:08Z caller=logging.go:85 method=Health result=2 took=45.569µs +ts=2025-05-22T06:46:08Z caller=logging.go:85 method=Health result=2 took=26.06µs +ts=2025-05-22T06:46:11Z caller=logging.go:85 method=Health result=2 took=38.749µs +ts=2025-05-22T06:46:11Z caller=logging.go:85 method=Health result=2 took=38.879µs +ts=2025-05-22T06:46:14Z caller=logging.go:85 method=Health result=2 took=36.1µs +ts=2025-05-22T06:46:14Z caller=logging.go:85 method=Health result=2 took=33.15µs +ts=2025-05-22T06:46:17Z caller=logging.go:85 method=Health result=2 took=56.618µs +ts=2025-05-22T06:46:17Z caller=logging.go:85 method=Health result=2 took=141.157µs +ts=2025-05-22T06:46:20Z caller=logging.go:85 method=Health result=2 took=39.599µs +ts=2025-05-22T06:46:20Z caller=logging.go:85 method=Health result=2 took=39.519µs +ts=2025-05-22T06:46:23Z caller=logging.go:85 method=Health result=2 took=35.529µs +ts=2025-05-22T06:46:23Z caller=logging.go:85 method=Health result=2 took=13.21µs +ts=2025-05-22T06:46:26Z caller=logging.go:85 method=Health result=2 took=41.699µs +ts=2025-05-22T06:46:26Z caller=logging.go:85 method=Health result=2 took=49.159µs +ts=2025-05-22T06:46:29Z caller=logging.go:85 method=Health result=2 took=39.639µs +ts=2025-05-22T06:46:29Z caller=logging.go:85 method=Health result=2 took=48.809µs +ts=2025-05-22T06:46:32Z caller=logging.go:85 method=Health result=2 took=42.709µs +ts=2025-05-22T06:46:32Z caller=logging.go:85 method=Health result=2 took=43.659µs +ts=2025-05-22T06:46:35Z caller=logging.go:85 method=Health result=2 took=41.599µs +ts=2025-05-22T06:46:35Z caller=logging.go:85 method=Health result=2 took=49.339µs +ts=2025-05-22T06:46:38Z caller=logging.go:85 method=Health result=2 took=45.149µs +ts=2025-05-22T06:46:38Z caller=logging.go:85 method=Health result=2 took=29.449µs +ts=2025-05-22T06:46:41Z caller=logging.go:85 method=Health result=2 took=40.259µs +ts=2025-05-22T06:46:41Z caller=logging.go:85 method=Health result=2 took=53.048µs +ts=2025-05-22T06:46:44Z caller=logging.go:85 method=Health result=2 took=41.999µs +ts=2025-05-22T06:46:44Z caller=logging.go:85 method=Health result=2 took=50.089µs +ts=2025-05-22T06:46:47Z caller=logging.go:85 method=Health result=2 took=41.519µs +ts=2025-05-22T06:46:47Z caller=logging.go:85 method=Health result=2 took=41.509µs +ts=2025-05-22T06:46:50Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T06:46:50Z caller=logging.go:85 method=Health result=2 took=22.789µs +ts=2025-05-22T06:46:53Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T06:46:53Z caller=logging.go:85 method=Health result=2 took=44.549µs +ts=2025-05-22T06:46:56Z caller=logging.go:85 method=Health result=2 took=38.129µs +ts=2025-05-22T06:46:56Z caller=logging.go:85 method=Health result=2 took=44.789µs +ts=2025-05-22T06:46:59Z caller=logging.go:85 method=Health result=2 took=30.029µs +ts=2025-05-22T06:46:59Z caller=logging.go:85 method=Health result=2 took=19.7µs +ts=2025-05-22T06:47:02Z caller=logging.go:85 method=Health result=2 took=35.819µs +ts=2025-05-22T06:47:02Z caller=logging.go:85 method=Health result=2 took=35.699µs +ts=2025-05-22T06:47:05Z caller=logging.go:85 method=Health result=2 took=40.989µs +ts=2025-05-22T06:47:05Z caller=logging.go:85 method=Health result=2 took=55.569µs +ts=2025-05-22T06:47:08Z caller=logging.go:85 method=Health result=2 took=42.368µs +ts=2025-05-22T06:47:08Z caller=logging.go:85 method=Health result=2 took=42.008µs +ts=2025-05-22T06:47:11Z caller=logging.go:85 method=Health result=2 took=44.839µs +ts=2025-05-22T06:47:11Z caller=logging.go:85 method=Health result=2 took=52.819µs +ts=2025-05-22T06:47:14Z caller=logging.go:85 method=Health result=2 took=30.72µs +ts=2025-05-22T06:47:14Z caller=logging.go:85 method=Health result=2 took=43.489µs +ts=2025-05-22T06:47:17Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T06:47:17Z caller=logging.go:85 method=Health result=2 took=43.159µs +ts=2025-05-22T06:47:20Z caller=logging.go:85 method=Health result=2 took=53.859µs +ts=2025-05-22T06:47:20Z caller=logging.go:85 method=Health result=2 took=55.799µs +ts=2025-05-22T06:47:23Z caller=logging.go:85 method=Health result=2 took=40.099µs +ts=2025-05-22T06:47:23Z caller=logging.go:85 method=Health result=2 took=40.459µs +ts=2025-05-22T06:47:26Z caller=logging.go:85 method=Health result=2 took=41.719µs +ts=2025-05-22T06:47:26Z caller=logging.go:85 method=Health result=2 took=48.809µs +ts=2025-05-22T06:47:29Z caller=logging.go:85 method=Health result=2 took=32.939µs +ts=2025-05-22T06:47:29Z caller=logging.go:85 method=Health result=2 took=46.539µs +ts=2025-05-22T06:47:32Z caller=logging.go:85 method=Health result=2 took=37.99µs +ts=2025-05-22T06:47:32Z caller=logging.go:85 method=Health result=2 took=14.84µs +ts=2025-05-22T06:47:35Z caller=logging.go:85 method=Health result=2 took=40.729µs +ts=2025-05-22T06:47:35Z caller=logging.go:85 method=Health result=2 took=23.55µs +ts=2025-05-22T06:47:38Z caller=logging.go:85 method=Health result=2 took=44.409µs +ts=2025-05-22T06:47:38Z caller=logging.go:85 method=Health result=2 took=39.319µs +ts=2025-05-22T06:47:41Z caller=logging.go:85 method=Health result=2 took=46.298µs +ts=2025-05-22T06:47:41Z caller=logging.go:85 method=Health result=2 took=35.52µs +ts=2025-05-22T06:47:44Z caller=logging.go:85 method=Health result=2 took=34.219µs +ts=2025-05-22T06:47:44Z caller=logging.go:85 method=Health result=2 took=34.359µs +ts=2025-05-22T06:47:47Z caller=logging.go:85 method=Health result=2 took=39.44µs +ts=2025-05-22T06:47:47Z caller=logging.go:85 method=Health result=2 took=35.23µs +ts=2025-05-22T06:47:50Z caller=logging.go:85 method=Health result=2 took=58.089µs +ts=2025-05-22T06:47:50Z caller=logging.go:85 method=Health result=2 took=58.099µs +ts=2025-05-22T06:47:53Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T06:47:53Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T06:47:56Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T06:47:56Z caller=logging.go:85 method=Health result=2 took=51.099µs +ts=2025-05-22T06:47:59Z caller=logging.go:85 method=Health result=2 took=43.119µs +ts=2025-05-22T06:47:59Z caller=logging.go:85 method=Health result=2 took=31.49µs +ts=2025-05-22T06:48:02Z caller=logging.go:85 method=Health result=2 took=44.619µs +ts=2025-05-22T06:48:02Z caller=logging.go:85 method=Health result=2 took=82.138µs +ts=2025-05-22T06:48:05Z caller=logging.go:85 method=Health result=2 took=47.719µs +ts=2025-05-22T06:48:05Z caller=logging.go:85 method=Health result=2 took=49.659µs +ts=2025-05-22T06:48:08Z caller=logging.go:85 method=Health result=2 took=37.489µs +ts=2025-05-22T06:48:08Z caller=logging.go:85 method=Health result=2 took=50.428µs +ts=2025-05-22T06:48:11Z caller=logging.go:85 method=Health result=2 took=54.908µs +ts=2025-05-22T06:48:11Z caller=logging.go:85 method=Health result=2 took=54.908µs +ts=2025-05-22T06:48:14Z caller=logging.go:85 method=Health result=2 took=42.149µs +ts=2025-05-22T06:48:14Z caller=logging.go:85 method=Health result=2 took=49.819µs +ts=2025-05-22T06:48:17Z caller=logging.go:85 method=Health result=2 took=899.468µs +ts=2025-05-22T06:48:17Z caller=logging.go:85 method=Health result=2 took=64.548µs +ts=2025-05-22T06:48:20Z caller=logging.go:85 method=Health result=2 took=46.199µs +ts=2025-05-22T06:48:20Z caller=logging.go:85 method=Health result=2 took=45.009µs +ts=2025-05-22T06:48:23Z caller=logging.go:85 method=Health result=2 took=35.819µs +ts=2025-05-22T06:48:23Z caller=logging.go:85 method=Health result=2 took=35.429µs +ts=2025-05-22T06:48:26Z caller=logging.go:85 method=Health result=2 took=36.309µs +ts=2025-05-22T06:48:26Z caller=logging.go:85 method=Health result=2 took=24.459µs +ts=2025-05-22T06:48:29Z caller=logging.go:85 method=Health result=2 took=39.259µs +ts=2025-05-22T06:48:29Z caller=logging.go:85 method=Health result=2 took=47.849µs +ts=2025-05-22T06:48:32Z caller=logging.go:85 method=Health result=2 took=32.229µs +ts=2025-05-22T06:48:32Z caller=logging.go:85 method=Health result=2 took=32.369µs +ts=2025-05-22T06:48:35Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T06:48:35Z caller=logging.go:85 method=Health result=2 took=52.169µs +ts=2025-05-22T06:48:38Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T06:48:38Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T06:48:41Z caller=logging.go:85 method=Health result=2 took=44.229µs +ts=2025-05-22T06:48:41Z caller=logging.go:85 method=Health result=2 took=49.739µs +ts=2025-05-22T06:48:44Z caller=logging.go:85 method=Health result=2 took=44.269µs +ts=2025-05-22T06:48:44Z caller=logging.go:85 method=Health result=2 took=48.899µs +ts=2025-05-22T06:48:47Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T06:48:47Z caller=logging.go:85 method=Health result=2 took=21.179µs +ts=2025-05-22T06:48:50Z caller=logging.go:85 method=Health result=2 took=38.419µs +ts=2025-05-22T06:48:50Z caller=logging.go:85 method=Health result=2 took=38.919µs +ts=2025-05-22T06:48:53Z caller=logging.go:85 method=Health result=2 took=30.78µs +ts=2025-05-22T06:48:53Z caller=logging.go:85 method=Health result=2 took=48.679µs +ts=2025-05-22T06:48:56Z caller=logging.go:85 method=Health result=2 took=41.159µs +ts=2025-05-22T06:48:56Z caller=logging.go:85 method=Health result=2 took=46.518µs +ts=2025-05-22T06:48:59Z caller=logging.go:85 method=Health result=2 took=45.748µs +ts=2025-05-22T06:48:59Z caller=logging.go:85 method=Health result=2 took=46.859µs +ts=2025-05-22T06:49:02Z caller=logging.go:85 method=Health result=2 took=52.069µs +ts=2025-05-22T06:49:02Z caller=logging.go:85 method=Health result=2 took=49.939µs +ts=2025-05-22T06:49:05Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T06:49:05Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T06:49:08Z caller=logging.go:85 method=Health result=2 took=42.509µs +ts=2025-05-22T06:49:08Z caller=logging.go:85 method=Health result=2 took=45.749µs +ts=2025-05-22T06:49:11Z caller=logging.go:85 method=Health result=2 took=31.41µs +ts=2025-05-22T06:49:11Z caller=logging.go:85 method=Health result=2 took=40.079µs +ts=2025-05-22T06:49:14Z caller=logging.go:85 method=Health result=2 took=45.439µs +ts=2025-05-22T06:49:14Z caller=logging.go:85 method=Health result=2 took=50.499µs +ts=2025-05-22T06:49:17Z caller=logging.go:85 method=Health result=2 took=46.259µs +ts=2025-05-22T06:49:17Z caller=logging.go:85 method=Health result=2 took=52.639µs +ts=2025-05-22T06:49:20Z caller=logging.go:85 method=Health result=2 took=41.729µs +ts=2025-05-22T06:49:20Z caller=logging.go:85 method=Health result=2 took=40.729µs +ts=2025-05-22T06:49:23Z caller=logging.go:85 method=Health result=2 took=43.879µs +ts=2025-05-22T06:49:23Z caller=logging.go:85 method=Health result=2 took=48.869µs +ts=2025-05-22T06:49:26Z caller=logging.go:85 method=Health result=2 took=41.849µs +ts=2025-05-22T06:49:26Z caller=logging.go:85 method=Health result=2 took=41.479µs +ts=2025-05-22T06:49:29Z caller=logging.go:85 method=Health result=2 took=41.889µs +ts=2025-05-22T06:49:29Z caller=logging.go:85 method=Health result=2 took=47.549µs +ts=2025-05-22T06:49:32Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T06:49:32Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T06:49:35Z caller=logging.go:85 method=Health result=2 took=36.069µs +ts=2025-05-22T06:49:35Z caller=logging.go:85 method=Health result=2 took=36.129µs +ts=2025-05-22T06:49:38Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T06:49:38Z caller=logging.go:85 method=Health result=2 took=42.059µs +ts=2025-05-22T06:49:41Z caller=logging.go:85 method=Health result=2 took=46.499µs +ts=2025-05-22T06:49:41Z caller=logging.go:85 method=Health result=2 took=45.949µs +ts=2025-05-22T06:49:44Z caller=logging.go:85 method=Health result=2 took=43.159µs +ts=2025-05-22T06:49:44Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T06:49:47Z caller=logging.go:85 method=Health result=2 took=44.039µs +ts=2025-05-22T06:49:47Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T06:49:50Z caller=logging.go:85 method=Health result=2 took=41.099µs +ts=2025-05-22T06:49:50Z caller=logging.go:85 method=Health result=2 took=47.009µs +ts=2025-05-22T06:49:53Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T06:49:53Z caller=logging.go:85 method=Health result=2 took=31.479µs +ts=2025-05-22T06:49:56Z caller=logging.go:85 method=Health result=2 took=45.699µs +ts=2025-05-22T06:49:56Z caller=logging.go:85 method=Health result=2 took=30.45µs +ts=2025-05-22T06:49:59Z caller=logging.go:85 method=Health result=2 took=46.889µs +ts=2025-05-22T06:49:59Z caller=logging.go:85 method=Health result=2 took=48.209µs +ts=2025-05-22T06:50:02Z caller=logging.go:85 method=Health result=2 took=45.259µs +ts=2025-05-22T06:50:02Z caller=logging.go:85 method=Health result=2 took=66.528µs +ts=2025-05-22T06:50:05Z caller=logging.go:85 method=Health result=2 took=63.548µs +ts=2025-05-22T06:50:05Z caller=logging.go:85 method=Health result=2 took=63.438µs +ts=2025-05-22T06:50:08Z caller=logging.go:85 method=Health result=2 took=40.249µs +ts=2025-05-22T06:50:08Z caller=logging.go:85 method=Health result=2 took=27.67µs +ts=2025-05-22T06:50:11Z caller=logging.go:85 method=Health result=2 took=44.329µs +ts=2025-05-22T06:50:11Z caller=logging.go:85 method=Health result=2 took=69.208µs +ts=2025-05-22T06:50:14Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T06:50:14Z caller=logging.go:85 method=Health result=2 took=48.849µs +ts=2025-05-22T06:50:17Z caller=logging.go:85 method=Health result=2 took=860.559µs +ts=2025-05-22T06:50:17Z caller=logging.go:85 method=Health result=2 took=903.488µs +ts=2025-05-22T06:50:20Z caller=logging.go:85 method=Health result=2 took=43.969µs +ts=2025-05-22T06:50:20Z caller=logging.go:85 method=Health result=2 took=27.649µs +ts=2025-05-22T06:50:23Z caller=logging.go:85 method=Health result=2 took=37.769µs +ts=2025-05-22T06:50:23Z caller=logging.go:85 method=Health result=2 took=47.999µs +ts=2025-05-22T06:50:26Z caller=logging.go:85 method=Health result=2 took=43.959µs +ts=2025-05-22T06:50:26Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T06:50:29Z caller=logging.go:85 method=Health result=2 took=35.679µs +ts=2025-05-22T06:50:29Z caller=logging.go:85 method=Health result=2 took=50.319µs +ts=2025-05-22T06:50:32Z caller=logging.go:85 method=Health result=2 took=50.209µs +ts=2025-05-22T06:50:32Z caller=logging.go:85 method=Health result=2 took=29.84µs +ts=2025-05-22T06:50:35Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T06:50:35Z caller=logging.go:85 method=Health result=2 took=42.859µs +ts=2025-05-22T06:50:38Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T06:50:38Z caller=logging.go:85 method=Health result=2 took=25.09µs +ts=2025-05-22T06:50:41Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T06:50:41Z caller=logging.go:85 method=Health result=2 took=42.799µs +ts=2025-05-22T06:50:44Z caller=logging.go:85 method=Health result=2 took=35.559µs +ts=2025-05-22T06:50:44Z caller=logging.go:85 method=Health result=2 took=25.37µs +ts=2025-05-22T06:50:47Z caller=logging.go:85 method=Health result=2 took=38.619µs +ts=2025-05-22T06:50:47Z caller=logging.go:85 method=Health result=2 took=46.629µs +ts=2025-05-22T06:50:50Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T06:50:50Z caller=logging.go:85 method=Health result=2 took=19.45µs +ts=2025-05-22T06:50:53Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T06:50:53Z caller=logging.go:85 method=Health result=2 took=42.339µs +ts=2025-05-22T06:50:56Z caller=logging.go:85 method=Health result=2 took=31.209µs +ts=2025-05-22T06:50:56Z caller=logging.go:85 method=Health result=2 took=47.539µs +ts=2025-05-22T06:50:59Z caller=logging.go:85 method=Health result=2 took=29.639µs +ts=2025-05-22T06:50:59Z caller=logging.go:85 method=Health result=2 took=45.609µs +ts=2025-05-22T06:51:02Z caller=logging.go:85 method=Health result=2 took=31.719µs +ts=2025-05-22T06:51:02Z caller=logging.go:85 method=Health result=2 took=47.269µs +ts=2025-05-22T06:51:05Z caller=logging.go:85 method=Health result=2 took=59.269µs +ts=2025-05-22T06:51:05Z caller=logging.go:85 method=Health result=2 took=36.199µs +ts=2025-05-22T06:51:08Z caller=logging.go:85 method=Health result=2 took=49.999µs +ts=2025-05-22T06:51:08Z caller=logging.go:85 method=Health result=2 took=49.599µs +ts=2025-05-22T06:51:11Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T06:51:11Z caller=logging.go:85 method=Health result=2 took=44.179µs +ts=2025-05-22T06:51:14Z caller=logging.go:85 method=Health result=2 took=36.449µs +ts=2025-05-22T06:51:14Z caller=logging.go:85 method=Health result=2 took=11.81µs +ts=2025-05-22T06:51:17Z caller=logging.go:85 method=Health result=2 took=52.078µs +ts=2025-05-22T06:51:17Z caller=logging.go:85 method=Health result=2 took=23.689µs +ts=2025-05-22T06:51:20Z caller=logging.go:85 method=Health result=2 took=41.679µs +ts=2025-05-22T06:51:20Z caller=logging.go:85 method=Health result=2 took=42.659µs +ts=2025-05-22T06:51:23Z caller=logging.go:85 method=Health result=2 took=41.459µs +ts=2025-05-22T06:51:23Z caller=logging.go:85 method=Health result=2 took=48.409µs +ts=2025-05-22T06:51:26Z caller=logging.go:85 method=Health result=2 took=42.329µs +ts=2025-05-22T06:51:26Z caller=logging.go:85 method=Health result=2 took=42.899µs +ts=2025-05-22T06:51:29Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T06:51:29Z caller=logging.go:85 method=Health result=2 took=30.71µs +ts=2025-05-22T06:51:32Z caller=logging.go:85 method=Health result=2 took=32.659µs +ts=2025-05-22T06:51:32Z caller=logging.go:85 method=Health result=2 took=37.77µs +ts=2025-05-22T06:51:35Z caller=logging.go:85 method=Health result=2 took=31.119µs +ts=2025-05-22T06:51:35Z caller=logging.go:85 method=Health result=2 took=47.519µs +ts=2025-05-22T06:51:38Z caller=logging.go:85 method=Health result=2 took=45.249µs +ts=2025-05-22T06:51:38Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T06:51:41Z caller=logging.go:85 method=Health result=2 took=46.099µs +ts=2025-05-22T06:51:41Z caller=logging.go:85 method=Health result=2 took=47.908µs +ts=2025-05-22T06:51:44Z caller=logging.go:85 method=Health result=2 took=45.899µs +ts=2025-05-22T06:51:44Z caller=logging.go:85 method=Health result=2 took=49.109µs +ts=2025-05-22T06:51:47Z caller=logging.go:85 method=Health result=2 took=43.039µs +ts=2025-05-22T06:51:47Z caller=logging.go:85 method=Health result=2 took=45.129µs +ts=2025-05-22T06:51:50Z caller=logging.go:85 method=Health result=2 took=37.25µs +ts=2025-05-22T06:51:50Z caller=logging.go:85 method=Health result=2 took=47.309µs +ts=2025-05-22T06:51:53Z caller=logging.go:85 method=Health result=2 took=45.908µs +ts=2025-05-22T06:51:53Z caller=logging.go:85 method=Health result=2 took=43.549µs +ts=2025-05-22T06:51:56Z caller=logging.go:85 method=Health result=2 took=38.109µs +ts=2025-05-22T06:51:56Z caller=logging.go:85 method=Health result=2 took=38.829µs +ts=2025-05-22T06:51:59Z caller=logging.go:85 method=Health result=2 took=28.749µs +ts=2025-05-22T06:51:59Z caller=logging.go:85 method=Health result=2 took=28.759µs +ts=2025-05-22T06:52:02Z caller=logging.go:85 method=Health result=2 took=37.859µs +ts=2025-05-22T06:52:02Z caller=logging.go:85 method=Health result=2 took=57.858µs +ts=2025-05-22T06:52:05Z caller=logging.go:85 method=Health result=2 took=40.67µs +ts=2025-05-22T06:52:05Z caller=logging.go:85 method=Health result=2 took=49.699µs +ts=2025-05-22T06:52:08Z caller=logging.go:85 method=Health result=2 took=29.47µs +ts=2025-05-22T06:52:08Z caller=logging.go:85 method=Health result=2 took=55.409µs +ts=2025-05-22T06:52:11Z caller=logging.go:85 method=Health result=2 took=39.419µs +ts=2025-05-22T06:52:11Z caller=logging.go:85 method=Health result=2 took=25.119µs +ts=2025-05-22T06:52:14Z caller=logging.go:85 method=Health result=2 took=44.218µs +ts=2025-05-22T06:52:14Z caller=logging.go:85 method=Health result=2 took=50.269µs +ts=2025-05-22T06:52:17Z caller=logging.go:85 method=Health result=2 took=46.428µs +ts=2025-05-22T06:52:17Z caller=logging.go:85 method=Health result=2 took=17.579µs +ts=2025-05-22T06:52:20Z caller=logging.go:85 method=Health result=2 took=35.739µs +ts=2025-05-22T06:52:20Z caller=logging.go:85 method=Health result=2 took=54.649µs +ts=2025-05-22T06:52:23Z caller=logging.go:85 method=Health result=2 took=39.969µs +ts=2025-05-22T06:52:23Z caller=logging.go:85 method=Health result=2 took=28.499µs +ts=2025-05-22T06:52:26Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T06:52:26Z caller=logging.go:85 method=Health result=2 took=42.929µs +ts=2025-05-22T06:52:29Z caller=logging.go:85 method=Health result=2 took=39.999µs +ts=2025-05-22T06:52:29Z caller=logging.go:85 method=Health result=2 took=39.999µs +ts=2025-05-22T06:52:32Z caller=logging.go:85 method=Health result=2 took=32.279µs +ts=2025-05-22T06:52:32Z caller=logging.go:85 method=Health result=2 took=43.749µs +ts=2025-05-22T06:52:35Z caller=logging.go:85 method=Health result=2 took=47.809µs +ts=2025-05-22T06:52:35Z caller=logging.go:85 method=Health result=2 took=51.479µs +ts=2025-05-22T06:52:38Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T06:52:38Z caller=logging.go:85 method=Health result=2 took=52.338µs +ts=2025-05-22T06:52:41Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T06:52:41Z caller=logging.go:85 method=Health result=2 took=43.339µs +ts=2025-05-22T06:52:44Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T06:52:44Z caller=logging.go:85 method=Health result=2 took=49.169µs +ts=2025-05-22T06:52:47Z caller=logging.go:85 method=Health result=2 took=40.529µs +ts=2025-05-22T06:52:47Z caller=logging.go:85 method=Health result=2 took=40.069µs +ts=2025-05-22T06:52:50Z caller=logging.go:85 method=Health result=2 took=32.429µs +ts=2025-05-22T06:52:50Z caller=logging.go:85 method=Health result=2 took=46.199µs +ts=2025-05-22T06:52:53Z caller=logging.go:85 method=Health result=2 took=26.859µs +ts=2025-05-22T06:52:53Z caller=logging.go:85 method=Health result=2 took=27.289µs +ts=2025-05-22T06:52:56Z caller=logging.go:85 method=Health result=2 took=44.069µs +ts=2025-05-22T06:52:56Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T06:52:59Z caller=logging.go:85 method=Health result=2 took=41.159µs +ts=2025-05-22T06:52:59Z caller=logging.go:85 method=Health result=2 took=49.249µs +ts=2025-05-22T06:53:02Z caller=logging.go:85 method=Health result=2 took=43.659µs +ts=2025-05-22T06:53:02Z caller=logging.go:85 method=Health result=2 took=44.249µs +ts=2025-05-22T06:53:05Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T06:53:05Z caller=logging.go:85 method=Health result=2 took=48.979µs +ts=2025-05-22T06:53:08Z caller=logging.go:85 method=Health result=2 took=40.689µs +ts=2025-05-22T06:53:08Z caller=logging.go:85 method=Health result=2 took=62.908µs +ts=2025-05-22T06:53:11Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T06:53:11Z caller=logging.go:85 method=Health result=2 took=50.219µs +ts=2025-05-22T06:53:14Z caller=logging.go:85 method=Health result=2 took=42.468µs +ts=2025-05-22T06:53:14Z caller=logging.go:85 method=Health result=2 took=50.449µs +ts=2025-05-22T06:53:17Z caller=logging.go:85 method=Health result=2 took=29.18µs +ts=2025-05-22T06:53:17Z caller=logging.go:85 method=Health result=2 took=13.83µs +ts=2025-05-22T06:53:20Z caller=logging.go:85 method=Health result=2 took=31.199µs +ts=2025-05-22T06:53:20Z caller=logging.go:85 method=Health result=2 took=47.919µs +ts=2025-05-22T06:53:23Z caller=logging.go:85 method=Health result=2 took=38.529µs +ts=2025-05-22T06:53:23Z caller=logging.go:85 method=Health result=2 took=38.609µs +ts=2025-05-22T06:53:26Z caller=logging.go:85 method=Health result=2 took=32.209µs +ts=2025-05-22T06:53:26Z caller=logging.go:85 method=Health result=2 took=42.799µs +ts=2025-05-22T06:53:29Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T06:53:29Z caller=logging.go:85 method=Health result=2 took=49.479µs +ts=2025-05-22T06:53:32Z caller=logging.go:85 method=Health result=2 took=28.679µs +ts=2025-05-22T06:53:32Z caller=logging.go:85 method=Health result=2 took=12.61µs +ts=2025-05-22T06:53:35Z caller=logging.go:85 method=Health result=2 took=40.479µs +ts=2025-05-22T06:53:35Z caller=logging.go:85 method=Health result=2 took=42.689µs +ts=2025-05-22T06:53:38Z caller=logging.go:85 method=Health result=2 took=58.279µs +ts=2025-05-22T06:53:38Z caller=logging.go:85 method=Health result=2 took=58.249µs +ts=2025-05-22T06:53:41Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T06:53:41Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T06:53:44Z caller=logging.go:85 method=Health result=2 took=43.909µs +ts=2025-05-22T06:53:44Z caller=logging.go:85 method=Health result=2 took=50.479µs +ts=2025-05-22T06:53:47Z caller=logging.go:85 method=Health result=2 took=40.409µs +ts=2025-05-22T06:53:47Z caller=logging.go:85 method=Health result=2 took=41.189µs +ts=2025-05-22T06:53:50Z caller=logging.go:85 method=Health result=2 took=43.599µs +ts=2025-05-22T06:53:50Z caller=logging.go:85 method=Health result=2 took=43.749µs +ts=2025-05-22T06:53:53Z caller=logging.go:85 method=Health result=2 took=29.139µs +ts=2025-05-22T06:53:53Z caller=logging.go:85 method=Health result=2 took=14.209µs +ts=2025-05-22T06:53:56Z caller=logging.go:85 method=Health result=2 took=50.449µs +ts=2025-05-22T06:53:56Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T06:53:59Z caller=logging.go:85 method=Health result=2 took=29µs +ts=2025-05-22T06:53:59Z caller=logging.go:85 method=Health result=2 took=28.99µs +ts=2025-05-22T06:54:02Z caller=logging.go:85 method=Health result=2 took=12.91µs +ts=2025-05-22T06:54:02Z caller=logging.go:85 method=Health result=2 took=36.699µs +ts=2025-05-22T06:54:05Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T06:54:05Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T06:54:08Z caller=logging.go:85 method=Health result=2 took=46.208µs +ts=2025-05-22T06:54:08Z caller=logging.go:85 method=Health result=2 took=47.419µs +ts=2025-05-22T06:54:11Z caller=logging.go:85 method=Health result=2 took=40.919µs +ts=2025-05-22T06:54:11Z caller=logging.go:85 method=Health result=2 took=41.919µs +ts=2025-05-22T06:54:14Z caller=logging.go:85 method=Health result=2 took=45.379µs +ts=2025-05-22T06:54:14Z caller=logging.go:85 method=Health result=2 took=50.068µs +ts=2025-05-22T06:54:17Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T06:54:17Z caller=logging.go:85 method=Health result=2 took=24.25µs +ts=2025-05-22T06:54:20Z caller=logging.go:85 method=Health result=2 took=29.299µs +ts=2025-05-22T06:54:20Z caller=logging.go:85 method=Health result=2 took=13.109µs +ts=2025-05-22T06:54:23Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T06:54:23Z caller=logging.go:85 method=Health result=2 took=42.659µs +ts=2025-05-22T06:54:26Z caller=logging.go:85 method=Health result=2 took=46.859µs +ts=2025-05-22T06:54:26Z caller=logging.go:85 method=Health result=2 took=51.099µs +ts=2025-05-22T06:54:29Z caller=logging.go:85 method=Health result=2 took=43.739µs +ts=2025-05-22T06:54:29Z caller=logging.go:85 method=Health result=2 took=42.379µs +ts=2025-05-22T06:54:32Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T06:54:32Z caller=logging.go:85 method=Health result=2 took=53.589µs +ts=2025-05-22T06:54:35Z caller=logging.go:85 method=Health result=2 took=30.71µs +ts=2025-05-22T06:54:35Z caller=logging.go:85 method=Health result=2 took=46.889µs +ts=2025-05-22T06:54:38Z caller=logging.go:85 method=Health result=2 took=31.749µs +ts=2025-05-22T06:54:38Z caller=logging.go:85 method=Health result=2 took=48.539µs +ts=2025-05-22T06:54:41Z caller=logging.go:85 method=Health result=2 took=44.509µs +ts=2025-05-22T06:54:41Z caller=logging.go:85 method=Health result=2 took=50.849µs +ts=2025-05-22T06:54:44Z caller=logging.go:85 method=Health result=2 took=45.549µs +ts=2025-05-22T06:54:44Z caller=logging.go:85 method=Health result=2 took=50.978µs +ts=2025-05-22T06:54:47Z caller=logging.go:85 method=Health result=2 took=38.719µs +ts=2025-05-22T06:54:47Z caller=logging.go:85 method=Health result=2 took=17.45µs +ts=2025-05-22T06:54:50Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T06:54:50Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T06:54:53Z caller=logging.go:85 method=Health result=2 took=42.039µs +ts=2025-05-22T06:54:53Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T06:54:56Z caller=logging.go:85 method=Health result=2 took=45.949µs +ts=2025-05-22T06:54:56Z caller=logging.go:85 method=Health result=2 took=48.519µs +ts=2025-05-22T06:54:59Z caller=logging.go:85 method=Health result=2 took=41.699µs +ts=2025-05-22T06:54:59Z caller=logging.go:85 method=Health result=2 took=42.749µs +ts=2025-05-22T06:55:02Z caller=logging.go:85 method=Health result=2 took=44.399µs +ts=2025-05-22T06:55:02Z caller=logging.go:85 method=Health result=2 took=54.868µs +ts=2025-05-22T06:55:05Z caller=logging.go:85 method=Health result=2 took=44.839µs +ts=2025-05-22T06:55:05Z caller=logging.go:85 method=Health result=2 took=50.719µs +ts=2025-05-22T06:55:08Z caller=logging.go:85 method=Health result=2 took=36.14µs +ts=2025-05-22T06:55:08Z caller=logging.go:85 method=Health result=2 took=24.049µs +ts=2025-05-22T06:55:11Z caller=logging.go:85 method=Health result=2 took=36.559µs +ts=2025-05-22T06:55:11Z caller=logging.go:85 method=Health result=2 took=36.989µs +ts=2025-05-22T06:55:14Z caller=logging.go:85 method=Health result=2 took=42.339µs +ts=2025-05-22T06:55:14Z caller=logging.go:85 method=Health result=2 took=58.998µs +ts=2025-05-22T06:55:17Z caller=logging.go:85 method=Health result=2 took=34.579µs +ts=2025-05-22T06:55:17Z caller=logging.go:85 method=Health result=2 took=46.579µs +ts=2025-05-22T06:55:20Z caller=logging.go:85 method=Health result=2 took=37.569µs +ts=2025-05-22T06:55:20Z caller=logging.go:85 method=Health result=2 took=37.379µs +ts=2025-05-22T06:55:23Z caller=logging.go:85 method=Health result=2 took=44.869µs +ts=2025-05-22T06:55:23Z caller=logging.go:85 method=Health result=2 took=52.188µs +ts=2025-05-22T06:55:26Z caller=logging.go:85 method=Health result=2 took=40.859µs +ts=2025-05-22T06:55:26Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T06:55:29Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T06:55:29Z caller=logging.go:85 method=Health result=2 took=24.13µs +ts=2025-05-22T06:55:32Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T06:55:32Z caller=logging.go:85 method=Health result=2 took=43.739µs +ts=2025-05-22T06:55:35Z caller=logging.go:85 method=Health result=2 took=30.059µs +ts=2025-05-22T06:55:35Z caller=logging.go:85 method=Health result=2 took=29.999µs +ts=2025-05-22T06:55:38Z caller=logging.go:85 method=Health result=2 took=57.999µs +ts=2025-05-22T06:55:38Z caller=logging.go:85 method=Health result=2 took=25.399µs +ts=2025-05-22T06:55:41Z caller=logging.go:85 method=Health result=2 took=45.369µs +ts=2025-05-22T06:55:41Z caller=logging.go:85 method=Health result=2 took=49.788µs +ts=2025-05-22T06:55:44Z caller=logging.go:85 method=Health result=2 took=45.429µs +ts=2025-05-22T06:55:44Z caller=logging.go:85 method=Health result=2 took=48.908µs +ts=2025-05-22T06:55:47Z caller=logging.go:85 method=Health result=2 took=40.419µs +ts=2025-05-22T06:55:47Z caller=logging.go:85 method=Health result=2 took=39.909µs +ts=2025-05-22T06:55:50Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T06:55:50Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T06:55:53Z caller=logging.go:85 method=Health result=2 took=39.929µs +ts=2025-05-22T06:55:53Z caller=logging.go:85 method=Health result=2 took=39.609µs +ts=2025-05-22T06:55:56Z caller=logging.go:85 method=Health result=2 took=41.979µs +ts=2025-05-22T06:55:56Z caller=logging.go:85 method=Health result=2 took=49.539µs +ts=2025-05-22T06:55:59Z caller=logging.go:85 method=Health result=2 took=35.799µs +ts=2025-05-22T06:55:59Z caller=logging.go:85 method=Health result=2 took=35.629µs +ts=2025-05-22T06:56:02Z caller=logging.go:85 method=Health result=2 took=69.579µs +ts=2025-05-22T06:56:02Z caller=logging.go:85 method=Health result=2 took=72.498µs +ts=2025-05-22T06:56:05Z caller=logging.go:85 method=Health result=2 took=44.049µs +ts=2025-05-22T06:56:05Z caller=logging.go:85 method=Health result=2 took=49.889µs +ts=2025-05-22T06:56:08Z caller=logging.go:85 method=Health result=2 took=44.639µs +ts=2025-05-22T06:56:08Z caller=logging.go:85 method=Health result=2 took=50.089µs +ts=2025-05-22T06:56:11Z caller=logging.go:85 method=Health result=2 took=43.929µs +ts=2025-05-22T06:56:11Z caller=logging.go:85 method=Health result=2 took=31.7µs +ts=2025-05-22T06:56:14Z caller=logging.go:85 method=Health result=2 took=45.399µs +ts=2025-05-22T06:56:14Z caller=logging.go:85 method=Health result=2 took=46.409µs +ts=2025-05-22T06:56:17Z caller=logging.go:85 method=Health result=2 took=32.289µs +ts=2025-05-22T06:56:17Z caller=logging.go:85 method=Health result=2 took=81.018µs +ts=2025-05-22T06:56:20Z caller=logging.go:85 method=Health result=2 took=46.309µs +ts=2025-05-22T06:56:20Z caller=logging.go:85 method=Health result=2 took=39.879µs +ts=2025-05-22T06:56:23Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T06:56:23Z caller=logging.go:85 method=Health result=2 took=42.779µs +ts=2025-05-22T06:56:26Z caller=logging.go:85 method=Health result=2 took=33.349µs +ts=2025-05-22T06:56:26Z caller=logging.go:85 method=Health result=2 took=48.019µs +ts=2025-05-22T06:56:29Z caller=logging.go:85 method=Health result=2 took=36.559µs +ts=2025-05-22T06:56:29Z caller=logging.go:85 method=Health result=2 took=16.59µs +ts=2025-05-22T06:56:32Z caller=logging.go:85 method=Health result=2 took=39.519µs +ts=2025-05-22T06:56:32Z caller=logging.go:85 method=Health result=2 took=39.789µs +ts=2025-05-22T06:56:35Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T06:56:35Z caller=logging.go:85 method=Health result=2 took=63.159µs +ts=2025-05-22T06:56:38Z caller=logging.go:85 method=Health result=2 took=46.659µs +ts=2025-05-22T06:56:38Z caller=logging.go:85 method=Health result=2 took=48.369µs +ts=2025-05-22T06:56:41Z caller=logging.go:85 method=Health result=2 took=41.989µs +ts=2025-05-22T06:56:41Z caller=logging.go:85 method=Health result=2 took=40.219µs +ts=2025-05-22T06:56:44Z caller=logging.go:85 method=Health result=2 took=44.269µs +ts=2025-05-22T06:56:44Z caller=logging.go:85 method=Health result=2 took=39.679µs +ts=2025-05-22T06:56:47Z caller=logging.go:85 method=Health result=2 took=45.019µs +ts=2025-05-22T06:56:47Z caller=logging.go:85 method=Health result=2 took=46.159µs +ts=2025-05-22T06:56:50Z caller=logging.go:85 method=Health result=2 took=43.789µs +ts=2025-05-22T06:56:50Z caller=logging.go:85 method=Health result=2 took=30.45µs +ts=2025-05-22T06:56:53Z caller=logging.go:85 method=Health result=2 took=43.749µs +ts=2025-05-22T06:56:53Z caller=logging.go:85 method=Health result=2 took=43.329µs +ts=2025-05-22T06:56:56Z caller=logging.go:85 method=Health result=2 took=30.349µs +ts=2025-05-22T06:56:56Z caller=logging.go:85 method=Health result=2 took=16.07µs +ts=2025-05-22T06:56:59Z caller=logging.go:85 method=Health result=2 took=36.289µs +ts=2025-05-22T06:56:59Z caller=logging.go:85 method=Health result=2 took=36.919µs +ts=2025-05-22T06:57:02Z caller=logging.go:85 method=Health result=2 took=39.11µs +ts=2025-05-22T06:57:02Z caller=logging.go:85 method=Health result=2 took=51.628µs +ts=2025-05-22T06:57:05Z caller=logging.go:85 method=Health result=2 took=53.568µs +ts=2025-05-22T06:57:05Z caller=logging.go:85 method=Health result=2 took=53.418µs +ts=2025-05-22T06:57:08Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T06:57:08Z caller=logging.go:85 method=Health result=2 took=42.849µs +ts=2025-05-22T06:57:11Z caller=logging.go:85 method=Health result=2 took=39.339µs +ts=2025-05-22T06:57:11Z caller=logging.go:85 method=Health result=2 took=47.508µs +ts=2025-05-22T06:57:14Z caller=logging.go:85 method=Health result=2 took=33.899µs +ts=2025-05-22T06:57:14Z caller=logging.go:85 method=Health result=2 took=44.139µs +ts=2025-05-22T06:57:17Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T06:57:17Z caller=logging.go:85 method=Health result=2 took=51.429µs +ts=2025-05-22T06:57:20Z caller=logging.go:85 method=Health result=2 took=45.308µs +ts=2025-05-22T06:57:20Z caller=logging.go:85 method=Health result=2 took=45.519µs +ts=2025-05-22T06:57:23Z caller=logging.go:85 method=Health result=2 took=44.749µs +ts=2025-05-22T06:57:23Z caller=logging.go:85 method=Health result=2 took=47.999µs +ts=2025-05-22T06:57:26Z caller=logging.go:85 method=Health result=2 took=39.419µs +ts=2025-05-22T06:57:26Z caller=logging.go:85 method=Health result=2 took=38.859µs +ts=2025-05-22T06:57:29Z caller=logging.go:85 method=Health result=2 took=40.349µs +ts=2025-05-22T06:57:29Z caller=logging.go:85 method=Health result=2 took=28.22µs +ts=2025-05-22T06:57:32Z caller=logging.go:85 method=Health result=2 took=42.559µs +ts=2025-05-22T06:57:32Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T06:57:35Z caller=logging.go:85 method=Health result=2 took=41.899µs +ts=2025-05-22T06:57:35Z caller=logging.go:85 method=Health result=2 took=48.849µs +ts=2025-05-22T06:57:38Z caller=logging.go:85 method=Health result=2 took=44.448µs +ts=2025-05-22T06:57:38Z caller=logging.go:85 method=Health result=2 took=48.779µs +ts=2025-05-22T06:57:41Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T06:57:41Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T06:57:44Z caller=logging.go:85 method=Health result=2 took=43.818µs +ts=2025-05-22T06:57:44Z caller=logging.go:85 method=Health result=2 took=30.27µs +ts=2025-05-22T06:57:47Z caller=logging.go:85 method=Health result=2 took=32.249µs +ts=2025-05-22T06:57:47Z caller=logging.go:85 method=Health result=2 took=47.568µs +ts=2025-05-22T06:57:50Z caller=logging.go:85 method=Health result=2 took=29.91µs +ts=2025-05-22T06:57:50Z caller=logging.go:85 method=Health result=2 took=46.939µs +ts=2025-05-22T06:57:53Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T06:57:53Z caller=logging.go:85 method=Health result=2 took=49.428µs +ts=2025-05-22T06:57:56Z caller=logging.go:85 method=Health result=2 took=31.889µs +ts=2025-05-22T06:57:56Z caller=logging.go:85 method=Health result=2 took=14.26µs +ts=2025-05-22T06:57:59Z caller=logging.go:85 method=Health result=2 took=43.399µs +ts=2025-05-22T06:57:59Z caller=logging.go:85 method=Health result=2 took=41.719µs +ts=2025-05-22T06:58:02Z caller=logging.go:85 method=Health result=2 took=40.539µs +ts=2025-05-22T06:58:02Z caller=logging.go:85 method=Health result=2 took=22.33µs +ts=2025-05-22T06:58:05Z caller=logging.go:85 method=Health result=2 took=14.9µs +ts=2025-05-22T06:58:05Z caller=logging.go:85 method=Health result=2 took=29.489µs +ts=2025-05-22T06:58:08Z caller=logging.go:85 method=Health result=2 took=37.049µs +ts=2025-05-22T06:58:08Z caller=logging.go:85 method=Health result=2 took=36.979µs +ts=2025-05-22T06:58:11Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T06:58:11Z caller=logging.go:85 method=Health result=2 took=38.219µs +ts=2025-05-22T06:58:14Z caller=logging.go:85 method=Health result=2 took=45.729µs +ts=2025-05-22T06:58:14Z caller=logging.go:85 method=Health result=2 took=47.099µs +ts=2025-05-22T06:58:17Z caller=logging.go:85 method=Health result=2 took=1.118684ms +ts=2025-05-22T06:58:17Z caller=logging.go:85 method=Health result=2 took=87.798µs +ts=2025-05-22T06:58:20Z caller=logging.go:85 method=Health result=2 took=40.879µs +ts=2025-05-22T06:58:20Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T06:58:23Z caller=logging.go:85 method=Health result=2 took=27.069µs +ts=2025-05-22T06:58:23Z caller=logging.go:85 method=Health result=2 took=61.229µs +ts=2025-05-22T06:58:26Z caller=logging.go:85 method=Health result=2 took=43.599µs +ts=2025-05-22T06:58:26Z caller=logging.go:85 method=Health result=2 took=49.259µs +ts=2025-05-22T06:58:29Z caller=logging.go:85 method=Health result=2 took=45.809µs +ts=2025-05-22T06:58:29Z caller=logging.go:85 method=Health result=2 took=47.339µs +ts=2025-05-22T06:58:32Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T06:58:32Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T06:58:35Z caller=logging.go:85 method=Health result=2 took=44.379µs +ts=2025-05-22T06:58:35Z caller=logging.go:85 method=Health result=2 took=50.169µs +ts=2025-05-22T06:58:38Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T06:58:38Z caller=logging.go:85 method=Health result=2 took=42.209µs +ts=2025-05-22T06:58:41Z caller=logging.go:85 method=Health result=2 took=42.499µs +ts=2025-05-22T06:58:41Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T06:58:44Z caller=logging.go:85 method=Health result=2 took=44.429µs +ts=2025-05-22T06:58:44Z caller=logging.go:85 method=Health result=2 took=52.198µs +ts=2025-05-22T06:58:47Z caller=logging.go:85 method=Health result=2 took=45.719µs +ts=2025-05-22T06:58:47Z caller=logging.go:85 method=Health result=2 took=48.529µs +ts=2025-05-22T06:58:50Z caller=logging.go:85 method=Health result=2 took=28.309µs +ts=2025-05-22T06:58:50Z caller=logging.go:85 method=Health result=2 took=28.349µs +ts=2025-05-22T06:58:53Z caller=logging.go:85 method=Health result=2 took=39.319µs +ts=2025-05-22T06:58:53Z caller=logging.go:85 method=Health result=2 took=24.619µs +ts=2025-05-22T06:58:56Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T06:58:56Z caller=logging.go:85 method=Health result=2 took=52.788µs +ts=2025-05-22T06:58:59Z caller=logging.go:85 method=Health result=2 took=38.22µs +ts=2025-05-22T06:58:59Z caller=logging.go:85 method=Health result=2 took=38.3µs +ts=2025-05-22T06:59:02Z caller=logging.go:85 method=Health result=2 took=41.479µs +ts=2025-05-22T06:59:02Z caller=logging.go:85 method=Health result=2 took=24.269µs +ts=2025-05-22T06:59:05Z caller=logging.go:85 method=Health result=2 took=45.399µs +ts=2025-05-22T06:59:05Z caller=logging.go:85 method=Health result=2 took=52.569µs +ts=2025-05-22T06:59:08Z caller=logging.go:85 method=Health result=2 took=39.079µs +ts=2025-05-22T06:59:08Z caller=logging.go:85 method=Health result=2 took=37.509µs +ts=2025-05-22T06:59:11Z caller=logging.go:85 method=Health result=2 took=43.149µs +ts=2025-05-22T06:59:11Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T06:59:14Z caller=logging.go:85 method=Health result=2 took=46.389µs +ts=2025-05-22T06:59:14Z caller=logging.go:85 method=Health result=2 took=48.069µs +ts=2025-05-22T06:59:17Z caller=logging.go:85 method=Health result=2 took=40.309µs +ts=2025-05-22T06:59:17Z caller=logging.go:85 method=Health result=2 took=38.329µs +ts=2025-05-22T06:59:20Z caller=logging.go:85 method=Health result=2 took=30.149µs +ts=2025-05-22T06:59:20Z caller=logging.go:85 method=Health result=2 took=13.61µs +ts=2025-05-22T06:59:23Z caller=logging.go:85 method=Health result=2 took=34.019µs +ts=2025-05-22T06:59:23Z caller=logging.go:85 method=Health result=2 took=49.518µs +ts=2025-05-22T06:59:26Z caller=logging.go:85 method=Health result=2 took=40.669µs +ts=2025-05-22T06:59:26Z caller=logging.go:85 method=Health result=2 took=39.669µs +ts=2025-05-22T06:59:29Z caller=logging.go:85 method=Health result=2 took=46.839µs +ts=2025-05-22T06:59:29Z caller=logging.go:85 method=Health result=2 took=49.419µs +ts=2025-05-22T06:59:32Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T06:59:32Z caller=logging.go:85 method=Health result=2 took=43.189µs +ts=2025-05-22T06:59:35Z caller=logging.go:85 method=Health result=2 took=42.879µs +ts=2025-05-22T06:59:35Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T06:59:38Z caller=logging.go:85 method=Health result=2 took=40.319µs +ts=2025-05-22T06:59:38Z caller=logging.go:85 method=Health result=2 took=40.839µs +ts=2025-05-22T06:59:41Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T06:59:41Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T06:59:44Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T06:59:44Z caller=logging.go:85 method=Health result=2 took=42.319µs +ts=2025-05-22T06:59:47Z caller=logging.go:85 method=Health result=2 took=41.679µs +ts=2025-05-22T06:59:47Z caller=logging.go:85 method=Health result=2 took=38.219µs +ts=2025-05-22T06:59:50Z caller=logging.go:85 method=Health result=2 took=27.859µs +ts=2025-05-22T06:59:50Z caller=logging.go:85 method=Health result=2 took=28.819µs +ts=2025-05-22T06:59:53Z caller=logging.go:85 method=Health result=2 took=46.609µs +ts=2025-05-22T06:59:53Z caller=logging.go:85 method=Health result=2 took=45.519µs +ts=2025-05-22T06:59:56Z caller=logging.go:85 method=Health result=2 took=41.769µs +ts=2025-05-22T06:59:56Z caller=logging.go:85 method=Health result=2 took=46.719µs +ts=2025-05-22T06:59:59Z caller=logging.go:85 method=Health result=2 took=33.269µs +ts=2025-05-22T06:59:59Z caller=logging.go:85 method=Health result=2 took=46.609µs +ts=2025-05-22T07:00:02Z caller=logging.go:85 method=Health result=2 took=42.489µs +ts=2025-05-22T07:00:02Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T07:00:05Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T07:00:05Z caller=logging.go:85 method=Health result=2 took=45.759µs +ts=2025-05-22T07:00:08Z caller=logging.go:85 method=Health result=2 took=39.099µs +ts=2025-05-22T07:00:08Z caller=logging.go:85 method=Health result=2 took=38.729µs +ts=2025-05-22T07:00:11Z caller=logging.go:85 method=Health result=2 took=41.449µs +ts=2025-05-22T07:00:11Z caller=logging.go:85 method=Health result=2 took=42.449µs +ts=2025-05-22T07:00:14Z caller=logging.go:85 method=Health result=2 took=44.149µs +ts=2025-05-22T07:00:14Z caller=logging.go:85 method=Health result=2 took=54.298µs +ts=2025-05-22T07:00:17Z caller=logging.go:85 method=Health result=2 took=72.779µs +ts=2025-05-22T07:00:17Z caller=logging.go:85 method=Health result=2 took=44.209µs +ts=2025-05-22T07:00:20Z caller=logging.go:85 method=Health result=2 took=29.69µs +ts=2025-05-22T07:00:20Z caller=logging.go:85 method=Health result=2 took=30.01µs +ts=2025-05-22T07:00:23Z caller=logging.go:85 method=Health result=2 took=44.788µs +ts=2025-05-22T07:00:23Z caller=logging.go:85 method=Health result=2 took=49.379µs +ts=2025-05-22T07:00:26Z caller=logging.go:85 method=Health result=2 took=35.859µs +ts=2025-05-22T07:00:26Z caller=logging.go:85 method=Health result=2 took=35.879µs +ts=2025-05-22T07:00:29Z caller=logging.go:85 method=Health result=2 took=31.619µs +ts=2025-05-22T07:00:29Z caller=logging.go:85 method=Health result=2 took=40.149µs +ts=2025-05-22T07:00:32Z caller=logging.go:85 method=Health result=2 took=42.969µs +ts=2025-05-22T07:00:32Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T07:00:35Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T07:00:35Z caller=logging.go:85 method=Health result=2 took=49.729µs +ts=2025-05-22T07:00:38Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T07:00:38Z caller=logging.go:85 method=Health result=2 took=24.19µs +ts=2025-05-22T07:00:41Z caller=logging.go:85 method=Health result=2 took=42.399µs +ts=2025-05-22T07:00:41Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T07:00:44Z caller=logging.go:85 method=Health result=2 took=45.089µs +ts=2025-05-22T07:00:44Z caller=logging.go:85 method=Health result=2 took=50.489µs +ts=2025-05-22T07:00:47Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T07:00:47Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T07:00:50Z caller=logging.go:85 method=Health result=2 took=29.459µs +ts=2025-05-22T07:00:50Z caller=logging.go:85 method=Health result=2 took=41.739µs +ts=2025-05-22T07:00:53Z caller=logging.go:85 method=Health result=2 took=50.209µs +ts=2025-05-22T07:00:53Z caller=logging.go:85 method=Health result=2 took=50.909µs +ts=2025-05-22T07:00:56Z caller=logging.go:85 method=Health result=2 took=40.879µs +ts=2025-05-22T07:00:56Z caller=logging.go:85 method=Health result=2 took=40.079µs +ts=2025-05-22T07:00:59Z caller=logging.go:85 method=Health result=2 took=29.059µs +ts=2025-05-22T07:00:59Z caller=logging.go:85 method=Health result=2 took=28.949µs +ts=2025-05-22T07:01:02Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T07:01:02Z caller=logging.go:85 method=Health result=2 took=63.309µs +ts=2025-05-22T07:01:05Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T07:01:05Z caller=logging.go:85 method=Health result=2 took=49.509µs +ts=2025-05-22T07:01:08Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T07:01:08Z caller=logging.go:85 method=Health result=2 took=44.429µs +ts=2025-05-22T07:01:11Z caller=logging.go:85 method=Health result=2 took=39.919µs +ts=2025-05-22T07:01:11Z caller=logging.go:85 method=Health result=2 took=37.399µs +ts=2025-05-22T07:01:14Z caller=logging.go:85 method=Health result=2 took=44.489µs +ts=2025-05-22T07:01:14Z caller=logging.go:85 method=Health result=2 took=45.919µs +ts=2025-05-22T07:01:17Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T07:01:17Z caller=logging.go:85 method=Health result=2 took=39.519µs +ts=2025-05-22T07:01:20Z caller=logging.go:85 method=Health result=2 took=31.179µs +ts=2025-05-22T07:01:20Z caller=logging.go:85 method=Health result=2 took=33.189µs +ts=2025-05-22T07:01:23Z caller=logging.go:85 method=Health result=2 took=41.449µs +ts=2025-05-22T07:01:23Z caller=logging.go:85 method=Health result=2 took=25.52µs +ts=2025-05-22T07:01:26Z caller=logging.go:85 method=Health result=2 took=42.029µs +ts=2025-05-22T07:01:26Z caller=logging.go:85 method=Health result=2 took=49.978µs +ts=2025-05-22T07:01:29Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T07:01:29Z caller=logging.go:85 method=Health result=2 took=29.61µs +ts=2025-05-22T07:01:32Z caller=logging.go:85 method=Health result=2 took=41.299µs +ts=2025-05-22T07:01:32Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T07:01:35Z caller=logging.go:85 method=Health result=2 took=52.429µs +ts=2025-05-22T07:01:35Z caller=logging.go:85 method=Health result=2 took=48.819µs +ts=2025-05-22T07:01:38Z caller=logging.go:85 method=Health result=2 took=39.579µs +ts=2025-05-22T07:01:38Z caller=logging.go:85 method=Health result=2 took=26.719µs +ts=2025-05-22T07:01:41Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T07:01:41Z caller=logging.go:85 method=Health result=2 took=43.319µs +ts=2025-05-22T07:01:44Z caller=logging.go:85 method=Health result=2 took=45.049µs +ts=2025-05-22T07:01:44Z caller=logging.go:85 method=Health result=2 took=62.808µs +ts=2025-05-22T07:01:47Z caller=logging.go:85 method=Health result=2 took=42.879µs +ts=2025-05-22T07:01:47Z caller=logging.go:85 method=Health result=2 took=30.009µs +ts=2025-05-22T07:01:50Z caller=logging.go:85 method=Health result=2 took=45.209µs +ts=2025-05-22T07:01:50Z caller=logging.go:85 method=Health result=2 took=46.819µs +ts=2025-05-22T07:01:53Z caller=logging.go:85 method=Health result=2 took=40.439µs +ts=2025-05-22T07:01:53Z caller=logging.go:85 method=Health result=2 took=40.379µs +ts=2025-05-22T07:01:56Z caller=logging.go:85 method=Health result=2 took=45.369µs +ts=2025-05-22T07:01:56Z caller=logging.go:85 method=Health result=2 took=51.239µs +ts=2025-05-22T07:01:59Z caller=logging.go:85 method=Health result=2 took=37.309µs +ts=2025-05-22T07:01:59Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T07:02:02Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T07:02:02Z caller=logging.go:85 method=Health result=2 took=48.769µs +ts=2025-05-22T07:02:05Z caller=logging.go:85 method=Health result=2 took=40.929µs +ts=2025-05-22T07:02:05Z caller=logging.go:85 method=Health result=2 took=41.039µs +ts=2025-05-22T07:02:08Z caller=logging.go:85 method=Health result=2 took=39.169µs +ts=2025-05-22T07:02:08Z caller=logging.go:85 method=Health result=2 took=36.199µs +ts=2025-05-22T07:02:11Z caller=logging.go:85 method=Health result=2 took=31.06µs +ts=2025-05-22T07:02:11Z caller=logging.go:85 method=Health result=2 took=50.918µs +ts=2025-05-22T07:02:14Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T07:02:14Z caller=logging.go:85 method=Health result=2 took=41.659µs +ts=2025-05-22T07:02:17Z caller=logging.go:85 method=Health result=2 took=95.377µs +ts=2025-05-22T07:02:17Z caller=logging.go:85 method=Health result=2 took=104.127µs +ts=2025-05-22T07:02:20Z caller=logging.go:85 method=Health result=2 took=43.639µs +ts=2025-05-22T07:02:20Z caller=logging.go:85 method=Health result=2 took=69.469µs +ts=2025-05-22T07:02:23Z caller=logging.go:85 method=Health result=2 took=41.309µs +ts=2025-05-22T07:02:23Z caller=logging.go:85 method=Health result=2 took=42.089µs +ts=2025-05-22T07:02:26Z caller=logging.go:85 method=Health result=2 took=40.889µs +ts=2025-05-22T07:02:26Z caller=logging.go:85 method=Health result=2 took=47.389µs +ts=2025-05-22T07:02:29Z caller=logging.go:85 method=Health result=2 took=43.748µs +ts=2025-05-22T07:02:29Z caller=logging.go:85 method=Health result=2 took=69.388µs +ts=2025-05-22T07:02:32Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T07:02:32Z caller=logging.go:85 method=Health result=2 took=30.66µs +ts=2025-05-22T07:02:35Z caller=logging.go:85 method=Health result=2 took=46.969µs +ts=2025-05-22T07:02:35Z caller=logging.go:85 method=Health result=2 took=42.079µs +ts=2025-05-22T07:02:38Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T07:02:38Z caller=logging.go:85 method=Health result=2 took=36.579µs +ts=2025-05-22T07:02:41Z caller=logging.go:85 method=Health result=2 took=42.509µs +ts=2025-05-22T07:02:41Z caller=logging.go:85 method=Health result=2 took=49.849µs +ts=2025-05-22T07:02:44Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T07:02:44Z caller=logging.go:85 method=Health result=2 took=48.049µs +ts=2025-05-22T07:02:47Z caller=logging.go:85 method=Health result=2 took=35.519µs +ts=2025-05-22T07:02:47Z caller=logging.go:85 method=Health result=2 took=35.589µs +ts=2025-05-22T07:02:50Z caller=logging.go:85 method=Health result=2 took=37.669µs +ts=2025-05-22T07:02:50Z caller=logging.go:85 method=Health result=2 took=47.609µs +ts=2025-05-22T07:02:53Z caller=logging.go:85 method=Health result=2 took=47.109µs +ts=2025-05-22T07:02:53Z caller=logging.go:85 method=Health result=2 took=47.799µs +ts=2025-05-22T07:02:56Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T07:02:56Z caller=logging.go:85 method=Health result=2 took=50.769µs +ts=2025-05-22T07:02:59Z caller=logging.go:85 method=Health result=2 took=43.349µs +ts=2025-05-22T07:02:59Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T07:03:02Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T07:03:02Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T07:03:05Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T07:03:05Z caller=logging.go:85 method=Health result=2 took=42.869µs +ts=2025-05-22T07:03:08Z caller=logging.go:85 method=Health result=2 took=44.689µs +ts=2025-05-22T07:03:08Z caller=logging.go:85 method=Health result=2 took=51.179µs +ts=2025-05-22T07:03:11Z caller=logging.go:85 method=Health result=2 took=42.189µs +ts=2025-05-22T07:03:11Z caller=logging.go:85 method=Health result=2 took=30.63µs +ts=2025-05-22T07:03:14Z caller=logging.go:85 method=Health result=2 took=43.418µs +ts=2025-05-22T07:03:14Z caller=logging.go:85 method=Health result=2 took=42.788µs +ts=2025-05-22T07:03:17Z caller=logging.go:85 method=Health result=2 took=46.469µs +ts=2025-05-22T07:03:17Z caller=logging.go:85 method=Health result=2 took=52.068µs +ts=2025-05-22T07:03:20Z caller=logging.go:85 method=Health result=2 took=43.019µs +ts=2025-05-22T07:03:20Z caller=logging.go:85 method=Health result=2 took=42.329µs +ts=2025-05-22T07:03:23Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T07:03:23Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T07:03:26Z caller=logging.go:85 method=Health result=2 took=45.258µs +ts=2025-05-22T07:03:26Z caller=logging.go:85 method=Health result=2 took=61.519µs +ts=2025-05-22T07:03:29Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T07:03:29Z caller=logging.go:85 method=Health result=2 took=35.069µs +ts=2025-05-22T07:03:32Z caller=logging.go:85 method=Health result=2 took=40.569µs +ts=2025-05-22T07:03:32Z caller=logging.go:85 method=Health result=2 took=41.359µs +ts=2025-05-22T07:03:35Z caller=logging.go:85 method=Health result=2 took=43.119µs +ts=2025-05-22T07:03:35Z caller=logging.go:85 method=Health result=2 took=34.8µs +ts=2025-05-22T07:03:38Z caller=logging.go:85 method=Health result=2 took=37.649µs +ts=2025-05-22T07:03:38Z caller=logging.go:85 method=Health result=2 took=48.149µs +ts=2025-05-22T07:03:41Z caller=logging.go:85 method=Health result=2 took=28.269µs +ts=2025-05-22T07:03:41Z caller=logging.go:85 method=Health result=2 took=27.069µs +ts=2025-05-22T07:03:44Z caller=logging.go:85 method=Health result=2 took=33.719µs +ts=2025-05-22T07:03:44Z caller=logging.go:85 method=Health result=2 took=48.768µs +ts=2025-05-22T07:03:47Z caller=logging.go:85 method=Health result=2 took=42.439µs +ts=2025-05-22T07:03:47Z caller=logging.go:85 method=Health result=2 took=36.569µs +ts=2025-05-22T07:03:50Z caller=logging.go:85 method=Health result=2 took=36.619µs +ts=2025-05-22T07:03:50Z caller=logging.go:85 method=Health result=2 took=36.589µs +ts=2025-05-22T07:03:53Z caller=logging.go:85 method=Health result=2 took=39.799µs +ts=2025-05-22T07:03:53Z caller=logging.go:85 method=Health result=2 took=39.909µs +ts=2025-05-22T07:03:56Z caller=logging.go:85 method=Health result=2 took=29.909µs +ts=2025-05-22T07:03:56Z caller=logging.go:85 method=Health result=2 took=47.679µs +ts=2025-05-22T07:03:59Z caller=logging.go:85 method=Health result=2 took=54.219µs +ts=2025-05-22T07:03:59Z caller=logging.go:85 method=Health result=2 took=24.979µs +ts=2025-05-22T07:04:02Z caller=logging.go:85 method=Health result=2 took=44.349µs +ts=2025-05-22T07:04:02Z caller=logging.go:85 method=Health result=2 took=45.869µs +ts=2025-05-22T07:04:05Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T07:04:05Z caller=logging.go:85 method=Health result=2 took=43.619µs +ts=2025-05-22T07:04:08Z caller=logging.go:85 method=Health result=2 took=32.849µs +ts=2025-05-22T07:04:08Z caller=logging.go:85 method=Health result=2 took=48.399µs +ts=2025-05-22T07:04:11Z caller=logging.go:85 method=Health result=2 took=46.079µs +ts=2025-05-22T07:04:11Z caller=logging.go:85 method=Health result=2 took=52.858µs +ts=2025-05-22T07:04:14Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T07:04:14Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T07:04:17Z caller=logging.go:85 method=Health result=2 took=49.538µs +ts=2025-05-22T07:04:17Z caller=logging.go:85 method=Health result=2 took=176.915µs +ts=2025-05-22T07:04:20Z caller=logging.go:85 method=Health result=2 took=23.239µs +ts=2025-05-22T07:04:20Z caller=logging.go:85 method=Health result=2 took=36.26µs +ts=2025-05-22T07:04:23Z caller=logging.go:85 method=Health result=2 took=46.409µs +ts=2025-05-22T07:04:23Z caller=logging.go:85 method=Health result=2 took=48.899µs +ts=2025-05-22T07:04:26Z caller=logging.go:85 method=Health result=2 took=44.859µs +ts=2025-05-22T07:04:26Z caller=logging.go:85 method=Health result=2 took=47.528µs +ts=2025-05-22T07:04:29Z caller=logging.go:85 method=Health result=2 took=50.519µs +ts=2025-05-22T07:04:29Z caller=logging.go:85 method=Health result=2 took=30.13µs +ts=2025-05-22T07:04:32Z caller=logging.go:85 method=Health result=2 took=43.379µs +ts=2025-05-22T07:04:32Z caller=logging.go:85 method=Health result=2 took=44.129µs +ts=2025-05-22T07:04:35Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T07:04:35Z caller=logging.go:85 method=Health result=2 took=47.018µs +ts=2025-05-22T07:04:38Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T07:04:38Z caller=logging.go:85 method=Health result=2 took=42.799µs +ts=2025-05-22T07:04:41Z caller=logging.go:85 method=Health result=2 took=55.649µs +ts=2025-05-22T07:04:41Z caller=logging.go:85 method=Health result=2 took=55.119µs +ts=2025-05-22T07:04:44Z caller=logging.go:85 method=Health result=2 took=54.318µs +ts=2025-05-22T07:04:44Z caller=logging.go:85 method=Health result=2 took=50.738µs +ts=2025-05-22T07:04:47Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T07:04:47Z caller=logging.go:85 method=Health result=2 took=30.14µs +ts=2025-05-22T07:04:50Z caller=logging.go:85 method=Health result=2 took=37.06µs +ts=2025-05-22T07:04:50Z caller=logging.go:85 method=Health result=2 took=48.389µs +ts=2025-05-22T07:04:53Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T07:04:53Z caller=logging.go:85 method=Health result=2 took=66.198µs +ts=2025-05-22T07:04:56Z caller=logging.go:85 method=Health result=2 took=39.599µs +ts=2025-05-22T07:04:56Z caller=logging.go:85 method=Health result=2 took=48.379µs +ts=2025-05-22T07:04:59Z caller=logging.go:85 method=Health result=2 took=39.299µs +ts=2025-05-22T07:04:59Z caller=logging.go:85 method=Health result=2 took=39.629µs +ts=2025-05-22T07:05:02Z caller=logging.go:85 method=Health result=2 took=54.729µs +ts=2025-05-22T07:05:02Z caller=logging.go:85 method=Health result=2 took=54.799µs +ts=2025-05-22T07:05:05Z caller=logging.go:85 method=Health result=2 took=36.129µs +ts=2025-05-22T07:05:05Z caller=logging.go:85 method=Health result=2 took=47.938µs +ts=2025-05-22T07:05:08Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T07:05:08Z caller=logging.go:85 method=Health result=2 took=60.849µs +ts=2025-05-22T07:05:11Z caller=logging.go:85 method=Health result=2 took=45.969µs +ts=2025-05-22T07:05:11Z caller=logging.go:85 method=Health result=2 took=47.959µs +ts=2025-05-22T07:05:14Z caller=logging.go:85 method=Health result=2 took=38.709µs +ts=2025-05-22T07:05:14Z caller=logging.go:85 method=Health result=2 took=38.059µs +ts=2025-05-22T07:05:17Z caller=logging.go:85 method=Health result=2 took=38.089µs +ts=2025-05-22T07:05:17Z caller=logging.go:85 method=Health result=2 took=35.709µs +ts=2025-05-22T07:05:20Z caller=logging.go:85 method=Health result=2 took=30.629µs +ts=2025-05-22T07:05:20Z caller=logging.go:85 method=Health result=2 took=33.759µs +ts=2025-05-22T07:05:23Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T07:05:23Z caller=logging.go:85 method=Health result=2 took=42.769µs +ts=2025-05-22T07:05:26Z caller=logging.go:85 method=Health result=2 took=50.838µs +ts=2025-05-22T07:05:26Z caller=logging.go:85 method=Health result=2 took=51.579µs +ts=2025-05-22T07:05:29Z caller=logging.go:85 method=Health result=2 took=52.169µs +ts=2025-05-22T07:05:29Z caller=logging.go:85 method=Health result=2 took=52.159µs +ts=2025-05-22T07:05:32Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T07:05:32Z caller=logging.go:85 method=Health result=2 took=66.949µs +ts=2025-05-22T07:05:35Z caller=logging.go:85 method=Health result=2 took=38.49µs +ts=2025-05-22T07:05:35Z caller=logging.go:85 method=Health result=2 took=39.03µs +ts=2025-05-22T07:05:38Z caller=logging.go:85 method=Health result=2 took=44.929µs +ts=2025-05-22T07:05:38Z caller=logging.go:85 method=Health result=2 took=44.129µs +ts=2025-05-22T07:05:41Z caller=logging.go:85 method=Health result=2 took=45.139µs +ts=2025-05-22T07:05:41Z caller=logging.go:85 method=Health result=2 took=50.899µs +ts=2025-05-22T07:05:44Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T07:05:44Z caller=logging.go:85 method=Health result=2 took=48.399µs +ts=2025-05-22T07:05:47Z caller=logging.go:85 method=Health result=2 took=44.769µs +ts=2025-05-22T07:05:47Z caller=logging.go:85 method=Health result=2 took=103.728µs +ts=2025-05-22T07:05:50Z caller=logging.go:85 method=Health result=2 took=37.96µs +ts=2025-05-22T07:05:50Z caller=logging.go:85 method=Health result=2 took=22.899µs +ts=2025-05-22T07:05:53Z caller=logging.go:85 method=Health result=2 took=43.789µs +ts=2025-05-22T07:05:53Z caller=logging.go:85 method=Health result=2 took=49.719µs +ts=2025-05-22T07:05:56Z caller=logging.go:85 method=Health result=2 took=43.749µs +ts=2025-05-22T07:05:56Z caller=logging.go:85 method=Health result=2 took=50.948µs +ts=2025-05-22T07:05:59Z caller=logging.go:85 method=Health result=2 took=42.469µs +ts=2025-05-22T07:05:59Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T07:06:02Z caller=logging.go:85 method=Health result=2 took=46.029µs +ts=2025-05-22T07:06:02Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T07:06:05Z caller=logging.go:85 method=Health result=2 took=42.969µs +ts=2025-05-22T07:06:05Z caller=logging.go:85 method=Health result=2 took=50.339µs +ts=2025-05-22T07:06:08Z caller=logging.go:85 method=Health result=2 took=45.008µs +ts=2025-05-22T07:06:08Z caller=logging.go:85 method=Health result=2 took=42.179µs +ts=2025-05-22T07:06:11Z caller=logging.go:85 method=Health result=2 took=42.489µs +ts=2025-05-22T07:06:11Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T07:06:14Z caller=logging.go:85 method=Health result=2 took=41.729µs +ts=2025-05-22T07:06:14Z caller=logging.go:85 method=Health result=2 took=42.139µs +ts=2025-05-22T07:06:17Z caller=logging.go:85 method=Health result=2 took=44.279µs +ts=2025-05-22T07:06:17Z caller=logging.go:85 method=Health result=2 took=61.208µs +ts=2025-05-22T07:06:20Z caller=logging.go:85 method=Health result=2 took=30.459µs +ts=2025-05-22T07:06:20Z caller=logging.go:85 method=Health result=2 took=46.679µs +ts=2025-05-22T07:06:23Z caller=logging.go:85 method=Health result=2 took=52.439µs +ts=2025-05-22T07:06:23Z caller=logging.go:85 method=Health result=2 took=48.689µs +ts=2025-05-22T07:06:26Z caller=logging.go:85 method=Health result=2 took=44.869µs +ts=2025-05-22T07:06:26Z caller=logging.go:85 method=Health result=2 took=50.199µs +ts=2025-05-22T07:06:29Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T07:06:29Z caller=logging.go:85 method=Health result=2 took=41.079µs +ts=2025-05-22T07:06:32Z caller=logging.go:85 method=Health result=2 took=45.529µs +ts=2025-05-22T07:06:32Z caller=logging.go:85 method=Health result=2 took=51.969µs +ts=2025-05-22T07:06:35Z caller=logging.go:85 method=Health result=2 took=33.789µs +ts=2025-05-22T07:06:35Z caller=logging.go:85 method=Health result=2 took=44.619µs +ts=2025-05-22T07:06:38Z caller=logging.go:85 method=Health result=2 took=41.899µs +ts=2025-05-22T07:06:38Z caller=logging.go:85 method=Health result=2 took=50.198µs +ts=2025-05-22T07:06:41Z caller=logging.go:85 method=Health result=2 took=44.898µs +ts=2025-05-22T07:06:41Z caller=logging.go:85 method=Health result=2 took=59.138µs +ts=2025-05-22T07:06:44Z caller=logging.go:85 method=Health result=2 took=34.199µs +ts=2025-05-22T07:06:44Z caller=logging.go:85 method=Health result=2 took=46.799µs +ts=2025-05-22T07:06:47Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T07:06:47Z caller=logging.go:85 method=Health result=2 took=43.349µs +ts=2025-05-22T07:06:50Z caller=logging.go:85 method=Health result=2 took=40.009µs +ts=2025-05-22T07:06:50Z caller=logging.go:85 method=Health result=2 took=66.459µs +ts=2025-05-22T07:06:53Z caller=logging.go:85 method=Health result=2 took=28.3µs +ts=2025-05-22T07:06:53Z caller=logging.go:85 method=Health result=2 took=28.4µs +ts=2025-05-22T07:06:56Z caller=logging.go:85 method=Health result=2 took=28.919µs +ts=2025-05-22T07:06:56Z caller=logging.go:85 method=Health result=2 took=28.859µs +ts=2025-05-22T07:06:59Z caller=logging.go:85 method=Health result=2 took=36.869µs +ts=2025-05-22T07:06:59Z caller=logging.go:85 method=Health result=2 took=36.349µs +ts=2025-05-22T07:07:02Z caller=logging.go:85 method=Health result=2 took=29.41µs +ts=2025-05-22T07:07:02Z caller=logging.go:85 method=Health result=2 took=67.688µs +ts=2025-05-22T07:07:05Z caller=logging.go:85 method=Health result=2 took=34.72µs +ts=2025-05-22T07:07:05Z caller=logging.go:85 method=Health result=2 took=32.17µs +ts=2025-05-22T07:07:08Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T07:07:08Z caller=logging.go:85 method=Health result=2 took=46.679µs +ts=2025-05-22T07:07:11Z caller=logging.go:85 method=Health result=2 took=46.659µs +ts=2025-05-22T07:07:11Z caller=logging.go:85 method=Health result=2 took=48.779µs +ts=2025-05-22T07:07:14Z caller=logging.go:85 method=Health result=2 took=29.309µs +ts=2025-05-22T07:07:14Z caller=logging.go:85 method=Health result=2 took=29.279µs +ts=2025-05-22T07:07:17Z caller=logging.go:85 method=Health result=2 took=30.63µs +ts=2025-05-22T07:07:17Z caller=logging.go:85 method=Health result=2 took=69.708µs +ts=2025-05-22T07:07:20Z caller=logging.go:85 method=Health result=2 took=36.269µs +ts=2025-05-22T07:07:20Z caller=logging.go:85 method=Health result=2 took=35.979µs +ts=2025-05-22T07:07:23Z caller=logging.go:85 method=Health result=2 took=31.2µs +ts=2025-05-22T07:07:23Z caller=logging.go:85 method=Health result=2 took=14.289µs +ts=2025-05-22T07:07:26Z caller=logging.go:85 method=Health result=2 took=44.129µs +ts=2025-05-22T07:07:26Z caller=logging.go:85 method=Health result=2 took=43.909µs +ts=2025-05-22T07:07:29Z caller=logging.go:85 method=Health result=2 took=35.729µs +ts=2025-05-22T07:07:29Z caller=logging.go:85 method=Health result=2 took=25.169µs +ts=2025-05-22T07:07:32Z caller=logging.go:85 method=Health result=2 took=52.779µs +ts=2025-05-22T07:07:32Z caller=logging.go:85 method=Health result=2 took=34.409µs +ts=2025-05-22T07:07:35Z caller=logging.go:85 method=Health result=2 took=42.319µs +ts=2025-05-22T07:07:35Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T07:07:38Z caller=logging.go:85 method=Health result=2 took=43.959µs +ts=2025-05-22T07:07:38Z caller=logging.go:85 method=Health result=2 took=43.369µs +ts=2025-05-22T07:07:41Z caller=logging.go:85 method=Health result=2 took=43.159µs +ts=2025-05-22T07:07:41Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T07:07:44Z caller=logging.go:85 method=Health result=2 took=41.409µs +ts=2025-05-22T07:07:44Z caller=logging.go:85 method=Health result=2 took=50.789µs +ts=2025-05-22T07:07:47Z caller=logging.go:85 method=Health result=2 took=42.679µs +ts=2025-05-22T07:07:47Z caller=logging.go:85 method=Health result=2 took=42.049µs +ts=2025-05-22T07:07:50Z caller=logging.go:85 method=Health result=2 took=23.919µs +ts=2025-05-22T07:07:50Z caller=logging.go:85 method=Health result=2 took=36.179µs +ts=2025-05-22T07:07:53Z caller=logging.go:85 method=Health result=2 took=42.089µs +ts=2025-05-22T07:07:53Z caller=logging.go:85 method=Health result=2 took=65.489µs +ts=2025-05-22T07:07:56Z caller=logging.go:85 method=Health result=2 took=44.428µs +ts=2025-05-22T07:07:56Z caller=logging.go:85 method=Health result=2 took=43.948µs +ts=2025-05-22T07:07:59Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T07:07:59Z caller=logging.go:85 method=Health result=2 took=43.419µs +ts=2025-05-22T07:08:02Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T07:08:02Z caller=logging.go:85 method=Health result=2 took=52.239µs +ts=2025-05-22T07:08:05Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T07:08:05Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T07:08:08Z caller=logging.go:85 method=Health result=2 took=37.709µs +ts=2025-05-22T07:08:08Z caller=logging.go:85 method=Health result=2 took=47.919µs +ts=2025-05-22T07:08:11Z caller=logging.go:85 method=Health result=2 took=29.03µs +ts=2025-05-22T07:08:11Z caller=logging.go:85 method=Health result=2 took=28.94µs +ts=2025-05-22T07:08:14Z caller=logging.go:85 method=Health result=2 took=38.719µs +ts=2025-05-22T07:08:14Z caller=logging.go:85 method=Health result=2 took=38.419µs +ts=2025-05-22T07:08:17Z caller=logging.go:85 method=Health result=2 took=38.789µs +ts=2025-05-22T07:08:17Z caller=logging.go:85 method=Health result=2 took=44.439µs +ts=2025-05-22T07:08:20Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T07:08:20Z caller=logging.go:85 method=Health result=2 took=67.098µs +ts=2025-05-22T07:08:23Z caller=logging.go:85 method=Health result=2 took=39.049µs +ts=2025-05-22T07:08:23Z caller=logging.go:85 method=Health result=2 took=38.649µs +ts=2025-05-22T07:08:26Z caller=logging.go:85 method=Health result=2 took=39.879µs +ts=2025-05-22T07:08:26Z caller=logging.go:85 method=Health result=2 took=40.099µs +ts=2025-05-22T07:08:29Z caller=logging.go:85 method=Health result=2 took=45.389µs +ts=2025-05-22T07:08:29Z caller=logging.go:85 method=Health result=2 took=72.698µs +ts=2025-05-22T07:08:32Z caller=logging.go:85 method=Health result=2 took=43.019µs +ts=2025-05-22T07:08:32Z caller=logging.go:85 method=Health result=2 took=44.939µs +ts=2025-05-22T07:08:35Z caller=logging.go:85 method=Health result=2 took=46.118µs +ts=2025-05-22T07:08:35Z caller=logging.go:85 method=Health result=2 took=46.108µs +ts=2025-05-22T07:08:38Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T07:08:38Z caller=logging.go:85 method=Health result=2 took=48.049µs +ts=2025-05-22T07:08:41Z caller=logging.go:85 method=Health result=2 took=44.799µs +ts=2025-05-22T07:08:41Z caller=logging.go:85 method=Health result=2 took=79.868µs +ts=2025-05-22T07:08:44Z caller=logging.go:85 method=Health result=2 took=55.319µs +ts=2025-05-22T07:08:44Z caller=logging.go:85 method=Health result=2 took=55.339µs +ts=2025-05-22T07:08:47Z caller=logging.go:85 method=Health result=2 took=38.539µs +ts=2025-05-22T07:08:47Z caller=logging.go:85 method=Health result=2 took=38.889µs +ts=2025-05-22T07:08:50Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T07:08:50Z caller=logging.go:85 method=Health result=2 took=39.109µs +ts=2025-05-22T07:08:53Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T07:08:53Z caller=logging.go:85 method=Health result=2 took=39.379µs +ts=2025-05-22T07:08:56Z caller=logging.go:85 method=Health result=2 took=45.529µs +ts=2025-05-22T07:08:56Z caller=logging.go:85 method=Health result=2 took=48.748µs +ts=2025-05-22T07:08:59Z caller=logging.go:85 method=Health result=2 took=55.378µs +ts=2025-05-22T07:08:59Z caller=logging.go:85 method=Health result=2 took=48.459µs +ts=2025-05-22T07:09:02Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T07:09:02Z caller=logging.go:85 method=Health result=2 took=46.819µs +ts=2025-05-22T07:09:05Z caller=logging.go:85 method=Health result=2 took=44.319µs +ts=2025-05-22T07:09:05Z caller=logging.go:85 method=Health result=2 took=35.969µs +ts=2025-05-22T07:09:08Z caller=logging.go:85 method=Health result=2 took=45.469µs +ts=2025-05-22T07:09:08Z caller=logging.go:85 method=Health result=2 took=48.448µs +ts=2025-05-22T07:09:11Z caller=logging.go:85 method=Health result=2 took=38.26µs +ts=2025-05-22T07:09:11Z caller=logging.go:85 method=Health result=2 took=44.179µs +ts=2025-05-22T07:09:14Z caller=logging.go:85 method=Health result=2 took=44.769µs +ts=2025-05-22T07:09:14Z caller=logging.go:85 method=Health result=2 took=31.37µs +ts=2025-05-22T07:09:17Z caller=logging.go:85 method=Health result=2 took=59.049µs +ts=2025-05-22T07:09:17Z caller=logging.go:85 method=Health result=2 took=59.079µs +ts=2025-05-22T07:09:20Z caller=logging.go:85 method=Health result=2 took=57.229µs +ts=2025-05-22T07:09:20Z caller=logging.go:85 method=Health result=2 took=57.249µs +ts=2025-05-22T07:09:23Z caller=logging.go:85 method=Health result=2 took=36.139µs +ts=2025-05-22T07:09:23Z caller=logging.go:85 method=Health result=2 took=36.779µs +ts=2025-05-22T07:09:26Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T07:09:26Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T07:09:29Z caller=logging.go:85 method=Health result=2 took=52.508µs +ts=2025-05-22T07:09:29Z caller=logging.go:85 method=Health result=2 took=32.369µs +ts=2025-05-22T07:09:32Z caller=logging.go:85 method=Health result=2 took=47.119µs +ts=2025-05-22T07:09:32Z caller=logging.go:85 method=Health result=2 took=52.029µs +ts=2025-05-22T07:09:35Z caller=logging.go:85 method=Health result=2 took=39.719µs +ts=2025-05-22T07:09:35Z caller=logging.go:85 method=Health result=2 took=36.34µs +ts=2025-05-22T07:09:38Z caller=logging.go:85 method=Health result=2 took=28.719µs +ts=2025-05-22T07:09:38Z caller=logging.go:85 method=Health result=2 took=28.699µs +ts=2025-05-22T07:09:41Z caller=logging.go:85 method=Health result=2 took=66.509µs +ts=2025-05-22T07:09:41Z caller=logging.go:85 method=Health result=2 took=50.638µs +ts=2025-05-22T07:09:44Z caller=logging.go:85 method=Health result=2 took=30.979µs +ts=2025-05-22T07:09:44Z caller=logging.go:85 method=Health result=2 took=53.499µs +ts=2025-05-22T07:09:47Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T07:09:47Z caller=logging.go:85 method=Health result=2 took=49.049µs +ts=2025-05-22T07:09:50Z caller=logging.go:85 method=Health result=2 took=30.18µs +ts=2025-05-22T07:09:50Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T07:09:53Z caller=logging.go:85 method=Health result=2 took=40.759µs +ts=2025-05-22T07:09:53Z caller=logging.go:85 method=Health result=2 took=47.329µs +ts=2025-05-22T07:09:56Z caller=logging.go:85 method=Health result=2 took=39.489µs +ts=2025-05-22T07:09:56Z caller=logging.go:85 method=Health result=2 took=39.489µs +ts=2025-05-22T07:09:59Z caller=logging.go:85 method=Health result=2 took=45.359µs +ts=2025-05-22T07:09:59Z caller=logging.go:85 method=Health result=2 took=48.449µs +ts=2025-05-22T07:10:02Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T07:10:02Z caller=logging.go:85 method=Health result=2 took=31.78µs +ts=2025-05-22T07:10:05Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T07:10:05Z caller=logging.go:85 method=Health result=2 took=39.779µs +ts=2025-05-22T07:10:08Z caller=logging.go:85 method=Health result=2 took=30.239µs +ts=2025-05-22T07:10:08Z caller=logging.go:85 method=Health result=2 took=32.359µs +ts=2025-05-22T07:10:11Z caller=logging.go:85 method=Health result=2 took=43.379µs +ts=2025-05-22T07:10:11Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T07:10:14Z caller=logging.go:85 method=Health result=2 took=43.619µs +ts=2025-05-22T07:10:14Z caller=logging.go:85 method=Health result=2 took=52.439µs +ts=2025-05-22T07:10:17Z caller=logging.go:85 method=Health result=2 took=120.487µs +ts=2025-05-22T07:10:17Z caller=logging.go:85 method=Health result=2 took=85.518µs +ts=2025-05-22T07:10:20Z caller=logging.go:85 method=Health result=2 took=48.439µs +ts=2025-05-22T07:10:20Z caller=logging.go:85 method=Health result=2 took=30.26µs +ts=2025-05-22T07:10:23Z caller=logging.go:85 method=Health result=2 took=45.938µs +ts=2025-05-22T07:10:23Z caller=logging.go:85 method=Health result=2 took=49.918µs +ts=2025-05-22T07:10:26Z caller=logging.go:85 method=Health result=2 took=41.199µs +ts=2025-05-22T07:10:26Z caller=logging.go:85 method=Health result=2 took=48.749µs +ts=2025-05-22T07:10:29Z caller=logging.go:85 method=Health result=2 took=41.259µs +ts=2025-05-22T07:10:29Z caller=logging.go:85 method=Health result=2 took=48.869µs +ts=2025-05-22T07:10:32Z caller=logging.go:85 method=Health result=2 took=44.509µs +ts=2025-05-22T07:10:32Z caller=logging.go:85 method=Health result=2 took=97.457µs +ts=2025-05-22T07:10:35Z caller=logging.go:85 method=Health result=2 took=43.969µs +ts=2025-05-22T07:10:35Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T07:10:38Z caller=logging.go:85 method=Health result=2 took=52.709µs +ts=2025-05-22T07:10:38Z caller=logging.go:85 method=Health result=2 took=52.049µs +ts=2025-05-22T07:10:41Z caller=logging.go:85 method=Health result=2 took=43.589µs +ts=2025-05-22T07:10:41Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T07:10:44Z caller=logging.go:85 method=Health result=2 took=55.759µs +ts=2025-05-22T07:10:44Z caller=logging.go:85 method=Health result=2 took=57.659µs +ts=2025-05-22T07:10:47Z caller=logging.go:85 method=Health result=2 took=33.81µs +ts=2025-05-22T07:10:47Z caller=logging.go:85 method=Health result=2 took=15.629µs +ts=2025-05-22T07:10:50Z caller=logging.go:85 method=Health result=2 took=47.429µs +ts=2025-05-22T07:10:50Z caller=logging.go:85 method=Health result=2 took=47.419µs +ts=2025-05-22T07:10:53Z caller=logging.go:85 method=Health result=2 took=45.449µs +ts=2025-05-22T07:10:53Z caller=logging.go:85 method=Health result=2 took=49.758µs +ts=2025-05-22T07:10:56Z caller=logging.go:85 method=Health result=2 took=37.23µs +ts=2025-05-22T07:10:56Z caller=logging.go:85 method=Health result=2 took=39.95µs +ts=2025-05-22T07:10:59Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T07:10:59Z caller=logging.go:85 method=Health result=2 took=50.019µs +ts=2025-05-22T07:11:02Z caller=logging.go:85 method=Health result=2 took=38.149µs +ts=2025-05-22T07:11:02Z caller=logging.go:85 method=Health result=2 took=47.489µs +ts=2025-05-22T07:11:05Z caller=logging.go:85 method=Health result=2 took=46.059µs +ts=2025-05-22T07:11:05Z caller=logging.go:85 method=Health result=2 took=49.289µs +ts=2025-05-22T07:11:08Z caller=logging.go:85 method=Health result=2 took=40.549µs +ts=2025-05-22T07:11:08Z caller=logging.go:85 method=Health result=2 took=40.819µs +ts=2025-05-22T07:11:11Z caller=logging.go:85 method=Health result=2 took=42.799µs +ts=2025-05-22T07:11:11Z caller=logging.go:85 method=Health result=2 took=48.178µs +ts=2025-05-22T07:11:14Z caller=logging.go:85 method=Health result=2 took=39.379µs +ts=2025-05-22T07:11:14Z caller=logging.go:85 method=Health result=2 took=45.279µs +ts=2025-05-22T07:11:17Z caller=logging.go:85 method=Health result=2 took=41.249µs +ts=2025-05-22T07:11:17Z caller=logging.go:85 method=Health result=2 took=49.569µs +ts=2025-05-22T07:11:20Z caller=logging.go:85 method=Health result=2 took=41.749µs +ts=2025-05-22T07:11:20Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T07:11:23Z caller=logging.go:85 method=Health result=2 took=42.469µs +ts=2025-05-22T07:11:23Z caller=logging.go:85 method=Health result=2 took=49.389µs +ts=2025-05-22T07:11:26Z caller=logging.go:85 method=Health result=2 took=38.019µs +ts=2025-05-22T07:11:26Z caller=logging.go:85 method=Health result=2 took=39.279µs +ts=2025-05-22T07:11:29Z caller=logging.go:85 method=Health result=2 took=39.929µs +ts=2025-05-22T07:11:29Z caller=logging.go:85 method=Health result=2 took=41.019µs +ts=2025-05-22T07:11:32Z caller=logging.go:85 method=Health result=2 took=43.789µs +ts=2025-05-22T07:11:32Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T07:11:35Z caller=logging.go:85 method=Health result=2 took=39.949µs +ts=2025-05-22T07:11:35Z caller=logging.go:85 method=Health result=2 took=39.539µs +ts=2025-05-22T07:11:38Z caller=logging.go:85 method=Health result=2 took=44.499µs +ts=2025-05-22T07:11:38Z caller=logging.go:85 method=Health result=2 took=43.959µs +ts=2025-05-22T07:11:41Z caller=logging.go:85 method=Health result=2 took=37.53µs +ts=2025-05-22T07:11:41Z caller=logging.go:85 method=Health result=2 took=55.759µs +ts=2025-05-22T07:11:44Z caller=logging.go:85 method=Health result=2 took=39.879µs +ts=2025-05-22T07:11:44Z caller=logging.go:85 method=Health result=2 took=41.369µs +ts=2025-05-22T07:11:47Z caller=logging.go:85 method=Health result=2 took=38.859µs +ts=2025-05-22T07:11:47Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T07:11:50Z caller=logging.go:85 method=Health result=2 took=46.049µs +ts=2025-05-22T07:11:50Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T07:11:53Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T07:11:53Z caller=logging.go:85 method=Health result=2 took=49.299µs +ts=2025-05-22T07:11:56Z caller=logging.go:85 method=Health result=2 took=31.519µs +ts=2025-05-22T07:11:56Z caller=logging.go:85 method=Health result=2 took=46.649µs +ts=2025-05-22T07:11:59Z caller=logging.go:85 method=Health result=2 took=41.669µs +ts=2025-05-22T07:11:59Z caller=logging.go:85 method=Health result=2 took=33.58µs +ts=2025-05-22T07:12:02Z caller=logging.go:85 method=Health result=2 took=43.079µs +ts=2025-05-22T07:12:02Z caller=logging.go:85 method=Health result=2 took=44.219µs +ts=2025-05-22T07:12:05Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T07:12:05Z caller=logging.go:85 method=Health result=2 took=35.44µs +ts=2025-05-22T07:12:08Z caller=logging.go:85 method=Health result=2 took=44.778µs +ts=2025-05-22T07:12:08Z caller=logging.go:85 method=Health result=2 took=65.659µs +ts=2025-05-22T07:12:11Z caller=logging.go:85 method=Health result=2 took=42.859µs +ts=2025-05-22T07:12:11Z caller=logging.go:85 method=Health result=2 took=25.27µs +ts=2025-05-22T07:12:14Z caller=logging.go:85 method=Health result=2 took=41.269µs +ts=2025-05-22T07:12:14Z caller=logging.go:85 method=Health result=2 took=49.399µs +ts=2025-05-22T07:12:17Z caller=logging.go:85 method=Health result=2 took=39.179µs +ts=2025-05-22T07:12:17Z caller=logging.go:85 method=Health result=2 took=85.878µs +ts=2025-05-22T07:12:20Z caller=logging.go:85 method=Health result=2 took=35.069µs +ts=2025-05-22T07:12:20Z caller=logging.go:85 method=Health result=2 took=34.539µs +ts=2025-05-22T07:12:23Z caller=logging.go:85 method=Health result=2 took=55.759µs +ts=2025-05-22T07:12:23Z caller=logging.go:85 method=Health result=2 took=55.769µs +ts=2025-05-22T07:12:26Z caller=logging.go:85 method=Health result=2 took=34.809µs +ts=2025-05-22T07:12:26Z caller=logging.go:85 method=Health result=2 took=35.399µs +ts=2025-05-22T07:12:29Z caller=logging.go:85 method=Health result=2 took=33.709µs +ts=2025-05-22T07:12:29Z caller=logging.go:85 method=Health result=2 took=46.719µs +ts=2025-05-22T07:12:32Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T07:12:32Z caller=logging.go:85 method=Health result=2 took=50.308µs +ts=2025-05-22T07:12:35Z caller=logging.go:85 method=Health result=2 took=43.619µs +ts=2025-05-22T07:12:35Z caller=logging.go:85 method=Health result=2 took=35.759µs +ts=2025-05-22T07:12:38Z caller=logging.go:85 method=Health result=2 took=44.549µs +ts=2025-05-22T07:12:38Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T07:12:41Z caller=logging.go:85 method=Health result=2 took=29.199µs +ts=2025-05-22T07:12:41Z caller=logging.go:85 method=Health result=2 took=45.979µs +ts=2025-05-22T07:12:44Z caller=logging.go:85 method=Health result=2 took=46.779µs +ts=2025-05-22T07:12:44Z caller=logging.go:85 method=Health result=2 took=48.639µs +ts=2025-05-22T07:12:47Z caller=logging.go:85 method=Health result=2 took=29.05µs +ts=2025-05-22T07:12:47Z caller=logging.go:85 method=Health result=2 took=47.279µs +ts=2025-05-22T07:12:50Z caller=logging.go:85 method=Health result=2 took=45.169µs +ts=2025-05-22T07:12:50Z caller=logging.go:85 method=Health result=2 took=43.399µs +ts=2025-05-22T07:12:53Z caller=logging.go:85 method=Health result=2 took=45.029µs +ts=2025-05-22T07:12:53Z caller=logging.go:85 method=Health result=2 took=49.799µs +ts=2025-05-22T07:12:56Z caller=logging.go:85 method=Health result=2 took=45.309µs +ts=2025-05-22T07:12:56Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T07:12:59Z caller=logging.go:85 method=Health result=2 took=36.729µs +ts=2025-05-22T07:12:59Z caller=logging.go:85 method=Health result=2 took=36.689µs +ts=2025-05-22T07:13:02Z caller=logging.go:85 method=Health result=2 took=28.939µs +ts=2025-05-22T07:13:02Z caller=logging.go:85 method=Health result=2 took=28.939µs +ts=2025-05-22T07:13:05Z caller=logging.go:85 method=Health result=2 took=31.059µs +ts=2025-05-22T07:13:05Z caller=logging.go:85 method=Health result=2 took=47.628µs +ts=2025-05-22T07:13:08Z caller=logging.go:85 method=Health result=2 took=45.399µs +ts=2025-05-22T07:13:08Z caller=logging.go:85 method=Health result=2 took=50.558µs +ts=2025-05-22T07:13:11Z caller=logging.go:85 method=Health result=2 took=44.969µs +ts=2025-05-22T07:13:11Z caller=logging.go:85 method=Health result=2 took=57.109µs +ts=2025-05-22T07:13:14Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T07:13:14Z caller=logging.go:85 method=Health result=2 took=22.669µs +ts=2025-05-22T07:13:17Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T07:13:17Z caller=logging.go:85 method=Health result=2 took=43.259µs +ts=2025-05-22T07:13:20Z caller=logging.go:85 method=Health result=2 took=26.869µs +ts=2025-05-22T07:13:20Z caller=logging.go:85 method=Health result=2 took=28.169µs +ts=2025-05-22T07:13:23Z caller=logging.go:85 method=Health result=2 took=41.309µs +ts=2025-05-22T07:13:23Z caller=logging.go:85 method=Health result=2 took=41.779µs +ts=2025-05-22T07:13:26Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T07:13:26Z caller=logging.go:85 method=Health result=2 took=18.569µs +ts=2025-05-22T07:13:29Z caller=logging.go:85 method=Health result=2 took=40.749µs +ts=2025-05-22T07:13:29Z caller=logging.go:85 method=Health result=2 took=45.759µs +ts=2025-05-22T07:13:32Z caller=logging.go:85 method=Health result=2 took=45.059µs +ts=2025-05-22T07:13:32Z caller=logging.go:85 method=Health result=2 took=47.999µs +ts=2025-05-22T07:13:35Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T07:13:35Z caller=logging.go:85 method=Health result=2 took=41.879µs +ts=2025-05-22T07:13:38Z caller=logging.go:85 method=Health result=2 took=45.669µs +ts=2025-05-22T07:13:38Z caller=logging.go:85 method=Health result=2 took=44.379µs +ts=2025-05-22T07:13:41Z caller=logging.go:85 method=Health result=2 took=43.489µs +ts=2025-05-22T07:13:41Z caller=logging.go:85 method=Health result=2 took=44.049µs +ts=2025-05-22T07:13:44Z caller=logging.go:85 method=Health result=2 took=42.209µs +ts=2025-05-22T07:13:44Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T07:13:47Z caller=logging.go:85 method=Health result=2 took=38.899µs +ts=2025-05-22T07:13:47Z caller=logging.go:85 method=Health result=2 took=38.229µs +ts=2025-05-22T07:13:50Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T07:13:50Z caller=logging.go:85 method=Health result=2 took=34.679µs +ts=2025-05-22T07:13:53Z caller=logging.go:85 method=Health result=2 took=45.238µs +ts=2025-05-22T07:13:53Z caller=logging.go:85 method=Health result=2 took=47.899µs +ts=2025-05-22T07:13:56Z caller=logging.go:85 method=Health result=2 took=44.889µs +ts=2025-05-22T07:13:56Z caller=logging.go:85 method=Health result=2 took=49.589µs +ts=2025-05-22T07:13:59Z caller=logging.go:85 method=Health result=2 took=42.319µs +ts=2025-05-22T07:13:59Z caller=logging.go:85 method=Health result=2 took=40.579µs +ts=2025-05-22T07:14:02Z caller=logging.go:85 method=Health result=2 took=42.499µs +ts=2025-05-22T07:14:02Z caller=logging.go:85 method=Health result=2 took=57.708µs +ts=2025-05-22T07:14:05Z caller=logging.go:85 method=Health result=2 took=43.769µs +ts=2025-05-22T07:14:05Z caller=logging.go:85 method=Health result=2 took=44.019µs +ts=2025-05-22T07:14:08Z caller=logging.go:85 method=Health result=2 took=45.038µs +ts=2025-05-22T07:14:08Z caller=logging.go:85 method=Health result=2 took=50.129µs +ts=2025-05-22T07:14:11Z caller=logging.go:85 method=Health result=2 took=45.789µs +ts=2025-05-22T07:14:11Z caller=logging.go:85 method=Health result=2 took=38.499µs +ts=2025-05-22T07:14:14Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T07:14:14Z caller=logging.go:85 method=Health result=2 took=44.309µs +ts=2025-05-22T07:14:17Z caller=logging.go:85 method=Health result=2 took=45.178µs +ts=2025-05-22T07:14:17Z caller=logging.go:85 method=Health result=2 took=77.108µs +ts=2025-05-22T07:14:20Z caller=logging.go:85 method=Health result=2 took=51.629µs +ts=2025-05-22T07:14:20Z caller=logging.go:85 method=Health result=2 took=51.619µs +ts=2025-05-22T07:14:23Z caller=logging.go:85 method=Health result=2 took=45.179µs +ts=2025-05-22T07:14:23Z caller=logging.go:85 method=Health result=2 took=48.189µs +ts=2025-05-22T07:14:26Z caller=logging.go:85 method=Health result=2 took=46.539µs +ts=2025-05-22T07:14:26Z caller=logging.go:85 method=Health result=2 took=58.159µs +ts=2025-05-22T07:14:29Z caller=logging.go:85 method=Health result=2 took=54.338µs +ts=2025-05-22T07:14:29Z caller=logging.go:85 method=Health result=2 took=27.949µs +ts=2025-05-22T07:14:32Z caller=logging.go:85 method=Health result=2 took=41.359µs +ts=2025-05-22T07:14:32Z caller=logging.go:85 method=Health result=2 took=50.239µs +ts=2025-05-22T07:14:35Z caller=logging.go:85 method=Health result=2 took=40.989µs +ts=2025-05-22T07:14:35Z caller=logging.go:85 method=Health result=2 took=49.438µs +ts=2025-05-22T07:14:38Z caller=logging.go:85 method=Health result=2 took=45.109µs +ts=2025-05-22T07:14:38Z caller=logging.go:85 method=Health result=2 took=47.059µs +ts=2025-05-22T07:14:41Z caller=logging.go:85 method=Health result=2 took=46.069µs +ts=2025-05-22T07:14:41Z caller=logging.go:85 method=Health result=2 took=46.119µs +ts=2025-05-22T07:14:44Z caller=logging.go:85 method=Health result=2 took=42.769µs +ts=2025-05-22T07:14:44Z caller=logging.go:85 method=Health result=2 took=43.529µs +ts=2025-05-22T07:14:47Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T07:14:47Z caller=logging.go:85 method=Health result=2 took=38.169µs +ts=2025-05-22T07:14:50Z caller=logging.go:85 method=Health result=2 took=38.719µs +ts=2025-05-22T07:14:50Z caller=logging.go:85 method=Health result=2 took=43.928µs +ts=2025-05-22T07:14:53Z caller=logging.go:85 method=Health result=2 took=41.599µs +ts=2025-05-22T07:14:53Z caller=logging.go:85 method=Health result=2 took=48.939µs +ts=2025-05-22T07:14:56Z caller=logging.go:85 method=Health result=2 took=38.219µs +ts=2025-05-22T07:14:56Z caller=logging.go:85 method=Health result=2 took=34.549µs +ts=2025-05-22T07:14:59Z caller=logging.go:85 method=Health result=2 took=40.499µs +ts=2025-05-22T07:14:59Z caller=logging.go:85 method=Health result=2 took=20.27µs +ts=2025-05-22T07:15:02Z caller=logging.go:85 method=Health result=2 took=39.229µs +ts=2025-05-22T07:15:02Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T07:15:05Z caller=logging.go:85 method=Health result=2 took=40.159µs +ts=2025-05-22T07:15:05Z caller=logging.go:85 method=Health result=2 took=39.419µs +ts=2025-05-22T07:15:08Z caller=logging.go:85 method=Health result=2 took=37.529µs +ts=2025-05-22T07:15:08Z caller=logging.go:85 method=Health result=2 took=50.979µs +ts=2025-05-22T07:15:11Z caller=logging.go:85 method=Health result=2 took=51.149µs +ts=2025-05-22T07:15:11Z caller=logging.go:85 method=Health result=2 took=41.019µs +ts=2025-05-22T07:15:14Z caller=logging.go:85 method=Health result=2 took=32.199µs +ts=2025-05-22T07:15:14Z caller=logging.go:85 method=Health result=2 took=47.329µs +ts=2025-05-22T07:15:17Z caller=logging.go:85 method=Health result=2 took=42.849µs +ts=2025-05-22T07:15:17Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T07:15:20Z caller=logging.go:85 method=Health result=2 took=39.249µs +ts=2025-05-22T07:15:20Z caller=logging.go:85 method=Health result=2 took=62.578µs +ts=2025-05-22T07:15:23Z caller=logging.go:85 method=Health result=2 took=40.179µs +ts=2025-05-22T07:15:23Z caller=logging.go:85 method=Health result=2 took=40.189µs +ts=2025-05-22T07:15:26Z caller=logging.go:85 method=Health result=2 took=41.749µs +ts=2025-05-22T07:15:26Z caller=logging.go:85 method=Health result=2 took=50.129µs +ts=2025-05-22T07:15:29Z caller=logging.go:85 method=Health result=2 took=44.759µs +ts=2025-05-22T07:15:29Z caller=logging.go:85 method=Health result=2 took=45.289µs +ts=2025-05-22T07:15:32Z caller=logging.go:85 method=Health result=2 took=40.849µs +ts=2025-05-22T07:15:32Z caller=logging.go:85 method=Health result=2 took=40.759µs +ts=2025-05-22T07:15:35Z caller=logging.go:85 method=Health result=2 took=46.528µs +ts=2025-05-22T07:15:35Z caller=logging.go:85 method=Health result=2 took=49.879µs +ts=2025-05-22T07:15:38Z caller=logging.go:85 method=Health result=2 took=39.129µs +ts=2025-05-22T07:15:38Z caller=logging.go:85 method=Health result=2 took=38.849µs +ts=2025-05-22T07:15:41Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T07:15:41Z caller=logging.go:85 method=Health result=2 took=48.119µs +ts=2025-05-22T07:15:44Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T07:15:44Z caller=logging.go:85 method=Health result=2 took=38.219µs +ts=2025-05-22T07:15:47Z caller=logging.go:85 method=Health result=2 took=45.779µs +ts=2025-05-22T07:15:47Z caller=logging.go:85 method=Health result=2 took=51.828µs +ts=2025-05-22T07:15:50Z caller=logging.go:85 method=Health result=2 took=38.399µs +ts=2025-05-22T07:15:50Z caller=logging.go:85 method=Health result=2 took=39.569µs +ts=2025-05-22T07:15:53Z caller=logging.go:85 method=Health result=2 took=43.329µs +ts=2025-05-22T07:15:53Z caller=logging.go:85 method=Health result=2 took=44.299µs +ts=2025-05-22T07:15:56Z caller=logging.go:85 method=Health result=2 took=58.569µs +ts=2025-05-22T07:15:56Z caller=logging.go:85 method=Health result=2 took=65.928µs +ts=2025-05-22T07:15:59Z caller=logging.go:85 method=Health result=2 took=44.879µs +ts=2025-05-22T07:15:59Z caller=logging.go:85 method=Health result=2 took=51.018µs +ts=2025-05-22T07:16:02Z caller=logging.go:85 method=Health result=2 took=54.409µs +ts=2025-05-22T07:16:02Z caller=logging.go:85 method=Health result=2 took=30.879µs +ts=2025-05-22T07:16:05Z caller=logging.go:85 method=Health result=2 took=45.039µs +ts=2025-05-22T07:16:05Z caller=logging.go:85 method=Health result=2 took=47.689µs +ts=2025-05-22T07:16:08Z caller=logging.go:85 method=Health result=2 took=46.109µs +ts=2025-05-22T07:16:08Z caller=logging.go:85 method=Health result=2 took=48.059µs +ts=2025-05-22T07:16:11Z caller=logging.go:85 method=Health result=2 took=59.109µs +ts=2025-05-22T07:16:11Z caller=logging.go:85 method=Health result=2 took=21.729µs +ts=2025-05-22T07:16:14Z caller=logging.go:85 method=Health result=2 took=33.429µs +ts=2025-05-22T07:16:14Z caller=logging.go:85 method=Health result=2 took=47.079µs +ts=2025-05-22T07:16:17Z caller=logging.go:85 method=Health result=2 took=40.639µs +ts=2025-05-22T07:16:17Z caller=logging.go:85 method=Health result=2 took=41.029µs +ts=2025-05-22T07:16:20Z caller=logging.go:85 method=Health result=2 took=41.299µs +ts=2025-05-22T07:16:20Z caller=logging.go:85 method=Health result=2 took=45.589µs +ts=2025-05-22T07:16:23Z caller=logging.go:85 method=Health result=2 took=44.229µs +ts=2025-05-22T07:16:23Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T07:16:26Z caller=logging.go:85 method=Health result=2 took=51.989µs +ts=2025-05-22T07:16:26Z caller=logging.go:85 method=Health result=2 took=50.619µs +ts=2025-05-22T07:16:29Z caller=logging.go:85 method=Health result=2 took=41.809µs +ts=2025-05-22T07:16:29Z caller=logging.go:85 method=Health result=2 took=29.299µs +ts=2025-05-22T07:16:32Z caller=logging.go:85 method=Health result=2 took=40.729µs +ts=2025-05-22T07:16:32Z caller=logging.go:85 method=Health result=2 took=39.919µs +ts=2025-05-22T07:16:35Z caller=logging.go:85 method=Health result=2 took=34.969µs +ts=2025-05-22T07:16:35Z caller=logging.go:85 method=Health result=2 took=34.659µs +ts=2025-05-22T07:16:38Z caller=logging.go:85 method=Health result=2 took=43.699µs +ts=2025-05-22T07:16:38Z caller=logging.go:85 method=Health result=2 took=60.729µs +ts=2025-05-22T07:16:41Z caller=logging.go:85 method=Health result=2 took=41.849µs +ts=2025-05-22T07:16:41Z caller=logging.go:85 method=Health result=2 took=48.719µs +ts=2025-05-22T07:16:44Z caller=logging.go:85 method=Health result=2 took=32.299µs +ts=2025-05-22T07:16:44Z caller=logging.go:85 method=Health result=2 took=48.299µs +ts=2025-05-22T07:16:47Z caller=logging.go:85 method=Health result=2 took=39.619µs +ts=2025-05-22T07:16:47Z caller=logging.go:85 method=Health result=2 took=48.148µs +ts=2025-05-22T07:16:50Z caller=logging.go:85 method=Health result=2 took=29.319µs +ts=2025-05-22T07:16:50Z caller=logging.go:85 method=Health result=2 took=30.289µs +ts=2025-05-22T07:16:53Z caller=logging.go:85 method=Health result=2 took=31.78µs +ts=2025-05-22T07:16:53Z caller=logging.go:85 method=Health result=2 took=47.689µs +ts=2025-05-22T07:16:56Z caller=logging.go:85 method=Health result=2 took=40.499µs +ts=2025-05-22T07:16:56Z caller=logging.go:85 method=Health result=2 took=18.739µs +ts=2025-05-22T07:16:59Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T07:16:59Z caller=logging.go:85 method=Health result=2 took=54.058µs +ts=2025-05-22T07:17:02Z caller=logging.go:85 method=Health result=2 took=42.329µs +ts=2025-05-22T07:17:02Z caller=logging.go:85 method=Health result=2 took=49.369µs +ts=2025-05-22T07:17:05Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T07:17:05Z caller=logging.go:85 method=Health result=2 took=38.919µs +ts=2025-05-22T07:17:08Z caller=logging.go:85 method=Health result=2 took=32.17µs +ts=2025-05-22T07:17:08Z caller=logging.go:85 method=Health result=2 took=33.88µs +ts=2025-05-22T07:17:11Z caller=logging.go:85 method=Health result=2 took=44.759µs +ts=2025-05-22T07:17:11Z caller=logging.go:85 method=Health result=2 took=25.069µs +ts=2025-05-22T07:17:14Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T07:17:14Z caller=logging.go:85 method=Health result=2 took=49.549µs +ts=2025-05-22T07:17:17Z caller=logging.go:85 method=Health result=2 took=45.229µs +ts=2025-05-22T07:17:17Z caller=logging.go:85 method=Health result=2 took=51.708µs +ts=2025-05-22T07:17:20Z caller=logging.go:85 method=Health result=2 took=49.799µs +ts=2025-05-22T07:17:20Z caller=logging.go:85 method=Health result=2 took=22.73µs +ts=2025-05-22T07:17:23Z caller=logging.go:85 method=Health result=2 took=29.02µs +ts=2025-05-22T07:17:23Z caller=logging.go:85 method=Health result=2 took=14.679µs +ts=2025-05-22T07:17:26Z caller=logging.go:85 method=Health result=2 took=41.769µs +ts=2025-05-22T07:17:26Z caller=logging.go:85 method=Health result=2 took=49.869µs +ts=2025-05-22T07:17:29Z caller=logging.go:85 method=Health result=2 took=36.279µs +ts=2025-05-22T07:17:29Z caller=logging.go:85 method=Health result=2 took=25.36µs +ts=2025-05-22T07:17:32Z caller=logging.go:85 method=Health result=2 took=43.758µs +ts=2025-05-22T07:17:32Z caller=logging.go:85 method=Health result=2 took=52.538µs +ts=2025-05-22T07:17:35Z caller=logging.go:85 method=Health result=2 took=40.64µs +ts=2025-05-22T07:17:35Z caller=logging.go:85 method=Health result=2 took=40.77µs +ts=2025-05-22T07:17:38Z caller=logging.go:85 method=Health result=2 took=42.189µs +ts=2025-05-22T07:17:38Z caller=logging.go:85 method=Health result=2 took=46.629µs +ts=2025-05-22T07:17:41Z caller=logging.go:85 method=Health result=2 took=37.399µs +ts=2025-05-22T07:17:41Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T07:17:44Z caller=logging.go:85 method=Health result=2 took=38.409µs +ts=2025-05-22T07:17:44Z caller=logging.go:85 method=Health result=2 took=38.849µs +ts=2025-05-22T07:17:47Z caller=logging.go:85 method=Health result=2 took=44.079µs +ts=2025-05-22T07:17:47Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T07:17:50Z caller=logging.go:85 method=Health result=2 took=38.499µs +ts=2025-05-22T07:17:50Z caller=logging.go:85 method=Health result=2 took=48.139µs +ts=2025-05-22T07:17:53Z caller=logging.go:85 method=Health result=2 took=39.289µs +ts=2025-05-22T07:17:53Z caller=logging.go:85 method=Health result=2 took=29.269µs +ts=2025-05-22T07:17:56Z caller=logging.go:85 method=Health result=2 took=45.579µs +ts=2025-05-22T07:17:56Z caller=logging.go:85 method=Health result=2 took=38.019µs +ts=2025-05-22T07:17:59Z caller=logging.go:85 method=Health result=2 took=31.659µs +ts=2025-05-22T07:17:59Z caller=logging.go:85 method=Health result=2 took=47.269µs +ts=2025-05-22T07:18:02Z caller=logging.go:85 method=Health result=2 took=30.099µs +ts=2025-05-22T07:18:02Z caller=logging.go:85 method=Health result=2 took=30.089µs +ts=2025-05-22T07:18:05Z caller=logging.go:85 method=Health result=2 took=29.079µs +ts=2025-05-22T07:18:05Z caller=logging.go:85 method=Health result=2 took=28.509µs +ts=2025-05-22T07:18:08Z caller=logging.go:85 method=Health result=2 took=45.499µs +ts=2025-05-22T07:18:08Z caller=logging.go:85 method=Health result=2 took=76.738µs +ts=2025-05-22T07:18:11Z caller=logging.go:85 method=Health result=2 took=23.839µs +ts=2025-05-22T07:18:11Z caller=logging.go:85 method=Health result=2 took=38.029µs +ts=2025-05-22T07:18:14Z caller=logging.go:85 method=Health result=2 took=31.59µs +ts=2025-05-22T07:18:14Z caller=logging.go:85 method=Health result=2 took=42.039µs +ts=2025-05-22T07:18:17Z caller=logging.go:85 method=Health result=2 took=53.609µs +ts=2025-05-22T07:18:17Z caller=logging.go:85 method=Health result=2 took=60.868µs +ts=2025-05-22T07:18:20Z caller=logging.go:85 method=Health result=2 took=28.369µs +ts=2025-05-22T07:18:20Z caller=logging.go:85 method=Health result=2 took=28.429µs +ts=2025-05-22T07:18:23Z caller=logging.go:85 method=Health result=2 took=44.009µs +ts=2025-05-22T07:18:23Z caller=logging.go:85 method=Health result=2 took=43.159µs +ts=2025-05-22T07:18:26Z caller=logging.go:85 method=Health result=2 took=43.669µs +ts=2025-05-22T07:18:26Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T07:18:29Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T07:18:29Z caller=logging.go:85 method=Health result=2 took=48.939µs +ts=2025-05-22T07:18:32Z caller=logging.go:85 method=Health result=2 took=29.069µs +ts=2025-05-22T07:18:32Z caller=logging.go:85 method=Health result=2 took=29.129µs +ts=2025-05-22T07:18:35Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T07:18:35Z caller=logging.go:85 method=Health result=2 took=48.899µs +ts=2025-05-22T07:18:38Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T07:18:38Z caller=logging.go:85 method=Health result=2 took=44.219µs +ts=2025-05-22T07:18:41Z caller=logging.go:85 method=Health result=2 took=35.559µs +ts=2025-05-22T07:18:41Z caller=logging.go:85 method=Health result=2 took=35.429µs +ts=2025-05-22T07:18:44Z caller=logging.go:85 method=Health result=2 took=36.87µs +ts=2025-05-22T07:18:44Z caller=logging.go:85 method=Health result=2 took=36.84µs +ts=2025-05-22T07:18:47Z caller=logging.go:85 method=Health result=2 took=44.579µs +ts=2025-05-22T07:18:47Z caller=logging.go:85 method=Health result=2 took=48.889µs +ts=2025-05-22T07:18:50Z caller=logging.go:85 method=Health result=2 took=37.359µs +ts=2025-05-22T07:18:50Z caller=logging.go:85 method=Health result=2 took=45.789µs +ts=2025-05-22T07:18:53Z caller=logging.go:85 method=Health result=2 took=45.549µs +ts=2025-05-22T07:18:53Z caller=logging.go:85 method=Health result=2 took=31.069µs +ts=2025-05-22T07:18:56Z caller=logging.go:85 method=Health result=2 took=41.009µs +ts=2025-05-22T07:18:56Z caller=logging.go:85 method=Health result=2 took=41.529µs +ts=2025-05-22T07:18:59Z caller=logging.go:85 method=Health result=2 took=38.759µs +ts=2025-05-22T07:18:59Z caller=logging.go:85 method=Health result=2 took=49.489µs +ts=2025-05-22T07:19:02Z caller=logging.go:85 method=Health result=2 took=46.139µs +ts=2025-05-22T07:19:02Z caller=logging.go:85 method=Health result=2 took=48.099µs +ts=2025-05-22T07:19:05Z caller=logging.go:85 method=Health result=2 took=37.729µs +ts=2025-05-22T07:19:05Z caller=logging.go:85 method=Health result=2 took=38.899µs +ts=2025-05-22T07:19:08Z caller=logging.go:85 method=Health result=2 took=29.959µs +ts=2025-05-22T07:19:08Z caller=logging.go:85 method=Health result=2 took=47.209µs +ts=2025-05-22T07:19:11Z caller=logging.go:85 method=Health result=2 took=28.219µs +ts=2025-05-22T07:19:11Z caller=logging.go:85 method=Health result=2 took=28.189µs +ts=2025-05-22T07:19:14Z caller=logging.go:85 method=Health result=2 took=33.259µs +ts=2025-05-22T07:19:14Z caller=logging.go:85 method=Health result=2 took=48.399µs +ts=2025-05-22T07:19:17Z caller=logging.go:85 method=Health result=2 took=55.499µs +ts=2025-05-22T07:19:17Z caller=logging.go:85 method=Health result=2 took=40.669µs +ts=2025-05-22T07:19:20Z caller=logging.go:85 method=Health result=2 took=33.48µs +ts=2025-05-22T07:19:20Z caller=logging.go:85 method=Health result=2 took=39.169µs +ts=2025-05-22T07:19:23Z caller=logging.go:85 method=Health result=2 took=54.059µs +ts=2025-05-22T07:19:23Z caller=logging.go:85 method=Health result=2 took=42.899µs +ts=2025-05-22T07:19:26Z caller=logging.go:85 method=Health result=2 took=41.729µs +ts=2025-05-22T07:19:26Z caller=logging.go:85 method=Health result=2 took=36.89µs +ts=2025-05-22T07:19:29Z caller=logging.go:85 method=Health result=2 took=33.68µs +ts=2025-05-22T07:19:29Z caller=logging.go:85 method=Health result=2 took=43.519µs +ts=2025-05-22T07:19:32Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T07:19:32Z caller=logging.go:85 method=Health result=2 took=31.139µs +ts=2025-05-22T07:19:35Z caller=logging.go:85 method=Health result=2 took=30.179µs +ts=2025-05-22T07:19:35Z caller=logging.go:85 method=Health result=2 took=30.129µs +ts=2025-05-22T07:19:38Z caller=logging.go:85 method=Health result=2 took=43.469µs +ts=2025-05-22T07:19:38Z caller=logging.go:85 method=Health result=2 took=49.079µs +ts=2025-05-22T07:19:41Z caller=logging.go:85 method=Health result=2 took=43.369µs +ts=2025-05-22T07:19:41Z caller=logging.go:85 method=Health result=2 took=68.018µs +ts=2025-05-22T07:19:44Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T07:19:44Z caller=logging.go:85 method=Health result=2 took=28.28µs +ts=2025-05-22T07:19:47Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T07:19:47Z caller=logging.go:85 method=Health result=2 took=71.258µs +ts=2025-05-22T07:19:50Z caller=logging.go:85 method=Health result=2 took=30.319µs +ts=2025-05-22T07:19:50Z caller=logging.go:85 method=Health result=2 took=33.91µs +ts=2025-05-22T07:19:53Z caller=logging.go:85 method=Health result=2 took=57.458µs +ts=2025-05-22T07:19:53Z caller=logging.go:85 method=Health result=2 took=55.408µs +ts=2025-05-22T07:19:56Z caller=logging.go:85 method=Health result=2 took=29.169µs +ts=2025-05-22T07:19:56Z caller=logging.go:85 method=Health result=2 took=29.149µs +ts=2025-05-22T07:19:59Z caller=logging.go:85 method=Health result=2 took=39.959µs +ts=2025-05-22T07:19:59Z caller=logging.go:85 method=Health result=2 took=39.299µs +ts=2025-05-22T07:20:02Z caller=logging.go:85 method=Health result=2 took=40.049µs +ts=2025-05-22T07:20:02Z caller=logging.go:85 method=Health result=2 took=39.839µs +ts=2025-05-22T07:20:05Z caller=logging.go:85 method=Health result=2 took=41.829µs +ts=2025-05-22T07:20:05Z caller=logging.go:85 method=Health result=2 took=41.729µs +ts=2025-05-22T07:20:08Z caller=logging.go:85 method=Health result=2 took=41.249µs +ts=2025-05-22T07:20:08Z caller=logging.go:85 method=Health result=2 took=17.919µs +ts=2025-05-22T07:20:11Z caller=logging.go:85 method=Health result=2 took=31.189µs +ts=2025-05-22T07:20:11Z caller=logging.go:85 method=Health result=2 took=61.259µs +ts=2025-05-22T07:20:14Z caller=logging.go:85 method=Health result=2 took=31.029µs +ts=2025-05-22T07:20:14Z caller=logging.go:85 method=Health result=2 took=47.169µs +ts=2025-05-22T07:20:17Z caller=logging.go:85 method=Health result=2 took=51.309µs +ts=2025-05-22T07:20:17Z caller=logging.go:85 method=Health result=2 took=141.177µs +ts=2025-05-22T07:20:20Z caller=logging.go:85 method=Health result=2 took=35.729µs +ts=2025-05-22T07:20:20Z caller=logging.go:85 method=Health result=2 took=35.729µs +ts=2025-05-22T07:20:23Z caller=logging.go:85 method=Health result=2 took=41.699µs +ts=2025-05-22T07:20:23Z caller=logging.go:85 method=Health result=2 took=41.759µs +ts=2025-05-22T07:20:26Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T07:20:26Z caller=logging.go:85 method=Health result=2 took=48.269µs +ts=2025-05-22T07:20:29Z caller=logging.go:85 method=Health result=2 took=41.439µs +ts=2025-05-22T07:20:29Z caller=logging.go:85 method=Health result=2 took=10.33µs +ts=2025-05-22T07:20:32Z caller=logging.go:85 method=Health result=2 took=44.989µs +ts=2025-05-22T07:20:32Z caller=logging.go:85 method=Health result=2 took=49.679µs +ts=2025-05-22T07:20:35Z caller=logging.go:85 method=Health result=2 took=42.639µs +ts=2025-05-22T07:20:35Z caller=logging.go:85 method=Health result=2 took=46.549µs +ts=2025-05-22T07:20:38Z caller=logging.go:85 method=Health result=2 took=45.329µs +ts=2025-05-22T07:20:38Z caller=logging.go:85 method=Health result=2 took=48.569µs +ts=2025-05-22T07:20:41Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T07:20:41Z caller=logging.go:85 method=Health result=2 took=43.649µs +ts=2025-05-22T07:20:44Z caller=logging.go:85 method=Health result=2 took=42.959µs +ts=2025-05-22T07:20:44Z caller=logging.go:85 method=Health result=2 took=19.74µs +ts=2025-05-22T07:20:47Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T07:20:47Z caller=logging.go:85 method=Health result=2 took=51.208µs +ts=2025-05-22T07:20:50Z caller=logging.go:85 method=Health result=2 took=36.499µs +ts=2025-05-22T07:20:50Z caller=logging.go:85 method=Health result=2 took=36.009µs +ts=2025-05-22T07:20:53Z caller=logging.go:85 method=Health result=2 took=33.699µs +ts=2025-05-22T07:20:53Z caller=logging.go:85 method=Health result=2 took=34.099µs +ts=2025-05-22T07:20:56Z caller=logging.go:85 method=Health result=2 took=37.459µs +ts=2025-05-22T07:20:56Z caller=logging.go:85 method=Health result=2 took=31.16µs +ts=2025-05-22T07:20:59Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T07:20:59Z caller=logging.go:85 method=Health result=2 took=42.419µs +ts=2025-05-22T07:21:02Z caller=logging.go:85 method=Health result=2 took=38.959µs +ts=2025-05-22T07:21:02Z caller=logging.go:85 method=Health result=2 took=26.6µs +ts=2025-05-22T07:21:05Z caller=logging.go:85 method=Health result=2 took=44.749µs +ts=2025-05-22T07:21:05Z caller=logging.go:85 method=Health result=2 took=51.019µs +ts=2025-05-22T07:21:08Z caller=logging.go:85 method=Health result=2 took=43.189µs +ts=2025-05-22T07:21:08Z caller=logging.go:85 method=Health result=2 took=42.629µs +ts=2025-05-22T07:21:11Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T07:21:11Z caller=logging.go:85 method=Health result=2 took=30.28µs +ts=2025-05-22T07:21:14Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T07:21:14Z caller=logging.go:85 method=Health result=2 took=19.499µs +ts=2025-05-22T07:21:17Z caller=logging.go:85 method=Health result=2 took=40.969µs +ts=2025-05-22T07:21:17Z caller=logging.go:85 method=Health result=2 took=41.289µs +ts=2025-05-22T07:21:20Z caller=logging.go:85 method=Health result=2 took=45.799µs +ts=2025-05-22T07:21:20Z caller=logging.go:85 method=Health result=2 took=43.848µs +ts=2025-05-22T07:21:23Z caller=logging.go:85 method=Health result=2 took=44.309µs +ts=2025-05-22T07:21:23Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T07:21:26Z caller=logging.go:85 method=Health result=2 took=34.9µs +ts=2025-05-22T07:21:26Z caller=logging.go:85 method=Health result=2 took=20.749µs +ts=2025-05-22T07:21:29Z caller=logging.go:85 method=Health result=2 took=36.69µs +ts=2025-05-22T07:21:29Z caller=logging.go:85 method=Health result=2 took=37.33µs +ts=2025-05-22T07:21:32Z caller=logging.go:85 method=Health result=2 took=43.149µs +ts=2025-05-22T07:21:32Z caller=logging.go:85 method=Health result=2 took=52.539µs +ts=2025-05-22T07:21:35Z caller=logging.go:85 method=Health result=2 took=42.489µs +ts=2025-05-22T07:21:35Z caller=logging.go:85 method=Health result=2 took=29.39µs +ts=2025-05-22T07:21:38Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T07:21:38Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T07:21:41Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T07:21:41Z caller=logging.go:85 method=Health result=2 took=49.839µs +ts=2025-05-22T07:21:44Z caller=logging.go:85 method=Health result=2 took=42.689µs +ts=2025-05-22T07:21:44Z caller=logging.go:85 method=Health result=2 took=42.419µs +ts=2025-05-22T07:21:47Z caller=logging.go:85 method=Health result=2 took=43.869µs +ts=2025-05-22T07:21:47Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T07:21:50Z caller=logging.go:85 method=Health result=2 took=37.479µs +ts=2025-05-22T07:21:50Z caller=logging.go:85 method=Health result=2 took=23.7µs +ts=2025-05-22T07:21:53Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T07:21:53Z caller=logging.go:85 method=Health result=2 took=49.609µs +ts=2025-05-22T07:21:56Z caller=logging.go:85 method=Health result=2 took=46.109µs +ts=2025-05-22T07:21:56Z caller=logging.go:85 method=Health result=2 took=49.738µs +ts=2025-05-22T07:21:59Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T07:21:59Z caller=logging.go:85 method=Health result=2 took=42.579µs +ts=2025-05-22T07:22:02Z caller=logging.go:85 method=Health result=2 took=36.749µs +ts=2025-05-22T07:22:02Z caller=logging.go:85 method=Health result=2 took=31.409µs +ts=2025-05-22T07:22:05Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T07:22:05Z caller=logging.go:85 method=Health result=2 took=43.239µs +ts=2025-05-22T07:22:08Z caller=logging.go:85 method=Health result=2 took=44.949µs +ts=2025-05-22T07:22:08Z caller=logging.go:85 method=Health result=2 took=77.888µs +ts=2025-05-22T07:22:11Z caller=logging.go:85 method=Health result=2 took=39.249µs +ts=2025-05-22T07:22:11Z caller=logging.go:85 method=Health result=2 took=38.489µs +ts=2025-05-22T07:22:14Z caller=logging.go:85 method=Health result=2 took=43.069µs +ts=2025-05-22T07:22:14Z caller=logging.go:85 method=Health result=2 took=40.089µs +ts=2025-05-22T07:22:17Z caller=logging.go:85 method=Health result=2 took=51.779µs +ts=2025-05-22T07:22:17Z caller=logging.go:85 method=Health result=2 took=1.082494ms +ts=2025-05-22T07:22:20Z caller=logging.go:85 method=Health result=2 took=36.009µs +ts=2025-05-22T07:22:20Z caller=logging.go:85 method=Health result=2 took=36.109µs +ts=2025-05-22T07:22:23Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T07:22:23Z caller=logging.go:85 method=Health result=2 took=28.099µs +ts=2025-05-22T07:22:26Z caller=logging.go:85 method=Health result=2 took=40.249µs +ts=2025-05-22T07:22:26Z caller=logging.go:85 method=Health result=2 took=41.579µs +ts=2025-05-22T07:22:29Z caller=logging.go:85 method=Health result=2 took=38.119µs +ts=2025-05-22T07:22:29Z caller=logging.go:85 method=Health result=2 took=40.239µs +ts=2025-05-22T07:22:32Z caller=logging.go:85 method=Health result=2 took=47.538µs +ts=2025-05-22T07:22:32Z caller=logging.go:85 method=Health result=2 took=53.429µs +ts=2025-05-22T07:22:35Z caller=logging.go:85 method=Health result=2 took=42.609µs +ts=2025-05-22T07:22:35Z caller=logging.go:85 method=Health result=2 took=42.439µs +ts=2025-05-22T07:22:38Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T07:22:38Z caller=logging.go:85 method=Health result=2 took=42.829µs +ts=2025-05-22T07:22:41Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T07:22:41Z caller=logging.go:85 method=Health result=2 took=41.409µs +ts=2025-05-22T07:22:44Z caller=logging.go:85 method=Health result=2 took=35.699µs +ts=2025-05-22T07:22:44Z caller=logging.go:85 method=Health result=2 took=20.559µs +ts=2025-05-22T07:22:47Z caller=logging.go:85 method=Health result=2 took=45.089µs +ts=2025-05-22T07:22:47Z caller=logging.go:85 method=Health result=2 took=51.039µs +ts=2025-05-22T07:22:50Z caller=logging.go:85 method=Health result=2 took=40.859µs +ts=2025-05-22T07:22:50Z caller=logging.go:85 method=Health result=2 took=41.029µs +ts=2025-05-22T07:22:53Z caller=logging.go:85 method=Health result=2 took=38.109µs +ts=2025-05-22T07:22:53Z caller=logging.go:85 method=Health result=2 took=46.768µs +ts=2025-05-22T07:22:56Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T07:22:56Z caller=logging.go:85 method=Health result=2 took=57.348µs +ts=2025-05-22T07:22:59Z caller=logging.go:85 method=Health result=2 took=37.559µs +ts=2025-05-22T07:22:59Z caller=logging.go:85 method=Health result=2 took=48.699µs +ts=2025-05-22T07:23:02Z caller=logging.go:85 method=Health result=2 took=41.079µs +ts=2025-05-22T07:23:02Z caller=logging.go:85 method=Health result=2 took=47.889µs +ts=2025-05-22T07:23:05Z caller=logging.go:85 method=Health result=2 took=22.84µs +ts=2025-05-22T07:23:05Z caller=logging.go:85 method=Health result=2 took=36.09µs +ts=2025-05-22T07:23:08Z caller=logging.go:85 method=Health result=2 took=37.369µs +ts=2025-05-22T07:23:08Z caller=logging.go:85 method=Health result=2 took=37.019µs +ts=2025-05-22T07:23:11Z caller=logging.go:85 method=Health result=2 took=36.159µs +ts=2025-05-22T07:23:11Z caller=logging.go:85 method=Health result=2 took=36.139µs +ts=2025-05-22T07:23:14Z caller=logging.go:85 method=Health result=2 took=44.409µs +ts=2025-05-22T07:23:14Z caller=logging.go:85 method=Health result=2 took=50.358µs +ts=2025-05-22T07:23:17Z caller=logging.go:85 method=Health result=2 took=43.329µs +ts=2025-05-22T07:23:17Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T07:23:20Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T07:23:20Z caller=logging.go:85 method=Health result=2 took=35.169µs +ts=2025-05-22T07:23:23Z caller=logging.go:85 method=Health result=2 took=38.829µs +ts=2025-05-22T07:23:23Z caller=logging.go:85 method=Health result=2 took=38.749µs +ts=2025-05-22T07:23:26Z caller=logging.go:85 method=Health result=2 took=31.699µs +ts=2025-05-22T07:23:26Z caller=logging.go:85 method=Health result=2 took=48.089µs +ts=2025-05-22T07:23:29Z caller=logging.go:85 method=Health result=2 took=40.289µs +ts=2025-05-22T07:23:29Z caller=logging.go:85 method=Health result=2 took=27.829µs +ts=2025-05-22T07:23:32Z caller=logging.go:85 method=Health result=2 took=43.409µs +ts=2025-05-22T07:23:32Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T07:23:35Z caller=logging.go:85 method=Health result=2 took=29.43µs +ts=2025-05-22T07:23:35Z caller=logging.go:85 method=Health result=2 took=63.679µs +ts=2025-05-22T07:23:38Z caller=logging.go:85 method=Health result=2 took=31.139µs +ts=2025-05-22T07:23:38Z caller=logging.go:85 method=Health result=2 took=57.809µs +ts=2025-05-22T07:23:41Z caller=logging.go:85 method=Health result=2 took=31.429µs +ts=2025-05-22T07:23:41Z caller=logging.go:85 method=Health result=2 took=55.389µs +ts=2025-05-22T07:23:44Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T07:23:44Z caller=logging.go:85 method=Health result=2 took=45.979µs +ts=2025-05-22T07:23:47Z caller=logging.go:85 method=Health result=2 took=46.559µs +ts=2025-05-22T07:23:47Z caller=logging.go:85 method=Health result=2 took=51.169µs +ts=2025-05-22T07:23:50Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T07:23:50Z caller=logging.go:85 method=Health result=2 took=38.829µs +ts=2025-05-22T07:23:53Z caller=logging.go:85 method=Health result=2 took=35.939µs +ts=2025-05-22T07:23:53Z caller=logging.go:85 method=Health result=2 took=40.799µs +ts=2025-05-22T07:23:56Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T07:23:56Z caller=logging.go:85 method=Health result=2 took=48.849µs +ts=2025-05-22T07:23:59Z caller=logging.go:85 method=Health result=2 took=44.529µs +ts=2025-05-22T07:23:59Z caller=logging.go:85 method=Health result=2 took=46.539µs +ts=2025-05-22T07:24:02Z caller=logging.go:85 method=Health result=2 took=32.95µs +ts=2025-05-22T07:24:02Z caller=logging.go:85 method=Health result=2 took=47.459µs +ts=2025-05-22T07:24:05Z caller=logging.go:85 method=Health result=2 took=45.759µs +ts=2025-05-22T07:24:05Z caller=logging.go:85 method=Health result=2 took=48.829µs +ts=2025-05-22T07:24:08Z caller=logging.go:85 method=Health result=2 took=39.009µs +ts=2025-05-22T07:24:08Z caller=logging.go:85 method=Health result=2 took=39.309µs +ts=2025-05-22T07:24:11Z caller=logging.go:85 method=Health result=2 took=36.979µs +ts=2025-05-22T07:24:11Z caller=logging.go:85 method=Health result=2 took=21.479µs +ts=2025-05-22T07:24:14Z caller=logging.go:85 method=Health result=2 took=32.05µs +ts=2025-05-22T07:24:14Z caller=logging.go:85 method=Health result=2 took=34.999µs +ts=2025-05-22T07:24:17Z caller=logging.go:85 method=Health result=2 took=49.799µs +ts=2025-05-22T07:24:17Z caller=logging.go:85 method=Health result=2 took=1.010376ms +ts=2025-05-22T07:24:20Z caller=logging.go:85 method=Health result=2 took=30.089µs +ts=2025-05-22T07:24:20Z caller=logging.go:85 method=Health result=2 took=30.039µs +ts=2025-05-22T07:24:23Z caller=logging.go:85 method=Health result=2 took=38.13µs +ts=2025-05-22T07:24:23Z caller=logging.go:85 method=Health result=2 took=45.609µs +ts=2025-05-22T07:24:26Z caller=logging.go:85 method=Health result=2 took=39.039µs +ts=2025-05-22T07:24:26Z caller=logging.go:85 method=Health result=2 took=38.599µs +ts=2025-05-22T07:24:29Z caller=logging.go:85 method=Health result=2 took=46.419µs +ts=2025-05-22T07:24:29Z caller=logging.go:85 method=Health result=2 took=47.359µs +ts=2025-05-22T07:24:32Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T07:24:32Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T07:24:35Z caller=logging.go:85 method=Health result=2 took=41.399µs +ts=2025-05-22T07:24:35Z caller=logging.go:85 method=Health result=2 took=48.978µs +ts=2025-05-22T07:24:38Z caller=logging.go:85 method=Health result=2 took=41.029µs +ts=2025-05-22T07:24:38Z caller=logging.go:85 method=Health result=2 took=41.179µs +ts=2025-05-22T07:24:41Z caller=logging.go:85 method=Health result=2 took=27.969µs +ts=2025-05-22T07:24:41Z caller=logging.go:85 method=Health result=2 took=27.989µs +ts=2025-05-22T07:24:44Z caller=logging.go:85 method=Health result=2 took=51.099µs +ts=2025-05-22T07:24:44Z caller=logging.go:85 method=Health result=2 took=51.908µs +ts=2025-05-22T07:24:47Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T07:24:47Z caller=logging.go:85 method=Health result=2 took=15.52µs +ts=2025-05-22T07:24:50Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T07:24:50Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T07:24:53Z caller=logging.go:85 method=Health result=2 took=37.389µs +ts=2025-05-22T07:24:53Z caller=logging.go:85 method=Health result=2 took=36.919µs +ts=2025-05-22T07:24:56Z caller=logging.go:85 method=Health result=2 took=40.699µs +ts=2025-05-22T07:24:56Z caller=logging.go:85 method=Health result=2 took=27.169µs +ts=2025-05-22T07:24:59Z caller=logging.go:85 method=Health result=2 took=74.078µs +ts=2025-05-22T07:24:59Z caller=logging.go:85 method=Health result=2 took=23.579µs +ts=2025-05-22T07:25:02Z caller=logging.go:85 method=Health result=2 took=45.459µs +ts=2025-05-22T07:25:02Z caller=logging.go:85 method=Health result=2 took=51.439µs +ts=2025-05-22T07:25:05Z caller=logging.go:85 method=Health result=2 took=41.779µs +ts=2025-05-22T07:25:05Z caller=logging.go:85 method=Health result=2 took=49.709µs +ts=2025-05-22T07:25:08Z caller=logging.go:85 method=Health result=2 took=45.019µs +ts=2025-05-22T07:25:08Z caller=logging.go:85 method=Health result=2 took=53.069µs +ts=2025-05-22T07:25:11Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T07:25:11Z caller=logging.go:85 method=Health result=2 took=50.358µs +ts=2025-05-22T07:25:14Z caller=logging.go:85 method=Health result=2 took=40.589µs +ts=2025-05-22T07:25:14Z caller=logging.go:85 method=Health result=2 took=33.419µs +ts=2025-05-22T07:25:17Z caller=logging.go:85 method=Health result=2 took=42.869µs +ts=2025-05-22T07:25:17Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T07:25:20Z caller=logging.go:85 method=Health result=2 took=44.519µs +ts=2025-05-22T07:25:20Z caller=logging.go:85 method=Health result=2 took=44.349µs +ts=2025-05-22T07:25:23Z caller=logging.go:85 method=Health result=2 took=50.549µs +ts=2025-05-22T07:25:23Z caller=logging.go:85 method=Health result=2 took=46.249µs +ts=2025-05-22T07:25:26Z caller=logging.go:85 method=Health result=2 took=29.359µs +ts=2025-05-22T07:25:26Z caller=logging.go:85 method=Health result=2 took=54.759µs +ts=2025-05-22T07:25:29Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T07:25:29Z caller=logging.go:85 method=Health result=2 took=40.919µs +ts=2025-05-22T07:25:32Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T07:25:32Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T07:25:35Z caller=logging.go:85 method=Health result=2 took=45.549µs +ts=2025-05-22T07:25:35Z caller=logging.go:85 method=Health result=2 took=51.209µs +ts=2025-05-22T07:25:38Z caller=logging.go:85 method=Health result=2 took=44.989µs +ts=2025-05-22T07:25:38Z caller=logging.go:85 method=Health result=2 took=51.119µs +ts=2025-05-22T07:25:41Z caller=logging.go:85 method=Health result=2 took=40.379µs +ts=2025-05-22T07:25:41Z caller=logging.go:85 method=Health result=2 took=49.199µs +ts=2025-05-22T07:25:44Z caller=logging.go:85 method=Health result=2 took=38.75µs +ts=2025-05-22T07:25:44Z caller=logging.go:85 method=Health result=2 took=48.898µs +ts=2025-05-22T07:25:47Z caller=logging.go:85 method=Health result=2 took=46.439µs +ts=2025-05-22T07:25:47Z caller=logging.go:85 method=Health result=2 took=56.638µs +ts=2025-05-22T07:25:50Z caller=logging.go:85 method=Health result=2 took=38.159µs +ts=2025-05-22T07:25:50Z caller=logging.go:85 method=Health result=2 took=49.129µs +ts=2025-05-22T07:25:53Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T07:25:53Z caller=logging.go:85 method=Health result=2 took=46.949µs +ts=2025-05-22T07:25:56Z caller=logging.go:85 method=Health result=2 took=41.199µs +ts=2025-05-22T07:25:56Z caller=logging.go:85 method=Health result=2 took=41.589µs +ts=2025-05-22T07:25:59Z caller=logging.go:85 method=Health result=2 took=44.599µs +ts=2025-05-22T07:25:59Z caller=logging.go:85 method=Health result=2 took=50.349µs +ts=2025-05-22T07:26:02Z caller=logging.go:85 method=Health result=2 took=40.959µs +ts=2025-05-22T07:26:02Z caller=logging.go:85 method=Health result=2 took=48.438µs +ts=2025-05-22T07:26:05Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T07:26:05Z caller=logging.go:85 method=Health result=2 took=41.859µs +ts=2025-05-22T07:26:08Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T07:26:08Z caller=logging.go:85 method=Health result=2 took=39.469µs +ts=2025-05-22T07:26:11Z caller=logging.go:85 method=Health result=2 took=45.569µs +ts=2025-05-22T07:26:11Z caller=logging.go:85 method=Health result=2 took=50.618µs +ts=2025-05-22T07:26:14Z caller=logging.go:85 method=Health result=2 took=44.439µs +ts=2025-05-22T07:26:14Z caller=logging.go:85 method=Health result=2 took=50.599µs +ts=2025-05-22T07:26:17Z caller=logging.go:85 method=Health result=2 took=66.068µs +ts=2025-05-22T07:26:17Z caller=logging.go:85 method=Health result=2 took=59.079µs +ts=2025-05-22T07:26:20Z caller=logging.go:85 method=Health result=2 took=43.579µs +ts=2025-05-22T07:26:20Z caller=logging.go:85 method=Health result=2 took=64.828µs +ts=2025-05-22T07:26:23Z caller=logging.go:85 method=Health result=2 took=39.139µs +ts=2025-05-22T07:26:23Z caller=logging.go:85 method=Health result=2 took=50.349µs +ts=2025-05-22T07:26:26Z caller=logging.go:85 method=Health result=2 took=36.879µs +ts=2025-05-22T07:26:26Z caller=logging.go:85 method=Health result=2 took=19.83µs +ts=2025-05-22T07:26:29Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T07:26:29Z caller=logging.go:85 method=Health result=2 took=40.539µs +ts=2025-05-22T07:26:32Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T07:26:32Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T07:26:35Z caller=logging.go:85 method=Health result=2 took=45.129µs +ts=2025-05-22T07:26:35Z caller=logging.go:85 method=Health result=2 took=51.899µs +ts=2025-05-22T07:26:38Z caller=logging.go:85 method=Health result=2 took=46.699µs +ts=2025-05-22T07:26:38Z caller=logging.go:85 method=Health result=2 took=50.719µs +ts=2025-05-22T07:26:41Z caller=logging.go:85 method=Health result=2 took=40.21µs +ts=2025-05-22T07:26:41Z caller=logging.go:85 method=Health result=2 took=27.459µs +ts=2025-05-22T07:26:44Z caller=logging.go:85 method=Health result=2 took=46.009µs +ts=2025-05-22T07:26:44Z caller=logging.go:85 method=Health result=2 took=51.919µs +ts=2025-05-22T07:26:47Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T07:26:47Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T07:26:50Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T07:26:50Z caller=logging.go:85 method=Health result=2 took=43.099µs +ts=2025-05-22T07:26:53Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T07:26:53Z caller=logging.go:85 method=Health result=2 took=47.639µs +ts=2025-05-22T07:26:56Z caller=logging.go:85 method=Health result=2 took=46.369µs +ts=2025-05-22T07:26:56Z caller=logging.go:85 method=Health result=2 took=50.749µs +ts=2025-05-22T07:26:59Z caller=logging.go:85 method=Health result=2 took=36.839µs +ts=2025-05-22T07:26:59Z caller=logging.go:85 method=Health result=2 took=48.609µs +ts=2025-05-22T07:27:02Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T07:27:02Z caller=logging.go:85 method=Health result=2 took=49.199µs +ts=2025-05-22T07:27:05Z caller=logging.go:85 method=Health result=2 took=44.599µs +ts=2025-05-22T07:27:05Z caller=logging.go:85 method=Health result=2 took=50.769µs +ts=2025-05-22T07:27:08Z caller=logging.go:85 method=Health result=2 took=42.109µs +ts=2025-05-22T07:27:08Z caller=logging.go:85 method=Health result=2 took=50.489µs +ts=2025-05-22T07:27:11Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T07:27:11Z caller=logging.go:85 method=Health result=2 took=47.309µs +ts=2025-05-22T07:27:14Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T07:27:14Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T07:27:17Z caller=logging.go:85 method=Health result=2 took=44.939µs +ts=2025-05-22T07:27:17Z caller=logging.go:85 method=Health result=2 took=51.129µs +ts=2025-05-22T07:27:20Z caller=logging.go:85 method=Health result=2 took=43.859µs +ts=2025-05-22T07:27:20Z caller=logging.go:85 method=Health result=2 took=45.289µs +ts=2025-05-22T07:27:23Z caller=logging.go:85 method=Health result=2 took=41.289µs +ts=2025-05-22T07:27:23Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T07:27:26Z caller=logging.go:85 method=Health result=2 took=56.429µs +ts=2025-05-22T07:27:26Z caller=logging.go:85 method=Health result=2 took=56.449µs +ts=2025-05-22T07:27:29Z caller=logging.go:85 method=Health result=2 took=43.839µs +ts=2025-05-22T07:27:29Z caller=logging.go:85 method=Health result=2 took=49.448µs +ts=2025-05-22T07:27:32Z caller=logging.go:85 method=Health result=2 took=45.669µs +ts=2025-05-22T07:27:32Z caller=logging.go:85 method=Health result=2 took=48.199µs +ts=2025-05-22T07:27:35Z caller=logging.go:85 method=Health result=2 took=58.289µs +ts=2025-05-22T07:27:35Z caller=logging.go:85 method=Health result=2 took=47.859µs +ts=2025-05-22T07:27:38Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T07:27:38Z caller=logging.go:85 method=Health result=2 took=49.098µs +ts=2025-05-22T07:27:41Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T07:27:41Z caller=logging.go:85 method=Health result=2 took=43.379µs +ts=2025-05-22T07:27:44Z caller=logging.go:85 method=Health result=2 took=51.578µs +ts=2025-05-22T07:27:44Z caller=logging.go:85 method=Health result=2 took=52.298µs +ts=2025-05-22T07:27:47Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T07:27:47Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T07:27:50Z caller=logging.go:85 method=Health result=2 took=41.679µs +ts=2025-05-22T07:27:50Z caller=logging.go:85 method=Health result=2 took=41.309µs +ts=2025-05-22T07:27:53Z caller=logging.go:85 method=Health result=2 took=38.88µs +ts=2025-05-22T07:27:53Z caller=logging.go:85 method=Health result=2 took=39.64µs +ts=2025-05-22T07:27:56Z caller=logging.go:85 method=Health result=2 took=33.719µs +ts=2025-05-22T07:27:56Z caller=logging.go:85 method=Health result=2 took=58.419µs +ts=2025-05-22T07:27:59Z caller=logging.go:85 method=Health result=2 took=27.14µs +ts=2025-05-22T07:27:59Z caller=logging.go:85 method=Health result=2 took=27.16µs +ts=2025-05-22T07:28:02Z caller=logging.go:85 method=Health result=2 took=35.829µs +ts=2025-05-22T07:28:02Z caller=logging.go:85 method=Health result=2 took=35.459µs +ts=2025-05-22T07:28:05Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T07:28:05Z caller=logging.go:85 method=Health result=2 took=30.749µs +ts=2025-05-22T07:28:08Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T07:28:08Z caller=logging.go:85 method=Health result=2 took=44.009µs +ts=2025-05-22T07:28:11Z caller=logging.go:85 method=Health result=2 took=40.089µs +ts=2025-05-22T07:28:11Z caller=logging.go:85 method=Health result=2 took=22.009µs +ts=2025-05-22T07:28:14Z caller=logging.go:85 method=Health result=2 took=55.238µs +ts=2025-05-22T07:28:14Z caller=logging.go:85 method=Health result=2 took=55.238µs +ts=2025-05-22T07:28:17Z caller=logging.go:85 method=Health result=2 took=1.340498ms +ts=2025-05-22T07:28:17Z caller=logging.go:85 method=Health result=2 took=75.788µs +ts=2025-05-22T07:28:20Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T07:28:20Z caller=logging.go:85 method=Health result=2 took=64.409µs +ts=2025-05-22T07:28:23Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T07:28:23Z caller=logging.go:85 method=Health result=2 took=40.969µs +ts=2025-05-22T07:28:26Z caller=logging.go:85 method=Health result=2 took=35.699µs +ts=2025-05-22T07:28:26Z caller=logging.go:85 method=Health result=2 took=33.989µs +ts=2025-05-22T07:28:29Z caller=logging.go:85 method=Health result=2 took=42.539µs +ts=2025-05-22T07:28:29Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T07:28:32Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T07:28:32Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T07:28:35Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T07:28:35Z caller=logging.go:85 method=Health result=2 took=48.109µs +ts=2025-05-22T07:28:38Z caller=logging.go:85 method=Health result=2 took=45.809µs +ts=2025-05-22T07:28:38Z caller=logging.go:85 method=Health result=2 took=51.859µs +ts=2025-05-22T07:28:41Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T07:28:41Z caller=logging.go:85 method=Health result=2 took=46.999µs +ts=2025-05-22T07:28:44Z caller=logging.go:85 method=Health result=2 took=42.669µs +ts=2025-05-22T07:28:44Z caller=logging.go:85 method=Health result=2 took=42.039µs +ts=2025-05-22T07:28:47Z caller=logging.go:85 method=Health result=2 took=49.558µs +ts=2025-05-22T07:28:47Z caller=logging.go:85 method=Health result=2 took=27.38µs +ts=2025-05-22T07:28:50Z caller=logging.go:85 method=Health result=2 took=64.448µs +ts=2025-05-22T07:28:50Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T07:28:53Z caller=logging.go:85 method=Health result=2 took=43.639µs +ts=2025-05-22T07:28:53Z caller=logging.go:85 method=Health result=2 took=50.259µs +ts=2025-05-22T07:28:56Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T07:28:56Z caller=logging.go:85 method=Health result=2 took=35.279µs +ts=2025-05-22T07:28:59Z caller=logging.go:85 method=Health result=2 took=29.47µs +ts=2025-05-22T07:28:59Z caller=logging.go:85 method=Health result=2 took=11.889µs +ts=2025-05-22T07:29:02Z caller=logging.go:85 method=Health result=2 took=29.719µs +ts=2025-05-22T07:29:02Z caller=logging.go:85 method=Health result=2 took=12.55µs +ts=2025-05-22T07:29:05Z caller=logging.go:85 method=Health result=2 took=34.08µs +ts=2025-05-22T07:29:05Z caller=logging.go:85 method=Health result=2 took=10.08µs +ts=2025-05-22T07:29:08Z caller=logging.go:85 method=Health result=2 took=30.799µs +ts=2025-05-22T07:29:08Z caller=logging.go:85 method=Health result=2 took=10.26µs +ts=2025-05-22T07:29:11Z caller=logging.go:85 method=Health result=2 took=31.709µs +ts=2025-05-22T07:29:11Z caller=logging.go:85 method=Health result=2 took=47.189µs +ts=2025-05-22T07:29:14Z caller=logging.go:85 method=Health result=2 took=51.629µs +ts=2025-05-22T07:29:14Z caller=logging.go:85 method=Health result=2 took=51.269µs +ts=2025-05-22T07:29:17Z caller=logging.go:85 method=Health result=2 took=31.969µs +ts=2025-05-22T07:29:17Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T07:29:20Z caller=logging.go:85 method=Health result=2 took=52.819µs +ts=2025-05-22T07:29:20Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T07:29:23Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T07:29:23Z caller=logging.go:85 method=Health result=2 took=44.509µs +ts=2025-05-22T07:29:26Z caller=logging.go:85 method=Health result=2 took=29.279µs +ts=2025-05-22T07:29:26Z caller=logging.go:85 method=Health result=2 took=53.959µs +ts=2025-05-22T07:29:29Z caller=logging.go:85 method=Health result=2 took=43.479µs +ts=2025-05-22T07:29:29Z caller=logging.go:85 method=Health result=2 took=48.728µs +ts=2025-05-22T07:29:32Z caller=logging.go:85 method=Health result=2 took=31.809µs +ts=2025-05-22T07:29:32Z caller=logging.go:85 method=Health result=2 took=43.699µs +ts=2025-05-22T07:29:35Z caller=logging.go:85 method=Health result=2 took=40.039µs +ts=2025-05-22T07:29:35Z caller=logging.go:85 method=Health result=2 took=39.639µs +ts=2025-05-22T07:29:38Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T07:29:38Z caller=logging.go:85 method=Health result=2 took=47.269µs +ts=2025-05-22T07:29:41Z caller=logging.go:85 method=Health result=2 took=29.339µs +ts=2025-05-22T07:29:41Z caller=logging.go:85 method=Health result=2 took=20.51µs +ts=2025-05-22T07:29:44Z caller=logging.go:85 method=Health result=2 took=43.149µs +ts=2025-05-22T07:29:44Z caller=logging.go:85 method=Health result=2 took=40.829µs +ts=2025-05-22T07:29:47Z caller=logging.go:85 method=Health result=2 took=23.149µs +ts=2025-05-22T07:29:47Z caller=logging.go:85 method=Health result=2 took=29.849µs +ts=2025-05-22T07:29:50Z caller=logging.go:85 method=Health result=2 took=38.229µs +ts=2025-05-22T07:29:50Z caller=logging.go:85 method=Health result=2 took=37.259µs +ts=2025-05-22T07:29:53Z caller=logging.go:85 method=Health result=2 took=38.829µs +ts=2025-05-22T07:29:53Z caller=logging.go:85 method=Health result=2 took=37.289µs +ts=2025-05-22T07:29:56Z caller=logging.go:85 method=Health result=2 took=31.049µs +ts=2025-05-22T07:29:56Z caller=logging.go:85 method=Health result=2 took=46.499µs +ts=2025-05-22T07:29:59Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T07:29:59Z caller=logging.go:85 method=Health result=2 took=51.339µs +ts=2025-05-22T07:30:02Z caller=logging.go:85 method=Health result=2 took=30.589µs +ts=2025-05-22T07:30:02Z caller=logging.go:85 method=Health result=2 took=10.63µs +ts=2025-05-22T07:30:05Z caller=logging.go:85 method=Health result=2 took=36.059µs +ts=2025-05-22T07:30:05Z caller=logging.go:85 method=Health result=2 took=34.58µs +ts=2025-05-22T07:30:08Z caller=logging.go:85 method=Health result=2 took=32.009µs +ts=2025-05-22T07:30:08Z caller=logging.go:85 method=Health result=2 took=47.699µs +ts=2025-05-22T07:30:11Z caller=logging.go:85 method=Health result=2 took=30.829µs +ts=2025-05-22T07:30:11Z caller=logging.go:85 method=Health result=2 took=53.089µs +ts=2025-05-22T07:30:14Z caller=logging.go:85 method=Health result=2 took=29.08µs +ts=2025-05-22T07:30:14Z caller=logging.go:85 method=Health result=2 took=29.13µs +ts=2025-05-22T07:30:17Z caller=logging.go:85 method=Health result=2 took=845.63µs +ts=2025-05-22T07:30:17Z caller=logging.go:85 method=Health result=2 took=850.39µs +ts=2025-05-22T07:30:20Z caller=logging.go:85 method=Health result=2 took=39.799µs +ts=2025-05-22T07:30:20Z caller=logging.go:85 method=Health result=2 took=45.589µs +ts=2025-05-22T07:30:23Z caller=logging.go:85 method=Health result=2 took=39.339µs +ts=2025-05-22T07:30:23Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T07:30:26Z caller=logging.go:85 method=Health result=2 took=43.559µs +ts=2025-05-22T07:30:26Z caller=logging.go:85 method=Health result=2 took=30.23µs +ts=2025-05-22T07:30:29Z caller=logging.go:85 method=Health result=2 took=33.56µs +ts=2025-05-22T07:30:29Z caller=logging.go:85 method=Health result=2 took=47.779µs +ts=2025-05-22T07:30:32Z caller=logging.go:85 method=Health result=2 took=29.599µs +ts=2025-05-22T07:30:32Z caller=logging.go:85 method=Health result=2 took=30.009µs +ts=2025-05-22T07:30:35Z caller=logging.go:85 method=Health result=2 took=40.219µs +ts=2025-05-22T07:30:35Z caller=logging.go:85 method=Health result=2 took=40.099µs +ts=2025-05-22T07:30:38Z caller=logging.go:85 method=Health result=2 took=45.569µs +ts=2025-05-22T07:30:38Z caller=logging.go:85 method=Health result=2 took=45.179µs +ts=2025-05-22T07:30:41Z caller=logging.go:85 method=Health result=2 took=38.639µs +ts=2025-05-22T07:30:41Z caller=logging.go:85 method=Health result=2 took=50.049µs +ts=2025-05-22T07:30:44Z caller=logging.go:85 method=Health result=2 took=37.199µs +ts=2025-05-22T07:30:44Z caller=logging.go:85 method=Health result=2 took=47.138µs +ts=2025-05-22T07:30:47Z caller=logging.go:85 method=Health result=2 took=56.229µs +ts=2025-05-22T07:30:47Z caller=logging.go:85 method=Health result=2 took=56.179µs +ts=2025-05-22T07:30:50Z caller=logging.go:85 method=Health result=2 took=30.209µs +ts=2025-05-22T07:30:50Z caller=logging.go:85 method=Health result=2 took=13.96µs +ts=2025-05-22T07:30:53Z caller=logging.go:85 method=Health result=2 took=40.279µs +ts=2025-05-22T07:30:53Z caller=logging.go:85 method=Health result=2 took=36.269µs +ts=2025-05-22T07:30:56Z caller=logging.go:85 method=Health result=2 took=38.839µs +ts=2025-05-22T07:30:56Z caller=logging.go:85 method=Health result=2 took=44.999µs +ts=2025-05-22T07:30:59Z caller=logging.go:85 method=Health result=2 took=37.259µs +ts=2025-05-22T07:30:59Z caller=logging.go:85 method=Health result=2 took=36.609µs +ts=2025-05-22T07:31:02Z caller=logging.go:85 method=Health result=2 took=35.439µs +ts=2025-05-22T07:31:02Z caller=logging.go:85 method=Health result=2 took=8.63µs +ts=2025-05-22T07:31:05Z caller=logging.go:85 method=Health result=2 took=41.609µs +ts=2025-05-22T07:31:05Z caller=logging.go:85 method=Health result=2 took=48.789µs +ts=2025-05-22T07:31:08Z caller=logging.go:85 method=Health result=2 took=31.939µs +ts=2025-05-22T07:31:08Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T07:31:11Z caller=logging.go:85 method=Health result=2 took=33.359µs +ts=2025-05-22T07:31:11Z caller=logging.go:85 method=Health result=2 took=41.829µs +ts=2025-05-22T07:31:14Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T07:31:14Z caller=logging.go:85 method=Health result=2 took=35.719µs +ts=2025-05-22T07:31:17Z caller=logging.go:85 method=Health result=2 took=35.549µs +ts=2025-05-22T07:31:17Z caller=logging.go:85 method=Health result=2 took=35.089µs +ts=2025-05-22T07:31:20Z caller=logging.go:85 method=Health result=2 took=31.889µs +ts=2025-05-22T07:31:20Z caller=logging.go:85 method=Health result=2 took=52.379µs +ts=2025-05-22T07:31:23Z caller=logging.go:85 method=Health result=2 took=39.929µs +ts=2025-05-22T07:31:23Z caller=logging.go:85 method=Health result=2 took=69.758µs +ts=2025-05-22T07:31:26Z caller=logging.go:85 method=Health result=2 took=37.379µs +ts=2025-05-22T07:31:26Z caller=logging.go:85 method=Health result=2 took=49.629µs +ts=2025-05-22T07:31:29Z caller=logging.go:85 method=Health result=2 took=45.579µs +ts=2025-05-22T07:31:29Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T07:31:32Z caller=logging.go:85 method=Health result=2 took=46.009µs +ts=2025-05-22T07:31:32Z caller=logging.go:85 method=Health result=2 took=48.159µs +ts=2025-05-22T07:31:35Z caller=logging.go:85 method=Health result=2 took=35.949µs +ts=2025-05-22T07:31:35Z caller=logging.go:85 method=Health result=2 took=35.759µs +ts=2025-05-22T07:31:38Z caller=logging.go:85 method=Health result=2 took=56.839µs +ts=2025-05-22T07:31:38Z caller=logging.go:85 method=Health result=2 took=56.089µs +ts=2025-05-22T07:31:41Z caller=logging.go:85 method=Health result=2 took=43.099µs +ts=2025-05-22T07:31:41Z caller=logging.go:85 method=Health result=2 took=50.409µs +ts=2025-05-22T07:31:44Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T07:31:44Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T07:31:47Z caller=logging.go:85 method=Health result=2 took=39.499µs +ts=2025-05-22T07:31:47Z caller=logging.go:85 method=Health result=2 took=36.719µs +ts=2025-05-22T07:31:50Z caller=logging.go:85 method=Health result=2 took=45.438µs +ts=2025-05-22T07:31:50Z caller=logging.go:85 method=Health result=2 took=45.849µs +ts=2025-05-22T07:31:53Z caller=logging.go:85 method=Health result=2 took=36.669µs +ts=2025-05-22T07:31:53Z caller=logging.go:85 method=Health result=2 took=53.509µs +ts=2025-05-22T07:31:56Z caller=logging.go:85 method=Health result=2 took=50.319µs +ts=2025-05-22T07:31:56Z caller=logging.go:85 method=Health result=2 took=50.089µs +ts=2025-05-22T07:31:59Z caller=logging.go:85 method=Health result=2 took=29.889µs +ts=2025-05-22T07:31:59Z caller=logging.go:85 method=Health result=2 took=15.809µs +ts=2025-05-22T07:32:02Z caller=logging.go:85 method=Health result=2 took=45.599µs +ts=2025-05-22T07:32:02Z caller=logging.go:85 method=Health result=2 took=50.398µs +ts=2025-05-22T07:32:05Z caller=logging.go:85 method=Health result=2 took=32.639µs +ts=2025-05-22T07:32:05Z caller=logging.go:85 method=Health result=2 took=46.269µs +ts=2025-05-22T07:32:08Z caller=logging.go:85 method=Health result=2 took=39.549µs +ts=2025-05-22T07:32:08Z caller=logging.go:85 method=Health result=2 took=40.049µs +ts=2025-05-22T07:32:11Z caller=logging.go:85 method=Health result=2 took=40.729µs +ts=2025-05-22T07:32:11Z caller=logging.go:85 method=Health result=2 took=48.029µs +ts=2025-05-22T07:32:14Z caller=logging.go:85 method=Health result=2 took=31.159µs +ts=2025-05-22T07:32:14Z caller=logging.go:85 method=Health result=2 took=47.328µs +ts=2025-05-22T07:32:17Z caller=logging.go:85 method=Health result=2 took=51.748µs +ts=2025-05-22T07:32:17Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T07:32:20Z caller=logging.go:85 method=Health result=2 took=44.749µs +ts=2025-05-22T07:32:20Z caller=logging.go:85 method=Health result=2 took=43.319µs +ts=2025-05-22T07:32:23Z caller=logging.go:85 method=Health result=2 took=52.099µs +ts=2025-05-22T07:32:23Z caller=logging.go:85 method=Health result=2 took=31.609µs +ts=2025-05-22T07:32:26Z caller=logging.go:85 method=Health result=2 took=39.259µs +ts=2025-05-22T07:32:26Z caller=logging.go:85 method=Health result=2 took=38.349µs +ts=2025-05-22T07:32:29Z caller=logging.go:85 method=Health result=2 took=37.159µs +ts=2025-05-22T07:32:29Z caller=logging.go:85 method=Health result=2 took=22.749µs +ts=2025-05-22T07:32:32Z caller=logging.go:85 method=Health result=2 took=45.839µs +ts=2025-05-22T07:32:32Z caller=logging.go:85 method=Health result=2 took=49.319µs +ts=2025-05-22T07:32:35Z caller=logging.go:85 method=Health result=2 took=38.009µs +ts=2025-05-22T07:32:35Z caller=logging.go:85 method=Health result=2 took=37.829µs +ts=2025-05-22T07:32:38Z caller=logging.go:85 method=Health result=2 took=39.329µs +ts=2025-05-22T07:32:38Z caller=logging.go:85 method=Health result=2 took=48.039µs +ts=2025-05-22T07:32:41Z caller=logging.go:85 method=Health result=2 took=35.719µs +ts=2025-05-22T07:32:41Z caller=logging.go:85 method=Health result=2 took=35.569µs +ts=2025-05-22T07:32:44Z caller=logging.go:85 method=Health result=2 took=31.119µs +ts=2025-05-22T07:32:44Z caller=logging.go:85 method=Health result=2 took=34.339µs +ts=2025-05-22T07:32:47Z caller=logging.go:85 method=Health result=2 took=28.669µs +ts=2025-05-22T07:32:47Z caller=logging.go:85 method=Health result=2 took=29.389µs +ts=2025-05-22T07:32:50Z caller=logging.go:85 method=Health result=2 took=31.089µs +ts=2025-05-22T07:32:50Z caller=logging.go:85 method=Health result=2 took=33.539µs +ts=2025-05-22T07:32:53Z caller=logging.go:85 method=Health result=2 took=37.12µs +ts=2025-05-22T07:32:53Z caller=logging.go:85 method=Health result=2 took=42.419µs +ts=2025-05-22T07:32:56Z caller=logging.go:85 method=Health result=2 took=30.129µs +ts=2025-05-22T07:32:56Z caller=logging.go:85 method=Health result=2 took=30.059µs +ts=2025-05-22T07:32:59Z caller=logging.go:85 method=Health result=2 took=39.219µs +ts=2025-05-22T07:32:59Z caller=logging.go:85 method=Health result=2 took=41.479µs +ts=2025-05-22T07:33:02Z caller=logging.go:85 method=Health result=2 took=32.599µs +ts=2025-05-22T07:33:02Z caller=logging.go:85 method=Health result=2 took=35.95µs +ts=2025-05-22T07:33:05Z caller=logging.go:85 method=Health result=2 took=30.81µs +ts=2025-05-22T07:33:05Z caller=logging.go:85 method=Health result=2 took=48.638µs +ts=2025-05-22T07:33:08Z caller=logging.go:85 method=Health result=2 took=36.56µs +ts=2025-05-22T07:33:08Z caller=logging.go:85 method=Health result=2 took=36.88µs +ts=2025-05-22T07:33:11Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T07:33:11Z caller=logging.go:85 method=Health result=2 took=47.739µs +ts=2025-05-22T07:33:14Z caller=logging.go:85 method=Health result=2 took=29.9µs +ts=2025-05-22T07:33:14Z caller=logging.go:85 method=Health result=2 took=9.45µs +ts=2025-05-22T07:33:17Z caller=logging.go:85 method=Health result=2 took=41.749µs +ts=2025-05-22T07:33:17Z caller=logging.go:85 method=Health result=2 took=49.719µs +ts=2025-05-22T07:33:20Z caller=logging.go:85 method=Health result=2 took=30.589µs +ts=2025-05-22T07:33:20Z caller=logging.go:85 method=Health result=2 took=59.478µs +ts=2025-05-22T07:33:23Z caller=logging.go:85 method=Health result=2 took=36.019µs +ts=2025-05-22T07:33:23Z caller=logging.go:85 method=Health result=2 took=40.169µs +ts=2025-05-22T07:33:26Z caller=logging.go:85 method=Health result=2 took=44.199µs +ts=2025-05-22T07:33:26Z caller=logging.go:85 method=Health result=2 took=42.589µs +ts=2025-05-22T07:33:29Z caller=logging.go:85 method=Health result=2 took=32.679µs +ts=2025-05-22T07:33:29Z caller=logging.go:85 method=Health result=2 took=69.728µs +ts=2025-05-22T07:33:32Z caller=logging.go:85 method=Health result=2 took=31.399µs +ts=2025-05-22T07:33:32Z caller=logging.go:85 method=Health result=2 took=46.549µs +ts=2025-05-22T07:33:35Z caller=logging.go:85 method=Health result=2 took=32.33µs +ts=2025-05-22T07:33:35Z caller=logging.go:85 method=Health result=2 took=73.559µs +ts=2025-05-22T07:33:38Z caller=logging.go:85 method=Health result=2 took=30.179µs +ts=2025-05-22T07:33:38Z caller=logging.go:85 method=Health result=2 took=30.329µs +ts=2025-05-22T07:33:41Z caller=logging.go:85 method=Health result=2 took=33.239µs +ts=2025-05-22T07:33:41Z caller=logging.go:85 method=Health result=2 took=33.379µs +ts=2025-05-22T07:33:44Z caller=logging.go:85 method=Health result=2 took=37.019µs +ts=2025-05-22T07:33:44Z caller=logging.go:85 method=Health result=2 took=31.789µs +ts=2025-05-22T07:33:47Z caller=logging.go:85 method=Health result=2 took=40.699µs +ts=2025-05-22T07:33:47Z caller=logging.go:85 method=Health result=2 took=39.989µs +ts=2025-05-22T07:33:50Z caller=logging.go:85 method=Health result=2 took=32.13µs +ts=2025-05-22T07:33:50Z caller=logging.go:85 method=Health result=2 took=32.359µs +ts=2025-05-22T07:33:53Z caller=logging.go:85 method=Health result=2 took=41.189µs +ts=2025-05-22T07:33:53Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T07:33:56Z caller=logging.go:85 method=Health result=2 took=41.199µs +ts=2025-05-22T07:33:56Z caller=logging.go:85 method=Health result=2 took=40.789µs +ts=2025-05-22T07:33:59Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T07:33:59Z caller=logging.go:85 method=Health result=2 took=41.839µs +ts=2025-05-22T07:34:02Z caller=logging.go:85 method=Health result=2 took=30.43µs +ts=2025-05-22T07:34:02Z caller=logging.go:85 method=Health result=2 took=47.639µs +ts=2025-05-22T07:34:05Z caller=logging.go:85 method=Health result=2 took=38.489µs +ts=2025-05-22T07:34:05Z caller=logging.go:85 method=Health result=2 took=34.349µs +ts=2025-05-22T07:34:08Z caller=logging.go:85 method=Health result=2 took=33.849µs +ts=2025-05-22T07:34:08Z caller=logging.go:85 method=Health result=2 took=62.588µs +ts=2025-05-22T07:34:11Z caller=logging.go:85 method=Health result=2 took=33.14µs +ts=2025-05-22T07:34:11Z caller=logging.go:85 method=Health result=2 took=13.82µs +ts=2025-05-22T07:34:14Z caller=logging.go:85 method=Health result=2 took=32.149µs +ts=2025-05-22T07:34:14Z caller=logging.go:85 method=Health result=2 took=47.589µs +ts=2025-05-22T07:34:17Z caller=logging.go:85 method=Health result=2 took=28.739µs +ts=2025-05-22T07:34:17Z caller=logging.go:85 method=Health result=2 took=34.11µs +ts=2025-05-22T07:34:20Z caller=logging.go:85 method=Health result=2 took=38.769µs +ts=2025-05-22T07:34:20Z caller=logging.go:85 method=Health result=2 took=35.059µs +ts=2025-05-22T07:34:23Z caller=logging.go:85 method=Health result=2 took=33.139µs +ts=2025-05-22T07:34:23Z caller=logging.go:85 method=Health result=2 took=47.049µs +ts=2025-05-22T07:34:26Z caller=logging.go:85 method=Health result=2 took=30.319µs +ts=2025-05-22T07:34:26Z caller=logging.go:85 method=Health result=2 took=12.979µs +ts=2025-05-22T07:34:29Z caller=logging.go:85 method=Health result=2 took=28.689µs +ts=2025-05-22T07:34:29Z caller=logging.go:85 method=Health result=2 took=47.189µs +ts=2025-05-22T07:34:32Z caller=logging.go:85 method=Health result=2 took=37.929µs +ts=2025-05-22T07:34:32Z caller=logging.go:85 method=Health result=2 took=39.079µs +ts=2025-05-22T07:34:35Z caller=logging.go:85 method=Health result=2 took=31.98µs +ts=2025-05-22T07:34:35Z caller=logging.go:85 method=Health result=2 took=35.109µs +ts=2025-05-22T07:34:38Z caller=logging.go:85 method=Health result=2 took=30.319µs +ts=2025-05-22T07:34:38Z caller=logging.go:85 method=Health result=2 took=34.67µs +ts=2025-05-22T07:34:41Z caller=logging.go:85 method=Health result=2 took=36.289µs +ts=2025-05-22T07:34:41Z caller=logging.go:85 method=Health result=2 took=37.529µs +ts=2025-05-22T07:34:44Z caller=logging.go:85 method=Health result=2 took=29.439µs +ts=2025-05-22T07:34:44Z caller=logging.go:85 method=Health result=2 took=29.619µs +ts=2025-05-22T07:34:47Z caller=logging.go:85 method=Health result=2 took=42.509µs +ts=2025-05-22T07:34:47Z caller=logging.go:85 method=Health result=2 took=64.458µs +ts=2025-05-22T07:34:50Z caller=logging.go:85 method=Health result=2 took=15.429µs +ts=2025-05-22T07:34:50Z caller=logging.go:85 method=Health result=2 took=29.279µs +ts=2025-05-22T07:34:53Z caller=logging.go:85 method=Health result=2 took=34.659µs +ts=2025-05-22T07:34:53Z caller=logging.go:85 method=Health result=2 took=22.369µs +ts=2025-05-22T07:34:56Z caller=logging.go:85 method=Health result=2 took=31.129µs +ts=2025-05-22T07:34:56Z caller=logging.go:85 method=Health result=2 took=44.459µs +ts=2025-05-22T07:34:59Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T07:34:59Z caller=logging.go:85 method=Health result=2 took=41.259µs +ts=2025-05-22T07:35:02Z caller=logging.go:85 method=Health result=2 took=47.399µs +ts=2025-05-22T07:35:02Z caller=logging.go:85 method=Health result=2 took=42.429µs +ts=2025-05-22T07:35:05Z caller=logging.go:85 method=Health result=2 took=32.349µs +ts=2025-05-22T07:35:05Z caller=logging.go:85 method=Health result=2 took=14.659µs +ts=2025-05-22T07:35:08Z caller=logging.go:85 method=Health result=2 took=51.279µs +ts=2025-05-22T07:35:08Z caller=logging.go:85 method=Health result=2 took=22.59µs +ts=2025-05-22T07:35:11Z caller=logging.go:85 method=Health result=2 took=30.85µs +ts=2025-05-22T07:35:11Z caller=logging.go:85 method=Health result=2 took=16.93µs +ts=2025-05-22T07:35:14Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T07:35:14Z caller=logging.go:85 method=Health result=2 took=42.179µs +ts=2025-05-22T07:35:17Z caller=logging.go:85 method=Health result=2 took=45.869µs +ts=2025-05-22T07:35:17Z caller=logging.go:85 method=Health result=2 took=47.909µs +ts=2025-05-22T07:35:20Z caller=logging.go:85 method=Health result=2 took=30.959µs +ts=2025-05-22T07:35:20Z caller=logging.go:85 method=Health result=2 took=40.499µs +ts=2025-05-22T07:35:23Z caller=logging.go:85 method=Health result=2 took=46.199µs +ts=2025-05-22T07:35:23Z caller=logging.go:85 method=Health result=2 took=48.628µs +ts=2025-05-22T07:35:26Z caller=logging.go:85 method=Health result=2 took=28.79µs +ts=2025-05-22T07:35:26Z caller=logging.go:85 method=Health result=2 took=28.51µs +ts=2025-05-22T07:35:29Z caller=logging.go:85 method=Health result=2 took=31.849µs +ts=2025-05-22T07:35:29Z caller=logging.go:85 method=Health result=2 took=46.369µs +ts=2025-05-22T07:35:32Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T07:35:32Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T07:35:35Z caller=logging.go:85 method=Health result=2 took=41.609µs +ts=2025-05-22T07:35:35Z caller=logging.go:85 method=Health result=2 took=44.669µs +ts=2025-05-22T07:35:38Z caller=logging.go:85 method=Health result=2 took=29.85µs +ts=2025-05-22T07:35:38Z caller=logging.go:85 method=Health result=2 took=15.459µs +ts=2025-05-22T07:35:41Z caller=logging.go:85 method=Health result=2 took=34.039µs +ts=2025-05-22T07:35:41Z caller=logging.go:85 method=Health result=2 took=12.91µs +ts=2025-05-22T07:35:44Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T07:35:44Z caller=logging.go:85 method=Health result=2 took=44.669µs +ts=2025-05-22T07:35:47Z caller=logging.go:85 method=Health result=2 took=15.05µs +ts=2025-05-22T07:35:47Z caller=logging.go:85 method=Health result=2 took=29.51µs +ts=2025-05-22T07:35:50Z caller=logging.go:85 method=Health result=2 took=43.559µs +ts=2025-05-22T07:35:50Z caller=logging.go:85 method=Health result=2 took=44.749µs +ts=2025-05-22T07:35:53Z caller=logging.go:85 method=Health result=2 took=39.179µs +ts=2025-05-22T07:35:53Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T07:35:56Z caller=logging.go:85 method=Health result=2 took=37.519µs +ts=2025-05-22T07:35:56Z caller=logging.go:85 method=Health result=2 took=37.669µs +ts=2025-05-22T07:35:59Z caller=logging.go:85 method=Health result=2 took=44.789µs +ts=2025-05-22T07:35:59Z caller=logging.go:85 method=Health result=2 took=30.999µs +ts=2025-05-22T07:36:02Z caller=logging.go:85 method=Health result=2 took=40.839µs +ts=2025-05-22T07:36:02Z caller=logging.go:85 method=Health result=2 took=40.369µs +ts=2025-05-22T07:36:05Z caller=logging.go:85 method=Health result=2 took=29.589µs +ts=2025-05-22T07:36:05Z caller=logging.go:85 method=Health result=2 took=49.319µs +ts=2025-05-22T07:36:08Z caller=logging.go:85 method=Health result=2 took=31.48µs +ts=2025-05-22T07:36:08Z caller=logging.go:85 method=Health result=2 took=50.138µs +ts=2025-05-22T07:36:11Z caller=logging.go:85 method=Health result=2 took=30.739µs +ts=2025-05-22T07:36:11Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T07:36:14Z caller=logging.go:85 method=Health result=2 took=35.699µs +ts=2025-05-22T07:36:14Z caller=logging.go:85 method=Health result=2 took=35.039µs +ts=2025-05-22T07:36:17Z caller=logging.go:85 method=Health result=2 took=33.26µs +ts=2025-05-22T07:36:17Z caller=logging.go:85 method=Health result=2 took=26.549µs +ts=2025-05-22T07:36:20Z caller=logging.go:85 method=Health result=2 took=44.839µs +ts=2025-05-22T07:36:20Z caller=logging.go:85 method=Health result=2 took=44.159µs +ts=2025-05-22T07:36:23Z caller=logging.go:85 method=Health result=2 took=48.629µs +ts=2025-05-22T07:36:23Z caller=logging.go:85 method=Health result=2 took=48.768µs +ts=2025-05-22T07:36:26Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T07:36:26Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T07:36:29Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T07:36:29Z caller=logging.go:85 method=Health result=2 took=31.759µs +ts=2025-05-22T07:36:32Z caller=logging.go:85 method=Health result=2 took=44.648µs +ts=2025-05-22T07:36:32Z caller=logging.go:85 method=Health result=2 took=41.049µs +ts=2025-05-22T07:36:35Z caller=logging.go:85 method=Health result=2 took=37.739µs +ts=2025-05-22T07:36:35Z caller=logging.go:85 method=Health result=2 took=38.479µs +ts=2025-05-22T07:36:38Z caller=logging.go:85 method=Health result=2 took=31.279µs +ts=2025-05-22T07:36:38Z caller=logging.go:85 method=Health result=2 took=56.429µs +ts=2025-05-22T07:36:41Z caller=logging.go:85 method=Health result=2 took=39.779µs +ts=2025-05-22T07:36:41Z caller=logging.go:85 method=Health result=2 took=40.299µs +ts=2025-05-22T07:36:44Z caller=logging.go:85 method=Health result=2 took=45.199µs +ts=2025-05-22T07:36:44Z caller=logging.go:85 method=Health result=2 took=37.57µs +ts=2025-05-22T07:36:47Z caller=logging.go:85 method=Health result=2 took=31.899µs +ts=2025-05-22T07:36:47Z caller=logging.go:85 method=Health result=2 took=47.789µs +ts=2025-05-22T07:36:50Z caller=logging.go:85 method=Health result=2 took=30.759µs +ts=2025-05-22T07:36:50Z caller=logging.go:85 method=Health result=2 took=13.66µs +ts=2025-05-22T07:36:53Z caller=logging.go:85 method=Health result=2 took=50.879µs +ts=2025-05-22T07:36:53Z caller=logging.go:85 method=Health result=2 took=24.18µs +ts=2025-05-22T07:36:56Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T07:36:56Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T07:36:59Z caller=logging.go:85 method=Health result=2 took=37.039µs +ts=2025-05-22T07:36:59Z caller=logging.go:85 method=Health result=2 took=26.809µs +ts=2025-05-22T07:37:02Z caller=logging.go:85 method=Health result=2 took=37.949µs +ts=2025-05-22T07:37:02Z caller=logging.go:85 method=Health result=2 took=38.809µs +ts=2025-05-22T07:37:05Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T07:37:05Z caller=logging.go:85 method=Health result=2 took=46.789µs +ts=2025-05-22T07:37:08Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T07:37:08Z caller=logging.go:85 method=Health result=2 took=40.099µs +ts=2025-05-22T07:37:11Z caller=logging.go:85 method=Health result=2 took=54.369µs +ts=2025-05-22T07:37:11Z caller=logging.go:85 method=Health result=2 took=54.369µs +ts=2025-05-22T07:37:14Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T07:37:14Z caller=logging.go:85 method=Health result=2 took=47.199µs +ts=2025-05-22T07:37:17Z caller=logging.go:85 method=Health result=2 took=36.109µs +ts=2025-05-22T07:37:17Z caller=logging.go:85 method=Health result=2 took=42.559µs +ts=2025-05-22T07:37:20Z caller=logging.go:85 method=Health result=2 took=30.879µs +ts=2025-05-22T07:37:20Z caller=logging.go:85 method=Health result=2 took=45.139µs +ts=2025-05-22T07:37:23Z caller=logging.go:85 method=Health result=2 took=30.33µs +ts=2025-05-22T07:37:23Z caller=logging.go:85 method=Health result=2 took=9.519µs +ts=2025-05-22T07:37:26Z caller=logging.go:85 method=Health result=2 took=45.059µs +ts=2025-05-22T07:37:26Z caller=logging.go:85 method=Health result=2 took=50.688µs +ts=2025-05-22T07:37:29Z caller=logging.go:85 method=Health result=2 took=52.248µs +ts=2025-05-22T07:37:29Z caller=logging.go:85 method=Health result=2 took=67.399µs +ts=2025-05-22T07:37:32Z caller=logging.go:85 method=Health result=2 took=41.039µs +ts=2025-05-22T07:37:32Z caller=logging.go:85 method=Health result=2 took=41.379µs +ts=2025-05-22T07:37:35Z caller=logging.go:85 method=Health result=2 took=37.209µs +ts=2025-05-22T07:37:35Z caller=logging.go:85 method=Health result=2 took=37.579µs +ts=2025-05-22T07:37:38Z caller=logging.go:85 method=Health result=2 took=43.649µs +ts=2025-05-22T07:37:38Z caller=logging.go:85 method=Health result=2 took=43.619µs +ts=2025-05-22T07:37:41Z caller=logging.go:85 method=Health result=2 took=31.629µs +ts=2025-05-22T07:37:41Z caller=logging.go:85 method=Health result=2 took=56.529µs +ts=2025-05-22T07:37:44Z caller=logging.go:85 method=Health result=2 took=52.808µs +ts=2025-05-22T07:37:44Z caller=logging.go:85 method=Health result=2 took=52.848µs +ts=2025-05-22T07:37:47Z caller=logging.go:85 method=Health result=2 took=37.409µs +ts=2025-05-22T07:37:47Z caller=logging.go:85 method=Health result=2 took=39.569µs +ts=2025-05-22T07:37:50Z caller=logging.go:85 method=Health result=2 took=46.029µs +ts=2025-05-22T07:37:50Z caller=logging.go:85 method=Health result=2 took=30.849µs +ts=2025-05-22T07:37:53Z caller=logging.go:85 method=Health result=2 took=28.69µs +ts=2025-05-22T07:37:53Z caller=logging.go:85 method=Health result=2 took=28.89µs +ts=2025-05-22T07:37:56Z caller=logging.go:85 method=Health result=2 took=37.589µs +ts=2025-05-22T07:37:56Z caller=logging.go:85 method=Health result=2 took=32.969µs +ts=2025-05-22T07:37:59Z caller=logging.go:85 method=Health result=2 took=37.839µs +ts=2025-05-22T07:37:59Z caller=logging.go:85 method=Health result=2 took=37.169µs +ts=2025-05-22T07:38:02Z caller=logging.go:85 method=Health result=2 took=32.319µs +ts=2025-05-22T07:38:02Z caller=logging.go:85 method=Health result=2 took=36.799µs +ts=2025-05-22T07:38:05Z caller=logging.go:85 method=Health result=2 took=28.19µs +ts=2025-05-22T07:38:05Z caller=logging.go:85 method=Health result=2 took=16.41µs +ts=2025-05-22T07:38:08Z caller=logging.go:85 method=Health result=2 took=41.189µs +ts=2025-05-22T07:38:08Z caller=logging.go:85 method=Health result=2 took=41.699µs +ts=2025-05-22T07:38:11Z caller=logging.go:85 method=Health result=2 took=57.458µs +ts=2025-05-22T07:38:11Z caller=logging.go:85 method=Health result=2 took=57.448µs +ts=2025-05-22T07:38:14Z caller=logging.go:85 method=Health result=2 took=43.669µs +ts=2025-05-22T07:38:14Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T07:38:17Z caller=logging.go:85 method=Health result=2 took=34.739µs +ts=2025-05-22T07:38:17Z caller=logging.go:85 method=Health result=2 took=74.118µs +ts=2025-05-22T07:38:20Z caller=logging.go:85 method=Health result=2 took=44.519µs +ts=2025-05-22T07:38:20Z caller=logging.go:85 method=Health result=2 took=42.749µs +ts=2025-05-22T07:38:23Z caller=logging.go:85 method=Health result=2 took=28.289µs +ts=2025-05-22T07:38:23Z caller=logging.go:85 method=Health result=2 took=27.919µs +ts=2025-05-22T07:38:26Z caller=logging.go:85 method=Health result=2 took=30.639µs +ts=2025-05-22T07:38:26Z caller=logging.go:85 method=Health result=2 took=46.579µs +ts=2025-05-22T07:38:29Z caller=logging.go:85 method=Health result=2 took=40.749µs +ts=2025-05-22T07:38:29Z caller=logging.go:85 method=Health result=2 took=43.349µs +ts=2025-05-22T07:38:32Z caller=logging.go:85 method=Health result=2 took=45.699µs +ts=2025-05-22T07:38:32Z caller=logging.go:85 method=Health result=2 took=48.399µs +ts=2025-05-22T07:38:35Z caller=logging.go:85 method=Health result=2 took=44.299µs +ts=2025-05-22T07:38:35Z caller=logging.go:85 method=Health result=2 took=48.519µs +ts=2025-05-22T07:38:38Z caller=logging.go:85 method=Health result=2 took=41.879µs +ts=2025-05-22T07:38:38Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T07:38:41Z caller=logging.go:85 method=Health result=2 took=31.069µs +ts=2025-05-22T07:38:41Z caller=logging.go:85 method=Health result=2 took=49.519µs +ts=2025-05-22T07:38:44Z caller=logging.go:85 method=Health result=2 took=40.109µs +ts=2025-05-22T07:38:44Z caller=logging.go:85 method=Health result=2 took=50.429µs +ts=2025-05-22T07:38:47Z caller=logging.go:85 method=Health result=2 took=35.969µs +ts=2025-05-22T07:38:47Z caller=logging.go:85 method=Health result=2 took=21.24µs +ts=2025-05-22T07:38:50Z caller=logging.go:85 method=Health result=2 took=29.39µs +ts=2025-05-22T07:38:50Z caller=logging.go:85 method=Health result=2 took=44.199µs +ts=2025-05-22T07:38:53Z caller=logging.go:85 method=Health result=2 took=37.449µs +ts=2025-05-22T07:38:53Z caller=logging.go:85 method=Health result=2 took=23.33µs +ts=2025-05-22T07:38:56Z caller=logging.go:85 method=Health result=2 took=42.029µs +ts=2025-05-22T07:38:56Z caller=logging.go:85 method=Health result=2 took=50.179µs +ts=2025-05-22T07:38:59Z caller=logging.go:85 method=Health result=2 took=31.619µs +ts=2025-05-22T07:38:59Z caller=logging.go:85 method=Health result=2 took=47.649µs +ts=2025-05-22T07:39:02Z caller=logging.go:85 method=Health result=2 took=42.039µs +ts=2025-05-22T07:39:02Z caller=logging.go:85 method=Health result=2 took=65.079µs +ts=2025-05-22T07:39:05Z caller=logging.go:85 method=Health result=2 took=43.699µs +ts=2025-05-22T07:39:05Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T07:39:08Z caller=logging.go:85 method=Health result=2 took=44.118µs +ts=2025-05-22T07:39:08Z caller=logging.go:85 method=Health result=2 took=44.058µs +ts=2025-05-22T07:39:11Z caller=logging.go:85 method=Health result=2 took=44.959µs +ts=2025-05-22T07:39:11Z caller=logging.go:85 method=Health result=2 took=35.319µs +ts=2025-05-22T07:39:14Z caller=logging.go:85 method=Health result=2 took=43.369µs +ts=2025-05-22T07:39:14Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T07:39:17Z caller=logging.go:85 method=Health result=2 took=29.559µs +ts=2025-05-22T07:39:17Z caller=logging.go:85 method=Health result=2 took=13.85µs +ts=2025-05-22T07:39:20Z caller=logging.go:85 method=Health result=2 took=44.069µs +ts=2025-05-22T07:39:20Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T07:39:23Z caller=logging.go:85 method=Health result=2 took=31.18µs +ts=2025-05-22T07:39:23Z caller=logging.go:85 method=Health result=2 took=47.939µs +ts=2025-05-22T07:39:26Z caller=logging.go:85 method=Health result=2 took=28.609µs +ts=2025-05-22T07:39:26Z caller=logging.go:85 method=Health result=2 took=28.559µs +ts=2025-05-22T07:39:29Z caller=logging.go:85 method=Health result=2 took=31.209µs +ts=2025-05-22T07:39:29Z caller=logging.go:85 method=Health result=2 took=47.489µs +ts=2025-05-22T07:39:32Z caller=logging.go:85 method=Health result=2 took=31.179µs +ts=2025-05-22T07:39:32Z caller=logging.go:85 method=Health result=2 took=48.249µs +ts=2025-05-22T07:39:35Z caller=logging.go:85 method=Health result=2 took=31.39µs +ts=2025-05-22T07:39:35Z caller=logging.go:85 method=Health result=2 took=31.75µs +ts=2025-05-22T07:39:38Z caller=logging.go:85 method=Health result=2 took=38.6µs +ts=2025-05-22T07:39:38Z caller=logging.go:85 method=Health result=2 took=47.199µs +ts=2025-05-22T07:39:41Z caller=logging.go:85 method=Health result=2 took=38.399µs +ts=2025-05-22T07:39:41Z caller=logging.go:85 method=Health result=2 took=16.599µs +ts=2025-05-22T07:39:44Z caller=logging.go:85 method=Health result=2 took=29.059µs +ts=2025-05-22T07:39:44Z caller=logging.go:85 method=Health result=2 took=29.099µs +ts=2025-05-22T07:39:47Z caller=logging.go:85 method=Health result=2 took=38.029µs +ts=2025-05-22T07:39:47Z caller=logging.go:85 method=Health result=2 took=46.779µs +ts=2025-05-22T07:39:50Z caller=logging.go:85 method=Health result=2 took=38.629µs +ts=2025-05-22T07:39:50Z caller=logging.go:85 method=Health result=2 took=41.189µs +ts=2025-05-22T07:39:53Z caller=logging.go:85 method=Health result=2 took=31.379µs +ts=2025-05-22T07:39:53Z caller=logging.go:85 method=Health result=2 took=41.409µs +ts=2025-05-22T07:39:56Z caller=logging.go:85 method=Health result=2 took=29.84µs +ts=2025-05-22T07:39:56Z caller=logging.go:85 method=Health result=2 took=9.879µs +ts=2025-05-22T07:39:59Z caller=logging.go:85 method=Health result=2 took=37.869µs +ts=2025-05-22T07:39:59Z caller=logging.go:85 method=Health result=2 took=35.2µs +ts=2025-05-22T07:40:02Z caller=logging.go:85 method=Health result=2 took=32.189µs +ts=2025-05-22T07:40:02Z caller=logging.go:85 method=Health result=2 took=47.949µs +ts=2025-05-22T07:40:05Z caller=logging.go:85 method=Health result=2 took=31.209µs +ts=2025-05-22T07:40:05Z caller=logging.go:85 method=Health result=2 took=13.469µs +ts=2025-05-22T07:40:08Z caller=logging.go:85 method=Health result=2 took=44.628µs +ts=2025-05-22T07:40:08Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T07:40:11Z caller=logging.go:85 method=Health result=2 took=112.817µs +ts=2025-05-22T07:40:11Z caller=logging.go:85 method=Health result=2 took=58.108µs +ts=2025-05-22T07:40:14Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T07:40:14Z caller=logging.go:85 method=Health result=2 took=43.669µs +ts=2025-05-22T07:40:17Z caller=logging.go:85 method=Health result=2 took=975.337µs +ts=2025-05-22T07:40:17Z caller=logging.go:85 method=Health result=2 took=35.369µs +ts=2025-05-22T07:40:20Z caller=logging.go:85 method=Health result=2 took=29.789µs +ts=2025-05-22T07:40:20Z caller=logging.go:85 method=Health result=2 took=47.509µs +ts=2025-05-22T07:40:23Z caller=logging.go:85 method=Health result=2 took=30.18µs +ts=2025-05-22T07:40:23Z caller=logging.go:85 method=Health result=2 took=54.708µs +ts=2025-05-22T07:40:26Z caller=logging.go:85 method=Health result=2 took=39.029µs +ts=2025-05-22T07:40:26Z caller=logging.go:85 method=Health result=2 took=24.29µs +ts=2025-05-22T07:40:29Z caller=logging.go:85 method=Health result=2 took=33.899µs +ts=2025-05-22T07:40:29Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T07:40:32Z caller=logging.go:85 method=Health result=2 took=42.138µs +ts=2025-05-22T07:40:32Z caller=logging.go:85 method=Health result=2 took=43.308µs +ts=2025-05-22T07:40:35Z caller=logging.go:85 method=Health result=2 took=43.329µs +ts=2025-05-22T07:40:35Z caller=logging.go:85 method=Health result=2 took=49.569µs +ts=2025-05-22T07:40:38Z caller=logging.go:85 method=Health result=2 took=41.859µs +ts=2025-05-22T07:40:38Z caller=logging.go:85 method=Health result=2 took=56.868µs +ts=2025-05-22T07:40:41Z caller=logging.go:85 method=Health result=2 took=29.739µs +ts=2025-05-22T07:40:41Z caller=logging.go:85 method=Health result=2 took=15.07µs +ts=2025-05-22T07:40:44Z caller=logging.go:85 method=Health result=2 took=31.259µs +ts=2025-05-22T07:40:44Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T07:40:47Z caller=logging.go:85 method=Health result=2 took=49.099µs +ts=2025-05-22T07:40:47Z caller=logging.go:85 method=Health result=2 took=60.698µs +ts=2025-05-22T07:40:50Z caller=logging.go:85 method=Health result=2 took=29.479µs +ts=2025-05-22T07:40:50Z caller=logging.go:85 method=Health result=2 took=46.939µs +ts=2025-05-22T07:40:53Z caller=logging.go:85 method=Health result=2 took=15.35µs +ts=2025-05-22T07:40:53Z caller=logging.go:85 method=Health result=2 took=38.249µs +ts=2025-05-22T07:40:56Z caller=logging.go:85 method=Health result=2 took=40.399µs +ts=2025-05-22T07:40:56Z caller=logging.go:85 method=Health result=2 took=40.369µs +ts=2025-05-22T07:40:59Z caller=logging.go:85 method=Health result=2 took=25.819µs +ts=2025-05-22T07:40:59Z caller=logging.go:85 method=Health result=2 took=43.319µs +ts=2025-05-22T07:41:02Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T07:41:02Z caller=logging.go:85 method=Health result=2 took=50.229µs +ts=2025-05-22T07:41:05Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T07:41:05Z caller=logging.go:85 method=Health result=2 took=41.829µs +ts=2025-05-22T07:41:08Z caller=logging.go:85 method=Health result=2 took=43.549µs +ts=2025-05-22T07:41:08Z caller=logging.go:85 method=Health result=2 took=40.249µs +ts=2025-05-22T07:41:11Z caller=logging.go:85 method=Health result=2 took=33.949µs +ts=2025-05-22T07:41:11Z caller=logging.go:85 method=Health result=2 took=47.629µs +ts=2025-05-22T07:41:14Z caller=logging.go:85 method=Health result=2 took=37.239µs +ts=2025-05-22T07:41:14Z caller=logging.go:85 method=Health result=2 took=37.349µs +ts=2025-05-22T07:41:17Z caller=logging.go:85 method=Health result=2 took=32.18µs +ts=2025-05-22T07:41:17Z caller=logging.go:85 method=Health result=2 took=40.229µs +ts=2025-05-22T07:41:20Z caller=logging.go:85 method=Health result=2 took=32.799µs +ts=2025-05-22T07:41:20Z caller=logging.go:85 method=Health result=2 took=36.209µs +ts=2025-05-22T07:41:23Z caller=logging.go:85 method=Health result=2 took=40.129µs +ts=2025-05-22T07:41:23Z caller=logging.go:85 method=Health result=2 took=40.639µs +ts=2025-05-22T07:41:26Z caller=logging.go:85 method=Health result=2 took=24.22µs +ts=2025-05-22T07:41:26Z caller=logging.go:85 method=Health result=2 took=40.369µs +ts=2025-05-22T07:41:29Z caller=logging.go:85 method=Health result=2 took=31.039µs +ts=2025-05-22T07:41:29Z caller=logging.go:85 method=Health result=2 took=17.26µs +ts=2025-05-22T07:41:32Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T07:41:32Z caller=logging.go:85 method=Health result=2 took=37.669µs +ts=2025-05-22T07:41:35Z caller=logging.go:85 method=Health result=2 took=43.779µs +ts=2025-05-22T07:41:35Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T07:41:38Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T07:41:38Z caller=logging.go:85 method=Health result=2 took=43.119µs +ts=2025-05-22T07:41:41Z caller=logging.go:85 method=Health result=2 took=44.949µs +ts=2025-05-22T07:41:41Z caller=logging.go:85 method=Health result=2 took=50.068µs +ts=2025-05-22T07:41:44Z caller=logging.go:85 method=Health result=2 took=52.529µs +ts=2025-05-22T07:41:44Z caller=logging.go:85 method=Health result=2 took=31.209µs +ts=2025-05-22T07:41:47Z caller=logging.go:85 method=Health result=2 took=45.719µs +ts=2025-05-22T07:41:47Z caller=logging.go:85 method=Health result=2 took=51.419µs +ts=2025-05-22T07:41:50Z caller=logging.go:85 method=Health result=2 took=46.949µs +ts=2025-05-22T07:41:50Z caller=logging.go:85 method=Health result=2 took=44.869µs +ts=2025-05-22T07:41:53Z caller=logging.go:85 method=Health result=2 took=54.598µs +ts=2025-05-22T07:41:53Z caller=logging.go:85 method=Health result=2 took=54.578µs +ts=2025-05-22T07:41:56Z caller=logging.go:85 method=Health result=2 took=46.819µs +ts=2025-05-22T07:41:56Z caller=logging.go:85 method=Health result=2 took=50.009µs +ts=2025-05-22T07:41:59Z caller=logging.go:85 method=Health result=2 took=30.569µs +ts=2025-05-22T07:41:59Z caller=logging.go:85 method=Health result=2 took=54.509µs +ts=2025-05-22T07:42:02Z caller=logging.go:85 method=Health result=2 took=39.019µs +ts=2025-05-22T07:42:02Z caller=logging.go:85 method=Health result=2 took=47.949µs +ts=2025-05-22T07:42:05Z caller=logging.go:85 method=Health result=2 took=33.289µs +ts=2025-05-22T07:42:05Z caller=logging.go:85 method=Health result=2 took=43.259µs +ts=2025-05-22T07:42:08Z caller=logging.go:85 method=Health result=2 took=45.179µs +ts=2025-05-22T07:42:08Z caller=logging.go:85 method=Health result=2 took=44.869µs +ts=2025-05-22T07:42:11Z caller=logging.go:85 method=Health result=2 took=42.999µs +ts=2025-05-22T07:42:11Z caller=logging.go:85 method=Health result=2 took=43.539µs +ts=2025-05-22T07:42:14Z caller=logging.go:85 method=Health result=2 took=40.009µs +ts=2025-05-22T07:42:14Z caller=logging.go:85 method=Health result=2 took=39.509µs +ts=2025-05-22T07:42:17Z caller=logging.go:85 method=Health result=2 took=29.63µs +ts=2025-05-22T07:42:17Z caller=logging.go:85 method=Health result=2 took=36.319µs +ts=2025-05-22T07:42:20Z caller=logging.go:85 method=Health result=2 took=39.909µs +ts=2025-05-22T07:42:20Z caller=logging.go:85 method=Health result=2 took=59.049µs +ts=2025-05-22T07:42:23Z caller=logging.go:85 method=Health result=2 took=44.209µs +ts=2025-05-22T07:42:23Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T07:42:26Z caller=logging.go:85 method=Health result=2 took=42.009µs +ts=2025-05-22T07:42:26Z caller=logging.go:85 method=Health result=2 took=41.509µs +ts=2025-05-22T07:42:29Z caller=logging.go:85 method=Health result=2 took=38.229µs +ts=2025-05-22T07:42:29Z caller=logging.go:85 method=Health result=2 took=61.168µs +ts=2025-05-22T07:42:32Z caller=logging.go:85 method=Health result=2 took=44.329µs +ts=2025-05-22T07:42:32Z caller=logging.go:85 method=Health result=2 took=43.349µs +ts=2025-05-22T07:42:35Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T07:42:35Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T07:42:38Z caller=logging.go:85 method=Health result=2 took=44.509µs +ts=2025-05-22T07:42:38Z caller=logging.go:85 method=Health result=2 took=46.769µs +ts=2025-05-22T07:42:41Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T07:42:41Z caller=logging.go:85 method=Health result=2 took=46.959µs +ts=2025-05-22T07:42:44Z caller=logging.go:85 method=Health result=2 took=52.189µs +ts=2025-05-22T07:42:44Z caller=logging.go:85 method=Health result=2 took=49.878µs +ts=2025-05-22T07:42:47Z caller=logging.go:85 method=Health result=2 took=40.149µs +ts=2025-05-22T07:42:47Z caller=logging.go:85 method=Health result=2 took=43.539µs +ts=2025-05-22T07:42:50Z caller=logging.go:85 method=Health result=2 took=28.54µs +ts=2025-05-22T07:42:50Z caller=logging.go:85 method=Health result=2 took=28.49µs +ts=2025-05-22T07:42:53Z caller=logging.go:85 method=Health result=2 took=41.939µs +ts=2025-05-22T07:42:53Z caller=logging.go:85 method=Health result=2 took=63.739µs +ts=2025-05-22T07:42:56Z caller=logging.go:85 method=Health result=2 took=41.849µs +ts=2025-05-22T07:42:56Z caller=logging.go:85 method=Health result=2 took=48.859µs +ts=2025-05-22T07:42:59Z caller=logging.go:85 method=Health result=2 took=40.959µs +ts=2025-05-22T07:42:59Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T07:43:02Z caller=logging.go:85 method=Health result=2 took=41.579µs +ts=2025-05-22T07:43:02Z caller=logging.go:85 method=Health result=2 took=31.089µs +ts=2025-05-22T07:43:05Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T07:43:05Z caller=logging.go:85 method=Health result=2 took=50.058µs +ts=2025-05-22T07:43:08Z caller=logging.go:85 method=Health result=2 took=44.399µs +ts=2025-05-22T07:43:08Z caller=logging.go:85 method=Health result=2 took=45.279µs +ts=2025-05-22T07:43:11Z caller=logging.go:85 method=Health result=2 took=58.909µs +ts=2025-05-22T07:43:11Z caller=logging.go:85 method=Health result=2 took=29.899µs +ts=2025-05-22T07:43:14Z caller=logging.go:85 method=Health result=2 took=43.748µs +ts=2025-05-22T07:43:14Z caller=logging.go:85 method=Health result=2 took=43.088µs +ts=2025-05-22T07:43:17Z caller=logging.go:85 method=Health result=2 took=41.059µs +ts=2025-05-22T07:43:17Z caller=logging.go:85 method=Health result=2 took=35.369µs +ts=2025-05-22T07:43:20Z caller=logging.go:85 method=Health result=2 took=38.489µs +ts=2025-05-22T07:43:20Z caller=logging.go:85 method=Health result=2 took=48.529µs +ts=2025-05-22T07:43:23Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T07:43:23Z caller=logging.go:85 method=Health result=2 took=43.039µs +ts=2025-05-22T07:43:26Z caller=logging.go:85 method=Health result=2 took=45.819µs +ts=2025-05-22T07:43:26Z caller=logging.go:85 method=Health result=2 took=47.799µs +ts=2025-05-22T07:43:29Z caller=logging.go:85 method=Health result=2 took=27.52µs +ts=2025-05-22T07:43:29Z caller=logging.go:85 method=Health result=2 took=28.77µs +ts=2025-05-22T07:43:32Z caller=logging.go:85 method=Health result=2 took=46.399µs +ts=2025-05-22T07:43:32Z caller=logging.go:85 method=Health result=2 took=51.148µs +ts=2025-05-22T07:43:35Z caller=logging.go:85 method=Health result=2 took=28.789µs +ts=2025-05-22T07:43:35Z caller=logging.go:85 method=Health result=2 took=28.849µs +ts=2025-05-22T07:43:38Z caller=logging.go:85 method=Health result=2 took=28.999µs +ts=2025-05-22T07:43:38Z caller=logging.go:85 method=Health result=2 took=28.929µs +ts=2025-05-22T07:43:41Z caller=logging.go:85 method=Health result=2 took=46.739µs +ts=2025-05-22T07:43:41Z caller=logging.go:85 method=Health result=2 took=48.339µs +ts=2025-05-22T07:43:44Z caller=logging.go:85 method=Health result=2 took=42.779µs +ts=2025-05-22T07:43:44Z caller=logging.go:85 method=Health result=2 took=49.419µs +ts=2025-05-22T07:43:47Z caller=logging.go:85 method=Health result=2 took=44.419µs +ts=2025-05-22T07:43:47Z caller=logging.go:85 method=Health result=2 took=48.079µs +ts=2025-05-22T07:43:50Z caller=logging.go:85 method=Health result=2 took=29.26µs +ts=2025-05-22T07:43:50Z caller=logging.go:85 method=Health result=2 took=29.26µs +ts=2025-05-22T07:43:53Z caller=logging.go:85 method=Health result=2 took=38.079µs +ts=2025-05-22T07:43:53Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T07:43:56Z caller=logging.go:85 method=Health result=2 took=32.69µs +ts=2025-05-22T07:43:56Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T07:43:59Z caller=logging.go:85 method=Health result=2 took=43.839µs +ts=2025-05-22T07:43:59Z caller=logging.go:85 method=Health result=2 took=44.349µs +ts=2025-05-22T07:44:02Z caller=logging.go:85 method=Health result=2 took=49.418µs +ts=2025-05-22T07:44:02Z caller=logging.go:85 method=Health result=2 took=48.799µs +ts=2025-05-22T07:44:05Z caller=logging.go:85 method=Health result=2 took=42.999µs +ts=2025-05-22T07:44:05Z caller=logging.go:85 method=Health result=2 took=51.259µs +ts=2025-05-22T07:44:08Z caller=logging.go:85 method=Health result=2 took=57.728µs +ts=2025-05-22T07:44:08Z caller=logging.go:85 method=Health result=2 took=38.569µs +ts=2025-05-22T07:44:11Z caller=logging.go:85 method=Health result=2 took=55.358µs +ts=2025-05-22T07:44:11Z caller=logging.go:85 method=Health result=2 took=51.319µs +ts=2025-05-22T07:44:14Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T07:44:14Z caller=logging.go:85 method=Health result=2 took=43.869µs +ts=2025-05-22T07:44:17Z caller=logging.go:85 method=Health result=2 took=877.359µs +ts=2025-05-22T07:44:17Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T07:44:20Z caller=logging.go:85 method=Health result=2 took=38.069µs +ts=2025-05-22T07:44:20Z caller=logging.go:85 method=Health result=2 took=49.629µs +ts=2025-05-22T07:44:23Z caller=logging.go:85 method=Health result=2 took=45.599µs +ts=2025-05-22T07:44:23Z caller=logging.go:85 method=Health result=2 took=59.659µs +ts=2025-05-22T07:44:26Z caller=logging.go:85 method=Health result=2 took=36.239µs +ts=2025-05-22T07:44:26Z caller=logging.go:85 method=Health result=2 took=35.949µs +ts=2025-05-22T07:44:29Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T07:44:29Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T07:44:32Z caller=logging.go:85 method=Health result=2 took=39.059µs +ts=2025-05-22T07:44:32Z caller=logging.go:85 method=Health result=2 took=39.779µs +ts=2025-05-22T07:44:35Z caller=logging.go:85 method=Health result=2 took=43.579µs +ts=2025-05-22T07:44:35Z caller=logging.go:85 method=Health result=2 took=31.659µs +ts=2025-05-22T07:44:38Z caller=logging.go:85 method=Health result=2 took=42.179µs +ts=2025-05-22T07:44:38Z caller=logging.go:85 method=Health result=2 took=43.598µs +ts=2025-05-22T07:44:41Z caller=logging.go:85 method=Health result=2 took=44.759µs +ts=2025-05-22T07:44:41Z caller=logging.go:85 method=Health result=2 took=30.499µs +ts=2025-05-22T07:44:44Z caller=logging.go:85 method=Health result=2 took=39.679µs +ts=2025-05-22T07:44:44Z caller=logging.go:85 method=Health result=2 took=27.809µs +ts=2025-05-22T07:44:47Z caller=logging.go:85 method=Health result=2 took=42.139µs +ts=2025-05-22T07:44:47Z caller=logging.go:85 method=Health result=2 took=48.319µs +ts=2025-05-22T07:44:50Z caller=logging.go:85 method=Health result=2 took=35.579µs +ts=2025-05-22T07:44:50Z caller=logging.go:85 method=Health result=2 took=19.999µs +ts=2025-05-22T07:44:53Z caller=logging.go:85 method=Health result=2 took=41.489µs +ts=2025-05-22T07:44:53Z caller=logging.go:85 method=Health result=2 took=41.489µs +ts=2025-05-22T07:44:56Z caller=logging.go:85 method=Health result=2 took=44.548µs +ts=2025-05-22T07:44:56Z caller=logging.go:85 method=Health result=2 took=51.069µs +ts=2025-05-22T07:44:59Z caller=logging.go:85 method=Health result=2 took=39.42µs +ts=2025-05-22T07:44:59Z caller=logging.go:85 method=Health result=2 took=38.74µs +ts=2025-05-22T07:45:02Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T07:45:02Z caller=logging.go:85 method=Health result=2 took=37.629µs +ts=2025-05-22T07:45:05Z caller=logging.go:85 method=Health result=2 took=43.379µs +ts=2025-05-22T07:45:05Z caller=logging.go:85 method=Health result=2 took=44.119µs +ts=2025-05-22T07:45:08Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T07:45:08Z caller=logging.go:85 method=Health result=2 took=43.869µs +ts=2025-05-22T07:45:11Z caller=logging.go:85 method=Health result=2 took=39.359µs +ts=2025-05-22T07:45:11Z caller=logging.go:85 method=Health result=2 took=38.689µs +ts=2025-05-22T07:45:14Z caller=logging.go:85 method=Health result=2 took=29.889µs +ts=2025-05-22T07:45:14Z caller=logging.go:85 method=Health result=2 took=10.35µs +ts=2025-05-22T07:45:17Z caller=logging.go:85 method=Health result=2 took=28.479µs +ts=2025-05-22T07:45:17Z caller=logging.go:85 method=Health result=2 took=28.489µs +ts=2025-05-22T07:45:20Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T07:45:20Z caller=logging.go:85 method=Health result=2 took=42.349µs +ts=2025-05-22T07:45:23Z caller=logging.go:85 method=Health result=2 took=31.569µs +ts=2025-05-22T07:45:23Z caller=logging.go:85 method=Health result=2 took=46.199µs +ts=2025-05-22T07:45:26Z caller=logging.go:85 method=Health result=2 took=27.079µs +ts=2025-05-22T07:45:26Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T07:45:29Z caller=logging.go:85 method=Health result=2 took=41.659µs +ts=2025-05-22T07:45:29Z caller=logging.go:85 method=Health result=2 took=31.659µs +ts=2025-05-22T07:45:32Z caller=logging.go:85 method=Health result=2 took=45.829µs +ts=2025-05-22T07:45:32Z caller=logging.go:85 method=Health result=2 took=48.329µs +ts=2025-05-22T07:45:35Z caller=logging.go:85 method=Health result=2 took=46.559µs +ts=2025-05-22T07:45:35Z caller=logging.go:85 method=Health result=2 took=48.539µs +ts=2025-05-22T07:45:38Z caller=logging.go:85 method=Health result=2 took=45.459µs +ts=2025-05-22T07:45:38Z caller=logging.go:85 method=Health result=2 took=49.069µs +ts=2025-05-22T07:45:41Z caller=logging.go:85 method=Health result=2 took=41.809µs +ts=2025-05-22T07:45:41Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T07:45:44Z caller=logging.go:85 method=Health result=2 took=38.119µs +ts=2025-05-22T07:45:44Z caller=logging.go:85 method=Health result=2 took=52.329µs +ts=2025-05-22T07:45:47Z caller=logging.go:85 method=Health result=2 took=45.559µs +ts=2025-05-22T07:45:47Z caller=logging.go:85 method=Health result=2 took=48.588µs +ts=2025-05-22T07:45:50Z caller=logging.go:85 method=Health result=2 took=51.729µs +ts=2025-05-22T07:45:50Z caller=logging.go:85 method=Health result=2 took=46.489µs +ts=2025-05-22T07:45:53Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T07:45:53Z caller=logging.go:85 method=Health result=2 took=47.309µs +ts=2025-05-22T07:45:56Z caller=logging.go:85 method=Health result=2 took=44.769µs +ts=2025-05-22T07:45:56Z caller=logging.go:85 method=Health result=2 took=50.779µs +ts=2025-05-22T07:45:59Z caller=logging.go:85 method=Health result=2 took=48.919µs +ts=2025-05-22T07:45:59Z caller=logging.go:85 method=Health result=2 took=48.959µs +ts=2025-05-22T07:46:02Z caller=logging.go:85 method=Health result=2 took=44.399µs +ts=2025-05-22T07:46:02Z caller=logging.go:85 method=Health result=2 took=49.098µs +ts=2025-05-22T07:46:05Z caller=logging.go:85 method=Health result=2 took=30.419µs +ts=2025-05-22T07:46:05Z caller=logging.go:85 method=Health result=2 took=44.689µs +ts=2025-05-22T07:46:08Z caller=logging.go:85 method=Health result=2 took=32.439µs +ts=2025-05-22T07:46:08Z caller=logging.go:85 method=Health result=2 took=41.129µs +ts=2025-05-22T07:46:11Z caller=logging.go:85 method=Health result=2 took=51.449µs +ts=2025-05-22T07:46:11Z caller=logging.go:85 method=Health result=2 took=52.159µs +ts=2025-05-22T07:46:14Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T07:46:14Z caller=logging.go:85 method=Health result=2 took=42.289µs +ts=2025-05-22T07:46:17Z caller=logging.go:85 method=Health result=2 took=66.028µs +ts=2025-05-22T07:46:17Z caller=logging.go:85 method=Health result=2 took=27.399µs +ts=2025-05-22T07:46:20Z caller=logging.go:85 method=Health result=2 took=35.799µs +ts=2025-05-22T07:46:20Z caller=logging.go:85 method=Health result=2 took=35.859µs +ts=2025-05-22T07:46:23Z caller=logging.go:85 method=Health result=2 took=47.039µs +ts=2025-05-22T07:46:23Z caller=logging.go:85 method=Health result=2 took=47.039µs +ts=2025-05-22T07:46:26Z caller=logging.go:85 method=Health result=2 took=40.009µs +ts=2025-05-22T07:46:26Z caller=logging.go:85 method=Health result=2 took=40.129µs +ts=2025-05-22T07:46:29Z caller=logging.go:85 method=Health result=2 took=45.209µs +ts=2025-05-22T07:46:29Z caller=logging.go:85 method=Health result=2 took=47.238µs +ts=2025-05-22T07:46:32Z caller=logging.go:85 method=Health result=2 took=28.449µs +ts=2025-05-22T07:46:32Z caller=logging.go:85 method=Health result=2 took=28.429µs +ts=2025-05-22T07:46:35Z caller=logging.go:85 method=Health result=2 took=42.389µs +ts=2025-05-22T07:46:35Z caller=logging.go:85 method=Health result=2 took=30.989µs +ts=2025-05-22T07:46:38Z caller=logging.go:85 method=Health result=2 took=42.629µs +ts=2025-05-22T07:46:38Z caller=logging.go:85 method=Health result=2 took=51.538µs +ts=2025-05-22T07:46:41Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T07:46:41Z caller=logging.go:85 method=Health result=2 took=48.659µs +ts=2025-05-22T07:46:44Z caller=logging.go:85 method=Health result=2 took=41.299µs +ts=2025-05-22T07:46:44Z caller=logging.go:85 method=Health result=2 took=48.499µs +ts=2025-05-22T07:46:47Z caller=logging.go:85 method=Health result=2 took=42.379µs +ts=2025-05-22T07:46:47Z caller=logging.go:85 method=Health result=2 took=42.759µs +ts=2025-05-22T07:46:50Z caller=logging.go:85 method=Health result=2 took=45.619µs +ts=2025-05-22T07:46:50Z caller=logging.go:85 method=Health result=2 took=50.528µs +ts=2025-05-22T07:46:53Z caller=logging.go:85 method=Health result=2 took=26.169µs +ts=2025-05-22T07:46:53Z caller=logging.go:85 method=Health result=2 took=41.579µs +ts=2025-05-22T07:46:56Z caller=logging.go:85 method=Health result=2 took=33.939µs +ts=2025-05-22T07:46:56Z caller=logging.go:85 method=Health result=2 took=37.139µs +ts=2025-05-22T07:46:59Z caller=logging.go:85 method=Health result=2 took=39.779µs +ts=2025-05-22T07:46:59Z caller=logging.go:85 method=Health result=2 took=23.65µs +ts=2025-05-22T07:47:02Z caller=logging.go:85 method=Health result=2 took=42.869µs +ts=2025-05-22T07:47:02Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T07:47:05Z caller=logging.go:85 method=Health result=2 took=36.859µs +ts=2025-05-22T07:47:05Z caller=logging.go:85 method=Health result=2 took=36.869µs +ts=2025-05-22T07:47:08Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T07:47:08Z caller=logging.go:85 method=Health result=2 took=49.739µs +ts=2025-05-22T07:47:11Z caller=logging.go:85 method=Health result=2 took=41.529µs +ts=2025-05-22T07:47:11Z caller=logging.go:85 method=Health result=2 took=37.829µs +ts=2025-05-22T07:47:14Z caller=logging.go:85 method=Health result=2 took=45.089µs +ts=2025-05-22T07:47:14Z caller=logging.go:85 method=Health result=2 took=53.099µs +ts=2025-05-22T07:47:17Z caller=logging.go:85 method=Health result=2 took=40.569µs +ts=2025-05-22T07:47:17Z caller=logging.go:85 method=Health result=2 took=49.749µs +ts=2025-05-22T07:47:20Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T07:47:20Z caller=logging.go:85 method=Health result=2 took=48.408µs +ts=2025-05-22T07:47:23Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T07:47:23Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T07:47:26Z caller=logging.go:85 method=Health result=2 took=34.599µs +ts=2025-05-22T07:47:26Z caller=logging.go:85 method=Health result=2 took=39.429µs +ts=2025-05-22T07:47:29Z caller=logging.go:85 method=Health result=2 took=32.189µs +ts=2025-05-22T07:47:29Z caller=logging.go:85 method=Health result=2 took=48.619µs +ts=2025-05-22T07:47:32Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T07:47:32Z caller=logging.go:85 method=Health result=2 took=39.219µs +ts=2025-05-22T07:47:35Z caller=logging.go:85 method=Health result=2 took=27.549µs +ts=2025-05-22T07:47:35Z caller=logging.go:85 method=Health result=2 took=14.03µs +ts=2025-05-22T07:47:38Z caller=logging.go:85 method=Health result=2 took=42.379µs +ts=2025-05-22T07:47:38Z caller=logging.go:85 method=Health result=2 took=49.088µs +ts=2025-05-22T07:47:41Z caller=logging.go:85 method=Health result=2 took=38.039µs +ts=2025-05-22T07:47:41Z caller=logging.go:85 method=Health result=2 took=49.199µs +ts=2025-05-22T07:47:44Z caller=logging.go:85 method=Health result=2 took=44.069µs +ts=2025-05-22T07:47:44Z caller=logging.go:85 method=Health result=2 took=46.379µs +ts=2025-05-22T07:47:47Z caller=logging.go:85 method=Health result=2 took=42.159µs +ts=2025-05-22T07:47:47Z caller=logging.go:85 method=Health result=2 took=47.229µs +ts=2025-05-22T07:47:50Z caller=logging.go:85 method=Health result=2 took=40.729µs +ts=2025-05-22T07:47:50Z caller=logging.go:85 method=Health result=2 took=41.529µs +ts=2025-05-22T07:47:53Z caller=logging.go:85 method=Health result=2 took=39.249µs +ts=2025-05-22T07:47:53Z caller=logging.go:85 method=Health result=2 took=40.009µs +ts=2025-05-22T07:47:56Z caller=logging.go:85 method=Health result=2 took=38.699µs +ts=2025-05-22T07:47:56Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T07:47:59Z caller=logging.go:85 method=Health result=2 took=48.008µs +ts=2025-05-22T07:47:59Z caller=logging.go:85 method=Health result=2 took=217.465µs +ts=2025-05-22T07:48:02Z caller=logging.go:85 method=Health result=2 took=49.368µs +ts=2025-05-22T07:48:02Z caller=logging.go:85 method=Health result=2 took=48.729µs +ts=2025-05-22T07:48:05Z caller=logging.go:85 method=Health result=2 took=42.229µs +ts=2025-05-22T07:48:05Z caller=logging.go:85 method=Health result=2 took=42.879µs +ts=2025-05-22T07:48:08Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T07:48:08Z caller=logging.go:85 method=Health result=2 took=48.929µs +ts=2025-05-22T07:48:11Z caller=logging.go:85 method=Health result=2 took=44.269µs +ts=2025-05-22T07:48:11Z caller=logging.go:85 method=Health result=2 took=51.059µs +ts=2025-05-22T07:48:14Z caller=logging.go:85 method=Health result=2 took=45.279µs +ts=2025-05-22T07:48:14Z caller=logging.go:85 method=Health result=2 took=48.528µs +ts=2025-05-22T07:48:17Z caller=logging.go:85 method=Health result=2 took=66.189µs +ts=2025-05-22T07:48:17Z caller=logging.go:85 method=Health result=2 took=61.729µs +ts=2025-05-22T07:48:20Z caller=logging.go:85 method=Health result=2 took=44.189µs +ts=2025-05-22T07:48:20Z caller=logging.go:85 method=Health result=2 took=45.968µs +ts=2025-05-22T07:48:23Z caller=logging.go:85 method=Health result=2 took=55.308µs +ts=2025-05-22T07:48:23Z caller=logging.go:85 method=Health result=2 took=55.228µs +ts=2025-05-22T07:48:26Z caller=logging.go:85 method=Health result=2 took=38.859µs +ts=2025-05-22T07:48:26Z caller=logging.go:85 method=Health result=2 took=52.279µs +ts=2025-05-22T07:48:29Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T07:48:29Z caller=logging.go:85 method=Health result=2 took=89.128µs +ts=2025-05-22T07:48:32Z caller=logging.go:85 method=Health result=2 took=45.059µs +ts=2025-05-22T07:48:32Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T07:48:35Z caller=logging.go:85 method=Health result=2 took=43.529µs +ts=2025-05-22T07:48:35Z caller=logging.go:85 method=Health result=2 took=43.529µs +ts=2025-05-22T07:48:38Z caller=logging.go:85 method=Health result=2 took=36.879µs +ts=2025-05-22T07:48:38Z caller=logging.go:85 method=Health result=2 took=46.949µs +ts=2025-05-22T07:48:41Z caller=logging.go:85 method=Health result=2 took=39.109µs +ts=2025-05-22T07:48:41Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T07:48:44Z caller=logging.go:85 method=Health result=2 took=55.648µs +ts=2025-05-22T07:48:44Z caller=logging.go:85 method=Health result=2 took=55.698µs +ts=2025-05-22T07:48:47Z caller=logging.go:85 method=Health result=2 took=45.359µs +ts=2025-05-22T07:48:47Z caller=logging.go:85 method=Health result=2 took=50.359µs +ts=2025-05-22T07:48:50Z caller=logging.go:85 method=Health result=2 took=47.099µs +ts=2025-05-22T07:48:50Z caller=logging.go:85 method=Health result=2 took=43.929µs +ts=2025-05-22T07:48:53Z caller=logging.go:85 method=Health result=2 took=41.549µs +ts=2025-05-22T07:48:53Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T07:48:56Z caller=logging.go:85 method=Health result=2 took=31.389µs +ts=2025-05-22T07:48:56Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T07:48:59Z caller=logging.go:85 method=Health result=2 took=63.288µs +ts=2025-05-22T07:48:59Z caller=logging.go:85 method=Health result=2 took=51.969µs +ts=2025-05-22T07:49:02Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T07:49:02Z caller=logging.go:85 method=Health result=2 took=52.778µs +ts=2025-05-22T07:49:05Z caller=logging.go:85 method=Health result=2 took=41.899µs +ts=2025-05-22T07:49:05Z caller=logging.go:85 method=Health result=2 took=48.058µs +ts=2025-05-22T07:49:08Z caller=logging.go:85 method=Health result=2 took=36.389µs +ts=2025-05-22T07:49:08Z caller=logging.go:85 method=Health result=2 took=36.279µs +ts=2025-05-22T07:49:11Z caller=logging.go:85 method=Health result=2 took=51.148µs +ts=2025-05-22T07:49:11Z caller=logging.go:85 method=Health result=2 took=51.859µs +ts=2025-05-22T07:49:14Z caller=logging.go:85 method=Health result=2 took=48.808µs +ts=2025-05-22T07:49:14Z caller=logging.go:85 method=Health result=2 took=44.489µs +ts=2025-05-22T07:49:17Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T07:49:17Z caller=logging.go:85 method=Health result=2 took=48.669µs +ts=2025-05-22T07:49:20Z caller=logging.go:85 method=Health result=2 took=31.299µs +ts=2025-05-22T07:49:20Z caller=logging.go:85 method=Health result=2 took=52.399µs +ts=2025-05-22T07:49:23Z caller=logging.go:85 method=Health result=2 took=35.599µs +ts=2025-05-22T07:49:23Z caller=logging.go:85 method=Health result=2 took=35.919µs +ts=2025-05-22T07:49:26Z caller=logging.go:85 method=Health result=2 took=52.579µs +ts=2025-05-22T07:49:26Z caller=logging.go:85 method=Health result=2 took=49.749µs +ts=2025-05-22T07:49:29Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T07:49:29Z caller=logging.go:85 method=Health result=2 took=40.029µs +ts=2025-05-22T07:49:32Z caller=logging.go:85 method=Health result=2 took=43.019µs +ts=2025-05-22T07:49:32Z caller=logging.go:85 method=Health result=2 took=64.838µs +ts=2025-05-22T07:49:35Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T07:49:35Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T07:49:38Z caller=logging.go:85 method=Health result=2 took=43.329µs +ts=2025-05-22T07:49:38Z caller=logging.go:85 method=Health result=2 took=59.848µs +ts=2025-05-22T07:49:41Z caller=logging.go:85 method=Health result=2 took=44.449µs +ts=2025-05-22T07:49:41Z caller=logging.go:85 method=Health result=2 took=50.189µs +ts=2025-05-22T07:49:44Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T07:49:44Z caller=logging.go:85 method=Health result=2 took=42.869µs +ts=2025-05-22T07:49:47Z caller=logging.go:85 method=Health result=2 took=65.478µs +ts=2025-05-22T07:49:47Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T07:49:50Z caller=logging.go:85 method=Health result=2 took=44.329µs +ts=2025-05-22T07:49:50Z caller=logging.go:85 method=Health result=2 took=62.588µs +ts=2025-05-22T07:49:53Z caller=logging.go:85 method=Health result=2 took=43.119µs +ts=2025-05-22T07:49:53Z caller=logging.go:85 method=Health result=2 took=43.469µs +ts=2025-05-22T07:49:56Z caller=logging.go:85 method=Health result=2 took=36.97µs +ts=2025-05-22T07:49:56Z caller=logging.go:85 method=Health result=2 took=51.239µs +ts=2025-05-22T07:49:59Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T07:49:59Z caller=logging.go:85 method=Health result=2 took=44.478µs +ts=2025-05-22T07:50:02Z caller=logging.go:85 method=Health result=2 took=41.749µs +ts=2025-05-22T07:50:02Z caller=logging.go:85 method=Health result=2 took=42.529µs +ts=2025-05-22T07:50:05Z caller=logging.go:85 method=Health result=2 took=44.569µs +ts=2025-05-22T07:50:05Z caller=logging.go:85 method=Health result=2 took=52.479µs +ts=2025-05-22T07:50:08Z caller=logging.go:85 method=Health result=2 took=44.139µs +ts=2025-05-22T07:50:08Z caller=logging.go:85 method=Health result=2 took=51.019µs +ts=2025-05-22T07:50:11Z caller=logging.go:85 method=Health result=2 took=45.029µs +ts=2025-05-22T07:50:11Z caller=logging.go:85 method=Health result=2 took=53.088µs +ts=2025-05-22T07:50:14Z caller=logging.go:85 method=Health result=2 took=38.319µs +ts=2025-05-22T07:50:14Z caller=logging.go:85 method=Health result=2 took=24.97µs +ts=2025-05-22T07:50:17Z caller=logging.go:85 method=Health result=2 took=53.539µs +ts=2025-05-22T07:50:17Z caller=logging.go:85 method=Health result=2 took=57.469µs +ts=2025-05-22T07:50:20Z caller=logging.go:85 method=Health result=2 took=32.199µs +ts=2025-05-22T07:50:20Z caller=logging.go:85 method=Health result=2 took=48.419µs +ts=2025-05-22T07:50:23Z caller=logging.go:85 method=Health result=2 took=44.359µs +ts=2025-05-22T07:50:23Z caller=logging.go:85 method=Health result=2 took=44.039µs +ts=2025-05-22T07:50:26Z caller=logging.go:85 method=Health result=2 took=44.729µs +ts=2025-05-22T07:50:26Z caller=logging.go:85 method=Health result=2 took=48.979µs +ts=2025-05-22T07:50:29Z caller=logging.go:85 method=Health result=2 took=36.429µs +ts=2025-05-22T07:50:29Z caller=logging.go:85 method=Health result=2 took=35.809µs +ts=2025-05-22T07:50:32Z caller=logging.go:85 method=Health result=2 took=39.309µs +ts=2025-05-22T07:50:32Z caller=logging.go:85 method=Health result=2 took=38.199µs +ts=2025-05-22T07:50:35Z caller=logging.go:85 method=Health result=2 took=45.448µs +ts=2025-05-22T07:50:35Z caller=logging.go:85 method=Health result=2 took=33.27µs +ts=2025-05-22T07:50:38Z caller=logging.go:85 method=Health result=2 took=30.309µs +ts=2025-05-22T07:50:38Z caller=logging.go:85 method=Health result=2 took=46.879µs +ts=2025-05-22T07:50:41Z caller=logging.go:85 method=Health result=2 took=41.689µs +ts=2025-05-22T07:50:41Z caller=logging.go:85 method=Health result=2 took=49.909µs +ts=2025-05-22T07:50:44Z caller=logging.go:85 method=Health result=2 took=41.279µs +ts=2025-05-22T07:50:44Z caller=logging.go:85 method=Health result=2 took=48.648µs +ts=2025-05-22T07:50:47Z caller=logging.go:85 method=Health result=2 took=32.929µs +ts=2025-05-22T07:50:47Z caller=logging.go:85 method=Health result=2 took=47.438µs +ts=2025-05-22T07:50:50Z caller=logging.go:85 method=Health result=2 took=23.039µs +ts=2025-05-22T07:50:50Z caller=logging.go:85 method=Health result=2 took=44.049µs +ts=2025-05-22T07:50:53Z caller=logging.go:85 method=Health result=2 took=45.059µs +ts=2025-05-22T07:50:53Z caller=logging.go:85 method=Health result=2 took=44.489µs +ts=2025-05-22T07:50:56Z caller=logging.go:85 method=Health result=2 took=31.839µs +ts=2025-05-22T07:50:56Z caller=logging.go:85 method=Health result=2 took=45.269µs +ts=2025-05-22T07:50:59Z caller=logging.go:85 method=Health result=2 took=30.559µs +ts=2025-05-22T07:50:59Z caller=logging.go:85 method=Health result=2 took=30.509µs +ts=2025-05-22T07:51:02Z caller=logging.go:85 method=Health result=2 took=39.659µs +ts=2025-05-22T07:51:02Z caller=logging.go:85 method=Health result=2 took=39.449µs +ts=2025-05-22T07:51:05Z caller=logging.go:85 method=Health result=2 took=29.049µs +ts=2025-05-22T07:51:05Z caller=logging.go:85 method=Health result=2 took=47.699µs +ts=2025-05-22T07:51:08Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T07:51:08Z caller=logging.go:85 method=Health result=2 took=42.839µs +ts=2025-05-22T07:51:11Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T07:51:11Z caller=logging.go:85 method=Health result=2 took=21.959µs +ts=2025-05-22T07:51:14Z caller=logging.go:85 method=Health result=2 took=28.59µs +ts=2025-05-22T07:51:14Z caller=logging.go:85 method=Health result=2 took=46.479µs +ts=2025-05-22T07:51:17Z caller=logging.go:85 method=Health result=2 took=41.919µs +ts=2025-05-22T07:51:17Z caller=logging.go:85 method=Health result=2 took=28.279µs +ts=2025-05-22T07:51:20Z caller=logging.go:85 method=Health result=2 took=56.489µs +ts=2025-05-22T07:51:20Z caller=logging.go:85 method=Health result=2 took=56.489µs +ts=2025-05-22T07:51:23Z caller=logging.go:85 method=Health result=2 took=45.349µs +ts=2025-05-22T07:51:23Z caller=logging.go:85 method=Health result=2 took=49.299µs +ts=2025-05-22T07:51:26Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T07:51:26Z caller=logging.go:85 method=Health result=2 took=30.98µs +ts=2025-05-22T07:51:29Z caller=logging.go:85 method=Health result=2 took=30.27µs +ts=2025-05-22T07:51:29Z caller=logging.go:85 method=Health result=2 took=17.38µs +ts=2025-05-22T07:51:32Z caller=logging.go:85 method=Health result=2 took=43.828µs +ts=2025-05-22T07:51:32Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T07:51:35Z caller=logging.go:85 method=Health result=2 took=41.109µs +ts=2025-05-22T07:51:35Z caller=logging.go:85 method=Health result=2 took=27.1µs +ts=2025-05-22T07:51:38Z caller=logging.go:85 method=Health result=2 took=32.089µs +ts=2025-05-22T07:51:38Z caller=logging.go:85 method=Health result=2 took=45.069µs +ts=2025-05-22T07:51:41Z caller=logging.go:85 method=Health result=2 took=53.468µs +ts=2025-05-22T07:51:41Z caller=logging.go:85 method=Health result=2 took=57.418µs +ts=2025-05-22T07:51:44Z caller=logging.go:85 method=Health result=2 took=47.579µs +ts=2025-05-22T07:51:44Z caller=logging.go:85 method=Health result=2 took=50.909µs +ts=2025-05-22T07:51:47Z caller=logging.go:85 method=Health result=2 took=44.529µs +ts=2025-05-22T07:51:47Z caller=logging.go:85 method=Health result=2 took=50.309µs +ts=2025-05-22T07:51:50Z caller=logging.go:85 method=Health result=2 took=42.539µs +ts=2025-05-22T07:51:50Z caller=logging.go:85 method=Health result=2 took=41.629µs +ts=2025-05-22T07:51:53Z caller=logging.go:85 method=Health result=2 took=45.299µs +ts=2025-05-22T07:51:53Z caller=logging.go:85 method=Health result=2 took=47.569µs +ts=2025-05-22T07:51:56Z caller=logging.go:85 method=Health result=2 took=42.289µs +ts=2025-05-22T07:51:56Z caller=logging.go:85 method=Health result=2 took=40.459µs +ts=2025-05-22T07:51:59Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T07:51:59Z caller=logging.go:85 method=Health result=2 took=49.269µs +ts=2025-05-22T07:52:02Z caller=logging.go:85 method=Health result=2 took=57.399µs +ts=2025-05-22T07:52:02Z caller=logging.go:85 method=Health result=2 took=56.178µs +ts=2025-05-22T07:52:05Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T07:52:05Z caller=logging.go:85 method=Health result=2 took=48.139µs +ts=2025-05-22T07:52:08Z caller=logging.go:85 method=Health result=2 took=46.199µs +ts=2025-05-22T07:52:08Z caller=logging.go:85 method=Health result=2 took=46.169µs +ts=2025-05-22T07:52:11Z caller=logging.go:85 method=Health result=2 took=38.519µs +ts=2025-05-22T07:52:11Z caller=logging.go:85 method=Health result=2 took=49.089µs +ts=2025-05-22T07:52:14Z caller=logging.go:85 method=Health result=2 took=27.409µs +ts=2025-05-22T07:52:14Z caller=logging.go:85 method=Health result=2 took=27.429µs +ts=2025-05-22T07:52:17Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T07:52:17Z caller=logging.go:85 method=Health result=2 took=40.019µs +ts=2025-05-22T07:52:20Z caller=logging.go:85 method=Health result=2 took=38.499µs +ts=2025-05-22T07:52:20Z caller=logging.go:85 method=Health result=2 took=48.588µs +ts=2025-05-22T07:52:23Z caller=logging.go:85 method=Health result=2 took=44.949µs +ts=2025-05-22T07:52:23Z caller=logging.go:85 method=Health result=2 took=34.019µs +ts=2025-05-22T07:52:26Z caller=logging.go:85 method=Health result=2 took=41.049µs +ts=2025-05-22T07:52:26Z caller=logging.go:85 method=Health result=2 took=48.669µs +ts=2025-05-22T07:52:29Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T07:52:29Z caller=logging.go:85 method=Health result=2 took=44.989µs +ts=2025-05-22T07:52:32Z caller=logging.go:85 method=Health result=2 took=43.969µs +ts=2025-05-22T07:52:32Z caller=logging.go:85 method=Health result=2 took=58.959µs +ts=2025-05-22T07:52:35Z caller=logging.go:85 method=Health result=2 took=36.199µs +ts=2025-05-22T07:52:35Z caller=logging.go:85 method=Health result=2 took=32.299µs +ts=2025-05-22T07:52:38Z caller=logging.go:85 method=Health result=2 took=36.009µs +ts=2025-05-22T07:52:38Z caller=logging.go:85 method=Health result=2 took=48.628µs +ts=2025-05-22T07:52:41Z caller=logging.go:85 method=Health result=2 took=43.239µs +ts=2025-05-22T07:52:41Z caller=logging.go:85 method=Health result=2 took=51.579µs +ts=2025-05-22T07:52:44Z caller=logging.go:85 method=Health result=2 took=41.249µs +ts=2025-05-22T07:52:44Z caller=logging.go:85 method=Health result=2 took=44.909µs +ts=2025-05-22T07:52:47Z caller=logging.go:85 method=Health result=2 took=40.329µs +ts=2025-05-22T07:52:47Z caller=logging.go:85 method=Health result=2 took=40.819µs +ts=2025-05-22T07:52:50Z caller=logging.go:85 method=Health result=2 took=43.069µs +ts=2025-05-22T07:52:50Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T07:52:53Z caller=logging.go:85 method=Health result=2 took=38.709µs +ts=2025-05-22T07:52:53Z caller=logging.go:85 method=Health result=2 took=48.409µs +ts=2025-05-22T07:52:56Z caller=logging.go:85 method=Health result=2 took=40.039µs +ts=2025-05-22T07:52:56Z caller=logging.go:85 method=Health result=2 took=47.749µs +ts=2025-05-22T07:52:59Z caller=logging.go:85 method=Health result=2 took=42.638µs +ts=2025-05-22T07:52:59Z caller=logging.go:85 method=Health result=2 took=43.048µs +ts=2025-05-22T07:53:02Z caller=logging.go:85 method=Health result=2 took=54.359µs +ts=2025-05-22T07:53:02Z caller=logging.go:85 method=Health result=2 took=54.399µs +ts=2025-05-22T07:53:05Z caller=logging.go:85 method=Health result=2 took=46.699µs +ts=2025-05-22T07:53:05Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T07:53:08Z caller=logging.go:85 method=Health result=2 took=41.629µs +ts=2025-05-22T07:53:08Z caller=logging.go:85 method=Health result=2 took=37.609µs +ts=2025-05-22T07:53:11Z caller=logging.go:85 method=Health result=2 took=40.919µs +ts=2025-05-22T07:53:11Z caller=logging.go:85 method=Health result=2 took=41.019µs +ts=2025-05-22T07:53:14Z caller=logging.go:85 method=Health result=2 took=46.019µs +ts=2025-05-22T07:53:14Z caller=logging.go:85 method=Health result=2 took=48.379µs +ts=2025-05-22T07:53:17Z caller=logging.go:85 method=Health result=2 took=41.859µs +ts=2025-05-22T07:53:17Z caller=logging.go:85 method=Health result=2 took=21.979µs +ts=2025-05-22T07:53:20Z caller=logging.go:85 method=Health result=2 took=36.739µs +ts=2025-05-22T07:53:20Z caller=logging.go:85 method=Health result=2 took=46.539µs +ts=2025-05-22T07:53:23Z caller=logging.go:85 method=Health result=2 took=31.339µs +ts=2025-05-22T07:53:23Z caller=logging.go:85 method=Health result=2 took=42.219µs +ts=2025-05-22T07:53:26Z caller=logging.go:85 method=Health result=2 took=30.35µs +ts=2025-05-22T07:53:26Z caller=logging.go:85 method=Health result=2 took=47.248µs +ts=2025-05-22T07:53:29Z caller=logging.go:85 method=Health result=2 took=38.979µs +ts=2025-05-22T07:53:29Z caller=logging.go:85 method=Health result=2 took=39.709µs +ts=2025-05-22T07:53:32Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T07:53:32Z caller=logging.go:85 method=Health result=2 took=53.009µs +ts=2025-05-22T07:53:35Z caller=logging.go:85 method=Health result=2 took=40.559µs +ts=2025-05-22T07:53:35Z caller=logging.go:85 method=Health result=2 took=24.13µs +ts=2025-05-22T07:53:38Z caller=logging.go:85 method=Health result=2 took=42.899µs +ts=2025-05-22T07:53:38Z caller=logging.go:85 method=Health result=2 took=43.419µs +ts=2025-05-22T07:53:41Z caller=logging.go:85 method=Health result=2 took=40.639µs +ts=2025-05-22T07:53:41Z caller=logging.go:85 method=Health result=2 took=18.069µs +ts=2025-05-22T07:53:44Z caller=logging.go:85 method=Health result=2 took=39.019µs +ts=2025-05-22T07:53:44Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T07:53:47Z caller=logging.go:85 method=Health result=2 took=46.498µs +ts=2025-05-22T07:53:47Z caller=logging.go:85 method=Health result=2 took=46.488µs +ts=2025-05-22T07:53:50Z caller=logging.go:85 method=Health result=2 took=45.859µs +ts=2025-05-22T07:53:50Z caller=logging.go:85 method=Health result=2 took=44.699µs +ts=2025-05-22T07:53:53Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T07:53:53Z caller=logging.go:85 method=Health result=2 took=48.089µs +ts=2025-05-22T07:53:56Z caller=logging.go:85 method=Health result=2 took=45.909µs +ts=2025-05-22T07:53:56Z caller=logging.go:85 method=Health result=2 took=50.919µs +ts=2025-05-22T07:53:59Z caller=logging.go:85 method=Health result=2 took=31.369µs +ts=2025-05-22T07:53:59Z caller=logging.go:85 method=Health result=2 took=60.059µs +ts=2025-05-22T07:54:02Z caller=logging.go:85 method=Health result=2 took=43.869µs +ts=2025-05-22T07:54:02Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T07:54:05Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T07:54:05Z caller=logging.go:85 method=Health result=2 took=39.999µs +ts=2025-05-22T07:54:08Z caller=logging.go:85 method=Health result=2 took=45.959µs +ts=2025-05-22T07:54:08Z caller=logging.go:85 method=Health result=2 took=46.029µs +ts=2025-05-22T07:54:11Z caller=logging.go:85 method=Health result=2 took=42.169µs +ts=2025-05-22T07:54:11Z caller=logging.go:85 method=Health result=2 took=46.099µs +ts=2025-05-22T07:54:14Z caller=logging.go:85 method=Health result=2 took=39.559µs +ts=2025-05-22T07:54:14Z caller=logging.go:85 method=Health result=2 took=44.109µs +ts=2025-05-22T07:54:17Z caller=logging.go:85 method=Health result=2 took=1.097663ms +ts=2025-05-22T07:54:17Z caller=logging.go:85 method=Health result=2 took=41.829µs +ts=2025-05-22T07:54:20Z caller=logging.go:85 method=Health result=2 took=56.489µs +ts=2025-05-22T07:54:20Z caller=logging.go:85 method=Health result=2 took=56.449µs +ts=2025-05-22T07:54:23Z caller=logging.go:85 method=Health result=2 took=35.559µs +ts=2025-05-22T07:54:23Z caller=logging.go:85 method=Health result=2 took=35.419µs +ts=2025-05-22T07:54:26Z caller=logging.go:85 method=Health result=2 took=51.689µs +ts=2025-05-22T07:54:26Z caller=logging.go:85 method=Health result=2 took=51.559µs +ts=2025-05-22T07:54:29Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T07:54:29Z caller=logging.go:85 method=Health result=2 took=29.07µs +ts=2025-05-22T07:54:32Z caller=logging.go:85 method=Health result=2 took=29.639µs +ts=2025-05-22T07:54:32Z caller=logging.go:85 method=Health result=2 took=49.469µs +ts=2025-05-22T07:54:35Z caller=logging.go:85 method=Health result=2 took=38.459µs +ts=2025-05-22T07:54:35Z caller=logging.go:85 method=Health result=2 took=49.519µs +ts=2025-05-22T07:54:38Z caller=logging.go:85 method=Health result=2 took=29.019µs +ts=2025-05-22T07:54:38Z caller=logging.go:85 method=Health result=2 took=29.009µs +ts=2025-05-22T07:54:41Z caller=logging.go:85 method=Health result=2 took=47.349µs +ts=2025-05-22T07:54:41Z caller=logging.go:85 method=Health result=2 took=45.848µs +ts=2025-05-22T07:54:44Z caller=logging.go:85 method=Health result=2 took=45.079µs +ts=2025-05-22T07:54:44Z caller=logging.go:85 method=Health result=2 took=27.769µs +ts=2025-05-22T07:54:47Z caller=logging.go:85 method=Health result=2 took=39.159µs +ts=2025-05-22T07:54:47Z caller=logging.go:85 method=Health result=2 took=37.149µs +ts=2025-05-22T07:54:50Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T07:54:50Z caller=logging.go:85 method=Health result=2 took=44.209µs +ts=2025-05-22T07:54:53Z caller=logging.go:85 method=Health result=2 took=15.299µs +ts=2025-05-22T07:54:53Z caller=logging.go:85 method=Health result=2 took=37.559µs +ts=2025-05-22T07:54:56Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T07:54:56Z caller=logging.go:85 method=Health result=2 took=48.509µs +ts=2025-05-22T07:54:59Z caller=logging.go:85 method=Health result=2 took=44.319µs +ts=2025-05-22T07:54:59Z caller=logging.go:85 method=Health result=2 took=52.259µs +ts=2025-05-22T07:55:02Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T07:55:02Z caller=logging.go:85 method=Health result=2 took=44.909µs +ts=2025-05-22T07:55:05Z caller=logging.go:85 method=Health result=2 took=44.429µs +ts=2025-05-22T07:55:05Z caller=logging.go:85 method=Health result=2 took=43.879µs +ts=2025-05-22T07:55:08Z caller=logging.go:85 method=Health result=2 took=44.369µs +ts=2025-05-22T07:55:08Z caller=logging.go:85 method=Health result=2 took=49.639µs +ts=2025-05-22T07:55:11Z caller=logging.go:85 method=Health result=2 took=39.879µs +ts=2025-05-22T07:55:11Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T07:55:14Z caller=logging.go:85 method=Health result=2 took=43.239µs +ts=2025-05-22T07:55:14Z caller=logging.go:85 method=Health result=2 took=47.329µs +ts=2025-05-22T07:55:17Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T07:55:17Z caller=logging.go:85 method=Health result=2 took=43.369µs +ts=2025-05-22T07:55:20Z caller=logging.go:85 method=Health result=2 took=44.588µs +ts=2025-05-22T07:55:20Z caller=logging.go:85 method=Health result=2 took=32.27µs +ts=2025-05-22T07:55:23Z caller=logging.go:85 method=Health result=2 took=57.308µs +ts=2025-05-22T07:55:23Z caller=logging.go:85 method=Health result=2 took=48.588µs +ts=2025-05-22T07:55:26Z caller=logging.go:85 method=Health result=2 took=31.299µs +ts=2025-05-22T07:55:26Z caller=logging.go:85 method=Health result=2 took=46.528µs +ts=2025-05-22T07:55:29Z caller=logging.go:85 method=Health result=2 took=44.079µs +ts=2025-05-22T07:55:29Z caller=logging.go:85 method=Health result=2 took=51.069µs +ts=2025-05-22T07:55:32Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T07:55:32Z caller=logging.go:85 method=Health result=2 took=42.589µs +ts=2025-05-22T07:55:35Z caller=logging.go:85 method=Health result=2 took=45.669µs +ts=2025-05-22T07:55:35Z caller=logging.go:85 method=Health result=2 took=52.688µs +ts=2025-05-22T07:55:38Z caller=logging.go:85 method=Health result=2 took=45.329µs +ts=2025-05-22T07:55:38Z caller=logging.go:85 method=Health result=2 took=48.719µs +ts=2025-05-22T07:55:41Z caller=logging.go:85 method=Health result=2 took=42.489µs +ts=2025-05-22T07:55:41Z caller=logging.go:85 method=Health result=2 took=49.798µs +ts=2025-05-22T07:55:44Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T07:55:44Z caller=logging.go:85 method=Health result=2 took=42.539µs +ts=2025-05-22T07:55:47Z caller=logging.go:85 method=Health result=2 took=23.2µs +ts=2025-05-22T07:55:47Z caller=logging.go:85 method=Health result=2 took=27.71µs +ts=2025-05-22T07:55:50Z caller=logging.go:85 method=Health result=2 took=40.259µs +ts=2025-05-22T07:55:50Z caller=logging.go:85 method=Health result=2 took=40.329µs +ts=2025-05-22T07:55:53Z caller=logging.go:85 method=Health result=2 took=29.499µs +ts=2025-05-22T07:55:53Z caller=logging.go:85 method=Health result=2 took=9.27µs +ts=2025-05-22T07:55:56Z caller=logging.go:85 method=Health result=2 took=41.819µs +ts=2025-05-22T07:55:56Z caller=logging.go:85 method=Health result=2 took=48.039µs +ts=2025-05-22T07:55:59Z caller=logging.go:85 method=Health result=2 took=43.639µs +ts=2025-05-22T07:55:59Z caller=logging.go:85 method=Health result=2 took=36.899µs +ts=2025-05-22T07:56:02Z caller=logging.go:85 method=Health result=2 took=31.189µs +ts=2025-05-22T07:56:02Z caller=logging.go:85 method=Health result=2 took=40.179µs +ts=2025-05-22T07:56:05Z caller=logging.go:85 method=Health result=2 took=28.71µs +ts=2025-05-22T07:56:05Z caller=logging.go:85 method=Health result=2 took=46.169µs +ts=2025-05-22T07:56:08Z caller=logging.go:85 method=Health result=2 took=31.4µs +ts=2025-05-22T07:56:08Z caller=logging.go:85 method=Health result=2 took=46.789µs +ts=2025-05-22T07:56:11Z caller=logging.go:85 method=Health result=2 took=28.4µs +ts=2025-05-22T07:56:11Z caller=logging.go:85 method=Health result=2 took=28.39µs +ts=2025-05-22T07:56:14Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T07:56:14Z caller=logging.go:85 method=Health result=2 took=44.119µs +ts=2025-05-22T07:56:17Z caller=logging.go:85 method=Health result=2 took=13.44µs +ts=2025-05-22T07:56:17Z caller=logging.go:85 method=Health result=2 took=58.599µs +ts=2025-05-22T07:56:20Z caller=logging.go:85 method=Health result=2 took=36.919µs +ts=2025-05-22T07:56:20Z caller=logging.go:85 method=Health result=2 took=37.009µs +ts=2025-05-22T07:56:23Z caller=logging.go:85 method=Health result=2 took=56.948µs +ts=2025-05-22T07:56:23Z caller=logging.go:85 method=Health result=2 took=56.938µs +ts=2025-05-22T07:56:26Z caller=logging.go:85 method=Health result=2 took=44.998µs +ts=2025-05-22T07:56:26Z caller=logging.go:85 method=Health result=2 took=44.718µs +ts=2025-05-22T07:56:29Z caller=logging.go:85 method=Health result=2 took=39.269µs +ts=2025-05-22T07:56:29Z caller=logging.go:85 method=Health result=2 took=39.869µs +ts=2025-05-22T07:56:32Z caller=logging.go:85 method=Health result=2 took=35.399µs +ts=2025-05-22T07:56:32Z caller=logging.go:85 method=Health result=2 took=27.69µs +ts=2025-05-22T07:56:35Z caller=logging.go:85 method=Health result=2 took=28.439µs +ts=2025-05-22T07:56:35Z caller=logging.go:85 method=Health result=2 took=28.509µs +ts=2025-05-22T07:56:38Z caller=logging.go:85 method=Health result=2 took=39.54µs +ts=2025-05-22T07:56:38Z caller=logging.go:85 method=Health result=2 took=41.05µs +ts=2025-05-22T07:56:41Z caller=logging.go:85 method=Health result=2 took=31.329µs +ts=2025-05-22T07:56:41Z caller=logging.go:85 method=Health result=2 took=45.879µs +ts=2025-05-22T07:56:44Z caller=logging.go:85 method=Health result=2 took=42.029µs +ts=2025-05-22T07:56:44Z caller=logging.go:85 method=Health result=2 took=50.278µs +ts=2025-05-22T07:56:47Z caller=logging.go:85 method=Health result=2 took=40.409µs +ts=2025-05-22T07:56:47Z caller=logging.go:85 method=Health result=2 took=46.599µs +ts=2025-05-22T07:56:50Z caller=logging.go:85 method=Health result=2 took=31.169µs +ts=2025-05-22T07:56:50Z caller=logging.go:85 method=Health result=2 took=40.689µs +ts=2025-05-22T07:56:53Z caller=logging.go:85 method=Health result=2 took=45.669µs +ts=2025-05-22T07:56:53Z caller=logging.go:85 method=Health result=2 took=43.899µs +ts=2025-05-22T07:56:56Z caller=logging.go:85 method=Health result=2 took=29.159µs +ts=2025-05-22T07:56:56Z caller=logging.go:85 method=Health result=2 took=29.129µs +ts=2025-05-22T07:56:59Z caller=logging.go:85 method=Health result=2 took=41.769µs +ts=2025-05-22T07:56:59Z caller=logging.go:85 method=Health result=2 took=50.208µs +ts=2025-05-22T07:57:02Z caller=logging.go:85 method=Health result=2 took=40.929µs +ts=2025-05-22T07:57:02Z caller=logging.go:85 method=Health result=2 took=48.958µs +ts=2025-05-22T07:57:05Z caller=logging.go:85 method=Health result=2 took=40.369µs +ts=2025-05-22T07:57:05Z caller=logging.go:85 method=Health result=2 took=16.259µs +ts=2025-05-22T07:57:08Z caller=logging.go:85 method=Health result=2 took=44.349µs +ts=2025-05-22T07:57:08Z caller=logging.go:85 method=Health result=2 took=47.698µs +ts=2025-05-22T07:57:11Z caller=logging.go:85 method=Health result=2 took=40.219µs +ts=2025-05-22T07:57:11Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T07:57:14Z caller=logging.go:85 method=Health result=2 took=43.389µs +ts=2025-05-22T07:57:14Z caller=logging.go:85 method=Health result=2 took=50.528µs +ts=2025-05-22T07:57:17Z caller=logging.go:85 method=Health result=2 took=53.749µs +ts=2025-05-22T07:57:17Z caller=logging.go:85 method=Health result=2 took=54.659µs +ts=2025-05-22T07:57:20Z caller=logging.go:85 method=Health result=2 took=30.67µs +ts=2025-05-22T07:57:20Z caller=logging.go:85 method=Health result=2 took=15.48µs +ts=2025-05-22T07:57:23Z caller=logging.go:85 method=Health result=2 took=45.349µs +ts=2025-05-22T07:57:23Z caller=logging.go:85 method=Health result=2 took=46.399µs +ts=2025-05-22T07:57:26Z caller=logging.go:85 method=Health result=2 took=41.359µs +ts=2025-05-22T07:57:26Z caller=logging.go:85 method=Health result=2 took=33µs +ts=2025-05-22T07:57:29Z caller=logging.go:85 method=Health result=2 took=30.799µs +ts=2025-05-22T07:57:29Z caller=logging.go:85 method=Health result=2 took=30.749µs +ts=2025-05-22T07:57:32Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T07:57:32Z caller=logging.go:85 method=Health result=2 took=31.309µs +ts=2025-05-22T07:57:35Z caller=logging.go:85 method=Health result=2 took=32.229µs +ts=2025-05-22T07:57:35Z caller=logging.go:85 method=Health result=2 took=40.12µs +ts=2025-05-22T07:57:38Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T07:57:38Z caller=logging.go:85 method=Health result=2 took=47.329µs +ts=2025-05-22T07:57:41Z caller=logging.go:85 method=Health result=2 took=40.779µs +ts=2025-05-22T07:57:41Z caller=logging.go:85 method=Health result=2 took=49.499µs +ts=2025-05-22T07:57:44Z caller=logging.go:85 method=Health result=2 took=36.01µs +ts=2025-05-22T07:57:44Z caller=logging.go:85 method=Health result=2 took=36.41µs +ts=2025-05-22T07:57:47Z caller=logging.go:85 method=Health result=2 took=41.229µs +ts=2025-05-22T07:57:47Z caller=logging.go:85 method=Health result=2 took=40.839µs +ts=2025-05-22T07:57:50Z caller=logging.go:85 method=Health result=2 took=35.499µs +ts=2025-05-22T07:57:50Z caller=logging.go:85 method=Health result=2 took=39.809µs +ts=2025-05-22T07:57:53Z caller=logging.go:85 method=Health result=2 took=45.459µs +ts=2025-05-22T07:57:53Z caller=logging.go:85 method=Health result=2 took=57.429µs +ts=2025-05-22T07:57:56Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T07:57:56Z caller=logging.go:85 method=Health result=2 took=44.079µs +ts=2025-05-22T07:57:59Z caller=logging.go:85 method=Health result=2 took=46.679µs +ts=2025-05-22T07:57:59Z caller=logging.go:85 method=Health result=2 took=47.549µs +ts=2025-05-22T07:58:02Z caller=logging.go:85 method=Health result=2 took=42.009µs +ts=2025-05-22T07:58:02Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T07:58:05Z caller=logging.go:85 method=Health result=2 took=46.029µs +ts=2025-05-22T07:58:05Z caller=logging.go:85 method=Health result=2 took=47.989µs +ts=2025-05-22T07:58:08Z caller=logging.go:85 method=Health result=2 took=43.349µs +ts=2025-05-22T07:58:08Z caller=logging.go:85 method=Health result=2 took=45.009µs +ts=2025-05-22T07:58:11Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T07:58:11Z caller=logging.go:85 method=Health result=2 took=29.769µs +ts=2025-05-22T07:58:14Z caller=logging.go:85 method=Health result=2 took=42.539µs +ts=2025-05-22T07:58:14Z caller=logging.go:85 method=Health result=2 took=30.549µs +ts=2025-05-22T07:58:17Z caller=logging.go:85 method=Health result=2 took=117.498µs +ts=2025-05-22T07:58:17Z caller=logging.go:85 method=Health result=2 took=73.118µs +ts=2025-05-22T07:58:20Z caller=logging.go:85 method=Health result=2 took=41.179µs +ts=2025-05-22T07:58:20Z caller=logging.go:85 method=Health result=2 took=40.799µs +ts=2025-05-22T07:58:23Z caller=logging.go:85 method=Health result=2 took=44.799µs +ts=2025-05-22T07:58:23Z caller=logging.go:85 method=Health result=2 took=53.079µs +ts=2025-05-22T07:58:26Z caller=logging.go:85 method=Health result=2 took=51.759µs +ts=2025-05-22T07:58:26Z caller=logging.go:85 method=Health result=2 took=28.369µs +ts=2025-05-22T07:58:29Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T07:58:29Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T07:58:32Z caller=logging.go:85 method=Health result=2 took=41.639µs +ts=2025-05-22T07:58:32Z caller=logging.go:85 method=Health result=2 took=32.439µs +ts=2025-05-22T07:58:35Z caller=logging.go:85 method=Health result=2 took=43.909µs +ts=2025-05-22T07:58:35Z caller=logging.go:85 method=Health result=2 took=49.799µs +ts=2025-05-22T07:58:38Z caller=logging.go:85 method=Health result=2 took=38.739µs +ts=2025-05-22T07:58:38Z caller=logging.go:85 method=Health result=2 took=38.169µs +ts=2025-05-22T07:58:41Z caller=logging.go:85 method=Health result=2 took=42.109µs +ts=2025-05-22T07:58:41Z caller=logging.go:85 method=Health result=2 took=27.609µs +ts=2025-05-22T07:58:44Z caller=logging.go:85 method=Health result=2 took=28.789µs +ts=2025-05-22T07:58:44Z caller=logging.go:85 method=Health result=2 took=28.749µs +ts=2025-05-22T07:58:47Z caller=logging.go:85 method=Health result=2 took=51.569µs +ts=2025-05-22T07:58:47Z caller=logging.go:85 method=Health result=2 took=52.219µs +ts=2025-05-22T07:58:50Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T07:58:50Z caller=logging.go:85 method=Health result=2 took=42.489µs +ts=2025-05-22T07:58:53Z caller=logging.go:85 method=Health result=2 took=38.589µs +ts=2025-05-22T07:58:53Z caller=logging.go:85 method=Health result=2 took=48.219µs +ts=2025-05-22T07:58:56Z caller=logging.go:85 method=Health result=2 took=58.478µs +ts=2025-05-22T07:58:56Z caller=logging.go:85 method=Health result=2 took=58.548µs +ts=2025-05-22T07:58:59Z caller=logging.go:85 method=Health result=2 took=32.049µs +ts=2025-05-22T07:58:59Z caller=logging.go:85 method=Health result=2 took=31.739µs +ts=2025-05-22T07:59:02Z caller=logging.go:85 method=Health result=2 took=36.559µs +ts=2025-05-22T07:59:02Z caller=logging.go:85 method=Health result=2 took=36.399µs +ts=2025-05-22T07:59:05Z caller=logging.go:85 method=Health result=2 took=27.989µs +ts=2025-05-22T07:59:05Z caller=logging.go:85 method=Health result=2 took=28.069µs +ts=2025-05-22T07:59:08Z caller=logging.go:85 method=Health result=2 took=43.419µs +ts=2025-05-22T07:59:08Z caller=logging.go:85 method=Health result=2 took=48.789µs +ts=2025-05-22T07:59:11Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T07:59:11Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T07:59:14Z caller=logging.go:85 method=Health result=2 took=40.019µs +ts=2025-05-22T07:59:14Z caller=logging.go:85 method=Health result=2 took=20.229µs +ts=2025-05-22T07:59:17Z caller=logging.go:85 method=Health result=2 took=50.019µs +ts=2025-05-22T07:59:17Z caller=logging.go:85 method=Health result=2 took=56.509µs +ts=2025-05-22T07:59:20Z caller=logging.go:85 method=Health result=2 took=36.469µs +ts=2025-05-22T07:59:20Z caller=logging.go:85 method=Health result=2 took=47.829µs +ts=2025-05-22T07:59:23Z caller=logging.go:85 method=Health result=2 took=56.618µs +ts=2025-05-22T07:59:23Z caller=logging.go:85 method=Health result=2 took=25.139µs +ts=2025-05-22T07:59:26Z caller=logging.go:85 method=Health result=2 took=40.829µs +ts=2025-05-22T07:59:26Z caller=logging.go:85 method=Health result=2 took=56.429µs +ts=2025-05-22T07:59:29Z caller=logging.go:85 method=Health result=2 took=54.899µs +ts=2025-05-22T07:59:29Z caller=logging.go:85 method=Health result=2 took=50.998µs +ts=2025-05-22T07:59:32Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T07:59:32Z caller=logging.go:85 method=Health result=2 took=38.869µs +ts=2025-05-22T07:59:35Z caller=logging.go:85 method=Health result=2 took=36.369µs +ts=2025-05-22T07:59:35Z caller=logging.go:85 method=Health result=2 took=36.379µs +ts=2025-05-22T07:59:38Z caller=logging.go:85 method=Health result=2 took=42.918µs +ts=2025-05-22T07:59:38Z caller=logging.go:85 method=Health result=2 took=47.529µs +ts=2025-05-22T07:59:41Z caller=logging.go:85 method=Health result=2 took=46.249µs +ts=2025-05-22T07:59:41Z caller=logging.go:85 method=Health result=2 took=50.249µs +ts=2025-05-22T07:59:44Z caller=logging.go:85 method=Health result=2 took=30.389µs +ts=2025-05-22T07:59:44Z caller=logging.go:85 method=Health result=2 took=30.499µs +ts=2025-05-22T07:59:47Z caller=logging.go:85 method=Health result=2 took=44.749µs +ts=2025-05-22T07:59:47Z caller=logging.go:85 method=Health result=2 took=45.529µs +ts=2025-05-22T07:59:50Z caller=logging.go:85 method=Health result=2 took=45.579µs +ts=2025-05-22T07:59:50Z caller=logging.go:85 method=Health result=2 took=44.919µs +ts=2025-05-22T07:59:53Z caller=logging.go:85 method=Health result=2 took=47.539µs +ts=2025-05-22T07:59:53Z caller=logging.go:85 method=Health result=2 took=50.879µs +ts=2025-05-22T07:59:56Z caller=logging.go:85 method=Health result=2 took=38.309µs +ts=2025-05-22T07:59:56Z caller=logging.go:85 method=Health result=2 took=49.059µs +ts=2025-05-22T07:59:59Z caller=logging.go:85 method=Health result=2 took=35.609µs +ts=2025-05-22T07:59:59Z caller=logging.go:85 method=Health result=2 took=35.129µs +ts=2025-05-22T08:00:02Z caller=logging.go:85 method=Health result=2 took=46.639µs +ts=2025-05-22T08:00:02Z caller=logging.go:85 method=Health result=2 took=45.089µs +ts=2025-05-22T08:00:05Z caller=logging.go:85 method=Health result=2 took=38.979µs +ts=2025-05-22T08:00:05Z caller=logging.go:85 method=Health result=2 took=39.639µs +ts=2025-05-22T08:00:08Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:00:08Z caller=logging.go:85 method=Health result=2 took=56.258µs +ts=2025-05-22T08:00:11Z caller=logging.go:85 method=Health result=2 took=40.529µs +ts=2025-05-22T08:00:11Z caller=logging.go:85 method=Health result=2 took=55.819µs +ts=2025-05-22T08:00:14Z caller=logging.go:85 method=Health result=2 took=38.169µs +ts=2025-05-22T08:00:14Z caller=logging.go:85 method=Health result=2 took=33.349µs +ts=2025-05-22T08:00:17Z caller=logging.go:85 method=Health result=2 took=99.498µs +ts=2025-05-22T08:00:17Z caller=logging.go:85 method=Health result=2 took=76.488µs +ts=2025-05-22T08:00:20Z caller=logging.go:85 method=Health result=2 took=42.219µs +ts=2025-05-22T08:00:20Z caller=logging.go:85 method=Health result=2 took=40.389µs +ts=2025-05-22T08:00:23Z caller=logging.go:85 method=Health result=2 took=40.329µs +ts=2025-05-22T08:00:23Z caller=logging.go:85 method=Health result=2 took=48.119µs +ts=2025-05-22T08:00:26Z caller=logging.go:85 method=Health result=2 took=42.529µs +ts=2025-05-22T08:00:26Z caller=logging.go:85 method=Health result=2 took=26.919µs +ts=2025-05-22T08:00:29Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T08:00:29Z caller=logging.go:85 method=Health result=2 took=44.139µs +ts=2025-05-22T08:00:32Z caller=logging.go:85 method=Health result=2 took=43.689µs +ts=2025-05-22T08:00:32Z caller=logging.go:85 method=Health result=2 took=49.539µs +ts=2025-05-22T08:00:35Z caller=logging.go:85 method=Health result=2 took=37.899µs +ts=2025-05-22T08:00:35Z caller=logging.go:85 method=Health result=2 took=42.139µs +ts=2025-05-22T08:00:38Z caller=logging.go:85 method=Health result=2 took=40.039µs +ts=2025-05-22T08:00:38Z caller=logging.go:85 method=Health result=2 took=39.619µs +ts=2025-05-22T08:00:41Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T08:00:41Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T08:00:44Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T08:00:44Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T08:00:47Z caller=logging.go:85 method=Health result=2 took=45.679µs +ts=2025-05-22T08:00:47Z caller=logging.go:85 method=Health result=2 took=49.059µs +ts=2025-05-22T08:00:50Z caller=logging.go:85 method=Health result=2 took=31.28µs +ts=2025-05-22T08:00:50Z caller=logging.go:85 method=Health result=2 took=46.099µs +ts=2025-05-22T08:00:53Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T08:00:53Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T08:00:56Z caller=logging.go:85 method=Health result=2 took=45.739µs +ts=2025-05-22T08:00:56Z caller=logging.go:85 method=Health result=2 took=50.049µs +ts=2025-05-22T08:00:59Z caller=logging.go:85 method=Health result=2 took=43.539µs +ts=2025-05-22T08:00:59Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T08:01:02Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T08:01:02Z caller=logging.go:85 method=Health result=2 took=46.819µs +ts=2025-05-22T08:01:05Z caller=logging.go:85 method=Health result=2 took=45.129µs +ts=2025-05-22T08:01:05Z caller=logging.go:85 method=Health result=2 took=45.009µs +ts=2025-05-22T08:01:08Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T08:01:08Z caller=logging.go:85 method=Health result=2 took=19.08µs +ts=2025-05-22T08:01:11Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T08:01:11Z caller=logging.go:85 method=Health result=2 took=48.469µs +ts=2025-05-22T08:01:14Z caller=logging.go:85 method=Health result=2 took=28.889µs +ts=2025-05-22T08:01:14Z caller=logging.go:85 method=Health result=2 took=28.839µs +ts=2025-05-22T08:01:17Z caller=logging.go:85 method=Health result=2 took=41.279µs +ts=2025-05-22T08:01:17Z caller=logging.go:85 method=Health result=2 took=48.198µs +ts=2025-05-22T08:01:20Z caller=logging.go:85 method=Health result=2 took=45.399µs +ts=2025-05-22T08:01:20Z caller=logging.go:85 method=Health result=2 took=49.899µs +ts=2025-05-22T08:01:23Z caller=logging.go:85 method=Health result=2 took=16.649µs +ts=2025-05-22T08:01:23Z caller=logging.go:85 method=Health result=2 took=37.889µs +ts=2025-05-22T08:01:26Z caller=logging.go:85 method=Health result=2 took=28.489µs +ts=2025-05-22T08:01:26Z caller=logging.go:85 method=Health result=2 took=45.318µs +ts=2025-05-22T08:01:29Z caller=logging.go:85 method=Health result=2 took=31.77µs +ts=2025-05-22T08:01:29Z caller=logging.go:85 method=Health result=2 took=47.309µs +ts=2025-05-22T08:01:32Z caller=logging.go:85 method=Health result=2 took=36.329µs +ts=2025-05-22T08:01:32Z caller=logging.go:85 method=Health result=2 took=35.889µs +ts=2025-05-22T08:01:35Z caller=logging.go:85 method=Health result=2 took=43.779µs +ts=2025-05-22T08:01:35Z caller=logging.go:85 method=Health result=2 took=45.109µs +ts=2025-05-22T08:01:38Z caller=logging.go:85 method=Health result=2 took=46.968µs +ts=2025-05-22T08:01:38Z caller=logging.go:85 method=Health result=2 took=48.609µs +ts=2025-05-22T08:01:41Z caller=logging.go:85 method=Health result=2 took=27.409µs +ts=2025-05-22T08:01:41Z caller=logging.go:85 method=Health result=2 took=15.74µs +ts=2025-05-22T08:01:44Z caller=logging.go:85 method=Health result=2 took=29.909µs +ts=2025-05-22T08:01:44Z caller=logging.go:85 method=Health result=2 took=33.809µs +ts=2025-05-22T08:01:47Z caller=logging.go:85 method=Health result=2 took=29.35µs +ts=2025-05-22T08:01:47Z caller=logging.go:85 method=Health result=2 took=14.26µs +ts=2025-05-22T08:01:50Z caller=logging.go:85 method=Health result=2 took=28.679µs +ts=2025-05-22T08:01:50Z caller=logging.go:85 method=Health result=2 took=46.119µs +ts=2025-05-22T08:01:53Z caller=logging.go:85 method=Health result=2 took=34.27µs +ts=2025-05-22T08:01:53Z caller=logging.go:85 method=Health result=2 took=49.658µs +ts=2025-05-22T08:01:56Z caller=logging.go:85 method=Health result=2 took=43.609µs +ts=2025-05-22T08:01:56Z caller=logging.go:85 method=Health result=2 took=39.089µs +ts=2025-05-22T08:01:59Z caller=logging.go:85 method=Health result=2 took=44.319µs +ts=2025-05-22T08:01:59Z caller=logging.go:85 method=Health result=2 took=49.499µs +ts=2025-05-22T08:02:02Z caller=logging.go:85 method=Health result=2 took=22.19µs +ts=2025-05-22T08:02:02Z caller=logging.go:85 method=Health result=2 took=27.83µs +ts=2025-05-22T08:02:05Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T08:02:05Z caller=logging.go:85 method=Health result=2 took=55.349µs +ts=2025-05-22T08:02:08Z caller=logging.go:85 method=Health result=2 took=42.759µs +ts=2025-05-22T08:02:08Z caller=logging.go:85 method=Health result=2 took=44.149µs +ts=2025-05-22T08:02:11Z caller=logging.go:85 method=Health result=2 took=51.399µs +ts=2025-05-22T08:02:11Z caller=logging.go:85 method=Health result=2 took=51.419µs +ts=2025-05-22T08:02:14Z caller=logging.go:85 method=Health result=2 took=40.429µs +ts=2025-05-22T08:02:14Z caller=logging.go:85 method=Health result=2 took=35.569µs +ts=2025-05-22T08:02:17Z caller=logging.go:85 method=Health result=2 took=237.264µs +ts=2025-05-22T08:02:17Z caller=logging.go:85 method=Health result=2 took=29.629µs +ts=2025-05-22T08:02:20Z caller=logging.go:85 method=Health result=2 took=45.889µs +ts=2025-05-22T08:02:20Z caller=logging.go:85 method=Health result=2 took=49.049µs +ts=2025-05-22T08:02:23Z caller=logging.go:85 method=Health result=2 took=42.159µs +ts=2025-05-22T08:02:23Z caller=logging.go:85 method=Health result=2 took=48.989µs +ts=2025-05-22T08:02:26Z caller=logging.go:85 method=Health result=2 took=39.089µs +ts=2025-05-22T08:02:26Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T08:02:29Z caller=logging.go:85 method=Health result=2 took=49.239µs +ts=2025-05-22T08:02:29Z caller=logging.go:85 method=Health result=2 took=50.259µs +ts=2025-05-22T08:02:32Z caller=logging.go:85 method=Health result=2 took=42.869µs +ts=2025-05-22T08:02:32Z caller=logging.go:85 method=Health result=2 took=65.259µs +ts=2025-05-22T08:02:35Z caller=logging.go:85 method=Health result=2 took=43.009µs +ts=2025-05-22T08:02:35Z caller=logging.go:85 method=Health result=2 took=42.449µs +ts=2025-05-22T08:02:38Z caller=logging.go:85 method=Health result=2 took=44.319µs +ts=2025-05-22T08:02:38Z caller=logging.go:85 method=Health result=2 took=45.309µs +ts=2025-05-22T08:02:41Z caller=logging.go:85 method=Health result=2 took=39.139µs +ts=2025-05-22T08:02:41Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T08:02:44Z caller=logging.go:85 method=Health result=2 took=43.549µs +ts=2025-05-22T08:02:44Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T08:02:47Z caller=logging.go:85 method=Health result=2 took=60.309µs +ts=2025-05-22T08:02:47Z caller=logging.go:85 method=Health result=2 took=48.149µs +ts=2025-05-22T08:02:50Z caller=logging.go:85 method=Health result=2 took=45.838µs +ts=2025-05-22T08:02:50Z caller=logging.go:85 method=Health result=2 took=42.639µs +ts=2025-05-22T08:02:53Z caller=logging.go:85 method=Health result=2 took=39.639µs +ts=2025-05-22T08:02:53Z caller=logging.go:85 method=Health result=2 took=27.279µs +ts=2025-05-22T08:02:56Z caller=logging.go:85 method=Health result=2 took=41.079µs +ts=2025-05-22T08:02:56Z caller=logging.go:85 method=Health result=2 took=31.32µs +ts=2025-05-22T08:02:59Z caller=logging.go:85 method=Health result=2 took=41.779µs +ts=2025-05-22T08:02:59Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T08:03:02Z caller=logging.go:85 method=Health result=2 took=36.219µs +ts=2025-05-22T08:03:02Z caller=logging.go:85 method=Health result=2 took=36.189µs +ts=2025-05-22T08:03:05Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T08:03:05Z caller=logging.go:85 method=Health result=2 took=47.649µs +ts=2025-05-22T08:03:08Z caller=logging.go:85 method=Health result=2 took=31.829µs +ts=2025-05-22T08:03:08Z caller=logging.go:85 method=Health result=2 took=31.789µs +ts=2025-05-22T08:03:11Z caller=logging.go:85 method=Health result=2 took=38.299µs +ts=2025-05-22T08:03:11Z caller=logging.go:85 method=Health result=2 took=38.949µs +ts=2025-05-22T08:03:14Z caller=logging.go:85 method=Health result=2 took=66.108µs +ts=2025-05-22T08:03:14Z caller=logging.go:85 method=Health result=2 took=66.108µs +ts=2025-05-22T08:03:17Z caller=logging.go:85 method=Health result=2 took=45.379µs +ts=2025-05-22T08:03:17Z caller=logging.go:85 method=Health result=2 took=42.539µs +ts=2025-05-22T08:03:20Z caller=logging.go:85 method=Health result=2 took=39.409µs +ts=2025-05-22T08:03:20Z caller=logging.go:85 method=Health result=2 took=48.409µs +ts=2025-05-22T08:03:23Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T08:03:23Z caller=logging.go:85 method=Health result=2 took=47.979µs +ts=2025-05-22T08:03:26Z caller=logging.go:85 method=Health result=2 took=31.06µs +ts=2025-05-22T08:03:26Z caller=logging.go:85 method=Health result=2 took=13.67µs +ts=2025-05-22T08:03:29Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T08:03:29Z caller=logging.go:85 method=Health result=2 took=31.479µs +ts=2025-05-22T08:03:32Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T08:03:32Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T08:03:35Z caller=logging.go:85 method=Health result=2 took=39.009µs +ts=2025-05-22T08:03:35Z caller=logging.go:85 method=Health result=2 took=38.729µs +ts=2025-05-22T08:03:38Z caller=logging.go:85 method=Health result=2 took=39.999µs +ts=2025-05-22T08:03:38Z caller=logging.go:85 method=Health result=2 took=27.359µs +ts=2025-05-22T08:03:41Z caller=logging.go:85 method=Health result=2 took=42.969µs +ts=2025-05-22T08:03:41Z caller=logging.go:85 method=Health result=2 took=42.909µs +ts=2025-05-22T08:03:44Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T08:03:44Z caller=logging.go:85 method=Health result=2 took=26.559µs +ts=2025-05-22T08:03:47Z caller=logging.go:85 method=Health result=2 took=45.969µs +ts=2025-05-22T08:03:47Z caller=logging.go:85 method=Health result=2 took=44.559µs +ts=2025-05-22T08:03:50Z caller=logging.go:85 method=Health result=2 took=35.849µs +ts=2025-05-22T08:03:50Z caller=logging.go:85 method=Health result=2 took=34.379µs +ts=2025-05-22T08:03:53Z caller=logging.go:85 method=Health result=2 took=37.549µs +ts=2025-05-22T08:03:53Z caller=logging.go:85 method=Health result=2 took=33.319µs +ts=2025-05-22T08:03:56Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T08:03:56Z caller=logging.go:85 method=Health result=2 took=47.639µs +ts=2025-05-22T08:03:59Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T08:03:59Z caller=logging.go:85 method=Health result=2 took=44.468µs +ts=2025-05-22T08:04:02Z caller=logging.go:85 method=Health result=2 took=36.539µs +ts=2025-05-22T08:04:02Z caller=logging.go:85 method=Health result=2 took=36.529µs +ts=2025-05-22T08:04:05Z caller=logging.go:85 method=Health result=2 took=28.6µs +ts=2025-05-22T08:04:05Z caller=logging.go:85 method=Health result=2 took=28.56µs +ts=2025-05-22T08:04:08Z caller=logging.go:85 method=Health result=2 took=45.199µs +ts=2025-05-22T08:04:08Z caller=logging.go:85 method=Health result=2 took=44.479µs +ts=2025-05-22T08:04:11Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T08:04:11Z caller=logging.go:85 method=Health result=2 took=48.299µs +ts=2025-05-22T08:04:14Z caller=logging.go:85 method=Health result=2 took=50.269µs +ts=2025-05-22T08:04:14Z caller=logging.go:85 method=Health result=2 took=49.579µs +ts=2025-05-22T08:04:17Z caller=logging.go:85 method=Health result=2 took=83.798µs +ts=2025-05-22T08:04:17Z caller=logging.go:85 method=Health result=2 took=144.767µs +ts=2025-05-22T08:04:20Z caller=logging.go:85 method=Health result=2 took=38.469µs +ts=2025-05-22T08:04:20Z caller=logging.go:85 method=Health result=2 took=47.499µs +ts=2025-05-22T08:04:23Z caller=logging.go:85 method=Health result=2 took=38.459µs +ts=2025-05-22T08:04:23Z caller=logging.go:85 method=Health result=2 took=39.149µs +ts=2025-05-22T08:04:26Z caller=logging.go:85 method=Health result=2 took=41.919µs +ts=2025-05-22T08:04:26Z caller=logging.go:85 method=Health result=2 took=50.909µs +ts=2025-05-22T08:04:29Z caller=logging.go:85 method=Health result=2 took=46.999µs +ts=2025-05-22T08:04:29Z caller=logging.go:85 method=Health result=2 took=51.189µs +ts=2025-05-22T08:04:32Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T08:04:32Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T08:04:35Z caller=logging.go:85 method=Health result=2 took=45.579µs +ts=2025-05-22T08:04:35Z caller=logging.go:85 method=Health result=2 took=78.248µs +ts=2025-05-22T08:04:38Z caller=logging.go:85 method=Health result=2 took=38.359µs +ts=2025-05-22T08:04:38Z caller=logging.go:85 method=Health result=2 took=37.679µs +ts=2025-05-22T08:04:41Z caller=logging.go:85 method=Health result=2 took=43.389µs +ts=2025-05-22T08:04:41Z caller=logging.go:85 method=Health result=2 took=43.099µs +ts=2025-05-22T08:04:44Z caller=logging.go:85 method=Health result=2 took=30.669µs +ts=2025-05-22T08:04:44Z caller=logging.go:85 method=Health result=2 took=47.219µs +ts=2025-05-22T08:04:47Z caller=logging.go:85 method=Health result=2 took=43.579µs +ts=2025-05-22T08:04:47Z caller=logging.go:85 method=Health result=2 took=47.489µs +ts=2025-05-22T08:04:50Z caller=logging.go:85 method=Health result=2 took=40.089µs +ts=2025-05-22T08:04:50Z caller=logging.go:85 method=Health result=2 took=39.46µs +ts=2025-05-22T08:04:53Z caller=logging.go:85 method=Health result=2 took=43.919µs +ts=2025-05-22T08:04:53Z caller=logging.go:85 method=Health result=2 took=51.159µs +ts=2025-05-22T08:04:56Z caller=logging.go:85 method=Health result=2 took=40.879µs +ts=2025-05-22T08:04:56Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T08:04:59Z caller=logging.go:85 method=Health result=2 took=43.019µs +ts=2025-05-22T08:04:59Z caller=logging.go:85 method=Health result=2 took=34.499µs +ts=2025-05-22T08:05:02Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T08:05:02Z caller=logging.go:85 method=Health result=2 took=30.279µs +ts=2025-05-22T08:05:05Z caller=logging.go:85 method=Health result=2 took=44.139µs +ts=2025-05-22T08:05:05Z caller=logging.go:85 method=Health result=2 took=50.119µs +ts=2025-05-22T08:05:08Z caller=logging.go:85 method=Health result=2 took=44.939µs +ts=2025-05-22T08:05:08Z caller=logging.go:85 method=Health result=2 took=50.729µs +ts=2025-05-22T08:05:11Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T08:05:11Z caller=logging.go:85 method=Health result=2 took=48.679µs +ts=2025-05-22T08:05:14Z caller=logging.go:85 method=Health result=2 took=32.15µs +ts=2025-05-22T08:05:14Z caller=logging.go:85 method=Health result=2 took=10.72µs +ts=2025-05-22T08:05:17Z caller=logging.go:85 method=Health result=2 took=44.819µs +ts=2025-05-22T08:05:17Z caller=logging.go:85 method=Health result=2 took=47.458µs +ts=2025-05-22T08:05:20Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:05:20Z caller=logging.go:85 method=Health result=2 took=49.959µs +ts=2025-05-22T08:05:23Z caller=logging.go:85 method=Health result=2 took=43.789µs +ts=2025-05-22T08:05:23Z caller=logging.go:85 method=Health result=2 took=47.349µs +ts=2025-05-22T08:05:26Z caller=logging.go:85 method=Health result=2 took=37.409µs +ts=2025-05-22T08:05:26Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T08:05:29Z caller=logging.go:85 method=Health result=2 took=31.509µs +ts=2025-05-22T08:05:29Z caller=logging.go:85 method=Health result=2 took=34.039µs +ts=2025-05-22T08:05:32Z caller=logging.go:85 method=Health result=2 took=39.409µs +ts=2025-05-22T08:05:32Z caller=logging.go:85 method=Health result=2 took=39.659µs +ts=2025-05-22T08:05:35Z caller=logging.go:85 method=Health result=2 took=42.659µs +ts=2025-05-22T08:05:35Z caller=logging.go:85 method=Health result=2 took=43.559µs +ts=2025-05-22T08:05:38Z caller=logging.go:85 method=Health result=2 took=48.829µs +ts=2025-05-22T08:05:38Z caller=logging.go:85 method=Health result=2 took=49.739µs +ts=2025-05-22T08:05:41Z caller=logging.go:85 method=Health result=2 took=28.55µs +ts=2025-05-22T08:05:41Z caller=logging.go:85 method=Health result=2 took=28.6µs +ts=2025-05-22T08:05:44Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T08:05:44Z caller=logging.go:85 method=Health result=2 took=41.549µs +ts=2025-05-22T08:05:47Z caller=logging.go:85 method=Health result=2 took=44.969µs +ts=2025-05-22T08:05:47Z caller=logging.go:85 method=Health result=2 took=49.559µs +ts=2025-05-22T08:05:50Z caller=logging.go:85 method=Health result=2 took=44.429µs +ts=2025-05-22T08:05:50Z caller=logging.go:85 method=Health result=2 took=51.709µs +ts=2025-05-22T08:05:53Z caller=logging.go:85 method=Health result=2 took=44.329µs +ts=2025-05-22T08:05:53Z caller=logging.go:85 method=Health result=2 took=37.959µs +ts=2025-05-22T08:05:56Z caller=logging.go:85 method=Health result=2 took=31.969µs +ts=2025-05-22T08:05:56Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T08:05:59Z caller=logging.go:85 method=Health result=2 took=36.859µs +ts=2025-05-22T08:05:59Z caller=logging.go:85 method=Health result=2 took=37.079µs +ts=2025-05-22T08:06:02Z caller=logging.go:85 method=Health result=2 took=39.049µs +ts=2025-05-22T08:06:02Z caller=logging.go:85 method=Health result=2 took=39.589µs +ts=2025-05-22T08:06:05Z caller=logging.go:85 method=Health result=2 took=55.448µs +ts=2025-05-22T08:06:05Z caller=logging.go:85 method=Health result=2 took=50.729µs +ts=2025-05-22T08:06:08Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T08:06:08Z caller=logging.go:85 method=Health result=2 took=48.979µs +ts=2025-05-22T08:06:11Z caller=logging.go:85 method=Health result=2 took=40.589µs +ts=2025-05-22T08:06:11Z caller=logging.go:85 method=Health result=2 took=52.728µs +ts=2025-05-22T08:06:14Z caller=logging.go:85 method=Health result=2 took=47.348µs +ts=2025-05-22T08:06:14Z caller=logging.go:85 method=Health result=2 took=48.629µs +ts=2025-05-22T08:06:17Z caller=logging.go:85 method=Health result=2 took=97.938µs +ts=2025-05-22T08:06:17Z caller=logging.go:85 method=Health result=2 took=61.239µs +ts=2025-05-22T08:06:20Z caller=logging.go:85 method=Health result=2 took=35.359µs +ts=2025-05-22T08:06:20Z caller=logging.go:85 method=Health result=2 took=35.389µs +ts=2025-05-22T08:06:23Z caller=logging.go:85 method=Health result=2 took=30.05µs +ts=2025-05-22T08:06:23Z caller=logging.go:85 method=Health result=2 took=15.029µs +ts=2025-05-22T08:06:26Z caller=logging.go:85 method=Health result=2 took=31.85µs +ts=2025-05-22T08:06:26Z caller=logging.go:85 method=Health result=2 took=46.019µs +ts=2025-05-22T08:06:29Z caller=logging.go:85 method=Health result=2 took=31.159µs +ts=2025-05-22T08:06:29Z caller=logging.go:85 method=Health result=2 took=31.129µs +ts=2025-05-22T08:06:32Z caller=logging.go:85 method=Health result=2 took=46.269µs +ts=2025-05-22T08:06:32Z caller=logging.go:85 method=Health result=2 took=47.709µs +ts=2025-05-22T08:06:35Z caller=logging.go:85 method=Health result=2 took=56.229µs +ts=2025-05-22T08:06:35Z caller=logging.go:85 method=Health result=2 took=56.199µs +ts=2025-05-22T08:06:38Z caller=logging.go:85 method=Health result=2 took=45.329µs +ts=2025-05-22T08:06:38Z caller=logging.go:85 method=Health result=2 took=50.749µs +ts=2025-05-22T08:06:41Z caller=logging.go:85 method=Health result=2 took=30.69µs +ts=2025-05-22T08:06:41Z caller=logging.go:85 method=Health result=2 took=47.039µs +ts=2025-05-22T08:06:44Z caller=logging.go:85 method=Health result=2 took=39.42µs +ts=2025-05-22T08:06:44Z caller=logging.go:85 method=Health result=2 took=29.439µs +ts=2025-05-22T08:06:47Z caller=logging.go:85 method=Health result=2 took=39.389µs +ts=2025-05-22T08:06:47Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T08:06:50Z caller=logging.go:85 method=Health result=2 took=28.019µs +ts=2025-05-22T08:06:50Z caller=logging.go:85 method=Health result=2 took=28.079µs +ts=2025-05-22T08:06:53Z caller=logging.go:85 method=Health result=2 took=42.469µs +ts=2025-05-22T08:06:53Z caller=logging.go:85 method=Health result=2 took=17.91µs +ts=2025-05-22T08:06:56Z caller=logging.go:85 method=Health result=2 took=64.478µs +ts=2025-05-22T08:06:56Z caller=logging.go:85 method=Health result=2 took=63.758µs +ts=2025-05-22T08:06:59Z caller=logging.go:85 method=Health result=2 took=28.72µs +ts=2025-05-22T08:06:59Z caller=logging.go:85 method=Health result=2 took=28.72µs +ts=2025-05-22T08:07:02Z caller=logging.go:85 method=Health result=2 took=40.939µs +ts=2025-05-22T08:07:02Z caller=logging.go:85 method=Health result=2 took=45.849µs +ts=2025-05-22T08:07:05Z caller=logging.go:85 method=Health result=2 took=38.679µs +ts=2025-05-22T08:07:05Z caller=logging.go:85 method=Health result=2 took=47.269µs +ts=2025-05-22T08:07:08Z caller=logging.go:85 method=Health result=2 took=35.539µs +ts=2025-05-22T08:07:08Z caller=logging.go:85 method=Health result=2 took=45.049µs +ts=2025-05-22T08:07:11Z caller=logging.go:85 method=Health result=2 took=31.739µs +ts=2025-05-22T08:07:11Z caller=logging.go:85 method=Health result=2 took=47.079µs +ts=2025-05-22T08:07:14Z caller=logging.go:85 method=Health result=2 took=42.849µs +ts=2025-05-22T08:07:14Z caller=logging.go:85 method=Health result=2 took=42.289µs +ts=2025-05-22T08:07:17Z caller=logging.go:85 method=Health result=2 took=31.71µs +ts=2025-05-22T08:07:17Z caller=logging.go:85 method=Health result=2 took=47.998µs +ts=2025-05-22T08:07:20Z caller=logging.go:85 method=Health result=2 took=28.479µs +ts=2025-05-22T08:07:20Z caller=logging.go:85 method=Health result=2 took=14.78µs +ts=2025-05-22T08:07:23Z caller=logging.go:85 method=Health result=2 took=43.349µs +ts=2025-05-22T08:07:23Z caller=logging.go:85 method=Health result=2 took=48.029µs +ts=2025-05-22T08:07:26Z caller=logging.go:85 method=Health result=2 took=42.539µs +ts=2025-05-22T08:07:26Z caller=logging.go:85 method=Health result=2 took=48.759µs +ts=2025-05-22T08:07:29Z caller=logging.go:85 method=Health result=2 took=44.479µs +ts=2025-05-22T08:07:29Z caller=logging.go:85 method=Health result=2 took=54.969µs +ts=2025-05-22T08:07:32Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T08:07:32Z caller=logging.go:85 method=Health result=2 took=57.638µs +ts=2025-05-22T08:07:35Z caller=logging.go:85 method=Health result=2 took=44.599µs +ts=2025-05-22T08:07:35Z caller=logging.go:85 method=Health result=2 took=50.908µs +ts=2025-05-22T08:07:38Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T08:07:38Z caller=logging.go:85 method=Health result=2 took=47.479µs +ts=2025-05-22T08:07:41Z caller=logging.go:85 method=Health result=2 took=30.339µs +ts=2025-05-22T08:07:41Z caller=logging.go:85 method=Health result=2 took=33.699µs +ts=2025-05-22T08:07:44Z caller=logging.go:85 method=Health result=2 took=44.809µs +ts=2025-05-22T08:07:44Z caller=logging.go:85 method=Health result=2 took=44.639µs +ts=2025-05-22T08:07:47Z caller=logging.go:85 method=Health result=2 took=32.709µs +ts=2025-05-22T08:07:47Z caller=logging.go:85 method=Health result=2 took=49.049µs +ts=2025-05-22T08:07:50Z caller=logging.go:85 method=Health result=2 took=49.449µs +ts=2025-05-22T08:07:50Z caller=logging.go:85 method=Health result=2 took=53.099µs +ts=2025-05-22T08:07:53Z caller=logging.go:85 method=Health result=2 took=41.999µs +ts=2025-05-22T08:07:53Z caller=logging.go:85 method=Health result=2 took=49.599µs +ts=2025-05-22T08:07:56Z caller=logging.go:85 method=Health result=2 took=32.019µs +ts=2025-05-22T08:07:56Z caller=logging.go:85 method=Health result=2 took=53.609µs +ts=2025-05-22T08:07:59Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T08:07:59Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T08:08:02Z caller=logging.go:85 method=Health result=2 took=40.579µs +ts=2025-05-22T08:08:02Z caller=logging.go:85 method=Health result=2 took=27.449µs +ts=2025-05-22T08:08:05Z caller=logging.go:85 method=Health result=2 took=45.449µs +ts=2025-05-22T08:08:05Z caller=logging.go:85 method=Health result=2 took=48.329µs +ts=2025-05-22T08:08:08Z caller=logging.go:85 method=Health result=2 took=43.729µs +ts=2025-05-22T08:08:08Z caller=logging.go:85 method=Health result=2 took=50.828µs +ts=2025-05-22T08:08:11Z caller=logging.go:85 method=Health result=2 took=45.399µs +ts=2025-05-22T08:08:11Z caller=logging.go:85 method=Health result=2 took=51.759µs +ts=2025-05-22T08:08:14Z caller=logging.go:85 method=Health result=2 took=39.649µs +ts=2025-05-22T08:08:14Z caller=logging.go:85 method=Health result=2 took=33.28µs +ts=2025-05-22T08:08:17Z caller=logging.go:85 method=Health result=2 took=966.087µs +ts=2025-05-22T08:08:17Z caller=logging.go:85 method=Health result=2 took=47.299µs +ts=2025-05-22T08:08:20Z caller=logging.go:85 method=Health result=2 took=32.509µs +ts=2025-05-22T08:08:20Z caller=logging.go:85 method=Health result=2 took=33.179µs +ts=2025-05-22T08:08:23Z caller=logging.go:85 method=Health result=2 took=40.699µs +ts=2025-05-22T08:08:23Z caller=logging.go:85 method=Health result=2 took=47.119µs +ts=2025-05-22T08:08:26Z caller=logging.go:85 method=Health result=2 took=41.109µs +ts=2025-05-22T08:08:26Z caller=logging.go:85 method=Health result=2 took=40.619µs +ts=2025-05-22T08:08:29Z caller=logging.go:85 method=Health result=2 took=37.999µs +ts=2025-05-22T08:08:29Z caller=logging.go:85 method=Health result=2 took=37.959µs +ts=2025-05-22T08:08:32Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T08:08:32Z caller=logging.go:85 method=Health result=2 took=47.838µs +ts=2025-05-22T08:08:35Z caller=logging.go:85 method=Health result=2 took=43.479µs +ts=2025-05-22T08:08:35Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T08:08:38Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T08:08:38Z caller=logging.go:85 method=Health result=2 took=38.959µs +ts=2025-05-22T08:08:41Z caller=logging.go:85 method=Health result=2 took=37.439µs +ts=2025-05-22T08:08:41Z caller=logging.go:85 method=Health result=2 took=41.209µs +ts=2025-05-22T08:08:44Z caller=logging.go:85 method=Health result=2 took=47.849µs +ts=2025-05-22T08:08:44Z caller=logging.go:85 method=Health result=2 took=47.899µs +ts=2025-05-22T08:08:47Z caller=logging.go:85 method=Health result=2 took=40.019µs +ts=2025-05-22T08:08:47Z caller=logging.go:85 method=Health result=2 took=40.219µs +ts=2025-05-22T08:08:50Z caller=logging.go:85 method=Health result=2 took=40.889µs +ts=2025-05-22T08:08:50Z caller=logging.go:85 method=Health result=2 took=38.359µs +ts=2025-05-22T08:08:53Z caller=logging.go:85 method=Health result=2 took=44.388µs +ts=2025-05-22T08:08:53Z caller=logging.go:85 method=Health result=2 took=50.579µs +ts=2025-05-22T08:08:56Z caller=logging.go:85 method=Health result=2 took=46.089µs +ts=2025-05-22T08:08:56Z caller=logging.go:85 method=Health result=2 took=37.859µs +ts=2025-05-22T08:08:59Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T08:08:59Z caller=logging.go:85 method=Health result=2 took=47.869µs +ts=2025-05-22T08:09:02Z caller=logging.go:85 method=Health result=2 took=39.929µs +ts=2025-05-22T08:09:02Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T08:09:05Z caller=logging.go:85 method=Health result=2 took=43.169µs +ts=2025-05-22T08:09:05Z caller=logging.go:85 method=Health result=2 took=43.649µs +ts=2025-05-22T08:09:08Z caller=logging.go:85 method=Health result=2 took=40.849µs +ts=2025-05-22T08:09:08Z caller=logging.go:85 method=Health result=2 took=28.95µs +ts=2025-05-22T08:09:11Z caller=logging.go:85 method=Health result=2 took=62.559µs +ts=2025-05-22T08:09:11Z caller=logging.go:85 method=Health result=2 took=50.179µs +ts=2025-05-22T08:09:14Z caller=logging.go:85 method=Health result=2 took=42.209µs +ts=2025-05-22T08:09:14Z caller=logging.go:85 method=Health result=2 took=41.489µs +ts=2025-05-22T08:09:17Z caller=logging.go:85 method=Health result=2 took=41.519µs +ts=2025-05-22T08:09:17Z caller=logging.go:85 method=Health result=2 took=48.959µs +ts=2025-05-22T08:09:20Z caller=logging.go:85 method=Health result=2 took=44.129µs +ts=2025-05-22T08:09:20Z caller=logging.go:85 method=Health result=2 took=44.799µs +ts=2025-05-22T08:09:23Z caller=logging.go:85 method=Health result=2 took=33.479µs +ts=2025-05-22T08:09:23Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T08:09:26Z caller=logging.go:85 method=Health result=2 took=42.619µs +ts=2025-05-22T08:09:26Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T08:09:29Z caller=logging.go:85 method=Health result=2 took=41.739µs +ts=2025-05-22T08:09:29Z caller=logging.go:85 method=Health result=2 took=63.349µs +ts=2025-05-22T08:09:32Z caller=logging.go:85 method=Health result=2 took=42.918µs +ts=2025-05-22T08:09:32Z caller=logging.go:85 method=Health result=2 took=41.389µs +ts=2025-05-22T08:09:35Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T08:09:35Z caller=logging.go:85 method=Health result=2 took=41.249µs +ts=2025-05-22T08:09:38Z caller=logging.go:85 method=Health result=2 took=45.699µs +ts=2025-05-22T08:09:38Z caller=logging.go:85 method=Health result=2 took=48.879µs +ts=2025-05-22T08:09:41Z caller=logging.go:85 method=Health result=2 took=43.019µs +ts=2025-05-22T08:09:41Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T08:09:44Z caller=logging.go:85 method=Health result=2 took=56.899µs +ts=2025-05-22T08:09:44Z caller=logging.go:85 method=Health result=2 took=56.869µs +ts=2025-05-22T08:09:47Z caller=logging.go:85 method=Health result=2 took=45.639µs +ts=2025-05-22T08:09:47Z caller=logging.go:85 method=Health result=2 took=46.749µs +ts=2025-05-22T08:09:50Z caller=logging.go:85 method=Health result=2 took=37.389µs +ts=2025-05-22T08:09:50Z caller=logging.go:85 method=Health result=2 took=62.938µs +ts=2025-05-22T08:09:53Z caller=logging.go:85 method=Health result=2 took=46.099µs +ts=2025-05-22T08:09:53Z caller=logging.go:85 method=Health result=2 took=51.228µs +ts=2025-05-22T08:09:56Z caller=logging.go:85 method=Health result=2 took=37.099µs +ts=2025-05-22T08:09:56Z caller=logging.go:85 method=Health result=2 took=41.949µs +ts=2025-05-22T08:09:59Z caller=logging.go:85 method=Health result=2 took=41.049µs +ts=2025-05-22T08:09:59Z caller=logging.go:85 method=Health result=2 took=41.989µs +ts=2025-05-22T08:10:02Z caller=logging.go:85 method=Health result=2 took=44.069µs +ts=2025-05-22T08:10:02Z caller=logging.go:85 method=Health result=2 took=48.039µs +ts=2025-05-22T08:10:05Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T08:10:05Z caller=logging.go:85 method=Health result=2 took=51.048µs +ts=2025-05-22T08:10:08Z caller=logging.go:85 method=Health result=2 took=36.58µs +ts=2025-05-22T08:10:08Z caller=logging.go:85 method=Health result=2 took=36.85µs +ts=2025-05-22T08:10:11Z caller=logging.go:85 method=Health result=2 took=40.359µs +ts=2025-05-22T08:10:11Z caller=logging.go:85 method=Health result=2 took=50.579µs +ts=2025-05-22T08:10:14Z caller=logging.go:85 method=Health result=2 took=35.359µs +ts=2025-05-22T08:10:14Z caller=logging.go:85 method=Health result=2 took=30.009µs +ts=2025-05-22T08:10:17Z caller=logging.go:85 method=Health result=2 took=64.418µs +ts=2025-05-22T08:10:17Z caller=logging.go:85 method=Health result=2 took=859.54µs +ts=2025-05-22T08:10:20Z caller=logging.go:85 method=Health result=2 took=40.849µs +ts=2025-05-22T08:10:20Z caller=logging.go:85 method=Health result=2 took=44.268µs +ts=2025-05-22T08:10:23Z caller=logging.go:85 method=Health result=2 took=46.828µs +ts=2025-05-22T08:10:23Z caller=logging.go:85 method=Health result=2 took=51.209µs +ts=2025-05-22T08:10:26Z caller=logging.go:85 method=Health result=2 took=42.109µs +ts=2025-05-22T08:10:26Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T08:10:29Z caller=logging.go:85 method=Health result=2 took=44.359µs +ts=2025-05-22T08:10:29Z caller=logging.go:85 method=Health result=2 took=50.509µs +ts=2025-05-22T08:10:32Z caller=logging.go:85 method=Health result=2 took=39.889µs +ts=2025-05-22T08:10:32Z caller=logging.go:85 method=Health result=2 took=24.07µs +ts=2025-05-22T08:10:35Z caller=logging.go:85 method=Health result=2 took=44.829µs +ts=2025-05-22T08:10:35Z caller=logging.go:85 method=Health result=2 took=18.909µs +ts=2025-05-22T08:10:38Z caller=logging.go:85 method=Health result=2 took=29.469µs +ts=2025-05-22T08:10:38Z caller=logging.go:85 method=Health result=2 took=15.18µs +ts=2025-05-22T08:10:41Z caller=logging.go:85 method=Health result=2 took=47.519µs +ts=2025-05-22T08:10:41Z caller=logging.go:85 method=Health result=2 took=48.748µs +ts=2025-05-22T08:10:44Z caller=logging.go:85 method=Health result=2 took=37.09µs +ts=2025-05-22T08:10:44Z caller=logging.go:85 method=Health result=2 took=36.65µs +ts=2025-05-22T08:10:47Z caller=logging.go:85 method=Health result=2 took=43.479µs +ts=2025-05-22T08:10:47Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T08:10:50Z caller=logging.go:85 method=Health result=2 took=44.269µs +ts=2025-05-22T08:10:50Z caller=logging.go:85 method=Health result=2 took=39.79µs +ts=2025-05-22T08:10:53Z caller=logging.go:85 method=Health result=2 took=45.319µs +ts=2025-05-22T08:10:53Z caller=logging.go:85 method=Health result=2 took=42.329µs +ts=2025-05-22T08:10:56Z caller=logging.go:85 method=Health result=2 took=43.019µs +ts=2025-05-22T08:10:56Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T08:10:59Z caller=logging.go:85 method=Health result=2 took=41.229µs +ts=2025-05-22T08:10:59Z caller=logging.go:85 method=Health result=2 took=38.289µs +ts=2025-05-22T08:11:02Z caller=logging.go:85 method=Health result=2 took=45.469µs +ts=2025-05-22T08:11:02Z caller=logging.go:85 method=Health result=2 took=47.688µs +ts=2025-05-22T08:11:05Z caller=logging.go:85 method=Health result=2 took=35.209µs +ts=2025-05-22T08:11:05Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T08:11:08Z caller=logging.go:85 method=Health result=2 took=43.999µs +ts=2025-05-22T08:11:08Z caller=logging.go:85 method=Health result=2 took=32.89µs +ts=2025-05-22T08:11:11Z caller=logging.go:85 method=Health result=2 took=53.969µs +ts=2025-05-22T08:11:11Z caller=logging.go:85 method=Health result=2 took=57.599µs +ts=2025-05-22T08:11:14Z caller=logging.go:85 method=Health result=2 took=42.959µs +ts=2025-05-22T08:11:14Z caller=logging.go:85 method=Health result=2 took=41.919µs +ts=2025-05-22T08:11:17Z caller=logging.go:85 method=Health result=2 took=30.809µs +ts=2025-05-22T08:11:17Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T08:11:20Z caller=logging.go:85 method=Health result=2 took=46.349µs +ts=2025-05-22T08:11:20Z caller=logging.go:85 method=Health result=2 took=48.489µs +ts=2025-05-22T08:11:23Z caller=logging.go:85 method=Health result=2 took=53.028µs +ts=2025-05-22T08:11:23Z caller=logging.go:85 method=Health result=2 took=51.978µs +ts=2025-05-22T08:11:26Z caller=logging.go:85 method=Health result=2 took=42.669µs +ts=2025-05-22T08:11:26Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T08:11:29Z caller=logging.go:85 method=Health result=2 took=48.009µs +ts=2025-05-22T08:11:29Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T08:11:32Z caller=logging.go:85 method=Health result=2 took=38.719µs +ts=2025-05-22T08:11:32Z caller=logging.go:85 method=Health result=2 took=27.55µs +ts=2025-05-22T08:11:35Z caller=logging.go:85 method=Health result=2 took=39.869µs +ts=2025-05-22T08:11:35Z caller=logging.go:85 method=Health result=2 took=31.699µs +ts=2025-05-22T08:11:38Z caller=logging.go:85 method=Health result=2 took=43.559µs +ts=2025-05-22T08:11:38Z caller=logging.go:85 method=Health result=2 took=48.269µs +ts=2025-05-22T08:11:41Z caller=logging.go:85 method=Health result=2 took=42.319µs +ts=2025-05-22T08:11:41Z caller=logging.go:85 method=Health result=2 took=57.398µs +ts=2025-05-22T08:11:44Z caller=logging.go:85 method=Health result=2 took=29.059µs +ts=2025-05-22T08:11:44Z caller=logging.go:85 method=Health result=2 took=29.019µs +ts=2025-05-22T08:11:47Z caller=logging.go:85 method=Health result=2 took=44.569µs +ts=2025-05-22T08:11:47Z caller=logging.go:85 method=Health result=2 took=52.728µs +ts=2025-05-22T08:11:50Z caller=logging.go:85 method=Health result=2 took=34.589µs +ts=2025-05-22T08:11:50Z caller=logging.go:85 method=Health result=2 took=34.769µs +ts=2025-05-22T08:11:53Z caller=logging.go:85 method=Health result=2 took=41.389µs +ts=2025-05-22T08:11:53Z caller=logging.go:85 method=Health result=2 took=41.819µs +ts=2025-05-22T08:11:56Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T08:11:56Z caller=logging.go:85 method=Health result=2 took=41.669µs +ts=2025-05-22T08:11:59Z caller=logging.go:85 method=Health result=2 took=44.759µs +ts=2025-05-22T08:11:59Z caller=logging.go:85 method=Health result=2 took=51.848µs +ts=2025-05-22T08:12:02Z caller=logging.go:85 method=Health result=2 took=45.429µs +ts=2025-05-22T08:12:02Z caller=logging.go:85 method=Health result=2 took=47.329µs +ts=2025-05-22T08:12:05Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T08:12:05Z caller=logging.go:85 method=Health result=2 took=42.849µs +ts=2025-05-22T08:12:08Z caller=logging.go:85 method=Health result=2 took=43.339µs +ts=2025-05-22T08:12:08Z caller=logging.go:85 method=Health result=2 took=48.149µs +ts=2025-05-22T08:12:11Z caller=logging.go:85 method=Health result=2 took=43.519µs +ts=2025-05-22T08:12:11Z caller=logging.go:85 method=Health result=2 took=50.969µs +ts=2025-05-22T08:12:14Z caller=logging.go:85 method=Health result=2 took=42.509µs +ts=2025-05-22T08:12:14Z caller=logging.go:85 method=Health result=2 took=42.169µs +ts=2025-05-22T08:12:17Z caller=logging.go:85 method=Health result=2 took=50.788µs +ts=2025-05-22T08:12:17Z caller=logging.go:85 method=Health result=2 took=62.469µs +ts=2025-05-22T08:12:20Z caller=logging.go:85 method=Health result=2 took=42.779µs +ts=2025-05-22T08:12:20Z caller=logging.go:85 method=Health result=2 took=44.159µs +ts=2025-05-22T08:12:23Z caller=logging.go:85 method=Health result=2 took=44.019µs +ts=2025-05-22T08:12:23Z caller=logging.go:85 method=Health result=2 took=49.139µs +ts=2025-05-22T08:12:26Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T08:12:26Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T08:12:29Z caller=logging.go:85 method=Health result=2 took=30.889µs +ts=2025-05-22T08:12:29Z caller=logging.go:85 method=Health result=2 took=46.439µs +ts=2025-05-22T08:12:32Z caller=logging.go:85 method=Health result=2 took=44.839µs +ts=2025-05-22T08:12:32Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T08:12:35Z caller=logging.go:85 method=Health result=2 took=43.999µs +ts=2025-05-22T08:12:35Z caller=logging.go:85 method=Health result=2 took=43.389µs +ts=2025-05-22T08:12:38Z caller=logging.go:85 method=Health result=2 took=36.629µs +ts=2025-05-22T08:12:38Z caller=logging.go:85 method=Health result=2 took=16.179µs +ts=2025-05-22T08:12:41Z caller=logging.go:85 method=Health result=2 took=30.389µs +ts=2025-05-22T08:12:41Z caller=logging.go:85 method=Health result=2 took=45.389µs +ts=2025-05-22T08:12:44Z caller=logging.go:85 method=Health result=2 took=42.779µs +ts=2025-05-22T08:12:44Z caller=logging.go:85 method=Health result=2 took=50.288µs +ts=2025-05-22T08:12:47Z caller=logging.go:85 method=Health result=2 took=45.909µs +ts=2025-05-22T08:12:47Z caller=logging.go:85 method=Health result=2 took=47.159µs +ts=2025-05-22T08:12:50Z caller=logging.go:85 method=Health result=2 took=32.349µs +ts=2025-05-22T08:12:50Z caller=logging.go:85 method=Health result=2 took=46.389µs +ts=2025-05-22T08:12:53Z caller=logging.go:85 method=Health result=2 took=40.469µs +ts=2025-05-22T08:12:53Z caller=logging.go:85 method=Health result=2 took=47.149µs +ts=2025-05-22T08:12:56Z caller=logging.go:85 method=Health result=2 took=39.829µs +ts=2025-05-22T08:12:56Z caller=logging.go:85 method=Health result=2 took=40.429µs +ts=2025-05-22T08:12:59Z caller=logging.go:85 method=Health result=2 took=45.209µs +ts=2025-05-22T08:12:59Z caller=logging.go:85 method=Health result=2 took=49.559µs +ts=2025-05-22T08:13:02Z caller=logging.go:85 method=Health result=2 took=54.369µs +ts=2025-05-22T08:13:02Z caller=logging.go:85 method=Health result=2 took=18.44µs +ts=2025-05-22T08:13:05Z caller=logging.go:85 method=Health result=2 took=37.929µs +ts=2025-05-22T08:13:05Z caller=logging.go:85 method=Health result=2 took=48.468µs +ts=2025-05-22T08:13:08Z caller=logging.go:85 method=Health result=2 took=45.229µs +ts=2025-05-22T08:13:08Z caller=logging.go:85 method=Health result=2 took=46.588µs +ts=2025-05-22T08:13:11Z caller=logging.go:85 method=Health result=2 took=54.369µs +ts=2025-05-22T08:13:11Z caller=logging.go:85 method=Health result=2 took=48.999µs +ts=2025-05-22T08:13:14Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T08:13:14Z caller=logging.go:85 method=Health result=2 took=49.789µs +ts=2025-05-22T08:13:17Z caller=logging.go:85 method=Health result=2 took=43.359µs +ts=2025-05-22T08:13:17Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T08:13:20Z caller=logging.go:85 method=Health result=2 took=31.209µs +ts=2025-05-22T08:13:20Z caller=logging.go:85 method=Health result=2 took=54.398µs +ts=2025-05-22T08:13:23Z caller=logging.go:85 method=Health result=2 took=36.749µs +ts=2025-05-22T08:13:23Z caller=logging.go:85 method=Health result=2 took=35.839µs +ts=2025-05-22T08:13:26Z caller=logging.go:85 method=Health result=2 took=57.618µs +ts=2025-05-22T08:13:26Z caller=logging.go:85 method=Health result=2 took=57.688µs +ts=2025-05-22T08:13:29Z caller=logging.go:85 method=Health result=2 took=37.089µs +ts=2025-05-22T08:13:29Z caller=logging.go:85 method=Health result=2 took=54.809µs +ts=2025-05-22T08:13:32Z caller=logging.go:85 method=Health result=2 took=40.519µs +ts=2025-05-22T08:13:32Z caller=logging.go:85 method=Health result=2 took=46.619µs +ts=2025-05-22T08:13:35Z caller=logging.go:85 method=Health result=2 took=44.569µs +ts=2025-05-22T08:13:35Z caller=logging.go:85 method=Health result=2 took=32.929µs +ts=2025-05-22T08:13:38Z caller=logging.go:85 method=Health result=2 took=60.579µs +ts=2025-05-22T08:13:38Z caller=logging.go:85 method=Health result=2 took=50.309µs +ts=2025-05-22T08:13:41Z caller=logging.go:85 method=Health result=2 took=38.349µs +ts=2025-05-22T08:13:41Z caller=logging.go:85 method=Health result=2 took=49.539µs +ts=2025-05-22T08:13:44Z caller=logging.go:85 method=Health result=2 took=45.739µs +ts=2025-05-22T08:13:44Z caller=logging.go:85 method=Health result=2 took=45.279µs +ts=2025-05-22T08:13:47Z caller=logging.go:85 method=Health result=2 took=39.759µs +ts=2025-05-22T08:13:47Z caller=logging.go:85 method=Health result=2 took=51.138µs +ts=2025-05-22T08:13:50Z caller=logging.go:85 method=Health result=2 took=49.439µs +ts=2025-05-22T08:13:50Z caller=logging.go:85 method=Health result=2 took=47.798µs +ts=2025-05-22T08:13:53Z caller=logging.go:85 method=Health result=2 took=42.639µs +ts=2025-05-22T08:13:53Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T08:13:56Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T08:13:56Z caller=logging.go:85 method=Health result=2 took=49.009µs +ts=2025-05-22T08:13:59Z caller=logging.go:85 method=Health result=2 took=38.459µs +ts=2025-05-22T08:13:59Z caller=logging.go:85 method=Health result=2 took=39.029µs +ts=2025-05-22T08:14:02Z caller=logging.go:85 method=Health result=2 took=36.749µs +ts=2025-05-22T08:14:02Z caller=logging.go:85 method=Health result=2 took=34.269µs +ts=2025-05-22T08:14:05Z caller=logging.go:85 method=Health result=2 took=44.719µs +ts=2025-05-22T08:14:05Z caller=logging.go:85 method=Health result=2 took=43.599µs +ts=2025-05-22T08:14:08Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T08:14:08Z caller=logging.go:85 method=Health result=2 took=21.069µs +ts=2025-05-22T08:14:11Z caller=logging.go:85 method=Health result=2 took=41.329µs +ts=2025-05-22T08:14:11Z caller=logging.go:85 method=Health result=2 took=49.578µs +ts=2025-05-22T08:14:14Z caller=logging.go:85 method=Health result=2 took=53.489µs +ts=2025-05-22T08:14:14Z caller=logging.go:85 method=Health result=2 took=53.449µs +ts=2025-05-22T08:14:17Z caller=logging.go:85 method=Health result=2 took=117.527µs +ts=2025-05-22T08:14:17Z caller=logging.go:85 method=Health result=2 took=34.78µs +ts=2025-05-22T08:14:20Z caller=logging.go:85 method=Health result=2 took=45.109µs +ts=2025-05-22T08:14:20Z caller=logging.go:85 method=Health result=2 took=48.219µs +ts=2025-05-22T08:14:23Z caller=logging.go:85 method=Health result=2 took=28.4µs +ts=2025-05-22T08:14:23Z caller=logging.go:85 method=Health result=2 took=48.149µs +ts=2025-05-22T08:14:26Z caller=logging.go:85 method=Health result=2 took=37.739µs +ts=2025-05-22T08:14:26Z caller=logging.go:85 method=Health result=2 took=38.549µs +ts=2025-05-22T08:14:29Z caller=logging.go:85 method=Health result=2 took=46.159µs +ts=2025-05-22T08:14:29Z caller=logging.go:85 method=Health result=2 took=45.289µs +ts=2025-05-22T08:14:32Z caller=logging.go:85 method=Health result=2 took=47.849µs +ts=2025-05-22T08:14:32Z caller=logging.go:85 method=Health result=2 took=56.888µs +ts=2025-05-22T08:14:35Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T08:14:35Z caller=logging.go:85 method=Health result=2 took=42.969µs +ts=2025-05-22T08:14:38Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T08:14:38Z caller=logging.go:85 method=Health result=2 took=50.309µs +ts=2025-05-22T08:14:41Z caller=logging.go:85 method=Health result=2 took=42.759µs +ts=2025-05-22T08:14:41Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T08:14:44Z caller=logging.go:85 method=Health result=2 took=64.218µs +ts=2025-05-22T08:14:44Z caller=logging.go:85 method=Health result=2 took=48.979µs +ts=2025-05-22T08:14:47Z caller=logging.go:85 method=Health result=2 took=36.969µs +ts=2025-05-22T08:14:47Z caller=logging.go:85 method=Health result=2 took=47.829µs +ts=2025-05-22T08:14:50Z caller=logging.go:85 method=Health result=2 took=37.339µs +ts=2025-05-22T08:14:50Z caller=logging.go:85 method=Health result=2 took=48.119µs +ts=2025-05-22T08:14:53Z caller=logging.go:85 method=Health result=2 took=38.919µs +ts=2025-05-22T08:14:53Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T08:14:56Z caller=logging.go:85 method=Health result=2 took=28.62µs +ts=2025-05-22T08:14:56Z caller=logging.go:85 method=Health result=2 took=28.62µs +ts=2025-05-22T08:14:59Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T08:14:59Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T08:15:02Z caller=logging.go:85 method=Health result=2 took=29.329µs +ts=2025-05-22T08:15:02Z caller=logging.go:85 method=Health result=2 took=47.739µs +ts=2025-05-22T08:15:05Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T08:15:05Z caller=logging.go:85 method=Health result=2 took=42.149µs +ts=2025-05-22T08:15:08Z caller=logging.go:85 method=Health result=2 took=28.729µs +ts=2025-05-22T08:15:08Z caller=logging.go:85 method=Health result=2 took=28.959µs +ts=2025-05-22T08:15:11Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T08:15:11Z caller=logging.go:85 method=Health result=2 took=39.479µs +ts=2025-05-22T08:15:14Z caller=logging.go:85 method=Health result=2 took=45.689µs +ts=2025-05-22T08:15:14Z caller=logging.go:85 method=Health result=2 took=46.778µs +ts=2025-05-22T08:15:17Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T08:15:17Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T08:15:20Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T08:15:20Z caller=logging.go:85 method=Health result=2 took=30.829µs +ts=2025-05-22T08:15:23Z caller=logging.go:85 method=Health result=2 took=36.769µs +ts=2025-05-22T08:15:23Z caller=logging.go:85 method=Health result=2 took=47.729µs +ts=2025-05-22T08:15:26Z caller=logging.go:85 method=Health result=2 took=39.399µs +ts=2025-05-22T08:15:26Z caller=logging.go:85 method=Health result=2 took=54.969µs +ts=2025-05-22T08:15:29Z caller=logging.go:85 method=Health result=2 took=33.359µs +ts=2025-05-22T08:15:29Z caller=logging.go:85 method=Health result=2 took=40.279µs +ts=2025-05-22T08:15:32Z caller=logging.go:85 method=Health result=2 took=38.379µs +ts=2025-05-22T08:15:32Z caller=logging.go:85 method=Health result=2 took=47.089µs +ts=2025-05-22T08:15:35Z caller=logging.go:85 method=Health result=2 took=41.149µs +ts=2025-05-22T08:15:35Z caller=logging.go:85 method=Health result=2 took=43.359µs +ts=2025-05-22T08:15:38Z caller=logging.go:85 method=Health result=2 took=35.86µs +ts=2025-05-22T08:15:38Z caller=logging.go:85 method=Health result=2 took=29.79µs +ts=2025-05-22T08:15:41Z caller=logging.go:85 method=Health result=2 took=40.239µs +ts=2025-05-22T08:15:41Z caller=logging.go:85 method=Health result=2 took=40.479µs +ts=2025-05-22T08:15:44Z caller=logging.go:85 method=Health result=2 took=35.699µs +ts=2025-05-22T08:15:44Z caller=logging.go:85 method=Health result=2 took=35.639µs +ts=2025-05-22T08:15:47Z caller=logging.go:85 method=Health result=2 took=45.599µs +ts=2025-05-22T08:15:47Z caller=logging.go:85 method=Health result=2 took=38.719µs +ts=2025-05-22T08:15:50Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T08:15:50Z caller=logging.go:85 method=Health result=2 took=66.078µs +ts=2025-05-22T08:15:53Z caller=logging.go:85 method=Health result=2 took=40.449µs +ts=2025-05-22T08:15:53Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T08:15:56Z caller=logging.go:85 method=Health result=2 took=38.3µs +ts=2025-05-22T08:15:56Z caller=logging.go:85 method=Health result=2 took=53.269µs +ts=2025-05-22T08:15:59Z caller=logging.go:85 method=Health result=2 took=40.619µs +ts=2025-05-22T08:15:59Z caller=logging.go:85 method=Health result=2 took=29.419µs +ts=2025-05-22T08:16:02Z caller=logging.go:85 method=Health result=2 took=47.199µs +ts=2025-05-22T08:16:02Z caller=logging.go:85 method=Health result=2 took=52.589µs +ts=2025-05-22T08:16:05Z caller=logging.go:85 method=Health result=2 took=54.159µs +ts=2025-05-22T08:16:05Z caller=logging.go:85 method=Health result=2 took=52.059µs +ts=2025-05-22T08:16:08Z caller=logging.go:85 method=Health result=2 took=54.189µs +ts=2025-05-22T08:16:08Z caller=logging.go:85 method=Health result=2 took=50.389µs +ts=2025-05-22T08:16:11Z caller=logging.go:85 method=Health result=2 took=44.279µs +ts=2025-05-22T08:16:11Z caller=logging.go:85 method=Health result=2 took=37.819µs +ts=2025-05-22T08:16:14Z caller=logging.go:85 method=Health result=2 took=41.209µs +ts=2025-05-22T08:16:14Z caller=logging.go:85 method=Health result=2 took=25.55µs +ts=2025-05-22T08:16:17Z caller=logging.go:85 method=Health result=2 took=966.027µs +ts=2025-05-22T08:16:17Z caller=logging.go:85 method=Health result=2 took=45.519µs +ts=2025-05-22T08:16:20Z caller=logging.go:85 method=Health result=2 took=38.209µs +ts=2025-05-22T08:16:20Z caller=logging.go:85 method=Health result=2 took=47.359µs +ts=2025-05-22T08:16:23Z caller=logging.go:85 method=Health result=2 took=36.329µs +ts=2025-05-22T08:16:23Z caller=logging.go:85 method=Health result=2 took=35.999µs +ts=2025-05-22T08:16:26Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:16:26Z caller=logging.go:85 method=Health result=2 took=41.009µs +ts=2025-05-22T08:16:29Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T08:16:29Z caller=logging.go:85 method=Health result=2 took=43.729µs +ts=2025-05-22T08:16:32Z caller=logging.go:85 method=Health result=2 took=38.819µs +ts=2025-05-22T08:16:32Z caller=logging.go:85 method=Health result=2 took=38.409µs +ts=2025-05-22T08:16:35Z caller=logging.go:85 method=Health result=2 took=43.749µs +ts=2025-05-22T08:16:35Z caller=logging.go:85 method=Health result=2 took=44.319µs +ts=2025-05-22T08:16:38Z caller=logging.go:85 method=Health result=2 took=45.669µs +ts=2025-05-22T08:16:38Z caller=logging.go:85 method=Health result=2 took=53.518µs +ts=2025-05-22T08:16:41Z caller=logging.go:85 method=Health result=2 took=39.339µs +ts=2025-05-22T08:16:41Z caller=logging.go:85 method=Health result=2 took=38.869µs +ts=2025-05-22T08:16:44Z caller=logging.go:85 method=Health result=2 took=37.939µs +ts=2025-05-22T08:16:44Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T08:16:47Z caller=logging.go:85 method=Health result=2 took=46.619µs +ts=2025-05-22T08:16:47Z caller=logging.go:85 method=Health result=2 took=50.609µs +ts=2025-05-22T08:16:50Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T08:16:50Z caller=logging.go:85 method=Health result=2 took=44.149µs +ts=2025-05-22T08:16:53Z caller=logging.go:85 method=Health result=2 took=43.409µs +ts=2025-05-22T08:16:53Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:16:56Z caller=logging.go:85 method=Health result=2 took=42.999µs +ts=2025-05-22T08:16:56Z caller=logging.go:85 method=Health result=2 took=52.058µs +ts=2025-05-22T08:16:59Z caller=logging.go:85 method=Health result=2 took=45.139µs +ts=2025-05-22T08:16:59Z caller=logging.go:85 method=Health result=2 took=85.578µs +ts=2025-05-22T08:17:02Z caller=logging.go:85 method=Health result=2 took=41.179µs +ts=2025-05-22T08:17:02Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T08:17:05Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T08:17:05Z caller=logging.go:85 method=Health result=2 took=51.089µs +ts=2025-05-22T08:17:08Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T08:17:08Z caller=logging.go:85 method=Health result=2 took=50.159µs +ts=2025-05-22T08:17:11Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T08:17:11Z caller=logging.go:85 method=Health result=2 took=44.009µs +ts=2025-05-22T08:17:14Z caller=logging.go:85 method=Health result=2 took=43.949µs +ts=2025-05-22T08:17:14Z caller=logging.go:85 method=Health result=2 took=30.889µs +ts=2025-05-22T08:17:17Z caller=logging.go:85 method=Health result=2 took=44.299µs +ts=2025-05-22T08:17:17Z caller=logging.go:85 method=Health result=2 took=43.929µs +ts=2025-05-22T08:17:20Z caller=logging.go:85 method=Health result=2 took=35.289µs +ts=2025-05-22T08:17:20Z caller=logging.go:85 method=Health result=2 took=35.289µs +ts=2025-05-22T08:17:23Z caller=logging.go:85 method=Health result=2 took=45.058µs +ts=2025-05-22T08:17:23Z caller=logging.go:85 method=Health result=2 took=38.329µs +ts=2025-05-22T08:17:26Z caller=logging.go:85 method=Health result=2 took=40.349µs +ts=2025-05-22T08:17:26Z caller=logging.go:85 method=Health result=2 took=40.729µs +ts=2025-05-22T08:17:29Z caller=logging.go:85 method=Health result=2 took=44.559µs +ts=2025-05-22T08:17:29Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T08:17:32Z caller=logging.go:85 method=Health result=2 took=41.699µs +ts=2025-05-22T08:17:32Z caller=logging.go:85 method=Health result=2 took=40.999µs +ts=2025-05-22T08:17:35Z caller=logging.go:85 method=Health result=2 took=30.059µs +ts=2025-05-22T08:17:35Z caller=logging.go:85 method=Health result=2 took=15.089µs +ts=2025-05-22T08:17:38Z caller=logging.go:85 method=Health result=2 took=31.62µs +ts=2025-05-22T08:17:38Z caller=logging.go:85 method=Health result=2 took=47.419µs +ts=2025-05-22T08:17:41Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T08:17:41Z caller=logging.go:85 method=Health result=2 took=49.639µs +ts=2025-05-22T08:17:44Z caller=logging.go:85 method=Health result=2 took=69.528µs +ts=2025-05-22T08:17:44Z caller=logging.go:85 method=Health result=2 took=47.628µs +ts=2025-05-22T08:17:47Z caller=logging.go:85 method=Health result=2 took=40.019µs +ts=2025-05-22T08:17:47Z caller=logging.go:85 method=Health result=2 took=25.729µs +ts=2025-05-22T08:17:50Z caller=logging.go:85 method=Health result=2 took=30.33µs +ts=2025-05-22T08:17:50Z caller=logging.go:85 method=Health result=2 took=47.569µs +ts=2025-05-22T08:17:53Z caller=logging.go:85 method=Health result=2 took=30.109µs +ts=2025-05-22T08:17:53Z caller=logging.go:85 method=Health result=2 took=47.139µs +ts=2025-05-22T08:17:56Z caller=logging.go:85 method=Health result=2 took=29.94µs +ts=2025-05-22T08:17:56Z caller=logging.go:85 method=Health result=2 took=14.97µs +ts=2025-05-22T08:17:59Z caller=logging.go:85 method=Health result=2 took=62.809µs +ts=2025-05-22T08:17:59Z caller=logging.go:85 method=Health result=2 took=23.999µs +ts=2025-05-22T08:18:02Z caller=logging.go:85 method=Health result=2 took=29.119µs +ts=2025-05-22T08:18:02Z caller=logging.go:85 method=Health result=2 took=55.348µs +ts=2025-05-22T08:18:05Z caller=logging.go:85 method=Health result=2 took=37.449µs +ts=2025-05-22T08:18:05Z caller=logging.go:85 method=Health result=2 took=47.968µs +ts=2025-05-22T08:18:08Z caller=logging.go:85 method=Health result=2 took=41.549µs +ts=2025-05-22T08:18:08Z caller=logging.go:85 method=Health result=2 took=48.749µs +ts=2025-05-22T08:18:11Z caller=logging.go:85 method=Health result=2 took=42.499µs +ts=2025-05-22T08:18:11Z caller=logging.go:85 method=Health result=2 took=47.529µs +ts=2025-05-22T08:18:14Z caller=logging.go:85 method=Health result=2 took=29.359µs +ts=2025-05-22T08:18:14Z caller=logging.go:85 method=Health result=2 took=53.779µs +ts=2025-05-22T08:18:17Z caller=logging.go:85 method=Health result=2 took=44.449µs +ts=2025-05-22T08:18:17Z caller=logging.go:85 method=Health result=2 took=44.179µs +ts=2025-05-22T08:18:20Z caller=logging.go:85 method=Health result=2 took=33.709µs +ts=2025-05-22T08:18:20Z caller=logging.go:85 method=Health result=2 took=15.259µs +ts=2025-05-22T08:18:23Z caller=logging.go:85 method=Health result=2 took=35.319µs +ts=2025-05-22T08:18:23Z caller=logging.go:85 method=Health result=2 took=35.149µs +ts=2025-05-22T08:18:26Z caller=logging.go:85 method=Health result=2 took=44.599µs +ts=2025-05-22T08:18:26Z caller=logging.go:85 method=Health result=2 took=49.109µs +ts=2025-05-22T08:18:29Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T08:18:29Z caller=logging.go:85 method=Health result=2 took=42.779µs +ts=2025-05-22T08:18:32Z caller=logging.go:85 method=Health result=2 took=43.929µs +ts=2025-05-22T08:18:32Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T08:18:35Z caller=logging.go:85 method=Health result=2 took=29.779µs +ts=2025-05-22T08:18:35Z caller=logging.go:85 method=Health result=2 took=16.189µs +ts=2025-05-22T08:18:38Z caller=logging.go:85 method=Health result=2 took=53.489µs +ts=2025-05-22T08:18:38Z caller=logging.go:85 method=Health result=2 took=27.689µs +ts=2025-05-22T08:18:41Z caller=logging.go:85 method=Health result=2 took=31.26µs +ts=2025-05-22T08:18:41Z caller=logging.go:85 method=Health result=2 took=40.069µs +ts=2025-05-22T08:18:44Z caller=logging.go:85 method=Health result=2 took=43.579µs +ts=2025-05-22T08:18:44Z caller=logging.go:85 method=Health result=2 took=44.139µs +ts=2025-05-22T08:18:47Z caller=logging.go:85 method=Health result=2 took=37.309µs +ts=2025-05-22T08:18:47Z caller=logging.go:85 method=Health result=2 took=37.299µs +ts=2025-05-22T08:18:50Z caller=logging.go:85 method=Health result=2 took=46.599µs +ts=2025-05-22T08:18:50Z caller=logging.go:85 method=Health result=2 took=51.339µs +ts=2025-05-22T08:18:53Z caller=logging.go:85 method=Health result=2 took=41.589µs +ts=2025-05-22T08:18:53Z caller=logging.go:85 method=Health result=2 took=47.389µs +ts=2025-05-22T08:18:56Z caller=logging.go:85 method=Health result=2 took=41.689µs +ts=2025-05-22T08:18:56Z caller=logging.go:85 method=Health result=2 took=41.309µs +ts=2025-05-22T08:18:59Z caller=logging.go:85 method=Health result=2 took=62.278µs +ts=2025-05-22T08:18:59Z caller=logging.go:85 method=Health result=2 took=60.308µs +ts=2025-05-22T08:19:02Z caller=logging.go:85 method=Health result=2 took=41.229µs +ts=2025-05-22T08:19:02Z caller=logging.go:85 method=Health result=2 took=47.879µs +ts=2025-05-22T08:19:05Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T08:19:05Z caller=logging.go:85 method=Health result=2 took=42.709µs +ts=2025-05-22T08:19:08Z caller=logging.go:85 method=Health result=2 took=28.809µs +ts=2025-05-22T08:19:08Z caller=logging.go:85 method=Health result=2 took=28.799µs +ts=2025-05-22T08:19:11Z caller=logging.go:85 method=Health result=2 took=41.919µs +ts=2025-05-22T08:19:11Z caller=logging.go:85 method=Health result=2 took=43.129µs +ts=2025-05-22T08:19:14Z caller=logging.go:85 method=Health result=2 took=31.48µs +ts=2025-05-22T08:19:14Z caller=logging.go:85 method=Health result=2 took=41.109µs +ts=2025-05-22T08:19:17Z caller=logging.go:85 method=Health result=2 took=42.849µs +ts=2025-05-22T08:19:17Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T08:19:20Z caller=logging.go:85 method=Health result=2 took=43.119µs +ts=2025-05-22T08:19:20Z caller=logging.go:85 method=Health result=2 took=43.899µs +ts=2025-05-22T08:19:23Z caller=logging.go:85 method=Health result=2 took=39.769µs +ts=2025-05-22T08:19:23Z caller=logging.go:85 method=Health result=2 took=39.419µs +ts=2025-05-22T08:19:26Z caller=logging.go:85 method=Health result=2 took=42.389µs +ts=2025-05-22T08:19:26Z caller=logging.go:85 method=Health result=2 took=50.149µs +ts=2025-05-22T08:19:29Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T08:19:29Z caller=logging.go:85 method=Health result=2 took=47.949µs +ts=2025-05-22T08:19:32Z caller=logging.go:85 method=Health result=2 took=41.059µs +ts=2025-05-22T08:19:32Z caller=logging.go:85 method=Health result=2 took=45.109µs +ts=2025-05-22T08:19:35Z caller=logging.go:85 method=Health result=2 took=13.789µs +ts=2025-05-22T08:19:35Z caller=logging.go:85 method=Health result=2 took=29.059µs +ts=2025-05-22T08:19:38Z caller=logging.go:85 method=Health result=2 took=30.189µs +ts=2025-05-22T08:19:38Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T08:19:41Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T08:19:41Z caller=logging.go:85 method=Health result=2 took=45.419µs +ts=2025-05-22T08:19:44Z caller=logging.go:85 method=Health result=2 took=45.029µs +ts=2025-05-22T08:19:44Z caller=logging.go:85 method=Health result=2 took=38.789µs +ts=2025-05-22T08:19:47Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T08:19:47Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T08:19:50Z caller=logging.go:85 method=Health result=2 took=37.159µs +ts=2025-05-22T08:19:50Z caller=logging.go:85 method=Health result=2 took=47.229µs +ts=2025-05-22T08:19:53Z caller=logging.go:85 method=Health result=2 took=37.729µs +ts=2025-05-22T08:19:53Z caller=logging.go:85 method=Health result=2 took=44.109µs +ts=2025-05-22T08:19:56Z caller=logging.go:85 method=Health result=2 took=31.65µs +ts=2025-05-22T08:19:56Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T08:19:59Z caller=logging.go:85 method=Health result=2 took=32.379µs +ts=2025-05-22T08:19:59Z caller=logging.go:85 method=Health result=2 took=44.438µs +ts=2025-05-22T08:20:02Z caller=logging.go:85 method=Health result=2 took=47.928µs +ts=2025-05-22T08:20:02Z caller=logging.go:85 method=Health result=2 took=26.149µs +ts=2025-05-22T08:20:05Z caller=logging.go:85 method=Health result=2 took=39.709µs +ts=2025-05-22T08:20:05Z caller=logging.go:85 method=Health result=2 took=39.799µs +ts=2025-05-22T08:20:08Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T08:20:08Z caller=logging.go:85 method=Health result=2 took=31.14µs +ts=2025-05-22T08:20:11Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T08:20:11Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T08:20:14Z caller=logging.go:85 method=Health result=2 took=42.659µs +ts=2025-05-22T08:20:14Z caller=logging.go:85 method=Health result=2 took=48.969µs +ts=2025-05-22T08:20:17Z caller=logging.go:85 method=Health result=2 took=74.408µs +ts=2025-05-22T08:20:17Z caller=logging.go:85 method=Health result=2 took=72.539µs +ts=2025-05-22T08:20:20Z caller=logging.go:85 method=Health result=2 took=39.869µs +ts=2025-05-22T08:20:20Z caller=logging.go:85 method=Health result=2 took=39.069µs +ts=2025-05-22T08:20:23Z caller=logging.go:85 method=Health result=2 took=38.409µs +ts=2025-05-22T08:20:23Z caller=logging.go:85 method=Health result=2 took=45.469µs +ts=2025-05-22T08:20:26Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T08:20:26Z caller=logging.go:85 method=Health result=2 took=49.049µs +ts=2025-05-22T08:20:29Z caller=logging.go:85 method=Health result=2 took=44.159µs +ts=2025-05-22T08:20:29Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T08:20:32Z caller=logging.go:85 method=Health result=2 took=41.579µs +ts=2025-05-22T08:20:32Z caller=logging.go:85 method=Health result=2 took=48.428µs +ts=2025-05-22T08:20:35Z caller=logging.go:85 method=Health result=2 took=44.299µs +ts=2025-05-22T08:20:35Z caller=logging.go:85 method=Health result=2 took=47.789µs +ts=2025-05-22T08:20:38Z caller=logging.go:85 method=Health result=2 took=29.239µs +ts=2025-05-22T08:20:38Z caller=logging.go:85 method=Health result=2 took=29.619µs +ts=2025-05-22T08:20:41Z caller=logging.go:85 method=Health result=2 took=36.369µs +ts=2025-05-22T08:20:41Z caller=logging.go:85 method=Health result=2 took=36.389µs +ts=2025-05-22T08:20:44Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T08:20:44Z caller=logging.go:85 method=Health result=2 took=38.109µs +ts=2025-05-22T08:20:47Z caller=logging.go:85 method=Health result=2 took=43.689µs +ts=2025-05-22T08:20:47Z caller=logging.go:85 method=Health result=2 took=43.359µs +ts=2025-05-22T08:20:50Z caller=logging.go:85 method=Health result=2 took=37.589µs +ts=2025-05-22T08:20:50Z caller=logging.go:85 method=Health result=2 took=53.588µs +ts=2025-05-22T08:20:53Z caller=logging.go:85 method=Health result=2 took=37.239µs +ts=2025-05-22T08:20:53Z caller=logging.go:85 method=Health result=2 took=37.469µs +ts=2025-05-22T08:20:56Z caller=logging.go:85 method=Health result=2 took=37.269µs +ts=2025-05-22T08:20:56Z caller=logging.go:85 method=Health result=2 took=37.289µs +ts=2025-05-22T08:20:59Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T08:20:59Z caller=logging.go:85 method=Health result=2 took=39.199µs +ts=2025-05-22T08:21:02Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T08:21:02Z caller=logging.go:85 method=Health result=2 took=49.639µs +ts=2025-05-22T08:21:05Z caller=logging.go:85 method=Health result=2 took=39.449µs +ts=2025-05-22T08:21:05Z caller=logging.go:85 method=Health result=2 took=27.179µs +ts=2025-05-22T08:21:08Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T08:21:08Z caller=logging.go:85 method=Health result=2 took=44.399µs +ts=2025-05-22T08:21:11Z caller=logging.go:85 method=Health result=2 took=53.359µs +ts=2025-05-22T08:21:11Z caller=logging.go:85 method=Health result=2 took=56.978µs +ts=2025-05-22T08:21:14Z caller=logging.go:85 method=Health result=2 took=43.189µs +ts=2025-05-22T08:21:14Z caller=logging.go:85 method=Health result=2 took=49.629µs +ts=2025-05-22T08:21:17Z caller=logging.go:85 method=Health result=2 took=41.339µs +ts=2025-05-22T08:21:17Z caller=logging.go:85 method=Health result=2 took=49.618µs +ts=2025-05-22T08:21:20Z caller=logging.go:85 method=Health result=2 took=31.929µs +ts=2025-05-22T08:21:20Z caller=logging.go:85 method=Health result=2 took=47.598µs +ts=2025-05-22T08:21:23Z caller=logging.go:85 method=Health result=2 took=45.479µs +ts=2025-05-22T08:21:23Z caller=logging.go:85 method=Health result=2 took=50.959µs +ts=2025-05-22T08:21:26Z caller=logging.go:85 method=Health result=2 took=31.899µs +ts=2025-05-22T08:21:26Z caller=logging.go:85 method=Health result=2 took=43.879µs +ts=2025-05-22T08:21:29Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:21:29Z caller=logging.go:85 method=Health result=2 took=41.909µs +ts=2025-05-22T08:21:32Z caller=logging.go:85 method=Health result=2 took=38.469µs +ts=2025-05-22T08:21:32Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T08:21:35Z caller=logging.go:85 method=Health result=2 took=30.579µs +ts=2025-05-22T08:21:35Z caller=logging.go:85 method=Health result=2 took=13.4µs +ts=2025-05-22T08:21:38Z caller=logging.go:85 method=Health result=2 took=41.819µs +ts=2025-05-22T08:21:38Z caller=logging.go:85 method=Health result=2 took=53.539µs +ts=2025-05-22T08:21:41Z caller=logging.go:85 method=Health result=2 took=44.559µs +ts=2025-05-22T08:21:41Z caller=logging.go:85 method=Health result=2 took=50.819µs +ts=2025-05-22T08:21:44Z caller=logging.go:85 method=Health result=2 took=45.149µs +ts=2025-05-22T08:21:44Z caller=logging.go:85 method=Health result=2 took=50.449µs +ts=2025-05-22T08:21:47Z caller=logging.go:85 method=Health result=2 took=45.519µs +ts=2025-05-22T08:21:47Z caller=logging.go:85 method=Health result=2 took=48.579µs +ts=2025-05-22T08:21:50Z caller=logging.go:85 method=Health result=2 took=29.27µs +ts=2025-05-22T08:21:50Z caller=logging.go:85 method=Health result=2 took=52.439µs +ts=2025-05-22T08:21:53Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T08:21:53Z caller=logging.go:85 method=Health result=2 took=44.269µs +ts=2025-05-22T08:21:56Z caller=logging.go:85 method=Health result=2 took=38.879µs +ts=2025-05-22T08:21:56Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T08:21:59Z caller=logging.go:85 method=Health result=2 took=45.099µs +ts=2025-05-22T08:21:59Z caller=logging.go:85 method=Health result=2 took=52.389µs +ts=2025-05-22T08:22:02Z caller=logging.go:85 method=Health result=2 took=37.969µs +ts=2025-05-22T08:22:02Z caller=logging.go:85 method=Health result=2 took=49.138µs +ts=2025-05-22T08:22:05Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T08:22:05Z caller=logging.go:85 method=Health result=2 took=49.979µs +ts=2025-05-22T08:22:08Z caller=logging.go:85 method=Health result=2 took=36.209µs +ts=2025-05-22T08:22:08Z caller=logging.go:85 method=Health result=2 took=49.539µs +ts=2025-05-22T08:22:11Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T08:22:11Z caller=logging.go:85 method=Health result=2 took=48.959µs +ts=2025-05-22T08:22:14Z caller=logging.go:85 method=Health result=2 took=43.089µs +ts=2025-05-22T08:22:14Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T08:22:17Z caller=logging.go:85 method=Health result=2 took=76.628µs +ts=2025-05-22T08:22:17Z caller=logging.go:85 method=Health result=2 took=60.698µs +ts=2025-05-22T08:22:20Z caller=logging.go:85 method=Health result=2 took=43.159µs +ts=2025-05-22T08:22:20Z caller=logging.go:85 method=Health result=2 took=43.869µs +ts=2025-05-22T08:22:23Z caller=logging.go:85 method=Health result=2 took=35.649µs +ts=2025-05-22T08:22:23Z caller=logging.go:85 method=Health result=2 took=36.159µs +ts=2025-05-22T08:22:26Z caller=logging.go:85 method=Health result=2 took=45.429µs +ts=2025-05-22T08:22:26Z caller=logging.go:85 method=Health result=2 took=68.158µs +ts=2025-05-22T08:22:29Z caller=logging.go:85 method=Health result=2 took=40.109µs +ts=2025-05-22T08:22:29Z caller=logging.go:85 method=Health result=2 took=40.159µs +ts=2025-05-22T08:22:32Z caller=logging.go:85 method=Health result=2 took=40.089µs +ts=2025-05-22T08:22:32Z caller=logging.go:85 method=Health result=2 took=17.6µs +ts=2025-05-22T08:22:35Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T08:22:35Z caller=logging.go:85 method=Health result=2 took=42.339µs +ts=2025-05-22T08:22:38Z caller=logging.go:85 method=Health result=2 took=41.509µs +ts=2025-05-22T08:22:38Z caller=logging.go:85 method=Health result=2 took=47.799µs +ts=2025-05-22T08:22:41Z caller=logging.go:85 method=Health result=2 took=45.889µs +ts=2025-05-22T08:22:41Z caller=logging.go:85 method=Health result=2 took=45.879µs +ts=2025-05-22T08:22:44Z caller=logging.go:85 method=Health result=2 took=42.869µs +ts=2025-05-22T08:22:44Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T08:22:47Z caller=logging.go:85 method=Health result=2 took=46.419µs +ts=2025-05-22T08:22:47Z caller=logging.go:85 method=Health result=2 took=46.419µs +ts=2025-05-22T08:22:50Z caller=logging.go:85 method=Health result=2 took=38.709µs +ts=2025-05-22T08:22:50Z caller=logging.go:85 method=Health result=2 took=47.009µs +ts=2025-05-22T08:22:53Z caller=logging.go:85 method=Health result=2 took=46.609µs +ts=2025-05-22T08:22:53Z caller=logging.go:85 method=Health result=2 took=51.019µs +ts=2025-05-22T08:22:56Z caller=logging.go:85 method=Health result=2 took=43.729µs +ts=2025-05-22T08:22:56Z caller=logging.go:85 method=Health result=2 took=50.818µs +ts=2025-05-22T08:22:59Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T08:22:59Z caller=logging.go:85 method=Health result=2 took=44.249µs +ts=2025-05-22T08:23:02Z caller=logging.go:85 method=Health result=2 took=37.979µs +ts=2025-05-22T08:23:02Z caller=logging.go:85 method=Health result=2 took=47.779µs +ts=2025-05-22T08:23:05Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T08:23:05Z caller=logging.go:85 method=Health result=2 took=27.51µs +ts=2025-05-22T08:23:08Z caller=logging.go:85 method=Health result=2 took=31.969µs +ts=2025-05-22T08:23:08Z caller=logging.go:85 method=Health result=2 took=39.889µs +ts=2025-05-22T08:23:11Z caller=logging.go:85 method=Health result=2 took=36.259µs +ts=2025-05-22T08:23:11Z caller=logging.go:85 method=Health result=2 took=34.22µs +ts=2025-05-22T08:23:14Z caller=logging.go:85 method=Health result=2 took=42.449µs +ts=2025-05-22T08:23:14Z caller=logging.go:85 method=Health result=2 took=49.959µs +ts=2025-05-22T08:23:17Z caller=logging.go:85 method=Health result=2 took=30.329µs +ts=2025-05-22T08:23:17Z caller=logging.go:85 method=Health result=2 took=47.028µs +ts=2025-05-22T08:23:20Z caller=logging.go:85 method=Health result=2 took=38.309µs +ts=2025-05-22T08:23:20Z caller=logging.go:85 method=Health result=2 took=45.339µs +ts=2025-05-22T08:23:23Z caller=logging.go:85 method=Health result=2 took=29.819µs +ts=2025-05-22T08:23:23Z caller=logging.go:85 method=Health result=2 took=29.759µs +ts=2025-05-22T08:23:26Z caller=logging.go:85 method=Health result=2 took=28.749µs +ts=2025-05-22T08:23:26Z caller=logging.go:85 method=Health result=2 took=28.779µs +ts=2025-05-22T08:23:29Z caller=logging.go:85 method=Health result=2 took=33.379µs +ts=2025-05-22T08:23:29Z caller=logging.go:85 method=Health result=2 took=45.219µs +ts=2025-05-22T08:23:32Z caller=logging.go:85 method=Health result=2 took=61.349µs +ts=2025-05-22T08:23:32Z caller=logging.go:85 method=Health result=2 took=61.399µs +ts=2025-05-22T08:23:35Z caller=logging.go:85 method=Health result=2 took=35.109µs +ts=2025-05-22T08:23:35Z caller=logging.go:85 method=Health result=2 took=48.498µs +ts=2025-05-22T08:23:38Z caller=logging.go:85 method=Health result=2 took=44.549µs +ts=2025-05-22T08:23:38Z caller=logging.go:85 method=Health result=2 took=73.528µs +ts=2025-05-22T08:23:41Z caller=logging.go:85 method=Health result=2 took=45.479µs +ts=2025-05-22T08:23:41Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T08:23:44Z caller=logging.go:85 method=Health result=2 took=47.759µs +ts=2025-05-22T08:23:44Z caller=logging.go:85 method=Health result=2 took=48.709µs +ts=2025-05-22T08:23:47Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T08:23:47Z caller=logging.go:85 method=Health result=2 took=48.269µs +ts=2025-05-22T08:23:50Z caller=logging.go:85 method=Health result=2 took=41.549µs +ts=2025-05-22T08:23:50Z caller=logging.go:85 method=Health result=2 took=48.748µs +ts=2025-05-22T08:23:53Z caller=logging.go:85 method=Health result=2 took=31.899µs +ts=2025-05-22T08:23:53Z caller=logging.go:85 method=Health result=2 took=47.879µs +ts=2025-05-22T08:23:56Z caller=logging.go:85 method=Health result=2 took=46.859µs +ts=2025-05-22T08:23:56Z caller=logging.go:85 method=Health result=2 took=49.059µs +ts=2025-05-22T08:23:59Z caller=logging.go:85 method=Health result=2 took=29.259µs +ts=2025-05-22T08:23:59Z caller=logging.go:85 method=Health result=2 took=45.579µs +ts=2025-05-22T08:24:02Z caller=logging.go:85 method=Health result=2 took=50.139µs +ts=2025-05-22T08:24:02Z caller=logging.go:85 method=Health result=2 took=25.39µs +ts=2025-05-22T08:24:05Z caller=logging.go:85 method=Health result=2 took=38.979µs +ts=2025-05-22T08:24:05Z caller=logging.go:85 method=Health result=2 took=39.089µs +ts=2025-05-22T08:24:08Z caller=logging.go:85 method=Health result=2 took=40.689µs +ts=2025-05-22T08:24:08Z caller=logging.go:85 method=Health result=2 took=40.699µs +ts=2025-05-22T08:24:11Z caller=logging.go:85 method=Health result=2 took=39.159µs +ts=2025-05-22T08:24:11Z caller=logging.go:85 method=Health result=2 took=39.339µs +ts=2025-05-22T08:24:14Z caller=logging.go:85 method=Health result=2 took=46.879µs +ts=2025-05-22T08:24:14Z caller=logging.go:85 method=Health result=2 took=61.168µs +ts=2025-05-22T08:24:17Z caller=logging.go:85 method=Health result=2 took=90.467µs +ts=2025-05-22T08:24:17Z caller=logging.go:85 method=Health result=2 took=50.259µs +ts=2025-05-22T08:24:20Z caller=logging.go:85 method=Health result=2 took=45.419µs +ts=2025-05-22T08:24:20Z caller=logging.go:85 method=Health result=2 took=64.029µs +ts=2025-05-22T08:24:23Z caller=logging.go:85 method=Health result=2 took=43.729µs +ts=2025-05-22T08:24:23Z caller=logging.go:85 method=Health result=2 took=43.169µs +ts=2025-05-22T08:24:26Z caller=logging.go:85 method=Health result=2 took=46.079µs +ts=2025-05-22T08:24:26Z caller=logging.go:85 method=Health result=2 took=46.329µs +ts=2025-05-22T08:24:29Z caller=logging.go:85 method=Health result=2 took=31.919µs +ts=2025-05-22T08:24:29Z caller=logging.go:85 method=Health result=2 took=46.089µs +ts=2025-05-22T08:24:32Z caller=logging.go:85 method=Health result=2 took=43.319µs +ts=2025-05-22T08:24:32Z caller=logging.go:85 method=Health result=2 took=44.119µs +ts=2025-05-22T08:24:35Z caller=logging.go:85 method=Health result=2 took=47.069µs +ts=2025-05-22T08:24:35Z caller=logging.go:85 method=Health result=2 took=48.319µs +ts=2025-05-22T08:24:38Z caller=logging.go:85 method=Health result=2 took=42.909µs +ts=2025-05-22T08:24:38Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T08:24:41Z caller=logging.go:85 method=Health result=2 took=41.239µs +ts=2025-05-22T08:24:41Z caller=logging.go:85 method=Health result=2 took=29.93µs +ts=2025-05-22T08:24:44Z caller=logging.go:85 method=Health result=2 took=38.869µs +ts=2025-05-22T08:24:44Z caller=logging.go:85 method=Health result=2 took=38.799µs +ts=2025-05-22T08:24:47Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T08:24:47Z caller=logging.go:85 method=Health result=2 took=30.709µs +ts=2025-05-22T08:24:50Z caller=logging.go:85 method=Health result=2 took=37.299µs +ts=2025-05-22T08:24:50Z caller=logging.go:85 method=Health result=2 took=36.919µs +ts=2025-05-22T08:24:53Z caller=logging.go:85 method=Health result=2 took=28.729µs +ts=2025-05-22T08:24:53Z caller=logging.go:85 method=Health result=2 took=14.52µs +ts=2025-05-22T08:24:56Z caller=logging.go:85 method=Health result=2 took=37.159µs +ts=2025-05-22T08:24:56Z caller=logging.go:85 method=Health result=2 took=16.219µs +ts=2025-05-22T08:24:59Z caller=logging.go:85 method=Health result=2 took=40.789µs +ts=2025-05-22T08:24:59Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T08:25:02Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T08:25:02Z caller=logging.go:85 method=Health result=2 took=76.928µs +ts=2025-05-22T08:25:05Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T08:25:05Z caller=logging.go:85 method=Health result=2 took=38.999µs +ts=2025-05-22T08:25:08Z caller=logging.go:85 method=Health result=2 took=41.889µs +ts=2025-05-22T08:25:08Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T08:25:11Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T08:25:11Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T08:25:14Z caller=logging.go:85 method=Health result=2 took=44.419µs +ts=2025-05-22T08:25:14Z caller=logging.go:85 method=Health result=2 took=52.798µs +ts=2025-05-22T08:25:17Z caller=logging.go:85 method=Health result=2 took=37.76µs +ts=2025-05-22T08:25:17Z caller=logging.go:85 method=Health result=2 took=36.92µs +ts=2025-05-22T08:25:20Z caller=logging.go:85 method=Health result=2 took=35.19µs +ts=2025-05-22T08:25:20Z caller=logging.go:85 method=Health result=2 took=34.8µs +ts=2025-05-22T08:25:23Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T08:25:23Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T08:25:26Z caller=logging.go:85 method=Health result=2 took=39.559µs +ts=2025-05-22T08:25:26Z caller=logging.go:85 method=Health result=2 took=39.589µs +ts=2025-05-22T08:25:29Z caller=logging.go:85 method=Health result=2 took=57.489µs +ts=2025-05-22T08:25:29Z caller=logging.go:85 method=Health result=2 took=46.109µs +ts=2025-05-22T08:25:32Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T08:25:32Z caller=logging.go:85 method=Health result=2 took=47.569µs +ts=2025-05-22T08:25:35Z caller=logging.go:85 method=Health result=2 took=43.099µs +ts=2025-05-22T08:25:35Z caller=logging.go:85 method=Health result=2 took=40.959µs +ts=2025-05-22T08:25:38Z caller=logging.go:85 method=Health result=2 took=43.769µs +ts=2025-05-22T08:25:38Z caller=logging.go:85 method=Health result=2 took=37.549µs +ts=2025-05-22T08:25:41Z caller=logging.go:85 method=Health result=2 took=41.329µs +ts=2025-05-22T08:25:41Z caller=logging.go:85 method=Health result=2 took=48.309µs +ts=2025-05-22T08:25:44Z caller=logging.go:85 method=Health result=2 took=63.889µs +ts=2025-05-22T08:25:44Z caller=logging.go:85 method=Health result=2 took=39.419µs +ts=2025-05-22T08:25:47Z caller=logging.go:85 method=Health result=2 took=28.51µs +ts=2025-05-22T08:25:47Z caller=logging.go:85 method=Health result=2 took=28.53µs +ts=2025-05-22T08:25:50Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T08:25:50Z caller=logging.go:85 method=Health result=2 took=49.349µs +ts=2025-05-22T08:25:53Z caller=logging.go:85 method=Health result=2 took=45.099µs +ts=2025-05-22T08:25:53Z caller=logging.go:85 method=Health result=2 took=47.879µs +ts=2025-05-22T08:25:56Z caller=logging.go:85 method=Health result=2 took=27.809µs +ts=2025-05-22T08:25:56Z caller=logging.go:85 method=Health result=2 took=27.789µs +ts=2025-05-22T08:25:59Z caller=logging.go:85 method=Health result=2 took=45.139µs +ts=2025-05-22T08:25:59Z caller=logging.go:85 method=Health result=2 took=47.479µs +ts=2025-05-22T08:26:02Z caller=logging.go:85 method=Health result=2 took=30.319µs +ts=2025-05-22T08:26:02Z caller=logging.go:85 method=Health result=2 took=14.139µs +ts=2025-05-22T08:26:05Z caller=logging.go:85 method=Health result=2 took=44.379µs +ts=2025-05-22T08:26:05Z caller=logging.go:85 method=Health result=2 took=42.109µs +ts=2025-05-22T08:26:08Z caller=logging.go:85 method=Health result=2 took=45.519µs +ts=2025-05-22T08:26:08Z caller=logging.go:85 method=Health result=2 took=50.468µs +ts=2025-05-22T08:26:11Z caller=logging.go:85 method=Health result=2 took=40.779µs +ts=2025-05-22T08:26:11Z caller=logging.go:85 method=Health result=2 took=49.979µs +ts=2025-05-22T08:26:14Z caller=logging.go:85 method=Health result=2 took=40.069µs +ts=2025-05-22T08:26:14Z caller=logging.go:85 method=Health result=2 took=27.059µs +ts=2025-05-22T08:26:17Z caller=logging.go:85 method=Health result=2 took=48.709µs +ts=2025-05-22T08:26:17Z caller=logging.go:85 method=Health result=2 took=40.219µs +ts=2025-05-22T08:26:20Z caller=logging.go:85 method=Health result=2 took=32.319µs +ts=2025-05-22T08:26:20Z caller=logging.go:85 method=Health result=2 took=47.809µs +ts=2025-05-22T08:26:23Z caller=logging.go:85 method=Health result=2 took=29.929µs +ts=2025-05-22T08:26:23Z caller=logging.go:85 method=Health result=2 took=15.81µs +ts=2025-05-22T08:26:26Z caller=logging.go:85 method=Health result=2 took=33.629µs +ts=2025-05-22T08:26:26Z caller=logging.go:85 method=Health result=2 took=39.529µs +ts=2025-05-22T08:26:29Z caller=logging.go:85 method=Health result=2 took=29.1µs +ts=2025-05-22T08:26:29Z caller=logging.go:85 method=Health result=2 took=28.98µs +ts=2025-05-22T08:26:32Z caller=logging.go:85 method=Health result=2 took=38.589µs +ts=2025-05-22T08:26:32Z caller=logging.go:85 method=Health result=2 took=22.219µs +ts=2025-05-22T08:26:35Z caller=logging.go:85 method=Health result=2 took=46.959µs +ts=2025-05-22T08:26:35Z caller=logging.go:85 method=Health result=2 took=48.699µs +ts=2025-05-22T08:26:38Z caller=logging.go:85 method=Health result=2 took=41.699µs +ts=2025-05-22T08:26:38Z caller=logging.go:85 method=Health result=2 took=50.259µs +ts=2025-05-22T08:26:41Z caller=logging.go:85 method=Health result=2 took=45.899µs +ts=2025-05-22T08:26:41Z caller=logging.go:85 method=Health result=2 took=53.499µs +ts=2025-05-22T08:26:44Z caller=logging.go:85 method=Health result=2 took=38.519µs +ts=2025-05-22T08:26:44Z caller=logging.go:85 method=Health result=2 took=62.448µs +ts=2025-05-22T08:26:47Z caller=logging.go:85 method=Health result=2 took=30.01µs +ts=2025-05-22T08:26:47Z caller=logging.go:85 method=Health result=2 took=46.398µs +ts=2025-05-22T08:26:50Z caller=logging.go:85 method=Health result=2 took=31.529µs +ts=2025-05-22T08:26:50Z caller=logging.go:85 method=Health result=2 took=44.129µs +ts=2025-05-22T08:26:53Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T08:26:53Z caller=logging.go:85 method=Health result=2 took=48.559µs +ts=2025-05-22T08:26:56Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T08:26:56Z caller=logging.go:85 method=Health result=2 took=39.109µs +ts=2025-05-22T08:26:59Z caller=logging.go:85 method=Health result=2 took=47.868µs +ts=2025-05-22T08:26:59Z caller=logging.go:85 method=Health result=2 took=50.949µs +ts=2025-05-22T08:27:02Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T08:27:02Z caller=logging.go:85 method=Health result=2 took=39.969µs +ts=2025-05-22T08:27:05Z caller=logging.go:85 method=Health result=2 took=44.729µs +ts=2025-05-22T08:27:05Z caller=logging.go:85 method=Health result=2 took=52.169µs +ts=2025-05-22T08:27:08Z caller=logging.go:85 method=Health result=2 took=35.79µs +ts=2025-05-22T08:27:08Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T08:27:11Z caller=logging.go:85 method=Health result=2 took=36.56µs +ts=2025-05-22T08:27:11Z caller=logging.go:85 method=Health result=2 took=44.469µs +ts=2025-05-22T08:27:14Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T08:27:14Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T08:27:17Z caller=logging.go:85 method=Health result=2 took=39.81µs +ts=2025-05-22T08:27:17Z caller=logging.go:85 method=Health result=2 took=39.68µs +ts=2025-05-22T08:27:20Z caller=logging.go:85 method=Health result=2 took=40.499µs +ts=2025-05-22T08:27:20Z caller=logging.go:85 method=Health result=2 took=40.44µs +ts=2025-05-22T08:27:23Z caller=logging.go:85 method=Health result=2 took=31.309µs +ts=2025-05-22T08:27:23Z caller=logging.go:85 method=Health result=2 took=47.839µs +ts=2025-05-22T08:27:26Z caller=logging.go:85 method=Health result=2 took=38.089µs +ts=2025-05-22T08:27:26Z caller=logging.go:85 method=Health result=2 took=48.549µs +ts=2025-05-22T08:27:29Z caller=logging.go:85 method=Health result=2 took=40.629µs +ts=2025-05-22T08:27:29Z caller=logging.go:85 method=Health result=2 took=27.719µs +ts=2025-05-22T08:27:32Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T08:27:32Z caller=logging.go:85 method=Health result=2 took=46.669µs +ts=2025-05-22T08:27:35Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T08:27:35Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T08:27:38Z caller=logging.go:85 method=Health result=2 took=44.669µs +ts=2025-05-22T08:27:38Z caller=logging.go:85 method=Health result=2 took=48.959µs +ts=2025-05-22T08:27:41Z caller=logging.go:85 method=Health result=2 took=41.479µs +ts=2025-05-22T08:27:41Z caller=logging.go:85 method=Health result=2 took=40.709µs +ts=2025-05-22T08:27:44Z caller=logging.go:85 method=Health result=2 took=33.339µs +ts=2025-05-22T08:27:44Z caller=logging.go:85 method=Health result=2 took=47.359µs +ts=2025-05-22T08:27:47Z caller=logging.go:85 method=Health result=2 took=46.728µs +ts=2025-05-22T08:27:47Z caller=logging.go:85 method=Health result=2 took=48.479µs +ts=2025-05-22T08:27:50Z caller=logging.go:85 method=Health result=2 took=32.619µs +ts=2025-05-22T08:27:50Z caller=logging.go:85 method=Health result=2 took=40.429µs +ts=2025-05-22T08:27:53Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T08:27:53Z caller=logging.go:85 method=Health result=2 took=72.188µs +ts=2025-05-22T08:27:56Z caller=logging.go:85 method=Health result=2 took=42.849µs +ts=2025-05-22T08:27:56Z caller=logging.go:85 method=Health result=2 took=50.439µs +ts=2025-05-22T08:27:59Z caller=logging.go:85 method=Health result=2 took=33.229µs +ts=2025-05-22T08:27:59Z caller=logging.go:85 method=Health result=2 took=29.389µs +ts=2025-05-22T08:28:02Z caller=logging.go:85 method=Health result=2 took=39.309µs +ts=2025-05-22T08:28:02Z caller=logging.go:85 method=Health result=2 took=39.919µs +ts=2025-05-22T08:28:05Z caller=logging.go:85 method=Health result=2 took=32.53µs +ts=2025-05-22T08:28:05Z caller=logging.go:85 method=Health result=2 took=39.669µs +ts=2025-05-22T08:28:08Z caller=logging.go:85 method=Health result=2 took=32.37µs +ts=2025-05-22T08:28:08Z caller=logging.go:85 method=Health result=2 took=30.98µs +ts=2025-05-22T08:28:11Z caller=logging.go:85 method=Health result=2 took=45.559µs +ts=2025-05-22T08:28:11Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T08:28:14Z caller=logging.go:85 method=Health result=2 took=46.348µs +ts=2025-05-22T08:28:14Z caller=logging.go:85 method=Health result=2 took=50.408µs +ts=2025-05-22T08:28:17Z caller=logging.go:85 method=Health result=2 took=58.759µs +ts=2025-05-22T08:28:17Z caller=logging.go:85 method=Health result=2 took=55.729µs +ts=2025-05-22T08:28:20Z caller=logging.go:85 method=Health result=2 took=45.939µs +ts=2025-05-22T08:28:20Z caller=logging.go:85 method=Health result=2 took=47.599µs +ts=2025-05-22T08:28:23Z caller=logging.go:85 method=Health result=2 took=45.209µs +ts=2025-05-22T08:28:23Z caller=logging.go:85 method=Health result=2 took=31.849µs +ts=2025-05-22T08:28:26Z caller=logging.go:85 method=Health result=2 took=44.069µs +ts=2025-05-22T08:28:26Z caller=logging.go:85 method=Health result=2 took=48.329µs +ts=2025-05-22T08:28:29Z caller=logging.go:85 method=Health result=2 took=41.209µs +ts=2025-05-22T08:28:29Z caller=logging.go:85 method=Health result=2 took=46.289µs +ts=2025-05-22T08:28:32Z caller=logging.go:85 method=Health result=2 took=30.79µs +ts=2025-05-22T08:28:32Z caller=logging.go:85 method=Health result=2 took=17.099µs +ts=2025-05-22T08:28:35Z caller=logging.go:85 method=Health result=2 took=42.059µs +ts=2025-05-22T08:28:35Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T08:28:38Z caller=logging.go:85 method=Health result=2 took=32.939µs +ts=2025-05-22T08:28:38Z caller=logging.go:85 method=Health result=2 took=36.369µs +ts=2025-05-22T08:28:41Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T08:28:41Z caller=logging.go:85 method=Health result=2 took=42.089µs +ts=2025-05-22T08:28:44Z caller=logging.go:85 method=Health result=2 took=31.369µs +ts=2025-05-22T08:28:44Z caller=logging.go:85 method=Health result=2 took=54.208µs +ts=2025-05-22T08:28:47Z caller=logging.go:85 method=Health result=2 took=28.679µs +ts=2025-05-22T08:28:47Z caller=logging.go:85 method=Health result=2 took=10.22µs +ts=2025-05-22T08:28:50Z caller=logging.go:85 method=Health result=2 took=57.549µs +ts=2025-05-22T08:28:50Z caller=logging.go:85 method=Health result=2 took=46.539µs +ts=2025-05-22T08:28:53Z caller=logging.go:85 method=Health result=2 took=44.829µs +ts=2025-05-22T08:28:53Z caller=logging.go:85 method=Health result=2 took=53.499µs +ts=2025-05-22T08:28:56Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T08:28:56Z caller=logging.go:85 method=Health result=2 took=42.929µs +ts=2025-05-22T08:28:59Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T08:28:59Z caller=logging.go:85 method=Health result=2 took=42.879µs +ts=2025-05-22T08:29:02Z caller=logging.go:85 method=Health result=2 took=30.23µs +ts=2025-05-22T08:29:02Z caller=logging.go:85 method=Health result=2 took=15.099µs +ts=2025-05-22T08:29:05Z caller=logging.go:85 method=Health result=2 took=40.969µs +ts=2025-05-22T08:29:05Z caller=logging.go:85 method=Health result=2 took=47.339µs +ts=2025-05-22T08:29:08Z caller=logging.go:85 method=Health result=2 took=31.77µs +ts=2025-05-22T08:29:08Z caller=logging.go:85 method=Health result=2 took=48.269µs +ts=2025-05-22T08:29:11Z caller=logging.go:85 method=Health result=2 took=47.169µs +ts=2025-05-22T08:29:11Z caller=logging.go:85 method=Health result=2 took=49.109µs +ts=2025-05-22T08:29:14Z caller=logging.go:85 method=Health result=2 took=47.879µs +ts=2025-05-22T08:29:14Z caller=logging.go:85 method=Health result=2 took=49.039µs +ts=2025-05-22T08:29:17Z caller=logging.go:85 method=Health result=2 took=30.4µs +ts=2025-05-22T08:29:17Z caller=logging.go:85 method=Health result=2 took=65.469µs +ts=2025-05-22T08:29:20Z caller=logging.go:85 method=Health result=2 took=37.849µs +ts=2025-05-22T08:29:20Z caller=logging.go:85 method=Health result=2 took=48.049µs +ts=2025-05-22T08:29:23Z caller=logging.go:85 method=Health result=2 took=39.199µs +ts=2025-05-22T08:29:23Z caller=logging.go:85 method=Health result=2 took=40.149µs +ts=2025-05-22T08:29:26Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T08:29:26Z caller=logging.go:85 method=Health result=2 took=48.949µs +ts=2025-05-22T08:29:29Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T08:29:29Z caller=logging.go:85 method=Health result=2 took=47.039µs +ts=2025-05-22T08:29:32Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T08:29:32Z caller=logging.go:85 method=Health result=2 took=46.899µs +ts=2025-05-22T08:29:35Z caller=logging.go:85 method=Health result=2 took=31.94µs +ts=2025-05-22T08:29:35Z caller=logging.go:85 method=Health result=2 took=30.56µs +ts=2025-05-22T08:29:38Z caller=logging.go:85 method=Health result=2 took=33.879µs +ts=2025-05-22T08:29:38Z caller=logging.go:85 method=Health result=2 took=34.029µs +ts=2025-05-22T08:29:41Z caller=logging.go:85 method=Health result=2 took=45.889µs +ts=2025-05-22T08:29:41Z caller=logging.go:85 method=Health result=2 took=50.459µs +ts=2025-05-22T08:29:44Z caller=logging.go:85 method=Health result=2 took=36.049µs +ts=2025-05-22T08:29:44Z caller=logging.go:85 method=Health result=2 took=36.469µs +ts=2025-05-22T08:29:47Z caller=logging.go:85 method=Health result=2 took=41.349µs +ts=2025-05-22T08:29:47Z caller=logging.go:85 method=Health result=2 took=48.069µs +ts=2025-05-22T08:29:50Z caller=logging.go:85 method=Health result=2 took=41.649µs +ts=2025-05-22T08:29:50Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T08:29:53Z caller=logging.go:85 method=Health result=2 took=36.979µs +ts=2025-05-22T08:29:53Z caller=logging.go:85 method=Health result=2 took=37.559µs +ts=2025-05-22T08:29:56Z caller=logging.go:85 method=Health result=2 took=46.359µs +ts=2025-05-22T08:29:56Z caller=logging.go:85 method=Health result=2 took=48.679µs +ts=2025-05-22T08:29:59Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T08:29:59Z caller=logging.go:85 method=Health result=2 took=32.84µs +ts=2025-05-22T08:30:02Z caller=logging.go:85 method=Health result=2 took=43.469µs +ts=2025-05-22T08:30:02Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T08:30:05Z caller=logging.go:85 method=Health result=2 took=45.959µs +ts=2025-05-22T08:30:05Z caller=logging.go:85 method=Health result=2 took=59.958µs +ts=2025-05-22T08:30:08Z caller=logging.go:85 method=Health result=2 took=67.549µs +ts=2025-05-22T08:30:08Z caller=logging.go:85 method=Health result=2 took=90.408µs +ts=2025-05-22T08:30:11Z caller=logging.go:85 method=Health result=2 took=39.969µs +ts=2025-05-22T08:30:11Z caller=logging.go:85 method=Health result=2 took=24.21µs +ts=2025-05-22T08:30:14Z caller=logging.go:85 method=Health result=2 took=45.529µs +ts=2025-05-22T08:30:14Z caller=logging.go:85 method=Health result=2 took=50.299µs +ts=2025-05-22T08:30:17Z caller=logging.go:85 method=Health result=2 took=45.699µs +ts=2025-05-22T08:30:17Z caller=logging.go:85 method=Health result=2 took=54.599µs +ts=2025-05-22T08:30:20Z caller=logging.go:85 method=Health result=2 took=37.669µs +ts=2025-05-22T08:30:20Z caller=logging.go:85 method=Health result=2 took=37.559µs +ts=2025-05-22T08:30:23Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T08:30:23Z caller=logging.go:85 method=Health result=2 took=50.778µs +ts=2025-05-22T08:30:26Z caller=logging.go:85 method=Health result=2 took=29.91µs +ts=2025-05-22T08:30:26Z caller=logging.go:85 method=Health result=2 took=30.02µs +ts=2025-05-22T08:30:29Z caller=logging.go:85 method=Health result=2 took=31.729µs +ts=2025-05-22T08:30:29Z caller=logging.go:85 method=Health result=2 took=16.869µs +ts=2025-05-22T08:30:32Z caller=logging.go:85 method=Health result=2 took=41.659µs +ts=2025-05-22T08:30:32Z caller=logging.go:85 method=Health result=2 took=47.609µs +ts=2025-05-22T08:30:35Z caller=logging.go:85 method=Health result=2 took=39.299µs +ts=2025-05-22T08:30:35Z caller=logging.go:85 method=Health result=2 took=39.319µs +ts=2025-05-22T08:30:38Z caller=logging.go:85 method=Health result=2 took=32.099µs +ts=2025-05-22T08:30:38Z caller=logging.go:85 method=Health result=2 took=37.529µs +ts=2025-05-22T08:30:41Z caller=logging.go:85 method=Health result=2 took=32.039µs +ts=2025-05-22T08:30:41Z caller=logging.go:85 method=Health result=2 took=44.789µs +ts=2025-05-22T08:30:44Z caller=logging.go:85 method=Health result=2 took=37.549µs +ts=2025-05-22T08:30:44Z caller=logging.go:85 method=Health result=2 took=54.019µs +ts=2025-05-22T08:30:47Z caller=logging.go:85 method=Health result=2 took=39.139µs +ts=2025-05-22T08:30:47Z caller=logging.go:85 method=Health result=2 took=39.329µs +ts=2025-05-22T08:30:50Z caller=logging.go:85 method=Health result=2 took=30.62µs +ts=2025-05-22T08:30:50Z caller=logging.go:85 method=Health result=2 took=32.569µs +ts=2025-05-22T08:30:53Z caller=logging.go:85 method=Health result=2 took=39.479µs +ts=2025-05-22T08:30:53Z caller=logging.go:85 method=Health result=2 took=38.559µs +ts=2025-05-22T08:30:56Z caller=logging.go:85 method=Health result=2 took=33.139µs +ts=2025-05-22T08:30:56Z caller=logging.go:85 method=Health result=2 took=46.879µs +ts=2025-05-22T08:30:59Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T08:30:59Z caller=logging.go:85 method=Health result=2 took=46.889µs +ts=2025-05-22T08:31:02Z caller=logging.go:85 method=Health result=2 took=42.009µs +ts=2025-05-22T08:31:02Z caller=logging.go:85 method=Health result=2 took=45.709µs +ts=2025-05-22T08:31:05Z caller=logging.go:85 method=Health result=2 took=17.67µs +ts=2025-05-22T08:31:05Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T08:31:08Z caller=logging.go:85 method=Health result=2 took=37.449µs +ts=2025-05-22T08:31:08Z caller=logging.go:85 method=Health result=2 took=37.369µs +ts=2025-05-22T08:31:11Z caller=logging.go:85 method=Health result=2 took=40.349µs +ts=2025-05-22T08:31:11Z caller=logging.go:85 method=Health result=2 took=64.389µs +ts=2025-05-22T08:31:14Z caller=logging.go:85 method=Health result=2 took=43.599µs +ts=2025-05-22T08:31:14Z caller=logging.go:85 method=Health result=2 took=49.849µs +ts=2025-05-22T08:31:17Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T08:31:17Z caller=logging.go:85 method=Health result=2 took=48.089µs +ts=2025-05-22T08:31:20Z caller=logging.go:85 method=Health result=2 took=42.299µs +ts=2025-05-22T08:31:20Z caller=logging.go:85 method=Health result=2 took=42.619µs +ts=2025-05-22T08:31:23Z caller=logging.go:85 method=Health result=2 took=43.419µs +ts=2025-05-22T08:31:23Z caller=logging.go:85 method=Health result=2 took=58.569µs +ts=2025-05-22T08:31:26Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:31:26Z caller=logging.go:85 method=Health result=2 took=48.989µs +ts=2025-05-22T08:31:29Z caller=logging.go:85 method=Health result=2 took=39.279µs +ts=2025-05-22T08:31:29Z caller=logging.go:85 method=Health result=2 took=40.019µs +ts=2025-05-22T08:31:32Z caller=logging.go:85 method=Health result=2 took=42.629µs +ts=2025-05-22T08:31:32Z caller=logging.go:85 method=Health result=2 took=60.038µs +ts=2025-05-22T08:31:35Z caller=logging.go:85 method=Health result=2 took=33.079µs +ts=2025-05-22T08:31:35Z caller=logging.go:85 method=Health result=2 took=45.039µs +ts=2025-05-22T08:31:38Z caller=logging.go:85 method=Health result=2 took=41.939µs +ts=2025-05-22T08:31:38Z caller=logging.go:85 method=Health result=2 took=41.499µs +ts=2025-05-22T08:31:41Z caller=logging.go:85 method=Health result=2 took=40.709µs +ts=2025-05-22T08:31:41Z caller=logging.go:85 method=Health result=2 took=40.409µs +ts=2025-05-22T08:31:44Z caller=logging.go:85 method=Health result=2 took=57.888µs +ts=2025-05-22T08:31:44Z caller=logging.go:85 method=Health result=2 took=30.319µs +ts=2025-05-22T08:31:47Z caller=logging.go:85 method=Health result=2 took=42.059µs +ts=2025-05-22T08:31:47Z caller=logging.go:85 method=Health result=2 took=47.399µs +ts=2025-05-22T08:31:50Z caller=logging.go:85 method=Health result=2 took=44.329µs +ts=2025-05-22T08:31:50Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T08:31:53Z caller=logging.go:85 method=Health result=2 took=41.109µs +ts=2025-05-22T08:31:53Z caller=logging.go:85 method=Health result=2 took=48.139µs +ts=2025-05-22T08:31:56Z caller=logging.go:85 method=Health result=2 took=46.299µs +ts=2025-05-22T08:31:56Z caller=logging.go:85 method=Health result=2 took=50.929µs +ts=2025-05-22T08:31:59Z caller=logging.go:85 method=Health result=2 took=33.87µs +ts=2025-05-22T08:31:59Z caller=logging.go:85 method=Health result=2 took=34µs +ts=2025-05-22T08:32:02Z caller=logging.go:85 method=Health result=2 took=36.799µs +ts=2025-05-22T08:32:02Z caller=logging.go:85 method=Health result=2 took=40.649µs +ts=2025-05-22T08:32:05Z caller=logging.go:85 method=Health result=2 took=30.99µs +ts=2025-05-22T08:32:05Z caller=logging.go:85 method=Health result=2 took=33.519µs +ts=2025-05-22T08:32:08Z caller=logging.go:85 method=Health result=2 took=29.78µs +ts=2025-05-22T08:32:08Z caller=logging.go:85 method=Health result=2 took=12.85µs +ts=2025-05-22T08:32:11Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T08:32:11Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T08:32:14Z caller=logging.go:85 method=Health result=2 took=42.429µs +ts=2025-05-22T08:32:14Z caller=logging.go:85 method=Health result=2 took=50.989µs +ts=2025-05-22T08:32:17Z caller=logging.go:85 method=Health result=2 took=72.919µs +ts=2025-05-22T08:32:17Z caller=logging.go:85 method=Health result=2 took=74.879µs +ts=2025-05-22T08:32:20Z caller=logging.go:85 method=Health result=2 took=32.459µs +ts=2025-05-22T08:32:20Z caller=logging.go:85 method=Health result=2 took=45.499µs +ts=2025-05-22T08:32:23Z caller=logging.go:85 method=Health result=2 took=39.629µs +ts=2025-05-22T08:32:23Z caller=logging.go:85 method=Health result=2 took=48.169µs +ts=2025-05-22T08:32:26Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T08:32:26Z caller=logging.go:85 method=Health result=2 took=50.808µs +ts=2025-05-22T08:32:29Z caller=logging.go:85 method=Health result=2 took=50.659µs +ts=2025-05-22T08:32:29Z caller=logging.go:85 method=Health result=2 took=50.689µs +ts=2025-05-22T08:32:32Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T08:32:32Z caller=logging.go:85 method=Health result=2 took=51.279µs +ts=2025-05-22T08:32:35Z caller=logging.go:85 method=Health result=2 took=44.189µs +ts=2025-05-22T08:32:35Z caller=logging.go:85 method=Health result=2 took=50.448µs +ts=2025-05-22T08:32:38Z caller=logging.go:85 method=Health result=2 took=44.909µs +ts=2025-05-22T08:32:38Z caller=logging.go:85 method=Health result=2 took=45.589µs +ts=2025-05-22T08:32:41Z caller=logging.go:85 method=Health result=2 took=45.589µs +ts=2025-05-22T08:32:41Z caller=logging.go:85 method=Health result=2 took=44.599µs +ts=2025-05-22T08:32:44Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T08:32:44Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T08:32:47Z caller=logging.go:85 method=Health result=2 took=38.679µs +ts=2025-05-22T08:32:47Z caller=logging.go:85 method=Health result=2 took=22.33µs +ts=2025-05-22T08:32:50Z caller=logging.go:85 method=Health result=2 took=29.959µs +ts=2025-05-22T08:32:50Z caller=logging.go:85 method=Health result=2 took=34.389µs +ts=2025-05-22T08:32:53Z caller=logging.go:85 method=Health result=2 took=41.129µs +ts=2025-05-22T08:32:53Z caller=logging.go:85 method=Health result=2 took=47.299µs +ts=2025-05-22T08:32:56Z caller=logging.go:85 method=Health result=2 took=46.689µs +ts=2025-05-22T08:32:56Z caller=logging.go:85 method=Health result=2 took=50.479µs +ts=2025-05-22T08:32:59Z caller=logging.go:85 method=Health result=2 took=42.829µs +ts=2025-05-22T08:32:59Z caller=logging.go:85 method=Health result=2 took=41.639µs +ts=2025-05-22T08:33:02Z caller=logging.go:85 method=Health result=2 took=40.929µs +ts=2025-05-22T08:33:02Z caller=logging.go:85 method=Health result=2 took=40.409µs +ts=2025-05-22T08:33:05Z caller=logging.go:85 method=Health result=2 took=42.969µs +ts=2025-05-22T08:33:05Z caller=logging.go:85 method=Health result=2 took=30.499µs +ts=2025-05-22T08:33:08Z caller=logging.go:85 method=Health result=2 took=29.369µs +ts=2025-05-22T08:33:08Z caller=logging.go:85 method=Health result=2 took=71.738µs +ts=2025-05-22T08:33:11Z caller=logging.go:85 method=Health result=2 took=51.509µs +ts=2025-05-22T08:33:11Z caller=logging.go:85 method=Health result=2 took=50.998µs +ts=2025-05-22T08:33:14Z caller=logging.go:85 method=Health result=2 took=43.779µs +ts=2025-05-22T08:33:14Z caller=logging.go:85 method=Health result=2 took=37.869µs +ts=2025-05-22T08:33:17Z caller=logging.go:85 method=Health result=2 took=50.158µs +ts=2025-05-22T08:33:17Z caller=logging.go:85 method=Health result=2 took=59.969µs +ts=2025-05-22T08:33:20Z caller=logging.go:85 method=Health result=2 took=42.509µs +ts=2025-05-22T08:33:20Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T08:33:23Z caller=logging.go:85 method=Health result=2 took=45.079µs +ts=2025-05-22T08:33:23Z caller=logging.go:85 method=Health result=2 took=48.229µs +ts=2025-05-22T08:33:26Z caller=logging.go:85 method=Health result=2 took=68.798µs +ts=2025-05-22T08:33:26Z caller=logging.go:85 method=Health result=2 took=67.888µs +ts=2025-05-22T08:33:29Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T08:33:29Z caller=logging.go:85 method=Health result=2 took=46.139µs +ts=2025-05-22T08:33:32Z caller=logging.go:85 method=Health result=2 took=57.638µs +ts=2025-05-22T08:33:32Z caller=logging.go:85 method=Health result=2 took=57.668µs +ts=2025-05-22T08:33:35Z caller=logging.go:85 method=Health result=2 took=44.469µs +ts=2025-05-22T08:33:35Z caller=logging.go:85 method=Health result=2 took=67.659µs +ts=2025-05-22T08:33:38Z caller=logging.go:85 method=Health result=2 took=98.138µs +ts=2025-05-22T08:33:38Z caller=logging.go:85 method=Health result=2 took=42.339µs +ts=2025-05-22T08:33:41Z caller=logging.go:85 method=Health result=2 took=33.339µs +ts=2025-05-22T08:33:41Z caller=logging.go:85 method=Health result=2 took=43.969µs +ts=2025-05-22T08:33:44Z caller=logging.go:85 method=Health result=2 took=42.319µs +ts=2025-05-22T08:33:44Z caller=logging.go:85 method=Health result=2 took=50.018µs +ts=2025-05-22T08:33:47Z caller=logging.go:85 method=Health result=2 took=43.659µs +ts=2025-05-22T08:33:47Z caller=logging.go:85 method=Health result=2 took=45.639µs +ts=2025-05-22T08:33:50Z caller=logging.go:85 method=Health result=2 took=46.249µs +ts=2025-05-22T08:33:50Z caller=logging.go:85 method=Health result=2 took=48.039µs +ts=2025-05-22T08:33:53Z caller=logging.go:85 method=Health result=2 took=46.199µs +ts=2025-05-22T08:33:53Z caller=logging.go:85 method=Health result=2 took=44.179µs +ts=2025-05-22T08:33:56Z caller=logging.go:85 method=Health result=2 took=51.319µs +ts=2025-05-22T08:33:56Z caller=logging.go:85 method=Health result=2 took=31.089µs +ts=2025-05-22T08:33:59Z caller=logging.go:85 method=Health result=2 took=30.78µs +ts=2025-05-22T08:33:59Z caller=logging.go:85 method=Health result=2 took=26.679µs +ts=2025-05-22T08:34:02Z caller=logging.go:85 method=Health result=2 took=31.739µs +ts=2025-05-22T08:34:02Z caller=logging.go:85 method=Health result=2 took=60.948µs +ts=2025-05-22T08:34:05Z caller=logging.go:85 method=Health result=2 took=44.399µs +ts=2025-05-22T08:34:05Z caller=logging.go:85 method=Health result=2 took=43.409µs +ts=2025-05-22T08:34:08Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T08:34:08Z caller=logging.go:85 method=Health result=2 took=45.699µs +ts=2025-05-22T08:34:11Z caller=logging.go:85 method=Health result=2 took=44.449µs +ts=2025-05-22T08:34:11Z caller=logging.go:85 method=Health result=2 took=44.729µs +ts=2025-05-22T08:34:14Z caller=logging.go:85 method=Health result=2 took=61.259µs +ts=2025-05-22T08:34:14Z caller=logging.go:85 method=Health result=2 took=30.949µs +ts=2025-05-22T08:34:17Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T08:34:17Z caller=logging.go:85 method=Health result=2 took=48.169µs +ts=2025-05-22T08:34:20Z caller=logging.go:85 method=Health result=2 took=20.24µs +ts=2025-05-22T08:34:20Z caller=logging.go:85 method=Health result=2 took=28.18µs +ts=2025-05-22T08:34:23Z caller=logging.go:85 method=Health result=2 took=56.978µs +ts=2025-05-22T08:34:23Z caller=logging.go:85 method=Health result=2 took=25.14µs +ts=2025-05-22T08:34:26Z caller=logging.go:85 method=Health result=2 took=35.009µs +ts=2025-05-22T08:34:26Z caller=logging.go:85 method=Health result=2 took=46.869µs +ts=2025-05-22T08:34:29Z caller=logging.go:85 method=Health result=2 took=37.009µs +ts=2025-05-22T08:34:29Z caller=logging.go:85 method=Health result=2 took=34.349µs +ts=2025-05-22T08:34:32Z caller=logging.go:85 method=Health result=2 took=52.699µs +ts=2025-05-22T08:34:32Z caller=logging.go:85 method=Health result=2 took=35.429µs +ts=2025-05-22T08:34:35Z caller=logging.go:85 method=Health result=2 took=40.299µs +ts=2025-05-22T08:34:35Z caller=logging.go:85 method=Health result=2 took=11.6µs +ts=2025-05-22T08:34:38Z caller=logging.go:85 method=Health result=2 took=40.209µs +ts=2025-05-22T08:34:38Z caller=logging.go:85 method=Health result=2 took=40.319µs +ts=2025-05-22T08:34:41Z caller=logging.go:85 method=Health result=2 took=45.629µs +ts=2025-05-22T08:34:41Z caller=logging.go:85 method=Health result=2 took=48.409µs +ts=2025-05-22T08:34:44Z caller=logging.go:85 method=Health result=2 took=29.139µs +ts=2025-05-22T08:34:44Z caller=logging.go:85 method=Health result=2 took=13.74µs +ts=2025-05-22T08:34:47Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T08:34:47Z caller=logging.go:85 method=Health result=2 took=49.699µs +ts=2025-05-22T08:34:50Z caller=logging.go:85 method=Health result=2 took=44.219µs +ts=2025-05-22T08:34:50Z caller=logging.go:85 method=Health result=2 took=43.659µs +ts=2025-05-22T08:34:53Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T08:34:53Z caller=logging.go:85 method=Health result=2 took=31.729µs +ts=2025-05-22T08:34:56Z caller=logging.go:85 method=Health result=2 took=31.859µs +ts=2025-05-22T08:34:56Z caller=logging.go:85 method=Health result=2 took=47.008µs +ts=2025-05-22T08:34:59Z caller=logging.go:85 method=Health result=2 took=45.879µs +ts=2025-05-22T08:34:59Z caller=logging.go:85 method=Health result=2 took=53.129µs +ts=2025-05-22T08:35:02Z caller=logging.go:85 method=Health result=2 took=44.969µs +ts=2025-05-22T08:35:02Z caller=logging.go:85 method=Health result=2 took=49.519µs +ts=2025-05-22T08:35:05Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T08:35:05Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T08:35:08Z caller=logging.go:85 method=Health result=2 took=39.849µs +ts=2025-05-22T08:35:08Z caller=logging.go:85 method=Health result=2 took=11.08µs +ts=2025-05-22T08:35:11Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T08:35:11Z caller=logging.go:85 method=Health result=2 took=51.379µs +ts=2025-05-22T08:35:14Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T08:35:14Z caller=logging.go:85 method=Health result=2 took=51.369µs +ts=2025-05-22T08:35:17Z caller=logging.go:85 method=Health result=2 took=35.549µs +ts=2025-05-22T08:35:17Z caller=logging.go:85 method=Health result=2 took=35.009µs +ts=2025-05-22T08:35:20Z caller=logging.go:85 method=Health result=2 took=29.989µs +ts=2025-05-22T08:35:20Z caller=logging.go:85 method=Health result=2 took=54.739µs +ts=2025-05-22T08:35:23Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T08:35:23Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T08:35:26Z caller=logging.go:85 method=Health result=2 took=44.639µs +ts=2025-05-22T08:35:26Z caller=logging.go:85 method=Health result=2 took=52.599µs +ts=2025-05-22T08:35:29Z caller=logging.go:85 method=Health result=2 took=36.839µs +ts=2025-05-22T08:35:29Z caller=logging.go:85 method=Health result=2 took=36.399µs +ts=2025-05-22T08:35:32Z caller=logging.go:85 method=Health result=2 took=41.049µs +ts=2025-05-22T08:35:32Z caller=logging.go:85 method=Health result=2 took=46.398µs +ts=2025-05-22T08:35:35Z caller=logging.go:85 method=Health result=2 took=40.739µs +ts=2025-05-22T08:35:35Z caller=logging.go:85 method=Health result=2 took=49.549µs +ts=2025-05-22T08:35:38Z caller=logging.go:85 method=Health result=2 took=36.479µs +ts=2025-05-22T08:35:38Z caller=logging.go:85 method=Health result=2 took=36.629µs +ts=2025-05-22T08:35:41Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T08:35:41Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T08:35:44Z caller=logging.go:85 method=Health result=2 took=36.939µs +ts=2025-05-22T08:35:44Z caller=logging.go:85 method=Health result=2 took=47.759µs +ts=2025-05-22T08:35:47Z caller=logging.go:85 method=Health result=2 took=45.859µs +ts=2025-05-22T08:35:47Z caller=logging.go:85 method=Health result=2 took=50.969µs +ts=2025-05-22T08:35:50Z caller=logging.go:85 method=Health result=2 took=55.409µs +ts=2025-05-22T08:35:50Z caller=logging.go:85 method=Health result=2 took=49.569µs +ts=2025-05-22T08:35:53Z caller=logging.go:85 method=Health result=2 took=46.649µs +ts=2025-05-22T08:35:53Z caller=logging.go:85 method=Health result=2 took=51.839µs +ts=2025-05-22T08:35:56Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T08:35:56Z caller=logging.go:85 method=Health result=2 took=49.849µs +ts=2025-05-22T08:35:59Z caller=logging.go:85 method=Health result=2 took=41.609µs +ts=2025-05-22T08:35:59Z caller=logging.go:85 method=Health result=2 took=47.079µs +ts=2025-05-22T08:36:02Z caller=logging.go:85 method=Health result=2 took=42.039µs +ts=2025-05-22T08:36:02Z caller=logging.go:85 method=Health result=2 took=45.678µs +ts=2025-05-22T08:36:05Z caller=logging.go:85 method=Health result=2 took=42.609µs +ts=2025-05-22T08:36:05Z caller=logging.go:85 method=Health result=2 took=42.299µs +ts=2025-05-22T08:36:08Z caller=logging.go:85 method=Health result=2 took=41.979µs +ts=2025-05-22T08:36:08Z caller=logging.go:85 method=Health result=2 took=60.208µs +ts=2025-05-22T08:36:11Z caller=logging.go:85 method=Health result=2 took=39.989µs +ts=2025-05-22T08:36:11Z caller=logging.go:85 method=Health result=2 took=39.509µs +ts=2025-05-22T08:36:14Z caller=logging.go:85 method=Health result=2 took=41.259µs +ts=2025-05-22T08:36:14Z caller=logging.go:85 method=Health result=2 took=47.269µs +ts=2025-05-22T08:36:17Z caller=logging.go:85 method=Health result=2 took=45.859µs +ts=2025-05-22T08:36:17Z caller=logging.go:85 method=Health result=2 took=42.049µs +ts=2025-05-22T08:36:20Z caller=logging.go:85 method=Health result=2 took=31.939µs +ts=2025-05-22T08:36:20Z caller=logging.go:85 method=Health result=2 took=45.959µs +ts=2025-05-22T08:36:23Z caller=logging.go:85 method=Health result=2 took=39.569µs +ts=2025-05-22T08:36:23Z caller=logging.go:85 method=Health result=2 took=45.749µs +ts=2025-05-22T08:36:26Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T08:36:26Z caller=logging.go:85 method=Health result=2 took=49.259µs +ts=2025-05-22T08:36:29Z caller=logging.go:85 method=Health result=2 took=39.769µs +ts=2025-05-22T08:36:29Z caller=logging.go:85 method=Health result=2 took=99.387µs +ts=2025-05-22T08:36:32Z caller=logging.go:85 method=Health result=2 took=38.269µs +ts=2025-05-22T08:36:32Z caller=logging.go:85 method=Health result=2 took=43.669µs +ts=2025-05-22T08:36:35Z caller=logging.go:85 method=Health result=2 took=40.899µs +ts=2025-05-22T08:36:35Z caller=logging.go:85 method=Health result=2 took=40.439µs +ts=2025-05-22T08:36:38Z caller=logging.go:85 method=Health result=2 took=44.929µs +ts=2025-05-22T08:36:38Z caller=logging.go:85 method=Health result=2 took=78.978µs +ts=2025-05-22T08:36:41Z caller=logging.go:85 method=Health result=2 took=45.949µs +ts=2025-05-22T08:36:41Z caller=logging.go:85 method=Health result=2 took=48.098µs +ts=2025-05-22T08:36:44Z caller=logging.go:85 method=Health result=2 took=32.219µs +ts=2025-05-22T08:36:44Z caller=logging.go:85 method=Health result=2 took=40.319µs +ts=2025-05-22T08:36:47Z caller=logging.go:85 method=Health result=2 took=41.409µs +ts=2025-05-22T08:36:47Z caller=logging.go:85 method=Health result=2 took=41.379µs +ts=2025-05-22T08:36:50Z caller=logging.go:85 method=Health result=2 took=49.819µs +ts=2025-05-22T08:36:50Z caller=logging.go:85 method=Health result=2 took=48.349µs +ts=2025-05-22T08:36:53Z caller=logging.go:85 method=Health result=2 took=32.25µs +ts=2025-05-22T08:36:53Z caller=logging.go:85 method=Health result=2 took=32.27µs +ts=2025-05-22T08:36:56Z caller=logging.go:85 method=Health result=2 took=35.569µs +ts=2025-05-22T08:36:56Z caller=logging.go:85 method=Health result=2 took=54.228µs +ts=2025-05-22T08:36:59Z caller=logging.go:85 method=Health result=2 took=38.649µs +ts=2025-05-22T08:36:59Z caller=logging.go:85 method=Health result=2 took=27.559µs +ts=2025-05-22T08:37:02Z caller=logging.go:85 method=Health result=2 took=34.12µs +ts=2025-05-22T08:37:02Z caller=logging.go:85 method=Health result=2 took=47.379µs +ts=2025-05-22T08:37:05Z caller=logging.go:85 method=Health result=2 took=53.059µs +ts=2025-05-22T08:37:05Z caller=logging.go:85 method=Health result=2 took=64.459µs +ts=2025-05-22T08:37:08Z caller=logging.go:85 method=Health result=2 took=46.359µs +ts=2025-05-22T08:37:08Z caller=logging.go:85 method=Health result=2 took=83.088µs +ts=2025-05-22T08:37:11Z caller=logging.go:85 method=Health result=2 took=30.75µs +ts=2025-05-22T08:37:11Z caller=logging.go:85 method=Health result=2 took=30.79µs +ts=2025-05-22T08:37:14Z caller=logging.go:85 method=Health result=2 took=49.018µs +ts=2025-05-22T08:37:14Z caller=logging.go:85 method=Health result=2 took=49.769µs +ts=2025-05-22T08:37:17Z caller=logging.go:85 method=Health result=2 took=41.469µs +ts=2025-05-22T08:37:17Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T08:37:20Z caller=logging.go:85 method=Health result=2 took=30.899µs +ts=2025-05-22T08:37:20Z caller=logging.go:85 method=Health result=2 took=33.699µs +ts=2025-05-22T08:37:23Z caller=logging.go:85 method=Health result=2 took=29.42µs +ts=2025-05-22T08:37:23Z caller=logging.go:85 method=Health result=2 took=54.238µs +ts=2025-05-22T08:37:26Z caller=logging.go:85 method=Health result=2 took=36.499µs +ts=2025-05-22T08:37:26Z caller=logging.go:85 method=Health result=2 took=35.549µs +ts=2025-05-22T08:37:29Z caller=logging.go:85 method=Health result=2 took=30.749µs +ts=2025-05-22T08:37:29Z caller=logging.go:85 method=Health result=2 took=41.779µs +ts=2025-05-22T08:37:32Z caller=logging.go:85 method=Health result=2 took=39.269µs +ts=2025-05-22T08:37:32Z caller=logging.go:85 method=Health result=2 took=43.729µs +ts=2025-05-22T08:37:35Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T08:37:35Z caller=logging.go:85 method=Health result=2 took=36.969µs +ts=2025-05-22T08:37:38Z caller=logging.go:85 method=Health result=2 took=30.619µs +ts=2025-05-22T08:37:38Z caller=logging.go:85 method=Health result=2 took=31.639µs +ts=2025-05-22T08:37:41Z caller=logging.go:85 method=Health result=2 took=30.419µs +ts=2025-05-22T08:37:41Z caller=logging.go:85 method=Health result=2 took=34.739µs +ts=2025-05-22T08:37:44Z caller=logging.go:85 method=Health result=2 took=29.379µs +ts=2025-05-22T08:37:44Z caller=logging.go:85 method=Health result=2 took=41.379µs +ts=2025-05-22T08:37:47Z caller=logging.go:85 method=Health result=2 took=35.15µs +ts=2025-05-22T08:37:47Z caller=logging.go:85 method=Health result=2 took=34.14µs +ts=2025-05-22T08:37:50Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T08:37:50Z caller=logging.go:85 method=Health result=2 took=56.038µs +ts=2025-05-22T08:37:53Z caller=logging.go:85 method=Health result=2 took=74.168µs +ts=2025-05-22T08:37:53Z caller=logging.go:85 method=Health result=2 took=74.238µs +ts=2025-05-22T08:37:56Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:37:56Z caller=logging.go:85 method=Health result=2 took=24.43µs +ts=2025-05-22T08:37:59Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T08:37:59Z caller=logging.go:85 method=Health result=2 took=49.609µs +ts=2025-05-22T08:38:02Z caller=logging.go:85 method=Health result=2 took=29.759µs +ts=2025-05-22T08:38:02Z caller=logging.go:85 method=Health result=2 took=16.55µs +ts=2025-05-22T08:38:05Z caller=logging.go:85 method=Health result=2 took=33.679µs +ts=2025-05-22T08:38:05Z caller=logging.go:85 method=Health result=2 took=33.709µs +ts=2025-05-22T08:38:08Z caller=logging.go:85 method=Health result=2 took=37.889µs +ts=2025-05-22T08:38:08Z caller=logging.go:85 method=Health result=2 took=37.649µs +ts=2025-05-22T08:38:11Z caller=logging.go:85 method=Health result=2 took=38.909µs +ts=2025-05-22T08:38:11Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T08:38:14Z caller=logging.go:85 method=Health result=2 took=41.529µs +ts=2025-05-22T08:38:14Z caller=logging.go:85 method=Health result=2 took=46.309µs +ts=2025-05-22T08:38:17Z caller=logging.go:85 method=Health result=2 took=77.219µs +ts=2025-05-22T08:38:17Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T08:38:20Z caller=logging.go:85 method=Health result=2 took=28.709µs +ts=2025-05-22T08:38:20Z caller=logging.go:85 method=Health result=2 took=41.179µs +ts=2025-05-22T08:38:23Z caller=logging.go:85 method=Health result=2 took=40.909µs +ts=2025-05-22T08:38:23Z caller=logging.go:85 method=Health result=2 took=70.119µs +ts=2025-05-22T08:38:26Z caller=logging.go:85 method=Health result=2 took=41.309µs +ts=2025-05-22T08:38:26Z caller=logging.go:85 method=Health result=2 took=41.259µs +ts=2025-05-22T08:38:29Z caller=logging.go:85 method=Health result=2 took=43.389µs +ts=2025-05-22T08:38:29Z caller=logging.go:85 method=Health result=2 took=43.189µs +ts=2025-05-22T08:38:32Z caller=logging.go:85 method=Health result=2 took=36.149µs +ts=2025-05-22T08:38:32Z caller=logging.go:85 method=Health result=2 took=35.809µs +ts=2025-05-22T08:38:35Z caller=logging.go:85 method=Health result=2 took=52.709µs +ts=2025-05-22T08:38:35Z caller=logging.go:85 method=Health result=2 took=50.689µs +ts=2025-05-22T08:38:38Z caller=logging.go:85 method=Health result=2 took=40.269µs +ts=2025-05-22T08:38:38Z caller=logging.go:85 method=Health result=2 took=39.929µs +ts=2025-05-22T08:38:41Z caller=logging.go:85 method=Health result=2 took=37.399µs +ts=2025-05-22T08:38:41Z caller=logging.go:85 method=Health result=2 took=45.989µs +ts=2025-05-22T08:38:44Z caller=logging.go:85 method=Health result=2 took=38.049µs +ts=2025-05-22T08:38:44Z caller=logging.go:85 method=Health result=2 took=29.539µs +ts=2025-05-22T08:38:47Z caller=logging.go:85 method=Health result=2 took=39.889µs +ts=2025-05-22T08:38:47Z caller=logging.go:85 method=Health result=2 took=33.589µs +ts=2025-05-22T08:38:50Z caller=logging.go:85 method=Health result=2 took=43.119µs +ts=2025-05-22T08:38:50Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T08:38:53Z caller=logging.go:85 method=Health result=2 took=40.539µs +ts=2025-05-22T08:38:53Z caller=logging.go:85 method=Health result=2 took=32.899µs +ts=2025-05-22T08:38:56Z caller=logging.go:85 method=Health result=2 took=33.38µs +ts=2025-05-22T08:38:56Z caller=logging.go:85 method=Health result=2 took=45.149µs +ts=2025-05-22T08:38:59Z caller=logging.go:85 method=Health result=2 took=43.659µs +ts=2025-05-22T08:38:59Z caller=logging.go:85 method=Health result=2 took=28.55µs +ts=2025-05-22T08:39:02Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T08:39:02Z caller=logging.go:85 method=Health result=2 took=43.589µs +ts=2025-05-22T08:39:05Z caller=logging.go:85 method=Health result=2 took=28.449µs +ts=2025-05-22T08:39:05Z caller=logging.go:85 method=Health result=2 took=28.589µs +ts=2025-05-22T08:39:08Z caller=logging.go:85 method=Health result=2 took=42.839µs +ts=2025-05-22T08:39:08Z caller=logging.go:85 method=Health result=2 took=46.719µs +ts=2025-05-22T08:39:11Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T08:39:11Z caller=logging.go:85 method=Health result=2 took=69.408µs +ts=2025-05-22T08:39:14Z caller=logging.go:85 method=Health result=2 took=30.129µs +ts=2025-05-22T08:39:14Z caller=logging.go:85 method=Health result=2 took=38.369µs +ts=2025-05-22T08:39:17Z caller=logging.go:85 method=Health result=2 took=30.639µs +ts=2025-05-22T08:39:17Z caller=logging.go:85 method=Health result=2 took=30.579µs +ts=2025-05-22T08:39:20Z caller=logging.go:85 method=Health result=2 took=44.499µs +ts=2025-05-22T08:39:20Z caller=logging.go:85 method=Health result=2 took=30.35µs +ts=2025-05-22T08:39:23Z caller=logging.go:85 method=Health result=2 took=42.179µs +ts=2025-05-22T08:39:23Z caller=logging.go:85 method=Health result=2 took=36.669µs +ts=2025-05-22T08:39:26Z caller=logging.go:85 method=Health result=2 took=35.399µs +ts=2025-05-22T08:39:26Z caller=logging.go:85 method=Health result=2 took=46.699µs +ts=2025-05-22T08:39:29Z caller=logging.go:85 method=Health result=2 took=43.999µs +ts=2025-05-22T08:39:29Z caller=logging.go:85 method=Health result=2 took=47.169µs +ts=2025-05-22T08:39:32Z caller=logging.go:85 method=Health result=2 took=40.569µs +ts=2025-05-22T08:39:32Z caller=logging.go:85 method=Health result=2 took=40.619µs +ts=2025-05-22T08:39:35Z caller=logging.go:85 method=Health result=2 took=29.399µs +ts=2025-05-22T08:39:35Z caller=logging.go:85 method=Health result=2 took=44.419µs +ts=2025-05-22T08:39:38Z caller=logging.go:85 method=Health result=2 took=27.919µs +ts=2025-05-22T08:39:38Z caller=logging.go:85 method=Health result=2 took=27.959µs +ts=2025-05-22T08:39:41Z caller=logging.go:85 method=Health result=2 took=29.759µs +ts=2025-05-22T08:39:41Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T08:39:44Z caller=logging.go:85 method=Health result=2 took=60.529µs +ts=2025-05-22T08:39:44Z caller=logging.go:85 method=Health result=2 took=29.209µs +ts=2025-05-22T08:39:47Z caller=logging.go:85 method=Health result=2 took=35.959µs +ts=2025-05-22T08:39:47Z caller=logging.go:85 method=Health result=2 took=13.48µs +ts=2025-05-22T08:39:50Z caller=logging.go:85 method=Health result=2 took=28.599µs +ts=2025-05-22T08:39:50Z caller=logging.go:85 method=Health result=2 took=28.589µs +ts=2025-05-22T08:39:53Z caller=logging.go:85 method=Health result=2 took=31.199µs +ts=2025-05-22T08:39:53Z caller=logging.go:85 method=Health result=2 took=48.188µs +ts=2025-05-22T08:39:56Z caller=logging.go:85 method=Health result=2 took=30.389µs +ts=2025-05-22T08:39:56Z caller=logging.go:85 method=Health result=2 took=10.649µs +ts=2025-05-22T08:39:59Z caller=logging.go:85 method=Health result=2 took=29.859µs +ts=2025-05-22T08:39:59Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T08:40:02Z caller=logging.go:85 method=Health result=2 took=29.999µs +ts=2025-05-22T08:40:02Z caller=logging.go:85 method=Health result=2 took=30.119µs +ts=2025-05-22T08:40:05Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T08:40:05Z caller=logging.go:85 method=Health result=2 took=61.219µs +ts=2025-05-22T08:40:08Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T08:40:08Z caller=logging.go:85 method=Health result=2 took=49.939µs +ts=2025-05-22T08:40:11Z caller=logging.go:85 method=Health result=2 took=35.349µs +ts=2025-05-22T08:40:11Z caller=logging.go:85 method=Health result=2 took=53.189µs +ts=2025-05-22T08:40:14Z caller=logging.go:85 method=Health result=2 took=44.739µs +ts=2025-05-22T08:40:14Z caller=logging.go:85 method=Health result=2 took=38.539µs +ts=2025-05-22T08:40:17Z caller=logging.go:85 method=Health result=2 took=35.109µs +ts=2025-05-22T08:40:17Z caller=logging.go:85 method=Health result=2 took=105.288µs +ts=2025-05-22T08:40:20Z caller=logging.go:85 method=Health result=2 took=38.319µs +ts=2025-05-22T08:40:20Z caller=logging.go:85 method=Health result=2 took=37.349µs +ts=2025-05-22T08:40:23Z caller=logging.go:85 method=Health result=2 took=30.369µs +ts=2025-05-22T08:40:23Z caller=logging.go:85 method=Health result=2 took=47.239µs +ts=2025-05-22T08:40:26Z caller=logging.go:85 method=Health result=2 took=35.769µs +ts=2025-05-22T08:40:26Z caller=logging.go:85 method=Health result=2 took=35.769µs +ts=2025-05-22T08:40:29Z caller=logging.go:85 method=Health result=2 took=39.659µs +ts=2025-05-22T08:40:29Z caller=logging.go:85 method=Health result=2 took=39.239µs +ts=2025-05-22T08:40:32Z caller=logging.go:85 method=Health result=2 took=42.959µs +ts=2025-05-22T08:40:32Z caller=logging.go:85 method=Health result=2 took=47.378µs +ts=2025-05-22T08:40:35Z caller=logging.go:85 method=Health result=2 took=42.579µs +ts=2025-05-22T08:40:35Z caller=logging.go:85 method=Health result=2 took=45.429µs +ts=2025-05-22T08:40:38Z caller=logging.go:85 method=Health result=2 took=39.589µs +ts=2025-05-22T08:40:38Z caller=logging.go:85 method=Health result=2 took=45.849µs +ts=2025-05-22T08:40:41Z caller=logging.go:85 method=Health result=2 took=41.809µs +ts=2025-05-22T08:40:41Z caller=logging.go:85 method=Health result=2 took=48.699µs +ts=2025-05-22T08:40:44Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T08:40:44Z caller=logging.go:85 method=Health result=2 took=46.039µs +ts=2025-05-22T08:40:47Z caller=logging.go:85 method=Health result=2 took=41.449µs +ts=2025-05-22T08:40:47Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T08:40:50Z caller=logging.go:85 method=Health result=2 took=36.549µs +ts=2025-05-22T08:40:50Z caller=logging.go:85 method=Health result=2 took=36.309µs +ts=2025-05-22T08:40:53Z caller=logging.go:85 method=Health result=2 took=41.089µs +ts=2025-05-22T08:40:53Z caller=logging.go:85 method=Health result=2 took=46.839µs +ts=2025-05-22T08:40:56Z caller=logging.go:85 method=Health result=2 took=33.72µs +ts=2025-05-22T08:40:56Z caller=logging.go:85 method=Health result=2 took=40.399µs +ts=2025-05-22T08:40:59Z caller=logging.go:85 method=Health result=2 took=41.889µs +ts=2025-05-22T08:40:59Z caller=logging.go:85 method=Health result=2 took=29.05µs +ts=2025-05-22T08:41:02Z caller=logging.go:85 method=Health result=2 took=39.609µs +ts=2025-05-22T08:41:02Z caller=logging.go:85 method=Health result=2 took=39.629µs +ts=2025-05-22T08:41:05Z caller=logging.go:85 method=Health result=2 took=38.319µs +ts=2025-05-22T08:41:05Z caller=logging.go:85 method=Health result=2 took=38.619µs +ts=2025-05-22T08:41:08Z caller=logging.go:85 method=Health result=2 took=30.79µs +ts=2025-05-22T08:41:08Z caller=logging.go:85 method=Health result=2 took=30.72µs +ts=2025-05-22T08:41:11Z caller=logging.go:85 method=Health result=2 took=78.288µs +ts=2025-05-22T08:41:11Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T08:41:14Z caller=logging.go:85 method=Health result=2 took=44.149µs +ts=2025-05-22T08:41:14Z caller=logging.go:85 method=Health result=2 took=30.109µs +ts=2025-05-22T08:41:17Z caller=logging.go:85 method=Health result=2 took=27.46µs +ts=2025-05-22T08:41:17Z caller=logging.go:85 method=Health result=2 took=27.51µs +ts=2025-05-22T08:41:20Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T08:41:20Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T08:41:23Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T08:41:23Z caller=logging.go:85 method=Health result=2 took=48.149µs +ts=2025-05-22T08:41:26Z caller=logging.go:85 method=Health result=2 took=43.519µs +ts=2025-05-22T08:41:26Z caller=logging.go:85 method=Health result=2 took=42.419µs +ts=2025-05-22T08:41:29Z caller=logging.go:85 method=Health result=2 took=45.099µs +ts=2025-05-22T08:41:29Z caller=logging.go:85 method=Health result=2 took=44.399µs +ts=2025-05-22T08:41:32Z caller=logging.go:85 method=Health result=2 took=31.769µs +ts=2025-05-22T08:41:32Z caller=logging.go:85 method=Health result=2 took=10.57µs +ts=2025-05-22T08:41:35Z caller=logging.go:85 method=Health result=2 took=42.839µs +ts=2025-05-22T08:41:35Z caller=logging.go:85 method=Health result=2 took=62.069µs +ts=2025-05-22T08:41:38Z caller=logging.go:85 method=Health result=2 took=55.859µs +ts=2025-05-22T08:41:38Z caller=logging.go:85 method=Health result=2 took=51.929µs +ts=2025-05-22T08:41:41Z caller=logging.go:85 method=Health result=2 took=40.329µs +ts=2025-05-22T08:41:41Z caller=logging.go:85 method=Health result=2 took=40.399µs +ts=2025-05-22T08:41:44Z caller=logging.go:85 method=Health result=2 took=30.859µs +ts=2025-05-22T08:41:44Z caller=logging.go:85 method=Health result=2 took=13.55µs +ts=2025-05-22T08:41:47Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T08:41:47Z caller=logging.go:85 method=Health result=2 took=34.27µs +ts=2025-05-22T08:41:50Z caller=logging.go:85 method=Health result=2 took=36.689µs +ts=2025-05-22T08:41:50Z caller=logging.go:85 method=Health result=2 took=37.169µs +ts=2025-05-22T08:41:53Z caller=logging.go:85 method=Health result=2 took=30.489µs +ts=2025-05-22T08:41:53Z caller=logging.go:85 method=Health result=2 took=30.499µs +ts=2025-05-22T08:41:56Z caller=logging.go:85 method=Health result=2 took=22.83µs +ts=2025-05-22T08:41:56Z caller=logging.go:85 method=Health result=2 took=48.649µs +ts=2025-05-22T08:41:59Z caller=logging.go:85 method=Health result=2 took=39.12µs +ts=2025-05-22T08:41:59Z caller=logging.go:85 method=Health result=2 took=48.509µs +ts=2025-05-22T08:42:02Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T08:42:02Z caller=logging.go:85 method=Health result=2 took=47.139µs +ts=2025-05-22T08:42:05Z caller=logging.go:85 method=Health result=2 took=28.65µs +ts=2025-05-22T08:42:05Z caller=logging.go:85 method=Health result=2 took=39.05µs +ts=2025-05-22T08:42:08Z caller=logging.go:85 method=Health result=2 took=41.319µs +ts=2025-05-22T08:42:08Z caller=logging.go:85 method=Health result=2 took=46.279µs +ts=2025-05-22T08:42:11Z caller=logging.go:85 method=Health result=2 took=49.538µs +ts=2025-05-22T08:42:11Z caller=logging.go:85 method=Health result=2 took=49.938µs +ts=2025-05-22T08:42:14Z caller=logging.go:85 method=Health result=2 took=44.619µs +ts=2025-05-22T08:42:14Z caller=logging.go:85 method=Health result=2 took=44.879µs +ts=2025-05-22T08:42:17Z caller=logging.go:85 method=Health result=2 took=62.638µs +ts=2025-05-22T08:42:17Z caller=logging.go:85 method=Health result=2 took=1.221501ms +ts=2025-05-22T08:42:20Z caller=logging.go:85 method=Health result=2 took=34.069µs +ts=2025-05-22T08:42:20Z caller=logging.go:85 method=Health result=2 took=45.798µs +ts=2025-05-22T08:42:23Z caller=logging.go:85 method=Health result=2 took=41.379µs +ts=2025-05-22T08:42:23Z caller=logging.go:85 method=Health result=2 took=51.059µs +ts=2025-05-22T08:42:26Z caller=logging.go:85 method=Health result=2 took=30.519µs +ts=2025-05-22T08:42:26Z caller=logging.go:85 method=Health result=2 took=10.64µs +ts=2025-05-22T08:42:29Z caller=logging.go:85 method=Health result=2 took=38.59µs +ts=2025-05-22T08:42:29Z caller=logging.go:85 method=Health result=2 took=31.379µs +ts=2025-05-22T08:42:32Z caller=logging.go:85 method=Health result=2 took=38.189µs +ts=2025-05-22T08:42:32Z caller=logging.go:85 method=Health result=2 took=42.349µs +ts=2025-05-22T08:42:35Z caller=logging.go:85 method=Health result=2 took=31.739µs +ts=2025-05-22T08:42:35Z caller=logging.go:85 method=Health result=2 took=33.599µs +ts=2025-05-22T08:42:38Z caller=logging.go:85 method=Health result=2 took=38.589µs +ts=2025-05-22T08:42:38Z caller=logging.go:85 method=Health result=2 took=45.129µs +ts=2025-05-22T08:42:41Z caller=logging.go:85 method=Health result=2 took=44.429µs +ts=2025-05-22T08:42:41Z caller=logging.go:85 method=Health result=2 took=33.639µs +ts=2025-05-22T08:42:44Z caller=logging.go:85 method=Health result=2 took=38.689µs +ts=2025-05-22T08:42:44Z caller=logging.go:85 method=Health result=2 took=93.318µs +ts=2025-05-22T08:42:47Z caller=logging.go:85 method=Health result=2 took=28.7µs +ts=2025-05-22T08:42:47Z caller=logging.go:85 method=Health result=2 took=47.299µs +ts=2025-05-22T08:42:50Z caller=logging.go:85 method=Health result=2 took=35.659µs +ts=2025-05-22T08:42:50Z caller=logging.go:85 method=Health result=2 took=35.359µs +ts=2025-05-22T08:42:53Z caller=logging.go:85 method=Health result=2 took=58.169µs +ts=2025-05-22T08:42:53Z caller=logging.go:85 method=Health result=2 took=58.179µs +ts=2025-05-22T08:42:56Z caller=logging.go:85 method=Health result=2 took=35.859µs +ts=2025-05-22T08:42:56Z caller=logging.go:85 method=Health result=2 took=36.169µs +ts=2025-05-22T08:42:59Z caller=logging.go:85 method=Health result=2 took=40.789µs +ts=2025-05-22T08:42:59Z caller=logging.go:85 method=Health result=2 took=25.389µs +ts=2025-05-22T08:43:02Z caller=logging.go:85 method=Health result=2 took=31.07µs +ts=2025-05-22T08:43:02Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T08:43:05Z caller=logging.go:85 method=Health result=2 took=45.059µs +ts=2025-05-22T08:43:05Z caller=logging.go:85 method=Health result=2 took=47.539µs +ts=2025-05-22T08:43:08Z caller=logging.go:85 method=Health result=2 took=39.659µs +ts=2025-05-22T08:43:08Z caller=logging.go:85 method=Health result=2 took=29.899µs +ts=2025-05-22T08:43:11Z caller=logging.go:85 method=Health result=2 took=43.518µs +ts=2025-05-22T08:43:11Z caller=logging.go:85 method=Health result=2 took=49.229µs +ts=2025-05-22T08:43:14Z caller=logging.go:85 method=Health result=2 took=30.299µs +ts=2025-05-22T08:43:14Z caller=logging.go:85 method=Health result=2 took=43.779µs +ts=2025-05-22T08:43:17Z caller=logging.go:85 method=Health result=2 took=27.44µs +ts=2025-05-22T08:43:17Z caller=logging.go:85 method=Health result=2 took=16.12µs +ts=2025-05-22T08:43:20Z caller=logging.go:85 method=Health result=2 took=35.95µs +ts=2025-05-22T08:43:20Z caller=logging.go:85 method=Health result=2 took=35.3µs +ts=2025-05-22T08:43:23Z caller=logging.go:85 method=Health result=2 took=44.369µs +ts=2025-05-22T08:43:23Z caller=logging.go:85 method=Health result=2 took=45.669µs +ts=2025-05-22T08:43:26Z caller=logging.go:85 method=Health result=2 took=38.599µs +ts=2025-05-22T08:43:26Z caller=logging.go:85 method=Health result=2 took=46.839µs +ts=2025-05-22T08:43:29Z caller=logging.go:85 method=Health result=2 took=44.439µs +ts=2025-05-22T08:43:29Z caller=logging.go:85 method=Health result=2 took=51.249µs +ts=2025-05-22T08:43:32Z caller=logging.go:85 method=Health result=2 took=41.629µs +ts=2025-05-22T08:43:32Z caller=logging.go:85 method=Health result=2 took=41.499µs +ts=2025-05-22T08:43:35Z caller=logging.go:85 method=Health result=2 took=59.059µs +ts=2025-05-22T08:43:35Z caller=logging.go:85 method=Health result=2 took=41.339µs +ts=2025-05-22T08:43:38Z caller=logging.go:85 method=Health result=2 took=42.109µs +ts=2025-05-22T08:43:38Z caller=logging.go:85 method=Health result=2 took=27.569µs +ts=2025-05-22T08:43:41Z caller=logging.go:85 method=Health result=2 took=44.119µs +ts=2025-05-22T08:43:41Z caller=logging.go:85 method=Health result=2 took=44.879µs +ts=2025-05-22T08:43:44Z caller=logging.go:85 method=Health result=2 took=40.129µs +ts=2025-05-22T08:43:44Z caller=logging.go:85 method=Health result=2 took=28.16µs +ts=2025-05-22T08:43:47Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T08:43:47Z caller=logging.go:85 method=Health result=2 took=18.06µs +ts=2025-05-22T08:43:50Z caller=logging.go:85 method=Health result=2 took=32.099µs +ts=2025-05-22T08:43:50Z caller=logging.go:85 method=Health result=2 took=43.739µs +ts=2025-05-22T08:43:53Z caller=logging.go:85 method=Health result=2 took=45.439µs +ts=2025-05-22T08:43:53Z caller=logging.go:85 method=Health result=2 took=48.459µs +ts=2025-05-22T08:43:56Z caller=logging.go:85 method=Health result=2 took=44.669µs +ts=2025-05-22T08:43:56Z caller=logging.go:85 method=Health result=2 took=45.579µs +ts=2025-05-22T08:43:59Z caller=logging.go:85 method=Health result=2 took=39.479µs +ts=2025-05-22T08:43:59Z caller=logging.go:85 method=Health result=2 took=38.199µs +ts=2025-05-22T08:44:02Z caller=logging.go:85 method=Health result=2 took=40.759µs +ts=2025-05-22T08:44:02Z caller=logging.go:85 method=Health result=2 took=22.94µs +ts=2025-05-22T08:44:05Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T08:44:05Z caller=logging.go:85 method=Health result=2 took=47.749µs +ts=2025-05-22T08:44:08Z caller=logging.go:85 method=Health result=2 took=52.749µs +ts=2025-05-22T08:44:08Z caller=logging.go:85 method=Health result=2 took=45.359µs +ts=2025-05-22T08:44:11Z caller=logging.go:85 method=Health result=2 took=36.969µs +ts=2025-05-22T08:44:11Z caller=logging.go:85 method=Health result=2 took=29.309µs +ts=2025-05-22T08:44:14Z caller=logging.go:85 method=Health result=2 took=31.18µs +ts=2025-05-22T08:44:14Z caller=logging.go:85 method=Health result=2 took=10.479µs +ts=2025-05-22T08:44:17Z caller=logging.go:85 method=Health result=2 took=1.137313ms +ts=2025-05-22T08:44:17Z caller=logging.go:85 method=Health result=2 took=15.27µs +ts=2025-05-22T08:44:20Z caller=logging.go:85 method=Health result=2 took=35.699µs +ts=2025-05-22T08:44:20Z caller=logging.go:85 method=Health result=2 took=35.659µs +ts=2025-05-22T08:44:23Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T08:44:23Z caller=logging.go:85 method=Health result=2 took=41.589µs +ts=2025-05-22T08:44:26Z caller=logging.go:85 method=Health result=2 took=41.229µs +ts=2025-05-22T08:44:26Z caller=logging.go:85 method=Health result=2 took=29.439µs +ts=2025-05-22T08:44:29Z caller=logging.go:85 method=Health result=2 took=35.479µs +ts=2025-05-22T08:44:29Z caller=logging.go:85 method=Health result=2 took=35.559µs +ts=2025-05-22T08:44:32Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T08:44:32Z caller=logging.go:85 method=Health result=2 took=48.309µs +ts=2025-05-22T08:44:35Z caller=logging.go:85 method=Health result=2 took=42.709µs +ts=2025-05-22T08:44:35Z caller=logging.go:85 method=Health result=2 took=46.549µs +ts=2025-05-22T08:44:38Z caller=logging.go:85 method=Health result=2 took=44.429µs +ts=2025-05-22T08:44:38Z caller=logging.go:85 method=Health result=2 took=51.898µs +ts=2025-05-22T08:44:41Z caller=logging.go:85 method=Health result=2 took=42.859µs +ts=2025-05-22T08:44:41Z caller=logging.go:85 method=Health result=2 took=27.999µs +ts=2025-05-22T08:44:44Z caller=logging.go:85 method=Health result=2 took=40.389µs +ts=2025-05-22T08:44:44Z caller=logging.go:85 method=Health result=2 took=29.099µs +ts=2025-05-22T08:44:47Z caller=logging.go:85 method=Health result=2 took=48.659µs +ts=2025-05-22T08:44:47Z caller=logging.go:85 method=Health result=2 took=62.878µs +ts=2025-05-22T08:44:50Z caller=logging.go:85 method=Health result=2 took=27.84µs +ts=2025-05-22T08:44:50Z caller=logging.go:85 method=Health result=2 took=27.62µs +ts=2025-05-22T08:44:53Z caller=logging.go:85 method=Health result=2 took=31.84µs +ts=2025-05-22T08:44:53Z caller=logging.go:85 method=Health result=2 took=15.509µs +ts=2025-05-22T08:44:56Z caller=logging.go:85 method=Health result=2 took=35.449µs +ts=2025-05-22T08:44:56Z caller=logging.go:85 method=Health result=2 took=43.259µs +ts=2025-05-22T08:44:59Z caller=logging.go:85 method=Health result=2 took=29.899µs +ts=2025-05-22T08:44:59Z caller=logging.go:85 method=Health result=2 took=46.489µs +ts=2025-05-22T08:45:02Z caller=logging.go:85 method=Health result=2 took=42.349µs +ts=2025-05-22T08:45:02Z caller=logging.go:85 method=Health result=2 took=42.469µs +ts=2025-05-22T08:45:05Z caller=logging.go:85 method=Health result=2 took=45.289µs +ts=2025-05-22T08:45:05Z caller=logging.go:85 method=Health result=2 took=45.079µs +ts=2025-05-22T08:45:08Z caller=logging.go:85 method=Health result=2 took=37.129µs +ts=2025-05-22T08:45:08Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T08:45:11Z caller=logging.go:85 method=Health result=2 took=41.779µs +ts=2025-05-22T08:45:11Z caller=logging.go:85 method=Health result=2 took=27.029µs +ts=2025-05-22T08:45:14Z caller=logging.go:85 method=Health result=2 took=42.159µs +ts=2025-05-22T08:45:14Z caller=logging.go:85 method=Health result=2 took=57.159µs +ts=2025-05-22T08:45:17Z caller=logging.go:85 method=Health result=2 took=39.349µs +ts=2025-05-22T08:45:17Z caller=logging.go:85 method=Health result=2 took=30.26µs +ts=2025-05-22T08:45:20Z caller=logging.go:85 method=Health result=2 took=42.609µs +ts=2025-05-22T08:45:20Z caller=logging.go:85 method=Health result=2 took=46.539µs +ts=2025-05-22T08:45:23Z caller=logging.go:85 method=Health result=2 took=52.929µs +ts=2025-05-22T08:45:23Z caller=logging.go:85 method=Health result=2 took=66.268µs +ts=2025-05-22T08:45:26Z caller=logging.go:85 method=Health result=2 took=43.469µs +ts=2025-05-22T08:45:26Z caller=logging.go:85 method=Health result=2 took=46.389µs +ts=2025-05-22T08:45:29Z caller=logging.go:85 method=Health result=2 took=42.339µs +ts=2025-05-22T08:45:29Z caller=logging.go:85 method=Health result=2 took=46.549µs +ts=2025-05-22T08:45:32Z caller=logging.go:85 method=Health result=2 took=47.139µs +ts=2025-05-22T08:45:32Z caller=logging.go:85 method=Health result=2 took=49.109µs +ts=2025-05-22T08:45:35Z caller=logging.go:85 method=Health result=2 took=37.559µs +ts=2025-05-22T08:45:35Z caller=logging.go:85 method=Health result=2 took=44.299µs +ts=2025-05-22T08:45:38Z caller=logging.go:85 method=Health result=2 took=52.709µs +ts=2025-05-22T08:45:38Z caller=logging.go:85 method=Health result=2 took=53.909µs +ts=2025-05-22T08:45:41Z caller=logging.go:85 method=Health result=2 took=40.639µs +ts=2025-05-22T08:45:41Z caller=logging.go:85 method=Health result=2 took=102.447µs +ts=2025-05-22T08:45:44Z caller=logging.go:85 method=Health result=2 took=45.059µs +ts=2025-05-22T08:45:44Z caller=logging.go:85 method=Health result=2 took=26.069µs +ts=2025-05-22T08:45:47Z caller=logging.go:85 method=Health result=2 took=45.109µs +ts=2025-05-22T08:45:47Z caller=logging.go:85 method=Health result=2 took=49.139µs +ts=2025-05-22T08:45:50Z caller=logging.go:85 method=Health result=2 took=34.399µs +ts=2025-05-22T08:45:50Z caller=logging.go:85 method=Health result=2 took=64.188µs +ts=2025-05-22T08:45:53Z caller=logging.go:85 method=Health result=2 took=29.41µs +ts=2025-05-22T08:45:53Z caller=logging.go:85 method=Health result=2 took=29.84µs +ts=2025-05-22T08:45:56Z caller=logging.go:85 method=Health result=2 took=41.509µs +ts=2025-05-22T08:45:56Z caller=logging.go:85 method=Health result=2 took=32.829µs +ts=2025-05-22T08:45:59Z caller=logging.go:85 method=Health result=2 took=36.589µs +ts=2025-05-22T08:45:59Z caller=logging.go:85 method=Health result=2 took=36.559µs +ts=2025-05-22T08:46:02Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T08:46:02Z caller=logging.go:85 method=Health result=2 took=48.479µs +ts=2025-05-22T08:46:05Z caller=logging.go:85 method=Health result=2 took=30.899µs +ts=2025-05-22T08:46:05Z caller=logging.go:85 method=Health result=2 took=45.079µs +ts=2025-05-22T08:46:08Z caller=logging.go:85 method=Health result=2 took=51.779µs +ts=2025-05-22T08:46:08Z caller=logging.go:85 method=Health result=2 took=23.46µs +ts=2025-05-22T08:46:11Z caller=logging.go:85 method=Health result=2 took=39.289µs +ts=2025-05-22T08:46:11Z caller=logging.go:85 method=Health result=2 took=40.039µs +ts=2025-05-22T08:46:14Z caller=logging.go:85 method=Health result=2 took=39.669µs +ts=2025-05-22T08:46:14Z caller=logging.go:85 method=Health result=2 took=40.039µs +ts=2025-05-22T08:46:17Z caller=logging.go:85 method=Health result=2 took=33.089µs +ts=2025-05-22T08:46:17Z caller=logging.go:85 method=Health result=2 took=71.029µs +ts=2025-05-22T08:46:20Z caller=logging.go:85 method=Health result=2 took=30.769µs +ts=2025-05-22T08:46:20Z caller=logging.go:85 method=Health result=2 took=45.938µs +ts=2025-05-22T08:46:23Z caller=logging.go:85 method=Health result=2 took=38.869µs +ts=2025-05-22T08:46:23Z caller=logging.go:85 method=Health result=2 took=47.739µs +ts=2025-05-22T08:46:26Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T08:46:26Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T08:46:29Z caller=logging.go:85 method=Health result=2 took=42.209µs +ts=2025-05-22T08:46:29Z caller=logging.go:85 method=Health result=2 took=48.378µs +ts=2025-05-22T08:46:32Z caller=logging.go:85 method=Health result=2 took=54.119µs +ts=2025-05-22T08:46:32Z caller=logging.go:85 method=Health result=2 took=54.109µs +ts=2025-05-22T08:46:35Z caller=logging.go:85 method=Health result=2 took=37.719µs +ts=2025-05-22T08:46:35Z caller=logging.go:85 method=Health result=2 took=37.019µs +ts=2025-05-22T08:46:38Z caller=logging.go:85 method=Health result=2 took=42.879µs +ts=2025-05-22T08:46:38Z caller=logging.go:85 method=Health result=2 took=41.499µs +ts=2025-05-22T08:46:41Z caller=logging.go:85 method=Health result=2 took=43.009µs +ts=2025-05-22T08:46:41Z caller=logging.go:85 method=Health result=2 took=46.859µs +ts=2025-05-22T08:46:44Z caller=logging.go:85 method=Health result=2 took=45.228µs +ts=2025-05-22T08:46:44Z caller=logging.go:85 method=Health result=2 took=49.869µs +ts=2025-05-22T08:46:47Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T08:46:47Z caller=logging.go:85 method=Health result=2 took=42.329µs +ts=2025-05-22T08:46:50Z caller=logging.go:85 method=Health result=2 took=28.06µs +ts=2025-05-22T08:46:50Z caller=logging.go:85 method=Health result=2 took=28.02µs +ts=2025-05-22T08:46:53Z caller=logging.go:85 method=Health result=2 took=52.549µs +ts=2025-05-22T08:46:53Z caller=logging.go:85 method=Health result=2 took=52.569µs +ts=2025-05-22T08:46:56Z caller=logging.go:85 method=Health result=2 took=30.199µs +ts=2025-05-22T08:46:56Z caller=logging.go:85 method=Health result=2 took=30.209µs +ts=2025-05-22T08:46:59Z caller=logging.go:85 method=Health result=2 took=38.759µs +ts=2025-05-22T08:46:59Z caller=logging.go:85 method=Health result=2 took=46.699µs +ts=2025-05-22T08:47:02Z caller=logging.go:85 method=Health result=2 took=42.799µs +ts=2025-05-22T08:47:02Z caller=logging.go:85 method=Health result=2 took=33.369µs +ts=2025-05-22T08:47:05Z caller=logging.go:85 method=Health result=2 took=42.399µs +ts=2025-05-22T08:47:05Z caller=logging.go:85 method=Health result=2 took=18.17µs +ts=2025-05-22T08:47:08Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T08:47:08Z caller=logging.go:85 method=Health result=2 took=47.939µs +ts=2025-05-22T08:47:11Z caller=logging.go:85 method=Health result=2 took=32.739µs +ts=2025-05-22T08:47:11Z caller=logging.go:85 method=Health result=2 took=47.538µs +ts=2025-05-22T08:47:14Z caller=logging.go:85 method=Health result=2 took=30.759µs +ts=2025-05-22T08:47:14Z caller=logging.go:85 method=Health result=2 took=17.96µs +ts=2025-05-22T08:47:17Z caller=logging.go:85 method=Health result=2 took=42.049µs +ts=2025-05-22T08:47:17Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T08:47:20Z caller=logging.go:85 method=Health result=2 took=39.969µs +ts=2025-05-22T08:47:20Z caller=logging.go:85 method=Health result=2 took=40.029µs +ts=2025-05-22T08:47:23Z caller=logging.go:85 method=Health result=2 took=39.069µs +ts=2025-05-22T08:47:23Z caller=logging.go:85 method=Health result=2 took=47.179µs +ts=2025-05-22T08:47:26Z caller=logging.go:85 method=Health result=2 took=58.049µs +ts=2025-05-22T08:47:26Z caller=logging.go:85 method=Health result=2 took=58.089µs +ts=2025-05-22T08:47:29Z caller=logging.go:85 method=Health result=2 took=41.359µs +ts=2025-05-22T08:47:29Z caller=logging.go:85 method=Health result=2 took=50.719µs +ts=2025-05-22T08:47:32Z caller=logging.go:85 method=Health result=2 took=38.009µs +ts=2025-05-22T08:47:32Z caller=logging.go:85 method=Health result=2 took=46.219µs +ts=2025-05-22T08:47:35Z caller=logging.go:85 method=Health result=2 took=37.649µs +ts=2025-05-22T08:47:35Z caller=logging.go:85 method=Health result=2 took=37.729µs +ts=2025-05-22T08:47:38Z caller=logging.go:85 method=Health result=2 took=36.279µs +ts=2025-05-22T08:47:38Z caller=logging.go:85 method=Health result=2 took=36.809µs +ts=2025-05-22T08:47:41Z caller=logging.go:85 method=Health result=2 took=42.669µs +ts=2025-05-22T08:47:41Z caller=logging.go:85 method=Health result=2 took=51.969µs +ts=2025-05-22T08:47:44Z caller=logging.go:85 method=Health result=2 took=45.259µs +ts=2025-05-22T08:47:44Z caller=logging.go:85 method=Health result=2 took=49.069µs +ts=2025-05-22T08:47:47Z caller=logging.go:85 method=Health result=2 took=35.449µs +ts=2025-05-22T08:47:47Z caller=logging.go:85 method=Health result=2 took=35.429µs +ts=2025-05-22T08:47:50Z caller=logging.go:85 method=Health result=2 took=38.009µs +ts=2025-05-22T08:47:50Z caller=logging.go:85 method=Health result=2 took=38.059µs +ts=2025-05-22T08:47:53Z caller=logging.go:85 method=Health result=2 took=39.069µs +ts=2025-05-22T08:47:53Z caller=logging.go:85 method=Health result=2 took=42.378µs +ts=2025-05-22T08:47:56Z caller=logging.go:85 method=Health result=2 took=50.419µs +ts=2025-05-22T08:47:56Z caller=logging.go:85 method=Health result=2 took=50.179µs +ts=2025-05-22T08:47:59Z caller=logging.go:85 method=Health result=2 took=40.479µs +ts=2025-05-22T08:47:59Z caller=logging.go:85 method=Health result=2 took=23.189µs +ts=2025-05-22T08:48:02Z caller=logging.go:85 method=Health result=2 took=40.009µs +ts=2025-05-22T08:48:02Z caller=logging.go:85 method=Health result=2 took=40.559µs +ts=2025-05-22T08:48:05Z caller=logging.go:85 method=Health result=2 took=45.609µs +ts=2025-05-22T08:48:05Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T08:48:08Z caller=logging.go:85 method=Health result=2 took=39.499µs +ts=2025-05-22T08:48:08Z caller=logging.go:85 method=Health result=2 took=40.279µs +ts=2025-05-22T08:48:11Z caller=logging.go:85 method=Health result=2 took=30.9µs +ts=2025-05-22T08:48:11Z caller=logging.go:85 method=Health result=2 took=46.429µs +ts=2025-05-22T08:48:14Z caller=logging.go:85 method=Health result=2 took=43.959µs +ts=2025-05-22T08:48:14Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T08:48:17Z caller=logging.go:85 method=Health result=2 took=37.199µs +ts=2025-05-22T08:48:17Z caller=logging.go:85 method=Health result=2 took=888.999µs +ts=2025-05-22T08:48:20Z caller=logging.go:85 method=Health result=2 took=30.399µs +ts=2025-05-22T08:48:20Z caller=logging.go:85 method=Health result=2 took=30.379µs +ts=2025-05-22T08:48:23Z caller=logging.go:85 method=Health result=2 took=32.399µs +ts=2025-05-22T08:48:23Z caller=logging.go:85 method=Health result=2 took=46.269µs +ts=2025-05-22T08:48:26Z caller=logging.go:85 method=Health result=2 took=38.789µs +ts=2025-05-22T08:48:26Z caller=logging.go:85 method=Health result=2 took=39.119µs +ts=2025-05-22T08:48:29Z caller=logging.go:85 method=Health result=2 took=42.429µs +ts=2025-05-22T08:48:29Z caller=logging.go:85 method=Health result=2 took=31.369µs +ts=2025-05-22T08:48:32Z caller=logging.go:85 method=Health result=2 took=45.959µs +ts=2025-05-22T08:48:32Z caller=logging.go:85 method=Health result=2 took=48.099µs +ts=2025-05-22T08:48:35Z caller=logging.go:85 method=Health result=2 took=44.499µs +ts=2025-05-22T08:48:35Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T08:48:38Z caller=logging.go:85 method=Health result=2 took=41.159µs +ts=2025-05-22T08:48:38Z caller=logging.go:85 method=Health result=2 took=38.559µs +ts=2025-05-22T08:48:41Z caller=logging.go:85 method=Health result=2 took=41.239µs +ts=2025-05-22T08:48:41Z caller=logging.go:85 method=Health result=2 took=46.589µs +ts=2025-05-22T08:48:44Z caller=logging.go:85 method=Health result=2 took=37.829µs +ts=2025-05-22T08:48:44Z caller=logging.go:85 method=Health result=2 took=36.359µs +ts=2025-05-22T08:48:47Z caller=logging.go:85 method=Health result=2 took=39.859µs +ts=2025-05-22T08:48:47Z caller=logging.go:85 method=Health result=2 took=39.139µs +ts=2025-05-22T08:48:50Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T08:48:50Z caller=logging.go:85 method=Health result=2 took=44.729µs +ts=2025-05-22T08:48:53Z caller=logging.go:85 method=Health result=2 took=27.1µs +ts=2025-05-22T08:48:53Z caller=logging.go:85 method=Health result=2 took=41.749µs +ts=2025-05-22T08:48:56Z caller=logging.go:85 method=Health result=2 took=41.239µs +ts=2025-05-22T08:48:56Z caller=logging.go:85 method=Health result=2 took=48.349µs +ts=2025-05-22T08:48:59Z caller=logging.go:85 method=Health result=2 took=41.369µs +ts=2025-05-22T08:48:59Z caller=logging.go:85 method=Health result=2 took=50.909µs +ts=2025-05-22T08:49:02Z caller=logging.go:85 method=Health result=2 took=42.009µs +ts=2025-05-22T08:49:02Z caller=logging.go:85 method=Health result=2 took=47.879µs +ts=2025-05-22T08:49:05Z caller=logging.go:85 method=Health result=2 took=34.669µs +ts=2025-05-22T08:49:05Z caller=logging.go:85 method=Health result=2 took=55.279µs +ts=2025-05-22T08:49:08Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T08:49:08Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T08:49:11Z caller=logging.go:85 method=Health result=2 took=35.849µs +ts=2025-05-22T08:49:11Z caller=logging.go:85 method=Health result=2 took=36.609µs +ts=2025-05-22T08:49:14Z caller=logging.go:85 method=Health result=2 took=29.319µs +ts=2025-05-22T08:49:14Z caller=logging.go:85 method=Health result=2 took=29.359µs +ts=2025-05-22T08:49:17Z caller=logging.go:85 method=Health result=2 took=37.39µs +ts=2025-05-22T08:49:17Z caller=logging.go:85 method=Health result=2 took=38.03µs +ts=2025-05-22T08:49:20Z caller=logging.go:85 method=Health result=2 took=28.509µs +ts=2025-05-22T08:49:20Z caller=logging.go:85 method=Health result=2 took=28.529µs +ts=2025-05-22T08:49:23Z caller=logging.go:85 method=Health result=2 took=40.659µs +ts=2025-05-22T08:49:23Z caller=logging.go:85 method=Health result=2 took=41.169µs +ts=2025-05-22T08:49:26Z caller=logging.go:85 method=Health result=2 took=45.249µs +ts=2025-05-22T08:49:26Z caller=logging.go:85 method=Health result=2 took=26.82µs +ts=2025-05-22T08:49:29Z caller=logging.go:85 method=Health result=2 took=42.639µs +ts=2025-05-22T08:49:29Z caller=logging.go:85 method=Health result=2 took=41.789µs +ts=2025-05-22T08:49:32Z caller=logging.go:85 method=Health result=2 took=36.119µs +ts=2025-05-22T08:49:32Z caller=logging.go:85 method=Health result=2 took=20.66µs +ts=2025-05-22T08:49:35Z caller=logging.go:85 method=Health result=2 took=42.049µs +ts=2025-05-22T08:49:35Z caller=logging.go:85 method=Health result=2 took=29.58µs +ts=2025-05-22T08:49:38Z caller=logging.go:85 method=Health result=2 took=47.739µs +ts=2025-05-22T08:49:38Z caller=logging.go:85 method=Health result=2 took=47.769µs +ts=2025-05-22T08:49:41Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T08:49:41Z caller=logging.go:85 method=Health result=2 took=30.239µs +ts=2025-05-22T08:49:44Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T08:49:44Z caller=logging.go:85 method=Health result=2 took=41.089µs +ts=2025-05-22T08:49:47Z caller=logging.go:85 method=Health result=2 took=48.249µs +ts=2025-05-22T08:49:47Z caller=logging.go:85 method=Health result=2 took=49.159µs +ts=2025-05-22T08:49:50Z caller=logging.go:85 method=Health result=2 took=60.858µs +ts=2025-05-22T08:49:50Z caller=logging.go:85 method=Health result=2 took=60.668µs +ts=2025-05-22T08:49:53Z caller=logging.go:85 method=Health result=2 took=43.659µs +ts=2025-05-22T08:49:53Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T08:49:56Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T08:49:56Z caller=logging.go:85 method=Health result=2 took=31.769µs +ts=2025-05-22T08:49:59Z caller=logging.go:85 method=Health result=2 took=45.709µs +ts=2025-05-22T08:49:59Z caller=logging.go:85 method=Health result=2 took=52.239µs +ts=2025-05-22T08:50:02Z caller=logging.go:85 method=Health result=2 took=45.199µs +ts=2025-05-22T08:50:02Z caller=logging.go:85 method=Health result=2 took=43.389µs +ts=2025-05-22T08:50:05Z caller=logging.go:85 method=Health result=2 took=30.2µs +ts=2025-05-22T08:50:05Z caller=logging.go:85 method=Health result=2 took=14.8µs +ts=2025-05-22T08:50:08Z caller=logging.go:85 method=Health result=2 took=45.808µs +ts=2025-05-22T08:50:08Z caller=logging.go:85 method=Health result=2 took=52.919µs +ts=2025-05-22T08:50:11Z caller=logging.go:85 method=Health result=2 took=42.349µs +ts=2025-05-22T08:50:11Z caller=logging.go:85 method=Health result=2 took=32.479µs +ts=2025-05-22T08:50:14Z caller=logging.go:85 method=Health result=2 took=36.729µs +ts=2025-05-22T08:50:14Z caller=logging.go:85 method=Health result=2 took=44.889µs +ts=2025-05-22T08:50:17Z caller=logging.go:85 method=Health result=2 took=63.388µs +ts=2025-05-22T08:50:17Z caller=logging.go:85 method=Health result=2 took=36.48µs +ts=2025-05-22T08:50:20Z caller=logging.go:85 method=Health result=2 took=41.809µs +ts=2025-05-22T08:50:20Z caller=logging.go:85 method=Health result=2 took=49.439µs +ts=2025-05-22T08:50:23Z caller=logging.go:85 method=Health result=2 took=41.869µs +ts=2025-05-22T08:50:23Z caller=logging.go:85 method=Health result=2 took=30.019µs +ts=2025-05-22T08:50:26Z caller=logging.go:85 method=Health result=2 took=41.499µs +ts=2025-05-22T08:50:26Z caller=logging.go:85 method=Health result=2 took=46.049µs +ts=2025-05-22T08:50:29Z caller=logging.go:85 method=Health result=2 took=44.409µs +ts=2025-05-22T08:50:29Z caller=logging.go:85 method=Health result=2 took=45.259µs +ts=2025-05-22T08:50:32Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T08:50:32Z caller=logging.go:85 method=Health result=2 took=37.109µs +ts=2025-05-22T08:50:35Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T08:50:35Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T08:50:38Z caller=logging.go:85 method=Health result=2 took=41.129µs +ts=2025-05-22T08:50:38Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T08:50:41Z caller=logging.go:85 method=Health result=2 took=36.849µs +ts=2025-05-22T08:50:41Z caller=logging.go:85 method=Health result=2 took=27.439µs +ts=2025-05-22T08:50:44Z caller=logging.go:85 method=Health result=2 took=45.499µs +ts=2025-05-22T08:50:44Z caller=logging.go:85 method=Health result=2 took=46.159µs +ts=2025-05-22T08:50:47Z caller=logging.go:85 method=Health result=2 took=58.319µs +ts=2025-05-22T08:50:47Z caller=logging.go:85 method=Health result=2 took=22.069µs +ts=2025-05-22T08:50:50Z caller=logging.go:85 method=Health result=2 took=36.169µs +ts=2025-05-22T08:50:50Z caller=logging.go:85 method=Health result=2 took=35.239µs +ts=2025-05-22T08:50:53Z caller=logging.go:85 method=Health result=2 took=39.889µs +ts=2025-05-22T08:50:53Z caller=logging.go:85 method=Health result=2 took=45.609µs +ts=2025-05-22T08:50:56Z caller=logging.go:85 method=Health result=2 took=42.679µs +ts=2025-05-22T08:50:56Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T08:50:59Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:50:59Z caller=logging.go:85 method=Health result=2 took=43.039µs +ts=2025-05-22T08:51:02Z caller=logging.go:85 method=Health result=2 took=44.769µs +ts=2025-05-22T08:51:02Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T08:51:05Z caller=logging.go:85 method=Health result=2 took=40.989µs +ts=2025-05-22T08:51:05Z caller=logging.go:85 method=Health result=2 took=46.449µs +ts=2025-05-22T08:51:08Z caller=logging.go:85 method=Health result=2 took=29.029µs +ts=2025-05-22T08:51:08Z caller=logging.go:85 method=Health result=2 took=15.339µs +ts=2025-05-22T08:51:11Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T08:51:11Z caller=logging.go:85 method=Health result=2 took=48.839µs +ts=2025-05-22T08:51:14Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T08:51:14Z caller=logging.go:85 method=Health result=2 took=42.149µs +ts=2025-05-22T08:51:17Z caller=logging.go:85 method=Health result=2 took=46.809µs +ts=2025-05-22T08:51:17Z caller=logging.go:85 method=Health result=2 took=49.258µs +ts=2025-05-22T08:51:20Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T08:51:20Z caller=logging.go:85 method=Health result=2 took=46.518µs +ts=2025-05-22T08:51:23Z caller=logging.go:85 method=Health result=2 took=51.779µs +ts=2025-05-22T08:51:23Z caller=logging.go:85 method=Health result=2 took=22.809µs +ts=2025-05-22T08:51:26Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T08:51:26Z caller=logging.go:85 method=Health result=2 took=47.689µs +ts=2025-05-22T08:51:29Z caller=logging.go:85 method=Health result=2 took=40.739µs +ts=2025-05-22T08:51:29Z caller=logging.go:85 method=Health result=2 took=27.35µs +ts=2025-05-22T08:51:32Z caller=logging.go:85 method=Health result=2 took=38.339µs +ts=2025-05-22T08:51:32Z caller=logging.go:85 method=Health result=2 took=38.299µs +ts=2025-05-22T08:51:35Z caller=logging.go:85 method=Health result=2 took=39.149µs +ts=2025-05-22T08:51:35Z caller=logging.go:85 method=Health result=2 took=40.949µs +ts=2025-05-22T08:51:38Z caller=logging.go:85 method=Health result=2 took=42.128µs +ts=2025-05-22T08:51:38Z caller=logging.go:85 method=Health result=2 took=46.379µs +ts=2025-05-22T08:51:41Z caller=logging.go:85 method=Health result=2 took=41.009µs +ts=2025-05-22T08:51:41Z caller=logging.go:85 method=Health result=2 took=41.279µs +ts=2025-05-22T08:51:44Z caller=logging.go:85 method=Health result=2 took=33.819µs +ts=2025-05-22T08:51:44Z caller=logging.go:85 method=Health result=2 took=46.528µs +ts=2025-05-22T08:51:47Z caller=logging.go:85 method=Health result=2 took=28.489µs +ts=2025-05-22T08:51:47Z caller=logging.go:85 method=Health result=2 took=28.489µs +ts=2025-05-22T08:51:50Z caller=logging.go:85 method=Health result=2 took=30.109µs +ts=2025-05-22T08:51:50Z caller=logging.go:85 method=Health result=2 took=10.239µs +ts=2025-05-22T08:51:53Z caller=logging.go:85 method=Health result=2 took=29.839µs +ts=2025-05-22T08:51:53Z caller=logging.go:85 method=Health result=2 took=15.72µs +ts=2025-05-22T08:51:56Z caller=logging.go:85 method=Health result=2 took=31.159µs +ts=2025-05-22T08:51:56Z caller=logging.go:85 method=Health result=2 took=47.809µs +ts=2025-05-22T08:51:59Z caller=logging.go:85 method=Health result=2 took=45.439µs +ts=2025-05-22T08:51:59Z caller=logging.go:85 method=Health result=2 took=44.639µs +ts=2025-05-22T08:52:02Z caller=logging.go:85 method=Health result=2 took=45.809µs +ts=2025-05-22T08:52:02Z caller=logging.go:85 method=Health result=2 took=60.038µs +ts=2025-05-22T08:52:05Z caller=logging.go:85 method=Health result=2 took=42.529µs +ts=2025-05-22T08:52:05Z caller=logging.go:85 method=Health result=2 took=42.219µs +ts=2025-05-22T08:52:08Z caller=logging.go:85 method=Health result=2 took=59.838µs +ts=2025-05-22T08:52:08Z caller=logging.go:85 method=Health result=2 took=59.249µs +ts=2025-05-22T08:52:11Z caller=logging.go:85 method=Health result=2 took=38.209µs +ts=2025-05-22T08:52:11Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T08:52:14Z caller=logging.go:85 method=Health result=2 took=45.129µs +ts=2025-05-22T08:52:14Z caller=logging.go:85 method=Health result=2 took=49.009µs +ts=2025-05-22T08:52:17Z caller=logging.go:85 method=Health result=2 took=32.949µs +ts=2025-05-22T08:52:17Z caller=logging.go:85 method=Health result=2 took=14.53µs +ts=2025-05-22T08:52:20Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T08:52:20Z caller=logging.go:85 method=Health result=2 took=40.759µs +ts=2025-05-22T08:52:23Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T08:52:23Z caller=logging.go:85 method=Health result=2 took=39.789µs +ts=2025-05-22T08:52:26Z caller=logging.go:85 method=Health result=2 took=29.719µs +ts=2025-05-22T08:52:26Z caller=logging.go:85 method=Health result=2 took=34.429µs +ts=2025-05-22T08:52:29Z caller=logging.go:85 method=Health result=2 took=28.889µs +ts=2025-05-22T08:52:29Z caller=logging.go:85 method=Health result=2 took=16.599µs +ts=2025-05-22T08:52:32Z caller=logging.go:85 method=Health result=2 took=38.159µs +ts=2025-05-22T08:52:32Z caller=logging.go:85 method=Health result=2 took=41.539µs +ts=2025-05-22T08:52:35Z caller=logging.go:85 method=Health result=2 took=71.488µs +ts=2025-05-22T08:52:35Z caller=logging.go:85 method=Health result=2 took=35.929µs +ts=2025-05-22T08:52:38Z caller=logging.go:85 method=Health result=2 took=45.669µs +ts=2025-05-22T08:52:38Z caller=logging.go:85 method=Health result=2 took=45.939µs +ts=2025-05-22T08:52:41Z caller=logging.go:85 method=Health result=2 took=36.179µs +ts=2025-05-22T08:52:41Z caller=logging.go:85 method=Health result=2 took=36.32µs +ts=2025-05-22T08:52:44Z caller=logging.go:85 method=Health result=2 took=46.068µs +ts=2025-05-22T08:52:44Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T08:52:47Z caller=logging.go:85 method=Health result=2 took=39.719µs +ts=2025-05-22T08:52:47Z caller=logging.go:85 method=Health result=2 took=38.359µs +ts=2025-05-22T08:52:50Z caller=logging.go:85 method=Health result=2 took=36.109µs +ts=2025-05-22T08:52:50Z caller=logging.go:85 method=Health result=2 took=23.079µs +ts=2025-05-22T08:52:53Z caller=logging.go:85 method=Health result=2 took=43.549µs +ts=2025-05-22T08:52:53Z caller=logging.go:85 method=Health result=2 took=47.929µs +ts=2025-05-22T08:52:56Z caller=logging.go:85 method=Health result=2 took=33.249µs +ts=2025-05-22T08:52:56Z caller=logging.go:85 method=Health result=2 took=44.079µs +ts=2025-05-22T08:52:59Z caller=logging.go:85 method=Health result=2 took=29.2µs +ts=2025-05-22T08:52:59Z caller=logging.go:85 method=Health result=2 took=26.16µs +ts=2025-05-22T08:53:02Z caller=logging.go:85 method=Health result=2 took=37.25µs +ts=2025-05-22T08:53:02Z caller=logging.go:85 method=Health result=2 took=57.379µs +ts=2025-05-22T08:53:05Z caller=logging.go:85 method=Health result=2 took=44.058µs +ts=2025-05-22T08:53:05Z caller=logging.go:85 method=Health result=2 took=61.168µs +ts=2025-05-22T08:53:08Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T08:53:08Z caller=logging.go:85 method=Health result=2 took=44.819µs +ts=2025-05-22T08:53:11Z caller=logging.go:85 method=Health result=2 took=39.149µs +ts=2025-05-22T08:53:11Z caller=logging.go:85 method=Health result=2 took=46.939µs +ts=2025-05-22T08:53:14Z caller=logging.go:85 method=Health result=2 took=40.519µs +ts=2025-05-22T08:53:14Z caller=logging.go:85 method=Health result=2 took=41.349µs +ts=2025-05-22T08:53:17Z caller=logging.go:85 method=Health result=2 took=38.889µs +ts=2025-05-22T08:53:17Z caller=logging.go:85 method=Health result=2 took=41.829µs +ts=2025-05-22T08:53:20Z caller=logging.go:85 method=Health result=2 took=30.269µs +ts=2025-05-22T08:53:20Z caller=logging.go:85 method=Health result=2 took=30.389µs +ts=2025-05-22T08:53:23Z caller=logging.go:85 method=Health result=2 took=17.109µs +ts=2025-05-22T08:53:23Z caller=logging.go:85 method=Health result=2 took=38.549µs +ts=2025-05-22T08:53:26Z caller=logging.go:85 method=Health result=2 took=39.909µs +ts=2025-05-22T08:53:26Z caller=logging.go:85 method=Health result=2 took=48.119µs +ts=2025-05-22T08:53:29Z caller=logging.go:85 method=Health result=2 took=39.889µs +ts=2025-05-22T08:53:29Z caller=logging.go:85 method=Health result=2 took=35.749µs +ts=2025-05-22T08:53:32Z caller=logging.go:85 method=Health result=2 took=27.409µs +ts=2025-05-22T08:53:32Z caller=logging.go:85 method=Health result=2 took=27.509µs +ts=2025-05-22T08:53:35Z caller=logging.go:85 method=Health result=2 took=27.64µs +ts=2025-05-22T08:53:35Z caller=logging.go:85 method=Health result=2 took=46.219µs +ts=2025-05-22T08:53:38Z caller=logging.go:85 method=Health result=2 took=55.388µs +ts=2025-05-22T08:53:38Z caller=logging.go:85 method=Health result=2 took=50.859µs +ts=2025-05-22T08:53:41Z caller=logging.go:85 method=Health result=2 took=41.899µs +ts=2025-05-22T08:53:41Z caller=logging.go:85 method=Health result=2 took=51.139µs +ts=2025-05-22T08:53:44Z caller=logging.go:85 method=Health result=2 took=43.149µs +ts=2025-05-22T08:53:44Z caller=logging.go:85 method=Health result=2 took=36.73µs +ts=2025-05-22T08:53:47Z caller=logging.go:85 method=Health result=2 took=37.579µs +ts=2025-05-22T08:53:47Z caller=logging.go:85 method=Health result=2 took=45.099µs +ts=2025-05-22T08:53:50Z caller=logging.go:85 method=Health result=2 took=37.049µs +ts=2025-05-22T08:53:50Z caller=logging.go:85 method=Health result=2 took=45.989µs +ts=2025-05-22T08:53:53Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T08:53:53Z caller=logging.go:85 method=Health result=2 took=49.009µs +ts=2025-05-22T08:53:56Z caller=logging.go:85 method=Health result=2 took=28.639µs +ts=2025-05-22T08:53:56Z caller=logging.go:85 method=Health result=2 took=28.679µs +ts=2025-05-22T08:53:59Z caller=logging.go:85 method=Health result=2 took=36.249µs +ts=2025-05-22T08:53:59Z caller=logging.go:85 method=Health result=2 took=36.529µs +ts=2025-05-22T08:54:02Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T08:54:02Z caller=logging.go:85 method=Health result=2 took=44.249µs +ts=2025-05-22T08:54:05Z caller=logging.go:85 method=Health result=2 took=28.279µs +ts=2025-05-22T08:54:05Z caller=logging.go:85 method=Health result=2 took=27.779µs +ts=2025-05-22T08:54:08Z caller=logging.go:85 method=Health result=2 took=36.349µs +ts=2025-05-22T08:54:08Z caller=logging.go:85 method=Health result=2 took=35.529µs +ts=2025-05-22T08:54:11Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T08:54:11Z caller=logging.go:85 method=Health result=2 took=48.349µs +ts=2025-05-22T08:54:14Z caller=logging.go:85 method=Health result=2 took=44.209µs +ts=2025-05-22T08:54:14Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T08:54:17Z caller=logging.go:85 method=Health result=2 took=76.248µs +ts=2025-05-22T08:54:17Z caller=logging.go:85 method=Health result=2 took=35.369µs +ts=2025-05-22T08:54:20Z caller=logging.go:85 method=Health result=2 took=46.009µs +ts=2025-05-22T08:54:20Z caller=logging.go:85 method=Health result=2 took=51.229µs +ts=2025-05-22T08:54:23Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T08:54:23Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T08:54:26Z caller=logging.go:85 method=Health result=2 took=36.979µs +ts=2025-05-22T08:54:26Z caller=logging.go:85 method=Health result=2 took=50.799µs +ts=2025-05-22T08:54:29Z caller=logging.go:85 method=Health result=2 took=40.549µs +ts=2025-05-22T08:54:29Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T08:54:32Z caller=logging.go:85 method=Health result=2 took=41.349µs +ts=2025-05-22T08:54:32Z caller=logging.go:85 method=Health result=2 took=42.049µs +ts=2025-05-22T08:54:35Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T08:54:35Z caller=logging.go:85 method=Health result=2 took=47.969µs +ts=2025-05-22T08:54:38Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T08:54:38Z caller=logging.go:85 method=Health result=2 took=43.099µs +ts=2025-05-22T08:54:41Z caller=logging.go:85 method=Health result=2 took=30.66µs +ts=2025-05-22T08:54:41Z caller=logging.go:85 method=Health result=2 took=30.25µs +ts=2025-05-22T08:54:44Z caller=logging.go:85 method=Health result=2 took=44.109µs +ts=2025-05-22T08:54:44Z caller=logging.go:85 method=Health result=2 took=48.809µs +ts=2025-05-22T08:54:47Z caller=logging.go:85 method=Health result=2 took=37.209µs +ts=2025-05-22T08:54:47Z caller=logging.go:85 method=Health result=2 took=37.189µs +ts=2025-05-22T08:54:50Z caller=logging.go:85 method=Health result=2 took=45.319µs +ts=2025-05-22T08:54:50Z caller=logging.go:85 method=Health result=2 took=45.609µs +ts=2025-05-22T08:54:53Z caller=logging.go:85 method=Health result=2 took=46.009µs +ts=2025-05-22T08:54:53Z caller=logging.go:85 method=Health result=2 took=45.969µs +ts=2025-05-22T08:54:56Z caller=logging.go:85 method=Health result=2 took=43.689µs +ts=2025-05-22T08:54:56Z caller=logging.go:85 method=Health result=2 took=42.179µs +ts=2025-05-22T08:54:59Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T08:54:59Z caller=logging.go:85 method=Health result=2 took=48.559µs +ts=2025-05-22T08:55:02Z caller=logging.go:85 method=Health result=2 took=41.679µs +ts=2025-05-22T08:55:02Z caller=logging.go:85 method=Health result=2 took=46.569µs +ts=2025-05-22T08:55:05Z caller=logging.go:85 method=Health result=2 took=52.068µs +ts=2025-05-22T08:55:05Z caller=logging.go:85 method=Health result=2 took=42.189µs +ts=2025-05-22T08:55:08Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T08:55:08Z caller=logging.go:85 method=Health result=2 took=47.349µs +ts=2025-05-22T08:55:11Z caller=logging.go:85 method=Health result=2 took=55.349µs +ts=2025-05-22T08:55:11Z caller=logging.go:85 method=Health result=2 took=54.028µs +ts=2025-05-22T08:55:14Z caller=logging.go:85 method=Health result=2 took=38.169µs +ts=2025-05-22T08:55:14Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T08:55:17Z caller=logging.go:85 method=Health result=2 took=40.939µs +ts=2025-05-22T08:55:17Z caller=logging.go:85 method=Health result=2 took=61.678µs +ts=2025-05-22T08:55:20Z caller=logging.go:85 method=Health result=2 took=44.608µs +ts=2025-05-22T08:55:20Z caller=logging.go:85 method=Health result=2 took=44.248µs +ts=2025-05-22T08:55:23Z caller=logging.go:85 method=Health result=2 took=44.789µs +ts=2025-05-22T08:55:23Z caller=logging.go:85 method=Health result=2 took=50.919µs +ts=2025-05-22T08:55:26Z caller=logging.go:85 method=Health result=2 took=44.608µs +ts=2025-05-22T08:55:26Z caller=logging.go:85 method=Health result=2 took=51.159µs +ts=2025-05-22T08:55:29Z caller=logging.go:85 method=Health result=2 took=28.489µs +ts=2025-05-22T08:55:29Z caller=logging.go:85 method=Health result=2 took=28.529µs +ts=2025-05-22T08:55:32Z caller=logging.go:85 method=Health result=2 took=28.97µs +ts=2025-05-22T08:55:32Z caller=logging.go:85 method=Health result=2 took=14.949µs +ts=2025-05-22T08:55:35Z caller=logging.go:85 method=Health result=2 took=38.819µs +ts=2025-05-22T08:55:35Z caller=logging.go:85 method=Health result=2 took=38.709µs +ts=2025-05-22T08:55:38Z caller=logging.go:85 method=Health result=2 took=41.819µs +ts=2025-05-22T08:55:38Z caller=logging.go:85 method=Health result=2 took=37.259µs +ts=2025-05-22T08:55:41Z caller=logging.go:85 method=Health result=2 took=40.96µs +ts=2025-05-22T08:55:41Z caller=logging.go:85 method=Health result=2 took=39.87µs +ts=2025-05-22T08:55:44Z caller=logging.go:85 method=Health result=2 took=29.759µs +ts=2025-05-22T08:55:44Z caller=logging.go:85 method=Health result=2 took=15.279µs +ts=2025-05-22T08:55:47Z caller=logging.go:85 method=Health result=2 took=28.759µs +ts=2025-05-22T08:55:47Z caller=logging.go:85 method=Health result=2 took=29.189µs +ts=2025-05-22T08:55:50Z caller=logging.go:85 method=Health result=2 took=30.67µs +ts=2025-05-22T08:55:50Z caller=logging.go:85 method=Health result=2 took=33.81µs +ts=2025-05-22T08:55:53Z caller=logging.go:85 method=Health result=2 took=40.569µs +ts=2025-05-22T08:55:53Z caller=logging.go:85 method=Health result=2 took=41.599µs +ts=2025-05-22T08:55:56Z caller=logging.go:85 method=Health result=2 took=30.689µs +ts=2025-05-22T08:55:56Z caller=logging.go:85 method=Health result=2 took=33.789µs +ts=2025-05-22T08:55:59Z caller=logging.go:85 method=Health result=2 took=35.979µs +ts=2025-05-22T08:55:59Z caller=logging.go:85 method=Health result=2 took=41.869µs +ts=2025-05-22T08:56:02Z caller=logging.go:85 method=Health result=2 took=32.909µs +ts=2025-05-22T08:56:02Z caller=logging.go:85 method=Health result=2 took=34.909µs +ts=2025-05-22T08:56:05Z caller=logging.go:85 method=Health result=2 took=43.549µs +ts=2025-05-22T08:56:05Z caller=logging.go:85 method=Health result=2 took=46.319µs +ts=2025-05-22T08:56:08Z caller=logging.go:85 method=Health result=2 took=35.109µs +ts=2025-05-22T08:56:08Z caller=logging.go:85 method=Health result=2 took=44.329µs +ts=2025-05-22T08:56:11Z caller=logging.go:85 method=Health result=2 took=30.659µs +ts=2025-05-22T08:56:11Z caller=logging.go:85 method=Health result=2 took=61.978µs +ts=2025-05-22T08:56:14Z caller=logging.go:85 method=Health result=2 took=32.149µs +ts=2025-05-22T08:56:14Z caller=logging.go:85 method=Health result=2 took=31.659µs +ts=2025-05-22T08:56:17Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T08:56:17Z caller=logging.go:85 method=Health result=2 took=65.209µs +ts=2025-05-22T08:56:20Z caller=logging.go:85 method=Health result=2 took=30.329µs +ts=2025-05-22T08:56:20Z caller=logging.go:85 method=Health result=2 took=10.399µs +ts=2025-05-22T08:56:23Z caller=logging.go:85 method=Health result=2 took=40.429µs +ts=2025-05-22T08:56:23Z caller=logging.go:85 method=Health result=2 took=32.58µs +ts=2025-05-22T08:56:26Z caller=logging.go:85 method=Health result=2 took=29.659µs +ts=2025-05-22T08:56:26Z caller=logging.go:85 method=Health result=2 took=18.49µs +ts=2025-05-22T08:56:29Z caller=logging.go:85 method=Health result=2 took=33.099µs +ts=2025-05-22T08:56:29Z caller=logging.go:85 method=Health result=2 took=47.649µs +ts=2025-05-22T08:56:32Z caller=logging.go:85 method=Health result=2 took=31.779µs +ts=2025-05-22T08:56:32Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T08:56:35Z caller=logging.go:85 method=Health result=2 took=30.43µs +ts=2025-05-22T08:56:35Z caller=logging.go:85 method=Health result=2 took=15.029µs +ts=2025-05-22T08:56:38Z caller=logging.go:85 method=Health result=2 took=29.309µs +ts=2025-05-22T08:56:38Z caller=logging.go:85 method=Health result=2 took=29.249µs +ts=2025-05-22T08:56:41Z caller=logging.go:85 method=Health result=2 took=43.769µs +ts=2025-05-22T08:56:41Z caller=logging.go:85 method=Health result=2 took=64.108µs +ts=2025-05-22T08:56:44Z caller=logging.go:85 method=Health result=2 took=43.099µs +ts=2025-05-22T08:56:44Z caller=logging.go:85 method=Health result=2 took=49.039µs +ts=2025-05-22T08:56:47Z caller=logging.go:85 method=Health result=2 took=29.219µs +ts=2025-05-22T08:56:47Z caller=logging.go:85 method=Health result=2 took=29.229µs +ts=2025-05-22T08:56:50Z caller=logging.go:85 method=Health result=2 took=47.159µs +ts=2025-05-22T08:56:50Z caller=logging.go:85 method=Health result=2 took=46.579µs +ts=2025-05-22T08:56:53Z caller=logging.go:85 method=Health result=2 took=39.119µs +ts=2025-05-22T08:56:53Z caller=logging.go:85 method=Health result=2 took=37.439µs +ts=2025-05-22T08:56:56Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T08:56:56Z caller=logging.go:85 method=Health result=2 took=39.829µs +ts=2025-05-22T08:56:59Z caller=logging.go:85 method=Health result=2 took=40.029µs +ts=2025-05-22T08:56:59Z caller=logging.go:85 method=Health result=2 took=26.549µs +ts=2025-05-22T08:57:02Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T08:57:02Z caller=logging.go:85 method=Health result=2 took=31.659µs +ts=2025-05-22T08:57:05Z caller=logging.go:85 method=Health result=2 took=42.149µs +ts=2025-05-22T08:57:05Z caller=logging.go:85 method=Health result=2 took=47.899µs +ts=2025-05-22T08:57:08Z caller=logging.go:85 method=Health result=2 took=40.22µs +ts=2025-05-22T08:57:08Z caller=logging.go:85 method=Health result=2 took=39.51µs +ts=2025-05-22T08:57:11Z caller=logging.go:85 method=Health result=2 took=40.959µs +ts=2025-05-22T08:57:11Z caller=logging.go:85 method=Health result=2 took=47.729µs +ts=2025-05-22T08:57:14Z caller=logging.go:85 method=Health result=2 took=43.519µs +ts=2025-05-22T08:57:14Z caller=logging.go:85 method=Health result=2 took=47.479µs +ts=2025-05-22T08:57:17Z caller=logging.go:85 method=Health result=2 took=34.349µs +ts=2025-05-22T08:57:17Z caller=logging.go:85 method=Health result=2 took=34.189µs +ts=2025-05-22T08:57:20Z caller=logging.go:85 method=Health result=2 took=28.399µs +ts=2025-05-22T08:57:20Z caller=logging.go:85 method=Health result=2 took=28.519µs +ts=2025-05-22T08:57:23Z caller=logging.go:85 method=Health result=2 took=28.939µs +ts=2025-05-22T08:57:23Z caller=logging.go:85 method=Health result=2 took=63.828µs +ts=2025-05-22T08:57:26Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T08:57:26Z caller=logging.go:85 method=Health result=2 took=42.769µs +ts=2025-05-22T08:57:29Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T08:57:29Z caller=logging.go:85 method=Health result=2 took=41.669µs +ts=2025-05-22T08:57:32Z caller=logging.go:85 method=Health result=2 took=37.129µs +ts=2025-05-22T08:57:32Z caller=logging.go:85 method=Health result=2 took=37.219µs +ts=2025-05-22T08:57:35Z caller=logging.go:85 method=Health result=2 took=40.47µs +ts=2025-05-22T08:57:35Z caller=logging.go:85 method=Health result=2 took=45.808µs +ts=2025-05-22T08:57:38Z caller=logging.go:85 method=Health result=2 took=42.209µs +ts=2025-05-22T08:57:38Z caller=logging.go:85 method=Health result=2 took=46.209µs +ts=2025-05-22T08:57:41Z caller=logging.go:85 method=Health result=2 took=41.879µs +ts=2025-05-22T08:57:41Z caller=logging.go:85 method=Health result=2 took=45.129µs +ts=2025-05-22T08:57:44Z caller=logging.go:85 method=Health result=2 took=32.23µs +ts=2025-05-22T08:57:44Z caller=logging.go:85 method=Health result=2 took=31.44µs +ts=2025-05-22T08:57:47Z caller=logging.go:85 method=Health result=2 took=37.549µs +ts=2025-05-22T08:57:47Z caller=logging.go:85 method=Health result=2 took=38.089µs +ts=2025-05-22T08:57:50Z caller=logging.go:85 method=Health result=2 took=31.77µs +ts=2025-05-22T08:57:50Z caller=logging.go:85 method=Health result=2 took=33.959µs +ts=2025-05-22T08:57:53Z caller=logging.go:85 method=Health result=2 took=31.1µs +ts=2025-05-22T08:57:53Z caller=logging.go:85 method=Health result=2 took=51.179µs +ts=2025-05-22T08:57:56Z caller=logging.go:85 method=Health result=2 took=42.559µs +ts=2025-05-22T08:57:56Z caller=logging.go:85 method=Health result=2 took=46.489µs +ts=2025-05-22T08:57:59Z caller=logging.go:85 method=Health result=2 took=47.629µs +ts=2025-05-22T08:57:59Z caller=logging.go:85 method=Health result=2 took=47.568µs +ts=2025-05-22T08:58:02Z caller=logging.go:85 method=Health result=2 took=39.069µs +ts=2025-05-22T08:58:02Z caller=logging.go:85 method=Health result=2 took=30.369µs +ts=2025-05-22T08:58:05Z caller=logging.go:85 method=Health result=2 took=31.499µs +ts=2025-05-22T08:58:05Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T08:58:08Z caller=logging.go:85 method=Health result=2 took=47.929µs +ts=2025-05-22T08:58:08Z caller=logging.go:85 method=Health result=2 took=47.959µs +ts=2025-05-22T08:58:11Z caller=logging.go:85 method=Health result=2 took=42.159µs +ts=2025-05-22T08:58:11Z caller=logging.go:85 method=Health result=2 took=43.379µs +ts=2025-05-22T08:58:14Z caller=logging.go:85 method=Health result=2 took=39.879µs +ts=2025-05-22T08:58:14Z caller=logging.go:85 method=Health result=2 took=37.55µs +ts=2025-05-22T08:58:17Z caller=logging.go:85 method=Health result=2 took=174.676µs +ts=2025-05-22T08:58:17Z caller=logging.go:85 method=Health result=2 took=53.899µs +ts=2025-05-22T08:58:20Z caller=logging.go:85 method=Health result=2 took=36.539µs +ts=2025-05-22T08:58:20Z caller=logging.go:85 method=Health result=2 took=42.669µs +ts=2025-05-22T08:58:23Z caller=logging.go:85 method=Health result=2 took=31.25µs +ts=2025-05-22T08:58:23Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T08:58:26Z caller=logging.go:85 method=Health result=2 took=41.759µs +ts=2025-05-22T08:58:26Z caller=logging.go:85 method=Health result=2 took=41.129µs +ts=2025-05-22T08:58:29Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T08:58:29Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T08:58:32Z caller=logging.go:85 method=Health result=2 took=41.669µs +ts=2025-05-22T08:58:32Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T08:58:35Z caller=logging.go:85 method=Health result=2 took=32.03µs +ts=2025-05-22T08:58:35Z caller=logging.go:85 method=Health result=2 took=41.159µs +ts=2025-05-22T08:58:38Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T08:58:38Z caller=logging.go:85 method=Health result=2 took=18.91µs +ts=2025-05-22T08:58:41Z caller=logging.go:85 method=Health result=2 took=41.479µs +ts=2025-05-22T08:58:41Z caller=logging.go:85 method=Health result=2 took=46.479µs +ts=2025-05-22T08:58:44Z caller=logging.go:85 method=Health result=2 took=30.979µs +ts=2025-05-22T08:58:44Z caller=logging.go:85 method=Health result=2 took=17.089µs +ts=2025-05-22T08:58:47Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T08:58:47Z caller=logging.go:85 method=Health result=2 took=43.899µs +ts=2025-05-22T08:58:50Z caller=logging.go:85 method=Health result=2 took=41.589µs +ts=2025-05-22T08:58:50Z caller=logging.go:85 method=Health result=2 took=30.569µs +ts=2025-05-22T08:58:53Z caller=logging.go:85 method=Health result=2 took=39.479µs +ts=2025-05-22T08:58:53Z caller=logging.go:85 method=Health result=2 took=40.019µs +ts=2025-05-22T08:58:56Z caller=logging.go:85 method=Health result=2 took=37.209µs +ts=2025-05-22T08:58:56Z caller=logging.go:85 method=Health result=2 took=46.699µs +ts=2025-05-22T08:58:59Z caller=logging.go:85 method=Health result=2 took=43.209µs +ts=2025-05-22T08:58:59Z caller=logging.go:85 method=Health result=2 took=41.459µs +ts=2025-05-22T08:59:02Z caller=logging.go:85 method=Health result=2 took=31.619µs +ts=2025-05-22T08:59:02Z caller=logging.go:85 method=Health result=2 took=36.759µs +ts=2025-05-22T08:59:05Z caller=logging.go:85 method=Health result=2 took=39.059µs +ts=2025-05-22T08:59:05Z caller=logging.go:85 method=Health result=2 took=38.839µs +ts=2025-05-22T08:59:08Z caller=logging.go:85 method=Health result=2 took=46.119µs +ts=2025-05-22T08:59:08Z caller=logging.go:85 method=Health result=2 took=38.289µs +ts=2025-05-22T08:59:11Z caller=logging.go:85 method=Health result=2 took=37.369µs +ts=2025-05-22T08:59:11Z caller=logging.go:85 method=Health result=2 took=46.099µs +ts=2025-05-22T08:59:14Z caller=logging.go:85 method=Health result=2 took=42.419µs +ts=2025-05-22T08:59:14Z caller=logging.go:85 method=Health result=2 took=42.399µs +ts=2025-05-22T08:59:17Z caller=logging.go:85 method=Health result=2 took=32.609µs +ts=2025-05-22T08:59:17Z caller=logging.go:85 method=Health result=2 took=31.889µs +ts=2025-05-22T08:59:20Z caller=logging.go:85 method=Health result=2 took=43.899µs +ts=2025-05-22T08:59:20Z caller=logging.go:85 method=Health result=2 took=36.329µs +ts=2025-05-22T08:59:23Z caller=logging.go:85 method=Health result=2 took=39.199µs +ts=2025-05-22T08:59:23Z caller=logging.go:85 method=Health result=2 took=47.519µs +ts=2025-05-22T08:59:26Z caller=logging.go:85 method=Health result=2 took=28.139µs +ts=2025-05-22T08:59:26Z caller=logging.go:85 method=Health result=2 took=51.779µs +ts=2025-05-22T08:59:29Z caller=logging.go:85 method=Health result=2 took=36.719µs +ts=2025-05-22T08:59:29Z caller=logging.go:85 method=Health result=2 took=27.539µs +ts=2025-05-22T08:59:32Z caller=logging.go:85 method=Health result=2 took=38.289µs +ts=2025-05-22T08:59:32Z caller=logging.go:85 method=Health result=2 took=45.949µs +ts=2025-05-22T08:59:35Z caller=logging.go:85 method=Health result=2 took=54.099µs +ts=2025-05-22T08:59:35Z caller=logging.go:85 method=Health result=2 took=55.529µs +ts=2025-05-22T08:59:38Z caller=logging.go:85 method=Health result=2 took=38.739µs +ts=2025-05-22T08:59:38Z caller=logging.go:85 method=Health result=2 took=39.279µs +ts=2025-05-22T08:59:41Z caller=logging.go:85 method=Health result=2 took=28.66µs +ts=2025-05-22T08:59:41Z caller=logging.go:85 method=Health result=2 took=14.59µs +ts=2025-05-22T08:59:44Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T08:59:44Z caller=logging.go:85 method=Health result=2 took=49.579µs +ts=2025-05-22T08:59:47Z caller=logging.go:85 method=Health result=2 took=31.309µs +ts=2025-05-22T08:59:47Z caller=logging.go:85 method=Health result=2 took=33.869µs +ts=2025-05-22T08:59:50Z caller=logging.go:85 method=Health result=2 took=37.719µs +ts=2025-05-22T08:59:50Z caller=logging.go:85 method=Health result=2 took=81.608µs +ts=2025-05-22T08:59:53Z caller=logging.go:85 method=Health result=2 took=39.909µs +ts=2025-05-22T08:59:53Z caller=logging.go:85 method=Health result=2 took=40.339µs +ts=2025-05-22T08:59:56Z caller=logging.go:85 method=Health result=2 took=32.769µs +ts=2025-05-22T08:59:56Z caller=logging.go:85 method=Health result=2 took=35.019µs +ts=2025-05-22T08:59:59Z caller=logging.go:85 method=Health result=2 took=32.74µs +ts=2025-05-22T08:59:59Z caller=logging.go:85 method=Health result=2 took=34.33µs +ts=2025-05-22T09:00:02Z caller=logging.go:85 method=Health result=2 took=42.679µs +ts=2025-05-22T09:00:02Z caller=logging.go:85 method=Health result=2 took=48.229µs +ts=2025-05-22T09:00:05Z caller=logging.go:85 method=Health result=2 took=30.78µs +ts=2025-05-22T09:00:05Z caller=logging.go:85 method=Health result=2 took=47.119µs +ts=2025-05-22T09:00:08Z caller=logging.go:85 method=Health result=2 took=53.779µs +ts=2025-05-22T09:00:08Z caller=logging.go:85 method=Health result=2 took=53.179µs +ts=2025-05-22T09:00:11Z caller=logging.go:85 method=Health result=2 took=42.859µs +ts=2025-05-22T09:00:11Z caller=logging.go:85 method=Health result=2 took=38.559µs +ts=2025-05-22T09:00:14Z caller=logging.go:85 method=Health result=2 took=38.879µs +ts=2025-05-22T09:00:14Z caller=logging.go:85 method=Health result=2 took=46.268µs +ts=2025-05-22T09:00:17Z caller=logging.go:85 method=Health result=2 took=36.999µs +ts=2025-05-22T09:00:17Z caller=logging.go:85 method=Health result=2 took=928.538µs +ts=2025-05-22T09:00:20Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T09:00:20Z caller=logging.go:85 method=Health result=2 took=31.149µs +ts=2025-05-22T09:00:23Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T09:00:23Z caller=logging.go:85 method=Health result=2 took=26.75µs +ts=2025-05-22T09:00:26Z caller=logging.go:85 method=Health result=2 took=37.299µs +ts=2025-05-22T09:00:26Z caller=logging.go:85 method=Health result=2 took=43.529µs +ts=2025-05-22T09:00:29Z caller=logging.go:85 method=Health result=2 took=37.399µs +ts=2025-05-22T09:00:29Z caller=logging.go:85 method=Health result=2 took=65.579µs +ts=2025-05-22T09:00:32Z caller=logging.go:85 method=Health result=2 took=36.239µs +ts=2025-05-22T09:00:32Z caller=logging.go:85 method=Health result=2 took=25.169µs +ts=2025-05-22T09:00:35Z caller=logging.go:85 method=Health result=2 took=34.759µs +ts=2025-05-22T09:00:35Z caller=logging.go:85 method=Health result=2 took=43.808µs +ts=2025-05-22T09:00:38Z caller=logging.go:85 method=Health result=2 took=39.489µs +ts=2025-05-22T09:00:38Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T09:00:41Z caller=logging.go:85 method=Health result=2 took=32.299µs +ts=2025-05-22T09:00:41Z caller=logging.go:85 method=Health result=2 took=34.9µs +ts=2025-05-22T09:00:44Z caller=logging.go:85 method=Health result=2 took=39.729µs +ts=2025-05-22T09:00:44Z caller=logging.go:85 method=Health result=2 took=40.049µs +ts=2025-05-22T09:00:47Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T09:00:47Z caller=logging.go:85 method=Health result=2 took=47.169µs +ts=2025-05-22T09:00:50Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T09:00:50Z caller=logging.go:85 method=Health result=2 took=45.299µs +ts=2025-05-22T09:00:53Z caller=logging.go:85 method=Health result=2 took=40.549µs +ts=2025-05-22T09:00:53Z caller=logging.go:85 method=Health result=2 took=20.64µs +ts=2025-05-22T09:00:56Z caller=logging.go:85 method=Health result=2 took=43.129µs +ts=2025-05-22T09:00:56Z caller=logging.go:85 method=Health result=2 took=48.018µs +ts=2025-05-22T09:00:59Z caller=logging.go:85 method=Health result=2 took=32.54µs +ts=2025-05-22T09:00:59Z caller=logging.go:85 method=Health result=2 took=44.269µs +ts=2025-05-22T09:01:02Z caller=logging.go:85 method=Health result=2 took=35.179µs +ts=2025-05-22T09:01:02Z caller=logging.go:85 method=Health result=2 took=48.649µs +ts=2025-05-22T09:01:05Z caller=logging.go:85 method=Health result=2 took=44.179µs +ts=2025-05-22T09:01:05Z caller=logging.go:85 method=Health result=2 took=20.98µs +ts=2025-05-22T09:01:08Z caller=logging.go:85 method=Health result=2 took=43.189µs +ts=2025-05-22T09:01:08Z caller=logging.go:85 method=Health result=2 took=9.98µs +ts=2025-05-22T09:01:11Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T09:01:11Z caller=logging.go:85 method=Health result=2 took=42.929µs +ts=2025-05-22T09:01:14Z caller=logging.go:85 method=Health result=2 took=38.969µs +ts=2025-05-22T09:01:14Z caller=logging.go:85 method=Health result=2 took=38.359µs +ts=2025-05-22T09:01:17Z caller=logging.go:85 method=Health result=2 took=38.199µs +ts=2025-05-22T09:01:17Z caller=logging.go:85 method=Health result=2 took=38.749µs +ts=2025-05-22T09:01:20Z caller=logging.go:85 method=Health result=2 took=28.659µs +ts=2025-05-22T09:01:20Z caller=logging.go:85 method=Health result=2 took=28.639µs +ts=2025-05-22T09:01:23Z caller=logging.go:85 method=Health result=2 took=39.659µs +ts=2025-05-22T09:01:23Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T09:01:26Z caller=logging.go:85 method=Health result=2 took=40.379µs +ts=2025-05-22T09:01:26Z caller=logging.go:85 method=Health result=2 took=57.518µs +ts=2025-05-22T09:01:29Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T09:01:29Z caller=logging.go:85 method=Health result=2 took=21.619µs +ts=2025-05-22T09:01:32Z caller=logging.go:85 method=Health result=2 took=31.329µs +ts=2025-05-22T09:01:32Z caller=logging.go:85 method=Health result=2 took=44.109µs +ts=2025-05-22T09:01:35Z caller=logging.go:85 method=Health result=2 took=41.629µs +ts=2025-05-22T09:01:35Z caller=logging.go:85 method=Health result=2 took=46.249µs +ts=2025-05-22T09:01:38Z caller=logging.go:85 method=Health result=2 took=42.399µs +ts=2025-05-22T09:01:38Z caller=logging.go:85 method=Health result=2 took=47.829µs +ts=2025-05-22T09:01:41Z caller=logging.go:85 method=Health result=2 took=36.999µs +ts=2025-05-22T09:01:41Z caller=logging.go:85 method=Health result=2 took=36.169µs +ts=2025-05-22T09:01:44Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T09:01:44Z caller=logging.go:85 method=Health result=2 took=52.049µs +ts=2025-05-22T09:01:47Z caller=logging.go:85 method=Health result=2 took=41.769µs +ts=2025-05-22T09:01:47Z caller=logging.go:85 method=Health result=2 took=41.419µs +ts=2025-05-22T09:01:50Z caller=logging.go:85 method=Health result=2 took=32.219µs +ts=2025-05-22T09:01:50Z caller=logging.go:85 method=Health result=2 took=36.499µs +ts=2025-05-22T09:01:53Z caller=logging.go:85 method=Health result=2 took=35.129µs +ts=2025-05-22T09:01:53Z caller=logging.go:85 method=Health result=2 took=25.019µs +ts=2025-05-22T09:01:56Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T09:01:56Z caller=logging.go:85 method=Health result=2 took=41.089µs +ts=2025-05-22T09:01:59Z caller=logging.go:85 method=Health result=2 took=40.779µs +ts=2025-05-22T09:01:59Z caller=logging.go:85 method=Health result=2 took=57.539µs +ts=2025-05-22T09:02:02Z caller=logging.go:85 method=Health result=2 took=38.089µs +ts=2025-05-22T09:02:02Z caller=logging.go:85 method=Health result=2 took=45.429µs +ts=2025-05-22T09:02:05Z caller=logging.go:85 method=Health result=2 took=38.109µs +ts=2025-05-22T09:02:05Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T09:02:08Z caller=logging.go:85 method=Health result=2 took=49.399µs +ts=2025-05-22T09:02:08Z caller=logging.go:85 method=Health result=2 took=50.178µs +ts=2025-05-22T09:02:11Z caller=logging.go:85 method=Health result=2 took=32.48µs +ts=2025-05-22T09:02:11Z caller=logging.go:85 method=Health result=2 took=45.919µs +ts=2025-05-22T09:02:14Z caller=logging.go:85 method=Health result=2 took=30.589µs +ts=2025-05-22T09:02:14Z caller=logging.go:85 method=Health result=2 took=40.409µs +ts=2025-05-22T09:02:17Z caller=logging.go:85 method=Health result=2 took=44.709µs +ts=2025-05-22T09:02:17Z caller=logging.go:85 method=Health result=2 took=51.429µs +ts=2025-05-22T09:02:20Z caller=logging.go:85 method=Health result=2 took=32.12µs +ts=2025-05-22T09:02:20Z caller=logging.go:85 method=Health result=2 took=44.119µs +ts=2025-05-22T09:02:23Z caller=logging.go:85 method=Health result=2 took=36.59µs +ts=2025-05-22T09:02:23Z caller=logging.go:85 method=Health result=2 took=35.74µs +ts=2025-05-22T09:02:26Z caller=logging.go:85 method=Health result=2 took=40.889µs +ts=2025-05-22T09:02:26Z caller=logging.go:85 method=Health result=2 took=40.569µs +ts=2025-05-22T09:02:29Z caller=logging.go:85 method=Health result=2 took=39.729µs +ts=2025-05-22T09:02:29Z caller=logging.go:85 method=Health result=2 took=39.529µs +ts=2025-05-22T09:02:32Z caller=logging.go:85 method=Health result=2 took=30.359µs +ts=2025-05-22T09:02:32Z caller=logging.go:85 method=Health result=2 took=14.8µs +ts=2025-05-22T09:02:35Z caller=logging.go:85 method=Health result=2 took=44.399µs +ts=2025-05-22T09:02:35Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T09:02:38Z caller=logging.go:85 method=Health result=2 took=30.879µs +ts=2025-05-22T09:02:38Z caller=logging.go:85 method=Health result=2 took=36.75µs +ts=2025-05-22T09:02:41Z caller=logging.go:85 method=Health result=2 took=37.009µs +ts=2025-05-22T09:02:41Z caller=logging.go:85 method=Health result=2 took=36.989µs +ts=2025-05-22T09:02:44Z caller=logging.go:85 method=Health result=2 took=30.359µs +ts=2025-05-22T09:02:44Z caller=logging.go:85 method=Health result=2 took=47.599µs +ts=2025-05-22T09:02:47Z caller=logging.go:85 method=Health result=2 took=41.309µs +ts=2025-05-22T09:02:47Z caller=logging.go:85 method=Health result=2 took=40.799µs +ts=2025-05-22T09:02:50Z caller=logging.go:85 method=Health result=2 took=36.369µs +ts=2025-05-22T09:02:50Z caller=logging.go:85 method=Health result=2 took=26.149µs +ts=2025-05-22T09:02:53Z caller=logging.go:85 method=Health result=2 took=33.17µs +ts=2025-05-22T09:02:53Z caller=logging.go:85 method=Health result=2 took=56.069µs +ts=2025-05-22T09:02:56Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T09:02:56Z caller=logging.go:85 method=Health result=2 took=50.238µs +ts=2025-05-22T09:02:59Z caller=logging.go:85 method=Health result=2 took=41.669µs +ts=2025-05-22T09:02:59Z caller=logging.go:85 method=Health result=2 took=31.269µs +ts=2025-05-22T09:03:02Z caller=logging.go:85 method=Health result=2 took=47.789µs +ts=2025-05-22T09:03:02Z caller=logging.go:85 method=Health result=2 took=43.349µs +ts=2025-05-22T09:03:05Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T09:03:05Z caller=logging.go:85 method=Health result=2 took=39.23µs +ts=2025-05-22T09:03:08Z caller=logging.go:85 method=Health result=2 took=39.709µs +ts=2025-05-22T09:03:08Z caller=logging.go:85 method=Health result=2 took=39.169µs +ts=2025-05-22T09:03:11Z caller=logging.go:85 method=Health result=2 took=38.069µs +ts=2025-05-22T09:03:11Z caller=logging.go:85 method=Health result=2 took=38.679µs +ts=2025-05-22T09:03:14Z caller=logging.go:85 method=Health result=2 took=40.499µs +ts=2025-05-22T09:03:14Z caller=logging.go:85 method=Health result=2 took=41.249µs +ts=2025-05-22T09:03:17Z caller=logging.go:85 method=Health result=2 took=27.72µs +ts=2025-05-22T09:03:17Z caller=logging.go:85 method=Health result=2 took=40.519µs +ts=2025-05-22T09:03:20Z caller=logging.go:85 method=Health result=2 took=37.829µs +ts=2025-05-22T09:03:20Z caller=logging.go:85 method=Health result=2 took=45.318µs +ts=2025-05-22T09:03:23Z caller=logging.go:85 method=Health result=2 took=36.329µs +ts=2025-05-22T09:03:23Z caller=logging.go:85 method=Health result=2 took=36.099µs +ts=2025-05-22T09:03:26Z caller=logging.go:85 method=Health result=2 took=40.139µs +ts=2025-05-22T09:03:26Z caller=logging.go:85 method=Health result=2 took=40.789µs +ts=2025-05-22T09:03:29Z caller=logging.go:85 method=Health result=2 took=45.909µs +ts=2025-05-22T09:03:29Z caller=logging.go:85 method=Health result=2 took=50.959µs +ts=2025-05-22T09:03:32Z caller=logging.go:85 method=Health result=2 took=36.089µs +ts=2025-05-22T09:03:32Z caller=logging.go:85 method=Health result=2 took=35.499µs +ts=2025-05-22T09:03:35Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T09:03:35Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T09:03:38Z caller=logging.go:85 method=Health result=2 took=41.679µs +ts=2025-05-22T09:03:38Z caller=logging.go:85 method=Health result=2 took=40.739µs +ts=2025-05-22T09:03:41Z caller=logging.go:85 method=Health result=2 took=36.089µs +ts=2025-05-22T09:03:41Z caller=logging.go:85 method=Health result=2 took=25.59µs +ts=2025-05-22T09:03:44Z caller=logging.go:85 method=Health result=2 took=41.089µs +ts=2025-05-22T09:03:44Z caller=logging.go:85 method=Health result=2 took=59.759µs +ts=2025-05-22T09:03:47Z caller=logging.go:85 method=Health result=2 took=37.719µs +ts=2025-05-22T09:03:47Z caller=logging.go:85 method=Health result=2 took=33.779µs +ts=2025-05-22T09:03:50Z caller=logging.go:85 method=Health result=2 took=29.669µs +ts=2025-05-22T09:03:50Z caller=logging.go:85 method=Health result=2 took=29.709µs +ts=2025-05-22T09:03:53Z caller=logging.go:85 method=Health result=2 took=31.749µs +ts=2025-05-22T09:03:53Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T09:03:56Z caller=logging.go:85 method=Health result=2 took=43.909µs +ts=2025-05-22T09:03:56Z caller=logging.go:85 method=Health result=2 took=30.189µs +ts=2025-05-22T09:03:59Z caller=logging.go:85 method=Health result=2 took=43.739µs +ts=2025-05-22T09:03:59Z caller=logging.go:85 method=Health result=2 took=104.838µs +ts=2025-05-22T09:04:02Z caller=logging.go:85 method=Health result=2 took=36.279µs +ts=2025-05-22T09:04:02Z caller=logging.go:85 method=Health result=2 took=26.42µs +ts=2025-05-22T09:04:05Z caller=logging.go:85 method=Health result=2 took=38.609µs +ts=2025-05-22T09:04:05Z caller=logging.go:85 method=Health result=2 took=38.049µs +ts=2025-05-22T09:04:08Z caller=logging.go:85 method=Health result=2 took=42.149µs +ts=2025-05-22T09:04:08Z caller=logging.go:85 method=Health result=2 took=47.579µs +ts=2025-05-22T09:04:11Z caller=logging.go:85 method=Health result=2 took=38.14µs +ts=2025-05-22T09:04:11Z caller=logging.go:85 method=Health result=2 took=36.79µs +ts=2025-05-22T09:04:14Z caller=logging.go:85 method=Health result=2 took=27.75µs +ts=2025-05-22T09:04:14Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T09:04:17Z caller=logging.go:85 method=Health result=2 took=124.987µs +ts=2025-05-22T09:04:17Z caller=logging.go:85 method=Health result=2 took=940.527µs +ts=2025-05-22T09:04:20Z caller=logging.go:85 method=Health result=2 took=47.739µs +ts=2025-05-22T09:04:20Z caller=logging.go:85 method=Health result=2 took=47.809µs +ts=2025-05-22T09:04:23Z caller=logging.go:85 method=Health result=2 took=41.909µs +ts=2025-05-22T09:04:23Z caller=logging.go:85 method=Health result=2 took=41.329µs +ts=2025-05-22T09:04:26Z caller=logging.go:85 method=Health result=2 took=39.919µs +ts=2025-05-22T09:04:26Z caller=logging.go:85 method=Health result=2 took=40.409µs +ts=2025-05-22T09:04:29Z caller=logging.go:85 method=Health result=2 took=39.839µs +ts=2025-05-22T09:04:29Z caller=logging.go:85 method=Health result=2 took=40.299µs +ts=2025-05-22T09:04:32Z caller=logging.go:85 method=Health result=2 took=32.069µs +ts=2025-05-22T09:04:32Z caller=logging.go:85 method=Health result=2 took=44.969µs +ts=2025-05-22T09:04:35Z caller=logging.go:85 method=Health result=2 took=37.259µs +ts=2025-05-22T09:04:35Z caller=logging.go:85 method=Health result=2 took=60.469µs +ts=2025-05-22T09:04:38Z caller=logging.go:85 method=Health result=2 took=33.249µs +ts=2025-05-22T09:04:38Z caller=logging.go:85 method=Health result=2 took=36.239µs +ts=2025-05-22T09:04:41Z caller=logging.go:85 method=Health result=2 took=36.879µs +ts=2025-05-22T09:04:41Z caller=logging.go:85 method=Health result=2 took=36.889µs +ts=2025-05-22T09:04:44Z caller=logging.go:85 method=Health result=2 took=32.349µs +ts=2025-05-22T09:04:44Z caller=logging.go:85 method=Health result=2 took=52.449µs +ts=2025-05-22T09:04:47Z caller=logging.go:85 method=Health result=2 took=37.299µs +ts=2025-05-22T09:04:47Z caller=logging.go:85 method=Health result=2 took=19.109µs +ts=2025-05-22T09:04:50Z caller=logging.go:85 method=Health result=2 took=45.839µs +ts=2025-05-22T09:04:50Z caller=logging.go:85 method=Health result=2 took=44.879µs +ts=2025-05-22T09:04:53Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T09:04:53Z caller=logging.go:85 method=Health result=2 took=38.459µs +ts=2025-05-22T09:04:56Z caller=logging.go:85 method=Health result=2 took=37.879µs +ts=2025-05-22T09:04:56Z caller=logging.go:85 method=Health result=2 took=53.518µs +ts=2025-05-22T09:04:59Z caller=logging.go:85 method=Health result=2 took=42.779µs +ts=2025-05-22T09:04:59Z caller=logging.go:85 method=Health result=2 took=28.429µs +ts=2025-05-22T09:05:02Z caller=logging.go:85 method=Health result=2 took=42.879µs +ts=2025-05-22T09:05:02Z caller=logging.go:85 method=Health result=2 took=48.069µs +ts=2025-05-22T09:05:05Z caller=logging.go:85 method=Health result=2 took=29.88µs +ts=2025-05-22T09:05:05Z caller=logging.go:85 method=Health result=2 took=29.83µs +ts=2025-05-22T09:05:08Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T09:05:08Z caller=logging.go:85 method=Health result=2 took=46.079µs +ts=2025-05-22T09:05:11Z caller=logging.go:85 method=Health result=2 took=40.519µs +ts=2025-05-22T09:05:11Z caller=logging.go:85 method=Health result=2 took=41.389µs +ts=2025-05-22T09:05:14Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T09:05:14Z caller=logging.go:85 method=Health result=2 took=45.109µs +ts=2025-05-22T09:05:17Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T09:05:17Z caller=logging.go:85 method=Health result=2 took=47.409µs +ts=2025-05-22T09:05:20Z caller=logging.go:85 method=Health result=2 took=39.079µs +ts=2025-05-22T09:05:20Z caller=logging.go:85 method=Health result=2 took=44.999µs +ts=2025-05-22T09:05:23Z caller=logging.go:85 method=Health result=2 took=37.239µs +ts=2025-05-22T09:05:23Z caller=logging.go:85 method=Health result=2 took=56.419µs +ts=2025-05-22T09:05:26Z caller=logging.go:85 method=Health result=2 took=40.149µs +ts=2025-05-22T09:05:26Z caller=logging.go:85 method=Health result=2 took=27.519µs +ts=2025-05-22T09:05:29Z caller=logging.go:85 method=Health result=2 took=42.679µs +ts=2025-05-22T09:05:29Z caller=logging.go:85 method=Health result=2 took=20.939µs +ts=2025-05-22T09:05:32Z caller=logging.go:85 method=Health result=2 took=30.679µs +ts=2025-05-22T09:05:32Z caller=logging.go:85 method=Health result=2 took=40.029µs +ts=2025-05-22T09:05:35Z caller=logging.go:85 method=Health result=2 took=37.619µs +ts=2025-05-22T09:05:35Z caller=logging.go:85 method=Health result=2 took=38.339µs +ts=2025-05-22T09:05:38Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T09:05:38Z caller=logging.go:85 method=Health result=2 took=49.029µs +ts=2025-05-22T09:05:41Z caller=logging.go:85 method=Health result=2 took=96.558µs +ts=2025-05-22T09:05:41Z caller=logging.go:85 method=Health result=2 took=47.309µs +ts=2025-05-22T09:05:44Z caller=logging.go:85 method=Health result=2 took=41.979µs +ts=2025-05-22T09:05:44Z caller=logging.go:85 method=Health result=2 took=41.539µs +ts=2025-05-22T09:05:47Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T09:05:47Z caller=logging.go:85 method=Health result=2 took=29.51µs +ts=2025-05-22T09:05:50Z caller=logging.go:85 method=Health result=2 took=40.269µs +ts=2025-05-22T09:05:50Z caller=logging.go:85 method=Health result=2 took=47.139µs +ts=2025-05-22T09:05:53Z caller=logging.go:85 method=Health result=2 took=39.989µs +ts=2025-05-22T09:05:53Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T09:05:56Z caller=logging.go:85 method=Health result=2 took=43.929µs +ts=2025-05-22T09:05:56Z caller=logging.go:85 method=Health result=2 took=47.759µs +ts=2025-05-22T09:05:59Z caller=logging.go:85 method=Health result=2 took=41.439µs +ts=2025-05-22T09:05:59Z caller=logging.go:85 method=Health result=2 took=50.269µs +ts=2025-05-22T09:06:02Z caller=logging.go:85 method=Health result=2 took=31.449µs +ts=2025-05-22T09:06:02Z caller=logging.go:85 method=Health result=2 took=15.16µs +ts=2025-05-22T09:06:05Z caller=logging.go:85 method=Health result=2 took=43.379µs +ts=2025-05-22T09:06:05Z caller=logging.go:85 method=Health result=2 took=42.839µs +ts=2025-05-22T09:06:08Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T09:06:08Z caller=logging.go:85 method=Health result=2 took=39.949µs +ts=2025-05-22T09:06:11Z caller=logging.go:85 method=Health result=2 took=42.619µs +ts=2025-05-22T09:06:11Z caller=logging.go:85 method=Health result=2 took=43.239µs +ts=2025-05-22T09:06:14Z caller=logging.go:85 method=Health result=2 took=38.819µs +ts=2025-05-22T09:06:14Z caller=logging.go:85 method=Health result=2 took=38.189µs +ts=2025-05-22T09:06:17Z caller=logging.go:85 method=Health result=2 took=1.603832ms +ts=2025-05-22T09:06:17Z caller=logging.go:85 method=Health result=2 took=1.597511ms +ts=2025-05-22T09:06:20Z caller=logging.go:85 method=Health result=2 took=41.979µs +ts=2025-05-22T09:06:20Z caller=logging.go:85 method=Health result=2 took=49.039µs +ts=2025-05-22T09:06:23Z caller=logging.go:85 method=Health result=2 took=37.929µs +ts=2025-05-22T09:06:23Z caller=logging.go:85 method=Health result=2 took=47.809µs +ts=2025-05-22T09:06:26Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T09:06:26Z caller=logging.go:85 method=Health result=2 took=42.349µs +ts=2025-05-22T09:06:29Z caller=logging.go:85 method=Health result=2 took=39.939µs +ts=2025-05-22T09:06:29Z caller=logging.go:85 method=Health result=2 took=47.879µs +ts=2025-05-22T09:06:32Z caller=logging.go:85 method=Health result=2 took=43.189µs +ts=2025-05-22T09:06:32Z caller=logging.go:85 method=Health result=2 took=47.509µs +ts=2025-05-22T09:06:35Z caller=logging.go:85 method=Health result=2 took=57.059µs +ts=2025-05-22T09:06:35Z caller=logging.go:85 method=Health result=2 took=57.049µs +ts=2025-05-22T09:06:38Z caller=logging.go:85 method=Health result=2 took=37.869µs +ts=2025-05-22T09:06:38Z caller=logging.go:85 method=Health result=2 took=27.279µs +ts=2025-05-22T09:06:41Z caller=logging.go:85 method=Health result=2 took=30.519µs +ts=2025-05-22T09:06:41Z caller=logging.go:85 method=Health result=2 took=51.609µs +ts=2025-05-22T09:06:44Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T09:06:44Z caller=logging.go:85 method=Health result=2 took=42.379µs +ts=2025-05-22T09:06:47Z caller=logging.go:85 method=Health result=2 took=41.859µs +ts=2025-05-22T09:06:47Z caller=logging.go:85 method=Health result=2 took=50.648µs +ts=2025-05-22T09:06:50Z caller=logging.go:85 method=Health result=2 took=37.109µs +ts=2025-05-22T09:06:50Z caller=logging.go:85 method=Health result=2 took=37.809µs +ts=2025-05-22T09:06:53Z caller=logging.go:85 method=Health result=2 took=28.669µs +ts=2025-05-22T09:06:53Z caller=logging.go:85 method=Health result=2 took=28.659µs +ts=2025-05-22T09:06:56Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T09:06:56Z caller=logging.go:85 method=Health result=2 took=31.929µs +ts=2025-05-22T09:06:59Z caller=logging.go:85 method=Health result=2 took=46.259µs +ts=2025-05-22T09:06:59Z caller=logging.go:85 method=Health result=2 took=31.889µs +ts=2025-05-22T09:07:02Z caller=logging.go:85 method=Health result=2 took=41.999µs +ts=2025-05-22T09:07:02Z caller=logging.go:85 method=Health result=2 took=47.308µs +ts=2025-05-22T09:07:05Z caller=logging.go:85 method=Health result=2 took=46.269µs +ts=2025-05-22T09:07:05Z caller=logging.go:85 method=Health result=2 took=59.669µs +ts=2025-05-22T09:07:08Z caller=logging.go:85 method=Health result=2 took=41.159µs +ts=2025-05-22T09:07:08Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T09:07:11Z caller=logging.go:85 method=Health result=2 took=30.709µs +ts=2025-05-22T09:07:11Z caller=logging.go:85 method=Health result=2 took=45.249µs +ts=2025-05-22T09:07:14Z caller=logging.go:85 method=Health result=2 took=31.53µs +ts=2025-05-22T09:07:14Z caller=logging.go:85 method=Health result=2 took=43.789µs +ts=2025-05-22T09:07:17Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T09:07:17Z caller=logging.go:85 method=Health result=2 took=24.6µs +ts=2025-05-22T09:07:20Z caller=logging.go:85 method=Health result=2 took=37.309µs +ts=2025-05-22T09:07:20Z caller=logging.go:85 method=Health result=2 took=34.869µs +ts=2025-05-22T09:07:23Z caller=logging.go:85 method=Health result=2 took=28.299µs +ts=2025-05-22T09:07:23Z caller=logging.go:85 method=Health result=2 took=24.719µs +ts=2025-05-22T09:07:26Z caller=logging.go:85 method=Health result=2 took=38.809µs +ts=2025-05-22T09:07:26Z caller=logging.go:85 method=Health result=2 took=38.889µs +ts=2025-05-22T09:07:29Z caller=logging.go:85 method=Health result=2 took=44.619µs +ts=2025-05-22T09:07:29Z caller=logging.go:85 method=Health result=2 took=48.399µs +ts=2025-05-22T09:07:32Z caller=logging.go:85 method=Health result=2 took=36.839µs +ts=2025-05-22T09:07:32Z caller=logging.go:85 method=Health result=2 took=36.499µs +ts=2025-05-22T09:07:35Z caller=logging.go:85 method=Health result=2 took=44.369µs +ts=2025-05-22T09:07:35Z caller=logging.go:85 method=Health result=2 took=31.389µs +ts=2025-05-22T09:07:38Z caller=logging.go:85 method=Health result=2 took=46.429µs +ts=2025-05-22T09:07:38Z caller=logging.go:85 method=Health result=2 took=49.959µs +ts=2025-05-22T09:07:41Z caller=logging.go:85 method=Health result=2 took=32.109µs +ts=2025-05-22T09:07:41Z caller=logging.go:85 method=Health result=2 took=46.129µs +ts=2025-05-22T09:07:44Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T09:07:44Z caller=logging.go:85 method=Health result=2 took=41.519µs +ts=2025-05-22T09:07:47Z caller=logging.go:85 method=Health result=2 took=32.14µs +ts=2025-05-22T09:07:47Z caller=logging.go:85 method=Health result=2 took=47.729µs +ts=2025-05-22T09:07:50Z caller=logging.go:85 method=Health result=2 took=47.009µs +ts=2025-05-22T09:07:50Z caller=logging.go:85 method=Health result=2 took=51.059µs +ts=2025-05-22T09:07:53Z caller=logging.go:85 method=Health result=2 took=38.579µs +ts=2025-05-22T09:07:53Z caller=logging.go:85 method=Health result=2 took=63.669µs +ts=2025-05-22T09:07:56Z caller=logging.go:85 method=Health result=2 took=38.869µs +ts=2025-05-22T09:07:56Z caller=logging.go:85 method=Health result=2 took=49.988µs +ts=2025-05-22T09:07:59Z caller=logging.go:85 method=Health result=2 took=46.659µs +ts=2025-05-22T09:07:59Z caller=logging.go:85 method=Health result=2 took=49.799µs +ts=2025-05-22T09:08:02Z caller=logging.go:85 method=Health result=2 took=40.739µs +ts=2025-05-22T09:08:02Z caller=logging.go:85 method=Health result=2 took=40.389µs +ts=2025-05-22T09:08:05Z caller=logging.go:85 method=Health result=2 took=31.65µs +ts=2025-05-22T09:08:05Z caller=logging.go:85 method=Health result=2 took=47.829µs +ts=2025-05-22T09:08:08Z caller=logging.go:85 method=Health result=2 took=42.749µs +ts=2025-05-22T09:08:08Z caller=logging.go:85 method=Health result=2 took=42.689µs +ts=2025-05-22T09:08:11Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T09:08:11Z caller=logging.go:85 method=Health result=2 took=52.019µs +ts=2025-05-22T09:08:14Z caller=logging.go:85 method=Health result=2 took=48.789µs +ts=2025-05-22T09:08:14Z caller=logging.go:85 method=Health result=2 took=54.749µs +ts=2025-05-22T09:08:17Z caller=logging.go:85 method=Health result=2 took=74.878µs +ts=2025-05-22T09:08:17Z caller=logging.go:85 method=Health result=2 took=28.829µs +ts=2025-05-22T09:08:20Z caller=logging.go:85 method=Health result=2 took=41.299µs +ts=2025-05-22T09:08:20Z caller=logging.go:85 method=Health result=2 took=26.48µs +ts=2025-05-22T09:08:23Z caller=logging.go:85 method=Health result=2 took=44.539µs +ts=2025-05-22T09:08:23Z caller=logging.go:85 method=Health result=2 took=41.409µs +ts=2025-05-22T09:08:26Z caller=logging.go:85 method=Health result=2 took=43.419µs +ts=2025-05-22T09:08:26Z caller=logging.go:85 method=Health result=2 took=36.029µs +ts=2025-05-22T09:08:29Z caller=logging.go:85 method=Health result=2 took=46.829µs +ts=2025-05-22T09:08:29Z caller=logging.go:85 method=Health result=2 took=50.219µs +ts=2025-05-22T09:08:32Z caller=logging.go:85 method=Health result=2 took=50.209µs +ts=2025-05-22T09:08:32Z caller=logging.go:85 method=Health result=2 took=51.099µs +ts=2025-05-22T09:08:35Z caller=logging.go:85 method=Health result=2 took=44.759µs +ts=2025-05-22T09:08:35Z caller=logging.go:85 method=Health result=2 took=70.658µs +ts=2025-05-22T09:08:38Z caller=logging.go:85 method=Health result=2 took=45.999µs +ts=2025-05-22T09:08:38Z caller=logging.go:85 method=Health result=2 took=48.449µs +ts=2025-05-22T09:08:41Z caller=logging.go:85 method=Health result=2 took=37.609µs +ts=2025-05-22T09:08:41Z caller=logging.go:85 method=Health result=2 took=49.618µs +ts=2025-05-22T09:08:44Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T09:08:44Z caller=logging.go:85 method=Health result=2 took=50.919µs +ts=2025-05-22T09:08:47Z caller=logging.go:85 method=Health result=2 took=29.669µs +ts=2025-05-22T09:08:47Z caller=logging.go:85 method=Health result=2 took=13.89µs +ts=2025-05-22T09:08:50Z caller=logging.go:85 method=Health result=2 took=44.779µs +ts=2025-05-22T09:08:50Z caller=logging.go:85 method=Health result=2 took=44.179µs +ts=2025-05-22T09:08:53Z caller=logging.go:85 method=Health result=2 took=30.709µs +ts=2025-05-22T09:08:53Z caller=logging.go:85 method=Health result=2 took=17.469µs +ts=2025-05-22T09:08:56Z caller=logging.go:85 method=Health result=2 took=39.729µs +ts=2025-05-22T09:08:56Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T09:08:59Z caller=logging.go:85 method=Health result=2 took=43.089µs +ts=2025-05-22T09:08:59Z caller=logging.go:85 method=Health result=2 took=43.729µs +ts=2025-05-22T09:09:02Z caller=logging.go:85 method=Health result=2 took=43.769µs +ts=2025-05-22T09:09:02Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T09:09:05Z caller=logging.go:85 method=Health result=2 took=54.819µs +ts=2025-05-22T09:09:05Z caller=logging.go:85 method=Health result=2 took=50.779µs +ts=2025-05-22T09:09:08Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T09:09:08Z caller=logging.go:85 method=Health result=2 took=47.299µs +ts=2025-05-22T09:09:11Z caller=logging.go:85 method=Health result=2 took=40.449µs +ts=2025-05-22T09:09:11Z caller=logging.go:85 method=Health result=2 took=26.299µs +ts=2025-05-22T09:09:14Z caller=logging.go:85 method=Health result=2 took=28.96µs +ts=2025-05-22T09:09:14Z caller=logging.go:85 method=Health result=2 took=18.83µs +ts=2025-05-22T09:09:17Z caller=logging.go:85 method=Health result=2 took=48.468µs +ts=2025-05-22T09:09:17Z caller=logging.go:85 method=Health result=2 took=50.848µs +ts=2025-05-22T09:09:20Z caller=logging.go:85 method=Health result=2 took=44.419µs +ts=2025-05-22T09:09:20Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T09:09:23Z caller=logging.go:85 method=Health result=2 took=44.968µs +ts=2025-05-22T09:09:23Z caller=logging.go:85 method=Health result=2 took=50.708µs +ts=2025-05-22T09:09:26Z caller=logging.go:85 method=Health result=2 took=53.658µs +ts=2025-05-22T09:09:26Z caller=logging.go:85 method=Health result=2 took=52.728µs +ts=2025-05-22T09:09:29Z caller=logging.go:85 method=Health result=2 took=40.939µs +ts=2025-05-22T09:09:29Z caller=logging.go:85 method=Health result=2 took=9.67µs +ts=2025-05-22T09:09:32Z caller=logging.go:85 method=Health result=2 took=53.839µs +ts=2025-05-22T09:09:32Z caller=logging.go:85 method=Health result=2 took=53.299µs +ts=2025-05-22T09:09:35Z caller=logging.go:85 method=Health result=2 took=46.239µs +ts=2025-05-22T09:09:35Z caller=logging.go:85 method=Health result=2 took=51.258µs +ts=2025-05-22T09:09:38Z caller=logging.go:85 method=Health result=2 took=35.739µs +ts=2025-05-22T09:09:38Z caller=logging.go:85 method=Health result=2 took=47.029µs +ts=2025-05-22T09:09:41Z caller=logging.go:85 method=Health result=2 took=44.249µs +ts=2025-05-22T09:09:41Z caller=logging.go:85 method=Health result=2 took=51.079µs +ts=2025-05-22T09:09:44Z caller=logging.go:85 method=Health result=2 took=45.249µs +ts=2025-05-22T09:09:44Z caller=logging.go:85 method=Health result=2 took=48.929µs +ts=2025-05-22T09:09:47Z caller=logging.go:85 method=Health result=2 took=42.209µs +ts=2025-05-22T09:09:47Z caller=logging.go:85 method=Health result=2 took=48.759µs +ts=2025-05-22T09:09:50Z caller=logging.go:85 method=Health result=2 took=40.839µs +ts=2025-05-22T09:09:50Z caller=logging.go:85 method=Health result=2 took=42.029µs +ts=2025-05-22T09:09:53Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T09:09:53Z caller=logging.go:85 method=Health result=2 took=41.639µs +ts=2025-05-22T09:09:56Z caller=logging.go:85 method=Health result=2 took=44.049µs +ts=2025-05-22T09:09:56Z caller=logging.go:85 method=Health result=2 took=48.789µs +ts=2025-05-22T09:09:59Z caller=logging.go:85 method=Health result=2 took=38.669µs +ts=2025-05-22T09:09:59Z caller=logging.go:85 method=Health result=2 took=38.589µs +ts=2025-05-22T09:10:02Z caller=logging.go:85 method=Health result=2 took=44.258µs +ts=2025-05-22T09:10:02Z caller=logging.go:85 method=Health result=2 took=50.379µs +ts=2025-05-22T09:10:05Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T09:10:05Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T09:10:08Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T09:10:08Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T09:10:11Z caller=logging.go:85 method=Health result=2 took=39.479µs +ts=2025-05-22T09:10:11Z caller=logging.go:85 method=Health result=2 took=27.75µs +ts=2025-05-22T09:10:14Z caller=logging.go:85 method=Health result=2 took=39.769µs +ts=2025-05-22T09:10:14Z caller=logging.go:85 method=Health result=2 took=47.509µs +ts=2025-05-22T09:10:17Z caller=logging.go:85 method=Health result=2 took=28.749µs +ts=2025-05-22T09:10:17Z caller=logging.go:85 method=Health result=2 took=15.86µs +ts=2025-05-22T09:10:20Z caller=logging.go:85 method=Health result=2 took=31.639µs +ts=2025-05-22T09:10:20Z caller=logging.go:85 method=Health result=2 took=49.539µs +ts=2025-05-22T09:10:23Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T09:10:23Z caller=logging.go:85 method=Health result=2 took=43.749µs +ts=2025-05-22T09:10:26Z caller=logging.go:85 method=Health result=2 took=37.899µs +ts=2025-05-22T09:10:26Z caller=logging.go:85 method=Health result=2 took=45.229µs +ts=2025-05-22T09:10:29Z caller=logging.go:85 method=Health result=2 took=38.839µs +ts=2025-05-22T09:10:29Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T09:10:32Z caller=logging.go:85 method=Health result=2 took=45.389µs +ts=2025-05-22T09:10:32Z caller=logging.go:85 method=Health result=2 took=48.479µs +ts=2025-05-22T09:10:35Z caller=logging.go:85 method=Health result=2 took=26.529µs +ts=2025-05-22T09:10:35Z caller=logging.go:85 method=Health result=2 took=58.318µs +ts=2025-05-22T09:10:38Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T09:10:38Z caller=logging.go:85 method=Health result=2 took=39.499µs +ts=2025-05-22T09:10:41Z caller=logging.go:85 method=Health result=2 took=37.1µs +ts=2025-05-22T09:10:41Z caller=logging.go:85 method=Health result=2 took=37.27µs +ts=2025-05-22T09:10:44Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T09:10:44Z caller=logging.go:85 method=Health result=2 took=44.569µs +ts=2025-05-22T09:10:47Z caller=logging.go:85 method=Health result=2 took=40.209µs +ts=2025-05-22T09:10:47Z caller=logging.go:85 method=Health result=2 took=53.549µs +ts=2025-05-22T09:10:50Z caller=logging.go:85 method=Health result=2 took=43.479µs +ts=2025-05-22T09:10:50Z caller=logging.go:85 method=Health result=2 took=44.299µs +ts=2025-05-22T09:10:53Z caller=logging.go:85 method=Health result=2 took=31.819µs +ts=2025-05-22T09:10:53Z caller=logging.go:85 method=Health result=2 took=53.879µs +ts=2025-05-22T09:10:56Z caller=logging.go:85 method=Health result=2 took=46.289µs +ts=2025-05-22T09:10:56Z caller=logging.go:85 method=Health result=2 took=47.309µs +ts=2025-05-22T09:10:59Z caller=logging.go:85 method=Health result=2 took=41.879µs +ts=2025-05-22T09:10:59Z caller=logging.go:85 method=Health result=2 took=49.439µs +ts=2025-05-22T09:11:02Z caller=logging.go:85 method=Health result=2 took=44.039µs +ts=2025-05-22T09:11:02Z caller=logging.go:85 method=Health result=2 took=43.469µs +ts=2025-05-22T09:11:05Z caller=logging.go:85 method=Health result=2 took=34.819µs +ts=2025-05-22T09:11:05Z caller=logging.go:85 method=Health result=2 took=45.379µs +ts=2025-05-22T09:11:08Z caller=logging.go:85 method=Health result=2 took=47.059µs +ts=2025-05-22T09:11:08Z caller=logging.go:85 method=Health result=2 took=46.069µs +ts=2025-05-22T09:11:11Z caller=logging.go:85 method=Health result=2 took=46.119µs +ts=2025-05-22T09:11:11Z caller=logging.go:85 method=Health result=2 took=45.409µs +ts=2025-05-22T09:11:14Z caller=logging.go:85 method=Health result=2 took=40.149µs +ts=2025-05-22T09:11:14Z caller=logging.go:85 method=Health result=2 took=42.139µs +ts=2025-05-22T09:11:17Z caller=logging.go:85 method=Health result=2 took=43.259µs +ts=2025-05-22T09:11:17Z caller=logging.go:85 method=Health result=2 took=47.499µs +ts=2025-05-22T09:11:20Z caller=logging.go:85 method=Health result=2 took=29.65µs +ts=2025-05-22T09:11:20Z caller=logging.go:85 method=Health result=2 took=13.61µs +ts=2025-05-22T09:11:23Z caller=logging.go:85 method=Health result=2 took=53.608µs +ts=2025-05-22T09:11:23Z caller=logging.go:85 method=Health result=2 took=51.969µs +ts=2025-05-22T09:11:26Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T09:11:26Z caller=logging.go:85 method=Health result=2 took=44.019µs +ts=2025-05-22T09:11:29Z caller=logging.go:85 method=Health result=2 took=39.219µs +ts=2025-05-22T09:11:29Z caller=logging.go:85 method=Health result=2 took=26.389µs +ts=2025-05-22T09:11:32Z caller=logging.go:85 method=Health result=2 took=30.05µs +ts=2025-05-22T09:11:32Z caller=logging.go:85 method=Health result=2 took=10.36µs +ts=2025-05-22T09:11:35Z caller=logging.go:85 method=Health result=2 took=27.569µs +ts=2025-05-22T09:11:35Z caller=logging.go:85 method=Health result=2 took=10.179µs +ts=2025-05-22T09:11:38Z caller=logging.go:85 method=Health result=2 took=40.119µs +ts=2025-05-22T09:11:38Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T09:11:41Z caller=logging.go:85 method=Health result=2 took=42.759µs +ts=2025-05-22T09:11:41Z caller=logging.go:85 method=Health result=2 took=47.479µs +ts=2025-05-22T09:11:44Z caller=logging.go:85 method=Health result=2 took=40.759µs +ts=2025-05-22T09:11:44Z caller=logging.go:85 method=Health result=2 took=21.93µs +ts=2025-05-22T09:11:47Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T09:11:47Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T09:11:50Z caller=logging.go:85 method=Health result=2 took=36.939µs +ts=2025-05-22T09:11:50Z caller=logging.go:85 method=Health result=2 took=36.749µs +ts=2025-05-22T09:11:53Z caller=logging.go:85 method=Health result=2 took=42.189µs +ts=2025-05-22T09:11:53Z caller=logging.go:85 method=Health result=2 took=28.37µs +ts=2025-05-22T09:11:56Z caller=logging.go:85 method=Health result=2 took=30.289µs +ts=2025-05-22T09:11:56Z caller=logging.go:85 method=Health result=2 took=67.719µs +ts=2025-05-22T09:11:59Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T09:11:59Z caller=logging.go:85 method=Health result=2 took=41.709µs +ts=2025-05-22T09:12:02Z caller=logging.go:85 method=Health result=2 took=43.919µs +ts=2025-05-22T09:12:02Z caller=logging.go:85 method=Health result=2 took=47.809µs +ts=2025-05-22T09:12:05Z caller=logging.go:85 method=Health result=2 took=27.779µs +ts=2025-05-22T09:12:05Z caller=logging.go:85 method=Health result=2 took=27.869µs +ts=2025-05-22T09:12:08Z caller=logging.go:85 method=Health result=2 took=44.159µs +ts=2025-05-22T09:12:08Z caller=logging.go:85 method=Health result=2 took=40.309µs +ts=2025-05-22T09:12:11Z caller=logging.go:85 method=Health result=2 took=30.949µs +ts=2025-05-22T09:12:11Z caller=logging.go:85 method=Health result=2 took=46.289µs +ts=2025-05-22T09:12:14Z caller=logging.go:85 method=Health result=2 took=29.029µs +ts=2025-05-22T09:12:14Z caller=logging.go:85 method=Health result=2 took=27.999µs +ts=2025-05-22T09:12:17Z caller=logging.go:85 method=Health result=2 took=21.39µs +ts=2025-05-22T09:12:17Z caller=logging.go:85 method=Health result=2 took=193.875µs +ts=2025-05-22T09:12:20Z caller=logging.go:85 method=Health result=2 took=35.579µs +ts=2025-05-22T09:12:20Z caller=logging.go:85 method=Health result=2 took=35.879µs +ts=2025-05-22T09:12:23Z caller=logging.go:85 method=Health result=2 took=29.33µs +ts=2025-05-22T09:12:23Z caller=logging.go:85 method=Health result=2 took=15.1µs +ts=2025-05-22T09:12:26Z caller=logging.go:85 method=Health result=2 took=37.009µs +ts=2025-05-22T09:12:26Z caller=logging.go:85 method=Health result=2 took=37.109µs +ts=2025-05-22T09:12:29Z caller=logging.go:85 method=Health result=2 took=38.249µs +ts=2025-05-22T09:12:29Z caller=logging.go:85 method=Health result=2 took=38.029µs +ts=2025-05-22T09:12:32Z caller=logging.go:85 method=Health result=2 took=44.989µs +ts=2025-05-22T09:12:32Z caller=logging.go:85 method=Health result=2 took=48.498µs +ts=2025-05-22T09:12:35Z caller=logging.go:85 method=Health result=2 took=36.749µs +ts=2025-05-22T09:12:35Z caller=logging.go:85 method=Health result=2 took=36.149µs +ts=2025-05-22T09:12:38Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T09:12:38Z caller=logging.go:85 method=Health result=2 took=44.779µs +ts=2025-05-22T09:12:41Z caller=logging.go:85 method=Health result=2 took=42.659µs +ts=2025-05-22T09:12:41Z caller=logging.go:85 method=Health result=2 took=46.409µs +ts=2025-05-22T09:12:44Z caller=logging.go:85 method=Health result=2 took=35.59µs +ts=2025-05-22T09:12:44Z caller=logging.go:85 method=Health result=2 took=34.95µs +ts=2025-05-22T09:12:47Z caller=logging.go:85 method=Health result=2 took=35.469µs +ts=2025-05-22T09:12:47Z caller=logging.go:85 method=Health result=2 took=25µs +ts=2025-05-22T09:12:50Z caller=logging.go:85 method=Health result=2 took=39.519µs +ts=2025-05-22T09:12:50Z caller=logging.go:85 method=Health result=2 took=39.859µs +ts=2025-05-22T09:12:53Z caller=logging.go:85 method=Health result=2 took=36.529µs +ts=2025-05-22T09:12:53Z caller=logging.go:85 method=Health result=2 took=27.379µs +ts=2025-05-22T09:12:56Z caller=logging.go:85 method=Health result=2 took=32.249µs +ts=2025-05-22T09:12:56Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T09:12:59Z caller=logging.go:85 method=Health result=2 took=28.579µs +ts=2025-05-22T09:12:59Z caller=logging.go:85 method=Health result=2 took=12.15µs +ts=2025-05-22T09:13:02Z caller=logging.go:85 method=Health result=2 took=40.789µs +ts=2025-05-22T09:13:02Z caller=logging.go:85 method=Health result=2 took=41.239µs +ts=2025-05-22T09:13:05Z caller=logging.go:85 method=Health result=2 took=30.719µs +ts=2025-05-22T09:13:05Z caller=logging.go:85 method=Health result=2 took=41.449µs +ts=2025-05-22T09:13:08Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T09:13:08Z caller=logging.go:85 method=Health result=2 took=34.499µs +ts=2025-05-22T09:13:11Z caller=logging.go:85 method=Health result=2 took=45.979µs +ts=2025-05-22T09:13:11Z caller=logging.go:85 method=Health result=2 took=36.539µs +ts=2025-05-22T09:13:14Z caller=logging.go:85 method=Health result=2 took=39.269µs +ts=2025-05-22T09:13:14Z caller=logging.go:85 method=Health result=2 took=39.789µs +ts=2025-05-22T09:13:17Z caller=logging.go:85 method=Health result=2 took=37.779µs +ts=2025-05-22T09:13:17Z caller=logging.go:85 method=Health result=2 took=37.749µs +ts=2025-05-22T09:13:20Z caller=logging.go:85 method=Health result=2 took=32.459µs +ts=2025-05-22T09:13:20Z caller=logging.go:85 method=Health result=2 took=35.11µs +ts=2025-05-22T09:13:23Z caller=logging.go:85 method=Health result=2 took=108.997µs +ts=2025-05-22T09:13:23Z caller=logging.go:85 method=Health result=2 took=106.788µs +ts=2025-05-22T09:13:26Z caller=logging.go:85 method=Health result=2 took=69.598µs +ts=2025-05-22T09:13:26Z caller=logging.go:85 method=Health result=2 took=41.859µs +ts=2025-05-22T09:13:29Z caller=logging.go:85 method=Health result=2 took=108.978µs +ts=2025-05-22T09:13:29Z caller=logging.go:85 method=Health result=2 took=16.219µs +ts=2025-05-22T09:13:32Z caller=logging.go:85 method=Health result=2 took=45.919µs +ts=2025-05-22T09:13:32Z caller=logging.go:85 method=Health result=2 took=50.059µs +ts=2025-05-22T09:13:35Z caller=logging.go:85 method=Health result=2 took=40.979µs +ts=2025-05-22T09:13:35Z caller=logging.go:85 method=Health result=2 took=46.189µs +ts=2025-05-22T09:13:38Z caller=logging.go:85 method=Health result=2 took=42.709µs +ts=2025-05-22T09:13:38Z caller=logging.go:85 method=Health result=2 took=47.479µs +ts=2025-05-22T09:13:41Z caller=logging.go:85 method=Health result=2 took=32.269µs +ts=2025-05-22T09:13:41Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T09:13:44Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T09:13:44Z caller=logging.go:85 method=Health result=2 took=37.319µs +ts=2025-05-22T09:13:47Z caller=logging.go:85 method=Health result=2 took=39.579µs +ts=2025-05-22T09:13:47Z caller=logging.go:85 method=Health result=2 took=27.319µs +ts=2025-05-22T09:13:50Z caller=logging.go:85 method=Health result=2 took=38.279µs +ts=2025-05-22T09:13:50Z caller=logging.go:85 method=Health result=2 took=35.749µs +ts=2025-05-22T09:13:53Z caller=logging.go:85 method=Health result=2 took=40.069µs +ts=2025-05-22T09:13:53Z caller=logging.go:85 method=Health result=2 took=29.259µs +ts=2025-05-22T09:13:56Z caller=logging.go:85 method=Health result=2 took=31.02µs +ts=2025-05-22T09:13:56Z caller=logging.go:85 method=Health result=2 took=12.61µs +ts=2025-05-22T09:13:59Z caller=logging.go:85 method=Health result=2 took=40.639µs +ts=2025-05-22T09:13:59Z caller=logging.go:85 method=Health result=2 took=45.389µs +ts=2025-05-22T09:14:02Z caller=logging.go:85 method=Health result=2 took=41.239µs +ts=2025-05-22T09:14:02Z caller=logging.go:85 method=Health result=2 took=40.599µs +ts=2025-05-22T09:14:05Z caller=logging.go:85 method=Health result=2 took=30.919µs +ts=2025-05-22T09:14:05Z caller=logging.go:85 method=Health result=2 took=30.939µs +ts=2025-05-22T09:14:08Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T09:14:08Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T09:14:11Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T09:14:11Z caller=logging.go:85 method=Health result=2 took=40.229µs +ts=2025-05-22T09:14:14Z caller=logging.go:85 method=Health result=2 took=39.159µs +ts=2025-05-22T09:14:14Z caller=logging.go:85 method=Health result=2 took=47.389µs +ts=2025-05-22T09:14:17Z caller=logging.go:85 method=Health result=2 took=30.03µs +ts=2025-05-22T09:14:17Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T09:14:20Z caller=logging.go:85 method=Health result=2 took=41.149µs +ts=2025-05-22T09:14:20Z caller=logging.go:85 method=Health result=2 took=41.619µs +ts=2025-05-22T09:14:23Z caller=logging.go:85 method=Health result=2 took=37.449µs +ts=2025-05-22T09:14:23Z caller=logging.go:85 method=Health result=2 took=15.739µs +ts=2025-05-22T09:14:26Z caller=logging.go:85 method=Health result=2 took=38.71µs +ts=2025-05-22T09:14:26Z caller=logging.go:85 method=Health result=2 took=38.54µs +ts=2025-05-22T09:14:29Z caller=logging.go:85 method=Health result=2 took=37.069µs +ts=2025-05-22T09:14:29Z caller=logging.go:85 method=Health result=2 took=23.609µs +ts=2025-05-22T09:14:32Z caller=logging.go:85 method=Health result=2 took=32.8µs +ts=2025-05-22T09:14:32Z caller=logging.go:85 method=Health result=2 took=40.989µs +ts=2025-05-22T09:14:35Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T09:14:35Z caller=logging.go:85 method=Health result=2 took=37.219µs +ts=2025-05-22T09:14:38Z caller=logging.go:85 method=Health result=2 took=39.129µs +ts=2025-05-22T09:14:38Z caller=logging.go:85 method=Health result=2 took=39.709µs +ts=2025-05-22T09:14:41Z caller=logging.go:85 method=Health result=2 took=35.889µs +ts=2025-05-22T09:14:41Z caller=logging.go:85 method=Health result=2 took=37.749µs +ts=2025-05-22T09:14:44Z caller=logging.go:85 method=Health result=2 took=47.149µs +ts=2025-05-22T09:14:44Z caller=logging.go:85 method=Health result=2 took=43.779µs +ts=2025-05-22T09:14:47Z caller=logging.go:85 method=Health result=2 took=36.28µs +ts=2025-05-22T09:14:47Z caller=logging.go:85 method=Health result=2 took=36.28µs +ts=2025-05-22T09:14:50Z caller=logging.go:85 method=Health result=2 took=31.519µs +ts=2025-05-22T09:14:50Z caller=logging.go:85 method=Health result=2 took=15.91µs +ts=2025-05-22T09:14:53Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T09:14:53Z caller=logging.go:85 method=Health result=2 took=39.639µs +ts=2025-05-22T09:14:56Z caller=logging.go:85 method=Health result=2 took=42.059µs +ts=2025-05-22T09:14:56Z caller=logging.go:85 method=Health result=2 took=46.189µs +ts=2025-05-22T09:14:59Z caller=logging.go:85 method=Health result=2 took=40.879µs +ts=2025-05-22T09:14:59Z caller=logging.go:85 method=Health result=2 took=18.389µs +ts=2025-05-22T09:15:02Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T09:15:02Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T09:15:05Z caller=logging.go:85 method=Health result=2 took=32.68µs +ts=2025-05-22T09:15:05Z caller=logging.go:85 method=Health result=2 took=43.699µs +ts=2025-05-22T09:15:08Z caller=logging.go:85 method=Health result=2 took=33.039µs +ts=2025-05-22T09:15:08Z caller=logging.go:85 method=Health result=2 took=39.569µs +ts=2025-05-22T09:15:11Z caller=logging.go:85 method=Health result=2 took=38.539µs +ts=2025-05-22T09:15:11Z caller=logging.go:85 method=Health result=2 took=38.809µs +ts=2025-05-22T09:15:14Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T09:15:14Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T09:15:17Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T09:15:17Z caller=logging.go:85 method=Health result=2 took=29.04µs +ts=2025-05-22T09:15:20Z caller=logging.go:85 method=Health result=2 took=28.929µs +ts=2025-05-22T09:15:20Z caller=logging.go:85 method=Health result=2 took=24.529µs +ts=2025-05-22T09:15:23Z caller=logging.go:85 method=Health result=2 took=46.549µs +ts=2025-05-22T09:15:23Z caller=logging.go:85 method=Health result=2 took=46.599µs +ts=2025-05-22T09:15:26Z caller=logging.go:85 method=Health result=2 took=40.749µs +ts=2025-05-22T09:15:26Z caller=logging.go:85 method=Health result=2 took=50.799µs +ts=2025-05-22T09:15:29Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T09:15:29Z caller=logging.go:85 method=Health result=2 took=37.799µs +ts=2025-05-22T09:15:32Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T09:15:32Z caller=logging.go:85 method=Health result=2 took=36.099µs +ts=2025-05-22T09:15:35Z caller=logging.go:85 method=Health result=2 took=39.499µs +ts=2025-05-22T09:15:35Z caller=logging.go:85 method=Health result=2 took=40.229µs +ts=2025-05-22T09:15:38Z caller=logging.go:85 method=Health result=2 took=41.239µs +ts=2025-05-22T09:15:38Z caller=logging.go:85 method=Health result=2 took=29.05µs +ts=2025-05-22T09:15:41Z caller=logging.go:85 method=Health result=2 took=45.088µs +ts=2025-05-22T09:15:41Z caller=logging.go:85 method=Health result=2 took=47.669µs +ts=2025-05-22T09:15:44Z caller=logging.go:85 method=Health result=2 took=50.599µs +ts=2025-05-22T09:15:44Z caller=logging.go:85 method=Health result=2 took=34.589µs +ts=2025-05-22T09:15:47Z caller=logging.go:85 method=Health result=2 took=35.649µs +ts=2025-05-22T09:15:47Z caller=logging.go:85 method=Health result=2 took=38.809µs +ts=2025-05-22T09:15:50Z caller=logging.go:85 method=Health result=2 took=37.799µs +ts=2025-05-22T09:15:50Z caller=logging.go:85 method=Health result=2 took=38.129µs +ts=2025-05-22T09:15:53Z caller=logging.go:85 method=Health result=2 took=53.329µs +ts=2025-05-22T09:15:53Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T09:15:56Z caller=logging.go:85 method=Health result=2 took=38.129µs +ts=2025-05-22T09:15:56Z caller=logging.go:85 method=Health result=2 took=44.709µs +ts=2025-05-22T09:15:59Z caller=logging.go:85 method=Health result=2 took=33.199µs +ts=2025-05-22T09:15:59Z caller=logging.go:85 method=Health result=2 took=34.439µs +ts=2025-05-22T09:16:02Z caller=logging.go:85 method=Health result=2 took=38.209µs +ts=2025-05-22T09:16:02Z caller=logging.go:85 method=Health result=2 took=35.369µs +ts=2025-05-22T09:16:05Z caller=logging.go:85 method=Health result=2 took=41.989µs +ts=2025-05-22T09:16:05Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T09:16:08Z caller=logging.go:85 method=Health result=2 took=33.259µs +ts=2025-05-22T09:16:08Z caller=logging.go:85 method=Health result=2 took=33.95µs +ts=2025-05-22T09:16:11Z caller=logging.go:85 method=Health result=2 took=30.769µs +ts=2025-05-22T09:16:11Z caller=logging.go:85 method=Health result=2 took=30.739µs +ts=2025-05-22T09:16:14Z caller=logging.go:85 method=Health result=2 took=34.169µs +ts=2025-05-22T09:16:14Z caller=logging.go:85 method=Health result=2 took=45.999µs +ts=2025-05-22T09:16:17Z caller=logging.go:85 method=Health result=2 took=35.29µs +ts=2025-05-22T09:16:17Z caller=logging.go:85 method=Health result=2 took=35.419µs +ts=2025-05-22T09:16:20Z caller=logging.go:85 method=Health result=2 took=37.789µs +ts=2025-05-22T09:16:20Z caller=logging.go:85 method=Health result=2 took=36.909µs +ts=2025-05-22T09:16:23Z caller=logging.go:85 method=Health result=2 took=38.059µs +ts=2025-05-22T09:16:23Z caller=logging.go:85 method=Health result=2 took=37.619µs +ts=2025-05-22T09:16:26Z caller=logging.go:85 method=Health result=2 took=33.63µs +ts=2025-05-22T09:16:26Z caller=logging.go:85 method=Health result=2 took=43.589µs +ts=2025-05-22T09:16:29Z caller=logging.go:85 method=Health result=2 took=43.549µs +ts=2025-05-22T09:16:29Z caller=logging.go:85 method=Health result=2 took=25.65µs +ts=2025-05-22T09:16:32Z caller=logging.go:85 method=Health result=2 took=38.209µs +ts=2025-05-22T09:16:32Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T09:16:35Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T09:16:35Z caller=logging.go:85 method=Health result=2 took=41.329µs +ts=2025-05-22T09:16:38Z caller=logging.go:85 method=Health result=2 took=31.6µs +ts=2025-05-22T09:16:38Z caller=logging.go:85 method=Health result=2 took=31.54µs +ts=2025-05-22T09:16:41Z caller=logging.go:85 method=Health result=2 took=36.149µs +ts=2025-05-22T09:16:41Z caller=logging.go:85 method=Health result=2 took=36.269µs +ts=2025-05-22T09:16:44Z caller=logging.go:85 method=Health result=2 took=48.639µs +ts=2025-05-22T09:16:44Z caller=logging.go:85 method=Health result=2 took=47.138µs +ts=2025-05-22T09:16:47Z caller=logging.go:85 method=Health result=2 took=42.639µs +ts=2025-05-22T09:16:47Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T09:16:50Z caller=logging.go:85 method=Health result=2 took=61.748µs +ts=2025-05-22T09:16:50Z caller=logging.go:85 method=Health result=2 took=45.989µs +ts=2025-05-22T09:16:53Z caller=logging.go:85 method=Health result=2 took=34.27µs +ts=2025-05-22T09:16:53Z caller=logging.go:85 method=Health result=2 took=45.089µs +ts=2025-05-22T09:16:56Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T09:16:56Z caller=logging.go:85 method=Health result=2 took=48.949µs +ts=2025-05-22T09:16:59Z caller=logging.go:85 method=Health result=2 took=39.059µs +ts=2025-05-22T09:16:59Z caller=logging.go:85 method=Health result=2 took=39.589µs +ts=2025-05-22T09:17:02Z caller=logging.go:85 method=Health result=2 took=29.96µs +ts=2025-05-22T09:17:02Z caller=logging.go:85 method=Health result=2 took=10.15µs +ts=2025-05-22T09:17:05Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T09:17:05Z caller=logging.go:85 method=Health result=2 took=38.489µs +ts=2025-05-22T09:17:08Z caller=logging.go:85 method=Health result=2 took=43.579µs +ts=2025-05-22T09:17:08Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T09:17:11Z caller=logging.go:85 method=Health result=2 took=46.769µs +ts=2025-05-22T09:17:11Z caller=logging.go:85 method=Health result=2 took=49.569µs +ts=2025-05-22T09:17:14Z caller=logging.go:85 method=Health result=2 took=44.529µs +ts=2025-05-22T09:17:14Z caller=logging.go:85 method=Health result=2 took=50.379µs +ts=2025-05-22T09:17:17Z caller=logging.go:85 method=Health result=2 took=52.139µs +ts=2025-05-22T09:17:17Z caller=logging.go:85 method=Health result=2 took=51.209µs +ts=2025-05-22T09:17:20Z caller=logging.go:85 method=Health result=2 took=43.969µs +ts=2025-05-22T09:17:20Z caller=logging.go:85 method=Health result=2 took=43.339µs +ts=2025-05-22T09:17:23Z caller=logging.go:85 method=Health result=2 took=33.429µs +ts=2025-05-22T09:17:23Z caller=logging.go:85 method=Health result=2 took=55.659µs +ts=2025-05-22T09:17:26Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T09:17:26Z caller=logging.go:85 method=Health result=2 took=49.919µs +ts=2025-05-22T09:17:29Z caller=logging.go:85 method=Health result=2 took=43.138µs +ts=2025-05-22T09:17:29Z caller=logging.go:85 method=Health result=2 took=43.998µs +ts=2025-05-22T09:17:32Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T09:17:32Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T09:17:35Z caller=logging.go:85 method=Health result=2 took=41.619µs +ts=2025-05-22T09:17:35Z caller=logging.go:85 method=Health result=2 took=40.939µs +ts=2025-05-22T09:17:38Z caller=logging.go:85 method=Health result=2 took=44.419µs +ts=2025-05-22T09:17:38Z caller=logging.go:85 method=Health result=2 took=50.788µs +ts=2025-05-22T09:17:41Z caller=logging.go:85 method=Health result=2 took=56.049µs +ts=2025-05-22T09:17:41Z caller=logging.go:85 method=Health result=2 took=56.039µs +ts=2025-05-22T09:17:44Z caller=logging.go:85 method=Health result=2 took=39.679µs +ts=2025-05-22T09:17:44Z caller=logging.go:85 method=Health result=2 took=41.079µs +ts=2025-05-22T09:17:47Z caller=logging.go:85 method=Health result=2 took=43.618µs +ts=2025-05-22T09:17:47Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T09:17:50Z caller=logging.go:85 method=Health result=2 took=44.489µs +ts=2025-05-22T09:17:50Z caller=logging.go:85 method=Health result=2 took=52.279µs +ts=2025-05-22T09:17:53Z caller=logging.go:85 method=Health result=2 took=30.129µs +ts=2025-05-22T09:17:53Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T09:17:56Z caller=logging.go:85 method=Health result=2 took=45.439µs +ts=2025-05-22T09:17:56Z caller=logging.go:85 method=Health result=2 took=51.369µs +ts=2025-05-22T09:17:59Z caller=logging.go:85 method=Health result=2 took=47.019µs +ts=2025-05-22T09:17:59Z caller=logging.go:85 method=Health result=2 took=51.019µs +ts=2025-05-22T09:18:02Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T09:18:02Z caller=logging.go:85 method=Health result=2 took=48.739µs +ts=2025-05-22T09:18:05Z caller=logging.go:85 method=Health result=2 took=44.969µs +ts=2025-05-22T09:18:05Z caller=logging.go:85 method=Health result=2 took=49.309µs +ts=2025-05-22T09:18:08Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T09:18:08Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T09:18:11Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T09:18:11Z caller=logging.go:85 method=Health result=2 took=49.699µs +ts=2025-05-22T09:18:14Z caller=logging.go:85 method=Health result=2 took=48.959µs +ts=2025-05-22T09:18:14Z caller=logging.go:85 method=Health result=2 took=49.619µs +ts=2025-05-22T09:18:17Z caller=logging.go:85 method=Health result=2 took=45.849µs +ts=2025-05-22T09:18:17Z caller=logging.go:85 method=Health result=2 took=52.439µs +ts=2025-05-22T09:18:20Z caller=logging.go:85 method=Health result=2 took=36.939µs +ts=2025-05-22T09:18:20Z caller=logging.go:85 method=Health result=2 took=48.339µs +ts=2025-05-22T09:18:23Z caller=logging.go:85 method=Health result=2 took=39.989µs +ts=2025-05-22T09:18:23Z caller=logging.go:85 method=Health result=2 took=33.41µs +ts=2025-05-22T09:18:26Z caller=logging.go:85 method=Health result=2 took=42.629µs +ts=2025-05-22T09:18:26Z caller=logging.go:85 method=Health result=2 took=43.149µs +ts=2025-05-22T09:18:29Z caller=logging.go:85 method=Health result=2 took=47.689µs +ts=2025-05-22T09:18:29Z caller=logging.go:85 method=Health result=2 took=49.979µs +ts=2025-05-22T09:18:32Z caller=logging.go:85 method=Health result=2 took=41.889µs +ts=2025-05-22T09:18:32Z caller=logging.go:85 method=Health result=2 took=40.999µs +ts=2025-05-22T09:18:35Z caller=logging.go:85 method=Health result=2 took=43.529µs +ts=2025-05-22T09:18:35Z caller=logging.go:85 method=Health result=2 took=49.789µs +ts=2025-05-22T09:18:38Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T09:18:38Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T09:18:41Z caller=logging.go:85 method=Health result=2 took=38.319µs +ts=2025-05-22T09:18:41Z caller=logging.go:85 method=Health result=2 took=41.869µs +ts=2025-05-22T09:18:44Z caller=logging.go:85 method=Health result=2 took=37.559µs +ts=2025-05-22T09:18:44Z caller=logging.go:85 method=Health result=2 took=45.828µs +ts=2025-05-22T09:18:47Z caller=logging.go:85 method=Health result=2 took=68.938µs +ts=2025-05-22T09:18:47Z caller=logging.go:85 method=Health result=2 took=20.919µs +ts=2025-05-22T09:18:50Z caller=logging.go:85 method=Health result=2 took=37.109µs +ts=2025-05-22T09:18:50Z caller=logging.go:85 method=Health result=2 took=37.089µs +ts=2025-05-22T09:18:53Z caller=logging.go:85 method=Health result=2 took=15.539µs +ts=2025-05-22T09:18:53Z caller=logging.go:85 method=Health result=2 took=29.349µs +ts=2025-05-22T09:18:56Z caller=logging.go:85 method=Health result=2 took=41.209µs +ts=2025-05-22T09:18:56Z caller=logging.go:85 method=Health result=2 took=40.979µs +ts=2025-05-22T09:18:59Z caller=logging.go:85 method=Health result=2 took=44.049µs +ts=2025-05-22T09:18:59Z caller=logging.go:85 method=Health result=2 took=29.639µs +ts=2025-05-22T09:19:02Z caller=logging.go:85 method=Health result=2 took=27.4µs +ts=2025-05-22T09:19:02Z caller=logging.go:85 method=Health result=2 took=27.38µs +ts=2025-05-22T09:19:05Z caller=logging.go:85 method=Health result=2 took=40.299µs +ts=2025-05-22T09:19:05Z caller=logging.go:85 method=Health result=2 took=40.339µs +ts=2025-05-22T09:19:08Z caller=logging.go:85 method=Health result=2 took=31.03µs +ts=2025-05-22T09:19:08Z caller=logging.go:85 method=Health result=2 took=40.389µs +ts=2025-05-22T09:19:11Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T09:19:11Z caller=logging.go:85 method=Health result=2 took=44.719µs +ts=2025-05-22T09:19:14Z caller=logging.go:85 method=Health result=2 took=39.849µs +ts=2025-05-22T09:19:14Z caller=logging.go:85 method=Health result=2 took=39.649µs +ts=2025-05-22T09:19:17Z caller=logging.go:85 method=Health result=2 took=42.709µs +ts=2025-05-22T09:19:17Z caller=logging.go:85 method=Health result=2 took=49.559µs +ts=2025-05-22T09:19:20Z caller=logging.go:85 method=Health result=2 took=30.87µs +ts=2025-05-22T09:19:20Z caller=logging.go:85 method=Health result=2 took=30.91µs +ts=2025-05-22T09:19:23Z caller=logging.go:85 method=Health result=2 took=29.829µs +ts=2025-05-22T09:19:23Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T09:19:26Z caller=logging.go:85 method=Health result=2 took=27.7µs +ts=2025-05-22T09:19:26Z caller=logging.go:85 method=Health result=2 took=42.299µs +ts=2025-05-22T09:19:29Z caller=logging.go:85 method=Health result=2 took=31.15µs +ts=2025-05-22T09:19:29Z caller=logging.go:85 method=Health result=2 took=45.969µs +ts=2025-05-22T09:19:32Z caller=logging.go:85 method=Health result=2 took=44.278µs +ts=2025-05-22T09:19:32Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T09:19:35Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T09:19:35Z caller=logging.go:85 method=Health result=2 took=41.399µs +ts=2025-05-22T09:19:38Z caller=logging.go:85 method=Health result=2 took=45.739µs +ts=2025-05-22T09:19:38Z caller=logging.go:85 method=Health result=2 took=51.749µs +ts=2025-05-22T09:19:41Z caller=logging.go:85 method=Health result=2 took=30.459µs +ts=2025-05-22T09:19:41Z caller=logging.go:85 method=Health result=2 took=46.009µs +ts=2025-05-22T09:19:44Z caller=logging.go:85 method=Health result=2 took=45.159µs +ts=2025-05-22T09:19:44Z caller=logging.go:85 method=Health result=2 took=41.689µs +ts=2025-05-22T09:19:47Z caller=logging.go:85 method=Health result=2 took=46.078µs +ts=2025-05-22T09:19:47Z caller=logging.go:85 method=Health result=2 took=52.059µs +ts=2025-05-22T09:19:50Z caller=logging.go:85 method=Health result=2 took=38.569µs +ts=2025-05-22T09:19:50Z caller=logging.go:85 method=Health result=2 took=37.039µs +ts=2025-05-22T09:19:53Z caller=logging.go:85 method=Health result=2 took=45.869µs +ts=2025-05-22T09:19:53Z caller=logging.go:85 method=Health result=2 took=58.318µs +ts=2025-05-22T09:19:56Z caller=logging.go:85 method=Health result=2 took=66.528µs +ts=2025-05-22T09:19:56Z caller=logging.go:85 method=Health result=2 took=50.258µs +ts=2025-05-22T09:19:59Z caller=logging.go:85 method=Health result=2 took=98.157µs +ts=2025-05-22T09:19:59Z caller=logging.go:85 method=Health result=2 took=67.089µs +ts=2025-05-22T09:20:02Z caller=logging.go:85 method=Health result=2 took=41.519µs +ts=2025-05-22T09:20:02Z caller=logging.go:85 method=Health result=2 took=50.369µs +ts=2025-05-22T09:20:05Z caller=logging.go:85 method=Health result=2 took=39.359µs +ts=2025-05-22T09:20:05Z caller=logging.go:85 method=Health result=2 took=39.379µs +ts=2025-05-22T09:20:08Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T09:20:08Z caller=logging.go:85 method=Health result=2 took=49.259µs +ts=2025-05-22T09:20:11Z caller=logging.go:85 method=Health result=2 took=61.779µs +ts=2025-05-22T09:20:11Z caller=logging.go:85 method=Health result=2 took=54.169µs +ts=2025-05-22T09:20:14Z caller=logging.go:85 method=Health result=2 took=41.429µs +ts=2025-05-22T09:20:14Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T09:20:17Z caller=logging.go:85 method=Health result=2 took=17.32µs +ts=2025-05-22T09:20:17Z caller=logging.go:85 method=Health result=2 took=40.259µs +ts=2025-05-22T09:20:20Z caller=logging.go:85 method=Health result=2 took=34.689µs +ts=2025-05-22T09:20:20Z caller=logging.go:85 method=Health result=2 took=41.649µs +ts=2025-05-22T09:20:23Z caller=logging.go:85 method=Health result=2 took=46.918µs +ts=2025-05-22T09:20:23Z caller=logging.go:85 method=Health result=2 took=48.138µs +ts=2025-05-22T09:20:26Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T09:20:26Z caller=logging.go:85 method=Health result=2 took=44.549µs +ts=2025-05-22T09:20:29Z caller=logging.go:85 method=Health result=2 took=42.759µs +ts=2025-05-22T09:20:29Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T09:20:32Z caller=logging.go:85 method=Health result=2 took=44.119µs +ts=2025-05-22T09:20:32Z caller=logging.go:85 method=Health result=2 took=43.399µs +ts=2025-05-22T09:20:35Z caller=logging.go:85 method=Health result=2 took=40.139µs +ts=2025-05-22T09:20:35Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T09:20:38Z caller=logging.go:85 method=Health result=2 took=31.729µs +ts=2025-05-22T09:20:38Z caller=logging.go:85 method=Health result=2 took=52.529µs +ts=2025-05-22T09:20:41Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T09:20:41Z caller=logging.go:85 method=Health result=2 took=44.159µs +ts=2025-05-22T09:20:44Z caller=logging.go:85 method=Health result=2 took=35.609µs +ts=2025-05-22T09:20:44Z caller=logging.go:85 method=Health result=2 took=35.419µs +ts=2025-05-22T09:20:47Z caller=logging.go:85 method=Health result=2 took=46.358µs +ts=2025-05-22T09:20:47Z caller=logging.go:85 method=Health result=2 took=52.689µs +ts=2025-05-22T09:20:50Z caller=logging.go:85 method=Health result=2 took=37.289µs +ts=2025-05-22T09:20:50Z caller=logging.go:85 method=Health result=2 took=37.249µs +ts=2025-05-22T09:20:53Z caller=logging.go:85 method=Health result=2 took=29.65µs +ts=2025-05-22T09:20:53Z caller=logging.go:85 method=Health result=2 took=29.29µs +ts=2025-05-22T09:20:56Z caller=logging.go:85 method=Health result=2 took=41.009µs +ts=2025-05-22T09:20:56Z caller=logging.go:85 method=Health result=2 took=40.989µs +ts=2025-05-22T09:20:59Z caller=logging.go:85 method=Health result=2 took=35.859µs +ts=2025-05-22T09:20:59Z caller=logging.go:85 method=Health result=2 took=35.919µs +ts=2025-05-22T09:21:02Z caller=logging.go:85 method=Health result=2 took=64.279µs +ts=2025-05-22T09:21:02Z caller=logging.go:85 method=Health result=2 took=56.248µs +ts=2025-05-22T09:21:05Z caller=logging.go:85 method=Health result=2 took=56.389µs +ts=2025-05-22T09:21:05Z caller=logging.go:85 method=Health result=2 took=56.399µs +ts=2025-05-22T09:21:08Z caller=logging.go:85 method=Health result=2 took=43.089µs +ts=2025-05-22T09:21:08Z caller=logging.go:85 method=Health result=2 took=43.079µs +ts=2025-05-22T09:21:11Z caller=logging.go:85 method=Health result=2 took=47.619µs +ts=2025-05-22T09:21:11Z caller=logging.go:85 method=Health result=2 took=46.969µs +ts=2025-05-22T09:21:14Z caller=logging.go:85 method=Health result=2 took=51.379µs +ts=2025-05-22T09:21:14Z caller=logging.go:85 method=Health result=2 took=52.119µs +ts=2025-05-22T09:21:17Z caller=logging.go:85 method=Health result=2 took=49.009µs +ts=2025-05-22T09:21:17Z caller=logging.go:85 method=Health result=2 took=25.899µs +ts=2025-05-22T09:21:20Z caller=logging.go:85 method=Health result=2 took=35.51µs +ts=2025-05-22T09:21:20Z caller=logging.go:85 method=Health result=2 took=44.549µs +ts=2025-05-22T09:21:23Z caller=logging.go:85 method=Health result=2 took=29.319µs +ts=2025-05-22T09:21:23Z caller=logging.go:85 method=Health result=2 took=57.169µs +ts=2025-05-22T09:21:26Z caller=logging.go:85 method=Health result=2 took=48.069µs +ts=2025-05-22T09:21:26Z caller=logging.go:85 method=Health result=2 took=41.759µs +ts=2025-05-22T09:21:29Z caller=logging.go:85 method=Health result=2 took=52.088µs +ts=2025-05-22T09:21:29Z caller=logging.go:85 method=Health result=2 took=85.138µs +ts=2025-05-22T09:21:32Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T09:21:32Z caller=logging.go:85 method=Health result=2 took=52.938µs +ts=2025-05-22T09:21:35Z caller=logging.go:85 method=Health result=2 took=32.399µs +ts=2025-05-22T09:21:35Z caller=logging.go:85 method=Health result=2 took=47.048µs +ts=2025-05-22T09:21:38Z caller=logging.go:85 method=Health result=2 took=40.449µs +ts=2025-05-22T09:21:38Z caller=logging.go:85 method=Health result=2 took=40.929µs +ts=2025-05-22T09:21:41Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T09:21:41Z caller=logging.go:85 method=Health result=2 took=39.959µs +ts=2025-05-22T09:21:44Z caller=logging.go:85 method=Health result=2 took=45.339µs +ts=2025-05-22T09:21:44Z caller=logging.go:85 method=Health result=2 took=31.06µs +ts=2025-05-22T09:21:47Z caller=logging.go:85 method=Health result=2 took=130.277µs +ts=2025-05-22T09:21:47Z caller=logging.go:85 method=Health result=2 took=159.937µs +ts=2025-05-22T09:21:50Z caller=logging.go:85 method=Health result=2 took=100.358µs +ts=2025-05-22T09:21:50Z caller=logging.go:85 method=Health result=2 took=104.468µs +ts=2025-05-22T09:21:53Z caller=logging.go:85 method=Health result=2 took=40.539µs +ts=2025-05-22T09:21:53Z caller=logging.go:85 method=Health result=2 took=45.718µs +ts=2025-05-22T09:21:56Z caller=logging.go:85 method=Health result=2 took=30.97µs +ts=2025-05-22T09:21:56Z caller=logging.go:85 method=Health result=2 took=31.679µs +ts=2025-05-22T09:21:59Z caller=logging.go:85 method=Health result=2 took=50.649µs +ts=2025-05-22T09:21:59Z caller=logging.go:85 method=Health result=2 took=22.27µs +ts=2025-05-22T09:22:02Z caller=logging.go:85 method=Health result=2 took=39.579µs +ts=2025-05-22T09:22:02Z caller=logging.go:85 method=Health result=2 took=27.539µs +ts=2025-05-22T09:22:05Z caller=logging.go:85 method=Health result=2 took=37.459µs +ts=2025-05-22T09:22:05Z caller=logging.go:85 method=Health result=2 took=48.559µs +ts=2025-05-22T09:22:08Z caller=logging.go:85 method=Health result=2 took=56.708µs +ts=2025-05-22T09:22:08Z caller=logging.go:85 method=Health result=2 took=56.698µs +ts=2025-05-22T09:22:11Z caller=logging.go:85 method=Health result=2 took=37.409µs +ts=2025-05-22T09:22:11Z caller=logging.go:85 method=Health result=2 took=32.039µs +ts=2025-05-22T09:22:14Z caller=logging.go:85 method=Health result=2 took=31.55µs +ts=2025-05-22T09:22:14Z caller=logging.go:85 method=Health result=2 took=40.129µs +ts=2025-05-22T09:22:17Z caller=logging.go:85 method=Health result=2 took=73.689µs +ts=2025-05-22T09:22:17Z caller=logging.go:85 method=Health result=2 took=63.739µs +ts=2025-05-22T09:22:20Z caller=logging.go:85 method=Health result=2 took=45.009µs +ts=2025-05-22T09:22:20Z caller=logging.go:85 method=Health result=2 took=31.87µs +ts=2025-05-22T09:22:23Z caller=logging.go:85 method=Health result=2 took=64.219µs +ts=2025-05-22T09:22:23Z caller=logging.go:85 method=Health result=2 took=64.759µs +ts=2025-05-22T09:22:26Z caller=logging.go:85 method=Health result=2 took=42.839µs +ts=2025-05-22T09:22:26Z caller=logging.go:85 method=Health result=2 took=49.429µs +ts=2025-05-22T09:22:29Z caller=logging.go:85 method=Health result=2 took=51.329µs +ts=2025-05-22T09:22:29Z caller=logging.go:85 method=Health result=2 took=48.019µs +ts=2025-05-22T09:22:32Z caller=logging.go:85 method=Health result=2 took=44.319µs +ts=2025-05-22T09:22:32Z caller=logging.go:85 method=Health result=2 took=43.999µs +ts=2025-05-22T09:22:35Z caller=logging.go:85 method=Health result=2 took=42.179µs +ts=2025-05-22T09:22:35Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T09:22:38Z caller=logging.go:85 method=Health result=2 took=38.949µs +ts=2025-05-22T09:22:38Z caller=logging.go:85 method=Health result=2 took=24.5µs +ts=2025-05-22T09:22:41Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T09:22:41Z caller=logging.go:85 method=Health result=2 took=42.799µs +ts=2025-05-22T09:22:44Z caller=logging.go:85 method=Health result=2 took=31.299µs +ts=2025-05-22T09:22:44Z caller=logging.go:85 method=Health result=2 took=47.439µs +ts=2025-05-22T09:22:47Z caller=logging.go:85 method=Health result=2 took=45.289µs +ts=2025-05-22T09:22:47Z caller=logging.go:85 method=Health result=2 took=38.66µs +ts=2025-05-22T09:22:50Z caller=logging.go:85 method=Health result=2 took=43.758µs +ts=2025-05-22T09:22:50Z caller=logging.go:85 method=Health result=2 took=30.02µs +ts=2025-05-22T09:22:53Z caller=logging.go:85 method=Health result=2 took=31.779µs +ts=2025-05-22T09:22:53Z caller=logging.go:85 method=Health result=2 took=34.979µs +ts=2025-05-22T09:22:56Z caller=logging.go:85 method=Health result=2 took=34.869µs +ts=2025-05-22T09:22:56Z caller=logging.go:85 method=Health result=2 took=35.269µs +ts=2025-05-22T09:22:59Z caller=logging.go:85 method=Health result=2 took=31.709µs +ts=2025-05-22T09:22:59Z caller=logging.go:85 method=Health result=2 took=49.489µs +ts=2025-05-22T09:23:02Z caller=logging.go:85 method=Health result=2 took=30.919µs +ts=2025-05-22T09:23:02Z caller=logging.go:85 method=Health result=2 took=33.159µs +ts=2025-05-22T09:23:05Z caller=logging.go:85 method=Health result=2 took=41.789µs +ts=2025-05-22T09:23:05Z caller=logging.go:85 method=Health result=2 took=46.759µs +ts=2025-05-22T09:23:08Z caller=logging.go:85 method=Health result=2 took=31.189µs +ts=2025-05-22T09:23:08Z caller=logging.go:85 method=Health result=2 took=46.989µs +ts=2025-05-22T09:23:11Z caller=logging.go:85 method=Health result=2 took=42.769µs +ts=2025-05-22T09:23:11Z caller=logging.go:85 method=Health result=2 took=48.599µs +ts=2025-05-22T09:23:14Z caller=logging.go:85 method=Health result=2 took=40.289µs +ts=2025-05-22T09:23:14Z caller=logging.go:85 method=Health result=2 took=40.829µs +ts=2025-05-22T09:23:17Z caller=logging.go:85 method=Health result=2 took=39.229µs +ts=2025-05-22T09:23:17Z caller=logging.go:85 method=Health result=2 took=39.199µs +ts=2025-05-22T09:23:20Z caller=logging.go:85 method=Health result=2 took=44.249µs +ts=2025-05-22T09:23:20Z caller=logging.go:85 method=Health result=2 took=43.859µs +ts=2025-05-22T09:23:23Z caller=logging.go:85 method=Health result=2 took=44.859µs +ts=2025-05-22T09:23:23Z caller=logging.go:85 method=Health result=2 took=50.959µs +ts=2025-05-22T09:23:26Z caller=logging.go:85 method=Health result=2 took=41.919µs +ts=2025-05-22T09:23:26Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T09:23:29Z caller=logging.go:85 method=Health result=2 took=38.539µs +ts=2025-05-22T09:23:29Z caller=logging.go:85 method=Health result=2 took=83.218µs +ts=2025-05-22T09:23:32Z caller=logging.go:85 method=Health result=2 took=54.589µs +ts=2025-05-22T09:23:32Z caller=logging.go:85 method=Health result=2 took=54.579µs +ts=2025-05-22T09:23:35Z caller=logging.go:85 method=Health result=2 took=30.12µs +ts=2025-05-22T09:23:35Z caller=logging.go:85 method=Health result=2 took=40.699µs +ts=2025-05-22T09:23:38Z caller=logging.go:85 method=Health result=2 took=35.709µs +ts=2025-05-22T09:23:38Z caller=logging.go:85 method=Health result=2 took=35.909µs +ts=2025-05-22T09:23:41Z caller=logging.go:85 method=Health result=2 took=37.069µs +ts=2025-05-22T09:23:41Z caller=logging.go:85 method=Health result=2 took=23.469µs +ts=2025-05-22T09:23:44Z caller=logging.go:85 method=Health result=2 took=41.179µs +ts=2025-05-22T09:23:44Z caller=logging.go:85 method=Health result=2 took=49.579µs +ts=2025-05-22T09:23:47Z caller=logging.go:85 method=Health result=2 took=37.319µs +ts=2025-05-22T09:23:47Z caller=logging.go:85 method=Health result=2 took=50.029µs +ts=2025-05-22T09:23:50Z caller=logging.go:85 method=Health result=2 took=44.309µs +ts=2025-05-22T09:23:50Z caller=logging.go:85 method=Health result=2 took=44.129µs +ts=2025-05-22T09:23:53Z caller=logging.go:85 method=Health result=2 took=39.179µs +ts=2025-05-22T09:23:53Z caller=logging.go:85 method=Health result=2 took=50.789µs +ts=2025-05-22T09:23:56Z caller=logging.go:85 method=Health result=2 took=36.049µs +ts=2025-05-22T09:23:56Z caller=logging.go:85 method=Health result=2 took=36.399µs +ts=2025-05-22T09:23:59Z caller=logging.go:85 method=Health result=2 took=56.119µs +ts=2025-05-22T09:23:59Z caller=logging.go:85 method=Health result=2 took=47.499µs +ts=2025-05-22T09:24:02Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T09:24:02Z caller=logging.go:85 method=Health result=2 took=50.779µs +ts=2025-05-22T09:24:05Z caller=logging.go:85 method=Health result=2 took=28.6µs +ts=2025-05-22T09:24:05Z caller=logging.go:85 method=Health result=2 took=28.58µs +ts=2025-05-22T09:24:08Z caller=logging.go:85 method=Health result=2 took=37.849µs +ts=2025-05-22T09:24:08Z caller=logging.go:85 method=Health result=2 took=46.089µs +ts=2025-05-22T09:24:11Z caller=logging.go:85 method=Health result=2 took=39.239µs +ts=2025-05-22T09:24:11Z caller=logging.go:85 method=Health result=2 took=49.029µs +ts=2025-05-22T09:24:14Z caller=logging.go:85 method=Health result=2 took=41.199µs +ts=2025-05-22T09:24:14Z caller=logging.go:85 method=Health result=2 took=49.139µs +ts=2025-05-22T09:24:17Z caller=logging.go:85 method=Health result=2 took=44.879µs +ts=2025-05-22T09:24:17Z caller=logging.go:85 method=Health result=2 took=68.279µs +ts=2025-05-22T09:24:20Z caller=logging.go:85 method=Health result=2 took=43.789µs +ts=2025-05-22T09:24:20Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T09:24:23Z caller=logging.go:85 method=Health result=2 took=46.979µs +ts=2025-05-22T09:24:23Z caller=logging.go:85 method=Health result=2 took=47.729µs +ts=2025-05-22T09:24:26Z caller=logging.go:85 method=Health result=2 took=43.579µs +ts=2025-05-22T09:24:26Z caller=logging.go:85 method=Health result=2 took=44.069µs +ts=2025-05-22T09:24:29Z caller=logging.go:85 method=Health result=2 took=44.289µs +ts=2025-05-22T09:24:29Z caller=logging.go:85 method=Health result=2 took=44.549µs +ts=2025-05-22T09:24:32Z caller=logging.go:85 method=Health result=2 took=37.47µs +ts=2025-05-22T09:24:32Z caller=logging.go:85 method=Health result=2 took=48.229µs +ts=2025-05-22T09:24:35Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T09:24:35Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T09:24:38Z caller=logging.go:85 method=Health result=2 took=39.159µs +ts=2025-05-22T09:24:38Z caller=logging.go:85 method=Health result=2 took=39.959µs +ts=2025-05-22T09:24:41Z caller=logging.go:85 method=Health result=2 took=39.719µs +ts=2025-05-22T09:24:41Z caller=logging.go:85 method=Health result=2 took=39.629µs +ts=2025-05-22T09:24:44Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T09:24:44Z caller=logging.go:85 method=Health result=2 took=40.389µs +ts=2025-05-22T09:24:47Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T09:24:47Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T09:24:50Z caller=logging.go:85 method=Health result=2 took=39.239µs +ts=2025-05-22T09:24:50Z caller=logging.go:85 method=Health result=2 took=39.089µs +ts=2025-05-22T09:24:53Z caller=logging.go:85 method=Health result=2 took=33.309µs +ts=2025-05-22T09:24:53Z caller=logging.go:85 method=Health result=2 took=44.989µs +ts=2025-05-22T09:24:56Z caller=logging.go:85 method=Health result=2 took=39.909µs +ts=2025-05-22T09:24:56Z caller=logging.go:85 method=Health result=2 took=40.669µs +ts=2025-05-22T09:24:59Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T09:24:59Z caller=logging.go:85 method=Health result=2 took=49.009µs +ts=2025-05-22T09:25:02Z caller=logging.go:85 method=Health result=2 took=41.309µs +ts=2025-05-22T09:25:02Z caller=logging.go:85 method=Health result=2 took=48.419µs +ts=2025-05-22T09:25:05Z caller=logging.go:85 method=Health result=2 took=38.829µs +ts=2025-05-22T09:25:05Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T09:25:08Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T09:25:08Z caller=logging.go:85 method=Health result=2 took=43.389µs +ts=2025-05-22T09:25:11Z caller=logging.go:85 method=Health result=2 took=30.43µs +ts=2025-05-22T09:25:11Z caller=logging.go:85 method=Health result=2 took=30.79µs +ts=2025-05-22T09:25:14Z caller=logging.go:85 method=Health result=2 took=34.379µs +ts=2025-05-22T09:25:14Z caller=logging.go:85 method=Health result=2 took=45.879µs +ts=2025-05-22T09:25:17Z caller=logging.go:85 method=Health result=2 took=39.239µs +ts=2025-05-22T09:25:17Z caller=logging.go:85 method=Health result=2 took=39.509µs +ts=2025-05-22T09:25:20Z caller=logging.go:85 method=Health result=2 took=39.059µs +ts=2025-05-22T09:25:20Z caller=logging.go:85 method=Health result=2 took=47.018µs +ts=2025-05-22T09:25:23Z caller=logging.go:85 method=Health result=2 took=42.079µs +ts=2025-05-22T09:25:23Z caller=logging.go:85 method=Health result=2 took=49.579µs +ts=2025-05-22T09:25:26Z caller=logging.go:85 method=Health result=2 took=39.289µs +ts=2025-05-22T09:25:26Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T09:25:29Z caller=logging.go:85 method=Health result=2 took=44.548µs +ts=2025-05-22T09:25:29Z caller=logging.go:85 method=Health result=2 took=48.089µs +ts=2025-05-22T09:25:32Z caller=logging.go:85 method=Health result=2 took=42.499µs +ts=2025-05-22T09:25:32Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T09:25:35Z caller=logging.go:85 method=Health result=2 took=44.149µs +ts=2025-05-22T09:25:35Z caller=logging.go:85 method=Health result=2 took=30.079µs +ts=2025-05-22T09:25:38Z caller=logging.go:85 method=Health result=2 took=44.969µs +ts=2025-05-22T09:25:38Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T09:25:41Z caller=logging.go:85 method=Health result=2 took=45.089µs +ts=2025-05-22T09:25:41Z caller=logging.go:85 method=Health result=2 took=49.269µs +ts=2025-05-22T09:25:44Z caller=logging.go:85 method=Health result=2 took=39.389µs +ts=2025-05-22T09:25:44Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T09:25:47Z caller=logging.go:85 method=Health result=2 took=44.419µs +ts=2025-05-22T09:25:47Z caller=logging.go:85 method=Health result=2 took=48.729µs +ts=2025-05-22T09:25:50Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T09:25:50Z caller=logging.go:85 method=Health result=2 took=75.649µs +ts=2025-05-22T09:25:53Z caller=logging.go:85 method=Health result=2 took=40.449µs +ts=2025-05-22T09:25:53Z caller=logging.go:85 method=Health result=2 took=36.399µs +ts=2025-05-22T09:25:56Z caller=logging.go:85 method=Health result=2 took=39.989µs +ts=2025-05-22T09:25:56Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T09:25:59Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T09:25:59Z caller=logging.go:85 method=Health result=2 took=24.469µs +ts=2025-05-22T09:26:02Z caller=logging.go:85 method=Health result=2 took=38.819µs +ts=2025-05-22T09:26:02Z caller=logging.go:85 method=Health result=2 took=38.749µs +ts=2025-05-22T09:26:05Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T09:26:05Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T09:26:08Z caller=logging.go:85 method=Health result=2 took=33.419µs +ts=2025-05-22T09:26:08Z caller=logging.go:85 method=Health result=2 took=34.88µs +ts=2025-05-22T09:26:11Z caller=logging.go:85 method=Health result=2 took=42.339µs +ts=2025-05-22T09:26:11Z caller=logging.go:85 method=Health result=2 took=50.138µs +ts=2025-05-22T09:26:14Z caller=logging.go:85 method=Health result=2 took=28.149µs +ts=2025-05-22T09:26:14Z caller=logging.go:85 method=Health result=2 took=15.049µs +ts=2025-05-22T09:26:17Z caller=logging.go:85 method=Health result=2 took=47.709µs +ts=2025-05-22T09:26:17Z caller=logging.go:85 method=Health result=2 took=61.858µs +ts=2025-05-22T09:26:20Z caller=logging.go:85 method=Health result=2 took=32.19µs +ts=2025-05-22T09:26:20Z caller=logging.go:85 method=Health result=2 took=55.809µs +ts=2025-05-22T09:26:23Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T09:26:23Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T09:26:26Z caller=logging.go:85 method=Health result=2 took=45.109µs +ts=2025-05-22T09:26:26Z caller=logging.go:85 method=Health result=2 took=48.359µs +ts=2025-05-22T09:26:29Z caller=logging.go:85 method=Health result=2 took=30.31µs +ts=2025-05-22T09:26:29Z caller=logging.go:85 method=Health result=2 took=19.58µs +ts=2025-05-22T09:26:32Z caller=logging.go:85 method=Health result=2 took=46.099µs +ts=2025-05-22T09:26:32Z caller=logging.go:85 method=Health result=2 took=45.419µs +ts=2025-05-22T09:26:35Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T09:26:35Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T09:26:38Z caller=logging.go:85 method=Health result=2 took=47.599µs +ts=2025-05-22T09:26:38Z caller=logging.go:85 method=Health result=2 took=50.798µs +ts=2025-05-22T09:26:41Z caller=logging.go:85 method=Health result=2 took=41.839µs +ts=2025-05-22T09:26:41Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T09:26:44Z caller=logging.go:85 method=Health result=2 took=38.229µs +ts=2025-05-22T09:26:44Z caller=logging.go:85 method=Health result=2 took=37.759µs +ts=2025-05-22T09:26:47Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T09:26:47Z caller=logging.go:85 method=Health result=2 took=38.839µs +ts=2025-05-22T09:26:50Z caller=logging.go:85 method=Health result=2 took=39.349µs +ts=2025-05-22T09:26:50Z caller=logging.go:85 method=Health result=2 took=38.989µs +ts=2025-05-22T09:26:53Z caller=logging.go:85 method=Health result=2 took=33.33µs +ts=2025-05-22T09:26:53Z caller=logging.go:85 method=Health result=2 took=47.169µs +ts=2025-05-22T09:26:56Z caller=logging.go:85 method=Health result=2 took=41.759µs +ts=2025-05-22T09:26:56Z caller=logging.go:85 method=Health result=2 took=41.209µs +ts=2025-05-22T09:26:59Z caller=logging.go:85 method=Health result=2 took=44.749µs +ts=2025-05-22T09:26:59Z caller=logging.go:85 method=Health result=2 took=50.129µs +ts=2025-05-22T09:27:02Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T09:27:02Z caller=logging.go:85 method=Health result=2 took=42.749µs +ts=2025-05-22T09:27:05Z caller=logging.go:85 method=Health result=2 took=40.139µs +ts=2025-05-22T09:27:05Z caller=logging.go:85 method=Health result=2 took=40.899µs +ts=2025-05-22T09:27:08Z caller=logging.go:85 method=Health result=2 took=39.099µs +ts=2025-05-22T09:27:08Z caller=logging.go:85 method=Health result=2 took=39.469µs +ts=2025-05-22T09:27:11Z caller=logging.go:85 method=Health result=2 took=46.399µs +ts=2025-05-22T09:27:11Z caller=logging.go:85 method=Health result=2 took=49.148µs +ts=2025-05-22T09:27:14Z caller=logging.go:85 method=Health result=2 took=41.819µs +ts=2025-05-22T09:27:14Z caller=logging.go:85 method=Health result=2 took=49.199µs +ts=2025-05-22T09:27:17Z caller=logging.go:85 method=Health result=2 took=28.129µs +ts=2025-05-22T09:27:17Z caller=logging.go:85 method=Health result=2 took=55.359µs +ts=2025-05-22T09:27:20Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T09:27:20Z caller=logging.go:85 method=Health result=2 took=43.399µs +ts=2025-05-22T09:27:23Z caller=logging.go:85 method=Health result=2 took=42.419µs +ts=2025-05-22T09:27:23Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T09:27:26Z caller=logging.go:85 method=Health result=2 took=58.279µs +ts=2025-05-22T09:27:26Z caller=logging.go:85 method=Health result=2 took=49.599µs +ts=2025-05-22T09:27:29Z caller=logging.go:85 method=Health result=2 took=44.189µs +ts=2025-05-22T09:27:29Z caller=logging.go:85 method=Health result=2 took=27.809µs +ts=2025-05-22T09:27:32Z caller=logging.go:85 method=Health result=2 took=32.63µs +ts=2025-05-22T09:27:32Z caller=logging.go:85 method=Health result=2 took=47.868µs +ts=2025-05-22T09:27:35Z caller=logging.go:85 method=Health result=2 took=38.949µs +ts=2025-05-22T09:27:35Z caller=logging.go:85 method=Health result=2 took=39.589µs +ts=2025-05-22T09:27:38Z caller=logging.go:85 method=Health result=2 took=40.259µs +ts=2025-05-22T09:27:38Z caller=logging.go:85 method=Health result=2 took=23.509µs +ts=2025-05-22T09:27:41Z caller=logging.go:85 method=Health result=2 took=53.209µs +ts=2025-05-22T09:27:41Z caller=logging.go:85 method=Health result=2 took=51.578µs +ts=2025-05-22T09:27:44Z caller=logging.go:85 method=Health result=2 took=43.839µs +ts=2025-05-22T09:27:44Z caller=logging.go:85 method=Health result=2 took=50.769µs +ts=2025-05-22T09:27:47Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T09:27:47Z caller=logging.go:85 method=Health result=2 took=43.779µs +ts=2025-05-22T09:27:50Z caller=logging.go:85 method=Health result=2 took=46.619µs +ts=2025-05-22T09:27:50Z caller=logging.go:85 method=Health result=2 took=52.029µs +ts=2025-05-22T09:27:53Z caller=logging.go:85 method=Health result=2 took=44.189µs +ts=2025-05-22T09:27:53Z caller=logging.go:85 method=Health result=2 took=41.139µs +ts=2025-05-22T09:27:56Z caller=logging.go:85 method=Health result=2 took=46.988µs +ts=2025-05-22T09:27:56Z caller=logging.go:85 method=Health result=2 took=47.419µs +ts=2025-05-22T09:27:59Z caller=logging.go:85 method=Health result=2 took=44.309µs +ts=2025-05-22T09:27:59Z caller=logging.go:85 method=Health result=2 took=53.159µs +ts=2025-05-22T09:28:02Z caller=logging.go:85 method=Health result=2 took=45.679µs +ts=2025-05-22T09:28:02Z caller=logging.go:85 method=Health result=2 took=49.968µs +ts=2025-05-22T09:28:05Z caller=logging.go:85 method=Health result=2 took=43.599µs +ts=2025-05-22T09:28:05Z caller=logging.go:85 method=Health result=2 took=30.329µs +ts=2025-05-22T09:28:08Z caller=logging.go:85 method=Health result=2 took=42.399µs +ts=2025-05-22T09:28:08Z caller=logging.go:85 method=Health result=2 took=49.688µs +ts=2025-05-22T09:28:11Z caller=logging.go:85 method=Health result=2 took=33.589µs +ts=2025-05-22T09:28:11Z caller=logging.go:85 method=Health result=2 took=46.259µs +ts=2025-05-22T09:28:14Z caller=logging.go:85 method=Health result=2 took=15.6µs +ts=2025-05-22T09:28:14Z caller=logging.go:85 method=Health result=2 took=31.289µs +ts=2025-05-22T09:28:17Z caller=logging.go:85 method=Health result=2 took=99.488µs +ts=2025-05-22T09:28:17Z caller=logging.go:85 method=Health result=2 took=78.468µs +ts=2025-05-22T09:28:20Z caller=logging.go:85 method=Health result=2 took=44.999µs +ts=2025-05-22T09:28:20Z caller=logging.go:85 method=Health result=2 took=51.369µs +ts=2025-05-22T09:28:23Z caller=logging.go:85 method=Health result=2 took=47.009µs +ts=2025-05-22T09:28:23Z caller=logging.go:85 method=Health result=2 took=48.788µs +ts=2025-05-22T09:28:26Z caller=logging.go:85 method=Health result=2 took=36.289µs +ts=2025-05-22T09:28:26Z caller=logging.go:85 method=Health result=2 took=36.089µs +ts=2025-05-22T09:28:29Z caller=logging.go:85 method=Health result=2 took=25.27µs +ts=2025-05-22T09:28:29Z caller=logging.go:85 method=Health result=2 took=25.46µs +ts=2025-05-22T09:28:32Z caller=logging.go:85 method=Health result=2 took=51.309µs +ts=2025-05-22T09:28:32Z caller=logging.go:85 method=Health result=2 took=30.579µs +ts=2025-05-22T09:28:35Z caller=logging.go:85 method=Health result=2 took=41.659µs +ts=2025-05-22T09:28:35Z caller=logging.go:85 method=Health result=2 took=40.189µs +ts=2025-05-22T09:28:38Z caller=logging.go:85 method=Health result=2 took=29.2µs +ts=2025-05-22T09:28:38Z caller=logging.go:85 method=Health result=2 took=29.2µs +ts=2025-05-22T09:28:41Z caller=logging.go:85 method=Health result=2 took=53.298µs +ts=2025-05-22T09:28:41Z caller=logging.go:85 method=Health result=2 took=21.29µs +ts=2025-05-22T09:28:44Z caller=logging.go:85 method=Health result=2 took=44.589µs +ts=2025-05-22T09:28:44Z caller=logging.go:85 method=Health result=2 took=49.149µs +ts=2025-05-22T09:28:47Z caller=logging.go:85 method=Health result=2 took=30.139µs +ts=2025-05-22T09:28:47Z caller=logging.go:85 method=Health result=2 took=47.509µs +ts=2025-05-22T09:28:50Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T09:28:50Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T09:28:53Z caller=logging.go:85 method=Health result=2 took=34.969µs +ts=2025-05-22T09:28:53Z caller=logging.go:85 method=Health result=2 took=35.239µs +ts=2025-05-22T09:28:56Z caller=logging.go:85 method=Health result=2 took=43.929µs +ts=2025-05-22T09:28:56Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T09:28:59Z caller=logging.go:85 method=Health result=2 took=43.169µs +ts=2025-05-22T09:28:59Z caller=logging.go:85 method=Health result=2 took=42.469µs +ts=2025-05-22T09:29:02Z caller=logging.go:85 method=Health result=2 took=38.939µs +ts=2025-05-22T09:29:02Z caller=logging.go:85 method=Health result=2 took=39.119µs +ts=2025-05-22T09:29:05Z caller=logging.go:85 method=Health result=2 took=44.469µs +ts=2025-05-22T09:29:05Z caller=logging.go:85 method=Health result=2 took=41.019µs +ts=2025-05-22T09:29:08Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T09:29:08Z caller=logging.go:85 method=Health result=2 took=30.599µs +ts=2025-05-22T09:29:11Z caller=logging.go:85 method=Health result=2 took=44.709µs +ts=2025-05-22T09:29:11Z caller=logging.go:85 method=Health result=2 took=43.959µs +ts=2025-05-22T09:29:14Z caller=logging.go:85 method=Health result=2 took=43.489µs +ts=2025-05-22T09:29:14Z caller=logging.go:85 method=Health result=2 took=44.739µs +ts=2025-05-22T09:29:17Z caller=logging.go:85 method=Health result=2 took=42.009µs +ts=2025-05-22T09:29:17Z caller=logging.go:85 method=Health result=2 took=35.509µs +ts=2025-05-22T09:29:20Z caller=logging.go:85 method=Health result=2 took=36.169µs +ts=2025-05-22T09:29:20Z caller=logging.go:85 method=Health result=2 took=35.819µs +ts=2025-05-22T09:29:23Z caller=logging.go:85 method=Health result=2 took=46.019µs +ts=2025-05-22T09:29:23Z caller=logging.go:85 method=Health result=2 took=48.708µs +ts=2025-05-22T09:29:26Z caller=logging.go:85 method=Health result=2 took=32.52µs +ts=2025-05-22T09:29:26Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T09:29:29Z caller=logging.go:85 method=Health result=2 took=44.019µs +ts=2025-05-22T09:29:29Z caller=logging.go:85 method=Health result=2 took=47.029µs +ts=2025-05-22T09:29:32Z caller=logging.go:85 method=Health result=2 took=42.619µs +ts=2025-05-22T09:29:32Z caller=logging.go:85 method=Health result=2 took=50.069µs +ts=2025-05-22T09:29:35Z caller=logging.go:85 method=Health result=2 took=44.219µs +ts=2025-05-22T09:29:35Z caller=logging.go:85 method=Health result=2 took=19.169µs +ts=2025-05-22T09:29:38Z caller=logging.go:85 method=Health result=2 took=43.549µs +ts=2025-05-22T09:29:38Z caller=logging.go:85 method=Health result=2 took=42.869µs +ts=2025-05-22T09:29:41Z caller=logging.go:85 method=Health result=2 took=45.009µs +ts=2025-05-22T09:29:41Z caller=logging.go:85 method=Health result=2 took=50.189µs +ts=2025-05-22T09:29:44Z caller=logging.go:85 method=Health result=2 took=31.14µs +ts=2025-05-22T09:29:44Z caller=logging.go:85 method=Health result=2 took=34.659µs +ts=2025-05-22T09:29:47Z caller=logging.go:85 method=Health result=2 took=28.93µs +ts=2025-05-22T09:29:47Z caller=logging.go:85 method=Health result=2 took=45.589µs +ts=2025-05-22T09:29:50Z caller=logging.go:85 method=Health result=2 took=26.59µs +ts=2025-05-22T09:29:50Z caller=logging.go:85 method=Health result=2 took=26.69µs +ts=2025-05-22T09:29:53Z caller=logging.go:85 method=Health result=2 took=29.88µs +ts=2025-05-22T09:29:53Z caller=logging.go:85 method=Health result=2 took=29µs +ts=2025-05-22T09:29:56Z caller=logging.go:85 method=Health result=2 took=64.748µs +ts=2025-05-22T09:29:56Z caller=logging.go:85 method=Health result=2 took=61.329µs +ts=2025-05-22T09:29:59Z caller=logging.go:85 method=Health result=2 took=45.719µs +ts=2025-05-22T09:29:59Z caller=logging.go:85 method=Health result=2 took=63.678µs +ts=2025-05-22T09:30:02Z caller=logging.go:85 method=Health result=2 took=31.059µs +ts=2025-05-22T09:30:02Z caller=logging.go:85 method=Health result=2 took=31.059µs +ts=2025-05-22T09:30:05Z caller=logging.go:85 method=Health result=2 took=41.719µs +ts=2025-05-22T09:30:05Z caller=logging.go:85 method=Health result=2 took=70.158µs +ts=2025-05-22T09:30:08Z caller=logging.go:85 method=Health result=2 took=31.729µs +ts=2025-05-22T09:30:08Z caller=logging.go:85 method=Health result=2 took=14.07µs +ts=2025-05-22T09:30:11Z caller=logging.go:85 method=Health result=2 took=44.619µs +ts=2025-05-22T09:30:11Z caller=logging.go:85 method=Health result=2 took=50.719µs +ts=2025-05-22T09:30:14Z caller=logging.go:85 method=Health result=2 took=31.869µs +ts=2025-05-22T09:30:14Z caller=logging.go:85 method=Health result=2 took=31.909µs +ts=2025-05-22T09:30:17Z caller=logging.go:85 method=Health result=2 took=189.806µs +ts=2025-05-22T09:30:17Z caller=logging.go:85 method=Health result=2 took=987.797µs +ts=2025-05-22T09:30:20Z caller=logging.go:85 method=Health result=2 took=43.559µs +ts=2025-05-22T09:30:20Z caller=logging.go:85 method=Health result=2 took=44.889µs +ts=2025-05-22T09:30:23Z caller=logging.go:85 method=Health result=2 took=36.199µs +ts=2025-05-22T09:30:23Z caller=logging.go:85 method=Health result=2 took=35.919µs +ts=2025-05-22T09:30:26Z caller=logging.go:85 method=Health result=2 took=41.999µs +ts=2025-05-22T09:30:26Z caller=logging.go:85 method=Health result=2 took=27.539µs +ts=2025-05-22T09:30:29Z caller=logging.go:85 method=Health result=2 took=41.079µs +ts=2025-05-22T09:30:29Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T09:30:32Z caller=logging.go:85 method=Health result=2 took=26.64µs +ts=2025-05-22T09:30:32Z caller=logging.go:85 method=Health result=2 took=26.87µs +ts=2025-05-22T09:30:35Z caller=logging.go:85 method=Health result=2 took=41.169µs +ts=2025-05-22T09:30:35Z caller=logging.go:85 method=Health result=2 took=41.029µs +ts=2025-05-22T09:30:38Z caller=logging.go:85 method=Health result=2 took=31.249µs +ts=2025-05-22T09:30:38Z caller=logging.go:85 method=Health result=2 took=43.999µs +ts=2025-05-22T09:30:41Z caller=logging.go:85 method=Health result=2 took=46.819µs +ts=2025-05-22T09:30:41Z caller=logging.go:85 method=Health result=2 took=47.349µs +ts=2025-05-22T09:30:44Z caller=logging.go:85 method=Health result=2 took=44.519µs +ts=2025-05-22T09:30:44Z caller=logging.go:85 method=Health result=2 took=31.959µs +ts=2025-05-22T09:30:47Z caller=logging.go:85 method=Health result=2 took=17.45µs +ts=2025-05-22T09:30:47Z caller=logging.go:85 method=Health result=2 took=29.419µs +ts=2025-05-22T09:30:50Z caller=logging.go:85 method=Health result=2 took=29.419µs +ts=2025-05-22T09:30:50Z caller=logging.go:85 method=Health result=2 took=29.489µs +ts=2025-05-22T09:30:53Z caller=logging.go:85 method=Health result=2 took=31.16µs +ts=2025-05-22T09:30:53Z caller=logging.go:85 method=Health result=2 took=48.729µs +ts=2025-05-22T09:30:56Z caller=logging.go:85 method=Health result=2 took=28.649µs +ts=2025-05-22T09:30:56Z caller=logging.go:85 method=Health result=2 took=15.219µs +ts=2025-05-22T09:30:59Z caller=logging.go:85 method=Health result=2 took=27.609µs +ts=2025-05-22T09:30:59Z caller=logging.go:85 method=Health result=2 took=15.83µs +ts=2025-05-22T09:31:02Z caller=logging.go:85 method=Health result=2 took=41.029µs +ts=2025-05-22T09:31:02Z caller=logging.go:85 method=Health result=2 took=19.5µs +ts=2025-05-22T09:31:05Z caller=logging.go:85 method=Health result=2 took=43.959µs +ts=2025-05-22T09:31:05Z caller=logging.go:85 method=Health result=2 took=37.329µs +ts=2025-05-22T09:31:08Z caller=logging.go:85 method=Health result=2 took=28.099µs +ts=2025-05-22T09:31:08Z caller=logging.go:85 method=Health result=2 took=14.67µs +ts=2025-05-22T09:31:11Z caller=logging.go:85 method=Health result=2 took=33.799µs +ts=2025-05-22T09:31:11Z caller=logging.go:85 method=Health result=2 took=57.309µs +ts=2025-05-22T09:31:14Z caller=logging.go:85 method=Health result=2 took=37.379µs +ts=2025-05-22T09:31:14Z caller=logging.go:85 method=Health result=2 took=51.918µs +ts=2025-05-22T09:31:17Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T09:31:17Z caller=logging.go:85 method=Health result=2 took=45.029µs +ts=2025-05-22T09:31:20Z caller=logging.go:85 method=Health result=2 took=44.539µs +ts=2025-05-22T09:31:20Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T09:31:23Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T09:31:23Z caller=logging.go:85 method=Health result=2 took=44.579µs +ts=2025-05-22T09:31:26Z caller=logging.go:85 method=Health result=2 took=37.22µs +ts=2025-05-22T09:31:26Z caller=logging.go:85 method=Health result=2 took=57.218µs +ts=2025-05-22T09:31:29Z caller=logging.go:85 method=Health result=2 took=29.86µs +ts=2025-05-22T09:31:29Z caller=logging.go:85 method=Health result=2 took=29.74µs +ts=2025-05-22T09:31:32Z caller=logging.go:85 method=Health result=2 took=38.789µs +ts=2025-05-22T09:31:32Z caller=logging.go:85 method=Health result=2 took=34.869µs +ts=2025-05-22T09:31:35Z caller=logging.go:85 method=Health result=2 took=40.169µs +ts=2025-05-22T09:31:35Z caller=logging.go:85 method=Health result=2 took=39.609µs +ts=2025-05-22T09:31:38Z caller=logging.go:85 method=Health result=2 took=43.009µs +ts=2025-05-22T09:31:38Z caller=logging.go:85 method=Health result=2 took=49.939µs +ts=2025-05-22T09:31:41Z caller=logging.go:85 method=Health result=2 took=32.399µs +ts=2025-05-22T09:31:41Z caller=logging.go:85 method=Health result=2 took=47.239µs +ts=2025-05-22T09:31:44Z caller=logging.go:85 method=Health result=2 took=39.289µs +ts=2025-05-22T09:31:44Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T09:31:47Z caller=logging.go:85 method=Health result=2 took=29.499µs +ts=2025-05-22T09:31:47Z caller=logging.go:85 method=Health result=2 took=15.019µs +ts=2025-05-22T09:31:50Z caller=logging.go:85 method=Health result=2 took=37.549µs +ts=2025-05-22T09:31:50Z caller=logging.go:85 method=Health result=2 took=47.029µs +ts=2025-05-22T09:31:53Z caller=logging.go:85 method=Health result=2 took=30.099µs +ts=2025-05-22T09:31:53Z caller=logging.go:85 method=Health result=2 took=30.039µs +ts=2025-05-22T09:31:56Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T09:31:56Z caller=logging.go:85 method=Health result=2 took=26.689µs +ts=2025-05-22T09:31:59Z caller=logging.go:85 method=Health result=2 took=37.679µs +ts=2025-05-22T09:31:59Z caller=logging.go:85 method=Health result=2 took=37.699µs +ts=2025-05-22T09:32:02Z caller=logging.go:85 method=Health result=2 took=34.119µs +ts=2025-05-22T09:32:02Z caller=logging.go:85 method=Health result=2 took=36.529µs +ts=2025-05-22T09:32:05Z caller=logging.go:85 method=Health result=2 took=40.669µs +ts=2025-05-22T09:32:05Z caller=logging.go:85 method=Health result=2 took=11.05µs +ts=2025-05-22T09:32:08Z caller=logging.go:85 method=Health result=2 took=30.739µs +ts=2025-05-22T09:32:08Z caller=logging.go:85 method=Health result=2 took=39.279µs +ts=2025-05-22T09:32:11Z caller=logging.go:85 method=Health result=2 took=29.359µs +ts=2025-05-22T09:32:11Z caller=logging.go:85 method=Health result=2 took=29.299µs +ts=2025-05-22T09:32:14Z caller=logging.go:85 method=Health result=2 took=47.859µs +ts=2025-05-22T09:32:14Z caller=logging.go:85 method=Health result=2 took=47.869µs +ts=2025-05-22T09:32:17Z caller=logging.go:85 method=Health result=2 took=82.148µs +ts=2025-05-22T09:32:17Z caller=logging.go:85 method=Health result=2 took=1.154142ms +ts=2025-05-22T09:32:20Z caller=logging.go:85 method=Health result=2 took=60.138µs +ts=2025-05-22T09:32:20Z caller=logging.go:85 method=Health result=2 took=60.138µs +ts=2025-05-22T09:32:23Z caller=logging.go:85 method=Health result=2 took=30.909µs +ts=2025-05-22T09:32:23Z caller=logging.go:85 method=Health result=2 took=30.819µs +ts=2025-05-22T09:32:26Z caller=logging.go:85 method=Health result=2 took=39.679µs +ts=2025-05-22T09:32:26Z caller=logging.go:85 method=Health result=2 took=39.989µs +ts=2025-05-22T09:32:29Z caller=logging.go:85 method=Health result=2 took=30.719µs +ts=2025-05-22T09:32:29Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T09:32:32Z caller=logging.go:85 method=Health result=2 took=32.009µs +ts=2025-05-22T09:32:32Z caller=logging.go:85 method=Health result=2 took=15.29µs +ts=2025-05-22T09:32:35Z caller=logging.go:85 method=Health result=2 took=42.909µs +ts=2025-05-22T09:32:35Z caller=logging.go:85 method=Health result=2 took=44.988µs +ts=2025-05-22T09:32:38Z caller=logging.go:85 method=Health result=2 took=42.829µs +ts=2025-05-22T09:32:38Z caller=logging.go:85 method=Health result=2 took=43.259µs +ts=2025-05-22T09:32:41Z caller=logging.go:85 method=Health result=2 took=42.899µs +ts=2025-05-22T09:32:41Z caller=logging.go:85 method=Health result=2 took=51.299µs +ts=2025-05-22T09:32:44Z caller=logging.go:85 method=Health result=2 took=40.009µs +ts=2025-05-22T09:32:44Z caller=logging.go:85 method=Health result=2 took=39.809µs +ts=2025-05-22T09:32:47Z caller=logging.go:85 method=Health result=2 took=41.879µs +ts=2025-05-22T09:32:47Z caller=logging.go:85 method=Health result=2 took=49.779µs +ts=2025-05-22T09:32:50Z caller=logging.go:85 method=Health result=2 took=29.339µs +ts=2025-05-22T09:32:50Z caller=logging.go:85 method=Health result=2 took=29.499µs +ts=2025-05-22T09:32:53Z caller=logging.go:85 method=Health result=2 took=19.579µs +ts=2025-05-22T09:32:53Z caller=logging.go:85 method=Health result=2 took=31.789µs +ts=2025-05-22T09:32:56Z caller=logging.go:85 method=Health result=2 took=34.979µs +ts=2025-05-22T09:32:56Z caller=logging.go:85 method=Health result=2 took=42.209µs +ts=2025-05-22T09:32:59Z caller=logging.go:85 method=Health result=2 took=36.019µs +ts=2025-05-22T09:32:59Z caller=logging.go:85 method=Health result=2 took=56.619µs +ts=2025-05-22T09:33:02Z caller=logging.go:85 method=Health result=2 took=31.529µs +ts=2025-05-22T09:33:02Z caller=logging.go:85 method=Health result=2 took=56.618µs +ts=2025-05-22T09:33:05Z caller=logging.go:85 method=Health result=2 took=30.329µs +ts=2025-05-22T09:33:05Z caller=logging.go:85 method=Health result=2 took=29.629µs +ts=2025-05-22T09:33:08Z caller=logging.go:85 method=Health result=2 took=36.889µs +ts=2025-05-22T09:33:08Z caller=logging.go:85 method=Health result=2 took=14.039µs +ts=2025-05-22T09:33:11Z caller=logging.go:85 method=Health result=2 took=30.289µs +ts=2025-05-22T09:33:11Z caller=logging.go:85 method=Health result=2 took=40.939µs +ts=2025-05-22T09:33:14Z caller=logging.go:85 method=Health result=2 took=29.959µs +ts=2025-05-22T09:33:14Z caller=logging.go:85 method=Health result=2 took=30.409µs +ts=2025-05-22T09:33:17Z caller=logging.go:85 method=Health result=2 took=30.72µs +ts=2025-05-22T09:33:17Z caller=logging.go:85 method=Health result=2 took=23.48µs +ts=2025-05-22T09:33:20Z caller=logging.go:85 method=Health result=2 took=30.259µs +ts=2025-05-22T09:33:20Z caller=logging.go:85 method=Health result=2 took=52.919µs +ts=2025-05-22T09:33:23Z caller=logging.go:85 method=Health result=2 took=42.669µs +ts=2025-05-22T09:33:23Z caller=logging.go:85 method=Health result=2 took=38.719µs +ts=2025-05-22T09:33:26Z caller=logging.go:85 method=Health result=2 took=32.099µs +ts=2025-05-22T09:33:26Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T09:33:29Z caller=logging.go:85 method=Health result=2 took=31.04µs +ts=2025-05-22T09:33:29Z caller=logging.go:85 method=Health result=2 took=40.319µs +ts=2025-05-22T09:33:32Z caller=logging.go:85 method=Health result=2 took=31.979µs +ts=2025-05-22T09:33:32Z caller=logging.go:85 method=Health result=2 took=48.719µs +ts=2025-05-22T09:33:35Z caller=logging.go:85 method=Health result=2 took=101.968µs +ts=2025-05-22T09:33:35Z caller=logging.go:85 method=Health result=2 took=138.067µs +ts=2025-05-22T09:33:38Z caller=logging.go:85 method=Health result=2 took=39.08µs +ts=2025-05-22T09:33:38Z caller=logging.go:85 method=Health result=2 took=40.45µs +ts=2025-05-22T09:33:41Z caller=logging.go:85 method=Health result=2 took=37.009µs +ts=2025-05-22T09:33:41Z caller=logging.go:85 method=Health result=2 took=35.989µs +ts=2025-05-22T09:33:44Z caller=logging.go:85 method=Health result=2 took=39.179µs +ts=2025-05-22T09:33:44Z caller=logging.go:85 method=Health result=2 took=44.539µs +ts=2025-05-22T09:33:47Z caller=logging.go:85 method=Health result=2 took=28.459µs +ts=2025-05-22T09:33:47Z caller=logging.go:85 method=Health result=2 took=29.149µs +ts=2025-05-22T09:33:50Z caller=logging.go:85 method=Health result=2 took=38.519µs +ts=2025-05-22T09:33:50Z caller=logging.go:85 method=Health result=2 took=27.689µs +ts=2025-05-22T09:33:53Z caller=logging.go:85 method=Health result=2 took=18.989µs +ts=2025-05-22T09:33:53Z caller=logging.go:85 method=Health result=2 took=29.379µs +ts=2025-05-22T09:33:56Z caller=logging.go:85 method=Health result=2 took=28.719µs +ts=2025-05-22T09:33:56Z caller=logging.go:85 method=Health result=2 took=28.719µs +ts=2025-05-22T09:33:59Z caller=logging.go:85 method=Health result=2 took=42.559µs +ts=2025-05-22T09:33:59Z caller=logging.go:85 method=Health result=2 took=22.029µs +ts=2025-05-22T09:34:02Z caller=logging.go:85 method=Health result=2 took=35.769µs +ts=2025-05-22T09:34:02Z caller=logging.go:85 method=Health result=2 took=34.569µs +ts=2025-05-22T09:34:05Z caller=logging.go:85 method=Health result=2 took=27.049µs +ts=2025-05-22T09:34:05Z caller=logging.go:85 method=Health result=2 took=27.179µs +ts=2025-05-22T09:34:08Z caller=logging.go:85 method=Health result=2 took=32.499µs +ts=2025-05-22T09:34:08Z caller=logging.go:85 method=Health result=2 took=43.929µs +ts=2025-05-22T09:34:11Z caller=logging.go:85 method=Health result=2 took=37.339µs +ts=2025-05-22T09:34:11Z caller=logging.go:85 method=Health result=2 took=37.189µs +ts=2025-05-22T09:34:14Z caller=logging.go:85 method=Health result=2 took=28.879µs +ts=2025-05-22T09:34:14Z caller=logging.go:85 method=Health result=2 took=28.879µs +ts=2025-05-22T09:34:17Z caller=logging.go:85 method=Health result=2 took=14.469µs +ts=2025-05-22T09:34:17Z caller=logging.go:85 method=Health result=2 took=30.819µs +ts=2025-05-22T09:34:20Z caller=logging.go:85 method=Health result=2 took=33.849µs +ts=2025-05-22T09:34:20Z caller=logging.go:85 method=Health result=2 took=40.029µs +ts=2025-05-22T09:34:23Z caller=logging.go:85 method=Health result=2 took=31.339µs +ts=2025-05-22T09:34:23Z caller=logging.go:85 method=Health result=2 took=31.399µs +ts=2025-05-22T09:34:26Z caller=logging.go:85 method=Health result=2 took=40.029µs +ts=2025-05-22T09:34:26Z caller=logging.go:85 method=Health result=2 took=41.419µs +ts=2025-05-22T09:34:29Z caller=logging.go:85 method=Health result=2 took=33.959µs +ts=2025-05-22T09:34:29Z caller=logging.go:85 method=Health result=2 took=39.779µs +ts=2025-05-22T09:34:32Z caller=logging.go:85 method=Health result=2 took=39.059µs +ts=2025-05-22T09:34:32Z caller=logging.go:85 method=Health result=2 took=28.359µs +ts=2025-05-22T09:34:35Z caller=logging.go:85 method=Health result=2 took=45.439µs +ts=2025-05-22T09:34:35Z caller=logging.go:85 method=Health result=2 took=48.139µs +ts=2025-05-22T09:34:38Z caller=logging.go:85 method=Health result=2 took=30.229µs +ts=2025-05-22T09:34:38Z caller=logging.go:85 method=Health result=2 took=30.089µs +ts=2025-05-22T09:34:41Z caller=logging.go:85 method=Health result=2 took=37.369µs +ts=2025-05-22T09:34:41Z caller=logging.go:85 method=Health result=2 took=37.379µs +ts=2025-05-22T09:34:44Z caller=logging.go:85 method=Health result=2 took=53.029µs +ts=2025-05-22T09:34:44Z caller=logging.go:85 method=Health result=2 took=53.009µs +ts=2025-05-22T09:34:47Z caller=logging.go:85 method=Health result=2 took=35.119µs +ts=2025-05-22T09:34:47Z caller=logging.go:85 method=Health result=2 took=34.069µs +ts=2025-05-22T09:34:50Z caller=logging.go:85 method=Health result=2 took=29.079µs +ts=2025-05-22T09:34:50Z caller=logging.go:85 method=Health result=2 took=28.719µs +ts=2025-05-22T09:34:53Z caller=logging.go:85 method=Health result=2 took=32.319µs +ts=2025-05-22T09:34:53Z caller=logging.go:85 method=Health result=2 took=44.879µs +ts=2025-05-22T09:34:56Z caller=logging.go:85 method=Health result=2 took=37.07µs +ts=2025-05-22T09:34:56Z caller=logging.go:85 method=Health result=2 took=45.589µs +ts=2025-05-22T09:34:59Z caller=logging.go:85 method=Health result=2 took=29.339µs +ts=2025-05-22T09:34:59Z caller=logging.go:85 method=Health result=2 took=29.309µs +ts=2025-05-22T09:35:02Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T09:35:02Z caller=logging.go:85 method=Health result=2 took=58.449µs +ts=2025-05-22T09:35:05Z caller=logging.go:85 method=Health result=2 took=44.949µs +ts=2025-05-22T09:35:05Z caller=logging.go:85 method=Health result=2 took=52.299µs +ts=2025-05-22T09:35:08Z caller=logging.go:85 method=Health result=2 took=30.349µs +ts=2025-05-22T09:35:08Z caller=logging.go:85 method=Health result=2 took=47.009µs +ts=2025-05-22T09:35:11Z caller=logging.go:85 method=Health result=2 took=22.119µs +ts=2025-05-22T09:35:11Z caller=logging.go:85 method=Health result=2 took=26.969µs +ts=2025-05-22T09:35:14Z caller=logging.go:85 method=Health result=2 took=29.349µs +ts=2025-05-22T09:35:14Z caller=logging.go:85 method=Health result=2 took=29.339µs +ts=2025-05-22T09:35:17Z caller=logging.go:85 method=Health result=2 took=43.399µs +ts=2025-05-22T09:35:17Z caller=logging.go:85 method=Health result=2 took=19.989µs +ts=2025-05-22T09:35:20Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T09:35:20Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T09:35:23Z caller=logging.go:85 method=Health result=2 took=39.249µs +ts=2025-05-22T09:35:23Z caller=logging.go:85 method=Health result=2 took=38.089µs +ts=2025-05-22T09:35:26Z caller=logging.go:85 method=Health result=2 took=59.509µs +ts=2025-05-22T09:35:26Z caller=logging.go:85 method=Health result=2 took=50.459µs +ts=2025-05-22T09:35:29Z caller=logging.go:85 method=Health result=2 took=30.839µs +ts=2025-05-22T09:35:29Z caller=logging.go:85 method=Health result=2 took=55.829µs +ts=2025-05-22T09:35:32Z caller=logging.go:85 method=Health result=2 took=45.509µs +ts=2025-05-22T09:35:32Z caller=logging.go:85 method=Health result=2 took=48.419µs +ts=2025-05-22T09:35:35Z caller=logging.go:85 method=Health result=2 took=37.679µs +ts=2025-05-22T09:35:35Z caller=logging.go:85 method=Health result=2 took=47.839µs +ts=2025-05-22T09:35:38Z caller=logging.go:85 method=Health result=2 took=44.429µs +ts=2025-05-22T09:35:38Z caller=logging.go:85 method=Health result=2 took=49.659µs +ts=2025-05-22T09:35:41Z caller=logging.go:85 method=Health result=2 took=45.308µs +ts=2025-05-22T09:35:41Z caller=logging.go:85 method=Health result=2 took=52.919µs +ts=2025-05-22T09:35:44Z caller=logging.go:85 method=Health result=2 took=43.769µs +ts=2025-05-22T09:35:44Z caller=logging.go:85 method=Health result=2 took=51.889µs +ts=2025-05-22T09:35:47Z caller=logging.go:85 method=Health result=2 took=45.469µs +ts=2025-05-22T09:35:47Z caller=logging.go:85 method=Health result=2 took=53.528µs +ts=2025-05-22T09:35:50Z caller=logging.go:85 method=Health result=2 took=44.689µs +ts=2025-05-22T09:35:50Z caller=logging.go:85 method=Health result=2 took=59.358µs +ts=2025-05-22T09:35:53Z caller=logging.go:85 method=Health result=2 took=33.23µs +ts=2025-05-22T09:35:53Z caller=logging.go:85 method=Health result=2 took=44.159µs +ts=2025-05-22T09:35:56Z caller=logging.go:85 method=Health result=2 took=45.408µs +ts=2025-05-22T09:35:56Z caller=logging.go:85 method=Health result=2 took=49.049µs +ts=2025-05-22T09:35:59Z caller=logging.go:85 method=Health result=2 took=43.578µs +ts=2025-05-22T09:35:59Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T09:36:02Z caller=logging.go:85 method=Health result=2 took=38.619µs +ts=2025-05-22T09:36:02Z caller=logging.go:85 method=Health result=2 took=38.679µs +ts=2025-05-22T09:36:05Z caller=logging.go:85 method=Health result=2 took=43.399µs +ts=2025-05-22T09:36:05Z caller=logging.go:85 method=Health result=2 took=50.639µs +ts=2025-05-22T09:36:08Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T09:36:08Z caller=logging.go:85 method=Health result=2 took=48.229µs +ts=2025-05-22T09:36:11Z caller=logging.go:85 method=Health result=2 took=43.789µs +ts=2025-05-22T09:36:11Z caller=logging.go:85 method=Health result=2 took=43.169µs +ts=2025-05-22T09:36:14Z caller=logging.go:85 method=Health result=2 took=43.409µs +ts=2025-05-22T09:36:14Z caller=logging.go:85 method=Health result=2 took=58.389µs +ts=2025-05-22T09:36:17Z caller=logging.go:85 method=Health result=2 took=33.339µs +ts=2025-05-22T09:36:17Z caller=logging.go:85 method=Health result=2 took=32.31µs +ts=2025-05-22T09:36:20Z caller=logging.go:85 method=Health result=2 took=37.109µs +ts=2025-05-22T09:36:20Z caller=logging.go:85 method=Health result=2 took=32.069µs +ts=2025-05-22T09:36:23Z caller=logging.go:85 method=Health result=2 took=38.459µs +ts=2025-05-22T09:36:23Z caller=logging.go:85 method=Health result=2 took=48.649µs +ts=2025-05-22T09:36:26Z caller=logging.go:85 method=Health result=2 took=35.359µs +ts=2025-05-22T09:36:26Z caller=logging.go:85 method=Health result=2 took=23.53µs +ts=2025-05-22T09:36:29Z caller=logging.go:85 method=Health result=2 took=42.079µs +ts=2025-05-22T09:36:29Z caller=logging.go:85 method=Health result=2 took=41.289µs +ts=2025-05-22T09:36:32Z caller=logging.go:85 method=Health result=2 took=41.179µs +ts=2025-05-22T09:36:32Z caller=logging.go:85 method=Health result=2 took=49.998µs +ts=2025-05-22T09:36:35Z caller=logging.go:85 method=Health result=2 took=44.608µs +ts=2025-05-22T09:36:35Z caller=logging.go:85 method=Health result=2 took=50.419µs +ts=2025-05-22T09:36:38Z caller=logging.go:85 method=Health result=2 took=45.449µs +ts=2025-05-22T09:36:38Z caller=logging.go:85 method=Health result=2 took=50.128µs +ts=2025-05-22T09:36:41Z caller=logging.go:85 method=Health result=2 took=45.179µs +ts=2025-05-22T09:36:41Z caller=logging.go:85 method=Health result=2 took=50.469µs +ts=2025-05-22T09:36:44Z caller=logging.go:85 method=Health result=2 took=40.789µs +ts=2025-05-22T09:36:44Z caller=logging.go:85 method=Health result=2 took=59.679µs +ts=2025-05-22T09:36:47Z caller=logging.go:85 method=Health result=2 took=44.409µs +ts=2025-05-22T09:36:47Z caller=logging.go:85 method=Health result=2 took=40.349µs +ts=2025-05-22T09:36:50Z caller=logging.go:85 method=Health result=2 took=51.909µs +ts=2025-05-22T09:36:50Z caller=logging.go:85 method=Health result=2 took=52.369µs +ts=2025-05-22T09:36:53Z caller=logging.go:85 method=Health result=2 took=40.629µs +ts=2025-05-22T09:36:53Z caller=logging.go:85 method=Health result=2 took=39.319µs +ts=2025-05-22T09:36:56Z caller=logging.go:85 method=Health result=2 took=30.839µs +ts=2025-05-22T09:36:56Z caller=logging.go:85 method=Health result=2 took=30.829µs +ts=2025-05-22T09:36:59Z caller=logging.go:85 method=Health result=2 took=53.898µs +ts=2025-05-22T09:36:59Z caller=logging.go:85 method=Health result=2 took=47.959µs +ts=2025-05-22T09:37:02Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T09:37:02Z caller=logging.go:85 method=Health result=2 took=45.209µs +ts=2025-05-22T09:37:05Z caller=logging.go:85 method=Health result=2 took=37.859µs +ts=2025-05-22T09:37:05Z caller=logging.go:85 method=Health result=2 took=46.899µs +ts=2025-05-22T09:37:08Z caller=logging.go:85 method=Health result=2 took=44.669µs +ts=2025-05-22T09:37:08Z caller=logging.go:85 method=Health result=2 took=44.299µs +ts=2025-05-22T09:37:11Z caller=logging.go:85 method=Health result=2 took=41.579µs +ts=2025-05-22T09:37:11Z caller=logging.go:85 method=Health result=2 took=27.559µs +ts=2025-05-22T09:37:14Z caller=logging.go:85 method=Health result=2 took=27.259µs +ts=2025-05-22T09:37:14Z caller=logging.go:85 method=Health result=2 took=40.709µs +ts=2025-05-22T09:37:17Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T09:37:17Z caller=logging.go:85 method=Health result=2 took=47.339µs +ts=2025-05-22T09:37:20Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T09:37:20Z caller=logging.go:85 method=Health result=2 took=42.219µs +ts=2025-05-22T09:37:23Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T09:37:23Z caller=logging.go:85 method=Health result=2 took=42.829µs +ts=2025-05-22T09:37:26Z caller=logging.go:85 method=Health result=2 took=42.289µs +ts=2025-05-22T09:37:26Z caller=logging.go:85 method=Health result=2 took=50.759µs +ts=2025-05-22T09:37:29Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T09:37:29Z caller=logging.go:85 method=Health result=2 took=31.089µs +ts=2025-05-22T09:37:32Z caller=logging.go:85 method=Health result=2 took=37.479µs +ts=2025-05-22T09:37:32Z caller=logging.go:85 method=Health result=2 took=51.719µs +ts=2025-05-22T09:37:35Z caller=logging.go:85 method=Health result=2 took=43.519µs +ts=2025-05-22T09:37:35Z caller=logging.go:85 method=Health result=2 took=43.559µs +ts=2025-05-22T09:37:38Z caller=logging.go:85 method=Health result=2 took=39.279µs +ts=2025-05-22T09:37:38Z caller=logging.go:85 method=Health result=2 took=27.5µs +ts=2025-05-22T09:37:41Z caller=logging.go:85 method=Health result=2 took=44.768µs +ts=2025-05-22T09:37:41Z caller=logging.go:85 method=Health result=2 took=25.649µs +ts=2025-05-22T09:37:44Z caller=logging.go:85 method=Health result=2 took=44.699µs +ts=2025-05-22T09:37:44Z caller=logging.go:85 method=Health result=2 took=27.519µs +ts=2025-05-22T09:37:47Z caller=logging.go:85 method=Health result=2 took=45.499µs +ts=2025-05-22T09:37:47Z caller=logging.go:85 method=Health result=2 took=49.139µs +ts=2025-05-22T09:37:50Z caller=logging.go:85 method=Health result=2 took=43.899µs +ts=2025-05-22T09:37:50Z caller=logging.go:85 method=Health result=2 took=44.609µs +ts=2025-05-22T09:37:53Z caller=logging.go:85 method=Health result=2 took=30.679µs +ts=2025-05-22T09:37:53Z caller=logging.go:85 method=Health result=2 took=30.919µs +ts=2025-05-22T09:37:56Z caller=logging.go:85 method=Health result=2 took=45.309µs +ts=2025-05-22T09:37:56Z caller=logging.go:85 method=Health result=2 took=68.448µs +ts=2025-05-22T09:37:59Z caller=logging.go:85 method=Health result=2 took=40.799µs +ts=2025-05-22T09:37:59Z caller=logging.go:85 method=Health result=2 took=39.849µs +ts=2025-05-22T09:38:02Z caller=logging.go:85 method=Health result=2 took=52.289µs +ts=2025-05-22T09:38:02Z caller=logging.go:85 method=Health result=2 took=53.109µs +ts=2025-05-22T09:38:05Z caller=logging.go:85 method=Health result=2 took=42.709µs +ts=2025-05-22T09:38:05Z caller=logging.go:85 method=Health result=2 took=50.449µs +ts=2025-05-22T09:38:08Z caller=logging.go:85 method=Health result=2 took=44.579µs +ts=2025-05-22T09:38:08Z caller=logging.go:85 method=Health result=2 took=50.769µs +ts=2025-05-22T09:38:11Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T09:38:11Z caller=logging.go:85 method=Health result=2 took=20.68µs +ts=2025-05-22T09:38:14Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T09:38:14Z caller=logging.go:85 method=Health result=2 took=39.709µs +ts=2025-05-22T09:38:17Z caller=logging.go:85 method=Health result=2 took=80.798µs +ts=2025-05-22T09:38:17Z caller=logging.go:85 method=Health result=2 took=48.969µs +ts=2025-05-22T09:38:20Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T09:38:20Z caller=logging.go:85 method=Health result=2 took=44.909µs +ts=2025-05-22T09:38:23Z caller=logging.go:85 method=Health result=2 took=42.969µs +ts=2025-05-22T09:38:23Z caller=logging.go:85 method=Health result=2 took=43.169µs +ts=2025-05-22T09:38:26Z caller=logging.go:85 method=Health result=2 took=45.548µs +ts=2025-05-22T09:38:26Z caller=logging.go:85 method=Health result=2 took=51.068µs +ts=2025-05-22T09:38:29Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T09:38:29Z caller=logging.go:85 method=Health result=2 took=47.829µs +ts=2025-05-22T09:38:32Z caller=logging.go:85 method=Health result=2 took=41.989µs +ts=2025-05-22T09:38:32Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T09:38:35Z caller=logging.go:85 method=Health result=2 took=43.589µs +ts=2025-05-22T09:38:35Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T09:38:38Z caller=logging.go:85 method=Health result=2 took=44.949µs +ts=2025-05-22T09:38:38Z caller=logging.go:85 method=Health result=2 took=49.709µs +ts=2025-05-22T09:38:41Z caller=logging.go:85 method=Health result=2 took=41.769µs +ts=2025-05-22T09:38:41Z caller=logging.go:85 method=Health result=2 took=40.799µs +ts=2025-05-22T09:38:44Z caller=logging.go:85 method=Health result=2 took=41.849µs +ts=2025-05-22T09:38:44Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T09:38:47Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T09:38:47Z caller=logging.go:85 method=Health result=2 took=24.969µs +ts=2025-05-22T09:38:50Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T09:38:50Z caller=logging.go:85 method=Health result=2 took=42.589µs +ts=2025-05-22T09:38:53Z caller=logging.go:85 method=Health result=2 took=28.559µs +ts=2025-05-22T09:38:53Z caller=logging.go:85 method=Health result=2 took=28.689µs +ts=2025-05-22T09:38:56Z caller=logging.go:85 method=Health result=2 took=41.669µs +ts=2025-05-22T09:38:56Z caller=logging.go:85 method=Health result=2 took=41.819µs +ts=2025-05-22T09:38:59Z caller=logging.go:85 method=Health result=2 took=45.479µs +ts=2025-05-22T09:38:59Z caller=logging.go:85 method=Health result=2 took=52.759µs +ts=2025-05-22T09:39:02Z caller=logging.go:85 method=Health result=2 took=47.249µs +ts=2025-05-22T09:39:02Z caller=logging.go:85 method=Health result=2 took=48.829µs +ts=2025-05-22T09:39:05Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T09:39:05Z caller=logging.go:85 method=Health result=2 took=49.469µs +ts=2025-05-22T09:39:08Z caller=logging.go:85 method=Health result=2 took=31.429µs +ts=2025-05-22T09:39:08Z caller=logging.go:85 method=Health result=2 took=45.919µs +ts=2025-05-22T09:39:11Z caller=logging.go:85 method=Health result=2 took=44.039µs +ts=2025-05-22T09:39:11Z caller=logging.go:85 method=Health result=2 took=34.179µs +ts=2025-05-22T09:39:14Z caller=logging.go:85 method=Health result=2 took=45.128µs +ts=2025-05-22T09:39:14Z caller=logging.go:85 method=Health result=2 took=51.379µs +ts=2025-05-22T09:39:17Z caller=logging.go:85 method=Health result=2 took=60.038µs +ts=2025-05-22T09:39:17Z caller=logging.go:85 method=Health result=2 took=31.779µs +ts=2025-05-22T09:39:20Z caller=logging.go:85 method=Health result=2 took=46.079µs +ts=2025-05-22T09:39:20Z caller=logging.go:85 method=Health result=2 took=47.958µs +ts=2025-05-22T09:39:23Z caller=logging.go:85 method=Health result=2 took=42.289µs +ts=2025-05-22T09:39:23Z caller=logging.go:85 method=Health result=2 took=42.669µs +ts=2025-05-22T09:39:26Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T09:39:26Z caller=logging.go:85 method=Health result=2 took=38.329µs +ts=2025-05-22T09:39:29Z caller=logging.go:85 method=Health result=2 took=44.149µs +ts=2025-05-22T09:39:29Z caller=logging.go:85 method=Health result=2 took=48.489µs +ts=2025-05-22T09:39:32Z caller=logging.go:85 method=Health result=2 took=44.189µs +ts=2025-05-22T09:39:32Z caller=logging.go:85 method=Health result=2 took=47.818µs +ts=2025-05-22T09:39:35Z caller=logging.go:85 method=Health result=2 took=28.03µs +ts=2025-05-22T09:39:35Z caller=logging.go:85 method=Health result=2 took=28.25µs +ts=2025-05-22T09:39:38Z caller=logging.go:85 method=Health result=2 took=34.659µs +ts=2025-05-22T09:39:38Z caller=logging.go:85 method=Health result=2 took=40.629µs +ts=2025-05-22T09:39:41Z caller=logging.go:85 method=Health result=2 took=37.169µs +ts=2025-05-22T09:39:41Z caller=logging.go:85 method=Health result=2 took=17.6µs +ts=2025-05-22T09:39:44Z caller=logging.go:85 method=Health result=2 took=46.339µs +ts=2025-05-22T09:39:44Z caller=logging.go:85 method=Health result=2 took=49.949µs +ts=2025-05-22T09:39:47Z caller=logging.go:85 method=Health result=2 took=43.159µs +ts=2025-05-22T09:39:47Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T09:39:50Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T09:39:50Z caller=logging.go:85 method=Health result=2 took=43.079µs +ts=2025-05-22T09:39:53Z caller=logging.go:85 method=Health result=2 took=19.56µs +ts=2025-05-22T09:39:53Z caller=logging.go:85 method=Health result=2 took=32.509µs +ts=2025-05-22T09:39:56Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T09:39:56Z caller=logging.go:85 method=Health result=2 took=49.319µs +ts=2025-05-22T09:39:59Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T09:39:59Z caller=logging.go:85 method=Health result=2 took=43.519µs +ts=2025-05-22T09:40:02Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T09:40:02Z caller=logging.go:85 method=Health result=2 took=43.539µs +ts=2025-05-22T09:40:05Z caller=logging.go:85 method=Health result=2 took=44.859µs +ts=2025-05-22T09:40:05Z caller=logging.go:85 method=Health result=2 took=46.289µs +ts=2025-05-22T09:40:08Z caller=logging.go:85 method=Health result=2 took=34.109µs +ts=2025-05-22T09:40:08Z caller=logging.go:85 method=Health result=2 took=35.029µs +ts=2025-05-22T09:40:11Z caller=logging.go:85 method=Health result=2 took=43.609µs +ts=2025-05-22T09:40:11Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T09:40:14Z caller=logging.go:85 method=Health result=2 took=43.949µs +ts=2025-05-22T09:40:14Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T09:40:17Z caller=logging.go:85 method=Health result=2 took=46.459µs +ts=2025-05-22T09:40:17Z caller=logging.go:85 method=Health result=2 took=52.288µs +ts=2025-05-22T09:40:20Z caller=logging.go:85 method=Health result=2 took=44.109µs +ts=2025-05-22T09:40:20Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T09:40:23Z caller=logging.go:85 method=Health result=2 took=46.059µs +ts=2025-05-22T09:40:23Z caller=logging.go:85 method=Health result=2 took=51.058µs +ts=2025-05-22T09:40:26Z caller=logging.go:85 method=Health result=2 took=39.389µs +ts=2025-05-22T09:40:26Z caller=logging.go:85 method=Health result=2 took=39.719µs +ts=2025-05-22T09:40:29Z caller=logging.go:85 method=Health result=2 took=45.689µs +ts=2025-05-22T09:40:29Z caller=logging.go:85 method=Health result=2 took=48.609µs +ts=2025-05-22T09:40:32Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T09:40:32Z caller=logging.go:85 method=Health result=2 took=50.169µs +ts=2025-05-22T09:40:35Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T09:40:35Z caller=logging.go:85 method=Health result=2 took=50.069µs +ts=2025-05-22T09:40:38Z caller=logging.go:85 method=Health result=2 took=45.849µs +ts=2025-05-22T09:40:38Z caller=logging.go:85 method=Health result=2 took=49.339µs +ts=2025-05-22T09:40:41Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T09:40:41Z caller=logging.go:85 method=Health result=2 took=33.859µs +ts=2025-05-22T09:40:44Z caller=logging.go:85 method=Health result=2 took=38.489µs +ts=2025-05-22T09:40:44Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T09:40:47Z caller=logging.go:85 method=Health result=2 took=46.358µs +ts=2025-05-22T09:40:47Z caller=logging.go:85 method=Health result=2 took=51.039µs +ts=2025-05-22T09:40:50Z caller=logging.go:85 method=Health result=2 took=38.349µs +ts=2025-05-22T09:40:50Z caller=logging.go:85 method=Health result=2 took=49.249µs +ts=2025-05-22T09:40:53Z caller=logging.go:85 method=Health result=2 took=41.979µs +ts=2025-05-22T09:40:53Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T09:40:56Z caller=logging.go:85 method=Health result=2 took=45.269µs +ts=2025-05-22T09:40:56Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T09:40:59Z caller=logging.go:85 method=Health result=2 took=42.449µs +ts=2025-05-22T09:40:59Z caller=logging.go:85 method=Health result=2 took=48.818µs +ts=2025-05-22T09:41:02Z caller=logging.go:85 method=Health result=2 took=44.149µs +ts=2025-05-22T09:41:02Z caller=logging.go:85 method=Health result=2 took=50.329µs +ts=2025-05-22T09:41:05Z caller=logging.go:85 method=Health result=2 took=44.779µs +ts=2025-05-22T09:41:05Z caller=logging.go:85 method=Health result=2 took=48.589µs +ts=2025-05-22T09:41:08Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T09:41:08Z caller=logging.go:85 method=Health result=2 took=50.219µs +ts=2025-05-22T09:41:11Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T09:41:11Z caller=logging.go:85 method=Health result=2 took=40.589µs +ts=2025-05-22T09:41:14Z caller=logging.go:85 method=Health result=2 took=27.679µs +ts=2025-05-22T09:41:14Z caller=logging.go:85 method=Health result=2 took=27.519µs +ts=2025-05-22T09:41:17Z caller=logging.go:85 method=Health result=2 took=54.579µs +ts=2025-05-22T09:41:17Z caller=logging.go:85 method=Health result=2 took=48.808µs +ts=2025-05-22T09:41:20Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T09:41:20Z caller=logging.go:85 method=Health result=2 took=48.679µs +ts=2025-05-22T09:41:23Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T09:41:23Z caller=logging.go:85 method=Health result=2 took=48.989µs +ts=2025-05-22T09:41:26Z caller=logging.go:85 method=Health result=2 took=44.949µs +ts=2025-05-22T09:41:26Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T09:41:29Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T09:41:29Z caller=logging.go:85 method=Health result=2 took=48.429µs +ts=2025-05-22T09:41:32Z caller=logging.go:85 method=Health result=2 took=42.189µs +ts=2025-05-22T09:41:32Z caller=logging.go:85 method=Health result=2 took=49.399µs +ts=2025-05-22T09:41:35Z caller=logging.go:85 method=Health result=2 took=42.489µs +ts=2025-05-22T09:41:35Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T09:41:38Z caller=logging.go:85 method=Health result=2 took=54.539µs +ts=2025-05-22T09:41:38Z caller=logging.go:85 method=Health result=2 took=54.549µs +ts=2025-05-22T09:41:41Z caller=logging.go:85 method=Health result=2 took=43.149µs +ts=2025-05-22T09:41:41Z caller=logging.go:85 method=Health result=2 took=42.399µs +ts=2025-05-22T09:41:44Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T09:41:44Z caller=logging.go:85 method=Health result=2 took=48.359µs +ts=2025-05-22T09:41:47Z caller=logging.go:85 method=Health result=2 took=45.548µs +ts=2025-05-22T09:41:47Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T09:41:50Z caller=logging.go:85 method=Health result=2 took=43.859µs +ts=2025-05-22T09:41:50Z caller=logging.go:85 method=Health result=2 took=43.259µs +ts=2025-05-22T09:41:53Z caller=logging.go:85 method=Health result=2 took=29.96µs +ts=2025-05-22T09:41:53Z caller=logging.go:85 method=Health result=2 took=34.249µs +ts=2025-05-22T09:41:56Z caller=logging.go:85 method=Health result=2 took=40.979µs +ts=2025-05-22T09:41:56Z caller=logging.go:85 method=Health result=2 took=42.439µs +ts=2025-05-22T09:41:59Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T09:41:59Z caller=logging.go:85 method=Health result=2 took=44.719µs +ts=2025-05-22T09:42:02Z caller=logging.go:85 method=Health result=2 took=57.959µs +ts=2025-05-22T09:42:02Z caller=logging.go:85 method=Health result=2 took=57.269µs +ts=2025-05-22T09:42:05Z caller=logging.go:85 method=Health result=2 took=37.859µs +ts=2025-05-22T09:42:05Z caller=logging.go:85 method=Health result=2 took=47.688µs +ts=2025-05-22T09:42:08Z caller=logging.go:85 method=Health result=2 took=42.559µs +ts=2025-05-22T09:42:08Z caller=logging.go:85 method=Health result=2 took=42.909µs +ts=2025-05-22T09:42:11Z caller=logging.go:85 method=Health result=2 took=42.059µs +ts=2025-05-22T09:42:11Z caller=logging.go:85 method=Health result=2 took=44.729µs +ts=2025-05-22T09:42:14Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T09:42:14Z caller=logging.go:85 method=Health result=2 took=49.689µs +ts=2025-05-22T09:42:17Z caller=logging.go:85 method=Health result=2 took=102.548µs +ts=2025-05-22T09:42:17Z caller=logging.go:85 method=Health result=2 took=17.949µs +ts=2025-05-22T09:42:20Z caller=logging.go:85 method=Health result=2 took=40.079µs +ts=2025-05-22T09:42:20Z caller=logging.go:85 method=Health result=2 took=52.209µs +ts=2025-05-22T09:42:23Z caller=logging.go:85 method=Health result=2 took=36.809µs +ts=2025-05-22T09:42:23Z caller=logging.go:85 method=Health result=2 took=31.799µs +ts=2025-05-22T09:42:26Z caller=logging.go:85 method=Health result=2 took=39.4µs +ts=2025-05-22T09:42:26Z caller=logging.go:85 method=Health result=2 took=40.06µs +ts=2025-05-22T09:42:29Z caller=logging.go:85 method=Health result=2 took=58.299µs +ts=2025-05-22T09:42:29Z caller=logging.go:85 method=Health result=2 took=58.539µs +ts=2025-05-22T09:42:32Z caller=logging.go:85 method=Health result=2 took=42.559µs +ts=2025-05-22T09:42:32Z caller=logging.go:85 method=Health result=2 took=31.129µs +ts=2025-05-22T09:42:35Z caller=logging.go:85 method=Health result=2 took=29.739µs +ts=2025-05-22T09:42:35Z caller=logging.go:85 method=Health result=2 took=46.559µs +ts=2025-05-22T09:42:38Z caller=logging.go:85 method=Health result=2 took=41.629µs +ts=2025-05-22T09:42:38Z caller=logging.go:85 method=Health result=2 took=41.379µs +ts=2025-05-22T09:42:41Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T09:42:41Z caller=logging.go:85 method=Health result=2 took=50.259µs +ts=2025-05-22T09:42:44Z caller=logging.go:85 method=Health result=2 took=42.509µs +ts=2025-05-22T09:42:44Z caller=logging.go:85 method=Health result=2 took=43.329µs +ts=2025-05-22T09:42:47Z caller=logging.go:85 method=Health result=2 took=34.539µs +ts=2025-05-22T09:42:47Z caller=logging.go:85 method=Health result=2 took=45.769µs +ts=2025-05-22T09:42:50Z caller=logging.go:85 method=Health result=2 took=38.359µs +ts=2025-05-22T09:42:50Z caller=logging.go:85 method=Health result=2 took=59.448µs +ts=2025-05-22T09:42:53Z caller=logging.go:85 method=Health result=2 took=31.959µs +ts=2025-05-22T09:42:53Z caller=logging.go:85 method=Health result=2 took=36.069µs +ts=2025-05-22T09:42:56Z caller=logging.go:85 method=Health result=2 took=41.619µs +ts=2025-05-22T09:42:56Z caller=logging.go:85 method=Health result=2 took=48.428µs +ts=2025-05-22T09:42:59Z caller=logging.go:85 method=Health result=2 took=45.889µs +ts=2025-05-22T09:42:59Z caller=logging.go:85 method=Health result=2 took=50.938µs +ts=2025-05-22T09:43:02Z caller=logging.go:85 method=Health result=2 took=43.399µs +ts=2025-05-22T09:43:02Z caller=logging.go:85 method=Health result=2 took=42.689µs +ts=2025-05-22T09:43:05Z caller=logging.go:85 method=Health result=2 took=31.999µs +ts=2025-05-22T09:43:05Z caller=logging.go:85 method=Health result=2 took=43.149µs +ts=2025-05-22T09:43:08Z caller=logging.go:85 method=Health result=2 took=41.509µs +ts=2025-05-22T09:43:08Z caller=logging.go:85 method=Health result=2 took=40.809µs +ts=2025-05-22T09:43:11Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T09:43:11Z caller=logging.go:85 method=Health result=2 took=40.599µs +ts=2025-05-22T09:43:14Z caller=logging.go:85 method=Health result=2 took=43.769µs +ts=2025-05-22T09:43:14Z caller=logging.go:85 method=Health result=2 took=44.309µs +ts=2025-05-22T09:43:17Z caller=logging.go:85 method=Health result=2 took=44.609µs +ts=2025-05-22T09:43:17Z caller=logging.go:85 method=Health result=2 took=31.129µs +ts=2025-05-22T09:43:20Z caller=logging.go:85 method=Health result=2 took=45.249µs +ts=2025-05-22T09:43:20Z caller=logging.go:85 method=Health result=2 took=50.369µs +ts=2025-05-22T09:43:23Z caller=logging.go:85 method=Health result=2 took=53.669µs +ts=2025-05-22T09:43:23Z caller=logging.go:85 method=Health result=2 took=30.78µs +ts=2025-05-22T09:43:26Z caller=logging.go:85 method=Health result=2 took=44.529µs +ts=2025-05-22T09:43:26Z caller=logging.go:85 method=Health result=2 took=43.879µs +ts=2025-05-22T09:43:29Z caller=logging.go:85 method=Health result=2 took=45.259µs +ts=2025-05-22T09:43:29Z caller=logging.go:85 method=Health result=2 took=49.979µs +ts=2025-05-22T09:43:32Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T09:43:32Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T09:43:35Z caller=logging.go:85 method=Health result=2 took=52.238µs +ts=2025-05-22T09:43:35Z caller=logging.go:85 method=Health result=2 took=63.168µs +ts=2025-05-22T09:43:38Z caller=logging.go:85 method=Health result=2 took=42.219µs +ts=2025-05-22T09:43:38Z caller=logging.go:85 method=Health result=2 took=42.918µs +ts=2025-05-22T09:43:41Z caller=logging.go:85 method=Health result=2 took=44.328µs +ts=2025-05-22T09:43:41Z caller=logging.go:85 method=Health result=2 took=43.768µs +ts=2025-05-22T09:43:44Z caller=logging.go:85 method=Health result=2 took=55.638µs +ts=2025-05-22T09:43:44Z caller=logging.go:85 method=Health result=2 took=30.669µs +ts=2025-05-22T09:43:47Z caller=logging.go:85 method=Health result=2 took=41.779µs +ts=2025-05-22T09:43:47Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T09:43:50Z caller=logging.go:85 method=Health result=2 took=41.589µs +ts=2025-05-22T09:43:50Z caller=logging.go:85 method=Health result=2 took=42.429µs +ts=2025-05-22T09:43:53Z caller=logging.go:85 method=Health result=2 took=28.869µs +ts=2025-05-22T09:43:53Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T09:43:56Z caller=logging.go:85 method=Health result=2 took=48.269µs +ts=2025-05-22T09:43:56Z caller=logging.go:85 method=Health result=2 took=52.739µs +ts=2025-05-22T09:43:59Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T09:43:59Z caller=logging.go:85 method=Health result=2 took=50.009µs +ts=2025-05-22T09:44:02Z caller=logging.go:85 method=Health result=2 took=45.729µs +ts=2025-05-22T09:44:02Z caller=logging.go:85 method=Health result=2 took=51.069µs +ts=2025-05-22T09:44:05Z caller=logging.go:85 method=Health result=2 took=44.668µs +ts=2025-05-22T09:44:05Z caller=logging.go:85 method=Health result=2 took=47.509µs +ts=2025-05-22T09:44:08Z caller=logging.go:85 method=Health result=2 took=39.669µs +ts=2025-05-22T09:44:08Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T09:44:11Z caller=logging.go:85 method=Health result=2 took=48.058µs +ts=2025-05-22T09:44:11Z caller=logging.go:85 method=Health result=2 took=55.088µs +ts=2025-05-22T09:44:14Z caller=logging.go:85 method=Health result=2 took=57.259µs +ts=2025-05-22T09:44:14Z caller=logging.go:85 method=Health result=2 took=57.259µs +ts=2025-05-22T09:44:17Z caller=logging.go:85 method=Health result=2 took=38.229µs +ts=2025-05-22T09:44:17Z caller=logging.go:85 method=Health result=2 took=1.111583ms +ts=2025-05-22T09:44:20Z caller=logging.go:85 method=Health result=2 took=41.279µs +ts=2025-05-22T09:44:20Z caller=logging.go:85 method=Health result=2 took=37.579µs +ts=2025-05-22T09:44:23Z caller=logging.go:85 method=Health result=2 took=34.599µs +ts=2025-05-22T09:44:23Z caller=logging.go:85 method=Health result=2 took=35.659µs +ts=2025-05-22T09:44:26Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T09:44:26Z caller=logging.go:85 method=Health result=2 took=51.299µs +ts=2025-05-22T09:44:29Z caller=logging.go:85 method=Health result=2 took=41.899µs +ts=2025-05-22T09:44:29Z caller=logging.go:85 method=Health result=2 took=41.159µs +ts=2025-05-22T09:44:32Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T09:44:32Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T09:44:35Z caller=logging.go:85 method=Health result=2 took=31.169µs +ts=2025-05-22T09:44:35Z caller=logging.go:85 method=Health result=2 took=41.859µs +ts=2025-05-22T09:44:38Z caller=logging.go:85 method=Health result=2 took=30.81µs +ts=2025-05-22T09:44:38Z caller=logging.go:85 method=Health result=2 took=45.939µs +ts=2025-05-22T09:44:41Z caller=logging.go:85 method=Health result=2 took=39.899µs +ts=2025-05-22T09:44:41Z caller=logging.go:85 method=Health result=2 took=40.229µs +ts=2025-05-22T09:44:44Z caller=logging.go:85 method=Health result=2 took=40.129µs +ts=2025-05-22T09:44:44Z caller=logging.go:85 method=Health result=2 took=39.589µs +ts=2025-05-22T09:44:47Z caller=logging.go:85 method=Health result=2 took=37.879µs +ts=2025-05-22T09:44:47Z caller=logging.go:85 method=Health result=2 took=44.568µs +ts=2025-05-22T09:44:50Z caller=logging.go:85 method=Health result=2 took=37.389µs +ts=2025-05-22T09:44:50Z caller=logging.go:85 method=Health result=2 took=13.09µs +ts=2025-05-22T09:44:53Z caller=logging.go:85 method=Health result=2 took=28.739µs +ts=2025-05-22T09:44:53Z caller=logging.go:85 method=Health result=2 took=28.729µs +ts=2025-05-22T09:44:56Z caller=logging.go:85 method=Health result=2 took=30.119µs +ts=2025-05-22T09:44:56Z caller=logging.go:85 method=Health result=2 took=53.738µs +ts=2025-05-22T09:44:59Z caller=logging.go:85 method=Health result=2 took=30.619µs +ts=2025-05-22T09:44:59Z caller=logging.go:85 method=Health result=2 took=11.409µs +ts=2025-05-22T09:45:02Z caller=logging.go:85 method=Health result=2 took=29.65µs +ts=2025-05-22T09:45:02Z caller=logging.go:85 method=Health result=2 took=47.028µs +ts=2025-05-22T09:45:05Z caller=logging.go:85 method=Health result=2 took=30.78µs +ts=2025-05-22T09:45:05Z caller=logging.go:85 method=Health result=2 took=34.669µs +ts=2025-05-22T09:45:08Z caller=logging.go:85 method=Health result=2 took=42.659µs +ts=2025-05-22T09:45:08Z caller=logging.go:85 method=Health result=2 took=44.819µs +ts=2025-05-22T09:45:11Z caller=logging.go:85 method=Health result=2 took=40.749µs +ts=2025-05-22T09:45:11Z caller=logging.go:85 method=Health result=2 took=23.739µs +ts=2025-05-22T09:45:14Z caller=logging.go:85 method=Health result=2 took=45.709µs +ts=2025-05-22T09:45:14Z caller=logging.go:85 method=Health result=2 took=47.649µs +ts=2025-05-22T09:45:17Z caller=logging.go:85 method=Health result=2 took=39.929µs +ts=2025-05-22T09:45:17Z caller=logging.go:85 method=Health result=2 took=30.799µs +ts=2025-05-22T09:45:20Z caller=logging.go:85 method=Health result=2 took=25.349µs +ts=2025-05-22T09:45:20Z caller=logging.go:85 method=Health result=2 took=40.269µs +ts=2025-05-22T09:45:23Z caller=logging.go:85 method=Health result=2 took=43.959µs +ts=2025-05-22T09:45:23Z caller=logging.go:85 method=Health result=2 took=43.079µs +ts=2025-05-22T09:45:26Z caller=logging.go:85 method=Health result=2 took=58.648µs +ts=2025-05-22T09:45:26Z caller=logging.go:85 method=Health result=2 took=56.438µs +ts=2025-05-22T09:45:29Z caller=logging.go:85 method=Health result=2 took=29.839µs +ts=2025-05-22T09:45:29Z caller=logging.go:85 method=Health result=2 took=28.779µs +ts=2025-05-22T09:45:32Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T09:45:32Z caller=logging.go:85 method=Health result=2 took=41.719µs +ts=2025-05-22T09:45:35Z caller=logging.go:85 method=Health result=2 took=51.539µs +ts=2025-05-22T09:45:35Z caller=logging.go:85 method=Health result=2 took=29.789µs +ts=2025-05-22T09:45:38Z caller=logging.go:85 method=Health result=2 took=52.499µs +ts=2025-05-22T09:45:38Z caller=logging.go:85 method=Health result=2 took=30.619µs +ts=2025-05-22T09:45:41Z caller=logging.go:85 method=Health result=2 took=42.499µs +ts=2025-05-22T09:45:41Z caller=logging.go:85 method=Health result=2 took=49.329µs +ts=2025-05-22T09:45:44Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T09:45:44Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T09:45:47Z caller=logging.go:85 method=Health result=2 took=45.159µs +ts=2025-05-22T09:45:47Z caller=logging.go:85 method=Health result=2 took=50.609µs +ts=2025-05-22T09:45:50Z caller=logging.go:85 method=Health result=2 took=37.849µs +ts=2025-05-22T09:45:50Z caller=logging.go:85 method=Health result=2 took=45.079µs +ts=2025-05-22T09:45:53Z caller=logging.go:85 method=Health result=2 took=45.049µs +ts=2025-05-22T09:45:53Z caller=logging.go:85 method=Health result=2 took=50.639µs +ts=2025-05-22T09:45:56Z caller=logging.go:85 method=Health result=2 took=45.719µs +ts=2025-05-22T09:45:56Z caller=logging.go:85 method=Health result=2 took=49.889µs +ts=2025-05-22T09:45:59Z caller=logging.go:85 method=Health result=2 took=36.499µs +ts=2025-05-22T09:45:59Z caller=logging.go:85 method=Health result=2 took=36.019µs +ts=2025-05-22T09:46:02Z caller=logging.go:85 method=Health result=2 took=42.019µs +ts=2025-05-22T09:46:02Z caller=logging.go:85 method=Health result=2 took=42.499µs +ts=2025-05-22T09:46:05Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T09:46:05Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T09:46:08Z caller=logging.go:85 method=Health result=2 took=43.779µs +ts=2025-05-22T09:46:08Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T09:46:11Z caller=logging.go:85 method=Health result=2 took=43.689µs +ts=2025-05-22T09:46:11Z caller=logging.go:85 method=Health result=2 took=50.279µs +ts=2025-05-22T09:46:14Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T09:46:14Z caller=logging.go:85 method=Health result=2 took=42.559µs +ts=2025-05-22T09:46:17Z caller=logging.go:85 method=Health result=2 took=47.169µs +ts=2025-05-22T09:46:17Z caller=logging.go:85 method=Health result=2 took=56.568µs +ts=2025-05-22T09:46:20Z caller=logging.go:85 method=Health result=2 took=30.679µs +ts=2025-05-22T09:46:20Z caller=logging.go:85 method=Health result=2 took=46.839µs +ts=2025-05-22T09:46:23Z caller=logging.go:85 method=Health result=2 took=44.279µs +ts=2025-05-22T09:46:23Z caller=logging.go:85 method=Health result=2 took=51.008µs +ts=2025-05-22T09:46:26Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T09:46:26Z caller=logging.go:85 method=Health result=2 took=41.899µs +ts=2025-05-22T09:46:29Z caller=logging.go:85 method=Health result=2 took=40.279µs +ts=2025-05-22T09:46:29Z caller=logging.go:85 method=Health result=2 took=54.348µs +ts=2025-05-22T09:46:32Z caller=logging.go:85 method=Health result=2 took=41.619µs +ts=2025-05-22T09:46:32Z caller=logging.go:85 method=Health result=2 took=46.999µs +ts=2025-05-22T09:46:35Z caller=logging.go:85 method=Health result=2 took=41.679µs +ts=2025-05-22T09:46:35Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T09:46:38Z caller=logging.go:85 method=Health result=2 took=41.499µs +ts=2025-05-22T09:46:38Z caller=logging.go:85 method=Health result=2 took=41.899µs +ts=2025-05-22T09:46:41Z caller=logging.go:85 method=Health result=2 took=45.079µs +ts=2025-05-22T09:46:41Z caller=logging.go:85 method=Health result=2 took=44.559µs +ts=2025-05-22T09:46:44Z caller=logging.go:85 method=Health result=2 took=43.519µs +ts=2025-05-22T09:46:44Z caller=logging.go:85 method=Health result=2 took=42.389µs +ts=2025-05-22T09:46:47Z caller=logging.go:85 method=Health result=2 took=42.289µs +ts=2025-05-22T09:46:47Z caller=logging.go:85 method=Health result=2 took=31.389µs +ts=2025-05-22T09:46:50Z caller=logging.go:85 method=Health result=2 took=39.219µs +ts=2025-05-22T09:46:50Z caller=logging.go:85 method=Health result=2 took=39.059µs +ts=2025-05-22T09:46:53Z caller=logging.go:85 method=Health result=2 took=34.849µs +ts=2025-05-22T09:46:53Z caller=logging.go:85 method=Health result=2 took=57.949µs +ts=2025-05-22T09:46:56Z caller=logging.go:85 method=Health result=2 took=48.989µs +ts=2025-05-22T09:46:56Z caller=logging.go:85 method=Health result=2 took=73.518µs +ts=2025-05-22T09:46:59Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T09:46:59Z caller=logging.go:85 method=Health result=2 took=31.099µs +ts=2025-05-22T09:47:02Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T09:47:02Z caller=logging.go:85 method=Health result=2 took=44.219µs +ts=2025-05-22T09:47:05Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T09:47:05Z caller=logging.go:85 method=Health result=2 took=37.409µs +ts=2025-05-22T09:47:08Z caller=logging.go:85 method=Health result=2 took=35.289µs +ts=2025-05-22T09:47:08Z caller=logging.go:85 method=Health result=2 took=34.929µs +ts=2025-05-22T09:47:11Z caller=logging.go:85 method=Health result=2 took=41.729µs +ts=2025-05-22T09:47:11Z caller=logging.go:85 method=Health result=2 took=56.538µs +ts=2025-05-22T09:47:14Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T09:47:14Z caller=logging.go:85 method=Health result=2 took=49.859µs +ts=2025-05-22T09:47:17Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T09:47:17Z caller=logging.go:85 method=Health result=2 took=42.499µs +ts=2025-05-22T09:47:20Z caller=logging.go:85 method=Health result=2 took=35.39µs +ts=2025-05-22T09:47:20Z caller=logging.go:85 method=Health result=2 took=45.469µs +ts=2025-05-22T09:47:23Z caller=logging.go:85 method=Health result=2 took=43.718µs +ts=2025-05-22T09:47:23Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T09:47:26Z caller=logging.go:85 method=Health result=2 took=48.649µs +ts=2025-05-22T09:47:26Z caller=logging.go:85 method=Health result=2 took=50.669µs +ts=2025-05-22T09:47:29Z caller=logging.go:85 method=Health result=2 took=36.67µs +ts=2025-05-22T09:47:29Z caller=logging.go:85 method=Health result=2 took=49.519µs +ts=2025-05-22T09:47:32Z caller=logging.go:85 method=Health result=2 took=32.199µs +ts=2025-05-22T09:47:32Z caller=logging.go:85 method=Health result=2 took=45.399µs +ts=2025-05-22T09:47:35Z caller=logging.go:85 method=Health result=2 took=36.869µs +ts=2025-05-22T09:47:35Z caller=logging.go:85 method=Health result=2 took=24.869µs +ts=2025-05-22T09:47:38Z caller=logging.go:85 method=Health result=2 took=36.959µs +ts=2025-05-22T09:47:38Z caller=logging.go:85 method=Health result=2 took=37.799µs +ts=2025-05-22T09:47:41Z caller=logging.go:85 method=Health result=2 took=30.379µs +ts=2025-05-22T09:47:41Z caller=logging.go:85 method=Health result=2 took=30.389µs +ts=2025-05-22T09:47:44Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T09:47:44Z caller=logging.go:85 method=Health result=2 took=48.959µs +ts=2025-05-22T09:47:47Z caller=logging.go:85 method=Health result=2 took=41.329µs +ts=2025-05-22T09:47:47Z caller=logging.go:85 method=Health result=2 took=41.949µs +ts=2025-05-22T09:47:50Z caller=logging.go:85 method=Health result=2 took=44.969µs +ts=2025-05-22T09:47:50Z caller=logging.go:85 method=Health result=2 took=51.199µs +ts=2025-05-22T09:47:53Z caller=logging.go:85 method=Health result=2 took=32.15µs +ts=2025-05-22T09:47:53Z caller=logging.go:85 method=Health result=2 took=47.829µs +ts=2025-05-22T09:47:56Z caller=logging.go:85 method=Health result=2 took=31.779µs +ts=2025-05-22T09:47:56Z caller=logging.go:85 method=Health result=2 took=42.769µs +ts=2025-05-22T09:47:59Z caller=logging.go:85 method=Health result=2 took=47.229µs +ts=2025-05-22T09:47:59Z caller=logging.go:85 method=Health result=2 took=50.699µs +ts=2025-05-22T09:48:02Z caller=logging.go:85 method=Health result=2 took=48.039µs +ts=2025-05-22T09:48:02Z caller=logging.go:85 method=Health result=2 took=72.019µs +ts=2025-05-22T09:48:05Z caller=logging.go:85 method=Health result=2 took=43.869µs +ts=2025-05-22T09:48:05Z caller=logging.go:85 method=Health result=2 took=55.979µs +ts=2025-05-22T09:48:08Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T09:48:08Z caller=logging.go:85 method=Health result=2 took=50.198µs +ts=2025-05-22T09:48:11Z caller=logging.go:85 method=Health result=2 took=41.409µs +ts=2025-05-22T09:48:11Z caller=logging.go:85 method=Health result=2 took=41.239µs +ts=2025-05-22T09:48:14Z caller=logging.go:85 method=Health result=2 took=46.999µs +ts=2025-05-22T09:48:14Z caller=logging.go:85 method=Health result=2 took=48.739µs +ts=2025-05-22T09:48:17Z caller=logging.go:85 method=Health result=2 took=1.25675ms +ts=2025-05-22T09:48:17Z caller=logging.go:85 method=Health result=2 took=35.209µs +ts=2025-05-22T09:48:20Z caller=logging.go:85 method=Health result=2 took=41.619µs +ts=2025-05-22T09:48:20Z caller=logging.go:85 method=Health result=2 took=42.589µs +ts=2025-05-22T09:48:23Z caller=logging.go:85 method=Health result=2 took=42.838µs +ts=2025-05-22T09:48:23Z caller=logging.go:85 method=Health result=2 took=43.578µs +ts=2025-05-22T09:48:26Z caller=logging.go:85 method=Health result=2 took=38.609µs +ts=2025-05-22T09:48:26Z caller=logging.go:85 method=Health result=2 took=50.549µs +ts=2025-05-22T09:48:29Z caller=logging.go:85 method=Health result=2 took=43.639µs +ts=2025-05-22T09:48:29Z caller=logging.go:85 method=Health result=2 took=50.969µs +ts=2025-05-22T09:48:32Z caller=logging.go:85 method=Health result=2 took=43.839µs +ts=2025-05-22T09:48:32Z caller=logging.go:85 method=Health result=2 took=53.748µs +ts=2025-05-22T09:48:35Z caller=logging.go:85 method=Health result=2 took=48.949µs +ts=2025-05-22T09:48:35Z caller=logging.go:85 method=Health result=2 took=52.278µs +ts=2025-05-22T09:48:38Z caller=logging.go:85 method=Health result=2 took=45.479µs +ts=2025-05-22T09:48:38Z caller=logging.go:85 method=Health result=2 took=50.889µs +ts=2025-05-22T09:48:41Z caller=logging.go:85 method=Health result=2 took=44.569µs +ts=2025-05-22T09:48:41Z caller=logging.go:85 method=Health result=2 took=48.889µs +ts=2025-05-22T09:48:44Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T09:48:44Z caller=logging.go:85 method=Health result=2 took=30.699µs +ts=2025-05-22T09:48:47Z caller=logging.go:85 method=Health result=2 took=39.059µs +ts=2025-05-22T09:48:47Z caller=logging.go:85 method=Health result=2 took=48.958µs +ts=2025-05-22T09:48:50Z caller=logging.go:85 method=Health result=2 took=45.099µs +ts=2025-05-22T09:48:50Z caller=logging.go:85 method=Health result=2 took=49.689µs +ts=2025-05-22T09:48:53Z caller=logging.go:85 method=Health result=2 took=30.859µs +ts=2025-05-22T09:48:53Z caller=logging.go:85 method=Health result=2 took=30.759µs +ts=2025-05-22T09:48:56Z caller=logging.go:85 method=Health result=2 took=44.199µs +ts=2025-05-22T09:48:56Z caller=logging.go:85 method=Health result=2 took=24.209µs +ts=2025-05-22T09:48:59Z caller=logging.go:85 method=Health result=2 took=36.009µs +ts=2025-05-22T09:48:59Z caller=logging.go:85 method=Health result=2 took=33.709µs +ts=2025-05-22T09:49:02Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T09:49:02Z caller=logging.go:85 method=Health result=2 took=48.289µs +ts=2025-05-22T09:49:05Z caller=logging.go:85 method=Health result=2 took=41.149µs +ts=2025-05-22T09:49:05Z caller=logging.go:85 method=Health result=2 took=54.659µs +ts=2025-05-22T09:49:08Z caller=logging.go:85 method=Health result=2 took=41.489µs +ts=2025-05-22T09:49:08Z caller=logging.go:85 method=Health result=2 took=38.12µs +ts=2025-05-22T09:49:11Z caller=logging.go:85 method=Health result=2 took=32.909µs +ts=2025-05-22T09:49:11Z caller=logging.go:85 method=Health result=2 took=33.259µs +ts=2025-05-22T09:49:14Z caller=logging.go:85 method=Health result=2 took=25.819µs +ts=2025-05-22T09:49:14Z caller=logging.go:85 method=Health result=2 took=46.629µs +ts=2025-05-22T09:49:17Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T09:49:17Z caller=logging.go:85 method=Health result=2 took=39.789µs +ts=2025-05-22T09:49:20Z caller=logging.go:85 method=Health result=2 took=30.44µs +ts=2025-05-22T09:49:20Z caller=logging.go:85 method=Health result=2 took=30.47µs +ts=2025-05-22T09:49:23Z caller=logging.go:85 method=Health result=2 took=48.418µs +ts=2025-05-22T09:49:23Z caller=logging.go:85 method=Health result=2 took=54.869µs +ts=2025-05-22T09:49:26Z caller=logging.go:85 method=Health result=2 took=45.689µs +ts=2025-05-22T09:49:26Z caller=logging.go:85 method=Health result=2 took=50.709µs +ts=2025-05-22T09:49:29Z caller=logging.go:85 method=Health result=2 took=27.309µs +ts=2025-05-22T09:49:29Z caller=logging.go:85 method=Health result=2 took=41.439µs +ts=2025-05-22T09:49:32Z caller=logging.go:85 method=Health result=2 took=39.429µs +ts=2025-05-22T09:49:32Z caller=logging.go:85 method=Health result=2 took=40.089µs +ts=2025-05-22T09:49:35Z caller=logging.go:85 method=Health result=2 took=32.749µs +ts=2025-05-22T09:49:35Z caller=logging.go:85 method=Health result=2 took=42.999µs +ts=2025-05-22T09:49:38Z caller=logging.go:85 method=Health result=2 took=41.359µs +ts=2025-05-22T09:49:38Z caller=logging.go:85 method=Health result=2 took=27.119µs +ts=2025-05-22T09:49:41Z caller=logging.go:85 method=Health result=2 took=31.1µs +ts=2025-05-22T09:49:41Z caller=logging.go:85 method=Health result=2 took=31.14µs +ts=2025-05-22T09:49:44Z caller=logging.go:85 method=Health result=2 took=40.049µs +ts=2025-05-22T09:49:44Z caller=logging.go:85 method=Health result=2 took=52.289µs +ts=2025-05-22T09:49:47Z caller=logging.go:85 method=Health result=2 took=55.339µs +ts=2025-05-22T09:49:47Z caller=logging.go:85 method=Health result=2 took=55.399µs +ts=2025-05-22T09:49:50Z caller=logging.go:85 method=Health result=2 took=37.399µs +ts=2025-05-22T09:49:50Z caller=logging.go:85 method=Health result=2 took=36.809µs +ts=2025-05-22T09:49:53Z caller=logging.go:85 method=Health result=2 took=41.179µs +ts=2025-05-22T09:49:53Z caller=logging.go:85 method=Health result=2 took=40.079µs +ts=2025-05-22T09:49:56Z caller=logging.go:85 method=Health result=2 took=28.639µs +ts=2025-05-22T09:49:56Z caller=logging.go:85 method=Health result=2 took=28.659µs +ts=2025-05-22T09:49:59Z caller=logging.go:85 method=Health result=2 took=31.749µs +ts=2025-05-22T09:49:59Z caller=logging.go:85 method=Health result=2 took=51.849µs +ts=2025-05-22T09:50:02Z caller=logging.go:85 method=Health result=2 took=46.238µs +ts=2025-05-22T09:50:02Z caller=logging.go:85 method=Health result=2 took=50.219µs +ts=2025-05-22T09:50:05Z caller=logging.go:85 method=Health result=2 took=32.489µs +ts=2025-05-22T09:50:05Z caller=logging.go:85 method=Health result=2 took=16.6µs +ts=2025-05-22T09:50:08Z caller=logging.go:85 method=Health result=2 took=41.279µs +ts=2025-05-22T09:50:08Z caller=logging.go:85 method=Health result=2 took=19.989µs +ts=2025-05-22T09:50:11Z caller=logging.go:85 method=Health result=2 took=30.03µs +ts=2025-05-22T09:50:11Z caller=logging.go:85 method=Health result=2 took=46.058µs +ts=2025-05-22T09:50:14Z caller=logging.go:85 method=Health result=2 took=31.49µs +ts=2025-05-22T09:50:14Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T09:50:17Z caller=logging.go:85 method=Health result=2 took=29.5µs +ts=2025-05-22T09:50:17Z caller=logging.go:85 method=Health result=2 took=19.05µs +ts=2025-05-22T09:50:20Z caller=logging.go:85 method=Health result=2 took=38.009µs +ts=2025-05-22T09:50:20Z caller=logging.go:85 method=Health result=2 took=22.55µs +ts=2025-05-22T09:50:23Z caller=logging.go:85 method=Health result=2 took=38.409µs +ts=2025-05-22T09:50:23Z caller=logging.go:85 method=Health result=2 took=38.409µs +ts=2025-05-22T09:50:26Z caller=logging.go:85 method=Health result=2 took=45.409µs +ts=2025-05-22T09:50:26Z caller=logging.go:85 method=Health result=2 took=40.889µs +ts=2025-05-22T09:50:29Z caller=logging.go:85 method=Health result=2 took=39.969µs +ts=2025-05-22T09:50:29Z caller=logging.go:85 method=Health result=2 took=27.95µs +ts=2025-05-22T09:50:32Z caller=logging.go:85 method=Health result=2 took=53.958µs +ts=2025-05-22T09:50:32Z caller=logging.go:85 method=Health result=2 took=34.699µs +ts=2025-05-22T09:50:35Z caller=logging.go:85 method=Health result=2 took=39.679µs +ts=2025-05-22T09:50:35Z caller=logging.go:85 method=Health result=2 took=27.35µs +ts=2025-05-22T09:50:38Z caller=logging.go:85 method=Health result=2 took=39.769µs +ts=2025-05-22T09:50:38Z caller=logging.go:85 method=Health result=2 took=39.769µs +ts=2025-05-22T09:50:41Z caller=logging.go:85 method=Health result=2 took=40.389µs +ts=2025-05-22T09:50:41Z caller=logging.go:85 method=Health result=2 took=39.819µs +ts=2025-05-22T09:50:44Z caller=logging.go:85 method=Health result=2 took=34.259µs +ts=2025-05-22T09:50:44Z caller=logging.go:85 method=Health result=2 took=17.68µs +ts=2025-05-22T09:50:47Z caller=logging.go:85 method=Health result=2 took=33.4µs +ts=2025-05-22T09:50:47Z caller=logging.go:85 method=Health result=2 took=13.729µs +ts=2025-05-22T09:50:50Z caller=logging.go:85 method=Health result=2 took=46.569µs +ts=2025-05-22T09:50:50Z caller=logging.go:85 method=Health result=2 took=45.439µs +ts=2025-05-22T09:50:53Z caller=logging.go:85 method=Health result=2 took=34.239µs +ts=2025-05-22T09:50:53Z caller=logging.go:85 method=Health result=2 took=41.159µs +ts=2025-05-22T09:50:56Z caller=logging.go:85 method=Health result=2 took=42.969µs +ts=2025-05-22T09:50:56Z caller=logging.go:85 method=Health result=2 took=48.799µs +ts=2025-05-22T09:50:59Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T09:50:59Z caller=logging.go:85 method=Health result=2 took=43.169µs +ts=2025-05-22T09:51:02Z caller=logging.go:85 method=Health result=2 took=33.26µs +ts=2025-05-22T09:51:02Z caller=logging.go:85 method=Health result=2 took=50.089µs +ts=2025-05-22T09:51:05Z caller=logging.go:85 method=Health result=2 took=44.929µs +ts=2025-05-22T09:51:05Z caller=logging.go:85 method=Health result=2 took=39.879µs +ts=2025-05-22T09:51:08Z caller=logging.go:85 method=Health result=2 took=39.04µs +ts=2025-05-22T09:51:08Z caller=logging.go:85 method=Health result=2 took=38.64µs +ts=2025-05-22T09:51:11Z caller=logging.go:85 method=Health result=2 took=37.899µs +ts=2025-05-22T09:51:11Z caller=logging.go:85 method=Health result=2 took=46.829µs +ts=2025-05-22T09:51:14Z caller=logging.go:85 method=Health result=2 took=31.669µs +ts=2025-05-22T09:51:14Z caller=logging.go:85 method=Health result=2 took=17µs +ts=2025-05-22T09:51:17Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T09:51:17Z caller=logging.go:85 method=Health result=2 took=43.409µs +ts=2025-05-22T09:51:20Z caller=logging.go:85 method=Health result=2 took=39.819µs +ts=2025-05-22T09:51:20Z caller=logging.go:85 method=Health result=2 took=40.459µs +ts=2025-05-22T09:51:23Z caller=logging.go:85 method=Health result=2 took=46.859µs +ts=2025-05-22T09:51:23Z caller=logging.go:85 method=Health result=2 took=63.388µs +ts=2025-05-22T09:51:26Z caller=logging.go:85 method=Health result=2 took=29.209µs +ts=2025-05-22T09:51:26Z caller=logging.go:85 method=Health result=2 took=29.189µs +ts=2025-05-22T09:51:29Z caller=logging.go:85 method=Health result=2 took=31.459µs +ts=2025-05-22T09:51:29Z caller=logging.go:85 method=Health result=2 took=33.419µs +ts=2025-05-22T09:51:32Z caller=logging.go:85 method=Health result=2 took=37.519µs +ts=2025-05-22T09:51:32Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T09:51:35Z caller=logging.go:85 method=Health result=2 took=41.15µs +ts=2025-05-22T09:51:35Z caller=logging.go:85 method=Health result=2 took=46.399µs +ts=2025-05-22T09:51:38Z caller=logging.go:85 method=Health result=2 took=39.839µs +ts=2025-05-22T09:51:38Z caller=logging.go:85 method=Health result=2 took=27.169µs +ts=2025-05-22T09:51:41Z caller=logging.go:85 method=Health result=2 took=32.289µs +ts=2025-05-22T09:51:41Z caller=logging.go:85 method=Health result=2 took=47.468µs +ts=2025-05-22T09:51:44Z caller=logging.go:85 method=Health result=2 took=51.978µs +ts=2025-05-22T09:51:44Z caller=logging.go:85 method=Health result=2 took=51.948µs +ts=2025-05-22T09:51:47Z caller=logging.go:85 method=Health result=2 took=42.289µs +ts=2025-05-22T09:51:47Z caller=logging.go:85 method=Health result=2 took=31.82µs +ts=2025-05-22T09:51:50Z caller=logging.go:85 method=Health result=2 took=42.109µs +ts=2025-05-22T09:51:50Z caller=logging.go:85 method=Health result=2 took=30.509µs +ts=2025-05-22T09:51:53Z caller=logging.go:85 method=Health result=2 took=32.869µs +ts=2025-05-22T09:51:53Z caller=logging.go:85 method=Health result=2 took=44.419µs +ts=2025-05-22T09:51:56Z caller=logging.go:85 method=Health result=2 took=29.229µs +ts=2025-05-22T09:51:56Z caller=logging.go:85 method=Health result=2 took=29.269µs +ts=2025-05-22T09:51:59Z caller=logging.go:85 method=Health result=2 took=31.799µs +ts=2025-05-22T09:51:59Z caller=logging.go:85 method=Health result=2 took=15.97µs +ts=2025-05-22T09:52:02Z caller=logging.go:85 method=Health result=2 took=28.779µs +ts=2025-05-22T09:52:02Z caller=logging.go:85 method=Health result=2 took=28.899µs +ts=2025-05-22T09:52:05Z caller=logging.go:85 method=Health result=2 took=41.229µs +ts=2025-05-22T09:52:05Z caller=logging.go:85 method=Health result=2 took=56.439µs +ts=2025-05-22T09:52:08Z caller=logging.go:85 method=Health result=2 took=40.579µs +ts=2025-05-22T09:52:08Z caller=logging.go:85 method=Health result=2 took=40.519µs +ts=2025-05-22T09:52:11Z caller=logging.go:85 method=Health result=2 took=42.439µs +ts=2025-05-22T09:52:11Z caller=logging.go:85 method=Health result=2 took=50.669µs +ts=2025-05-22T09:52:14Z caller=logging.go:85 method=Health result=2 took=38.569µs +ts=2025-05-22T09:52:14Z caller=logging.go:85 method=Health result=2 took=38.699µs +ts=2025-05-22T09:52:17Z caller=logging.go:85 method=Health result=2 took=90.488µs +ts=2025-05-22T09:52:17Z caller=logging.go:85 method=Health result=2 took=869.149µs +ts=2025-05-22T09:52:20Z caller=logging.go:85 method=Health result=2 took=60.168µs +ts=2025-05-22T09:52:20Z caller=logging.go:85 method=Health result=2 took=46.279µs +ts=2025-05-22T09:52:23Z caller=logging.go:85 method=Health result=2 took=41.939µs +ts=2025-05-22T09:52:23Z caller=logging.go:85 method=Health result=2 took=49.679µs +ts=2025-05-22T09:52:26Z caller=logging.go:85 method=Health result=2 took=39.019µs +ts=2025-05-22T09:52:26Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T09:52:29Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T09:52:29Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T09:52:32Z caller=logging.go:85 method=Health result=2 took=39.109µs +ts=2025-05-22T09:52:32Z caller=logging.go:85 method=Health result=2 took=66.659µs +ts=2025-05-22T09:52:35Z caller=logging.go:85 method=Health result=2 took=24.729µs +ts=2025-05-22T09:52:35Z caller=logging.go:85 method=Health result=2 took=29.989µs +ts=2025-05-22T09:52:38Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T09:52:38Z caller=logging.go:85 method=Health result=2 took=38.379µs +ts=2025-05-22T09:52:41Z caller=logging.go:85 method=Health result=2 took=29.919µs +ts=2025-05-22T09:52:41Z caller=logging.go:85 method=Health result=2 took=29.919µs +ts=2025-05-22T09:52:44Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T09:52:44Z caller=logging.go:85 method=Health result=2 took=39.019µs +ts=2025-05-22T09:52:47Z caller=logging.go:85 method=Health result=2 took=38.789µs +ts=2025-05-22T09:52:47Z caller=logging.go:85 method=Health result=2 took=11.17µs +ts=2025-05-22T09:52:50Z caller=logging.go:85 method=Health result=2 took=41.149µs +ts=2025-05-22T09:52:50Z caller=logging.go:85 method=Health result=2 took=42.029µs +ts=2025-05-22T09:52:53Z caller=logging.go:85 method=Health result=2 took=30.99µs +ts=2025-05-22T09:52:53Z caller=logging.go:85 method=Health result=2 took=30.94µs +ts=2025-05-22T09:52:56Z caller=logging.go:85 method=Health result=2 took=29.709µs +ts=2025-05-22T09:52:56Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T09:52:59Z caller=logging.go:85 method=Health result=2 took=41.489µs +ts=2025-05-22T09:52:59Z caller=logging.go:85 method=Health result=2 took=46.629µs +ts=2025-05-22T09:53:02Z caller=logging.go:85 method=Health result=2 took=44.848µs +ts=2025-05-22T09:53:02Z caller=logging.go:85 method=Health result=2 took=49.569µs +ts=2025-05-22T09:53:05Z caller=logging.go:85 method=Health result=2 took=43.159µs +ts=2025-05-22T09:53:05Z caller=logging.go:85 method=Health result=2 took=27.399µs +ts=2025-05-22T09:53:08Z caller=logging.go:85 method=Health result=2 took=37.679µs +ts=2025-05-22T09:53:08Z caller=logging.go:85 method=Health result=2 took=38.109µs +ts=2025-05-22T09:53:11Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T09:53:11Z caller=logging.go:85 method=Health result=2 took=42.529µs +ts=2025-05-22T09:53:14Z caller=logging.go:85 method=Health result=2 took=29.14µs +ts=2025-05-22T09:53:14Z caller=logging.go:85 method=Health result=2 took=46.778µs +ts=2025-05-22T09:53:17Z caller=logging.go:85 method=Health result=2 took=36.379µs +ts=2025-05-22T09:53:17Z caller=logging.go:85 method=Health result=2 took=36.249µs +ts=2025-05-22T09:53:20Z caller=logging.go:85 method=Health result=2 took=37.999µs +ts=2025-05-22T09:53:20Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T09:53:23Z caller=logging.go:85 method=Health result=2 took=44.219µs +ts=2025-05-22T09:53:23Z caller=logging.go:85 method=Health result=2 took=43.589µs +ts=2025-05-22T09:53:26Z caller=logging.go:85 method=Health result=2 took=44.439µs +ts=2025-05-22T09:53:26Z caller=logging.go:85 method=Health result=2 took=38.77µs +ts=2025-05-22T09:53:29Z caller=logging.go:85 method=Health result=2 took=30.07µs +ts=2025-05-22T09:53:29Z caller=logging.go:85 method=Health result=2 took=30.11µs +ts=2025-05-22T09:53:32Z caller=logging.go:85 method=Health result=2 took=59.728µs +ts=2025-05-22T09:53:32Z caller=logging.go:85 method=Health result=2 took=59.648µs +ts=2025-05-22T09:53:35Z caller=logging.go:85 method=Health result=2 took=60.979µs +ts=2025-05-22T09:53:35Z caller=logging.go:85 method=Health result=2 took=56.889µs +ts=2025-05-22T09:53:38Z caller=logging.go:85 method=Health result=2 took=60.799µs +ts=2025-05-22T09:53:38Z caller=logging.go:85 method=Health result=2 took=42.859µs +ts=2025-05-22T09:53:41Z caller=logging.go:85 method=Health result=2 took=41.939µs +ts=2025-05-22T09:53:41Z caller=logging.go:85 method=Health result=2 took=50.889µs +ts=2025-05-22T09:53:44Z caller=logging.go:85 method=Health result=2 took=49.829µs +ts=2025-05-22T09:53:44Z caller=logging.go:85 method=Health result=2 took=28.63µs +ts=2025-05-22T09:53:47Z caller=logging.go:85 method=Health result=2 took=50.459µs +ts=2025-05-22T09:53:47Z caller=logging.go:85 method=Health result=2 took=27.129µs +ts=2025-05-22T09:53:50Z caller=logging.go:85 method=Health result=2 took=41.149µs +ts=2025-05-22T09:53:50Z caller=logging.go:85 method=Health result=2 took=42.609µs +ts=2025-05-22T09:53:53Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T09:53:53Z caller=logging.go:85 method=Health result=2 took=44.999µs +ts=2025-05-22T09:53:56Z caller=logging.go:85 method=Health result=2 took=31.699µs +ts=2025-05-22T09:53:56Z caller=logging.go:85 method=Health result=2 took=15.429µs +ts=2025-05-22T09:53:59Z caller=logging.go:85 method=Health result=2 took=45.819µs +ts=2025-05-22T09:53:59Z caller=logging.go:85 method=Health result=2 took=50.129µs +ts=2025-05-22T09:54:02Z caller=logging.go:85 method=Health result=2 took=39.329µs +ts=2025-05-22T09:54:02Z caller=logging.go:85 method=Health result=2 took=37.939µs +ts=2025-05-22T09:54:05Z caller=logging.go:85 method=Health result=2 took=35.659µs +ts=2025-05-22T09:54:05Z caller=logging.go:85 method=Health result=2 took=41.269µs +ts=2025-05-22T09:54:08Z caller=logging.go:85 method=Health result=2 took=36.909µs +ts=2025-05-22T09:54:08Z caller=logging.go:85 method=Health result=2 took=41.269µs +ts=2025-05-22T09:54:11Z caller=logging.go:85 method=Health result=2 took=52.159µs +ts=2025-05-22T09:54:11Z caller=logging.go:85 method=Health result=2 took=45.939µs +ts=2025-05-22T09:54:14Z caller=logging.go:85 method=Health result=2 took=37.189µs +ts=2025-05-22T09:54:14Z caller=logging.go:85 method=Health result=2 took=37.359µs +ts=2025-05-22T09:54:17Z caller=logging.go:85 method=Health result=2 took=60.328µs +ts=2025-05-22T09:54:17Z caller=logging.go:85 method=Health result=2 took=62.049µs +ts=2025-05-22T09:54:20Z caller=logging.go:85 method=Health result=2 took=39.599µs +ts=2025-05-22T09:54:20Z caller=logging.go:85 method=Health result=2 took=48.249µs +ts=2025-05-22T09:54:23Z caller=logging.go:85 method=Health result=2 took=42.379µs +ts=2025-05-22T09:54:23Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T09:54:26Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T09:54:26Z caller=logging.go:85 method=Health result=2 took=40.239µs +ts=2025-05-22T09:54:29Z caller=logging.go:85 method=Health result=2 took=38.029µs +ts=2025-05-22T09:54:29Z caller=logging.go:85 method=Health result=2 took=45.149µs +ts=2025-05-22T09:54:32Z caller=logging.go:85 method=Health result=2 took=36.479µs +ts=2025-05-22T09:54:32Z caller=logging.go:85 method=Health result=2 took=35.889µs +ts=2025-05-22T09:54:35Z caller=logging.go:85 method=Health result=2 took=44.189µs +ts=2025-05-22T09:54:35Z caller=logging.go:85 method=Health result=2 took=42.999µs +ts=2025-05-22T09:54:38Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T09:54:38Z caller=logging.go:85 method=Health result=2 took=23.89µs +ts=2025-05-22T09:54:41Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T09:54:41Z caller=logging.go:85 method=Health result=2 took=41.889µs +ts=2025-05-22T09:54:44Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T09:54:44Z caller=logging.go:85 method=Health result=2 took=40.779µs +ts=2025-05-22T09:54:47Z caller=logging.go:85 method=Health result=2 took=37.049µs +ts=2025-05-22T09:54:47Z caller=logging.go:85 method=Health result=2 took=37.499µs +ts=2025-05-22T09:54:50Z caller=logging.go:85 method=Health result=2 took=38.299µs +ts=2025-05-22T09:54:50Z caller=logging.go:85 method=Health result=2 took=40.359µs +ts=2025-05-22T09:54:53Z caller=logging.go:85 method=Health result=2 took=32.529µs +ts=2025-05-22T09:54:53Z caller=logging.go:85 method=Health result=2 took=53.378µs +ts=2025-05-22T09:54:56Z caller=logging.go:85 method=Health result=2 took=41.049µs +ts=2025-05-22T09:54:56Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T09:54:59Z caller=logging.go:85 method=Health result=2 took=46.039µs +ts=2025-05-22T09:54:59Z caller=logging.go:85 method=Health result=2 took=91.158µs +ts=2025-05-22T09:55:02Z caller=logging.go:85 method=Health result=2 took=33.48µs +ts=2025-05-22T09:55:02Z caller=logging.go:85 method=Health result=2 took=35.61µs +ts=2025-05-22T09:55:05Z caller=logging.go:85 method=Health result=2 took=29.04µs +ts=2025-05-22T09:55:05Z caller=logging.go:85 method=Health result=2 took=13.269µs +ts=2025-05-22T09:55:08Z caller=logging.go:85 method=Health result=2 took=38.359µs +ts=2025-05-22T09:55:08Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T09:55:11Z caller=logging.go:85 method=Health result=2 took=39.729µs +ts=2025-05-22T09:55:11Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T09:55:14Z caller=logging.go:85 method=Health result=2 took=38.49µs +ts=2025-05-22T09:55:14Z caller=logging.go:85 method=Health result=2 took=29.709µs +ts=2025-05-22T09:55:17Z caller=logging.go:85 method=Health result=2 took=39.029µs +ts=2025-05-22T09:55:17Z caller=logging.go:85 method=Health result=2 took=42.859µs +ts=2025-05-22T09:55:20Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T09:55:20Z caller=logging.go:85 method=Health result=2 took=32.779µs +ts=2025-05-22T09:55:23Z caller=logging.go:85 method=Health result=2 took=43.119µs +ts=2025-05-22T09:55:23Z caller=logging.go:85 method=Health result=2 took=37.959µs +ts=2025-05-22T09:55:26Z caller=logging.go:85 method=Health result=2 took=44.489µs +ts=2025-05-22T09:55:26Z caller=logging.go:85 method=Health result=2 took=61.788µs +ts=2025-05-22T09:55:29Z caller=logging.go:85 method=Health result=2 took=29.609µs +ts=2025-05-22T09:55:29Z caller=logging.go:85 method=Health result=2 took=41.539µs +ts=2025-05-22T09:55:32Z caller=logging.go:85 method=Health result=2 took=40.909µs +ts=2025-05-22T09:55:32Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T09:55:35Z caller=logging.go:85 method=Health result=2 took=33.409µs +ts=2025-05-22T09:55:35Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T09:55:38Z caller=logging.go:85 method=Health result=2 took=42.339µs +ts=2025-05-22T09:55:38Z caller=logging.go:85 method=Health result=2 took=27.839µs +ts=2025-05-22T09:55:41Z caller=logging.go:85 method=Health result=2 took=32.079µs +ts=2025-05-22T09:55:41Z caller=logging.go:85 method=Health result=2 took=41.269µs +ts=2025-05-22T09:55:44Z caller=logging.go:85 method=Health result=2 took=42.389µs +ts=2025-05-22T09:55:44Z caller=logging.go:85 method=Health result=2 took=48.409µs +ts=2025-05-22T09:55:47Z caller=logging.go:85 method=Health result=2 took=32.599µs +ts=2025-05-22T09:55:47Z caller=logging.go:85 method=Health result=2 took=46.329µs +ts=2025-05-22T09:55:50Z caller=logging.go:85 method=Health result=2 took=31.179µs +ts=2025-05-22T09:55:50Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T09:55:53Z caller=logging.go:85 method=Health result=2 took=48.488µs +ts=2025-05-22T09:55:53Z caller=logging.go:85 method=Health result=2 took=15.009µs +ts=2025-05-22T09:55:56Z caller=logging.go:85 method=Health result=2 took=40.939µs +ts=2025-05-22T09:55:56Z caller=logging.go:85 method=Health result=2 took=20.24µs +ts=2025-05-22T09:55:59Z caller=logging.go:85 method=Health result=2 took=35.329µs +ts=2025-05-22T09:55:59Z caller=logging.go:85 method=Health result=2 took=32.849µs +ts=2025-05-22T09:56:02Z caller=logging.go:85 method=Health result=2 took=30.59µs +ts=2025-05-22T09:56:02Z caller=logging.go:85 method=Health result=2 took=33.939µs +ts=2025-05-22T09:56:05Z caller=logging.go:85 method=Health result=2 took=32.929µs +ts=2025-05-22T09:56:05Z caller=logging.go:85 method=Health result=2 took=59.079µs +ts=2025-05-22T09:56:08Z caller=logging.go:85 method=Health result=2 took=33.189µs +ts=2025-05-22T09:56:08Z caller=logging.go:85 method=Health result=2 took=45.059µs +ts=2025-05-22T09:56:11Z caller=logging.go:85 method=Health result=2 took=40.469µs +ts=2025-05-22T09:56:11Z caller=logging.go:85 method=Health result=2 took=46.859µs +ts=2025-05-22T09:56:14Z caller=logging.go:85 method=Health result=2 took=30.739µs +ts=2025-05-22T09:56:14Z caller=logging.go:85 method=Health result=2 took=12.469µs +ts=2025-05-22T09:56:17Z caller=logging.go:85 method=Health result=2 took=31.169µs +ts=2025-05-22T09:56:17Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T09:56:20Z caller=logging.go:85 method=Health result=2 took=32.379µs +ts=2025-05-22T09:56:20Z caller=logging.go:85 method=Health result=2 took=19.099µs +ts=2025-05-22T09:56:23Z caller=logging.go:85 method=Health result=2 took=36.06µs +ts=2025-05-22T09:56:23Z caller=logging.go:85 method=Health result=2 took=36.04µs +ts=2025-05-22T09:56:26Z caller=logging.go:85 method=Health result=2 took=46.619µs +ts=2025-05-22T09:56:26Z caller=logging.go:85 method=Health result=2 took=52.439µs +ts=2025-05-22T09:56:29Z caller=logging.go:85 method=Health result=2 took=41.979µs +ts=2025-05-22T09:56:29Z caller=logging.go:85 method=Health result=2 took=47.639µs +ts=2025-05-22T09:56:32Z caller=logging.go:85 method=Health result=2 took=38.949µs +ts=2025-05-22T09:56:32Z caller=logging.go:85 method=Health result=2 took=41.999µs +ts=2025-05-22T09:56:35Z caller=logging.go:85 method=Health result=2 took=39.809µs +ts=2025-05-22T09:56:35Z caller=logging.go:85 method=Health result=2 took=40.249µs +ts=2025-05-22T09:56:38Z caller=logging.go:85 method=Health result=2 took=30.719µs +ts=2025-05-22T09:56:38Z caller=logging.go:85 method=Health result=2 took=34.619µs +ts=2025-05-22T09:56:41Z caller=logging.go:85 method=Health result=2 took=39.839µs +ts=2025-05-22T09:56:41Z caller=logging.go:85 method=Health result=2 took=58.738µs +ts=2025-05-22T09:56:44Z caller=logging.go:85 method=Health result=2 took=36.04µs +ts=2025-05-22T09:56:44Z caller=logging.go:85 method=Health result=2 took=33.809µs +ts=2025-05-22T09:56:47Z caller=logging.go:85 method=Health result=2 took=39.529µs +ts=2025-05-22T09:56:47Z caller=logging.go:85 method=Health result=2 took=39.289µs +ts=2025-05-22T09:56:50Z caller=logging.go:85 method=Health result=2 took=56.828µs +ts=2025-05-22T09:56:50Z caller=logging.go:85 method=Health result=2 took=53.489µs +ts=2025-05-22T09:56:53Z caller=logging.go:85 method=Health result=2 took=35.869µs +ts=2025-05-22T09:56:53Z caller=logging.go:85 method=Health result=2 took=50.249µs +ts=2025-05-22T09:56:56Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T09:56:56Z caller=logging.go:85 method=Health result=2 took=38.619µs +ts=2025-05-22T09:56:59Z caller=logging.go:85 method=Health result=2 took=41.489µs +ts=2025-05-22T09:56:59Z caller=logging.go:85 method=Health result=2 took=36.59µs +ts=2025-05-22T09:57:02Z caller=logging.go:85 method=Health result=2 took=42.439µs +ts=2025-05-22T09:57:02Z caller=logging.go:85 method=Health result=2 took=40.779µs +ts=2025-05-22T09:57:05Z caller=logging.go:85 method=Health result=2 took=39.829µs +ts=2025-05-22T09:57:05Z caller=logging.go:85 method=Health result=2 took=39.849µs +ts=2025-05-22T09:57:08Z caller=logging.go:85 method=Health result=2 took=36.129µs +ts=2025-05-22T09:57:08Z caller=logging.go:85 method=Health result=2 took=36.099µs +ts=2025-05-22T09:57:11Z caller=logging.go:85 method=Health result=2 took=39.049µs +ts=2025-05-22T09:57:11Z caller=logging.go:85 method=Health result=2 took=39.069µs +ts=2025-05-22T09:57:14Z caller=logging.go:85 method=Health result=2 took=51.858µs +ts=2025-05-22T09:57:14Z caller=logging.go:85 method=Health result=2 took=15.12µs +ts=2025-05-22T09:57:17Z caller=logging.go:85 method=Health result=2 took=31.83µs +ts=2025-05-22T09:57:17Z caller=logging.go:85 method=Health result=2 took=10.32µs +ts=2025-05-22T09:57:20Z caller=logging.go:85 method=Health result=2 took=45.869µs +ts=2025-05-22T09:57:20Z caller=logging.go:85 method=Health result=2 took=28.68µs +ts=2025-05-22T09:57:23Z caller=logging.go:85 method=Health result=2 took=28.559µs +ts=2025-05-22T09:57:23Z caller=logging.go:85 method=Health result=2 took=13.74µs +ts=2025-05-22T09:57:26Z caller=logging.go:85 method=Health result=2 took=30.339µs +ts=2025-05-22T09:57:26Z caller=logging.go:85 method=Health result=2 took=30.159µs +ts=2025-05-22T09:57:29Z caller=logging.go:85 method=Health result=2 took=41.589µs +ts=2025-05-22T09:57:29Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T09:57:32Z caller=logging.go:85 method=Health result=2 took=47.289µs +ts=2025-05-22T09:57:32Z caller=logging.go:85 method=Health result=2 took=41.709µs +ts=2025-05-22T09:57:35Z caller=logging.go:85 method=Health result=2 took=32.639µs +ts=2025-05-22T09:57:35Z caller=logging.go:85 method=Health result=2 took=33.219µs +ts=2025-05-22T09:57:38Z caller=logging.go:85 method=Health result=2 took=40.829µs +ts=2025-05-22T09:57:38Z caller=logging.go:85 method=Health result=2 took=41.339µs +ts=2025-05-22T09:57:41Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T09:57:41Z caller=logging.go:85 method=Health result=2 took=47.229µs +ts=2025-05-22T09:57:44Z caller=logging.go:85 method=Health result=2 took=46.309µs +ts=2025-05-22T09:57:44Z caller=logging.go:85 method=Health result=2 took=45.139µs +ts=2025-05-22T09:57:47Z caller=logging.go:85 method=Health result=2 took=39.679µs +ts=2025-05-22T09:57:47Z caller=logging.go:85 method=Health result=2 took=39.169µs +ts=2025-05-22T09:57:50Z caller=logging.go:85 method=Health result=2 took=43.718µs +ts=2025-05-22T09:57:50Z caller=logging.go:85 method=Health result=2 took=44.489µs +ts=2025-05-22T09:57:53Z caller=logging.go:85 method=Health result=2 took=39.76µs +ts=2025-05-22T09:57:53Z caller=logging.go:85 method=Health result=2 took=39.91µs +ts=2025-05-22T09:57:56Z caller=logging.go:85 method=Health result=2 took=29.83µs +ts=2025-05-22T09:57:56Z caller=logging.go:85 method=Health result=2 took=51.099µs +ts=2025-05-22T09:57:59Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T09:57:59Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T09:58:02Z caller=logging.go:85 method=Health result=2 took=37.239µs +ts=2025-05-22T09:58:02Z caller=logging.go:85 method=Health result=2 took=26.849µs +ts=2025-05-22T09:58:05Z caller=logging.go:85 method=Health result=2 took=37.529µs +ts=2025-05-22T09:58:05Z caller=logging.go:85 method=Health result=2 took=39.729µs +ts=2025-05-22T09:58:08Z caller=logging.go:85 method=Health result=2 took=39.389µs +ts=2025-05-22T09:58:08Z caller=logging.go:85 method=Health result=2 took=39.469µs +ts=2025-05-22T09:58:11Z caller=logging.go:85 method=Health result=2 took=35.819µs +ts=2025-05-22T09:58:11Z caller=logging.go:85 method=Health result=2 took=35.539µs +ts=2025-05-22T09:58:14Z caller=logging.go:85 method=Health result=2 took=43.778µs +ts=2025-05-22T09:58:14Z caller=logging.go:85 method=Health result=2 took=44.578µs +ts=2025-05-22T09:58:17Z caller=logging.go:85 method=Health result=2 took=67.598µs +ts=2025-05-22T09:58:17Z caller=logging.go:85 method=Health result=2 took=895.649µs +ts=2025-05-22T09:58:20Z caller=logging.go:85 method=Health result=2 took=43.079µs +ts=2025-05-22T09:58:20Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T09:58:23Z caller=logging.go:85 method=Health result=2 took=38.949µs +ts=2025-05-22T09:58:23Z caller=logging.go:85 method=Health result=2 took=38.959µs +ts=2025-05-22T09:58:26Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T09:58:26Z caller=logging.go:85 method=Health result=2 took=24.649µs +ts=2025-05-22T09:58:29Z caller=logging.go:85 method=Health result=2 took=37.919µs +ts=2025-05-22T09:58:29Z caller=logging.go:85 method=Health result=2 took=36.139µs +ts=2025-05-22T09:58:32Z caller=logging.go:85 method=Health result=2 took=39.599µs +ts=2025-05-22T09:58:32Z caller=logging.go:85 method=Health result=2 took=40.269µs +ts=2025-05-22T09:58:35Z caller=logging.go:85 method=Health result=2 took=49.219µs +ts=2025-05-22T09:58:35Z caller=logging.go:85 method=Health result=2 took=50.748µs +ts=2025-05-22T09:58:38Z caller=logging.go:85 method=Health result=2 took=29.709µs +ts=2025-05-22T09:58:38Z caller=logging.go:85 method=Health result=2 took=29.759µs +ts=2025-05-22T09:58:41Z caller=logging.go:85 method=Health result=2 took=32.389µs +ts=2025-05-22T09:58:41Z caller=logging.go:85 method=Health result=2 took=35.16µs +ts=2025-05-22T09:58:44Z caller=logging.go:85 method=Health result=2 took=42.709µs +ts=2025-05-22T09:58:44Z caller=logging.go:85 method=Health result=2 took=50.129µs +ts=2025-05-22T09:58:47Z caller=logging.go:85 method=Health result=2 took=37.21µs +ts=2025-05-22T09:58:47Z caller=logging.go:85 method=Health result=2 took=60.729µs +ts=2025-05-22T09:58:50Z caller=logging.go:85 method=Health result=2 took=36.059µs +ts=2025-05-22T09:58:50Z caller=logging.go:85 method=Health result=2 took=34.669µs +ts=2025-05-22T09:58:53Z caller=logging.go:85 method=Health result=2 took=29.02µs +ts=2025-05-22T09:58:53Z caller=logging.go:85 method=Health result=2 took=16.53µs +ts=2025-05-22T09:58:56Z caller=logging.go:85 method=Health result=2 took=41.709µs +ts=2025-05-22T09:58:56Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T09:58:59Z caller=logging.go:85 method=Health result=2 took=45.699µs +ts=2025-05-22T09:58:59Z caller=logging.go:85 method=Health result=2 took=45.249µs +ts=2025-05-22T09:59:02Z caller=logging.go:85 method=Health result=2 took=42.389µs +ts=2025-05-22T09:59:02Z caller=logging.go:85 method=Health result=2 took=41.849µs +ts=2025-05-22T09:59:05Z caller=logging.go:85 method=Health result=2 took=31.199µs +ts=2025-05-22T09:59:05Z caller=logging.go:85 method=Health result=2 took=16.849µs +ts=2025-05-22T09:59:08Z caller=logging.go:85 method=Health result=2 took=31.529µs +ts=2025-05-22T09:59:08Z caller=logging.go:85 method=Health result=2 took=33.379µs +ts=2025-05-22T09:59:11Z caller=logging.go:85 method=Health result=2 took=32.119µs +ts=2025-05-22T09:59:11Z caller=logging.go:85 method=Health result=2 took=33.949µs +ts=2025-05-22T09:59:14Z caller=logging.go:85 method=Health result=2 took=30.989µs +ts=2025-05-22T09:59:14Z caller=logging.go:85 method=Health result=2 took=56.038µs +ts=2025-05-22T09:59:17Z caller=logging.go:85 method=Health result=2 took=42.149µs +ts=2025-05-22T09:59:17Z caller=logging.go:85 method=Health result=2 took=24.399µs +ts=2025-05-22T09:59:20Z caller=logging.go:85 method=Health result=2 took=28.419µs +ts=2025-05-22T09:59:20Z caller=logging.go:85 method=Health result=2 took=28.459µs +ts=2025-05-22T09:59:23Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T09:59:23Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T09:59:26Z caller=logging.go:85 method=Health result=2 took=38.059µs +ts=2025-05-22T09:59:26Z caller=logging.go:85 method=Health result=2 took=43.498µs +ts=2025-05-22T09:59:29Z caller=logging.go:85 method=Health result=2 took=43.489µs +ts=2025-05-22T09:59:29Z caller=logging.go:85 method=Health result=2 took=46.728µs +ts=2025-05-22T09:59:32Z caller=logging.go:85 method=Health result=2 took=39.539µs +ts=2025-05-22T09:59:32Z caller=logging.go:85 method=Health result=2 took=25.389µs +ts=2025-05-22T09:59:35Z caller=logging.go:85 method=Health result=2 took=40.039µs +ts=2025-05-22T09:59:35Z caller=logging.go:85 method=Health result=2 took=39.099µs +ts=2025-05-22T09:59:38Z caller=logging.go:85 method=Health result=2 took=37.31µs +ts=2025-05-22T09:59:38Z caller=logging.go:85 method=Health result=2 took=37.09µs +ts=2025-05-22T09:59:41Z caller=logging.go:85 method=Health result=2 took=42.139µs +ts=2025-05-22T09:59:41Z caller=logging.go:85 method=Health result=2 took=17.81µs +ts=2025-05-22T09:59:44Z caller=logging.go:85 method=Health result=2 took=43.468µs +ts=2025-05-22T09:59:44Z caller=logging.go:85 method=Health result=2 took=29.729µs +ts=2025-05-22T09:59:47Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T09:59:47Z caller=logging.go:85 method=Health result=2 took=49.038µs +ts=2025-05-22T09:59:50Z caller=logging.go:85 method=Health result=2 took=37.919µs +ts=2025-05-22T09:59:50Z caller=logging.go:85 method=Health result=2 took=45.369µs +ts=2025-05-22T09:59:53Z caller=logging.go:85 method=Health result=2 took=29.32µs +ts=2025-05-22T09:59:53Z caller=logging.go:85 method=Health result=2 took=29.38µs +ts=2025-05-22T09:59:56Z caller=logging.go:85 method=Health result=2 took=29.18µs +ts=2025-05-22T09:59:56Z caller=logging.go:85 method=Health result=2 took=28.84µs +ts=2025-05-22T09:59:59Z caller=logging.go:85 method=Health result=2 took=31.129µs +ts=2025-05-22T09:59:59Z caller=logging.go:85 method=Health result=2 took=15.45µs +ts=2025-05-22T10:00:02Z caller=logging.go:85 method=Health result=2 took=31.959µs +ts=2025-05-22T10:00:02Z caller=logging.go:85 method=Health result=2 took=44.719µs +ts=2025-05-22T10:00:05Z caller=logging.go:85 method=Health result=2 took=38.119µs +ts=2025-05-22T10:00:05Z caller=logging.go:85 method=Health result=2 took=23.2µs +ts=2025-05-22T10:00:08Z caller=logging.go:85 method=Health result=2 took=53.309µs +ts=2025-05-22T10:00:08Z caller=logging.go:85 method=Health result=2 took=53.749µs +ts=2025-05-22T10:00:11Z caller=logging.go:85 method=Health result=2 took=41.109µs +ts=2025-05-22T10:00:11Z caller=logging.go:85 method=Health result=2 took=27.269µs +ts=2025-05-22T10:00:14Z caller=logging.go:85 method=Health result=2 took=32.509µs +ts=2025-05-22T10:00:14Z caller=logging.go:85 method=Health result=2 took=12.78µs +ts=2025-05-22T10:00:17Z caller=logging.go:85 method=Health result=2 took=30.099µs +ts=2025-05-22T10:00:17Z caller=logging.go:85 method=Health result=2 took=29.769µs +ts=2025-05-22T10:00:20Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T10:00:20Z caller=logging.go:85 method=Health result=2 took=44.519µs +ts=2025-05-22T10:00:23Z caller=logging.go:85 method=Health result=2 took=39.86µs +ts=2025-05-22T10:00:23Z caller=logging.go:85 method=Health result=2 took=29.83µs +ts=2025-05-22T10:00:26Z caller=logging.go:85 method=Health result=2 took=36.209µs +ts=2025-05-22T10:00:26Z caller=logging.go:85 method=Health result=2 took=34.789µs +ts=2025-05-22T10:00:29Z caller=logging.go:85 method=Health result=2 took=40.889µs +ts=2025-05-22T10:00:29Z caller=logging.go:85 method=Health result=2 took=46.329µs +ts=2025-05-22T10:00:32Z caller=logging.go:85 method=Health result=2 took=38.829µs +ts=2025-05-22T10:00:32Z caller=logging.go:85 method=Health result=2 took=37.839µs +ts=2025-05-22T10:00:35Z caller=logging.go:85 method=Health result=2 took=28.859µs +ts=2025-05-22T10:00:35Z caller=logging.go:85 method=Health result=2 took=28.839µs +ts=2025-05-22T10:00:38Z caller=logging.go:85 method=Health result=2 took=39.809µs +ts=2025-05-22T10:00:38Z caller=logging.go:85 method=Health result=2 took=23.64µs +ts=2025-05-22T10:00:41Z caller=logging.go:85 method=Health result=2 took=36.019µs +ts=2025-05-22T10:00:41Z caller=logging.go:85 method=Health result=2 took=36.029µs +ts=2025-05-22T10:00:44Z caller=logging.go:85 method=Health result=2 took=29.009µs +ts=2025-05-22T10:00:44Z caller=logging.go:85 method=Health result=2 took=205.555µs +ts=2025-05-22T10:00:47Z caller=logging.go:85 method=Health result=2 took=31.749µs +ts=2025-05-22T10:00:47Z caller=logging.go:85 method=Health result=2 took=28.699µs +ts=2025-05-22T10:00:50Z caller=logging.go:85 method=Health result=2 took=34.209µs +ts=2025-05-22T10:00:50Z caller=logging.go:85 method=Health result=2 took=44.999µs +ts=2025-05-22T10:00:53Z caller=logging.go:85 method=Health result=2 took=31.269µs +ts=2025-05-22T10:00:53Z caller=logging.go:85 method=Health result=2 took=34.109µs +ts=2025-05-22T10:00:56Z caller=logging.go:85 method=Health result=2 took=28.51µs +ts=2025-05-22T10:00:56Z caller=logging.go:85 method=Health result=2 took=44.289µs +ts=2025-05-22T10:00:59Z caller=logging.go:85 method=Health result=2 took=32.649µs +ts=2025-05-22T10:00:59Z caller=logging.go:85 method=Health result=2 took=14.659µs +ts=2025-05-22T10:01:02Z caller=logging.go:85 method=Health result=2 took=41.189µs +ts=2025-05-22T10:01:02Z caller=logging.go:85 method=Health result=2 took=37.169µs +ts=2025-05-22T10:01:05Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T10:01:05Z caller=logging.go:85 method=Health result=2 took=29.89µs +ts=2025-05-22T10:01:08Z caller=logging.go:85 method=Health result=2 took=32.329µs +ts=2025-05-22T10:01:08Z caller=logging.go:85 method=Health result=2 took=45.429µs +ts=2025-05-22T10:01:11Z caller=logging.go:85 method=Health result=2 took=41.149µs +ts=2025-05-22T10:01:11Z caller=logging.go:85 method=Health result=2 took=40.089µs +ts=2025-05-22T10:01:14Z caller=logging.go:85 method=Health result=2 took=14.64µs +ts=2025-05-22T10:01:14Z caller=logging.go:85 method=Health result=2 took=28.709µs +ts=2025-05-22T10:01:17Z caller=logging.go:85 method=Health result=2 took=28.51µs +ts=2025-05-22T10:01:17Z caller=logging.go:85 method=Health result=2 took=10.59µs +ts=2025-05-22T10:01:20Z caller=logging.go:85 method=Health result=2 took=36.259µs +ts=2025-05-22T10:01:20Z caller=logging.go:85 method=Health result=2 took=36.329µs +ts=2025-05-22T10:01:23Z caller=logging.go:85 method=Health result=2 took=35.399µs +ts=2025-05-22T10:01:23Z caller=logging.go:85 method=Health result=2 took=35.999µs +ts=2025-05-22T10:01:26Z caller=logging.go:85 method=Health result=2 took=28.409µs +ts=2025-05-22T10:01:26Z caller=logging.go:85 method=Health result=2 took=28.399µs +ts=2025-05-22T10:01:29Z caller=logging.go:85 method=Health result=2 took=61.788µs +ts=2025-05-22T10:01:29Z caller=logging.go:85 method=Health result=2 took=28.56µs +ts=2025-05-22T10:01:32Z caller=logging.go:85 method=Health result=2 took=44.899µs +ts=2025-05-22T10:01:32Z caller=logging.go:85 method=Health result=2 took=44.609µs +ts=2025-05-22T10:01:35Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T10:01:35Z caller=logging.go:85 method=Health result=2 took=15.88µs +ts=2025-05-22T10:01:38Z caller=logging.go:85 method=Health result=2 took=40.099µs +ts=2025-05-22T10:01:38Z caller=logging.go:85 method=Health result=2 took=17.799µs +ts=2025-05-22T10:01:41Z caller=logging.go:85 method=Health result=2 took=45.779µs +ts=2025-05-22T10:01:41Z caller=logging.go:85 method=Health result=2 took=49.619µs +ts=2025-05-22T10:01:44Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T10:01:44Z caller=logging.go:85 method=Health result=2 took=27.709µs +ts=2025-05-22T10:01:47Z caller=logging.go:85 method=Health result=2 took=39.84µs +ts=2025-05-22T10:01:47Z caller=logging.go:85 method=Health result=2 took=27.519µs +ts=2025-05-22T10:01:50Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T10:01:50Z caller=logging.go:85 method=Health result=2 took=64.468µs +ts=2025-05-22T10:01:53Z caller=logging.go:85 method=Health result=2 took=29.389µs +ts=2025-05-22T10:01:53Z caller=logging.go:85 method=Health result=2 took=29.389µs +ts=2025-05-22T10:01:56Z caller=logging.go:85 method=Health result=2 took=31.859µs +ts=2025-05-22T10:01:56Z caller=logging.go:85 method=Health result=2 took=44.809µs +ts=2025-05-22T10:01:59Z caller=logging.go:85 method=Health result=2 took=39.869µs +ts=2025-05-22T10:01:59Z caller=logging.go:85 method=Health result=2 took=40.339µs +ts=2025-05-22T10:02:02Z caller=logging.go:85 method=Health result=2 took=44.539µs +ts=2025-05-22T10:02:02Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T10:02:05Z caller=logging.go:85 method=Health result=2 took=36.489µs +ts=2025-05-22T10:02:05Z caller=logging.go:85 method=Health result=2 took=39.759µs +ts=2025-05-22T10:02:08Z caller=logging.go:85 method=Health result=2 took=32.639µs +ts=2025-05-22T10:02:08Z caller=logging.go:85 method=Health result=2 took=43.408µs +ts=2025-05-22T10:02:11Z caller=logging.go:85 method=Health result=2 took=38.019µs +ts=2025-05-22T10:02:11Z caller=logging.go:85 method=Health result=2 took=57.029µs +ts=2025-05-22T10:02:14Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T10:02:14Z caller=logging.go:85 method=Health result=2 took=30.629µs +ts=2025-05-22T10:02:17Z caller=logging.go:85 method=Health result=2 took=149.486µs +ts=2025-05-22T10:02:17Z caller=logging.go:85 method=Health result=2 took=44.599µs +ts=2025-05-22T10:02:20Z caller=logging.go:85 method=Health result=2 took=38.199µs +ts=2025-05-22T10:02:20Z caller=logging.go:85 method=Health result=2 took=46.409µs +ts=2025-05-22T10:02:23Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T10:02:23Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T10:02:26Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T10:02:26Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T10:02:29Z caller=logging.go:85 method=Health result=2 took=32.689µs +ts=2025-05-22T10:02:29Z caller=logging.go:85 method=Health result=2 took=44.849µs +ts=2025-05-22T10:02:32Z caller=logging.go:85 method=Health result=2 took=32.709µs +ts=2025-05-22T10:02:32Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T10:02:35Z caller=logging.go:85 method=Health result=2 took=42.749µs +ts=2025-05-22T10:02:35Z caller=logging.go:85 method=Health result=2 took=47.879µs +ts=2025-05-22T10:02:38Z caller=logging.go:85 method=Health result=2 took=36.009µs +ts=2025-05-22T10:02:38Z caller=logging.go:85 method=Health result=2 took=27.259µs +ts=2025-05-22T10:02:41Z caller=logging.go:85 method=Health result=2 took=28.49µs +ts=2025-05-22T10:02:41Z caller=logging.go:85 method=Health result=2 took=35.959µs +ts=2025-05-22T10:02:44Z caller=logging.go:85 method=Health result=2 took=40.559µs +ts=2025-05-22T10:02:44Z caller=logging.go:85 method=Health result=2 took=40.519µs +ts=2025-05-22T10:02:47Z caller=logging.go:85 method=Health result=2 took=38.72µs +ts=2025-05-22T10:02:47Z caller=logging.go:85 method=Health result=2 took=35.469µs +ts=2025-05-22T10:02:50Z caller=logging.go:85 method=Health result=2 took=33.85µs +ts=2025-05-22T10:02:50Z caller=logging.go:85 method=Health result=2 took=33.69µs +ts=2025-05-22T10:02:53Z caller=logging.go:85 method=Health result=2 took=40.279µs +ts=2025-05-22T10:02:53Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T10:02:56Z caller=logging.go:85 method=Health result=2 took=36.659µs +ts=2025-05-22T10:02:56Z caller=logging.go:85 method=Health result=2 took=36.219µs +ts=2025-05-22T10:02:59Z caller=logging.go:85 method=Health result=2 took=45.949µs +ts=2025-05-22T10:02:59Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T10:03:02Z caller=logging.go:85 method=Health result=2 took=52.689µs +ts=2025-05-22T10:03:02Z caller=logging.go:85 method=Health result=2 took=52.629µs +ts=2025-05-22T10:03:05Z caller=logging.go:85 method=Health result=2 took=37.35µs +ts=2025-05-22T10:03:05Z caller=logging.go:85 method=Health result=2 took=37.05µs +ts=2025-05-22T10:03:08Z caller=logging.go:85 method=Health result=2 took=46.479µs +ts=2025-05-22T10:03:08Z caller=logging.go:85 method=Health result=2 took=35.85µs +ts=2025-05-22T10:03:11Z caller=logging.go:85 method=Health result=2 took=26.409µs +ts=2025-05-22T10:03:11Z caller=logging.go:85 method=Health result=2 took=15.709µs +ts=2025-05-22T10:03:14Z caller=logging.go:85 method=Health result=2 took=51.759µs +ts=2025-05-22T10:03:14Z caller=logging.go:85 method=Health result=2 took=51.709µs +ts=2025-05-22T10:03:17Z caller=logging.go:85 method=Health result=2 took=31.119µs +ts=2025-05-22T10:03:17Z caller=logging.go:85 method=Health result=2 took=43.538µs +ts=2025-05-22T10:03:20Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T10:03:20Z caller=logging.go:85 method=Health result=2 took=43.689µs +ts=2025-05-22T10:03:23Z caller=logging.go:85 method=Health result=2 took=39.679µs +ts=2025-05-22T10:03:23Z caller=logging.go:85 method=Health result=2 took=39.949µs +ts=2025-05-22T10:03:26Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T10:03:26Z caller=logging.go:85 method=Health result=2 took=45.889µs +ts=2025-05-22T10:03:29Z caller=logging.go:85 method=Health result=2 took=38.889µs +ts=2025-05-22T10:03:29Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T10:03:32Z caller=logging.go:85 method=Health result=2 took=40.189µs +ts=2025-05-22T10:03:32Z caller=logging.go:85 method=Health result=2 took=27.689µs +ts=2025-05-22T10:03:35Z caller=logging.go:85 method=Health result=2 took=39.819µs +ts=2025-05-22T10:03:35Z caller=logging.go:85 method=Health result=2 took=35.939µs +ts=2025-05-22T10:03:38Z caller=logging.go:85 method=Health result=2 took=41.299µs +ts=2025-05-22T10:03:38Z caller=logging.go:85 method=Health result=2 took=47.039µs +ts=2025-05-22T10:03:41Z caller=logging.go:85 method=Health result=2 took=26.54µs +ts=2025-05-22T10:03:41Z caller=logging.go:85 method=Health result=2 took=14.82µs +ts=2025-05-22T10:03:44Z caller=logging.go:85 method=Health result=2 took=41.809µs +ts=2025-05-22T10:03:44Z caller=logging.go:85 method=Health result=2 took=29.81µs +ts=2025-05-22T10:03:47Z caller=logging.go:85 method=Health result=2 took=28.239µs +ts=2025-05-22T10:03:47Z caller=logging.go:85 method=Health result=2 took=28.229µs +ts=2025-05-22T10:03:50Z caller=logging.go:85 method=Health result=2 took=30.049µs +ts=2025-05-22T10:03:50Z caller=logging.go:85 method=Health result=2 took=55.039µs +ts=2025-05-22T10:03:53Z caller=logging.go:85 method=Health result=2 took=30.449µs +ts=2025-05-22T10:03:53Z caller=logging.go:85 method=Health result=2 took=18.96µs +ts=2025-05-22T10:03:56Z caller=logging.go:85 method=Health result=2 took=30.349µs +ts=2025-05-22T10:03:56Z caller=logging.go:85 method=Health result=2 took=33.65µs +ts=2025-05-22T10:03:59Z caller=logging.go:85 method=Health result=2 took=29.879µs +ts=2025-05-22T10:03:59Z caller=logging.go:85 method=Health result=2 took=11.89µs +ts=2025-05-22T10:04:02Z caller=logging.go:85 method=Health result=2 took=35.209µs +ts=2025-05-22T10:04:02Z caller=logging.go:85 method=Health result=2 took=24.25µs +ts=2025-05-22T10:04:05Z caller=logging.go:85 method=Health result=2 took=40.429µs +ts=2025-05-22T10:04:05Z caller=logging.go:85 method=Health result=2 took=44.619µs +ts=2025-05-22T10:04:08Z caller=logging.go:85 method=Health result=2 took=31.299µs +ts=2025-05-22T10:04:08Z caller=logging.go:85 method=Health result=2 took=13.48µs +ts=2025-05-22T10:04:11Z caller=logging.go:85 method=Health result=2 took=36.049µs +ts=2025-05-22T10:04:11Z caller=logging.go:85 method=Health result=2 took=35.829µs +ts=2025-05-22T10:04:14Z caller=logging.go:85 method=Health result=2 took=37.289µs +ts=2025-05-22T10:04:14Z caller=logging.go:85 method=Health result=2 took=24.339µs +ts=2025-05-22T10:04:18Z caller=logging.go:85 method=Health result=2 took=74.618µs +ts=2025-05-22T10:04:18Z caller=logging.go:85 method=Health result=2 took=57.448µs +ts=2025-05-22T10:04:20Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T10:04:20Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T10:04:23Z caller=logging.go:85 method=Health result=2 took=30.489µs +ts=2025-05-22T10:04:23Z caller=logging.go:85 method=Health result=2 took=30.309µs +ts=2025-05-22T10:04:27Z caller=logging.go:85 method=Health result=2 took=31.349µs +ts=2025-05-22T10:04:27Z caller=logging.go:85 method=Health result=2 took=47.599µs +ts=2025-05-22T10:04:30Z caller=logging.go:85 method=Health result=2 took=45.959µs +ts=2025-05-22T10:04:30Z caller=logging.go:85 method=Health result=2 took=45.409µs +ts=2025-05-22T10:04:32Z caller=logging.go:85 method=Health result=2 took=30.189µs +ts=2025-05-22T10:04:32Z caller=logging.go:85 method=Health result=2 took=55.069µs +ts=2025-05-22T10:04:36Z caller=logging.go:85 method=Health result=2 took=30.909µs +ts=2025-05-22T10:04:36Z caller=logging.go:85 method=Health result=2 took=33.149µs +ts=2025-05-22T10:04:39Z caller=logging.go:85 method=Health result=2 took=40.289µs +ts=2025-05-22T10:04:39Z caller=logging.go:85 method=Health result=2 took=39.77µs +ts=2025-05-22T10:04:41Z caller=logging.go:85 method=Health result=2 took=27.319µs +ts=2025-05-22T10:04:42Z caller=logging.go:85 method=Health result=2 took=69.768µs +ts=2025-05-22T10:04:45Z caller=logging.go:85 method=Health result=2 took=30.719µs +ts=2025-05-22T10:04:45Z caller=logging.go:85 method=Health result=2 took=55.529µs +ts=2025-05-22T10:04:48Z caller=logging.go:85 method=Health result=2 took=58.849µs +ts=2025-05-22T10:04:48Z caller=logging.go:85 method=Health result=2 took=57.369µs +ts=2025-05-22T10:04:51Z caller=logging.go:85 method=Health result=2 took=39.719µs +ts=2025-05-22T10:04:51Z caller=logging.go:85 method=Health result=2 took=37.679µs +ts=2025-05-22T10:04:54Z caller=logging.go:85 method=Health result=2 took=30.599µs +ts=2025-05-22T10:04:54Z caller=logging.go:85 method=Health result=2 took=30.669µs +ts=2025-05-22T10:04:57Z caller=logging.go:85 method=Health result=2 took=41.949µs +ts=2025-05-22T10:04:57Z caller=logging.go:85 method=Health result=2 took=21.869µs +ts=2025-05-22T10:05:00Z caller=logging.go:85 method=Health result=2 took=15.419µs +ts=2025-05-22T10:05:00Z caller=logging.go:85 method=Health result=2 took=30.319µs +ts=2025-05-22T10:05:03Z caller=logging.go:85 method=Health result=2 took=31.349µs +ts=2025-05-22T10:05:03Z caller=logging.go:85 method=Health result=2 took=51.889µs +ts=2025-05-22T10:05:06Z caller=logging.go:85 method=Health result=2 took=29.929µs +ts=2025-05-22T10:05:06Z caller=logging.go:85 method=Health result=2 took=10.839µs +ts=2025-05-22T10:05:09Z caller=logging.go:85 method=Health result=2 took=39.299µs +ts=2025-05-22T10:05:09Z caller=logging.go:85 method=Health result=2 took=22.849µs +ts=2025-05-22T10:05:12Z caller=logging.go:85 method=Health result=2 took=40.849µs +ts=2025-05-22T10:05:12Z caller=logging.go:85 method=Health result=2 took=59.329µs +ts=2025-05-22T10:05:15Z caller=logging.go:85 method=Health result=2 took=42.629µs +ts=2025-05-22T10:05:15Z caller=logging.go:85 method=Health result=2 took=41.339µs +ts=2025-05-22T10:05:18Z caller=logging.go:85 method=Health result=2 took=30.769µs +ts=2025-05-22T10:05:18Z caller=logging.go:85 method=Health result=2 took=18.529µs +ts=2025-05-22T10:05:21Z caller=logging.go:85 method=Health result=2 took=47.559µs +ts=2025-05-22T10:05:21Z caller=logging.go:85 method=Health result=2 took=45.688µs +ts=2025-05-22T10:05:24Z caller=logging.go:85 method=Health result=2 took=38.159µs +ts=2025-05-22T10:05:24Z caller=logging.go:85 method=Health result=2 took=23.619µs +ts=2025-05-22T10:05:27Z caller=logging.go:85 method=Health result=2 took=37.479µs +ts=2025-05-22T10:05:27Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T10:05:30Z caller=logging.go:85 method=Health result=2 took=30.719µs +ts=2025-05-22T10:05:30Z caller=logging.go:85 method=Health result=2 took=13.68µs +ts=2025-05-22T10:05:33Z caller=logging.go:85 method=Health result=2 took=30.009µs +ts=2025-05-22T10:05:33Z caller=logging.go:85 method=Health result=2 took=42.049µs +ts=2025-05-22T10:05:36Z caller=logging.go:85 method=Health result=2 took=40.079µs +ts=2025-05-22T10:05:36Z caller=logging.go:85 method=Health result=2 took=41.019µs +ts=2025-05-22T10:05:39Z caller=logging.go:85 method=Health result=2 took=38.769µs +ts=2025-05-22T10:05:39Z caller=logging.go:85 method=Health result=2 took=15.179µs +ts=2025-05-22T10:05:42Z caller=logging.go:85 method=Health result=2 took=38.239µs +ts=2025-05-22T10:05:42Z caller=logging.go:85 method=Health result=2 took=37.629µs +ts=2025-05-22T10:05:45Z caller=logging.go:85 method=Health result=2 took=42.849µs +ts=2025-05-22T10:05:45Z caller=logging.go:85 method=Health result=2 took=57.969µs +ts=2025-05-22T10:05:48Z caller=logging.go:85 method=Health result=2 took=30.439µs +ts=2025-05-22T10:05:48Z caller=logging.go:85 method=Health result=2 took=30.399µs +ts=2025-05-22T10:05:51Z caller=logging.go:85 method=Health result=2 took=36.299µs +ts=2025-05-22T10:05:51Z caller=logging.go:85 method=Health result=2 took=36.239µs +ts=2025-05-22T10:05:54Z caller=logging.go:85 method=Health result=2 took=30.809µs +ts=2025-05-22T10:05:54Z caller=logging.go:85 method=Health result=2 took=37.939µs +ts=2025-05-22T10:05:57Z caller=logging.go:85 method=Health result=2 took=36.709µs +ts=2025-05-22T10:05:57Z caller=logging.go:85 method=Health result=2 took=36.519µs +ts=2025-05-22T10:06:00Z caller=logging.go:85 method=Health result=2 took=37.199µs +ts=2025-05-22T10:06:00Z caller=logging.go:85 method=Health result=2 took=37.179µs +ts=2025-05-22T10:06:03Z caller=logging.go:85 method=Health result=2 took=41.259µs +ts=2025-05-22T10:06:03Z caller=logging.go:85 method=Health result=2 took=24.21µs +ts=2025-05-22T10:06:06Z caller=logging.go:85 method=Health result=2 took=30.02µs +ts=2025-05-22T10:06:06Z caller=logging.go:85 method=Health result=2 took=15.02µs +ts=2025-05-22T10:06:09Z caller=logging.go:85 method=Health result=2 took=42.079µs +ts=2025-05-22T10:06:09Z caller=logging.go:85 method=Health result=2 took=31.709µs +ts=2025-05-22T10:06:12Z caller=logging.go:85 method=Health result=2 took=40.729µs +ts=2025-05-22T10:06:12Z caller=logging.go:85 method=Health result=2 took=41.509µs +ts=2025-05-22T10:06:15Z caller=logging.go:85 method=Health result=2 took=49.619µs +ts=2025-05-22T10:06:15Z caller=logging.go:85 method=Health result=2 took=48.759µs +ts=2025-05-22T10:06:18Z caller=logging.go:85 method=Health result=2 took=1.049065ms +ts=2025-05-22T10:06:18Z caller=logging.go:85 method=Health result=2 took=1.056524ms +ts=2025-05-22T10:06:21Z caller=logging.go:85 method=Health result=2 took=31.729µs +ts=2025-05-22T10:06:21Z caller=logging.go:85 method=Health result=2 took=34.039µs +ts=2025-05-22T10:06:24Z caller=logging.go:85 method=Health result=2 took=30.76µs +ts=2025-05-22T10:06:24Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T10:06:27Z caller=logging.go:85 method=Health result=2 took=39.929µs +ts=2025-05-22T10:06:27Z caller=logging.go:85 method=Health result=2 took=56.578µs +ts=2025-05-22T10:06:30Z caller=logging.go:85 method=Health result=2 took=40.799µs +ts=2025-05-22T10:06:30Z caller=logging.go:85 method=Health result=2 took=40.909µs +ts=2025-05-22T10:06:33Z caller=logging.go:85 method=Health result=2 took=30.039µs +ts=2025-05-22T10:06:33Z caller=logging.go:85 method=Health result=2 took=15.87µs +ts=2025-05-22T10:06:36Z caller=logging.go:85 method=Health result=2 took=30.68µs +ts=2025-05-22T10:06:36Z caller=logging.go:85 method=Health result=2 took=47.608µs diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/fetch_pod_logs_relative_21600.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/fetch_pod_logs_relative_21600.txt new file mode 100644 index 00000000000..6d8884ff080 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/fetch_pod_logs_relative_21600.txt @@ -0,0 +1,8994 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"namespace":"sock-shop","pod_name":"catalogue-f7687cb4-bjxf2","start_time":"-21600"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "sock-shop", "pod_name": "catalogue-f7687cb4-bjxf2", "start_time": "-21600", "end_time": null, "filter": null, "limit": null}} +images: "./images/" +Abs(images): "/images" () +Getwd: "/" () +ls: ["images/WAT.jpg" "images/WAT2.jpg" "images/bit_of_leg_1.jpeg" "images/bit_of_leg_2.jpeg" "images/catsocks.jpg" "images/catsocks2.jpg" "images/classic.jpg" "images/classic2.jpg" "images/colourful_socks.jpg" "images/cross_1.jpeg" "images/cross_2.jpeg" "images/holy_1.jpeg" "images/holy_2.jpeg" "images/holy_3.jpeg" "images/puma_1.jpeg" "images/puma_2.jpeg" "images/rugby_socks.jpg" "images/sock.jpeg" "images/youtube_1.jpeg" "images/youtube_2.jpeg"] +ts=2025-05-22T06:30:34Z caller=main.go:108 Error="Unable to connect to Database" DSN=catalogue_user:default_password@tcp(catalogue-db:3306)/socksdb +ts=2025-05-22T06:30:34Z caller=main.go:136 transport=HTTP port=80 +ts=2025-05-22T06:33:20Z caller=logging.go:85 method=Health result=2 took=3.190824ms +ts=2025-05-22T06:33:23Z caller=logging.go:85 method=Health result=2 took=44.539µs +ts=2025-05-22T06:33:26Z caller=logging.go:85 method=Health result=2 took=56.159µs +ts=2025-05-22T06:33:29Z caller=logging.go:85 method=Health result=2 took=32.459µs +ts=2025-05-22T06:33:32Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T06:33:35Z caller=logging.go:85 method=Health result=2 took=44.039µs +ts=2025-05-22T06:33:38Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T06:33:41Z caller=logging.go:85 method=Health result=2 took=44.749µs +ts=2025-05-22T06:33:44Z caller=logging.go:85 method=Health result=2 took=41.049µs +ts=2025-05-22T06:33:47Z caller=logging.go:85 method=Health result=2 took=41.289µs +ts=2025-05-22T06:33:50Z caller=logging.go:85 method=Health result=2 took=31.169µs +ts=2025-05-22T06:33:53Z caller=logging.go:85 method=Health result=2 took=39.149µs +ts=2025-05-22T06:33:56Z caller=logging.go:85 method=Health result=2 took=53.198µs +ts=2025-05-22T06:33:59Z caller=logging.go:85 method=Health result=2 took=58.838µs +ts=2025-05-22T06:34:02Z caller=logging.go:85 method=Health result=2 took=46.799µs +ts=2025-05-22T06:34:05Z caller=logging.go:85 method=Health result=2 took=41.039µs +ts=2025-05-22T06:34:08Z caller=logging.go:85 method=Health result=2 took=42.049µs +ts=2025-05-22T06:34:11Z caller=logging.go:85 method=Health result=2 took=44.729µs +ts=2025-05-22T06:34:14Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T06:34:17Z caller=logging.go:85 method=Health result=2 took=29.749µs +ts=2025-05-22T06:34:20Z caller=logging.go:85 method=Health result=2 took=40.289µs +ts=2025-05-22T06:34:23Z caller=logging.go:85 method=Health result=2 took=44.899µs +ts=2025-05-22T06:34:26Z caller=logging.go:85 method=Health result=2 took=33.479µs +ts=2025-05-22T06:34:29Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T06:34:32Z caller=logging.go:85 method=Health result=2 took=42.299µs +ts=2025-05-22T06:34:35Z caller=logging.go:85 method=Health result=2 took=38.279µs +ts=2025-05-22T06:34:38Z caller=logging.go:85 method=Health result=2 took=31.049µs +ts=2025-05-22T06:34:41Z caller=logging.go:85 method=Health result=2 took=30.729µs +ts=2025-05-22T06:34:44Z caller=logging.go:85 method=Health result=2 took=50.399µs +ts=2025-05-22T06:34:47Z caller=logging.go:85 method=Health result=2 took=44.499µs +ts=2025-05-22T06:34:50Z caller=logging.go:85 method=Health result=2 took=51.479µs +ts=2025-05-22T06:34:53Z caller=logging.go:85 method=Health result=2 took=28.599µs +ts=2025-05-22T06:34:56Z caller=logging.go:85 method=Health result=2 took=36.539µs +ts=2025-05-22T06:34:59Z caller=logging.go:85 method=Health result=2 took=31.07µs +ts=2025-05-22T06:35:02Z caller=logging.go:85 method=Health result=2 took=45.848µs +ts=2025-05-22T06:35:05Z caller=logging.go:85 method=Health result=2 took=32.379µs +ts=2025-05-22T06:35:08Z caller=logging.go:85 method=Health result=2 took=41.859µs +ts=2025-05-22T06:35:11Z caller=logging.go:85 method=Health result=2 took=44.499µs +ts=2025-05-22T06:35:14Z caller=logging.go:85 method=Health result=2 took=47.578µs +ts=2025-05-22T06:35:17Z caller=logging.go:85 method=Health result=2 took=40.649µs +ts=2025-05-22T06:35:20Z caller=logging.go:85 method=Health result=2 took=53.179µs +ts=2025-05-22T06:35:20Z caller=logging.go:85 method=Health result=2 took=64.199µs +ts=2025-05-22T06:35:23Z caller=logging.go:85 method=Health result=2 took=57.488µs +ts=2025-05-22T06:35:23Z caller=logging.go:85 method=Health result=2 took=9.32µs +ts=2025-05-22T06:35:26Z caller=logging.go:85 method=Health result=2 took=66.119µs +ts=2025-05-22T06:35:26Z caller=logging.go:85 method=Health result=2 took=58.599µs +ts=2025-05-22T06:35:29Z caller=logging.go:85 method=Health result=2 took=43.129µs +ts=2025-05-22T06:35:29Z caller=logging.go:85 method=Health result=2 took=20.01µs +ts=2025-05-22T06:35:32Z caller=logging.go:85 method=Health result=2 took=36.82µs +ts=2025-05-22T06:35:32Z caller=logging.go:85 method=Health result=2 took=66.428µs +ts=2025-05-22T06:35:35Z caller=logging.go:85 method=Health result=2 took=44.139µs +ts=2025-05-22T06:35:35Z caller=logging.go:85 method=Health result=2 took=47.589µs +ts=2025-05-22T06:35:38Z caller=logging.go:85 method=Health result=2 took=47.779µs +ts=2025-05-22T06:35:38Z caller=logging.go:85 method=Health result=2 took=52.119µs +ts=2025-05-22T06:35:41Z caller=logging.go:85 method=Health result=2 took=39.939µs +ts=2025-05-22T06:35:41Z caller=logging.go:85 method=Health result=2 took=51.039µs +ts=2025-05-22T06:35:44Z caller=logging.go:85 method=Health result=2 took=40.659µs +ts=2025-05-22T06:35:44Z caller=logging.go:85 method=Health result=2 took=43.909µs +ts=2025-05-22T06:35:47Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T06:35:47Z caller=logging.go:85 method=Health result=2 took=47.189µs +ts=2025-05-22T06:35:50Z caller=logging.go:85 method=Health result=2 took=57.428µs +ts=2025-05-22T06:35:50Z caller=logging.go:85 method=Health result=2 took=25.48µs +ts=2025-05-22T06:35:53Z caller=logging.go:85 method=Health result=2 took=37.439µs +ts=2025-05-22T06:35:53Z caller=logging.go:85 method=Health result=2 took=2.115409ms +ts=2025-05-22T06:35:56Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T06:35:56Z caller=logging.go:85 method=Health result=2 took=67.769µs +ts=2025-05-22T06:35:59Z caller=logging.go:85 method=Health result=2 took=31.409µs +ts=2025-05-22T06:35:59Z caller=logging.go:85 method=Health result=2 took=38.389µs +ts=2025-05-22T06:36:02Z caller=logging.go:85 method=Health result=2 took=36.939µs +ts=2025-05-22T06:36:02Z caller=logging.go:85 method=Health result=2 took=47.589µs +ts=2025-05-22T06:36:05Z caller=logging.go:85 method=Health result=2 took=37.809µs +ts=2025-05-22T06:36:05Z caller=logging.go:85 method=Health result=2 took=84.508µs +ts=2025-05-22T06:36:08Z caller=logging.go:85 method=Health result=2 took=27.249µs +ts=2025-05-22T06:36:08Z caller=logging.go:85 method=Health result=2 took=14.06µs +ts=2025-05-22T06:36:11Z caller=logging.go:85 method=Health result=2 took=32.11µs +ts=2025-05-22T06:36:11Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T06:36:14Z caller=logging.go:85 method=Health result=2 took=56.029µs +ts=2025-05-22T06:36:14Z caller=logging.go:85 method=Health result=2 took=91.238µs +ts=2025-05-22T06:36:17Z caller=logging.go:85 method=Health result=2 took=27.419µs +ts=2025-05-22T06:36:17Z caller=logging.go:85 method=Health result=2 took=18.799µs +ts=2025-05-22T06:36:20Z caller=logging.go:85 method=Health result=2 took=33.469µs +ts=2025-05-22T06:36:20Z caller=logging.go:85 method=Health result=2 took=24.19µs +ts=2025-05-22T06:36:23Z caller=logging.go:85 method=Health result=2 took=18.47µs +ts=2025-05-22T06:36:23Z caller=logging.go:85 method=Health result=2 took=30.1µs +ts=2025-05-22T06:36:26Z caller=logging.go:85 method=Health result=2 took=35.199µs +ts=2025-05-22T06:36:26Z caller=logging.go:85 method=Health result=2 took=49.499µs +ts=2025-05-22T06:36:29Z caller=logging.go:85 method=Health result=2 took=50.289µs +ts=2025-05-22T06:36:29Z caller=logging.go:85 method=Health result=2 took=50.139µs +ts=2025-05-22T06:36:32Z caller=logging.go:85 method=Health result=2 took=49.799µs +ts=2025-05-22T06:36:32Z caller=logging.go:85 method=Health result=2 took=49.299µs +ts=2025-05-22T06:36:35Z caller=logging.go:85 method=Health result=2 took=34.09µs +ts=2025-05-22T06:36:35Z caller=logging.go:85 method=Health result=2 took=36.769µs +ts=2025-05-22T06:36:38Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T06:36:38Z caller=logging.go:85 method=Health result=2 took=56.739µs +ts=2025-05-22T06:36:41Z caller=logging.go:85 method=Health result=2 took=29.829µs +ts=2025-05-22T06:36:41Z caller=logging.go:85 method=Health result=2 took=29.749µs +ts=2025-05-22T06:36:44Z caller=logging.go:85 method=Health result=2 took=40.389µs +ts=2025-05-22T06:36:44Z caller=logging.go:85 method=Health result=2 took=27.32µs +ts=2025-05-22T06:36:47Z caller=logging.go:85 method=Health result=2 took=41.839µs +ts=2025-05-22T06:36:47Z caller=logging.go:85 method=Health result=2 took=43.469µs +ts=2025-05-22T06:36:50Z caller=logging.go:85 method=Health result=2 took=27.359µs +ts=2025-05-22T06:36:50Z caller=logging.go:85 method=Health result=2 took=39.349µs +ts=2025-05-22T06:36:53Z caller=logging.go:85 method=Health result=2 took=39.559µs +ts=2025-05-22T06:36:53Z caller=logging.go:85 method=Health result=2 took=39.499µs +ts=2025-05-22T06:36:56Z caller=logging.go:85 method=Health result=2 took=36.069µs +ts=2025-05-22T06:36:56Z caller=logging.go:85 method=Health result=2 took=37.239µs +ts=2025-05-22T06:36:59Z caller=logging.go:85 method=Health result=2 took=30.52µs +ts=2025-05-22T06:36:59Z caller=logging.go:85 method=Health result=2 took=13.29µs +ts=2025-05-22T06:37:02Z caller=logging.go:85 method=Health result=2 took=35.949µs +ts=2025-05-22T06:37:02Z caller=logging.go:85 method=Health result=2 took=24.829µs +ts=2025-05-22T06:37:05Z caller=logging.go:85 method=Health result=2 took=36.659µs +ts=2025-05-22T06:37:05Z caller=logging.go:85 method=Health result=2 took=37.169µs +ts=2025-05-22T06:37:08Z caller=logging.go:85 method=Health result=2 took=35.729µs +ts=2025-05-22T06:37:08Z caller=logging.go:85 method=Health result=2 took=29.47µs +ts=2025-05-22T06:37:11Z caller=logging.go:85 method=Health result=2 took=41.809µs +ts=2025-05-22T06:37:11Z caller=logging.go:85 method=Health result=2 took=39.229µs +ts=2025-05-22T06:37:14Z caller=logging.go:85 method=Health result=2 took=37.249µs +ts=2025-05-22T06:37:14Z caller=logging.go:85 method=Health result=2 took=37.199µs +ts=2025-05-22T06:37:17Z caller=logging.go:85 method=Health result=2 took=45.719µs +ts=2025-05-22T06:37:17Z caller=logging.go:85 method=Health result=2 took=47.309µs +ts=2025-05-22T06:37:20Z caller=logging.go:85 method=Health result=2 took=32µs +ts=2025-05-22T06:37:20Z caller=logging.go:85 method=Health result=2 took=42.169µs +ts=2025-05-22T06:37:23Z caller=logging.go:85 method=Health result=2 took=39.879µs +ts=2025-05-22T06:37:23Z caller=logging.go:85 method=Health result=2 took=41.419µs +ts=2025-05-22T06:37:26Z caller=logging.go:85 method=Health result=2 took=46.758µs +ts=2025-05-22T06:37:26Z caller=logging.go:85 method=Health result=2 took=44.369µs +ts=2025-05-22T06:37:29Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T06:37:29Z caller=logging.go:85 method=Health result=2 took=42.839µs +ts=2025-05-22T06:37:32Z caller=logging.go:85 method=Health result=2 took=40.689µs +ts=2025-05-22T06:37:32Z caller=logging.go:85 method=Health result=2 took=49.949µs +ts=2025-05-22T06:37:35Z caller=logging.go:85 method=Health result=2 took=34.039µs +ts=2025-05-22T06:37:35Z caller=logging.go:85 method=Health result=2 took=34.969µs +ts=2025-05-22T06:37:38Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T06:37:38Z caller=logging.go:85 method=Health result=2 took=50.859µs +ts=2025-05-22T06:37:41Z caller=logging.go:85 method=Health result=2 took=43.178µs +ts=2025-05-22T06:37:41Z caller=logging.go:85 method=Health result=2 took=30.679µs +ts=2025-05-22T06:37:44Z caller=logging.go:85 method=Health result=2 took=40.499µs +ts=2025-05-22T06:37:44Z caller=logging.go:85 method=Health result=2 took=46.649µs +ts=2025-05-22T06:37:47Z caller=logging.go:85 method=Health result=2 took=30.639µs +ts=2025-05-22T06:37:47Z caller=logging.go:85 method=Health result=2 took=30.569µs +ts=2025-05-22T06:37:50Z caller=logging.go:85 method=Health result=2 took=30.209µs +ts=2025-05-22T06:37:50Z caller=logging.go:85 method=Health result=2 took=30.189µs +ts=2025-05-22T06:37:53Z caller=logging.go:85 method=Health result=2 took=38.609µs +ts=2025-05-22T06:37:53Z caller=logging.go:85 method=Health result=2 took=18.62µs +ts=2025-05-22T06:37:56Z caller=logging.go:85 method=Health result=2 took=51.769µs +ts=2025-05-22T06:37:56Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T06:37:59Z caller=logging.go:85 method=Health result=2 took=47.389µs +ts=2025-05-22T06:37:59Z caller=logging.go:85 method=Health result=2 took=48.969µs +ts=2025-05-22T06:38:02Z caller=logging.go:85 method=Health result=2 took=46.039µs +ts=2025-05-22T06:38:02Z caller=logging.go:85 method=Health result=2 took=34.979µs +ts=2025-05-22T06:38:05Z caller=logging.go:85 method=Health result=2 took=26.43µs +ts=2025-05-22T06:38:05Z caller=logging.go:85 method=Health result=2 took=38.659µs +ts=2025-05-22T06:38:08Z caller=logging.go:85 method=Health result=2 took=46.879µs +ts=2025-05-22T06:38:08Z caller=logging.go:85 method=Health result=2 took=51.659µs +ts=2025-05-22T06:38:11Z caller=logging.go:85 method=Health result=2 took=49.609µs +ts=2025-05-22T06:38:11Z caller=logging.go:85 method=Health result=2 took=46.439µs +ts=2025-05-22T06:38:14Z caller=logging.go:85 method=Health result=2 took=45.869µs +ts=2025-05-22T06:38:14Z caller=logging.go:85 method=Health result=2 took=48.169µs +ts=2025-05-22T06:38:17Z caller=logging.go:85 method=Health result=2 took=32.929µs +ts=2025-05-22T06:38:17Z caller=logging.go:85 method=Health result=2 took=32.939µs +ts=2025-05-22T06:38:20Z caller=logging.go:85 method=Health result=2 took=30.059µs +ts=2025-05-22T06:38:20Z caller=logging.go:85 method=Health result=2 took=31.129µs +ts=2025-05-22T06:38:23Z caller=logging.go:85 method=Health result=2 took=44.019µs +ts=2025-05-22T06:38:23Z caller=logging.go:85 method=Health result=2 took=26.439µs +ts=2025-05-22T06:38:26Z caller=logging.go:85 method=Health result=2 took=49.079µs +ts=2025-05-22T06:38:26Z caller=logging.go:85 method=Health result=2 took=51.999µs +ts=2025-05-22T06:38:29Z caller=logging.go:85 method=Health result=2 took=41.459µs +ts=2025-05-22T06:38:29Z caller=logging.go:85 method=Health result=2 took=48.418µs +ts=2025-05-22T06:38:32Z caller=logging.go:85 method=Health result=2 took=29.759µs +ts=2025-05-22T06:38:32Z caller=logging.go:85 method=Health result=2 took=28.7µs +ts=2025-05-22T06:38:35Z caller=logging.go:85 method=Health result=2 took=100.928µs +ts=2025-05-22T06:38:35Z caller=logging.go:85 method=Health result=2 took=100.998µs +ts=2025-05-22T06:38:38Z caller=logging.go:85 method=Health result=2 took=31.279µs +ts=2025-05-22T06:38:38Z caller=logging.go:85 method=Health result=2 took=35.25µs +ts=2025-05-22T06:38:41Z caller=logging.go:85 method=Health result=2 took=54.599µs +ts=2025-05-22T06:38:41Z caller=logging.go:85 method=Health result=2 took=48.449µs +ts=2025-05-22T06:38:44Z caller=logging.go:85 method=Health result=2 took=55.909µs +ts=2025-05-22T06:38:44Z caller=logging.go:85 method=Health result=2 took=45.049µs +ts=2025-05-22T06:38:47Z caller=logging.go:85 method=Health result=2 took=29.389µs +ts=2025-05-22T06:38:47Z caller=logging.go:85 method=Health result=2 took=44.789µs +ts=2025-05-22T06:38:50Z caller=logging.go:85 method=Health result=2 took=44.489µs +ts=2025-05-22T06:38:50Z caller=logging.go:85 method=Health result=2 took=31.59µs +ts=2025-05-22T06:38:53Z caller=logging.go:85 method=Health result=2 took=28.11µs +ts=2025-05-22T06:38:53Z caller=logging.go:85 method=Health result=2 took=28.24µs +ts=2025-05-22T06:38:56Z caller=logging.go:85 method=Health result=2 took=46.329µs +ts=2025-05-22T06:38:56Z caller=logging.go:85 method=Health result=2 took=32.899µs +ts=2025-05-22T06:38:59Z caller=logging.go:85 method=Health result=2 took=40.179µs +ts=2025-05-22T06:38:59Z caller=logging.go:85 method=Health result=2 took=49.118µs +ts=2025-05-22T06:39:02Z caller=logging.go:85 method=Health result=2 took=26.559µs +ts=2025-05-22T06:39:02Z caller=logging.go:85 method=Health result=2 took=73.179µs +ts=2025-05-22T06:39:05Z caller=logging.go:85 method=Health result=2 took=32.139µs +ts=2025-05-22T06:39:05Z caller=logging.go:85 method=Health result=2 took=53.159µs +ts=2025-05-22T06:39:08Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T06:39:08Z caller=logging.go:85 method=Health result=2 took=46.659µs +ts=2025-05-22T06:39:11Z caller=logging.go:85 method=Health result=2 took=29.289µs +ts=2025-05-22T06:39:11Z caller=logging.go:85 method=Health result=2 took=14.92µs +ts=2025-05-22T06:39:14Z caller=logging.go:85 method=Health result=2 took=29.449µs +ts=2025-05-22T06:39:14Z caller=logging.go:85 method=Health result=2 took=13.94µs +ts=2025-05-22T06:39:17Z caller=logging.go:85 method=Health result=2 took=43.689µs +ts=2025-05-22T06:39:17Z caller=logging.go:85 method=Health result=2 took=59.038µs +ts=2025-05-22T06:39:20Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T06:39:20Z caller=logging.go:85 method=Health result=2 took=10.11µs +ts=2025-05-22T06:39:23Z caller=logging.go:85 method=Health result=2 took=45.199µs +ts=2025-05-22T06:39:23Z caller=logging.go:85 method=Health result=2 took=36.939µs +ts=2025-05-22T06:39:26Z caller=logging.go:85 method=Health result=2 took=37.769µs +ts=2025-05-22T06:39:26Z caller=logging.go:85 method=Health result=2 took=48.939µs +ts=2025-05-22T06:39:29Z caller=logging.go:85 method=Health result=2 took=30.88µs +ts=2025-05-22T06:39:29Z caller=logging.go:85 method=Health result=2 took=44.619µs +ts=2025-05-22T06:39:32Z caller=logging.go:85 method=Health result=2 took=56.789µs +ts=2025-05-22T06:39:32Z caller=logging.go:85 method=Health result=2 took=47.999µs +ts=2025-05-22T06:39:35Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T06:39:35Z caller=logging.go:85 method=Health result=2 took=40.919µs +ts=2025-05-22T06:39:38Z caller=logging.go:85 method=Health result=2 took=43.389µs +ts=2025-05-22T06:39:38Z caller=logging.go:85 method=Health result=2 took=47.199µs +ts=2025-05-22T06:39:41Z caller=logging.go:85 method=Health result=2 took=34.04µs +ts=2025-05-22T06:39:41Z caller=logging.go:85 method=Health result=2 took=27.02µs +ts=2025-05-22T06:39:44Z caller=logging.go:85 method=Health result=2 took=29.83µs +ts=2025-05-22T06:39:44Z caller=logging.go:85 method=Health result=2 took=23.38µs +ts=2025-05-22T06:39:47Z caller=logging.go:85 method=Health result=2 took=55.529µs +ts=2025-05-22T06:39:47Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T06:39:50Z caller=logging.go:85 method=Health result=2 took=28.909µs +ts=2025-05-22T06:39:50Z caller=logging.go:85 method=Health result=2 took=28.949µs +ts=2025-05-22T06:39:53Z caller=logging.go:85 method=Health result=2 took=31.769µs +ts=2025-05-22T06:39:53Z caller=logging.go:85 method=Health result=2 took=40.609µs +ts=2025-05-22T06:39:56Z caller=logging.go:85 method=Health result=2 took=45.319µs +ts=2025-05-22T06:39:56Z caller=logging.go:85 method=Health result=2 took=46.049µs +ts=2025-05-22T06:39:59Z caller=logging.go:85 method=Health result=2 took=34.829µs +ts=2025-05-22T06:39:59Z caller=logging.go:85 method=Health result=2 took=31.259µs +ts=2025-05-22T06:40:02Z caller=logging.go:85 method=Health result=2 took=33.649µs +ts=2025-05-22T06:40:02Z caller=logging.go:85 method=Health result=2 took=38.709µs +ts=2025-05-22T06:40:05Z caller=logging.go:85 method=Health result=2 took=37.319µs +ts=2025-05-22T06:40:05Z caller=logging.go:85 method=Health result=2 took=39.579µs +ts=2025-05-22T06:40:08Z caller=logging.go:85 method=Health result=2 took=32.389µs +ts=2025-05-22T06:40:08Z caller=logging.go:85 method=Health result=2 took=48.569µs +ts=2025-05-22T06:40:11Z caller=logging.go:85 method=Health result=2 took=30.77µs +ts=2025-05-22T06:40:11Z caller=logging.go:85 method=Health result=2 took=30.66µs +ts=2025-05-22T06:40:14Z caller=logging.go:85 method=Health result=2 took=37.529µs +ts=2025-05-22T06:40:14Z caller=logging.go:85 method=Health result=2 took=33.649µs +ts=2025-05-22T06:40:17Z caller=logging.go:85 method=Health result=2 took=53.169µs +ts=2025-05-22T06:40:17Z caller=logging.go:85 method=Health result=2 took=40.229µs +ts=2025-05-22T06:40:20Z caller=logging.go:85 method=Health result=2 took=41.599µs +ts=2025-05-22T06:40:20Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T06:40:23Z caller=logging.go:85 method=Health result=2 took=43.259µs +ts=2025-05-22T06:40:23Z caller=logging.go:85 method=Health result=2 took=42.139µs +ts=2025-05-22T06:40:26Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T06:40:26Z caller=logging.go:85 method=Health result=2 took=31.329µs +ts=2025-05-22T06:40:29Z caller=logging.go:85 method=Health result=2 took=29.199µs +ts=2025-05-22T06:40:29Z caller=logging.go:85 method=Health result=2 took=17.69µs +ts=2025-05-22T06:40:32Z caller=logging.go:85 method=Health result=2 took=41.359µs +ts=2025-05-22T06:40:32Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T06:40:35Z caller=logging.go:85 method=Health result=2 took=29.239µs +ts=2025-05-22T06:40:35Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T06:40:38Z caller=logging.go:85 method=Health result=2 took=50.398µs +ts=2025-05-22T06:40:38Z caller=logging.go:85 method=Health result=2 took=66.319µs +ts=2025-05-22T06:40:41Z caller=logging.go:85 method=Health result=2 took=33.84µs +ts=2025-05-22T06:40:41Z caller=logging.go:85 method=Health result=2 took=47.699µs +ts=2025-05-22T06:40:44Z caller=logging.go:85 method=Health result=2 took=27.169µs +ts=2025-05-22T06:40:44Z caller=logging.go:85 method=Health result=2 took=27.049µs +ts=2025-05-22T06:40:47Z caller=logging.go:85 method=Health result=2 took=63.548µs +ts=2025-05-22T06:40:47Z caller=logging.go:85 method=Health result=2 took=34.76µs +ts=2025-05-22T06:40:50Z caller=logging.go:85 method=Health result=2 took=40.589µs +ts=2025-05-22T06:40:50Z caller=logging.go:85 method=Health result=2 took=21.11µs +ts=2025-05-22T06:40:53Z caller=logging.go:85 method=Health result=2 took=30.259µs +ts=2025-05-22T06:40:53Z caller=logging.go:85 method=Health result=2 took=46.429µs +ts=2025-05-22T06:40:56Z caller=logging.go:85 method=Health result=2 took=28.559µs +ts=2025-05-22T06:40:56Z caller=logging.go:85 method=Health result=2 took=40.259µs +ts=2025-05-22T06:40:59Z caller=logging.go:85 method=Health result=2 took=39.419µs +ts=2025-05-22T06:40:59Z caller=logging.go:85 method=Health result=2 took=33.909µs +ts=2025-05-22T06:41:02Z caller=logging.go:85 method=Health result=2 took=42.439µs +ts=2025-05-22T06:41:02Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T06:41:05Z caller=logging.go:85 method=Health result=2 took=44.079µs +ts=2025-05-22T06:41:05Z caller=logging.go:85 method=Health result=2 took=21.42µs +ts=2025-05-22T06:41:08Z caller=logging.go:85 method=Health result=2 took=37.459µs +ts=2025-05-22T06:41:08Z caller=logging.go:85 method=Health result=2 took=34.209µs +ts=2025-05-22T06:41:11Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T06:41:11Z caller=logging.go:85 method=Health result=2 took=26.719µs +ts=2025-05-22T06:41:14Z caller=logging.go:85 method=Health result=2 took=38.809µs +ts=2025-05-22T06:41:14Z caller=logging.go:85 method=Health result=2 took=39.419µs +ts=2025-05-22T06:41:17Z caller=logging.go:85 method=Health result=2 took=33.319µs +ts=2025-05-22T06:41:17Z caller=logging.go:85 method=Health result=2 took=44.889µs +ts=2025-05-22T06:41:20Z caller=logging.go:85 method=Health result=2 took=47.269µs +ts=2025-05-22T06:41:20Z caller=logging.go:85 method=Health result=2 took=47.729µs +ts=2025-05-22T06:41:23Z caller=logging.go:85 method=Health result=2 took=41.209µs +ts=2025-05-22T06:41:23Z caller=logging.go:85 method=Health result=2 took=40.809µs +ts=2025-05-22T06:41:26Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T06:41:26Z caller=logging.go:85 method=Health result=2 took=30.599µs +ts=2025-05-22T06:41:29Z caller=logging.go:85 method=Health result=2 took=40.579µs +ts=2025-05-22T06:41:29Z caller=logging.go:85 method=Health result=2 took=20.149µs +ts=2025-05-22T06:41:32Z caller=logging.go:85 method=Health result=2 took=39.449µs +ts=2025-05-22T06:41:32Z caller=logging.go:85 method=Health result=2 took=39.589µs +ts=2025-05-22T06:41:35Z caller=logging.go:85 method=Health result=2 took=41.839µs +ts=2025-05-22T06:41:35Z caller=logging.go:85 method=Health result=2 took=33.539µs +ts=2025-05-22T06:41:38Z caller=logging.go:85 method=Health result=2 took=55.298µs +ts=2025-05-22T06:41:38Z caller=logging.go:85 method=Health result=2 took=46.879µs +ts=2025-05-22T06:41:41Z caller=logging.go:85 method=Health result=2 took=43.579µs +ts=2025-05-22T06:41:41Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T06:41:44Z caller=logging.go:85 method=Health result=2 took=40.969µs +ts=2025-05-22T06:41:44Z caller=logging.go:85 method=Health result=2 took=46.549µs +ts=2025-05-22T06:41:47Z caller=logging.go:85 method=Health result=2 took=39.299µs +ts=2025-05-22T06:41:47Z caller=logging.go:85 method=Health result=2 took=39.159µs +ts=2025-05-22T06:41:50Z caller=logging.go:85 method=Health result=2 took=28.019µs +ts=2025-05-22T06:41:50Z caller=logging.go:85 method=Health result=2 took=13.16µs +ts=2025-05-22T06:41:53Z caller=logging.go:85 method=Health result=2 took=33.499µs +ts=2025-05-22T06:41:53Z caller=logging.go:85 method=Health result=2 took=46.469µs +ts=2025-05-22T06:41:56Z caller=logging.go:85 method=Health result=2 took=43.539µs +ts=2025-05-22T06:41:56Z caller=logging.go:85 method=Health result=2 took=46.349µs +ts=2025-05-22T06:41:59Z caller=logging.go:85 method=Health result=2 took=44.329µs +ts=2025-05-22T06:41:59Z caller=logging.go:85 method=Health result=2 took=46.358µs +ts=2025-05-22T06:42:02Z caller=logging.go:85 method=Health result=2 took=39.469µs +ts=2025-05-22T06:42:02Z caller=logging.go:85 method=Health result=2 took=11.999µs +ts=2025-05-22T06:42:05Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T06:42:05Z caller=logging.go:85 method=Health result=2 took=39.389µs +ts=2025-05-22T06:42:08Z caller=logging.go:85 method=Health result=2 took=35.329µs +ts=2025-05-22T06:42:08Z caller=logging.go:85 method=Health result=2 took=19.919µs +ts=2025-05-22T06:42:11Z caller=logging.go:85 method=Health result=2 took=28.199µs +ts=2025-05-22T06:42:11Z caller=logging.go:85 method=Health result=2 took=35.829µs +ts=2025-05-22T06:42:14Z caller=logging.go:85 method=Health result=2 took=16.35µs +ts=2025-05-22T06:42:14Z caller=logging.go:85 method=Health result=2 took=34.899µs +ts=2025-05-22T06:42:17Z caller=logging.go:85 method=Health result=2 took=27.319µs +ts=2025-05-22T06:42:17Z caller=logging.go:85 method=Health result=2 took=2.08837ms +ts=2025-05-22T06:42:20Z caller=logging.go:85 method=Health result=2 took=44.449µs +ts=2025-05-22T06:42:20Z caller=logging.go:85 method=Health result=2 took=45.549µs +ts=2025-05-22T06:42:23Z caller=logging.go:85 method=Health result=2 took=43.608µs +ts=2025-05-22T06:42:23Z caller=logging.go:85 method=Health result=2 took=43.428µs +ts=2025-05-22T06:42:26Z caller=logging.go:85 method=Health result=2 took=44.999µs +ts=2025-05-22T06:42:26Z caller=logging.go:85 method=Health result=2 took=61.139µs +ts=2025-05-22T06:42:29Z caller=logging.go:85 method=Health result=2 took=47.669µs +ts=2025-05-22T06:42:29Z caller=logging.go:85 method=Health result=2 took=28.829µs +ts=2025-05-22T06:42:32Z caller=logging.go:85 method=Health result=2 took=29.13µs +ts=2025-05-22T06:42:32Z caller=logging.go:85 method=Health result=2 took=29.09µs +ts=2025-05-22T06:42:35Z caller=logging.go:85 method=Health result=2 took=46.109µs +ts=2025-05-22T06:42:35Z caller=logging.go:85 method=Health result=2 took=50.259µs +ts=2025-05-22T06:42:38Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T06:42:38Z caller=logging.go:85 method=Health result=2 took=33.319µs +ts=2025-05-22T06:42:41Z caller=logging.go:85 method=Health result=2 took=28.84µs +ts=2025-05-22T06:42:41Z caller=logging.go:85 method=Health result=2 took=41.019µs +ts=2025-05-22T06:42:44Z caller=logging.go:85 method=Health result=2 took=30.669µs +ts=2025-05-22T06:42:44Z caller=logging.go:85 method=Health result=2 took=16.419µs +ts=2025-05-22T06:42:47Z caller=logging.go:85 method=Health result=2 took=41.639µs +ts=2025-05-22T06:42:47Z caller=logging.go:85 method=Health result=2 took=63.968µs +ts=2025-05-22T06:42:50Z caller=logging.go:85 method=Health result=2 took=36.299µs +ts=2025-05-22T06:42:50Z caller=logging.go:85 method=Health result=2 took=15.98µs +ts=2025-05-22T06:42:53Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T06:42:53Z caller=logging.go:85 method=Health result=2 took=29.419µs +ts=2025-05-22T06:42:56Z caller=logging.go:85 method=Health result=2 took=45.469µs +ts=2025-05-22T06:42:56Z caller=logging.go:85 method=Health result=2 took=48.249µs +ts=2025-05-22T06:42:59Z caller=logging.go:85 method=Health result=2 took=43.599µs +ts=2025-05-22T06:42:59Z caller=logging.go:85 method=Health result=2 took=103.507µs +ts=2025-05-22T06:43:02Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T06:43:02Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T06:43:05Z caller=logging.go:85 method=Health result=2 took=44.769µs +ts=2025-05-22T06:43:05Z caller=logging.go:85 method=Health result=2 took=48.849µs +ts=2025-05-22T06:43:08Z caller=logging.go:85 method=Health result=2 took=51.708µs +ts=2025-05-22T06:43:08Z caller=logging.go:85 method=Health result=2 took=49.839µs +ts=2025-05-22T06:43:11Z caller=logging.go:85 method=Health result=2 took=38.129µs +ts=2025-05-22T06:43:11Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T06:43:14Z caller=logging.go:85 method=Health result=2 took=45.998µs +ts=2025-05-22T06:43:14Z caller=logging.go:85 method=Health result=2 took=49.309µs +ts=2025-05-22T06:43:17Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T06:43:17Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T06:43:20Z caller=logging.go:85 method=Health result=2 took=35.529µs +ts=2025-05-22T06:43:20Z caller=logging.go:85 method=Health result=2 took=34.989µs +ts=2025-05-22T06:43:23Z caller=logging.go:85 method=Health result=2 took=44.809µs +ts=2025-05-22T06:43:23Z caller=logging.go:85 method=Health result=2 took=49.089µs +ts=2025-05-22T06:43:26Z caller=logging.go:85 method=Health result=2 took=41.609µs +ts=2025-05-22T06:43:26Z caller=logging.go:85 method=Health result=2 took=48.539µs +ts=2025-05-22T06:43:29Z caller=logging.go:85 method=Health result=2 took=45.299µs +ts=2025-05-22T06:43:29Z caller=logging.go:85 method=Health result=2 took=57.768µs +ts=2025-05-22T06:43:32Z caller=logging.go:85 method=Health result=2 took=44.199µs +ts=2025-05-22T06:43:32Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T06:43:35Z caller=logging.go:85 method=Health result=2 took=44.319µs +ts=2025-05-22T06:43:35Z caller=logging.go:85 method=Health result=2 took=43.769µs +ts=2025-05-22T06:43:38Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T06:43:38Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T06:43:41Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T06:43:41Z caller=logging.go:85 method=Health result=2 took=20.149µs +ts=2025-05-22T06:43:44Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T06:43:44Z caller=logging.go:85 method=Health result=2 took=50.329µs +ts=2025-05-22T06:43:47Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T06:43:47Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T06:43:50Z caller=logging.go:85 method=Health result=2 took=46.049µs +ts=2025-05-22T06:43:50Z caller=logging.go:85 method=Health result=2 took=24.99µs +ts=2025-05-22T06:43:53Z caller=logging.go:85 method=Health result=2 took=47.039µs +ts=2025-05-22T06:43:53Z caller=logging.go:85 method=Health result=2 took=51.979µs +ts=2025-05-22T06:43:56Z caller=logging.go:85 method=Health result=2 took=37.329µs +ts=2025-05-22T06:43:56Z caller=logging.go:85 method=Health result=2 took=37.719µs +ts=2025-05-22T06:43:59Z caller=logging.go:85 method=Health result=2 took=39.259µs +ts=2025-05-22T06:43:59Z caller=logging.go:85 method=Health result=2 took=49.019µs +ts=2025-05-22T06:44:02Z caller=logging.go:85 method=Health result=2 took=38.999µs +ts=2025-05-22T06:44:02Z caller=logging.go:85 method=Health result=2 took=39.239µs +ts=2025-05-22T06:44:05Z caller=logging.go:85 method=Health result=2 took=45.638µs +ts=2025-05-22T06:44:05Z caller=logging.go:85 method=Health result=2 took=43.129µs +ts=2025-05-22T06:44:08Z caller=logging.go:85 method=Health result=2 took=44.349µs +ts=2025-05-22T06:44:08Z caller=logging.go:85 method=Health result=2 took=47.269µs +ts=2025-05-22T06:44:11Z caller=logging.go:85 method=Health result=2 took=49.929µs +ts=2025-05-22T06:44:11Z caller=logging.go:85 method=Health result=2 took=34.129µs +ts=2025-05-22T06:44:14Z caller=logging.go:85 method=Health result=2 took=44.439µs +ts=2025-05-22T06:44:14Z caller=logging.go:85 method=Health result=2 took=50.418µs +ts=2025-05-22T06:44:17Z caller=logging.go:85 method=Health result=2 took=46.989µs +ts=2025-05-22T06:44:17Z caller=logging.go:85 method=Health result=2 took=62.458µs +ts=2025-05-22T06:44:20Z caller=logging.go:85 method=Health result=2 took=40.209µs +ts=2025-05-22T06:44:20Z caller=logging.go:85 method=Health result=2 took=47.869µs +ts=2025-05-22T06:44:23Z caller=logging.go:85 method=Health result=2 took=43.619µs +ts=2025-05-22T06:44:23Z caller=logging.go:85 method=Health result=2 took=45.579µs +ts=2025-05-22T06:44:26Z caller=logging.go:85 method=Health result=2 took=41.869µs +ts=2025-05-22T06:44:26Z caller=logging.go:85 method=Health result=2 took=47.539µs +ts=2025-05-22T06:44:29Z caller=logging.go:85 method=Health result=2 took=40.929µs +ts=2025-05-22T06:44:29Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T06:44:32Z caller=logging.go:85 method=Health result=2 took=33.079µs +ts=2025-05-22T06:44:32Z caller=logging.go:85 method=Health result=2 took=47.509µs +ts=2025-05-22T06:44:35Z caller=logging.go:85 method=Health result=2 took=41.229µs +ts=2025-05-22T06:44:35Z caller=logging.go:85 method=Health result=2 took=40.869µs +ts=2025-05-22T06:44:38Z caller=logging.go:85 method=Health result=2 took=41.729µs +ts=2025-05-22T06:44:38Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T06:44:41Z caller=logging.go:85 method=Health result=2 took=39.11µs +ts=2025-05-22T06:44:41Z caller=logging.go:85 method=Health result=2 took=38.92µs +ts=2025-05-22T06:44:44Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T06:44:44Z caller=logging.go:85 method=Health result=2 took=43.589µs +ts=2025-05-22T06:44:47Z caller=logging.go:85 method=Health result=2 took=42.859µs +ts=2025-05-22T06:44:47Z caller=logging.go:85 method=Health result=2 took=42.229µs +ts=2025-05-22T06:44:50Z caller=logging.go:85 method=Health result=2 took=51.569µs +ts=2025-05-22T06:44:50Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T06:44:53Z caller=logging.go:85 method=Health result=2 took=44.449µs +ts=2025-05-22T06:44:53Z caller=logging.go:85 method=Health result=2 took=51.079µs +ts=2025-05-22T06:44:56Z caller=logging.go:85 method=Health result=2 took=45.139µs +ts=2025-05-22T06:44:56Z caller=logging.go:85 method=Health result=2 took=64.399µs +ts=2025-05-22T06:44:59Z caller=logging.go:85 method=Health result=2 took=45.199µs +ts=2025-05-22T06:44:59Z caller=logging.go:85 method=Health result=2 took=34.019µs +ts=2025-05-22T06:45:02Z caller=logging.go:85 method=Health result=2 took=56.648µs +ts=2025-05-22T06:45:02Z caller=logging.go:85 method=Health result=2 took=56.648µs +ts=2025-05-22T06:45:05Z caller=logging.go:85 method=Health result=2 took=29.529µs +ts=2025-05-22T06:45:05Z caller=logging.go:85 method=Health result=2 took=72.978µs +ts=2025-05-22T06:45:08Z caller=logging.go:85 method=Health result=2 took=43.019µs +ts=2025-05-22T06:45:08Z caller=logging.go:85 method=Health result=2 took=42.179µs +ts=2025-05-22T06:45:11Z caller=logging.go:85 method=Health result=2 took=36.149µs +ts=2025-05-22T06:45:11Z caller=logging.go:85 method=Health result=2 took=48.429µs +ts=2025-05-22T06:45:14Z caller=logging.go:85 method=Health result=2 took=43.869µs +ts=2025-05-22T06:45:14Z caller=logging.go:85 method=Health result=2 took=41.389µs +ts=2025-05-22T06:45:17Z caller=logging.go:85 method=Health result=2 took=41.949µs +ts=2025-05-22T06:45:17Z caller=logging.go:85 method=Health result=2 took=41.219µs +ts=2025-05-22T06:45:20Z caller=logging.go:85 method=Health result=2 took=45.819µs +ts=2025-05-22T06:45:20Z caller=logging.go:85 method=Health result=2 took=48.399µs +ts=2025-05-22T06:45:23Z caller=logging.go:85 method=Health result=2 took=38.859µs +ts=2025-05-22T06:45:23Z caller=logging.go:85 method=Health result=2 took=38.189µs +ts=2025-05-22T06:45:26Z caller=logging.go:85 method=Health result=2 took=38.759µs +ts=2025-05-22T06:45:26Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T06:45:29Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T06:45:29Z caller=logging.go:85 method=Health result=2 took=30.269µs +ts=2025-05-22T06:45:32Z caller=logging.go:85 method=Health result=2 took=38.949µs +ts=2025-05-22T06:45:32Z caller=logging.go:85 method=Health result=2 took=39.319µs +ts=2025-05-22T06:45:35Z caller=logging.go:85 method=Health result=2 took=36.789µs +ts=2025-05-22T06:45:35Z caller=logging.go:85 method=Health result=2 took=56.799µs +ts=2025-05-22T06:45:38Z caller=logging.go:85 method=Health result=2 took=34.719µs +ts=2025-05-22T06:45:38Z caller=logging.go:85 method=Health result=2 took=19.18µs +ts=2025-05-22T06:45:41Z caller=logging.go:85 method=Health result=2 took=30.87µs +ts=2025-05-22T06:45:41Z caller=logging.go:85 method=Health result=2 took=45.519µs +ts=2025-05-22T06:45:44Z caller=logging.go:85 method=Health result=2 took=30.489µs +ts=2025-05-22T06:45:44Z caller=logging.go:85 method=Health result=2 took=9.989µs +ts=2025-05-22T06:45:47Z caller=logging.go:85 method=Health result=2 took=45.199µs +ts=2025-05-22T06:45:47Z caller=logging.go:85 method=Health result=2 took=48.979µs +ts=2025-05-22T06:45:50Z caller=logging.go:85 method=Health result=2 took=42.999µs +ts=2025-05-22T06:45:50Z caller=logging.go:85 method=Health result=2 took=43.498µs +ts=2025-05-22T06:45:53Z caller=logging.go:85 method=Health result=2 took=43.778µs +ts=2025-05-22T06:45:53Z caller=logging.go:85 method=Health result=2 took=44.708µs +ts=2025-05-22T06:45:56Z caller=logging.go:85 method=Health result=2 took=41.509µs +ts=2025-05-22T06:45:56Z caller=logging.go:85 method=Health result=2 took=37.619µs +ts=2025-05-22T06:45:59Z caller=logging.go:85 method=Health result=2 took=36.799µs +ts=2025-05-22T06:45:59Z caller=logging.go:85 method=Health result=2 took=37.359µs +ts=2025-05-22T06:46:02Z caller=logging.go:85 method=Health result=2 took=39.509µs +ts=2025-05-22T06:46:02Z caller=logging.go:85 method=Health result=2 took=38.919µs +ts=2025-05-22T06:46:05Z caller=logging.go:85 method=Health result=2 took=41.419µs +ts=2025-05-22T06:46:05Z caller=logging.go:85 method=Health result=2 took=55.728µs +ts=2025-05-22T06:46:08Z caller=logging.go:85 method=Health result=2 took=45.569µs +ts=2025-05-22T06:46:08Z caller=logging.go:85 method=Health result=2 took=26.06µs +ts=2025-05-22T06:46:11Z caller=logging.go:85 method=Health result=2 took=38.749µs +ts=2025-05-22T06:46:11Z caller=logging.go:85 method=Health result=2 took=38.879µs +ts=2025-05-22T06:46:14Z caller=logging.go:85 method=Health result=2 took=36.1µs +ts=2025-05-22T06:46:14Z caller=logging.go:85 method=Health result=2 took=33.15µs +ts=2025-05-22T06:46:17Z caller=logging.go:85 method=Health result=2 took=56.618µs +ts=2025-05-22T06:46:17Z caller=logging.go:85 method=Health result=2 took=141.157µs +ts=2025-05-22T06:46:20Z caller=logging.go:85 method=Health result=2 took=39.599µs +ts=2025-05-22T06:46:20Z caller=logging.go:85 method=Health result=2 took=39.519µs +ts=2025-05-22T06:46:23Z caller=logging.go:85 method=Health result=2 took=35.529µs +ts=2025-05-22T06:46:23Z caller=logging.go:85 method=Health result=2 took=13.21µs +ts=2025-05-22T06:46:26Z caller=logging.go:85 method=Health result=2 took=41.699µs +ts=2025-05-22T06:46:26Z caller=logging.go:85 method=Health result=2 took=49.159µs +ts=2025-05-22T06:46:29Z caller=logging.go:85 method=Health result=2 took=39.639µs +ts=2025-05-22T06:46:29Z caller=logging.go:85 method=Health result=2 took=48.809µs +ts=2025-05-22T06:46:32Z caller=logging.go:85 method=Health result=2 took=42.709µs +ts=2025-05-22T06:46:32Z caller=logging.go:85 method=Health result=2 took=43.659µs +ts=2025-05-22T06:46:35Z caller=logging.go:85 method=Health result=2 took=41.599µs +ts=2025-05-22T06:46:35Z caller=logging.go:85 method=Health result=2 took=49.339µs +ts=2025-05-22T06:46:38Z caller=logging.go:85 method=Health result=2 took=45.149µs +ts=2025-05-22T06:46:38Z caller=logging.go:85 method=Health result=2 took=29.449µs +ts=2025-05-22T06:46:41Z caller=logging.go:85 method=Health result=2 took=40.259µs +ts=2025-05-22T06:46:41Z caller=logging.go:85 method=Health result=2 took=53.048µs +ts=2025-05-22T06:46:44Z caller=logging.go:85 method=Health result=2 took=41.999µs +ts=2025-05-22T06:46:44Z caller=logging.go:85 method=Health result=2 took=50.089µs +ts=2025-05-22T06:46:47Z caller=logging.go:85 method=Health result=2 took=41.519µs +ts=2025-05-22T06:46:47Z caller=logging.go:85 method=Health result=2 took=41.509µs +ts=2025-05-22T06:46:50Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T06:46:50Z caller=logging.go:85 method=Health result=2 took=22.789µs +ts=2025-05-22T06:46:53Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T06:46:53Z caller=logging.go:85 method=Health result=2 took=44.549µs +ts=2025-05-22T06:46:56Z caller=logging.go:85 method=Health result=2 took=38.129µs +ts=2025-05-22T06:46:56Z caller=logging.go:85 method=Health result=2 took=44.789µs +ts=2025-05-22T06:46:59Z caller=logging.go:85 method=Health result=2 took=30.029µs +ts=2025-05-22T06:46:59Z caller=logging.go:85 method=Health result=2 took=19.7µs +ts=2025-05-22T06:47:02Z caller=logging.go:85 method=Health result=2 took=35.819µs +ts=2025-05-22T06:47:02Z caller=logging.go:85 method=Health result=2 took=35.699µs +ts=2025-05-22T06:47:05Z caller=logging.go:85 method=Health result=2 took=40.989µs +ts=2025-05-22T06:47:05Z caller=logging.go:85 method=Health result=2 took=55.569µs +ts=2025-05-22T06:47:08Z caller=logging.go:85 method=Health result=2 took=42.368µs +ts=2025-05-22T06:47:08Z caller=logging.go:85 method=Health result=2 took=42.008µs +ts=2025-05-22T06:47:11Z caller=logging.go:85 method=Health result=2 took=44.839µs +ts=2025-05-22T06:47:11Z caller=logging.go:85 method=Health result=2 took=52.819µs +ts=2025-05-22T06:47:14Z caller=logging.go:85 method=Health result=2 took=30.72µs +ts=2025-05-22T06:47:14Z caller=logging.go:85 method=Health result=2 took=43.489µs +ts=2025-05-22T06:47:17Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T06:47:17Z caller=logging.go:85 method=Health result=2 took=43.159µs +ts=2025-05-22T06:47:20Z caller=logging.go:85 method=Health result=2 took=53.859µs +ts=2025-05-22T06:47:20Z caller=logging.go:85 method=Health result=2 took=55.799µs +ts=2025-05-22T06:47:23Z caller=logging.go:85 method=Health result=2 took=40.099µs +ts=2025-05-22T06:47:23Z caller=logging.go:85 method=Health result=2 took=40.459µs +ts=2025-05-22T06:47:26Z caller=logging.go:85 method=Health result=2 took=41.719µs +ts=2025-05-22T06:47:26Z caller=logging.go:85 method=Health result=2 took=48.809µs +ts=2025-05-22T06:47:29Z caller=logging.go:85 method=Health result=2 took=32.939µs +ts=2025-05-22T06:47:29Z caller=logging.go:85 method=Health result=2 took=46.539µs +ts=2025-05-22T06:47:32Z caller=logging.go:85 method=Health result=2 took=37.99µs +ts=2025-05-22T06:47:32Z caller=logging.go:85 method=Health result=2 took=14.84µs +ts=2025-05-22T06:47:35Z caller=logging.go:85 method=Health result=2 took=40.729µs +ts=2025-05-22T06:47:35Z caller=logging.go:85 method=Health result=2 took=23.55µs +ts=2025-05-22T06:47:38Z caller=logging.go:85 method=Health result=2 took=44.409µs +ts=2025-05-22T06:47:38Z caller=logging.go:85 method=Health result=2 took=39.319µs +ts=2025-05-22T06:47:41Z caller=logging.go:85 method=Health result=2 took=46.298µs +ts=2025-05-22T06:47:41Z caller=logging.go:85 method=Health result=2 took=35.52µs +ts=2025-05-22T06:47:44Z caller=logging.go:85 method=Health result=2 took=34.219µs +ts=2025-05-22T06:47:44Z caller=logging.go:85 method=Health result=2 took=34.359µs +ts=2025-05-22T06:47:47Z caller=logging.go:85 method=Health result=2 took=39.44µs +ts=2025-05-22T06:47:47Z caller=logging.go:85 method=Health result=2 took=35.23µs +ts=2025-05-22T06:47:50Z caller=logging.go:85 method=Health result=2 took=58.089µs +ts=2025-05-22T06:47:50Z caller=logging.go:85 method=Health result=2 took=58.099µs +ts=2025-05-22T06:47:53Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T06:47:53Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T06:47:56Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T06:47:56Z caller=logging.go:85 method=Health result=2 took=51.099µs +ts=2025-05-22T06:47:59Z caller=logging.go:85 method=Health result=2 took=43.119µs +ts=2025-05-22T06:47:59Z caller=logging.go:85 method=Health result=2 took=31.49µs +ts=2025-05-22T06:48:02Z caller=logging.go:85 method=Health result=2 took=44.619µs +ts=2025-05-22T06:48:02Z caller=logging.go:85 method=Health result=2 took=82.138µs +ts=2025-05-22T06:48:05Z caller=logging.go:85 method=Health result=2 took=47.719µs +ts=2025-05-22T06:48:05Z caller=logging.go:85 method=Health result=2 took=49.659µs +ts=2025-05-22T06:48:08Z caller=logging.go:85 method=Health result=2 took=37.489µs +ts=2025-05-22T06:48:08Z caller=logging.go:85 method=Health result=2 took=50.428µs +ts=2025-05-22T06:48:11Z caller=logging.go:85 method=Health result=2 took=54.908µs +ts=2025-05-22T06:48:11Z caller=logging.go:85 method=Health result=2 took=54.908µs +ts=2025-05-22T06:48:14Z caller=logging.go:85 method=Health result=2 took=42.149µs +ts=2025-05-22T06:48:14Z caller=logging.go:85 method=Health result=2 took=49.819µs +ts=2025-05-22T06:48:17Z caller=logging.go:85 method=Health result=2 took=899.468µs +ts=2025-05-22T06:48:17Z caller=logging.go:85 method=Health result=2 took=64.548µs +ts=2025-05-22T06:48:20Z caller=logging.go:85 method=Health result=2 took=46.199µs +ts=2025-05-22T06:48:20Z caller=logging.go:85 method=Health result=2 took=45.009µs +ts=2025-05-22T06:48:23Z caller=logging.go:85 method=Health result=2 took=35.819µs +ts=2025-05-22T06:48:23Z caller=logging.go:85 method=Health result=2 took=35.429µs +ts=2025-05-22T06:48:26Z caller=logging.go:85 method=Health result=2 took=36.309µs +ts=2025-05-22T06:48:26Z caller=logging.go:85 method=Health result=2 took=24.459µs +ts=2025-05-22T06:48:29Z caller=logging.go:85 method=Health result=2 took=39.259µs +ts=2025-05-22T06:48:29Z caller=logging.go:85 method=Health result=2 took=47.849µs +ts=2025-05-22T06:48:32Z caller=logging.go:85 method=Health result=2 took=32.229µs +ts=2025-05-22T06:48:32Z caller=logging.go:85 method=Health result=2 took=32.369µs +ts=2025-05-22T06:48:35Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T06:48:35Z caller=logging.go:85 method=Health result=2 took=52.169µs +ts=2025-05-22T06:48:38Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T06:48:38Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T06:48:41Z caller=logging.go:85 method=Health result=2 took=44.229µs +ts=2025-05-22T06:48:41Z caller=logging.go:85 method=Health result=2 took=49.739µs +ts=2025-05-22T06:48:44Z caller=logging.go:85 method=Health result=2 took=44.269µs +ts=2025-05-22T06:48:44Z caller=logging.go:85 method=Health result=2 took=48.899µs +ts=2025-05-22T06:48:47Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T06:48:47Z caller=logging.go:85 method=Health result=2 took=21.179µs +ts=2025-05-22T06:48:50Z caller=logging.go:85 method=Health result=2 took=38.419µs +ts=2025-05-22T06:48:50Z caller=logging.go:85 method=Health result=2 took=38.919µs +ts=2025-05-22T06:48:53Z caller=logging.go:85 method=Health result=2 took=30.78µs +ts=2025-05-22T06:48:53Z caller=logging.go:85 method=Health result=2 took=48.679µs +ts=2025-05-22T06:48:56Z caller=logging.go:85 method=Health result=2 took=41.159µs +ts=2025-05-22T06:48:56Z caller=logging.go:85 method=Health result=2 took=46.518µs +ts=2025-05-22T06:48:59Z caller=logging.go:85 method=Health result=2 took=45.748µs +ts=2025-05-22T06:48:59Z caller=logging.go:85 method=Health result=2 took=46.859µs +ts=2025-05-22T06:49:02Z caller=logging.go:85 method=Health result=2 took=52.069µs +ts=2025-05-22T06:49:02Z caller=logging.go:85 method=Health result=2 took=49.939µs +ts=2025-05-22T06:49:05Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T06:49:05Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T06:49:08Z caller=logging.go:85 method=Health result=2 took=42.509µs +ts=2025-05-22T06:49:08Z caller=logging.go:85 method=Health result=2 took=45.749µs +ts=2025-05-22T06:49:11Z caller=logging.go:85 method=Health result=2 took=31.41µs +ts=2025-05-22T06:49:11Z caller=logging.go:85 method=Health result=2 took=40.079µs +ts=2025-05-22T06:49:14Z caller=logging.go:85 method=Health result=2 took=45.439µs +ts=2025-05-22T06:49:14Z caller=logging.go:85 method=Health result=2 took=50.499µs +ts=2025-05-22T06:49:17Z caller=logging.go:85 method=Health result=2 took=46.259µs +ts=2025-05-22T06:49:17Z caller=logging.go:85 method=Health result=2 took=52.639µs +ts=2025-05-22T06:49:20Z caller=logging.go:85 method=Health result=2 took=41.729µs +ts=2025-05-22T06:49:20Z caller=logging.go:85 method=Health result=2 took=40.729µs +ts=2025-05-22T06:49:23Z caller=logging.go:85 method=Health result=2 took=43.879µs +ts=2025-05-22T06:49:23Z caller=logging.go:85 method=Health result=2 took=48.869µs +ts=2025-05-22T06:49:26Z caller=logging.go:85 method=Health result=2 took=41.849µs +ts=2025-05-22T06:49:26Z caller=logging.go:85 method=Health result=2 took=41.479µs +ts=2025-05-22T06:49:29Z caller=logging.go:85 method=Health result=2 took=41.889µs +ts=2025-05-22T06:49:29Z caller=logging.go:85 method=Health result=2 took=47.549µs +ts=2025-05-22T06:49:32Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T06:49:32Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T06:49:35Z caller=logging.go:85 method=Health result=2 took=36.069µs +ts=2025-05-22T06:49:35Z caller=logging.go:85 method=Health result=2 took=36.129µs +ts=2025-05-22T06:49:38Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T06:49:38Z caller=logging.go:85 method=Health result=2 took=42.059µs +ts=2025-05-22T06:49:41Z caller=logging.go:85 method=Health result=2 took=46.499µs +ts=2025-05-22T06:49:41Z caller=logging.go:85 method=Health result=2 took=45.949µs +ts=2025-05-22T06:49:44Z caller=logging.go:85 method=Health result=2 took=43.159µs +ts=2025-05-22T06:49:44Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T06:49:47Z caller=logging.go:85 method=Health result=2 took=44.039µs +ts=2025-05-22T06:49:47Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T06:49:50Z caller=logging.go:85 method=Health result=2 took=41.099µs +ts=2025-05-22T06:49:50Z caller=logging.go:85 method=Health result=2 took=47.009µs +ts=2025-05-22T06:49:53Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T06:49:53Z caller=logging.go:85 method=Health result=2 took=31.479µs +ts=2025-05-22T06:49:56Z caller=logging.go:85 method=Health result=2 took=45.699µs +ts=2025-05-22T06:49:56Z caller=logging.go:85 method=Health result=2 took=30.45µs +ts=2025-05-22T06:49:59Z caller=logging.go:85 method=Health result=2 took=46.889µs +ts=2025-05-22T06:49:59Z caller=logging.go:85 method=Health result=2 took=48.209µs +ts=2025-05-22T06:50:02Z caller=logging.go:85 method=Health result=2 took=45.259µs +ts=2025-05-22T06:50:02Z caller=logging.go:85 method=Health result=2 took=66.528µs +ts=2025-05-22T06:50:05Z caller=logging.go:85 method=Health result=2 took=63.548µs +ts=2025-05-22T06:50:05Z caller=logging.go:85 method=Health result=2 took=63.438µs +ts=2025-05-22T06:50:08Z caller=logging.go:85 method=Health result=2 took=40.249µs +ts=2025-05-22T06:50:08Z caller=logging.go:85 method=Health result=2 took=27.67µs +ts=2025-05-22T06:50:11Z caller=logging.go:85 method=Health result=2 took=44.329µs +ts=2025-05-22T06:50:11Z caller=logging.go:85 method=Health result=2 took=69.208µs +ts=2025-05-22T06:50:14Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T06:50:14Z caller=logging.go:85 method=Health result=2 took=48.849µs +ts=2025-05-22T06:50:17Z caller=logging.go:85 method=Health result=2 took=860.559µs +ts=2025-05-22T06:50:17Z caller=logging.go:85 method=Health result=2 took=903.488µs +ts=2025-05-22T06:50:20Z caller=logging.go:85 method=Health result=2 took=43.969µs +ts=2025-05-22T06:50:20Z caller=logging.go:85 method=Health result=2 took=27.649µs +ts=2025-05-22T06:50:23Z caller=logging.go:85 method=Health result=2 took=37.769µs +ts=2025-05-22T06:50:23Z caller=logging.go:85 method=Health result=2 took=47.999µs +ts=2025-05-22T06:50:26Z caller=logging.go:85 method=Health result=2 took=43.959µs +ts=2025-05-22T06:50:26Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T06:50:29Z caller=logging.go:85 method=Health result=2 took=35.679µs +ts=2025-05-22T06:50:29Z caller=logging.go:85 method=Health result=2 took=50.319µs +ts=2025-05-22T06:50:32Z caller=logging.go:85 method=Health result=2 took=50.209µs +ts=2025-05-22T06:50:32Z caller=logging.go:85 method=Health result=2 took=29.84µs +ts=2025-05-22T06:50:35Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T06:50:35Z caller=logging.go:85 method=Health result=2 took=42.859µs +ts=2025-05-22T06:50:38Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T06:50:38Z caller=logging.go:85 method=Health result=2 took=25.09µs +ts=2025-05-22T06:50:41Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T06:50:41Z caller=logging.go:85 method=Health result=2 took=42.799µs +ts=2025-05-22T06:50:44Z caller=logging.go:85 method=Health result=2 took=35.559µs +ts=2025-05-22T06:50:44Z caller=logging.go:85 method=Health result=2 took=25.37µs +ts=2025-05-22T06:50:47Z caller=logging.go:85 method=Health result=2 took=38.619µs +ts=2025-05-22T06:50:47Z caller=logging.go:85 method=Health result=2 took=46.629µs +ts=2025-05-22T06:50:50Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T06:50:50Z caller=logging.go:85 method=Health result=2 took=19.45µs +ts=2025-05-22T06:50:53Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T06:50:53Z caller=logging.go:85 method=Health result=2 took=42.339µs +ts=2025-05-22T06:50:56Z caller=logging.go:85 method=Health result=2 took=31.209µs +ts=2025-05-22T06:50:56Z caller=logging.go:85 method=Health result=2 took=47.539µs +ts=2025-05-22T06:50:59Z caller=logging.go:85 method=Health result=2 took=29.639µs +ts=2025-05-22T06:50:59Z caller=logging.go:85 method=Health result=2 took=45.609µs +ts=2025-05-22T06:51:02Z caller=logging.go:85 method=Health result=2 took=31.719µs +ts=2025-05-22T06:51:02Z caller=logging.go:85 method=Health result=2 took=47.269µs +ts=2025-05-22T06:51:05Z caller=logging.go:85 method=Health result=2 took=59.269µs +ts=2025-05-22T06:51:05Z caller=logging.go:85 method=Health result=2 took=36.199µs +ts=2025-05-22T06:51:08Z caller=logging.go:85 method=Health result=2 took=49.999µs +ts=2025-05-22T06:51:08Z caller=logging.go:85 method=Health result=2 took=49.599µs +ts=2025-05-22T06:51:11Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T06:51:11Z caller=logging.go:85 method=Health result=2 took=44.179µs +ts=2025-05-22T06:51:14Z caller=logging.go:85 method=Health result=2 took=36.449µs +ts=2025-05-22T06:51:14Z caller=logging.go:85 method=Health result=2 took=11.81µs +ts=2025-05-22T06:51:17Z caller=logging.go:85 method=Health result=2 took=52.078µs +ts=2025-05-22T06:51:17Z caller=logging.go:85 method=Health result=2 took=23.689µs +ts=2025-05-22T06:51:20Z caller=logging.go:85 method=Health result=2 took=41.679µs +ts=2025-05-22T06:51:20Z caller=logging.go:85 method=Health result=2 took=42.659µs +ts=2025-05-22T06:51:23Z caller=logging.go:85 method=Health result=2 took=41.459µs +ts=2025-05-22T06:51:23Z caller=logging.go:85 method=Health result=2 took=48.409µs +ts=2025-05-22T06:51:26Z caller=logging.go:85 method=Health result=2 took=42.329µs +ts=2025-05-22T06:51:26Z caller=logging.go:85 method=Health result=2 took=42.899µs +ts=2025-05-22T06:51:29Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T06:51:29Z caller=logging.go:85 method=Health result=2 took=30.71µs +ts=2025-05-22T06:51:32Z caller=logging.go:85 method=Health result=2 took=32.659µs +ts=2025-05-22T06:51:32Z caller=logging.go:85 method=Health result=2 took=37.77µs +ts=2025-05-22T06:51:35Z caller=logging.go:85 method=Health result=2 took=31.119µs +ts=2025-05-22T06:51:35Z caller=logging.go:85 method=Health result=2 took=47.519µs +ts=2025-05-22T06:51:38Z caller=logging.go:85 method=Health result=2 took=45.249µs +ts=2025-05-22T06:51:38Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T06:51:41Z caller=logging.go:85 method=Health result=2 took=46.099µs +ts=2025-05-22T06:51:41Z caller=logging.go:85 method=Health result=2 took=47.908µs +ts=2025-05-22T06:51:44Z caller=logging.go:85 method=Health result=2 took=45.899µs +ts=2025-05-22T06:51:44Z caller=logging.go:85 method=Health result=2 took=49.109µs +ts=2025-05-22T06:51:47Z caller=logging.go:85 method=Health result=2 took=43.039µs +ts=2025-05-22T06:51:47Z caller=logging.go:85 method=Health result=2 took=45.129µs +ts=2025-05-22T06:51:50Z caller=logging.go:85 method=Health result=2 took=37.25µs +ts=2025-05-22T06:51:50Z caller=logging.go:85 method=Health result=2 took=47.309µs +ts=2025-05-22T06:51:53Z caller=logging.go:85 method=Health result=2 took=45.908µs +ts=2025-05-22T06:51:53Z caller=logging.go:85 method=Health result=2 took=43.549µs +ts=2025-05-22T06:51:56Z caller=logging.go:85 method=Health result=2 took=38.109µs +ts=2025-05-22T06:51:56Z caller=logging.go:85 method=Health result=2 took=38.829µs +ts=2025-05-22T06:51:59Z caller=logging.go:85 method=Health result=2 took=28.749µs +ts=2025-05-22T06:51:59Z caller=logging.go:85 method=Health result=2 took=28.759µs +ts=2025-05-22T06:52:02Z caller=logging.go:85 method=Health result=2 took=37.859µs +ts=2025-05-22T06:52:02Z caller=logging.go:85 method=Health result=2 took=57.858µs +ts=2025-05-22T06:52:05Z caller=logging.go:85 method=Health result=2 took=40.67µs +ts=2025-05-22T06:52:05Z caller=logging.go:85 method=Health result=2 took=49.699µs +ts=2025-05-22T06:52:08Z caller=logging.go:85 method=Health result=2 took=29.47µs +ts=2025-05-22T06:52:08Z caller=logging.go:85 method=Health result=2 took=55.409µs +ts=2025-05-22T06:52:11Z caller=logging.go:85 method=Health result=2 took=39.419µs +ts=2025-05-22T06:52:11Z caller=logging.go:85 method=Health result=2 took=25.119µs +ts=2025-05-22T06:52:14Z caller=logging.go:85 method=Health result=2 took=44.218µs +ts=2025-05-22T06:52:14Z caller=logging.go:85 method=Health result=2 took=50.269µs +ts=2025-05-22T06:52:17Z caller=logging.go:85 method=Health result=2 took=46.428µs +ts=2025-05-22T06:52:17Z caller=logging.go:85 method=Health result=2 took=17.579µs +ts=2025-05-22T06:52:20Z caller=logging.go:85 method=Health result=2 took=35.739µs +ts=2025-05-22T06:52:20Z caller=logging.go:85 method=Health result=2 took=54.649µs +ts=2025-05-22T06:52:23Z caller=logging.go:85 method=Health result=2 took=39.969µs +ts=2025-05-22T06:52:23Z caller=logging.go:85 method=Health result=2 took=28.499µs +ts=2025-05-22T06:52:26Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T06:52:26Z caller=logging.go:85 method=Health result=2 took=42.929µs +ts=2025-05-22T06:52:29Z caller=logging.go:85 method=Health result=2 took=39.999µs +ts=2025-05-22T06:52:29Z caller=logging.go:85 method=Health result=2 took=39.999µs +ts=2025-05-22T06:52:32Z caller=logging.go:85 method=Health result=2 took=32.279µs +ts=2025-05-22T06:52:32Z caller=logging.go:85 method=Health result=2 took=43.749µs +ts=2025-05-22T06:52:35Z caller=logging.go:85 method=Health result=2 took=47.809µs +ts=2025-05-22T06:52:35Z caller=logging.go:85 method=Health result=2 took=51.479µs +ts=2025-05-22T06:52:38Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T06:52:38Z caller=logging.go:85 method=Health result=2 took=52.338µs +ts=2025-05-22T06:52:41Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T06:52:41Z caller=logging.go:85 method=Health result=2 took=43.339µs +ts=2025-05-22T06:52:44Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T06:52:44Z caller=logging.go:85 method=Health result=2 took=49.169µs +ts=2025-05-22T06:52:47Z caller=logging.go:85 method=Health result=2 took=40.529µs +ts=2025-05-22T06:52:47Z caller=logging.go:85 method=Health result=2 took=40.069µs +ts=2025-05-22T06:52:50Z caller=logging.go:85 method=Health result=2 took=32.429µs +ts=2025-05-22T06:52:50Z caller=logging.go:85 method=Health result=2 took=46.199µs +ts=2025-05-22T06:52:53Z caller=logging.go:85 method=Health result=2 took=26.859µs +ts=2025-05-22T06:52:53Z caller=logging.go:85 method=Health result=2 took=27.289µs +ts=2025-05-22T06:52:56Z caller=logging.go:85 method=Health result=2 took=44.069µs +ts=2025-05-22T06:52:56Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T06:52:59Z caller=logging.go:85 method=Health result=2 took=41.159µs +ts=2025-05-22T06:52:59Z caller=logging.go:85 method=Health result=2 took=49.249µs +ts=2025-05-22T06:53:02Z caller=logging.go:85 method=Health result=2 took=43.659µs +ts=2025-05-22T06:53:02Z caller=logging.go:85 method=Health result=2 took=44.249µs +ts=2025-05-22T06:53:05Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T06:53:05Z caller=logging.go:85 method=Health result=2 took=48.979µs +ts=2025-05-22T06:53:08Z caller=logging.go:85 method=Health result=2 took=40.689µs +ts=2025-05-22T06:53:08Z caller=logging.go:85 method=Health result=2 took=62.908µs +ts=2025-05-22T06:53:11Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T06:53:11Z caller=logging.go:85 method=Health result=2 took=50.219µs +ts=2025-05-22T06:53:14Z caller=logging.go:85 method=Health result=2 took=42.468µs +ts=2025-05-22T06:53:14Z caller=logging.go:85 method=Health result=2 took=50.449µs +ts=2025-05-22T06:53:17Z caller=logging.go:85 method=Health result=2 took=29.18µs +ts=2025-05-22T06:53:17Z caller=logging.go:85 method=Health result=2 took=13.83µs +ts=2025-05-22T06:53:20Z caller=logging.go:85 method=Health result=2 took=31.199µs +ts=2025-05-22T06:53:20Z caller=logging.go:85 method=Health result=2 took=47.919µs +ts=2025-05-22T06:53:23Z caller=logging.go:85 method=Health result=2 took=38.529µs +ts=2025-05-22T06:53:23Z caller=logging.go:85 method=Health result=2 took=38.609µs +ts=2025-05-22T06:53:26Z caller=logging.go:85 method=Health result=2 took=32.209µs +ts=2025-05-22T06:53:26Z caller=logging.go:85 method=Health result=2 took=42.799µs +ts=2025-05-22T06:53:29Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T06:53:29Z caller=logging.go:85 method=Health result=2 took=49.479µs +ts=2025-05-22T06:53:32Z caller=logging.go:85 method=Health result=2 took=28.679µs +ts=2025-05-22T06:53:32Z caller=logging.go:85 method=Health result=2 took=12.61µs +ts=2025-05-22T06:53:35Z caller=logging.go:85 method=Health result=2 took=40.479µs +ts=2025-05-22T06:53:35Z caller=logging.go:85 method=Health result=2 took=42.689µs +ts=2025-05-22T06:53:38Z caller=logging.go:85 method=Health result=2 took=58.279µs +ts=2025-05-22T06:53:38Z caller=logging.go:85 method=Health result=2 took=58.249µs +ts=2025-05-22T06:53:41Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T06:53:41Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T06:53:44Z caller=logging.go:85 method=Health result=2 took=43.909µs +ts=2025-05-22T06:53:44Z caller=logging.go:85 method=Health result=2 took=50.479µs +ts=2025-05-22T06:53:47Z caller=logging.go:85 method=Health result=2 took=40.409µs +ts=2025-05-22T06:53:47Z caller=logging.go:85 method=Health result=2 took=41.189µs +ts=2025-05-22T06:53:50Z caller=logging.go:85 method=Health result=2 took=43.599µs +ts=2025-05-22T06:53:50Z caller=logging.go:85 method=Health result=2 took=43.749µs +ts=2025-05-22T06:53:53Z caller=logging.go:85 method=Health result=2 took=29.139µs +ts=2025-05-22T06:53:53Z caller=logging.go:85 method=Health result=2 took=14.209µs +ts=2025-05-22T06:53:56Z caller=logging.go:85 method=Health result=2 took=50.449µs +ts=2025-05-22T06:53:56Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T06:53:59Z caller=logging.go:85 method=Health result=2 took=29µs +ts=2025-05-22T06:53:59Z caller=logging.go:85 method=Health result=2 took=28.99µs +ts=2025-05-22T06:54:02Z caller=logging.go:85 method=Health result=2 took=12.91µs +ts=2025-05-22T06:54:02Z caller=logging.go:85 method=Health result=2 took=36.699µs +ts=2025-05-22T06:54:05Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T06:54:05Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T06:54:08Z caller=logging.go:85 method=Health result=2 took=46.208µs +ts=2025-05-22T06:54:08Z caller=logging.go:85 method=Health result=2 took=47.419µs +ts=2025-05-22T06:54:11Z caller=logging.go:85 method=Health result=2 took=40.919µs +ts=2025-05-22T06:54:11Z caller=logging.go:85 method=Health result=2 took=41.919µs +ts=2025-05-22T06:54:14Z caller=logging.go:85 method=Health result=2 took=45.379µs +ts=2025-05-22T06:54:14Z caller=logging.go:85 method=Health result=2 took=50.068µs +ts=2025-05-22T06:54:17Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T06:54:17Z caller=logging.go:85 method=Health result=2 took=24.25µs +ts=2025-05-22T06:54:20Z caller=logging.go:85 method=Health result=2 took=29.299µs +ts=2025-05-22T06:54:20Z caller=logging.go:85 method=Health result=2 took=13.109µs +ts=2025-05-22T06:54:23Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T06:54:23Z caller=logging.go:85 method=Health result=2 took=42.659µs +ts=2025-05-22T06:54:26Z caller=logging.go:85 method=Health result=2 took=46.859µs +ts=2025-05-22T06:54:26Z caller=logging.go:85 method=Health result=2 took=51.099µs +ts=2025-05-22T06:54:29Z caller=logging.go:85 method=Health result=2 took=43.739µs +ts=2025-05-22T06:54:29Z caller=logging.go:85 method=Health result=2 took=42.379µs +ts=2025-05-22T06:54:32Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T06:54:32Z caller=logging.go:85 method=Health result=2 took=53.589µs +ts=2025-05-22T06:54:35Z caller=logging.go:85 method=Health result=2 took=30.71µs +ts=2025-05-22T06:54:35Z caller=logging.go:85 method=Health result=2 took=46.889µs +ts=2025-05-22T06:54:38Z caller=logging.go:85 method=Health result=2 took=31.749µs +ts=2025-05-22T06:54:38Z caller=logging.go:85 method=Health result=2 took=48.539µs +ts=2025-05-22T06:54:41Z caller=logging.go:85 method=Health result=2 took=44.509µs +ts=2025-05-22T06:54:41Z caller=logging.go:85 method=Health result=2 took=50.849µs +ts=2025-05-22T06:54:44Z caller=logging.go:85 method=Health result=2 took=45.549µs +ts=2025-05-22T06:54:44Z caller=logging.go:85 method=Health result=2 took=50.978µs +ts=2025-05-22T06:54:47Z caller=logging.go:85 method=Health result=2 took=38.719µs +ts=2025-05-22T06:54:47Z caller=logging.go:85 method=Health result=2 took=17.45µs +ts=2025-05-22T06:54:50Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T06:54:50Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T06:54:53Z caller=logging.go:85 method=Health result=2 took=42.039µs +ts=2025-05-22T06:54:53Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T06:54:56Z caller=logging.go:85 method=Health result=2 took=45.949µs +ts=2025-05-22T06:54:56Z caller=logging.go:85 method=Health result=2 took=48.519µs +ts=2025-05-22T06:54:59Z caller=logging.go:85 method=Health result=2 took=41.699µs +ts=2025-05-22T06:54:59Z caller=logging.go:85 method=Health result=2 took=42.749µs +ts=2025-05-22T06:55:02Z caller=logging.go:85 method=Health result=2 took=44.399µs +ts=2025-05-22T06:55:02Z caller=logging.go:85 method=Health result=2 took=54.868µs +ts=2025-05-22T06:55:05Z caller=logging.go:85 method=Health result=2 took=44.839µs +ts=2025-05-22T06:55:05Z caller=logging.go:85 method=Health result=2 took=50.719µs +ts=2025-05-22T06:55:08Z caller=logging.go:85 method=Health result=2 took=36.14µs +ts=2025-05-22T06:55:08Z caller=logging.go:85 method=Health result=2 took=24.049µs +ts=2025-05-22T06:55:11Z caller=logging.go:85 method=Health result=2 took=36.559µs +ts=2025-05-22T06:55:11Z caller=logging.go:85 method=Health result=2 took=36.989µs +ts=2025-05-22T06:55:14Z caller=logging.go:85 method=Health result=2 took=42.339µs +ts=2025-05-22T06:55:14Z caller=logging.go:85 method=Health result=2 took=58.998µs +ts=2025-05-22T06:55:17Z caller=logging.go:85 method=Health result=2 took=34.579µs +ts=2025-05-22T06:55:17Z caller=logging.go:85 method=Health result=2 took=46.579µs +ts=2025-05-22T06:55:20Z caller=logging.go:85 method=Health result=2 took=37.569µs +ts=2025-05-22T06:55:20Z caller=logging.go:85 method=Health result=2 took=37.379µs +ts=2025-05-22T06:55:23Z caller=logging.go:85 method=Health result=2 took=44.869µs +ts=2025-05-22T06:55:23Z caller=logging.go:85 method=Health result=2 took=52.188µs +ts=2025-05-22T06:55:26Z caller=logging.go:85 method=Health result=2 took=40.859µs +ts=2025-05-22T06:55:26Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T06:55:29Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T06:55:29Z caller=logging.go:85 method=Health result=2 took=24.13µs +ts=2025-05-22T06:55:32Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T06:55:32Z caller=logging.go:85 method=Health result=2 took=43.739µs +ts=2025-05-22T06:55:35Z caller=logging.go:85 method=Health result=2 took=30.059µs +ts=2025-05-22T06:55:35Z caller=logging.go:85 method=Health result=2 took=29.999µs +ts=2025-05-22T06:55:38Z caller=logging.go:85 method=Health result=2 took=57.999µs +ts=2025-05-22T06:55:38Z caller=logging.go:85 method=Health result=2 took=25.399µs +ts=2025-05-22T06:55:41Z caller=logging.go:85 method=Health result=2 took=45.369µs +ts=2025-05-22T06:55:41Z caller=logging.go:85 method=Health result=2 took=49.788µs +ts=2025-05-22T06:55:44Z caller=logging.go:85 method=Health result=2 took=45.429µs +ts=2025-05-22T06:55:44Z caller=logging.go:85 method=Health result=2 took=48.908µs +ts=2025-05-22T06:55:47Z caller=logging.go:85 method=Health result=2 took=40.419µs +ts=2025-05-22T06:55:47Z caller=logging.go:85 method=Health result=2 took=39.909µs +ts=2025-05-22T06:55:50Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T06:55:50Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T06:55:53Z caller=logging.go:85 method=Health result=2 took=39.929µs +ts=2025-05-22T06:55:53Z caller=logging.go:85 method=Health result=2 took=39.609µs +ts=2025-05-22T06:55:56Z caller=logging.go:85 method=Health result=2 took=41.979µs +ts=2025-05-22T06:55:56Z caller=logging.go:85 method=Health result=2 took=49.539µs +ts=2025-05-22T06:55:59Z caller=logging.go:85 method=Health result=2 took=35.799µs +ts=2025-05-22T06:55:59Z caller=logging.go:85 method=Health result=2 took=35.629µs +ts=2025-05-22T06:56:02Z caller=logging.go:85 method=Health result=2 took=69.579µs +ts=2025-05-22T06:56:02Z caller=logging.go:85 method=Health result=2 took=72.498µs +ts=2025-05-22T06:56:05Z caller=logging.go:85 method=Health result=2 took=44.049µs +ts=2025-05-22T06:56:05Z caller=logging.go:85 method=Health result=2 took=49.889µs +ts=2025-05-22T06:56:08Z caller=logging.go:85 method=Health result=2 took=44.639µs +ts=2025-05-22T06:56:08Z caller=logging.go:85 method=Health result=2 took=50.089µs +ts=2025-05-22T06:56:11Z caller=logging.go:85 method=Health result=2 took=43.929µs +ts=2025-05-22T06:56:11Z caller=logging.go:85 method=Health result=2 took=31.7µs +ts=2025-05-22T06:56:14Z caller=logging.go:85 method=Health result=2 took=45.399µs +ts=2025-05-22T06:56:14Z caller=logging.go:85 method=Health result=2 took=46.409µs +ts=2025-05-22T06:56:17Z caller=logging.go:85 method=Health result=2 took=32.289µs +ts=2025-05-22T06:56:17Z caller=logging.go:85 method=Health result=2 took=81.018µs +ts=2025-05-22T06:56:20Z caller=logging.go:85 method=Health result=2 took=46.309µs +ts=2025-05-22T06:56:20Z caller=logging.go:85 method=Health result=2 took=39.879µs +ts=2025-05-22T06:56:23Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T06:56:23Z caller=logging.go:85 method=Health result=2 took=42.779µs +ts=2025-05-22T06:56:26Z caller=logging.go:85 method=Health result=2 took=33.349µs +ts=2025-05-22T06:56:26Z caller=logging.go:85 method=Health result=2 took=48.019µs +ts=2025-05-22T06:56:29Z caller=logging.go:85 method=Health result=2 took=36.559µs +ts=2025-05-22T06:56:29Z caller=logging.go:85 method=Health result=2 took=16.59µs +ts=2025-05-22T06:56:32Z caller=logging.go:85 method=Health result=2 took=39.519µs +ts=2025-05-22T06:56:32Z caller=logging.go:85 method=Health result=2 took=39.789µs +ts=2025-05-22T06:56:35Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T06:56:35Z caller=logging.go:85 method=Health result=2 took=63.159µs +ts=2025-05-22T06:56:38Z caller=logging.go:85 method=Health result=2 took=46.659µs +ts=2025-05-22T06:56:38Z caller=logging.go:85 method=Health result=2 took=48.369µs +ts=2025-05-22T06:56:41Z caller=logging.go:85 method=Health result=2 took=41.989µs +ts=2025-05-22T06:56:41Z caller=logging.go:85 method=Health result=2 took=40.219µs +ts=2025-05-22T06:56:44Z caller=logging.go:85 method=Health result=2 took=44.269µs +ts=2025-05-22T06:56:44Z caller=logging.go:85 method=Health result=2 took=39.679µs +ts=2025-05-22T06:56:47Z caller=logging.go:85 method=Health result=2 took=45.019µs +ts=2025-05-22T06:56:47Z caller=logging.go:85 method=Health result=2 took=46.159µs +ts=2025-05-22T06:56:50Z caller=logging.go:85 method=Health result=2 took=43.789µs +ts=2025-05-22T06:56:50Z caller=logging.go:85 method=Health result=2 took=30.45µs +ts=2025-05-22T06:56:53Z caller=logging.go:85 method=Health result=2 took=43.749µs +ts=2025-05-22T06:56:53Z caller=logging.go:85 method=Health result=2 took=43.329µs +ts=2025-05-22T06:56:56Z caller=logging.go:85 method=Health result=2 took=30.349µs +ts=2025-05-22T06:56:56Z caller=logging.go:85 method=Health result=2 took=16.07µs +ts=2025-05-22T06:56:59Z caller=logging.go:85 method=Health result=2 took=36.289µs +ts=2025-05-22T06:56:59Z caller=logging.go:85 method=Health result=2 took=36.919µs +ts=2025-05-22T06:57:02Z caller=logging.go:85 method=Health result=2 took=39.11µs +ts=2025-05-22T06:57:02Z caller=logging.go:85 method=Health result=2 took=51.628µs +ts=2025-05-22T06:57:05Z caller=logging.go:85 method=Health result=2 took=53.568µs +ts=2025-05-22T06:57:05Z caller=logging.go:85 method=Health result=2 took=53.418µs +ts=2025-05-22T06:57:08Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T06:57:08Z caller=logging.go:85 method=Health result=2 took=42.849µs +ts=2025-05-22T06:57:11Z caller=logging.go:85 method=Health result=2 took=39.339µs +ts=2025-05-22T06:57:11Z caller=logging.go:85 method=Health result=2 took=47.508µs +ts=2025-05-22T06:57:14Z caller=logging.go:85 method=Health result=2 took=33.899µs +ts=2025-05-22T06:57:14Z caller=logging.go:85 method=Health result=2 took=44.139µs +ts=2025-05-22T06:57:17Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T06:57:17Z caller=logging.go:85 method=Health result=2 took=51.429µs +ts=2025-05-22T06:57:20Z caller=logging.go:85 method=Health result=2 took=45.308µs +ts=2025-05-22T06:57:20Z caller=logging.go:85 method=Health result=2 took=45.519µs +ts=2025-05-22T06:57:23Z caller=logging.go:85 method=Health result=2 took=44.749µs +ts=2025-05-22T06:57:23Z caller=logging.go:85 method=Health result=2 took=47.999µs +ts=2025-05-22T06:57:26Z caller=logging.go:85 method=Health result=2 took=39.419µs +ts=2025-05-22T06:57:26Z caller=logging.go:85 method=Health result=2 took=38.859µs +ts=2025-05-22T06:57:29Z caller=logging.go:85 method=Health result=2 took=40.349µs +ts=2025-05-22T06:57:29Z caller=logging.go:85 method=Health result=2 took=28.22µs +ts=2025-05-22T06:57:32Z caller=logging.go:85 method=Health result=2 took=42.559µs +ts=2025-05-22T06:57:32Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T06:57:35Z caller=logging.go:85 method=Health result=2 took=41.899µs +ts=2025-05-22T06:57:35Z caller=logging.go:85 method=Health result=2 took=48.849µs +ts=2025-05-22T06:57:38Z caller=logging.go:85 method=Health result=2 took=44.448µs +ts=2025-05-22T06:57:38Z caller=logging.go:85 method=Health result=2 took=48.779µs +ts=2025-05-22T06:57:41Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T06:57:41Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T06:57:44Z caller=logging.go:85 method=Health result=2 took=43.818µs +ts=2025-05-22T06:57:44Z caller=logging.go:85 method=Health result=2 took=30.27µs +ts=2025-05-22T06:57:47Z caller=logging.go:85 method=Health result=2 took=32.249µs +ts=2025-05-22T06:57:47Z caller=logging.go:85 method=Health result=2 took=47.568µs +ts=2025-05-22T06:57:50Z caller=logging.go:85 method=Health result=2 took=29.91µs +ts=2025-05-22T06:57:50Z caller=logging.go:85 method=Health result=2 took=46.939µs +ts=2025-05-22T06:57:53Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T06:57:53Z caller=logging.go:85 method=Health result=2 took=49.428µs +ts=2025-05-22T06:57:56Z caller=logging.go:85 method=Health result=2 took=31.889µs +ts=2025-05-22T06:57:56Z caller=logging.go:85 method=Health result=2 took=14.26µs +ts=2025-05-22T06:57:59Z caller=logging.go:85 method=Health result=2 took=43.399µs +ts=2025-05-22T06:57:59Z caller=logging.go:85 method=Health result=2 took=41.719µs +ts=2025-05-22T06:58:02Z caller=logging.go:85 method=Health result=2 took=40.539µs +ts=2025-05-22T06:58:02Z caller=logging.go:85 method=Health result=2 took=22.33µs +ts=2025-05-22T06:58:05Z caller=logging.go:85 method=Health result=2 took=14.9µs +ts=2025-05-22T06:58:05Z caller=logging.go:85 method=Health result=2 took=29.489µs +ts=2025-05-22T06:58:08Z caller=logging.go:85 method=Health result=2 took=37.049µs +ts=2025-05-22T06:58:08Z caller=logging.go:85 method=Health result=2 took=36.979µs +ts=2025-05-22T06:58:11Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T06:58:11Z caller=logging.go:85 method=Health result=2 took=38.219µs +ts=2025-05-22T06:58:14Z caller=logging.go:85 method=Health result=2 took=45.729µs +ts=2025-05-22T06:58:14Z caller=logging.go:85 method=Health result=2 took=47.099µs +ts=2025-05-22T06:58:17Z caller=logging.go:85 method=Health result=2 took=1.118684ms +ts=2025-05-22T06:58:17Z caller=logging.go:85 method=Health result=2 took=87.798µs +ts=2025-05-22T06:58:20Z caller=logging.go:85 method=Health result=2 took=40.879µs +ts=2025-05-22T06:58:20Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T06:58:23Z caller=logging.go:85 method=Health result=2 took=27.069µs +ts=2025-05-22T06:58:23Z caller=logging.go:85 method=Health result=2 took=61.229µs +ts=2025-05-22T06:58:26Z caller=logging.go:85 method=Health result=2 took=43.599µs +ts=2025-05-22T06:58:26Z caller=logging.go:85 method=Health result=2 took=49.259µs +ts=2025-05-22T06:58:29Z caller=logging.go:85 method=Health result=2 took=45.809µs +ts=2025-05-22T06:58:29Z caller=logging.go:85 method=Health result=2 took=47.339µs +ts=2025-05-22T06:58:32Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T06:58:32Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T06:58:35Z caller=logging.go:85 method=Health result=2 took=44.379µs +ts=2025-05-22T06:58:35Z caller=logging.go:85 method=Health result=2 took=50.169µs +ts=2025-05-22T06:58:38Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T06:58:38Z caller=logging.go:85 method=Health result=2 took=42.209µs +ts=2025-05-22T06:58:41Z caller=logging.go:85 method=Health result=2 took=42.499µs +ts=2025-05-22T06:58:41Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T06:58:44Z caller=logging.go:85 method=Health result=2 took=44.429µs +ts=2025-05-22T06:58:44Z caller=logging.go:85 method=Health result=2 took=52.198µs +ts=2025-05-22T06:58:47Z caller=logging.go:85 method=Health result=2 took=45.719µs +ts=2025-05-22T06:58:47Z caller=logging.go:85 method=Health result=2 took=48.529µs +ts=2025-05-22T06:58:50Z caller=logging.go:85 method=Health result=2 took=28.309µs +ts=2025-05-22T06:58:50Z caller=logging.go:85 method=Health result=2 took=28.349µs +ts=2025-05-22T06:58:53Z caller=logging.go:85 method=Health result=2 took=39.319µs +ts=2025-05-22T06:58:53Z caller=logging.go:85 method=Health result=2 took=24.619µs +ts=2025-05-22T06:58:56Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T06:58:56Z caller=logging.go:85 method=Health result=2 took=52.788µs +ts=2025-05-22T06:58:59Z caller=logging.go:85 method=Health result=2 took=38.22µs +ts=2025-05-22T06:58:59Z caller=logging.go:85 method=Health result=2 took=38.3µs +ts=2025-05-22T06:59:02Z caller=logging.go:85 method=Health result=2 took=41.479µs +ts=2025-05-22T06:59:02Z caller=logging.go:85 method=Health result=2 took=24.269µs +ts=2025-05-22T06:59:05Z caller=logging.go:85 method=Health result=2 took=45.399µs +ts=2025-05-22T06:59:05Z caller=logging.go:85 method=Health result=2 took=52.569µs +ts=2025-05-22T06:59:08Z caller=logging.go:85 method=Health result=2 took=39.079µs +ts=2025-05-22T06:59:08Z caller=logging.go:85 method=Health result=2 took=37.509µs +ts=2025-05-22T06:59:11Z caller=logging.go:85 method=Health result=2 took=43.149µs +ts=2025-05-22T06:59:11Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T06:59:14Z caller=logging.go:85 method=Health result=2 took=46.389µs +ts=2025-05-22T06:59:14Z caller=logging.go:85 method=Health result=2 took=48.069µs +ts=2025-05-22T06:59:17Z caller=logging.go:85 method=Health result=2 took=40.309µs +ts=2025-05-22T06:59:17Z caller=logging.go:85 method=Health result=2 took=38.329µs +ts=2025-05-22T06:59:20Z caller=logging.go:85 method=Health result=2 took=30.149µs +ts=2025-05-22T06:59:20Z caller=logging.go:85 method=Health result=2 took=13.61µs +ts=2025-05-22T06:59:23Z caller=logging.go:85 method=Health result=2 took=34.019µs +ts=2025-05-22T06:59:23Z caller=logging.go:85 method=Health result=2 took=49.518µs +ts=2025-05-22T06:59:26Z caller=logging.go:85 method=Health result=2 took=40.669µs +ts=2025-05-22T06:59:26Z caller=logging.go:85 method=Health result=2 took=39.669µs +ts=2025-05-22T06:59:29Z caller=logging.go:85 method=Health result=2 took=46.839µs +ts=2025-05-22T06:59:29Z caller=logging.go:85 method=Health result=2 took=49.419µs +ts=2025-05-22T06:59:32Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T06:59:32Z caller=logging.go:85 method=Health result=2 took=43.189µs +ts=2025-05-22T06:59:35Z caller=logging.go:85 method=Health result=2 took=42.879µs +ts=2025-05-22T06:59:35Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T06:59:38Z caller=logging.go:85 method=Health result=2 took=40.319µs +ts=2025-05-22T06:59:38Z caller=logging.go:85 method=Health result=2 took=40.839µs +ts=2025-05-22T06:59:41Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T06:59:41Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T06:59:44Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T06:59:44Z caller=logging.go:85 method=Health result=2 took=42.319µs +ts=2025-05-22T06:59:47Z caller=logging.go:85 method=Health result=2 took=41.679µs +ts=2025-05-22T06:59:47Z caller=logging.go:85 method=Health result=2 took=38.219µs +ts=2025-05-22T06:59:50Z caller=logging.go:85 method=Health result=2 took=27.859µs +ts=2025-05-22T06:59:50Z caller=logging.go:85 method=Health result=2 took=28.819µs +ts=2025-05-22T06:59:53Z caller=logging.go:85 method=Health result=2 took=46.609µs +ts=2025-05-22T06:59:53Z caller=logging.go:85 method=Health result=2 took=45.519µs +ts=2025-05-22T06:59:56Z caller=logging.go:85 method=Health result=2 took=41.769µs +ts=2025-05-22T06:59:56Z caller=logging.go:85 method=Health result=2 took=46.719µs +ts=2025-05-22T06:59:59Z caller=logging.go:85 method=Health result=2 took=33.269µs +ts=2025-05-22T06:59:59Z caller=logging.go:85 method=Health result=2 took=46.609µs +ts=2025-05-22T07:00:02Z caller=logging.go:85 method=Health result=2 took=42.489µs +ts=2025-05-22T07:00:02Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T07:00:05Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T07:00:05Z caller=logging.go:85 method=Health result=2 took=45.759µs +ts=2025-05-22T07:00:08Z caller=logging.go:85 method=Health result=2 took=39.099µs +ts=2025-05-22T07:00:08Z caller=logging.go:85 method=Health result=2 took=38.729µs +ts=2025-05-22T07:00:11Z caller=logging.go:85 method=Health result=2 took=41.449µs +ts=2025-05-22T07:00:11Z caller=logging.go:85 method=Health result=2 took=42.449µs +ts=2025-05-22T07:00:14Z caller=logging.go:85 method=Health result=2 took=44.149µs +ts=2025-05-22T07:00:14Z caller=logging.go:85 method=Health result=2 took=54.298µs +ts=2025-05-22T07:00:17Z caller=logging.go:85 method=Health result=2 took=72.779µs +ts=2025-05-22T07:00:17Z caller=logging.go:85 method=Health result=2 took=44.209µs +ts=2025-05-22T07:00:20Z caller=logging.go:85 method=Health result=2 took=29.69µs +ts=2025-05-22T07:00:20Z caller=logging.go:85 method=Health result=2 took=30.01µs +ts=2025-05-22T07:00:23Z caller=logging.go:85 method=Health result=2 took=44.788µs +ts=2025-05-22T07:00:23Z caller=logging.go:85 method=Health result=2 took=49.379µs +ts=2025-05-22T07:00:26Z caller=logging.go:85 method=Health result=2 took=35.859µs +ts=2025-05-22T07:00:26Z caller=logging.go:85 method=Health result=2 took=35.879µs +ts=2025-05-22T07:00:29Z caller=logging.go:85 method=Health result=2 took=31.619µs +ts=2025-05-22T07:00:29Z caller=logging.go:85 method=Health result=2 took=40.149µs +ts=2025-05-22T07:00:32Z caller=logging.go:85 method=Health result=2 took=42.969µs +ts=2025-05-22T07:00:32Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T07:00:35Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T07:00:35Z caller=logging.go:85 method=Health result=2 took=49.729µs +ts=2025-05-22T07:00:38Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T07:00:38Z caller=logging.go:85 method=Health result=2 took=24.19µs +ts=2025-05-22T07:00:41Z caller=logging.go:85 method=Health result=2 took=42.399µs +ts=2025-05-22T07:00:41Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T07:00:44Z caller=logging.go:85 method=Health result=2 took=45.089µs +ts=2025-05-22T07:00:44Z caller=logging.go:85 method=Health result=2 took=50.489µs +ts=2025-05-22T07:00:47Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T07:00:47Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T07:00:50Z caller=logging.go:85 method=Health result=2 took=29.459µs +ts=2025-05-22T07:00:50Z caller=logging.go:85 method=Health result=2 took=41.739µs +ts=2025-05-22T07:00:53Z caller=logging.go:85 method=Health result=2 took=50.209µs +ts=2025-05-22T07:00:53Z caller=logging.go:85 method=Health result=2 took=50.909µs +ts=2025-05-22T07:00:56Z caller=logging.go:85 method=Health result=2 took=40.879µs +ts=2025-05-22T07:00:56Z caller=logging.go:85 method=Health result=2 took=40.079µs +ts=2025-05-22T07:00:59Z caller=logging.go:85 method=Health result=2 took=29.059µs +ts=2025-05-22T07:00:59Z caller=logging.go:85 method=Health result=2 took=28.949µs +ts=2025-05-22T07:01:02Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T07:01:02Z caller=logging.go:85 method=Health result=2 took=63.309µs +ts=2025-05-22T07:01:05Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T07:01:05Z caller=logging.go:85 method=Health result=2 took=49.509µs +ts=2025-05-22T07:01:08Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T07:01:08Z caller=logging.go:85 method=Health result=2 took=44.429µs +ts=2025-05-22T07:01:11Z caller=logging.go:85 method=Health result=2 took=39.919µs +ts=2025-05-22T07:01:11Z caller=logging.go:85 method=Health result=2 took=37.399µs +ts=2025-05-22T07:01:14Z caller=logging.go:85 method=Health result=2 took=44.489µs +ts=2025-05-22T07:01:14Z caller=logging.go:85 method=Health result=2 took=45.919µs +ts=2025-05-22T07:01:17Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T07:01:17Z caller=logging.go:85 method=Health result=2 took=39.519µs +ts=2025-05-22T07:01:20Z caller=logging.go:85 method=Health result=2 took=31.179µs +ts=2025-05-22T07:01:20Z caller=logging.go:85 method=Health result=2 took=33.189µs +ts=2025-05-22T07:01:23Z caller=logging.go:85 method=Health result=2 took=41.449µs +ts=2025-05-22T07:01:23Z caller=logging.go:85 method=Health result=2 took=25.52µs +ts=2025-05-22T07:01:26Z caller=logging.go:85 method=Health result=2 took=42.029µs +ts=2025-05-22T07:01:26Z caller=logging.go:85 method=Health result=2 took=49.978µs +ts=2025-05-22T07:01:29Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T07:01:29Z caller=logging.go:85 method=Health result=2 took=29.61µs +ts=2025-05-22T07:01:32Z caller=logging.go:85 method=Health result=2 took=41.299µs +ts=2025-05-22T07:01:32Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T07:01:35Z caller=logging.go:85 method=Health result=2 took=52.429µs +ts=2025-05-22T07:01:35Z caller=logging.go:85 method=Health result=2 took=48.819µs +ts=2025-05-22T07:01:38Z caller=logging.go:85 method=Health result=2 took=39.579µs +ts=2025-05-22T07:01:38Z caller=logging.go:85 method=Health result=2 took=26.719µs +ts=2025-05-22T07:01:41Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T07:01:41Z caller=logging.go:85 method=Health result=2 took=43.319µs +ts=2025-05-22T07:01:44Z caller=logging.go:85 method=Health result=2 took=45.049µs +ts=2025-05-22T07:01:44Z caller=logging.go:85 method=Health result=2 took=62.808µs +ts=2025-05-22T07:01:47Z caller=logging.go:85 method=Health result=2 took=42.879µs +ts=2025-05-22T07:01:47Z caller=logging.go:85 method=Health result=2 took=30.009µs +ts=2025-05-22T07:01:50Z caller=logging.go:85 method=Health result=2 took=45.209µs +ts=2025-05-22T07:01:50Z caller=logging.go:85 method=Health result=2 took=46.819µs +ts=2025-05-22T07:01:53Z caller=logging.go:85 method=Health result=2 took=40.439µs +ts=2025-05-22T07:01:53Z caller=logging.go:85 method=Health result=2 took=40.379µs +ts=2025-05-22T07:01:56Z caller=logging.go:85 method=Health result=2 took=45.369µs +ts=2025-05-22T07:01:56Z caller=logging.go:85 method=Health result=2 took=51.239µs +ts=2025-05-22T07:01:59Z caller=logging.go:85 method=Health result=2 took=37.309µs +ts=2025-05-22T07:01:59Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T07:02:02Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T07:02:02Z caller=logging.go:85 method=Health result=2 took=48.769µs +ts=2025-05-22T07:02:05Z caller=logging.go:85 method=Health result=2 took=40.929µs +ts=2025-05-22T07:02:05Z caller=logging.go:85 method=Health result=2 took=41.039µs +ts=2025-05-22T07:02:08Z caller=logging.go:85 method=Health result=2 took=39.169µs +ts=2025-05-22T07:02:08Z caller=logging.go:85 method=Health result=2 took=36.199µs +ts=2025-05-22T07:02:11Z caller=logging.go:85 method=Health result=2 took=31.06µs +ts=2025-05-22T07:02:11Z caller=logging.go:85 method=Health result=2 took=50.918µs +ts=2025-05-22T07:02:14Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T07:02:14Z caller=logging.go:85 method=Health result=2 took=41.659µs +ts=2025-05-22T07:02:17Z caller=logging.go:85 method=Health result=2 took=95.377µs +ts=2025-05-22T07:02:17Z caller=logging.go:85 method=Health result=2 took=104.127µs +ts=2025-05-22T07:02:20Z caller=logging.go:85 method=Health result=2 took=43.639µs +ts=2025-05-22T07:02:20Z caller=logging.go:85 method=Health result=2 took=69.469µs +ts=2025-05-22T07:02:23Z caller=logging.go:85 method=Health result=2 took=41.309µs +ts=2025-05-22T07:02:23Z caller=logging.go:85 method=Health result=2 took=42.089µs +ts=2025-05-22T07:02:26Z caller=logging.go:85 method=Health result=2 took=40.889µs +ts=2025-05-22T07:02:26Z caller=logging.go:85 method=Health result=2 took=47.389µs +ts=2025-05-22T07:02:29Z caller=logging.go:85 method=Health result=2 took=43.748µs +ts=2025-05-22T07:02:29Z caller=logging.go:85 method=Health result=2 took=69.388µs +ts=2025-05-22T07:02:32Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T07:02:32Z caller=logging.go:85 method=Health result=2 took=30.66µs +ts=2025-05-22T07:02:35Z caller=logging.go:85 method=Health result=2 took=46.969µs +ts=2025-05-22T07:02:35Z caller=logging.go:85 method=Health result=2 took=42.079µs +ts=2025-05-22T07:02:38Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T07:02:38Z caller=logging.go:85 method=Health result=2 took=36.579µs +ts=2025-05-22T07:02:41Z caller=logging.go:85 method=Health result=2 took=42.509µs +ts=2025-05-22T07:02:41Z caller=logging.go:85 method=Health result=2 took=49.849µs +ts=2025-05-22T07:02:44Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T07:02:44Z caller=logging.go:85 method=Health result=2 took=48.049µs +ts=2025-05-22T07:02:47Z caller=logging.go:85 method=Health result=2 took=35.519µs +ts=2025-05-22T07:02:47Z caller=logging.go:85 method=Health result=2 took=35.589µs +ts=2025-05-22T07:02:50Z caller=logging.go:85 method=Health result=2 took=37.669µs +ts=2025-05-22T07:02:50Z caller=logging.go:85 method=Health result=2 took=47.609µs +ts=2025-05-22T07:02:53Z caller=logging.go:85 method=Health result=2 took=47.109µs +ts=2025-05-22T07:02:53Z caller=logging.go:85 method=Health result=2 took=47.799µs +ts=2025-05-22T07:02:56Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T07:02:56Z caller=logging.go:85 method=Health result=2 took=50.769µs +ts=2025-05-22T07:02:59Z caller=logging.go:85 method=Health result=2 took=43.349µs +ts=2025-05-22T07:02:59Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T07:03:02Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T07:03:02Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T07:03:05Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T07:03:05Z caller=logging.go:85 method=Health result=2 took=42.869µs +ts=2025-05-22T07:03:08Z caller=logging.go:85 method=Health result=2 took=44.689µs +ts=2025-05-22T07:03:08Z caller=logging.go:85 method=Health result=2 took=51.179µs +ts=2025-05-22T07:03:11Z caller=logging.go:85 method=Health result=2 took=42.189µs +ts=2025-05-22T07:03:11Z caller=logging.go:85 method=Health result=2 took=30.63µs +ts=2025-05-22T07:03:14Z caller=logging.go:85 method=Health result=2 took=43.418µs +ts=2025-05-22T07:03:14Z caller=logging.go:85 method=Health result=2 took=42.788µs +ts=2025-05-22T07:03:17Z caller=logging.go:85 method=Health result=2 took=46.469µs +ts=2025-05-22T07:03:17Z caller=logging.go:85 method=Health result=2 took=52.068µs +ts=2025-05-22T07:03:20Z caller=logging.go:85 method=Health result=2 took=43.019µs +ts=2025-05-22T07:03:20Z caller=logging.go:85 method=Health result=2 took=42.329µs +ts=2025-05-22T07:03:23Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T07:03:23Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T07:03:26Z caller=logging.go:85 method=Health result=2 took=45.258µs +ts=2025-05-22T07:03:26Z caller=logging.go:85 method=Health result=2 took=61.519µs +ts=2025-05-22T07:03:29Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T07:03:29Z caller=logging.go:85 method=Health result=2 took=35.069µs +ts=2025-05-22T07:03:32Z caller=logging.go:85 method=Health result=2 took=40.569µs +ts=2025-05-22T07:03:32Z caller=logging.go:85 method=Health result=2 took=41.359µs +ts=2025-05-22T07:03:35Z caller=logging.go:85 method=Health result=2 took=43.119µs +ts=2025-05-22T07:03:35Z caller=logging.go:85 method=Health result=2 took=34.8µs +ts=2025-05-22T07:03:38Z caller=logging.go:85 method=Health result=2 took=37.649µs +ts=2025-05-22T07:03:38Z caller=logging.go:85 method=Health result=2 took=48.149µs +ts=2025-05-22T07:03:41Z caller=logging.go:85 method=Health result=2 took=28.269µs +ts=2025-05-22T07:03:41Z caller=logging.go:85 method=Health result=2 took=27.069µs +ts=2025-05-22T07:03:44Z caller=logging.go:85 method=Health result=2 took=33.719µs +ts=2025-05-22T07:03:44Z caller=logging.go:85 method=Health result=2 took=48.768µs +ts=2025-05-22T07:03:47Z caller=logging.go:85 method=Health result=2 took=42.439µs +ts=2025-05-22T07:03:47Z caller=logging.go:85 method=Health result=2 took=36.569µs +ts=2025-05-22T07:03:50Z caller=logging.go:85 method=Health result=2 took=36.619µs +ts=2025-05-22T07:03:50Z caller=logging.go:85 method=Health result=2 took=36.589µs +ts=2025-05-22T07:03:53Z caller=logging.go:85 method=Health result=2 took=39.799µs +ts=2025-05-22T07:03:53Z caller=logging.go:85 method=Health result=2 took=39.909µs +ts=2025-05-22T07:03:56Z caller=logging.go:85 method=Health result=2 took=29.909µs +ts=2025-05-22T07:03:56Z caller=logging.go:85 method=Health result=2 took=47.679µs +ts=2025-05-22T07:03:59Z caller=logging.go:85 method=Health result=2 took=54.219µs +ts=2025-05-22T07:03:59Z caller=logging.go:85 method=Health result=2 took=24.979µs +ts=2025-05-22T07:04:02Z caller=logging.go:85 method=Health result=2 took=44.349µs +ts=2025-05-22T07:04:02Z caller=logging.go:85 method=Health result=2 took=45.869µs +ts=2025-05-22T07:04:05Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T07:04:05Z caller=logging.go:85 method=Health result=2 took=43.619µs +ts=2025-05-22T07:04:08Z caller=logging.go:85 method=Health result=2 took=32.849µs +ts=2025-05-22T07:04:08Z caller=logging.go:85 method=Health result=2 took=48.399µs +ts=2025-05-22T07:04:11Z caller=logging.go:85 method=Health result=2 took=46.079µs +ts=2025-05-22T07:04:11Z caller=logging.go:85 method=Health result=2 took=52.858µs +ts=2025-05-22T07:04:14Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T07:04:14Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T07:04:17Z caller=logging.go:85 method=Health result=2 took=49.538µs +ts=2025-05-22T07:04:17Z caller=logging.go:85 method=Health result=2 took=176.915µs +ts=2025-05-22T07:04:20Z caller=logging.go:85 method=Health result=2 took=23.239µs +ts=2025-05-22T07:04:20Z caller=logging.go:85 method=Health result=2 took=36.26µs +ts=2025-05-22T07:04:23Z caller=logging.go:85 method=Health result=2 took=46.409µs +ts=2025-05-22T07:04:23Z caller=logging.go:85 method=Health result=2 took=48.899µs +ts=2025-05-22T07:04:26Z caller=logging.go:85 method=Health result=2 took=44.859µs +ts=2025-05-22T07:04:26Z caller=logging.go:85 method=Health result=2 took=47.528µs +ts=2025-05-22T07:04:29Z caller=logging.go:85 method=Health result=2 took=50.519µs +ts=2025-05-22T07:04:29Z caller=logging.go:85 method=Health result=2 took=30.13µs +ts=2025-05-22T07:04:32Z caller=logging.go:85 method=Health result=2 took=43.379µs +ts=2025-05-22T07:04:32Z caller=logging.go:85 method=Health result=2 took=44.129µs +ts=2025-05-22T07:04:35Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T07:04:35Z caller=logging.go:85 method=Health result=2 took=47.018µs +ts=2025-05-22T07:04:38Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T07:04:38Z caller=logging.go:85 method=Health result=2 took=42.799µs +ts=2025-05-22T07:04:41Z caller=logging.go:85 method=Health result=2 took=55.649µs +ts=2025-05-22T07:04:41Z caller=logging.go:85 method=Health result=2 took=55.119µs +ts=2025-05-22T07:04:44Z caller=logging.go:85 method=Health result=2 took=54.318µs +ts=2025-05-22T07:04:44Z caller=logging.go:85 method=Health result=2 took=50.738µs +ts=2025-05-22T07:04:47Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T07:04:47Z caller=logging.go:85 method=Health result=2 took=30.14µs +ts=2025-05-22T07:04:50Z caller=logging.go:85 method=Health result=2 took=37.06µs +ts=2025-05-22T07:04:50Z caller=logging.go:85 method=Health result=2 took=48.389µs +ts=2025-05-22T07:04:53Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T07:04:53Z caller=logging.go:85 method=Health result=2 took=66.198µs +ts=2025-05-22T07:04:56Z caller=logging.go:85 method=Health result=2 took=39.599µs +ts=2025-05-22T07:04:56Z caller=logging.go:85 method=Health result=2 took=48.379µs +ts=2025-05-22T07:04:59Z caller=logging.go:85 method=Health result=2 took=39.299µs +ts=2025-05-22T07:04:59Z caller=logging.go:85 method=Health result=2 took=39.629µs +ts=2025-05-22T07:05:02Z caller=logging.go:85 method=Health result=2 took=54.729µs +ts=2025-05-22T07:05:02Z caller=logging.go:85 method=Health result=2 took=54.799µs +ts=2025-05-22T07:05:05Z caller=logging.go:85 method=Health result=2 took=36.129µs +ts=2025-05-22T07:05:05Z caller=logging.go:85 method=Health result=2 took=47.938µs +ts=2025-05-22T07:05:08Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T07:05:08Z caller=logging.go:85 method=Health result=2 took=60.849µs +ts=2025-05-22T07:05:11Z caller=logging.go:85 method=Health result=2 took=45.969µs +ts=2025-05-22T07:05:11Z caller=logging.go:85 method=Health result=2 took=47.959µs +ts=2025-05-22T07:05:14Z caller=logging.go:85 method=Health result=2 took=38.709µs +ts=2025-05-22T07:05:14Z caller=logging.go:85 method=Health result=2 took=38.059µs +ts=2025-05-22T07:05:17Z caller=logging.go:85 method=Health result=2 took=38.089µs +ts=2025-05-22T07:05:17Z caller=logging.go:85 method=Health result=2 took=35.709µs +ts=2025-05-22T07:05:20Z caller=logging.go:85 method=Health result=2 took=30.629µs +ts=2025-05-22T07:05:20Z caller=logging.go:85 method=Health result=2 took=33.759µs +ts=2025-05-22T07:05:23Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T07:05:23Z caller=logging.go:85 method=Health result=2 took=42.769µs +ts=2025-05-22T07:05:26Z caller=logging.go:85 method=Health result=2 took=50.838µs +ts=2025-05-22T07:05:26Z caller=logging.go:85 method=Health result=2 took=51.579µs +ts=2025-05-22T07:05:29Z caller=logging.go:85 method=Health result=2 took=52.169µs +ts=2025-05-22T07:05:29Z caller=logging.go:85 method=Health result=2 took=52.159µs +ts=2025-05-22T07:05:32Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T07:05:32Z caller=logging.go:85 method=Health result=2 took=66.949µs +ts=2025-05-22T07:05:35Z caller=logging.go:85 method=Health result=2 took=38.49µs +ts=2025-05-22T07:05:35Z caller=logging.go:85 method=Health result=2 took=39.03µs +ts=2025-05-22T07:05:38Z caller=logging.go:85 method=Health result=2 took=44.929µs +ts=2025-05-22T07:05:38Z caller=logging.go:85 method=Health result=2 took=44.129µs +ts=2025-05-22T07:05:41Z caller=logging.go:85 method=Health result=2 took=45.139µs +ts=2025-05-22T07:05:41Z caller=logging.go:85 method=Health result=2 took=50.899µs +ts=2025-05-22T07:05:44Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T07:05:44Z caller=logging.go:85 method=Health result=2 took=48.399µs +ts=2025-05-22T07:05:47Z caller=logging.go:85 method=Health result=2 took=44.769µs +ts=2025-05-22T07:05:47Z caller=logging.go:85 method=Health result=2 took=103.728µs +ts=2025-05-22T07:05:50Z caller=logging.go:85 method=Health result=2 took=37.96µs +ts=2025-05-22T07:05:50Z caller=logging.go:85 method=Health result=2 took=22.899µs +ts=2025-05-22T07:05:53Z caller=logging.go:85 method=Health result=2 took=43.789µs +ts=2025-05-22T07:05:53Z caller=logging.go:85 method=Health result=2 took=49.719µs +ts=2025-05-22T07:05:56Z caller=logging.go:85 method=Health result=2 took=43.749µs +ts=2025-05-22T07:05:56Z caller=logging.go:85 method=Health result=2 took=50.948µs +ts=2025-05-22T07:05:59Z caller=logging.go:85 method=Health result=2 took=42.469µs +ts=2025-05-22T07:05:59Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T07:06:02Z caller=logging.go:85 method=Health result=2 took=46.029µs +ts=2025-05-22T07:06:02Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T07:06:05Z caller=logging.go:85 method=Health result=2 took=42.969µs +ts=2025-05-22T07:06:05Z caller=logging.go:85 method=Health result=2 took=50.339µs +ts=2025-05-22T07:06:08Z caller=logging.go:85 method=Health result=2 took=45.008µs +ts=2025-05-22T07:06:08Z caller=logging.go:85 method=Health result=2 took=42.179µs +ts=2025-05-22T07:06:11Z caller=logging.go:85 method=Health result=2 took=42.489µs +ts=2025-05-22T07:06:11Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T07:06:14Z caller=logging.go:85 method=Health result=2 took=41.729µs +ts=2025-05-22T07:06:14Z caller=logging.go:85 method=Health result=2 took=42.139µs +ts=2025-05-22T07:06:17Z caller=logging.go:85 method=Health result=2 took=44.279µs +ts=2025-05-22T07:06:17Z caller=logging.go:85 method=Health result=2 took=61.208µs +ts=2025-05-22T07:06:20Z caller=logging.go:85 method=Health result=2 took=30.459µs +ts=2025-05-22T07:06:20Z caller=logging.go:85 method=Health result=2 took=46.679µs +ts=2025-05-22T07:06:23Z caller=logging.go:85 method=Health result=2 took=52.439µs +ts=2025-05-22T07:06:23Z caller=logging.go:85 method=Health result=2 took=48.689µs +ts=2025-05-22T07:06:26Z caller=logging.go:85 method=Health result=2 took=44.869µs +ts=2025-05-22T07:06:26Z caller=logging.go:85 method=Health result=2 took=50.199µs +ts=2025-05-22T07:06:29Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T07:06:29Z caller=logging.go:85 method=Health result=2 took=41.079µs +ts=2025-05-22T07:06:32Z caller=logging.go:85 method=Health result=2 took=45.529µs +ts=2025-05-22T07:06:32Z caller=logging.go:85 method=Health result=2 took=51.969µs +ts=2025-05-22T07:06:35Z caller=logging.go:85 method=Health result=2 took=33.789µs +ts=2025-05-22T07:06:35Z caller=logging.go:85 method=Health result=2 took=44.619µs +ts=2025-05-22T07:06:38Z caller=logging.go:85 method=Health result=2 took=41.899µs +ts=2025-05-22T07:06:38Z caller=logging.go:85 method=Health result=2 took=50.198µs +ts=2025-05-22T07:06:41Z caller=logging.go:85 method=Health result=2 took=44.898µs +ts=2025-05-22T07:06:41Z caller=logging.go:85 method=Health result=2 took=59.138µs +ts=2025-05-22T07:06:44Z caller=logging.go:85 method=Health result=2 took=34.199µs +ts=2025-05-22T07:06:44Z caller=logging.go:85 method=Health result=2 took=46.799µs +ts=2025-05-22T07:06:47Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T07:06:47Z caller=logging.go:85 method=Health result=2 took=43.349µs +ts=2025-05-22T07:06:50Z caller=logging.go:85 method=Health result=2 took=40.009µs +ts=2025-05-22T07:06:50Z caller=logging.go:85 method=Health result=2 took=66.459µs +ts=2025-05-22T07:06:53Z caller=logging.go:85 method=Health result=2 took=28.3µs +ts=2025-05-22T07:06:53Z caller=logging.go:85 method=Health result=2 took=28.4µs +ts=2025-05-22T07:06:56Z caller=logging.go:85 method=Health result=2 took=28.919µs +ts=2025-05-22T07:06:56Z caller=logging.go:85 method=Health result=2 took=28.859µs +ts=2025-05-22T07:06:59Z caller=logging.go:85 method=Health result=2 took=36.869µs +ts=2025-05-22T07:06:59Z caller=logging.go:85 method=Health result=2 took=36.349µs +ts=2025-05-22T07:07:02Z caller=logging.go:85 method=Health result=2 took=29.41µs +ts=2025-05-22T07:07:02Z caller=logging.go:85 method=Health result=2 took=67.688µs +ts=2025-05-22T07:07:05Z caller=logging.go:85 method=Health result=2 took=34.72µs +ts=2025-05-22T07:07:05Z caller=logging.go:85 method=Health result=2 took=32.17µs +ts=2025-05-22T07:07:08Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T07:07:08Z caller=logging.go:85 method=Health result=2 took=46.679µs +ts=2025-05-22T07:07:11Z caller=logging.go:85 method=Health result=2 took=46.659µs +ts=2025-05-22T07:07:11Z caller=logging.go:85 method=Health result=2 took=48.779µs +ts=2025-05-22T07:07:14Z caller=logging.go:85 method=Health result=2 took=29.309µs +ts=2025-05-22T07:07:14Z caller=logging.go:85 method=Health result=2 took=29.279µs +ts=2025-05-22T07:07:17Z caller=logging.go:85 method=Health result=2 took=30.63µs +ts=2025-05-22T07:07:17Z caller=logging.go:85 method=Health result=2 took=69.708µs +ts=2025-05-22T07:07:20Z caller=logging.go:85 method=Health result=2 took=36.269µs +ts=2025-05-22T07:07:20Z caller=logging.go:85 method=Health result=2 took=35.979µs +ts=2025-05-22T07:07:23Z caller=logging.go:85 method=Health result=2 took=31.2µs +ts=2025-05-22T07:07:23Z caller=logging.go:85 method=Health result=2 took=14.289µs +ts=2025-05-22T07:07:26Z caller=logging.go:85 method=Health result=2 took=44.129µs +ts=2025-05-22T07:07:26Z caller=logging.go:85 method=Health result=2 took=43.909µs +ts=2025-05-22T07:07:29Z caller=logging.go:85 method=Health result=2 took=35.729µs +ts=2025-05-22T07:07:29Z caller=logging.go:85 method=Health result=2 took=25.169µs +ts=2025-05-22T07:07:32Z caller=logging.go:85 method=Health result=2 took=52.779µs +ts=2025-05-22T07:07:32Z caller=logging.go:85 method=Health result=2 took=34.409µs +ts=2025-05-22T07:07:35Z caller=logging.go:85 method=Health result=2 took=42.319µs +ts=2025-05-22T07:07:35Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T07:07:38Z caller=logging.go:85 method=Health result=2 took=43.959µs +ts=2025-05-22T07:07:38Z caller=logging.go:85 method=Health result=2 took=43.369µs +ts=2025-05-22T07:07:41Z caller=logging.go:85 method=Health result=2 took=43.159µs +ts=2025-05-22T07:07:41Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T07:07:44Z caller=logging.go:85 method=Health result=2 took=41.409µs +ts=2025-05-22T07:07:44Z caller=logging.go:85 method=Health result=2 took=50.789µs +ts=2025-05-22T07:07:47Z caller=logging.go:85 method=Health result=2 took=42.679µs +ts=2025-05-22T07:07:47Z caller=logging.go:85 method=Health result=2 took=42.049µs +ts=2025-05-22T07:07:50Z caller=logging.go:85 method=Health result=2 took=23.919µs +ts=2025-05-22T07:07:50Z caller=logging.go:85 method=Health result=2 took=36.179µs +ts=2025-05-22T07:07:53Z caller=logging.go:85 method=Health result=2 took=42.089µs +ts=2025-05-22T07:07:53Z caller=logging.go:85 method=Health result=2 took=65.489µs +ts=2025-05-22T07:07:56Z caller=logging.go:85 method=Health result=2 took=44.428µs +ts=2025-05-22T07:07:56Z caller=logging.go:85 method=Health result=2 took=43.948µs +ts=2025-05-22T07:07:59Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T07:07:59Z caller=logging.go:85 method=Health result=2 took=43.419µs +ts=2025-05-22T07:08:02Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T07:08:02Z caller=logging.go:85 method=Health result=2 took=52.239µs +ts=2025-05-22T07:08:05Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T07:08:05Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T07:08:08Z caller=logging.go:85 method=Health result=2 took=37.709µs +ts=2025-05-22T07:08:08Z caller=logging.go:85 method=Health result=2 took=47.919µs +ts=2025-05-22T07:08:11Z caller=logging.go:85 method=Health result=2 took=29.03µs +ts=2025-05-22T07:08:11Z caller=logging.go:85 method=Health result=2 took=28.94µs +ts=2025-05-22T07:08:14Z caller=logging.go:85 method=Health result=2 took=38.719µs +ts=2025-05-22T07:08:14Z caller=logging.go:85 method=Health result=2 took=38.419µs +ts=2025-05-22T07:08:17Z caller=logging.go:85 method=Health result=2 took=38.789µs +ts=2025-05-22T07:08:17Z caller=logging.go:85 method=Health result=2 took=44.439µs +ts=2025-05-22T07:08:20Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T07:08:20Z caller=logging.go:85 method=Health result=2 took=67.098µs +ts=2025-05-22T07:08:23Z caller=logging.go:85 method=Health result=2 took=39.049µs +ts=2025-05-22T07:08:23Z caller=logging.go:85 method=Health result=2 took=38.649µs +ts=2025-05-22T07:08:26Z caller=logging.go:85 method=Health result=2 took=39.879µs +ts=2025-05-22T07:08:26Z caller=logging.go:85 method=Health result=2 took=40.099µs +ts=2025-05-22T07:08:29Z caller=logging.go:85 method=Health result=2 took=45.389µs +ts=2025-05-22T07:08:29Z caller=logging.go:85 method=Health result=2 took=72.698µs +ts=2025-05-22T07:08:32Z caller=logging.go:85 method=Health result=2 took=43.019µs +ts=2025-05-22T07:08:32Z caller=logging.go:85 method=Health result=2 took=44.939µs +ts=2025-05-22T07:08:35Z caller=logging.go:85 method=Health result=2 took=46.118µs +ts=2025-05-22T07:08:35Z caller=logging.go:85 method=Health result=2 took=46.108µs +ts=2025-05-22T07:08:38Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T07:08:38Z caller=logging.go:85 method=Health result=2 took=48.049µs +ts=2025-05-22T07:08:41Z caller=logging.go:85 method=Health result=2 took=44.799µs +ts=2025-05-22T07:08:41Z caller=logging.go:85 method=Health result=2 took=79.868µs +ts=2025-05-22T07:08:44Z caller=logging.go:85 method=Health result=2 took=55.319µs +ts=2025-05-22T07:08:44Z caller=logging.go:85 method=Health result=2 took=55.339µs +ts=2025-05-22T07:08:47Z caller=logging.go:85 method=Health result=2 took=38.539µs +ts=2025-05-22T07:08:47Z caller=logging.go:85 method=Health result=2 took=38.889µs +ts=2025-05-22T07:08:50Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T07:08:50Z caller=logging.go:85 method=Health result=2 took=39.109µs +ts=2025-05-22T07:08:53Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T07:08:53Z caller=logging.go:85 method=Health result=2 took=39.379µs +ts=2025-05-22T07:08:56Z caller=logging.go:85 method=Health result=2 took=45.529µs +ts=2025-05-22T07:08:56Z caller=logging.go:85 method=Health result=2 took=48.748µs +ts=2025-05-22T07:08:59Z caller=logging.go:85 method=Health result=2 took=55.378µs +ts=2025-05-22T07:08:59Z caller=logging.go:85 method=Health result=2 took=48.459µs +ts=2025-05-22T07:09:02Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T07:09:02Z caller=logging.go:85 method=Health result=2 took=46.819µs +ts=2025-05-22T07:09:05Z caller=logging.go:85 method=Health result=2 took=44.319µs +ts=2025-05-22T07:09:05Z caller=logging.go:85 method=Health result=2 took=35.969µs +ts=2025-05-22T07:09:08Z caller=logging.go:85 method=Health result=2 took=45.469µs +ts=2025-05-22T07:09:08Z caller=logging.go:85 method=Health result=2 took=48.448µs +ts=2025-05-22T07:09:11Z caller=logging.go:85 method=Health result=2 took=38.26µs +ts=2025-05-22T07:09:11Z caller=logging.go:85 method=Health result=2 took=44.179µs +ts=2025-05-22T07:09:14Z caller=logging.go:85 method=Health result=2 took=44.769µs +ts=2025-05-22T07:09:14Z caller=logging.go:85 method=Health result=2 took=31.37µs +ts=2025-05-22T07:09:17Z caller=logging.go:85 method=Health result=2 took=59.049µs +ts=2025-05-22T07:09:17Z caller=logging.go:85 method=Health result=2 took=59.079µs +ts=2025-05-22T07:09:20Z caller=logging.go:85 method=Health result=2 took=57.229µs +ts=2025-05-22T07:09:20Z caller=logging.go:85 method=Health result=2 took=57.249µs +ts=2025-05-22T07:09:23Z caller=logging.go:85 method=Health result=2 took=36.139µs +ts=2025-05-22T07:09:23Z caller=logging.go:85 method=Health result=2 took=36.779µs +ts=2025-05-22T07:09:26Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T07:09:26Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T07:09:29Z caller=logging.go:85 method=Health result=2 took=52.508µs +ts=2025-05-22T07:09:29Z caller=logging.go:85 method=Health result=2 took=32.369µs +ts=2025-05-22T07:09:32Z caller=logging.go:85 method=Health result=2 took=47.119µs +ts=2025-05-22T07:09:32Z caller=logging.go:85 method=Health result=2 took=52.029µs +ts=2025-05-22T07:09:35Z caller=logging.go:85 method=Health result=2 took=39.719µs +ts=2025-05-22T07:09:35Z caller=logging.go:85 method=Health result=2 took=36.34µs +ts=2025-05-22T07:09:38Z caller=logging.go:85 method=Health result=2 took=28.719µs +ts=2025-05-22T07:09:38Z caller=logging.go:85 method=Health result=2 took=28.699µs +ts=2025-05-22T07:09:41Z caller=logging.go:85 method=Health result=2 took=66.509µs +ts=2025-05-22T07:09:41Z caller=logging.go:85 method=Health result=2 took=50.638µs +ts=2025-05-22T07:09:44Z caller=logging.go:85 method=Health result=2 took=30.979µs +ts=2025-05-22T07:09:44Z caller=logging.go:85 method=Health result=2 took=53.499µs +ts=2025-05-22T07:09:47Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T07:09:47Z caller=logging.go:85 method=Health result=2 took=49.049µs +ts=2025-05-22T07:09:50Z caller=logging.go:85 method=Health result=2 took=30.18µs +ts=2025-05-22T07:09:50Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T07:09:53Z caller=logging.go:85 method=Health result=2 took=40.759µs +ts=2025-05-22T07:09:53Z caller=logging.go:85 method=Health result=2 took=47.329µs +ts=2025-05-22T07:09:56Z caller=logging.go:85 method=Health result=2 took=39.489µs +ts=2025-05-22T07:09:56Z caller=logging.go:85 method=Health result=2 took=39.489µs +ts=2025-05-22T07:09:59Z caller=logging.go:85 method=Health result=2 took=45.359µs +ts=2025-05-22T07:09:59Z caller=logging.go:85 method=Health result=2 took=48.449µs +ts=2025-05-22T07:10:02Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T07:10:02Z caller=logging.go:85 method=Health result=2 took=31.78µs +ts=2025-05-22T07:10:05Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T07:10:05Z caller=logging.go:85 method=Health result=2 took=39.779µs +ts=2025-05-22T07:10:08Z caller=logging.go:85 method=Health result=2 took=30.239µs +ts=2025-05-22T07:10:08Z caller=logging.go:85 method=Health result=2 took=32.359µs +ts=2025-05-22T07:10:11Z caller=logging.go:85 method=Health result=2 took=43.379µs +ts=2025-05-22T07:10:11Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T07:10:14Z caller=logging.go:85 method=Health result=2 took=43.619µs +ts=2025-05-22T07:10:14Z caller=logging.go:85 method=Health result=2 took=52.439µs +ts=2025-05-22T07:10:17Z caller=logging.go:85 method=Health result=2 took=120.487µs +ts=2025-05-22T07:10:17Z caller=logging.go:85 method=Health result=2 took=85.518µs +ts=2025-05-22T07:10:20Z caller=logging.go:85 method=Health result=2 took=48.439µs +ts=2025-05-22T07:10:20Z caller=logging.go:85 method=Health result=2 took=30.26µs +ts=2025-05-22T07:10:23Z caller=logging.go:85 method=Health result=2 took=45.938µs +ts=2025-05-22T07:10:23Z caller=logging.go:85 method=Health result=2 took=49.918µs +ts=2025-05-22T07:10:26Z caller=logging.go:85 method=Health result=2 took=41.199µs +ts=2025-05-22T07:10:26Z caller=logging.go:85 method=Health result=2 took=48.749µs +ts=2025-05-22T07:10:29Z caller=logging.go:85 method=Health result=2 took=41.259µs +ts=2025-05-22T07:10:29Z caller=logging.go:85 method=Health result=2 took=48.869µs +ts=2025-05-22T07:10:32Z caller=logging.go:85 method=Health result=2 took=44.509µs +ts=2025-05-22T07:10:32Z caller=logging.go:85 method=Health result=2 took=97.457µs +ts=2025-05-22T07:10:35Z caller=logging.go:85 method=Health result=2 took=43.969µs +ts=2025-05-22T07:10:35Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T07:10:38Z caller=logging.go:85 method=Health result=2 took=52.709µs +ts=2025-05-22T07:10:38Z caller=logging.go:85 method=Health result=2 took=52.049µs +ts=2025-05-22T07:10:41Z caller=logging.go:85 method=Health result=2 took=43.589µs +ts=2025-05-22T07:10:41Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T07:10:44Z caller=logging.go:85 method=Health result=2 took=55.759µs +ts=2025-05-22T07:10:44Z caller=logging.go:85 method=Health result=2 took=57.659µs +ts=2025-05-22T07:10:47Z caller=logging.go:85 method=Health result=2 took=33.81µs +ts=2025-05-22T07:10:47Z caller=logging.go:85 method=Health result=2 took=15.629µs +ts=2025-05-22T07:10:50Z caller=logging.go:85 method=Health result=2 took=47.429µs +ts=2025-05-22T07:10:50Z caller=logging.go:85 method=Health result=2 took=47.419µs +ts=2025-05-22T07:10:53Z caller=logging.go:85 method=Health result=2 took=45.449µs +ts=2025-05-22T07:10:53Z caller=logging.go:85 method=Health result=2 took=49.758µs +ts=2025-05-22T07:10:56Z caller=logging.go:85 method=Health result=2 took=37.23µs +ts=2025-05-22T07:10:56Z caller=logging.go:85 method=Health result=2 took=39.95µs +ts=2025-05-22T07:10:59Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T07:10:59Z caller=logging.go:85 method=Health result=2 took=50.019µs +ts=2025-05-22T07:11:02Z caller=logging.go:85 method=Health result=2 took=38.149µs +ts=2025-05-22T07:11:02Z caller=logging.go:85 method=Health result=2 took=47.489µs +ts=2025-05-22T07:11:05Z caller=logging.go:85 method=Health result=2 took=46.059µs +ts=2025-05-22T07:11:05Z caller=logging.go:85 method=Health result=2 took=49.289µs +ts=2025-05-22T07:11:08Z caller=logging.go:85 method=Health result=2 took=40.549µs +ts=2025-05-22T07:11:08Z caller=logging.go:85 method=Health result=2 took=40.819µs +ts=2025-05-22T07:11:11Z caller=logging.go:85 method=Health result=2 took=42.799µs +ts=2025-05-22T07:11:11Z caller=logging.go:85 method=Health result=2 took=48.178µs +ts=2025-05-22T07:11:14Z caller=logging.go:85 method=Health result=2 took=39.379µs +ts=2025-05-22T07:11:14Z caller=logging.go:85 method=Health result=2 took=45.279µs +ts=2025-05-22T07:11:17Z caller=logging.go:85 method=Health result=2 took=41.249µs +ts=2025-05-22T07:11:17Z caller=logging.go:85 method=Health result=2 took=49.569µs +ts=2025-05-22T07:11:20Z caller=logging.go:85 method=Health result=2 took=41.749µs +ts=2025-05-22T07:11:20Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T07:11:23Z caller=logging.go:85 method=Health result=2 took=42.469µs +ts=2025-05-22T07:11:23Z caller=logging.go:85 method=Health result=2 took=49.389µs +ts=2025-05-22T07:11:26Z caller=logging.go:85 method=Health result=2 took=38.019µs +ts=2025-05-22T07:11:26Z caller=logging.go:85 method=Health result=2 took=39.279µs +ts=2025-05-22T07:11:29Z caller=logging.go:85 method=Health result=2 took=39.929µs +ts=2025-05-22T07:11:29Z caller=logging.go:85 method=Health result=2 took=41.019µs +ts=2025-05-22T07:11:32Z caller=logging.go:85 method=Health result=2 took=43.789µs +ts=2025-05-22T07:11:32Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T07:11:35Z caller=logging.go:85 method=Health result=2 took=39.949µs +ts=2025-05-22T07:11:35Z caller=logging.go:85 method=Health result=2 took=39.539µs +ts=2025-05-22T07:11:38Z caller=logging.go:85 method=Health result=2 took=44.499µs +ts=2025-05-22T07:11:38Z caller=logging.go:85 method=Health result=2 took=43.959µs +ts=2025-05-22T07:11:41Z caller=logging.go:85 method=Health result=2 took=37.53µs +ts=2025-05-22T07:11:41Z caller=logging.go:85 method=Health result=2 took=55.759µs +ts=2025-05-22T07:11:44Z caller=logging.go:85 method=Health result=2 took=39.879µs +ts=2025-05-22T07:11:44Z caller=logging.go:85 method=Health result=2 took=41.369µs +ts=2025-05-22T07:11:47Z caller=logging.go:85 method=Health result=2 took=38.859µs +ts=2025-05-22T07:11:47Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T07:11:50Z caller=logging.go:85 method=Health result=2 took=46.049µs +ts=2025-05-22T07:11:50Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T07:11:53Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T07:11:53Z caller=logging.go:85 method=Health result=2 took=49.299µs +ts=2025-05-22T07:11:56Z caller=logging.go:85 method=Health result=2 took=31.519µs +ts=2025-05-22T07:11:56Z caller=logging.go:85 method=Health result=2 took=46.649µs +ts=2025-05-22T07:11:59Z caller=logging.go:85 method=Health result=2 took=41.669µs +ts=2025-05-22T07:11:59Z caller=logging.go:85 method=Health result=2 took=33.58µs +ts=2025-05-22T07:12:02Z caller=logging.go:85 method=Health result=2 took=43.079µs +ts=2025-05-22T07:12:02Z caller=logging.go:85 method=Health result=2 took=44.219µs +ts=2025-05-22T07:12:05Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T07:12:05Z caller=logging.go:85 method=Health result=2 took=35.44µs +ts=2025-05-22T07:12:08Z caller=logging.go:85 method=Health result=2 took=44.778µs +ts=2025-05-22T07:12:08Z caller=logging.go:85 method=Health result=2 took=65.659µs +ts=2025-05-22T07:12:11Z caller=logging.go:85 method=Health result=2 took=42.859µs +ts=2025-05-22T07:12:11Z caller=logging.go:85 method=Health result=2 took=25.27µs +ts=2025-05-22T07:12:14Z caller=logging.go:85 method=Health result=2 took=41.269µs +ts=2025-05-22T07:12:14Z caller=logging.go:85 method=Health result=2 took=49.399µs +ts=2025-05-22T07:12:17Z caller=logging.go:85 method=Health result=2 took=39.179µs +ts=2025-05-22T07:12:17Z caller=logging.go:85 method=Health result=2 took=85.878µs +ts=2025-05-22T07:12:20Z caller=logging.go:85 method=Health result=2 took=35.069µs +ts=2025-05-22T07:12:20Z caller=logging.go:85 method=Health result=2 took=34.539µs +ts=2025-05-22T07:12:23Z caller=logging.go:85 method=Health result=2 took=55.759µs +ts=2025-05-22T07:12:23Z caller=logging.go:85 method=Health result=2 took=55.769µs +ts=2025-05-22T07:12:26Z caller=logging.go:85 method=Health result=2 took=34.809µs +ts=2025-05-22T07:12:26Z caller=logging.go:85 method=Health result=2 took=35.399µs +ts=2025-05-22T07:12:29Z caller=logging.go:85 method=Health result=2 took=33.709µs +ts=2025-05-22T07:12:29Z caller=logging.go:85 method=Health result=2 took=46.719µs +ts=2025-05-22T07:12:32Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T07:12:32Z caller=logging.go:85 method=Health result=2 took=50.308µs +ts=2025-05-22T07:12:35Z caller=logging.go:85 method=Health result=2 took=43.619µs +ts=2025-05-22T07:12:35Z caller=logging.go:85 method=Health result=2 took=35.759µs +ts=2025-05-22T07:12:38Z caller=logging.go:85 method=Health result=2 took=44.549µs +ts=2025-05-22T07:12:38Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T07:12:41Z caller=logging.go:85 method=Health result=2 took=29.199µs +ts=2025-05-22T07:12:41Z caller=logging.go:85 method=Health result=2 took=45.979µs +ts=2025-05-22T07:12:44Z caller=logging.go:85 method=Health result=2 took=46.779µs +ts=2025-05-22T07:12:44Z caller=logging.go:85 method=Health result=2 took=48.639µs +ts=2025-05-22T07:12:47Z caller=logging.go:85 method=Health result=2 took=29.05µs +ts=2025-05-22T07:12:47Z caller=logging.go:85 method=Health result=2 took=47.279µs +ts=2025-05-22T07:12:50Z caller=logging.go:85 method=Health result=2 took=45.169µs +ts=2025-05-22T07:12:50Z caller=logging.go:85 method=Health result=2 took=43.399µs +ts=2025-05-22T07:12:53Z caller=logging.go:85 method=Health result=2 took=45.029µs +ts=2025-05-22T07:12:53Z caller=logging.go:85 method=Health result=2 took=49.799µs +ts=2025-05-22T07:12:56Z caller=logging.go:85 method=Health result=2 took=45.309µs +ts=2025-05-22T07:12:56Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T07:12:59Z caller=logging.go:85 method=Health result=2 took=36.729µs +ts=2025-05-22T07:12:59Z caller=logging.go:85 method=Health result=2 took=36.689µs +ts=2025-05-22T07:13:02Z caller=logging.go:85 method=Health result=2 took=28.939µs +ts=2025-05-22T07:13:02Z caller=logging.go:85 method=Health result=2 took=28.939µs +ts=2025-05-22T07:13:05Z caller=logging.go:85 method=Health result=2 took=31.059µs +ts=2025-05-22T07:13:05Z caller=logging.go:85 method=Health result=2 took=47.628µs +ts=2025-05-22T07:13:08Z caller=logging.go:85 method=Health result=2 took=45.399µs +ts=2025-05-22T07:13:08Z caller=logging.go:85 method=Health result=2 took=50.558µs +ts=2025-05-22T07:13:11Z caller=logging.go:85 method=Health result=2 took=44.969µs +ts=2025-05-22T07:13:11Z caller=logging.go:85 method=Health result=2 took=57.109µs +ts=2025-05-22T07:13:14Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T07:13:14Z caller=logging.go:85 method=Health result=2 took=22.669µs +ts=2025-05-22T07:13:17Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T07:13:17Z caller=logging.go:85 method=Health result=2 took=43.259µs +ts=2025-05-22T07:13:20Z caller=logging.go:85 method=Health result=2 took=26.869µs +ts=2025-05-22T07:13:20Z caller=logging.go:85 method=Health result=2 took=28.169µs +ts=2025-05-22T07:13:23Z caller=logging.go:85 method=Health result=2 took=41.309µs +ts=2025-05-22T07:13:23Z caller=logging.go:85 method=Health result=2 took=41.779µs +ts=2025-05-22T07:13:26Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T07:13:26Z caller=logging.go:85 method=Health result=2 took=18.569µs +ts=2025-05-22T07:13:29Z caller=logging.go:85 method=Health result=2 took=40.749µs +ts=2025-05-22T07:13:29Z caller=logging.go:85 method=Health result=2 took=45.759µs +ts=2025-05-22T07:13:32Z caller=logging.go:85 method=Health result=2 took=45.059µs +ts=2025-05-22T07:13:32Z caller=logging.go:85 method=Health result=2 took=47.999µs +ts=2025-05-22T07:13:35Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T07:13:35Z caller=logging.go:85 method=Health result=2 took=41.879µs +ts=2025-05-22T07:13:38Z caller=logging.go:85 method=Health result=2 took=45.669µs +ts=2025-05-22T07:13:38Z caller=logging.go:85 method=Health result=2 took=44.379µs +ts=2025-05-22T07:13:41Z caller=logging.go:85 method=Health result=2 took=43.489µs +ts=2025-05-22T07:13:41Z caller=logging.go:85 method=Health result=2 took=44.049µs +ts=2025-05-22T07:13:44Z caller=logging.go:85 method=Health result=2 took=42.209µs +ts=2025-05-22T07:13:44Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T07:13:47Z caller=logging.go:85 method=Health result=2 took=38.899µs +ts=2025-05-22T07:13:47Z caller=logging.go:85 method=Health result=2 took=38.229µs +ts=2025-05-22T07:13:50Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T07:13:50Z caller=logging.go:85 method=Health result=2 took=34.679µs +ts=2025-05-22T07:13:53Z caller=logging.go:85 method=Health result=2 took=45.238µs +ts=2025-05-22T07:13:53Z caller=logging.go:85 method=Health result=2 took=47.899µs +ts=2025-05-22T07:13:56Z caller=logging.go:85 method=Health result=2 took=44.889µs +ts=2025-05-22T07:13:56Z caller=logging.go:85 method=Health result=2 took=49.589µs +ts=2025-05-22T07:13:59Z caller=logging.go:85 method=Health result=2 took=42.319µs +ts=2025-05-22T07:13:59Z caller=logging.go:85 method=Health result=2 took=40.579µs +ts=2025-05-22T07:14:02Z caller=logging.go:85 method=Health result=2 took=42.499µs +ts=2025-05-22T07:14:02Z caller=logging.go:85 method=Health result=2 took=57.708µs +ts=2025-05-22T07:14:05Z caller=logging.go:85 method=Health result=2 took=43.769µs +ts=2025-05-22T07:14:05Z caller=logging.go:85 method=Health result=2 took=44.019µs +ts=2025-05-22T07:14:08Z caller=logging.go:85 method=Health result=2 took=45.038µs +ts=2025-05-22T07:14:08Z caller=logging.go:85 method=Health result=2 took=50.129µs +ts=2025-05-22T07:14:11Z caller=logging.go:85 method=Health result=2 took=45.789µs +ts=2025-05-22T07:14:11Z caller=logging.go:85 method=Health result=2 took=38.499µs +ts=2025-05-22T07:14:14Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T07:14:14Z caller=logging.go:85 method=Health result=2 took=44.309µs +ts=2025-05-22T07:14:17Z caller=logging.go:85 method=Health result=2 took=45.178µs +ts=2025-05-22T07:14:17Z caller=logging.go:85 method=Health result=2 took=77.108µs +ts=2025-05-22T07:14:20Z caller=logging.go:85 method=Health result=2 took=51.629µs +ts=2025-05-22T07:14:20Z caller=logging.go:85 method=Health result=2 took=51.619µs +ts=2025-05-22T07:14:23Z caller=logging.go:85 method=Health result=2 took=45.179µs +ts=2025-05-22T07:14:23Z caller=logging.go:85 method=Health result=2 took=48.189µs +ts=2025-05-22T07:14:26Z caller=logging.go:85 method=Health result=2 took=46.539µs +ts=2025-05-22T07:14:26Z caller=logging.go:85 method=Health result=2 took=58.159µs +ts=2025-05-22T07:14:29Z caller=logging.go:85 method=Health result=2 took=54.338µs +ts=2025-05-22T07:14:29Z caller=logging.go:85 method=Health result=2 took=27.949µs +ts=2025-05-22T07:14:32Z caller=logging.go:85 method=Health result=2 took=41.359µs +ts=2025-05-22T07:14:32Z caller=logging.go:85 method=Health result=2 took=50.239µs +ts=2025-05-22T07:14:35Z caller=logging.go:85 method=Health result=2 took=40.989µs +ts=2025-05-22T07:14:35Z caller=logging.go:85 method=Health result=2 took=49.438µs +ts=2025-05-22T07:14:38Z caller=logging.go:85 method=Health result=2 took=45.109µs +ts=2025-05-22T07:14:38Z caller=logging.go:85 method=Health result=2 took=47.059µs +ts=2025-05-22T07:14:41Z caller=logging.go:85 method=Health result=2 took=46.069µs +ts=2025-05-22T07:14:41Z caller=logging.go:85 method=Health result=2 took=46.119µs +ts=2025-05-22T07:14:44Z caller=logging.go:85 method=Health result=2 took=42.769µs +ts=2025-05-22T07:14:44Z caller=logging.go:85 method=Health result=2 took=43.529µs +ts=2025-05-22T07:14:47Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T07:14:47Z caller=logging.go:85 method=Health result=2 took=38.169µs +ts=2025-05-22T07:14:50Z caller=logging.go:85 method=Health result=2 took=38.719µs +ts=2025-05-22T07:14:50Z caller=logging.go:85 method=Health result=2 took=43.928µs +ts=2025-05-22T07:14:53Z caller=logging.go:85 method=Health result=2 took=41.599µs +ts=2025-05-22T07:14:53Z caller=logging.go:85 method=Health result=2 took=48.939µs +ts=2025-05-22T07:14:56Z caller=logging.go:85 method=Health result=2 took=38.219µs +ts=2025-05-22T07:14:56Z caller=logging.go:85 method=Health result=2 took=34.549µs +ts=2025-05-22T07:14:59Z caller=logging.go:85 method=Health result=2 took=40.499µs +ts=2025-05-22T07:14:59Z caller=logging.go:85 method=Health result=2 took=20.27µs +ts=2025-05-22T07:15:02Z caller=logging.go:85 method=Health result=2 took=39.229µs +ts=2025-05-22T07:15:02Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T07:15:05Z caller=logging.go:85 method=Health result=2 took=40.159µs +ts=2025-05-22T07:15:05Z caller=logging.go:85 method=Health result=2 took=39.419µs +ts=2025-05-22T07:15:08Z caller=logging.go:85 method=Health result=2 took=37.529µs +ts=2025-05-22T07:15:08Z caller=logging.go:85 method=Health result=2 took=50.979µs +ts=2025-05-22T07:15:11Z caller=logging.go:85 method=Health result=2 took=51.149µs +ts=2025-05-22T07:15:11Z caller=logging.go:85 method=Health result=2 took=41.019µs +ts=2025-05-22T07:15:14Z caller=logging.go:85 method=Health result=2 took=32.199µs +ts=2025-05-22T07:15:14Z caller=logging.go:85 method=Health result=2 took=47.329µs +ts=2025-05-22T07:15:17Z caller=logging.go:85 method=Health result=2 took=42.849µs +ts=2025-05-22T07:15:17Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T07:15:20Z caller=logging.go:85 method=Health result=2 took=39.249µs +ts=2025-05-22T07:15:20Z caller=logging.go:85 method=Health result=2 took=62.578µs +ts=2025-05-22T07:15:23Z caller=logging.go:85 method=Health result=2 took=40.179µs +ts=2025-05-22T07:15:23Z caller=logging.go:85 method=Health result=2 took=40.189µs +ts=2025-05-22T07:15:26Z caller=logging.go:85 method=Health result=2 took=41.749µs +ts=2025-05-22T07:15:26Z caller=logging.go:85 method=Health result=2 took=50.129µs +ts=2025-05-22T07:15:29Z caller=logging.go:85 method=Health result=2 took=44.759µs +ts=2025-05-22T07:15:29Z caller=logging.go:85 method=Health result=2 took=45.289µs +ts=2025-05-22T07:15:32Z caller=logging.go:85 method=Health result=2 took=40.849µs +ts=2025-05-22T07:15:32Z caller=logging.go:85 method=Health result=2 took=40.759µs +ts=2025-05-22T07:15:35Z caller=logging.go:85 method=Health result=2 took=46.528µs +ts=2025-05-22T07:15:35Z caller=logging.go:85 method=Health result=2 took=49.879µs +ts=2025-05-22T07:15:38Z caller=logging.go:85 method=Health result=2 took=39.129µs +ts=2025-05-22T07:15:38Z caller=logging.go:85 method=Health result=2 took=38.849µs +ts=2025-05-22T07:15:41Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T07:15:41Z caller=logging.go:85 method=Health result=2 took=48.119µs +ts=2025-05-22T07:15:44Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T07:15:44Z caller=logging.go:85 method=Health result=2 took=38.219µs +ts=2025-05-22T07:15:47Z caller=logging.go:85 method=Health result=2 took=45.779µs +ts=2025-05-22T07:15:47Z caller=logging.go:85 method=Health result=2 took=51.828µs +ts=2025-05-22T07:15:50Z caller=logging.go:85 method=Health result=2 took=38.399µs +ts=2025-05-22T07:15:50Z caller=logging.go:85 method=Health result=2 took=39.569µs +ts=2025-05-22T07:15:53Z caller=logging.go:85 method=Health result=2 took=43.329µs +ts=2025-05-22T07:15:53Z caller=logging.go:85 method=Health result=2 took=44.299µs +ts=2025-05-22T07:15:56Z caller=logging.go:85 method=Health result=2 took=58.569µs +ts=2025-05-22T07:15:56Z caller=logging.go:85 method=Health result=2 took=65.928µs +ts=2025-05-22T07:15:59Z caller=logging.go:85 method=Health result=2 took=44.879µs +ts=2025-05-22T07:15:59Z caller=logging.go:85 method=Health result=2 took=51.018µs +ts=2025-05-22T07:16:02Z caller=logging.go:85 method=Health result=2 took=54.409µs +ts=2025-05-22T07:16:02Z caller=logging.go:85 method=Health result=2 took=30.879µs +ts=2025-05-22T07:16:05Z caller=logging.go:85 method=Health result=2 took=45.039µs +ts=2025-05-22T07:16:05Z caller=logging.go:85 method=Health result=2 took=47.689µs +ts=2025-05-22T07:16:08Z caller=logging.go:85 method=Health result=2 took=46.109µs +ts=2025-05-22T07:16:08Z caller=logging.go:85 method=Health result=2 took=48.059µs +ts=2025-05-22T07:16:11Z caller=logging.go:85 method=Health result=2 took=59.109µs +ts=2025-05-22T07:16:11Z caller=logging.go:85 method=Health result=2 took=21.729µs +ts=2025-05-22T07:16:14Z caller=logging.go:85 method=Health result=2 took=33.429µs +ts=2025-05-22T07:16:14Z caller=logging.go:85 method=Health result=2 took=47.079µs +ts=2025-05-22T07:16:17Z caller=logging.go:85 method=Health result=2 took=40.639µs +ts=2025-05-22T07:16:17Z caller=logging.go:85 method=Health result=2 took=41.029µs +ts=2025-05-22T07:16:20Z caller=logging.go:85 method=Health result=2 took=41.299µs +ts=2025-05-22T07:16:20Z caller=logging.go:85 method=Health result=2 took=45.589µs +ts=2025-05-22T07:16:23Z caller=logging.go:85 method=Health result=2 took=44.229µs +ts=2025-05-22T07:16:23Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T07:16:26Z caller=logging.go:85 method=Health result=2 took=51.989µs +ts=2025-05-22T07:16:26Z caller=logging.go:85 method=Health result=2 took=50.619µs +ts=2025-05-22T07:16:29Z caller=logging.go:85 method=Health result=2 took=41.809µs +ts=2025-05-22T07:16:29Z caller=logging.go:85 method=Health result=2 took=29.299µs +ts=2025-05-22T07:16:32Z caller=logging.go:85 method=Health result=2 took=40.729µs +ts=2025-05-22T07:16:32Z caller=logging.go:85 method=Health result=2 took=39.919µs +ts=2025-05-22T07:16:35Z caller=logging.go:85 method=Health result=2 took=34.969µs +ts=2025-05-22T07:16:35Z caller=logging.go:85 method=Health result=2 took=34.659µs +ts=2025-05-22T07:16:38Z caller=logging.go:85 method=Health result=2 took=43.699µs +ts=2025-05-22T07:16:38Z caller=logging.go:85 method=Health result=2 took=60.729µs +ts=2025-05-22T07:16:41Z caller=logging.go:85 method=Health result=2 took=41.849µs +ts=2025-05-22T07:16:41Z caller=logging.go:85 method=Health result=2 took=48.719µs +ts=2025-05-22T07:16:44Z caller=logging.go:85 method=Health result=2 took=32.299µs +ts=2025-05-22T07:16:44Z caller=logging.go:85 method=Health result=2 took=48.299µs +ts=2025-05-22T07:16:47Z caller=logging.go:85 method=Health result=2 took=39.619µs +ts=2025-05-22T07:16:47Z caller=logging.go:85 method=Health result=2 took=48.148µs +ts=2025-05-22T07:16:50Z caller=logging.go:85 method=Health result=2 took=29.319µs +ts=2025-05-22T07:16:50Z caller=logging.go:85 method=Health result=2 took=30.289µs +ts=2025-05-22T07:16:53Z caller=logging.go:85 method=Health result=2 took=31.78µs +ts=2025-05-22T07:16:53Z caller=logging.go:85 method=Health result=2 took=47.689µs +ts=2025-05-22T07:16:56Z caller=logging.go:85 method=Health result=2 took=40.499µs +ts=2025-05-22T07:16:56Z caller=logging.go:85 method=Health result=2 took=18.739µs +ts=2025-05-22T07:16:59Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T07:16:59Z caller=logging.go:85 method=Health result=2 took=54.058µs +ts=2025-05-22T07:17:02Z caller=logging.go:85 method=Health result=2 took=42.329µs +ts=2025-05-22T07:17:02Z caller=logging.go:85 method=Health result=2 took=49.369µs +ts=2025-05-22T07:17:05Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T07:17:05Z caller=logging.go:85 method=Health result=2 took=38.919µs +ts=2025-05-22T07:17:08Z caller=logging.go:85 method=Health result=2 took=32.17µs +ts=2025-05-22T07:17:08Z caller=logging.go:85 method=Health result=2 took=33.88µs +ts=2025-05-22T07:17:11Z caller=logging.go:85 method=Health result=2 took=44.759µs +ts=2025-05-22T07:17:11Z caller=logging.go:85 method=Health result=2 took=25.069µs +ts=2025-05-22T07:17:14Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T07:17:14Z caller=logging.go:85 method=Health result=2 took=49.549µs +ts=2025-05-22T07:17:17Z caller=logging.go:85 method=Health result=2 took=45.229µs +ts=2025-05-22T07:17:17Z caller=logging.go:85 method=Health result=2 took=51.708µs +ts=2025-05-22T07:17:20Z caller=logging.go:85 method=Health result=2 took=49.799µs +ts=2025-05-22T07:17:20Z caller=logging.go:85 method=Health result=2 took=22.73µs +ts=2025-05-22T07:17:23Z caller=logging.go:85 method=Health result=2 took=29.02µs +ts=2025-05-22T07:17:23Z caller=logging.go:85 method=Health result=2 took=14.679µs +ts=2025-05-22T07:17:26Z caller=logging.go:85 method=Health result=2 took=41.769µs +ts=2025-05-22T07:17:26Z caller=logging.go:85 method=Health result=2 took=49.869µs +ts=2025-05-22T07:17:29Z caller=logging.go:85 method=Health result=2 took=36.279µs +ts=2025-05-22T07:17:29Z caller=logging.go:85 method=Health result=2 took=25.36µs +ts=2025-05-22T07:17:32Z caller=logging.go:85 method=Health result=2 took=43.758µs +ts=2025-05-22T07:17:32Z caller=logging.go:85 method=Health result=2 took=52.538µs +ts=2025-05-22T07:17:35Z caller=logging.go:85 method=Health result=2 took=40.64µs +ts=2025-05-22T07:17:35Z caller=logging.go:85 method=Health result=2 took=40.77µs +ts=2025-05-22T07:17:38Z caller=logging.go:85 method=Health result=2 took=42.189µs +ts=2025-05-22T07:17:38Z caller=logging.go:85 method=Health result=2 took=46.629µs +ts=2025-05-22T07:17:41Z caller=logging.go:85 method=Health result=2 took=37.399µs +ts=2025-05-22T07:17:41Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T07:17:44Z caller=logging.go:85 method=Health result=2 took=38.409µs +ts=2025-05-22T07:17:44Z caller=logging.go:85 method=Health result=2 took=38.849µs +ts=2025-05-22T07:17:47Z caller=logging.go:85 method=Health result=2 took=44.079µs +ts=2025-05-22T07:17:47Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T07:17:50Z caller=logging.go:85 method=Health result=2 took=38.499µs +ts=2025-05-22T07:17:50Z caller=logging.go:85 method=Health result=2 took=48.139µs +ts=2025-05-22T07:17:53Z caller=logging.go:85 method=Health result=2 took=39.289µs +ts=2025-05-22T07:17:53Z caller=logging.go:85 method=Health result=2 took=29.269µs +ts=2025-05-22T07:17:56Z caller=logging.go:85 method=Health result=2 took=45.579µs +ts=2025-05-22T07:17:56Z caller=logging.go:85 method=Health result=2 took=38.019µs +ts=2025-05-22T07:17:59Z caller=logging.go:85 method=Health result=2 took=31.659µs +ts=2025-05-22T07:17:59Z caller=logging.go:85 method=Health result=2 took=47.269µs +ts=2025-05-22T07:18:02Z caller=logging.go:85 method=Health result=2 took=30.099µs +ts=2025-05-22T07:18:02Z caller=logging.go:85 method=Health result=2 took=30.089µs +ts=2025-05-22T07:18:05Z caller=logging.go:85 method=Health result=2 took=29.079µs +ts=2025-05-22T07:18:05Z caller=logging.go:85 method=Health result=2 took=28.509µs +ts=2025-05-22T07:18:08Z caller=logging.go:85 method=Health result=2 took=45.499µs +ts=2025-05-22T07:18:08Z caller=logging.go:85 method=Health result=2 took=76.738µs +ts=2025-05-22T07:18:11Z caller=logging.go:85 method=Health result=2 took=23.839µs +ts=2025-05-22T07:18:11Z caller=logging.go:85 method=Health result=2 took=38.029µs +ts=2025-05-22T07:18:14Z caller=logging.go:85 method=Health result=2 took=31.59µs +ts=2025-05-22T07:18:14Z caller=logging.go:85 method=Health result=2 took=42.039µs +ts=2025-05-22T07:18:17Z caller=logging.go:85 method=Health result=2 took=53.609µs +ts=2025-05-22T07:18:17Z caller=logging.go:85 method=Health result=2 took=60.868µs +ts=2025-05-22T07:18:20Z caller=logging.go:85 method=Health result=2 took=28.369µs +ts=2025-05-22T07:18:20Z caller=logging.go:85 method=Health result=2 took=28.429µs +ts=2025-05-22T07:18:23Z caller=logging.go:85 method=Health result=2 took=44.009µs +ts=2025-05-22T07:18:23Z caller=logging.go:85 method=Health result=2 took=43.159µs +ts=2025-05-22T07:18:26Z caller=logging.go:85 method=Health result=2 took=43.669µs +ts=2025-05-22T07:18:26Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T07:18:29Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T07:18:29Z caller=logging.go:85 method=Health result=2 took=48.939µs +ts=2025-05-22T07:18:32Z caller=logging.go:85 method=Health result=2 took=29.069µs +ts=2025-05-22T07:18:32Z caller=logging.go:85 method=Health result=2 took=29.129µs +ts=2025-05-22T07:18:35Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T07:18:35Z caller=logging.go:85 method=Health result=2 took=48.899µs +ts=2025-05-22T07:18:38Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T07:18:38Z caller=logging.go:85 method=Health result=2 took=44.219µs +ts=2025-05-22T07:18:41Z caller=logging.go:85 method=Health result=2 took=35.559µs +ts=2025-05-22T07:18:41Z caller=logging.go:85 method=Health result=2 took=35.429µs +ts=2025-05-22T07:18:44Z caller=logging.go:85 method=Health result=2 took=36.87µs +ts=2025-05-22T07:18:44Z caller=logging.go:85 method=Health result=2 took=36.84µs +ts=2025-05-22T07:18:47Z caller=logging.go:85 method=Health result=2 took=44.579µs +ts=2025-05-22T07:18:47Z caller=logging.go:85 method=Health result=2 took=48.889µs +ts=2025-05-22T07:18:50Z caller=logging.go:85 method=Health result=2 took=37.359µs +ts=2025-05-22T07:18:50Z caller=logging.go:85 method=Health result=2 took=45.789µs +ts=2025-05-22T07:18:53Z caller=logging.go:85 method=Health result=2 took=45.549µs +ts=2025-05-22T07:18:53Z caller=logging.go:85 method=Health result=2 took=31.069µs +ts=2025-05-22T07:18:56Z caller=logging.go:85 method=Health result=2 took=41.009µs +ts=2025-05-22T07:18:56Z caller=logging.go:85 method=Health result=2 took=41.529µs +ts=2025-05-22T07:18:59Z caller=logging.go:85 method=Health result=2 took=38.759µs +ts=2025-05-22T07:18:59Z caller=logging.go:85 method=Health result=2 took=49.489µs +ts=2025-05-22T07:19:02Z caller=logging.go:85 method=Health result=2 took=46.139µs +ts=2025-05-22T07:19:02Z caller=logging.go:85 method=Health result=2 took=48.099µs +ts=2025-05-22T07:19:05Z caller=logging.go:85 method=Health result=2 took=37.729µs +ts=2025-05-22T07:19:05Z caller=logging.go:85 method=Health result=2 took=38.899µs +ts=2025-05-22T07:19:08Z caller=logging.go:85 method=Health result=2 took=29.959µs +ts=2025-05-22T07:19:08Z caller=logging.go:85 method=Health result=2 took=47.209µs +ts=2025-05-22T07:19:11Z caller=logging.go:85 method=Health result=2 took=28.219µs +ts=2025-05-22T07:19:11Z caller=logging.go:85 method=Health result=2 took=28.189µs +ts=2025-05-22T07:19:14Z caller=logging.go:85 method=Health result=2 took=33.259µs +ts=2025-05-22T07:19:14Z caller=logging.go:85 method=Health result=2 took=48.399µs +ts=2025-05-22T07:19:17Z caller=logging.go:85 method=Health result=2 took=55.499µs +ts=2025-05-22T07:19:17Z caller=logging.go:85 method=Health result=2 took=40.669µs +ts=2025-05-22T07:19:20Z caller=logging.go:85 method=Health result=2 took=33.48µs +ts=2025-05-22T07:19:20Z caller=logging.go:85 method=Health result=2 took=39.169µs +ts=2025-05-22T07:19:23Z caller=logging.go:85 method=Health result=2 took=54.059µs +ts=2025-05-22T07:19:23Z caller=logging.go:85 method=Health result=2 took=42.899µs +ts=2025-05-22T07:19:26Z caller=logging.go:85 method=Health result=2 took=41.729µs +ts=2025-05-22T07:19:26Z caller=logging.go:85 method=Health result=2 took=36.89µs +ts=2025-05-22T07:19:29Z caller=logging.go:85 method=Health result=2 took=33.68µs +ts=2025-05-22T07:19:29Z caller=logging.go:85 method=Health result=2 took=43.519µs +ts=2025-05-22T07:19:32Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T07:19:32Z caller=logging.go:85 method=Health result=2 took=31.139µs +ts=2025-05-22T07:19:35Z caller=logging.go:85 method=Health result=2 took=30.179µs +ts=2025-05-22T07:19:35Z caller=logging.go:85 method=Health result=2 took=30.129µs +ts=2025-05-22T07:19:38Z caller=logging.go:85 method=Health result=2 took=43.469µs +ts=2025-05-22T07:19:38Z caller=logging.go:85 method=Health result=2 took=49.079µs +ts=2025-05-22T07:19:41Z caller=logging.go:85 method=Health result=2 took=43.369µs +ts=2025-05-22T07:19:41Z caller=logging.go:85 method=Health result=2 took=68.018µs +ts=2025-05-22T07:19:44Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T07:19:44Z caller=logging.go:85 method=Health result=2 took=28.28µs +ts=2025-05-22T07:19:47Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T07:19:47Z caller=logging.go:85 method=Health result=2 took=71.258µs +ts=2025-05-22T07:19:50Z caller=logging.go:85 method=Health result=2 took=30.319µs +ts=2025-05-22T07:19:50Z caller=logging.go:85 method=Health result=2 took=33.91µs +ts=2025-05-22T07:19:53Z caller=logging.go:85 method=Health result=2 took=57.458µs +ts=2025-05-22T07:19:53Z caller=logging.go:85 method=Health result=2 took=55.408µs +ts=2025-05-22T07:19:56Z caller=logging.go:85 method=Health result=2 took=29.169µs +ts=2025-05-22T07:19:56Z caller=logging.go:85 method=Health result=2 took=29.149µs +ts=2025-05-22T07:19:59Z caller=logging.go:85 method=Health result=2 took=39.959µs +ts=2025-05-22T07:19:59Z caller=logging.go:85 method=Health result=2 took=39.299µs +ts=2025-05-22T07:20:02Z caller=logging.go:85 method=Health result=2 took=40.049µs +ts=2025-05-22T07:20:02Z caller=logging.go:85 method=Health result=2 took=39.839µs +ts=2025-05-22T07:20:05Z caller=logging.go:85 method=Health result=2 took=41.829µs +ts=2025-05-22T07:20:05Z caller=logging.go:85 method=Health result=2 took=41.729µs +ts=2025-05-22T07:20:08Z caller=logging.go:85 method=Health result=2 took=41.249µs +ts=2025-05-22T07:20:08Z caller=logging.go:85 method=Health result=2 took=17.919µs +ts=2025-05-22T07:20:11Z caller=logging.go:85 method=Health result=2 took=31.189µs +ts=2025-05-22T07:20:11Z caller=logging.go:85 method=Health result=2 took=61.259µs +ts=2025-05-22T07:20:14Z caller=logging.go:85 method=Health result=2 took=31.029µs +ts=2025-05-22T07:20:14Z caller=logging.go:85 method=Health result=2 took=47.169µs +ts=2025-05-22T07:20:17Z caller=logging.go:85 method=Health result=2 took=51.309µs +ts=2025-05-22T07:20:17Z caller=logging.go:85 method=Health result=2 took=141.177µs +ts=2025-05-22T07:20:20Z caller=logging.go:85 method=Health result=2 took=35.729µs +ts=2025-05-22T07:20:20Z caller=logging.go:85 method=Health result=2 took=35.729µs +ts=2025-05-22T07:20:23Z caller=logging.go:85 method=Health result=2 took=41.699µs +ts=2025-05-22T07:20:23Z caller=logging.go:85 method=Health result=2 took=41.759µs +ts=2025-05-22T07:20:26Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T07:20:26Z caller=logging.go:85 method=Health result=2 took=48.269µs +ts=2025-05-22T07:20:29Z caller=logging.go:85 method=Health result=2 took=41.439µs +ts=2025-05-22T07:20:29Z caller=logging.go:85 method=Health result=2 took=10.33µs +ts=2025-05-22T07:20:32Z caller=logging.go:85 method=Health result=2 took=44.989µs +ts=2025-05-22T07:20:32Z caller=logging.go:85 method=Health result=2 took=49.679µs +ts=2025-05-22T07:20:35Z caller=logging.go:85 method=Health result=2 took=42.639µs +ts=2025-05-22T07:20:35Z caller=logging.go:85 method=Health result=2 took=46.549µs +ts=2025-05-22T07:20:38Z caller=logging.go:85 method=Health result=2 took=45.329µs +ts=2025-05-22T07:20:38Z caller=logging.go:85 method=Health result=2 took=48.569µs +ts=2025-05-22T07:20:41Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T07:20:41Z caller=logging.go:85 method=Health result=2 took=43.649µs +ts=2025-05-22T07:20:44Z caller=logging.go:85 method=Health result=2 took=42.959µs +ts=2025-05-22T07:20:44Z caller=logging.go:85 method=Health result=2 took=19.74µs +ts=2025-05-22T07:20:47Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T07:20:47Z caller=logging.go:85 method=Health result=2 took=51.208µs +ts=2025-05-22T07:20:50Z caller=logging.go:85 method=Health result=2 took=36.499µs +ts=2025-05-22T07:20:50Z caller=logging.go:85 method=Health result=2 took=36.009µs +ts=2025-05-22T07:20:53Z caller=logging.go:85 method=Health result=2 took=33.699µs +ts=2025-05-22T07:20:53Z caller=logging.go:85 method=Health result=2 took=34.099µs +ts=2025-05-22T07:20:56Z caller=logging.go:85 method=Health result=2 took=37.459µs +ts=2025-05-22T07:20:56Z caller=logging.go:85 method=Health result=2 took=31.16µs +ts=2025-05-22T07:20:59Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T07:20:59Z caller=logging.go:85 method=Health result=2 took=42.419µs +ts=2025-05-22T07:21:02Z caller=logging.go:85 method=Health result=2 took=38.959µs +ts=2025-05-22T07:21:02Z caller=logging.go:85 method=Health result=2 took=26.6µs +ts=2025-05-22T07:21:05Z caller=logging.go:85 method=Health result=2 took=44.749µs +ts=2025-05-22T07:21:05Z caller=logging.go:85 method=Health result=2 took=51.019µs +ts=2025-05-22T07:21:08Z caller=logging.go:85 method=Health result=2 took=43.189µs +ts=2025-05-22T07:21:08Z caller=logging.go:85 method=Health result=2 took=42.629µs +ts=2025-05-22T07:21:11Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T07:21:11Z caller=logging.go:85 method=Health result=2 took=30.28µs +ts=2025-05-22T07:21:14Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T07:21:14Z caller=logging.go:85 method=Health result=2 took=19.499µs +ts=2025-05-22T07:21:17Z caller=logging.go:85 method=Health result=2 took=40.969µs +ts=2025-05-22T07:21:17Z caller=logging.go:85 method=Health result=2 took=41.289µs +ts=2025-05-22T07:21:20Z caller=logging.go:85 method=Health result=2 took=45.799µs +ts=2025-05-22T07:21:20Z caller=logging.go:85 method=Health result=2 took=43.848µs +ts=2025-05-22T07:21:23Z caller=logging.go:85 method=Health result=2 took=44.309µs +ts=2025-05-22T07:21:23Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T07:21:26Z caller=logging.go:85 method=Health result=2 took=34.9µs +ts=2025-05-22T07:21:26Z caller=logging.go:85 method=Health result=2 took=20.749µs +ts=2025-05-22T07:21:29Z caller=logging.go:85 method=Health result=2 took=36.69µs +ts=2025-05-22T07:21:29Z caller=logging.go:85 method=Health result=2 took=37.33µs +ts=2025-05-22T07:21:32Z caller=logging.go:85 method=Health result=2 took=43.149µs +ts=2025-05-22T07:21:32Z caller=logging.go:85 method=Health result=2 took=52.539µs +ts=2025-05-22T07:21:35Z caller=logging.go:85 method=Health result=2 took=42.489µs +ts=2025-05-22T07:21:35Z caller=logging.go:85 method=Health result=2 took=29.39µs +ts=2025-05-22T07:21:38Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T07:21:38Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T07:21:41Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T07:21:41Z caller=logging.go:85 method=Health result=2 took=49.839µs +ts=2025-05-22T07:21:44Z caller=logging.go:85 method=Health result=2 took=42.689µs +ts=2025-05-22T07:21:44Z caller=logging.go:85 method=Health result=2 took=42.419µs +ts=2025-05-22T07:21:47Z caller=logging.go:85 method=Health result=2 took=43.869µs +ts=2025-05-22T07:21:47Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T07:21:50Z caller=logging.go:85 method=Health result=2 took=37.479µs +ts=2025-05-22T07:21:50Z caller=logging.go:85 method=Health result=2 took=23.7µs +ts=2025-05-22T07:21:53Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T07:21:53Z caller=logging.go:85 method=Health result=2 took=49.609µs +ts=2025-05-22T07:21:56Z caller=logging.go:85 method=Health result=2 took=46.109µs +ts=2025-05-22T07:21:56Z caller=logging.go:85 method=Health result=2 took=49.738µs +ts=2025-05-22T07:21:59Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T07:21:59Z caller=logging.go:85 method=Health result=2 took=42.579µs +ts=2025-05-22T07:22:02Z caller=logging.go:85 method=Health result=2 took=36.749µs +ts=2025-05-22T07:22:02Z caller=logging.go:85 method=Health result=2 took=31.409µs +ts=2025-05-22T07:22:05Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T07:22:05Z caller=logging.go:85 method=Health result=2 took=43.239µs +ts=2025-05-22T07:22:08Z caller=logging.go:85 method=Health result=2 took=44.949µs +ts=2025-05-22T07:22:08Z caller=logging.go:85 method=Health result=2 took=77.888µs +ts=2025-05-22T07:22:11Z caller=logging.go:85 method=Health result=2 took=39.249µs +ts=2025-05-22T07:22:11Z caller=logging.go:85 method=Health result=2 took=38.489µs +ts=2025-05-22T07:22:14Z caller=logging.go:85 method=Health result=2 took=43.069µs +ts=2025-05-22T07:22:14Z caller=logging.go:85 method=Health result=2 took=40.089µs +ts=2025-05-22T07:22:17Z caller=logging.go:85 method=Health result=2 took=51.779µs +ts=2025-05-22T07:22:17Z caller=logging.go:85 method=Health result=2 took=1.082494ms +ts=2025-05-22T07:22:20Z caller=logging.go:85 method=Health result=2 took=36.009µs +ts=2025-05-22T07:22:20Z caller=logging.go:85 method=Health result=2 took=36.109µs +ts=2025-05-22T07:22:23Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T07:22:23Z caller=logging.go:85 method=Health result=2 took=28.099µs +ts=2025-05-22T07:22:26Z caller=logging.go:85 method=Health result=2 took=40.249µs +ts=2025-05-22T07:22:26Z caller=logging.go:85 method=Health result=2 took=41.579µs +ts=2025-05-22T07:22:29Z caller=logging.go:85 method=Health result=2 took=38.119µs +ts=2025-05-22T07:22:29Z caller=logging.go:85 method=Health result=2 took=40.239µs +ts=2025-05-22T07:22:32Z caller=logging.go:85 method=Health result=2 took=47.538µs +ts=2025-05-22T07:22:32Z caller=logging.go:85 method=Health result=2 took=53.429µs +ts=2025-05-22T07:22:35Z caller=logging.go:85 method=Health result=2 took=42.609µs +ts=2025-05-22T07:22:35Z caller=logging.go:85 method=Health result=2 took=42.439µs +ts=2025-05-22T07:22:38Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T07:22:38Z caller=logging.go:85 method=Health result=2 took=42.829µs +ts=2025-05-22T07:22:41Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T07:22:41Z caller=logging.go:85 method=Health result=2 took=41.409µs +ts=2025-05-22T07:22:44Z caller=logging.go:85 method=Health result=2 took=35.699µs +ts=2025-05-22T07:22:44Z caller=logging.go:85 method=Health result=2 took=20.559µs +ts=2025-05-22T07:22:47Z caller=logging.go:85 method=Health result=2 took=45.089µs +ts=2025-05-22T07:22:47Z caller=logging.go:85 method=Health result=2 took=51.039µs +ts=2025-05-22T07:22:50Z caller=logging.go:85 method=Health result=2 took=40.859µs +ts=2025-05-22T07:22:50Z caller=logging.go:85 method=Health result=2 took=41.029µs +ts=2025-05-22T07:22:53Z caller=logging.go:85 method=Health result=2 took=38.109µs +ts=2025-05-22T07:22:53Z caller=logging.go:85 method=Health result=2 took=46.768µs +ts=2025-05-22T07:22:56Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T07:22:56Z caller=logging.go:85 method=Health result=2 took=57.348µs +ts=2025-05-22T07:22:59Z caller=logging.go:85 method=Health result=2 took=37.559µs +ts=2025-05-22T07:22:59Z caller=logging.go:85 method=Health result=2 took=48.699µs +ts=2025-05-22T07:23:02Z caller=logging.go:85 method=Health result=2 took=41.079µs +ts=2025-05-22T07:23:02Z caller=logging.go:85 method=Health result=2 took=47.889µs +ts=2025-05-22T07:23:05Z caller=logging.go:85 method=Health result=2 took=22.84µs +ts=2025-05-22T07:23:05Z caller=logging.go:85 method=Health result=2 took=36.09µs +ts=2025-05-22T07:23:08Z caller=logging.go:85 method=Health result=2 took=37.369µs +ts=2025-05-22T07:23:08Z caller=logging.go:85 method=Health result=2 took=37.019µs +ts=2025-05-22T07:23:11Z caller=logging.go:85 method=Health result=2 took=36.159µs +ts=2025-05-22T07:23:11Z caller=logging.go:85 method=Health result=2 took=36.139µs +ts=2025-05-22T07:23:14Z caller=logging.go:85 method=Health result=2 took=44.409µs +ts=2025-05-22T07:23:14Z caller=logging.go:85 method=Health result=2 took=50.358µs +ts=2025-05-22T07:23:17Z caller=logging.go:85 method=Health result=2 took=43.329µs +ts=2025-05-22T07:23:17Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T07:23:20Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T07:23:20Z caller=logging.go:85 method=Health result=2 took=35.169µs +ts=2025-05-22T07:23:23Z caller=logging.go:85 method=Health result=2 took=38.829µs +ts=2025-05-22T07:23:23Z caller=logging.go:85 method=Health result=2 took=38.749µs +ts=2025-05-22T07:23:26Z caller=logging.go:85 method=Health result=2 took=31.699µs +ts=2025-05-22T07:23:26Z caller=logging.go:85 method=Health result=2 took=48.089µs +ts=2025-05-22T07:23:29Z caller=logging.go:85 method=Health result=2 took=40.289µs +ts=2025-05-22T07:23:29Z caller=logging.go:85 method=Health result=2 took=27.829µs +ts=2025-05-22T07:23:32Z caller=logging.go:85 method=Health result=2 took=43.409µs +ts=2025-05-22T07:23:32Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T07:23:35Z caller=logging.go:85 method=Health result=2 took=29.43µs +ts=2025-05-22T07:23:35Z caller=logging.go:85 method=Health result=2 took=63.679µs +ts=2025-05-22T07:23:38Z caller=logging.go:85 method=Health result=2 took=31.139µs +ts=2025-05-22T07:23:38Z caller=logging.go:85 method=Health result=2 took=57.809µs +ts=2025-05-22T07:23:41Z caller=logging.go:85 method=Health result=2 took=31.429µs +ts=2025-05-22T07:23:41Z caller=logging.go:85 method=Health result=2 took=55.389µs +ts=2025-05-22T07:23:44Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T07:23:44Z caller=logging.go:85 method=Health result=2 took=45.979µs +ts=2025-05-22T07:23:47Z caller=logging.go:85 method=Health result=2 took=46.559µs +ts=2025-05-22T07:23:47Z caller=logging.go:85 method=Health result=2 took=51.169µs +ts=2025-05-22T07:23:50Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T07:23:50Z caller=logging.go:85 method=Health result=2 took=38.829µs +ts=2025-05-22T07:23:53Z caller=logging.go:85 method=Health result=2 took=35.939µs +ts=2025-05-22T07:23:53Z caller=logging.go:85 method=Health result=2 took=40.799µs +ts=2025-05-22T07:23:56Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T07:23:56Z caller=logging.go:85 method=Health result=2 took=48.849µs +ts=2025-05-22T07:23:59Z caller=logging.go:85 method=Health result=2 took=44.529µs +ts=2025-05-22T07:23:59Z caller=logging.go:85 method=Health result=2 took=46.539µs +ts=2025-05-22T07:24:02Z caller=logging.go:85 method=Health result=2 took=32.95µs +ts=2025-05-22T07:24:02Z caller=logging.go:85 method=Health result=2 took=47.459µs +ts=2025-05-22T07:24:05Z caller=logging.go:85 method=Health result=2 took=45.759µs +ts=2025-05-22T07:24:05Z caller=logging.go:85 method=Health result=2 took=48.829µs +ts=2025-05-22T07:24:08Z caller=logging.go:85 method=Health result=2 took=39.009µs +ts=2025-05-22T07:24:08Z caller=logging.go:85 method=Health result=2 took=39.309µs +ts=2025-05-22T07:24:11Z caller=logging.go:85 method=Health result=2 took=36.979µs +ts=2025-05-22T07:24:11Z caller=logging.go:85 method=Health result=2 took=21.479µs +ts=2025-05-22T07:24:14Z caller=logging.go:85 method=Health result=2 took=32.05µs +ts=2025-05-22T07:24:14Z caller=logging.go:85 method=Health result=2 took=34.999µs +ts=2025-05-22T07:24:17Z caller=logging.go:85 method=Health result=2 took=49.799µs +ts=2025-05-22T07:24:17Z caller=logging.go:85 method=Health result=2 took=1.010376ms +ts=2025-05-22T07:24:20Z caller=logging.go:85 method=Health result=2 took=30.089µs +ts=2025-05-22T07:24:20Z caller=logging.go:85 method=Health result=2 took=30.039µs +ts=2025-05-22T07:24:23Z caller=logging.go:85 method=Health result=2 took=38.13µs +ts=2025-05-22T07:24:23Z caller=logging.go:85 method=Health result=2 took=45.609µs +ts=2025-05-22T07:24:26Z caller=logging.go:85 method=Health result=2 took=39.039µs +ts=2025-05-22T07:24:26Z caller=logging.go:85 method=Health result=2 took=38.599µs +ts=2025-05-22T07:24:29Z caller=logging.go:85 method=Health result=2 took=46.419µs +ts=2025-05-22T07:24:29Z caller=logging.go:85 method=Health result=2 took=47.359µs +ts=2025-05-22T07:24:32Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T07:24:32Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T07:24:35Z caller=logging.go:85 method=Health result=2 took=41.399µs +ts=2025-05-22T07:24:35Z caller=logging.go:85 method=Health result=2 took=48.978µs +ts=2025-05-22T07:24:38Z caller=logging.go:85 method=Health result=2 took=41.029µs +ts=2025-05-22T07:24:38Z caller=logging.go:85 method=Health result=2 took=41.179µs +ts=2025-05-22T07:24:41Z caller=logging.go:85 method=Health result=2 took=27.969µs +ts=2025-05-22T07:24:41Z caller=logging.go:85 method=Health result=2 took=27.989µs +ts=2025-05-22T07:24:44Z caller=logging.go:85 method=Health result=2 took=51.099µs +ts=2025-05-22T07:24:44Z caller=logging.go:85 method=Health result=2 took=51.908µs +ts=2025-05-22T07:24:47Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T07:24:47Z caller=logging.go:85 method=Health result=2 took=15.52µs +ts=2025-05-22T07:24:50Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T07:24:50Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T07:24:53Z caller=logging.go:85 method=Health result=2 took=37.389µs +ts=2025-05-22T07:24:53Z caller=logging.go:85 method=Health result=2 took=36.919µs +ts=2025-05-22T07:24:56Z caller=logging.go:85 method=Health result=2 took=40.699µs +ts=2025-05-22T07:24:56Z caller=logging.go:85 method=Health result=2 took=27.169µs +ts=2025-05-22T07:24:59Z caller=logging.go:85 method=Health result=2 took=74.078µs +ts=2025-05-22T07:24:59Z caller=logging.go:85 method=Health result=2 took=23.579µs +ts=2025-05-22T07:25:02Z caller=logging.go:85 method=Health result=2 took=45.459µs +ts=2025-05-22T07:25:02Z caller=logging.go:85 method=Health result=2 took=51.439µs +ts=2025-05-22T07:25:05Z caller=logging.go:85 method=Health result=2 took=41.779µs +ts=2025-05-22T07:25:05Z caller=logging.go:85 method=Health result=2 took=49.709µs +ts=2025-05-22T07:25:08Z caller=logging.go:85 method=Health result=2 took=45.019µs +ts=2025-05-22T07:25:08Z caller=logging.go:85 method=Health result=2 took=53.069µs +ts=2025-05-22T07:25:11Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T07:25:11Z caller=logging.go:85 method=Health result=2 took=50.358µs +ts=2025-05-22T07:25:14Z caller=logging.go:85 method=Health result=2 took=40.589µs +ts=2025-05-22T07:25:14Z caller=logging.go:85 method=Health result=2 took=33.419µs +ts=2025-05-22T07:25:17Z caller=logging.go:85 method=Health result=2 took=42.869µs +ts=2025-05-22T07:25:17Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T07:25:20Z caller=logging.go:85 method=Health result=2 took=44.519µs +ts=2025-05-22T07:25:20Z caller=logging.go:85 method=Health result=2 took=44.349µs +ts=2025-05-22T07:25:23Z caller=logging.go:85 method=Health result=2 took=50.549µs +ts=2025-05-22T07:25:23Z caller=logging.go:85 method=Health result=2 took=46.249µs +ts=2025-05-22T07:25:26Z caller=logging.go:85 method=Health result=2 took=29.359µs +ts=2025-05-22T07:25:26Z caller=logging.go:85 method=Health result=2 took=54.759µs +ts=2025-05-22T07:25:29Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T07:25:29Z caller=logging.go:85 method=Health result=2 took=40.919µs +ts=2025-05-22T07:25:32Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T07:25:32Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T07:25:35Z caller=logging.go:85 method=Health result=2 took=45.549µs +ts=2025-05-22T07:25:35Z caller=logging.go:85 method=Health result=2 took=51.209µs +ts=2025-05-22T07:25:38Z caller=logging.go:85 method=Health result=2 took=44.989µs +ts=2025-05-22T07:25:38Z caller=logging.go:85 method=Health result=2 took=51.119µs +ts=2025-05-22T07:25:41Z caller=logging.go:85 method=Health result=2 took=40.379µs +ts=2025-05-22T07:25:41Z caller=logging.go:85 method=Health result=2 took=49.199µs +ts=2025-05-22T07:25:44Z caller=logging.go:85 method=Health result=2 took=38.75µs +ts=2025-05-22T07:25:44Z caller=logging.go:85 method=Health result=2 took=48.898µs +ts=2025-05-22T07:25:47Z caller=logging.go:85 method=Health result=2 took=46.439µs +ts=2025-05-22T07:25:47Z caller=logging.go:85 method=Health result=2 took=56.638µs +ts=2025-05-22T07:25:50Z caller=logging.go:85 method=Health result=2 took=38.159µs +ts=2025-05-22T07:25:50Z caller=logging.go:85 method=Health result=2 took=49.129µs +ts=2025-05-22T07:25:53Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T07:25:53Z caller=logging.go:85 method=Health result=2 took=46.949µs +ts=2025-05-22T07:25:56Z caller=logging.go:85 method=Health result=2 took=41.199µs +ts=2025-05-22T07:25:56Z caller=logging.go:85 method=Health result=2 took=41.589µs +ts=2025-05-22T07:25:59Z caller=logging.go:85 method=Health result=2 took=44.599µs +ts=2025-05-22T07:25:59Z caller=logging.go:85 method=Health result=2 took=50.349µs +ts=2025-05-22T07:26:02Z caller=logging.go:85 method=Health result=2 took=40.959µs +ts=2025-05-22T07:26:02Z caller=logging.go:85 method=Health result=2 took=48.438µs +ts=2025-05-22T07:26:05Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T07:26:05Z caller=logging.go:85 method=Health result=2 took=41.859µs +ts=2025-05-22T07:26:08Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T07:26:08Z caller=logging.go:85 method=Health result=2 took=39.469µs +ts=2025-05-22T07:26:11Z caller=logging.go:85 method=Health result=2 took=45.569µs +ts=2025-05-22T07:26:11Z caller=logging.go:85 method=Health result=2 took=50.618µs +ts=2025-05-22T07:26:14Z caller=logging.go:85 method=Health result=2 took=44.439µs +ts=2025-05-22T07:26:14Z caller=logging.go:85 method=Health result=2 took=50.599µs +ts=2025-05-22T07:26:17Z caller=logging.go:85 method=Health result=2 took=66.068µs +ts=2025-05-22T07:26:17Z caller=logging.go:85 method=Health result=2 took=59.079µs +ts=2025-05-22T07:26:20Z caller=logging.go:85 method=Health result=2 took=43.579µs +ts=2025-05-22T07:26:20Z caller=logging.go:85 method=Health result=2 took=64.828µs +ts=2025-05-22T07:26:23Z caller=logging.go:85 method=Health result=2 took=39.139µs +ts=2025-05-22T07:26:23Z caller=logging.go:85 method=Health result=2 took=50.349µs +ts=2025-05-22T07:26:26Z caller=logging.go:85 method=Health result=2 took=36.879µs +ts=2025-05-22T07:26:26Z caller=logging.go:85 method=Health result=2 took=19.83µs +ts=2025-05-22T07:26:29Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T07:26:29Z caller=logging.go:85 method=Health result=2 took=40.539µs +ts=2025-05-22T07:26:32Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T07:26:32Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T07:26:35Z caller=logging.go:85 method=Health result=2 took=45.129µs +ts=2025-05-22T07:26:35Z caller=logging.go:85 method=Health result=2 took=51.899µs +ts=2025-05-22T07:26:38Z caller=logging.go:85 method=Health result=2 took=46.699µs +ts=2025-05-22T07:26:38Z caller=logging.go:85 method=Health result=2 took=50.719µs +ts=2025-05-22T07:26:41Z caller=logging.go:85 method=Health result=2 took=40.21µs +ts=2025-05-22T07:26:41Z caller=logging.go:85 method=Health result=2 took=27.459µs +ts=2025-05-22T07:26:44Z caller=logging.go:85 method=Health result=2 took=46.009µs +ts=2025-05-22T07:26:44Z caller=logging.go:85 method=Health result=2 took=51.919µs +ts=2025-05-22T07:26:47Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T07:26:47Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T07:26:50Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T07:26:50Z caller=logging.go:85 method=Health result=2 took=43.099µs +ts=2025-05-22T07:26:53Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T07:26:53Z caller=logging.go:85 method=Health result=2 took=47.639µs +ts=2025-05-22T07:26:56Z caller=logging.go:85 method=Health result=2 took=46.369µs +ts=2025-05-22T07:26:56Z caller=logging.go:85 method=Health result=2 took=50.749µs +ts=2025-05-22T07:26:59Z caller=logging.go:85 method=Health result=2 took=36.839µs +ts=2025-05-22T07:26:59Z caller=logging.go:85 method=Health result=2 took=48.609µs +ts=2025-05-22T07:27:02Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T07:27:02Z caller=logging.go:85 method=Health result=2 took=49.199µs +ts=2025-05-22T07:27:05Z caller=logging.go:85 method=Health result=2 took=44.599µs +ts=2025-05-22T07:27:05Z caller=logging.go:85 method=Health result=2 took=50.769µs +ts=2025-05-22T07:27:08Z caller=logging.go:85 method=Health result=2 took=42.109µs +ts=2025-05-22T07:27:08Z caller=logging.go:85 method=Health result=2 took=50.489µs +ts=2025-05-22T07:27:11Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T07:27:11Z caller=logging.go:85 method=Health result=2 took=47.309µs +ts=2025-05-22T07:27:14Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T07:27:14Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T07:27:17Z caller=logging.go:85 method=Health result=2 took=44.939µs +ts=2025-05-22T07:27:17Z caller=logging.go:85 method=Health result=2 took=51.129µs +ts=2025-05-22T07:27:20Z caller=logging.go:85 method=Health result=2 took=43.859µs +ts=2025-05-22T07:27:20Z caller=logging.go:85 method=Health result=2 took=45.289µs +ts=2025-05-22T07:27:23Z caller=logging.go:85 method=Health result=2 took=41.289µs +ts=2025-05-22T07:27:23Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T07:27:26Z caller=logging.go:85 method=Health result=2 took=56.429µs +ts=2025-05-22T07:27:26Z caller=logging.go:85 method=Health result=2 took=56.449µs +ts=2025-05-22T07:27:29Z caller=logging.go:85 method=Health result=2 took=43.839µs +ts=2025-05-22T07:27:29Z caller=logging.go:85 method=Health result=2 took=49.448µs +ts=2025-05-22T07:27:32Z caller=logging.go:85 method=Health result=2 took=45.669µs +ts=2025-05-22T07:27:32Z caller=logging.go:85 method=Health result=2 took=48.199µs +ts=2025-05-22T07:27:35Z caller=logging.go:85 method=Health result=2 took=58.289µs +ts=2025-05-22T07:27:35Z caller=logging.go:85 method=Health result=2 took=47.859µs +ts=2025-05-22T07:27:38Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T07:27:38Z caller=logging.go:85 method=Health result=2 took=49.098µs +ts=2025-05-22T07:27:41Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T07:27:41Z caller=logging.go:85 method=Health result=2 took=43.379µs +ts=2025-05-22T07:27:44Z caller=logging.go:85 method=Health result=2 took=51.578µs +ts=2025-05-22T07:27:44Z caller=logging.go:85 method=Health result=2 took=52.298µs +ts=2025-05-22T07:27:47Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T07:27:47Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T07:27:50Z caller=logging.go:85 method=Health result=2 took=41.679µs +ts=2025-05-22T07:27:50Z caller=logging.go:85 method=Health result=2 took=41.309µs +ts=2025-05-22T07:27:53Z caller=logging.go:85 method=Health result=2 took=38.88µs +ts=2025-05-22T07:27:53Z caller=logging.go:85 method=Health result=2 took=39.64µs +ts=2025-05-22T07:27:56Z caller=logging.go:85 method=Health result=2 took=33.719µs +ts=2025-05-22T07:27:56Z caller=logging.go:85 method=Health result=2 took=58.419µs +ts=2025-05-22T07:27:59Z caller=logging.go:85 method=Health result=2 took=27.14µs +ts=2025-05-22T07:27:59Z caller=logging.go:85 method=Health result=2 took=27.16µs +ts=2025-05-22T07:28:02Z caller=logging.go:85 method=Health result=2 took=35.829µs +ts=2025-05-22T07:28:02Z caller=logging.go:85 method=Health result=2 took=35.459µs +ts=2025-05-22T07:28:05Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T07:28:05Z caller=logging.go:85 method=Health result=2 took=30.749µs +ts=2025-05-22T07:28:08Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T07:28:08Z caller=logging.go:85 method=Health result=2 took=44.009µs +ts=2025-05-22T07:28:11Z caller=logging.go:85 method=Health result=2 took=40.089µs +ts=2025-05-22T07:28:11Z caller=logging.go:85 method=Health result=2 took=22.009µs +ts=2025-05-22T07:28:14Z caller=logging.go:85 method=Health result=2 took=55.238µs +ts=2025-05-22T07:28:14Z caller=logging.go:85 method=Health result=2 took=55.238µs +ts=2025-05-22T07:28:17Z caller=logging.go:85 method=Health result=2 took=1.340498ms +ts=2025-05-22T07:28:17Z caller=logging.go:85 method=Health result=2 took=75.788µs +ts=2025-05-22T07:28:20Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T07:28:20Z caller=logging.go:85 method=Health result=2 took=64.409µs +ts=2025-05-22T07:28:23Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T07:28:23Z caller=logging.go:85 method=Health result=2 took=40.969µs +ts=2025-05-22T07:28:26Z caller=logging.go:85 method=Health result=2 took=35.699µs +ts=2025-05-22T07:28:26Z caller=logging.go:85 method=Health result=2 took=33.989µs +ts=2025-05-22T07:28:29Z caller=logging.go:85 method=Health result=2 took=42.539µs +ts=2025-05-22T07:28:29Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T07:28:32Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T07:28:32Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T07:28:35Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T07:28:35Z caller=logging.go:85 method=Health result=2 took=48.109µs +ts=2025-05-22T07:28:38Z caller=logging.go:85 method=Health result=2 took=45.809µs +ts=2025-05-22T07:28:38Z caller=logging.go:85 method=Health result=2 took=51.859µs +ts=2025-05-22T07:28:41Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T07:28:41Z caller=logging.go:85 method=Health result=2 took=46.999µs +ts=2025-05-22T07:28:44Z caller=logging.go:85 method=Health result=2 took=42.669µs +ts=2025-05-22T07:28:44Z caller=logging.go:85 method=Health result=2 took=42.039µs +ts=2025-05-22T07:28:47Z caller=logging.go:85 method=Health result=2 took=49.558µs +ts=2025-05-22T07:28:47Z caller=logging.go:85 method=Health result=2 took=27.38µs +ts=2025-05-22T07:28:50Z caller=logging.go:85 method=Health result=2 took=64.448µs +ts=2025-05-22T07:28:50Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T07:28:53Z caller=logging.go:85 method=Health result=2 took=43.639µs +ts=2025-05-22T07:28:53Z caller=logging.go:85 method=Health result=2 took=50.259µs +ts=2025-05-22T07:28:56Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T07:28:56Z caller=logging.go:85 method=Health result=2 took=35.279µs +ts=2025-05-22T07:28:59Z caller=logging.go:85 method=Health result=2 took=29.47µs +ts=2025-05-22T07:28:59Z caller=logging.go:85 method=Health result=2 took=11.889µs +ts=2025-05-22T07:29:02Z caller=logging.go:85 method=Health result=2 took=29.719µs +ts=2025-05-22T07:29:02Z caller=logging.go:85 method=Health result=2 took=12.55µs +ts=2025-05-22T07:29:05Z caller=logging.go:85 method=Health result=2 took=34.08µs +ts=2025-05-22T07:29:05Z caller=logging.go:85 method=Health result=2 took=10.08µs +ts=2025-05-22T07:29:08Z caller=logging.go:85 method=Health result=2 took=30.799µs +ts=2025-05-22T07:29:08Z caller=logging.go:85 method=Health result=2 took=10.26µs +ts=2025-05-22T07:29:11Z caller=logging.go:85 method=Health result=2 took=31.709µs +ts=2025-05-22T07:29:11Z caller=logging.go:85 method=Health result=2 took=47.189µs +ts=2025-05-22T07:29:14Z caller=logging.go:85 method=Health result=2 took=51.629µs +ts=2025-05-22T07:29:14Z caller=logging.go:85 method=Health result=2 took=51.269µs +ts=2025-05-22T07:29:17Z caller=logging.go:85 method=Health result=2 took=31.969µs +ts=2025-05-22T07:29:17Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T07:29:20Z caller=logging.go:85 method=Health result=2 took=52.819µs +ts=2025-05-22T07:29:20Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T07:29:23Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T07:29:23Z caller=logging.go:85 method=Health result=2 took=44.509µs +ts=2025-05-22T07:29:26Z caller=logging.go:85 method=Health result=2 took=29.279µs +ts=2025-05-22T07:29:26Z caller=logging.go:85 method=Health result=2 took=53.959µs +ts=2025-05-22T07:29:29Z caller=logging.go:85 method=Health result=2 took=43.479µs +ts=2025-05-22T07:29:29Z caller=logging.go:85 method=Health result=2 took=48.728µs +ts=2025-05-22T07:29:32Z caller=logging.go:85 method=Health result=2 took=31.809µs +ts=2025-05-22T07:29:32Z caller=logging.go:85 method=Health result=2 took=43.699µs +ts=2025-05-22T07:29:35Z caller=logging.go:85 method=Health result=2 took=40.039µs +ts=2025-05-22T07:29:35Z caller=logging.go:85 method=Health result=2 took=39.639µs +ts=2025-05-22T07:29:38Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T07:29:38Z caller=logging.go:85 method=Health result=2 took=47.269µs +ts=2025-05-22T07:29:41Z caller=logging.go:85 method=Health result=2 took=29.339µs +ts=2025-05-22T07:29:41Z caller=logging.go:85 method=Health result=2 took=20.51µs +ts=2025-05-22T07:29:44Z caller=logging.go:85 method=Health result=2 took=43.149µs +ts=2025-05-22T07:29:44Z caller=logging.go:85 method=Health result=2 took=40.829µs +ts=2025-05-22T07:29:47Z caller=logging.go:85 method=Health result=2 took=23.149µs +ts=2025-05-22T07:29:47Z caller=logging.go:85 method=Health result=2 took=29.849µs +ts=2025-05-22T07:29:50Z caller=logging.go:85 method=Health result=2 took=38.229µs +ts=2025-05-22T07:29:50Z caller=logging.go:85 method=Health result=2 took=37.259µs +ts=2025-05-22T07:29:53Z caller=logging.go:85 method=Health result=2 took=38.829µs +ts=2025-05-22T07:29:53Z caller=logging.go:85 method=Health result=2 took=37.289µs +ts=2025-05-22T07:29:56Z caller=logging.go:85 method=Health result=2 took=31.049µs +ts=2025-05-22T07:29:56Z caller=logging.go:85 method=Health result=2 took=46.499µs +ts=2025-05-22T07:29:59Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T07:29:59Z caller=logging.go:85 method=Health result=2 took=51.339µs +ts=2025-05-22T07:30:02Z caller=logging.go:85 method=Health result=2 took=30.589µs +ts=2025-05-22T07:30:02Z caller=logging.go:85 method=Health result=2 took=10.63µs +ts=2025-05-22T07:30:05Z caller=logging.go:85 method=Health result=2 took=36.059µs +ts=2025-05-22T07:30:05Z caller=logging.go:85 method=Health result=2 took=34.58µs +ts=2025-05-22T07:30:08Z caller=logging.go:85 method=Health result=2 took=32.009µs +ts=2025-05-22T07:30:08Z caller=logging.go:85 method=Health result=2 took=47.699µs +ts=2025-05-22T07:30:11Z caller=logging.go:85 method=Health result=2 took=30.829µs +ts=2025-05-22T07:30:11Z caller=logging.go:85 method=Health result=2 took=53.089µs +ts=2025-05-22T07:30:14Z caller=logging.go:85 method=Health result=2 took=29.08µs +ts=2025-05-22T07:30:14Z caller=logging.go:85 method=Health result=2 took=29.13µs +ts=2025-05-22T07:30:17Z caller=logging.go:85 method=Health result=2 took=845.63µs +ts=2025-05-22T07:30:17Z caller=logging.go:85 method=Health result=2 took=850.39µs +ts=2025-05-22T07:30:20Z caller=logging.go:85 method=Health result=2 took=39.799µs +ts=2025-05-22T07:30:20Z caller=logging.go:85 method=Health result=2 took=45.589µs +ts=2025-05-22T07:30:23Z caller=logging.go:85 method=Health result=2 took=39.339µs +ts=2025-05-22T07:30:23Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T07:30:26Z caller=logging.go:85 method=Health result=2 took=43.559µs +ts=2025-05-22T07:30:26Z caller=logging.go:85 method=Health result=2 took=30.23µs +ts=2025-05-22T07:30:29Z caller=logging.go:85 method=Health result=2 took=33.56µs +ts=2025-05-22T07:30:29Z caller=logging.go:85 method=Health result=2 took=47.779µs +ts=2025-05-22T07:30:32Z caller=logging.go:85 method=Health result=2 took=29.599µs +ts=2025-05-22T07:30:32Z caller=logging.go:85 method=Health result=2 took=30.009µs +ts=2025-05-22T07:30:35Z caller=logging.go:85 method=Health result=2 took=40.219µs +ts=2025-05-22T07:30:35Z caller=logging.go:85 method=Health result=2 took=40.099µs +ts=2025-05-22T07:30:38Z caller=logging.go:85 method=Health result=2 took=45.569µs +ts=2025-05-22T07:30:38Z caller=logging.go:85 method=Health result=2 took=45.179µs +ts=2025-05-22T07:30:41Z caller=logging.go:85 method=Health result=2 took=38.639µs +ts=2025-05-22T07:30:41Z caller=logging.go:85 method=Health result=2 took=50.049µs +ts=2025-05-22T07:30:44Z caller=logging.go:85 method=Health result=2 took=37.199µs +ts=2025-05-22T07:30:44Z caller=logging.go:85 method=Health result=2 took=47.138µs +ts=2025-05-22T07:30:47Z caller=logging.go:85 method=Health result=2 took=56.229µs +ts=2025-05-22T07:30:47Z caller=logging.go:85 method=Health result=2 took=56.179µs +ts=2025-05-22T07:30:50Z caller=logging.go:85 method=Health result=2 took=30.209µs +ts=2025-05-22T07:30:50Z caller=logging.go:85 method=Health result=2 took=13.96µs +ts=2025-05-22T07:30:53Z caller=logging.go:85 method=Health result=2 took=40.279µs +ts=2025-05-22T07:30:53Z caller=logging.go:85 method=Health result=2 took=36.269µs +ts=2025-05-22T07:30:56Z caller=logging.go:85 method=Health result=2 took=38.839µs +ts=2025-05-22T07:30:56Z caller=logging.go:85 method=Health result=2 took=44.999µs +ts=2025-05-22T07:30:59Z caller=logging.go:85 method=Health result=2 took=37.259µs +ts=2025-05-22T07:30:59Z caller=logging.go:85 method=Health result=2 took=36.609µs +ts=2025-05-22T07:31:02Z caller=logging.go:85 method=Health result=2 took=35.439µs +ts=2025-05-22T07:31:02Z caller=logging.go:85 method=Health result=2 took=8.63µs +ts=2025-05-22T07:31:05Z caller=logging.go:85 method=Health result=2 took=41.609µs +ts=2025-05-22T07:31:05Z caller=logging.go:85 method=Health result=2 took=48.789µs +ts=2025-05-22T07:31:08Z caller=logging.go:85 method=Health result=2 took=31.939µs +ts=2025-05-22T07:31:08Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T07:31:11Z caller=logging.go:85 method=Health result=2 took=33.359µs +ts=2025-05-22T07:31:11Z caller=logging.go:85 method=Health result=2 took=41.829µs +ts=2025-05-22T07:31:14Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T07:31:14Z caller=logging.go:85 method=Health result=2 took=35.719µs +ts=2025-05-22T07:31:17Z caller=logging.go:85 method=Health result=2 took=35.549µs +ts=2025-05-22T07:31:17Z caller=logging.go:85 method=Health result=2 took=35.089µs +ts=2025-05-22T07:31:20Z caller=logging.go:85 method=Health result=2 took=31.889µs +ts=2025-05-22T07:31:20Z caller=logging.go:85 method=Health result=2 took=52.379µs +ts=2025-05-22T07:31:23Z caller=logging.go:85 method=Health result=2 took=39.929µs +ts=2025-05-22T07:31:23Z caller=logging.go:85 method=Health result=2 took=69.758µs +ts=2025-05-22T07:31:26Z caller=logging.go:85 method=Health result=2 took=37.379µs +ts=2025-05-22T07:31:26Z caller=logging.go:85 method=Health result=2 took=49.629µs +ts=2025-05-22T07:31:29Z caller=logging.go:85 method=Health result=2 took=45.579µs +ts=2025-05-22T07:31:29Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T07:31:32Z caller=logging.go:85 method=Health result=2 took=46.009µs +ts=2025-05-22T07:31:32Z caller=logging.go:85 method=Health result=2 took=48.159µs +ts=2025-05-22T07:31:35Z caller=logging.go:85 method=Health result=2 took=35.949µs +ts=2025-05-22T07:31:35Z caller=logging.go:85 method=Health result=2 took=35.759µs +ts=2025-05-22T07:31:38Z caller=logging.go:85 method=Health result=2 took=56.839µs +ts=2025-05-22T07:31:38Z caller=logging.go:85 method=Health result=2 took=56.089µs +ts=2025-05-22T07:31:41Z caller=logging.go:85 method=Health result=2 took=43.099µs +ts=2025-05-22T07:31:41Z caller=logging.go:85 method=Health result=2 took=50.409µs +ts=2025-05-22T07:31:44Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T07:31:44Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T07:31:47Z caller=logging.go:85 method=Health result=2 took=39.499µs +ts=2025-05-22T07:31:47Z caller=logging.go:85 method=Health result=2 took=36.719µs +ts=2025-05-22T07:31:50Z caller=logging.go:85 method=Health result=2 took=45.438µs +ts=2025-05-22T07:31:50Z caller=logging.go:85 method=Health result=2 took=45.849µs +ts=2025-05-22T07:31:53Z caller=logging.go:85 method=Health result=2 took=36.669µs +ts=2025-05-22T07:31:53Z caller=logging.go:85 method=Health result=2 took=53.509µs +ts=2025-05-22T07:31:56Z caller=logging.go:85 method=Health result=2 took=50.319µs +ts=2025-05-22T07:31:56Z caller=logging.go:85 method=Health result=2 took=50.089µs +ts=2025-05-22T07:31:59Z caller=logging.go:85 method=Health result=2 took=29.889µs +ts=2025-05-22T07:31:59Z caller=logging.go:85 method=Health result=2 took=15.809µs +ts=2025-05-22T07:32:02Z caller=logging.go:85 method=Health result=2 took=45.599µs +ts=2025-05-22T07:32:02Z caller=logging.go:85 method=Health result=2 took=50.398µs +ts=2025-05-22T07:32:05Z caller=logging.go:85 method=Health result=2 took=32.639µs +ts=2025-05-22T07:32:05Z caller=logging.go:85 method=Health result=2 took=46.269µs +ts=2025-05-22T07:32:08Z caller=logging.go:85 method=Health result=2 took=39.549µs +ts=2025-05-22T07:32:08Z caller=logging.go:85 method=Health result=2 took=40.049µs +ts=2025-05-22T07:32:11Z caller=logging.go:85 method=Health result=2 took=40.729µs +ts=2025-05-22T07:32:11Z caller=logging.go:85 method=Health result=2 took=48.029µs +ts=2025-05-22T07:32:14Z caller=logging.go:85 method=Health result=2 took=31.159µs +ts=2025-05-22T07:32:14Z caller=logging.go:85 method=Health result=2 took=47.328µs +ts=2025-05-22T07:32:17Z caller=logging.go:85 method=Health result=2 took=51.748µs +ts=2025-05-22T07:32:17Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T07:32:20Z caller=logging.go:85 method=Health result=2 took=44.749µs +ts=2025-05-22T07:32:20Z caller=logging.go:85 method=Health result=2 took=43.319µs +ts=2025-05-22T07:32:23Z caller=logging.go:85 method=Health result=2 took=52.099µs +ts=2025-05-22T07:32:23Z caller=logging.go:85 method=Health result=2 took=31.609µs +ts=2025-05-22T07:32:26Z caller=logging.go:85 method=Health result=2 took=39.259µs +ts=2025-05-22T07:32:26Z caller=logging.go:85 method=Health result=2 took=38.349µs +ts=2025-05-22T07:32:29Z caller=logging.go:85 method=Health result=2 took=37.159µs +ts=2025-05-22T07:32:29Z caller=logging.go:85 method=Health result=2 took=22.749µs +ts=2025-05-22T07:32:32Z caller=logging.go:85 method=Health result=2 took=45.839µs +ts=2025-05-22T07:32:32Z caller=logging.go:85 method=Health result=2 took=49.319µs +ts=2025-05-22T07:32:35Z caller=logging.go:85 method=Health result=2 took=38.009µs +ts=2025-05-22T07:32:35Z caller=logging.go:85 method=Health result=2 took=37.829µs +ts=2025-05-22T07:32:38Z caller=logging.go:85 method=Health result=2 took=39.329µs +ts=2025-05-22T07:32:38Z caller=logging.go:85 method=Health result=2 took=48.039µs +ts=2025-05-22T07:32:41Z caller=logging.go:85 method=Health result=2 took=35.719µs +ts=2025-05-22T07:32:41Z caller=logging.go:85 method=Health result=2 took=35.569µs +ts=2025-05-22T07:32:44Z caller=logging.go:85 method=Health result=2 took=31.119µs +ts=2025-05-22T07:32:44Z caller=logging.go:85 method=Health result=2 took=34.339µs +ts=2025-05-22T07:32:47Z caller=logging.go:85 method=Health result=2 took=28.669µs +ts=2025-05-22T07:32:47Z caller=logging.go:85 method=Health result=2 took=29.389µs +ts=2025-05-22T07:32:50Z caller=logging.go:85 method=Health result=2 took=31.089µs +ts=2025-05-22T07:32:50Z caller=logging.go:85 method=Health result=2 took=33.539µs +ts=2025-05-22T07:32:53Z caller=logging.go:85 method=Health result=2 took=37.12µs +ts=2025-05-22T07:32:53Z caller=logging.go:85 method=Health result=2 took=42.419µs +ts=2025-05-22T07:32:56Z caller=logging.go:85 method=Health result=2 took=30.129µs +ts=2025-05-22T07:32:56Z caller=logging.go:85 method=Health result=2 took=30.059µs +ts=2025-05-22T07:32:59Z caller=logging.go:85 method=Health result=2 took=39.219µs +ts=2025-05-22T07:32:59Z caller=logging.go:85 method=Health result=2 took=41.479µs +ts=2025-05-22T07:33:02Z caller=logging.go:85 method=Health result=2 took=32.599µs +ts=2025-05-22T07:33:02Z caller=logging.go:85 method=Health result=2 took=35.95µs +ts=2025-05-22T07:33:05Z caller=logging.go:85 method=Health result=2 took=30.81µs +ts=2025-05-22T07:33:05Z caller=logging.go:85 method=Health result=2 took=48.638µs +ts=2025-05-22T07:33:08Z caller=logging.go:85 method=Health result=2 took=36.56µs +ts=2025-05-22T07:33:08Z caller=logging.go:85 method=Health result=2 took=36.88µs +ts=2025-05-22T07:33:11Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T07:33:11Z caller=logging.go:85 method=Health result=2 took=47.739µs +ts=2025-05-22T07:33:14Z caller=logging.go:85 method=Health result=2 took=29.9µs +ts=2025-05-22T07:33:14Z caller=logging.go:85 method=Health result=2 took=9.45µs +ts=2025-05-22T07:33:17Z caller=logging.go:85 method=Health result=2 took=41.749µs +ts=2025-05-22T07:33:17Z caller=logging.go:85 method=Health result=2 took=49.719µs +ts=2025-05-22T07:33:20Z caller=logging.go:85 method=Health result=2 took=30.589µs +ts=2025-05-22T07:33:20Z caller=logging.go:85 method=Health result=2 took=59.478µs +ts=2025-05-22T07:33:23Z caller=logging.go:85 method=Health result=2 took=36.019µs +ts=2025-05-22T07:33:23Z caller=logging.go:85 method=Health result=2 took=40.169µs +ts=2025-05-22T07:33:26Z caller=logging.go:85 method=Health result=2 took=44.199µs +ts=2025-05-22T07:33:26Z caller=logging.go:85 method=Health result=2 took=42.589µs +ts=2025-05-22T07:33:29Z caller=logging.go:85 method=Health result=2 took=32.679µs +ts=2025-05-22T07:33:29Z caller=logging.go:85 method=Health result=2 took=69.728µs +ts=2025-05-22T07:33:32Z caller=logging.go:85 method=Health result=2 took=31.399µs +ts=2025-05-22T07:33:32Z caller=logging.go:85 method=Health result=2 took=46.549µs +ts=2025-05-22T07:33:35Z caller=logging.go:85 method=Health result=2 took=32.33µs +ts=2025-05-22T07:33:35Z caller=logging.go:85 method=Health result=2 took=73.559µs +ts=2025-05-22T07:33:38Z caller=logging.go:85 method=Health result=2 took=30.179µs +ts=2025-05-22T07:33:38Z caller=logging.go:85 method=Health result=2 took=30.329µs +ts=2025-05-22T07:33:41Z caller=logging.go:85 method=Health result=2 took=33.239µs +ts=2025-05-22T07:33:41Z caller=logging.go:85 method=Health result=2 took=33.379µs +ts=2025-05-22T07:33:44Z caller=logging.go:85 method=Health result=2 took=37.019µs +ts=2025-05-22T07:33:44Z caller=logging.go:85 method=Health result=2 took=31.789µs +ts=2025-05-22T07:33:47Z caller=logging.go:85 method=Health result=2 took=40.699µs +ts=2025-05-22T07:33:47Z caller=logging.go:85 method=Health result=2 took=39.989µs +ts=2025-05-22T07:33:50Z caller=logging.go:85 method=Health result=2 took=32.13µs +ts=2025-05-22T07:33:50Z caller=logging.go:85 method=Health result=2 took=32.359µs +ts=2025-05-22T07:33:53Z caller=logging.go:85 method=Health result=2 took=41.189µs +ts=2025-05-22T07:33:53Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T07:33:56Z caller=logging.go:85 method=Health result=2 took=41.199µs +ts=2025-05-22T07:33:56Z caller=logging.go:85 method=Health result=2 took=40.789µs +ts=2025-05-22T07:33:59Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T07:33:59Z caller=logging.go:85 method=Health result=2 took=41.839µs +ts=2025-05-22T07:34:02Z caller=logging.go:85 method=Health result=2 took=30.43µs +ts=2025-05-22T07:34:02Z caller=logging.go:85 method=Health result=2 took=47.639µs +ts=2025-05-22T07:34:05Z caller=logging.go:85 method=Health result=2 took=38.489µs +ts=2025-05-22T07:34:05Z caller=logging.go:85 method=Health result=2 took=34.349µs +ts=2025-05-22T07:34:08Z caller=logging.go:85 method=Health result=2 took=33.849µs +ts=2025-05-22T07:34:08Z caller=logging.go:85 method=Health result=2 took=62.588µs +ts=2025-05-22T07:34:11Z caller=logging.go:85 method=Health result=2 took=33.14µs +ts=2025-05-22T07:34:11Z caller=logging.go:85 method=Health result=2 took=13.82µs +ts=2025-05-22T07:34:14Z caller=logging.go:85 method=Health result=2 took=32.149µs +ts=2025-05-22T07:34:14Z caller=logging.go:85 method=Health result=2 took=47.589µs +ts=2025-05-22T07:34:17Z caller=logging.go:85 method=Health result=2 took=28.739µs +ts=2025-05-22T07:34:17Z caller=logging.go:85 method=Health result=2 took=34.11µs +ts=2025-05-22T07:34:20Z caller=logging.go:85 method=Health result=2 took=38.769µs +ts=2025-05-22T07:34:20Z caller=logging.go:85 method=Health result=2 took=35.059µs +ts=2025-05-22T07:34:23Z caller=logging.go:85 method=Health result=2 took=33.139µs +ts=2025-05-22T07:34:23Z caller=logging.go:85 method=Health result=2 took=47.049µs +ts=2025-05-22T07:34:26Z caller=logging.go:85 method=Health result=2 took=30.319µs +ts=2025-05-22T07:34:26Z caller=logging.go:85 method=Health result=2 took=12.979µs +ts=2025-05-22T07:34:29Z caller=logging.go:85 method=Health result=2 took=28.689µs +ts=2025-05-22T07:34:29Z caller=logging.go:85 method=Health result=2 took=47.189µs +ts=2025-05-22T07:34:32Z caller=logging.go:85 method=Health result=2 took=37.929µs +ts=2025-05-22T07:34:32Z caller=logging.go:85 method=Health result=2 took=39.079µs +ts=2025-05-22T07:34:35Z caller=logging.go:85 method=Health result=2 took=31.98µs +ts=2025-05-22T07:34:35Z caller=logging.go:85 method=Health result=2 took=35.109µs +ts=2025-05-22T07:34:38Z caller=logging.go:85 method=Health result=2 took=30.319µs +ts=2025-05-22T07:34:38Z caller=logging.go:85 method=Health result=2 took=34.67µs +ts=2025-05-22T07:34:41Z caller=logging.go:85 method=Health result=2 took=36.289µs +ts=2025-05-22T07:34:41Z caller=logging.go:85 method=Health result=2 took=37.529µs +ts=2025-05-22T07:34:44Z caller=logging.go:85 method=Health result=2 took=29.439µs +ts=2025-05-22T07:34:44Z caller=logging.go:85 method=Health result=2 took=29.619µs +ts=2025-05-22T07:34:47Z caller=logging.go:85 method=Health result=2 took=42.509µs +ts=2025-05-22T07:34:47Z caller=logging.go:85 method=Health result=2 took=64.458µs +ts=2025-05-22T07:34:50Z caller=logging.go:85 method=Health result=2 took=15.429µs +ts=2025-05-22T07:34:50Z caller=logging.go:85 method=Health result=2 took=29.279µs +ts=2025-05-22T07:34:53Z caller=logging.go:85 method=Health result=2 took=34.659µs +ts=2025-05-22T07:34:53Z caller=logging.go:85 method=Health result=2 took=22.369µs +ts=2025-05-22T07:34:56Z caller=logging.go:85 method=Health result=2 took=31.129µs +ts=2025-05-22T07:34:56Z caller=logging.go:85 method=Health result=2 took=44.459µs +ts=2025-05-22T07:34:59Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T07:34:59Z caller=logging.go:85 method=Health result=2 took=41.259µs +ts=2025-05-22T07:35:02Z caller=logging.go:85 method=Health result=2 took=47.399µs +ts=2025-05-22T07:35:02Z caller=logging.go:85 method=Health result=2 took=42.429µs +ts=2025-05-22T07:35:05Z caller=logging.go:85 method=Health result=2 took=32.349µs +ts=2025-05-22T07:35:05Z caller=logging.go:85 method=Health result=2 took=14.659µs +ts=2025-05-22T07:35:08Z caller=logging.go:85 method=Health result=2 took=51.279µs +ts=2025-05-22T07:35:08Z caller=logging.go:85 method=Health result=2 took=22.59µs +ts=2025-05-22T07:35:11Z caller=logging.go:85 method=Health result=2 took=30.85µs +ts=2025-05-22T07:35:11Z caller=logging.go:85 method=Health result=2 took=16.93µs +ts=2025-05-22T07:35:14Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T07:35:14Z caller=logging.go:85 method=Health result=2 took=42.179µs +ts=2025-05-22T07:35:17Z caller=logging.go:85 method=Health result=2 took=45.869µs +ts=2025-05-22T07:35:17Z caller=logging.go:85 method=Health result=2 took=47.909µs +ts=2025-05-22T07:35:20Z caller=logging.go:85 method=Health result=2 took=30.959µs +ts=2025-05-22T07:35:20Z caller=logging.go:85 method=Health result=2 took=40.499µs +ts=2025-05-22T07:35:23Z caller=logging.go:85 method=Health result=2 took=46.199µs +ts=2025-05-22T07:35:23Z caller=logging.go:85 method=Health result=2 took=48.628µs +ts=2025-05-22T07:35:26Z caller=logging.go:85 method=Health result=2 took=28.79µs +ts=2025-05-22T07:35:26Z caller=logging.go:85 method=Health result=2 took=28.51µs +ts=2025-05-22T07:35:29Z caller=logging.go:85 method=Health result=2 took=31.849µs +ts=2025-05-22T07:35:29Z caller=logging.go:85 method=Health result=2 took=46.369µs +ts=2025-05-22T07:35:32Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T07:35:32Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T07:35:35Z caller=logging.go:85 method=Health result=2 took=41.609µs +ts=2025-05-22T07:35:35Z caller=logging.go:85 method=Health result=2 took=44.669µs +ts=2025-05-22T07:35:38Z caller=logging.go:85 method=Health result=2 took=29.85µs +ts=2025-05-22T07:35:38Z caller=logging.go:85 method=Health result=2 took=15.459µs +ts=2025-05-22T07:35:41Z caller=logging.go:85 method=Health result=2 took=34.039µs +ts=2025-05-22T07:35:41Z caller=logging.go:85 method=Health result=2 took=12.91µs +ts=2025-05-22T07:35:44Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T07:35:44Z caller=logging.go:85 method=Health result=2 took=44.669µs +ts=2025-05-22T07:35:47Z caller=logging.go:85 method=Health result=2 took=15.05µs +ts=2025-05-22T07:35:47Z caller=logging.go:85 method=Health result=2 took=29.51µs +ts=2025-05-22T07:35:50Z caller=logging.go:85 method=Health result=2 took=43.559µs +ts=2025-05-22T07:35:50Z caller=logging.go:85 method=Health result=2 took=44.749µs +ts=2025-05-22T07:35:53Z caller=logging.go:85 method=Health result=2 took=39.179µs +ts=2025-05-22T07:35:53Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T07:35:56Z caller=logging.go:85 method=Health result=2 took=37.519µs +ts=2025-05-22T07:35:56Z caller=logging.go:85 method=Health result=2 took=37.669µs +ts=2025-05-22T07:35:59Z caller=logging.go:85 method=Health result=2 took=44.789µs +ts=2025-05-22T07:35:59Z caller=logging.go:85 method=Health result=2 took=30.999µs +ts=2025-05-22T07:36:02Z caller=logging.go:85 method=Health result=2 took=40.839µs +ts=2025-05-22T07:36:02Z caller=logging.go:85 method=Health result=2 took=40.369µs +ts=2025-05-22T07:36:05Z caller=logging.go:85 method=Health result=2 took=29.589µs +ts=2025-05-22T07:36:05Z caller=logging.go:85 method=Health result=2 took=49.319µs +ts=2025-05-22T07:36:08Z caller=logging.go:85 method=Health result=2 took=31.48µs +ts=2025-05-22T07:36:08Z caller=logging.go:85 method=Health result=2 took=50.138µs +ts=2025-05-22T07:36:11Z caller=logging.go:85 method=Health result=2 took=30.739µs +ts=2025-05-22T07:36:11Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T07:36:14Z caller=logging.go:85 method=Health result=2 took=35.699µs +ts=2025-05-22T07:36:14Z caller=logging.go:85 method=Health result=2 took=35.039µs +ts=2025-05-22T07:36:17Z caller=logging.go:85 method=Health result=2 took=33.26µs +ts=2025-05-22T07:36:17Z caller=logging.go:85 method=Health result=2 took=26.549µs +ts=2025-05-22T07:36:20Z caller=logging.go:85 method=Health result=2 took=44.839µs +ts=2025-05-22T07:36:20Z caller=logging.go:85 method=Health result=2 took=44.159µs +ts=2025-05-22T07:36:23Z caller=logging.go:85 method=Health result=2 took=48.629µs +ts=2025-05-22T07:36:23Z caller=logging.go:85 method=Health result=2 took=48.768µs +ts=2025-05-22T07:36:26Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T07:36:26Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T07:36:29Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T07:36:29Z caller=logging.go:85 method=Health result=2 took=31.759µs +ts=2025-05-22T07:36:32Z caller=logging.go:85 method=Health result=2 took=44.648µs +ts=2025-05-22T07:36:32Z caller=logging.go:85 method=Health result=2 took=41.049µs +ts=2025-05-22T07:36:35Z caller=logging.go:85 method=Health result=2 took=37.739µs +ts=2025-05-22T07:36:35Z caller=logging.go:85 method=Health result=2 took=38.479µs +ts=2025-05-22T07:36:38Z caller=logging.go:85 method=Health result=2 took=31.279µs +ts=2025-05-22T07:36:38Z caller=logging.go:85 method=Health result=2 took=56.429µs +ts=2025-05-22T07:36:41Z caller=logging.go:85 method=Health result=2 took=39.779µs +ts=2025-05-22T07:36:41Z caller=logging.go:85 method=Health result=2 took=40.299µs +ts=2025-05-22T07:36:44Z caller=logging.go:85 method=Health result=2 took=45.199µs +ts=2025-05-22T07:36:44Z caller=logging.go:85 method=Health result=2 took=37.57µs +ts=2025-05-22T07:36:47Z caller=logging.go:85 method=Health result=2 took=31.899µs +ts=2025-05-22T07:36:47Z caller=logging.go:85 method=Health result=2 took=47.789µs +ts=2025-05-22T07:36:50Z caller=logging.go:85 method=Health result=2 took=30.759µs +ts=2025-05-22T07:36:50Z caller=logging.go:85 method=Health result=2 took=13.66µs +ts=2025-05-22T07:36:53Z caller=logging.go:85 method=Health result=2 took=50.879µs +ts=2025-05-22T07:36:53Z caller=logging.go:85 method=Health result=2 took=24.18µs +ts=2025-05-22T07:36:56Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T07:36:56Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T07:36:59Z caller=logging.go:85 method=Health result=2 took=37.039µs +ts=2025-05-22T07:36:59Z caller=logging.go:85 method=Health result=2 took=26.809µs +ts=2025-05-22T07:37:02Z caller=logging.go:85 method=Health result=2 took=37.949µs +ts=2025-05-22T07:37:02Z caller=logging.go:85 method=Health result=2 took=38.809µs +ts=2025-05-22T07:37:05Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T07:37:05Z caller=logging.go:85 method=Health result=2 took=46.789µs +ts=2025-05-22T07:37:08Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T07:37:08Z caller=logging.go:85 method=Health result=2 took=40.099µs +ts=2025-05-22T07:37:11Z caller=logging.go:85 method=Health result=2 took=54.369µs +ts=2025-05-22T07:37:11Z caller=logging.go:85 method=Health result=2 took=54.369µs +ts=2025-05-22T07:37:14Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T07:37:14Z caller=logging.go:85 method=Health result=2 took=47.199µs +ts=2025-05-22T07:37:17Z caller=logging.go:85 method=Health result=2 took=36.109µs +ts=2025-05-22T07:37:17Z caller=logging.go:85 method=Health result=2 took=42.559µs +ts=2025-05-22T07:37:20Z caller=logging.go:85 method=Health result=2 took=30.879µs +ts=2025-05-22T07:37:20Z caller=logging.go:85 method=Health result=2 took=45.139µs +ts=2025-05-22T07:37:23Z caller=logging.go:85 method=Health result=2 took=30.33µs +ts=2025-05-22T07:37:23Z caller=logging.go:85 method=Health result=2 took=9.519µs +ts=2025-05-22T07:37:26Z caller=logging.go:85 method=Health result=2 took=45.059µs +ts=2025-05-22T07:37:26Z caller=logging.go:85 method=Health result=2 took=50.688µs +ts=2025-05-22T07:37:29Z caller=logging.go:85 method=Health result=2 took=52.248µs +ts=2025-05-22T07:37:29Z caller=logging.go:85 method=Health result=2 took=67.399µs +ts=2025-05-22T07:37:32Z caller=logging.go:85 method=Health result=2 took=41.039µs +ts=2025-05-22T07:37:32Z caller=logging.go:85 method=Health result=2 took=41.379µs +ts=2025-05-22T07:37:35Z caller=logging.go:85 method=Health result=2 took=37.209µs +ts=2025-05-22T07:37:35Z caller=logging.go:85 method=Health result=2 took=37.579µs +ts=2025-05-22T07:37:38Z caller=logging.go:85 method=Health result=2 took=43.649µs +ts=2025-05-22T07:37:38Z caller=logging.go:85 method=Health result=2 took=43.619µs +ts=2025-05-22T07:37:41Z caller=logging.go:85 method=Health result=2 took=31.629µs +ts=2025-05-22T07:37:41Z caller=logging.go:85 method=Health result=2 took=56.529µs +ts=2025-05-22T07:37:44Z caller=logging.go:85 method=Health result=2 took=52.808µs +ts=2025-05-22T07:37:44Z caller=logging.go:85 method=Health result=2 took=52.848µs +ts=2025-05-22T07:37:47Z caller=logging.go:85 method=Health result=2 took=37.409µs +ts=2025-05-22T07:37:47Z caller=logging.go:85 method=Health result=2 took=39.569µs +ts=2025-05-22T07:37:50Z caller=logging.go:85 method=Health result=2 took=46.029µs +ts=2025-05-22T07:37:50Z caller=logging.go:85 method=Health result=2 took=30.849µs +ts=2025-05-22T07:37:53Z caller=logging.go:85 method=Health result=2 took=28.69µs +ts=2025-05-22T07:37:53Z caller=logging.go:85 method=Health result=2 took=28.89µs +ts=2025-05-22T07:37:56Z caller=logging.go:85 method=Health result=2 took=37.589µs +ts=2025-05-22T07:37:56Z caller=logging.go:85 method=Health result=2 took=32.969µs +ts=2025-05-22T07:37:59Z caller=logging.go:85 method=Health result=2 took=37.839µs +ts=2025-05-22T07:37:59Z caller=logging.go:85 method=Health result=2 took=37.169µs +ts=2025-05-22T07:38:02Z caller=logging.go:85 method=Health result=2 took=32.319µs +ts=2025-05-22T07:38:02Z caller=logging.go:85 method=Health result=2 took=36.799µs +ts=2025-05-22T07:38:05Z caller=logging.go:85 method=Health result=2 took=28.19µs +ts=2025-05-22T07:38:05Z caller=logging.go:85 method=Health result=2 took=16.41µs +ts=2025-05-22T07:38:08Z caller=logging.go:85 method=Health result=2 took=41.189µs +ts=2025-05-22T07:38:08Z caller=logging.go:85 method=Health result=2 took=41.699µs +ts=2025-05-22T07:38:11Z caller=logging.go:85 method=Health result=2 took=57.458µs +ts=2025-05-22T07:38:11Z caller=logging.go:85 method=Health result=2 took=57.448µs +ts=2025-05-22T07:38:14Z caller=logging.go:85 method=Health result=2 took=43.669µs +ts=2025-05-22T07:38:14Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T07:38:17Z caller=logging.go:85 method=Health result=2 took=34.739µs +ts=2025-05-22T07:38:17Z caller=logging.go:85 method=Health result=2 took=74.118µs +ts=2025-05-22T07:38:20Z caller=logging.go:85 method=Health result=2 took=44.519µs +ts=2025-05-22T07:38:20Z caller=logging.go:85 method=Health result=2 took=42.749µs +ts=2025-05-22T07:38:23Z caller=logging.go:85 method=Health result=2 took=28.289µs +ts=2025-05-22T07:38:23Z caller=logging.go:85 method=Health result=2 took=27.919µs +ts=2025-05-22T07:38:26Z caller=logging.go:85 method=Health result=2 took=30.639µs +ts=2025-05-22T07:38:26Z caller=logging.go:85 method=Health result=2 took=46.579µs +ts=2025-05-22T07:38:29Z caller=logging.go:85 method=Health result=2 took=40.749µs +ts=2025-05-22T07:38:29Z caller=logging.go:85 method=Health result=2 took=43.349µs +ts=2025-05-22T07:38:32Z caller=logging.go:85 method=Health result=2 took=45.699µs +ts=2025-05-22T07:38:32Z caller=logging.go:85 method=Health result=2 took=48.399µs +ts=2025-05-22T07:38:35Z caller=logging.go:85 method=Health result=2 took=44.299µs +ts=2025-05-22T07:38:35Z caller=logging.go:85 method=Health result=2 took=48.519µs +ts=2025-05-22T07:38:38Z caller=logging.go:85 method=Health result=2 took=41.879µs +ts=2025-05-22T07:38:38Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T07:38:41Z caller=logging.go:85 method=Health result=2 took=31.069µs +ts=2025-05-22T07:38:41Z caller=logging.go:85 method=Health result=2 took=49.519µs +ts=2025-05-22T07:38:44Z caller=logging.go:85 method=Health result=2 took=40.109µs +ts=2025-05-22T07:38:44Z caller=logging.go:85 method=Health result=2 took=50.429µs +ts=2025-05-22T07:38:47Z caller=logging.go:85 method=Health result=2 took=35.969µs +ts=2025-05-22T07:38:47Z caller=logging.go:85 method=Health result=2 took=21.24µs +ts=2025-05-22T07:38:50Z caller=logging.go:85 method=Health result=2 took=29.39µs +ts=2025-05-22T07:38:50Z caller=logging.go:85 method=Health result=2 took=44.199µs +ts=2025-05-22T07:38:53Z caller=logging.go:85 method=Health result=2 took=37.449µs +ts=2025-05-22T07:38:53Z caller=logging.go:85 method=Health result=2 took=23.33µs +ts=2025-05-22T07:38:56Z caller=logging.go:85 method=Health result=2 took=42.029µs +ts=2025-05-22T07:38:56Z caller=logging.go:85 method=Health result=2 took=50.179µs +ts=2025-05-22T07:38:59Z caller=logging.go:85 method=Health result=2 took=31.619µs +ts=2025-05-22T07:38:59Z caller=logging.go:85 method=Health result=2 took=47.649µs +ts=2025-05-22T07:39:02Z caller=logging.go:85 method=Health result=2 took=42.039µs +ts=2025-05-22T07:39:02Z caller=logging.go:85 method=Health result=2 took=65.079µs +ts=2025-05-22T07:39:05Z caller=logging.go:85 method=Health result=2 took=43.699µs +ts=2025-05-22T07:39:05Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T07:39:08Z caller=logging.go:85 method=Health result=2 took=44.118µs +ts=2025-05-22T07:39:08Z caller=logging.go:85 method=Health result=2 took=44.058µs +ts=2025-05-22T07:39:11Z caller=logging.go:85 method=Health result=2 took=44.959µs +ts=2025-05-22T07:39:11Z caller=logging.go:85 method=Health result=2 took=35.319µs +ts=2025-05-22T07:39:14Z caller=logging.go:85 method=Health result=2 took=43.369µs +ts=2025-05-22T07:39:14Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T07:39:17Z caller=logging.go:85 method=Health result=2 took=29.559µs +ts=2025-05-22T07:39:17Z caller=logging.go:85 method=Health result=2 took=13.85µs +ts=2025-05-22T07:39:20Z caller=logging.go:85 method=Health result=2 took=44.069µs +ts=2025-05-22T07:39:20Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T07:39:23Z caller=logging.go:85 method=Health result=2 took=31.18µs +ts=2025-05-22T07:39:23Z caller=logging.go:85 method=Health result=2 took=47.939µs +ts=2025-05-22T07:39:26Z caller=logging.go:85 method=Health result=2 took=28.609µs +ts=2025-05-22T07:39:26Z caller=logging.go:85 method=Health result=2 took=28.559µs +ts=2025-05-22T07:39:29Z caller=logging.go:85 method=Health result=2 took=31.209µs +ts=2025-05-22T07:39:29Z caller=logging.go:85 method=Health result=2 took=47.489µs +ts=2025-05-22T07:39:32Z caller=logging.go:85 method=Health result=2 took=31.179µs +ts=2025-05-22T07:39:32Z caller=logging.go:85 method=Health result=2 took=48.249µs +ts=2025-05-22T07:39:35Z caller=logging.go:85 method=Health result=2 took=31.39µs +ts=2025-05-22T07:39:35Z caller=logging.go:85 method=Health result=2 took=31.75µs +ts=2025-05-22T07:39:38Z caller=logging.go:85 method=Health result=2 took=38.6µs +ts=2025-05-22T07:39:38Z caller=logging.go:85 method=Health result=2 took=47.199µs +ts=2025-05-22T07:39:41Z caller=logging.go:85 method=Health result=2 took=38.399µs +ts=2025-05-22T07:39:41Z caller=logging.go:85 method=Health result=2 took=16.599µs +ts=2025-05-22T07:39:44Z caller=logging.go:85 method=Health result=2 took=29.059µs +ts=2025-05-22T07:39:44Z caller=logging.go:85 method=Health result=2 took=29.099µs +ts=2025-05-22T07:39:47Z caller=logging.go:85 method=Health result=2 took=38.029µs +ts=2025-05-22T07:39:47Z caller=logging.go:85 method=Health result=2 took=46.779µs +ts=2025-05-22T07:39:50Z caller=logging.go:85 method=Health result=2 took=38.629µs +ts=2025-05-22T07:39:50Z caller=logging.go:85 method=Health result=2 took=41.189µs +ts=2025-05-22T07:39:53Z caller=logging.go:85 method=Health result=2 took=31.379µs +ts=2025-05-22T07:39:53Z caller=logging.go:85 method=Health result=2 took=41.409µs +ts=2025-05-22T07:39:56Z caller=logging.go:85 method=Health result=2 took=29.84µs +ts=2025-05-22T07:39:56Z caller=logging.go:85 method=Health result=2 took=9.879µs +ts=2025-05-22T07:39:59Z caller=logging.go:85 method=Health result=2 took=37.869µs +ts=2025-05-22T07:39:59Z caller=logging.go:85 method=Health result=2 took=35.2µs +ts=2025-05-22T07:40:02Z caller=logging.go:85 method=Health result=2 took=32.189µs +ts=2025-05-22T07:40:02Z caller=logging.go:85 method=Health result=2 took=47.949µs +ts=2025-05-22T07:40:05Z caller=logging.go:85 method=Health result=2 took=31.209µs +ts=2025-05-22T07:40:05Z caller=logging.go:85 method=Health result=2 took=13.469µs +ts=2025-05-22T07:40:08Z caller=logging.go:85 method=Health result=2 took=44.628µs +ts=2025-05-22T07:40:08Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T07:40:11Z caller=logging.go:85 method=Health result=2 took=112.817µs +ts=2025-05-22T07:40:11Z caller=logging.go:85 method=Health result=2 took=58.108µs +ts=2025-05-22T07:40:14Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T07:40:14Z caller=logging.go:85 method=Health result=2 took=43.669µs +ts=2025-05-22T07:40:17Z caller=logging.go:85 method=Health result=2 took=975.337µs +ts=2025-05-22T07:40:17Z caller=logging.go:85 method=Health result=2 took=35.369µs +ts=2025-05-22T07:40:20Z caller=logging.go:85 method=Health result=2 took=29.789µs +ts=2025-05-22T07:40:20Z caller=logging.go:85 method=Health result=2 took=47.509µs +ts=2025-05-22T07:40:23Z caller=logging.go:85 method=Health result=2 took=30.18µs +ts=2025-05-22T07:40:23Z caller=logging.go:85 method=Health result=2 took=54.708µs +ts=2025-05-22T07:40:26Z caller=logging.go:85 method=Health result=2 took=39.029µs +ts=2025-05-22T07:40:26Z caller=logging.go:85 method=Health result=2 took=24.29µs +ts=2025-05-22T07:40:29Z caller=logging.go:85 method=Health result=2 took=33.899µs +ts=2025-05-22T07:40:29Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T07:40:32Z caller=logging.go:85 method=Health result=2 took=42.138µs +ts=2025-05-22T07:40:32Z caller=logging.go:85 method=Health result=2 took=43.308µs +ts=2025-05-22T07:40:35Z caller=logging.go:85 method=Health result=2 took=43.329µs +ts=2025-05-22T07:40:35Z caller=logging.go:85 method=Health result=2 took=49.569µs +ts=2025-05-22T07:40:38Z caller=logging.go:85 method=Health result=2 took=41.859µs +ts=2025-05-22T07:40:38Z caller=logging.go:85 method=Health result=2 took=56.868µs +ts=2025-05-22T07:40:41Z caller=logging.go:85 method=Health result=2 took=29.739µs +ts=2025-05-22T07:40:41Z caller=logging.go:85 method=Health result=2 took=15.07µs +ts=2025-05-22T07:40:44Z caller=logging.go:85 method=Health result=2 took=31.259µs +ts=2025-05-22T07:40:44Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T07:40:47Z caller=logging.go:85 method=Health result=2 took=49.099µs +ts=2025-05-22T07:40:47Z caller=logging.go:85 method=Health result=2 took=60.698µs +ts=2025-05-22T07:40:50Z caller=logging.go:85 method=Health result=2 took=29.479µs +ts=2025-05-22T07:40:50Z caller=logging.go:85 method=Health result=2 took=46.939µs +ts=2025-05-22T07:40:53Z caller=logging.go:85 method=Health result=2 took=15.35µs +ts=2025-05-22T07:40:53Z caller=logging.go:85 method=Health result=2 took=38.249µs +ts=2025-05-22T07:40:56Z caller=logging.go:85 method=Health result=2 took=40.399µs +ts=2025-05-22T07:40:56Z caller=logging.go:85 method=Health result=2 took=40.369µs +ts=2025-05-22T07:40:59Z caller=logging.go:85 method=Health result=2 took=25.819µs +ts=2025-05-22T07:40:59Z caller=logging.go:85 method=Health result=2 took=43.319µs +ts=2025-05-22T07:41:02Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T07:41:02Z caller=logging.go:85 method=Health result=2 took=50.229µs +ts=2025-05-22T07:41:05Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T07:41:05Z caller=logging.go:85 method=Health result=2 took=41.829µs +ts=2025-05-22T07:41:08Z caller=logging.go:85 method=Health result=2 took=43.549µs +ts=2025-05-22T07:41:08Z caller=logging.go:85 method=Health result=2 took=40.249µs +ts=2025-05-22T07:41:11Z caller=logging.go:85 method=Health result=2 took=33.949µs +ts=2025-05-22T07:41:11Z caller=logging.go:85 method=Health result=2 took=47.629µs +ts=2025-05-22T07:41:14Z caller=logging.go:85 method=Health result=2 took=37.239µs +ts=2025-05-22T07:41:14Z caller=logging.go:85 method=Health result=2 took=37.349µs +ts=2025-05-22T07:41:17Z caller=logging.go:85 method=Health result=2 took=32.18µs +ts=2025-05-22T07:41:17Z caller=logging.go:85 method=Health result=2 took=40.229µs +ts=2025-05-22T07:41:20Z caller=logging.go:85 method=Health result=2 took=32.799µs +ts=2025-05-22T07:41:20Z caller=logging.go:85 method=Health result=2 took=36.209µs +ts=2025-05-22T07:41:23Z caller=logging.go:85 method=Health result=2 took=40.129µs +ts=2025-05-22T07:41:23Z caller=logging.go:85 method=Health result=2 took=40.639µs +ts=2025-05-22T07:41:26Z caller=logging.go:85 method=Health result=2 took=24.22µs +ts=2025-05-22T07:41:26Z caller=logging.go:85 method=Health result=2 took=40.369µs +ts=2025-05-22T07:41:29Z caller=logging.go:85 method=Health result=2 took=31.039µs +ts=2025-05-22T07:41:29Z caller=logging.go:85 method=Health result=2 took=17.26µs +ts=2025-05-22T07:41:32Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T07:41:32Z caller=logging.go:85 method=Health result=2 took=37.669µs +ts=2025-05-22T07:41:35Z caller=logging.go:85 method=Health result=2 took=43.779µs +ts=2025-05-22T07:41:35Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T07:41:38Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T07:41:38Z caller=logging.go:85 method=Health result=2 took=43.119µs +ts=2025-05-22T07:41:41Z caller=logging.go:85 method=Health result=2 took=44.949µs +ts=2025-05-22T07:41:41Z caller=logging.go:85 method=Health result=2 took=50.068µs +ts=2025-05-22T07:41:44Z caller=logging.go:85 method=Health result=2 took=52.529µs +ts=2025-05-22T07:41:44Z caller=logging.go:85 method=Health result=2 took=31.209µs +ts=2025-05-22T07:41:47Z caller=logging.go:85 method=Health result=2 took=45.719µs +ts=2025-05-22T07:41:47Z caller=logging.go:85 method=Health result=2 took=51.419µs +ts=2025-05-22T07:41:50Z caller=logging.go:85 method=Health result=2 took=46.949µs +ts=2025-05-22T07:41:50Z caller=logging.go:85 method=Health result=2 took=44.869µs +ts=2025-05-22T07:41:53Z caller=logging.go:85 method=Health result=2 took=54.598µs +ts=2025-05-22T07:41:53Z caller=logging.go:85 method=Health result=2 took=54.578µs +ts=2025-05-22T07:41:56Z caller=logging.go:85 method=Health result=2 took=46.819µs +ts=2025-05-22T07:41:56Z caller=logging.go:85 method=Health result=2 took=50.009µs +ts=2025-05-22T07:41:59Z caller=logging.go:85 method=Health result=2 took=30.569µs +ts=2025-05-22T07:41:59Z caller=logging.go:85 method=Health result=2 took=54.509µs +ts=2025-05-22T07:42:02Z caller=logging.go:85 method=Health result=2 took=39.019µs +ts=2025-05-22T07:42:02Z caller=logging.go:85 method=Health result=2 took=47.949µs +ts=2025-05-22T07:42:05Z caller=logging.go:85 method=Health result=2 took=33.289µs +ts=2025-05-22T07:42:05Z caller=logging.go:85 method=Health result=2 took=43.259µs +ts=2025-05-22T07:42:08Z caller=logging.go:85 method=Health result=2 took=45.179µs +ts=2025-05-22T07:42:08Z caller=logging.go:85 method=Health result=2 took=44.869µs +ts=2025-05-22T07:42:11Z caller=logging.go:85 method=Health result=2 took=42.999µs +ts=2025-05-22T07:42:11Z caller=logging.go:85 method=Health result=2 took=43.539µs +ts=2025-05-22T07:42:14Z caller=logging.go:85 method=Health result=2 took=40.009µs +ts=2025-05-22T07:42:14Z caller=logging.go:85 method=Health result=2 took=39.509µs +ts=2025-05-22T07:42:17Z caller=logging.go:85 method=Health result=2 took=29.63µs +ts=2025-05-22T07:42:17Z caller=logging.go:85 method=Health result=2 took=36.319µs +ts=2025-05-22T07:42:20Z caller=logging.go:85 method=Health result=2 took=39.909µs +ts=2025-05-22T07:42:20Z caller=logging.go:85 method=Health result=2 took=59.049µs +ts=2025-05-22T07:42:23Z caller=logging.go:85 method=Health result=2 took=44.209µs +ts=2025-05-22T07:42:23Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T07:42:26Z caller=logging.go:85 method=Health result=2 took=42.009µs +ts=2025-05-22T07:42:26Z caller=logging.go:85 method=Health result=2 took=41.509µs +ts=2025-05-22T07:42:29Z caller=logging.go:85 method=Health result=2 took=38.229µs +ts=2025-05-22T07:42:29Z caller=logging.go:85 method=Health result=2 took=61.168µs +ts=2025-05-22T07:42:32Z caller=logging.go:85 method=Health result=2 took=44.329µs +ts=2025-05-22T07:42:32Z caller=logging.go:85 method=Health result=2 took=43.349µs +ts=2025-05-22T07:42:35Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T07:42:35Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T07:42:38Z caller=logging.go:85 method=Health result=2 took=44.509µs +ts=2025-05-22T07:42:38Z caller=logging.go:85 method=Health result=2 took=46.769µs +ts=2025-05-22T07:42:41Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T07:42:41Z caller=logging.go:85 method=Health result=2 took=46.959µs +ts=2025-05-22T07:42:44Z caller=logging.go:85 method=Health result=2 took=52.189µs +ts=2025-05-22T07:42:44Z caller=logging.go:85 method=Health result=2 took=49.878µs +ts=2025-05-22T07:42:47Z caller=logging.go:85 method=Health result=2 took=40.149µs +ts=2025-05-22T07:42:47Z caller=logging.go:85 method=Health result=2 took=43.539µs +ts=2025-05-22T07:42:50Z caller=logging.go:85 method=Health result=2 took=28.54µs +ts=2025-05-22T07:42:50Z caller=logging.go:85 method=Health result=2 took=28.49µs +ts=2025-05-22T07:42:53Z caller=logging.go:85 method=Health result=2 took=41.939µs +ts=2025-05-22T07:42:53Z caller=logging.go:85 method=Health result=2 took=63.739µs +ts=2025-05-22T07:42:56Z caller=logging.go:85 method=Health result=2 took=41.849µs +ts=2025-05-22T07:42:56Z caller=logging.go:85 method=Health result=2 took=48.859µs +ts=2025-05-22T07:42:59Z caller=logging.go:85 method=Health result=2 took=40.959µs +ts=2025-05-22T07:42:59Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T07:43:02Z caller=logging.go:85 method=Health result=2 took=41.579µs +ts=2025-05-22T07:43:02Z caller=logging.go:85 method=Health result=2 took=31.089µs +ts=2025-05-22T07:43:05Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T07:43:05Z caller=logging.go:85 method=Health result=2 took=50.058µs +ts=2025-05-22T07:43:08Z caller=logging.go:85 method=Health result=2 took=44.399µs +ts=2025-05-22T07:43:08Z caller=logging.go:85 method=Health result=2 took=45.279µs +ts=2025-05-22T07:43:11Z caller=logging.go:85 method=Health result=2 took=58.909µs +ts=2025-05-22T07:43:11Z caller=logging.go:85 method=Health result=2 took=29.899µs +ts=2025-05-22T07:43:14Z caller=logging.go:85 method=Health result=2 took=43.748µs +ts=2025-05-22T07:43:14Z caller=logging.go:85 method=Health result=2 took=43.088µs +ts=2025-05-22T07:43:17Z caller=logging.go:85 method=Health result=2 took=41.059µs +ts=2025-05-22T07:43:17Z caller=logging.go:85 method=Health result=2 took=35.369µs +ts=2025-05-22T07:43:20Z caller=logging.go:85 method=Health result=2 took=38.489µs +ts=2025-05-22T07:43:20Z caller=logging.go:85 method=Health result=2 took=48.529µs +ts=2025-05-22T07:43:23Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T07:43:23Z caller=logging.go:85 method=Health result=2 took=43.039µs +ts=2025-05-22T07:43:26Z caller=logging.go:85 method=Health result=2 took=45.819µs +ts=2025-05-22T07:43:26Z caller=logging.go:85 method=Health result=2 took=47.799µs +ts=2025-05-22T07:43:29Z caller=logging.go:85 method=Health result=2 took=27.52µs +ts=2025-05-22T07:43:29Z caller=logging.go:85 method=Health result=2 took=28.77µs +ts=2025-05-22T07:43:32Z caller=logging.go:85 method=Health result=2 took=46.399µs +ts=2025-05-22T07:43:32Z caller=logging.go:85 method=Health result=2 took=51.148µs +ts=2025-05-22T07:43:35Z caller=logging.go:85 method=Health result=2 took=28.789µs +ts=2025-05-22T07:43:35Z caller=logging.go:85 method=Health result=2 took=28.849µs +ts=2025-05-22T07:43:38Z caller=logging.go:85 method=Health result=2 took=28.999µs +ts=2025-05-22T07:43:38Z caller=logging.go:85 method=Health result=2 took=28.929µs +ts=2025-05-22T07:43:41Z caller=logging.go:85 method=Health result=2 took=46.739µs +ts=2025-05-22T07:43:41Z caller=logging.go:85 method=Health result=2 took=48.339µs +ts=2025-05-22T07:43:44Z caller=logging.go:85 method=Health result=2 took=42.779µs +ts=2025-05-22T07:43:44Z caller=logging.go:85 method=Health result=2 took=49.419µs +ts=2025-05-22T07:43:47Z caller=logging.go:85 method=Health result=2 took=44.419µs +ts=2025-05-22T07:43:47Z caller=logging.go:85 method=Health result=2 took=48.079µs +ts=2025-05-22T07:43:50Z caller=logging.go:85 method=Health result=2 took=29.26µs +ts=2025-05-22T07:43:50Z caller=logging.go:85 method=Health result=2 took=29.26µs +ts=2025-05-22T07:43:53Z caller=logging.go:85 method=Health result=2 took=38.079µs +ts=2025-05-22T07:43:53Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T07:43:56Z caller=logging.go:85 method=Health result=2 took=32.69µs +ts=2025-05-22T07:43:56Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T07:43:59Z caller=logging.go:85 method=Health result=2 took=43.839µs +ts=2025-05-22T07:43:59Z caller=logging.go:85 method=Health result=2 took=44.349µs +ts=2025-05-22T07:44:02Z caller=logging.go:85 method=Health result=2 took=49.418µs +ts=2025-05-22T07:44:02Z caller=logging.go:85 method=Health result=2 took=48.799µs +ts=2025-05-22T07:44:05Z caller=logging.go:85 method=Health result=2 took=42.999µs +ts=2025-05-22T07:44:05Z caller=logging.go:85 method=Health result=2 took=51.259µs +ts=2025-05-22T07:44:08Z caller=logging.go:85 method=Health result=2 took=57.728µs +ts=2025-05-22T07:44:08Z caller=logging.go:85 method=Health result=2 took=38.569µs +ts=2025-05-22T07:44:11Z caller=logging.go:85 method=Health result=2 took=55.358µs +ts=2025-05-22T07:44:11Z caller=logging.go:85 method=Health result=2 took=51.319µs +ts=2025-05-22T07:44:14Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T07:44:14Z caller=logging.go:85 method=Health result=2 took=43.869µs +ts=2025-05-22T07:44:17Z caller=logging.go:85 method=Health result=2 took=877.359µs +ts=2025-05-22T07:44:17Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T07:44:20Z caller=logging.go:85 method=Health result=2 took=38.069µs +ts=2025-05-22T07:44:20Z caller=logging.go:85 method=Health result=2 took=49.629µs +ts=2025-05-22T07:44:23Z caller=logging.go:85 method=Health result=2 took=45.599µs +ts=2025-05-22T07:44:23Z caller=logging.go:85 method=Health result=2 took=59.659µs +ts=2025-05-22T07:44:26Z caller=logging.go:85 method=Health result=2 took=36.239µs +ts=2025-05-22T07:44:26Z caller=logging.go:85 method=Health result=2 took=35.949µs +ts=2025-05-22T07:44:29Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T07:44:29Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T07:44:32Z caller=logging.go:85 method=Health result=2 took=39.059µs +ts=2025-05-22T07:44:32Z caller=logging.go:85 method=Health result=2 took=39.779µs +ts=2025-05-22T07:44:35Z caller=logging.go:85 method=Health result=2 took=43.579µs +ts=2025-05-22T07:44:35Z caller=logging.go:85 method=Health result=2 took=31.659µs +ts=2025-05-22T07:44:38Z caller=logging.go:85 method=Health result=2 took=42.179µs +ts=2025-05-22T07:44:38Z caller=logging.go:85 method=Health result=2 took=43.598µs +ts=2025-05-22T07:44:41Z caller=logging.go:85 method=Health result=2 took=44.759µs +ts=2025-05-22T07:44:41Z caller=logging.go:85 method=Health result=2 took=30.499µs +ts=2025-05-22T07:44:44Z caller=logging.go:85 method=Health result=2 took=39.679µs +ts=2025-05-22T07:44:44Z caller=logging.go:85 method=Health result=2 took=27.809µs +ts=2025-05-22T07:44:47Z caller=logging.go:85 method=Health result=2 took=42.139µs +ts=2025-05-22T07:44:47Z caller=logging.go:85 method=Health result=2 took=48.319µs +ts=2025-05-22T07:44:50Z caller=logging.go:85 method=Health result=2 took=35.579µs +ts=2025-05-22T07:44:50Z caller=logging.go:85 method=Health result=2 took=19.999µs +ts=2025-05-22T07:44:53Z caller=logging.go:85 method=Health result=2 took=41.489µs +ts=2025-05-22T07:44:53Z caller=logging.go:85 method=Health result=2 took=41.489µs +ts=2025-05-22T07:44:56Z caller=logging.go:85 method=Health result=2 took=44.548µs +ts=2025-05-22T07:44:56Z caller=logging.go:85 method=Health result=2 took=51.069µs +ts=2025-05-22T07:44:59Z caller=logging.go:85 method=Health result=2 took=39.42µs +ts=2025-05-22T07:44:59Z caller=logging.go:85 method=Health result=2 took=38.74µs +ts=2025-05-22T07:45:02Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T07:45:02Z caller=logging.go:85 method=Health result=2 took=37.629µs +ts=2025-05-22T07:45:05Z caller=logging.go:85 method=Health result=2 took=43.379µs +ts=2025-05-22T07:45:05Z caller=logging.go:85 method=Health result=2 took=44.119µs +ts=2025-05-22T07:45:08Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T07:45:08Z caller=logging.go:85 method=Health result=2 took=43.869µs +ts=2025-05-22T07:45:11Z caller=logging.go:85 method=Health result=2 took=39.359µs +ts=2025-05-22T07:45:11Z caller=logging.go:85 method=Health result=2 took=38.689µs +ts=2025-05-22T07:45:14Z caller=logging.go:85 method=Health result=2 took=29.889µs +ts=2025-05-22T07:45:14Z caller=logging.go:85 method=Health result=2 took=10.35µs +ts=2025-05-22T07:45:17Z caller=logging.go:85 method=Health result=2 took=28.479µs +ts=2025-05-22T07:45:17Z caller=logging.go:85 method=Health result=2 took=28.489µs +ts=2025-05-22T07:45:20Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T07:45:20Z caller=logging.go:85 method=Health result=2 took=42.349µs +ts=2025-05-22T07:45:23Z caller=logging.go:85 method=Health result=2 took=31.569µs +ts=2025-05-22T07:45:23Z caller=logging.go:85 method=Health result=2 took=46.199µs +ts=2025-05-22T07:45:26Z caller=logging.go:85 method=Health result=2 took=27.079µs +ts=2025-05-22T07:45:26Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T07:45:29Z caller=logging.go:85 method=Health result=2 took=41.659µs +ts=2025-05-22T07:45:29Z caller=logging.go:85 method=Health result=2 took=31.659µs +ts=2025-05-22T07:45:32Z caller=logging.go:85 method=Health result=2 took=45.829µs +ts=2025-05-22T07:45:32Z caller=logging.go:85 method=Health result=2 took=48.329µs +ts=2025-05-22T07:45:35Z caller=logging.go:85 method=Health result=2 took=46.559µs +ts=2025-05-22T07:45:35Z caller=logging.go:85 method=Health result=2 took=48.539µs +ts=2025-05-22T07:45:38Z caller=logging.go:85 method=Health result=2 took=45.459µs +ts=2025-05-22T07:45:38Z caller=logging.go:85 method=Health result=2 took=49.069µs +ts=2025-05-22T07:45:41Z caller=logging.go:85 method=Health result=2 took=41.809µs +ts=2025-05-22T07:45:41Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T07:45:44Z caller=logging.go:85 method=Health result=2 took=38.119µs +ts=2025-05-22T07:45:44Z caller=logging.go:85 method=Health result=2 took=52.329µs +ts=2025-05-22T07:45:47Z caller=logging.go:85 method=Health result=2 took=45.559µs +ts=2025-05-22T07:45:47Z caller=logging.go:85 method=Health result=2 took=48.588µs +ts=2025-05-22T07:45:50Z caller=logging.go:85 method=Health result=2 took=51.729µs +ts=2025-05-22T07:45:50Z caller=logging.go:85 method=Health result=2 took=46.489µs +ts=2025-05-22T07:45:53Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T07:45:53Z caller=logging.go:85 method=Health result=2 took=47.309µs +ts=2025-05-22T07:45:56Z caller=logging.go:85 method=Health result=2 took=44.769µs +ts=2025-05-22T07:45:56Z caller=logging.go:85 method=Health result=2 took=50.779µs +ts=2025-05-22T07:45:59Z caller=logging.go:85 method=Health result=2 took=48.919µs +ts=2025-05-22T07:45:59Z caller=logging.go:85 method=Health result=2 took=48.959µs +ts=2025-05-22T07:46:02Z caller=logging.go:85 method=Health result=2 took=44.399µs +ts=2025-05-22T07:46:02Z caller=logging.go:85 method=Health result=2 took=49.098µs +ts=2025-05-22T07:46:05Z caller=logging.go:85 method=Health result=2 took=30.419µs +ts=2025-05-22T07:46:05Z caller=logging.go:85 method=Health result=2 took=44.689µs +ts=2025-05-22T07:46:08Z caller=logging.go:85 method=Health result=2 took=32.439µs +ts=2025-05-22T07:46:08Z caller=logging.go:85 method=Health result=2 took=41.129µs +ts=2025-05-22T07:46:11Z caller=logging.go:85 method=Health result=2 took=51.449µs +ts=2025-05-22T07:46:11Z caller=logging.go:85 method=Health result=2 took=52.159µs +ts=2025-05-22T07:46:14Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T07:46:14Z caller=logging.go:85 method=Health result=2 took=42.289µs +ts=2025-05-22T07:46:17Z caller=logging.go:85 method=Health result=2 took=66.028µs +ts=2025-05-22T07:46:17Z caller=logging.go:85 method=Health result=2 took=27.399µs +ts=2025-05-22T07:46:20Z caller=logging.go:85 method=Health result=2 took=35.799µs +ts=2025-05-22T07:46:20Z caller=logging.go:85 method=Health result=2 took=35.859µs +ts=2025-05-22T07:46:23Z caller=logging.go:85 method=Health result=2 took=47.039µs +ts=2025-05-22T07:46:23Z caller=logging.go:85 method=Health result=2 took=47.039µs +ts=2025-05-22T07:46:26Z caller=logging.go:85 method=Health result=2 took=40.009µs +ts=2025-05-22T07:46:26Z caller=logging.go:85 method=Health result=2 took=40.129µs +ts=2025-05-22T07:46:29Z caller=logging.go:85 method=Health result=2 took=45.209µs +ts=2025-05-22T07:46:29Z caller=logging.go:85 method=Health result=2 took=47.238µs +ts=2025-05-22T07:46:32Z caller=logging.go:85 method=Health result=2 took=28.449µs +ts=2025-05-22T07:46:32Z caller=logging.go:85 method=Health result=2 took=28.429µs +ts=2025-05-22T07:46:35Z caller=logging.go:85 method=Health result=2 took=42.389µs +ts=2025-05-22T07:46:35Z caller=logging.go:85 method=Health result=2 took=30.989µs +ts=2025-05-22T07:46:38Z caller=logging.go:85 method=Health result=2 took=42.629µs +ts=2025-05-22T07:46:38Z caller=logging.go:85 method=Health result=2 took=51.538µs +ts=2025-05-22T07:46:41Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T07:46:41Z caller=logging.go:85 method=Health result=2 took=48.659µs +ts=2025-05-22T07:46:44Z caller=logging.go:85 method=Health result=2 took=41.299µs +ts=2025-05-22T07:46:44Z caller=logging.go:85 method=Health result=2 took=48.499µs +ts=2025-05-22T07:46:47Z caller=logging.go:85 method=Health result=2 took=42.379µs +ts=2025-05-22T07:46:47Z caller=logging.go:85 method=Health result=2 took=42.759µs +ts=2025-05-22T07:46:50Z caller=logging.go:85 method=Health result=2 took=45.619µs +ts=2025-05-22T07:46:50Z caller=logging.go:85 method=Health result=2 took=50.528µs +ts=2025-05-22T07:46:53Z caller=logging.go:85 method=Health result=2 took=26.169µs +ts=2025-05-22T07:46:53Z caller=logging.go:85 method=Health result=2 took=41.579µs +ts=2025-05-22T07:46:56Z caller=logging.go:85 method=Health result=2 took=33.939µs +ts=2025-05-22T07:46:56Z caller=logging.go:85 method=Health result=2 took=37.139µs +ts=2025-05-22T07:46:59Z caller=logging.go:85 method=Health result=2 took=39.779µs +ts=2025-05-22T07:46:59Z caller=logging.go:85 method=Health result=2 took=23.65µs +ts=2025-05-22T07:47:02Z caller=logging.go:85 method=Health result=2 took=42.869µs +ts=2025-05-22T07:47:02Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T07:47:05Z caller=logging.go:85 method=Health result=2 took=36.859µs +ts=2025-05-22T07:47:05Z caller=logging.go:85 method=Health result=2 took=36.869µs +ts=2025-05-22T07:47:08Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T07:47:08Z caller=logging.go:85 method=Health result=2 took=49.739µs +ts=2025-05-22T07:47:11Z caller=logging.go:85 method=Health result=2 took=41.529µs +ts=2025-05-22T07:47:11Z caller=logging.go:85 method=Health result=2 took=37.829µs +ts=2025-05-22T07:47:14Z caller=logging.go:85 method=Health result=2 took=45.089µs +ts=2025-05-22T07:47:14Z caller=logging.go:85 method=Health result=2 took=53.099µs +ts=2025-05-22T07:47:17Z caller=logging.go:85 method=Health result=2 took=40.569µs +ts=2025-05-22T07:47:17Z caller=logging.go:85 method=Health result=2 took=49.749µs +ts=2025-05-22T07:47:20Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T07:47:20Z caller=logging.go:85 method=Health result=2 took=48.408µs +ts=2025-05-22T07:47:23Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T07:47:23Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T07:47:26Z caller=logging.go:85 method=Health result=2 took=34.599µs +ts=2025-05-22T07:47:26Z caller=logging.go:85 method=Health result=2 took=39.429µs +ts=2025-05-22T07:47:29Z caller=logging.go:85 method=Health result=2 took=32.189µs +ts=2025-05-22T07:47:29Z caller=logging.go:85 method=Health result=2 took=48.619µs +ts=2025-05-22T07:47:32Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T07:47:32Z caller=logging.go:85 method=Health result=2 took=39.219µs +ts=2025-05-22T07:47:35Z caller=logging.go:85 method=Health result=2 took=27.549µs +ts=2025-05-22T07:47:35Z caller=logging.go:85 method=Health result=2 took=14.03µs +ts=2025-05-22T07:47:38Z caller=logging.go:85 method=Health result=2 took=42.379µs +ts=2025-05-22T07:47:38Z caller=logging.go:85 method=Health result=2 took=49.088µs +ts=2025-05-22T07:47:41Z caller=logging.go:85 method=Health result=2 took=38.039µs +ts=2025-05-22T07:47:41Z caller=logging.go:85 method=Health result=2 took=49.199µs +ts=2025-05-22T07:47:44Z caller=logging.go:85 method=Health result=2 took=44.069µs +ts=2025-05-22T07:47:44Z caller=logging.go:85 method=Health result=2 took=46.379µs +ts=2025-05-22T07:47:47Z caller=logging.go:85 method=Health result=2 took=42.159µs +ts=2025-05-22T07:47:47Z caller=logging.go:85 method=Health result=2 took=47.229µs +ts=2025-05-22T07:47:50Z caller=logging.go:85 method=Health result=2 took=40.729µs +ts=2025-05-22T07:47:50Z caller=logging.go:85 method=Health result=2 took=41.529µs +ts=2025-05-22T07:47:53Z caller=logging.go:85 method=Health result=2 took=39.249µs +ts=2025-05-22T07:47:53Z caller=logging.go:85 method=Health result=2 took=40.009µs +ts=2025-05-22T07:47:56Z caller=logging.go:85 method=Health result=2 took=38.699µs +ts=2025-05-22T07:47:56Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T07:47:59Z caller=logging.go:85 method=Health result=2 took=48.008µs +ts=2025-05-22T07:47:59Z caller=logging.go:85 method=Health result=2 took=217.465µs +ts=2025-05-22T07:48:02Z caller=logging.go:85 method=Health result=2 took=49.368µs +ts=2025-05-22T07:48:02Z caller=logging.go:85 method=Health result=2 took=48.729µs +ts=2025-05-22T07:48:05Z caller=logging.go:85 method=Health result=2 took=42.229µs +ts=2025-05-22T07:48:05Z caller=logging.go:85 method=Health result=2 took=42.879µs +ts=2025-05-22T07:48:08Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T07:48:08Z caller=logging.go:85 method=Health result=2 took=48.929µs +ts=2025-05-22T07:48:11Z caller=logging.go:85 method=Health result=2 took=44.269µs +ts=2025-05-22T07:48:11Z caller=logging.go:85 method=Health result=2 took=51.059µs +ts=2025-05-22T07:48:14Z caller=logging.go:85 method=Health result=2 took=45.279µs +ts=2025-05-22T07:48:14Z caller=logging.go:85 method=Health result=2 took=48.528µs +ts=2025-05-22T07:48:17Z caller=logging.go:85 method=Health result=2 took=66.189µs +ts=2025-05-22T07:48:17Z caller=logging.go:85 method=Health result=2 took=61.729µs +ts=2025-05-22T07:48:20Z caller=logging.go:85 method=Health result=2 took=44.189µs +ts=2025-05-22T07:48:20Z caller=logging.go:85 method=Health result=2 took=45.968µs +ts=2025-05-22T07:48:23Z caller=logging.go:85 method=Health result=2 took=55.308µs +ts=2025-05-22T07:48:23Z caller=logging.go:85 method=Health result=2 took=55.228µs +ts=2025-05-22T07:48:26Z caller=logging.go:85 method=Health result=2 took=38.859µs +ts=2025-05-22T07:48:26Z caller=logging.go:85 method=Health result=2 took=52.279µs +ts=2025-05-22T07:48:29Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T07:48:29Z caller=logging.go:85 method=Health result=2 took=89.128µs +ts=2025-05-22T07:48:32Z caller=logging.go:85 method=Health result=2 took=45.059µs +ts=2025-05-22T07:48:32Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T07:48:35Z caller=logging.go:85 method=Health result=2 took=43.529µs +ts=2025-05-22T07:48:35Z caller=logging.go:85 method=Health result=2 took=43.529µs +ts=2025-05-22T07:48:38Z caller=logging.go:85 method=Health result=2 took=36.879µs +ts=2025-05-22T07:48:38Z caller=logging.go:85 method=Health result=2 took=46.949µs +ts=2025-05-22T07:48:41Z caller=logging.go:85 method=Health result=2 took=39.109µs +ts=2025-05-22T07:48:41Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T07:48:44Z caller=logging.go:85 method=Health result=2 took=55.648µs +ts=2025-05-22T07:48:44Z caller=logging.go:85 method=Health result=2 took=55.698µs +ts=2025-05-22T07:48:47Z caller=logging.go:85 method=Health result=2 took=45.359µs +ts=2025-05-22T07:48:47Z caller=logging.go:85 method=Health result=2 took=50.359µs +ts=2025-05-22T07:48:50Z caller=logging.go:85 method=Health result=2 took=47.099µs +ts=2025-05-22T07:48:50Z caller=logging.go:85 method=Health result=2 took=43.929µs +ts=2025-05-22T07:48:53Z caller=logging.go:85 method=Health result=2 took=41.549µs +ts=2025-05-22T07:48:53Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T07:48:56Z caller=logging.go:85 method=Health result=2 took=31.389µs +ts=2025-05-22T07:48:56Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T07:48:59Z caller=logging.go:85 method=Health result=2 took=63.288µs +ts=2025-05-22T07:48:59Z caller=logging.go:85 method=Health result=2 took=51.969µs +ts=2025-05-22T07:49:02Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T07:49:02Z caller=logging.go:85 method=Health result=2 took=52.778µs +ts=2025-05-22T07:49:05Z caller=logging.go:85 method=Health result=2 took=41.899µs +ts=2025-05-22T07:49:05Z caller=logging.go:85 method=Health result=2 took=48.058µs +ts=2025-05-22T07:49:08Z caller=logging.go:85 method=Health result=2 took=36.389µs +ts=2025-05-22T07:49:08Z caller=logging.go:85 method=Health result=2 took=36.279µs +ts=2025-05-22T07:49:11Z caller=logging.go:85 method=Health result=2 took=51.148µs +ts=2025-05-22T07:49:11Z caller=logging.go:85 method=Health result=2 took=51.859µs +ts=2025-05-22T07:49:14Z caller=logging.go:85 method=Health result=2 took=48.808µs +ts=2025-05-22T07:49:14Z caller=logging.go:85 method=Health result=2 took=44.489µs +ts=2025-05-22T07:49:17Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T07:49:17Z caller=logging.go:85 method=Health result=2 took=48.669µs +ts=2025-05-22T07:49:20Z caller=logging.go:85 method=Health result=2 took=31.299µs +ts=2025-05-22T07:49:20Z caller=logging.go:85 method=Health result=2 took=52.399µs +ts=2025-05-22T07:49:23Z caller=logging.go:85 method=Health result=2 took=35.599µs +ts=2025-05-22T07:49:23Z caller=logging.go:85 method=Health result=2 took=35.919µs +ts=2025-05-22T07:49:26Z caller=logging.go:85 method=Health result=2 took=52.579µs +ts=2025-05-22T07:49:26Z caller=logging.go:85 method=Health result=2 took=49.749µs +ts=2025-05-22T07:49:29Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T07:49:29Z caller=logging.go:85 method=Health result=2 took=40.029µs +ts=2025-05-22T07:49:32Z caller=logging.go:85 method=Health result=2 took=43.019µs +ts=2025-05-22T07:49:32Z caller=logging.go:85 method=Health result=2 took=64.838µs +ts=2025-05-22T07:49:35Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T07:49:35Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T07:49:38Z caller=logging.go:85 method=Health result=2 took=43.329µs +ts=2025-05-22T07:49:38Z caller=logging.go:85 method=Health result=2 took=59.848µs +ts=2025-05-22T07:49:41Z caller=logging.go:85 method=Health result=2 took=44.449µs +ts=2025-05-22T07:49:41Z caller=logging.go:85 method=Health result=2 took=50.189µs +ts=2025-05-22T07:49:44Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T07:49:44Z caller=logging.go:85 method=Health result=2 took=42.869µs +ts=2025-05-22T07:49:47Z caller=logging.go:85 method=Health result=2 took=65.478µs +ts=2025-05-22T07:49:47Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T07:49:50Z caller=logging.go:85 method=Health result=2 took=44.329µs +ts=2025-05-22T07:49:50Z caller=logging.go:85 method=Health result=2 took=62.588µs +ts=2025-05-22T07:49:53Z caller=logging.go:85 method=Health result=2 took=43.119µs +ts=2025-05-22T07:49:53Z caller=logging.go:85 method=Health result=2 took=43.469µs +ts=2025-05-22T07:49:56Z caller=logging.go:85 method=Health result=2 took=36.97µs +ts=2025-05-22T07:49:56Z caller=logging.go:85 method=Health result=2 took=51.239µs +ts=2025-05-22T07:49:59Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T07:49:59Z caller=logging.go:85 method=Health result=2 took=44.478µs +ts=2025-05-22T07:50:02Z caller=logging.go:85 method=Health result=2 took=41.749µs +ts=2025-05-22T07:50:02Z caller=logging.go:85 method=Health result=2 took=42.529µs +ts=2025-05-22T07:50:05Z caller=logging.go:85 method=Health result=2 took=44.569µs +ts=2025-05-22T07:50:05Z caller=logging.go:85 method=Health result=2 took=52.479µs +ts=2025-05-22T07:50:08Z caller=logging.go:85 method=Health result=2 took=44.139µs +ts=2025-05-22T07:50:08Z caller=logging.go:85 method=Health result=2 took=51.019µs +ts=2025-05-22T07:50:11Z caller=logging.go:85 method=Health result=2 took=45.029µs +ts=2025-05-22T07:50:11Z caller=logging.go:85 method=Health result=2 took=53.088µs +ts=2025-05-22T07:50:14Z caller=logging.go:85 method=Health result=2 took=38.319µs +ts=2025-05-22T07:50:14Z caller=logging.go:85 method=Health result=2 took=24.97µs +ts=2025-05-22T07:50:17Z caller=logging.go:85 method=Health result=2 took=53.539µs +ts=2025-05-22T07:50:17Z caller=logging.go:85 method=Health result=2 took=57.469µs +ts=2025-05-22T07:50:20Z caller=logging.go:85 method=Health result=2 took=32.199µs +ts=2025-05-22T07:50:20Z caller=logging.go:85 method=Health result=2 took=48.419µs +ts=2025-05-22T07:50:23Z caller=logging.go:85 method=Health result=2 took=44.359µs +ts=2025-05-22T07:50:23Z caller=logging.go:85 method=Health result=2 took=44.039µs +ts=2025-05-22T07:50:26Z caller=logging.go:85 method=Health result=2 took=44.729µs +ts=2025-05-22T07:50:26Z caller=logging.go:85 method=Health result=2 took=48.979µs +ts=2025-05-22T07:50:29Z caller=logging.go:85 method=Health result=2 took=36.429µs +ts=2025-05-22T07:50:29Z caller=logging.go:85 method=Health result=2 took=35.809µs +ts=2025-05-22T07:50:32Z caller=logging.go:85 method=Health result=2 took=39.309µs +ts=2025-05-22T07:50:32Z caller=logging.go:85 method=Health result=2 took=38.199µs +ts=2025-05-22T07:50:35Z caller=logging.go:85 method=Health result=2 took=45.448µs +ts=2025-05-22T07:50:35Z caller=logging.go:85 method=Health result=2 took=33.27µs +ts=2025-05-22T07:50:38Z caller=logging.go:85 method=Health result=2 took=30.309µs +ts=2025-05-22T07:50:38Z caller=logging.go:85 method=Health result=2 took=46.879µs +ts=2025-05-22T07:50:41Z caller=logging.go:85 method=Health result=2 took=41.689µs +ts=2025-05-22T07:50:41Z caller=logging.go:85 method=Health result=2 took=49.909µs +ts=2025-05-22T07:50:44Z caller=logging.go:85 method=Health result=2 took=41.279µs +ts=2025-05-22T07:50:44Z caller=logging.go:85 method=Health result=2 took=48.648µs +ts=2025-05-22T07:50:47Z caller=logging.go:85 method=Health result=2 took=32.929µs +ts=2025-05-22T07:50:47Z caller=logging.go:85 method=Health result=2 took=47.438µs +ts=2025-05-22T07:50:50Z caller=logging.go:85 method=Health result=2 took=23.039µs +ts=2025-05-22T07:50:50Z caller=logging.go:85 method=Health result=2 took=44.049µs +ts=2025-05-22T07:50:53Z caller=logging.go:85 method=Health result=2 took=45.059µs +ts=2025-05-22T07:50:53Z caller=logging.go:85 method=Health result=2 took=44.489µs +ts=2025-05-22T07:50:56Z caller=logging.go:85 method=Health result=2 took=31.839µs +ts=2025-05-22T07:50:56Z caller=logging.go:85 method=Health result=2 took=45.269µs +ts=2025-05-22T07:50:59Z caller=logging.go:85 method=Health result=2 took=30.559µs +ts=2025-05-22T07:50:59Z caller=logging.go:85 method=Health result=2 took=30.509µs +ts=2025-05-22T07:51:02Z caller=logging.go:85 method=Health result=2 took=39.659µs +ts=2025-05-22T07:51:02Z caller=logging.go:85 method=Health result=2 took=39.449µs +ts=2025-05-22T07:51:05Z caller=logging.go:85 method=Health result=2 took=29.049µs +ts=2025-05-22T07:51:05Z caller=logging.go:85 method=Health result=2 took=47.699µs +ts=2025-05-22T07:51:08Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T07:51:08Z caller=logging.go:85 method=Health result=2 took=42.839µs +ts=2025-05-22T07:51:11Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T07:51:11Z caller=logging.go:85 method=Health result=2 took=21.959µs +ts=2025-05-22T07:51:14Z caller=logging.go:85 method=Health result=2 took=28.59µs +ts=2025-05-22T07:51:14Z caller=logging.go:85 method=Health result=2 took=46.479µs +ts=2025-05-22T07:51:17Z caller=logging.go:85 method=Health result=2 took=41.919µs +ts=2025-05-22T07:51:17Z caller=logging.go:85 method=Health result=2 took=28.279µs +ts=2025-05-22T07:51:20Z caller=logging.go:85 method=Health result=2 took=56.489µs +ts=2025-05-22T07:51:20Z caller=logging.go:85 method=Health result=2 took=56.489µs +ts=2025-05-22T07:51:23Z caller=logging.go:85 method=Health result=2 took=45.349µs +ts=2025-05-22T07:51:23Z caller=logging.go:85 method=Health result=2 took=49.299µs +ts=2025-05-22T07:51:26Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T07:51:26Z caller=logging.go:85 method=Health result=2 took=30.98µs +ts=2025-05-22T07:51:29Z caller=logging.go:85 method=Health result=2 took=30.27µs +ts=2025-05-22T07:51:29Z caller=logging.go:85 method=Health result=2 took=17.38µs +ts=2025-05-22T07:51:32Z caller=logging.go:85 method=Health result=2 took=43.828µs +ts=2025-05-22T07:51:32Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T07:51:35Z caller=logging.go:85 method=Health result=2 took=41.109µs +ts=2025-05-22T07:51:35Z caller=logging.go:85 method=Health result=2 took=27.1µs +ts=2025-05-22T07:51:38Z caller=logging.go:85 method=Health result=2 took=32.089µs +ts=2025-05-22T07:51:38Z caller=logging.go:85 method=Health result=2 took=45.069µs +ts=2025-05-22T07:51:41Z caller=logging.go:85 method=Health result=2 took=53.468µs +ts=2025-05-22T07:51:41Z caller=logging.go:85 method=Health result=2 took=57.418µs +ts=2025-05-22T07:51:44Z caller=logging.go:85 method=Health result=2 took=47.579µs +ts=2025-05-22T07:51:44Z caller=logging.go:85 method=Health result=2 took=50.909µs +ts=2025-05-22T07:51:47Z caller=logging.go:85 method=Health result=2 took=44.529µs +ts=2025-05-22T07:51:47Z caller=logging.go:85 method=Health result=2 took=50.309µs +ts=2025-05-22T07:51:50Z caller=logging.go:85 method=Health result=2 took=42.539µs +ts=2025-05-22T07:51:50Z caller=logging.go:85 method=Health result=2 took=41.629µs +ts=2025-05-22T07:51:53Z caller=logging.go:85 method=Health result=2 took=45.299µs +ts=2025-05-22T07:51:53Z caller=logging.go:85 method=Health result=2 took=47.569µs +ts=2025-05-22T07:51:56Z caller=logging.go:85 method=Health result=2 took=42.289µs +ts=2025-05-22T07:51:56Z caller=logging.go:85 method=Health result=2 took=40.459µs +ts=2025-05-22T07:51:59Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T07:51:59Z caller=logging.go:85 method=Health result=2 took=49.269µs +ts=2025-05-22T07:52:02Z caller=logging.go:85 method=Health result=2 took=57.399µs +ts=2025-05-22T07:52:02Z caller=logging.go:85 method=Health result=2 took=56.178µs +ts=2025-05-22T07:52:05Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T07:52:05Z caller=logging.go:85 method=Health result=2 took=48.139µs +ts=2025-05-22T07:52:08Z caller=logging.go:85 method=Health result=2 took=46.199µs +ts=2025-05-22T07:52:08Z caller=logging.go:85 method=Health result=2 took=46.169µs +ts=2025-05-22T07:52:11Z caller=logging.go:85 method=Health result=2 took=38.519µs +ts=2025-05-22T07:52:11Z caller=logging.go:85 method=Health result=2 took=49.089µs +ts=2025-05-22T07:52:14Z caller=logging.go:85 method=Health result=2 took=27.409µs +ts=2025-05-22T07:52:14Z caller=logging.go:85 method=Health result=2 took=27.429µs +ts=2025-05-22T07:52:17Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T07:52:17Z caller=logging.go:85 method=Health result=2 took=40.019µs +ts=2025-05-22T07:52:20Z caller=logging.go:85 method=Health result=2 took=38.499µs +ts=2025-05-22T07:52:20Z caller=logging.go:85 method=Health result=2 took=48.588µs +ts=2025-05-22T07:52:23Z caller=logging.go:85 method=Health result=2 took=44.949µs +ts=2025-05-22T07:52:23Z caller=logging.go:85 method=Health result=2 took=34.019µs +ts=2025-05-22T07:52:26Z caller=logging.go:85 method=Health result=2 took=41.049µs +ts=2025-05-22T07:52:26Z caller=logging.go:85 method=Health result=2 took=48.669µs +ts=2025-05-22T07:52:29Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T07:52:29Z caller=logging.go:85 method=Health result=2 took=44.989µs +ts=2025-05-22T07:52:32Z caller=logging.go:85 method=Health result=2 took=43.969µs +ts=2025-05-22T07:52:32Z caller=logging.go:85 method=Health result=2 took=58.959µs +ts=2025-05-22T07:52:35Z caller=logging.go:85 method=Health result=2 took=36.199µs +ts=2025-05-22T07:52:35Z caller=logging.go:85 method=Health result=2 took=32.299µs +ts=2025-05-22T07:52:38Z caller=logging.go:85 method=Health result=2 took=36.009µs +ts=2025-05-22T07:52:38Z caller=logging.go:85 method=Health result=2 took=48.628µs +ts=2025-05-22T07:52:41Z caller=logging.go:85 method=Health result=2 took=43.239µs +ts=2025-05-22T07:52:41Z caller=logging.go:85 method=Health result=2 took=51.579µs +ts=2025-05-22T07:52:44Z caller=logging.go:85 method=Health result=2 took=41.249µs +ts=2025-05-22T07:52:44Z caller=logging.go:85 method=Health result=2 took=44.909µs +ts=2025-05-22T07:52:47Z caller=logging.go:85 method=Health result=2 took=40.329µs +ts=2025-05-22T07:52:47Z caller=logging.go:85 method=Health result=2 took=40.819µs +ts=2025-05-22T07:52:50Z caller=logging.go:85 method=Health result=2 took=43.069µs +ts=2025-05-22T07:52:50Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T07:52:53Z caller=logging.go:85 method=Health result=2 took=38.709µs +ts=2025-05-22T07:52:53Z caller=logging.go:85 method=Health result=2 took=48.409µs +ts=2025-05-22T07:52:56Z caller=logging.go:85 method=Health result=2 took=40.039µs +ts=2025-05-22T07:52:56Z caller=logging.go:85 method=Health result=2 took=47.749µs +ts=2025-05-22T07:52:59Z caller=logging.go:85 method=Health result=2 took=42.638µs +ts=2025-05-22T07:52:59Z caller=logging.go:85 method=Health result=2 took=43.048µs +ts=2025-05-22T07:53:02Z caller=logging.go:85 method=Health result=2 took=54.359µs +ts=2025-05-22T07:53:02Z caller=logging.go:85 method=Health result=2 took=54.399µs +ts=2025-05-22T07:53:05Z caller=logging.go:85 method=Health result=2 took=46.699µs +ts=2025-05-22T07:53:05Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T07:53:08Z caller=logging.go:85 method=Health result=2 took=41.629µs +ts=2025-05-22T07:53:08Z caller=logging.go:85 method=Health result=2 took=37.609µs +ts=2025-05-22T07:53:11Z caller=logging.go:85 method=Health result=2 took=40.919µs +ts=2025-05-22T07:53:11Z caller=logging.go:85 method=Health result=2 took=41.019µs +ts=2025-05-22T07:53:14Z caller=logging.go:85 method=Health result=2 took=46.019µs +ts=2025-05-22T07:53:14Z caller=logging.go:85 method=Health result=2 took=48.379µs +ts=2025-05-22T07:53:17Z caller=logging.go:85 method=Health result=2 took=41.859µs +ts=2025-05-22T07:53:17Z caller=logging.go:85 method=Health result=2 took=21.979µs +ts=2025-05-22T07:53:20Z caller=logging.go:85 method=Health result=2 took=36.739µs +ts=2025-05-22T07:53:20Z caller=logging.go:85 method=Health result=2 took=46.539µs +ts=2025-05-22T07:53:23Z caller=logging.go:85 method=Health result=2 took=31.339µs +ts=2025-05-22T07:53:23Z caller=logging.go:85 method=Health result=2 took=42.219µs +ts=2025-05-22T07:53:26Z caller=logging.go:85 method=Health result=2 took=30.35µs +ts=2025-05-22T07:53:26Z caller=logging.go:85 method=Health result=2 took=47.248µs +ts=2025-05-22T07:53:29Z caller=logging.go:85 method=Health result=2 took=38.979µs +ts=2025-05-22T07:53:29Z caller=logging.go:85 method=Health result=2 took=39.709µs +ts=2025-05-22T07:53:32Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T07:53:32Z caller=logging.go:85 method=Health result=2 took=53.009µs +ts=2025-05-22T07:53:35Z caller=logging.go:85 method=Health result=2 took=40.559µs +ts=2025-05-22T07:53:35Z caller=logging.go:85 method=Health result=2 took=24.13µs +ts=2025-05-22T07:53:38Z caller=logging.go:85 method=Health result=2 took=42.899µs +ts=2025-05-22T07:53:38Z caller=logging.go:85 method=Health result=2 took=43.419µs +ts=2025-05-22T07:53:41Z caller=logging.go:85 method=Health result=2 took=40.639µs +ts=2025-05-22T07:53:41Z caller=logging.go:85 method=Health result=2 took=18.069µs +ts=2025-05-22T07:53:44Z caller=logging.go:85 method=Health result=2 took=39.019µs +ts=2025-05-22T07:53:44Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T07:53:47Z caller=logging.go:85 method=Health result=2 took=46.498µs +ts=2025-05-22T07:53:47Z caller=logging.go:85 method=Health result=2 took=46.488µs +ts=2025-05-22T07:53:50Z caller=logging.go:85 method=Health result=2 took=45.859µs +ts=2025-05-22T07:53:50Z caller=logging.go:85 method=Health result=2 took=44.699µs +ts=2025-05-22T07:53:53Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T07:53:53Z caller=logging.go:85 method=Health result=2 took=48.089µs +ts=2025-05-22T07:53:56Z caller=logging.go:85 method=Health result=2 took=45.909µs +ts=2025-05-22T07:53:56Z caller=logging.go:85 method=Health result=2 took=50.919µs +ts=2025-05-22T07:53:59Z caller=logging.go:85 method=Health result=2 took=31.369µs +ts=2025-05-22T07:53:59Z caller=logging.go:85 method=Health result=2 took=60.059µs +ts=2025-05-22T07:54:02Z caller=logging.go:85 method=Health result=2 took=43.869µs +ts=2025-05-22T07:54:02Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T07:54:05Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T07:54:05Z caller=logging.go:85 method=Health result=2 took=39.999µs +ts=2025-05-22T07:54:08Z caller=logging.go:85 method=Health result=2 took=45.959µs +ts=2025-05-22T07:54:08Z caller=logging.go:85 method=Health result=2 took=46.029µs +ts=2025-05-22T07:54:11Z caller=logging.go:85 method=Health result=2 took=42.169µs +ts=2025-05-22T07:54:11Z caller=logging.go:85 method=Health result=2 took=46.099µs +ts=2025-05-22T07:54:14Z caller=logging.go:85 method=Health result=2 took=39.559µs +ts=2025-05-22T07:54:14Z caller=logging.go:85 method=Health result=2 took=44.109µs +ts=2025-05-22T07:54:17Z caller=logging.go:85 method=Health result=2 took=1.097663ms +ts=2025-05-22T07:54:17Z caller=logging.go:85 method=Health result=2 took=41.829µs +ts=2025-05-22T07:54:20Z caller=logging.go:85 method=Health result=2 took=56.489µs +ts=2025-05-22T07:54:20Z caller=logging.go:85 method=Health result=2 took=56.449µs +ts=2025-05-22T07:54:23Z caller=logging.go:85 method=Health result=2 took=35.559µs +ts=2025-05-22T07:54:23Z caller=logging.go:85 method=Health result=2 took=35.419µs +ts=2025-05-22T07:54:26Z caller=logging.go:85 method=Health result=2 took=51.689µs +ts=2025-05-22T07:54:26Z caller=logging.go:85 method=Health result=2 took=51.559µs +ts=2025-05-22T07:54:29Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T07:54:29Z caller=logging.go:85 method=Health result=2 took=29.07µs +ts=2025-05-22T07:54:32Z caller=logging.go:85 method=Health result=2 took=29.639µs +ts=2025-05-22T07:54:32Z caller=logging.go:85 method=Health result=2 took=49.469µs +ts=2025-05-22T07:54:35Z caller=logging.go:85 method=Health result=2 took=38.459µs +ts=2025-05-22T07:54:35Z caller=logging.go:85 method=Health result=2 took=49.519µs +ts=2025-05-22T07:54:38Z caller=logging.go:85 method=Health result=2 took=29.019µs +ts=2025-05-22T07:54:38Z caller=logging.go:85 method=Health result=2 took=29.009µs +ts=2025-05-22T07:54:41Z caller=logging.go:85 method=Health result=2 took=47.349µs +ts=2025-05-22T07:54:41Z caller=logging.go:85 method=Health result=2 took=45.848µs +ts=2025-05-22T07:54:44Z caller=logging.go:85 method=Health result=2 took=45.079µs +ts=2025-05-22T07:54:44Z caller=logging.go:85 method=Health result=2 took=27.769µs +ts=2025-05-22T07:54:47Z caller=logging.go:85 method=Health result=2 took=39.159µs +ts=2025-05-22T07:54:47Z caller=logging.go:85 method=Health result=2 took=37.149µs +ts=2025-05-22T07:54:50Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T07:54:50Z caller=logging.go:85 method=Health result=2 took=44.209µs +ts=2025-05-22T07:54:53Z caller=logging.go:85 method=Health result=2 took=15.299µs +ts=2025-05-22T07:54:53Z caller=logging.go:85 method=Health result=2 took=37.559µs +ts=2025-05-22T07:54:56Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T07:54:56Z caller=logging.go:85 method=Health result=2 took=48.509µs +ts=2025-05-22T07:54:59Z caller=logging.go:85 method=Health result=2 took=44.319µs +ts=2025-05-22T07:54:59Z caller=logging.go:85 method=Health result=2 took=52.259µs +ts=2025-05-22T07:55:02Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T07:55:02Z caller=logging.go:85 method=Health result=2 took=44.909µs +ts=2025-05-22T07:55:05Z caller=logging.go:85 method=Health result=2 took=44.429µs +ts=2025-05-22T07:55:05Z caller=logging.go:85 method=Health result=2 took=43.879µs +ts=2025-05-22T07:55:08Z caller=logging.go:85 method=Health result=2 took=44.369µs +ts=2025-05-22T07:55:08Z caller=logging.go:85 method=Health result=2 took=49.639µs +ts=2025-05-22T07:55:11Z caller=logging.go:85 method=Health result=2 took=39.879µs +ts=2025-05-22T07:55:11Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T07:55:14Z caller=logging.go:85 method=Health result=2 took=43.239µs +ts=2025-05-22T07:55:14Z caller=logging.go:85 method=Health result=2 took=47.329µs +ts=2025-05-22T07:55:17Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T07:55:17Z caller=logging.go:85 method=Health result=2 took=43.369µs +ts=2025-05-22T07:55:20Z caller=logging.go:85 method=Health result=2 took=44.588µs +ts=2025-05-22T07:55:20Z caller=logging.go:85 method=Health result=2 took=32.27µs +ts=2025-05-22T07:55:23Z caller=logging.go:85 method=Health result=2 took=57.308µs +ts=2025-05-22T07:55:23Z caller=logging.go:85 method=Health result=2 took=48.588µs +ts=2025-05-22T07:55:26Z caller=logging.go:85 method=Health result=2 took=31.299µs +ts=2025-05-22T07:55:26Z caller=logging.go:85 method=Health result=2 took=46.528µs +ts=2025-05-22T07:55:29Z caller=logging.go:85 method=Health result=2 took=44.079µs +ts=2025-05-22T07:55:29Z caller=logging.go:85 method=Health result=2 took=51.069µs +ts=2025-05-22T07:55:32Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T07:55:32Z caller=logging.go:85 method=Health result=2 took=42.589µs +ts=2025-05-22T07:55:35Z caller=logging.go:85 method=Health result=2 took=45.669µs +ts=2025-05-22T07:55:35Z caller=logging.go:85 method=Health result=2 took=52.688µs +ts=2025-05-22T07:55:38Z caller=logging.go:85 method=Health result=2 took=45.329µs +ts=2025-05-22T07:55:38Z caller=logging.go:85 method=Health result=2 took=48.719µs +ts=2025-05-22T07:55:41Z caller=logging.go:85 method=Health result=2 took=42.489µs +ts=2025-05-22T07:55:41Z caller=logging.go:85 method=Health result=2 took=49.798µs +ts=2025-05-22T07:55:44Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T07:55:44Z caller=logging.go:85 method=Health result=2 took=42.539µs +ts=2025-05-22T07:55:47Z caller=logging.go:85 method=Health result=2 took=23.2µs +ts=2025-05-22T07:55:47Z caller=logging.go:85 method=Health result=2 took=27.71µs +ts=2025-05-22T07:55:50Z caller=logging.go:85 method=Health result=2 took=40.259µs +ts=2025-05-22T07:55:50Z caller=logging.go:85 method=Health result=2 took=40.329µs +ts=2025-05-22T07:55:53Z caller=logging.go:85 method=Health result=2 took=29.499µs +ts=2025-05-22T07:55:53Z caller=logging.go:85 method=Health result=2 took=9.27µs +ts=2025-05-22T07:55:56Z caller=logging.go:85 method=Health result=2 took=41.819µs +ts=2025-05-22T07:55:56Z caller=logging.go:85 method=Health result=2 took=48.039µs +ts=2025-05-22T07:55:59Z caller=logging.go:85 method=Health result=2 took=43.639µs +ts=2025-05-22T07:55:59Z caller=logging.go:85 method=Health result=2 took=36.899µs +ts=2025-05-22T07:56:02Z caller=logging.go:85 method=Health result=2 took=31.189µs +ts=2025-05-22T07:56:02Z caller=logging.go:85 method=Health result=2 took=40.179µs +ts=2025-05-22T07:56:05Z caller=logging.go:85 method=Health result=2 took=28.71µs +ts=2025-05-22T07:56:05Z caller=logging.go:85 method=Health result=2 took=46.169µs +ts=2025-05-22T07:56:08Z caller=logging.go:85 method=Health result=2 took=31.4µs +ts=2025-05-22T07:56:08Z caller=logging.go:85 method=Health result=2 took=46.789µs +ts=2025-05-22T07:56:11Z caller=logging.go:85 method=Health result=2 took=28.4µs +ts=2025-05-22T07:56:11Z caller=logging.go:85 method=Health result=2 took=28.39µs +ts=2025-05-22T07:56:14Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T07:56:14Z caller=logging.go:85 method=Health result=2 took=44.119µs +ts=2025-05-22T07:56:17Z caller=logging.go:85 method=Health result=2 took=13.44µs +ts=2025-05-22T07:56:17Z caller=logging.go:85 method=Health result=2 took=58.599µs +ts=2025-05-22T07:56:20Z caller=logging.go:85 method=Health result=2 took=36.919µs +ts=2025-05-22T07:56:20Z caller=logging.go:85 method=Health result=2 took=37.009µs +ts=2025-05-22T07:56:23Z caller=logging.go:85 method=Health result=2 took=56.948µs +ts=2025-05-22T07:56:23Z caller=logging.go:85 method=Health result=2 took=56.938µs +ts=2025-05-22T07:56:26Z caller=logging.go:85 method=Health result=2 took=44.998µs +ts=2025-05-22T07:56:26Z caller=logging.go:85 method=Health result=2 took=44.718µs +ts=2025-05-22T07:56:29Z caller=logging.go:85 method=Health result=2 took=39.269µs +ts=2025-05-22T07:56:29Z caller=logging.go:85 method=Health result=2 took=39.869µs +ts=2025-05-22T07:56:32Z caller=logging.go:85 method=Health result=2 took=35.399µs +ts=2025-05-22T07:56:32Z caller=logging.go:85 method=Health result=2 took=27.69µs +ts=2025-05-22T07:56:35Z caller=logging.go:85 method=Health result=2 took=28.439µs +ts=2025-05-22T07:56:35Z caller=logging.go:85 method=Health result=2 took=28.509µs +ts=2025-05-22T07:56:38Z caller=logging.go:85 method=Health result=2 took=39.54µs +ts=2025-05-22T07:56:38Z caller=logging.go:85 method=Health result=2 took=41.05µs +ts=2025-05-22T07:56:41Z caller=logging.go:85 method=Health result=2 took=31.329µs +ts=2025-05-22T07:56:41Z caller=logging.go:85 method=Health result=2 took=45.879µs +ts=2025-05-22T07:56:44Z caller=logging.go:85 method=Health result=2 took=42.029µs +ts=2025-05-22T07:56:44Z caller=logging.go:85 method=Health result=2 took=50.278µs +ts=2025-05-22T07:56:47Z caller=logging.go:85 method=Health result=2 took=40.409µs +ts=2025-05-22T07:56:47Z caller=logging.go:85 method=Health result=2 took=46.599µs +ts=2025-05-22T07:56:50Z caller=logging.go:85 method=Health result=2 took=31.169µs +ts=2025-05-22T07:56:50Z caller=logging.go:85 method=Health result=2 took=40.689µs +ts=2025-05-22T07:56:53Z caller=logging.go:85 method=Health result=2 took=45.669µs +ts=2025-05-22T07:56:53Z caller=logging.go:85 method=Health result=2 took=43.899µs +ts=2025-05-22T07:56:56Z caller=logging.go:85 method=Health result=2 took=29.159µs +ts=2025-05-22T07:56:56Z caller=logging.go:85 method=Health result=2 took=29.129µs +ts=2025-05-22T07:56:59Z caller=logging.go:85 method=Health result=2 took=41.769µs +ts=2025-05-22T07:56:59Z caller=logging.go:85 method=Health result=2 took=50.208µs +ts=2025-05-22T07:57:02Z caller=logging.go:85 method=Health result=2 took=40.929µs +ts=2025-05-22T07:57:02Z caller=logging.go:85 method=Health result=2 took=48.958µs +ts=2025-05-22T07:57:05Z caller=logging.go:85 method=Health result=2 took=40.369µs +ts=2025-05-22T07:57:05Z caller=logging.go:85 method=Health result=2 took=16.259µs +ts=2025-05-22T07:57:08Z caller=logging.go:85 method=Health result=2 took=44.349µs +ts=2025-05-22T07:57:08Z caller=logging.go:85 method=Health result=2 took=47.698µs +ts=2025-05-22T07:57:11Z caller=logging.go:85 method=Health result=2 took=40.219µs +ts=2025-05-22T07:57:11Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T07:57:14Z caller=logging.go:85 method=Health result=2 took=43.389µs +ts=2025-05-22T07:57:14Z caller=logging.go:85 method=Health result=2 took=50.528µs +ts=2025-05-22T07:57:17Z caller=logging.go:85 method=Health result=2 took=53.749µs +ts=2025-05-22T07:57:17Z caller=logging.go:85 method=Health result=2 took=54.659µs +ts=2025-05-22T07:57:20Z caller=logging.go:85 method=Health result=2 took=30.67µs +ts=2025-05-22T07:57:20Z caller=logging.go:85 method=Health result=2 took=15.48µs +ts=2025-05-22T07:57:23Z caller=logging.go:85 method=Health result=2 took=45.349µs +ts=2025-05-22T07:57:23Z caller=logging.go:85 method=Health result=2 took=46.399µs +ts=2025-05-22T07:57:26Z caller=logging.go:85 method=Health result=2 took=41.359µs +ts=2025-05-22T07:57:26Z caller=logging.go:85 method=Health result=2 took=33µs +ts=2025-05-22T07:57:29Z caller=logging.go:85 method=Health result=2 took=30.799µs +ts=2025-05-22T07:57:29Z caller=logging.go:85 method=Health result=2 took=30.749µs +ts=2025-05-22T07:57:32Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T07:57:32Z caller=logging.go:85 method=Health result=2 took=31.309µs +ts=2025-05-22T07:57:35Z caller=logging.go:85 method=Health result=2 took=32.229µs +ts=2025-05-22T07:57:35Z caller=logging.go:85 method=Health result=2 took=40.12µs +ts=2025-05-22T07:57:38Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T07:57:38Z caller=logging.go:85 method=Health result=2 took=47.329µs +ts=2025-05-22T07:57:41Z caller=logging.go:85 method=Health result=2 took=40.779µs +ts=2025-05-22T07:57:41Z caller=logging.go:85 method=Health result=2 took=49.499µs +ts=2025-05-22T07:57:44Z caller=logging.go:85 method=Health result=2 took=36.01µs +ts=2025-05-22T07:57:44Z caller=logging.go:85 method=Health result=2 took=36.41µs +ts=2025-05-22T07:57:47Z caller=logging.go:85 method=Health result=2 took=41.229µs +ts=2025-05-22T07:57:47Z caller=logging.go:85 method=Health result=2 took=40.839µs +ts=2025-05-22T07:57:50Z caller=logging.go:85 method=Health result=2 took=35.499µs +ts=2025-05-22T07:57:50Z caller=logging.go:85 method=Health result=2 took=39.809µs +ts=2025-05-22T07:57:53Z caller=logging.go:85 method=Health result=2 took=45.459µs +ts=2025-05-22T07:57:53Z caller=logging.go:85 method=Health result=2 took=57.429µs +ts=2025-05-22T07:57:56Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T07:57:56Z caller=logging.go:85 method=Health result=2 took=44.079µs +ts=2025-05-22T07:57:59Z caller=logging.go:85 method=Health result=2 took=46.679µs +ts=2025-05-22T07:57:59Z caller=logging.go:85 method=Health result=2 took=47.549µs +ts=2025-05-22T07:58:02Z caller=logging.go:85 method=Health result=2 took=42.009µs +ts=2025-05-22T07:58:02Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T07:58:05Z caller=logging.go:85 method=Health result=2 took=46.029µs +ts=2025-05-22T07:58:05Z caller=logging.go:85 method=Health result=2 took=47.989µs +ts=2025-05-22T07:58:08Z caller=logging.go:85 method=Health result=2 took=43.349µs +ts=2025-05-22T07:58:08Z caller=logging.go:85 method=Health result=2 took=45.009µs +ts=2025-05-22T07:58:11Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T07:58:11Z caller=logging.go:85 method=Health result=2 took=29.769µs +ts=2025-05-22T07:58:14Z caller=logging.go:85 method=Health result=2 took=42.539µs +ts=2025-05-22T07:58:14Z caller=logging.go:85 method=Health result=2 took=30.549µs +ts=2025-05-22T07:58:17Z caller=logging.go:85 method=Health result=2 took=117.498µs +ts=2025-05-22T07:58:17Z caller=logging.go:85 method=Health result=2 took=73.118µs +ts=2025-05-22T07:58:20Z caller=logging.go:85 method=Health result=2 took=41.179µs +ts=2025-05-22T07:58:20Z caller=logging.go:85 method=Health result=2 took=40.799µs +ts=2025-05-22T07:58:23Z caller=logging.go:85 method=Health result=2 took=44.799µs +ts=2025-05-22T07:58:23Z caller=logging.go:85 method=Health result=2 took=53.079µs +ts=2025-05-22T07:58:26Z caller=logging.go:85 method=Health result=2 took=51.759µs +ts=2025-05-22T07:58:26Z caller=logging.go:85 method=Health result=2 took=28.369µs +ts=2025-05-22T07:58:29Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T07:58:29Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T07:58:32Z caller=logging.go:85 method=Health result=2 took=41.639µs +ts=2025-05-22T07:58:32Z caller=logging.go:85 method=Health result=2 took=32.439µs +ts=2025-05-22T07:58:35Z caller=logging.go:85 method=Health result=2 took=43.909µs +ts=2025-05-22T07:58:35Z caller=logging.go:85 method=Health result=2 took=49.799µs +ts=2025-05-22T07:58:38Z caller=logging.go:85 method=Health result=2 took=38.739µs +ts=2025-05-22T07:58:38Z caller=logging.go:85 method=Health result=2 took=38.169µs +ts=2025-05-22T07:58:41Z caller=logging.go:85 method=Health result=2 took=42.109µs +ts=2025-05-22T07:58:41Z caller=logging.go:85 method=Health result=2 took=27.609µs +ts=2025-05-22T07:58:44Z caller=logging.go:85 method=Health result=2 took=28.789µs +ts=2025-05-22T07:58:44Z caller=logging.go:85 method=Health result=2 took=28.749µs +ts=2025-05-22T07:58:47Z caller=logging.go:85 method=Health result=2 took=51.569µs +ts=2025-05-22T07:58:47Z caller=logging.go:85 method=Health result=2 took=52.219µs +ts=2025-05-22T07:58:50Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T07:58:50Z caller=logging.go:85 method=Health result=2 took=42.489µs +ts=2025-05-22T07:58:53Z caller=logging.go:85 method=Health result=2 took=38.589µs +ts=2025-05-22T07:58:53Z caller=logging.go:85 method=Health result=2 took=48.219µs +ts=2025-05-22T07:58:56Z caller=logging.go:85 method=Health result=2 took=58.478µs +ts=2025-05-22T07:58:56Z caller=logging.go:85 method=Health result=2 took=58.548µs +ts=2025-05-22T07:58:59Z caller=logging.go:85 method=Health result=2 took=32.049µs +ts=2025-05-22T07:58:59Z caller=logging.go:85 method=Health result=2 took=31.739µs +ts=2025-05-22T07:59:02Z caller=logging.go:85 method=Health result=2 took=36.559µs +ts=2025-05-22T07:59:02Z caller=logging.go:85 method=Health result=2 took=36.399µs +ts=2025-05-22T07:59:05Z caller=logging.go:85 method=Health result=2 took=27.989µs +ts=2025-05-22T07:59:05Z caller=logging.go:85 method=Health result=2 took=28.069µs +ts=2025-05-22T07:59:08Z caller=logging.go:85 method=Health result=2 took=43.419µs +ts=2025-05-22T07:59:08Z caller=logging.go:85 method=Health result=2 took=48.789µs +ts=2025-05-22T07:59:11Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T07:59:11Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T07:59:14Z caller=logging.go:85 method=Health result=2 took=40.019µs +ts=2025-05-22T07:59:14Z caller=logging.go:85 method=Health result=2 took=20.229µs +ts=2025-05-22T07:59:17Z caller=logging.go:85 method=Health result=2 took=50.019µs +ts=2025-05-22T07:59:17Z caller=logging.go:85 method=Health result=2 took=56.509µs +ts=2025-05-22T07:59:20Z caller=logging.go:85 method=Health result=2 took=36.469µs +ts=2025-05-22T07:59:20Z caller=logging.go:85 method=Health result=2 took=47.829µs +ts=2025-05-22T07:59:23Z caller=logging.go:85 method=Health result=2 took=56.618µs +ts=2025-05-22T07:59:23Z caller=logging.go:85 method=Health result=2 took=25.139µs +ts=2025-05-22T07:59:26Z caller=logging.go:85 method=Health result=2 took=40.829µs +ts=2025-05-22T07:59:26Z caller=logging.go:85 method=Health result=2 took=56.429µs +ts=2025-05-22T07:59:29Z caller=logging.go:85 method=Health result=2 took=54.899µs +ts=2025-05-22T07:59:29Z caller=logging.go:85 method=Health result=2 took=50.998µs +ts=2025-05-22T07:59:32Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T07:59:32Z caller=logging.go:85 method=Health result=2 took=38.869µs +ts=2025-05-22T07:59:35Z caller=logging.go:85 method=Health result=2 took=36.369µs +ts=2025-05-22T07:59:35Z caller=logging.go:85 method=Health result=2 took=36.379µs +ts=2025-05-22T07:59:38Z caller=logging.go:85 method=Health result=2 took=42.918µs +ts=2025-05-22T07:59:38Z caller=logging.go:85 method=Health result=2 took=47.529µs +ts=2025-05-22T07:59:41Z caller=logging.go:85 method=Health result=2 took=46.249µs +ts=2025-05-22T07:59:41Z caller=logging.go:85 method=Health result=2 took=50.249µs +ts=2025-05-22T07:59:44Z caller=logging.go:85 method=Health result=2 took=30.389µs +ts=2025-05-22T07:59:44Z caller=logging.go:85 method=Health result=2 took=30.499µs +ts=2025-05-22T07:59:47Z caller=logging.go:85 method=Health result=2 took=44.749µs +ts=2025-05-22T07:59:47Z caller=logging.go:85 method=Health result=2 took=45.529µs +ts=2025-05-22T07:59:50Z caller=logging.go:85 method=Health result=2 took=45.579µs +ts=2025-05-22T07:59:50Z caller=logging.go:85 method=Health result=2 took=44.919µs +ts=2025-05-22T07:59:53Z caller=logging.go:85 method=Health result=2 took=47.539µs +ts=2025-05-22T07:59:53Z caller=logging.go:85 method=Health result=2 took=50.879µs +ts=2025-05-22T07:59:56Z caller=logging.go:85 method=Health result=2 took=38.309µs +ts=2025-05-22T07:59:56Z caller=logging.go:85 method=Health result=2 took=49.059µs +ts=2025-05-22T07:59:59Z caller=logging.go:85 method=Health result=2 took=35.609µs +ts=2025-05-22T07:59:59Z caller=logging.go:85 method=Health result=2 took=35.129µs +ts=2025-05-22T08:00:02Z caller=logging.go:85 method=Health result=2 took=46.639µs +ts=2025-05-22T08:00:02Z caller=logging.go:85 method=Health result=2 took=45.089µs +ts=2025-05-22T08:00:05Z caller=logging.go:85 method=Health result=2 took=38.979µs +ts=2025-05-22T08:00:05Z caller=logging.go:85 method=Health result=2 took=39.639µs +ts=2025-05-22T08:00:08Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:00:08Z caller=logging.go:85 method=Health result=2 took=56.258µs +ts=2025-05-22T08:00:11Z caller=logging.go:85 method=Health result=2 took=40.529µs +ts=2025-05-22T08:00:11Z caller=logging.go:85 method=Health result=2 took=55.819µs +ts=2025-05-22T08:00:14Z caller=logging.go:85 method=Health result=2 took=38.169µs +ts=2025-05-22T08:00:14Z caller=logging.go:85 method=Health result=2 took=33.349µs +ts=2025-05-22T08:00:17Z caller=logging.go:85 method=Health result=2 took=99.498µs +ts=2025-05-22T08:00:17Z caller=logging.go:85 method=Health result=2 took=76.488µs +ts=2025-05-22T08:00:20Z caller=logging.go:85 method=Health result=2 took=42.219µs +ts=2025-05-22T08:00:20Z caller=logging.go:85 method=Health result=2 took=40.389µs +ts=2025-05-22T08:00:23Z caller=logging.go:85 method=Health result=2 took=40.329µs +ts=2025-05-22T08:00:23Z caller=logging.go:85 method=Health result=2 took=48.119µs +ts=2025-05-22T08:00:26Z caller=logging.go:85 method=Health result=2 took=42.529µs +ts=2025-05-22T08:00:26Z caller=logging.go:85 method=Health result=2 took=26.919µs +ts=2025-05-22T08:00:29Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T08:00:29Z caller=logging.go:85 method=Health result=2 took=44.139µs +ts=2025-05-22T08:00:32Z caller=logging.go:85 method=Health result=2 took=43.689µs +ts=2025-05-22T08:00:32Z caller=logging.go:85 method=Health result=2 took=49.539µs +ts=2025-05-22T08:00:35Z caller=logging.go:85 method=Health result=2 took=37.899µs +ts=2025-05-22T08:00:35Z caller=logging.go:85 method=Health result=2 took=42.139µs +ts=2025-05-22T08:00:38Z caller=logging.go:85 method=Health result=2 took=40.039µs +ts=2025-05-22T08:00:38Z caller=logging.go:85 method=Health result=2 took=39.619µs +ts=2025-05-22T08:00:41Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T08:00:41Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T08:00:44Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T08:00:44Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T08:00:47Z caller=logging.go:85 method=Health result=2 took=45.679µs +ts=2025-05-22T08:00:47Z caller=logging.go:85 method=Health result=2 took=49.059µs +ts=2025-05-22T08:00:50Z caller=logging.go:85 method=Health result=2 took=31.28µs +ts=2025-05-22T08:00:50Z caller=logging.go:85 method=Health result=2 took=46.099µs +ts=2025-05-22T08:00:53Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T08:00:53Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T08:00:56Z caller=logging.go:85 method=Health result=2 took=45.739µs +ts=2025-05-22T08:00:56Z caller=logging.go:85 method=Health result=2 took=50.049µs +ts=2025-05-22T08:00:59Z caller=logging.go:85 method=Health result=2 took=43.539µs +ts=2025-05-22T08:00:59Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T08:01:02Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T08:01:02Z caller=logging.go:85 method=Health result=2 took=46.819µs +ts=2025-05-22T08:01:05Z caller=logging.go:85 method=Health result=2 took=45.129µs +ts=2025-05-22T08:01:05Z caller=logging.go:85 method=Health result=2 took=45.009µs +ts=2025-05-22T08:01:08Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T08:01:08Z caller=logging.go:85 method=Health result=2 took=19.08µs +ts=2025-05-22T08:01:11Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T08:01:11Z caller=logging.go:85 method=Health result=2 took=48.469µs +ts=2025-05-22T08:01:14Z caller=logging.go:85 method=Health result=2 took=28.889µs +ts=2025-05-22T08:01:14Z caller=logging.go:85 method=Health result=2 took=28.839µs +ts=2025-05-22T08:01:17Z caller=logging.go:85 method=Health result=2 took=41.279µs +ts=2025-05-22T08:01:17Z caller=logging.go:85 method=Health result=2 took=48.198µs +ts=2025-05-22T08:01:20Z caller=logging.go:85 method=Health result=2 took=45.399µs +ts=2025-05-22T08:01:20Z caller=logging.go:85 method=Health result=2 took=49.899µs +ts=2025-05-22T08:01:23Z caller=logging.go:85 method=Health result=2 took=16.649µs +ts=2025-05-22T08:01:23Z caller=logging.go:85 method=Health result=2 took=37.889µs +ts=2025-05-22T08:01:26Z caller=logging.go:85 method=Health result=2 took=28.489µs +ts=2025-05-22T08:01:26Z caller=logging.go:85 method=Health result=2 took=45.318µs +ts=2025-05-22T08:01:29Z caller=logging.go:85 method=Health result=2 took=31.77µs +ts=2025-05-22T08:01:29Z caller=logging.go:85 method=Health result=2 took=47.309µs +ts=2025-05-22T08:01:32Z caller=logging.go:85 method=Health result=2 took=36.329µs +ts=2025-05-22T08:01:32Z caller=logging.go:85 method=Health result=2 took=35.889µs +ts=2025-05-22T08:01:35Z caller=logging.go:85 method=Health result=2 took=43.779µs +ts=2025-05-22T08:01:35Z caller=logging.go:85 method=Health result=2 took=45.109µs +ts=2025-05-22T08:01:38Z caller=logging.go:85 method=Health result=2 took=46.968µs +ts=2025-05-22T08:01:38Z caller=logging.go:85 method=Health result=2 took=48.609µs +ts=2025-05-22T08:01:41Z caller=logging.go:85 method=Health result=2 took=27.409µs +ts=2025-05-22T08:01:41Z caller=logging.go:85 method=Health result=2 took=15.74µs +ts=2025-05-22T08:01:44Z caller=logging.go:85 method=Health result=2 took=29.909µs +ts=2025-05-22T08:01:44Z caller=logging.go:85 method=Health result=2 took=33.809µs +ts=2025-05-22T08:01:47Z caller=logging.go:85 method=Health result=2 took=29.35µs +ts=2025-05-22T08:01:47Z caller=logging.go:85 method=Health result=2 took=14.26µs +ts=2025-05-22T08:01:50Z caller=logging.go:85 method=Health result=2 took=28.679µs +ts=2025-05-22T08:01:50Z caller=logging.go:85 method=Health result=2 took=46.119µs +ts=2025-05-22T08:01:53Z caller=logging.go:85 method=Health result=2 took=34.27µs +ts=2025-05-22T08:01:53Z caller=logging.go:85 method=Health result=2 took=49.658µs +ts=2025-05-22T08:01:56Z caller=logging.go:85 method=Health result=2 took=43.609µs +ts=2025-05-22T08:01:56Z caller=logging.go:85 method=Health result=2 took=39.089µs +ts=2025-05-22T08:01:59Z caller=logging.go:85 method=Health result=2 took=44.319µs +ts=2025-05-22T08:01:59Z caller=logging.go:85 method=Health result=2 took=49.499µs +ts=2025-05-22T08:02:02Z caller=logging.go:85 method=Health result=2 took=22.19µs +ts=2025-05-22T08:02:02Z caller=logging.go:85 method=Health result=2 took=27.83µs +ts=2025-05-22T08:02:05Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T08:02:05Z caller=logging.go:85 method=Health result=2 took=55.349µs +ts=2025-05-22T08:02:08Z caller=logging.go:85 method=Health result=2 took=42.759µs +ts=2025-05-22T08:02:08Z caller=logging.go:85 method=Health result=2 took=44.149µs +ts=2025-05-22T08:02:11Z caller=logging.go:85 method=Health result=2 took=51.399µs +ts=2025-05-22T08:02:11Z caller=logging.go:85 method=Health result=2 took=51.419µs +ts=2025-05-22T08:02:14Z caller=logging.go:85 method=Health result=2 took=40.429µs +ts=2025-05-22T08:02:14Z caller=logging.go:85 method=Health result=2 took=35.569µs +ts=2025-05-22T08:02:17Z caller=logging.go:85 method=Health result=2 took=237.264µs +ts=2025-05-22T08:02:17Z caller=logging.go:85 method=Health result=2 took=29.629µs +ts=2025-05-22T08:02:20Z caller=logging.go:85 method=Health result=2 took=45.889µs +ts=2025-05-22T08:02:20Z caller=logging.go:85 method=Health result=2 took=49.049µs +ts=2025-05-22T08:02:23Z caller=logging.go:85 method=Health result=2 took=42.159µs +ts=2025-05-22T08:02:23Z caller=logging.go:85 method=Health result=2 took=48.989µs +ts=2025-05-22T08:02:26Z caller=logging.go:85 method=Health result=2 took=39.089µs +ts=2025-05-22T08:02:26Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T08:02:29Z caller=logging.go:85 method=Health result=2 took=49.239µs +ts=2025-05-22T08:02:29Z caller=logging.go:85 method=Health result=2 took=50.259µs +ts=2025-05-22T08:02:32Z caller=logging.go:85 method=Health result=2 took=42.869µs +ts=2025-05-22T08:02:32Z caller=logging.go:85 method=Health result=2 took=65.259µs +ts=2025-05-22T08:02:35Z caller=logging.go:85 method=Health result=2 took=43.009µs +ts=2025-05-22T08:02:35Z caller=logging.go:85 method=Health result=2 took=42.449µs +ts=2025-05-22T08:02:38Z caller=logging.go:85 method=Health result=2 took=44.319µs +ts=2025-05-22T08:02:38Z caller=logging.go:85 method=Health result=2 took=45.309µs +ts=2025-05-22T08:02:41Z caller=logging.go:85 method=Health result=2 took=39.139µs +ts=2025-05-22T08:02:41Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T08:02:44Z caller=logging.go:85 method=Health result=2 took=43.549µs +ts=2025-05-22T08:02:44Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T08:02:47Z caller=logging.go:85 method=Health result=2 took=60.309µs +ts=2025-05-22T08:02:47Z caller=logging.go:85 method=Health result=2 took=48.149µs +ts=2025-05-22T08:02:50Z caller=logging.go:85 method=Health result=2 took=45.838µs +ts=2025-05-22T08:02:50Z caller=logging.go:85 method=Health result=2 took=42.639µs +ts=2025-05-22T08:02:53Z caller=logging.go:85 method=Health result=2 took=39.639µs +ts=2025-05-22T08:02:53Z caller=logging.go:85 method=Health result=2 took=27.279µs +ts=2025-05-22T08:02:56Z caller=logging.go:85 method=Health result=2 took=41.079µs +ts=2025-05-22T08:02:56Z caller=logging.go:85 method=Health result=2 took=31.32µs +ts=2025-05-22T08:02:59Z caller=logging.go:85 method=Health result=2 took=41.779µs +ts=2025-05-22T08:02:59Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T08:03:02Z caller=logging.go:85 method=Health result=2 took=36.219µs +ts=2025-05-22T08:03:02Z caller=logging.go:85 method=Health result=2 took=36.189µs +ts=2025-05-22T08:03:05Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T08:03:05Z caller=logging.go:85 method=Health result=2 took=47.649µs +ts=2025-05-22T08:03:08Z caller=logging.go:85 method=Health result=2 took=31.829µs +ts=2025-05-22T08:03:08Z caller=logging.go:85 method=Health result=2 took=31.789µs +ts=2025-05-22T08:03:11Z caller=logging.go:85 method=Health result=2 took=38.299µs +ts=2025-05-22T08:03:11Z caller=logging.go:85 method=Health result=2 took=38.949µs +ts=2025-05-22T08:03:14Z caller=logging.go:85 method=Health result=2 took=66.108µs +ts=2025-05-22T08:03:14Z caller=logging.go:85 method=Health result=2 took=66.108µs +ts=2025-05-22T08:03:17Z caller=logging.go:85 method=Health result=2 took=45.379µs +ts=2025-05-22T08:03:17Z caller=logging.go:85 method=Health result=2 took=42.539µs +ts=2025-05-22T08:03:20Z caller=logging.go:85 method=Health result=2 took=39.409µs +ts=2025-05-22T08:03:20Z caller=logging.go:85 method=Health result=2 took=48.409µs +ts=2025-05-22T08:03:23Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T08:03:23Z caller=logging.go:85 method=Health result=2 took=47.979µs +ts=2025-05-22T08:03:26Z caller=logging.go:85 method=Health result=2 took=31.06µs +ts=2025-05-22T08:03:26Z caller=logging.go:85 method=Health result=2 took=13.67µs +ts=2025-05-22T08:03:29Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T08:03:29Z caller=logging.go:85 method=Health result=2 took=31.479µs +ts=2025-05-22T08:03:32Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T08:03:32Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T08:03:35Z caller=logging.go:85 method=Health result=2 took=39.009µs +ts=2025-05-22T08:03:35Z caller=logging.go:85 method=Health result=2 took=38.729µs +ts=2025-05-22T08:03:38Z caller=logging.go:85 method=Health result=2 took=39.999µs +ts=2025-05-22T08:03:38Z caller=logging.go:85 method=Health result=2 took=27.359µs +ts=2025-05-22T08:03:41Z caller=logging.go:85 method=Health result=2 took=42.969µs +ts=2025-05-22T08:03:41Z caller=logging.go:85 method=Health result=2 took=42.909µs +ts=2025-05-22T08:03:44Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T08:03:44Z caller=logging.go:85 method=Health result=2 took=26.559µs +ts=2025-05-22T08:03:47Z caller=logging.go:85 method=Health result=2 took=45.969µs +ts=2025-05-22T08:03:47Z caller=logging.go:85 method=Health result=2 took=44.559µs +ts=2025-05-22T08:03:50Z caller=logging.go:85 method=Health result=2 took=35.849µs +ts=2025-05-22T08:03:50Z caller=logging.go:85 method=Health result=2 took=34.379µs +ts=2025-05-22T08:03:53Z caller=logging.go:85 method=Health result=2 took=37.549µs +ts=2025-05-22T08:03:53Z caller=logging.go:85 method=Health result=2 took=33.319µs +ts=2025-05-22T08:03:56Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T08:03:56Z caller=logging.go:85 method=Health result=2 took=47.639µs +ts=2025-05-22T08:03:59Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T08:03:59Z caller=logging.go:85 method=Health result=2 took=44.468µs +ts=2025-05-22T08:04:02Z caller=logging.go:85 method=Health result=2 took=36.539µs +ts=2025-05-22T08:04:02Z caller=logging.go:85 method=Health result=2 took=36.529µs +ts=2025-05-22T08:04:05Z caller=logging.go:85 method=Health result=2 took=28.6µs +ts=2025-05-22T08:04:05Z caller=logging.go:85 method=Health result=2 took=28.56µs +ts=2025-05-22T08:04:08Z caller=logging.go:85 method=Health result=2 took=45.199µs +ts=2025-05-22T08:04:08Z caller=logging.go:85 method=Health result=2 took=44.479µs +ts=2025-05-22T08:04:11Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T08:04:11Z caller=logging.go:85 method=Health result=2 took=48.299µs +ts=2025-05-22T08:04:14Z caller=logging.go:85 method=Health result=2 took=50.269µs +ts=2025-05-22T08:04:14Z caller=logging.go:85 method=Health result=2 took=49.579µs +ts=2025-05-22T08:04:17Z caller=logging.go:85 method=Health result=2 took=83.798µs +ts=2025-05-22T08:04:17Z caller=logging.go:85 method=Health result=2 took=144.767µs +ts=2025-05-22T08:04:20Z caller=logging.go:85 method=Health result=2 took=38.469µs +ts=2025-05-22T08:04:20Z caller=logging.go:85 method=Health result=2 took=47.499µs +ts=2025-05-22T08:04:23Z caller=logging.go:85 method=Health result=2 took=38.459µs +ts=2025-05-22T08:04:23Z caller=logging.go:85 method=Health result=2 took=39.149µs +ts=2025-05-22T08:04:26Z caller=logging.go:85 method=Health result=2 took=41.919µs +ts=2025-05-22T08:04:26Z caller=logging.go:85 method=Health result=2 took=50.909µs +ts=2025-05-22T08:04:29Z caller=logging.go:85 method=Health result=2 took=46.999µs +ts=2025-05-22T08:04:29Z caller=logging.go:85 method=Health result=2 took=51.189µs +ts=2025-05-22T08:04:32Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T08:04:32Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T08:04:35Z caller=logging.go:85 method=Health result=2 took=45.579µs +ts=2025-05-22T08:04:35Z caller=logging.go:85 method=Health result=2 took=78.248µs +ts=2025-05-22T08:04:38Z caller=logging.go:85 method=Health result=2 took=38.359µs +ts=2025-05-22T08:04:38Z caller=logging.go:85 method=Health result=2 took=37.679µs +ts=2025-05-22T08:04:41Z caller=logging.go:85 method=Health result=2 took=43.389µs +ts=2025-05-22T08:04:41Z caller=logging.go:85 method=Health result=2 took=43.099µs +ts=2025-05-22T08:04:44Z caller=logging.go:85 method=Health result=2 took=30.669µs +ts=2025-05-22T08:04:44Z caller=logging.go:85 method=Health result=2 took=47.219µs +ts=2025-05-22T08:04:47Z caller=logging.go:85 method=Health result=2 took=43.579µs +ts=2025-05-22T08:04:47Z caller=logging.go:85 method=Health result=2 took=47.489µs +ts=2025-05-22T08:04:50Z caller=logging.go:85 method=Health result=2 took=40.089µs +ts=2025-05-22T08:04:50Z caller=logging.go:85 method=Health result=2 took=39.46µs +ts=2025-05-22T08:04:53Z caller=logging.go:85 method=Health result=2 took=43.919µs +ts=2025-05-22T08:04:53Z caller=logging.go:85 method=Health result=2 took=51.159µs +ts=2025-05-22T08:04:56Z caller=logging.go:85 method=Health result=2 took=40.879µs +ts=2025-05-22T08:04:56Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T08:04:59Z caller=logging.go:85 method=Health result=2 took=43.019µs +ts=2025-05-22T08:04:59Z caller=logging.go:85 method=Health result=2 took=34.499µs +ts=2025-05-22T08:05:02Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T08:05:02Z caller=logging.go:85 method=Health result=2 took=30.279µs +ts=2025-05-22T08:05:05Z caller=logging.go:85 method=Health result=2 took=44.139µs +ts=2025-05-22T08:05:05Z caller=logging.go:85 method=Health result=2 took=50.119µs +ts=2025-05-22T08:05:08Z caller=logging.go:85 method=Health result=2 took=44.939µs +ts=2025-05-22T08:05:08Z caller=logging.go:85 method=Health result=2 took=50.729µs +ts=2025-05-22T08:05:11Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T08:05:11Z caller=logging.go:85 method=Health result=2 took=48.679µs +ts=2025-05-22T08:05:14Z caller=logging.go:85 method=Health result=2 took=32.15µs +ts=2025-05-22T08:05:14Z caller=logging.go:85 method=Health result=2 took=10.72µs +ts=2025-05-22T08:05:17Z caller=logging.go:85 method=Health result=2 took=44.819µs +ts=2025-05-22T08:05:17Z caller=logging.go:85 method=Health result=2 took=47.458µs +ts=2025-05-22T08:05:20Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:05:20Z caller=logging.go:85 method=Health result=2 took=49.959µs +ts=2025-05-22T08:05:23Z caller=logging.go:85 method=Health result=2 took=43.789µs +ts=2025-05-22T08:05:23Z caller=logging.go:85 method=Health result=2 took=47.349µs +ts=2025-05-22T08:05:26Z caller=logging.go:85 method=Health result=2 took=37.409µs +ts=2025-05-22T08:05:26Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T08:05:29Z caller=logging.go:85 method=Health result=2 took=31.509µs +ts=2025-05-22T08:05:29Z caller=logging.go:85 method=Health result=2 took=34.039µs +ts=2025-05-22T08:05:32Z caller=logging.go:85 method=Health result=2 took=39.409µs +ts=2025-05-22T08:05:32Z caller=logging.go:85 method=Health result=2 took=39.659µs +ts=2025-05-22T08:05:35Z caller=logging.go:85 method=Health result=2 took=42.659µs +ts=2025-05-22T08:05:35Z caller=logging.go:85 method=Health result=2 took=43.559µs +ts=2025-05-22T08:05:38Z caller=logging.go:85 method=Health result=2 took=48.829µs +ts=2025-05-22T08:05:38Z caller=logging.go:85 method=Health result=2 took=49.739µs +ts=2025-05-22T08:05:41Z caller=logging.go:85 method=Health result=2 took=28.55µs +ts=2025-05-22T08:05:41Z caller=logging.go:85 method=Health result=2 took=28.6µs +ts=2025-05-22T08:05:44Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T08:05:44Z caller=logging.go:85 method=Health result=2 took=41.549µs +ts=2025-05-22T08:05:47Z caller=logging.go:85 method=Health result=2 took=44.969µs +ts=2025-05-22T08:05:47Z caller=logging.go:85 method=Health result=2 took=49.559µs +ts=2025-05-22T08:05:50Z caller=logging.go:85 method=Health result=2 took=44.429µs +ts=2025-05-22T08:05:50Z caller=logging.go:85 method=Health result=2 took=51.709µs +ts=2025-05-22T08:05:53Z caller=logging.go:85 method=Health result=2 took=44.329µs +ts=2025-05-22T08:05:53Z caller=logging.go:85 method=Health result=2 took=37.959µs +ts=2025-05-22T08:05:56Z caller=logging.go:85 method=Health result=2 took=31.969µs +ts=2025-05-22T08:05:56Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T08:05:59Z caller=logging.go:85 method=Health result=2 took=36.859µs +ts=2025-05-22T08:05:59Z caller=logging.go:85 method=Health result=2 took=37.079µs +ts=2025-05-22T08:06:02Z caller=logging.go:85 method=Health result=2 took=39.049µs +ts=2025-05-22T08:06:02Z caller=logging.go:85 method=Health result=2 took=39.589µs +ts=2025-05-22T08:06:05Z caller=logging.go:85 method=Health result=2 took=55.448µs +ts=2025-05-22T08:06:05Z caller=logging.go:85 method=Health result=2 took=50.729µs +ts=2025-05-22T08:06:08Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T08:06:08Z caller=logging.go:85 method=Health result=2 took=48.979µs +ts=2025-05-22T08:06:11Z caller=logging.go:85 method=Health result=2 took=40.589µs +ts=2025-05-22T08:06:11Z caller=logging.go:85 method=Health result=2 took=52.728µs +ts=2025-05-22T08:06:14Z caller=logging.go:85 method=Health result=2 took=47.348µs +ts=2025-05-22T08:06:14Z caller=logging.go:85 method=Health result=2 took=48.629µs +ts=2025-05-22T08:06:17Z caller=logging.go:85 method=Health result=2 took=97.938µs +ts=2025-05-22T08:06:17Z caller=logging.go:85 method=Health result=2 took=61.239µs +ts=2025-05-22T08:06:20Z caller=logging.go:85 method=Health result=2 took=35.359µs +ts=2025-05-22T08:06:20Z caller=logging.go:85 method=Health result=2 took=35.389µs +ts=2025-05-22T08:06:23Z caller=logging.go:85 method=Health result=2 took=30.05µs +ts=2025-05-22T08:06:23Z caller=logging.go:85 method=Health result=2 took=15.029µs +ts=2025-05-22T08:06:26Z caller=logging.go:85 method=Health result=2 took=31.85µs +ts=2025-05-22T08:06:26Z caller=logging.go:85 method=Health result=2 took=46.019µs +ts=2025-05-22T08:06:29Z caller=logging.go:85 method=Health result=2 took=31.159µs +ts=2025-05-22T08:06:29Z caller=logging.go:85 method=Health result=2 took=31.129µs +ts=2025-05-22T08:06:32Z caller=logging.go:85 method=Health result=2 took=46.269µs +ts=2025-05-22T08:06:32Z caller=logging.go:85 method=Health result=2 took=47.709µs +ts=2025-05-22T08:06:35Z caller=logging.go:85 method=Health result=2 took=56.229µs +ts=2025-05-22T08:06:35Z caller=logging.go:85 method=Health result=2 took=56.199µs +ts=2025-05-22T08:06:38Z caller=logging.go:85 method=Health result=2 took=45.329µs +ts=2025-05-22T08:06:38Z caller=logging.go:85 method=Health result=2 took=50.749µs +ts=2025-05-22T08:06:41Z caller=logging.go:85 method=Health result=2 took=30.69µs +ts=2025-05-22T08:06:41Z caller=logging.go:85 method=Health result=2 took=47.039µs +ts=2025-05-22T08:06:44Z caller=logging.go:85 method=Health result=2 took=39.42µs +ts=2025-05-22T08:06:44Z caller=logging.go:85 method=Health result=2 took=29.439µs +ts=2025-05-22T08:06:47Z caller=logging.go:85 method=Health result=2 took=39.389µs +ts=2025-05-22T08:06:47Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T08:06:50Z caller=logging.go:85 method=Health result=2 took=28.019µs +ts=2025-05-22T08:06:50Z caller=logging.go:85 method=Health result=2 took=28.079µs +ts=2025-05-22T08:06:53Z caller=logging.go:85 method=Health result=2 took=42.469µs +ts=2025-05-22T08:06:53Z caller=logging.go:85 method=Health result=2 took=17.91µs +ts=2025-05-22T08:06:56Z caller=logging.go:85 method=Health result=2 took=64.478µs +ts=2025-05-22T08:06:56Z caller=logging.go:85 method=Health result=2 took=63.758µs +ts=2025-05-22T08:06:59Z caller=logging.go:85 method=Health result=2 took=28.72µs +ts=2025-05-22T08:06:59Z caller=logging.go:85 method=Health result=2 took=28.72µs +ts=2025-05-22T08:07:02Z caller=logging.go:85 method=Health result=2 took=40.939µs +ts=2025-05-22T08:07:02Z caller=logging.go:85 method=Health result=2 took=45.849µs +ts=2025-05-22T08:07:05Z caller=logging.go:85 method=Health result=2 took=38.679µs +ts=2025-05-22T08:07:05Z caller=logging.go:85 method=Health result=2 took=47.269µs +ts=2025-05-22T08:07:08Z caller=logging.go:85 method=Health result=2 took=35.539µs +ts=2025-05-22T08:07:08Z caller=logging.go:85 method=Health result=2 took=45.049µs +ts=2025-05-22T08:07:11Z caller=logging.go:85 method=Health result=2 took=31.739µs +ts=2025-05-22T08:07:11Z caller=logging.go:85 method=Health result=2 took=47.079µs +ts=2025-05-22T08:07:14Z caller=logging.go:85 method=Health result=2 took=42.849µs +ts=2025-05-22T08:07:14Z caller=logging.go:85 method=Health result=2 took=42.289µs +ts=2025-05-22T08:07:17Z caller=logging.go:85 method=Health result=2 took=31.71µs +ts=2025-05-22T08:07:17Z caller=logging.go:85 method=Health result=2 took=47.998µs +ts=2025-05-22T08:07:20Z caller=logging.go:85 method=Health result=2 took=28.479µs +ts=2025-05-22T08:07:20Z caller=logging.go:85 method=Health result=2 took=14.78µs +ts=2025-05-22T08:07:23Z caller=logging.go:85 method=Health result=2 took=43.349µs +ts=2025-05-22T08:07:23Z caller=logging.go:85 method=Health result=2 took=48.029µs +ts=2025-05-22T08:07:26Z caller=logging.go:85 method=Health result=2 took=42.539µs +ts=2025-05-22T08:07:26Z caller=logging.go:85 method=Health result=2 took=48.759µs +ts=2025-05-22T08:07:29Z caller=logging.go:85 method=Health result=2 took=44.479µs +ts=2025-05-22T08:07:29Z caller=logging.go:85 method=Health result=2 took=54.969µs +ts=2025-05-22T08:07:32Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T08:07:32Z caller=logging.go:85 method=Health result=2 took=57.638µs +ts=2025-05-22T08:07:35Z caller=logging.go:85 method=Health result=2 took=44.599µs +ts=2025-05-22T08:07:35Z caller=logging.go:85 method=Health result=2 took=50.908µs +ts=2025-05-22T08:07:38Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T08:07:38Z caller=logging.go:85 method=Health result=2 took=47.479µs +ts=2025-05-22T08:07:41Z caller=logging.go:85 method=Health result=2 took=30.339µs +ts=2025-05-22T08:07:41Z caller=logging.go:85 method=Health result=2 took=33.699µs +ts=2025-05-22T08:07:44Z caller=logging.go:85 method=Health result=2 took=44.809µs +ts=2025-05-22T08:07:44Z caller=logging.go:85 method=Health result=2 took=44.639µs +ts=2025-05-22T08:07:47Z caller=logging.go:85 method=Health result=2 took=32.709µs +ts=2025-05-22T08:07:47Z caller=logging.go:85 method=Health result=2 took=49.049µs +ts=2025-05-22T08:07:50Z caller=logging.go:85 method=Health result=2 took=49.449µs +ts=2025-05-22T08:07:50Z caller=logging.go:85 method=Health result=2 took=53.099µs +ts=2025-05-22T08:07:53Z caller=logging.go:85 method=Health result=2 took=41.999µs +ts=2025-05-22T08:07:53Z caller=logging.go:85 method=Health result=2 took=49.599µs +ts=2025-05-22T08:07:56Z caller=logging.go:85 method=Health result=2 took=32.019µs +ts=2025-05-22T08:07:56Z caller=logging.go:85 method=Health result=2 took=53.609µs +ts=2025-05-22T08:07:59Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T08:07:59Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T08:08:02Z caller=logging.go:85 method=Health result=2 took=40.579µs +ts=2025-05-22T08:08:02Z caller=logging.go:85 method=Health result=2 took=27.449µs +ts=2025-05-22T08:08:05Z caller=logging.go:85 method=Health result=2 took=45.449µs +ts=2025-05-22T08:08:05Z caller=logging.go:85 method=Health result=2 took=48.329µs +ts=2025-05-22T08:08:08Z caller=logging.go:85 method=Health result=2 took=43.729µs +ts=2025-05-22T08:08:08Z caller=logging.go:85 method=Health result=2 took=50.828µs +ts=2025-05-22T08:08:11Z caller=logging.go:85 method=Health result=2 took=45.399µs +ts=2025-05-22T08:08:11Z caller=logging.go:85 method=Health result=2 took=51.759µs +ts=2025-05-22T08:08:14Z caller=logging.go:85 method=Health result=2 took=39.649µs +ts=2025-05-22T08:08:14Z caller=logging.go:85 method=Health result=2 took=33.28µs +ts=2025-05-22T08:08:17Z caller=logging.go:85 method=Health result=2 took=966.087µs +ts=2025-05-22T08:08:17Z caller=logging.go:85 method=Health result=2 took=47.299µs +ts=2025-05-22T08:08:20Z caller=logging.go:85 method=Health result=2 took=32.509µs +ts=2025-05-22T08:08:20Z caller=logging.go:85 method=Health result=2 took=33.179µs +ts=2025-05-22T08:08:23Z caller=logging.go:85 method=Health result=2 took=40.699µs +ts=2025-05-22T08:08:23Z caller=logging.go:85 method=Health result=2 took=47.119µs +ts=2025-05-22T08:08:26Z caller=logging.go:85 method=Health result=2 took=41.109µs +ts=2025-05-22T08:08:26Z caller=logging.go:85 method=Health result=2 took=40.619µs +ts=2025-05-22T08:08:29Z caller=logging.go:85 method=Health result=2 took=37.999µs +ts=2025-05-22T08:08:29Z caller=logging.go:85 method=Health result=2 took=37.959µs +ts=2025-05-22T08:08:32Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T08:08:32Z caller=logging.go:85 method=Health result=2 took=47.838µs +ts=2025-05-22T08:08:35Z caller=logging.go:85 method=Health result=2 took=43.479µs +ts=2025-05-22T08:08:35Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T08:08:38Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T08:08:38Z caller=logging.go:85 method=Health result=2 took=38.959µs +ts=2025-05-22T08:08:41Z caller=logging.go:85 method=Health result=2 took=37.439µs +ts=2025-05-22T08:08:41Z caller=logging.go:85 method=Health result=2 took=41.209µs +ts=2025-05-22T08:08:44Z caller=logging.go:85 method=Health result=2 took=47.849µs +ts=2025-05-22T08:08:44Z caller=logging.go:85 method=Health result=2 took=47.899µs +ts=2025-05-22T08:08:47Z caller=logging.go:85 method=Health result=2 took=40.019µs +ts=2025-05-22T08:08:47Z caller=logging.go:85 method=Health result=2 took=40.219µs +ts=2025-05-22T08:08:50Z caller=logging.go:85 method=Health result=2 took=40.889µs +ts=2025-05-22T08:08:50Z caller=logging.go:85 method=Health result=2 took=38.359µs +ts=2025-05-22T08:08:53Z caller=logging.go:85 method=Health result=2 took=44.388µs +ts=2025-05-22T08:08:53Z caller=logging.go:85 method=Health result=2 took=50.579µs +ts=2025-05-22T08:08:56Z caller=logging.go:85 method=Health result=2 took=46.089µs +ts=2025-05-22T08:08:56Z caller=logging.go:85 method=Health result=2 took=37.859µs +ts=2025-05-22T08:08:59Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T08:08:59Z caller=logging.go:85 method=Health result=2 took=47.869µs +ts=2025-05-22T08:09:02Z caller=logging.go:85 method=Health result=2 took=39.929µs +ts=2025-05-22T08:09:02Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T08:09:05Z caller=logging.go:85 method=Health result=2 took=43.169µs +ts=2025-05-22T08:09:05Z caller=logging.go:85 method=Health result=2 took=43.649µs +ts=2025-05-22T08:09:08Z caller=logging.go:85 method=Health result=2 took=40.849µs +ts=2025-05-22T08:09:08Z caller=logging.go:85 method=Health result=2 took=28.95µs +ts=2025-05-22T08:09:11Z caller=logging.go:85 method=Health result=2 took=62.559µs +ts=2025-05-22T08:09:11Z caller=logging.go:85 method=Health result=2 took=50.179µs +ts=2025-05-22T08:09:14Z caller=logging.go:85 method=Health result=2 took=42.209µs +ts=2025-05-22T08:09:14Z caller=logging.go:85 method=Health result=2 took=41.489µs +ts=2025-05-22T08:09:17Z caller=logging.go:85 method=Health result=2 took=41.519µs +ts=2025-05-22T08:09:17Z caller=logging.go:85 method=Health result=2 took=48.959µs +ts=2025-05-22T08:09:20Z caller=logging.go:85 method=Health result=2 took=44.129µs +ts=2025-05-22T08:09:20Z caller=logging.go:85 method=Health result=2 took=44.799µs +ts=2025-05-22T08:09:23Z caller=logging.go:85 method=Health result=2 took=33.479µs +ts=2025-05-22T08:09:23Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T08:09:26Z caller=logging.go:85 method=Health result=2 took=42.619µs +ts=2025-05-22T08:09:26Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T08:09:29Z caller=logging.go:85 method=Health result=2 took=41.739µs +ts=2025-05-22T08:09:29Z caller=logging.go:85 method=Health result=2 took=63.349µs +ts=2025-05-22T08:09:32Z caller=logging.go:85 method=Health result=2 took=42.918µs +ts=2025-05-22T08:09:32Z caller=logging.go:85 method=Health result=2 took=41.389µs +ts=2025-05-22T08:09:35Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T08:09:35Z caller=logging.go:85 method=Health result=2 took=41.249µs +ts=2025-05-22T08:09:38Z caller=logging.go:85 method=Health result=2 took=45.699µs +ts=2025-05-22T08:09:38Z caller=logging.go:85 method=Health result=2 took=48.879µs +ts=2025-05-22T08:09:41Z caller=logging.go:85 method=Health result=2 took=43.019µs +ts=2025-05-22T08:09:41Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T08:09:44Z caller=logging.go:85 method=Health result=2 took=56.899µs +ts=2025-05-22T08:09:44Z caller=logging.go:85 method=Health result=2 took=56.869µs +ts=2025-05-22T08:09:47Z caller=logging.go:85 method=Health result=2 took=45.639µs +ts=2025-05-22T08:09:47Z caller=logging.go:85 method=Health result=2 took=46.749µs +ts=2025-05-22T08:09:50Z caller=logging.go:85 method=Health result=2 took=37.389µs +ts=2025-05-22T08:09:50Z caller=logging.go:85 method=Health result=2 took=62.938µs +ts=2025-05-22T08:09:53Z caller=logging.go:85 method=Health result=2 took=46.099µs +ts=2025-05-22T08:09:53Z caller=logging.go:85 method=Health result=2 took=51.228µs +ts=2025-05-22T08:09:56Z caller=logging.go:85 method=Health result=2 took=37.099µs +ts=2025-05-22T08:09:56Z caller=logging.go:85 method=Health result=2 took=41.949µs +ts=2025-05-22T08:09:59Z caller=logging.go:85 method=Health result=2 took=41.049µs +ts=2025-05-22T08:09:59Z caller=logging.go:85 method=Health result=2 took=41.989µs +ts=2025-05-22T08:10:02Z caller=logging.go:85 method=Health result=2 took=44.069µs +ts=2025-05-22T08:10:02Z caller=logging.go:85 method=Health result=2 took=48.039µs +ts=2025-05-22T08:10:05Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T08:10:05Z caller=logging.go:85 method=Health result=2 took=51.048µs +ts=2025-05-22T08:10:08Z caller=logging.go:85 method=Health result=2 took=36.58µs +ts=2025-05-22T08:10:08Z caller=logging.go:85 method=Health result=2 took=36.85µs +ts=2025-05-22T08:10:11Z caller=logging.go:85 method=Health result=2 took=40.359µs +ts=2025-05-22T08:10:11Z caller=logging.go:85 method=Health result=2 took=50.579µs +ts=2025-05-22T08:10:14Z caller=logging.go:85 method=Health result=2 took=35.359µs +ts=2025-05-22T08:10:14Z caller=logging.go:85 method=Health result=2 took=30.009µs +ts=2025-05-22T08:10:17Z caller=logging.go:85 method=Health result=2 took=64.418µs +ts=2025-05-22T08:10:17Z caller=logging.go:85 method=Health result=2 took=859.54µs +ts=2025-05-22T08:10:20Z caller=logging.go:85 method=Health result=2 took=40.849µs +ts=2025-05-22T08:10:20Z caller=logging.go:85 method=Health result=2 took=44.268µs +ts=2025-05-22T08:10:23Z caller=logging.go:85 method=Health result=2 took=46.828µs +ts=2025-05-22T08:10:23Z caller=logging.go:85 method=Health result=2 took=51.209µs +ts=2025-05-22T08:10:26Z caller=logging.go:85 method=Health result=2 took=42.109µs +ts=2025-05-22T08:10:26Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T08:10:29Z caller=logging.go:85 method=Health result=2 took=44.359µs +ts=2025-05-22T08:10:29Z caller=logging.go:85 method=Health result=2 took=50.509µs +ts=2025-05-22T08:10:32Z caller=logging.go:85 method=Health result=2 took=39.889µs +ts=2025-05-22T08:10:32Z caller=logging.go:85 method=Health result=2 took=24.07µs +ts=2025-05-22T08:10:35Z caller=logging.go:85 method=Health result=2 took=44.829µs +ts=2025-05-22T08:10:35Z caller=logging.go:85 method=Health result=2 took=18.909µs +ts=2025-05-22T08:10:38Z caller=logging.go:85 method=Health result=2 took=29.469µs +ts=2025-05-22T08:10:38Z caller=logging.go:85 method=Health result=2 took=15.18µs +ts=2025-05-22T08:10:41Z caller=logging.go:85 method=Health result=2 took=47.519µs +ts=2025-05-22T08:10:41Z caller=logging.go:85 method=Health result=2 took=48.748µs +ts=2025-05-22T08:10:44Z caller=logging.go:85 method=Health result=2 took=37.09µs +ts=2025-05-22T08:10:44Z caller=logging.go:85 method=Health result=2 took=36.65µs +ts=2025-05-22T08:10:47Z caller=logging.go:85 method=Health result=2 took=43.479µs +ts=2025-05-22T08:10:47Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T08:10:50Z caller=logging.go:85 method=Health result=2 took=44.269µs +ts=2025-05-22T08:10:50Z caller=logging.go:85 method=Health result=2 took=39.79µs +ts=2025-05-22T08:10:53Z caller=logging.go:85 method=Health result=2 took=45.319µs +ts=2025-05-22T08:10:53Z caller=logging.go:85 method=Health result=2 took=42.329µs +ts=2025-05-22T08:10:56Z caller=logging.go:85 method=Health result=2 took=43.019µs +ts=2025-05-22T08:10:56Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T08:10:59Z caller=logging.go:85 method=Health result=2 took=41.229µs +ts=2025-05-22T08:10:59Z caller=logging.go:85 method=Health result=2 took=38.289µs +ts=2025-05-22T08:11:02Z caller=logging.go:85 method=Health result=2 took=45.469µs +ts=2025-05-22T08:11:02Z caller=logging.go:85 method=Health result=2 took=47.688µs +ts=2025-05-22T08:11:05Z caller=logging.go:85 method=Health result=2 took=35.209µs +ts=2025-05-22T08:11:05Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T08:11:08Z caller=logging.go:85 method=Health result=2 took=43.999µs +ts=2025-05-22T08:11:08Z caller=logging.go:85 method=Health result=2 took=32.89µs +ts=2025-05-22T08:11:11Z caller=logging.go:85 method=Health result=2 took=53.969µs +ts=2025-05-22T08:11:11Z caller=logging.go:85 method=Health result=2 took=57.599µs +ts=2025-05-22T08:11:14Z caller=logging.go:85 method=Health result=2 took=42.959µs +ts=2025-05-22T08:11:14Z caller=logging.go:85 method=Health result=2 took=41.919µs +ts=2025-05-22T08:11:17Z caller=logging.go:85 method=Health result=2 took=30.809µs +ts=2025-05-22T08:11:17Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T08:11:20Z caller=logging.go:85 method=Health result=2 took=46.349µs +ts=2025-05-22T08:11:20Z caller=logging.go:85 method=Health result=2 took=48.489µs +ts=2025-05-22T08:11:23Z caller=logging.go:85 method=Health result=2 took=53.028µs +ts=2025-05-22T08:11:23Z caller=logging.go:85 method=Health result=2 took=51.978µs +ts=2025-05-22T08:11:26Z caller=logging.go:85 method=Health result=2 took=42.669µs +ts=2025-05-22T08:11:26Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T08:11:29Z caller=logging.go:85 method=Health result=2 took=48.009µs +ts=2025-05-22T08:11:29Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T08:11:32Z caller=logging.go:85 method=Health result=2 took=38.719µs +ts=2025-05-22T08:11:32Z caller=logging.go:85 method=Health result=2 took=27.55µs +ts=2025-05-22T08:11:35Z caller=logging.go:85 method=Health result=2 took=39.869µs +ts=2025-05-22T08:11:35Z caller=logging.go:85 method=Health result=2 took=31.699µs +ts=2025-05-22T08:11:38Z caller=logging.go:85 method=Health result=2 took=43.559µs +ts=2025-05-22T08:11:38Z caller=logging.go:85 method=Health result=2 took=48.269µs +ts=2025-05-22T08:11:41Z caller=logging.go:85 method=Health result=2 took=42.319µs +ts=2025-05-22T08:11:41Z caller=logging.go:85 method=Health result=2 took=57.398µs +ts=2025-05-22T08:11:44Z caller=logging.go:85 method=Health result=2 took=29.059µs +ts=2025-05-22T08:11:44Z caller=logging.go:85 method=Health result=2 took=29.019µs +ts=2025-05-22T08:11:47Z caller=logging.go:85 method=Health result=2 took=44.569µs +ts=2025-05-22T08:11:47Z caller=logging.go:85 method=Health result=2 took=52.728µs +ts=2025-05-22T08:11:50Z caller=logging.go:85 method=Health result=2 took=34.589µs +ts=2025-05-22T08:11:50Z caller=logging.go:85 method=Health result=2 took=34.769µs +ts=2025-05-22T08:11:53Z caller=logging.go:85 method=Health result=2 took=41.389µs +ts=2025-05-22T08:11:53Z caller=logging.go:85 method=Health result=2 took=41.819µs +ts=2025-05-22T08:11:56Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T08:11:56Z caller=logging.go:85 method=Health result=2 took=41.669µs +ts=2025-05-22T08:11:59Z caller=logging.go:85 method=Health result=2 took=44.759µs +ts=2025-05-22T08:11:59Z caller=logging.go:85 method=Health result=2 took=51.848µs +ts=2025-05-22T08:12:02Z caller=logging.go:85 method=Health result=2 took=45.429µs +ts=2025-05-22T08:12:02Z caller=logging.go:85 method=Health result=2 took=47.329µs +ts=2025-05-22T08:12:05Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T08:12:05Z caller=logging.go:85 method=Health result=2 took=42.849µs +ts=2025-05-22T08:12:08Z caller=logging.go:85 method=Health result=2 took=43.339µs +ts=2025-05-22T08:12:08Z caller=logging.go:85 method=Health result=2 took=48.149µs +ts=2025-05-22T08:12:11Z caller=logging.go:85 method=Health result=2 took=43.519µs +ts=2025-05-22T08:12:11Z caller=logging.go:85 method=Health result=2 took=50.969µs +ts=2025-05-22T08:12:14Z caller=logging.go:85 method=Health result=2 took=42.509µs +ts=2025-05-22T08:12:14Z caller=logging.go:85 method=Health result=2 took=42.169µs +ts=2025-05-22T08:12:17Z caller=logging.go:85 method=Health result=2 took=50.788µs +ts=2025-05-22T08:12:17Z caller=logging.go:85 method=Health result=2 took=62.469µs +ts=2025-05-22T08:12:20Z caller=logging.go:85 method=Health result=2 took=42.779µs +ts=2025-05-22T08:12:20Z caller=logging.go:85 method=Health result=2 took=44.159µs +ts=2025-05-22T08:12:23Z caller=logging.go:85 method=Health result=2 took=44.019µs +ts=2025-05-22T08:12:23Z caller=logging.go:85 method=Health result=2 took=49.139µs +ts=2025-05-22T08:12:26Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T08:12:26Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T08:12:29Z caller=logging.go:85 method=Health result=2 took=30.889µs +ts=2025-05-22T08:12:29Z caller=logging.go:85 method=Health result=2 took=46.439µs +ts=2025-05-22T08:12:32Z caller=logging.go:85 method=Health result=2 took=44.839µs +ts=2025-05-22T08:12:32Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T08:12:35Z caller=logging.go:85 method=Health result=2 took=43.999µs +ts=2025-05-22T08:12:35Z caller=logging.go:85 method=Health result=2 took=43.389µs +ts=2025-05-22T08:12:38Z caller=logging.go:85 method=Health result=2 took=36.629µs +ts=2025-05-22T08:12:38Z caller=logging.go:85 method=Health result=2 took=16.179µs +ts=2025-05-22T08:12:41Z caller=logging.go:85 method=Health result=2 took=30.389µs +ts=2025-05-22T08:12:41Z caller=logging.go:85 method=Health result=2 took=45.389µs +ts=2025-05-22T08:12:44Z caller=logging.go:85 method=Health result=2 took=42.779µs +ts=2025-05-22T08:12:44Z caller=logging.go:85 method=Health result=2 took=50.288µs +ts=2025-05-22T08:12:47Z caller=logging.go:85 method=Health result=2 took=45.909µs +ts=2025-05-22T08:12:47Z caller=logging.go:85 method=Health result=2 took=47.159µs +ts=2025-05-22T08:12:50Z caller=logging.go:85 method=Health result=2 took=32.349µs +ts=2025-05-22T08:12:50Z caller=logging.go:85 method=Health result=2 took=46.389µs +ts=2025-05-22T08:12:53Z caller=logging.go:85 method=Health result=2 took=40.469µs +ts=2025-05-22T08:12:53Z caller=logging.go:85 method=Health result=2 took=47.149µs +ts=2025-05-22T08:12:56Z caller=logging.go:85 method=Health result=2 took=39.829µs +ts=2025-05-22T08:12:56Z caller=logging.go:85 method=Health result=2 took=40.429µs +ts=2025-05-22T08:12:59Z caller=logging.go:85 method=Health result=2 took=45.209µs +ts=2025-05-22T08:12:59Z caller=logging.go:85 method=Health result=2 took=49.559µs +ts=2025-05-22T08:13:02Z caller=logging.go:85 method=Health result=2 took=54.369µs +ts=2025-05-22T08:13:02Z caller=logging.go:85 method=Health result=2 took=18.44µs +ts=2025-05-22T08:13:05Z caller=logging.go:85 method=Health result=2 took=37.929µs +ts=2025-05-22T08:13:05Z caller=logging.go:85 method=Health result=2 took=48.468µs +ts=2025-05-22T08:13:08Z caller=logging.go:85 method=Health result=2 took=45.229µs +ts=2025-05-22T08:13:08Z caller=logging.go:85 method=Health result=2 took=46.588µs +ts=2025-05-22T08:13:11Z caller=logging.go:85 method=Health result=2 took=54.369µs +ts=2025-05-22T08:13:11Z caller=logging.go:85 method=Health result=2 took=48.999µs +ts=2025-05-22T08:13:14Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T08:13:14Z caller=logging.go:85 method=Health result=2 took=49.789µs +ts=2025-05-22T08:13:17Z caller=logging.go:85 method=Health result=2 took=43.359µs +ts=2025-05-22T08:13:17Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T08:13:20Z caller=logging.go:85 method=Health result=2 took=31.209µs +ts=2025-05-22T08:13:20Z caller=logging.go:85 method=Health result=2 took=54.398µs +ts=2025-05-22T08:13:23Z caller=logging.go:85 method=Health result=2 took=36.749µs +ts=2025-05-22T08:13:23Z caller=logging.go:85 method=Health result=2 took=35.839µs +ts=2025-05-22T08:13:26Z caller=logging.go:85 method=Health result=2 took=57.618µs +ts=2025-05-22T08:13:26Z caller=logging.go:85 method=Health result=2 took=57.688µs +ts=2025-05-22T08:13:29Z caller=logging.go:85 method=Health result=2 took=37.089µs +ts=2025-05-22T08:13:29Z caller=logging.go:85 method=Health result=2 took=54.809µs +ts=2025-05-22T08:13:32Z caller=logging.go:85 method=Health result=2 took=40.519µs +ts=2025-05-22T08:13:32Z caller=logging.go:85 method=Health result=2 took=46.619µs +ts=2025-05-22T08:13:35Z caller=logging.go:85 method=Health result=2 took=44.569µs +ts=2025-05-22T08:13:35Z caller=logging.go:85 method=Health result=2 took=32.929µs +ts=2025-05-22T08:13:38Z caller=logging.go:85 method=Health result=2 took=60.579µs +ts=2025-05-22T08:13:38Z caller=logging.go:85 method=Health result=2 took=50.309µs +ts=2025-05-22T08:13:41Z caller=logging.go:85 method=Health result=2 took=38.349µs +ts=2025-05-22T08:13:41Z caller=logging.go:85 method=Health result=2 took=49.539µs +ts=2025-05-22T08:13:44Z caller=logging.go:85 method=Health result=2 took=45.739µs +ts=2025-05-22T08:13:44Z caller=logging.go:85 method=Health result=2 took=45.279µs +ts=2025-05-22T08:13:47Z caller=logging.go:85 method=Health result=2 took=39.759µs +ts=2025-05-22T08:13:47Z caller=logging.go:85 method=Health result=2 took=51.138µs +ts=2025-05-22T08:13:50Z caller=logging.go:85 method=Health result=2 took=49.439µs +ts=2025-05-22T08:13:50Z caller=logging.go:85 method=Health result=2 took=47.798µs +ts=2025-05-22T08:13:53Z caller=logging.go:85 method=Health result=2 took=42.639µs +ts=2025-05-22T08:13:53Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T08:13:56Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T08:13:56Z caller=logging.go:85 method=Health result=2 took=49.009µs +ts=2025-05-22T08:13:59Z caller=logging.go:85 method=Health result=2 took=38.459µs +ts=2025-05-22T08:13:59Z caller=logging.go:85 method=Health result=2 took=39.029µs +ts=2025-05-22T08:14:02Z caller=logging.go:85 method=Health result=2 took=36.749µs +ts=2025-05-22T08:14:02Z caller=logging.go:85 method=Health result=2 took=34.269µs +ts=2025-05-22T08:14:05Z caller=logging.go:85 method=Health result=2 took=44.719µs +ts=2025-05-22T08:14:05Z caller=logging.go:85 method=Health result=2 took=43.599µs +ts=2025-05-22T08:14:08Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T08:14:08Z caller=logging.go:85 method=Health result=2 took=21.069µs +ts=2025-05-22T08:14:11Z caller=logging.go:85 method=Health result=2 took=41.329µs +ts=2025-05-22T08:14:11Z caller=logging.go:85 method=Health result=2 took=49.578µs +ts=2025-05-22T08:14:14Z caller=logging.go:85 method=Health result=2 took=53.489µs +ts=2025-05-22T08:14:14Z caller=logging.go:85 method=Health result=2 took=53.449µs +ts=2025-05-22T08:14:17Z caller=logging.go:85 method=Health result=2 took=117.527µs +ts=2025-05-22T08:14:17Z caller=logging.go:85 method=Health result=2 took=34.78µs +ts=2025-05-22T08:14:20Z caller=logging.go:85 method=Health result=2 took=45.109µs +ts=2025-05-22T08:14:20Z caller=logging.go:85 method=Health result=2 took=48.219µs +ts=2025-05-22T08:14:23Z caller=logging.go:85 method=Health result=2 took=28.4µs +ts=2025-05-22T08:14:23Z caller=logging.go:85 method=Health result=2 took=48.149µs +ts=2025-05-22T08:14:26Z caller=logging.go:85 method=Health result=2 took=37.739µs +ts=2025-05-22T08:14:26Z caller=logging.go:85 method=Health result=2 took=38.549µs +ts=2025-05-22T08:14:29Z caller=logging.go:85 method=Health result=2 took=46.159µs +ts=2025-05-22T08:14:29Z caller=logging.go:85 method=Health result=2 took=45.289µs +ts=2025-05-22T08:14:32Z caller=logging.go:85 method=Health result=2 took=47.849µs +ts=2025-05-22T08:14:32Z caller=logging.go:85 method=Health result=2 took=56.888µs +ts=2025-05-22T08:14:35Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T08:14:35Z caller=logging.go:85 method=Health result=2 took=42.969µs +ts=2025-05-22T08:14:38Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T08:14:38Z caller=logging.go:85 method=Health result=2 took=50.309µs +ts=2025-05-22T08:14:41Z caller=logging.go:85 method=Health result=2 took=42.759µs +ts=2025-05-22T08:14:41Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T08:14:44Z caller=logging.go:85 method=Health result=2 took=64.218µs +ts=2025-05-22T08:14:44Z caller=logging.go:85 method=Health result=2 took=48.979µs +ts=2025-05-22T08:14:47Z caller=logging.go:85 method=Health result=2 took=36.969µs +ts=2025-05-22T08:14:47Z caller=logging.go:85 method=Health result=2 took=47.829µs +ts=2025-05-22T08:14:50Z caller=logging.go:85 method=Health result=2 took=37.339µs +ts=2025-05-22T08:14:50Z caller=logging.go:85 method=Health result=2 took=48.119µs +ts=2025-05-22T08:14:53Z caller=logging.go:85 method=Health result=2 took=38.919µs +ts=2025-05-22T08:14:53Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T08:14:56Z caller=logging.go:85 method=Health result=2 took=28.62µs +ts=2025-05-22T08:14:56Z caller=logging.go:85 method=Health result=2 took=28.62µs +ts=2025-05-22T08:14:59Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T08:14:59Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T08:15:02Z caller=logging.go:85 method=Health result=2 took=29.329µs +ts=2025-05-22T08:15:02Z caller=logging.go:85 method=Health result=2 took=47.739µs +ts=2025-05-22T08:15:05Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T08:15:05Z caller=logging.go:85 method=Health result=2 took=42.149µs +ts=2025-05-22T08:15:08Z caller=logging.go:85 method=Health result=2 took=28.729µs +ts=2025-05-22T08:15:08Z caller=logging.go:85 method=Health result=2 took=28.959µs +ts=2025-05-22T08:15:11Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T08:15:11Z caller=logging.go:85 method=Health result=2 took=39.479µs +ts=2025-05-22T08:15:14Z caller=logging.go:85 method=Health result=2 took=45.689µs +ts=2025-05-22T08:15:14Z caller=logging.go:85 method=Health result=2 took=46.778µs +ts=2025-05-22T08:15:17Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T08:15:17Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T08:15:20Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T08:15:20Z caller=logging.go:85 method=Health result=2 took=30.829µs +ts=2025-05-22T08:15:23Z caller=logging.go:85 method=Health result=2 took=36.769µs +ts=2025-05-22T08:15:23Z caller=logging.go:85 method=Health result=2 took=47.729µs +ts=2025-05-22T08:15:26Z caller=logging.go:85 method=Health result=2 took=39.399µs +ts=2025-05-22T08:15:26Z caller=logging.go:85 method=Health result=2 took=54.969µs +ts=2025-05-22T08:15:29Z caller=logging.go:85 method=Health result=2 took=33.359µs +ts=2025-05-22T08:15:29Z caller=logging.go:85 method=Health result=2 took=40.279µs +ts=2025-05-22T08:15:32Z caller=logging.go:85 method=Health result=2 took=38.379µs +ts=2025-05-22T08:15:32Z caller=logging.go:85 method=Health result=2 took=47.089µs +ts=2025-05-22T08:15:35Z caller=logging.go:85 method=Health result=2 took=41.149µs +ts=2025-05-22T08:15:35Z caller=logging.go:85 method=Health result=2 took=43.359µs +ts=2025-05-22T08:15:38Z caller=logging.go:85 method=Health result=2 took=35.86µs +ts=2025-05-22T08:15:38Z caller=logging.go:85 method=Health result=2 took=29.79µs +ts=2025-05-22T08:15:41Z caller=logging.go:85 method=Health result=2 took=40.239µs +ts=2025-05-22T08:15:41Z caller=logging.go:85 method=Health result=2 took=40.479µs +ts=2025-05-22T08:15:44Z caller=logging.go:85 method=Health result=2 took=35.699µs +ts=2025-05-22T08:15:44Z caller=logging.go:85 method=Health result=2 took=35.639µs +ts=2025-05-22T08:15:47Z caller=logging.go:85 method=Health result=2 took=45.599µs +ts=2025-05-22T08:15:47Z caller=logging.go:85 method=Health result=2 took=38.719µs +ts=2025-05-22T08:15:50Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T08:15:50Z caller=logging.go:85 method=Health result=2 took=66.078µs +ts=2025-05-22T08:15:53Z caller=logging.go:85 method=Health result=2 took=40.449µs +ts=2025-05-22T08:15:53Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T08:15:56Z caller=logging.go:85 method=Health result=2 took=38.3µs +ts=2025-05-22T08:15:56Z caller=logging.go:85 method=Health result=2 took=53.269µs +ts=2025-05-22T08:15:59Z caller=logging.go:85 method=Health result=2 took=40.619µs +ts=2025-05-22T08:15:59Z caller=logging.go:85 method=Health result=2 took=29.419µs +ts=2025-05-22T08:16:02Z caller=logging.go:85 method=Health result=2 took=47.199µs +ts=2025-05-22T08:16:02Z caller=logging.go:85 method=Health result=2 took=52.589µs +ts=2025-05-22T08:16:05Z caller=logging.go:85 method=Health result=2 took=54.159µs +ts=2025-05-22T08:16:05Z caller=logging.go:85 method=Health result=2 took=52.059µs +ts=2025-05-22T08:16:08Z caller=logging.go:85 method=Health result=2 took=54.189µs +ts=2025-05-22T08:16:08Z caller=logging.go:85 method=Health result=2 took=50.389µs +ts=2025-05-22T08:16:11Z caller=logging.go:85 method=Health result=2 took=44.279µs +ts=2025-05-22T08:16:11Z caller=logging.go:85 method=Health result=2 took=37.819µs +ts=2025-05-22T08:16:14Z caller=logging.go:85 method=Health result=2 took=41.209µs +ts=2025-05-22T08:16:14Z caller=logging.go:85 method=Health result=2 took=25.55µs +ts=2025-05-22T08:16:17Z caller=logging.go:85 method=Health result=2 took=966.027µs +ts=2025-05-22T08:16:17Z caller=logging.go:85 method=Health result=2 took=45.519µs +ts=2025-05-22T08:16:20Z caller=logging.go:85 method=Health result=2 took=38.209µs +ts=2025-05-22T08:16:20Z caller=logging.go:85 method=Health result=2 took=47.359µs +ts=2025-05-22T08:16:23Z caller=logging.go:85 method=Health result=2 took=36.329µs +ts=2025-05-22T08:16:23Z caller=logging.go:85 method=Health result=2 took=35.999µs +ts=2025-05-22T08:16:26Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:16:26Z caller=logging.go:85 method=Health result=2 took=41.009µs +ts=2025-05-22T08:16:29Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T08:16:29Z caller=logging.go:85 method=Health result=2 took=43.729µs +ts=2025-05-22T08:16:32Z caller=logging.go:85 method=Health result=2 took=38.819µs +ts=2025-05-22T08:16:32Z caller=logging.go:85 method=Health result=2 took=38.409µs +ts=2025-05-22T08:16:35Z caller=logging.go:85 method=Health result=2 took=43.749µs +ts=2025-05-22T08:16:35Z caller=logging.go:85 method=Health result=2 took=44.319µs +ts=2025-05-22T08:16:38Z caller=logging.go:85 method=Health result=2 took=45.669µs +ts=2025-05-22T08:16:38Z caller=logging.go:85 method=Health result=2 took=53.518µs +ts=2025-05-22T08:16:41Z caller=logging.go:85 method=Health result=2 took=39.339µs +ts=2025-05-22T08:16:41Z caller=logging.go:85 method=Health result=2 took=38.869µs +ts=2025-05-22T08:16:44Z caller=logging.go:85 method=Health result=2 took=37.939µs +ts=2025-05-22T08:16:44Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T08:16:47Z caller=logging.go:85 method=Health result=2 took=46.619µs +ts=2025-05-22T08:16:47Z caller=logging.go:85 method=Health result=2 took=50.609µs +ts=2025-05-22T08:16:50Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T08:16:50Z caller=logging.go:85 method=Health result=2 took=44.149µs +ts=2025-05-22T08:16:53Z caller=logging.go:85 method=Health result=2 took=43.409µs +ts=2025-05-22T08:16:53Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:16:56Z caller=logging.go:85 method=Health result=2 took=42.999µs +ts=2025-05-22T08:16:56Z caller=logging.go:85 method=Health result=2 took=52.058µs +ts=2025-05-22T08:16:59Z caller=logging.go:85 method=Health result=2 took=45.139µs +ts=2025-05-22T08:16:59Z caller=logging.go:85 method=Health result=2 took=85.578µs +ts=2025-05-22T08:17:02Z caller=logging.go:85 method=Health result=2 took=41.179µs +ts=2025-05-22T08:17:02Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T08:17:05Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T08:17:05Z caller=logging.go:85 method=Health result=2 took=51.089µs +ts=2025-05-22T08:17:08Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T08:17:08Z caller=logging.go:85 method=Health result=2 took=50.159µs +ts=2025-05-22T08:17:11Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T08:17:11Z caller=logging.go:85 method=Health result=2 took=44.009µs +ts=2025-05-22T08:17:14Z caller=logging.go:85 method=Health result=2 took=43.949µs +ts=2025-05-22T08:17:14Z caller=logging.go:85 method=Health result=2 took=30.889µs +ts=2025-05-22T08:17:17Z caller=logging.go:85 method=Health result=2 took=44.299µs +ts=2025-05-22T08:17:17Z caller=logging.go:85 method=Health result=2 took=43.929µs +ts=2025-05-22T08:17:20Z caller=logging.go:85 method=Health result=2 took=35.289µs +ts=2025-05-22T08:17:20Z caller=logging.go:85 method=Health result=2 took=35.289µs +ts=2025-05-22T08:17:23Z caller=logging.go:85 method=Health result=2 took=45.058µs +ts=2025-05-22T08:17:23Z caller=logging.go:85 method=Health result=2 took=38.329µs +ts=2025-05-22T08:17:26Z caller=logging.go:85 method=Health result=2 took=40.349µs +ts=2025-05-22T08:17:26Z caller=logging.go:85 method=Health result=2 took=40.729µs +ts=2025-05-22T08:17:29Z caller=logging.go:85 method=Health result=2 took=44.559µs +ts=2025-05-22T08:17:29Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T08:17:32Z caller=logging.go:85 method=Health result=2 took=41.699µs +ts=2025-05-22T08:17:32Z caller=logging.go:85 method=Health result=2 took=40.999µs +ts=2025-05-22T08:17:35Z caller=logging.go:85 method=Health result=2 took=30.059µs +ts=2025-05-22T08:17:35Z caller=logging.go:85 method=Health result=2 took=15.089µs +ts=2025-05-22T08:17:38Z caller=logging.go:85 method=Health result=2 took=31.62µs +ts=2025-05-22T08:17:38Z caller=logging.go:85 method=Health result=2 took=47.419µs +ts=2025-05-22T08:17:41Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T08:17:41Z caller=logging.go:85 method=Health result=2 took=49.639µs +ts=2025-05-22T08:17:44Z caller=logging.go:85 method=Health result=2 took=69.528µs +ts=2025-05-22T08:17:44Z caller=logging.go:85 method=Health result=2 took=47.628µs +ts=2025-05-22T08:17:47Z caller=logging.go:85 method=Health result=2 took=40.019µs +ts=2025-05-22T08:17:47Z caller=logging.go:85 method=Health result=2 took=25.729µs +ts=2025-05-22T08:17:50Z caller=logging.go:85 method=Health result=2 took=30.33µs +ts=2025-05-22T08:17:50Z caller=logging.go:85 method=Health result=2 took=47.569µs +ts=2025-05-22T08:17:53Z caller=logging.go:85 method=Health result=2 took=30.109µs +ts=2025-05-22T08:17:53Z caller=logging.go:85 method=Health result=2 took=47.139µs +ts=2025-05-22T08:17:56Z caller=logging.go:85 method=Health result=2 took=29.94µs +ts=2025-05-22T08:17:56Z caller=logging.go:85 method=Health result=2 took=14.97µs +ts=2025-05-22T08:17:59Z caller=logging.go:85 method=Health result=2 took=62.809µs +ts=2025-05-22T08:17:59Z caller=logging.go:85 method=Health result=2 took=23.999µs +ts=2025-05-22T08:18:02Z caller=logging.go:85 method=Health result=2 took=29.119µs +ts=2025-05-22T08:18:02Z caller=logging.go:85 method=Health result=2 took=55.348µs +ts=2025-05-22T08:18:05Z caller=logging.go:85 method=Health result=2 took=37.449µs +ts=2025-05-22T08:18:05Z caller=logging.go:85 method=Health result=2 took=47.968µs +ts=2025-05-22T08:18:08Z caller=logging.go:85 method=Health result=2 took=41.549µs +ts=2025-05-22T08:18:08Z caller=logging.go:85 method=Health result=2 took=48.749µs +ts=2025-05-22T08:18:11Z caller=logging.go:85 method=Health result=2 took=42.499µs +ts=2025-05-22T08:18:11Z caller=logging.go:85 method=Health result=2 took=47.529µs +ts=2025-05-22T08:18:14Z caller=logging.go:85 method=Health result=2 took=29.359µs +ts=2025-05-22T08:18:14Z caller=logging.go:85 method=Health result=2 took=53.779µs +ts=2025-05-22T08:18:17Z caller=logging.go:85 method=Health result=2 took=44.449µs +ts=2025-05-22T08:18:17Z caller=logging.go:85 method=Health result=2 took=44.179µs +ts=2025-05-22T08:18:20Z caller=logging.go:85 method=Health result=2 took=33.709µs +ts=2025-05-22T08:18:20Z caller=logging.go:85 method=Health result=2 took=15.259µs +ts=2025-05-22T08:18:23Z caller=logging.go:85 method=Health result=2 took=35.319µs +ts=2025-05-22T08:18:23Z caller=logging.go:85 method=Health result=2 took=35.149µs +ts=2025-05-22T08:18:26Z caller=logging.go:85 method=Health result=2 took=44.599µs +ts=2025-05-22T08:18:26Z caller=logging.go:85 method=Health result=2 took=49.109µs +ts=2025-05-22T08:18:29Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T08:18:29Z caller=logging.go:85 method=Health result=2 took=42.779µs +ts=2025-05-22T08:18:32Z caller=logging.go:85 method=Health result=2 took=43.929µs +ts=2025-05-22T08:18:32Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T08:18:35Z caller=logging.go:85 method=Health result=2 took=29.779µs +ts=2025-05-22T08:18:35Z caller=logging.go:85 method=Health result=2 took=16.189µs +ts=2025-05-22T08:18:38Z caller=logging.go:85 method=Health result=2 took=53.489µs +ts=2025-05-22T08:18:38Z caller=logging.go:85 method=Health result=2 took=27.689µs +ts=2025-05-22T08:18:41Z caller=logging.go:85 method=Health result=2 took=31.26µs +ts=2025-05-22T08:18:41Z caller=logging.go:85 method=Health result=2 took=40.069µs +ts=2025-05-22T08:18:44Z caller=logging.go:85 method=Health result=2 took=43.579µs +ts=2025-05-22T08:18:44Z caller=logging.go:85 method=Health result=2 took=44.139µs +ts=2025-05-22T08:18:47Z caller=logging.go:85 method=Health result=2 took=37.309µs +ts=2025-05-22T08:18:47Z caller=logging.go:85 method=Health result=2 took=37.299µs +ts=2025-05-22T08:18:50Z caller=logging.go:85 method=Health result=2 took=46.599µs +ts=2025-05-22T08:18:50Z caller=logging.go:85 method=Health result=2 took=51.339µs +ts=2025-05-22T08:18:53Z caller=logging.go:85 method=Health result=2 took=41.589µs +ts=2025-05-22T08:18:53Z caller=logging.go:85 method=Health result=2 took=47.389µs +ts=2025-05-22T08:18:56Z caller=logging.go:85 method=Health result=2 took=41.689µs +ts=2025-05-22T08:18:56Z caller=logging.go:85 method=Health result=2 took=41.309µs +ts=2025-05-22T08:18:59Z caller=logging.go:85 method=Health result=2 took=62.278µs +ts=2025-05-22T08:18:59Z caller=logging.go:85 method=Health result=2 took=60.308µs +ts=2025-05-22T08:19:02Z caller=logging.go:85 method=Health result=2 took=41.229µs +ts=2025-05-22T08:19:02Z caller=logging.go:85 method=Health result=2 took=47.879µs +ts=2025-05-22T08:19:05Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T08:19:05Z caller=logging.go:85 method=Health result=2 took=42.709µs +ts=2025-05-22T08:19:08Z caller=logging.go:85 method=Health result=2 took=28.809µs +ts=2025-05-22T08:19:08Z caller=logging.go:85 method=Health result=2 took=28.799µs +ts=2025-05-22T08:19:11Z caller=logging.go:85 method=Health result=2 took=41.919µs +ts=2025-05-22T08:19:11Z caller=logging.go:85 method=Health result=2 took=43.129µs +ts=2025-05-22T08:19:14Z caller=logging.go:85 method=Health result=2 took=31.48µs +ts=2025-05-22T08:19:14Z caller=logging.go:85 method=Health result=2 took=41.109µs +ts=2025-05-22T08:19:17Z caller=logging.go:85 method=Health result=2 took=42.849µs +ts=2025-05-22T08:19:17Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T08:19:20Z caller=logging.go:85 method=Health result=2 took=43.119µs +ts=2025-05-22T08:19:20Z caller=logging.go:85 method=Health result=2 took=43.899µs +ts=2025-05-22T08:19:23Z caller=logging.go:85 method=Health result=2 took=39.769µs +ts=2025-05-22T08:19:23Z caller=logging.go:85 method=Health result=2 took=39.419µs +ts=2025-05-22T08:19:26Z caller=logging.go:85 method=Health result=2 took=42.389µs +ts=2025-05-22T08:19:26Z caller=logging.go:85 method=Health result=2 took=50.149µs +ts=2025-05-22T08:19:29Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T08:19:29Z caller=logging.go:85 method=Health result=2 took=47.949µs +ts=2025-05-22T08:19:32Z caller=logging.go:85 method=Health result=2 took=41.059µs +ts=2025-05-22T08:19:32Z caller=logging.go:85 method=Health result=2 took=45.109µs +ts=2025-05-22T08:19:35Z caller=logging.go:85 method=Health result=2 took=13.789µs +ts=2025-05-22T08:19:35Z caller=logging.go:85 method=Health result=2 took=29.059µs +ts=2025-05-22T08:19:38Z caller=logging.go:85 method=Health result=2 took=30.189µs +ts=2025-05-22T08:19:38Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T08:19:41Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T08:19:41Z caller=logging.go:85 method=Health result=2 took=45.419µs +ts=2025-05-22T08:19:44Z caller=logging.go:85 method=Health result=2 took=45.029µs +ts=2025-05-22T08:19:44Z caller=logging.go:85 method=Health result=2 took=38.789µs +ts=2025-05-22T08:19:47Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T08:19:47Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T08:19:50Z caller=logging.go:85 method=Health result=2 took=37.159µs +ts=2025-05-22T08:19:50Z caller=logging.go:85 method=Health result=2 took=47.229µs +ts=2025-05-22T08:19:53Z caller=logging.go:85 method=Health result=2 took=37.729µs +ts=2025-05-22T08:19:53Z caller=logging.go:85 method=Health result=2 took=44.109µs +ts=2025-05-22T08:19:56Z caller=logging.go:85 method=Health result=2 took=31.65µs +ts=2025-05-22T08:19:56Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T08:19:59Z caller=logging.go:85 method=Health result=2 took=32.379µs +ts=2025-05-22T08:19:59Z caller=logging.go:85 method=Health result=2 took=44.438µs +ts=2025-05-22T08:20:02Z caller=logging.go:85 method=Health result=2 took=47.928µs +ts=2025-05-22T08:20:02Z caller=logging.go:85 method=Health result=2 took=26.149µs +ts=2025-05-22T08:20:05Z caller=logging.go:85 method=Health result=2 took=39.709µs +ts=2025-05-22T08:20:05Z caller=logging.go:85 method=Health result=2 took=39.799µs +ts=2025-05-22T08:20:08Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T08:20:08Z caller=logging.go:85 method=Health result=2 took=31.14µs +ts=2025-05-22T08:20:11Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T08:20:11Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T08:20:14Z caller=logging.go:85 method=Health result=2 took=42.659µs +ts=2025-05-22T08:20:14Z caller=logging.go:85 method=Health result=2 took=48.969µs +ts=2025-05-22T08:20:17Z caller=logging.go:85 method=Health result=2 took=74.408µs +ts=2025-05-22T08:20:17Z caller=logging.go:85 method=Health result=2 took=72.539µs +ts=2025-05-22T08:20:20Z caller=logging.go:85 method=Health result=2 took=39.869µs +ts=2025-05-22T08:20:20Z caller=logging.go:85 method=Health result=2 took=39.069µs +ts=2025-05-22T08:20:23Z caller=logging.go:85 method=Health result=2 took=38.409µs +ts=2025-05-22T08:20:23Z caller=logging.go:85 method=Health result=2 took=45.469µs +ts=2025-05-22T08:20:26Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T08:20:26Z caller=logging.go:85 method=Health result=2 took=49.049µs +ts=2025-05-22T08:20:29Z caller=logging.go:85 method=Health result=2 took=44.159µs +ts=2025-05-22T08:20:29Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T08:20:32Z caller=logging.go:85 method=Health result=2 took=41.579µs +ts=2025-05-22T08:20:32Z caller=logging.go:85 method=Health result=2 took=48.428µs +ts=2025-05-22T08:20:35Z caller=logging.go:85 method=Health result=2 took=44.299µs +ts=2025-05-22T08:20:35Z caller=logging.go:85 method=Health result=2 took=47.789µs +ts=2025-05-22T08:20:38Z caller=logging.go:85 method=Health result=2 took=29.239µs +ts=2025-05-22T08:20:38Z caller=logging.go:85 method=Health result=2 took=29.619µs +ts=2025-05-22T08:20:41Z caller=logging.go:85 method=Health result=2 took=36.369µs +ts=2025-05-22T08:20:41Z caller=logging.go:85 method=Health result=2 took=36.389µs +ts=2025-05-22T08:20:44Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T08:20:44Z caller=logging.go:85 method=Health result=2 took=38.109µs +ts=2025-05-22T08:20:47Z caller=logging.go:85 method=Health result=2 took=43.689µs +ts=2025-05-22T08:20:47Z caller=logging.go:85 method=Health result=2 took=43.359µs +ts=2025-05-22T08:20:50Z caller=logging.go:85 method=Health result=2 took=37.589µs +ts=2025-05-22T08:20:50Z caller=logging.go:85 method=Health result=2 took=53.588µs +ts=2025-05-22T08:20:53Z caller=logging.go:85 method=Health result=2 took=37.239µs +ts=2025-05-22T08:20:53Z caller=logging.go:85 method=Health result=2 took=37.469µs +ts=2025-05-22T08:20:56Z caller=logging.go:85 method=Health result=2 took=37.269µs +ts=2025-05-22T08:20:56Z caller=logging.go:85 method=Health result=2 took=37.289µs +ts=2025-05-22T08:20:59Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T08:20:59Z caller=logging.go:85 method=Health result=2 took=39.199µs +ts=2025-05-22T08:21:02Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T08:21:02Z caller=logging.go:85 method=Health result=2 took=49.639µs +ts=2025-05-22T08:21:05Z caller=logging.go:85 method=Health result=2 took=39.449µs +ts=2025-05-22T08:21:05Z caller=logging.go:85 method=Health result=2 took=27.179µs +ts=2025-05-22T08:21:08Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T08:21:08Z caller=logging.go:85 method=Health result=2 took=44.399µs +ts=2025-05-22T08:21:11Z caller=logging.go:85 method=Health result=2 took=53.359µs +ts=2025-05-22T08:21:11Z caller=logging.go:85 method=Health result=2 took=56.978µs +ts=2025-05-22T08:21:14Z caller=logging.go:85 method=Health result=2 took=43.189µs +ts=2025-05-22T08:21:14Z caller=logging.go:85 method=Health result=2 took=49.629µs +ts=2025-05-22T08:21:17Z caller=logging.go:85 method=Health result=2 took=41.339µs +ts=2025-05-22T08:21:17Z caller=logging.go:85 method=Health result=2 took=49.618µs +ts=2025-05-22T08:21:20Z caller=logging.go:85 method=Health result=2 took=31.929µs +ts=2025-05-22T08:21:20Z caller=logging.go:85 method=Health result=2 took=47.598µs +ts=2025-05-22T08:21:23Z caller=logging.go:85 method=Health result=2 took=45.479µs +ts=2025-05-22T08:21:23Z caller=logging.go:85 method=Health result=2 took=50.959µs +ts=2025-05-22T08:21:26Z caller=logging.go:85 method=Health result=2 took=31.899µs +ts=2025-05-22T08:21:26Z caller=logging.go:85 method=Health result=2 took=43.879µs +ts=2025-05-22T08:21:29Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:21:29Z caller=logging.go:85 method=Health result=2 took=41.909µs +ts=2025-05-22T08:21:32Z caller=logging.go:85 method=Health result=2 took=38.469µs +ts=2025-05-22T08:21:32Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T08:21:35Z caller=logging.go:85 method=Health result=2 took=30.579µs +ts=2025-05-22T08:21:35Z caller=logging.go:85 method=Health result=2 took=13.4µs +ts=2025-05-22T08:21:38Z caller=logging.go:85 method=Health result=2 took=41.819µs +ts=2025-05-22T08:21:38Z caller=logging.go:85 method=Health result=2 took=53.539µs +ts=2025-05-22T08:21:41Z caller=logging.go:85 method=Health result=2 took=44.559µs +ts=2025-05-22T08:21:41Z caller=logging.go:85 method=Health result=2 took=50.819µs +ts=2025-05-22T08:21:44Z caller=logging.go:85 method=Health result=2 took=45.149µs +ts=2025-05-22T08:21:44Z caller=logging.go:85 method=Health result=2 took=50.449µs +ts=2025-05-22T08:21:47Z caller=logging.go:85 method=Health result=2 took=45.519µs +ts=2025-05-22T08:21:47Z caller=logging.go:85 method=Health result=2 took=48.579µs +ts=2025-05-22T08:21:50Z caller=logging.go:85 method=Health result=2 took=29.27µs +ts=2025-05-22T08:21:50Z caller=logging.go:85 method=Health result=2 took=52.439µs +ts=2025-05-22T08:21:53Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T08:21:53Z caller=logging.go:85 method=Health result=2 took=44.269µs +ts=2025-05-22T08:21:56Z caller=logging.go:85 method=Health result=2 took=38.879µs +ts=2025-05-22T08:21:56Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T08:21:59Z caller=logging.go:85 method=Health result=2 took=45.099µs +ts=2025-05-22T08:21:59Z caller=logging.go:85 method=Health result=2 took=52.389µs +ts=2025-05-22T08:22:02Z caller=logging.go:85 method=Health result=2 took=37.969µs +ts=2025-05-22T08:22:02Z caller=logging.go:85 method=Health result=2 took=49.138µs +ts=2025-05-22T08:22:05Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T08:22:05Z caller=logging.go:85 method=Health result=2 took=49.979µs +ts=2025-05-22T08:22:08Z caller=logging.go:85 method=Health result=2 took=36.209µs +ts=2025-05-22T08:22:08Z caller=logging.go:85 method=Health result=2 took=49.539µs +ts=2025-05-22T08:22:11Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T08:22:11Z caller=logging.go:85 method=Health result=2 took=48.959µs +ts=2025-05-22T08:22:14Z caller=logging.go:85 method=Health result=2 took=43.089µs +ts=2025-05-22T08:22:14Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T08:22:17Z caller=logging.go:85 method=Health result=2 took=76.628µs +ts=2025-05-22T08:22:17Z caller=logging.go:85 method=Health result=2 took=60.698µs +ts=2025-05-22T08:22:20Z caller=logging.go:85 method=Health result=2 took=43.159µs +ts=2025-05-22T08:22:20Z caller=logging.go:85 method=Health result=2 took=43.869µs +ts=2025-05-22T08:22:23Z caller=logging.go:85 method=Health result=2 took=35.649µs +ts=2025-05-22T08:22:23Z caller=logging.go:85 method=Health result=2 took=36.159µs +ts=2025-05-22T08:22:26Z caller=logging.go:85 method=Health result=2 took=45.429µs +ts=2025-05-22T08:22:26Z caller=logging.go:85 method=Health result=2 took=68.158µs +ts=2025-05-22T08:22:29Z caller=logging.go:85 method=Health result=2 took=40.109µs +ts=2025-05-22T08:22:29Z caller=logging.go:85 method=Health result=2 took=40.159µs +ts=2025-05-22T08:22:32Z caller=logging.go:85 method=Health result=2 took=40.089µs +ts=2025-05-22T08:22:32Z caller=logging.go:85 method=Health result=2 took=17.6µs +ts=2025-05-22T08:22:35Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T08:22:35Z caller=logging.go:85 method=Health result=2 took=42.339µs +ts=2025-05-22T08:22:38Z caller=logging.go:85 method=Health result=2 took=41.509µs +ts=2025-05-22T08:22:38Z caller=logging.go:85 method=Health result=2 took=47.799µs +ts=2025-05-22T08:22:41Z caller=logging.go:85 method=Health result=2 took=45.889µs +ts=2025-05-22T08:22:41Z caller=logging.go:85 method=Health result=2 took=45.879µs +ts=2025-05-22T08:22:44Z caller=logging.go:85 method=Health result=2 took=42.869µs +ts=2025-05-22T08:22:44Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T08:22:47Z caller=logging.go:85 method=Health result=2 took=46.419µs +ts=2025-05-22T08:22:47Z caller=logging.go:85 method=Health result=2 took=46.419µs +ts=2025-05-22T08:22:50Z caller=logging.go:85 method=Health result=2 took=38.709µs +ts=2025-05-22T08:22:50Z caller=logging.go:85 method=Health result=2 took=47.009µs +ts=2025-05-22T08:22:53Z caller=logging.go:85 method=Health result=2 took=46.609µs +ts=2025-05-22T08:22:53Z caller=logging.go:85 method=Health result=2 took=51.019µs +ts=2025-05-22T08:22:56Z caller=logging.go:85 method=Health result=2 took=43.729µs +ts=2025-05-22T08:22:56Z caller=logging.go:85 method=Health result=2 took=50.818µs +ts=2025-05-22T08:22:59Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T08:22:59Z caller=logging.go:85 method=Health result=2 took=44.249µs +ts=2025-05-22T08:23:02Z caller=logging.go:85 method=Health result=2 took=37.979µs +ts=2025-05-22T08:23:02Z caller=logging.go:85 method=Health result=2 took=47.779µs +ts=2025-05-22T08:23:05Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T08:23:05Z caller=logging.go:85 method=Health result=2 took=27.51µs +ts=2025-05-22T08:23:08Z caller=logging.go:85 method=Health result=2 took=31.969µs +ts=2025-05-22T08:23:08Z caller=logging.go:85 method=Health result=2 took=39.889µs +ts=2025-05-22T08:23:11Z caller=logging.go:85 method=Health result=2 took=36.259µs +ts=2025-05-22T08:23:11Z caller=logging.go:85 method=Health result=2 took=34.22µs +ts=2025-05-22T08:23:14Z caller=logging.go:85 method=Health result=2 took=42.449µs +ts=2025-05-22T08:23:14Z caller=logging.go:85 method=Health result=2 took=49.959µs +ts=2025-05-22T08:23:17Z caller=logging.go:85 method=Health result=2 took=30.329µs +ts=2025-05-22T08:23:17Z caller=logging.go:85 method=Health result=2 took=47.028µs +ts=2025-05-22T08:23:20Z caller=logging.go:85 method=Health result=2 took=38.309µs +ts=2025-05-22T08:23:20Z caller=logging.go:85 method=Health result=2 took=45.339µs +ts=2025-05-22T08:23:23Z caller=logging.go:85 method=Health result=2 took=29.819µs +ts=2025-05-22T08:23:23Z caller=logging.go:85 method=Health result=2 took=29.759µs +ts=2025-05-22T08:23:26Z caller=logging.go:85 method=Health result=2 took=28.749µs +ts=2025-05-22T08:23:26Z caller=logging.go:85 method=Health result=2 took=28.779µs +ts=2025-05-22T08:23:29Z caller=logging.go:85 method=Health result=2 took=33.379µs +ts=2025-05-22T08:23:29Z caller=logging.go:85 method=Health result=2 took=45.219µs +ts=2025-05-22T08:23:32Z caller=logging.go:85 method=Health result=2 took=61.349µs +ts=2025-05-22T08:23:32Z caller=logging.go:85 method=Health result=2 took=61.399µs +ts=2025-05-22T08:23:35Z caller=logging.go:85 method=Health result=2 took=35.109µs +ts=2025-05-22T08:23:35Z caller=logging.go:85 method=Health result=2 took=48.498µs +ts=2025-05-22T08:23:38Z caller=logging.go:85 method=Health result=2 took=44.549µs +ts=2025-05-22T08:23:38Z caller=logging.go:85 method=Health result=2 took=73.528µs +ts=2025-05-22T08:23:41Z caller=logging.go:85 method=Health result=2 took=45.479µs +ts=2025-05-22T08:23:41Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T08:23:44Z caller=logging.go:85 method=Health result=2 took=47.759µs +ts=2025-05-22T08:23:44Z caller=logging.go:85 method=Health result=2 took=48.709µs +ts=2025-05-22T08:23:47Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T08:23:47Z caller=logging.go:85 method=Health result=2 took=48.269µs +ts=2025-05-22T08:23:50Z caller=logging.go:85 method=Health result=2 took=41.549µs +ts=2025-05-22T08:23:50Z caller=logging.go:85 method=Health result=2 took=48.748µs +ts=2025-05-22T08:23:53Z caller=logging.go:85 method=Health result=2 took=31.899µs +ts=2025-05-22T08:23:53Z caller=logging.go:85 method=Health result=2 took=47.879µs +ts=2025-05-22T08:23:56Z caller=logging.go:85 method=Health result=2 took=46.859µs +ts=2025-05-22T08:23:56Z caller=logging.go:85 method=Health result=2 took=49.059µs +ts=2025-05-22T08:23:59Z caller=logging.go:85 method=Health result=2 took=29.259µs +ts=2025-05-22T08:23:59Z caller=logging.go:85 method=Health result=2 took=45.579µs +ts=2025-05-22T08:24:02Z caller=logging.go:85 method=Health result=2 took=50.139µs +ts=2025-05-22T08:24:02Z caller=logging.go:85 method=Health result=2 took=25.39µs +ts=2025-05-22T08:24:05Z caller=logging.go:85 method=Health result=2 took=38.979µs +ts=2025-05-22T08:24:05Z caller=logging.go:85 method=Health result=2 took=39.089µs +ts=2025-05-22T08:24:08Z caller=logging.go:85 method=Health result=2 took=40.689µs +ts=2025-05-22T08:24:08Z caller=logging.go:85 method=Health result=2 took=40.699µs +ts=2025-05-22T08:24:11Z caller=logging.go:85 method=Health result=2 took=39.159µs +ts=2025-05-22T08:24:11Z caller=logging.go:85 method=Health result=2 took=39.339µs +ts=2025-05-22T08:24:14Z caller=logging.go:85 method=Health result=2 took=46.879µs +ts=2025-05-22T08:24:14Z caller=logging.go:85 method=Health result=2 took=61.168µs +ts=2025-05-22T08:24:17Z caller=logging.go:85 method=Health result=2 took=90.467µs +ts=2025-05-22T08:24:17Z caller=logging.go:85 method=Health result=2 took=50.259µs +ts=2025-05-22T08:24:20Z caller=logging.go:85 method=Health result=2 took=45.419µs +ts=2025-05-22T08:24:20Z caller=logging.go:85 method=Health result=2 took=64.029µs +ts=2025-05-22T08:24:23Z caller=logging.go:85 method=Health result=2 took=43.729µs +ts=2025-05-22T08:24:23Z caller=logging.go:85 method=Health result=2 took=43.169µs +ts=2025-05-22T08:24:26Z caller=logging.go:85 method=Health result=2 took=46.079µs +ts=2025-05-22T08:24:26Z caller=logging.go:85 method=Health result=2 took=46.329µs +ts=2025-05-22T08:24:29Z caller=logging.go:85 method=Health result=2 took=31.919µs +ts=2025-05-22T08:24:29Z caller=logging.go:85 method=Health result=2 took=46.089µs +ts=2025-05-22T08:24:32Z caller=logging.go:85 method=Health result=2 took=43.319µs +ts=2025-05-22T08:24:32Z caller=logging.go:85 method=Health result=2 took=44.119µs +ts=2025-05-22T08:24:35Z caller=logging.go:85 method=Health result=2 took=47.069µs +ts=2025-05-22T08:24:35Z caller=logging.go:85 method=Health result=2 took=48.319µs +ts=2025-05-22T08:24:38Z caller=logging.go:85 method=Health result=2 took=42.909µs +ts=2025-05-22T08:24:38Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T08:24:41Z caller=logging.go:85 method=Health result=2 took=41.239µs +ts=2025-05-22T08:24:41Z caller=logging.go:85 method=Health result=2 took=29.93µs +ts=2025-05-22T08:24:44Z caller=logging.go:85 method=Health result=2 took=38.869µs +ts=2025-05-22T08:24:44Z caller=logging.go:85 method=Health result=2 took=38.799µs +ts=2025-05-22T08:24:47Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T08:24:47Z caller=logging.go:85 method=Health result=2 took=30.709µs +ts=2025-05-22T08:24:50Z caller=logging.go:85 method=Health result=2 took=37.299µs +ts=2025-05-22T08:24:50Z caller=logging.go:85 method=Health result=2 took=36.919µs +ts=2025-05-22T08:24:53Z caller=logging.go:85 method=Health result=2 took=28.729µs +ts=2025-05-22T08:24:53Z caller=logging.go:85 method=Health result=2 took=14.52µs +ts=2025-05-22T08:24:56Z caller=logging.go:85 method=Health result=2 took=37.159µs +ts=2025-05-22T08:24:56Z caller=logging.go:85 method=Health result=2 took=16.219µs +ts=2025-05-22T08:24:59Z caller=logging.go:85 method=Health result=2 took=40.789µs +ts=2025-05-22T08:24:59Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T08:25:02Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T08:25:02Z caller=logging.go:85 method=Health result=2 took=76.928µs +ts=2025-05-22T08:25:05Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T08:25:05Z caller=logging.go:85 method=Health result=2 took=38.999µs +ts=2025-05-22T08:25:08Z caller=logging.go:85 method=Health result=2 took=41.889µs +ts=2025-05-22T08:25:08Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T08:25:11Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T08:25:11Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T08:25:14Z caller=logging.go:85 method=Health result=2 took=44.419µs +ts=2025-05-22T08:25:14Z caller=logging.go:85 method=Health result=2 took=52.798µs +ts=2025-05-22T08:25:17Z caller=logging.go:85 method=Health result=2 took=37.76µs +ts=2025-05-22T08:25:17Z caller=logging.go:85 method=Health result=2 took=36.92µs +ts=2025-05-22T08:25:20Z caller=logging.go:85 method=Health result=2 took=35.19µs +ts=2025-05-22T08:25:20Z caller=logging.go:85 method=Health result=2 took=34.8µs +ts=2025-05-22T08:25:23Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T08:25:23Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T08:25:26Z caller=logging.go:85 method=Health result=2 took=39.559µs +ts=2025-05-22T08:25:26Z caller=logging.go:85 method=Health result=2 took=39.589µs +ts=2025-05-22T08:25:29Z caller=logging.go:85 method=Health result=2 took=57.489µs +ts=2025-05-22T08:25:29Z caller=logging.go:85 method=Health result=2 took=46.109µs +ts=2025-05-22T08:25:32Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T08:25:32Z caller=logging.go:85 method=Health result=2 took=47.569µs +ts=2025-05-22T08:25:35Z caller=logging.go:85 method=Health result=2 took=43.099µs +ts=2025-05-22T08:25:35Z caller=logging.go:85 method=Health result=2 took=40.959µs +ts=2025-05-22T08:25:38Z caller=logging.go:85 method=Health result=2 took=43.769µs +ts=2025-05-22T08:25:38Z caller=logging.go:85 method=Health result=2 took=37.549µs +ts=2025-05-22T08:25:41Z caller=logging.go:85 method=Health result=2 took=41.329µs +ts=2025-05-22T08:25:41Z caller=logging.go:85 method=Health result=2 took=48.309µs +ts=2025-05-22T08:25:44Z caller=logging.go:85 method=Health result=2 took=63.889µs +ts=2025-05-22T08:25:44Z caller=logging.go:85 method=Health result=2 took=39.419µs +ts=2025-05-22T08:25:47Z caller=logging.go:85 method=Health result=2 took=28.51µs +ts=2025-05-22T08:25:47Z caller=logging.go:85 method=Health result=2 took=28.53µs +ts=2025-05-22T08:25:50Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T08:25:50Z caller=logging.go:85 method=Health result=2 took=49.349µs +ts=2025-05-22T08:25:53Z caller=logging.go:85 method=Health result=2 took=45.099µs +ts=2025-05-22T08:25:53Z caller=logging.go:85 method=Health result=2 took=47.879µs +ts=2025-05-22T08:25:56Z caller=logging.go:85 method=Health result=2 took=27.809µs +ts=2025-05-22T08:25:56Z caller=logging.go:85 method=Health result=2 took=27.789µs +ts=2025-05-22T08:25:59Z caller=logging.go:85 method=Health result=2 took=45.139µs +ts=2025-05-22T08:25:59Z caller=logging.go:85 method=Health result=2 took=47.479µs +ts=2025-05-22T08:26:02Z caller=logging.go:85 method=Health result=2 took=30.319µs +ts=2025-05-22T08:26:02Z caller=logging.go:85 method=Health result=2 took=14.139µs +ts=2025-05-22T08:26:05Z caller=logging.go:85 method=Health result=2 took=44.379µs +ts=2025-05-22T08:26:05Z caller=logging.go:85 method=Health result=2 took=42.109µs +ts=2025-05-22T08:26:08Z caller=logging.go:85 method=Health result=2 took=45.519µs +ts=2025-05-22T08:26:08Z caller=logging.go:85 method=Health result=2 took=50.468µs +ts=2025-05-22T08:26:11Z caller=logging.go:85 method=Health result=2 took=40.779µs +ts=2025-05-22T08:26:11Z caller=logging.go:85 method=Health result=2 took=49.979µs +ts=2025-05-22T08:26:14Z caller=logging.go:85 method=Health result=2 took=40.069µs +ts=2025-05-22T08:26:14Z caller=logging.go:85 method=Health result=2 took=27.059µs +ts=2025-05-22T08:26:17Z caller=logging.go:85 method=Health result=2 took=48.709µs +ts=2025-05-22T08:26:17Z caller=logging.go:85 method=Health result=2 took=40.219µs +ts=2025-05-22T08:26:20Z caller=logging.go:85 method=Health result=2 took=32.319µs +ts=2025-05-22T08:26:20Z caller=logging.go:85 method=Health result=2 took=47.809µs +ts=2025-05-22T08:26:23Z caller=logging.go:85 method=Health result=2 took=29.929µs +ts=2025-05-22T08:26:23Z caller=logging.go:85 method=Health result=2 took=15.81µs +ts=2025-05-22T08:26:26Z caller=logging.go:85 method=Health result=2 took=33.629µs +ts=2025-05-22T08:26:26Z caller=logging.go:85 method=Health result=2 took=39.529µs +ts=2025-05-22T08:26:29Z caller=logging.go:85 method=Health result=2 took=29.1µs +ts=2025-05-22T08:26:29Z caller=logging.go:85 method=Health result=2 took=28.98µs +ts=2025-05-22T08:26:32Z caller=logging.go:85 method=Health result=2 took=38.589µs +ts=2025-05-22T08:26:32Z caller=logging.go:85 method=Health result=2 took=22.219µs +ts=2025-05-22T08:26:35Z caller=logging.go:85 method=Health result=2 took=46.959µs +ts=2025-05-22T08:26:35Z caller=logging.go:85 method=Health result=2 took=48.699µs +ts=2025-05-22T08:26:38Z caller=logging.go:85 method=Health result=2 took=41.699µs +ts=2025-05-22T08:26:38Z caller=logging.go:85 method=Health result=2 took=50.259µs +ts=2025-05-22T08:26:41Z caller=logging.go:85 method=Health result=2 took=45.899µs +ts=2025-05-22T08:26:41Z caller=logging.go:85 method=Health result=2 took=53.499µs +ts=2025-05-22T08:26:44Z caller=logging.go:85 method=Health result=2 took=38.519µs +ts=2025-05-22T08:26:44Z caller=logging.go:85 method=Health result=2 took=62.448µs +ts=2025-05-22T08:26:47Z caller=logging.go:85 method=Health result=2 took=30.01µs +ts=2025-05-22T08:26:47Z caller=logging.go:85 method=Health result=2 took=46.398µs +ts=2025-05-22T08:26:50Z caller=logging.go:85 method=Health result=2 took=31.529µs +ts=2025-05-22T08:26:50Z caller=logging.go:85 method=Health result=2 took=44.129µs +ts=2025-05-22T08:26:53Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T08:26:53Z caller=logging.go:85 method=Health result=2 took=48.559µs +ts=2025-05-22T08:26:56Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T08:26:56Z caller=logging.go:85 method=Health result=2 took=39.109µs +ts=2025-05-22T08:26:59Z caller=logging.go:85 method=Health result=2 took=47.868µs +ts=2025-05-22T08:26:59Z caller=logging.go:85 method=Health result=2 took=50.949µs +ts=2025-05-22T08:27:02Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T08:27:02Z caller=logging.go:85 method=Health result=2 took=39.969µs +ts=2025-05-22T08:27:05Z caller=logging.go:85 method=Health result=2 took=44.729µs +ts=2025-05-22T08:27:05Z caller=logging.go:85 method=Health result=2 took=52.169µs +ts=2025-05-22T08:27:08Z caller=logging.go:85 method=Health result=2 took=35.79µs +ts=2025-05-22T08:27:08Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T08:27:11Z caller=logging.go:85 method=Health result=2 took=36.56µs +ts=2025-05-22T08:27:11Z caller=logging.go:85 method=Health result=2 took=44.469µs +ts=2025-05-22T08:27:14Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T08:27:14Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T08:27:17Z caller=logging.go:85 method=Health result=2 took=39.81µs +ts=2025-05-22T08:27:17Z caller=logging.go:85 method=Health result=2 took=39.68µs +ts=2025-05-22T08:27:20Z caller=logging.go:85 method=Health result=2 took=40.499µs +ts=2025-05-22T08:27:20Z caller=logging.go:85 method=Health result=2 took=40.44µs +ts=2025-05-22T08:27:23Z caller=logging.go:85 method=Health result=2 took=31.309µs +ts=2025-05-22T08:27:23Z caller=logging.go:85 method=Health result=2 took=47.839µs +ts=2025-05-22T08:27:26Z caller=logging.go:85 method=Health result=2 took=38.089µs +ts=2025-05-22T08:27:26Z caller=logging.go:85 method=Health result=2 took=48.549µs +ts=2025-05-22T08:27:29Z caller=logging.go:85 method=Health result=2 took=40.629µs +ts=2025-05-22T08:27:29Z caller=logging.go:85 method=Health result=2 took=27.719µs +ts=2025-05-22T08:27:32Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T08:27:32Z caller=logging.go:85 method=Health result=2 took=46.669µs +ts=2025-05-22T08:27:35Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T08:27:35Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T08:27:38Z caller=logging.go:85 method=Health result=2 took=44.669µs +ts=2025-05-22T08:27:38Z caller=logging.go:85 method=Health result=2 took=48.959µs +ts=2025-05-22T08:27:41Z caller=logging.go:85 method=Health result=2 took=41.479µs +ts=2025-05-22T08:27:41Z caller=logging.go:85 method=Health result=2 took=40.709µs +ts=2025-05-22T08:27:44Z caller=logging.go:85 method=Health result=2 took=33.339µs +ts=2025-05-22T08:27:44Z caller=logging.go:85 method=Health result=2 took=47.359µs +ts=2025-05-22T08:27:47Z caller=logging.go:85 method=Health result=2 took=46.728µs +ts=2025-05-22T08:27:47Z caller=logging.go:85 method=Health result=2 took=48.479µs +ts=2025-05-22T08:27:50Z caller=logging.go:85 method=Health result=2 took=32.619µs +ts=2025-05-22T08:27:50Z caller=logging.go:85 method=Health result=2 took=40.429µs +ts=2025-05-22T08:27:53Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T08:27:53Z caller=logging.go:85 method=Health result=2 took=72.188µs +ts=2025-05-22T08:27:56Z caller=logging.go:85 method=Health result=2 took=42.849µs +ts=2025-05-22T08:27:56Z caller=logging.go:85 method=Health result=2 took=50.439µs +ts=2025-05-22T08:27:59Z caller=logging.go:85 method=Health result=2 took=33.229µs +ts=2025-05-22T08:27:59Z caller=logging.go:85 method=Health result=2 took=29.389µs +ts=2025-05-22T08:28:02Z caller=logging.go:85 method=Health result=2 took=39.309µs +ts=2025-05-22T08:28:02Z caller=logging.go:85 method=Health result=2 took=39.919µs +ts=2025-05-22T08:28:05Z caller=logging.go:85 method=Health result=2 took=32.53µs +ts=2025-05-22T08:28:05Z caller=logging.go:85 method=Health result=2 took=39.669µs +ts=2025-05-22T08:28:08Z caller=logging.go:85 method=Health result=2 took=32.37µs +ts=2025-05-22T08:28:08Z caller=logging.go:85 method=Health result=2 took=30.98µs +ts=2025-05-22T08:28:11Z caller=logging.go:85 method=Health result=2 took=45.559µs +ts=2025-05-22T08:28:11Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T08:28:14Z caller=logging.go:85 method=Health result=2 took=46.348µs +ts=2025-05-22T08:28:14Z caller=logging.go:85 method=Health result=2 took=50.408µs +ts=2025-05-22T08:28:17Z caller=logging.go:85 method=Health result=2 took=58.759µs +ts=2025-05-22T08:28:17Z caller=logging.go:85 method=Health result=2 took=55.729µs +ts=2025-05-22T08:28:20Z caller=logging.go:85 method=Health result=2 took=45.939µs +ts=2025-05-22T08:28:20Z caller=logging.go:85 method=Health result=2 took=47.599µs +ts=2025-05-22T08:28:23Z caller=logging.go:85 method=Health result=2 took=45.209µs +ts=2025-05-22T08:28:23Z caller=logging.go:85 method=Health result=2 took=31.849µs +ts=2025-05-22T08:28:26Z caller=logging.go:85 method=Health result=2 took=44.069µs +ts=2025-05-22T08:28:26Z caller=logging.go:85 method=Health result=2 took=48.329µs +ts=2025-05-22T08:28:29Z caller=logging.go:85 method=Health result=2 took=41.209µs +ts=2025-05-22T08:28:29Z caller=logging.go:85 method=Health result=2 took=46.289µs +ts=2025-05-22T08:28:32Z caller=logging.go:85 method=Health result=2 took=30.79µs +ts=2025-05-22T08:28:32Z caller=logging.go:85 method=Health result=2 took=17.099µs +ts=2025-05-22T08:28:35Z caller=logging.go:85 method=Health result=2 took=42.059µs +ts=2025-05-22T08:28:35Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T08:28:38Z caller=logging.go:85 method=Health result=2 took=32.939µs +ts=2025-05-22T08:28:38Z caller=logging.go:85 method=Health result=2 took=36.369µs +ts=2025-05-22T08:28:41Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T08:28:41Z caller=logging.go:85 method=Health result=2 took=42.089µs +ts=2025-05-22T08:28:44Z caller=logging.go:85 method=Health result=2 took=31.369µs +ts=2025-05-22T08:28:44Z caller=logging.go:85 method=Health result=2 took=54.208µs +ts=2025-05-22T08:28:47Z caller=logging.go:85 method=Health result=2 took=28.679µs +ts=2025-05-22T08:28:47Z caller=logging.go:85 method=Health result=2 took=10.22µs +ts=2025-05-22T08:28:50Z caller=logging.go:85 method=Health result=2 took=57.549µs +ts=2025-05-22T08:28:50Z caller=logging.go:85 method=Health result=2 took=46.539µs +ts=2025-05-22T08:28:53Z caller=logging.go:85 method=Health result=2 took=44.829µs +ts=2025-05-22T08:28:53Z caller=logging.go:85 method=Health result=2 took=53.499µs +ts=2025-05-22T08:28:56Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T08:28:56Z caller=logging.go:85 method=Health result=2 took=42.929µs +ts=2025-05-22T08:28:59Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T08:28:59Z caller=logging.go:85 method=Health result=2 took=42.879µs +ts=2025-05-22T08:29:02Z caller=logging.go:85 method=Health result=2 took=30.23µs +ts=2025-05-22T08:29:02Z caller=logging.go:85 method=Health result=2 took=15.099µs +ts=2025-05-22T08:29:05Z caller=logging.go:85 method=Health result=2 took=40.969µs +ts=2025-05-22T08:29:05Z caller=logging.go:85 method=Health result=2 took=47.339µs +ts=2025-05-22T08:29:08Z caller=logging.go:85 method=Health result=2 took=31.77µs +ts=2025-05-22T08:29:08Z caller=logging.go:85 method=Health result=2 took=48.269µs +ts=2025-05-22T08:29:11Z caller=logging.go:85 method=Health result=2 took=47.169µs +ts=2025-05-22T08:29:11Z caller=logging.go:85 method=Health result=2 took=49.109µs +ts=2025-05-22T08:29:14Z caller=logging.go:85 method=Health result=2 took=47.879µs +ts=2025-05-22T08:29:14Z caller=logging.go:85 method=Health result=2 took=49.039µs +ts=2025-05-22T08:29:17Z caller=logging.go:85 method=Health result=2 took=30.4µs +ts=2025-05-22T08:29:17Z caller=logging.go:85 method=Health result=2 took=65.469µs +ts=2025-05-22T08:29:20Z caller=logging.go:85 method=Health result=2 took=37.849µs +ts=2025-05-22T08:29:20Z caller=logging.go:85 method=Health result=2 took=48.049µs +ts=2025-05-22T08:29:23Z caller=logging.go:85 method=Health result=2 took=39.199µs +ts=2025-05-22T08:29:23Z caller=logging.go:85 method=Health result=2 took=40.149µs +ts=2025-05-22T08:29:26Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T08:29:26Z caller=logging.go:85 method=Health result=2 took=48.949µs +ts=2025-05-22T08:29:29Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T08:29:29Z caller=logging.go:85 method=Health result=2 took=47.039µs +ts=2025-05-22T08:29:32Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T08:29:32Z caller=logging.go:85 method=Health result=2 took=46.899µs +ts=2025-05-22T08:29:35Z caller=logging.go:85 method=Health result=2 took=31.94µs +ts=2025-05-22T08:29:35Z caller=logging.go:85 method=Health result=2 took=30.56µs +ts=2025-05-22T08:29:38Z caller=logging.go:85 method=Health result=2 took=33.879µs +ts=2025-05-22T08:29:38Z caller=logging.go:85 method=Health result=2 took=34.029µs +ts=2025-05-22T08:29:41Z caller=logging.go:85 method=Health result=2 took=45.889µs +ts=2025-05-22T08:29:41Z caller=logging.go:85 method=Health result=2 took=50.459µs +ts=2025-05-22T08:29:44Z caller=logging.go:85 method=Health result=2 took=36.049µs +ts=2025-05-22T08:29:44Z caller=logging.go:85 method=Health result=2 took=36.469µs +ts=2025-05-22T08:29:47Z caller=logging.go:85 method=Health result=2 took=41.349µs +ts=2025-05-22T08:29:47Z caller=logging.go:85 method=Health result=2 took=48.069µs +ts=2025-05-22T08:29:50Z caller=logging.go:85 method=Health result=2 took=41.649µs +ts=2025-05-22T08:29:50Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T08:29:53Z caller=logging.go:85 method=Health result=2 took=36.979µs +ts=2025-05-22T08:29:53Z caller=logging.go:85 method=Health result=2 took=37.559µs +ts=2025-05-22T08:29:56Z caller=logging.go:85 method=Health result=2 took=46.359µs +ts=2025-05-22T08:29:56Z caller=logging.go:85 method=Health result=2 took=48.679µs +ts=2025-05-22T08:29:59Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T08:29:59Z caller=logging.go:85 method=Health result=2 took=32.84µs +ts=2025-05-22T08:30:02Z caller=logging.go:85 method=Health result=2 took=43.469µs +ts=2025-05-22T08:30:02Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T08:30:05Z caller=logging.go:85 method=Health result=2 took=45.959µs +ts=2025-05-22T08:30:05Z caller=logging.go:85 method=Health result=2 took=59.958µs +ts=2025-05-22T08:30:08Z caller=logging.go:85 method=Health result=2 took=67.549µs +ts=2025-05-22T08:30:08Z caller=logging.go:85 method=Health result=2 took=90.408µs +ts=2025-05-22T08:30:11Z caller=logging.go:85 method=Health result=2 took=39.969µs +ts=2025-05-22T08:30:11Z caller=logging.go:85 method=Health result=2 took=24.21µs +ts=2025-05-22T08:30:14Z caller=logging.go:85 method=Health result=2 took=45.529µs +ts=2025-05-22T08:30:14Z caller=logging.go:85 method=Health result=2 took=50.299µs +ts=2025-05-22T08:30:17Z caller=logging.go:85 method=Health result=2 took=45.699µs +ts=2025-05-22T08:30:17Z caller=logging.go:85 method=Health result=2 took=54.599µs +ts=2025-05-22T08:30:20Z caller=logging.go:85 method=Health result=2 took=37.669µs +ts=2025-05-22T08:30:20Z caller=logging.go:85 method=Health result=2 took=37.559µs +ts=2025-05-22T08:30:23Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T08:30:23Z caller=logging.go:85 method=Health result=2 took=50.778µs +ts=2025-05-22T08:30:26Z caller=logging.go:85 method=Health result=2 took=29.91µs +ts=2025-05-22T08:30:26Z caller=logging.go:85 method=Health result=2 took=30.02µs +ts=2025-05-22T08:30:29Z caller=logging.go:85 method=Health result=2 took=31.729µs +ts=2025-05-22T08:30:29Z caller=logging.go:85 method=Health result=2 took=16.869µs +ts=2025-05-22T08:30:32Z caller=logging.go:85 method=Health result=2 took=41.659µs +ts=2025-05-22T08:30:32Z caller=logging.go:85 method=Health result=2 took=47.609µs +ts=2025-05-22T08:30:35Z caller=logging.go:85 method=Health result=2 took=39.299µs +ts=2025-05-22T08:30:35Z caller=logging.go:85 method=Health result=2 took=39.319µs +ts=2025-05-22T08:30:38Z caller=logging.go:85 method=Health result=2 took=32.099µs +ts=2025-05-22T08:30:38Z caller=logging.go:85 method=Health result=2 took=37.529µs +ts=2025-05-22T08:30:41Z caller=logging.go:85 method=Health result=2 took=32.039µs +ts=2025-05-22T08:30:41Z caller=logging.go:85 method=Health result=2 took=44.789µs +ts=2025-05-22T08:30:44Z caller=logging.go:85 method=Health result=2 took=37.549µs +ts=2025-05-22T08:30:44Z caller=logging.go:85 method=Health result=2 took=54.019µs +ts=2025-05-22T08:30:47Z caller=logging.go:85 method=Health result=2 took=39.139µs +ts=2025-05-22T08:30:47Z caller=logging.go:85 method=Health result=2 took=39.329µs +ts=2025-05-22T08:30:50Z caller=logging.go:85 method=Health result=2 took=30.62µs +ts=2025-05-22T08:30:50Z caller=logging.go:85 method=Health result=2 took=32.569µs +ts=2025-05-22T08:30:53Z caller=logging.go:85 method=Health result=2 took=39.479µs +ts=2025-05-22T08:30:53Z caller=logging.go:85 method=Health result=2 took=38.559µs +ts=2025-05-22T08:30:56Z caller=logging.go:85 method=Health result=2 took=33.139µs +ts=2025-05-22T08:30:56Z caller=logging.go:85 method=Health result=2 took=46.879µs +ts=2025-05-22T08:30:59Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T08:30:59Z caller=logging.go:85 method=Health result=2 took=46.889µs +ts=2025-05-22T08:31:02Z caller=logging.go:85 method=Health result=2 took=42.009µs +ts=2025-05-22T08:31:02Z caller=logging.go:85 method=Health result=2 took=45.709µs +ts=2025-05-22T08:31:05Z caller=logging.go:85 method=Health result=2 took=17.67µs +ts=2025-05-22T08:31:05Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T08:31:08Z caller=logging.go:85 method=Health result=2 took=37.449µs +ts=2025-05-22T08:31:08Z caller=logging.go:85 method=Health result=2 took=37.369µs +ts=2025-05-22T08:31:11Z caller=logging.go:85 method=Health result=2 took=40.349µs +ts=2025-05-22T08:31:11Z caller=logging.go:85 method=Health result=2 took=64.389µs +ts=2025-05-22T08:31:14Z caller=logging.go:85 method=Health result=2 took=43.599µs +ts=2025-05-22T08:31:14Z caller=logging.go:85 method=Health result=2 took=49.849µs +ts=2025-05-22T08:31:17Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T08:31:17Z caller=logging.go:85 method=Health result=2 took=48.089µs +ts=2025-05-22T08:31:20Z caller=logging.go:85 method=Health result=2 took=42.299µs +ts=2025-05-22T08:31:20Z caller=logging.go:85 method=Health result=2 took=42.619µs +ts=2025-05-22T08:31:23Z caller=logging.go:85 method=Health result=2 took=43.419µs +ts=2025-05-22T08:31:23Z caller=logging.go:85 method=Health result=2 took=58.569µs +ts=2025-05-22T08:31:26Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:31:26Z caller=logging.go:85 method=Health result=2 took=48.989µs +ts=2025-05-22T08:31:29Z caller=logging.go:85 method=Health result=2 took=39.279µs +ts=2025-05-22T08:31:29Z caller=logging.go:85 method=Health result=2 took=40.019µs +ts=2025-05-22T08:31:32Z caller=logging.go:85 method=Health result=2 took=42.629µs +ts=2025-05-22T08:31:32Z caller=logging.go:85 method=Health result=2 took=60.038µs +ts=2025-05-22T08:31:35Z caller=logging.go:85 method=Health result=2 took=33.079µs +ts=2025-05-22T08:31:35Z caller=logging.go:85 method=Health result=2 took=45.039µs +ts=2025-05-22T08:31:38Z caller=logging.go:85 method=Health result=2 took=41.939µs +ts=2025-05-22T08:31:38Z caller=logging.go:85 method=Health result=2 took=41.499µs +ts=2025-05-22T08:31:41Z caller=logging.go:85 method=Health result=2 took=40.709µs +ts=2025-05-22T08:31:41Z caller=logging.go:85 method=Health result=2 took=40.409µs +ts=2025-05-22T08:31:44Z caller=logging.go:85 method=Health result=2 took=57.888µs +ts=2025-05-22T08:31:44Z caller=logging.go:85 method=Health result=2 took=30.319µs +ts=2025-05-22T08:31:47Z caller=logging.go:85 method=Health result=2 took=42.059µs +ts=2025-05-22T08:31:47Z caller=logging.go:85 method=Health result=2 took=47.399µs +ts=2025-05-22T08:31:50Z caller=logging.go:85 method=Health result=2 took=44.329µs +ts=2025-05-22T08:31:50Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T08:31:53Z caller=logging.go:85 method=Health result=2 took=41.109µs +ts=2025-05-22T08:31:53Z caller=logging.go:85 method=Health result=2 took=48.139µs +ts=2025-05-22T08:31:56Z caller=logging.go:85 method=Health result=2 took=46.299µs +ts=2025-05-22T08:31:56Z caller=logging.go:85 method=Health result=2 took=50.929µs +ts=2025-05-22T08:31:59Z caller=logging.go:85 method=Health result=2 took=33.87µs +ts=2025-05-22T08:31:59Z caller=logging.go:85 method=Health result=2 took=34µs +ts=2025-05-22T08:32:02Z caller=logging.go:85 method=Health result=2 took=36.799µs +ts=2025-05-22T08:32:02Z caller=logging.go:85 method=Health result=2 took=40.649µs +ts=2025-05-22T08:32:05Z caller=logging.go:85 method=Health result=2 took=30.99µs +ts=2025-05-22T08:32:05Z caller=logging.go:85 method=Health result=2 took=33.519µs +ts=2025-05-22T08:32:08Z caller=logging.go:85 method=Health result=2 took=29.78µs +ts=2025-05-22T08:32:08Z caller=logging.go:85 method=Health result=2 took=12.85µs +ts=2025-05-22T08:32:11Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T08:32:11Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T08:32:14Z caller=logging.go:85 method=Health result=2 took=42.429µs +ts=2025-05-22T08:32:14Z caller=logging.go:85 method=Health result=2 took=50.989µs +ts=2025-05-22T08:32:17Z caller=logging.go:85 method=Health result=2 took=72.919µs +ts=2025-05-22T08:32:17Z caller=logging.go:85 method=Health result=2 took=74.879µs +ts=2025-05-22T08:32:20Z caller=logging.go:85 method=Health result=2 took=32.459µs +ts=2025-05-22T08:32:20Z caller=logging.go:85 method=Health result=2 took=45.499µs +ts=2025-05-22T08:32:23Z caller=logging.go:85 method=Health result=2 took=39.629µs +ts=2025-05-22T08:32:23Z caller=logging.go:85 method=Health result=2 took=48.169µs +ts=2025-05-22T08:32:26Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T08:32:26Z caller=logging.go:85 method=Health result=2 took=50.808µs +ts=2025-05-22T08:32:29Z caller=logging.go:85 method=Health result=2 took=50.659µs +ts=2025-05-22T08:32:29Z caller=logging.go:85 method=Health result=2 took=50.689µs +ts=2025-05-22T08:32:32Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T08:32:32Z caller=logging.go:85 method=Health result=2 took=51.279µs +ts=2025-05-22T08:32:35Z caller=logging.go:85 method=Health result=2 took=44.189µs +ts=2025-05-22T08:32:35Z caller=logging.go:85 method=Health result=2 took=50.448µs +ts=2025-05-22T08:32:38Z caller=logging.go:85 method=Health result=2 took=44.909µs +ts=2025-05-22T08:32:38Z caller=logging.go:85 method=Health result=2 took=45.589µs +ts=2025-05-22T08:32:41Z caller=logging.go:85 method=Health result=2 took=45.589µs +ts=2025-05-22T08:32:41Z caller=logging.go:85 method=Health result=2 took=44.599µs +ts=2025-05-22T08:32:44Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T08:32:44Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T08:32:47Z caller=logging.go:85 method=Health result=2 took=38.679µs +ts=2025-05-22T08:32:47Z caller=logging.go:85 method=Health result=2 took=22.33µs +ts=2025-05-22T08:32:50Z caller=logging.go:85 method=Health result=2 took=29.959µs +ts=2025-05-22T08:32:50Z caller=logging.go:85 method=Health result=2 took=34.389µs +ts=2025-05-22T08:32:53Z caller=logging.go:85 method=Health result=2 took=41.129µs +ts=2025-05-22T08:32:53Z caller=logging.go:85 method=Health result=2 took=47.299µs +ts=2025-05-22T08:32:56Z caller=logging.go:85 method=Health result=2 took=46.689µs +ts=2025-05-22T08:32:56Z caller=logging.go:85 method=Health result=2 took=50.479µs +ts=2025-05-22T08:32:59Z caller=logging.go:85 method=Health result=2 took=42.829µs +ts=2025-05-22T08:32:59Z caller=logging.go:85 method=Health result=2 took=41.639µs +ts=2025-05-22T08:33:02Z caller=logging.go:85 method=Health result=2 took=40.929µs +ts=2025-05-22T08:33:02Z caller=logging.go:85 method=Health result=2 took=40.409µs +ts=2025-05-22T08:33:05Z caller=logging.go:85 method=Health result=2 took=42.969µs +ts=2025-05-22T08:33:05Z caller=logging.go:85 method=Health result=2 took=30.499µs +ts=2025-05-22T08:33:08Z caller=logging.go:85 method=Health result=2 took=29.369µs +ts=2025-05-22T08:33:08Z caller=logging.go:85 method=Health result=2 took=71.738µs +ts=2025-05-22T08:33:11Z caller=logging.go:85 method=Health result=2 took=51.509µs +ts=2025-05-22T08:33:11Z caller=logging.go:85 method=Health result=2 took=50.998µs +ts=2025-05-22T08:33:14Z caller=logging.go:85 method=Health result=2 took=43.779µs +ts=2025-05-22T08:33:14Z caller=logging.go:85 method=Health result=2 took=37.869µs +ts=2025-05-22T08:33:17Z caller=logging.go:85 method=Health result=2 took=50.158µs +ts=2025-05-22T08:33:17Z caller=logging.go:85 method=Health result=2 took=59.969µs +ts=2025-05-22T08:33:20Z caller=logging.go:85 method=Health result=2 took=42.509µs +ts=2025-05-22T08:33:20Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T08:33:23Z caller=logging.go:85 method=Health result=2 took=45.079µs +ts=2025-05-22T08:33:23Z caller=logging.go:85 method=Health result=2 took=48.229µs +ts=2025-05-22T08:33:26Z caller=logging.go:85 method=Health result=2 took=68.798µs +ts=2025-05-22T08:33:26Z caller=logging.go:85 method=Health result=2 took=67.888µs +ts=2025-05-22T08:33:29Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T08:33:29Z caller=logging.go:85 method=Health result=2 took=46.139µs +ts=2025-05-22T08:33:32Z caller=logging.go:85 method=Health result=2 took=57.638µs +ts=2025-05-22T08:33:32Z caller=logging.go:85 method=Health result=2 took=57.668µs +ts=2025-05-22T08:33:35Z caller=logging.go:85 method=Health result=2 took=44.469µs +ts=2025-05-22T08:33:35Z caller=logging.go:85 method=Health result=2 took=67.659µs +ts=2025-05-22T08:33:38Z caller=logging.go:85 method=Health result=2 took=98.138µs +ts=2025-05-22T08:33:38Z caller=logging.go:85 method=Health result=2 took=42.339µs +ts=2025-05-22T08:33:41Z caller=logging.go:85 method=Health result=2 took=33.339µs +ts=2025-05-22T08:33:41Z caller=logging.go:85 method=Health result=2 took=43.969µs +ts=2025-05-22T08:33:44Z caller=logging.go:85 method=Health result=2 took=42.319µs +ts=2025-05-22T08:33:44Z caller=logging.go:85 method=Health result=2 took=50.018µs +ts=2025-05-22T08:33:47Z caller=logging.go:85 method=Health result=2 took=43.659µs +ts=2025-05-22T08:33:47Z caller=logging.go:85 method=Health result=2 took=45.639µs +ts=2025-05-22T08:33:50Z caller=logging.go:85 method=Health result=2 took=46.249µs +ts=2025-05-22T08:33:50Z caller=logging.go:85 method=Health result=2 took=48.039µs +ts=2025-05-22T08:33:53Z caller=logging.go:85 method=Health result=2 took=46.199µs +ts=2025-05-22T08:33:53Z caller=logging.go:85 method=Health result=2 took=44.179µs +ts=2025-05-22T08:33:56Z caller=logging.go:85 method=Health result=2 took=51.319µs +ts=2025-05-22T08:33:56Z caller=logging.go:85 method=Health result=2 took=31.089µs +ts=2025-05-22T08:33:59Z caller=logging.go:85 method=Health result=2 took=30.78µs +ts=2025-05-22T08:33:59Z caller=logging.go:85 method=Health result=2 took=26.679µs +ts=2025-05-22T08:34:02Z caller=logging.go:85 method=Health result=2 took=31.739µs +ts=2025-05-22T08:34:02Z caller=logging.go:85 method=Health result=2 took=60.948µs +ts=2025-05-22T08:34:05Z caller=logging.go:85 method=Health result=2 took=44.399µs +ts=2025-05-22T08:34:05Z caller=logging.go:85 method=Health result=2 took=43.409µs +ts=2025-05-22T08:34:08Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T08:34:08Z caller=logging.go:85 method=Health result=2 took=45.699µs +ts=2025-05-22T08:34:11Z caller=logging.go:85 method=Health result=2 took=44.449µs +ts=2025-05-22T08:34:11Z caller=logging.go:85 method=Health result=2 took=44.729µs +ts=2025-05-22T08:34:14Z caller=logging.go:85 method=Health result=2 took=61.259µs +ts=2025-05-22T08:34:14Z caller=logging.go:85 method=Health result=2 took=30.949µs +ts=2025-05-22T08:34:17Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T08:34:17Z caller=logging.go:85 method=Health result=2 took=48.169µs +ts=2025-05-22T08:34:20Z caller=logging.go:85 method=Health result=2 took=20.24µs +ts=2025-05-22T08:34:20Z caller=logging.go:85 method=Health result=2 took=28.18µs +ts=2025-05-22T08:34:23Z caller=logging.go:85 method=Health result=2 took=56.978µs +ts=2025-05-22T08:34:23Z caller=logging.go:85 method=Health result=2 took=25.14µs +ts=2025-05-22T08:34:26Z caller=logging.go:85 method=Health result=2 took=35.009µs +ts=2025-05-22T08:34:26Z caller=logging.go:85 method=Health result=2 took=46.869µs +ts=2025-05-22T08:34:29Z caller=logging.go:85 method=Health result=2 took=37.009µs +ts=2025-05-22T08:34:29Z caller=logging.go:85 method=Health result=2 took=34.349µs +ts=2025-05-22T08:34:32Z caller=logging.go:85 method=Health result=2 took=52.699µs +ts=2025-05-22T08:34:32Z caller=logging.go:85 method=Health result=2 took=35.429µs +ts=2025-05-22T08:34:35Z caller=logging.go:85 method=Health result=2 took=40.299µs +ts=2025-05-22T08:34:35Z caller=logging.go:85 method=Health result=2 took=11.6µs +ts=2025-05-22T08:34:38Z caller=logging.go:85 method=Health result=2 took=40.209µs +ts=2025-05-22T08:34:38Z caller=logging.go:85 method=Health result=2 took=40.319µs +ts=2025-05-22T08:34:41Z caller=logging.go:85 method=Health result=2 took=45.629µs +ts=2025-05-22T08:34:41Z caller=logging.go:85 method=Health result=2 took=48.409µs +ts=2025-05-22T08:34:44Z caller=logging.go:85 method=Health result=2 took=29.139µs +ts=2025-05-22T08:34:44Z caller=logging.go:85 method=Health result=2 took=13.74µs +ts=2025-05-22T08:34:47Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T08:34:47Z caller=logging.go:85 method=Health result=2 took=49.699µs +ts=2025-05-22T08:34:50Z caller=logging.go:85 method=Health result=2 took=44.219µs +ts=2025-05-22T08:34:50Z caller=logging.go:85 method=Health result=2 took=43.659µs +ts=2025-05-22T08:34:53Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T08:34:53Z caller=logging.go:85 method=Health result=2 took=31.729µs +ts=2025-05-22T08:34:56Z caller=logging.go:85 method=Health result=2 took=31.859µs +ts=2025-05-22T08:34:56Z caller=logging.go:85 method=Health result=2 took=47.008µs +ts=2025-05-22T08:34:59Z caller=logging.go:85 method=Health result=2 took=45.879µs +ts=2025-05-22T08:34:59Z caller=logging.go:85 method=Health result=2 took=53.129µs +ts=2025-05-22T08:35:02Z caller=logging.go:85 method=Health result=2 took=44.969µs +ts=2025-05-22T08:35:02Z caller=logging.go:85 method=Health result=2 took=49.519µs +ts=2025-05-22T08:35:05Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T08:35:05Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T08:35:08Z caller=logging.go:85 method=Health result=2 took=39.849µs +ts=2025-05-22T08:35:08Z caller=logging.go:85 method=Health result=2 took=11.08µs +ts=2025-05-22T08:35:11Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T08:35:11Z caller=logging.go:85 method=Health result=2 took=51.379µs +ts=2025-05-22T08:35:14Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T08:35:14Z caller=logging.go:85 method=Health result=2 took=51.369µs +ts=2025-05-22T08:35:17Z caller=logging.go:85 method=Health result=2 took=35.549µs +ts=2025-05-22T08:35:17Z caller=logging.go:85 method=Health result=2 took=35.009µs +ts=2025-05-22T08:35:20Z caller=logging.go:85 method=Health result=2 took=29.989µs +ts=2025-05-22T08:35:20Z caller=logging.go:85 method=Health result=2 took=54.739µs +ts=2025-05-22T08:35:23Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T08:35:23Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T08:35:26Z caller=logging.go:85 method=Health result=2 took=44.639µs +ts=2025-05-22T08:35:26Z caller=logging.go:85 method=Health result=2 took=52.599µs +ts=2025-05-22T08:35:29Z caller=logging.go:85 method=Health result=2 took=36.839µs +ts=2025-05-22T08:35:29Z caller=logging.go:85 method=Health result=2 took=36.399µs +ts=2025-05-22T08:35:32Z caller=logging.go:85 method=Health result=2 took=41.049µs +ts=2025-05-22T08:35:32Z caller=logging.go:85 method=Health result=2 took=46.398µs +ts=2025-05-22T08:35:35Z caller=logging.go:85 method=Health result=2 took=40.739µs +ts=2025-05-22T08:35:35Z caller=logging.go:85 method=Health result=2 took=49.549µs +ts=2025-05-22T08:35:38Z caller=logging.go:85 method=Health result=2 took=36.479µs +ts=2025-05-22T08:35:38Z caller=logging.go:85 method=Health result=2 took=36.629µs +ts=2025-05-22T08:35:41Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T08:35:41Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T08:35:44Z caller=logging.go:85 method=Health result=2 took=36.939µs +ts=2025-05-22T08:35:44Z caller=logging.go:85 method=Health result=2 took=47.759µs +ts=2025-05-22T08:35:47Z caller=logging.go:85 method=Health result=2 took=45.859µs +ts=2025-05-22T08:35:47Z caller=logging.go:85 method=Health result=2 took=50.969µs +ts=2025-05-22T08:35:50Z caller=logging.go:85 method=Health result=2 took=55.409µs +ts=2025-05-22T08:35:50Z caller=logging.go:85 method=Health result=2 took=49.569µs +ts=2025-05-22T08:35:53Z caller=logging.go:85 method=Health result=2 took=46.649µs +ts=2025-05-22T08:35:53Z caller=logging.go:85 method=Health result=2 took=51.839µs +ts=2025-05-22T08:35:56Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T08:35:56Z caller=logging.go:85 method=Health result=2 took=49.849µs +ts=2025-05-22T08:35:59Z caller=logging.go:85 method=Health result=2 took=41.609µs +ts=2025-05-22T08:35:59Z caller=logging.go:85 method=Health result=2 took=47.079µs +ts=2025-05-22T08:36:02Z caller=logging.go:85 method=Health result=2 took=42.039µs +ts=2025-05-22T08:36:02Z caller=logging.go:85 method=Health result=2 took=45.678µs +ts=2025-05-22T08:36:05Z caller=logging.go:85 method=Health result=2 took=42.609µs +ts=2025-05-22T08:36:05Z caller=logging.go:85 method=Health result=2 took=42.299µs +ts=2025-05-22T08:36:08Z caller=logging.go:85 method=Health result=2 took=41.979µs +ts=2025-05-22T08:36:08Z caller=logging.go:85 method=Health result=2 took=60.208µs +ts=2025-05-22T08:36:11Z caller=logging.go:85 method=Health result=2 took=39.989µs +ts=2025-05-22T08:36:11Z caller=logging.go:85 method=Health result=2 took=39.509µs +ts=2025-05-22T08:36:14Z caller=logging.go:85 method=Health result=2 took=41.259µs +ts=2025-05-22T08:36:14Z caller=logging.go:85 method=Health result=2 took=47.269µs +ts=2025-05-22T08:36:17Z caller=logging.go:85 method=Health result=2 took=45.859µs +ts=2025-05-22T08:36:17Z caller=logging.go:85 method=Health result=2 took=42.049µs +ts=2025-05-22T08:36:20Z caller=logging.go:85 method=Health result=2 took=31.939µs +ts=2025-05-22T08:36:20Z caller=logging.go:85 method=Health result=2 took=45.959µs +ts=2025-05-22T08:36:23Z caller=logging.go:85 method=Health result=2 took=39.569µs +ts=2025-05-22T08:36:23Z caller=logging.go:85 method=Health result=2 took=45.749µs +ts=2025-05-22T08:36:26Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T08:36:26Z caller=logging.go:85 method=Health result=2 took=49.259µs +ts=2025-05-22T08:36:29Z caller=logging.go:85 method=Health result=2 took=39.769µs +ts=2025-05-22T08:36:29Z caller=logging.go:85 method=Health result=2 took=99.387µs +ts=2025-05-22T08:36:32Z caller=logging.go:85 method=Health result=2 took=38.269µs +ts=2025-05-22T08:36:32Z caller=logging.go:85 method=Health result=2 took=43.669µs +ts=2025-05-22T08:36:35Z caller=logging.go:85 method=Health result=2 took=40.899µs +ts=2025-05-22T08:36:35Z caller=logging.go:85 method=Health result=2 took=40.439µs +ts=2025-05-22T08:36:38Z caller=logging.go:85 method=Health result=2 took=44.929µs +ts=2025-05-22T08:36:38Z caller=logging.go:85 method=Health result=2 took=78.978µs +ts=2025-05-22T08:36:41Z caller=logging.go:85 method=Health result=2 took=45.949µs +ts=2025-05-22T08:36:41Z caller=logging.go:85 method=Health result=2 took=48.098µs +ts=2025-05-22T08:36:44Z caller=logging.go:85 method=Health result=2 took=32.219µs +ts=2025-05-22T08:36:44Z caller=logging.go:85 method=Health result=2 took=40.319µs +ts=2025-05-22T08:36:47Z caller=logging.go:85 method=Health result=2 took=41.409µs +ts=2025-05-22T08:36:47Z caller=logging.go:85 method=Health result=2 took=41.379µs +ts=2025-05-22T08:36:50Z caller=logging.go:85 method=Health result=2 took=49.819µs +ts=2025-05-22T08:36:50Z caller=logging.go:85 method=Health result=2 took=48.349µs +ts=2025-05-22T08:36:53Z caller=logging.go:85 method=Health result=2 took=32.25µs +ts=2025-05-22T08:36:53Z caller=logging.go:85 method=Health result=2 took=32.27µs +ts=2025-05-22T08:36:56Z caller=logging.go:85 method=Health result=2 took=35.569µs +ts=2025-05-22T08:36:56Z caller=logging.go:85 method=Health result=2 took=54.228µs +ts=2025-05-22T08:36:59Z caller=logging.go:85 method=Health result=2 took=38.649µs +ts=2025-05-22T08:36:59Z caller=logging.go:85 method=Health result=2 took=27.559µs +ts=2025-05-22T08:37:02Z caller=logging.go:85 method=Health result=2 took=34.12µs +ts=2025-05-22T08:37:02Z caller=logging.go:85 method=Health result=2 took=47.379µs +ts=2025-05-22T08:37:05Z caller=logging.go:85 method=Health result=2 took=53.059µs +ts=2025-05-22T08:37:05Z caller=logging.go:85 method=Health result=2 took=64.459µs +ts=2025-05-22T08:37:08Z caller=logging.go:85 method=Health result=2 took=46.359µs +ts=2025-05-22T08:37:08Z caller=logging.go:85 method=Health result=2 took=83.088µs +ts=2025-05-22T08:37:11Z caller=logging.go:85 method=Health result=2 took=30.75µs +ts=2025-05-22T08:37:11Z caller=logging.go:85 method=Health result=2 took=30.79µs +ts=2025-05-22T08:37:14Z caller=logging.go:85 method=Health result=2 took=49.018µs +ts=2025-05-22T08:37:14Z caller=logging.go:85 method=Health result=2 took=49.769µs +ts=2025-05-22T08:37:17Z caller=logging.go:85 method=Health result=2 took=41.469µs +ts=2025-05-22T08:37:17Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T08:37:20Z caller=logging.go:85 method=Health result=2 took=30.899µs +ts=2025-05-22T08:37:20Z caller=logging.go:85 method=Health result=2 took=33.699µs +ts=2025-05-22T08:37:23Z caller=logging.go:85 method=Health result=2 took=29.42µs +ts=2025-05-22T08:37:23Z caller=logging.go:85 method=Health result=2 took=54.238µs +ts=2025-05-22T08:37:26Z caller=logging.go:85 method=Health result=2 took=36.499µs +ts=2025-05-22T08:37:26Z caller=logging.go:85 method=Health result=2 took=35.549µs +ts=2025-05-22T08:37:29Z caller=logging.go:85 method=Health result=2 took=30.749µs +ts=2025-05-22T08:37:29Z caller=logging.go:85 method=Health result=2 took=41.779µs +ts=2025-05-22T08:37:32Z caller=logging.go:85 method=Health result=2 took=39.269µs +ts=2025-05-22T08:37:32Z caller=logging.go:85 method=Health result=2 took=43.729µs +ts=2025-05-22T08:37:35Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T08:37:35Z caller=logging.go:85 method=Health result=2 took=36.969µs +ts=2025-05-22T08:37:38Z caller=logging.go:85 method=Health result=2 took=30.619µs +ts=2025-05-22T08:37:38Z caller=logging.go:85 method=Health result=2 took=31.639µs +ts=2025-05-22T08:37:41Z caller=logging.go:85 method=Health result=2 took=30.419µs +ts=2025-05-22T08:37:41Z caller=logging.go:85 method=Health result=2 took=34.739µs +ts=2025-05-22T08:37:44Z caller=logging.go:85 method=Health result=2 took=29.379µs +ts=2025-05-22T08:37:44Z caller=logging.go:85 method=Health result=2 took=41.379µs +ts=2025-05-22T08:37:47Z caller=logging.go:85 method=Health result=2 took=35.15µs +ts=2025-05-22T08:37:47Z caller=logging.go:85 method=Health result=2 took=34.14µs +ts=2025-05-22T08:37:50Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T08:37:50Z caller=logging.go:85 method=Health result=2 took=56.038µs +ts=2025-05-22T08:37:53Z caller=logging.go:85 method=Health result=2 took=74.168µs +ts=2025-05-22T08:37:53Z caller=logging.go:85 method=Health result=2 took=74.238µs +ts=2025-05-22T08:37:56Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:37:56Z caller=logging.go:85 method=Health result=2 took=24.43µs +ts=2025-05-22T08:37:59Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T08:37:59Z caller=logging.go:85 method=Health result=2 took=49.609µs +ts=2025-05-22T08:38:02Z caller=logging.go:85 method=Health result=2 took=29.759µs +ts=2025-05-22T08:38:02Z caller=logging.go:85 method=Health result=2 took=16.55µs +ts=2025-05-22T08:38:05Z caller=logging.go:85 method=Health result=2 took=33.679µs +ts=2025-05-22T08:38:05Z caller=logging.go:85 method=Health result=2 took=33.709µs +ts=2025-05-22T08:38:08Z caller=logging.go:85 method=Health result=2 took=37.889µs +ts=2025-05-22T08:38:08Z caller=logging.go:85 method=Health result=2 took=37.649µs +ts=2025-05-22T08:38:11Z caller=logging.go:85 method=Health result=2 took=38.909µs +ts=2025-05-22T08:38:11Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T08:38:14Z caller=logging.go:85 method=Health result=2 took=41.529µs +ts=2025-05-22T08:38:14Z caller=logging.go:85 method=Health result=2 took=46.309µs +ts=2025-05-22T08:38:17Z caller=logging.go:85 method=Health result=2 took=77.219µs +ts=2025-05-22T08:38:17Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T08:38:20Z caller=logging.go:85 method=Health result=2 took=28.709µs +ts=2025-05-22T08:38:20Z caller=logging.go:85 method=Health result=2 took=41.179µs +ts=2025-05-22T08:38:23Z caller=logging.go:85 method=Health result=2 took=40.909µs +ts=2025-05-22T08:38:23Z caller=logging.go:85 method=Health result=2 took=70.119µs +ts=2025-05-22T08:38:26Z caller=logging.go:85 method=Health result=2 took=41.309µs +ts=2025-05-22T08:38:26Z caller=logging.go:85 method=Health result=2 took=41.259µs +ts=2025-05-22T08:38:29Z caller=logging.go:85 method=Health result=2 took=43.389µs +ts=2025-05-22T08:38:29Z caller=logging.go:85 method=Health result=2 took=43.189µs +ts=2025-05-22T08:38:32Z caller=logging.go:85 method=Health result=2 took=36.149µs +ts=2025-05-22T08:38:32Z caller=logging.go:85 method=Health result=2 took=35.809µs +ts=2025-05-22T08:38:35Z caller=logging.go:85 method=Health result=2 took=52.709µs +ts=2025-05-22T08:38:35Z caller=logging.go:85 method=Health result=2 took=50.689µs +ts=2025-05-22T08:38:38Z caller=logging.go:85 method=Health result=2 took=40.269µs +ts=2025-05-22T08:38:38Z caller=logging.go:85 method=Health result=2 took=39.929µs +ts=2025-05-22T08:38:41Z caller=logging.go:85 method=Health result=2 took=37.399µs +ts=2025-05-22T08:38:41Z caller=logging.go:85 method=Health result=2 took=45.989µs +ts=2025-05-22T08:38:44Z caller=logging.go:85 method=Health result=2 took=38.049µs +ts=2025-05-22T08:38:44Z caller=logging.go:85 method=Health result=2 took=29.539µs +ts=2025-05-22T08:38:47Z caller=logging.go:85 method=Health result=2 took=39.889µs +ts=2025-05-22T08:38:47Z caller=logging.go:85 method=Health result=2 took=33.589µs +ts=2025-05-22T08:38:50Z caller=logging.go:85 method=Health result=2 took=43.119µs +ts=2025-05-22T08:38:50Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T08:38:53Z caller=logging.go:85 method=Health result=2 took=40.539µs +ts=2025-05-22T08:38:53Z caller=logging.go:85 method=Health result=2 took=32.899µs +ts=2025-05-22T08:38:56Z caller=logging.go:85 method=Health result=2 took=33.38µs +ts=2025-05-22T08:38:56Z caller=logging.go:85 method=Health result=2 took=45.149µs +ts=2025-05-22T08:38:59Z caller=logging.go:85 method=Health result=2 took=43.659µs +ts=2025-05-22T08:38:59Z caller=logging.go:85 method=Health result=2 took=28.55µs +ts=2025-05-22T08:39:02Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T08:39:02Z caller=logging.go:85 method=Health result=2 took=43.589µs +ts=2025-05-22T08:39:05Z caller=logging.go:85 method=Health result=2 took=28.449µs +ts=2025-05-22T08:39:05Z caller=logging.go:85 method=Health result=2 took=28.589µs +ts=2025-05-22T08:39:08Z caller=logging.go:85 method=Health result=2 took=42.839µs +ts=2025-05-22T08:39:08Z caller=logging.go:85 method=Health result=2 took=46.719µs +ts=2025-05-22T08:39:11Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T08:39:11Z caller=logging.go:85 method=Health result=2 took=69.408µs +ts=2025-05-22T08:39:14Z caller=logging.go:85 method=Health result=2 took=30.129µs +ts=2025-05-22T08:39:14Z caller=logging.go:85 method=Health result=2 took=38.369µs +ts=2025-05-22T08:39:17Z caller=logging.go:85 method=Health result=2 took=30.639µs +ts=2025-05-22T08:39:17Z caller=logging.go:85 method=Health result=2 took=30.579µs +ts=2025-05-22T08:39:20Z caller=logging.go:85 method=Health result=2 took=44.499µs +ts=2025-05-22T08:39:20Z caller=logging.go:85 method=Health result=2 took=30.35µs +ts=2025-05-22T08:39:23Z caller=logging.go:85 method=Health result=2 took=42.179µs +ts=2025-05-22T08:39:23Z caller=logging.go:85 method=Health result=2 took=36.669µs +ts=2025-05-22T08:39:26Z caller=logging.go:85 method=Health result=2 took=35.399µs +ts=2025-05-22T08:39:26Z caller=logging.go:85 method=Health result=2 took=46.699µs +ts=2025-05-22T08:39:29Z caller=logging.go:85 method=Health result=2 took=43.999µs +ts=2025-05-22T08:39:29Z caller=logging.go:85 method=Health result=2 took=47.169µs +ts=2025-05-22T08:39:32Z caller=logging.go:85 method=Health result=2 took=40.569µs +ts=2025-05-22T08:39:32Z caller=logging.go:85 method=Health result=2 took=40.619µs +ts=2025-05-22T08:39:35Z caller=logging.go:85 method=Health result=2 took=29.399µs +ts=2025-05-22T08:39:35Z caller=logging.go:85 method=Health result=2 took=44.419µs +ts=2025-05-22T08:39:38Z caller=logging.go:85 method=Health result=2 took=27.919µs +ts=2025-05-22T08:39:38Z caller=logging.go:85 method=Health result=2 took=27.959µs +ts=2025-05-22T08:39:41Z caller=logging.go:85 method=Health result=2 took=29.759µs +ts=2025-05-22T08:39:41Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T08:39:44Z caller=logging.go:85 method=Health result=2 took=60.529µs +ts=2025-05-22T08:39:44Z caller=logging.go:85 method=Health result=2 took=29.209µs +ts=2025-05-22T08:39:47Z caller=logging.go:85 method=Health result=2 took=35.959µs +ts=2025-05-22T08:39:47Z caller=logging.go:85 method=Health result=2 took=13.48µs +ts=2025-05-22T08:39:50Z caller=logging.go:85 method=Health result=2 took=28.599µs +ts=2025-05-22T08:39:50Z caller=logging.go:85 method=Health result=2 took=28.589µs +ts=2025-05-22T08:39:53Z caller=logging.go:85 method=Health result=2 took=31.199µs +ts=2025-05-22T08:39:53Z caller=logging.go:85 method=Health result=2 took=48.188µs +ts=2025-05-22T08:39:56Z caller=logging.go:85 method=Health result=2 took=30.389µs +ts=2025-05-22T08:39:56Z caller=logging.go:85 method=Health result=2 took=10.649µs +ts=2025-05-22T08:39:59Z caller=logging.go:85 method=Health result=2 took=29.859µs +ts=2025-05-22T08:39:59Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T08:40:02Z caller=logging.go:85 method=Health result=2 took=29.999µs +ts=2025-05-22T08:40:02Z caller=logging.go:85 method=Health result=2 took=30.119µs +ts=2025-05-22T08:40:05Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T08:40:05Z caller=logging.go:85 method=Health result=2 took=61.219µs +ts=2025-05-22T08:40:08Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T08:40:08Z caller=logging.go:85 method=Health result=2 took=49.939µs +ts=2025-05-22T08:40:11Z caller=logging.go:85 method=Health result=2 took=35.349µs +ts=2025-05-22T08:40:11Z caller=logging.go:85 method=Health result=2 took=53.189µs +ts=2025-05-22T08:40:14Z caller=logging.go:85 method=Health result=2 took=44.739µs +ts=2025-05-22T08:40:14Z caller=logging.go:85 method=Health result=2 took=38.539µs +ts=2025-05-22T08:40:17Z caller=logging.go:85 method=Health result=2 took=35.109µs +ts=2025-05-22T08:40:17Z caller=logging.go:85 method=Health result=2 took=105.288µs +ts=2025-05-22T08:40:20Z caller=logging.go:85 method=Health result=2 took=38.319µs +ts=2025-05-22T08:40:20Z caller=logging.go:85 method=Health result=2 took=37.349µs +ts=2025-05-22T08:40:23Z caller=logging.go:85 method=Health result=2 took=30.369µs +ts=2025-05-22T08:40:23Z caller=logging.go:85 method=Health result=2 took=47.239µs +ts=2025-05-22T08:40:26Z caller=logging.go:85 method=Health result=2 took=35.769µs +ts=2025-05-22T08:40:26Z caller=logging.go:85 method=Health result=2 took=35.769µs +ts=2025-05-22T08:40:29Z caller=logging.go:85 method=Health result=2 took=39.659µs +ts=2025-05-22T08:40:29Z caller=logging.go:85 method=Health result=2 took=39.239µs +ts=2025-05-22T08:40:32Z caller=logging.go:85 method=Health result=2 took=42.959µs +ts=2025-05-22T08:40:32Z caller=logging.go:85 method=Health result=2 took=47.378µs +ts=2025-05-22T08:40:35Z caller=logging.go:85 method=Health result=2 took=42.579µs +ts=2025-05-22T08:40:35Z caller=logging.go:85 method=Health result=2 took=45.429µs +ts=2025-05-22T08:40:38Z caller=logging.go:85 method=Health result=2 took=39.589µs +ts=2025-05-22T08:40:38Z caller=logging.go:85 method=Health result=2 took=45.849µs +ts=2025-05-22T08:40:41Z caller=logging.go:85 method=Health result=2 took=41.809µs +ts=2025-05-22T08:40:41Z caller=logging.go:85 method=Health result=2 took=48.699µs +ts=2025-05-22T08:40:44Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T08:40:44Z caller=logging.go:85 method=Health result=2 took=46.039µs +ts=2025-05-22T08:40:47Z caller=logging.go:85 method=Health result=2 took=41.449µs +ts=2025-05-22T08:40:47Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T08:40:50Z caller=logging.go:85 method=Health result=2 took=36.549µs +ts=2025-05-22T08:40:50Z caller=logging.go:85 method=Health result=2 took=36.309µs +ts=2025-05-22T08:40:53Z caller=logging.go:85 method=Health result=2 took=41.089µs +ts=2025-05-22T08:40:53Z caller=logging.go:85 method=Health result=2 took=46.839µs +ts=2025-05-22T08:40:56Z caller=logging.go:85 method=Health result=2 took=33.72µs +ts=2025-05-22T08:40:56Z caller=logging.go:85 method=Health result=2 took=40.399µs +ts=2025-05-22T08:40:59Z caller=logging.go:85 method=Health result=2 took=41.889µs +ts=2025-05-22T08:40:59Z caller=logging.go:85 method=Health result=2 took=29.05µs +ts=2025-05-22T08:41:02Z caller=logging.go:85 method=Health result=2 took=39.609µs +ts=2025-05-22T08:41:02Z caller=logging.go:85 method=Health result=2 took=39.629µs +ts=2025-05-22T08:41:05Z caller=logging.go:85 method=Health result=2 took=38.319µs +ts=2025-05-22T08:41:05Z caller=logging.go:85 method=Health result=2 took=38.619µs +ts=2025-05-22T08:41:08Z caller=logging.go:85 method=Health result=2 took=30.79µs +ts=2025-05-22T08:41:08Z caller=logging.go:85 method=Health result=2 took=30.72µs +ts=2025-05-22T08:41:11Z caller=logging.go:85 method=Health result=2 took=78.288µs +ts=2025-05-22T08:41:11Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T08:41:14Z caller=logging.go:85 method=Health result=2 took=44.149µs +ts=2025-05-22T08:41:14Z caller=logging.go:85 method=Health result=2 took=30.109µs +ts=2025-05-22T08:41:17Z caller=logging.go:85 method=Health result=2 took=27.46µs +ts=2025-05-22T08:41:17Z caller=logging.go:85 method=Health result=2 took=27.51µs +ts=2025-05-22T08:41:20Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T08:41:20Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T08:41:23Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T08:41:23Z caller=logging.go:85 method=Health result=2 took=48.149µs +ts=2025-05-22T08:41:26Z caller=logging.go:85 method=Health result=2 took=43.519µs +ts=2025-05-22T08:41:26Z caller=logging.go:85 method=Health result=2 took=42.419µs +ts=2025-05-22T08:41:29Z caller=logging.go:85 method=Health result=2 took=45.099µs +ts=2025-05-22T08:41:29Z caller=logging.go:85 method=Health result=2 took=44.399µs +ts=2025-05-22T08:41:32Z caller=logging.go:85 method=Health result=2 took=31.769µs +ts=2025-05-22T08:41:32Z caller=logging.go:85 method=Health result=2 took=10.57µs +ts=2025-05-22T08:41:35Z caller=logging.go:85 method=Health result=2 took=42.839µs +ts=2025-05-22T08:41:35Z caller=logging.go:85 method=Health result=2 took=62.069µs +ts=2025-05-22T08:41:38Z caller=logging.go:85 method=Health result=2 took=55.859µs +ts=2025-05-22T08:41:38Z caller=logging.go:85 method=Health result=2 took=51.929µs +ts=2025-05-22T08:41:41Z caller=logging.go:85 method=Health result=2 took=40.329µs +ts=2025-05-22T08:41:41Z caller=logging.go:85 method=Health result=2 took=40.399µs +ts=2025-05-22T08:41:44Z caller=logging.go:85 method=Health result=2 took=30.859µs +ts=2025-05-22T08:41:44Z caller=logging.go:85 method=Health result=2 took=13.55µs +ts=2025-05-22T08:41:47Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T08:41:47Z caller=logging.go:85 method=Health result=2 took=34.27µs +ts=2025-05-22T08:41:50Z caller=logging.go:85 method=Health result=2 took=36.689µs +ts=2025-05-22T08:41:50Z caller=logging.go:85 method=Health result=2 took=37.169µs +ts=2025-05-22T08:41:53Z caller=logging.go:85 method=Health result=2 took=30.489µs +ts=2025-05-22T08:41:53Z caller=logging.go:85 method=Health result=2 took=30.499µs +ts=2025-05-22T08:41:56Z caller=logging.go:85 method=Health result=2 took=22.83µs +ts=2025-05-22T08:41:56Z caller=logging.go:85 method=Health result=2 took=48.649µs +ts=2025-05-22T08:41:59Z caller=logging.go:85 method=Health result=2 took=39.12µs +ts=2025-05-22T08:41:59Z caller=logging.go:85 method=Health result=2 took=48.509µs +ts=2025-05-22T08:42:02Z caller=logging.go:85 method=Health result=2 took=44.029µs +ts=2025-05-22T08:42:02Z caller=logging.go:85 method=Health result=2 took=47.139µs +ts=2025-05-22T08:42:05Z caller=logging.go:85 method=Health result=2 took=28.65µs +ts=2025-05-22T08:42:05Z caller=logging.go:85 method=Health result=2 took=39.05µs +ts=2025-05-22T08:42:08Z caller=logging.go:85 method=Health result=2 took=41.319µs +ts=2025-05-22T08:42:08Z caller=logging.go:85 method=Health result=2 took=46.279µs +ts=2025-05-22T08:42:11Z caller=logging.go:85 method=Health result=2 took=49.538µs +ts=2025-05-22T08:42:11Z caller=logging.go:85 method=Health result=2 took=49.938µs +ts=2025-05-22T08:42:14Z caller=logging.go:85 method=Health result=2 took=44.619µs +ts=2025-05-22T08:42:14Z caller=logging.go:85 method=Health result=2 took=44.879µs +ts=2025-05-22T08:42:17Z caller=logging.go:85 method=Health result=2 took=62.638µs +ts=2025-05-22T08:42:17Z caller=logging.go:85 method=Health result=2 took=1.221501ms +ts=2025-05-22T08:42:20Z caller=logging.go:85 method=Health result=2 took=34.069µs +ts=2025-05-22T08:42:20Z caller=logging.go:85 method=Health result=2 took=45.798µs +ts=2025-05-22T08:42:23Z caller=logging.go:85 method=Health result=2 took=41.379µs +ts=2025-05-22T08:42:23Z caller=logging.go:85 method=Health result=2 took=51.059µs +ts=2025-05-22T08:42:26Z caller=logging.go:85 method=Health result=2 took=30.519µs +ts=2025-05-22T08:42:26Z caller=logging.go:85 method=Health result=2 took=10.64µs +ts=2025-05-22T08:42:29Z caller=logging.go:85 method=Health result=2 took=38.59µs +ts=2025-05-22T08:42:29Z caller=logging.go:85 method=Health result=2 took=31.379µs +ts=2025-05-22T08:42:32Z caller=logging.go:85 method=Health result=2 took=38.189µs +ts=2025-05-22T08:42:32Z caller=logging.go:85 method=Health result=2 took=42.349µs +ts=2025-05-22T08:42:35Z caller=logging.go:85 method=Health result=2 took=31.739µs +ts=2025-05-22T08:42:35Z caller=logging.go:85 method=Health result=2 took=33.599µs +ts=2025-05-22T08:42:38Z caller=logging.go:85 method=Health result=2 took=38.589µs +ts=2025-05-22T08:42:38Z caller=logging.go:85 method=Health result=2 took=45.129µs +ts=2025-05-22T08:42:41Z caller=logging.go:85 method=Health result=2 took=44.429µs +ts=2025-05-22T08:42:41Z caller=logging.go:85 method=Health result=2 took=33.639µs +ts=2025-05-22T08:42:44Z caller=logging.go:85 method=Health result=2 took=38.689µs +ts=2025-05-22T08:42:44Z caller=logging.go:85 method=Health result=2 took=93.318µs +ts=2025-05-22T08:42:47Z caller=logging.go:85 method=Health result=2 took=28.7µs +ts=2025-05-22T08:42:47Z caller=logging.go:85 method=Health result=2 took=47.299µs +ts=2025-05-22T08:42:50Z caller=logging.go:85 method=Health result=2 took=35.659µs +ts=2025-05-22T08:42:50Z caller=logging.go:85 method=Health result=2 took=35.359µs +ts=2025-05-22T08:42:53Z caller=logging.go:85 method=Health result=2 took=58.169µs +ts=2025-05-22T08:42:53Z caller=logging.go:85 method=Health result=2 took=58.179µs +ts=2025-05-22T08:42:56Z caller=logging.go:85 method=Health result=2 took=35.859µs +ts=2025-05-22T08:42:56Z caller=logging.go:85 method=Health result=2 took=36.169µs +ts=2025-05-22T08:42:59Z caller=logging.go:85 method=Health result=2 took=40.789µs +ts=2025-05-22T08:42:59Z caller=logging.go:85 method=Health result=2 took=25.389µs +ts=2025-05-22T08:43:02Z caller=logging.go:85 method=Health result=2 took=31.07µs +ts=2025-05-22T08:43:02Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T08:43:05Z caller=logging.go:85 method=Health result=2 took=45.059µs +ts=2025-05-22T08:43:05Z caller=logging.go:85 method=Health result=2 took=47.539µs +ts=2025-05-22T08:43:08Z caller=logging.go:85 method=Health result=2 took=39.659µs +ts=2025-05-22T08:43:08Z caller=logging.go:85 method=Health result=2 took=29.899µs +ts=2025-05-22T08:43:11Z caller=logging.go:85 method=Health result=2 took=43.518µs +ts=2025-05-22T08:43:11Z caller=logging.go:85 method=Health result=2 took=49.229µs +ts=2025-05-22T08:43:14Z caller=logging.go:85 method=Health result=2 took=30.299µs +ts=2025-05-22T08:43:14Z caller=logging.go:85 method=Health result=2 took=43.779µs +ts=2025-05-22T08:43:17Z caller=logging.go:85 method=Health result=2 took=27.44µs +ts=2025-05-22T08:43:17Z caller=logging.go:85 method=Health result=2 took=16.12µs +ts=2025-05-22T08:43:20Z caller=logging.go:85 method=Health result=2 took=35.95µs +ts=2025-05-22T08:43:20Z caller=logging.go:85 method=Health result=2 took=35.3µs +ts=2025-05-22T08:43:23Z caller=logging.go:85 method=Health result=2 took=44.369µs +ts=2025-05-22T08:43:23Z caller=logging.go:85 method=Health result=2 took=45.669µs +ts=2025-05-22T08:43:26Z caller=logging.go:85 method=Health result=2 took=38.599µs +ts=2025-05-22T08:43:26Z caller=logging.go:85 method=Health result=2 took=46.839µs +ts=2025-05-22T08:43:29Z caller=logging.go:85 method=Health result=2 took=44.439µs +ts=2025-05-22T08:43:29Z caller=logging.go:85 method=Health result=2 took=51.249µs +ts=2025-05-22T08:43:32Z caller=logging.go:85 method=Health result=2 took=41.629µs +ts=2025-05-22T08:43:32Z caller=logging.go:85 method=Health result=2 took=41.499µs +ts=2025-05-22T08:43:35Z caller=logging.go:85 method=Health result=2 took=59.059µs +ts=2025-05-22T08:43:35Z caller=logging.go:85 method=Health result=2 took=41.339µs +ts=2025-05-22T08:43:38Z caller=logging.go:85 method=Health result=2 took=42.109µs +ts=2025-05-22T08:43:38Z caller=logging.go:85 method=Health result=2 took=27.569µs +ts=2025-05-22T08:43:41Z caller=logging.go:85 method=Health result=2 took=44.119µs +ts=2025-05-22T08:43:41Z caller=logging.go:85 method=Health result=2 took=44.879µs +ts=2025-05-22T08:43:44Z caller=logging.go:85 method=Health result=2 took=40.129µs +ts=2025-05-22T08:43:44Z caller=logging.go:85 method=Health result=2 took=28.16µs +ts=2025-05-22T08:43:47Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T08:43:47Z caller=logging.go:85 method=Health result=2 took=18.06µs +ts=2025-05-22T08:43:50Z caller=logging.go:85 method=Health result=2 took=32.099µs +ts=2025-05-22T08:43:50Z caller=logging.go:85 method=Health result=2 took=43.739µs +ts=2025-05-22T08:43:53Z caller=logging.go:85 method=Health result=2 took=45.439µs +ts=2025-05-22T08:43:53Z caller=logging.go:85 method=Health result=2 took=48.459µs +ts=2025-05-22T08:43:56Z caller=logging.go:85 method=Health result=2 took=44.669µs +ts=2025-05-22T08:43:56Z caller=logging.go:85 method=Health result=2 took=45.579µs +ts=2025-05-22T08:43:59Z caller=logging.go:85 method=Health result=2 took=39.479µs +ts=2025-05-22T08:43:59Z caller=logging.go:85 method=Health result=2 took=38.199µs +ts=2025-05-22T08:44:02Z caller=logging.go:85 method=Health result=2 took=40.759µs +ts=2025-05-22T08:44:02Z caller=logging.go:85 method=Health result=2 took=22.94µs +ts=2025-05-22T08:44:05Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T08:44:05Z caller=logging.go:85 method=Health result=2 took=47.749µs +ts=2025-05-22T08:44:08Z caller=logging.go:85 method=Health result=2 took=52.749µs +ts=2025-05-22T08:44:08Z caller=logging.go:85 method=Health result=2 took=45.359µs +ts=2025-05-22T08:44:11Z caller=logging.go:85 method=Health result=2 took=36.969µs +ts=2025-05-22T08:44:11Z caller=logging.go:85 method=Health result=2 took=29.309µs +ts=2025-05-22T08:44:14Z caller=logging.go:85 method=Health result=2 took=31.18µs +ts=2025-05-22T08:44:14Z caller=logging.go:85 method=Health result=2 took=10.479µs +ts=2025-05-22T08:44:17Z caller=logging.go:85 method=Health result=2 took=1.137313ms +ts=2025-05-22T08:44:17Z caller=logging.go:85 method=Health result=2 took=15.27µs +ts=2025-05-22T08:44:20Z caller=logging.go:85 method=Health result=2 took=35.699µs +ts=2025-05-22T08:44:20Z caller=logging.go:85 method=Health result=2 took=35.659µs +ts=2025-05-22T08:44:23Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T08:44:23Z caller=logging.go:85 method=Health result=2 took=41.589µs +ts=2025-05-22T08:44:26Z caller=logging.go:85 method=Health result=2 took=41.229µs +ts=2025-05-22T08:44:26Z caller=logging.go:85 method=Health result=2 took=29.439µs +ts=2025-05-22T08:44:29Z caller=logging.go:85 method=Health result=2 took=35.479µs +ts=2025-05-22T08:44:29Z caller=logging.go:85 method=Health result=2 took=35.559µs +ts=2025-05-22T08:44:32Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T08:44:32Z caller=logging.go:85 method=Health result=2 took=48.309µs +ts=2025-05-22T08:44:35Z caller=logging.go:85 method=Health result=2 took=42.709µs +ts=2025-05-22T08:44:35Z caller=logging.go:85 method=Health result=2 took=46.549µs +ts=2025-05-22T08:44:38Z caller=logging.go:85 method=Health result=2 took=44.429µs +ts=2025-05-22T08:44:38Z caller=logging.go:85 method=Health result=2 took=51.898µs +ts=2025-05-22T08:44:41Z caller=logging.go:85 method=Health result=2 took=42.859µs +ts=2025-05-22T08:44:41Z caller=logging.go:85 method=Health result=2 took=27.999µs +ts=2025-05-22T08:44:44Z caller=logging.go:85 method=Health result=2 took=40.389µs +ts=2025-05-22T08:44:44Z caller=logging.go:85 method=Health result=2 took=29.099µs +ts=2025-05-22T08:44:47Z caller=logging.go:85 method=Health result=2 took=48.659µs +ts=2025-05-22T08:44:47Z caller=logging.go:85 method=Health result=2 took=62.878µs +ts=2025-05-22T08:44:50Z caller=logging.go:85 method=Health result=2 took=27.84µs +ts=2025-05-22T08:44:50Z caller=logging.go:85 method=Health result=2 took=27.62µs +ts=2025-05-22T08:44:53Z caller=logging.go:85 method=Health result=2 took=31.84µs +ts=2025-05-22T08:44:53Z caller=logging.go:85 method=Health result=2 took=15.509µs +ts=2025-05-22T08:44:56Z caller=logging.go:85 method=Health result=2 took=35.449µs +ts=2025-05-22T08:44:56Z caller=logging.go:85 method=Health result=2 took=43.259µs +ts=2025-05-22T08:44:59Z caller=logging.go:85 method=Health result=2 took=29.899µs +ts=2025-05-22T08:44:59Z caller=logging.go:85 method=Health result=2 took=46.489µs +ts=2025-05-22T08:45:02Z caller=logging.go:85 method=Health result=2 took=42.349µs +ts=2025-05-22T08:45:02Z caller=logging.go:85 method=Health result=2 took=42.469µs +ts=2025-05-22T08:45:05Z caller=logging.go:85 method=Health result=2 took=45.289µs +ts=2025-05-22T08:45:05Z caller=logging.go:85 method=Health result=2 took=45.079µs +ts=2025-05-22T08:45:08Z caller=logging.go:85 method=Health result=2 took=37.129µs +ts=2025-05-22T08:45:08Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T08:45:11Z caller=logging.go:85 method=Health result=2 took=41.779µs +ts=2025-05-22T08:45:11Z caller=logging.go:85 method=Health result=2 took=27.029µs +ts=2025-05-22T08:45:14Z caller=logging.go:85 method=Health result=2 took=42.159µs +ts=2025-05-22T08:45:14Z caller=logging.go:85 method=Health result=2 took=57.159µs +ts=2025-05-22T08:45:17Z caller=logging.go:85 method=Health result=2 took=39.349µs +ts=2025-05-22T08:45:17Z caller=logging.go:85 method=Health result=2 took=30.26µs +ts=2025-05-22T08:45:20Z caller=logging.go:85 method=Health result=2 took=42.609µs +ts=2025-05-22T08:45:20Z caller=logging.go:85 method=Health result=2 took=46.539µs +ts=2025-05-22T08:45:23Z caller=logging.go:85 method=Health result=2 took=52.929µs +ts=2025-05-22T08:45:23Z caller=logging.go:85 method=Health result=2 took=66.268µs +ts=2025-05-22T08:45:26Z caller=logging.go:85 method=Health result=2 took=43.469µs +ts=2025-05-22T08:45:26Z caller=logging.go:85 method=Health result=2 took=46.389µs +ts=2025-05-22T08:45:29Z caller=logging.go:85 method=Health result=2 took=42.339µs +ts=2025-05-22T08:45:29Z caller=logging.go:85 method=Health result=2 took=46.549µs +ts=2025-05-22T08:45:32Z caller=logging.go:85 method=Health result=2 took=47.139µs +ts=2025-05-22T08:45:32Z caller=logging.go:85 method=Health result=2 took=49.109µs +ts=2025-05-22T08:45:35Z caller=logging.go:85 method=Health result=2 took=37.559µs +ts=2025-05-22T08:45:35Z caller=logging.go:85 method=Health result=2 took=44.299µs +ts=2025-05-22T08:45:38Z caller=logging.go:85 method=Health result=2 took=52.709µs +ts=2025-05-22T08:45:38Z caller=logging.go:85 method=Health result=2 took=53.909µs +ts=2025-05-22T08:45:41Z caller=logging.go:85 method=Health result=2 took=40.639µs +ts=2025-05-22T08:45:41Z caller=logging.go:85 method=Health result=2 took=102.447µs +ts=2025-05-22T08:45:44Z caller=logging.go:85 method=Health result=2 took=45.059µs +ts=2025-05-22T08:45:44Z caller=logging.go:85 method=Health result=2 took=26.069µs +ts=2025-05-22T08:45:47Z caller=logging.go:85 method=Health result=2 took=45.109µs +ts=2025-05-22T08:45:47Z caller=logging.go:85 method=Health result=2 took=49.139µs +ts=2025-05-22T08:45:50Z caller=logging.go:85 method=Health result=2 took=34.399µs +ts=2025-05-22T08:45:50Z caller=logging.go:85 method=Health result=2 took=64.188µs +ts=2025-05-22T08:45:53Z caller=logging.go:85 method=Health result=2 took=29.41µs +ts=2025-05-22T08:45:53Z caller=logging.go:85 method=Health result=2 took=29.84µs +ts=2025-05-22T08:45:56Z caller=logging.go:85 method=Health result=2 took=41.509µs +ts=2025-05-22T08:45:56Z caller=logging.go:85 method=Health result=2 took=32.829µs +ts=2025-05-22T08:45:59Z caller=logging.go:85 method=Health result=2 took=36.589µs +ts=2025-05-22T08:45:59Z caller=logging.go:85 method=Health result=2 took=36.559µs +ts=2025-05-22T08:46:02Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T08:46:02Z caller=logging.go:85 method=Health result=2 took=48.479µs +ts=2025-05-22T08:46:05Z caller=logging.go:85 method=Health result=2 took=30.899µs +ts=2025-05-22T08:46:05Z caller=logging.go:85 method=Health result=2 took=45.079µs +ts=2025-05-22T08:46:08Z caller=logging.go:85 method=Health result=2 took=51.779µs +ts=2025-05-22T08:46:08Z caller=logging.go:85 method=Health result=2 took=23.46µs +ts=2025-05-22T08:46:11Z caller=logging.go:85 method=Health result=2 took=39.289µs +ts=2025-05-22T08:46:11Z caller=logging.go:85 method=Health result=2 took=40.039µs +ts=2025-05-22T08:46:14Z caller=logging.go:85 method=Health result=2 took=39.669µs +ts=2025-05-22T08:46:14Z caller=logging.go:85 method=Health result=2 took=40.039µs +ts=2025-05-22T08:46:17Z caller=logging.go:85 method=Health result=2 took=33.089µs +ts=2025-05-22T08:46:17Z caller=logging.go:85 method=Health result=2 took=71.029µs +ts=2025-05-22T08:46:20Z caller=logging.go:85 method=Health result=2 took=30.769µs +ts=2025-05-22T08:46:20Z caller=logging.go:85 method=Health result=2 took=45.938µs +ts=2025-05-22T08:46:23Z caller=logging.go:85 method=Health result=2 took=38.869µs +ts=2025-05-22T08:46:23Z caller=logging.go:85 method=Health result=2 took=47.739µs +ts=2025-05-22T08:46:26Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T08:46:26Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T08:46:29Z caller=logging.go:85 method=Health result=2 took=42.209µs +ts=2025-05-22T08:46:29Z caller=logging.go:85 method=Health result=2 took=48.378µs +ts=2025-05-22T08:46:32Z caller=logging.go:85 method=Health result=2 took=54.119µs +ts=2025-05-22T08:46:32Z caller=logging.go:85 method=Health result=2 took=54.109µs +ts=2025-05-22T08:46:35Z caller=logging.go:85 method=Health result=2 took=37.719µs +ts=2025-05-22T08:46:35Z caller=logging.go:85 method=Health result=2 took=37.019µs +ts=2025-05-22T08:46:38Z caller=logging.go:85 method=Health result=2 took=42.879µs +ts=2025-05-22T08:46:38Z caller=logging.go:85 method=Health result=2 took=41.499µs +ts=2025-05-22T08:46:41Z caller=logging.go:85 method=Health result=2 took=43.009µs +ts=2025-05-22T08:46:41Z caller=logging.go:85 method=Health result=2 took=46.859µs +ts=2025-05-22T08:46:44Z caller=logging.go:85 method=Health result=2 took=45.228µs +ts=2025-05-22T08:46:44Z caller=logging.go:85 method=Health result=2 took=49.869µs +ts=2025-05-22T08:46:47Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T08:46:47Z caller=logging.go:85 method=Health result=2 took=42.329µs +ts=2025-05-22T08:46:50Z caller=logging.go:85 method=Health result=2 took=28.06µs +ts=2025-05-22T08:46:50Z caller=logging.go:85 method=Health result=2 took=28.02µs +ts=2025-05-22T08:46:53Z caller=logging.go:85 method=Health result=2 took=52.549µs +ts=2025-05-22T08:46:53Z caller=logging.go:85 method=Health result=2 took=52.569µs +ts=2025-05-22T08:46:56Z caller=logging.go:85 method=Health result=2 took=30.199µs +ts=2025-05-22T08:46:56Z caller=logging.go:85 method=Health result=2 took=30.209µs +ts=2025-05-22T08:46:59Z caller=logging.go:85 method=Health result=2 took=38.759µs +ts=2025-05-22T08:46:59Z caller=logging.go:85 method=Health result=2 took=46.699µs +ts=2025-05-22T08:47:02Z caller=logging.go:85 method=Health result=2 took=42.799µs +ts=2025-05-22T08:47:02Z caller=logging.go:85 method=Health result=2 took=33.369µs +ts=2025-05-22T08:47:05Z caller=logging.go:85 method=Health result=2 took=42.399µs +ts=2025-05-22T08:47:05Z caller=logging.go:85 method=Health result=2 took=18.17µs +ts=2025-05-22T08:47:08Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T08:47:08Z caller=logging.go:85 method=Health result=2 took=47.939µs +ts=2025-05-22T08:47:11Z caller=logging.go:85 method=Health result=2 took=32.739µs +ts=2025-05-22T08:47:11Z caller=logging.go:85 method=Health result=2 took=47.538µs +ts=2025-05-22T08:47:14Z caller=logging.go:85 method=Health result=2 took=30.759µs +ts=2025-05-22T08:47:14Z caller=logging.go:85 method=Health result=2 took=17.96µs +ts=2025-05-22T08:47:17Z caller=logging.go:85 method=Health result=2 took=42.049µs +ts=2025-05-22T08:47:17Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T08:47:20Z caller=logging.go:85 method=Health result=2 took=39.969µs +ts=2025-05-22T08:47:20Z caller=logging.go:85 method=Health result=2 took=40.029µs +ts=2025-05-22T08:47:23Z caller=logging.go:85 method=Health result=2 took=39.069µs +ts=2025-05-22T08:47:23Z caller=logging.go:85 method=Health result=2 took=47.179µs +ts=2025-05-22T08:47:26Z caller=logging.go:85 method=Health result=2 took=58.049µs +ts=2025-05-22T08:47:26Z caller=logging.go:85 method=Health result=2 took=58.089µs +ts=2025-05-22T08:47:29Z caller=logging.go:85 method=Health result=2 took=41.359µs +ts=2025-05-22T08:47:29Z caller=logging.go:85 method=Health result=2 took=50.719µs +ts=2025-05-22T08:47:32Z caller=logging.go:85 method=Health result=2 took=38.009µs +ts=2025-05-22T08:47:32Z caller=logging.go:85 method=Health result=2 took=46.219µs +ts=2025-05-22T08:47:35Z caller=logging.go:85 method=Health result=2 took=37.649µs +ts=2025-05-22T08:47:35Z caller=logging.go:85 method=Health result=2 took=37.729µs +ts=2025-05-22T08:47:38Z caller=logging.go:85 method=Health result=2 took=36.279µs +ts=2025-05-22T08:47:38Z caller=logging.go:85 method=Health result=2 took=36.809µs +ts=2025-05-22T08:47:41Z caller=logging.go:85 method=Health result=2 took=42.669µs +ts=2025-05-22T08:47:41Z caller=logging.go:85 method=Health result=2 took=51.969µs +ts=2025-05-22T08:47:44Z caller=logging.go:85 method=Health result=2 took=45.259µs +ts=2025-05-22T08:47:44Z caller=logging.go:85 method=Health result=2 took=49.069µs +ts=2025-05-22T08:47:47Z caller=logging.go:85 method=Health result=2 took=35.449µs +ts=2025-05-22T08:47:47Z caller=logging.go:85 method=Health result=2 took=35.429µs +ts=2025-05-22T08:47:50Z caller=logging.go:85 method=Health result=2 took=38.009µs +ts=2025-05-22T08:47:50Z caller=logging.go:85 method=Health result=2 took=38.059µs +ts=2025-05-22T08:47:53Z caller=logging.go:85 method=Health result=2 took=39.069µs +ts=2025-05-22T08:47:53Z caller=logging.go:85 method=Health result=2 took=42.378µs +ts=2025-05-22T08:47:56Z caller=logging.go:85 method=Health result=2 took=50.419µs +ts=2025-05-22T08:47:56Z caller=logging.go:85 method=Health result=2 took=50.179µs +ts=2025-05-22T08:47:59Z caller=logging.go:85 method=Health result=2 took=40.479µs +ts=2025-05-22T08:47:59Z caller=logging.go:85 method=Health result=2 took=23.189µs +ts=2025-05-22T08:48:02Z caller=logging.go:85 method=Health result=2 took=40.009µs +ts=2025-05-22T08:48:02Z caller=logging.go:85 method=Health result=2 took=40.559µs +ts=2025-05-22T08:48:05Z caller=logging.go:85 method=Health result=2 took=45.609µs +ts=2025-05-22T08:48:05Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T08:48:08Z caller=logging.go:85 method=Health result=2 took=39.499µs +ts=2025-05-22T08:48:08Z caller=logging.go:85 method=Health result=2 took=40.279µs +ts=2025-05-22T08:48:11Z caller=logging.go:85 method=Health result=2 took=30.9µs +ts=2025-05-22T08:48:11Z caller=logging.go:85 method=Health result=2 took=46.429µs +ts=2025-05-22T08:48:14Z caller=logging.go:85 method=Health result=2 took=43.959µs +ts=2025-05-22T08:48:14Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T08:48:17Z caller=logging.go:85 method=Health result=2 took=37.199µs +ts=2025-05-22T08:48:17Z caller=logging.go:85 method=Health result=2 took=888.999µs +ts=2025-05-22T08:48:20Z caller=logging.go:85 method=Health result=2 took=30.399µs +ts=2025-05-22T08:48:20Z caller=logging.go:85 method=Health result=2 took=30.379µs +ts=2025-05-22T08:48:23Z caller=logging.go:85 method=Health result=2 took=32.399µs +ts=2025-05-22T08:48:23Z caller=logging.go:85 method=Health result=2 took=46.269µs +ts=2025-05-22T08:48:26Z caller=logging.go:85 method=Health result=2 took=38.789µs +ts=2025-05-22T08:48:26Z caller=logging.go:85 method=Health result=2 took=39.119µs +ts=2025-05-22T08:48:29Z caller=logging.go:85 method=Health result=2 took=42.429µs +ts=2025-05-22T08:48:29Z caller=logging.go:85 method=Health result=2 took=31.369µs +ts=2025-05-22T08:48:32Z caller=logging.go:85 method=Health result=2 took=45.959µs +ts=2025-05-22T08:48:32Z caller=logging.go:85 method=Health result=2 took=48.099µs +ts=2025-05-22T08:48:35Z caller=logging.go:85 method=Health result=2 took=44.499µs +ts=2025-05-22T08:48:35Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T08:48:38Z caller=logging.go:85 method=Health result=2 took=41.159µs +ts=2025-05-22T08:48:38Z caller=logging.go:85 method=Health result=2 took=38.559µs +ts=2025-05-22T08:48:41Z caller=logging.go:85 method=Health result=2 took=41.239µs +ts=2025-05-22T08:48:41Z caller=logging.go:85 method=Health result=2 took=46.589µs +ts=2025-05-22T08:48:44Z caller=logging.go:85 method=Health result=2 took=37.829µs +ts=2025-05-22T08:48:44Z caller=logging.go:85 method=Health result=2 took=36.359µs +ts=2025-05-22T08:48:47Z caller=logging.go:85 method=Health result=2 took=39.859µs +ts=2025-05-22T08:48:47Z caller=logging.go:85 method=Health result=2 took=39.139µs +ts=2025-05-22T08:48:50Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T08:48:50Z caller=logging.go:85 method=Health result=2 took=44.729µs +ts=2025-05-22T08:48:53Z caller=logging.go:85 method=Health result=2 took=27.1µs +ts=2025-05-22T08:48:53Z caller=logging.go:85 method=Health result=2 took=41.749µs +ts=2025-05-22T08:48:56Z caller=logging.go:85 method=Health result=2 took=41.239µs +ts=2025-05-22T08:48:56Z caller=logging.go:85 method=Health result=2 took=48.349µs +ts=2025-05-22T08:48:59Z caller=logging.go:85 method=Health result=2 took=41.369µs +ts=2025-05-22T08:48:59Z caller=logging.go:85 method=Health result=2 took=50.909µs +ts=2025-05-22T08:49:02Z caller=logging.go:85 method=Health result=2 took=42.009µs +ts=2025-05-22T08:49:02Z caller=logging.go:85 method=Health result=2 took=47.879µs +ts=2025-05-22T08:49:05Z caller=logging.go:85 method=Health result=2 took=34.669µs +ts=2025-05-22T08:49:05Z caller=logging.go:85 method=Health result=2 took=55.279µs +ts=2025-05-22T08:49:08Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T08:49:08Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T08:49:11Z caller=logging.go:85 method=Health result=2 took=35.849µs +ts=2025-05-22T08:49:11Z caller=logging.go:85 method=Health result=2 took=36.609µs +ts=2025-05-22T08:49:14Z caller=logging.go:85 method=Health result=2 took=29.319µs +ts=2025-05-22T08:49:14Z caller=logging.go:85 method=Health result=2 took=29.359µs +ts=2025-05-22T08:49:17Z caller=logging.go:85 method=Health result=2 took=37.39µs +ts=2025-05-22T08:49:17Z caller=logging.go:85 method=Health result=2 took=38.03µs +ts=2025-05-22T08:49:20Z caller=logging.go:85 method=Health result=2 took=28.509µs +ts=2025-05-22T08:49:20Z caller=logging.go:85 method=Health result=2 took=28.529µs +ts=2025-05-22T08:49:23Z caller=logging.go:85 method=Health result=2 took=40.659µs +ts=2025-05-22T08:49:23Z caller=logging.go:85 method=Health result=2 took=41.169µs +ts=2025-05-22T08:49:26Z caller=logging.go:85 method=Health result=2 took=45.249µs +ts=2025-05-22T08:49:26Z caller=logging.go:85 method=Health result=2 took=26.82µs +ts=2025-05-22T08:49:29Z caller=logging.go:85 method=Health result=2 took=42.639µs +ts=2025-05-22T08:49:29Z caller=logging.go:85 method=Health result=2 took=41.789µs +ts=2025-05-22T08:49:32Z caller=logging.go:85 method=Health result=2 took=36.119µs +ts=2025-05-22T08:49:32Z caller=logging.go:85 method=Health result=2 took=20.66µs +ts=2025-05-22T08:49:35Z caller=logging.go:85 method=Health result=2 took=42.049µs +ts=2025-05-22T08:49:35Z caller=logging.go:85 method=Health result=2 took=29.58µs +ts=2025-05-22T08:49:38Z caller=logging.go:85 method=Health result=2 took=47.739µs +ts=2025-05-22T08:49:38Z caller=logging.go:85 method=Health result=2 took=47.769µs +ts=2025-05-22T08:49:41Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T08:49:41Z caller=logging.go:85 method=Health result=2 took=30.239µs +ts=2025-05-22T08:49:44Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T08:49:44Z caller=logging.go:85 method=Health result=2 took=41.089µs +ts=2025-05-22T08:49:47Z caller=logging.go:85 method=Health result=2 took=48.249µs +ts=2025-05-22T08:49:47Z caller=logging.go:85 method=Health result=2 took=49.159µs +ts=2025-05-22T08:49:50Z caller=logging.go:85 method=Health result=2 took=60.858µs +ts=2025-05-22T08:49:50Z caller=logging.go:85 method=Health result=2 took=60.668µs +ts=2025-05-22T08:49:53Z caller=logging.go:85 method=Health result=2 took=43.659µs +ts=2025-05-22T08:49:53Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T08:49:56Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T08:49:56Z caller=logging.go:85 method=Health result=2 took=31.769µs +ts=2025-05-22T08:49:59Z caller=logging.go:85 method=Health result=2 took=45.709µs +ts=2025-05-22T08:49:59Z caller=logging.go:85 method=Health result=2 took=52.239µs +ts=2025-05-22T08:50:02Z caller=logging.go:85 method=Health result=2 took=45.199µs +ts=2025-05-22T08:50:02Z caller=logging.go:85 method=Health result=2 took=43.389µs +ts=2025-05-22T08:50:05Z caller=logging.go:85 method=Health result=2 took=30.2µs +ts=2025-05-22T08:50:05Z caller=logging.go:85 method=Health result=2 took=14.8µs +ts=2025-05-22T08:50:08Z caller=logging.go:85 method=Health result=2 took=45.808µs +ts=2025-05-22T08:50:08Z caller=logging.go:85 method=Health result=2 took=52.919µs +ts=2025-05-22T08:50:11Z caller=logging.go:85 method=Health result=2 took=42.349µs +ts=2025-05-22T08:50:11Z caller=logging.go:85 method=Health result=2 took=32.479µs +ts=2025-05-22T08:50:14Z caller=logging.go:85 method=Health result=2 took=36.729µs +ts=2025-05-22T08:50:14Z caller=logging.go:85 method=Health result=2 took=44.889µs +ts=2025-05-22T08:50:17Z caller=logging.go:85 method=Health result=2 took=63.388µs +ts=2025-05-22T08:50:17Z caller=logging.go:85 method=Health result=2 took=36.48µs +ts=2025-05-22T08:50:20Z caller=logging.go:85 method=Health result=2 took=41.809µs +ts=2025-05-22T08:50:20Z caller=logging.go:85 method=Health result=2 took=49.439µs +ts=2025-05-22T08:50:23Z caller=logging.go:85 method=Health result=2 took=41.869µs +ts=2025-05-22T08:50:23Z caller=logging.go:85 method=Health result=2 took=30.019µs +ts=2025-05-22T08:50:26Z caller=logging.go:85 method=Health result=2 took=41.499µs +ts=2025-05-22T08:50:26Z caller=logging.go:85 method=Health result=2 took=46.049µs +ts=2025-05-22T08:50:29Z caller=logging.go:85 method=Health result=2 took=44.409µs +ts=2025-05-22T08:50:29Z caller=logging.go:85 method=Health result=2 took=45.259µs +ts=2025-05-22T08:50:32Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T08:50:32Z caller=logging.go:85 method=Health result=2 took=37.109µs +ts=2025-05-22T08:50:35Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T08:50:35Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T08:50:38Z caller=logging.go:85 method=Health result=2 took=41.129µs +ts=2025-05-22T08:50:38Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T08:50:41Z caller=logging.go:85 method=Health result=2 took=36.849µs +ts=2025-05-22T08:50:41Z caller=logging.go:85 method=Health result=2 took=27.439µs +ts=2025-05-22T08:50:44Z caller=logging.go:85 method=Health result=2 took=45.499µs +ts=2025-05-22T08:50:44Z caller=logging.go:85 method=Health result=2 took=46.159µs +ts=2025-05-22T08:50:47Z caller=logging.go:85 method=Health result=2 took=58.319µs +ts=2025-05-22T08:50:47Z caller=logging.go:85 method=Health result=2 took=22.069µs +ts=2025-05-22T08:50:50Z caller=logging.go:85 method=Health result=2 took=36.169µs +ts=2025-05-22T08:50:50Z caller=logging.go:85 method=Health result=2 took=35.239µs +ts=2025-05-22T08:50:53Z caller=logging.go:85 method=Health result=2 took=39.889µs +ts=2025-05-22T08:50:53Z caller=logging.go:85 method=Health result=2 took=45.609µs +ts=2025-05-22T08:50:56Z caller=logging.go:85 method=Health result=2 took=42.679µs +ts=2025-05-22T08:50:56Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T08:50:59Z caller=logging.go:85 method=Health result=2 took=42.129µs +ts=2025-05-22T08:50:59Z caller=logging.go:85 method=Health result=2 took=43.039µs +ts=2025-05-22T08:51:02Z caller=logging.go:85 method=Health result=2 took=44.769µs +ts=2025-05-22T08:51:02Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T08:51:05Z caller=logging.go:85 method=Health result=2 took=40.989µs +ts=2025-05-22T08:51:05Z caller=logging.go:85 method=Health result=2 took=46.449µs +ts=2025-05-22T08:51:08Z caller=logging.go:85 method=Health result=2 took=29.029µs +ts=2025-05-22T08:51:08Z caller=logging.go:85 method=Health result=2 took=15.339µs +ts=2025-05-22T08:51:11Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T08:51:11Z caller=logging.go:85 method=Health result=2 took=48.839µs +ts=2025-05-22T08:51:14Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T08:51:14Z caller=logging.go:85 method=Health result=2 took=42.149µs +ts=2025-05-22T08:51:17Z caller=logging.go:85 method=Health result=2 took=46.809µs +ts=2025-05-22T08:51:17Z caller=logging.go:85 method=Health result=2 took=49.258µs +ts=2025-05-22T08:51:20Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T08:51:20Z caller=logging.go:85 method=Health result=2 took=46.518µs +ts=2025-05-22T08:51:23Z caller=logging.go:85 method=Health result=2 took=51.779µs +ts=2025-05-22T08:51:23Z caller=logging.go:85 method=Health result=2 took=22.809µs +ts=2025-05-22T08:51:26Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T08:51:26Z caller=logging.go:85 method=Health result=2 took=47.689µs +ts=2025-05-22T08:51:29Z caller=logging.go:85 method=Health result=2 took=40.739µs +ts=2025-05-22T08:51:29Z caller=logging.go:85 method=Health result=2 took=27.35µs +ts=2025-05-22T08:51:32Z caller=logging.go:85 method=Health result=2 took=38.339µs +ts=2025-05-22T08:51:32Z caller=logging.go:85 method=Health result=2 took=38.299µs +ts=2025-05-22T08:51:35Z caller=logging.go:85 method=Health result=2 took=39.149µs +ts=2025-05-22T08:51:35Z caller=logging.go:85 method=Health result=2 took=40.949µs +ts=2025-05-22T08:51:38Z caller=logging.go:85 method=Health result=2 took=42.128µs +ts=2025-05-22T08:51:38Z caller=logging.go:85 method=Health result=2 took=46.379µs +ts=2025-05-22T08:51:41Z caller=logging.go:85 method=Health result=2 took=41.009µs +ts=2025-05-22T08:51:41Z caller=logging.go:85 method=Health result=2 took=41.279µs +ts=2025-05-22T08:51:44Z caller=logging.go:85 method=Health result=2 took=33.819µs +ts=2025-05-22T08:51:44Z caller=logging.go:85 method=Health result=2 took=46.528µs +ts=2025-05-22T08:51:47Z caller=logging.go:85 method=Health result=2 took=28.489µs +ts=2025-05-22T08:51:47Z caller=logging.go:85 method=Health result=2 took=28.489µs +ts=2025-05-22T08:51:50Z caller=logging.go:85 method=Health result=2 took=30.109µs +ts=2025-05-22T08:51:50Z caller=logging.go:85 method=Health result=2 took=10.239µs +ts=2025-05-22T08:51:53Z caller=logging.go:85 method=Health result=2 took=29.839µs +ts=2025-05-22T08:51:53Z caller=logging.go:85 method=Health result=2 took=15.72µs +ts=2025-05-22T08:51:56Z caller=logging.go:85 method=Health result=2 took=31.159µs +ts=2025-05-22T08:51:56Z caller=logging.go:85 method=Health result=2 took=47.809µs +ts=2025-05-22T08:51:59Z caller=logging.go:85 method=Health result=2 took=45.439µs +ts=2025-05-22T08:51:59Z caller=logging.go:85 method=Health result=2 took=44.639µs +ts=2025-05-22T08:52:02Z caller=logging.go:85 method=Health result=2 took=45.809µs +ts=2025-05-22T08:52:02Z caller=logging.go:85 method=Health result=2 took=60.038µs +ts=2025-05-22T08:52:05Z caller=logging.go:85 method=Health result=2 took=42.529µs +ts=2025-05-22T08:52:05Z caller=logging.go:85 method=Health result=2 took=42.219µs +ts=2025-05-22T08:52:08Z caller=logging.go:85 method=Health result=2 took=59.838µs +ts=2025-05-22T08:52:08Z caller=logging.go:85 method=Health result=2 took=59.249µs +ts=2025-05-22T08:52:11Z caller=logging.go:85 method=Health result=2 took=38.209µs +ts=2025-05-22T08:52:11Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T08:52:14Z caller=logging.go:85 method=Health result=2 took=45.129µs +ts=2025-05-22T08:52:14Z caller=logging.go:85 method=Health result=2 took=49.009µs +ts=2025-05-22T08:52:17Z caller=logging.go:85 method=Health result=2 took=32.949µs +ts=2025-05-22T08:52:17Z caller=logging.go:85 method=Health result=2 took=14.53µs +ts=2025-05-22T08:52:20Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T08:52:20Z caller=logging.go:85 method=Health result=2 took=40.759µs +ts=2025-05-22T08:52:23Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T08:52:23Z caller=logging.go:85 method=Health result=2 took=39.789µs +ts=2025-05-22T08:52:26Z caller=logging.go:85 method=Health result=2 took=29.719µs +ts=2025-05-22T08:52:26Z caller=logging.go:85 method=Health result=2 took=34.429µs +ts=2025-05-22T08:52:29Z caller=logging.go:85 method=Health result=2 took=28.889µs +ts=2025-05-22T08:52:29Z caller=logging.go:85 method=Health result=2 took=16.599µs +ts=2025-05-22T08:52:32Z caller=logging.go:85 method=Health result=2 took=38.159µs +ts=2025-05-22T08:52:32Z caller=logging.go:85 method=Health result=2 took=41.539µs +ts=2025-05-22T08:52:35Z caller=logging.go:85 method=Health result=2 took=71.488µs +ts=2025-05-22T08:52:35Z caller=logging.go:85 method=Health result=2 took=35.929µs +ts=2025-05-22T08:52:38Z caller=logging.go:85 method=Health result=2 took=45.669µs +ts=2025-05-22T08:52:38Z caller=logging.go:85 method=Health result=2 took=45.939µs +ts=2025-05-22T08:52:41Z caller=logging.go:85 method=Health result=2 took=36.179µs +ts=2025-05-22T08:52:41Z caller=logging.go:85 method=Health result=2 took=36.32µs +ts=2025-05-22T08:52:44Z caller=logging.go:85 method=Health result=2 took=46.068µs +ts=2025-05-22T08:52:44Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T08:52:47Z caller=logging.go:85 method=Health result=2 took=39.719µs +ts=2025-05-22T08:52:47Z caller=logging.go:85 method=Health result=2 took=38.359µs +ts=2025-05-22T08:52:50Z caller=logging.go:85 method=Health result=2 took=36.109µs +ts=2025-05-22T08:52:50Z caller=logging.go:85 method=Health result=2 took=23.079µs +ts=2025-05-22T08:52:53Z caller=logging.go:85 method=Health result=2 took=43.549µs +ts=2025-05-22T08:52:53Z caller=logging.go:85 method=Health result=2 took=47.929µs +ts=2025-05-22T08:52:56Z caller=logging.go:85 method=Health result=2 took=33.249µs +ts=2025-05-22T08:52:56Z caller=logging.go:85 method=Health result=2 took=44.079µs +ts=2025-05-22T08:52:59Z caller=logging.go:85 method=Health result=2 took=29.2µs +ts=2025-05-22T08:52:59Z caller=logging.go:85 method=Health result=2 took=26.16µs +ts=2025-05-22T08:53:02Z caller=logging.go:85 method=Health result=2 took=37.25µs +ts=2025-05-22T08:53:02Z caller=logging.go:85 method=Health result=2 took=57.379µs +ts=2025-05-22T08:53:05Z caller=logging.go:85 method=Health result=2 took=44.058µs +ts=2025-05-22T08:53:05Z caller=logging.go:85 method=Health result=2 took=61.168µs +ts=2025-05-22T08:53:08Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T08:53:08Z caller=logging.go:85 method=Health result=2 took=44.819µs +ts=2025-05-22T08:53:11Z caller=logging.go:85 method=Health result=2 took=39.149µs +ts=2025-05-22T08:53:11Z caller=logging.go:85 method=Health result=2 took=46.939µs +ts=2025-05-22T08:53:14Z caller=logging.go:85 method=Health result=2 took=40.519µs +ts=2025-05-22T08:53:14Z caller=logging.go:85 method=Health result=2 took=41.349µs +ts=2025-05-22T08:53:17Z caller=logging.go:85 method=Health result=2 took=38.889µs +ts=2025-05-22T08:53:17Z caller=logging.go:85 method=Health result=2 took=41.829µs +ts=2025-05-22T08:53:20Z caller=logging.go:85 method=Health result=2 took=30.269µs +ts=2025-05-22T08:53:20Z caller=logging.go:85 method=Health result=2 took=30.389µs +ts=2025-05-22T08:53:23Z caller=logging.go:85 method=Health result=2 took=17.109µs +ts=2025-05-22T08:53:23Z caller=logging.go:85 method=Health result=2 took=38.549µs +ts=2025-05-22T08:53:26Z caller=logging.go:85 method=Health result=2 took=39.909µs +ts=2025-05-22T08:53:26Z caller=logging.go:85 method=Health result=2 took=48.119µs +ts=2025-05-22T08:53:29Z caller=logging.go:85 method=Health result=2 took=39.889µs +ts=2025-05-22T08:53:29Z caller=logging.go:85 method=Health result=2 took=35.749µs +ts=2025-05-22T08:53:32Z caller=logging.go:85 method=Health result=2 took=27.409µs +ts=2025-05-22T08:53:32Z caller=logging.go:85 method=Health result=2 took=27.509µs +ts=2025-05-22T08:53:35Z caller=logging.go:85 method=Health result=2 took=27.64µs +ts=2025-05-22T08:53:35Z caller=logging.go:85 method=Health result=2 took=46.219µs +ts=2025-05-22T08:53:38Z caller=logging.go:85 method=Health result=2 took=55.388µs +ts=2025-05-22T08:53:38Z caller=logging.go:85 method=Health result=2 took=50.859µs +ts=2025-05-22T08:53:41Z caller=logging.go:85 method=Health result=2 took=41.899µs +ts=2025-05-22T08:53:41Z caller=logging.go:85 method=Health result=2 took=51.139µs +ts=2025-05-22T08:53:44Z caller=logging.go:85 method=Health result=2 took=43.149µs +ts=2025-05-22T08:53:44Z caller=logging.go:85 method=Health result=2 took=36.73µs +ts=2025-05-22T08:53:47Z caller=logging.go:85 method=Health result=2 took=37.579µs +ts=2025-05-22T08:53:47Z caller=logging.go:85 method=Health result=2 took=45.099µs +ts=2025-05-22T08:53:50Z caller=logging.go:85 method=Health result=2 took=37.049µs +ts=2025-05-22T08:53:50Z caller=logging.go:85 method=Health result=2 took=45.989µs +ts=2025-05-22T08:53:53Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T08:53:53Z caller=logging.go:85 method=Health result=2 took=49.009µs +ts=2025-05-22T08:53:56Z caller=logging.go:85 method=Health result=2 took=28.639µs +ts=2025-05-22T08:53:56Z caller=logging.go:85 method=Health result=2 took=28.679µs +ts=2025-05-22T08:53:59Z caller=logging.go:85 method=Health result=2 took=36.249µs +ts=2025-05-22T08:53:59Z caller=logging.go:85 method=Health result=2 took=36.529µs +ts=2025-05-22T08:54:02Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T08:54:02Z caller=logging.go:85 method=Health result=2 took=44.249µs +ts=2025-05-22T08:54:05Z caller=logging.go:85 method=Health result=2 took=28.279µs +ts=2025-05-22T08:54:05Z caller=logging.go:85 method=Health result=2 took=27.779µs +ts=2025-05-22T08:54:08Z caller=logging.go:85 method=Health result=2 took=36.349µs +ts=2025-05-22T08:54:08Z caller=logging.go:85 method=Health result=2 took=35.529µs +ts=2025-05-22T08:54:11Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T08:54:11Z caller=logging.go:85 method=Health result=2 took=48.349µs +ts=2025-05-22T08:54:14Z caller=logging.go:85 method=Health result=2 took=44.209µs +ts=2025-05-22T08:54:14Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T08:54:17Z caller=logging.go:85 method=Health result=2 took=76.248µs +ts=2025-05-22T08:54:17Z caller=logging.go:85 method=Health result=2 took=35.369µs +ts=2025-05-22T08:54:20Z caller=logging.go:85 method=Health result=2 took=46.009µs +ts=2025-05-22T08:54:20Z caller=logging.go:85 method=Health result=2 took=51.229µs +ts=2025-05-22T08:54:23Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T08:54:23Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T08:54:26Z caller=logging.go:85 method=Health result=2 took=36.979µs +ts=2025-05-22T08:54:26Z caller=logging.go:85 method=Health result=2 took=50.799µs +ts=2025-05-22T08:54:29Z caller=logging.go:85 method=Health result=2 took=40.549µs +ts=2025-05-22T08:54:29Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T08:54:32Z caller=logging.go:85 method=Health result=2 took=41.349µs +ts=2025-05-22T08:54:32Z caller=logging.go:85 method=Health result=2 took=42.049µs +ts=2025-05-22T08:54:35Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T08:54:35Z caller=logging.go:85 method=Health result=2 took=47.969µs +ts=2025-05-22T08:54:38Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T08:54:38Z caller=logging.go:85 method=Health result=2 took=43.099µs +ts=2025-05-22T08:54:41Z caller=logging.go:85 method=Health result=2 took=30.66µs +ts=2025-05-22T08:54:41Z caller=logging.go:85 method=Health result=2 took=30.25µs +ts=2025-05-22T08:54:44Z caller=logging.go:85 method=Health result=2 took=44.109µs +ts=2025-05-22T08:54:44Z caller=logging.go:85 method=Health result=2 took=48.809µs +ts=2025-05-22T08:54:47Z caller=logging.go:85 method=Health result=2 took=37.209µs +ts=2025-05-22T08:54:47Z caller=logging.go:85 method=Health result=2 took=37.189µs +ts=2025-05-22T08:54:50Z caller=logging.go:85 method=Health result=2 took=45.319µs +ts=2025-05-22T08:54:50Z caller=logging.go:85 method=Health result=2 took=45.609µs +ts=2025-05-22T08:54:53Z caller=logging.go:85 method=Health result=2 took=46.009µs +ts=2025-05-22T08:54:53Z caller=logging.go:85 method=Health result=2 took=45.969µs +ts=2025-05-22T08:54:56Z caller=logging.go:85 method=Health result=2 took=43.689µs +ts=2025-05-22T08:54:56Z caller=logging.go:85 method=Health result=2 took=42.179µs +ts=2025-05-22T08:54:59Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T08:54:59Z caller=logging.go:85 method=Health result=2 took=48.559µs +ts=2025-05-22T08:55:02Z caller=logging.go:85 method=Health result=2 took=41.679µs +ts=2025-05-22T08:55:02Z caller=logging.go:85 method=Health result=2 took=46.569µs +ts=2025-05-22T08:55:05Z caller=logging.go:85 method=Health result=2 took=52.068µs +ts=2025-05-22T08:55:05Z caller=logging.go:85 method=Health result=2 took=42.189µs +ts=2025-05-22T08:55:08Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T08:55:08Z caller=logging.go:85 method=Health result=2 took=47.349µs +ts=2025-05-22T08:55:11Z caller=logging.go:85 method=Health result=2 took=55.349µs +ts=2025-05-22T08:55:11Z caller=logging.go:85 method=Health result=2 took=54.028µs +ts=2025-05-22T08:55:14Z caller=logging.go:85 method=Health result=2 took=38.169µs +ts=2025-05-22T08:55:14Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T08:55:17Z caller=logging.go:85 method=Health result=2 took=40.939µs +ts=2025-05-22T08:55:17Z caller=logging.go:85 method=Health result=2 took=61.678µs +ts=2025-05-22T08:55:20Z caller=logging.go:85 method=Health result=2 took=44.608µs +ts=2025-05-22T08:55:20Z caller=logging.go:85 method=Health result=2 took=44.248µs +ts=2025-05-22T08:55:23Z caller=logging.go:85 method=Health result=2 took=44.789µs +ts=2025-05-22T08:55:23Z caller=logging.go:85 method=Health result=2 took=50.919µs +ts=2025-05-22T08:55:26Z caller=logging.go:85 method=Health result=2 took=44.608µs +ts=2025-05-22T08:55:26Z caller=logging.go:85 method=Health result=2 took=51.159µs +ts=2025-05-22T08:55:29Z caller=logging.go:85 method=Health result=2 took=28.489µs +ts=2025-05-22T08:55:29Z caller=logging.go:85 method=Health result=2 took=28.529µs +ts=2025-05-22T08:55:32Z caller=logging.go:85 method=Health result=2 took=28.97µs +ts=2025-05-22T08:55:32Z caller=logging.go:85 method=Health result=2 took=14.949µs +ts=2025-05-22T08:55:35Z caller=logging.go:85 method=Health result=2 took=38.819µs +ts=2025-05-22T08:55:35Z caller=logging.go:85 method=Health result=2 took=38.709µs +ts=2025-05-22T08:55:38Z caller=logging.go:85 method=Health result=2 took=41.819µs +ts=2025-05-22T08:55:38Z caller=logging.go:85 method=Health result=2 took=37.259µs +ts=2025-05-22T08:55:41Z caller=logging.go:85 method=Health result=2 took=40.96µs +ts=2025-05-22T08:55:41Z caller=logging.go:85 method=Health result=2 took=39.87µs +ts=2025-05-22T08:55:44Z caller=logging.go:85 method=Health result=2 took=29.759µs +ts=2025-05-22T08:55:44Z caller=logging.go:85 method=Health result=2 took=15.279µs +ts=2025-05-22T08:55:47Z caller=logging.go:85 method=Health result=2 took=28.759µs +ts=2025-05-22T08:55:47Z caller=logging.go:85 method=Health result=2 took=29.189µs +ts=2025-05-22T08:55:50Z caller=logging.go:85 method=Health result=2 took=30.67µs +ts=2025-05-22T08:55:50Z caller=logging.go:85 method=Health result=2 took=33.81µs +ts=2025-05-22T08:55:53Z caller=logging.go:85 method=Health result=2 took=40.569µs +ts=2025-05-22T08:55:53Z caller=logging.go:85 method=Health result=2 took=41.599µs +ts=2025-05-22T08:55:56Z caller=logging.go:85 method=Health result=2 took=30.689µs +ts=2025-05-22T08:55:56Z caller=logging.go:85 method=Health result=2 took=33.789µs +ts=2025-05-22T08:55:59Z caller=logging.go:85 method=Health result=2 took=35.979µs +ts=2025-05-22T08:55:59Z caller=logging.go:85 method=Health result=2 took=41.869µs +ts=2025-05-22T08:56:02Z caller=logging.go:85 method=Health result=2 took=32.909µs +ts=2025-05-22T08:56:02Z caller=logging.go:85 method=Health result=2 took=34.909µs +ts=2025-05-22T08:56:05Z caller=logging.go:85 method=Health result=2 took=43.549µs +ts=2025-05-22T08:56:05Z caller=logging.go:85 method=Health result=2 took=46.319µs +ts=2025-05-22T08:56:08Z caller=logging.go:85 method=Health result=2 took=35.109µs +ts=2025-05-22T08:56:08Z caller=logging.go:85 method=Health result=2 took=44.329µs +ts=2025-05-22T08:56:11Z caller=logging.go:85 method=Health result=2 took=30.659µs +ts=2025-05-22T08:56:11Z caller=logging.go:85 method=Health result=2 took=61.978µs +ts=2025-05-22T08:56:14Z caller=logging.go:85 method=Health result=2 took=32.149µs +ts=2025-05-22T08:56:14Z caller=logging.go:85 method=Health result=2 took=31.659µs +ts=2025-05-22T08:56:17Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T08:56:17Z caller=logging.go:85 method=Health result=2 took=65.209µs +ts=2025-05-22T08:56:20Z caller=logging.go:85 method=Health result=2 took=30.329µs +ts=2025-05-22T08:56:20Z caller=logging.go:85 method=Health result=2 took=10.399µs +ts=2025-05-22T08:56:23Z caller=logging.go:85 method=Health result=2 took=40.429µs +ts=2025-05-22T08:56:23Z caller=logging.go:85 method=Health result=2 took=32.58µs +ts=2025-05-22T08:56:26Z caller=logging.go:85 method=Health result=2 took=29.659µs +ts=2025-05-22T08:56:26Z caller=logging.go:85 method=Health result=2 took=18.49µs +ts=2025-05-22T08:56:29Z caller=logging.go:85 method=Health result=2 took=33.099µs +ts=2025-05-22T08:56:29Z caller=logging.go:85 method=Health result=2 took=47.649µs +ts=2025-05-22T08:56:32Z caller=logging.go:85 method=Health result=2 took=31.779µs +ts=2025-05-22T08:56:32Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T08:56:35Z caller=logging.go:85 method=Health result=2 took=30.43µs +ts=2025-05-22T08:56:35Z caller=logging.go:85 method=Health result=2 took=15.029µs +ts=2025-05-22T08:56:38Z caller=logging.go:85 method=Health result=2 took=29.309µs +ts=2025-05-22T08:56:38Z caller=logging.go:85 method=Health result=2 took=29.249µs +ts=2025-05-22T08:56:41Z caller=logging.go:85 method=Health result=2 took=43.769µs +ts=2025-05-22T08:56:41Z caller=logging.go:85 method=Health result=2 took=64.108µs +ts=2025-05-22T08:56:44Z caller=logging.go:85 method=Health result=2 took=43.099µs +ts=2025-05-22T08:56:44Z caller=logging.go:85 method=Health result=2 took=49.039µs +ts=2025-05-22T08:56:47Z caller=logging.go:85 method=Health result=2 took=29.219µs +ts=2025-05-22T08:56:47Z caller=logging.go:85 method=Health result=2 took=29.229µs +ts=2025-05-22T08:56:50Z caller=logging.go:85 method=Health result=2 took=47.159µs +ts=2025-05-22T08:56:50Z caller=logging.go:85 method=Health result=2 took=46.579µs +ts=2025-05-22T08:56:53Z caller=logging.go:85 method=Health result=2 took=39.119µs +ts=2025-05-22T08:56:53Z caller=logging.go:85 method=Health result=2 took=37.439µs +ts=2025-05-22T08:56:56Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T08:56:56Z caller=logging.go:85 method=Health result=2 took=39.829µs +ts=2025-05-22T08:56:59Z caller=logging.go:85 method=Health result=2 took=40.029µs +ts=2025-05-22T08:56:59Z caller=logging.go:85 method=Health result=2 took=26.549µs +ts=2025-05-22T08:57:02Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T08:57:02Z caller=logging.go:85 method=Health result=2 took=31.659µs +ts=2025-05-22T08:57:05Z caller=logging.go:85 method=Health result=2 took=42.149µs +ts=2025-05-22T08:57:05Z caller=logging.go:85 method=Health result=2 took=47.899µs +ts=2025-05-22T08:57:08Z caller=logging.go:85 method=Health result=2 took=40.22µs +ts=2025-05-22T08:57:08Z caller=logging.go:85 method=Health result=2 took=39.51µs +ts=2025-05-22T08:57:11Z caller=logging.go:85 method=Health result=2 took=40.959µs +ts=2025-05-22T08:57:11Z caller=logging.go:85 method=Health result=2 took=47.729µs +ts=2025-05-22T08:57:14Z caller=logging.go:85 method=Health result=2 took=43.519µs +ts=2025-05-22T08:57:14Z caller=logging.go:85 method=Health result=2 took=47.479µs +ts=2025-05-22T08:57:17Z caller=logging.go:85 method=Health result=2 took=34.349µs +ts=2025-05-22T08:57:17Z caller=logging.go:85 method=Health result=2 took=34.189µs +ts=2025-05-22T08:57:20Z caller=logging.go:85 method=Health result=2 took=28.399µs +ts=2025-05-22T08:57:20Z caller=logging.go:85 method=Health result=2 took=28.519µs +ts=2025-05-22T08:57:23Z caller=logging.go:85 method=Health result=2 took=28.939µs +ts=2025-05-22T08:57:23Z caller=logging.go:85 method=Health result=2 took=63.828µs +ts=2025-05-22T08:57:26Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T08:57:26Z caller=logging.go:85 method=Health result=2 took=42.769µs +ts=2025-05-22T08:57:29Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T08:57:29Z caller=logging.go:85 method=Health result=2 took=41.669µs +ts=2025-05-22T08:57:32Z caller=logging.go:85 method=Health result=2 took=37.129µs +ts=2025-05-22T08:57:32Z caller=logging.go:85 method=Health result=2 took=37.219µs +ts=2025-05-22T08:57:35Z caller=logging.go:85 method=Health result=2 took=40.47µs +ts=2025-05-22T08:57:35Z caller=logging.go:85 method=Health result=2 took=45.808µs +ts=2025-05-22T08:57:38Z caller=logging.go:85 method=Health result=2 took=42.209µs +ts=2025-05-22T08:57:38Z caller=logging.go:85 method=Health result=2 took=46.209µs +ts=2025-05-22T08:57:41Z caller=logging.go:85 method=Health result=2 took=41.879µs +ts=2025-05-22T08:57:41Z caller=logging.go:85 method=Health result=2 took=45.129µs +ts=2025-05-22T08:57:44Z caller=logging.go:85 method=Health result=2 took=32.23µs +ts=2025-05-22T08:57:44Z caller=logging.go:85 method=Health result=2 took=31.44µs +ts=2025-05-22T08:57:47Z caller=logging.go:85 method=Health result=2 took=37.549µs +ts=2025-05-22T08:57:47Z caller=logging.go:85 method=Health result=2 took=38.089µs +ts=2025-05-22T08:57:50Z caller=logging.go:85 method=Health result=2 took=31.77µs +ts=2025-05-22T08:57:50Z caller=logging.go:85 method=Health result=2 took=33.959µs +ts=2025-05-22T08:57:53Z caller=logging.go:85 method=Health result=2 took=31.1µs +ts=2025-05-22T08:57:53Z caller=logging.go:85 method=Health result=2 took=51.179µs +ts=2025-05-22T08:57:56Z caller=logging.go:85 method=Health result=2 took=42.559µs +ts=2025-05-22T08:57:56Z caller=logging.go:85 method=Health result=2 took=46.489µs +ts=2025-05-22T08:57:59Z caller=logging.go:85 method=Health result=2 took=47.629µs +ts=2025-05-22T08:57:59Z caller=logging.go:85 method=Health result=2 took=47.568µs +ts=2025-05-22T08:58:02Z caller=logging.go:85 method=Health result=2 took=39.069µs +ts=2025-05-22T08:58:02Z caller=logging.go:85 method=Health result=2 took=30.369µs +ts=2025-05-22T08:58:05Z caller=logging.go:85 method=Health result=2 took=31.499µs +ts=2025-05-22T08:58:05Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T08:58:08Z caller=logging.go:85 method=Health result=2 took=47.929µs +ts=2025-05-22T08:58:08Z caller=logging.go:85 method=Health result=2 took=47.959µs +ts=2025-05-22T08:58:11Z caller=logging.go:85 method=Health result=2 took=42.159µs +ts=2025-05-22T08:58:11Z caller=logging.go:85 method=Health result=2 took=43.379µs +ts=2025-05-22T08:58:14Z caller=logging.go:85 method=Health result=2 took=39.879µs +ts=2025-05-22T08:58:14Z caller=logging.go:85 method=Health result=2 took=37.55µs +ts=2025-05-22T08:58:17Z caller=logging.go:85 method=Health result=2 took=174.676µs +ts=2025-05-22T08:58:17Z caller=logging.go:85 method=Health result=2 took=53.899µs +ts=2025-05-22T08:58:20Z caller=logging.go:85 method=Health result=2 took=36.539µs +ts=2025-05-22T08:58:20Z caller=logging.go:85 method=Health result=2 took=42.669µs +ts=2025-05-22T08:58:23Z caller=logging.go:85 method=Health result=2 took=31.25µs +ts=2025-05-22T08:58:23Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T08:58:26Z caller=logging.go:85 method=Health result=2 took=41.759µs +ts=2025-05-22T08:58:26Z caller=logging.go:85 method=Health result=2 took=41.129µs +ts=2025-05-22T08:58:29Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T08:58:29Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T08:58:32Z caller=logging.go:85 method=Health result=2 took=41.669µs +ts=2025-05-22T08:58:32Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T08:58:35Z caller=logging.go:85 method=Health result=2 took=32.03µs +ts=2025-05-22T08:58:35Z caller=logging.go:85 method=Health result=2 took=41.159µs +ts=2025-05-22T08:58:38Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T08:58:38Z caller=logging.go:85 method=Health result=2 took=18.91µs +ts=2025-05-22T08:58:41Z caller=logging.go:85 method=Health result=2 took=41.479µs +ts=2025-05-22T08:58:41Z caller=logging.go:85 method=Health result=2 took=46.479µs +ts=2025-05-22T08:58:44Z caller=logging.go:85 method=Health result=2 took=30.979µs +ts=2025-05-22T08:58:44Z caller=logging.go:85 method=Health result=2 took=17.089µs +ts=2025-05-22T08:58:47Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T08:58:47Z caller=logging.go:85 method=Health result=2 took=43.899µs +ts=2025-05-22T08:58:50Z caller=logging.go:85 method=Health result=2 took=41.589µs +ts=2025-05-22T08:58:50Z caller=logging.go:85 method=Health result=2 took=30.569µs +ts=2025-05-22T08:58:53Z caller=logging.go:85 method=Health result=2 took=39.479µs +ts=2025-05-22T08:58:53Z caller=logging.go:85 method=Health result=2 took=40.019µs +ts=2025-05-22T08:58:56Z caller=logging.go:85 method=Health result=2 took=37.209µs +ts=2025-05-22T08:58:56Z caller=logging.go:85 method=Health result=2 took=46.699µs +ts=2025-05-22T08:58:59Z caller=logging.go:85 method=Health result=2 took=43.209µs +ts=2025-05-22T08:58:59Z caller=logging.go:85 method=Health result=2 took=41.459µs +ts=2025-05-22T08:59:02Z caller=logging.go:85 method=Health result=2 took=31.619µs +ts=2025-05-22T08:59:02Z caller=logging.go:85 method=Health result=2 took=36.759µs +ts=2025-05-22T08:59:05Z caller=logging.go:85 method=Health result=2 took=39.059µs +ts=2025-05-22T08:59:05Z caller=logging.go:85 method=Health result=2 took=38.839µs +ts=2025-05-22T08:59:08Z caller=logging.go:85 method=Health result=2 took=46.119µs +ts=2025-05-22T08:59:08Z caller=logging.go:85 method=Health result=2 took=38.289µs +ts=2025-05-22T08:59:11Z caller=logging.go:85 method=Health result=2 took=37.369µs +ts=2025-05-22T08:59:11Z caller=logging.go:85 method=Health result=2 took=46.099µs +ts=2025-05-22T08:59:14Z caller=logging.go:85 method=Health result=2 took=42.419µs +ts=2025-05-22T08:59:14Z caller=logging.go:85 method=Health result=2 took=42.399µs +ts=2025-05-22T08:59:17Z caller=logging.go:85 method=Health result=2 took=32.609µs +ts=2025-05-22T08:59:17Z caller=logging.go:85 method=Health result=2 took=31.889µs +ts=2025-05-22T08:59:20Z caller=logging.go:85 method=Health result=2 took=43.899µs +ts=2025-05-22T08:59:20Z caller=logging.go:85 method=Health result=2 took=36.329µs +ts=2025-05-22T08:59:23Z caller=logging.go:85 method=Health result=2 took=39.199µs +ts=2025-05-22T08:59:23Z caller=logging.go:85 method=Health result=2 took=47.519µs +ts=2025-05-22T08:59:26Z caller=logging.go:85 method=Health result=2 took=28.139µs +ts=2025-05-22T08:59:26Z caller=logging.go:85 method=Health result=2 took=51.779µs +ts=2025-05-22T08:59:29Z caller=logging.go:85 method=Health result=2 took=36.719µs +ts=2025-05-22T08:59:29Z caller=logging.go:85 method=Health result=2 took=27.539µs +ts=2025-05-22T08:59:32Z caller=logging.go:85 method=Health result=2 took=38.289µs +ts=2025-05-22T08:59:32Z caller=logging.go:85 method=Health result=2 took=45.949µs +ts=2025-05-22T08:59:35Z caller=logging.go:85 method=Health result=2 took=54.099µs +ts=2025-05-22T08:59:35Z caller=logging.go:85 method=Health result=2 took=55.529µs +ts=2025-05-22T08:59:38Z caller=logging.go:85 method=Health result=2 took=38.739µs +ts=2025-05-22T08:59:38Z caller=logging.go:85 method=Health result=2 took=39.279µs +ts=2025-05-22T08:59:41Z caller=logging.go:85 method=Health result=2 took=28.66µs +ts=2025-05-22T08:59:41Z caller=logging.go:85 method=Health result=2 took=14.59µs +ts=2025-05-22T08:59:44Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T08:59:44Z caller=logging.go:85 method=Health result=2 took=49.579µs +ts=2025-05-22T08:59:47Z caller=logging.go:85 method=Health result=2 took=31.309µs +ts=2025-05-22T08:59:47Z caller=logging.go:85 method=Health result=2 took=33.869µs +ts=2025-05-22T08:59:50Z caller=logging.go:85 method=Health result=2 took=37.719µs +ts=2025-05-22T08:59:50Z caller=logging.go:85 method=Health result=2 took=81.608µs +ts=2025-05-22T08:59:53Z caller=logging.go:85 method=Health result=2 took=39.909µs +ts=2025-05-22T08:59:53Z caller=logging.go:85 method=Health result=2 took=40.339µs +ts=2025-05-22T08:59:56Z caller=logging.go:85 method=Health result=2 took=32.769µs +ts=2025-05-22T08:59:56Z caller=logging.go:85 method=Health result=2 took=35.019µs +ts=2025-05-22T08:59:59Z caller=logging.go:85 method=Health result=2 took=32.74µs +ts=2025-05-22T08:59:59Z caller=logging.go:85 method=Health result=2 took=34.33µs +ts=2025-05-22T09:00:02Z caller=logging.go:85 method=Health result=2 took=42.679µs +ts=2025-05-22T09:00:02Z caller=logging.go:85 method=Health result=2 took=48.229µs +ts=2025-05-22T09:00:05Z caller=logging.go:85 method=Health result=2 took=30.78µs +ts=2025-05-22T09:00:05Z caller=logging.go:85 method=Health result=2 took=47.119µs +ts=2025-05-22T09:00:08Z caller=logging.go:85 method=Health result=2 took=53.779µs +ts=2025-05-22T09:00:08Z caller=logging.go:85 method=Health result=2 took=53.179µs +ts=2025-05-22T09:00:11Z caller=logging.go:85 method=Health result=2 took=42.859µs +ts=2025-05-22T09:00:11Z caller=logging.go:85 method=Health result=2 took=38.559µs +ts=2025-05-22T09:00:14Z caller=logging.go:85 method=Health result=2 took=38.879µs +ts=2025-05-22T09:00:14Z caller=logging.go:85 method=Health result=2 took=46.268µs +ts=2025-05-22T09:00:17Z caller=logging.go:85 method=Health result=2 took=36.999µs +ts=2025-05-22T09:00:17Z caller=logging.go:85 method=Health result=2 took=928.538µs +ts=2025-05-22T09:00:20Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T09:00:20Z caller=logging.go:85 method=Health result=2 took=31.149µs +ts=2025-05-22T09:00:23Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T09:00:23Z caller=logging.go:85 method=Health result=2 took=26.75µs +ts=2025-05-22T09:00:26Z caller=logging.go:85 method=Health result=2 took=37.299µs +ts=2025-05-22T09:00:26Z caller=logging.go:85 method=Health result=2 took=43.529µs +ts=2025-05-22T09:00:29Z caller=logging.go:85 method=Health result=2 took=37.399µs +ts=2025-05-22T09:00:29Z caller=logging.go:85 method=Health result=2 took=65.579µs +ts=2025-05-22T09:00:32Z caller=logging.go:85 method=Health result=2 took=36.239µs +ts=2025-05-22T09:00:32Z caller=logging.go:85 method=Health result=2 took=25.169µs +ts=2025-05-22T09:00:35Z caller=logging.go:85 method=Health result=2 took=34.759µs +ts=2025-05-22T09:00:35Z caller=logging.go:85 method=Health result=2 took=43.808µs +ts=2025-05-22T09:00:38Z caller=logging.go:85 method=Health result=2 took=39.489µs +ts=2025-05-22T09:00:38Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T09:00:41Z caller=logging.go:85 method=Health result=2 took=32.299µs +ts=2025-05-22T09:00:41Z caller=logging.go:85 method=Health result=2 took=34.9µs +ts=2025-05-22T09:00:44Z caller=logging.go:85 method=Health result=2 took=39.729µs +ts=2025-05-22T09:00:44Z caller=logging.go:85 method=Health result=2 took=40.049µs +ts=2025-05-22T09:00:47Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T09:00:47Z caller=logging.go:85 method=Health result=2 took=47.169µs +ts=2025-05-22T09:00:50Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T09:00:50Z caller=logging.go:85 method=Health result=2 took=45.299µs +ts=2025-05-22T09:00:53Z caller=logging.go:85 method=Health result=2 took=40.549µs +ts=2025-05-22T09:00:53Z caller=logging.go:85 method=Health result=2 took=20.64µs +ts=2025-05-22T09:00:56Z caller=logging.go:85 method=Health result=2 took=43.129µs +ts=2025-05-22T09:00:56Z caller=logging.go:85 method=Health result=2 took=48.018µs +ts=2025-05-22T09:00:59Z caller=logging.go:85 method=Health result=2 took=32.54µs +ts=2025-05-22T09:00:59Z caller=logging.go:85 method=Health result=2 took=44.269µs +ts=2025-05-22T09:01:02Z caller=logging.go:85 method=Health result=2 took=35.179µs +ts=2025-05-22T09:01:02Z caller=logging.go:85 method=Health result=2 took=48.649µs +ts=2025-05-22T09:01:05Z caller=logging.go:85 method=Health result=2 took=44.179µs +ts=2025-05-22T09:01:05Z caller=logging.go:85 method=Health result=2 took=20.98µs +ts=2025-05-22T09:01:08Z caller=logging.go:85 method=Health result=2 took=43.189µs +ts=2025-05-22T09:01:08Z caller=logging.go:85 method=Health result=2 took=9.98µs +ts=2025-05-22T09:01:11Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T09:01:11Z caller=logging.go:85 method=Health result=2 took=42.929µs +ts=2025-05-22T09:01:14Z caller=logging.go:85 method=Health result=2 took=38.969µs +ts=2025-05-22T09:01:14Z caller=logging.go:85 method=Health result=2 took=38.359µs +ts=2025-05-22T09:01:17Z caller=logging.go:85 method=Health result=2 took=38.199µs +ts=2025-05-22T09:01:17Z caller=logging.go:85 method=Health result=2 took=38.749µs +ts=2025-05-22T09:01:20Z caller=logging.go:85 method=Health result=2 took=28.659µs +ts=2025-05-22T09:01:20Z caller=logging.go:85 method=Health result=2 took=28.639µs +ts=2025-05-22T09:01:23Z caller=logging.go:85 method=Health result=2 took=39.659µs +ts=2025-05-22T09:01:23Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T09:01:26Z caller=logging.go:85 method=Health result=2 took=40.379µs +ts=2025-05-22T09:01:26Z caller=logging.go:85 method=Health result=2 took=57.518µs +ts=2025-05-22T09:01:29Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T09:01:29Z caller=logging.go:85 method=Health result=2 took=21.619µs +ts=2025-05-22T09:01:32Z caller=logging.go:85 method=Health result=2 took=31.329µs +ts=2025-05-22T09:01:32Z caller=logging.go:85 method=Health result=2 took=44.109µs +ts=2025-05-22T09:01:35Z caller=logging.go:85 method=Health result=2 took=41.629µs +ts=2025-05-22T09:01:35Z caller=logging.go:85 method=Health result=2 took=46.249µs +ts=2025-05-22T09:01:38Z caller=logging.go:85 method=Health result=2 took=42.399µs +ts=2025-05-22T09:01:38Z caller=logging.go:85 method=Health result=2 took=47.829µs +ts=2025-05-22T09:01:41Z caller=logging.go:85 method=Health result=2 took=36.999µs +ts=2025-05-22T09:01:41Z caller=logging.go:85 method=Health result=2 took=36.169µs +ts=2025-05-22T09:01:44Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T09:01:44Z caller=logging.go:85 method=Health result=2 took=52.049µs +ts=2025-05-22T09:01:47Z caller=logging.go:85 method=Health result=2 took=41.769µs +ts=2025-05-22T09:01:47Z caller=logging.go:85 method=Health result=2 took=41.419µs +ts=2025-05-22T09:01:50Z caller=logging.go:85 method=Health result=2 took=32.219µs +ts=2025-05-22T09:01:50Z caller=logging.go:85 method=Health result=2 took=36.499µs +ts=2025-05-22T09:01:53Z caller=logging.go:85 method=Health result=2 took=35.129µs +ts=2025-05-22T09:01:53Z caller=logging.go:85 method=Health result=2 took=25.019µs +ts=2025-05-22T09:01:56Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T09:01:56Z caller=logging.go:85 method=Health result=2 took=41.089µs +ts=2025-05-22T09:01:59Z caller=logging.go:85 method=Health result=2 took=40.779µs +ts=2025-05-22T09:01:59Z caller=logging.go:85 method=Health result=2 took=57.539µs +ts=2025-05-22T09:02:02Z caller=logging.go:85 method=Health result=2 took=38.089µs +ts=2025-05-22T09:02:02Z caller=logging.go:85 method=Health result=2 took=45.429µs +ts=2025-05-22T09:02:05Z caller=logging.go:85 method=Health result=2 took=38.109µs +ts=2025-05-22T09:02:05Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T09:02:08Z caller=logging.go:85 method=Health result=2 took=49.399µs +ts=2025-05-22T09:02:08Z caller=logging.go:85 method=Health result=2 took=50.178µs +ts=2025-05-22T09:02:11Z caller=logging.go:85 method=Health result=2 took=32.48µs +ts=2025-05-22T09:02:11Z caller=logging.go:85 method=Health result=2 took=45.919µs +ts=2025-05-22T09:02:14Z caller=logging.go:85 method=Health result=2 took=30.589µs +ts=2025-05-22T09:02:14Z caller=logging.go:85 method=Health result=2 took=40.409µs +ts=2025-05-22T09:02:17Z caller=logging.go:85 method=Health result=2 took=44.709µs +ts=2025-05-22T09:02:17Z caller=logging.go:85 method=Health result=2 took=51.429µs +ts=2025-05-22T09:02:20Z caller=logging.go:85 method=Health result=2 took=32.12µs +ts=2025-05-22T09:02:20Z caller=logging.go:85 method=Health result=2 took=44.119µs +ts=2025-05-22T09:02:23Z caller=logging.go:85 method=Health result=2 took=36.59µs +ts=2025-05-22T09:02:23Z caller=logging.go:85 method=Health result=2 took=35.74µs +ts=2025-05-22T09:02:26Z caller=logging.go:85 method=Health result=2 took=40.889µs +ts=2025-05-22T09:02:26Z caller=logging.go:85 method=Health result=2 took=40.569µs +ts=2025-05-22T09:02:29Z caller=logging.go:85 method=Health result=2 took=39.729µs +ts=2025-05-22T09:02:29Z caller=logging.go:85 method=Health result=2 took=39.529µs +ts=2025-05-22T09:02:32Z caller=logging.go:85 method=Health result=2 took=30.359µs +ts=2025-05-22T09:02:32Z caller=logging.go:85 method=Health result=2 took=14.8µs +ts=2025-05-22T09:02:35Z caller=logging.go:85 method=Health result=2 took=44.399µs +ts=2025-05-22T09:02:35Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T09:02:38Z caller=logging.go:85 method=Health result=2 took=30.879µs +ts=2025-05-22T09:02:38Z caller=logging.go:85 method=Health result=2 took=36.75µs +ts=2025-05-22T09:02:41Z caller=logging.go:85 method=Health result=2 took=37.009µs +ts=2025-05-22T09:02:41Z caller=logging.go:85 method=Health result=2 took=36.989µs +ts=2025-05-22T09:02:44Z caller=logging.go:85 method=Health result=2 took=30.359µs +ts=2025-05-22T09:02:44Z caller=logging.go:85 method=Health result=2 took=47.599µs +ts=2025-05-22T09:02:47Z caller=logging.go:85 method=Health result=2 took=41.309µs +ts=2025-05-22T09:02:47Z caller=logging.go:85 method=Health result=2 took=40.799µs +ts=2025-05-22T09:02:50Z caller=logging.go:85 method=Health result=2 took=36.369µs +ts=2025-05-22T09:02:50Z caller=logging.go:85 method=Health result=2 took=26.149µs +ts=2025-05-22T09:02:53Z caller=logging.go:85 method=Health result=2 took=33.17µs +ts=2025-05-22T09:02:53Z caller=logging.go:85 method=Health result=2 took=56.069µs +ts=2025-05-22T09:02:56Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T09:02:56Z caller=logging.go:85 method=Health result=2 took=50.238µs +ts=2025-05-22T09:02:59Z caller=logging.go:85 method=Health result=2 took=41.669µs +ts=2025-05-22T09:02:59Z caller=logging.go:85 method=Health result=2 took=31.269µs +ts=2025-05-22T09:03:02Z caller=logging.go:85 method=Health result=2 took=47.789µs +ts=2025-05-22T09:03:02Z caller=logging.go:85 method=Health result=2 took=43.349µs +ts=2025-05-22T09:03:05Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T09:03:05Z caller=logging.go:85 method=Health result=2 took=39.23µs +ts=2025-05-22T09:03:08Z caller=logging.go:85 method=Health result=2 took=39.709µs +ts=2025-05-22T09:03:08Z caller=logging.go:85 method=Health result=2 took=39.169µs +ts=2025-05-22T09:03:11Z caller=logging.go:85 method=Health result=2 took=38.069µs +ts=2025-05-22T09:03:11Z caller=logging.go:85 method=Health result=2 took=38.679µs +ts=2025-05-22T09:03:14Z caller=logging.go:85 method=Health result=2 took=40.499µs +ts=2025-05-22T09:03:14Z caller=logging.go:85 method=Health result=2 took=41.249µs +ts=2025-05-22T09:03:17Z caller=logging.go:85 method=Health result=2 took=27.72µs +ts=2025-05-22T09:03:17Z caller=logging.go:85 method=Health result=2 took=40.519µs +ts=2025-05-22T09:03:20Z caller=logging.go:85 method=Health result=2 took=37.829µs +ts=2025-05-22T09:03:20Z caller=logging.go:85 method=Health result=2 took=45.318µs +ts=2025-05-22T09:03:23Z caller=logging.go:85 method=Health result=2 took=36.329µs +ts=2025-05-22T09:03:23Z caller=logging.go:85 method=Health result=2 took=36.099µs +ts=2025-05-22T09:03:26Z caller=logging.go:85 method=Health result=2 took=40.139µs +ts=2025-05-22T09:03:26Z caller=logging.go:85 method=Health result=2 took=40.789µs +ts=2025-05-22T09:03:29Z caller=logging.go:85 method=Health result=2 took=45.909µs +ts=2025-05-22T09:03:29Z caller=logging.go:85 method=Health result=2 took=50.959µs +ts=2025-05-22T09:03:32Z caller=logging.go:85 method=Health result=2 took=36.089µs +ts=2025-05-22T09:03:32Z caller=logging.go:85 method=Health result=2 took=35.499µs +ts=2025-05-22T09:03:35Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T09:03:35Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T09:03:38Z caller=logging.go:85 method=Health result=2 took=41.679µs +ts=2025-05-22T09:03:38Z caller=logging.go:85 method=Health result=2 took=40.739µs +ts=2025-05-22T09:03:41Z caller=logging.go:85 method=Health result=2 took=36.089µs +ts=2025-05-22T09:03:41Z caller=logging.go:85 method=Health result=2 took=25.59µs +ts=2025-05-22T09:03:44Z caller=logging.go:85 method=Health result=2 took=41.089µs +ts=2025-05-22T09:03:44Z caller=logging.go:85 method=Health result=2 took=59.759µs +ts=2025-05-22T09:03:47Z caller=logging.go:85 method=Health result=2 took=37.719µs +ts=2025-05-22T09:03:47Z caller=logging.go:85 method=Health result=2 took=33.779µs +ts=2025-05-22T09:03:50Z caller=logging.go:85 method=Health result=2 took=29.669µs +ts=2025-05-22T09:03:50Z caller=logging.go:85 method=Health result=2 took=29.709µs +ts=2025-05-22T09:03:53Z caller=logging.go:85 method=Health result=2 took=31.749µs +ts=2025-05-22T09:03:53Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T09:03:56Z caller=logging.go:85 method=Health result=2 took=43.909µs +ts=2025-05-22T09:03:56Z caller=logging.go:85 method=Health result=2 took=30.189µs +ts=2025-05-22T09:03:59Z caller=logging.go:85 method=Health result=2 took=43.739µs +ts=2025-05-22T09:03:59Z caller=logging.go:85 method=Health result=2 took=104.838µs +ts=2025-05-22T09:04:02Z caller=logging.go:85 method=Health result=2 took=36.279µs +ts=2025-05-22T09:04:02Z caller=logging.go:85 method=Health result=2 took=26.42µs +ts=2025-05-22T09:04:05Z caller=logging.go:85 method=Health result=2 took=38.609µs +ts=2025-05-22T09:04:05Z caller=logging.go:85 method=Health result=2 took=38.049µs +ts=2025-05-22T09:04:08Z caller=logging.go:85 method=Health result=2 took=42.149µs +ts=2025-05-22T09:04:08Z caller=logging.go:85 method=Health result=2 took=47.579µs +ts=2025-05-22T09:04:11Z caller=logging.go:85 method=Health result=2 took=38.14µs +ts=2025-05-22T09:04:11Z caller=logging.go:85 method=Health result=2 took=36.79µs +ts=2025-05-22T09:04:14Z caller=logging.go:85 method=Health result=2 took=27.75µs +ts=2025-05-22T09:04:14Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T09:04:17Z caller=logging.go:85 method=Health result=2 took=124.987µs +ts=2025-05-22T09:04:17Z caller=logging.go:85 method=Health result=2 took=940.527µs +ts=2025-05-22T09:04:20Z caller=logging.go:85 method=Health result=2 took=47.739µs +ts=2025-05-22T09:04:20Z caller=logging.go:85 method=Health result=2 took=47.809µs +ts=2025-05-22T09:04:23Z caller=logging.go:85 method=Health result=2 took=41.909µs +ts=2025-05-22T09:04:23Z caller=logging.go:85 method=Health result=2 took=41.329µs +ts=2025-05-22T09:04:26Z caller=logging.go:85 method=Health result=2 took=39.919µs +ts=2025-05-22T09:04:26Z caller=logging.go:85 method=Health result=2 took=40.409µs +ts=2025-05-22T09:04:29Z caller=logging.go:85 method=Health result=2 took=39.839µs +ts=2025-05-22T09:04:29Z caller=logging.go:85 method=Health result=2 took=40.299µs +ts=2025-05-22T09:04:32Z caller=logging.go:85 method=Health result=2 took=32.069µs +ts=2025-05-22T09:04:32Z caller=logging.go:85 method=Health result=2 took=44.969µs +ts=2025-05-22T09:04:35Z caller=logging.go:85 method=Health result=2 took=37.259µs +ts=2025-05-22T09:04:35Z caller=logging.go:85 method=Health result=2 took=60.469µs +ts=2025-05-22T09:04:38Z caller=logging.go:85 method=Health result=2 took=33.249µs +ts=2025-05-22T09:04:38Z caller=logging.go:85 method=Health result=2 took=36.239µs +ts=2025-05-22T09:04:41Z caller=logging.go:85 method=Health result=2 took=36.879µs +ts=2025-05-22T09:04:41Z caller=logging.go:85 method=Health result=2 took=36.889µs +ts=2025-05-22T09:04:44Z caller=logging.go:85 method=Health result=2 took=32.349µs +ts=2025-05-22T09:04:44Z caller=logging.go:85 method=Health result=2 took=52.449µs +ts=2025-05-22T09:04:47Z caller=logging.go:85 method=Health result=2 took=37.299µs +ts=2025-05-22T09:04:47Z caller=logging.go:85 method=Health result=2 took=19.109µs +ts=2025-05-22T09:04:50Z caller=logging.go:85 method=Health result=2 took=45.839µs +ts=2025-05-22T09:04:50Z caller=logging.go:85 method=Health result=2 took=44.879µs +ts=2025-05-22T09:04:53Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T09:04:53Z caller=logging.go:85 method=Health result=2 took=38.459µs +ts=2025-05-22T09:04:56Z caller=logging.go:85 method=Health result=2 took=37.879µs +ts=2025-05-22T09:04:56Z caller=logging.go:85 method=Health result=2 took=53.518µs +ts=2025-05-22T09:04:59Z caller=logging.go:85 method=Health result=2 took=42.779µs +ts=2025-05-22T09:04:59Z caller=logging.go:85 method=Health result=2 took=28.429µs +ts=2025-05-22T09:05:02Z caller=logging.go:85 method=Health result=2 took=42.879µs +ts=2025-05-22T09:05:02Z caller=logging.go:85 method=Health result=2 took=48.069µs +ts=2025-05-22T09:05:05Z caller=logging.go:85 method=Health result=2 took=29.88µs +ts=2025-05-22T09:05:05Z caller=logging.go:85 method=Health result=2 took=29.83µs +ts=2025-05-22T09:05:08Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T09:05:08Z caller=logging.go:85 method=Health result=2 took=46.079µs +ts=2025-05-22T09:05:11Z caller=logging.go:85 method=Health result=2 took=40.519µs +ts=2025-05-22T09:05:11Z caller=logging.go:85 method=Health result=2 took=41.389µs +ts=2025-05-22T09:05:14Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T09:05:14Z caller=logging.go:85 method=Health result=2 took=45.109µs +ts=2025-05-22T09:05:17Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T09:05:17Z caller=logging.go:85 method=Health result=2 took=47.409µs +ts=2025-05-22T09:05:20Z caller=logging.go:85 method=Health result=2 took=39.079µs +ts=2025-05-22T09:05:20Z caller=logging.go:85 method=Health result=2 took=44.999µs +ts=2025-05-22T09:05:23Z caller=logging.go:85 method=Health result=2 took=37.239µs +ts=2025-05-22T09:05:23Z caller=logging.go:85 method=Health result=2 took=56.419µs +ts=2025-05-22T09:05:26Z caller=logging.go:85 method=Health result=2 took=40.149µs +ts=2025-05-22T09:05:26Z caller=logging.go:85 method=Health result=2 took=27.519µs +ts=2025-05-22T09:05:29Z caller=logging.go:85 method=Health result=2 took=42.679µs +ts=2025-05-22T09:05:29Z caller=logging.go:85 method=Health result=2 took=20.939µs +ts=2025-05-22T09:05:32Z caller=logging.go:85 method=Health result=2 took=30.679µs +ts=2025-05-22T09:05:32Z caller=logging.go:85 method=Health result=2 took=40.029µs +ts=2025-05-22T09:05:35Z caller=logging.go:85 method=Health result=2 took=37.619µs +ts=2025-05-22T09:05:35Z caller=logging.go:85 method=Health result=2 took=38.339µs +ts=2025-05-22T09:05:38Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T09:05:38Z caller=logging.go:85 method=Health result=2 took=49.029µs +ts=2025-05-22T09:05:41Z caller=logging.go:85 method=Health result=2 took=96.558µs +ts=2025-05-22T09:05:41Z caller=logging.go:85 method=Health result=2 took=47.309µs +ts=2025-05-22T09:05:44Z caller=logging.go:85 method=Health result=2 took=41.979µs +ts=2025-05-22T09:05:44Z caller=logging.go:85 method=Health result=2 took=41.539µs +ts=2025-05-22T09:05:47Z caller=logging.go:85 method=Health result=2 took=42.409µs +ts=2025-05-22T09:05:47Z caller=logging.go:85 method=Health result=2 took=29.51µs +ts=2025-05-22T09:05:50Z caller=logging.go:85 method=Health result=2 took=40.269µs +ts=2025-05-22T09:05:50Z caller=logging.go:85 method=Health result=2 took=47.139µs +ts=2025-05-22T09:05:53Z caller=logging.go:85 method=Health result=2 took=39.989µs +ts=2025-05-22T09:05:53Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T09:05:56Z caller=logging.go:85 method=Health result=2 took=43.929µs +ts=2025-05-22T09:05:56Z caller=logging.go:85 method=Health result=2 took=47.759µs +ts=2025-05-22T09:05:59Z caller=logging.go:85 method=Health result=2 took=41.439µs +ts=2025-05-22T09:05:59Z caller=logging.go:85 method=Health result=2 took=50.269µs +ts=2025-05-22T09:06:02Z caller=logging.go:85 method=Health result=2 took=31.449µs +ts=2025-05-22T09:06:02Z caller=logging.go:85 method=Health result=2 took=15.16µs +ts=2025-05-22T09:06:05Z caller=logging.go:85 method=Health result=2 took=43.379µs +ts=2025-05-22T09:06:05Z caller=logging.go:85 method=Health result=2 took=42.839µs +ts=2025-05-22T09:06:08Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T09:06:08Z caller=logging.go:85 method=Health result=2 took=39.949µs +ts=2025-05-22T09:06:11Z caller=logging.go:85 method=Health result=2 took=42.619µs +ts=2025-05-22T09:06:11Z caller=logging.go:85 method=Health result=2 took=43.239µs +ts=2025-05-22T09:06:14Z caller=logging.go:85 method=Health result=2 took=38.819µs +ts=2025-05-22T09:06:14Z caller=logging.go:85 method=Health result=2 took=38.189µs +ts=2025-05-22T09:06:17Z caller=logging.go:85 method=Health result=2 took=1.603832ms +ts=2025-05-22T09:06:17Z caller=logging.go:85 method=Health result=2 took=1.597511ms +ts=2025-05-22T09:06:20Z caller=logging.go:85 method=Health result=2 took=41.979µs +ts=2025-05-22T09:06:20Z caller=logging.go:85 method=Health result=2 took=49.039µs +ts=2025-05-22T09:06:23Z caller=logging.go:85 method=Health result=2 took=37.929µs +ts=2025-05-22T09:06:23Z caller=logging.go:85 method=Health result=2 took=47.809µs +ts=2025-05-22T09:06:26Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T09:06:26Z caller=logging.go:85 method=Health result=2 took=42.349µs +ts=2025-05-22T09:06:29Z caller=logging.go:85 method=Health result=2 took=39.939µs +ts=2025-05-22T09:06:29Z caller=logging.go:85 method=Health result=2 took=47.879µs +ts=2025-05-22T09:06:32Z caller=logging.go:85 method=Health result=2 took=43.189µs +ts=2025-05-22T09:06:32Z caller=logging.go:85 method=Health result=2 took=47.509µs +ts=2025-05-22T09:06:35Z caller=logging.go:85 method=Health result=2 took=57.059µs +ts=2025-05-22T09:06:35Z caller=logging.go:85 method=Health result=2 took=57.049µs +ts=2025-05-22T09:06:38Z caller=logging.go:85 method=Health result=2 took=37.869µs +ts=2025-05-22T09:06:38Z caller=logging.go:85 method=Health result=2 took=27.279µs +ts=2025-05-22T09:06:41Z caller=logging.go:85 method=Health result=2 took=30.519µs +ts=2025-05-22T09:06:41Z caller=logging.go:85 method=Health result=2 took=51.609µs +ts=2025-05-22T09:06:44Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T09:06:44Z caller=logging.go:85 method=Health result=2 took=42.379µs +ts=2025-05-22T09:06:47Z caller=logging.go:85 method=Health result=2 took=41.859µs +ts=2025-05-22T09:06:47Z caller=logging.go:85 method=Health result=2 took=50.648µs +ts=2025-05-22T09:06:50Z caller=logging.go:85 method=Health result=2 took=37.109µs +ts=2025-05-22T09:06:50Z caller=logging.go:85 method=Health result=2 took=37.809µs +ts=2025-05-22T09:06:53Z caller=logging.go:85 method=Health result=2 took=28.669µs +ts=2025-05-22T09:06:53Z caller=logging.go:85 method=Health result=2 took=28.659µs +ts=2025-05-22T09:06:56Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T09:06:56Z caller=logging.go:85 method=Health result=2 took=31.929µs +ts=2025-05-22T09:06:59Z caller=logging.go:85 method=Health result=2 took=46.259µs +ts=2025-05-22T09:06:59Z caller=logging.go:85 method=Health result=2 took=31.889µs +ts=2025-05-22T09:07:02Z caller=logging.go:85 method=Health result=2 took=41.999µs +ts=2025-05-22T09:07:02Z caller=logging.go:85 method=Health result=2 took=47.308µs +ts=2025-05-22T09:07:05Z caller=logging.go:85 method=Health result=2 took=46.269µs +ts=2025-05-22T09:07:05Z caller=logging.go:85 method=Health result=2 took=59.669µs +ts=2025-05-22T09:07:08Z caller=logging.go:85 method=Health result=2 took=41.159µs +ts=2025-05-22T09:07:08Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T09:07:11Z caller=logging.go:85 method=Health result=2 took=30.709µs +ts=2025-05-22T09:07:11Z caller=logging.go:85 method=Health result=2 took=45.249µs +ts=2025-05-22T09:07:14Z caller=logging.go:85 method=Health result=2 took=31.53µs +ts=2025-05-22T09:07:14Z caller=logging.go:85 method=Health result=2 took=43.789µs +ts=2025-05-22T09:07:17Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T09:07:17Z caller=logging.go:85 method=Health result=2 took=24.6µs +ts=2025-05-22T09:07:20Z caller=logging.go:85 method=Health result=2 took=37.309µs +ts=2025-05-22T09:07:20Z caller=logging.go:85 method=Health result=2 took=34.869µs +ts=2025-05-22T09:07:23Z caller=logging.go:85 method=Health result=2 took=28.299µs +ts=2025-05-22T09:07:23Z caller=logging.go:85 method=Health result=2 took=24.719µs +ts=2025-05-22T09:07:26Z caller=logging.go:85 method=Health result=2 took=38.809µs +ts=2025-05-22T09:07:26Z caller=logging.go:85 method=Health result=2 took=38.889µs +ts=2025-05-22T09:07:29Z caller=logging.go:85 method=Health result=2 took=44.619µs +ts=2025-05-22T09:07:29Z caller=logging.go:85 method=Health result=2 took=48.399µs +ts=2025-05-22T09:07:32Z caller=logging.go:85 method=Health result=2 took=36.839µs +ts=2025-05-22T09:07:32Z caller=logging.go:85 method=Health result=2 took=36.499µs +ts=2025-05-22T09:07:35Z caller=logging.go:85 method=Health result=2 took=44.369µs +ts=2025-05-22T09:07:35Z caller=logging.go:85 method=Health result=2 took=31.389µs +ts=2025-05-22T09:07:38Z caller=logging.go:85 method=Health result=2 took=46.429µs +ts=2025-05-22T09:07:38Z caller=logging.go:85 method=Health result=2 took=49.959µs +ts=2025-05-22T09:07:41Z caller=logging.go:85 method=Health result=2 took=32.109µs +ts=2025-05-22T09:07:41Z caller=logging.go:85 method=Health result=2 took=46.129µs +ts=2025-05-22T09:07:44Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T09:07:44Z caller=logging.go:85 method=Health result=2 took=41.519µs +ts=2025-05-22T09:07:47Z caller=logging.go:85 method=Health result=2 took=32.14µs +ts=2025-05-22T09:07:47Z caller=logging.go:85 method=Health result=2 took=47.729µs +ts=2025-05-22T09:07:50Z caller=logging.go:85 method=Health result=2 took=47.009µs +ts=2025-05-22T09:07:50Z caller=logging.go:85 method=Health result=2 took=51.059µs +ts=2025-05-22T09:07:53Z caller=logging.go:85 method=Health result=2 took=38.579µs +ts=2025-05-22T09:07:53Z caller=logging.go:85 method=Health result=2 took=63.669µs +ts=2025-05-22T09:07:56Z caller=logging.go:85 method=Health result=2 took=38.869µs +ts=2025-05-22T09:07:56Z caller=logging.go:85 method=Health result=2 took=49.988µs +ts=2025-05-22T09:07:59Z caller=logging.go:85 method=Health result=2 took=46.659µs +ts=2025-05-22T09:07:59Z caller=logging.go:85 method=Health result=2 took=49.799µs +ts=2025-05-22T09:08:02Z caller=logging.go:85 method=Health result=2 took=40.739µs +ts=2025-05-22T09:08:02Z caller=logging.go:85 method=Health result=2 took=40.389µs +ts=2025-05-22T09:08:05Z caller=logging.go:85 method=Health result=2 took=31.65µs +ts=2025-05-22T09:08:05Z caller=logging.go:85 method=Health result=2 took=47.829µs +ts=2025-05-22T09:08:08Z caller=logging.go:85 method=Health result=2 took=42.749µs +ts=2025-05-22T09:08:08Z caller=logging.go:85 method=Health result=2 took=42.689µs +ts=2025-05-22T09:08:11Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T09:08:11Z caller=logging.go:85 method=Health result=2 took=52.019µs +ts=2025-05-22T09:08:14Z caller=logging.go:85 method=Health result=2 took=48.789µs +ts=2025-05-22T09:08:14Z caller=logging.go:85 method=Health result=2 took=54.749µs +ts=2025-05-22T09:08:17Z caller=logging.go:85 method=Health result=2 took=74.878µs +ts=2025-05-22T09:08:17Z caller=logging.go:85 method=Health result=2 took=28.829µs +ts=2025-05-22T09:08:20Z caller=logging.go:85 method=Health result=2 took=41.299µs +ts=2025-05-22T09:08:20Z caller=logging.go:85 method=Health result=2 took=26.48µs +ts=2025-05-22T09:08:23Z caller=logging.go:85 method=Health result=2 took=44.539µs +ts=2025-05-22T09:08:23Z caller=logging.go:85 method=Health result=2 took=41.409µs +ts=2025-05-22T09:08:26Z caller=logging.go:85 method=Health result=2 took=43.419µs +ts=2025-05-22T09:08:26Z caller=logging.go:85 method=Health result=2 took=36.029µs +ts=2025-05-22T09:08:29Z caller=logging.go:85 method=Health result=2 took=46.829µs +ts=2025-05-22T09:08:29Z caller=logging.go:85 method=Health result=2 took=50.219µs +ts=2025-05-22T09:08:32Z caller=logging.go:85 method=Health result=2 took=50.209µs +ts=2025-05-22T09:08:32Z caller=logging.go:85 method=Health result=2 took=51.099µs +ts=2025-05-22T09:08:35Z caller=logging.go:85 method=Health result=2 took=44.759µs +ts=2025-05-22T09:08:35Z caller=logging.go:85 method=Health result=2 took=70.658µs +ts=2025-05-22T09:08:38Z caller=logging.go:85 method=Health result=2 took=45.999µs +ts=2025-05-22T09:08:38Z caller=logging.go:85 method=Health result=2 took=48.449µs +ts=2025-05-22T09:08:41Z caller=logging.go:85 method=Health result=2 took=37.609µs +ts=2025-05-22T09:08:41Z caller=logging.go:85 method=Health result=2 took=49.618µs +ts=2025-05-22T09:08:44Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T09:08:44Z caller=logging.go:85 method=Health result=2 took=50.919µs +ts=2025-05-22T09:08:47Z caller=logging.go:85 method=Health result=2 took=29.669µs +ts=2025-05-22T09:08:47Z caller=logging.go:85 method=Health result=2 took=13.89µs +ts=2025-05-22T09:08:50Z caller=logging.go:85 method=Health result=2 took=44.779µs +ts=2025-05-22T09:08:50Z caller=logging.go:85 method=Health result=2 took=44.179µs +ts=2025-05-22T09:08:53Z caller=logging.go:85 method=Health result=2 took=30.709µs +ts=2025-05-22T09:08:53Z caller=logging.go:85 method=Health result=2 took=17.469µs +ts=2025-05-22T09:08:56Z caller=logging.go:85 method=Health result=2 took=39.729µs +ts=2025-05-22T09:08:56Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T09:08:59Z caller=logging.go:85 method=Health result=2 took=43.089µs +ts=2025-05-22T09:08:59Z caller=logging.go:85 method=Health result=2 took=43.729µs +ts=2025-05-22T09:09:02Z caller=logging.go:85 method=Health result=2 took=43.769µs +ts=2025-05-22T09:09:02Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T09:09:05Z caller=logging.go:85 method=Health result=2 took=54.819µs +ts=2025-05-22T09:09:05Z caller=logging.go:85 method=Health result=2 took=50.779µs +ts=2025-05-22T09:09:08Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T09:09:08Z caller=logging.go:85 method=Health result=2 took=47.299µs +ts=2025-05-22T09:09:11Z caller=logging.go:85 method=Health result=2 took=40.449µs +ts=2025-05-22T09:09:11Z caller=logging.go:85 method=Health result=2 took=26.299µs +ts=2025-05-22T09:09:14Z caller=logging.go:85 method=Health result=2 took=28.96µs +ts=2025-05-22T09:09:14Z caller=logging.go:85 method=Health result=2 took=18.83µs +ts=2025-05-22T09:09:17Z caller=logging.go:85 method=Health result=2 took=48.468µs +ts=2025-05-22T09:09:17Z caller=logging.go:85 method=Health result=2 took=50.848µs +ts=2025-05-22T09:09:20Z caller=logging.go:85 method=Health result=2 took=44.419µs +ts=2025-05-22T09:09:20Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T09:09:23Z caller=logging.go:85 method=Health result=2 took=44.968µs +ts=2025-05-22T09:09:23Z caller=logging.go:85 method=Health result=2 took=50.708µs +ts=2025-05-22T09:09:26Z caller=logging.go:85 method=Health result=2 took=53.658µs +ts=2025-05-22T09:09:26Z caller=logging.go:85 method=Health result=2 took=52.728µs +ts=2025-05-22T09:09:29Z caller=logging.go:85 method=Health result=2 took=40.939µs +ts=2025-05-22T09:09:29Z caller=logging.go:85 method=Health result=2 took=9.67µs +ts=2025-05-22T09:09:32Z caller=logging.go:85 method=Health result=2 took=53.839µs +ts=2025-05-22T09:09:32Z caller=logging.go:85 method=Health result=2 took=53.299µs +ts=2025-05-22T09:09:35Z caller=logging.go:85 method=Health result=2 took=46.239µs +ts=2025-05-22T09:09:35Z caller=logging.go:85 method=Health result=2 took=51.258µs +ts=2025-05-22T09:09:38Z caller=logging.go:85 method=Health result=2 took=35.739µs +ts=2025-05-22T09:09:38Z caller=logging.go:85 method=Health result=2 took=47.029µs +ts=2025-05-22T09:09:41Z caller=logging.go:85 method=Health result=2 took=44.249µs +ts=2025-05-22T09:09:41Z caller=logging.go:85 method=Health result=2 took=51.079µs +ts=2025-05-22T09:09:44Z caller=logging.go:85 method=Health result=2 took=45.249µs +ts=2025-05-22T09:09:44Z caller=logging.go:85 method=Health result=2 took=48.929µs +ts=2025-05-22T09:09:47Z caller=logging.go:85 method=Health result=2 took=42.209µs +ts=2025-05-22T09:09:47Z caller=logging.go:85 method=Health result=2 took=48.759µs +ts=2025-05-22T09:09:50Z caller=logging.go:85 method=Health result=2 took=40.839µs +ts=2025-05-22T09:09:50Z caller=logging.go:85 method=Health result=2 took=42.029µs +ts=2025-05-22T09:09:53Z caller=logging.go:85 method=Health result=2 took=42.259µs +ts=2025-05-22T09:09:53Z caller=logging.go:85 method=Health result=2 took=41.639µs +ts=2025-05-22T09:09:56Z caller=logging.go:85 method=Health result=2 took=44.049µs +ts=2025-05-22T09:09:56Z caller=logging.go:85 method=Health result=2 took=48.789µs +ts=2025-05-22T09:09:59Z caller=logging.go:85 method=Health result=2 took=38.669µs +ts=2025-05-22T09:09:59Z caller=logging.go:85 method=Health result=2 took=38.589µs +ts=2025-05-22T09:10:02Z caller=logging.go:85 method=Health result=2 took=44.258µs +ts=2025-05-22T09:10:02Z caller=logging.go:85 method=Health result=2 took=50.379µs +ts=2025-05-22T09:10:05Z caller=logging.go:85 method=Health result=2 took=43.299µs +ts=2025-05-22T09:10:05Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T09:10:08Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T09:10:08Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T09:10:11Z caller=logging.go:85 method=Health result=2 took=39.479µs +ts=2025-05-22T09:10:11Z caller=logging.go:85 method=Health result=2 took=27.75µs +ts=2025-05-22T09:10:14Z caller=logging.go:85 method=Health result=2 took=39.769µs +ts=2025-05-22T09:10:14Z caller=logging.go:85 method=Health result=2 took=47.509µs +ts=2025-05-22T09:10:17Z caller=logging.go:85 method=Health result=2 took=28.749µs +ts=2025-05-22T09:10:17Z caller=logging.go:85 method=Health result=2 took=15.86µs +ts=2025-05-22T09:10:20Z caller=logging.go:85 method=Health result=2 took=31.639µs +ts=2025-05-22T09:10:20Z caller=logging.go:85 method=Health result=2 took=49.539µs +ts=2025-05-22T09:10:23Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T09:10:23Z caller=logging.go:85 method=Health result=2 took=43.749µs +ts=2025-05-22T09:10:26Z caller=logging.go:85 method=Health result=2 took=37.899µs +ts=2025-05-22T09:10:26Z caller=logging.go:85 method=Health result=2 took=45.229µs +ts=2025-05-22T09:10:29Z caller=logging.go:85 method=Health result=2 took=38.839µs +ts=2025-05-22T09:10:29Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T09:10:32Z caller=logging.go:85 method=Health result=2 took=45.389µs +ts=2025-05-22T09:10:32Z caller=logging.go:85 method=Health result=2 took=48.479µs +ts=2025-05-22T09:10:35Z caller=logging.go:85 method=Health result=2 took=26.529µs +ts=2025-05-22T09:10:35Z caller=logging.go:85 method=Health result=2 took=58.318µs +ts=2025-05-22T09:10:38Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T09:10:38Z caller=logging.go:85 method=Health result=2 took=39.499µs +ts=2025-05-22T09:10:41Z caller=logging.go:85 method=Health result=2 took=37.1µs +ts=2025-05-22T09:10:41Z caller=logging.go:85 method=Health result=2 took=37.27µs +ts=2025-05-22T09:10:44Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T09:10:44Z caller=logging.go:85 method=Health result=2 took=44.569µs +ts=2025-05-22T09:10:47Z caller=logging.go:85 method=Health result=2 took=40.209µs +ts=2025-05-22T09:10:47Z caller=logging.go:85 method=Health result=2 took=53.549µs +ts=2025-05-22T09:10:50Z caller=logging.go:85 method=Health result=2 took=43.479µs +ts=2025-05-22T09:10:50Z caller=logging.go:85 method=Health result=2 took=44.299µs +ts=2025-05-22T09:10:53Z caller=logging.go:85 method=Health result=2 took=31.819µs +ts=2025-05-22T09:10:53Z caller=logging.go:85 method=Health result=2 took=53.879µs +ts=2025-05-22T09:10:56Z caller=logging.go:85 method=Health result=2 took=46.289µs +ts=2025-05-22T09:10:56Z caller=logging.go:85 method=Health result=2 took=47.309µs +ts=2025-05-22T09:10:59Z caller=logging.go:85 method=Health result=2 took=41.879µs +ts=2025-05-22T09:10:59Z caller=logging.go:85 method=Health result=2 took=49.439µs +ts=2025-05-22T09:11:02Z caller=logging.go:85 method=Health result=2 took=44.039µs +ts=2025-05-22T09:11:02Z caller=logging.go:85 method=Health result=2 took=43.469µs +ts=2025-05-22T09:11:05Z caller=logging.go:85 method=Health result=2 took=34.819µs +ts=2025-05-22T09:11:05Z caller=logging.go:85 method=Health result=2 took=45.379µs +ts=2025-05-22T09:11:08Z caller=logging.go:85 method=Health result=2 took=47.059µs +ts=2025-05-22T09:11:08Z caller=logging.go:85 method=Health result=2 took=46.069µs +ts=2025-05-22T09:11:11Z caller=logging.go:85 method=Health result=2 took=46.119µs +ts=2025-05-22T09:11:11Z caller=logging.go:85 method=Health result=2 took=45.409µs +ts=2025-05-22T09:11:14Z caller=logging.go:85 method=Health result=2 took=40.149µs +ts=2025-05-22T09:11:14Z caller=logging.go:85 method=Health result=2 took=42.139µs +ts=2025-05-22T09:11:17Z caller=logging.go:85 method=Health result=2 took=43.259µs +ts=2025-05-22T09:11:17Z caller=logging.go:85 method=Health result=2 took=47.499µs +ts=2025-05-22T09:11:20Z caller=logging.go:85 method=Health result=2 took=29.65µs +ts=2025-05-22T09:11:20Z caller=logging.go:85 method=Health result=2 took=13.61µs +ts=2025-05-22T09:11:23Z caller=logging.go:85 method=Health result=2 took=53.608µs +ts=2025-05-22T09:11:23Z caller=logging.go:85 method=Health result=2 took=51.969µs +ts=2025-05-22T09:11:26Z caller=logging.go:85 method=Health result=2 took=43.249µs +ts=2025-05-22T09:11:26Z caller=logging.go:85 method=Health result=2 took=44.019µs +ts=2025-05-22T09:11:29Z caller=logging.go:85 method=Health result=2 took=39.219µs +ts=2025-05-22T09:11:29Z caller=logging.go:85 method=Health result=2 took=26.389µs +ts=2025-05-22T09:11:32Z caller=logging.go:85 method=Health result=2 took=30.05µs +ts=2025-05-22T09:11:32Z caller=logging.go:85 method=Health result=2 took=10.36µs +ts=2025-05-22T09:11:35Z caller=logging.go:85 method=Health result=2 took=27.569µs +ts=2025-05-22T09:11:35Z caller=logging.go:85 method=Health result=2 took=10.179µs +ts=2025-05-22T09:11:38Z caller=logging.go:85 method=Health result=2 took=40.119µs +ts=2025-05-22T09:11:38Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T09:11:41Z caller=logging.go:85 method=Health result=2 took=42.759µs +ts=2025-05-22T09:11:41Z caller=logging.go:85 method=Health result=2 took=47.479µs +ts=2025-05-22T09:11:44Z caller=logging.go:85 method=Health result=2 took=40.759µs +ts=2025-05-22T09:11:44Z caller=logging.go:85 method=Health result=2 took=21.93µs +ts=2025-05-22T09:11:47Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T09:11:47Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T09:11:50Z caller=logging.go:85 method=Health result=2 took=36.939µs +ts=2025-05-22T09:11:50Z caller=logging.go:85 method=Health result=2 took=36.749µs +ts=2025-05-22T09:11:53Z caller=logging.go:85 method=Health result=2 took=42.189µs +ts=2025-05-22T09:11:53Z caller=logging.go:85 method=Health result=2 took=28.37µs +ts=2025-05-22T09:11:56Z caller=logging.go:85 method=Health result=2 took=30.289µs +ts=2025-05-22T09:11:56Z caller=logging.go:85 method=Health result=2 took=67.719µs +ts=2025-05-22T09:11:59Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T09:11:59Z caller=logging.go:85 method=Health result=2 took=41.709µs +ts=2025-05-22T09:12:02Z caller=logging.go:85 method=Health result=2 took=43.919µs +ts=2025-05-22T09:12:02Z caller=logging.go:85 method=Health result=2 took=47.809µs +ts=2025-05-22T09:12:05Z caller=logging.go:85 method=Health result=2 took=27.779µs +ts=2025-05-22T09:12:05Z caller=logging.go:85 method=Health result=2 took=27.869µs +ts=2025-05-22T09:12:08Z caller=logging.go:85 method=Health result=2 took=44.159µs +ts=2025-05-22T09:12:08Z caller=logging.go:85 method=Health result=2 took=40.309µs +ts=2025-05-22T09:12:11Z caller=logging.go:85 method=Health result=2 took=30.949µs +ts=2025-05-22T09:12:11Z caller=logging.go:85 method=Health result=2 took=46.289µs +ts=2025-05-22T09:12:14Z caller=logging.go:85 method=Health result=2 took=29.029µs +ts=2025-05-22T09:12:14Z caller=logging.go:85 method=Health result=2 took=27.999µs +ts=2025-05-22T09:12:17Z caller=logging.go:85 method=Health result=2 took=21.39µs +ts=2025-05-22T09:12:17Z caller=logging.go:85 method=Health result=2 took=193.875µs +ts=2025-05-22T09:12:20Z caller=logging.go:85 method=Health result=2 took=35.579µs +ts=2025-05-22T09:12:20Z caller=logging.go:85 method=Health result=2 took=35.879µs +ts=2025-05-22T09:12:23Z caller=logging.go:85 method=Health result=2 took=29.33µs +ts=2025-05-22T09:12:23Z caller=logging.go:85 method=Health result=2 took=15.1µs +ts=2025-05-22T09:12:26Z caller=logging.go:85 method=Health result=2 took=37.009µs +ts=2025-05-22T09:12:26Z caller=logging.go:85 method=Health result=2 took=37.109µs +ts=2025-05-22T09:12:29Z caller=logging.go:85 method=Health result=2 took=38.249µs +ts=2025-05-22T09:12:29Z caller=logging.go:85 method=Health result=2 took=38.029µs +ts=2025-05-22T09:12:32Z caller=logging.go:85 method=Health result=2 took=44.989µs +ts=2025-05-22T09:12:32Z caller=logging.go:85 method=Health result=2 took=48.498µs +ts=2025-05-22T09:12:35Z caller=logging.go:85 method=Health result=2 took=36.749µs +ts=2025-05-22T09:12:35Z caller=logging.go:85 method=Health result=2 took=36.149µs +ts=2025-05-22T09:12:38Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T09:12:38Z caller=logging.go:85 method=Health result=2 took=44.779µs +ts=2025-05-22T09:12:41Z caller=logging.go:85 method=Health result=2 took=42.659µs +ts=2025-05-22T09:12:41Z caller=logging.go:85 method=Health result=2 took=46.409µs +ts=2025-05-22T09:12:44Z caller=logging.go:85 method=Health result=2 took=35.59µs +ts=2025-05-22T09:12:44Z caller=logging.go:85 method=Health result=2 took=34.95µs +ts=2025-05-22T09:12:47Z caller=logging.go:85 method=Health result=2 took=35.469µs +ts=2025-05-22T09:12:47Z caller=logging.go:85 method=Health result=2 took=25µs +ts=2025-05-22T09:12:50Z caller=logging.go:85 method=Health result=2 took=39.519µs +ts=2025-05-22T09:12:50Z caller=logging.go:85 method=Health result=2 took=39.859µs +ts=2025-05-22T09:12:53Z caller=logging.go:85 method=Health result=2 took=36.529µs +ts=2025-05-22T09:12:53Z caller=logging.go:85 method=Health result=2 took=27.379µs +ts=2025-05-22T09:12:56Z caller=logging.go:85 method=Health result=2 took=32.249µs +ts=2025-05-22T09:12:56Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T09:12:59Z caller=logging.go:85 method=Health result=2 took=28.579µs +ts=2025-05-22T09:12:59Z caller=logging.go:85 method=Health result=2 took=12.15µs +ts=2025-05-22T09:13:02Z caller=logging.go:85 method=Health result=2 took=40.789µs +ts=2025-05-22T09:13:02Z caller=logging.go:85 method=Health result=2 took=41.239µs +ts=2025-05-22T09:13:05Z caller=logging.go:85 method=Health result=2 took=30.719µs +ts=2025-05-22T09:13:05Z caller=logging.go:85 method=Health result=2 took=41.449µs +ts=2025-05-22T09:13:08Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T09:13:08Z caller=logging.go:85 method=Health result=2 took=34.499µs +ts=2025-05-22T09:13:11Z caller=logging.go:85 method=Health result=2 took=45.979µs +ts=2025-05-22T09:13:11Z caller=logging.go:85 method=Health result=2 took=36.539µs +ts=2025-05-22T09:13:14Z caller=logging.go:85 method=Health result=2 took=39.269µs +ts=2025-05-22T09:13:14Z caller=logging.go:85 method=Health result=2 took=39.789µs +ts=2025-05-22T09:13:17Z caller=logging.go:85 method=Health result=2 took=37.779µs +ts=2025-05-22T09:13:17Z caller=logging.go:85 method=Health result=2 took=37.749µs +ts=2025-05-22T09:13:20Z caller=logging.go:85 method=Health result=2 took=32.459µs +ts=2025-05-22T09:13:20Z caller=logging.go:85 method=Health result=2 took=35.11µs +ts=2025-05-22T09:13:23Z caller=logging.go:85 method=Health result=2 took=108.997µs +ts=2025-05-22T09:13:23Z caller=logging.go:85 method=Health result=2 took=106.788µs +ts=2025-05-22T09:13:26Z caller=logging.go:85 method=Health result=2 took=69.598µs +ts=2025-05-22T09:13:26Z caller=logging.go:85 method=Health result=2 took=41.859µs +ts=2025-05-22T09:13:29Z caller=logging.go:85 method=Health result=2 took=108.978µs +ts=2025-05-22T09:13:29Z caller=logging.go:85 method=Health result=2 took=16.219µs +ts=2025-05-22T09:13:32Z caller=logging.go:85 method=Health result=2 took=45.919µs +ts=2025-05-22T09:13:32Z caller=logging.go:85 method=Health result=2 took=50.059µs +ts=2025-05-22T09:13:35Z caller=logging.go:85 method=Health result=2 took=40.979µs +ts=2025-05-22T09:13:35Z caller=logging.go:85 method=Health result=2 took=46.189µs +ts=2025-05-22T09:13:38Z caller=logging.go:85 method=Health result=2 took=42.709µs +ts=2025-05-22T09:13:38Z caller=logging.go:85 method=Health result=2 took=47.479µs +ts=2025-05-22T09:13:41Z caller=logging.go:85 method=Health result=2 took=32.269µs +ts=2025-05-22T09:13:41Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T09:13:44Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T09:13:44Z caller=logging.go:85 method=Health result=2 took=37.319µs +ts=2025-05-22T09:13:47Z caller=logging.go:85 method=Health result=2 took=39.579µs +ts=2025-05-22T09:13:47Z caller=logging.go:85 method=Health result=2 took=27.319µs +ts=2025-05-22T09:13:50Z caller=logging.go:85 method=Health result=2 took=38.279µs +ts=2025-05-22T09:13:50Z caller=logging.go:85 method=Health result=2 took=35.749µs +ts=2025-05-22T09:13:53Z caller=logging.go:85 method=Health result=2 took=40.069µs +ts=2025-05-22T09:13:53Z caller=logging.go:85 method=Health result=2 took=29.259µs +ts=2025-05-22T09:13:56Z caller=logging.go:85 method=Health result=2 took=31.02µs +ts=2025-05-22T09:13:56Z caller=logging.go:85 method=Health result=2 took=12.61µs +ts=2025-05-22T09:13:59Z caller=logging.go:85 method=Health result=2 took=40.639µs +ts=2025-05-22T09:13:59Z caller=logging.go:85 method=Health result=2 took=45.389µs +ts=2025-05-22T09:14:02Z caller=logging.go:85 method=Health result=2 took=41.239µs +ts=2025-05-22T09:14:02Z caller=logging.go:85 method=Health result=2 took=40.599µs +ts=2025-05-22T09:14:05Z caller=logging.go:85 method=Health result=2 took=30.919µs +ts=2025-05-22T09:14:05Z caller=logging.go:85 method=Health result=2 took=30.939µs +ts=2025-05-22T09:14:08Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T09:14:08Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T09:14:11Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T09:14:11Z caller=logging.go:85 method=Health result=2 took=40.229µs +ts=2025-05-22T09:14:14Z caller=logging.go:85 method=Health result=2 took=39.159µs +ts=2025-05-22T09:14:14Z caller=logging.go:85 method=Health result=2 took=47.389µs +ts=2025-05-22T09:14:17Z caller=logging.go:85 method=Health result=2 took=30.03µs +ts=2025-05-22T09:14:17Z caller=logging.go:85 method=Health result=2 took=44.629µs +ts=2025-05-22T09:14:20Z caller=logging.go:85 method=Health result=2 took=41.149µs +ts=2025-05-22T09:14:20Z caller=logging.go:85 method=Health result=2 took=41.619µs +ts=2025-05-22T09:14:23Z caller=logging.go:85 method=Health result=2 took=37.449µs +ts=2025-05-22T09:14:23Z caller=logging.go:85 method=Health result=2 took=15.739µs +ts=2025-05-22T09:14:26Z caller=logging.go:85 method=Health result=2 took=38.71µs +ts=2025-05-22T09:14:26Z caller=logging.go:85 method=Health result=2 took=38.54µs +ts=2025-05-22T09:14:29Z caller=logging.go:85 method=Health result=2 took=37.069µs +ts=2025-05-22T09:14:29Z caller=logging.go:85 method=Health result=2 took=23.609µs +ts=2025-05-22T09:14:32Z caller=logging.go:85 method=Health result=2 took=32.8µs +ts=2025-05-22T09:14:32Z caller=logging.go:85 method=Health result=2 took=40.989µs +ts=2025-05-22T09:14:35Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T09:14:35Z caller=logging.go:85 method=Health result=2 took=37.219µs +ts=2025-05-22T09:14:38Z caller=logging.go:85 method=Health result=2 took=39.129µs +ts=2025-05-22T09:14:38Z caller=logging.go:85 method=Health result=2 took=39.709µs +ts=2025-05-22T09:14:41Z caller=logging.go:85 method=Health result=2 took=35.889µs +ts=2025-05-22T09:14:41Z caller=logging.go:85 method=Health result=2 took=37.749µs +ts=2025-05-22T09:14:44Z caller=logging.go:85 method=Health result=2 took=47.149µs +ts=2025-05-22T09:14:44Z caller=logging.go:85 method=Health result=2 took=43.779µs +ts=2025-05-22T09:14:47Z caller=logging.go:85 method=Health result=2 took=36.28µs +ts=2025-05-22T09:14:47Z caller=logging.go:85 method=Health result=2 took=36.28µs +ts=2025-05-22T09:14:50Z caller=logging.go:85 method=Health result=2 took=31.519µs +ts=2025-05-22T09:14:50Z caller=logging.go:85 method=Health result=2 took=15.91µs +ts=2025-05-22T09:14:53Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T09:14:53Z caller=logging.go:85 method=Health result=2 took=39.639µs +ts=2025-05-22T09:14:56Z caller=logging.go:85 method=Health result=2 took=42.059µs +ts=2025-05-22T09:14:56Z caller=logging.go:85 method=Health result=2 took=46.189µs +ts=2025-05-22T09:14:59Z caller=logging.go:85 method=Health result=2 took=40.879µs +ts=2025-05-22T09:14:59Z caller=logging.go:85 method=Health result=2 took=18.389µs +ts=2025-05-22T09:15:02Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T09:15:02Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T09:15:05Z caller=logging.go:85 method=Health result=2 took=32.68µs +ts=2025-05-22T09:15:05Z caller=logging.go:85 method=Health result=2 took=43.699µs +ts=2025-05-22T09:15:08Z caller=logging.go:85 method=Health result=2 took=33.039µs +ts=2025-05-22T09:15:08Z caller=logging.go:85 method=Health result=2 took=39.569µs +ts=2025-05-22T09:15:11Z caller=logging.go:85 method=Health result=2 took=38.539µs +ts=2025-05-22T09:15:11Z caller=logging.go:85 method=Health result=2 took=38.809µs +ts=2025-05-22T09:15:14Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T09:15:14Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T09:15:17Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T09:15:17Z caller=logging.go:85 method=Health result=2 took=29.04µs +ts=2025-05-22T09:15:20Z caller=logging.go:85 method=Health result=2 took=28.929µs +ts=2025-05-22T09:15:20Z caller=logging.go:85 method=Health result=2 took=24.529µs +ts=2025-05-22T09:15:23Z caller=logging.go:85 method=Health result=2 took=46.549µs +ts=2025-05-22T09:15:23Z caller=logging.go:85 method=Health result=2 took=46.599µs +ts=2025-05-22T09:15:26Z caller=logging.go:85 method=Health result=2 took=40.749µs +ts=2025-05-22T09:15:26Z caller=logging.go:85 method=Health result=2 took=50.799µs +ts=2025-05-22T09:15:29Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T09:15:29Z caller=logging.go:85 method=Health result=2 took=37.799µs +ts=2025-05-22T09:15:32Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T09:15:32Z caller=logging.go:85 method=Health result=2 took=36.099µs +ts=2025-05-22T09:15:35Z caller=logging.go:85 method=Health result=2 took=39.499µs +ts=2025-05-22T09:15:35Z caller=logging.go:85 method=Health result=2 took=40.229µs +ts=2025-05-22T09:15:38Z caller=logging.go:85 method=Health result=2 took=41.239µs +ts=2025-05-22T09:15:38Z caller=logging.go:85 method=Health result=2 took=29.05µs +ts=2025-05-22T09:15:41Z caller=logging.go:85 method=Health result=2 took=45.088µs +ts=2025-05-22T09:15:41Z caller=logging.go:85 method=Health result=2 took=47.669µs +ts=2025-05-22T09:15:44Z caller=logging.go:85 method=Health result=2 took=50.599µs +ts=2025-05-22T09:15:44Z caller=logging.go:85 method=Health result=2 took=34.589µs +ts=2025-05-22T09:15:47Z caller=logging.go:85 method=Health result=2 took=35.649µs +ts=2025-05-22T09:15:47Z caller=logging.go:85 method=Health result=2 took=38.809µs +ts=2025-05-22T09:15:50Z caller=logging.go:85 method=Health result=2 took=37.799µs +ts=2025-05-22T09:15:50Z caller=logging.go:85 method=Health result=2 took=38.129µs +ts=2025-05-22T09:15:53Z caller=logging.go:85 method=Health result=2 took=53.329µs +ts=2025-05-22T09:15:53Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T09:15:56Z caller=logging.go:85 method=Health result=2 took=38.129µs +ts=2025-05-22T09:15:56Z caller=logging.go:85 method=Health result=2 took=44.709µs +ts=2025-05-22T09:15:59Z caller=logging.go:85 method=Health result=2 took=33.199µs +ts=2025-05-22T09:15:59Z caller=logging.go:85 method=Health result=2 took=34.439µs +ts=2025-05-22T09:16:02Z caller=logging.go:85 method=Health result=2 took=38.209µs +ts=2025-05-22T09:16:02Z caller=logging.go:85 method=Health result=2 took=35.369µs +ts=2025-05-22T09:16:05Z caller=logging.go:85 method=Health result=2 took=41.989µs +ts=2025-05-22T09:16:05Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T09:16:08Z caller=logging.go:85 method=Health result=2 took=33.259µs +ts=2025-05-22T09:16:08Z caller=logging.go:85 method=Health result=2 took=33.95µs +ts=2025-05-22T09:16:11Z caller=logging.go:85 method=Health result=2 took=30.769µs +ts=2025-05-22T09:16:11Z caller=logging.go:85 method=Health result=2 took=30.739µs +ts=2025-05-22T09:16:14Z caller=logging.go:85 method=Health result=2 took=34.169µs +ts=2025-05-22T09:16:14Z caller=logging.go:85 method=Health result=2 took=45.999µs +ts=2025-05-22T09:16:17Z caller=logging.go:85 method=Health result=2 took=35.29µs +ts=2025-05-22T09:16:17Z caller=logging.go:85 method=Health result=2 took=35.419µs +ts=2025-05-22T09:16:20Z caller=logging.go:85 method=Health result=2 took=37.789µs +ts=2025-05-22T09:16:20Z caller=logging.go:85 method=Health result=2 took=36.909µs +ts=2025-05-22T09:16:23Z caller=logging.go:85 method=Health result=2 took=38.059µs +ts=2025-05-22T09:16:23Z caller=logging.go:85 method=Health result=2 took=37.619µs +ts=2025-05-22T09:16:26Z caller=logging.go:85 method=Health result=2 took=33.63µs +ts=2025-05-22T09:16:26Z caller=logging.go:85 method=Health result=2 took=43.589µs +ts=2025-05-22T09:16:29Z caller=logging.go:85 method=Health result=2 took=43.549µs +ts=2025-05-22T09:16:29Z caller=logging.go:85 method=Health result=2 took=25.65µs +ts=2025-05-22T09:16:32Z caller=logging.go:85 method=Health result=2 took=38.209µs +ts=2025-05-22T09:16:32Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T09:16:35Z caller=logging.go:85 method=Health result=2 took=42.699µs +ts=2025-05-22T09:16:35Z caller=logging.go:85 method=Health result=2 took=41.329µs +ts=2025-05-22T09:16:38Z caller=logging.go:85 method=Health result=2 took=31.6µs +ts=2025-05-22T09:16:38Z caller=logging.go:85 method=Health result=2 took=31.54µs +ts=2025-05-22T09:16:41Z caller=logging.go:85 method=Health result=2 took=36.149µs +ts=2025-05-22T09:16:41Z caller=logging.go:85 method=Health result=2 took=36.269µs +ts=2025-05-22T09:16:44Z caller=logging.go:85 method=Health result=2 took=48.639µs +ts=2025-05-22T09:16:44Z caller=logging.go:85 method=Health result=2 took=47.138µs +ts=2025-05-22T09:16:47Z caller=logging.go:85 method=Health result=2 took=42.639µs +ts=2025-05-22T09:16:47Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T09:16:50Z caller=logging.go:85 method=Health result=2 took=61.748µs +ts=2025-05-22T09:16:50Z caller=logging.go:85 method=Health result=2 took=45.989µs +ts=2025-05-22T09:16:53Z caller=logging.go:85 method=Health result=2 took=34.27µs +ts=2025-05-22T09:16:53Z caller=logging.go:85 method=Health result=2 took=45.089µs +ts=2025-05-22T09:16:56Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T09:16:56Z caller=logging.go:85 method=Health result=2 took=48.949µs +ts=2025-05-22T09:16:59Z caller=logging.go:85 method=Health result=2 took=39.059µs +ts=2025-05-22T09:16:59Z caller=logging.go:85 method=Health result=2 took=39.589µs +ts=2025-05-22T09:17:02Z caller=logging.go:85 method=Health result=2 took=29.96µs +ts=2025-05-22T09:17:02Z caller=logging.go:85 method=Health result=2 took=10.15µs +ts=2025-05-22T09:17:05Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T09:17:05Z caller=logging.go:85 method=Health result=2 took=38.489µs +ts=2025-05-22T09:17:08Z caller=logging.go:85 method=Health result=2 took=43.579µs +ts=2025-05-22T09:17:08Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T09:17:11Z caller=logging.go:85 method=Health result=2 took=46.769µs +ts=2025-05-22T09:17:11Z caller=logging.go:85 method=Health result=2 took=49.569µs +ts=2025-05-22T09:17:14Z caller=logging.go:85 method=Health result=2 took=44.529µs +ts=2025-05-22T09:17:14Z caller=logging.go:85 method=Health result=2 took=50.379µs +ts=2025-05-22T09:17:17Z caller=logging.go:85 method=Health result=2 took=52.139µs +ts=2025-05-22T09:17:17Z caller=logging.go:85 method=Health result=2 took=51.209µs +ts=2025-05-22T09:17:20Z caller=logging.go:85 method=Health result=2 took=43.969µs +ts=2025-05-22T09:17:20Z caller=logging.go:85 method=Health result=2 took=43.339µs +ts=2025-05-22T09:17:23Z caller=logging.go:85 method=Health result=2 took=33.429µs +ts=2025-05-22T09:17:23Z caller=logging.go:85 method=Health result=2 took=55.659µs +ts=2025-05-22T09:17:26Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T09:17:26Z caller=logging.go:85 method=Health result=2 took=49.919µs +ts=2025-05-22T09:17:29Z caller=logging.go:85 method=Health result=2 took=43.138µs +ts=2025-05-22T09:17:29Z caller=logging.go:85 method=Health result=2 took=43.998µs +ts=2025-05-22T09:17:32Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T09:17:32Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T09:17:35Z caller=logging.go:85 method=Health result=2 took=41.619µs +ts=2025-05-22T09:17:35Z caller=logging.go:85 method=Health result=2 took=40.939µs +ts=2025-05-22T09:17:38Z caller=logging.go:85 method=Health result=2 took=44.419µs +ts=2025-05-22T09:17:38Z caller=logging.go:85 method=Health result=2 took=50.788µs +ts=2025-05-22T09:17:41Z caller=logging.go:85 method=Health result=2 took=56.049µs +ts=2025-05-22T09:17:41Z caller=logging.go:85 method=Health result=2 took=56.039µs +ts=2025-05-22T09:17:44Z caller=logging.go:85 method=Health result=2 took=39.679µs +ts=2025-05-22T09:17:44Z caller=logging.go:85 method=Health result=2 took=41.079µs +ts=2025-05-22T09:17:47Z caller=logging.go:85 method=Health result=2 took=43.618µs +ts=2025-05-22T09:17:47Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T09:17:50Z caller=logging.go:85 method=Health result=2 took=44.489µs +ts=2025-05-22T09:17:50Z caller=logging.go:85 method=Health result=2 took=52.279µs +ts=2025-05-22T09:17:53Z caller=logging.go:85 method=Health result=2 took=30.129µs +ts=2025-05-22T09:17:53Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T09:17:56Z caller=logging.go:85 method=Health result=2 took=45.439µs +ts=2025-05-22T09:17:56Z caller=logging.go:85 method=Health result=2 took=51.369µs +ts=2025-05-22T09:17:59Z caller=logging.go:85 method=Health result=2 took=47.019µs +ts=2025-05-22T09:17:59Z caller=logging.go:85 method=Health result=2 took=51.019µs +ts=2025-05-22T09:18:02Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T09:18:02Z caller=logging.go:85 method=Health result=2 took=48.739µs +ts=2025-05-22T09:18:05Z caller=logging.go:85 method=Health result=2 took=44.969µs +ts=2025-05-22T09:18:05Z caller=logging.go:85 method=Health result=2 took=49.309µs +ts=2025-05-22T09:18:08Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T09:18:08Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T09:18:11Z caller=logging.go:85 method=Health result=2 took=43.229µs +ts=2025-05-22T09:18:11Z caller=logging.go:85 method=Health result=2 took=49.699µs +ts=2025-05-22T09:18:14Z caller=logging.go:85 method=Health result=2 took=48.959µs +ts=2025-05-22T09:18:14Z caller=logging.go:85 method=Health result=2 took=49.619µs +ts=2025-05-22T09:18:17Z caller=logging.go:85 method=Health result=2 took=45.849µs +ts=2025-05-22T09:18:17Z caller=logging.go:85 method=Health result=2 took=52.439µs +ts=2025-05-22T09:18:20Z caller=logging.go:85 method=Health result=2 took=36.939µs +ts=2025-05-22T09:18:20Z caller=logging.go:85 method=Health result=2 took=48.339µs +ts=2025-05-22T09:18:23Z caller=logging.go:85 method=Health result=2 took=39.989µs +ts=2025-05-22T09:18:23Z caller=logging.go:85 method=Health result=2 took=33.41µs +ts=2025-05-22T09:18:26Z caller=logging.go:85 method=Health result=2 took=42.629µs +ts=2025-05-22T09:18:26Z caller=logging.go:85 method=Health result=2 took=43.149µs +ts=2025-05-22T09:18:29Z caller=logging.go:85 method=Health result=2 took=47.689µs +ts=2025-05-22T09:18:29Z caller=logging.go:85 method=Health result=2 took=49.979µs +ts=2025-05-22T09:18:32Z caller=logging.go:85 method=Health result=2 took=41.889µs +ts=2025-05-22T09:18:32Z caller=logging.go:85 method=Health result=2 took=40.999µs +ts=2025-05-22T09:18:35Z caller=logging.go:85 method=Health result=2 took=43.529µs +ts=2025-05-22T09:18:35Z caller=logging.go:85 method=Health result=2 took=49.789µs +ts=2025-05-22T09:18:38Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T09:18:38Z caller=logging.go:85 method=Health result=2 took=45.489µs +ts=2025-05-22T09:18:41Z caller=logging.go:85 method=Health result=2 took=38.319µs +ts=2025-05-22T09:18:41Z caller=logging.go:85 method=Health result=2 took=41.869µs +ts=2025-05-22T09:18:44Z caller=logging.go:85 method=Health result=2 took=37.559µs +ts=2025-05-22T09:18:44Z caller=logging.go:85 method=Health result=2 took=45.828µs +ts=2025-05-22T09:18:47Z caller=logging.go:85 method=Health result=2 took=68.938µs +ts=2025-05-22T09:18:47Z caller=logging.go:85 method=Health result=2 took=20.919µs +ts=2025-05-22T09:18:50Z caller=logging.go:85 method=Health result=2 took=37.109µs +ts=2025-05-22T09:18:50Z caller=logging.go:85 method=Health result=2 took=37.089µs +ts=2025-05-22T09:18:53Z caller=logging.go:85 method=Health result=2 took=15.539µs +ts=2025-05-22T09:18:53Z caller=logging.go:85 method=Health result=2 took=29.349µs +ts=2025-05-22T09:18:56Z caller=logging.go:85 method=Health result=2 took=41.209µs +ts=2025-05-22T09:18:56Z caller=logging.go:85 method=Health result=2 took=40.979µs +ts=2025-05-22T09:18:59Z caller=logging.go:85 method=Health result=2 took=44.049µs +ts=2025-05-22T09:18:59Z caller=logging.go:85 method=Health result=2 took=29.639µs +ts=2025-05-22T09:19:02Z caller=logging.go:85 method=Health result=2 took=27.4µs +ts=2025-05-22T09:19:02Z caller=logging.go:85 method=Health result=2 took=27.38µs +ts=2025-05-22T09:19:05Z caller=logging.go:85 method=Health result=2 took=40.299µs +ts=2025-05-22T09:19:05Z caller=logging.go:85 method=Health result=2 took=40.339µs +ts=2025-05-22T09:19:08Z caller=logging.go:85 method=Health result=2 took=31.03µs +ts=2025-05-22T09:19:08Z caller=logging.go:85 method=Health result=2 took=40.389µs +ts=2025-05-22T09:19:11Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T09:19:11Z caller=logging.go:85 method=Health result=2 took=44.719µs +ts=2025-05-22T09:19:14Z caller=logging.go:85 method=Health result=2 took=39.849µs +ts=2025-05-22T09:19:14Z caller=logging.go:85 method=Health result=2 took=39.649µs +ts=2025-05-22T09:19:17Z caller=logging.go:85 method=Health result=2 took=42.709µs +ts=2025-05-22T09:19:17Z caller=logging.go:85 method=Health result=2 took=49.559µs +ts=2025-05-22T09:19:20Z caller=logging.go:85 method=Health result=2 took=30.87µs +ts=2025-05-22T09:19:20Z caller=logging.go:85 method=Health result=2 took=30.91µs +ts=2025-05-22T09:19:23Z caller=logging.go:85 method=Health result=2 took=29.829µs +ts=2025-05-22T09:19:23Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T09:19:26Z caller=logging.go:85 method=Health result=2 took=27.7µs +ts=2025-05-22T09:19:26Z caller=logging.go:85 method=Health result=2 took=42.299µs +ts=2025-05-22T09:19:29Z caller=logging.go:85 method=Health result=2 took=31.15µs +ts=2025-05-22T09:19:29Z caller=logging.go:85 method=Health result=2 took=45.969µs +ts=2025-05-22T09:19:32Z caller=logging.go:85 method=Health result=2 took=44.278µs +ts=2025-05-22T09:19:32Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T09:19:35Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T09:19:35Z caller=logging.go:85 method=Health result=2 took=41.399µs +ts=2025-05-22T09:19:38Z caller=logging.go:85 method=Health result=2 took=45.739µs +ts=2025-05-22T09:19:38Z caller=logging.go:85 method=Health result=2 took=51.749µs +ts=2025-05-22T09:19:41Z caller=logging.go:85 method=Health result=2 took=30.459µs +ts=2025-05-22T09:19:41Z caller=logging.go:85 method=Health result=2 took=46.009µs +ts=2025-05-22T09:19:44Z caller=logging.go:85 method=Health result=2 took=45.159µs +ts=2025-05-22T09:19:44Z caller=logging.go:85 method=Health result=2 took=41.689µs +ts=2025-05-22T09:19:47Z caller=logging.go:85 method=Health result=2 took=46.078µs +ts=2025-05-22T09:19:47Z caller=logging.go:85 method=Health result=2 took=52.059µs +ts=2025-05-22T09:19:50Z caller=logging.go:85 method=Health result=2 took=38.569µs +ts=2025-05-22T09:19:50Z caller=logging.go:85 method=Health result=2 took=37.039µs +ts=2025-05-22T09:19:53Z caller=logging.go:85 method=Health result=2 took=45.869µs +ts=2025-05-22T09:19:53Z caller=logging.go:85 method=Health result=2 took=58.318µs +ts=2025-05-22T09:19:56Z caller=logging.go:85 method=Health result=2 took=66.528µs +ts=2025-05-22T09:19:56Z caller=logging.go:85 method=Health result=2 took=50.258µs +ts=2025-05-22T09:19:59Z caller=logging.go:85 method=Health result=2 took=98.157µs +ts=2025-05-22T09:19:59Z caller=logging.go:85 method=Health result=2 took=67.089µs +ts=2025-05-22T09:20:02Z caller=logging.go:85 method=Health result=2 took=41.519µs +ts=2025-05-22T09:20:02Z caller=logging.go:85 method=Health result=2 took=50.369µs +ts=2025-05-22T09:20:05Z caller=logging.go:85 method=Health result=2 took=39.359µs +ts=2025-05-22T09:20:05Z caller=logging.go:85 method=Health result=2 took=39.379µs +ts=2025-05-22T09:20:08Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T09:20:08Z caller=logging.go:85 method=Health result=2 took=49.259µs +ts=2025-05-22T09:20:11Z caller=logging.go:85 method=Health result=2 took=61.779µs +ts=2025-05-22T09:20:11Z caller=logging.go:85 method=Health result=2 took=54.169µs +ts=2025-05-22T09:20:14Z caller=logging.go:85 method=Health result=2 took=41.429µs +ts=2025-05-22T09:20:14Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T09:20:17Z caller=logging.go:85 method=Health result=2 took=17.32µs +ts=2025-05-22T09:20:17Z caller=logging.go:85 method=Health result=2 took=40.259µs +ts=2025-05-22T09:20:20Z caller=logging.go:85 method=Health result=2 took=34.689µs +ts=2025-05-22T09:20:20Z caller=logging.go:85 method=Health result=2 took=41.649µs +ts=2025-05-22T09:20:23Z caller=logging.go:85 method=Health result=2 took=46.918µs +ts=2025-05-22T09:20:23Z caller=logging.go:85 method=Health result=2 took=48.138µs +ts=2025-05-22T09:20:26Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T09:20:26Z caller=logging.go:85 method=Health result=2 took=44.549µs +ts=2025-05-22T09:20:29Z caller=logging.go:85 method=Health result=2 took=42.759µs +ts=2025-05-22T09:20:29Z caller=logging.go:85 method=Health result=2 took=43.109µs +ts=2025-05-22T09:20:32Z caller=logging.go:85 method=Health result=2 took=44.119µs +ts=2025-05-22T09:20:32Z caller=logging.go:85 method=Health result=2 took=43.399µs +ts=2025-05-22T09:20:35Z caller=logging.go:85 method=Health result=2 took=40.139µs +ts=2025-05-22T09:20:35Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T09:20:38Z caller=logging.go:85 method=Health result=2 took=31.729µs +ts=2025-05-22T09:20:38Z caller=logging.go:85 method=Health result=2 took=52.529µs +ts=2025-05-22T09:20:41Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T09:20:41Z caller=logging.go:85 method=Health result=2 took=44.159µs +ts=2025-05-22T09:20:44Z caller=logging.go:85 method=Health result=2 took=35.609µs +ts=2025-05-22T09:20:44Z caller=logging.go:85 method=Health result=2 took=35.419µs +ts=2025-05-22T09:20:47Z caller=logging.go:85 method=Health result=2 took=46.358µs +ts=2025-05-22T09:20:47Z caller=logging.go:85 method=Health result=2 took=52.689µs +ts=2025-05-22T09:20:50Z caller=logging.go:85 method=Health result=2 took=37.289µs +ts=2025-05-22T09:20:50Z caller=logging.go:85 method=Health result=2 took=37.249µs +ts=2025-05-22T09:20:53Z caller=logging.go:85 method=Health result=2 took=29.65µs +ts=2025-05-22T09:20:53Z caller=logging.go:85 method=Health result=2 took=29.29µs +ts=2025-05-22T09:20:56Z caller=logging.go:85 method=Health result=2 took=41.009µs +ts=2025-05-22T09:20:56Z caller=logging.go:85 method=Health result=2 took=40.989µs +ts=2025-05-22T09:20:59Z caller=logging.go:85 method=Health result=2 took=35.859µs +ts=2025-05-22T09:20:59Z caller=logging.go:85 method=Health result=2 took=35.919µs +ts=2025-05-22T09:21:02Z caller=logging.go:85 method=Health result=2 took=64.279µs +ts=2025-05-22T09:21:02Z caller=logging.go:85 method=Health result=2 took=56.248µs +ts=2025-05-22T09:21:05Z caller=logging.go:85 method=Health result=2 took=56.389µs +ts=2025-05-22T09:21:05Z caller=logging.go:85 method=Health result=2 took=56.399µs +ts=2025-05-22T09:21:08Z caller=logging.go:85 method=Health result=2 took=43.089µs +ts=2025-05-22T09:21:08Z caller=logging.go:85 method=Health result=2 took=43.079µs +ts=2025-05-22T09:21:11Z caller=logging.go:85 method=Health result=2 took=47.619µs +ts=2025-05-22T09:21:11Z caller=logging.go:85 method=Health result=2 took=46.969µs +ts=2025-05-22T09:21:14Z caller=logging.go:85 method=Health result=2 took=51.379µs +ts=2025-05-22T09:21:14Z caller=logging.go:85 method=Health result=2 took=52.119µs +ts=2025-05-22T09:21:17Z caller=logging.go:85 method=Health result=2 took=49.009µs +ts=2025-05-22T09:21:17Z caller=logging.go:85 method=Health result=2 took=25.899µs +ts=2025-05-22T09:21:20Z caller=logging.go:85 method=Health result=2 took=35.51µs +ts=2025-05-22T09:21:20Z caller=logging.go:85 method=Health result=2 took=44.549µs +ts=2025-05-22T09:21:23Z caller=logging.go:85 method=Health result=2 took=29.319µs +ts=2025-05-22T09:21:23Z caller=logging.go:85 method=Health result=2 took=57.169µs +ts=2025-05-22T09:21:26Z caller=logging.go:85 method=Health result=2 took=48.069µs +ts=2025-05-22T09:21:26Z caller=logging.go:85 method=Health result=2 took=41.759µs +ts=2025-05-22T09:21:29Z caller=logging.go:85 method=Health result=2 took=52.088µs +ts=2025-05-22T09:21:29Z caller=logging.go:85 method=Health result=2 took=85.138µs +ts=2025-05-22T09:21:32Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T09:21:32Z caller=logging.go:85 method=Health result=2 took=52.938µs +ts=2025-05-22T09:21:35Z caller=logging.go:85 method=Health result=2 took=32.399µs +ts=2025-05-22T09:21:35Z caller=logging.go:85 method=Health result=2 took=47.048µs +ts=2025-05-22T09:21:38Z caller=logging.go:85 method=Health result=2 took=40.449µs +ts=2025-05-22T09:21:38Z caller=logging.go:85 method=Health result=2 took=40.929µs +ts=2025-05-22T09:21:41Z caller=logging.go:85 method=Health result=2 took=43.219µs +ts=2025-05-22T09:21:41Z caller=logging.go:85 method=Health result=2 took=39.959µs +ts=2025-05-22T09:21:44Z caller=logging.go:85 method=Health result=2 took=45.339µs +ts=2025-05-22T09:21:44Z caller=logging.go:85 method=Health result=2 took=31.06µs +ts=2025-05-22T09:21:47Z caller=logging.go:85 method=Health result=2 took=130.277µs +ts=2025-05-22T09:21:47Z caller=logging.go:85 method=Health result=2 took=159.937µs +ts=2025-05-22T09:21:50Z caller=logging.go:85 method=Health result=2 took=100.358µs +ts=2025-05-22T09:21:50Z caller=logging.go:85 method=Health result=2 took=104.468µs +ts=2025-05-22T09:21:53Z caller=logging.go:85 method=Health result=2 took=40.539µs +ts=2025-05-22T09:21:53Z caller=logging.go:85 method=Health result=2 took=45.718µs +ts=2025-05-22T09:21:56Z caller=logging.go:85 method=Health result=2 took=30.97µs +ts=2025-05-22T09:21:56Z caller=logging.go:85 method=Health result=2 took=31.679µs +ts=2025-05-22T09:21:59Z caller=logging.go:85 method=Health result=2 took=50.649µs +ts=2025-05-22T09:21:59Z caller=logging.go:85 method=Health result=2 took=22.27µs +ts=2025-05-22T09:22:02Z caller=logging.go:85 method=Health result=2 took=39.579µs +ts=2025-05-22T09:22:02Z caller=logging.go:85 method=Health result=2 took=27.539µs +ts=2025-05-22T09:22:05Z caller=logging.go:85 method=Health result=2 took=37.459µs +ts=2025-05-22T09:22:05Z caller=logging.go:85 method=Health result=2 took=48.559µs +ts=2025-05-22T09:22:08Z caller=logging.go:85 method=Health result=2 took=56.708µs +ts=2025-05-22T09:22:08Z caller=logging.go:85 method=Health result=2 took=56.698µs +ts=2025-05-22T09:22:11Z caller=logging.go:85 method=Health result=2 took=37.409µs +ts=2025-05-22T09:22:11Z caller=logging.go:85 method=Health result=2 took=32.039µs +ts=2025-05-22T09:22:14Z caller=logging.go:85 method=Health result=2 took=31.55µs +ts=2025-05-22T09:22:14Z caller=logging.go:85 method=Health result=2 took=40.129µs +ts=2025-05-22T09:22:17Z caller=logging.go:85 method=Health result=2 took=73.689µs +ts=2025-05-22T09:22:17Z caller=logging.go:85 method=Health result=2 took=63.739µs +ts=2025-05-22T09:22:20Z caller=logging.go:85 method=Health result=2 took=45.009µs +ts=2025-05-22T09:22:20Z caller=logging.go:85 method=Health result=2 took=31.87µs +ts=2025-05-22T09:22:23Z caller=logging.go:85 method=Health result=2 took=64.219µs +ts=2025-05-22T09:22:23Z caller=logging.go:85 method=Health result=2 took=64.759µs +ts=2025-05-22T09:22:26Z caller=logging.go:85 method=Health result=2 took=42.839µs +ts=2025-05-22T09:22:26Z caller=logging.go:85 method=Health result=2 took=49.429µs +ts=2025-05-22T09:22:29Z caller=logging.go:85 method=Health result=2 took=51.329µs +ts=2025-05-22T09:22:29Z caller=logging.go:85 method=Health result=2 took=48.019µs +ts=2025-05-22T09:22:32Z caller=logging.go:85 method=Health result=2 took=44.319µs +ts=2025-05-22T09:22:32Z caller=logging.go:85 method=Health result=2 took=43.999µs +ts=2025-05-22T09:22:35Z caller=logging.go:85 method=Health result=2 took=42.179µs +ts=2025-05-22T09:22:35Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T09:22:38Z caller=logging.go:85 method=Health result=2 took=38.949µs +ts=2025-05-22T09:22:38Z caller=logging.go:85 method=Health result=2 took=24.5µs +ts=2025-05-22T09:22:41Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T09:22:41Z caller=logging.go:85 method=Health result=2 took=42.799µs +ts=2025-05-22T09:22:44Z caller=logging.go:85 method=Health result=2 took=31.299µs +ts=2025-05-22T09:22:44Z caller=logging.go:85 method=Health result=2 took=47.439µs +ts=2025-05-22T09:22:47Z caller=logging.go:85 method=Health result=2 took=45.289µs +ts=2025-05-22T09:22:47Z caller=logging.go:85 method=Health result=2 took=38.66µs +ts=2025-05-22T09:22:50Z caller=logging.go:85 method=Health result=2 took=43.758µs +ts=2025-05-22T09:22:50Z caller=logging.go:85 method=Health result=2 took=30.02µs +ts=2025-05-22T09:22:53Z caller=logging.go:85 method=Health result=2 took=31.779µs +ts=2025-05-22T09:22:53Z caller=logging.go:85 method=Health result=2 took=34.979µs +ts=2025-05-22T09:22:56Z caller=logging.go:85 method=Health result=2 took=34.869µs +ts=2025-05-22T09:22:56Z caller=logging.go:85 method=Health result=2 took=35.269µs +ts=2025-05-22T09:22:59Z caller=logging.go:85 method=Health result=2 took=31.709µs +ts=2025-05-22T09:22:59Z caller=logging.go:85 method=Health result=2 took=49.489µs +ts=2025-05-22T09:23:02Z caller=logging.go:85 method=Health result=2 took=30.919µs +ts=2025-05-22T09:23:02Z caller=logging.go:85 method=Health result=2 took=33.159µs +ts=2025-05-22T09:23:05Z caller=logging.go:85 method=Health result=2 took=41.789µs +ts=2025-05-22T09:23:05Z caller=logging.go:85 method=Health result=2 took=46.759µs +ts=2025-05-22T09:23:08Z caller=logging.go:85 method=Health result=2 took=31.189µs +ts=2025-05-22T09:23:08Z caller=logging.go:85 method=Health result=2 took=46.989µs +ts=2025-05-22T09:23:11Z caller=logging.go:85 method=Health result=2 took=42.769µs +ts=2025-05-22T09:23:11Z caller=logging.go:85 method=Health result=2 took=48.599µs +ts=2025-05-22T09:23:14Z caller=logging.go:85 method=Health result=2 took=40.289µs +ts=2025-05-22T09:23:14Z caller=logging.go:85 method=Health result=2 took=40.829µs +ts=2025-05-22T09:23:17Z caller=logging.go:85 method=Health result=2 took=39.229µs +ts=2025-05-22T09:23:17Z caller=logging.go:85 method=Health result=2 took=39.199µs +ts=2025-05-22T09:23:20Z caller=logging.go:85 method=Health result=2 took=44.249µs +ts=2025-05-22T09:23:20Z caller=logging.go:85 method=Health result=2 took=43.859µs +ts=2025-05-22T09:23:23Z caller=logging.go:85 method=Health result=2 took=44.859µs +ts=2025-05-22T09:23:23Z caller=logging.go:85 method=Health result=2 took=50.959µs +ts=2025-05-22T09:23:26Z caller=logging.go:85 method=Health result=2 took=41.919µs +ts=2025-05-22T09:23:26Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T09:23:29Z caller=logging.go:85 method=Health result=2 took=38.539µs +ts=2025-05-22T09:23:29Z caller=logging.go:85 method=Health result=2 took=83.218µs +ts=2025-05-22T09:23:32Z caller=logging.go:85 method=Health result=2 took=54.589µs +ts=2025-05-22T09:23:32Z caller=logging.go:85 method=Health result=2 took=54.579µs +ts=2025-05-22T09:23:35Z caller=logging.go:85 method=Health result=2 took=30.12µs +ts=2025-05-22T09:23:35Z caller=logging.go:85 method=Health result=2 took=40.699µs +ts=2025-05-22T09:23:38Z caller=logging.go:85 method=Health result=2 took=35.709µs +ts=2025-05-22T09:23:38Z caller=logging.go:85 method=Health result=2 took=35.909µs +ts=2025-05-22T09:23:41Z caller=logging.go:85 method=Health result=2 took=37.069µs +ts=2025-05-22T09:23:41Z caller=logging.go:85 method=Health result=2 took=23.469µs +ts=2025-05-22T09:23:44Z caller=logging.go:85 method=Health result=2 took=41.179µs +ts=2025-05-22T09:23:44Z caller=logging.go:85 method=Health result=2 took=49.579µs +ts=2025-05-22T09:23:47Z caller=logging.go:85 method=Health result=2 took=37.319µs +ts=2025-05-22T09:23:47Z caller=logging.go:85 method=Health result=2 took=50.029µs +ts=2025-05-22T09:23:50Z caller=logging.go:85 method=Health result=2 took=44.309µs +ts=2025-05-22T09:23:50Z caller=logging.go:85 method=Health result=2 took=44.129µs +ts=2025-05-22T09:23:53Z caller=logging.go:85 method=Health result=2 took=39.179µs +ts=2025-05-22T09:23:53Z caller=logging.go:85 method=Health result=2 took=50.789µs +ts=2025-05-22T09:23:56Z caller=logging.go:85 method=Health result=2 took=36.049µs +ts=2025-05-22T09:23:56Z caller=logging.go:85 method=Health result=2 took=36.399µs +ts=2025-05-22T09:23:59Z caller=logging.go:85 method=Health result=2 took=56.119µs +ts=2025-05-22T09:23:59Z caller=logging.go:85 method=Health result=2 took=47.499µs +ts=2025-05-22T09:24:02Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T09:24:02Z caller=logging.go:85 method=Health result=2 took=50.779µs +ts=2025-05-22T09:24:05Z caller=logging.go:85 method=Health result=2 took=28.6µs +ts=2025-05-22T09:24:05Z caller=logging.go:85 method=Health result=2 took=28.58µs +ts=2025-05-22T09:24:08Z caller=logging.go:85 method=Health result=2 took=37.849µs +ts=2025-05-22T09:24:08Z caller=logging.go:85 method=Health result=2 took=46.089µs +ts=2025-05-22T09:24:11Z caller=logging.go:85 method=Health result=2 took=39.239µs +ts=2025-05-22T09:24:11Z caller=logging.go:85 method=Health result=2 took=49.029µs +ts=2025-05-22T09:24:14Z caller=logging.go:85 method=Health result=2 took=41.199µs +ts=2025-05-22T09:24:14Z caller=logging.go:85 method=Health result=2 took=49.139µs +ts=2025-05-22T09:24:17Z caller=logging.go:85 method=Health result=2 took=44.879µs +ts=2025-05-22T09:24:17Z caller=logging.go:85 method=Health result=2 took=68.279µs +ts=2025-05-22T09:24:20Z caller=logging.go:85 method=Health result=2 took=43.789µs +ts=2025-05-22T09:24:20Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T09:24:23Z caller=logging.go:85 method=Health result=2 took=46.979µs +ts=2025-05-22T09:24:23Z caller=logging.go:85 method=Health result=2 took=47.729µs +ts=2025-05-22T09:24:26Z caller=logging.go:85 method=Health result=2 took=43.579µs +ts=2025-05-22T09:24:26Z caller=logging.go:85 method=Health result=2 took=44.069µs +ts=2025-05-22T09:24:29Z caller=logging.go:85 method=Health result=2 took=44.289µs +ts=2025-05-22T09:24:29Z caller=logging.go:85 method=Health result=2 took=44.549µs +ts=2025-05-22T09:24:32Z caller=logging.go:85 method=Health result=2 took=37.47µs +ts=2025-05-22T09:24:32Z caller=logging.go:85 method=Health result=2 took=48.229µs +ts=2025-05-22T09:24:35Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T09:24:35Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T09:24:38Z caller=logging.go:85 method=Health result=2 took=39.159µs +ts=2025-05-22T09:24:38Z caller=logging.go:85 method=Health result=2 took=39.959µs +ts=2025-05-22T09:24:41Z caller=logging.go:85 method=Health result=2 took=39.719µs +ts=2025-05-22T09:24:41Z caller=logging.go:85 method=Health result=2 took=39.629µs +ts=2025-05-22T09:24:44Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T09:24:44Z caller=logging.go:85 method=Health result=2 took=40.389µs +ts=2025-05-22T09:24:47Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T09:24:47Z caller=logging.go:85 method=Health result=2 took=42.369µs +ts=2025-05-22T09:24:50Z caller=logging.go:85 method=Health result=2 took=39.239µs +ts=2025-05-22T09:24:50Z caller=logging.go:85 method=Health result=2 took=39.089µs +ts=2025-05-22T09:24:53Z caller=logging.go:85 method=Health result=2 took=33.309µs +ts=2025-05-22T09:24:53Z caller=logging.go:85 method=Health result=2 took=44.989µs +ts=2025-05-22T09:24:56Z caller=logging.go:85 method=Health result=2 took=39.909µs +ts=2025-05-22T09:24:56Z caller=logging.go:85 method=Health result=2 took=40.669µs +ts=2025-05-22T09:24:59Z caller=logging.go:85 method=Health result=2 took=39.699µs +ts=2025-05-22T09:24:59Z caller=logging.go:85 method=Health result=2 took=49.009µs +ts=2025-05-22T09:25:02Z caller=logging.go:85 method=Health result=2 took=41.309µs +ts=2025-05-22T09:25:02Z caller=logging.go:85 method=Health result=2 took=48.419µs +ts=2025-05-22T09:25:05Z caller=logging.go:85 method=Health result=2 took=38.829µs +ts=2025-05-22T09:25:05Z caller=logging.go:85 method=Health result=2 took=39.459µs +ts=2025-05-22T09:25:08Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T09:25:08Z caller=logging.go:85 method=Health result=2 took=43.389µs +ts=2025-05-22T09:25:11Z caller=logging.go:85 method=Health result=2 took=30.43µs +ts=2025-05-22T09:25:11Z caller=logging.go:85 method=Health result=2 took=30.79µs +ts=2025-05-22T09:25:14Z caller=logging.go:85 method=Health result=2 took=34.379µs +ts=2025-05-22T09:25:14Z caller=logging.go:85 method=Health result=2 took=45.879µs +ts=2025-05-22T09:25:17Z caller=logging.go:85 method=Health result=2 took=39.239µs +ts=2025-05-22T09:25:17Z caller=logging.go:85 method=Health result=2 took=39.509µs +ts=2025-05-22T09:25:20Z caller=logging.go:85 method=Health result=2 took=39.059µs +ts=2025-05-22T09:25:20Z caller=logging.go:85 method=Health result=2 took=47.018µs +ts=2025-05-22T09:25:23Z caller=logging.go:85 method=Health result=2 took=42.079µs +ts=2025-05-22T09:25:23Z caller=logging.go:85 method=Health result=2 took=49.579µs +ts=2025-05-22T09:25:26Z caller=logging.go:85 method=Health result=2 took=39.289µs +ts=2025-05-22T09:25:26Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T09:25:29Z caller=logging.go:85 method=Health result=2 took=44.548µs +ts=2025-05-22T09:25:29Z caller=logging.go:85 method=Health result=2 took=48.089µs +ts=2025-05-22T09:25:32Z caller=logging.go:85 method=Health result=2 took=42.499µs +ts=2025-05-22T09:25:32Z caller=logging.go:85 method=Health result=2 took=42.939µs +ts=2025-05-22T09:25:35Z caller=logging.go:85 method=Health result=2 took=44.149µs +ts=2025-05-22T09:25:35Z caller=logging.go:85 method=Health result=2 took=30.079µs +ts=2025-05-22T09:25:38Z caller=logging.go:85 method=Health result=2 took=44.969µs +ts=2025-05-22T09:25:38Z caller=logging.go:85 method=Health result=2 took=43.449µs +ts=2025-05-22T09:25:41Z caller=logging.go:85 method=Health result=2 took=45.089µs +ts=2025-05-22T09:25:41Z caller=logging.go:85 method=Health result=2 took=49.269µs +ts=2025-05-22T09:25:44Z caller=logging.go:85 method=Health result=2 took=39.389µs +ts=2025-05-22T09:25:44Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T09:25:47Z caller=logging.go:85 method=Health result=2 took=44.419µs +ts=2025-05-22T09:25:47Z caller=logging.go:85 method=Health result=2 took=48.729µs +ts=2025-05-22T09:25:50Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T09:25:50Z caller=logging.go:85 method=Health result=2 took=75.649µs +ts=2025-05-22T09:25:53Z caller=logging.go:85 method=Health result=2 took=40.449µs +ts=2025-05-22T09:25:53Z caller=logging.go:85 method=Health result=2 took=36.399µs +ts=2025-05-22T09:25:56Z caller=logging.go:85 method=Health result=2 took=39.989µs +ts=2025-05-22T09:25:56Z caller=logging.go:85 method=Health result=2 took=41.069µs +ts=2025-05-22T09:25:59Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T09:25:59Z caller=logging.go:85 method=Health result=2 took=24.469µs +ts=2025-05-22T09:26:02Z caller=logging.go:85 method=Health result=2 took=38.819µs +ts=2025-05-22T09:26:02Z caller=logging.go:85 method=Health result=2 took=38.749µs +ts=2025-05-22T09:26:05Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T09:26:05Z caller=logging.go:85 method=Health result=2 took=45.189µs +ts=2025-05-22T09:26:08Z caller=logging.go:85 method=Health result=2 took=33.419µs +ts=2025-05-22T09:26:08Z caller=logging.go:85 method=Health result=2 took=34.88µs +ts=2025-05-22T09:26:11Z caller=logging.go:85 method=Health result=2 took=42.339µs +ts=2025-05-22T09:26:11Z caller=logging.go:85 method=Health result=2 took=50.138µs +ts=2025-05-22T09:26:14Z caller=logging.go:85 method=Health result=2 took=28.149µs +ts=2025-05-22T09:26:14Z caller=logging.go:85 method=Health result=2 took=15.049µs +ts=2025-05-22T09:26:17Z caller=logging.go:85 method=Health result=2 took=47.709µs +ts=2025-05-22T09:26:17Z caller=logging.go:85 method=Health result=2 took=61.858µs +ts=2025-05-22T09:26:20Z caller=logging.go:85 method=Health result=2 took=32.19µs +ts=2025-05-22T09:26:20Z caller=logging.go:85 method=Health result=2 took=55.809µs +ts=2025-05-22T09:26:23Z caller=logging.go:85 method=Health result=2 took=43.989µs +ts=2025-05-22T09:26:23Z caller=logging.go:85 method=Health result=2 took=43.509µs +ts=2025-05-22T09:26:26Z caller=logging.go:85 method=Health result=2 took=45.109µs +ts=2025-05-22T09:26:26Z caller=logging.go:85 method=Health result=2 took=48.359µs +ts=2025-05-22T09:26:29Z caller=logging.go:85 method=Health result=2 took=30.31µs +ts=2025-05-22T09:26:29Z caller=logging.go:85 method=Health result=2 took=19.58µs +ts=2025-05-22T09:26:32Z caller=logging.go:85 method=Health result=2 took=46.099µs +ts=2025-05-22T09:26:32Z caller=logging.go:85 method=Health result=2 took=45.419µs +ts=2025-05-22T09:26:35Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T09:26:35Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T09:26:38Z caller=logging.go:85 method=Health result=2 took=47.599µs +ts=2025-05-22T09:26:38Z caller=logging.go:85 method=Health result=2 took=50.798µs +ts=2025-05-22T09:26:41Z caller=logging.go:85 method=Health result=2 took=41.839µs +ts=2025-05-22T09:26:41Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T09:26:44Z caller=logging.go:85 method=Health result=2 took=38.229µs +ts=2025-05-22T09:26:44Z caller=logging.go:85 method=Health result=2 took=37.759µs +ts=2025-05-22T09:26:47Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T09:26:47Z caller=logging.go:85 method=Health result=2 took=38.839µs +ts=2025-05-22T09:26:50Z caller=logging.go:85 method=Health result=2 took=39.349µs +ts=2025-05-22T09:26:50Z caller=logging.go:85 method=Health result=2 took=38.989µs +ts=2025-05-22T09:26:53Z caller=logging.go:85 method=Health result=2 took=33.33µs +ts=2025-05-22T09:26:53Z caller=logging.go:85 method=Health result=2 took=47.169µs +ts=2025-05-22T09:26:56Z caller=logging.go:85 method=Health result=2 took=41.759µs +ts=2025-05-22T09:26:56Z caller=logging.go:85 method=Health result=2 took=41.209µs +ts=2025-05-22T09:26:59Z caller=logging.go:85 method=Health result=2 took=44.749µs +ts=2025-05-22T09:26:59Z caller=logging.go:85 method=Health result=2 took=50.129µs +ts=2025-05-22T09:27:02Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T09:27:02Z caller=logging.go:85 method=Health result=2 took=42.749µs +ts=2025-05-22T09:27:05Z caller=logging.go:85 method=Health result=2 took=40.139µs +ts=2025-05-22T09:27:05Z caller=logging.go:85 method=Health result=2 took=40.899µs +ts=2025-05-22T09:27:08Z caller=logging.go:85 method=Health result=2 took=39.099µs +ts=2025-05-22T09:27:08Z caller=logging.go:85 method=Health result=2 took=39.469µs +ts=2025-05-22T09:27:11Z caller=logging.go:85 method=Health result=2 took=46.399µs +ts=2025-05-22T09:27:11Z caller=logging.go:85 method=Health result=2 took=49.148µs +ts=2025-05-22T09:27:14Z caller=logging.go:85 method=Health result=2 took=41.819µs +ts=2025-05-22T09:27:14Z caller=logging.go:85 method=Health result=2 took=49.199µs +ts=2025-05-22T09:27:17Z caller=logging.go:85 method=Health result=2 took=28.129µs +ts=2025-05-22T09:27:17Z caller=logging.go:85 method=Health result=2 took=55.359µs +ts=2025-05-22T09:27:20Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T09:27:20Z caller=logging.go:85 method=Health result=2 took=43.399µs +ts=2025-05-22T09:27:23Z caller=logging.go:85 method=Health result=2 took=42.419µs +ts=2025-05-22T09:27:23Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T09:27:26Z caller=logging.go:85 method=Health result=2 took=58.279µs +ts=2025-05-22T09:27:26Z caller=logging.go:85 method=Health result=2 took=49.599µs +ts=2025-05-22T09:27:29Z caller=logging.go:85 method=Health result=2 took=44.189µs +ts=2025-05-22T09:27:29Z caller=logging.go:85 method=Health result=2 took=27.809µs +ts=2025-05-22T09:27:32Z caller=logging.go:85 method=Health result=2 took=32.63µs +ts=2025-05-22T09:27:32Z caller=logging.go:85 method=Health result=2 took=47.868µs +ts=2025-05-22T09:27:35Z caller=logging.go:85 method=Health result=2 took=38.949µs +ts=2025-05-22T09:27:35Z caller=logging.go:85 method=Health result=2 took=39.589µs +ts=2025-05-22T09:27:38Z caller=logging.go:85 method=Health result=2 took=40.259µs +ts=2025-05-22T09:27:38Z caller=logging.go:85 method=Health result=2 took=23.509µs +ts=2025-05-22T09:27:41Z caller=logging.go:85 method=Health result=2 took=53.209µs +ts=2025-05-22T09:27:41Z caller=logging.go:85 method=Health result=2 took=51.578µs +ts=2025-05-22T09:27:44Z caller=logging.go:85 method=Health result=2 took=43.839µs +ts=2025-05-22T09:27:44Z caller=logging.go:85 method=Health result=2 took=50.769µs +ts=2025-05-22T09:27:47Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T09:27:47Z caller=logging.go:85 method=Health result=2 took=43.779µs +ts=2025-05-22T09:27:50Z caller=logging.go:85 method=Health result=2 took=46.619µs +ts=2025-05-22T09:27:50Z caller=logging.go:85 method=Health result=2 took=52.029µs +ts=2025-05-22T09:27:53Z caller=logging.go:85 method=Health result=2 took=44.189µs +ts=2025-05-22T09:27:53Z caller=logging.go:85 method=Health result=2 took=41.139µs +ts=2025-05-22T09:27:56Z caller=logging.go:85 method=Health result=2 took=46.988µs +ts=2025-05-22T09:27:56Z caller=logging.go:85 method=Health result=2 took=47.419µs +ts=2025-05-22T09:27:59Z caller=logging.go:85 method=Health result=2 took=44.309µs +ts=2025-05-22T09:27:59Z caller=logging.go:85 method=Health result=2 took=53.159µs +ts=2025-05-22T09:28:02Z caller=logging.go:85 method=Health result=2 took=45.679µs +ts=2025-05-22T09:28:02Z caller=logging.go:85 method=Health result=2 took=49.968µs +ts=2025-05-22T09:28:05Z caller=logging.go:85 method=Health result=2 took=43.599µs +ts=2025-05-22T09:28:05Z caller=logging.go:85 method=Health result=2 took=30.329µs +ts=2025-05-22T09:28:08Z caller=logging.go:85 method=Health result=2 took=42.399µs +ts=2025-05-22T09:28:08Z caller=logging.go:85 method=Health result=2 took=49.688µs +ts=2025-05-22T09:28:11Z caller=logging.go:85 method=Health result=2 took=33.589µs +ts=2025-05-22T09:28:11Z caller=logging.go:85 method=Health result=2 took=46.259µs +ts=2025-05-22T09:28:14Z caller=logging.go:85 method=Health result=2 took=15.6µs +ts=2025-05-22T09:28:14Z caller=logging.go:85 method=Health result=2 took=31.289µs +ts=2025-05-22T09:28:17Z caller=logging.go:85 method=Health result=2 took=99.488µs +ts=2025-05-22T09:28:17Z caller=logging.go:85 method=Health result=2 took=78.468µs +ts=2025-05-22T09:28:20Z caller=logging.go:85 method=Health result=2 took=44.999µs +ts=2025-05-22T09:28:20Z caller=logging.go:85 method=Health result=2 took=51.369µs +ts=2025-05-22T09:28:23Z caller=logging.go:85 method=Health result=2 took=47.009µs +ts=2025-05-22T09:28:23Z caller=logging.go:85 method=Health result=2 took=48.788µs +ts=2025-05-22T09:28:26Z caller=logging.go:85 method=Health result=2 took=36.289µs +ts=2025-05-22T09:28:26Z caller=logging.go:85 method=Health result=2 took=36.089µs +ts=2025-05-22T09:28:29Z caller=logging.go:85 method=Health result=2 took=25.27µs +ts=2025-05-22T09:28:29Z caller=logging.go:85 method=Health result=2 took=25.46µs +ts=2025-05-22T09:28:32Z caller=logging.go:85 method=Health result=2 took=51.309µs +ts=2025-05-22T09:28:32Z caller=logging.go:85 method=Health result=2 took=30.579µs +ts=2025-05-22T09:28:35Z caller=logging.go:85 method=Health result=2 took=41.659µs +ts=2025-05-22T09:28:35Z caller=logging.go:85 method=Health result=2 took=40.189µs +ts=2025-05-22T09:28:38Z caller=logging.go:85 method=Health result=2 took=29.2µs +ts=2025-05-22T09:28:38Z caller=logging.go:85 method=Health result=2 took=29.2µs +ts=2025-05-22T09:28:41Z caller=logging.go:85 method=Health result=2 took=53.298µs +ts=2025-05-22T09:28:41Z caller=logging.go:85 method=Health result=2 took=21.29µs +ts=2025-05-22T09:28:44Z caller=logging.go:85 method=Health result=2 took=44.589µs +ts=2025-05-22T09:28:44Z caller=logging.go:85 method=Health result=2 took=49.149µs +ts=2025-05-22T09:28:47Z caller=logging.go:85 method=Health result=2 took=30.139µs +ts=2025-05-22T09:28:47Z caller=logging.go:85 method=Health result=2 took=47.509µs +ts=2025-05-22T09:28:50Z caller=logging.go:85 method=Health result=2 took=42.239µs +ts=2025-05-22T09:28:50Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T09:28:53Z caller=logging.go:85 method=Health result=2 took=34.969µs +ts=2025-05-22T09:28:53Z caller=logging.go:85 method=Health result=2 took=35.239µs +ts=2025-05-22T09:28:56Z caller=logging.go:85 method=Health result=2 took=43.929µs +ts=2025-05-22T09:28:56Z caller=logging.go:85 method=Health result=2 took=44.239µs +ts=2025-05-22T09:28:59Z caller=logging.go:85 method=Health result=2 took=43.169µs +ts=2025-05-22T09:28:59Z caller=logging.go:85 method=Health result=2 took=42.469µs +ts=2025-05-22T09:29:02Z caller=logging.go:85 method=Health result=2 took=38.939µs +ts=2025-05-22T09:29:02Z caller=logging.go:85 method=Health result=2 took=39.119µs +ts=2025-05-22T09:29:05Z caller=logging.go:85 method=Health result=2 took=44.469µs +ts=2025-05-22T09:29:05Z caller=logging.go:85 method=Health result=2 took=41.019µs +ts=2025-05-22T09:29:08Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T09:29:08Z caller=logging.go:85 method=Health result=2 took=30.599µs +ts=2025-05-22T09:29:11Z caller=logging.go:85 method=Health result=2 took=44.709µs +ts=2025-05-22T09:29:11Z caller=logging.go:85 method=Health result=2 took=43.959µs +ts=2025-05-22T09:29:14Z caller=logging.go:85 method=Health result=2 took=43.489µs +ts=2025-05-22T09:29:14Z caller=logging.go:85 method=Health result=2 took=44.739µs +ts=2025-05-22T09:29:17Z caller=logging.go:85 method=Health result=2 took=42.009µs +ts=2025-05-22T09:29:17Z caller=logging.go:85 method=Health result=2 took=35.509µs +ts=2025-05-22T09:29:20Z caller=logging.go:85 method=Health result=2 took=36.169µs +ts=2025-05-22T09:29:20Z caller=logging.go:85 method=Health result=2 took=35.819µs +ts=2025-05-22T09:29:23Z caller=logging.go:85 method=Health result=2 took=46.019µs +ts=2025-05-22T09:29:23Z caller=logging.go:85 method=Health result=2 took=48.708µs +ts=2025-05-22T09:29:26Z caller=logging.go:85 method=Health result=2 took=32.52µs +ts=2025-05-22T09:29:26Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T09:29:29Z caller=logging.go:85 method=Health result=2 took=44.019µs +ts=2025-05-22T09:29:29Z caller=logging.go:85 method=Health result=2 took=47.029µs +ts=2025-05-22T09:29:32Z caller=logging.go:85 method=Health result=2 took=42.619µs +ts=2025-05-22T09:29:32Z caller=logging.go:85 method=Health result=2 took=50.069µs +ts=2025-05-22T09:29:35Z caller=logging.go:85 method=Health result=2 took=44.219µs +ts=2025-05-22T09:29:35Z caller=logging.go:85 method=Health result=2 took=19.169µs +ts=2025-05-22T09:29:38Z caller=logging.go:85 method=Health result=2 took=43.549µs +ts=2025-05-22T09:29:38Z caller=logging.go:85 method=Health result=2 took=42.869µs +ts=2025-05-22T09:29:41Z caller=logging.go:85 method=Health result=2 took=45.009µs +ts=2025-05-22T09:29:41Z caller=logging.go:85 method=Health result=2 took=50.189µs +ts=2025-05-22T09:29:44Z caller=logging.go:85 method=Health result=2 took=31.14µs +ts=2025-05-22T09:29:44Z caller=logging.go:85 method=Health result=2 took=34.659µs +ts=2025-05-22T09:29:47Z caller=logging.go:85 method=Health result=2 took=28.93µs +ts=2025-05-22T09:29:47Z caller=logging.go:85 method=Health result=2 took=45.589µs +ts=2025-05-22T09:29:50Z caller=logging.go:85 method=Health result=2 took=26.59µs +ts=2025-05-22T09:29:50Z caller=logging.go:85 method=Health result=2 took=26.69µs +ts=2025-05-22T09:29:53Z caller=logging.go:85 method=Health result=2 took=29.88µs +ts=2025-05-22T09:29:53Z caller=logging.go:85 method=Health result=2 took=29µs +ts=2025-05-22T09:29:56Z caller=logging.go:85 method=Health result=2 took=64.748µs +ts=2025-05-22T09:29:56Z caller=logging.go:85 method=Health result=2 took=61.329µs +ts=2025-05-22T09:29:59Z caller=logging.go:85 method=Health result=2 took=45.719µs +ts=2025-05-22T09:29:59Z caller=logging.go:85 method=Health result=2 took=63.678µs +ts=2025-05-22T09:30:02Z caller=logging.go:85 method=Health result=2 took=31.059µs +ts=2025-05-22T09:30:02Z caller=logging.go:85 method=Health result=2 took=31.059µs +ts=2025-05-22T09:30:05Z caller=logging.go:85 method=Health result=2 took=41.719µs +ts=2025-05-22T09:30:05Z caller=logging.go:85 method=Health result=2 took=70.158µs +ts=2025-05-22T09:30:08Z caller=logging.go:85 method=Health result=2 took=31.729µs +ts=2025-05-22T09:30:08Z caller=logging.go:85 method=Health result=2 took=14.07µs +ts=2025-05-22T09:30:11Z caller=logging.go:85 method=Health result=2 took=44.619µs +ts=2025-05-22T09:30:11Z caller=logging.go:85 method=Health result=2 took=50.719µs +ts=2025-05-22T09:30:14Z caller=logging.go:85 method=Health result=2 took=31.869µs +ts=2025-05-22T09:30:14Z caller=logging.go:85 method=Health result=2 took=31.909µs +ts=2025-05-22T09:30:17Z caller=logging.go:85 method=Health result=2 took=189.806µs +ts=2025-05-22T09:30:17Z caller=logging.go:85 method=Health result=2 took=987.797µs +ts=2025-05-22T09:30:20Z caller=logging.go:85 method=Health result=2 took=43.559µs +ts=2025-05-22T09:30:20Z caller=logging.go:85 method=Health result=2 took=44.889µs +ts=2025-05-22T09:30:23Z caller=logging.go:85 method=Health result=2 took=36.199µs +ts=2025-05-22T09:30:23Z caller=logging.go:85 method=Health result=2 took=35.919µs +ts=2025-05-22T09:30:26Z caller=logging.go:85 method=Health result=2 took=41.999µs +ts=2025-05-22T09:30:26Z caller=logging.go:85 method=Health result=2 took=27.539µs +ts=2025-05-22T09:30:29Z caller=logging.go:85 method=Health result=2 took=41.079µs +ts=2025-05-22T09:30:29Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T09:30:32Z caller=logging.go:85 method=Health result=2 took=26.64µs +ts=2025-05-22T09:30:32Z caller=logging.go:85 method=Health result=2 took=26.87µs +ts=2025-05-22T09:30:35Z caller=logging.go:85 method=Health result=2 took=41.169µs +ts=2025-05-22T09:30:35Z caller=logging.go:85 method=Health result=2 took=41.029µs +ts=2025-05-22T09:30:38Z caller=logging.go:85 method=Health result=2 took=31.249µs +ts=2025-05-22T09:30:38Z caller=logging.go:85 method=Health result=2 took=43.999µs +ts=2025-05-22T09:30:41Z caller=logging.go:85 method=Health result=2 took=46.819µs +ts=2025-05-22T09:30:41Z caller=logging.go:85 method=Health result=2 took=47.349µs +ts=2025-05-22T09:30:44Z caller=logging.go:85 method=Health result=2 took=44.519µs +ts=2025-05-22T09:30:44Z caller=logging.go:85 method=Health result=2 took=31.959µs +ts=2025-05-22T09:30:47Z caller=logging.go:85 method=Health result=2 took=17.45µs +ts=2025-05-22T09:30:47Z caller=logging.go:85 method=Health result=2 took=29.419µs +ts=2025-05-22T09:30:50Z caller=logging.go:85 method=Health result=2 took=29.419µs +ts=2025-05-22T09:30:50Z caller=logging.go:85 method=Health result=2 took=29.489µs +ts=2025-05-22T09:30:53Z caller=logging.go:85 method=Health result=2 took=31.16µs +ts=2025-05-22T09:30:53Z caller=logging.go:85 method=Health result=2 took=48.729µs +ts=2025-05-22T09:30:56Z caller=logging.go:85 method=Health result=2 took=28.649µs +ts=2025-05-22T09:30:56Z caller=logging.go:85 method=Health result=2 took=15.219µs +ts=2025-05-22T09:30:59Z caller=logging.go:85 method=Health result=2 took=27.609µs +ts=2025-05-22T09:30:59Z caller=logging.go:85 method=Health result=2 took=15.83µs +ts=2025-05-22T09:31:02Z caller=logging.go:85 method=Health result=2 took=41.029µs +ts=2025-05-22T09:31:02Z caller=logging.go:85 method=Health result=2 took=19.5µs +ts=2025-05-22T09:31:05Z caller=logging.go:85 method=Health result=2 took=43.959µs +ts=2025-05-22T09:31:05Z caller=logging.go:85 method=Health result=2 took=37.329µs +ts=2025-05-22T09:31:08Z caller=logging.go:85 method=Health result=2 took=28.099µs +ts=2025-05-22T09:31:08Z caller=logging.go:85 method=Health result=2 took=14.67µs +ts=2025-05-22T09:31:11Z caller=logging.go:85 method=Health result=2 took=33.799µs +ts=2025-05-22T09:31:11Z caller=logging.go:85 method=Health result=2 took=57.309µs +ts=2025-05-22T09:31:14Z caller=logging.go:85 method=Health result=2 took=37.379µs +ts=2025-05-22T09:31:14Z caller=logging.go:85 method=Health result=2 took=51.918µs +ts=2025-05-22T09:31:17Z caller=logging.go:85 method=Health result=2 took=40.719µs +ts=2025-05-22T09:31:17Z caller=logging.go:85 method=Health result=2 took=45.029µs +ts=2025-05-22T09:31:20Z caller=logging.go:85 method=Health result=2 took=44.539µs +ts=2025-05-22T09:31:20Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T09:31:23Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T09:31:23Z caller=logging.go:85 method=Health result=2 took=44.579µs +ts=2025-05-22T09:31:26Z caller=logging.go:85 method=Health result=2 took=37.22µs +ts=2025-05-22T09:31:26Z caller=logging.go:85 method=Health result=2 took=57.218µs +ts=2025-05-22T09:31:29Z caller=logging.go:85 method=Health result=2 took=29.86µs +ts=2025-05-22T09:31:29Z caller=logging.go:85 method=Health result=2 took=29.74µs +ts=2025-05-22T09:31:32Z caller=logging.go:85 method=Health result=2 took=38.789µs +ts=2025-05-22T09:31:32Z caller=logging.go:85 method=Health result=2 took=34.869µs +ts=2025-05-22T09:31:35Z caller=logging.go:85 method=Health result=2 took=40.169µs +ts=2025-05-22T09:31:35Z caller=logging.go:85 method=Health result=2 took=39.609µs +ts=2025-05-22T09:31:38Z caller=logging.go:85 method=Health result=2 took=43.009µs +ts=2025-05-22T09:31:38Z caller=logging.go:85 method=Health result=2 took=49.939µs +ts=2025-05-22T09:31:41Z caller=logging.go:85 method=Health result=2 took=32.399µs +ts=2025-05-22T09:31:41Z caller=logging.go:85 method=Health result=2 took=47.239µs +ts=2025-05-22T09:31:44Z caller=logging.go:85 method=Health result=2 took=39.289µs +ts=2025-05-22T09:31:44Z caller=logging.go:85 method=Health result=2 took=43.809µs +ts=2025-05-22T09:31:47Z caller=logging.go:85 method=Health result=2 took=29.499µs +ts=2025-05-22T09:31:47Z caller=logging.go:85 method=Health result=2 took=15.019µs +ts=2025-05-22T09:31:50Z caller=logging.go:85 method=Health result=2 took=37.549µs +ts=2025-05-22T09:31:50Z caller=logging.go:85 method=Health result=2 took=47.029µs +ts=2025-05-22T09:31:53Z caller=logging.go:85 method=Health result=2 took=30.099µs +ts=2025-05-22T09:31:53Z caller=logging.go:85 method=Health result=2 took=30.039µs +ts=2025-05-22T09:31:56Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T09:31:56Z caller=logging.go:85 method=Health result=2 took=26.689µs +ts=2025-05-22T09:31:59Z caller=logging.go:85 method=Health result=2 took=37.679µs +ts=2025-05-22T09:31:59Z caller=logging.go:85 method=Health result=2 took=37.699µs +ts=2025-05-22T09:32:02Z caller=logging.go:85 method=Health result=2 took=34.119µs +ts=2025-05-22T09:32:02Z caller=logging.go:85 method=Health result=2 took=36.529µs +ts=2025-05-22T09:32:05Z caller=logging.go:85 method=Health result=2 took=40.669µs +ts=2025-05-22T09:32:05Z caller=logging.go:85 method=Health result=2 took=11.05µs +ts=2025-05-22T09:32:08Z caller=logging.go:85 method=Health result=2 took=30.739µs +ts=2025-05-22T09:32:08Z caller=logging.go:85 method=Health result=2 took=39.279µs +ts=2025-05-22T09:32:11Z caller=logging.go:85 method=Health result=2 took=29.359µs +ts=2025-05-22T09:32:11Z caller=logging.go:85 method=Health result=2 took=29.299µs +ts=2025-05-22T09:32:14Z caller=logging.go:85 method=Health result=2 took=47.859µs +ts=2025-05-22T09:32:14Z caller=logging.go:85 method=Health result=2 took=47.869µs +ts=2025-05-22T09:32:17Z caller=logging.go:85 method=Health result=2 took=82.148µs +ts=2025-05-22T09:32:17Z caller=logging.go:85 method=Health result=2 took=1.154142ms +ts=2025-05-22T09:32:20Z caller=logging.go:85 method=Health result=2 took=60.138µs +ts=2025-05-22T09:32:20Z caller=logging.go:85 method=Health result=2 took=60.138µs +ts=2025-05-22T09:32:23Z caller=logging.go:85 method=Health result=2 took=30.909µs +ts=2025-05-22T09:32:23Z caller=logging.go:85 method=Health result=2 took=30.819µs +ts=2025-05-22T09:32:26Z caller=logging.go:85 method=Health result=2 took=39.679µs +ts=2025-05-22T09:32:26Z caller=logging.go:85 method=Health result=2 took=39.989µs +ts=2025-05-22T09:32:29Z caller=logging.go:85 method=Health result=2 took=30.719µs +ts=2025-05-22T09:32:29Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T09:32:32Z caller=logging.go:85 method=Health result=2 took=32.009µs +ts=2025-05-22T09:32:32Z caller=logging.go:85 method=Health result=2 took=15.29µs +ts=2025-05-22T09:32:35Z caller=logging.go:85 method=Health result=2 took=42.909µs +ts=2025-05-22T09:32:35Z caller=logging.go:85 method=Health result=2 took=44.988µs +ts=2025-05-22T09:32:38Z caller=logging.go:85 method=Health result=2 took=42.829µs +ts=2025-05-22T09:32:38Z caller=logging.go:85 method=Health result=2 took=43.259µs +ts=2025-05-22T09:32:41Z caller=logging.go:85 method=Health result=2 took=42.899µs +ts=2025-05-22T09:32:41Z caller=logging.go:85 method=Health result=2 took=51.299µs +ts=2025-05-22T09:32:44Z caller=logging.go:85 method=Health result=2 took=40.009µs +ts=2025-05-22T09:32:44Z caller=logging.go:85 method=Health result=2 took=39.809µs +ts=2025-05-22T09:32:47Z caller=logging.go:85 method=Health result=2 took=41.879µs +ts=2025-05-22T09:32:47Z caller=logging.go:85 method=Health result=2 took=49.779µs +ts=2025-05-22T09:32:50Z caller=logging.go:85 method=Health result=2 took=29.339µs +ts=2025-05-22T09:32:50Z caller=logging.go:85 method=Health result=2 took=29.499µs +ts=2025-05-22T09:32:53Z caller=logging.go:85 method=Health result=2 took=19.579µs +ts=2025-05-22T09:32:53Z caller=logging.go:85 method=Health result=2 took=31.789µs +ts=2025-05-22T09:32:56Z caller=logging.go:85 method=Health result=2 took=34.979µs +ts=2025-05-22T09:32:56Z caller=logging.go:85 method=Health result=2 took=42.209µs +ts=2025-05-22T09:32:59Z caller=logging.go:85 method=Health result=2 took=36.019µs +ts=2025-05-22T09:32:59Z caller=logging.go:85 method=Health result=2 took=56.619µs +ts=2025-05-22T09:33:02Z caller=logging.go:85 method=Health result=2 took=31.529µs +ts=2025-05-22T09:33:02Z caller=logging.go:85 method=Health result=2 took=56.618µs +ts=2025-05-22T09:33:05Z caller=logging.go:85 method=Health result=2 took=30.329µs +ts=2025-05-22T09:33:05Z caller=logging.go:85 method=Health result=2 took=29.629µs +ts=2025-05-22T09:33:08Z caller=logging.go:85 method=Health result=2 took=36.889µs +ts=2025-05-22T09:33:08Z caller=logging.go:85 method=Health result=2 took=14.039µs +ts=2025-05-22T09:33:11Z caller=logging.go:85 method=Health result=2 took=30.289µs +ts=2025-05-22T09:33:11Z caller=logging.go:85 method=Health result=2 took=40.939µs +ts=2025-05-22T09:33:14Z caller=logging.go:85 method=Health result=2 took=29.959µs +ts=2025-05-22T09:33:14Z caller=logging.go:85 method=Health result=2 took=30.409µs +ts=2025-05-22T09:33:17Z caller=logging.go:85 method=Health result=2 took=30.72µs +ts=2025-05-22T09:33:17Z caller=logging.go:85 method=Health result=2 took=23.48µs +ts=2025-05-22T09:33:20Z caller=logging.go:85 method=Health result=2 took=30.259µs +ts=2025-05-22T09:33:20Z caller=logging.go:85 method=Health result=2 took=52.919µs +ts=2025-05-22T09:33:23Z caller=logging.go:85 method=Health result=2 took=42.669µs +ts=2025-05-22T09:33:23Z caller=logging.go:85 method=Health result=2 took=38.719µs +ts=2025-05-22T09:33:26Z caller=logging.go:85 method=Health result=2 took=32.099µs +ts=2025-05-22T09:33:26Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T09:33:29Z caller=logging.go:85 method=Health result=2 took=31.04µs +ts=2025-05-22T09:33:29Z caller=logging.go:85 method=Health result=2 took=40.319µs +ts=2025-05-22T09:33:32Z caller=logging.go:85 method=Health result=2 took=31.979µs +ts=2025-05-22T09:33:32Z caller=logging.go:85 method=Health result=2 took=48.719µs +ts=2025-05-22T09:33:35Z caller=logging.go:85 method=Health result=2 took=101.968µs +ts=2025-05-22T09:33:35Z caller=logging.go:85 method=Health result=2 took=138.067µs +ts=2025-05-22T09:33:38Z caller=logging.go:85 method=Health result=2 took=39.08µs +ts=2025-05-22T09:33:38Z caller=logging.go:85 method=Health result=2 took=40.45µs +ts=2025-05-22T09:33:41Z caller=logging.go:85 method=Health result=2 took=37.009µs +ts=2025-05-22T09:33:41Z caller=logging.go:85 method=Health result=2 took=35.989µs +ts=2025-05-22T09:33:44Z caller=logging.go:85 method=Health result=2 took=39.179µs +ts=2025-05-22T09:33:44Z caller=logging.go:85 method=Health result=2 took=44.539µs +ts=2025-05-22T09:33:47Z caller=logging.go:85 method=Health result=2 took=28.459µs +ts=2025-05-22T09:33:47Z caller=logging.go:85 method=Health result=2 took=29.149µs +ts=2025-05-22T09:33:50Z caller=logging.go:85 method=Health result=2 took=38.519µs +ts=2025-05-22T09:33:50Z caller=logging.go:85 method=Health result=2 took=27.689µs +ts=2025-05-22T09:33:53Z caller=logging.go:85 method=Health result=2 took=18.989µs +ts=2025-05-22T09:33:53Z caller=logging.go:85 method=Health result=2 took=29.379µs +ts=2025-05-22T09:33:56Z caller=logging.go:85 method=Health result=2 took=28.719µs +ts=2025-05-22T09:33:56Z caller=logging.go:85 method=Health result=2 took=28.719µs +ts=2025-05-22T09:33:59Z caller=logging.go:85 method=Health result=2 took=42.559µs +ts=2025-05-22T09:33:59Z caller=logging.go:85 method=Health result=2 took=22.029µs +ts=2025-05-22T09:34:02Z caller=logging.go:85 method=Health result=2 took=35.769µs +ts=2025-05-22T09:34:02Z caller=logging.go:85 method=Health result=2 took=34.569µs +ts=2025-05-22T09:34:05Z caller=logging.go:85 method=Health result=2 took=27.049µs +ts=2025-05-22T09:34:05Z caller=logging.go:85 method=Health result=2 took=27.179µs +ts=2025-05-22T09:34:08Z caller=logging.go:85 method=Health result=2 took=32.499µs +ts=2025-05-22T09:34:08Z caller=logging.go:85 method=Health result=2 took=43.929µs +ts=2025-05-22T09:34:11Z caller=logging.go:85 method=Health result=2 took=37.339µs +ts=2025-05-22T09:34:11Z caller=logging.go:85 method=Health result=2 took=37.189µs +ts=2025-05-22T09:34:14Z caller=logging.go:85 method=Health result=2 took=28.879µs +ts=2025-05-22T09:34:14Z caller=logging.go:85 method=Health result=2 took=28.879µs +ts=2025-05-22T09:34:17Z caller=logging.go:85 method=Health result=2 took=14.469µs +ts=2025-05-22T09:34:17Z caller=logging.go:85 method=Health result=2 took=30.819µs +ts=2025-05-22T09:34:20Z caller=logging.go:85 method=Health result=2 took=33.849µs +ts=2025-05-22T09:34:20Z caller=logging.go:85 method=Health result=2 took=40.029µs +ts=2025-05-22T09:34:23Z caller=logging.go:85 method=Health result=2 took=31.339µs +ts=2025-05-22T09:34:23Z caller=logging.go:85 method=Health result=2 took=31.399µs +ts=2025-05-22T09:34:26Z caller=logging.go:85 method=Health result=2 took=40.029µs +ts=2025-05-22T09:34:26Z caller=logging.go:85 method=Health result=2 took=41.419µs +ts=2025-05-22T09:34:29Z caller=logging.go:85 method=Health result=2 took=33.959µs +ts=2025-05-22T09:34:29Z caller=logging.go:85 method=Health result=2 took=39.779µs +ts=2025-05-22T09:34:32Z caller=logging.go:85 method=Health result=2 took=39.059µs +ts=2025-05-22T09:34:32Z caller=logging.go:85 method=Health result=2 took=28.359µs +ts=2025-05-22T09:34:35Z caller=logging.go:85 method=Health result=2 took=45.439µs +ts=2025-05-22T09:34:35Z caller=logging.go:85 method=Health result=2 took=48.139µs +ts=2025-05-22T09:34:38Z caller=logging.go:85 method=Health result=2 took=30.229µs +ts=2025-05-22T09:34:38Z caller=logging.go:85 method=Health result=2 took=30.089µs +ts=2025-05-22T09:34:41Z caller=logging.go:85 method=Health result=2 took=37.369µs +ts=2025-05-22T09:34:41Z caller=logging.go:85 method=Health result=2 took=37.379µs +ts=2025-05-22T09:34:44Z caller=logging.go:85 method=Health result=2 took=53.029µs +ts=2025-05-22T09:34:44Z caller=logging.go:85 method=Health result=2 took=53.009µs +ts=2025-05-22T09:34:47Z caller=logging.go:85 method=Health result=2 took=35.119µs +ts=2025-05-22T09:34:47Z caller=logging.go:85 method=Health result=2 took=34.069µs +ts=2025-05-22T09:34:50Z caller=logging.go:85 method=Health result=2 took=29.079µs +ts=2025-05-22T09:34:50Z caller=logging.go:85 method=Health result=2 took=28.719µs +ts=2025-05-22T09:34:53Z caller=logging.go:85 method=Health result=2 took=32.319µs +ts=2025-05-22T09:34:53Z caller=logging.go:85 method=Health result=2 took=44.879µs +ts=2025-05-22T09:34:56Z caller=logging.go:85 method=Health result=2 took=37.07µs +ts=2025-05-22T09:34:56Z caller=logging.go:85 method=Health result=2 took=45.589µs +ts=2025-05-22T09:34:59Z caller=logging.go:85 method=Health result=2 took=29.339µs +ts=2025-05-22T09:34:59Z caller=logging.go:85 method=Health result=2 took=29.309µs +ts=2025-05-22T09:35:02Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T09:35:02Z caller=logging.go:85 method=Health result=2 took=58.449µs +ts=2025-05-22T09:35:05Z caller=logging.go:85 method=Health result=2 took=44.949µs +ts=2025-05-22T09:35:05Z caller=logging.go:85 method=Health result=2 took=52.299µs +ts=2025-05-22T09:35:08Z caller=logging.go:85 method=Health result=2 took=30.349µs +ts=2025-05-22T09:35:08Z caller=logging.go:85 method=Health result=2 took=47.009µs +ts=2025-05-22T09:35:11Z caller=logging.go:85 method=Health result=2 took=22.119µs +ts=2025-05-22T09:35:11Z caller=logging.go:85 method=Health result=2 took=26.969µs +ts=2025-05-22T09:35:14Z caller=logging.go:85 method=Health result=2 took=29.349µs +ts=2025-05-22T09:35:14Z caller=logging.go:85 method=Health result=2 took=29.339µs +ts=2025-05-22T09:35:17Z caller=logging.go:85 method=Health result=2 took=43.399µs +ts=2025-05-22T09:35:17Z caller=logging.go:85 method=Health result=2 took=19.989µs +ts=2025-05-22T09:35:20Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T09:35:20Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T09:35:23Z caller=logging.go:85 method=Health result=2 took=39.249µs +ts=2025-05-22T09:35:23Z caller=logging.go:85 method=Health result=2 took=38.089µs +ts=2025-05-22T09:35:26Z caller=logging.go:85 method=Health result=2 took=59.509µs +ts=2025-05-22T09:35:26Z caller=logging.go:85 method=Health result=2 took=50.459µs +ts=2025-05-22T09:35:29Z caller=logging.go:85 method=Health result=2 took=30.839µs +ts=2025-05-22T09:35:29Z caller=logging.go:85 method=Health result=2 took=55.829µs +ts=2025-05-22T09:35:32Z caller=logging.go:85 method=Health result=2 took=45.509µs +ts=2025-05-22T09:35:32Z caller=logging.go:85 method=Health result=2 took=48.419µs +ts=2025-05-22T09:35:35Z caller=logging.go:85 method=Health result=2 took=37.679µs +ts=2025-05-22T09:35:35Z caller=logging.go:85 method=Health result=2 took=47.839µs +ts=2025-05-22T09:35:38Z caller=logging.go:85 method=Health result=2 took=44.429µs +ts=2025-05-22T09:35:38Z caller=logging.go:85 method=Health result=2 took=49.659µs +ts=2025-05-22T09:35:41Z caller=logging.go:85 method=Health result=2 took=45.308µs +ts=2025-05-22T09:35:41Z caller=logging.go:85 method=Health result=2 took=52.919µs +ts=2025-05-22T09:35:44Z caller=logging.go:85 method=Health result=2 took=43.769µs +ts=2025-05-22T09:35:44Z caller=logging.go:85 method=Health result=2 took=51.889µs +ts=2025-05-22T09:35:47Z caller=logging.go:85 method=Health result=2 took=45.469µs +ts=2025-05-22T09:35:47Z caller=logging.go:85 method=Health result=2 took=53.528µs +ts=2025-05-22T09:35:50Z caller=logging.go:85 method=Health result=2 took=44.689µs +ts=2025-05-22T09:35:50Z caller=logging.go:85 method=Health result=2 took=59.358µs +ts=2025-05-22T09:35:53Z caller=logging.go:85 method=Health result=2 took=33.23µs +ts=2025-05-22T09:35:53Z caller=logging.go:85 method=Health result=2 took=44.159µs +ts=2025-05-22T09:35:56Z caller=logging.go:85 method=Health result=2 took=45.408µs +ts=2025-05-22T09:35:56Z caller=logging.go:85 method=Health result=2 took=49.049µs +ts=2025-05-22T09:35:59Z caller=logging.go:85 method=Health result=2 took=43.578µs +ts=2025-05-22T09:35:59Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T09:36:02Z caller=logging.go:85 method=Health result=2 took=38.619µs +ts=2025-05-22T09:36:02Z caller=logging.go:85 method=Health result=2 took=38.679µs +ts=2025-05-22T09:36:05Z caller=logging.go:85 method=Health result=2 took=43.399µs +ts=2025-05-22T09:36:05Z caller=logging.go:85 method=Health result=2 took=50.639µs +ts=2025-05-22T09:36:08Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T09:36:08Z caller=logging.go:85 method=Health result=2 took=48.229µs +ts=2025-05-22T09:36:11Z caller=logging.go:85 method=Health result=2 took=43.789µs +ts=2025-05-22T09:36:11Z caller=logging.go:85 method=Health result=2 took=43.169µs +ts=2025-05-22T09:36:14Z caller=logging.go:85 method=Health result=2 took=43.409µs +ts=2025-05-22T09:36:14Z caller=logging.go:85 method=Health result=2 took=58.389µs +ts=2025-05-22T09:36:17Z caller=logging.go:85 method=Health result=2 took=33.339µs +ts=2025-05-22T09:36:17Z caller=logging.go:85 method=Health result=2 took=32.31µs +ts=2025-05-22T09:36:20Z caller=logging.go:85 method=Health result=2 took=37.109µs +ts=2025-05-22T09:36:20Z caller=logging.go:85 method=Health result=2 took=32.069µs +ts=2025-05-22T09:36:23Z caller=logging.go:85 method=Health result=2 took=38.459µs +ts=2025-05-22T09:36:23Z caller=logging.go:85 method=Health result=2 took=48.649µs +ts=2025-05-22T09:36:26Z caller=logging.go:85 method=Health result=2 took=35.359µs +ts=2025-05-22T09:36:26Z caller=logging.go:85 method=Health result=2 took=23.53µs +ts=2025-05-22T09:36:29Z caller=logging.go:85 method=Health result=2 took=42.079µs +ts=2025-05-22T09:36:29Z caller=logging.go:85 method=Health result=2 took=41.289µs +ts=2025-05-22T09:36:32Z caller=logging.go:85 method=Health result=2 took=41.179µs +ts=2025-05-22T09:36:32Z caller=logging.go:85 method=Health result=2 took=49.998µs +ts=2025-05-22T09:36:35Z caller=logging.go:85 method=Health result=2 took=44.608µs +ts=2025-05-22T09:36:35Z caller=logging.go:85 method=Health result=2 took=50.419µs +ts=2025-05-22T09:36:38Z caller=logging.go:85 method=Health result=2 took=45.449µs +ts=2025-05-22T09:36:38Z caller=logging.go:85 method=Health result=2 took=50.128µs +ts=2025-05-22T09:36:41Z caller=logging.go:85 method=Health result=2 took=45.179µs +ts=2025-05-22T09:36:41Z caller=logging.go:85 method=Health result=2 took=50.469µs +ts=2025-05-22T09:36:44Z caller=logging.go:85 method=Health result=2 took=40.789µs +ts=2025-05-22T09:36:44Z caller=logging.go:85 method=Health result=2 took=59.679µs +ts=2025-05-22T09:36:47Z caller=logging.go:85 method=Health result=2 took=44.409µs +ts=2025-05-22T09:36:47Z caller=logging.go:85 method=Health result=2 took=40.349µs +ts=2025-05-22T09:36:50Z caller=logging.go:85 method=Health result=2 took=51.909µs +ts=2025-05-22T09:36:50Z caller=logging.go:85 method=Health result=2 took=52.369µs +ts=2025-05-22T09:36:53Z caller=logging.go:85 method=Health result=2 took=40.629µs +ts=2025-05-22T09:36:53Z caller=logging.go:85 method=Health result=2 took=39.319µs +ts=2025-05-22T09:36:56Z caller=logging.go:85 method=Health result=2 took=30.839µs +ts=2025-05-22T09:36:56Z caller=logging.go:85 method=Health result=2 took=30.829µs +ts=2025-05-22T09:36:59Z caller=logging.go:85 method=Health result=2 took=53.898µs +ts=2025-05-22T09:36:59Z caller=logging.go:85 method=Health result=2 took=47.959µs +ts=2025-05-22T09:37:02Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T09:37:02Z caller=logging.go:85 method=Health result=2 took=45.209µs +ts=2025-05-22T09:37:05Z caller=logging.go:85 method=Health result=2 took=37.859µs +ts=2025-05-22T09:37:05Z caller=logging.go:85 method=Health result=2 took=46.899µs +ts=2025-05-22T09:37:08Z caller=logging.go:85 method=Health result=2 took=44.669µs +ts=2025-05-22T09:37:08Z caller=logging.go:85 method=Health result=2 took=44.299µs +ts=2025-05-22T09:37:11Z caller=logging.go:85 method=Health result=2 took=41.579µs +ts=2025-05-22T09:37:11Z caller=logging.go:85 method=Health result=2 took=27.559µs +ts=2025-05-22T09:37:14Z caller=logging.go:85 method=Health result=2 took=27.259µs +ts=2025-05-22T09:37:14Z caller=logging.go:85 method=Health result=2 took=40.709µs +ts=2025-05-22T09:37:17Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T09:37:17Z caller=logging.go:85 method=Health result=2 took=47.339µs +ts=2025-05-22T09:37:20Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T09:37:20Z caller=logging.go:85 method=Health result=2 took=42.219µs +ts=2025-05-22T09:37:23Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T09:37:23Z caller=logging.go:85 method=Health result=2 took=42.829µs +ts=2025-05-22T09:37:26Z caller=logging.go:85 method=Health result=2 took=42.289µs +ts=2025-05-22T09:37:26Z caller=logging.go:85 method=Health result=2 took=50.759µs +ts=2025-05-22T09:37:29Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T09:37:29Z caller=logging.go:85 method=Health result=2 took=31.089µs +ts=2025-05-22T09:37:32Z caller=logging.go:85 method=Health result=2 took=37.479µs +ts=2025-05-22T09:37:32Z caller=logging.go:85 method=Health result=2 took=51.719µs +ts=2025-05-22T09:37:35Z caller=logging.go:85 method=Health result=2 took=43.519µs +ts=2025-05-22T09:37:35Z caller=logging.go:85 method=Health result=2 took=43.559µs +ts=2025-05-22T09:37:38Z caller=logging.go:85 method=Health result=2 took=39.279µs +ts=2025-05-22T09:37:38Z caller=logging.go:85 method=Health result=2 took=27.5µs +ts=2025-05-22T09:37:41Z caller=logging.go:85 method=Health result=2 took=44.768µs +ts=2025-05-22T09:37:41Z caller=logging.go:85 method=Health result=2 took=25.649µs +ts=2025-05-22T09:37:44Z caller=logging.go:85 method=Health result=2 took=44.699µs +ts=2025-05-22T09:37:44Z caller=logging.go:85 method=Health result=2 took=27.519µs +ts=2025-05-22T09:37:47Z caller=logging.go:85 method=Health result=2 took=45.499µs +ts=2025-05-22T09:37:47Z caller=logging.go:85 method=Health result=2 took=49.139µs +ts=2025-05-22T09:37:50Z caller=logging.go:85 method=Health result=2 took=43.899µs +ts=2025-05-22T09:37:50Z caller=logging.go:85 method=Health result=2 took=44.609µs +ts=2025-05-22T09:37:53Z caller=logging.go:85 method=Health result=2 took=30.679µs +ts=2025-05-22T09:37:53Z caller=logging.go:85 method=Health result=2 took=30.919µs +ts=2025-05-22T09:37:56Z caller=logging.go:85 method=Health result=2 took=45.309µs +ts=2025-05-22T09:37:56Z caller=logging.go:85 method=Health result=2 took=68.448µs +ts=2025-05-22T09:37:59Z caller=logging.go:85 method=Health result=2 took=40.799µs +ts=2025-05-22T09:37:59Z caller=logging.go:85 method=Health result=2 took=39.849µs +ts=2025-05-22T09:38:02Z caller=logging.go:85 method=Health result=2 took=52.289µs +ts=2025-05-22T09:38:02Z caller=logging.go:85 method=Health result=2 took=53.109µs +ts=2025-05-22T09:38:05Z caller=logging.go:85 method=Health result=2 took=42.709µs +ts=2025-05-22T09:38:05Z caller=logging.go:85 method=Health result=2 took=50.449µs +ts=2025-05-22T09:38:08Z caller=logging.go:85 method=Health result=2 took=44.579µs +ts=2025-05-22T09:38:08Z caller=logging.go:85 method=Health result=2 took=50.769µs +ts=2025-05-22T09:38:11Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T09:38:11Z caller=logging.go:85 method=Health result=2 took=20.68µs +ts=2025-05-22T09:38:14Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T09:38:14Z caller=logging.go:85 method=Health result=2 took=39.709µs +ts=2025-05-22T09:38:17Z caller=logging.go:85 method=Health result=2 took=80.798µs +ts=2025-05-22T09:38:17Z caller=logging.go:85 method=Health result=2 took=48.969µs +ts=2025-05-22T09:38:20Z caller=logging.go:85 method=Health result=2 took=43.439µs +ts=2025-05-22T09:38:20Z caller=logging.go:85 method=Health result=2 took=44.909µs +ts=2025-05-22T09:38:23Z caller=logging.go:85 method=Health result=2 took=42.969µs +ts=2025-05-22T09:38:23Z caller=logging.go:85 method=Health result=2 took=43.169µs +ts=2025-05-22T09:38:26Z caller=logging.go:85 method=Health result=2 took=45.548µs +ts=2025-05-22T09:38:26Z caller=logging.go:85 method=Health result=2 took=51.068µs +ts=2025-05-22T09:38:29Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T09:38:29Z caller=logging.go:85 method=Health result=2 took=47.829µs +ts=2025-05-22T09:38:32Z caller=logging.go:85 method=Health result=2 took=41.989µs +ts=2025-05-22T09:38:32Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T09:38:35Z caller=logging.go:85 method=Health result=2 took=43.589µs +ts=2025-05-22T09:38:35Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T09:38:38Z caller=logging.go:85 method=Health result=2 took=44.949µs +ts=2025-05-22T09:38:38Z caller=logging.go:85 method=Health result=2 took=49.709µs +ts=2025-05-22T09:38:41Z caller=logging.go:85 method=Health result=2 took=41.769µs +ts=2025-05-22T09:38:41Z caller=logging.go:85 method=Health result=2 took=40.799µs +ts=2025-05-22T09:38:44Z caller=logging.go:85 method=Health result=2 took=41.849µs +ts=2025-05-22T09:38:44Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T09:38:47Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T09:38:47Z caller=logging.go:85 method=Health result=2 took=24.969µs +ts=2025-05-22T09:38:50Z caller=logging.go:85 method=Health result=2 took=43.719µs +ts=2025-05-22T09:38:50Z caller=logging.go:85 method=Health result=2 took=42.589µs +ts=2025-05-22T09:38:53Z caller=logging.go:85 method=Health result=2 took=28.559µs +ts=2025-05-22T09:38:53Z caller=logging.go:85 method=Health result=2 took=28.689µs +ts=2025-05-22T09:38:56Z caller=logging.go:85 method=Health result=2 took=41.669µs +ts=2025-05-22T09:38:56Z caller=logging.go:85 method=Health result=2 took=41.819µs +ts=2025-05-22T09:38:59Z caller=logging.go:85 method=Health result=2 took=45.479µs +ts=2025-05-22T09:38:59Z caller=logging.go:85 method=Health result=2 took=52.759µs +ts=2025-05-22T09:39:02Z caller=logging.go:85 method=Health result=2 took=47.249µs +ts=2025-05-22T09:39:02Z caller=logging.go:85 method=Health result=2 took=48.829µs +ts=2025-05-22T09:39:05Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T09:39:05Z caller=logging.go:85 method=Health result=2 took=49.469µs +ts=2025-05-22T09:39:08Z caller=logging.go:85 method=Health result=2 took=31.429µs +ts=2025-05-22T09:39:08Z caller=logging.go:85 method=Health result=2 took=45.919µs +ts=2025-05-22T09:39:11Z caller=logging.go:85 method=Health result=2 took=44.039µs +ts=2025-05-22T09:39:11Z caller=logging.go:85 method=Health result=2 took=34.179µs +ts=2025-05-22T09:39:14Z caller=logging.go:85 method=Health result=2 took=45.128µs +ts=2025-05-22T09:39:14Z caller=logging.go:85 method=Health result=2 took=51.379µs +ts=2025-05-22T09:39:17Z caller=logging.go:85 method=Health result=2 took=60.038µs +ts=2025-05-22T09:39:17Z caller=logging.go:85 method=Health result=2 took=31.779µs +ts=2025-05-22T09:39:20Z caller=logging.go:85 method=Health result=2 took=46.079µs +ts=2025-05-22T09:39:20Z caller=logging.go:85 method=Health result=2 took=47.958µs +ts=2025-05-22T09:39:23Z caller=logging.go:85 method=Health result=2 took=42.289µs +ts=2025-05-22T09:39:23Z caller=logging.go:85 method=Health result=2 took=42.669µs +ts=2025-05-22T09:39:26Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T09:39:26Z caller=logging.go:85 method=Health result=2 took=38.329µs +ts=2025-05-22T09:39:29Z caller=logging.go:85 method=Health result=2 took=44.149µs +ts=2025-05-22T09:39:29Z caller=logging.go:85 method=Health result=2 took=48.489µs +ts=2025-05-22T09:39:32Z caller=logging.go:85 method=Health result=2 took=44.189µs +ts=2025-05-22T09:39:32Z caller=logging.go:85 method=Health result=2 took=47.818µs +ts=2025-05-22T09:39:35Z caller=logging.go:85 method=Health result=2 took=28.03µs +ts=2025-05-22T09:39:35Z caller=logging.go:85 method=Health result=2 took=28.25µs +ts=2025-05-22T09:39:38Z caller=logging.go:85 method=Health result=2 took=34.659µs +ts=2025-05-22T09:39:38Z caller=logging.go:85 method=Health result=2 took=40.629µs +ts=2025-05-22T09:39:41Z caller=logging.go:85 method=Health result=2 took=37.169µs +ts=2025-05-22T09:39:41Z caller=logging.go:85 method=Health result=2 took=17.6µs +ts=2025-05-22T09:39:44Z caller=logging.go:85 method=Health result=2 took=46.339µs +ts=2025-05-22T09:39:44Z caller=logging.go:85 method=Health result=2 took=49.949µs +ts=2025-05-22T09:39:47Z caller=logging.go:85 method=Health result=2 took=43.159µs +ts=2025-05-22T09:39:47Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T09:39:50Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T09:39:50Z caller=logging.go:85 method=Health result=2 took=43.079µs +ts=2025-05-22T09:39:53Z caller=logging.go:85 method=Health result=2 took=19.56µs +ts=2025-05-22T09:39:53Z caller=logging.go:85 method=Health result=2 took=32.509µs +ts=2025-05-22T09:39:56Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T09:39:56Z caller=logging.go:85 method=Health result=2 took=49.319µs +ts=2025-05-22T09:39:59Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T09:39:59Z caller=logging.go:85 method=Health result=2 took=43.519µs +ts=2025-05-22T09:40:02Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T09:40:02Z caller=logging.go:85 method=Health result=2 took=43.539µs +ts=2025-05-22T09:40:05Z caller=logging.go:85 method=Health result=2 took=44.859µs +ts=2025-05-22T09:40:05Z caller=logging.go:85 method=Health result=2 took=46.289µs +ts=2025-05-22T09:40:08Z caller=logging.go:85 method=Health result=2 took=34.109µs +ts=2025-05-22T09:40:08Z caller=logging.go:85 method=Health result=2 took=35.029µs +ts=2025-05-22T09:40:11Z caller=logging.go:85 method=Health result=2 took=43.609µs +ts=2025-05-22T09:40:11Z caller=logging.go:85 method=Health result=2 took=42.279µs +ts=2025-05-22T09:40:14Z caller=logging.go:85 method=Health result=2 took=43.949µs +ts=2025-05-22T09:40:14Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T09:40:17Z caller=logging.go:85 method=Health result=2 took=46.459µs +ts=2025-05-22T09:40:17Z caller=logging.go:85 method=Health result=2 took=52.288µs +ts=2025-05-22T09:40:20Z caller=logging.go:85 method=Health result=2 took=44.109µs +ts=2025-05-22T09:40:20Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T09:40:23Z caller=logging.go:85 method=Health result=2 took=46.059µs +ts=2025-05-22T09:40:23Z caller=logging.go:85 method=Health result=2 took=51.058µs +ts=2025-05-22T09:40:26Z caller=logging.go:85 method=Health result=2 took=39.389µs +ts=2025-05-22T09:40:26Z caller=logging.go:85 method=Health result=2 took=39.719µs +ts=2025-05-22T09:40:29Z caller=logging.go:85 method=Health result=2 took=45.689µs +ts=2025-05-22T09:40:29Z caller=logging.go:85 method=Health result=2 took=48.609µs +ts=2025-05-22T09:40:32Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T09:40:32Z caller=logging.go:85 method=Health result=2 took=50.169µs +ts=2025-05-22T09:40:35Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T09:40:35Z caller=logging.go:85 method=Health result=2 took=50.069µs +ts=2025-05-22T09:40:38Z caller=logging.go:85 method=Health result=2 took=45.849µs +ts=2025-05-22T09:40:38Z caller=logging.go:85 method=Health result=2 took=49.339µs +ts=2025-05-22T09:40:41Z caller=logging.go:85 method=Health result=2 took=44.059µs +ts=2025-05-22T09:40:41Z caller=logging.go:85 method=Health result=2 took=33.859µs +ts=2025-05-22T09:40:44Z caller=logging.go:85 method=Health result=2 took=38.489µs +ts=2025-05-22T09:40:44Z caller=logging.go:85 method=Health result=2 took=39.189µs +ts=2025-05-22T09:40:47Z caller=logging.go:85 method=Health result=2 took=46.358µs +ts=2025-05-22T09:40:47Z caller=logging.go:85 method=Health result=2 took=51.039µs +ts=2025-05-22T09:40:50Z caller=logging.go:85 method=Health result=2 took=38.349µs +ts=2025-05-22T09:40:50Z caller=logging.go:85 method=Health result=2 took=49.249µs +ts=2025-05-22T09:40:53Z caller=logging.go:85 method=Health result=2 took=41.979µs +ts=2025-05-22T09:40:53Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T09:40:56Z caller=logging.go:85 method=Health result=2 took=45.269µs +ts=2025-05-22T09:40:56Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T09:40:59Z caller=logging.go:85 method=Health result=2 took=42.449µs +ts=2025-05-22T09:40:59Z caller=logging.go:85 method=Health result=2 took=48.818µs +ts=2025-05-22T09:41:02Z caller=logging.go:85 method=Health result=2 took=44.149µs +ts=2025-05-22T09:41:02Z caller=logging.go:85 method=Health result=2 took=50.329µs +ts=2025-05-22T09:41:05Z caller=logging.go:85 method=Health result=2 took=44.779µs +ts=2025-05-22T09:41:05Z caller=logging.go:85 method=Health result=2 took=48.589µs +ts=2025-05-22T09:41:08Z caller=logging.go:85 method=Health result=2 took=41.569µs +ts=2025-05-22T09:41:08Z caller=logging.go:85 method=Health result=2 took=50.219µs +ts=2025-05-22T09:41:11Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T09:41:11Z caller=logging.go:85 method=Health result=2 took=40.589µs +ts=2025-05-22T09:41:14Z caller=logging.go:85 method=Health result=2 took=27.679µs +ts=2025-05-22T09:41:14Z caller=logging.go:85 method=Health result=2 took=27.519µs +ts=2025-05-22T09:41:17Z caller=logging.go:85 method=Health result=2 took=54.579µs +ts=2025-05-22T09:41:17Z caller=logging.go:85 method=Health result=2 took=48.808µs +ts=2025-05-22T09:41:20Z caller=logging.go:85 method=Health result=2 took=42.199µs +ts=2025-05-22T09:41:20Z caller=logging.go:85 method=Health result=2 took=48.679µs +ts=2025-05-22T09:41:23Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T09:41:23Z caller=logging.go:85 method=Health result=2 took=48.989µs +ts=2025-05-22T09:41:26Z caller=logging.go:85 method=Health result=2 took=44.949µs +ts=2025-05-22T09:41:26Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T09:41:29Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T09:41:29Z caller=logging.go:85 method=Health result=2 took=48.429µs +ts=2025-05-22T09:41:32Z caller=logging.go:85 method=Health result=2 took=42.189µs +ts=2025-05-22T09:41:32Z caller=logging.go:85 method=Health result=2 took=49.399µs +ts=2025-05-22T09:41:35Z caller=logging.go:85 method=Health result=2 took=42.489µs +ts=2025-05-22T09:41:35Z caller=logging.go:85 method=Health result=2 took=43.179µs +ts=2025-05-22T09:41:38Z caller=logging.go:85 method=Health result=2 took=54.539µs +ts=2025-05-22T09:41:38Z caller=logging.go:85 method=Health result=2 took=54.549µs +ts=2025-05-22T09:41:41Z caller=logging.go:85 method=Health result=2 took=43.149µs +ts=2025-05-22T09:41:41Z caller=logging.go:85 method=Health result=2 took=42.399µs +ts=2025-05-22T09:41:44Z caller=logging.go:85 method=Health result=2 took=44.649µs +ts=2025-05-22T09:41:44Z caller=logging.go:85 method=Health result=2 took=48.359µs +ts=2025-05-22T09:41:47Z caller=logging.go:85 method=Health result=2 took=45.548µs +ts=2025-05-22T09:41:47Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T09:41:50Z caller=logging.go:85 method=Health result=2 took=43.859µs +ts=2025-05-22T09:41:50Z caller=logging.go:85 method=Health result=2 took=43.259µs +ts=2025-05-22T09:41:53Z caller=logging.go:85 method=Health result=2 took=29.96µs +ts=2025-05-22T09:41:53Z caller=logging.go:85 method=Health result=2 took=34.249µs +ts=2025-05-22T09:41:56Z caller=logging.go:85 method=Health result=2 took=40.979µs +ts=2025-05-22T09:41:56Z caller=logging.go:85 method=Health result=2 took=42.439µs +ts=2025-05-22T09:41:59Z caller=logging.go:85 method=Health result=2 took=42.819µs +ts=2025-05-22T09:41:59Z caller=logging.go:85 method=Health result=2 took=44.719µs +ts=2025-05-22T09:42:02Z caller=logging.go:85 method=Health result=2 took=57.959µs +ts=2025-05-22T09:42:02Z caller=logging.go:85 method=Health result=2 took=57.269µs +ts=2025-05-22T09:42:05Z caller=logging.go:85 method=Health result=2 took=37.859µs +ts=2025-05-22T09:42:05Z caller=logging.go:85 method=Health result=2 took=47.688µs +ts=2025-05-22T09:42:08Z caller=logging.go:85 method=Health result=2 took=42.559µs +ts=2025-05-22T09:42:08Z caller=logging.go:85 method=Health result=2 took=42.909µs +ts=2025-05-22T09:42:11Z caller=logging.go:85 method=Health result=2 took=42.059µs +ts=2025-05-22T09:42:11Z caller=logging.go:85 method=Health result=2 took=44.729µs +ts=2025-05-22T09:42:14Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T09:42:14Z caller=logging.go:85 method=Health result=2 took=49.689µs +ts=2025-05-22T09:42:17Z caller=logging.go:85 method=Health result=2 took=102.548µs +ts=2025-05-22T09:42:17Z caller=logging.go:85 method=Health result=2 took=17.949µs +ts=2025-05-22T09:42:20Z caller=logging.go:85 method=Health result=2 took=40.079µs +ts=2025-05-22T09:42:20Z caller=logging.go:85 method=Health result=2 took=52.209µs +ts=2025-05-22T09:42:23Z caller=logging.go:85 method=Health result=2 took=36.809µs +ts=2025-05-22T09:42:23Z caller=logging.go:85 method=Health result=2 took=31.799µs +ts=2025-05-22T09:42:26Z caller=logging.go:85 method=Health result=2 took=39.4µs +ts=2025-05-22T09:42:26Z caller=logging.go:85 method=Health result=2 took=40.06µs +ts=2025-05-22T09:42:29Z caller=logging.go:85 method=Health result=2 took=58.299µs +ts=2025-05-22T09:42:29Z caller=logging.go:85 method=Health result=2 took=58.539µs +ts=2025-05-22T09:42:32Z caller=logging.go:85 method=Health result=2 took=42.559µs +ts=2025-05-22T09:42:32Z caller=logging.go:85 method=Health result=2 took=31.129µs +ts=2025-05-22T09:42:35Z caller=logging.go:85 method=Health result=2 took=29.739µs +ts=2025-05-22T09:42:35Z caller=logging.go:85 method=Health result=2 took=46.559µs +ts=2025-05-22T09:42:38Z caller=logging.go:85 method=Health result=2 took=41.629µs +ts=2025-05-22T09:42:38Z caller=logging.go:85 method=Health result=2 took=41.379µs +ts=2025-05-22T09:42:41Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T09:42:41Z caller=logging.go:85 method=Health result=2 took=50.259µs +ts=2025-05-22T09:42:44Z caller=logging.go:85 method=Health result=2 took=42.509µs +ts=2025-05-22T09:42:44Z caller=logging.go:85 method=Health result=2 took=43.329µs +ts=2025-05-22T09:42:47Z caller=logging.go:85 method=Health result=2 took=34.539µs +ts=2025-05-22T09:42:47Z caller=logging.go:85 method=Health result=2 took=45.769µs +ts=2025-05-22T09:42:50Z caller=logging.go:85 method=Health result=2 took=38.359µs +ts=2025-05-22T09:42:50Z caller=logging.go:85 method=Health result=2 took=59.448µs +ts=2025-05-22T09:42:53Z caller=logging.go:85 method=Health result=2 took=31.959µs +ts=2025-05-22T09:42:53Z caller=logging.go:85 method=Health result=2 took=36.069µs +ts=2025-05-22T09:42:56Z caller=logging.go:85 method=Health result=2 took=41.619µs +ts=2025-05-22T09:42:56Z caller=logging.go:85 method=Health result=2 took=48.428µs +ts=2025-05-22T09:42:59Z caller=logging.go:85 method=Health result=2 took=45.889µs +ts=2025-05-22T09:42:59Z caller=logging.go:85 method=Health result=2 took=50.938µs +ts=2025-05-22T09:43:02Z caller=logging.go:85 method=Health result=2 took=43.399µs +ts=2025-05-22T09:43:02Z caller=logging.go:85 method=Health result=2 took=42.689µs +ts=2025-05-22T09:43:05Z caller=logging.go:85 method=Health result=2 took=31.999µs +ts=2025-05-22T09:43:05Z caller=logging.go:85 method=Health result=2 took=43.149µs +ts=2025-05-22T09:43:08Z caller=logging.go:85 method=Health result=2 took=41.509µs +ts=2025-05-22T09:43:08Z caller=logging.go:85 method=Health result=2 took=40.809µs +ts=2025-05-22T09:43:11Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T09:43:11Z caller=logging.go:85 method=Health result=2 took=40.599µs +ts=2025-05-22T09:43:14Z caller=logging.go:85 method=Health result=2 took=43.769µs +ts=2025-05-22T09:43:14Z caller=logging.go:85 method=Health result=2 took=44.309µs +ts=2025-05-22T09:43:17Z caller=logging.go:85 method=Health result=2 took=44.609µs +ts=2025-05-22T09:43:17Z caller=logging.go:85 method=Health result=2 took=31.129µs +ts=2025-05-22T09:43:20Z caller=logging.go:85 method=Health result=2 took=45.249µs +ts=2025-05-22T09:43:20Z caller=logging.go:85 method=Health result=2 took=50.369µs +ts=2025-05-22T09:43:23Z caller=logging.go:85 method=Health result=2 took=53.669µs +ts=2025-05-22T09:43:23Z caller=logging.go:85 method=Health result=2 took=30.78µs +ts=2025-05-22T09:43:26Z caller=logging.go:85 method=Health result=2 took=44.529µs +ts=2025-05-22T09:43:26Z caller=logging.go:85 method=Health result=2 took=43.879µs +ts=2025-05-22T09:43:29Z caller=logging.go:85 method=Health result=2 took=45.259µs +ts=2025-05-22T09:43:29Z caller=logging.go:85 method=Health result=2 took=49.979µs +ts=2025-05-22T09:43:32Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T09:43:32Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T09:43:35Z caller=logging.go:85 method=Health result=2 took=52.238µs +ts=2025-05-22T09:43:35Z caller=logging.go:85 method=Health result=2 took=63.168µs +ts=2025-05-22T09:43:38Z caller=logging.go:85 method=Health result=2 took=42.219µs +ts=2025-05-22T09:43:38Z caller=logging.go:85 method=Health result=2 took=42.918µs +ts=2025-05-22T09:43:41Z caller=logging.go:85 method=Health result=2 took=44.328µs +ts=2025-05-22T09:43:41Z caller=logging.go:85 method=Health result=2 took=43.768µs +ts=2025-05-22T09:43:44Z caller=logging.go:85 method=Health result=2 took=55.638µs +ts=2025-05-22T09:43:44Z caller=logging.go:85 method=Health result=2 took=30.669µs +ts=2025-05-22T09:43:47Z caller=logging.go:85 method=Health result=2 took=41.779µs +ts=2025-05-22T09:43:47Z caller=logging.go:85 method=Health result=2 took=41.119µs +ts=2025-05-22T09:43:50Z caller=logging.go:85 method=Health result=2 took=41.589µs +ts=2025-05-22T09:43:50Z caller=logging.go:85 method=Health result=2 took=42.429µs +ts=2025-05-22T09:43:53Z caller=logging.go:85 method=Health result=2 took=28.869µs +ts=2025-05-22T09:43:53Z caller=logging.go:85 method=Health result=2 took=42.549µs +ts=2025-05-22T09:43:56Z caller=logging.go:85 method=Health result=2 took=48.269µs +ts=2025-05-22T09:43:56Z caller=logging.go:85 method=Health result=2 took=52.739µs +ts=2025-05-22T09:43:59Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T09:43:59Z caller=logging.go:85 method=Health result=2 took=50.009µs +ts=2025-05-22T09:44:02Z caller=logging.go:85 method=Health result=2 took=45.729µs +ts=2025-05-22T09:44:02Z caller=logging.go:85 method=Health result=2 took=51.069µs +ts=2025-05-22T09:44:05Z caller=logging.go:85 method=Health result=2 took=44.668µs +ts=2025-05-22T09:44:05Z caller=logging.go:85 method=Health result=2 took=47.509µs +ts=2025-05-22T09:44:08Z caller=logging.go:85 method=Health result=2 took=39.669µs +ts=2025-05-22T09:44:08Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T09:44:11Z caller=logging.go:85 method=Health result=2 took=48.058µs +ts=2025-05-22T09:44:11Z caller=logging.go:85 method=Health result=2 took=55.088µs +ts=2025-05-22T09:44:14Z caller=logging.go:85 method=Health result=2 took=57.259µs +ts=2025-05-22T09:44:14Z caller=logging.go:85 method=Health result=2 took=57.259µs +ts=2025-05-22T09:44:17Z caller=logging.go:85 method=Health result=2 took=38.229µs +ts=2025-05-22T09:44:17Z caller=logging.go:85 method=Health result=2 took=1.111583ms +ts=2025-05-22T09:44:20Z caller=logging.go:85 method=Health result=2 took=41.279µs +ts=2025-05-22T09:44:20Z caller=logging.go:85 method=Health result=2 took=37.579µs +ts=2025-05-22T09:44:23Z caller=logging.go:85 method=Health result=2 took=34.599µs +ts=2025-05-22T09:44:23Z caller=logging.go:85 method=Health result=2 took=35.659µs +ts=2025-05-22T09:44:26Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T09:44:26Z caller=logging.go:85 method=Health result=2 took=51.299µs +ts=2025-05-22T09:44:29Z caller=logging.go:85 method=Health result=2 took=41.899µs +ts=2025-05-22T09:44:29Z caller=logging.go:85 method=Health result=2 took=41.159µs +ts=2025-05-22T09:44:32Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T09:44:32Z caller=logging.go:85 method=Health result=2 took=42.919µs +ts=2025-05-22T09:44:35Z caller=logging.go:85 method=Health result=2 took=31.169µs +ts=2025-05-22T09:44:35Z caller=logging.go:85 method=Health result=2 took=41.859µs +ts=2025-05-22T09:44:38Z caller=logging.go:85 method=Health result=2 took=30.81µs +ts=2025-05-22T09:44:38Z caller=logging.go:85 method=Health result=2 took=45.939µs +ts=2025-05-22T09:44:41Z caller=logging.go:85 method=Health result=2 took=39.899µs +ts=2025-05-22T09:44:41Z caller=logging.go:85 method=Health result=2 took=40.229µs +ts=2025-05-22T09:44:44Z caller=logging.go:85 method=Health result=2 took=40.129µs +ts=2025-05-22T09:44:44Z caller=logging.go:85 method=Health result=2 took=39.589µs +ts=2025-05-22T09:44:47Z caller=logging.go:85 method=Health result=2 took=37.879µs +ts=2025-05-22T09:44:47Z caller=logging.go:85 method=Health result=2 took=44.568µs +ts=2025-05-22T09:44:50Z caller=logging.go:85 method=Health result=2 took=37.389µs +ts=2025-05-22T09:44:50Z caller=logging.go:85 method=Health result=2 took=13.09µs +ts=2025-05-22T09:44:53Z caller=logging.go:85 method=Health result=2 took=28.739µs +ts=2025-05-22T09:44:53Z caller=logging.go:85 method=Health result=2 took=28.729µs +ts=2025-05-22T09:44:56Z caller=logging.go:85 method=Health result=2 took=30.119µs +ts=2025-05-22T09:44:56Z caller=logging.go:85 method=Health result=2 took=53.738µs +ts=2025-05-22T09:44:59Z caller=logging.go:85 method=Health result=2 took=30.619µs +ts=2025-05-22T09:44:59Z caller=logging.go:85 method=Health result=2 took=11.409µs +ts=2025-05-22T09:45:02Z caller=logging.go:85 method=Health result=2 took=29.65µs +ts=2025-05-22T09:45:02Z caller=logging.go:85 method=Health result=2 took=47.028µs +ts=2025-05-22T09:45:05Z caller=logging.go:85 method=Health result=2 took=30.78µs +ts=2025-05-22T09:45:05Z caller=logging.go:85 method=Health result=2 took=34.669µs +ts=2025-05-22T09:45:08Z caller=logging.go:85 method=Health result=2 took=42.659µs +ts=2025-05-22T09:45:08Z caller=logging.go:85 method=Health result=2 took=44.819µs +ts=2025-05-22T09:45:11Z caller=logging.go:85 method=Health result=2 took=40.749µs +ts=2025-05-22T09:45:11Z caller=logging.go:85 method=Health result=2 took=23.739µs +ts=2025-05-22T09:45:14Z caller=logging.go:85 method=Health result=2 took=45.709µs +ts=2025-05-22T09:45:14Z caller=logging.go:85 method=Health result=2 took=47.649µs +ts=2025-05-22T09:45:17Z caller=logging.go:85 method=Health result=2 took=39.929µs +ts=2025-05-22T09:45:17Z caller=logging.go:85 method=Health result=2 took=30.799µs +ts=2025-05-22T09:45:20Z caller=logging.go:85 method=Health result=2 took=25.349µs +ts=2025-05-22T09:45:20Z caller=logging.go:85 method=Health result=2 took=40.269µs +ts=2025-05-22T09:45:23Z caller=logging.go:85 method=Health result=2 took=43.959µs +ts=2025-05-22T09:45:23Z caller=logging.go:85 method=Health result=2 took=43.079µs +ts=2025-05-22T09:45:26Z caller=logging.go:85 method=Health result=2 took=58.648µs +ts=2025-05-22T09:45:26Z caller=logging.go:85 method=Health result=2 took=56.438µs +ts=2025-05-22T09:45:29Z caller=logging.go:85 method=Health result=2 took=29.839µs +ts=2025-05-22T09:45:29Z caller=logging.go:85 method=Health result=2 took=28.779µs +ts=2025-05-22T09:45:32Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T09:45:32Z caller=logging.go:85 method=Health result=2 took=41.719µs +ts=2025-05-22T09:45:35Z caller=logging.go:85 method=Health result=2 took=51.539µs +ts=2025-05-22T09:45:35Z caller=logging.go:85 method=Health result=2 took=29.789µs +ts=2025-05-22T09:45:38Z caller=logging.go:85 method=Health result=2 took=52.499µs +ts=2025-05-22T09:45:38Z caller=logging.go:85 method=Health result=2 took=30.619µs +ts=2025-05-22T09:45:41Z caller=logging.go:85 method=Health result=2 took=42.499µs +ts=2025-05-22T09:45:41Z caller=logging.go:85 method=Health result=2 took=49.329µs +ts=2025-05-22T09:45:44Z caller=logging.go:85 method=Health result=2 took=42.729µs +ts=2025-05-22T09:45:44Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T09:45:47Z caller=logging.go:85 method=Health result=2 took=45.159µs +ts=2025-05-22T09:45:47Z caller=logging.go:85 method=Health result=2 took=50.609µs +ts=2025-05-22T09:45:50Z caller=logging.go:85 method=Health result=2 took=37.849µs +ts=2025-05-22T09:45:50Z caller=logging.go:85 method=Health result=2 took=45.079µs +ts=2025-05-22T09:45:53Z caller=logging.go:85 method=Health result=2 took=45.049µs +ts=2025-05-22T09:45:53Z caller=logging.go:85 method=Health result=2 took=50.639µs +ts=2025-05-22T09:45:56Z caller=logging.go:85 method=Health result=2 took=45.719µs +ts=2025-05-22T09:45:56Z caller=logging.go:85 method=Health result=2 took=49.889µs +ts=2025-05-22T09:45:59Z caller=logging.go:85 method=Health result=2 took=36.499µs +ts=2025-05-22T09:45:59Z caller=logging.go:85 method=Health result=2 took=36.019µs +ts=2025-05-22T09:46:02Z caller=logging.go:85 method=Health result=2 took=42.019µs +ts=2025-05-22T09:46:02Z caller=logging.go:85 method=Health result=2 took=42.499µs +ts=2025-05-22T09:46:05Z caller=logging.go:85 method=Health result=2 took=42.979µs +ts=2025-05-22T09:46:05Z caller=logging.go:85 method=Health result=2 took=43.049µs +ts=2025-05-22T09:46:08Z caller=logging.go:85 method=Health result=2 took=43.779µs +ts=2025-05-22T09:46:08Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T09:46:11Z caller=logging.go:85 method=Health result=2 took=43.689µs +ts=2025-05-22T09:46:11Z caller=logging.go:85 method=Health result=2 took=50.279µs +ts=2025-05-22T09:46:14Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T09:46:14Z caller=logging.go:85 method=Health result=2 took=42.559µs +ts=2025-05-22T09:46:17Z caller=logging.go:85 method=Health result=2 took=47.169µs +ts=2025-05-22T09:46:17Z caller=logging.go:85 method=Health result=2 took=56.568µs +ts=2025-05-22T09:46:20Z caller=logging.go:85 method=Health result=2 took=30.679µs +ts=2025-05-22T09:46:20Z caller=logging.go:85 method=Health result=2 took=46.839µs +ts=2025-05-22T09:46:23Z caller=logging.go:85 method=Health result=2 took=44.279µs +ts=2025-05-22T09:46:23Z caller=logging.go:85 method=Health result=2 took=51.008µs +ts=2025-05-22T09:46:26Z caller=logging.go:85 method=Health result=2 took=42.599µs +ts=2025-05-22T09:46:26Z caller=logging.go:85 method=Health result=2 took=41.899µs +ts=2025-05-22T09:46:29Z caller=logging.go:85 method=Health result=2 took=40.279µs +ts=2025-05-22T09:46:29Z caller=logging.go:85 method=Health result=2 took=54.348µs +ts=2025-05-22T09:46:32Z caller=logging.go:85 method=Health result=2 took=41.619µs +ts=2025-05-22T09:46:32Z caller=logging.go:85 method=Health result=2 took=46.999µs +ts=2025-05-22T09:46:35Z caller=logging.go:85 method=Health result=2 took=41.679µs +ts=2025-05-22T09:46:35Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T09:46:38Z caller=logging.go:85 method=Health result=2 took=41.499µs +ts=2025-05-22T09:46:38Z caller=logging.go:85 method=Health result=2 took=41.899µs +ts=2025-05-22T09:46:41Z caller=logging.go:85 method=Health result=2 took=45.079µs +ts=2025-05-22T09:46:41Z caller=logging.go:85 method=Health result=2 took=44.559µs +ts=2025-05-22T09:46:44Z caller=logging.go:85 method=Health result=2 took=43.519µs +ts=2025-05-22T09:46:44Z caller=logging.go:85 method=Health result=2 took=42.389µs +ts=2025-05-22T09:46:47Z caller=logging.go:85 method=Health result=2 took=42.289µs +ts=2025-05-22T09:46:47Z caller=logging.go:85 method=Health result=2 took=31.389µs +ts=2025-05-22T09:46:50Z caller=logging.go:85 method=Health result=2 took=39.219µs +ts=2025-05-22T09:46:50Z caller=logging.go:85 method=Health result=2 took=39.059µs +ts=2025-05-22T09:46:53Z caller=logging.go:85 method=Health result=2 took=34.849µs +ts=2025-05-22T09:46:53Z caller=logging.go:85 method=Health result=2 took=57.949µs +ts=2025-05-22T09:46:56Z caller=logging.go:85 method=Health result=2 took=48.989µs +ts=2025-05-22T09:46:56Z caller=logging.go:85 method=Health result=2 took=73.518µs +ts=2025-05-22T09:46:59Z caller=logging.go:85 method=Health result=2 took=43.269µs +ts=2025-05-22T09:46:59Z caller=logging.go:85 method=Health result=2 took=31.099µs +ts=2025-05-22T09:47:02Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T09:47:02Z caller=logging.go:85 method=Health result=2 took=44.219µs +ts=2025-05-22T09:47:05Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T09:47:05Z caller=logging.go:85 method=Health result=2 took=37.409µs +ts=2025-05-22T09:47:08Z caller=logging.go:85 method=Health result=2 took=35.289µs +ts=2025-05-22T09:47:08Z caller=logging.go:85 method=Health result=2 took=34.929µs +ts=2025-05-22T09:47:11Z caller=logging.go:85 method=Health result=2 took=41.729µs +ts=2025-05-22T09:47:11Z caller=logging.go:85 method=Health result=2 took=56.538µs +ts=2025-05-22T09:47:14Z caller=logging.go:85 method=Health result=2 took=42.069µs +ts=2025-05-22T09:47:14Z caller=logging.go:85 method=Health result=2 took=49.859µs +ts=2025-05-22T09:47:17Z caller=logging.go:85 method=Health result=2 took=43.459µs +ts=2025-05-22T09:47:17Z caller=logging.go:85 method=Health result=2 took=42.499µs +ts=2025-05-22T09:47:20Z caller=logging.go:85 method=Health result=2 took=35.39µs +ts=2025-05-22T09:47:20Z caller=logging.go:85 method=Health result=2 took=45.469µs +ts=2025-05-22T09:47:23Z caller=logging.go:85 method=Health result=2 took=43.718µs +ts=2025-05-22T09:47:23Z caller=logging.go:85 method=Health result=2 took=42.989µs +ts=2025-05-22T09:47:26Z caller=logging.go:85 method=Health result=2 took=48.649µs +ts=2025-05-22T09:47:26Z caller=logging.go:85 method=Health result=2 took=50.669µs +ts=2025-05-22T09:47:29Z caller=logging.go:85 method=Health result=2 took=36.67µs +ts=2025-05-22T09:47:29Z caller=logging.go:85 method=Health result=2 took=49.519µs +ts=2025-05-22T09:47:32Z caller=logging.go:85 method=Health result=2 took=32.199µs +ts=2025-05-22T09:47:32Z caller=logging.go:85 method=Health result=2 took=45.399µs +ts=2025-05-22T09:47:35Z caller=logging.go:85 method=Health result=2 took=36.869µs +ts=2025-05-22T09:47:35Z caller=logging.go:85 method=Health result=2 took=24.869µs +ts=2025-05-22T09:47:38Z caller=logging.go:85 method=Health result=2 took=36.959µs +ts=2025-05-22T09:47:38Z caller=logging.go:85 method=Health result=2 took=37.799µs +ts=2025-05-22T09:47:41Z caller=logging.go:85 method=Health result=2 took=30.379µs +ts=2025-05-22T09:47:41Z caller=logging.go:85 method=Health result=2 took=30.389µs +ts=2025-05-22T09:47:44Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T09:47:44Z caller=logging.go:85 method=Health result=2 took=48.959µs +ts=2025-05-22T09:47:47Z caller=logging.go:85 method=Health result=2 took=41.329µs +ts=2025-05-22T09:47:47Z caller=logging.go:85 method=Health result=2 took=41.949µs +ts=2025-05-22T09:47:50Z caller=logging.go:85 method=Health result=2 took=44.969µs +ts=2025-05-22T09:47:50Z caller=logging.go:85 method=Health result=2 took=51.199µs +ts=2025-05-22T09:47:53Z caller=logging.go:85 method=Health result=2 took=32.15µs +ts=2025-05-22T09:47:53Z caller=logging.go:85 method=Health result=2 took=47.829µs +ts=2025-05-22T09:47:56Z caller=logging.go:85 method=Health result=2 took=31.779µs +ts=2025-05-22T09:47:56Z caller=logging.go:85 method=Health result=2 took=42.769µs +ts=2025-05-22T09:47:59Z caller=logging.go:85 method=Health result=2 took=47.229µs +ts=2025-05-22T09:47:59Z caller=logging.go:85 method=Health result=2 took=50.699µs +ts=2025-05-22T09:48:02Z caller=logging.go:85 method=Health result=2 took=48.039µs +ts=2025-05-22T09:48:02Z caller=logging.go:85 method=Health result=2 took=72.019µs +ts=2025-05-22T09:48:05Z caller=logging.go:85 method=Health result=2 took=43.869µs +ts=2025-05-22T09:48:05Z caller=logging.go:85 method=Health result=2 took=55.979µs +ts=2025-05-22T09:48:08Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T09:48:08Z caller=logging.go:85 method=Health result=2 took=50.198µs +ts=2025-05-22T09:48:11Z caller=logging.go:85 method=Health result=2 took=41.409µs +ts=2025-05-22T09:48:11Z caller=logging.go:85 method=Health result=2 took=41.239µs +ts=2025-05-22T09:48:14Z caller=logging.go:85 method=Health result=2 took=46.999µs +ts=2025-05-22T09:48:14Z caller=logging.go:85 method=Health result=2 took=48.739µs +ts=2025-05-22T09:48:17Z caller=logging.go:85 method=Health result=2 took=1.25675ms +ts=2025-05-22T09:48:17Z caller=logging.go:85 method=Health result=2 took=35.209µs +ts=2025-05-22T09:48:20Z caller=logging.go:85 method=Health result=2 took=41.619µs +ts=2025-05-22T09:48:20Z caller=logging.go:85 method=Health result=2 took=42.589µs +ts=2025-05-22T09:48:23Z caller=logging.go:85 method=Health result=2 took=42.838µs +ts=2025-05-22T09:48:23Z caller=logging.go:85 method=Health result=2 took=43.578µs +ts=2025-05-22T09:48:26Z caller=logging.go:85 method=Health result=2 took=38.609µs +ts=2025-05-22T09:48:26Z caller=logging.go:85 method=Health result=2 took=50.549µs +ts=2025-05-22T09:48:29Z caller=logging.go:85 method=Health result=2 took=43.639µs +ts=2025-05-22T09:48:29Z caller=logging.go:85 method=Health result=2 took=50.969µs +ts=2025-05-22T09:48:32Z caller=logging.go:85 method=Health result=2 took=43.839µs +ts=2025-05-22T09:48:32Z caller=logging.go:85 method=Health result=2 took=53.748µs +ts=2025-05-22T09:48:35Z caller=logging.go:85 method=Health result=2 took=48.949µs +ts=2025-05-22T09:48:35Z caller=logging.go:85 method=Health result=2 took=52.278µs +ts=2025-05-22T09:48:38Z caller=logging.go:85 method=Health result=2 took=45.479µs +ts=2025-05-22T09:48:38Z caller=logging.go:85 method=Health result=2 took=50.889µs +ts=2025-05-22T09:48:41Z caller=logging.go:85 method=Health result=2 took=44.569µs +ts=2025-05-22T09:48:41Z caller=logging.go:85 method=Health result=2 took=48.889µs +ts=2025-05-22T09:48:44Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T09:48:44Z caller=logging.go:85 method=Health result=2 took=30.699µs +ts=2025-05-22T09:48:47Z caller=logging.go:85 method=Health result=2 took=39.059µs +ts=2025-05-22T09:48:47Z caller=logging.go:85 method=Health result=2 took=48.958µs +ts=2025-05-22T09:48:50Z caller=logging.go:85 method=Health result=2 took=45.099µs +ts=2025-05-22T09:48:50Z caller=logging.go:85 method=Health result=2 took=49.689µs +ts=2025-05-22T09:48:53Z caller=logging.go:85 method=Health result=2 took=30.859µs +ts=2025-05-22T09:48:53Z caller=logging.go:85 method=Health result=2 took=30.759µs +ts=2025-05-22T09:48:56Z caller=logging.go:85 method=Health result=2 took=44.199µs +ts=2025-05-22T09:48:56Z caller=logging.go:85 method=Health result=2 took=24.209µs +ts=2025-05-22T09:48:59Z caller=logging.go:85 method=Health result=2 took=36.009µs +ts=2025-05-22T09:48:59Z caller=logging.go:85 method=Health result=2 took=33.709µs +ts=2025-05-22T09:49:02Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T09:49:02Z caller=logging.go:85 method=Health result=2 took=48.289µs +ts=2025-05-22T09:49:05Z caller=logging.go:85 method=Health result=2 took=41.149µs +ts=2025-05-22T09:49:05Z caller=logging.go:85 method=Health result=2 took=54.659µs +ts=2025-05-22T09:49:08Z caller=logging.go:85 method=Health result=2 took=41.489µs +ts=2025-05-22T09:49:08Z caller=logging.go:85 method=Health result=2 took=38.12µs +ts=2025-05-22T09:49:11Z caller=logging.go:85 method=Health result=2 took=32.909µs +ts=2025-05-22T09:49:11Z caller=logging.go:85 method=Health result=2 took=33.259µs +ts=2025-05-22T09:49:14Z caller=logging.go:85 method=Health result=2 took=25.819µs +ts=2025-05-22T09:49:14Z caller=logging.go:85 method=Health result=2 took=46.629µs +ts=2025-05-22T09:49:17Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T09:49:17Z caller=logging.go:85 method=Health result=2 took=39.789µs +ts=2025-05-22T09:49:20Z caller=logging.go:85 method=Health result=2 took=30.44µs +ts=2025-05-22T09:49:20Z caller=logging.go:85 method=Health result=2 took=30.47µs +ts=2025-05-22T09:49:23Z caller=logging.go:85 method=Health result=2 took=48.418µs +ts=2025-05-22T09:49:23Z caller=logging.go:85 method=Health result=2 took=54.869µs +ts=2025-05-22T09:49:26Z caller=logging.go:85 method=Health result=2 took=45.689µs +ts=2025-05-22T09:49:26Z caller=logging.go:85 method=Health result=2 took=50.709µs +ts=2025-05-22T09:49:29Z caller=logging.go:85 method=Health result=2 took=27.309µs +ts=2025-05-22T09:49:29Z caller=logging.go:85 method=Health result=2 took=41.439µs +ts=2025-05-22T09:49:32Z caller=logging.go:85 method=Health result=2 took=39.429µs +ts=2025-05-22T09:49:32Z caller=logging.go:85 method=Health result=2 took=40.089µs +ts=2025-05-22T09:49:35Z caller=logging.go:85 method=Health result=2 took=32.749µs +ts=2025-05-22T09:49:35Z caller=logging.go:85 method=Health result=2 took=42.999µs +ts=2025-05-22T09:49:38Z caller=logging.go:85 method=Health result=2 took=41.359µs +ts=2025-05-22T09:49:38Z caller=logging.go:85 method=Health result=2 took=27.119µs +ts=2025-05-22T09:49:41Z caller=logging.go:85 method=Health result=2 took=31.1µs +ts=2025-05-22T09:49:41Z caller=logging.go:85 method=Health result=2 took=31.14µs +ts=2025-05-22T09:49:44Z caller=logging.go:85 method=Health result=2 took=40.049µs +ts=2025-05-22T09:49:44Z caller=logging.go:85 method=Health result=2 took=52.289µs +ts=2025-05-22T09:49:47Z caller=logging.go:85 method=Health result=2 took=55.339µs +ts=2025-05-22T09:49:47Z caller=logging.go:85 method=Health result=2 took=55.399µs +ts=2025-05-22T09:49:50Z caller=logging.go:85 method=Health result=2 took=37.399µs +ts=2025-05-22T09:49:50Z caller=logging.go:85 method=Health result=2 took=36.809µs +ts=2025-05-22T09:49:53Z caller=logging.go:85 method=Health result=2 took=41.179µs +ts=2025-05-22T09:49:53Z caller=logging.go:85 method=Health result=2 took=40.079µs +ts=2025-05-22T09:49:56Z caller=logging.go:85 method=Health result=2 took=28.639µs +ts=2025-05-22T09:49:56Z caller=logging.go:85 method=Health result=2 took=28.659µs +ts=2025-05-22T09:49:59Z caller=logging.go:85 method=Health result=2 took=31.749µs +ts=2025-05-22T09:49:59Z caller=logging.go:85 method=Health result=2 took=51.849µs +ts=2025-05-22T09:50:02Z caller=logging.go:85 method=Health result=2 took=46.238µs +ts=2025-05-22T09:50:02Z caller=logging.go:85 method=Health result=2 took=50.219µs +ts=2025-05-22T09:50:05Z caller=logging.go:85 method=Health result=2 took=32.489µs +ts=2025-05-22T09:50:05Z caller=logging.go:85 method=Health result=2 took=16.6µs +ts=2025-05-22T09:50:08Z caller=logging.go:85 method=Health result=2 took=41.279µs +ts=2025-05-22T09:50:08Z caller=logging.go:85 method=Health result=2 took=19.989µs +ts=2025-05-22T09:50:11Z caller=logging.go:85 method=Health result=2 took=30.03µs +ts=2025-05-22T09:50:11Z caller=logging.go:85 method=Health result=2 took=46.058µs +ts=2025-05-22T09:50:14Z caller=logging.go:85 method=Health result=2 took=31.49µs +ts=2025-05-22T09:50:14Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T09:50:17Z caller=logging.go:85 method=Health result=2 took=29.5µs +ts=2025-05-22T09:50:17Z caller=logging.go:85 method=Health result=2 took=19.05µs +ts=2025-05-22T09:50:20Z caller=logging.go:85 method=Health result=2 took=38.009µs +ts=2025-05-22T09:50:20Z caller=logging.go:85 method=Health result=2 took=22.55µs +ts=2025-05-22T09:50:23Z caller=logging.go:85 method=Health result=2 took=38.409µs +ts=2025-05-22T09:50:23Z caller=logging.go:85 method=Health result=2 took=38.409µs +ts=2025-05-22T09:50:26Z caller=logging.go:85 method=Health result=2 took=45.409µs +ts=2025-05-22T09:50:26Z caller=logging.go:85 method=Health result=2 took=40.889µs +ts=2025-05-22T09:50:29Z caller=logging.go:85 method=Health result=2 took=39.969µs +ts=2025-05-22T09:50:29Z caller=logging.go:85 method=Health result=2 took=27.95µs +ts=2025-05-22T09:50:32Z caller=logging.go:85 method=Health result=2 took=53.958µs +ts=2025-05-22T09:50:32Z caller=logging.go:85 method=Health result=2 took=34.699µs +ts=2025-05-22T09:50:35Z caller=logging.go:85 method=Health result=2 took=39.679µs +ts=2025-05-22T09:50:35Z caller=logging.go:85 method=Health result=2 took=27.35µs +ts=2025-05-22T09:50:38Z caller=logging.go:85 method=Health result=2 took=39.769µs +ts=2025-05-22T09:50:38Z caller=logging.go:85 method=Health result=2 took=39.769µs +ts=2025-05-22T09:50:41Z caller=logging.go:85 method=Health result=2 took=40.389µs +ts=2025-05-22T09:50:41Z caller=logging.go:85 method=Health result=2 took=39.819µs +ts=2025-05-22T09:50:44Z caller=logging.go:85 method=Health result=2 took=34.259µs +ts=2025-05-22T09:50:44Z caller=logging.go:85 method=Health result=2 took=17.68µs +ts=2025-05-22T09:50:47Z caller=logging.go:85 method=Health result=2 took=33.4µs +ts=2025-05-22T09:50:47Z caller=logging.go:85 method=Health result=2 took=13.729µs +ts=2025-05-22T09:50:50Z caller=logging.go:85 method=Health result=2 took=46.569µs +ts=2025-05-22T09:50:50Z caller=logging.go:85 method=Health result=2 took=45.439µs +ts=2025-05-22T09:50:53Z caller=logging.go:85 method=Health result=2 took=34.239µs +ts=2025-05-22T09:50:53Z caller=logging.go:85 method=Health result=2 took=41.159µs +ts=2025-05-22T09:50:56Z caller=logging.go:85 method=Health result=2 took=42.969µs +ts=2025-05-22T09:50:56Z caller=logging.go:85 method=Health result=2 took=48.799µs +ts=2025-05-22T09:50:59Z caller=logging.go:85 method=Health result=2 took=42.359µs +ts=2025-05-22T09:50:59Z caller=logging.go:85 method=Health result=2 took=43.169µs +ts=2025-05-22T09:51:02Z caller=logging.go:85 method=Health result=2 took=33.26µs +ts=2025-05-22T09:51:02Z caller=logging.go:85 method=Health result=2 took=50.089µs +ts=2025-05-22T09:51:05Z caller=logging.go:85 method=Health result=2 took=44.929µs +ts=2025-05-22T09:51:05Z caller=logging.go:85 method=Health result=2 took=39.879µs +ts=2025-05-22T09:51:08Z caller=logging.go:85 method=Health result=2 took=39.04µs +ts=2025-05-22T09:51:08Z caller=logging.go:85 method=Health result=2 took=38.64µs +ts=2025-05-22T09:51:11Z caller=logging.go:85 method=Health result=2 took=37.899µs +ts=2025-05-22T09:51:11Z caller=logging.go:85 method=Health result=2 took=46.829µs +ts=2025-05-22T09:51:14Z caller=logging.go:85 method=Health result=2 took=31.669µs +ts=2025-05-22T09:51:14Z caller=logging.go:85 method=Health result=2 took=17µs +ts=2025-05-22T09:51:17Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T09:51:17Z caller=logging.go:85 method=Health result=2 took=43.409µs +ts=2025-05-22T09:51:20Z caller=logging.go:85 method=Health result=2 took=39.819µs +ts=2025-05-22T09:51:20Z caller=logging.go:85 method=Health result=2 took=40.459µs +ts=2025-05-22T09:51:23Z caller=logging.go:85 method=Health result=2 took=46.859µs +ts=2025-05-22T09:51:23Z caller=logging.go:85 method=Health result=2 took=63.388µs +ts=2025-05-22T09:51:26Z caller=logging.go:85 method=Health result=2 took=29.209µs +ts=2025-05-22T09:51:26Z caller=logging.go:85 method=Health result=2 took=29.189µs +ts=2025-05-22T09:51:29Z caller=logging.go:85 method=Health result=2 took=31.459µs +ts=2025-05-22T09:51:29Z caller=logging.go:85 method=Health result=2 took=33.419µs +ts=2025-05-22T09:51:32Z caller=logging.go:85 method=Health result=2 took=37.519µs +ts=2025-05-22T09:51:32Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T09:51:35Z caller=logging.go:85 method=Health result=2 took=41.15µs +ts=2025-05-22T09:51:35Z caller=logging.go:85 method=Health result=2 took=46.399µs +ts=2025-05-22T09:51:38Z caller=logging.go:85 method=Health result=2 took=39.839µs +ts=2025-05-22T09:51:38Z caller=logging.go:85 method=Health result=2 took=27.169µs +ts=2025-05-22T09:51:41Z caller=logging.go:85 method=Health result=2 took=32.289µs +ts=2025-05-22T09:51:41Z caller=logging.go:85 method=Health result=2 took=47.468µs +ts=2025-05-22T09:51:44Z caller=logging.go:85 method=Health result=2 took=51.978µs +ts=2025-05-22T09:51:44Z caller=logging.go:85 method=Health result=2 took=51.948µs +ts=2025-05-22T09:51:47Z caller=logging.go:85 method=Health result=2 took=42.289µs +ts=2025-05-22T09:51:47Z caller=logging.go:85 method=Health result=2 took=31.82µs +ts=2025-05-22T09:51:50Z caller=logging.go:85 method=Health result=2 took=42.109µs +ts=2025-05-22T09:51:50Z caller=logging.go:85 method=Health result=2 took=30.509µs +ts=2025-05-22T09:51:53Z caller=logging.go:85 method=Health result=2 took=32.869µs +ts=2025-05-22T09:51:53Z caller=logging.go:85 method=Health result=2 took=44.419µs +ts=2025-05-22T09:51:56Z caller=logging.go:85 method=Health result=2 took=29.229µs +ts=2025-05-22T09:51:56Z caller=logging.go:85 method=Health result=2 took=29.269µs +ts=2025-05-22T09:51:59Z caller=logging.go:85 method=Health result=2 took=31.799µs +ts=2025-05-22T09:51:59Z caller=logging.go:85 method=Health result=2 took=15.97µs +ts=2025-05-22T09:52:02Z caller=logging.go:85 method=Health result=2 took=28.779µs +ts=2025-05-22T09:52:02Z caller=logging.go:85 method=Health result=2 took=28.899µs +ts=2025-05-22T09:52:05Z caller=logging.go:85 method=Health result=2 took=41.229µs +ts=2025-05-22T09:52:05Z caller=logging.go:85 method=Health result=2 took=56.439µs +ts=2025-05-22T09:52:08Z caller=logging.go:85 method=Health result=2 took=40.579µs +ts=2025-05-22T09:52:08Z caller=logging.go:85 method=Health result=2 took=40.519µs +ts=2025-05-22T09:52:11Z caller=logging.go:85 method=Health result=2 took=42.439µs +ts=2025-05-22T09:52:11Z caller=logging.go:85 method=Health result=2 took=50.669µs +ts=2025-05-22T09:52:14Z caller=logging.go:85 method=Health result=2 took=38.569µs +ts=2025-05-22T09:52:14Z caller=logging.go:85 method=Health result=2 took=38.699µs +ts=2025-05-22T09:52:17Z caller=logging.go:85 method=Health result=2 took=90.488µs +ts=2025-05-22T09:52:17Z caller=logging.go:85 method=Health result=2 took=869.149µs +ts=2025-05-22T09:52:20Z caller=logging.go:85 method=Health result=2 took=60.168µs +ts=2025-05-22T09:52:20Z caller=logging.go:85 method=Health result=2 took=46.279µs +ts=2025-05-22T09:52:23Z caller=logging.go:85 method=Health result=2 took=41.939µs +ts=2025-05-22T09:52:23Z caller=logging.go:85 method=Health result=2 took=49.679µs +ts=2025-05-22T09:52:26Z caller=logging.go:85 method=Health result=2 took=39.019µs +ts=2025-05-22T09:52:26Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T09:52:29Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T09:52:29Z caller=logging.go:85 method=Health result=2 took=40.509µs +ts=2025-05-22T09:52:32Z caller=logging.go:85 method=Health result=2 took=39.109µs +ts=2025-05-22T09:52:32Z caller=logging.go:85 method=Health result=2 took=66.659µs +ts=2025-05-22T09:52:35Z caller=logging.go:85 method=Health result=2 took=24.729µs +ts=2025-05-22T09:52:35Z caller=logging.go:85 method=Health result=2 took=29.989µs +ts=2025-05-22T09:52:38Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T09:52:38Z caller=logging.go:85 method=Health result=2 took=38.379µs +ts=2025-05-22T09:52:41Z caller=logging.go:85 method=Health result=2 took=29.919µs +ts=2025-05-22T09:52:41Z caller=logging.go:85 method=Health result=2 took=29.919µs +ts=2025-05-22T09:52:44Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T09:52:44Z caller=logging.go:85 method=Health result=2 took=39.019µs +ts=2025-05-22T09:52:47Z caller=logging.go:85 method=Health result=2 took=38.789µs +ts=2025-05-22T09:52:47Z caller=logging.go:85 method=Health result=2 took=11.17µs +ts=2025-05-22T09:52:50Z caller=logging.go:85 method=Health result=2 took=41.149µs +ts=2025-05-22T09:52:50Z caller=logging.go:85 method=Health result=2 took=42.029µs +ts=2025-05-22T09:52:53Z caller=logging.go:85 method=Health result=2 took=30.99µs +ts=2025-05-22T09:52:53Z caller=logging.go:85 method=Health result=2 took=30.94µs +ts=2025-05-22T09:52:56Z caller=logging.go:85 method=Health result=2 took=29.709µs +ts=2025-05-22T09:52:56Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T09:52:59Z caller=logging.go:85 method=Health result=2 took=41.489µs +ts=2025-05-22T09:52:59Z caller=logging.go:85 method=Health result=2 took=46.629µs +ts=2025-05-22T09:53:02Z caller=logging.go:85 method=Health result=2 took=44.848µs +ts=2025-05-22T09:53:02Z caller=logging.go:85 method=Health result=2 took=49.569µs +ts=2025-05-22T09:53:05Z caller=logging.go:85 method=Health result=2 took=43.159µs +ts=2025-05-22T09:53:05Z caller=logging.go:85 method=Health result=2 took=27.399µs +ts=2025-05-22T09:53:08Z caller=logging.go:85 method=Health result=2 took=37.679µs +ts=2025-05-22T09:53:08Z caller=logging.go:85 method=Health result=2 took=38.109µs +ts=2025-05-22T09:53:11Z caller=logging.go:85 method=Health result=2 took=43.709µs +ts=2025-05-22T09:53:11Z caller=logging.go:85 method=Health result=2 took=42.529µs +ts=2025-05-22T09:53:14Z caller=logging.go:85 method=Health result=2 took=29.14µs +ts=2025-05-22T09:53:14Z caller=logging.go:85 method=Health result=2 took=46.778µs +ts=2025-05-22T09:53:17Z caller=logging.go:85 method=Health result=2 took=36.379µs +ts=2025-05-22T09:53:17Z caller=logging.go:85 method=Health result=2 took=36.249µs +ts=2025-05-22T09:53:20Z caller=logging.go:85 method=Health result=2 took=37.999µs +ts=2025-05-22T09:53:20Z caller=logging.go:85 method=Health result=2 took=36.599µs +ts=2025-05-22T09:53:23Z caller=logging.go:85 method=Health result=2 took=44.219µs +ts=2025-05-22T09:53:23Z caller=logging.go:85 method=Health result=2 took=43.589µs +ts=2025-05-22T09:53:26Z caller=logging.go:85 method=Health result=2 took=44.439µs +ts=2025-05-22T09:53:26Z caller=logging.go:85 method=Health result=2 took=38.77µs +ts=2025-05-22T09:53:29Z caller=logging.go:85 method=Health result=2 took=30.07µs +ts=2025-05-22T09:53:29Z caller=logging.go:85 method=Health result=2 took=30.11µs +ts=2025-05-22T09:53:32Z caller=logging.go:85 method=Health result=2 took=59.728µs +ts=2025-05-22T09:53:32Z caller=logging.go:85 method=Health result=2 took=59.648µs +ts=2025-05-22T09:53:35Z caller=logging.go:85 method=Health result=2 took=60.979µs +ts=2025-05-22T09:53:35Z caller=logging.go:85 method=Health result=2 took=56.889µs +ts=2025-05-22T09:53:38Z caller=logging.go:85 method=Health result=2 took=60.799µs +ts=2025-05-22T09:53:38Z caller=logging.go:85 method=Health result=2 took=42.859µs +ts=2025-05-22T09:53:41Z caller=logging.go:85 method=Health result=2 took=41.939µs +ts=2025-05-22T09:53:41Z caller=logging.go:85 method=Health result=2 took=50.889µs +ts=2025-05-22T09:53:44Z caller=logging.go:85 method=Health result=2 took=49.829µs +ts=2025-05-22T09:53:44Z caller=logging.go:85 method=Health result=2 took=28.63µs +ts=2025-05-22T09:53:47Z caller=logging.go:85 method=Health result=2 took=50.459µs +ts=2025-05-22T09:53:47Z caller=logging.go:85 method=Health result=2 took=27.129µs +ts=2025-05-22T09:53:50Z caller=logging.go:85 method=Health result=2 took=41.149µs +ts=2025-05-22T09:53:50Z caller=logging.go:85 method=Health result=2 took=42.609µs +ts=2025-05-22T09:53:53Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T09:53:53Z caller=logging.go:85 method=Health result=2 took=44.999µs +ts=2025-05-22T09:53:56Z caller=logging.go:85 method=Health result=2 took=31.699µs +ts=2025-05-22T09:53:56Z caller=logging.go:85 method=Health result=2 took=15.429µs +ts=2025-05-22T09:53:59Z caller=logging.go:85 method=Health result=2 took=45.819µs +ts=2025-05-22T09:53:59Z caller=logging.go:85 method=Health result=2 took=50.129µs +ts=2025-05-22T09:54:02Z caller=logging.go:85 method=Health result=2 took=39.329µs +ts=2025-05-22T09:54:02Z caller=logging.go:85 method=Health result=2 took=37.939µs +ts=2025-05-22T09:54:05Z caller=logging.go:85 method=Health result=2 took=35.659µs +ts=2025-05-22T09:54:05Z caller=logging.go:85 method=Health result=2 took=41.269µs +ts=2025-05-22T09:54:08Z caller=logging.go:85 method=Health result=2 took=36.909µs +ts=2025-05-22T09:54:08Z caller=logging.go:85 method=Health result=2 took=41.269µs +ts=2025-05-22T09:54:11Z caller=logging.go:85 method=Health result=2 took=52.159µs +ts=2025-05-22T09:54:11Z caller=logging.go:85 method=Health result=2 took=45.939µs +ts=2025-05-22T09:54:14Z caller=logging.go:85 method=Health result=2 took=37.189µs +ts=2025-05-22T09:54:14Z caller=logging.go:85 method=Health result=2 took=37.359µs +ts=2025-05-22T09:54:17Z caller=logging.go:85 method=Health result=2 took=60.328µs +ts=2025-05-22T09:54:17Z caller=logging.go:85 method=Health result=2 took=62.049µs +ts=2025-05-22T09:54:20Z caller=logging.go:85 method=Health result=2 took=39.599µs +ts=2025-05-22T09:54:20Z caller=logging.go:85 method=Health result=2 took=48.249µs +ts=2025-05-22T09:54:23Z caller=logging.go:85 method=Health result=2 took=42.379µs +ts=2025-05-22T09:54:23Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T09:54:26Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T09:54:26Z caller=logging.go:85 method=Health result=2 took=40.239µs +ts=2025-05-22T09:54:29Z caller=logging.go:85 method=Health result=2 took=38.029µs +ts=2025-05-22T09:54:29Z caller=logging.go:85 method=Health result=2 took=45.149µs +ts=2025-05-22T09:54:32Z caller=logging.go:85 method=Health result=2 took=36.479µs +ts=2025-05-22T09:54:32Z caller=logging.go:85 method=Health result=2 took=35.889µs +ts=2025-05-22T09:54:35Z caller=logging.go:85 method=Health result=2 took=44.189µs +ts=2025-05-22T09:54:35Z caller=logging.go:85 method=Health result=2 took=42.999µs +ts=2025-05-22T09:54:38Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T09:54:38Z caller=logging.go:85 method=Health result=2 took=23.89µs +ts=2025-05-22T09:54:41Z caller=logging.go:85 method=Health result=2 took=41.929µs +ts=2025-05-22T09:54:41Z caller=logging.go:85 method=Health result=2 took=41.889µs +ts=2025-05-22T09:54:44Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T09:54:44Z caller=logging.go:85 method=Health result=2 took=40.779µs +ts=2025-05-22T09:54:47Z caller=logging.go:85 method=Health result=2 took=37.049µs +ts=2025-05-22T09:54:47Z caller=logging.go:85 method=Health result=2 took=37.499µs +ts=2025-05-22T09:54:50Z caller=logging.go:85 method=Health result=2 took=38.299µs +ts=2025-05-22T09:54:50Z caller=logging.go:85 method=Health result=2 took=40.359µs +ts=2025-05-22T09:54:53Z caller=logging.go:85 method=Health result=2 took=32.529µs +ts=2025-05-22T09:54:53Z caller=logging.go:85 method=Health result=2 took=53.378µs +ts=2025-05-22T09:54:56Z caller=logging.go:85 method=Health result=2 took=41.049µs +ts=2025-05-22T09:54:56Z caller=logging.go:85 method=Health result=2 took=41.959µs +ts=2025-05-22T09:54:59Z caller=logging.go:85 method=Health result=2 took=46.039µs +ts=2025-05-22T09:54:59Z caller=logging.go:85 method=Health result=2 took=91.158µs +ts=2025-05-22T09:55:02Z caller=logging.go:85 method=Health result=2 took=33.48µs +ts=2025-05-22T09:55:02Z caller=logging.go:85 method=Health result=2 took=35.61µs +ts=2025-05-22T09:55:05Z caller=logging.go:85 method=Health result=2 took=29.04µs +ts=2025-05-22T09:55:05Z caller=logging.go:85 method=Health result=2 took=13.269µs +ts=2025-05-22T09:55:08Z caller=logging.go:85 method=Health result=2 took=38.359µs +ts=2025-05-22T09:55:08Z caller=logging.go:85 method=Health result=2 took=38.929µs +ts=2025-05-22T09:55:11Z caller=logging.go:85 method=Health result=2 took=39.729µs +ts=2025-05-22T09:55:11Z caller=logging.go:85 method=Health result=2 took=39.739µs +ts=2025-05-22T09:55:14Z caller=logging.go:85 method=Health result=2 took=38.49µs +ts=2025-05-22T09:55:14Z caller=logging.go:85 method=Health result=2 took=29.709µs +ts=2025-05-22T09:55:17Z caller=logging.go:85 method=Health result=2 took=39.029µs +ts=2025-05-22T09:55:17Z caller=logging.go:85 method=Health result=2 took=42.859µs +ts=2025-05-22T09:55:20Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T09:55:20Z caller=logging.go:85 method=Health result=2 took=32.779µs +ts=2025-05-22T09:55:23Z caller=logging.go:85 method=Health result=2 took=43.119µs +ts=2025-05-22T09:55:23Z caller=logging.go:85 method=Health result=2 took=37.959µs +ts=2025-05-22T09:55:26Z caller=logging.go:85 method=Health result=2 took=44.489µs +ts=2025-05-22T09:55:26Z caller=logging.go:85 method=Health result=2 took=61.788µs +ts=2025-05-22T09:55:29Z caller=logging.go:85 method=Health result=2 took=29.609µs +ts=2025-05-22T09:55:29Z caller=logging.go:85 method=Health result=2 took=41.539µs +ts=2025-05-22T09:55:32Z caller=logging.go:85 method=Health result=2 took=40.909µs +ts=2025-05-22T09:55:32Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T09:55:35Z caller=logging.go:85 method=Health result=2 took=33.409µs +ts=2025-05-22T09:55:35Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T09:55:38Z caller=logging.go:85 method=Health result=2 took=42.339µs +ts=2025-05-22T09:55:38Z caller=logging.go:85 method=Health result=2 took=27.839µs +ts=2025-05-22T09:55:41Z caller=logging.go:85 method=Health result=2 took=32.079µs +ts=2025-05-22T09:55:41Z caller=logging.go:85 method=Health result=2 took=41.269µs +ts=2025-05-22T09:55:44Z caller=logging.go:85 method=Health result=2 took=42.389µs +ts=2025-05-22T09:55:44Z caller=logging.go:85 method=Health result=2 took=48.409µs +ts=2025-05-22T09:55:47Z caller=logging.go:85 method=Health result=2 took=32.599µs +ts=2025-05-22T09:55:47Z caller=logging.go:85 method=Health result=2 took=46.329µs +ts=2025-05-22T09:55:50Z caller=logging.go:85 method=Health result=2 took=31.179µs +ts=2025-05-22T09:55:50Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T09:55:53Z caller=logging.go:85 method=Health result=2 took=48.488µs +ts=2025-05-22T09:55:53Z caller=logging.go:85 method=Health result=2 took=15.009µs +ts=2025-05-22T09:55:56Z caller=logging.go:85 method=Health result=2 took=40.939µs +ts=2025-05-22T09:55:56Z caller=logging.go:85 method=Health result=2 took=20.24µs +ts=2025-05-22T09:55:59Z caller=logging.go:85 method=Health result=2 took=35.329µs +ts=2025-05-22T09:55:59Z caller=logging.go:85 method=Health result=2 took=32.849µs +ts=2025-05-22T09:56:02Z caller=logging.go:85 method=Health result=2 took=30.59µs +ts=2025-05-22T09:56:02Z caller=logging.go:85 method=Health result=2 took=33.939µs +ts=2025-05-22T09:56:05Z caller=logging.go:85 method=Health result=2 took=32.929µs +ts=2025-05-22T09:56:05Z caller=logging.go:85 method=Health result=2 took=59.079µs +ts=2025-05-22T09:56:08Z caller=logging.go:85 method=Health result=2 took=33.189µs +ts=2025-05-22T09:56:08Z caller=logging.go:85 method=Health result=2 took=45.059µs +ts=2025-05-22T09:56:11Z caller=logging.go:85 method=Health result=2 took=40.469µs +ts=2025-05-22T09:56:11Z caller=logging.go:85 method=Health result=2 took=46.859µs +ts=2025-05-22T09:56:14Z caller=logging.go:85 method=Health result=2 took=30.739µs +ts=2025-05-22T09:56:14Z caller=logging.go:85 method=Health result=2 took=12.469µs +ts=2025-05-22T09:56:17Z caller=logging.go:85 method=Health result=2 took=31.169µs +ts=2025-05-22T09:56:17Z caller=logging.go:85 method=Health result=2 took=43.059µs +ts=2025-05-22T09:56:20Z caller=logging.go:85 method=Health result=2 took=32.379µs +ts=2025-05-22T09:56:20Z caller=logging.go:85 method=Health result=2 took=19.099µs +ts=2025-05-22T09:56:23Z caller=logging.go:85 method=Health result=2 took=36.06µs +ts=2025-05-22T09:56:23Z caller=logging.go:85 method=Health result=2 took=36.04µs +ts=2025-05-22T09:56:26Z caller=logging.go:85 method=Health result=2 took=46.619µs +ts=2025-05-22T09:56:26Z caller=logging.go:85 method=Health result=2 took=52.439µs +ts=2025-05-22T09:56:29Z caller=logging.go:85 method=Health result=2 took=41.979µs +ts=2025-05-22T09:56:29Z caller=logging.go:85 method=Health result=2 took=47.639µs +ts=2025-05-22T09:56:32Z caller=logging.go:85 method=Health result=2 took=38.949µs +ts=2025-05-22T09:56:32Z caller=logging.go:85 method=Health result=2 took=41.999µs +ts=2025-05-22T09:56:35Z caller=logging.go:85 method=Health result=2 took=39.809µs +ts=2025-05-22T09:56:35Z caller=logging.go:85 method=Health result=2 took=40.249µs +ts=2025-05-22T09:56:38Z caller=logging.go:85 method=Health result=2 took=30.719µs +ts=2025-05-22T09:56:38Z caller=logging.go:85 method=Health result=2 took=34.619µs +ts=2025-05-22T09:56:41Z caller=logging.go:85 method=Health result=2 took=39.839µs +ts=2025-05-22T09:56:41Z caller=logging.go:85 method=Health result=2 took=58.738µs +ts=2025-05-22T09:56:44Z caller=logging.go:85 method=Health result=2 took=36.04µs +ts=2025-05-22T09:56:44Z caller=logging.go:85 method=Health result=2 took=33.809µs +ts=2025-05-22T09:56:47Z caller=logging.go:85 method=Health result=2 took=39.529µs +ts=2025-05-22T09:56:47Z caller=logging.go:85 method=Health result=2 took=39.289µs +ts=2025-05-22T09:56:50Z caller=logging.go:85 method=Health result=2 took=56.828µs +ts=2025-05-22T09:56:50Z caller=logging.go:85 method=Health result=2 took=53.489µs +ts=2025-05-22T09:56:53Z caller=logging.go:85 method=Health result=2 took=35.869µs +ts=2025-05-22T09:56:53Z caller=logging.go:85 method=Health result=2 took=50.249µs +ts=2025-05-22T09:56:56Z caller=logging.go:85 method=Health result=2 took=39.439µs +ts=2025-05-22T09:56:56Z caller=logging.go:85 method=Health result=2 took=38.619µs +ts=2025-05-22T09:56:59Z caller=logging.go:85 method=Health result=2 took=41.489µs +ts=2025-05-22T09:56:59Z caller=logging.go:85 method=Health result=2 took=36.59µs +ts=2025-05-22T09:57:02Z caller=logging.go:85 method=Health result=2 took=42.439µs +ts=2025-05-22T09:57:02Z caller=logging.go:85 method=Health result=2 took=40.779µs +ts=2025-05-22T09:57:05Z caller=logging.go:85 method=Health result=2 took=39.829µs +ts=2025-05-22T09:57:05Z caller=logging.go:85 method=Health result=2 took=39.849µs +ts=2025-05-22T09:57:08Z caller=logging.go:85 method=Health result=2 took=36.129µs +ts=2025-05-22T09:57:08Z caller=logging.go:85 method=Health result=2 took=36.099µs +ts=2025-05-22T09:57:11Z caller=logging.go:85 method=Health result=2 took=39.049µs +ts=2025-05-22T09:57:11Z caller=logging.go:85 method=Health result=2 took=39.069µs +ts=2025-05-22T09:57:14Z caller=logging.go:85 method=Health result=2 took=51.858µs +ts=2025-05-22T09:57:14Z caller=logging.go:85 method=Health result=2 took=15.12µs +ts=2025-05-22T09:57:17Z caller=logging.go:85 method=Health result=2 took=31.83µs +ts=2025-05-22T09:57:17Z caller=logging.go:85 method=Health result=2 took=10.32µs +ts=2025-05-22T09:57:20Z caller=logging.go:85 method=Health result=2 took=45.869µs +ts=2025-05-22T09:57:20Z caller=logging.go:85 method=Health result=2 took=28.68µs +ts=2025-05-22T09:57:23Z caller=logging.go:85 method=Health result=2 took=28.559µs +ts=2025-05-22T09:57:23Z caller=logging.go:85 method=Health result=2 took=13.74µs +ts=2025-05-22T09:57:26Z caller=logging.go:85 method=Health result=2 took=30.339µs +ts=2025-05-22T09:57:26Z caller=logging.go:85 method=Health result=2 took=30.159µs +ts=2025-05-22T09:57:29Z caller=logging.go:85 method=Health result=2 took=41.589µs +ts=2025-05-22T09:57:29Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T09:57:32Z caller=logging.go:85 method=Health result=2 took=47.289µs +ts=2025-05-22T09:57:32Z caller=logging.go:85 method=Health result=2 took=41.709µs +ts=2025-05-22T09:57:35Z caller=logging.go:85 method=Health result=2 took=32.639µs +ts=2025-05-22T09:57:35Z caller=logging.go:85 method=Health result=2 took=33.219µs +ts=2025-05-22T09:57:38Z caller=logging.go:85 method=Health result=2 took=40.829µs +ts=2025-05-22T09:57:38Z caller=logging.go:85 method=Health result=2 took=41.339µs +ts=2025-05-22T09:57:41Z caller=logging.go:85 method=Health result=2 took=45.539µs +ts=2025-05-22T09:57:41Z caller=logging.go:85 method=Health result=2 took=47.229µs +ts=2025-05-22T09:57:44Z caller=logging.go:85 method=Health result=2 took=46.309µs +ts=2025-05-22T09:57:44Z caller=logging.go:85 method=Health result=2 took=45.139µs +ts=2025-05-22T09:57:47Z caller=logging.go:85 method=Health result=2 took=39.679µs +ts=2025-05-22T09:57:47Z caller=logging.go:85 method=Health result=2 took=39.169µs +ts=2025-05-22T09:57:50Z caller=logging.go:85 method=Health result=2 took=43.718µs +ts=2025-05-22T09:57:50Z caller=logging.go:85 method=Health result=2 took=44.489µs +ts=2025-05-22T09:57:53Z caller=logging.go:85 method=Health result=2 took=39.76µs +ts=2025-05-22T09:57:53Z caller=logging.go:85 method=Health result=2 took=39.91µs +ts=2025-05-22T09:57:56Z caller=logging.go:85 method=Health result=2 took=29.83µs +ts=2025-05-22T09:57:56Z caller=logging.go:85 method=Health result=2 took=51.099µs +ts=2025-05-22T09:57:59Z caller=logging.go:85 method=Health result=2 took=42.809µs +ts=2025-05-22T09:57:59Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T09:58:02Z caller=logging.go:85 method=Health result=2 took=37.239µs +ts=2025-05-22T09:58:02Z caller=logging.go:85 method=Health result=2 took=26.849µs +ts=2025-05-22T09:58:05Z caller=logging.go:85 method=Health result=2 took=37.529µs +ts=2025-05-22T09:58:05Z caller=logging.go:85 method=Health result=2 took=39.729µs +ts=2025-05-22T09:58:08Z caller=logging.go:85 method=Health result=2 took=39.389µs +ts=2025-05-22T09:58:08Z caller=logging.go:85 method=Health result=2 took=39.469µs +ts=2025-05-22T09:58:11Z caller=logging.go:85 method=Health result=2 took=35.819µs +ts=2025-05-22T09:58:11Z caller=logging.go:85 method=Health result=2 took=35.539µs +ts=2025-05-22T09:58:14Z caller=logging.go:85 method=Health result=2 took=43.778µs +ts=2025-05-22T09:58:14Z caller=logging.go:85 method=Health result=2 took=44.578µs +ts=2025-05-22T09:58:17Z caller=logging.go:85 method=Health result=2 took=67.598µs +ts=2025-05-22T09:58:17Z caller=logging.go:85 method=Health result=2 took=895.649µs +ts=2025-05-22T09:58:20Z caller=logging.go:85 method=Health result=2 took=43.079µs +ts=2025-05-22T09:58:20Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T09:58:23Z caller=logging.go:85 method=Health result=2 took=38.949µs +ts=2025-05-22T09:58:23Z caller=logging.go:85 method=Health result=2 took=38.959µs +ts=2025-05-22T09:58:26Z caller=logging.go:85 method=Health result=2 took=39.979µs +ts=2025-05-22T09:58:26Z caller=logging.go:85 method=Health result=2 took=24.649µs +ts=2025-05-22T09:58:29Z caller=logging.go:85 method=Health result=2 took=37.919µs +ts=2025-05-22T09:58:29Z caller=logging.go:85 method=Health result=2 took=36.139µs +ts=2025-05-22T09:58:32Z caller=logging.go:85 method=Health result=2 took=39.599µs +ts=2025-05-22T09:58:32Z caller=logging.go:85 method=Health result=2 took=40.269µs +ts=2025-05-22T09:58:35Z caller=logging.go:85 method=Health result=2 took=49.219µs +ts=2025-05-22T09:58:35Z caller=logging.go:85 method=Health result=2 took=50.748µs +ts=2025-05-22T09:58:38Z caller=logging.go:85 method=Health result=2 took=29.709µs +ts=2025-05-22T09:58:38Z caller=logging.go:85 method=Health result=2 took=29.759µs +ts=2025-05-22T09:58:41Z caller=logging.go:85 method=Health result=2 took=32.389µs +ts=2025-05-22T09:58:41Z caller=logging.go:85 method=Health result=2 took=35.16µs +ts=2025-05-22T09:58:44Z caller=logging.go:85 method=Health result=2 took=42.709µs +ts=2025-05-22T09:58:44Z caller=logging.go:85 method=Health result=2 took=50.129µs +ts=2025-05-22T09:58:47Z caller=logging.go:85 method=Health result=2 took=37.21µs +ts=2025-05-22T09:58:47Z caller=logging.go:85 method=Health result=2 took=60.729µs +ts=2025-05-22T09:58:50Z caller=logging.go:85 method=Health result=2 took=36.059µs +ts=2025-05-22T09:58:50Z caller=logging.go:85 method=Health result=2 took=34.669µs +ts=2025-05-22T09:58:53Z caller=logging.go:85 method=Health result=2 took=29.02µs +ts=2025-05-22T09:58:53Z caller=logging.go:85 method=Health result=2 took=16.53µs +ts=2025-05-22T09:58:56Z caller=logging.go:85 method=Health result=2 took=41.709µs +ts=2025-05-22T09:58:56Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T09:58:59Z caller=logging.go:85 method=Health result=2 took=45.699µs +ts=2025-05-22T09:58:59Z caller=logging.go:85 method=Health result=2 took=45.249µs +ts=2025-05-22T09:59:02Z caller=logging.go:85 method=Health result=2 took=42.389µs +ts=2025-05-22T09:59:02Z caller=logging.go:85 method=Health result=2 took=41.849µs +ts=2025-05-22T09:59:05Z caller=logging.go:85 method=Health result=2 took=31.199µs +ts=2025-05-22T09:59:05Z caller=logging.go:85 method=Health result=2 took=16.849µs +ts=2025-05-22T09:59:08Z caller=logging.go:85 method=Health result=2 took=31.529µs +ts=2025-05-22T09:59:08Z caller=logging.go:85 method=Health result=2 took=33.379µs +ts=2025-05-22T09:59:11Z caller=logging.go:85 method=Health result=2 took=32.119µs +ts=2025-05-22T09:59:11Z caller=logging.go:85 method=Health result=2 took=33.949µs +ts=2025-05-22T09:59:14Z caller=logging.go:85 method=Health result=2 took=30.989µs +ts=2025-05-22T09:59:14Z caller=logging.go:85 method=Health result=2 took=56.038µs +ts=2025-05-22T09:59:17Z caller=logging.go:85 method=Health result=2 took=42.149µs +ts=2025-05-22T09:59:17Z caller=logging.go:85 method=Health result=2 took=24.399µs +ts=2025-05-22T09:59:20Z caller=logging.go:85 method=Health result=2 took=28.419µs +ts=2025-05-22T09:59:20Z caller=logging.go:85 method=Health result=2 took=28.459µs +ts=2025-05-22T09:59:23Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T09:59:23Z caller=logging.go:85 method=Health result=2 took=38.179µs +ts=2025-05-22T09:59:26Z caller=logging.go:85 method=Health result=2 took=38.059µs +ts=2025-05-22T09:59:26Z caller=logging.go:85 method=Health result=2 took=43.498µs +ts=2025-05-22T09:59:29Z caller=logging.go:85 method=Health result=2 took=43.489µs +ts=2025-05-22T09:59:29Z caller=logging.go:85 method=Health result=2 took=46.728µs +ts=2025-05-22T09:59:32Z caller=logging.go:85 method=Health result=2 took=39.539µs +ts=2025-05-22T09:59:32Z caller=logging.go:85 method=Health result=2 took=25.389µs +ts=2025-05-22T09:59:35Z caller=logging.go:85 method=Health result=2 took=40.039µs +ts=2025-05-22T09:59:35Z caller=logging.go:85 method=Health result=2 took=39.099µs +ts=2025-05-22T09:59:38Z caller=logging.go:85 method=Health result=2 took=37.31µs +ts=2025-05-22T09:59:38Z caller=logging.go:85 method=Health result=2 took=37.09µs +ts=2025-05-22T09:59:41Z caller=logging.go:85 method=Health result=2 took=42.139µs +ts=2025-05-22T09:59:41Z caller=logging.go:85 method=Health result=2 took=17.81µs +ts=2025-05-22T09:59:44Z caller=logging.go:85 method=Health result=2 took=43.468µs +ts=2025-05-22T09:59:44Z caller=logging.go:85 method=Health result=2 took=29.729µs +ts=2025-05-22T09:59:47Z caller=logging.go:85 method=Health result=2 took=43.799µs +ts=2025-05-22T09:59:47Z caller=logging.go:85 method=Health result=2 took=49.038µs +ts=2025-05-22T09:59:50Z caller=logging.go:85 method=Health result=2 took=37.919µs +ts=2025-05-22T09:59:50Z caller=logging.go:85 method=Health result=2 took=45.369µs +ts=2025-05-22T09:59:53Z caller=logging.go:85 method=Health result=2 took=29.32µs +ts=2025-05-22T09:59:53Z caller=logging.go:85 method=Health result=2 took=29.38µs +ts=2025-05-22T09:59:56Z caller=logging.go:85 method=Health result=2 took=29.18µs +ts=2025-05-22T09:59:56Z caller=logging.go:85 method=Health result=2 took=28.84µs +ts=2025-05-22T09:59:59Z caller=logging.go:85 method=Health result=2 took=31.129µs +ts=2025-05-22T09:59:59Z caller=logging.go:85 method=Health result=2 took=15.45µs +ts=2025-05-22T10:00:02Z caller=logging.go:85 method=Health result=2 took=31.959µs +ts=2025-05-22T10:00:02Z caller=logging.go:85 method=Health result=2 took=44.719µs +ts=2025-05-22T10:00:05Z caller=logging.go:85 method=Health result=2 took=38.119µs +ts=2025-05-22T10:00:05Z caller=logging.go:85 method=Health result=2 took=23.2µs +ts=2025-05-22T10:00:08Z caller=logging.go:85 method=Health result=2 took=53.309µs +ts=2025-05-22T10:00:08Z caller=logging.go:85 method=Health result=2 took=53.749µs +ts=2025-05-22T10:00:11Z caller=logging.go:85 method=Health result=2 took=41.109µs +ts=2025-05-22T10:00:11Z caller=logging.go:85 method=Health result=2 took=27.269µs +ts=2025-05-22T10:00:14Z caller=logging.go:85 method=Health result=2 took=32.509µs +ts=2025-05-22T10:00:14Z caller=logging.go:85 method=Health result=2 took=12.78µs +ts=2025-05-22T10:00:17Z caller=logging.go:85 method=Health result=2 took=30.099µs +ts=2025-05-22T10:00:17Z caller=logging.go:85 method=Health result=2 took=29.769µs +ts=2025-05-22T10:00:20Z caller=logging.go:85 method=Health result=2 took=42.249µs +ts=2025-05-22T10:00:20Z caller=logging.go:85 method=Health result=2 took=44.519µs +ts=2025-05-22T10:00:23Z caller=logging.go:85 method=Health result=2 took=39.86µs +ts=2025-05-22T10:00:23Z caller=logging.go:85 method=Health result=2 took=29.83µs +ts=2025-05-22T10:00:26Z caller=logging.go:85 method=Health result=2 took=36.209µs +ts=2025-05-22T10:00:26Z caller=logging.go:85 method=Health result=2 took=34.789µs +ts=2025-05-22T10:00:29Z caller=logging.go:85 method=Health result=2 took=40.889µs +ts=2025-05-22T10:00:29Z caller=logging.go:85 method=Health result=2 took=46.329µs +ts=2025-05-22T10:00:32Z caller=logging.go:85 method=Health result=2 took=38.829µs +ts=2025-05-22T10:00:32Z caller=logging.go:85 method=Health result=2 took=37.839µs +ts=2025-05-22T10:00:35Z caller=logging.go:85 method=Health result=2 took=28.859µs +ts=2025-05-22T10:00:35Z caller=logging.go:85 method=Health result=2 took=28.839µs +ts=2025-05-22T10:00:38Z caller=logging.go:85 method=Health result=2 took=39.809µs +ts=2025-05-22T10:00:38Z caller=logging.go:85 method=Health result=2 took=23.64µs +ts=2025-05-22T10:00:41Z caller=logging.go:85 method=Health result=2 took=36.019µs +ts=2025-05-22T10:00:41Z caller=logging.go:85 method=Health result=2 took=36.029µs +ts=2025-05-22T10:00:44Z caller=logging.go:85 method=Health result=2 took=29.009µs +ts=2025-05-22T10:00:44Z caller=logging.go:85 method=Health result=2 took=205.555µs +ts=2025-05-22T10:00:47Z caller=logging.go:85 method=Health result=2 took=31.749µs +ts=2025-05-22T10:00:47Z caller=logging.go:85 method=Health result=2 took=28.699µs +ts=2025-05-22T10:00:50Z caller=logging.go:85 method=Health result=2 took=34.209µs +ts=2025-05-22T10:00:50Z caller=logging.go:85 method=Health result=2 took=44.999µs +ts=2025-05-22T10:00:53Z caller=logging.go:85 method=Health result=2 took=31.269µs +ts=2025-05-22T10:00:53Z caller=logging.go:85 method=Health result=2 took=34.109µs +ts=2025-05-22T10:00:56Z caller=logging.go:85 method=Health result=2 took=28.51µs +ts=2025-05-22T10:00:56Z caller=logging.go:85 method=Health result=2 took=44.289µs +ts=2025-05-22T10:00:59Z caller=logging.go:85 method=Health result=2 took=32.649µs +ts=2025-05-22T10:00:59Z caller=logging.go:85 method=Health result=2 took=14.659µs +ts=2025-05-22T10:01:02Z caller=logging.go:85 method=Health result=2 took=41.189µs +ts=2025-05-22T10:01:02Z caller=logging.go:85 method=Health result=2 took=37.169µs +ts=2025-05-22T10:01:05Z caller=logging.go:85 method=Health result=2 took=42.569µs +ts=2025-05-22T10:01:05Z caller=logging.go:85 method=Health result=2 took=29.89µs +ts=2025-05-22T10:01:08Z caller=logging.go:85 method=Health result=2 took=32.329µs +ts=2025-05-22T10:01:08Z caller=logging.go:85 method=Health result=2 took=45.429µs +ts=2025-05-22T10:01:11Z caller=logging.go:85 method=Health result=2 took=41.149µs +ts=2025-05-22T10:01:11Z caller=logging.go:85 method=Health result=2 took=40.089µs +ts=2025-05-22T10:01:14Z caller=logging.go:85 method=Health result=2 took=14.64µs +ts=2025-05-22T10:01:14Z caller=logging.go:85 method=Health result=2 took=28.709µs +ts=2025-05-22T10:01:17Z caller=logging.go:85 method=Health result=2 took=28.51µs +ts=2025-05-22T10:01:17Z caller=logging.go:85 method=Health result=2 took=10.59µs +ts=2025-05-22T10:01:20Z caller=logging.go:85 method=Health result=2 took=36.259µs +ts=2025-05-22T10:01:20Z caller=logging.go:85 method=Health result=2 took=36.329µs +ts=2025-05-22T10:01:23Z caller=logging.go:85 method=Health result=2 took=35.399µs +ts=2025-05-22T10:01:23Z caller=logging.go:85 method=Health result=2 took=35.999µs +ts=2025-05-22T10:01:26Z caller=logging.go:85 method=Health result=2 took=28.409µs +ts=2025-05-22T10:01:26Z caller=logging.go:85 method=Health result=2 took=28.399µs +ts=2025-05-22T10:01:29Z caller=logging.go:85 method=Health result=2 took=61.788µs +ts=2025-05-22T10:01:29Z caller=logging.go:85 method=Health result=2 took=28.56µs +ts=2025-05-22T10:01:32Z caller=logging.go:85 method=Health result=2 took=44.899µs +ts=2025-05-22T10:01:32Z caller=logging.go:85 method=Health result=2 took=44.609µs +ts=2025-05-22T10:01:35Z caller=logging.go:85 method=Health result=2 took=42.099µs +ts=2025-05-22T10:01:35Z caller=logging.go:85 method=Health result=2 took=15.88µs +ts=2025-05-22T10:01:38Z caller=logging.go:85 method=Health result=2 took=40.099µs +ts=2025-05-22T10:01:38Z caller=logging.go:85 method=Health result=2 took=17.799µs +ts=2025-05-22T10:01:41Z caller=logging.go:85 method=Health result=2 took=45.779µs +ts=2025-05-22T10:01:41Z caller=logging.go:85 method=Health result=2 took=49.619µs +ts=2025-05-22T10:01:44Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T10:01:44Z caller=logging.go:85 method=Health result=2 took=27.709µs +ts=2025-05-22T10:01:47Z caller=logging.go:85 method=Health result=2 took=39.84µs +ts=2025-05-22T10:01:47Z caller=logging.go:85 method=Health result=2 took=27.519µs +ts=2025-05-22T10:01:50Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T10:01:50Z caller=logging.go:85 method=Health result=2 took=64.468µs +ts=2025-05-22T10:01:53Z caller=logging.go:85 method=Health result=2 took=29.389µs +ts=2025-05-22T10:01:53Z caller=logging.go:85 method=Health result=2 took=29.389µs +ts=2025-05-22T10:01:56Z caller=logging.go:85 method=Health result=2 took=31.859µs +ts=2025-05-22T10:01:56Z caller=logging.go:85 method=Health result=2 took=44.809µs +ts=2025-05-22T10:01:59Z caller=logging.go:85 method=Health result=2 took=39.869µs +ts=2025-05-22T10:01:59Z caller=logging.go:85 method=Health result=2 took=40.339µs +ts=2025-05-22T10:02:02Z caller=logging.go:85 method=Health result=2 took=44.539µs +ts=2025-05-22T10:02:02Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T10:02:05Z caller=logging.go:85 method=Health result=2 took=36.489µs +ts=2025-05-22T10:02:05Z caller=logging.go:85 method=Health result=2 took=39.759µs +ts=2025-05-22T10:02:08Z caller=logging.go:85 method=Health result=2 took=32.639µs +ts=2025-05-22T10:02:08Z caller=logging.go:85 method=Health result=2 took=43.408µs +ts=2025-05-22T10:02:11Z caller=logging.go:85 method=Health result=2 took=38.019µs +ts=2025-05-22T10:02:11Z caller=logging.go:85 method=Health result=2 took=57.029µs +ts=2025-05-22T10:02:14Z caller=logging.go:85 method=Health result=2 took=44.339µs +ts=2025-05-22T10:02:14Z caller=logging.go:85 method=Health result=2 took=30.629µs +ts=2025-05-22T10:02:17Z caller=logging.go:85 method=Health result=2 took=149.486µs +ts=2025-05-22T10:02:17Z caller=logging.go:85 method=Health result=2 took=44.599µs +ts=2025-05-22T10:02:20Z caller=logging.go:85 method=Health result=2 took=38.199µs +ts=2025-05-22T10:02:20Z caller=logging.go:85 method=Health result=2 took=46.409µs +ts=2025-05-22T10:02:23Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T10:02:23Z caller=logging.go:85 method=Health result=2 took=42.649µs +ts=2025-05-22T10:02:26Z caller=logging.go:85 method=Health result=2 took=42.949µs +ts=2025-05-22T10:02:26Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T10:02:29Z caller=logging.go:85 method=Health result=2 took=32.689µs +ts=2025-05-22T10:02:29Z caller=logging.go:85 method=Health result=2 took=44.849µs +ts=2025-05-22T10:02:32Z caller=logging.go:85 method=Health result=2 took=32.709µs +ts=2025-05-22T10:02:32Z caller=logging.go:85 method=Health result=2 took=43.629µs +ts=2025-05-22T10:02:35Z caller=logging.go:85 method=Health result=2 took=42.749µs +ts=2025-05-22T10:02:35Z caller=logging.go:85 method=Health result=2 took=47.879µs +ts=2025-05-22T10:02:38Z caller=logging.go:85 method=Health result=2 took=36.009µs +ts=2025-05-22T10:02:38Z caller=logging.go:85 method=Health result=2 took=27.259µs +ts=2025-05-22T10:02:41Z caller=logging.go:85 method=Health result=2 took=28.49µs +ts=2025-05-22T10:02:41Z caller=logging.go:85 method=Health result=2 took=35.959µs +ts=2025-05-22T10:02:44Z caller=logging.go:85 method=Health result=2 took=40.559µs +ts=2025-05-22T10:02:44Z caller=logging.go:85 method=Health result=2 took=40.519µs +ts=2025-05-22T10:02:47Z caller=logging.go:85 method=Health result=2 took=38.72µs +ts=2025-05-22T10:02:47Z caller=logging.go:85 method=Health result=2 took=35.469µs +ts=2025-05-22T10:02:50Z caller=logging.go:85 method=Health result=2 took=33.85µs +ts=2025-05-22T10:02:50Z caller=logging.go:85 method=Health result=2 took=33.69µs +ts=2025-05-22T10:02:53Z caller=logging.go:85 method=Health result=2 took=40.279µs +ts=2025-05-22T10:02:53Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T10:02:56Z caller=logging.go:85 method=Health result=2 took=36.659µs +ts=2025-05-22T10:02:56Z caller=logging.go:85 method=Health result=2 took=36.219µs +ts=2025-05-22T10:02:59Z caller=logging.go:85 method=Health result=2 took=45.949µs +ts=2025-05-22T10:02:59Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T10:03:02Z caller=logging.go:85 method=Health result=2 took=52.689µs +ts=2025-05-22T10:03:02Z caller=logging.go:85 method=Health result=2 took=52.629µs +ts=2025-05-22T10:03:05Z caller=logging.go:85 method=Health result=2 took=37.35µs +ts=2025-05-22T10:03:05Z caller=logging.go:85 method=Health result=2 took=37.05µs +ts=2025-05-22T10:03:08Z caller=logging.go:85 method=Health result=2 took=46.479µs +ts=2025-05-22T10:03:08Z caller=logging.go:85 method=Health result=2 took=35.85µs +ts=2025-05-22T10:03:11Z caller=logging.go:85 method=Health result=2 took=26.409µs +ts=2025-05-22T10:03:11Z caller=logging.go:85 method=Health result=2 took=15.709µs +ts=2025-05-22T10:03:14Z caller=logging.go:85 method=Health result=2 took=51.759µs +ts=2025-05-22T10:03:14Z caller=logging.go:85 method=Health result=2 took=51.709µs +ts=2025-05-22T10:03:17Z caller=logging.go:85 method=Health result=2 took=31.119µs +ts=2025-05-22T10:03:17Z caller=logging.go:85 method=Health result=2 took=43.538µs +ts=2025-05-22T10:03:20Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T10:03:20Z caller=logging.go:85 method=Health result=2 took=43.689µs +ts=2025-05-22T10:03:23Z caller=logging.go:85 method=Health result=2 took=39.679µs +ts=2025-05-22T10:03:23Z caller=logging.go:85 method=Health result=2 took=39.949µs +ts=2025-05-22T10:03:26Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T10:03:26Z caller=logging.go:85 method=Health result=2 took=45.889µs +ts=2025-05-22T10:03:29Z caller=logging.go:85 method=Health result=2 took=38.889µs +ts=2025-05-22T10:03:29Z caller=logging.go:85 method=Health result=2 took=45.239µs +ts=2025-05-22T10:03:32Z caller=logging.go:85 method=Health result=2 took=40.189µs +ts=2025-05-22T10:03:32Z caller=logging.go:85 method=Health result=2 took=27.689µs +ts=2025-05-22T10:03:35Z caller=logging.go:85 method=Health result=2 took=39.819µs +ts=2025-05-22T10:03:35Z caller=logging.go:85 method=Health result=2 took=35.939µs +ts=2025-05-22T10:03:38Z caller=logging.go:85 method=Health result=2 took=41.299µs +ts=2025-05-22T10:03:38Z caller=logging.go:85 method=Health result=2 took=47.039µs +ts=2025-05-22T10:03:41Z caller=logging.go:85 method=Health result=2 took=26.54µs +ts=2025-05-22T10:03:41Z caller=logging.go:85 method=Health result=2 took=14.82µs +ts=2025-05-22T10:03:44Z caller=logging.go:85 method=Health result=2 took=41.809µs +ts=2025-05-22T10:03:44Z caller=logging.go:85 method=Health result=2 took=29.81µs +ts=2025-05-22T10:03:47Z caller=logging.go:85 method=Health result=2 took=28.239µs +ts=2025-05-22T10:03:47Z caller=logging.go:85 method=Health result=2 took=28.229µs +ts=2025-05-22T10:03:50Z caller=logging.go:85 method=Health result=2 took=30.049µs +ts=2025-05-22T10:03:50Z caller=logging.go:85 method=Health result=2 took=55.039µs +ts=2025-05-22T10:03:53Z caller=logging.go:85 method=Health result=2 took=30.449µs +ts=2025-05-22T10:03:53Z caller=logging.go:85 method=Health result=2 took=18.96µs +ts=2025-05-22T10:03:56Z caller=logging.go:85 method=Health result=2 took=30.349µs +ts=2025-05-22T10:03:56Z caller=logging.go:85 method=Health result=2 took=33.65µs +ts=2025-05-22T10:03:59Z caller=logging.go:85 method=Health result=2 took=29.879µs +ts=2025-05-22T10:03:59Z caller=logging.go:85 method=Health result=2 took=11.89µs +ts=2025-05-22T10:04:02Z caller=logging.go:85 method=Health result=2 took=35.209µs +ts=2025-05-22T10:04:02Z caller=logging.go:85 method=Health result=2 took=24.25µs +ts=2025-05-22T10:04:05Z caller=logging.go:85 method=Health result=2 took=40.429µs +ts=2025-05-22T10:04:05Z caller=logging.go:85 method=Health result=2 took=44.619µs +ts=2025-05-22T10:04:08Z caller=logging.go:85 method=Health result=2 took=31.299µs +ts=2025-05-22T10:04:08Z caller=logging.go:85 method=Health result=2 took=13.48µs +ts=2025-05-22T10:04:11Z caller=logging.go:85 method=Health result=2 took=36.049µs +ts=2025-05-22T10:04:11Z caller=logging.go:85 method=Health result=2 took=35.829µs +ts=2025-05-22T10:04:14Z caller=logging.go:85 method=Health result=2 took=37.289µs +ts=2025-05-22T10:04:14Z caller=logging.go:85 method=Health result=2 took=24.339µs +ts=2025-05-22T10:04:18Z caller=logging.go:85 method=Health result=2 took=74.618µs +ts=2025-05-22T10:04:18Z caller=logging.go:85 method=Health result=2 took=57.448µs +ts=2025-05-22T10:04:20Z caller=logging.go:85 method=Health result=2 took=43.569µs +ts=2025-05-22T10:04:20Z caller=logging.go:85 method=Health result=2 took=40.679µs +ts=2025-05-22T10:04:23Z caller=logging.go:85 method=Health result=2 took=30.489µs +ts=2025-05-22T10:04:23Z caller=logging.go:85 method=Health result=2 took=30.309µs +ts=2025-05-22T10:04:27Z caller=logging.go:85 method=Health result=2 took=31.349µs +ts=2025-05-22T10:04:27Z caller=logging.go:85 method=Health result=2 took=47.599µs +ts=2025-05-22T10:04:30Z caller=logging.go:85 method=Health result=2 took=45.959µs +ts=2025-05-22T10:04:30Z caller=logging.go:85 method=Health result=2 took=45.409µs +ts=2025-05-22T10:04:32Z caller=logging.go:85 method=Health result=2 took=30.189µs +ts=2025-05-22T10:04:32Z caller=logging.go:85 method=Health result=2 took=55.069µs +ts=2025-05-22T10:04:36Z caller=logging.go:85 method=Health result=2 took=30.909µs +ts=2025-05-22T10:04:36Z caller=logging.go:85 method=Health result=2 took=33.149µs +ts=2025-05-22T10:04:39Z caller=logging.go:85 method=Health result=2 took=40.289µs +ts=2025-05-22T10:04:39Z caller=logging.go:85 method=Health result=2 took=39.77µs +ts=2025-05-22T10:04:41Z caller=logging.go:85 method=Health result=2 took=27.319µs +ts=2025-05-22T10:04:42Z caller=logging.go:85 method=Health result=2 took=69.768µs +ts=2025-05-22T10:04:45Z caller=logging.go:85 method=Health result=2 took=30.719µs +ts=2025-05-22T10:04:45Z caller=logging.go:85 method=Health result=2 took=55.529µs +ts=2025-05-22T10:04:48Z caller=logging.go:85 method=Health result=2 took=58.849µs +ts=2025-05-22T10:04:48Z caller=logging.go:85 method=Health result=2 took=57.369µs +ts=2025-05-22T10:04:51Z caller=logging.go:85 method=Health result=2 took=39.719µs +ts=2025-05-22T10:04:51Z caller=logging.go:85 method=Health result=2 took=37.679µs +ts=2025-05-22T10:04:54Z caller=logging.go:85 method=Health result=2 took=30.599µs +ts=2025-05-22T10:04:54Z caller=logging.go:85 method=Health result=2 took=30.669µs +ts=2025-05-22T10:04:57Z caller=logging.go:85 method=Health result=2 took=41.949µs +ts=2025-05-22T10:04:57Z caller=logging.go:85 method=Health result=2 took=21.869µs +ts=2025-05-22T10:05:00Z caller=logging.go:85 method=Health result=2 took=15.419µs +ts=2025-05-22T10:05:00Z caller=logging.go:85 method=Health result=2 took=30.319µs +ts=2025-05-22T10:05:03Z caller=logging.go:85 method=Health result=2 took=31.349µs +ts=2025-05-22T10:05:03Z caller=logging.go:85 method=Health result=2 took=51.889µs +ts=2025-05-22T10:05:06Z caller=logging.go:85 method=Health result=2 took=29.929µs +ts=2025-05-22T10:05:06Z caller=logging.go:85 method=Health result=2 took=10.839µs +ts=2025-05-22T10:05:09Z caller=logging.go:85 method=Health result=2 took=39.299µs +ts=2025-05-22T10:05:09Z caller=logging.go:85 method=Health result=2 took=22.849µs +ts=2025-05-22T10:05:12Z caller=logging.go:85 method=Health result=2 took=40.849µs +ts=2025-05-22T10:05:12Z caller=logging.go:85 method=Health result=2 took=59.329µs +ts=2025-05-22T10:05:15Z caller=logging.go:85 method=Health result=2 took=42.629µs +ts=2025-05-22T10:05:15Z caller=logging.go:85 method=Health result=2 took=41.339µs +ts=2025-05-22T10:05:18Z caller=logging.go:85 method=Health result=2 took=30.769µs +ts=2025-05-22T10:05:18Z caller=logging.go:85 method=Health result=2 took=18.529µs +ts=2025-05-22T10:05:21Z caller=logging.go:85 method=Health result=2 took=47.559µs +ts=2025-05-22T10:05:21Z caller=logging.go:85 method=Health result=2 took=45.688µs +ts=2025-05-22T10:05:24Z caller=logging.go:85 method=Health result=2 took=38.159µs +ts=2025-05-22T10:05:24Z caller=logging.go:85 method=Health result=2 took=23.619µs +ts=2025-05-22T10:05:27Z caller=logging.go:85 method=Health result=2 took=37.479µs +ts=2025-05-22T10:05:27Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T10:05:30Z caller=logging.go:85 method=Health result=2 took=30.719µs +ts=2025-05-22T10:05:30Z caller=logging.go:85 method=Health result=2 took=13.68µs +ts=2025-05-22T10:05:33Z caller=logging.go:85 method=Health result=2 took=30.009µs +ts=2025-05-22T10:05:33Z caller=logging.go:85 method=Health result=2 took=42.049µs +ts=2025-05-22T10:05:36Z caller=logging.go:85 method=Health result=2 took=40.079µs +ts=2025-05-22T10:05:36Z caller=logging.go:85 method=Health result=2 took=41.019µs +ts=2025-05-22T10:05:39Z caller=logging.go:85 method=Health result=2 took=38.769µs +ts=2025-05-22T10:05:39Z caller=logging.go:85 method=Health result=2 took=15.179µs +ts=2025-05-22T10:05:42Z caller=logging.go:85 method=Health result=2 took=38.239µs +ts=2025-05-22T10:05:42Z caller=logging.go:85 method=Health result=2 took=37.629µs +ts=2025-05-22T10:05:45Z caller=logging.go:85 method=Health result=2 took=42.849µs +ts=2025-05-22T10:05:45Z caller=logging.go:85 method=Health result=2 took=57.969µs +ts=2025-05-22T10:05:48Z caller=logging.go:85 method=Health result=2 took=30.439µs +ts=2025-05-22T10:05:48Z caller=logging.go:85 method=Health result=2 took=30.399µs +ts=2025-05-22T10:05:51Z caller=logging.go:85 method=Health result=2 took=36.299µs +ts=2025-05-22T10:05:51Z caller=logging.go:85 method=Health result=2 took=36.239µs +ts=2025-05-22T10:05:54Z caller=logging.go:85 method=Health result=2 took=30.809µs +ts=2025-05-22T10:05:54Z caller=logging.go:85 method=Health result=2 took=37.939µs +ts=2025-05-22T10:05:57Z caller=logging.go:85 method=Health result=2 took=36.709µs +ts=2025-05-22T10:05:57Z caller=logging.go:85 method=Health result=2 took=36.519µs +ts=2025-05-22T10:06:00Z caller=logging.go:85 method=Health result=2 took=37.199µs +ts=2025-05-22T10:06:00Z caller=logging.go:85 method=Health result=2 took=37.179µs +ts=2025-05-22T10:06:03Z caller=logging.go:85 method=Health result=2 took=41.259µs +ts=2025-05-22T10:06:03Z caller=logging.go:85 method=Health result=2 took=24.21µs +ts=2025-05-22T10:06:06Z caller=logging.go:85 method=Health result=2 took=30.02µs +ts=2025-05-22T10:06:06Z caller=logging.go:85 method=Health result=2 took=15.02µs +ts=2025-05-22T10:06:09Z caller=logging.go:85 method=Health result=2 took=42.079µs +ts=2025-05-22T10:06:09Z caller=logging.go:85 method=Health result=2 took=31.709µs +ts=2025-05-22T10:06:12Z caller=logging.go:85 method=Health result=2 took=40.729µs +ts=2025-05-22T10:06:12Z caller=logging.go:85 method=Health result=2 took=41.509µs +ts=2025-05-22T10:06:15Z caller=logging.go:85 method=Health result=2 took=49.619µs +ts=2025-05-22T10:06:15Z caller=logging.go:85 method=Health result=2 took=48.759µs +ts=2025-05-22T10:06:18Z caller=logging.go:85 method=Health result=2 took=1.049065ms +ts=2025-05-22T10:06:18Z caller=logging.go:85 method=Health result=2 took=1.056524ms +ts=2025-05-22T10:06:21Z caller=logging.go:85 method=Health result=2 took=31.729µs +ts=2025-05-22T10:06:21Z caller=logging.go:85 method=Health result=2 took=34.039µs +ts=2025-05-22T10:06:24Z caller=logging.go:85 method=Health result=2 took=30.76µs +ts=2025-05-22T10:06:24Z caller=logging.go:85 method=Health result=2 took=44.259µs +ts=2025-05-22T10:06:27Z caller=logging.go:85 method=Health result=2 took=39.929µs +ts=2025-05-22T10:06:27Z caller=logging.go:85 method=Health result=2 took=56.578µs +ts=2025-05-22T10:06:30Z caller=logging.go:85 method=Health result=2 took=40.799µs +ts=2025-05-22T10:06:30Z caller=logging.go:85 method=Health result=2 took=40.909µs +ts=2025-05-22T10:06:33Z caller=logging.go:85 method=Health result=2 took=30.039µs +ts=2025-05-22T10:06:33Z caller=logging.go:85 method=Health result=2 took=15.87µs +ts=2025-05-22T10:06:36Z caller=logging.go:85 method=Health result=2 took=30.68µs +ts=2025-05-22T10:06:36Z caller=logging.go:85 method=Health result=2 took=47.608µs +ts=2025-05-22T10:06:39Z caller=logging.go:85 method=Health result=2 took=28.699µs +ts=2025-05-22T10:06:39Z caller=logging.go:85 method=Health result=2 took=16.73µs +ts=2025-05-22T10:06:42Z caller=logging.go:85 method=Health result=2 took=29.029µs +ts=2025-05-22T10:06:42Z caller=logging.go:85 method=Health result=2 took=33.369µs +ts=2025-05-22T10:06:45Z caller=logging.go:85 method=Health result=2 took=29.559µs +ts=2025-05-22T10:06:45Z caller=logging.go:85 method=Health result=2 took=54.148µs +ts=2025-05-22T10:06:48Z caller=logging.go:85 method=Health result=2 took=42.229µs +ts=2025-05-22T10:06:48Z caller=logging.go:85 method=Health result=2 took=46.529µs +ts=2025-05-22T10:06:51Z caller=logging.go:85 method=Health result=2 took=29.809µs +ts=2025-05-22T10:06:51Z caller=logging.go:85 method=Health result=2 took=47.869µs +ts=2025-05-22T10:06:54Z caller=logging.go:85 method=Health result=2 took=38.659µs +ts=2025-05-22T10:06:54Z caller=logging.go:85 method=Health result=2 took=37.38µs +ts=2025-05-22T10:06:57Z caller=logging.go:85 method=Health result=2 took=43.429µs +ts=2025-05-22T10:06:57Z caller=logging.go:85 method=Health result=2 took=47.938µs +ts=2025-05-22T10:07:00Z caller=logging.go:85 method=Health result=2 took=28.68µs +ts=2025-05-22T10:07:00Z caller=logging.go:85 method=Health result=2 took=28.7µs +ts=2025-05-22T10:07:03Z caller=logging.go:85 method=Health result=2 took=43.069µs +ts=2025-05-22T10:07:03Z caller=logging.go:85 method=Health result=2 took=44.389µs +ts=2025-05-22T10:07:06Z caller=logging.go:85 method=Health result=2 took=38.519µs +ts=2025-05-22T10:07:06Z caller=logging.go:85 method=Health result=2 took=37.639µs +ts=2025-05-22T10:07:09Z caller=logging.go:85 method=Health result=2 took=43.909µs +ts=2025-05-22T10:07:09Z caller=logging.go:85 method=Health result=2 took=44.799µs +ts=2025-05-22T10:07:12Z caller=logging.go:85 method=Health result=2 took=41.009µs +ts=2025-05-22T10:07:12Z caller=logging.go:85 method=Health result=2 took=50.128µs +ts=2025-05-22T10:07:15Z caller=logging.go:85 method=Health result=2 took=35.569µs +ts=2025-05-22T10:07:15Z caller=logging.go:85 method=Health result=2 took=35.509µs +ts=2025-05-22T10:07:18Z caller=logging.go:85 method=Health result=2 took=31.329µs +ts=2025-05-22T10:07:18Z caller=logging.go:85 method=Health result=2 took=48.659µs +ts=2025-05-22T10:07:21Z caller=logging.go:85 method=Health result=2 took=41.469µs +ts=2025-05-22T10:07:21Z caller=logging.go:85 method=Health result=2 took=40.629µs +ts=2025-05-22T10:07:24Z caller=logging.go:85 method=Health result=2 took=53.099µs +ts=2025-05-22T10:07:24Z caller=logging.go:85 method=Health result=2 took=53.099µs +ts=2025-05-22T10:07:27Z caller=logging.go:85 method=Health result=2 took=37.609µs +ts=2025-05-22T10:07:27Z caller=logging.go:85 method=Health result=2 took=43.618µs +ts=2025-05-22T10:07:30Z caller=logging.go:85 method=Health result=2 took=30.959µs +ts=2025-05-22T10:07:30Z caller=logging.go:85 method=Health result=2 took=32.389µs +ts=2025-05-22T10:07:33Z caller=logging.go:85 method=Health result=2 took=15.55µs +ts=2025-05-22T10:07:33Z caller=logging.go:85 method=Health result=2 took=28.489µs +ts=2025-05-22T10:07:36Z caller=logging.go:85 method=Health result=2 took=27.21µs +ts=2025-05-22T10:07:36Z caller=logging.go:85 method=Health result=2 took=28.44µs +ts=2025-05-22T10:07:39Z caller=logging.go:85 method=Health result=2 took=30.599µs +ts=2025-05-22T10:07:39Z caller=logging.go:85 method=Health result=2 took=29.879µs +ts=2025-05-22T10:07:42Z caller=logging.go:85 method=Health result=2 took=31.21µs +ts=2025-05-22T10:07:42Z caller=logging.go:85 method=Health result=2 took=57.458µs +ts=2025-05-22T10:07:45Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T10:07:45Z caller=logging.go:85 method=Health result=2 took=48.719µs +ts=2025-05-22T10:07:48Z caller=logging.go:85 method=Health result=2 took=39.819µs +ts=2025-05-22T10:07:48Z caller=logging.go:85 method=Health result=2 took=39.309µs +ts=2025-05-22T10:07:51Z caller=logging.go:85 method=Health result=2 took=43.499µs +ts=2025-05-22T10:07:51Z caller=logging.go:85 method=Health result=2 took=40.459µs +ts=2025-05-22T10:07:54Z caller=logging.go:85 method=Health result=2 took=29.94µs +ts=2025-05-22T10:07:54Z caller=logging.go:85 method=Health result=2 took=29.019µs +ts=2025-05-22T10:07:57Z caller=logging.go:85 method=Health result=2 took=41.589µs +ts=2025-05-22T10:07:57Z caller=logging.go:85 method=Health result=2 took=48.629µs +ts=2025-05-22T10:08:00Z caller=logging.go:85 method=Health result=2 took=42.719µs +ts=2025-05-22T10:08:00Z caller=logging.go:85 method=Health result=2 took=46.438µs +ts=2025-05-22T10:08:03Z caller=logging.go:85 method=Health result=2 took=43.759µs +ts=2025-05-22T10:08:03Z caller=logging.go:85 method=Health result=2 took=46.108µs +ts=2025-05-22T10:08:06Z caller=logging.go:85 method=Health result=2 took=43.169µs +ts=2025-05-22T10:08:06Z caller=logging.go:85 method=Health result=2 took=45.899µs +ts=2025-05-22T10:08:09Z caller=logging.go:85 method=Health result=2 took=36.639µs +ts=2025-05-22T10:08:09Z caller=logging.go:85 method=Health result=2 took=36.919µs +ts=2025-05-22T10:08:12Z caller=logging.go:85 method=Health result=2 took=30.4µs +ts=2025-05-22T10:08:12Z caller=logging.go:85 method=Health result=2 took=17.78µs +ts=2025-05-22T10:08:15Z caller=logging.go:85 method=Health result=2 took=28.51µs +ts=2025-05-22T10:08:15Z caller=logging.go:85 method=Health result=2 took=28.53µs +ts=2025-05-22T10:08:18Z caller=logging.go:85 method=Health result=2 took=49.569µs +ts=2025-05-22T10:08:18Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T10:08:21Z caller=logging.go:85 method=Health result=2 took=39.629µs +ts=2025-05-22T10:08:21Z caller=logging.go:85 method=Health result=2 took=45.729µs +ts=2025-05-22T10:08:24Z caller=logging.go:85 method=Health result=2 took=52.349µs +ts=2025-05-22T10:08:24Z caller=logging.go:85 method=Health result=2 took=79.558µs +ts=2025-05-22T10:08:27Z caller=logging.go:85 method=Health result=2 took=42.309µs +ts=2025-05-22T10:08:27Z caller=logging.go:85 method=Health result=2 took=48.489µs +ts=2025-05-22T10:08:30Z caller=logging.go:85 method=Health result=2 took=43.129µs +ts=2025-05-22T10:08:30Z caller=logging.go:85 method=Health result=2 took=89.898µs +ts=2025-05-22T10:08:33Z caller=logging.go:85 method=Health result=2 took=43.209µs +ts=2025-05-22T10:08:33Z caller=logging.go:85 method=Health result=2 took=37.779µs +ts=2025-05-22T10:08:36Z caller=logging.go:85 method=Health result=2 took=40.249µs +ts=2025-05-22T10:08:36Z caller=logging.go:85 method=Health result=2 took=40.229µs +ts=2025-05-22T10:08:39Z caller=logging.go:85 method=Health result=2 took=35.999µs +ts=2025-05-22T10:08:39Z caller=logging.go:85 method=Health result=2 took=42.009µs +ts=2025-05-22T10:08:42Z caller=logging.go:85 method=Health result=2 took=40.829µs +ts=2025-05-22T10:08:42Z caller=logging.go:85 method=Health result=2 took=40.169µs +ts=2025-05-22T10:08:45Z caller=logging.go:85 method=Health result=2 took=32.309µs +ts=2025-05-22T10:08:45Z caller=logging.go:85 method=Health result=2 took=52.199µs +ts=2025-05-22T10:08:48Z caller=logging.go:85 method=Health result=2 took=34.129µs +ts=2025-05-22T10:08:48Z caller=logging.go:85 method=Health result=2 took=36.379µs +ts=2025-05-22T10:08:51Z caller=logging.go:85 method=Health result=2 took=35.679µs +ts=2025-05-22T10:08:51Z caller=logging.go:85 method=Health result=2 took=25.409µs +ts=2025-05-22T10:08:54Z caller=logging.go:85 method=Health result=2 took=45.449µs +ts=2025-05-22T10:08:54Z caller=logging.go:85 method=Health result=2 took=39.209µs +ts=2025-05-22T10:08:57Z caller=logging.go:85 method=Health result=2 took=29.199µs +ts=2025-05-22T10:08:57Z caller=logging.go:85 method=Health result=2 took=45.869µs +ts=2025-05-22T10:09:00Z caller=logging.go:85 method=Health result=2 took=28.979µs +ts=2025-05-22T10:09:00Z caller=logging.go:85 method=Health result=2 took=29.069µs +ts=2025-05-22T10:09:03Z caller=logging.go:85 method=Health result=2 took=30.06µs +ts=2025-05-22T10:09:03Z caller=logging.go:85 method=Health result=2 took=30.06µs +ts=2025-05-22T10:09:06Z caller=logging.go:85 method=Health result=2 took=43.979µs +ts=2025-05-22T10:09:06Z caller=logging.go:85 method=Health result=2 took=46.339µs +ts=2025-05-22T10:09:09Z caller=logging.go:85 method=Health result=2 took=31.759µs +ts=2025-05-22T10:09:09Z caller=logging.go:85 method=Health result=2 took=17.39µs +ts=2025-05-22T10:09:12Z caller=logging.go:85 method=Health result=2 took=30.35µs +ts=2025-05-22T10:09:12Z caller=logging.go:85 method=Health result=2 took=30.4µs +ts=2025-05-22T10:09:15Z caller=logging.go:85 method=Health result=2 took=30.09µs +ts=2025-05-22T10:09:15Z caller=logging.go:85 method=Health result=2 took=30.09µs +ts=2025-05-22T10:09:18Z caller=logging.go:85 method=Health result=2 took=30.659µs +ts=2025-05-22T10:09:18Z caller=logging.go:85 method=Health result=2 took=48.049µs +ts=2025-05-22T10:09:21Z caller=logging.go:85 method=Health result=2 took=37.23µs +ts=2025-05-22T10:09:21Z caller=logging.go:85 method=Health result=2 took=37.31µs +ts=2025-05-22T10:09:24Z caller=logging.go:85 method=Health result=2 took=52.179µs +ts=2025-05-22T10:09:24Z caller=logging.go:85 method=Health result=2 took=52.189µs +ts=2025-05-22T10:09:27Z caller=logging.go:85 method=Health result=2 took=30.209µs +ts=2025-05-22T10:09:27Z caller=logging.go:85 method=Health result=2 took=57.679µs +ts=2025-05-22T10:09:30Z caller=logging.go:85 method=Health result=2 took=40.739µs +ts=2025-05-22T10:09:30Z caller=logging.go:85 method=Health result=2 took=47.999µs +ts=2025-05-22T10:09:33Z caller=logging.go:85 method=Health result=2 took=41.809µs +ts=2025-05-22T10:09:33Z caller=logging.go:85 method=Health result=2 took=56.859µs +ts=2025-05-22T10:09:36Z caller=logging.go:85 method=Health result=2 took=40.829µs +ts=2025-05-22T10:09:36Z caller=logging.go:85 method=Health result=2 took=43.009µs +ts=2025-05-22T10:09:39Z caller=logging.go:85 method=Health result=2 took=32.58µs +ts=2025-05-22T10:09:39Z caller=logging.go:85 method=Health result=2 took=55.189µs +ts=2025-05-22T10:09:42Z caller=logging.go:85 method=Health result=2 took=29.92µs +ts=2025-05-22T10:09:42Z caller=logging.go:85 method=Health result=2 took=59.678µs +ts=2025-05-22T10:09:45Z caller=logging.go:85 method=Health result=2 took=48.449µs +ts=2025-05-22T10:09:45Z caller=logging.go:85 method=Health result=2 took=59.049µs +ts=2025-05-22T10:09:48Z caller=logging.go:85 method=Health result=2 took=38.599µs +ts=2025-05-22T10:09:48Z caller=logging.go:85 method=Health result=2 took=46.039µs +ts=2025-05-22T10:09:51Z caller=logging.go:85 method=Health result=2 took=37.359µs +ts=2025-05-22T10:09:51Z caller=logging.go:85 method=Health result=2 took=49.639µs +ts=2025-05-22T10:09:54Z caller=logging.go:85 method=Health result=2 took=30.479µs +ts=2025-05-22T10:09:54Z caller=logging.go:85 method=Health result=2 took=43.529µs +ts=2025-05-22T10:09:57Z caller=logging.go:85 method=Health result=2 took=31.609µs +ts=2025-05-22T10:09:57Z caller=logging.go:85 method=Health result=2 took=35.369µs +ts=2025-05-22T10:10:00Z caller=logging.go:85 method=Health result=2 took=38.859µs +ts=2025-05-22T10:10:00Z caller=logging.go:85 method=Health result=2 took=46.829µs +ts=2025-05-22T10:10:03Z caller=logging.go:85 method=Health result=2 took=37.589µs +ts=2025-05-22T10:10:03Z caller=logging.go:85 method=Health result=2 took=46.918µs +ts=2025-05-22T10:10:06Z caller=logging.go:85 method=Health result=2 took=46.199µs +ts=2025-05-22T10:10:06Z caller=logging.go:85 method=Health result=2 took=57.678µs +ts=2025-05-22T10:10:09Z caller=logging.go:85 method=Health result=2 took=46.269µs +ts=2025-05-22T10:10:09Z caller=logging.go:85 method=Health result=2 took=51.369µs +ts=2025-05-22T10:10:12Z caller=logging.go:85 method=Health result=2 took=37.389µs +ts=2025-05-22T10:10:12Z caller=logging.go:85 method=Health result=2 took=35.519µs +ts=2025-05-22T10:10:15Z caller=logging.go:85 method=Health result=2 took=36.409µs +ts=2025-05-22T10:10:15Z caller=logging.go:85 method=Health result=2 took=36.909µs +ts=2025-05-22T10:10:18Z caller=logging.go:85 method=Health result=2 took=75.218µs +ts=2025-05-22T10:10:18Z caller=logging.go:85 method=Health result=2 took=29.659µs +ts=2025-05-22T10:10:21Z caller=logging.go:85 method=Health result=2 took=42.739µs +ts=2025-05-22T10:10:21Z caller=logging.go:85 method=Health result=2 took=38.229µs +ts=2025-05-22T10:10:24Z caller=logging.go:85 method=Health result=2 took=42.799µs +ts=2025-05-22T10:10:24Z caller=logging.go:85 method=Health result=2 took=45.438µs +ts=2025-05-22T10:10:27Z caller=logging.go:85 method=Health result=2 took=40.819µs +ts=2025-05-22T10:10:27Z caller=logging.go:85 method=Health result=2 took=27.719µs +ts=2025-05-22T10:10:30Z caller=logging.go:85 method=Health result=2 took=43.679µs +ts=2025-05-22T10:10:30Z caller=logging.go:85 method=Health result=2 took=30.949µs +ts=2025-05-22T10:10:33Z caller=logging.go:85 method=Health result=2 took=35.759µs +ts=2025-05-22T10:10:33Z caller=logging.go:85 method=Health result=2 took=35.929µs +ts=2025-05-22T10:10:36Z caller=logging.go:85 method=Health result=2 took=37.189µs +ts=2025-05-22T10:10:36Z caller=logging.go:85 method=Health result=2 took=45.589µs +ts=2025-05-22T10:10:39Z caller=logging.go:85 method=Health result=2 took=38.329µs +ts=2025-05-22T10:10:39Z caller=logging.go:85 method=Health result=2 took=47.219µs +ts=2025-05-22T10:10:42Z caller=logging.go:85 method=Health result=2 took=40.409µs +ts=2025-05-22T10:10:42Z caller=logging.go:85 method=Health result=2 took=50.179µs +ts=2025-05-22T10:10:45Z caller=logging.go:85 method=Health result=2 took=36.969µs +ts=2025-05-22T10:10:45Z caller=logging.go:85 method=Health result=2 took=49.599µs +ts=2025-05-22T10:10:48Z caller=logging.go:85 method=Health result=2 took=39.639µs +ts=2025-05-22T10:10:48Z caller=logging.go:85 method=Health result=2 took=40.039µs +ts=2025-05-22T10:10:51Z caller=logging.go:85 method=Health result=2 took=30.939µs +ts=2025-05-22T10:10:51Z caller=logging.go:85 method=Health result=2 took=34.82µs +ts=2025-05-22T10:10:54Z caller=logging.go:85 method=Health result=2 took=52.358µs +ts=2025-05-22T10:10:54Z caller=logging.go:85 method=Health result=2 took=52.298µs +ts=2025-05-22T10:10:57Z caller=logging.go:85 method=Health result=2 took=45.859µs +ts=2025-05-22T10:10:57Z caller=logging.go:85 method=Health result=2 took=35.359µs +ts=2025-05-22T10:11:00Z caller=logging.go:85 method=Health result=2 took=55.588µs +ts=2025-05-22T10:11:00Z caller=logging.go:85 method=Health result=2 took=55.568µs +ts=2025-05-22T10:11:03Z caller=logging.go:85 method=Health result=2 took=41.279µs +ts=2025-05-22T10:11:03Z caller=logging.go:85 method=Health result=2 took=42.089µs +ts=2025-05-22T10:11:06Z caller=logging.go:85 method=Health result=2 took=38.709µs +ts=2025-05-22T10:11:06Z caller=logging.go:85 method=Health result=2 took=24.339µs +ts=2025-05-22T10:11:09Z caller=logging.go:85 method=Health result=2 took=42.189µs +ts=2025-05-22T10:11:09Z caller=logging.go:85 method=Health result=2 took=49.298µs +ts=2025-05-22T10:11:12Z caller=logging.go:85 method=Health result=2 took=44.049µs +ts=2025-05-22T10:11:12Z caller=logging.go:85 method=Health result=2 took=48.738µs +ts=2025-05-22T10:11:15Z caller=logging.go:85 method=Health result=2 took=45.959µs +ts=2025-05-22T10:11:15Z caller=logging.go:85 method=Health result=2 took=44.699µs +ts=2025-05-22T10:11:18Z caller=logging.go:85 method=Health result=2 took=46.978µs +ts=2025-05-22T10:11:18Z caller=logging.go:85 method=Health result=2 took=51.109µs +ts=2025-05-22T10:11:21Z caller=logging.go:85 method=Health result=2 took=44.929µs +ts=2025-05-22T10:11:21Z caller=logging.go:85 method=Health result=2 took=41.689µs +ts=2025-05-22T10:11:24Z caller=logging.go:85 method=Health result=2 took=44.479µs +ts=2025-05-22T10:11:24Z caller=logging.go:85 method=Health result=2 took=43.839µs +ts=2025-05-22T10:11:27Z caller=logging.go:85 method=Health result=2 took=30.529µs +ts=2025-05-22T10:11:27Z caller=logging.go:85 method=Health result=2 took=46.489µs +ts=2025-05-22T10:11:30Z caller=logging.go:85 method=Health result=2 took=43.609µs +ts=2025-05-22T10:11:30Z caller=logging.go:85 method=Health result=2 took=33.899µs +ts=2025-05-22T10:11:33Z caller=logging.go:85 method=Health result=2 took=42.519µs +ts=2025-05-22T10:11:33Z caller=logging.go:85 method=Health result=2 took=42.469µs +ts=2025-05-22T10:11:36Z caller=logging.go:85 method=Health result=2 took=41.289µs +ts=2025-05-22T10:11:36Z caller=logging.go:85 method=Health result=2 took=49.499µs +ts=2025-05-22T10:11:39Z caller=logging.go:85 method=Health result=2 took=57.269µs +ts=2025-05-22T10:11:39Z caller=logging.go:85 method=Health result=2 took=57.249µs +ts=2025-05-22T10:11:42Z caller=logging.go:85 method=Health result=2 took=43.309µs +ts=2025-05-22T10:11:42Z caller=logging.go:85 method=Health result=2 took=43.939µs +ts=2025-05-22T10:11:45Z caller=logging.go:85 method=Health result=2 took=56.108µs +ts=2025-05-22T10:11:45Z caller=logging.go:85 method=Health result=2 took=55.948µs +ts=2025-05-22T10:11:48Z caller=logging.go:85 method=Health result=2 took=44.849µs +ts=2025-05-22T10:11:48Z caller=logging.go:85 method=Health result=2 took=44.209µs +ts=2025-05-22T10:11:51Z caller=logging.go:85 method=Health result=2 took=39.039µs +ts=2025-05-22T10:11:51Z caller=logging.go:85 method=Health result=2 took=39.329µs +ts=2025-05-22T10:11:54Z caller=logging.go:85 method=Health result=2 took=27.81µs +ts=2025-05-22T10:11:54Z caller=logging.go:85 method=Health result=2 took=27.83µs +ts=2025-05-22T10:11:57Z caller=logging.go:85 method=Health result=2 took=39.089µs +ts=2025-05-22T10:11:57Z caller=logging.go:85 method=Health result=2 took=38.909µs +ts=2025-05-22T10:12:00Z caller=logging.go:85 method=Health result=2 took=36.859µs +ts=2025-05-22T10:12:00Z caller=logging.go:85 method=Health result=2 took=34.409µs +ts=2025-05-22T10:12:03Z caller=logging.go:85 method=Health result=2 took=53.489µs +ts=2025-05-22T10:12:03Z caller=logging.go:85 method=Health result=2 took=47.709µs +ts=2025-05-22T10:12:06Z caller=logging.go:85 method=Health result=2 took=29.85µs +ts=2025-05-22T10:12:06Z caller=logging.go:85 method=Health result=2 took=29.83µs +ts=2025-05-22T10:12:09Z caller=logging.go:85 method=Health result=2 took=29.36µs +ts=2025-05-22T10:12:09Z caller=logging.go:85 method=Health result=2 took=14.58µs +ts=2025-05-22T10:12:12Z caller=logging.go:85 method=Health result=2 took=32.9µs +ts=2025-05-22T10:12:12Z caller=logging.go:85 method=Health result=2 took=50.349µs +ts=2025-05-22T10:12:15Z caller=logging.go:85 method=Health result=2 took=29.559µs +ts=2025-05-22T10:12:15Z caller=logging.go:85 method=Health result=2 took=53.648µs +ts=2025-05-22T10:12:18Z caller=logging.go:85 method=Health result=2 took=27.909µs +ts=2025-05-22T10:12:18Z caller=logging.go:85 method=Health result=2 took=17.979µs +ts=2025-05-22T10:12:21Z caller=logging.go:85 method=Health result=2 took=51.779µs +ts=2025-05-22T10:12:21Z caller=logging.go:85 method=Health result=2 took=51.739µs +ts=2025-05-22T10:12:24Z caller=logging.go:85 method=Health result=2 took=36.329µs +ts=2025-05-22T10:12:24Z caller=logging.go:85 method=Health result=2 took=50.139µs +ts=2025-05-22T10:12:27Z caller=logging.go:85 method=Health result=2 took=42.039µs +ts=2025-05-22T10:12:27Z caller=logging.go:85 method=Health result=2 took=42.479µs +ts=2025-05-22T10:12:30Z caller=logging.go:85 method=Health result=2 took=39.4µs +ts=2025-05-22T10:12:30Z caller=logging.go:85 method=Health result=2 took=39.47µs +ts=2025-05-22T10:12:33Z caller=logging.go:85 method=Health result=2 took=45.289µs +ts=2025-05-22T10:12:33Z caller=logging.go:85 method=Health result=2 took=53.449µs +ts=2025-05-22T10:12:36Z caller=logging.go:85 method=Health result=2 took=41.699µs +ts=2025-05-22T10:12:36Z caller=logging.go:85 method=Health result=2 took=46.448µs +ts=2025-05-22T10:12:39Z caller=logging.go:85 method=Health result=2 took=43.279µs +ts=2025-05-22T10:12:39Z caller=logging.go:85 method=Health result=2 took=46.969µs +ts=2025-05-22T10:12:42Z caller=logging.go:85 method=Health result=2 took=45.409µs +ts=2025-05-22T10:12:42Z caller=logging.go:85 method=Health result=2 took=47.739µs +ts=2025-05-22T10:12:45Z caller=logging.go:85 method=Health result=2 took=39.939µs +ts=2025-05-22T10:12:45Z caller=logging.go:85 method=Health result=2 took=50.279µs +ts=2025-05-22T10:12:48Z caller=logging.go:85 method=Health result=2 took=47.519µs +ts=2025-05-22T10:12:48Z caller=logging.go:85 method=Health result=2 took=48.459µs +ts=2025-05-22T10:12:51Z caller=logging.go:85 method=Health result=2 took=37.849µs +ts=2025-05-22T10:12:51Z caller=logging.go:85 method=Health result=2 took=24.189µs +ts=2025-05-22T10:12:54Z caller=logging.go:85 method=Health result=2 took=28.649µs +ts=2025-05-22T10:12:54Z caller=logging.go:85 method=Health result=2 took=28.659µs +ts=2025-05-22T10:12:57Z caller=logging.go:85 method=Health result=2 took=43.819µs +ts=2025-05-22T10:12:57Z caller=logging.go:85 method=Health result=2 took=44.839µs +ts=2025-05-22T10:13:00Z caller=logging.go:85 method=Health result=2 took=52.769µs +ts=2025-05-22T10:13:00Z caller=logging.go:85 method=Health result=2 took=52.749µs +ts=2025-05-22T10:13:03Z caller=logging.go:85 method=Health result=2 took=40.019µs +ts=2025-05-22T10:13:03Z caller=logging.go:85 method=Health result=2 took=30.159µs +ts=2025-05-22T10:13:06Z caller=logging.go:85 method=Health result=2 took=46.049µs +ts=2025-05-22T10:13:06Z caller=logging.go:85 method=Health result=2 took=51.929µs +ts=2025-05-22T10:13:09Z caller=logging.go:85 method=Health result=2 took=39.229µs +ts=2025-05-22T10:13:09Z caller=logging.go:85 method=Health result=2 took=39.089µs +ts=2025-05-22T10:13:12Z caller=logging.go:85 method=Health result=2 took=44.089µs +ts=2025-05-22T10:13:12Z caller=logging.go:85 method=Health result=2 took=37.269µs +ts=2025-05-22T10:13:15Z caller=logging.go:85 method=Health result=2 took=43.938µs +ts=2025-05-22T10:13:15Z caller=logging.go:85 method=Health result=2 took=27.489µs +ts=2025-05-22T10:13:18Z caller=logging.go:85 method=Health result=2 took=45.218µs +ts=2025-05-22T10:13:18Z caller=logging.go:85 method=Health result=2 took=48.949µs +ts=2025-05-22T10:13:21Z caller=logging.go:85 method=Health result=2 took=45.179µs +ts=2025-05-22T10:13:21Z caller=logging.go:85 method=Health result=2 took=47.578µs +ts=2025-05-22T10:13:24Z caller=logging.go:85 method=Health result=2 took=40.279µs +ts=2025-05-22T10:13:24Z caller=logging.go:85 method=Health result=2 took=40.289µs +ts=2025-05-22T10:13:27Z caller=logging.go:85 method=Health result=2 took=42.229µs +ts=2025-05-22T10:13:27Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T10:13:30Z caller=logging.go:85 method=Health result=2 took=41.969µs +ts=2025-05-22T10:13:30Z caller=logging.go:85 method=Health result=2 took=48.699µs +ts=2025-05-22T10:13:33Z caller=logging.go:85 method=Health result=2 took=43.139µs +ts=2025-05-22T10:13:33Z caller=logging.go:85 method=Health result=2 took=43.829µs +ts=2025-05-22T10:13:36Z caller=logging.go:85 method=Health result=2 took=38.799µs +ts=2025-05-22T10:13:36Z caller=logging.go:85 method=Health result=2 took=44.679µs +ts=2025-05-22T10:13:39Z caller=logging.go:85 method=Health result=2 took=44.989µs +ts=2025-05-22T10:13:39Z caller=logging.go:85 method=Health result=2 took=40.059µs +ts=2025-05-22T10:13:42Z caller=logging.go:85 method=Health result=2 took=45.209µs +ts=2025-05-22T10:13:42Z caller=logging.go:85 method=Health result=2 took=48.449µs +ts=2025-05-22T10:13:45Z caller=logging.go:85 method=Health result=2 took=45.379µs +ts=2025-05-22T10:13:45Z caller=logging.go:85 method=Health result=2 took=49.549µs +ts=2025-05-22T10:13:48Z caller=logging.go:85 method=Health result=2 took=52.279µs +ts=2025-05-22T10:13:48Z caller=logging.go:85 method=Health result=2 took=48.929µs +ts=2025-05-22T10:13:51Z caller=logging.go:85 method=Health result=2 took=40.499µs +ts=2025-05-22T10:13:51Z caller=logging.go:85 method=Health result=2 took=42.169µs +ts=2025-05-22T10:13:54Z caller=logging.go:85 method=Health result=2 took=29.81µs +ts=2025-05-22T10:13:54Z caller=logging.go:85 method=Health result=2 took=9.81µs +ts=2025-05-22T10:13:57Z caller=logging.go:85 method=Health result=2 took=39.369µs +ts=2025-05-22T10:13:57Z caller=logging.go:85 method=Health result=2 took=9.839µs +ts=2025-05-22T10:14:00Z caller=logging.go:85 method=Health result=2 took=40.179µs +ts=2025-05-22T10:14:00Z caller=logging.go:85 method=Health result=2 took=30.129µs +ts=2025-05-22T10:14:03Z caller=logging.go:85 method=Health result=2 took=37.759µs +ts=2025-05-22T10:14:03Z caller=logging.go:85 method=Health result=2 took=16.32µs +ts=2025-05-22T10:14:06Z caller=logging.go:85 method=Health result=2 took=30.449µs +ts=2025-05-22T10:14:06Z caller=logging.go:85 method=Health result=2 took=34.259µs +ts=2025-05-22T10:14:09Z caller=logging.go:85 method=Health result=2 took=30.539µs +ts=2025-05-22T10:14:09Z caller=logging.go:85 method=Health result=2 took=47.259µs +ts=2025-05-22T10:14:12Z caller=logging.go:85 method=Health result=2 took=43.369µs +ts=2025-05-22T10:14:12Z caller=logging.go:85 method=Health result=2 took=42.269µs +ts=2025-05-22T10:14:15Z caller=logging.go:85 method=Health result=2 took=36.539µs +ts=2025-05-22T10:14:15Z caller=logging.go:85 method=Health result=2 took=36.469µs +ts=2025-05-22T10:14:18Z caller=logging.go:85 method=Health result=2 took=82.828µs +ts=2025-05-22T10:14:18Z caller=logging.go:85 method=Health result=2 took=36.1µs +ts=2025-05-22T10:14:21Z caller=logging.go:85 method=Health result=2 took=43.969µs +ts=2025-05-22T10:14:21Z caller=logging.go:85 method=Health result=2 took=40.899µs +ts=2025-05-22T10:14:24Z caller=logging.go:85 method=Health result=2 took=46.138µs +ts=2025-05-22T10:14:24Z caller=logging.go:85 method=Health result=2 took=58.889µs +ts=2025-05-22T10:14:27Z caller=logging.go:85 method=Health result=2 took=40.769µs +ts=2025-05-22T10:14:27Z caller=logging.go:85 method=Health result=2 took=29.779µs +ts=2025-05-22T10:14:30Z caller=logging.go:85 method=Health result=2 took=39.859µs +ts=2025-05-22T10:14:30Z caller=logging.go:85 method=Health result=2 took=43.909µs +ts=2025-05-22T10:14:33Z caller=logging.go:85 method=Health result=2 took=29.309µs +ts=2025-05-22T10:14:33Z caller=logging.go:85 method=Health result=2 took=28.949µs +ts=2025-05-22T10:14:36Z caller=logging.go:85 method=Health result=2 took=78.038µs +ts=2025-05-22T10:14:36Z caller=logging.go:85 method=Health result=2 took=77.198µs +ts=2025-05-22T10:14:39Z caller=logging.go:85 method=Health result=2 took=79.378µs +ts=2025-05-22T10:14:39Z caller=logging.go:85 method=Health result=2 took=86.908µs +ts=2025-05-22T10:14:42Z caller=logging.go:85 method=Health result=2 took=43.849µs +ts=2025-05-22T10:14:42Z caller=logging.go:85 method=Health result=2 took=46.019µs +ts=2025-05-22T10:14:45Z caller=logging.go:85 method=Health result=2 took=46.188µs +ts=2025-05-22T10:14:45Z caller=logging.go:85 method=Health result=2 took=47.578µs +ts=2025-05-22T10:14:48Z caller=logging.go:85 method=Health result=2 took=43.749µs +ts=2025-05-22T10:14:48Z caller=logging.go:85 method=Health result=2 took=44.099µs +ts=2025-05-22T10:14:51Z caller=logging.go:85 method=Health result=2 took=38.919µs +ts=2025-05-22T10:14:51Z caller=logging.go:85 method=Health result=2 took=45.119µs +ts=2025-05-22T10:14:54Z caller=logging.go:85 method=Health result=2 took=31.919µs +ts=2025-05-22T10:14:54Z caller=logging.go:85 method=Health result=2 took=34.129µs +ts=2025-05-22T10:14:57Z caller=logging.go:85 method=Health result=2 took=43.489µs +ts=2025-05-22T10:14:57Z caller=logging.go:85 method=Health result=2 took=44.589µs +ts=2025-05-22T10:15:00Z caller=logging.go:85 method=Health result=2 took=30.01µs +ts=2025-05-22T10:15:00Z caller=logging.go:85 method=Health result=2 took=54.719µs +ts=2025-05-22T10:15:03Z caller=logging.go:85 method=Health result=2 took=42.789µs +ts=2025-05-22T10:15:03Z caller=logging.go:85 method=Health result=2 took=42.539µs +ts=2025-05-22T10:15:06Z caller=logging.go:85 method=Health result=2 took=29.949µs +ts=2025-05-22T10:15:06Z caller=logging.go:85 method=Health result=2 took=49.389µs +ts=2025-05-22T10:15:09Z caller=logging.go:85 method=Health result=2 took=29.529µs +ts=2025-05-22T10:15:09Z caller=logging.go:85 method=Health result=2 took=10.63µs +ts=2025-05-22T10:15:12Z caller=logging.go:85 method=Health result=2 took=46.219µs +ts=2025-05-22T10:15:12Z caller=logging.go:85 method=Health result=2 took=46.469µs +ts=2025-05-22T10:15:15Z caller=logging.go:85 method=Health result=2 took=18.77µs +ts=2025-05-22T10:15:15Z caller=logging.go:85 method=Health result=2 took=29.56µs +ts=2025-05-22T10:15:18Z caller=logging.go:85 method=Health result=2 took=44.879µs +ts=2025-05-22T10:15:18Z caller=logging.go:85 method=Health result=2 took=44.869µs +ts=2025-05-22T10:15:21Z caller=logging.go:85 method=Health result=2 took=36.309µs +ts=2025-05-22T10:15:21Z caller=logging.go:85 method=Health result=2 took=36.349µs +ts=2025-05-22T10:15:24Z caller=logging.go:85 method=Health result=2 took=43.669µs +ts=2025-05-22T10:15:24Z caller=logging.go:85 method=Health result=2 took=42.629µs +ts=2025-05-22T10:15:27Z caller=logging.go:85 method=Health result=2 took=43.029µs +ts=2025-05-22T10:15:27Z caller=logging.go:85 method=Health result=2 took=42.419µs +ts=2025-05-22T10:15:30Z caller=logging.go:85 method=Health result=2 took=28.699µs +ts=2025-05-22T10:15:30Z caller=logging.go:85 method=Health result=2 took=59.338µs +ts=2025-05-22T10:15:33Z caller=logging.go:85 method=Health result=2 took=45.729µs +ts=2025-05-22T10:15:33Z caller=logging.go:85 method=Health result=2 took=44.829µs +ts=2025-05-22T10:15:36Z caller=logging.go:85 method=Health result=2 took=39.329µs +ts=2025-05-22T10:15:36Z caller=logging.go:85 method=Health result=2 took=38.849µs +ts=2025-05-22T10:15:39Z caller=logging.go:85 method=Health result=2 took=38.949µs +ts=2025-05-22T10:15:39Z caller=logging.go:85 method=Health result=2 took=26.929µs +ts=2025-05-22T10:15:42Z caller=logging.go:85 method=Health result=2 took=41.079µs +ts=2025-05-22T10:15:42Z caller=logging.go:85 method=Health result=2 took=37.569µs +ts=2025-05-22T10:15:45Z caller=logging.go:85 method=Health result=2 took=46.129µs +ts=2025-05-22T10:15:45Z caller=logging.go:85 method=Health result=2 took=48.949µs +ts=2025-05-22T10:15:48Z caller=logging.go:85 method=Health result=2 took=36.509µs +ts=2025-05-22T10:15:48Z caller=logging.go:85 method=Health result=2 took=36.999µs +ts=2025-05-22T10:15:51Z caller=logging.go:85 method=Health result=2 took=27.489µs +ts=2025-05-22T10:15:51Z caller=logging.go:85 method=Health result=2 took=40.309µs +ts=2025-05-22T10:15:54Z caller=logging.go:85 method=Health result=2 took=37.709µs +ts=2025-05-22T10:15:54Z caller=logging.go:85 method=Health result=2 took=38.029µs +ts=2025-05-22T10:15:57Z caller=logging.go:85 method=Health result=2 took=40.489µs +ts=2025-05-22T10:15:57Z caller=logging.go:85 method=Health result=2 took=48.489µs +ts=2025-05-22T10:16:00Z caller=logging.go:85 method=Health result=2 took=22.72µs +ts=2025-05-22T10:16:00Z caller=logging.go:85 method=Health result=2 took=54.629µs +ts=2025-05-22T10:16:03Z caller=logging.go:85 method=Health result=2 took=43.919µs +ts=2025-05-22T10:16:03Z caller=logging.go:85 method=Health result=2 took=31.74µs +ts=2025-05-22T10:16:06Z caller=logging.go:85 method=Health result=2 took=44.589µs +ts=2025-05-22T10:16:06Z caller=logging.go:85 method=Health result=2 took=51.189µs +ts=2025-05-22T10:16:09Z caller=logging.go:85 method=Health result=2 took=45.229µs +ts=2025-05-22T10:16:09Z caller=logging.go:85 method=Health result=2 took=44.829µs +ts=2025-05-22T10:16:12Z caller=logging.go:85 method=Health result=2 took=41.799µs +ts=2025-05-22T10:16:12Z caller=logging.go:85 method=Health result=2 took=54.359µs +ts=2025-05-22T10:16:15Z caller=logging.go:85 method=Health result=2 took=44.659µs +ts=2025-05-22T10:16:15Z caller=logging.go:85 method=Health result=2 took=43.289µs +ts=2025-05-22T10:16:18Z caller=logging.go:85 method=Health result=2 took=51.739µs +ts=2025-05-22T10:16:18Z caller=logging.go:85 method=Health result=2 took=56.739µs +ts=2025-05-22T10:16:21Z caller=logging.go:85 method=Health result=2 took=43.889µs +ts=2025-05-22T10:16:21Z caller=logging.go:85 method=Health result=2 took=50.089µs +ts=2025-05-22T10:16:24Z caller=logging.go:85 method=Health result=2 took=45.709µs +ts=2025-05-22T10:16:24Z caller=logging.go:85 method=Health result=2 took=48.019µs +ts=2025-05-22T10:16:27Z caller=logging.go:85 method=Health result=2 took=30.679µs +ts=2025-05-22T10:16:27Z caller=logging.go:85 method=Health result=2 took=15.159µs +ts=2025-05-22T10:16:30Z caller=logging.go:85 method=Health result=2 took=36.469µs +ts=2025-05-22T10:16:30Z caller=logging.go:85 method=Health result=2 took=36.619µs +ts=2025-05-22T10:16:33Z caller=logging.go:85 method=Health result=2 took=41.909µs +ts=2025-05-22T10:16:33Z caller=logging.go:85 method=Health result=2 took=49.129µs +ts=2025-05-22T10:16:36Z caller=logging.go:85 method=Health result=2 took=43.199µs +ts=2025-05-22T10:16:36Z caller=logging.go:85 method=Health result=2 took=52.489µs +ts=2025-05-22T10:16:39Z caller=logging.go:85 method=Health result=2 took=42.889µs +ts=2025-05-22T10:16:39Z caller=logging.go:85 method=Health result=2 took=30.219µs +ts=2025-05-22T10:16:42Z caller=logging.go:85 method=Health result=2 took=44.979µs +ts=2025-05-22T10:16:42Z caller=logging.go:85 method=Health result=2 took=42.619µs +ts=2025-05-22T10:16:45Z caller=logging.go:85 method=Health result=2 took=36.659µs +ts=2025-05-22T10:16:45Z caller=logging.go:85 method=Health result=2 took=24.449µs +ts=2025-05-22T10:16:48Z caller=logging.go:85 method=Health result=2 took=49.589µs +ts=2025-05-22T10:16:48Z caller=logging.go:85 method=Health result=2 took=52.529µs +ts=2025-05-22T10:16:51Z caller=logging.go:85 method=Health result=2 took=30.559µs +ts=2025-05-22T10:16:51Z caller=logging.go:85 method=Health result=2 took=10.169µs +ts=2025-05-22T10:16:54Z caller=logging.go:85 method=Health result=2 took=39.829µs +ts=2025-05-22T10:16:54Z caller=logging.go:85 method=Health result=2 took=40.569µs +ts=2025-05-22T10:16:57Z caller=logging.go:85 method=Health result=2 took=50.008µs +ts=2025-05-22T10:16:57Z caller=logging.go:85 method=Health result=2 took=50.668µs +ts=2025-05-22T10:17:00Z caller=logging.go:85 method=Health result=2 took=42.349µs +ts=2025-05-22T10:17:00Z caller=logging.go:85 method=Health result=2 took=43.079µs +ts=2025-05-22T10:17:03Z caller=logging.go:85 method=Health result=2 took=46.299µs +ts=2025-05-22T10:17:03Z caller=logging.go:85 method=Health result=2 took=87.728µs +ts=2025-05-22T10:17:06Z caller=logging.go:85 method=Health result=2 took=59.539µs +ts=2025-05-22T10:17:06Z caller=logging.go:85 method=Health result=2 took=79.928µs +ts=2025-05-22T10:17:09Z caller=logging.go:85 method=Health result=2 took=30.849µs +ts=2025-05-22T10:17:09Z caller=logging.go:85 method=Health result=2 took=47.959µs +ts=2025-05-22T10:17:12Z caller=logging.go:85 method=Health result=2 took=41.559µs +ts=2025-05-22T10:17:12Z caller=logging.go:85 method=Health result=2 took=48.199µs +ts=2025-05-22T10:17:15Z caller=logging.go:85 method=Health result=2 took=41.379µs +ts=2025-05-22T10:17:15Z caller=logging.go:85 method=Health result=2 took=43.388µs +ts=2025-05-22T10:17:18Z caller=logging.go:85 method=Health result=2 took=22.47µs +ts=2025-05-22T10:17:18Z caller=logging.go:85 method=Health result=2 took=33.51µs +ts=2025-05-22T10:17:21Z caller=logging.go:85 method=Health result=2 took=33.319µs +ts=2025-05-22T10:17:21Z caller=logging.go:85 method=Health result=2 took=37.019µs +ts=2025-05-22T10:17:24Z caller=logging.go:85 method=Health result=2 took=45.289µs +ts=2025-05-22T10:17:24Z caller=logging.go:85 method=Health result=2 took=28.529µs +ts=2025-05-22T10:17:27Z caller=logging.go:85 method=Health result=2 took=28.249µs +ts=2025-05-22T10:17:27Z caller=logging.go:85 method=Health result=2 took=15.15µs +ts=2025-05-22T10:17:30Z caller=logging.go:85 method=Health result=2 took=36.929µs +ts=2025-05-22T10:17:30Z caller=logging.go:85 method=Health result=2 took=48.359µs +ts=2025-05-22T10:17:33Z caller=logging.go:85 method=Health result=2 took=30.72µs +ts=2025-05-22T10:17:33Z caller=logging.go:85 method=Health result=2 took=18.059µs +ts=2025-05-22T10:17:36Z caller=logging.go:85 method=Health result=2 took=29.529µs +ts=2025-05-22T10:17:36Z caller=logging.go:85 method=Health result=2 took=29.569µs +ts=2025-05-22T10:17:39Z caller=logging.go:85 method=Health result=2 took=43.748µs +ts=2025-05-22T10:17:39Z caller=logging.go:85 method=Health result=2 took=43.548µs +ts=2025-05-22T10:17:42Z caller=logging.go:85 method=Health result=2 took=32.749µs +ts=2025-05-22T10:17:42Z caller=logging.go:85 method=Health result=2 took=63.469µs +ts=2025-05-22T10:17:45Z caller=logging.go:85 method=Health result=2 took=44.609µs +ts=2025-05-22T10:17:45Z caller=logging.go:85 method=Health result=2 took=41.749µs +ts=2025-05-22T10:17:48Z caller=logging.go:85 method=Health result=2 took=30.569µs +ts=2025-05-22T10:17:48Z caller=logging.go:85 method=Health result=2 took=47.469µs +ts=2025-05-22T10:17:51Z caller=logging.go:85 method=Health result=2 took=28.829µs +ts=2025-05-22T10:17:51Z caller=logging.go:85 method=Health result=2 took=40.959µs +ts=2025-05-22T10:17:54Z caller=logging.go:85 method=Health result=2 took=33.789µs +ts=2025-05-22T10:17:54Z caller=logging.go:85 method=Health result=2 took=35.979µs +ts=2025-05-22T10:17:57Z caller=logging.go:85 method=Health result=2 took=40.349µs +ts=2025-05-22T10:17:57Z caller=logging.go:85 method=Health result=2 took=39.959µs +ts=2025-05-22T10:18:00Z caller=logging.go:85 method=Health result=2 took=42.629µs +ts=2025-05-22T10:18:00Z caller=logging.go:85 method=Health result=2 took=52.769µs +ts=2025-05-22T10:18:03Z caller=logging.go:85 method=Health result=2 took=48.278µs +ts=2025-05-22T10:18:03Z caller=logging.go:85 method=Health result=2 took=49.748µs +ts=2025-05-22T10:18:06Z caller=logging.go:85 method=Health result=2 took=42.009µs +ts=2025-05-22T10:18:06Z caller=logging.go:85 method=Health result=2 took=41.359µs +ts=2025-05-22T10:18:09Z caller=logging.go:85 method=Health result=2 took=27.599µs +ts=2025-05-22T10:18:09Z caller=logging.go:85 method=Health result=2 took=55.689µs +ts=2025-05-22T10:18:12Z caller=logging.go:85 method=Health result=2 took=42.459µs +ts=2025-05-22T10:18:12Z caller=logging.go:85 method=Health result=2 took=49.819µs +ts=2025-05-22T10:18:15Z caller=logging.go:85 method=Health result=2 took=42.119µs +ts=2025-05-22T10:18:15Z caller=logging.go:85 method=Health result=2 took=49.428µs +ts=2025-05-22T10:18:18Z caller=logging.go:85 method=Health result=2 took=96.658µs +ts=2025-05-22T10:18:18Z caller=logging.go:85 method=Health result=2 took=17.039µs +ts=2025-05-22T10:18:21Z caller=logging.go:85 method=Health result=2 took=37.529µs +ts=2025-05-22T10:18:21Z caller=logging.go:85 method=Health result=2 took=33.049µs +ts=2025-05-22T10:18:24Z caller=logging.go:85 method=Health result=2 took=43.529µs +ts=2025-05-22T10:18:24Z caller=logging.go:85 method=Health result=2 took=42.609µs +ts=2025-05-22T10:18:27Z caller=logging.go:85 method=Health result=2 took=45.559µs +ts=2025-05-22T10:18:27Z caller=logging.go:85 method=Health result=2 took=20.24µs +ts=2025-05-22T10:18:30Z caller=logging.go:85 method=Health result=2 took=39.749µs +ts=2025-05-22T10:18:30Z caller=logging.go:85 method=Health result=2 took=44.169µs +ts=2025-05-22T10:18:33Z caller=logging.go:85 method=Health result=2 took=39.359µs +ts=2025-05-22T10:18:33Z caller=logging.go:85 method=Health result=2 took=40.149µs +ts=2025-05-22T10:18:36Z caller=logging.go:85 method=Health result=2 took=36.499µs +ts=2025-05-22T10:18:36Z caller=logging.go:85 method=Health result=2 took=28.689µs +ts=2025-05-22T10:18:39Z caller=logging.go:85 method=Health result=2 took=47.969µs +ts=2025-05-22T10:18:39Z caller=logging.go:85 method=Health result=2 took=32.689µs +ts=2025-05-22T10:18:42Z caller=logging.go:85 method=Health result=2 took=35.679µs +ts=2025-05-22T10:18:42Z caller=logging.go:85 method=Health result=2 took=34.939µs +ts=2025-05-22T10:18:45Z caller=logging.go:85 method=Health result=2 took=54.099µs +ts=2025-05-22T10:18:45Z caller=logging.go:85 method=Health result=2 took=50.089µs +ts=2025-05-22T10:18:48Z caller=logging.go:85 method=Health result=2 took=15.369µs +ts=2025-05-22T10:18:48Z caller=logging.go:85 method=Health result=2 took=31.23µs +ts=2025-05-22T10:18:51Z caller=logging.go:85 method=Health result=2 took=32.099µs +ts=2025-05-22T10:18:51Z caller=logging.go:85 method=Health result=2 took=35.809µs +ts=2025-05-22T10:18:54Z caller=logging.go:85 method=Health result=2 took=31.689µs +ts=2025-05-22T10:18:54Z caller=logging.go:85 method=Health result=2 took=35.36µs +ts=2025-05-22T10:18:57Z caller=logging.go:85 method=Health result=2 took=37.77µs +ts=2025-05-22T10:18:57Z caller=logging.go:85 method=Health result=2 took=34.379µs diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/helm/sock-shop.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/helm/sock-shop.yaml new file mode 100644 index 00000000000..ec21f745437 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/helm/sock-shop.yaml @@ -0,0 +1,902 @@ +# based on https://raw.githubusercontent.com/microservices-demo/microservices-demo/master/deploy/kubernetes/complete-demo.yaml + +--- +apiVersion: v1 +kind: Namespace +metadata: + name: sock-shop +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: carts + labels: + name: carts + namespace: sock-shop +spec: + replicas: 1 + selector: + matchLabels: + name: carts + template: + metadata: + labels: + name: carts + annotations: + admission.datadoghq.com/dotnet-lib.version: "v2.53.2-musl" + spec: + containers: + - name: carts + image: weaveworksdemos/carts:0.4.8 + env: + - name: JAVA_OPTS + value: -Xms64m -Xmx128m -XX:+UseG1GC -Djava.security.egd=file:/dev/urandom -Dspring.zipkin.enabled=false + resources: + limits: + cpu: 300m + memory: 500Mi + requests: + cpu: 100m + memory: 200Mi + ports: + - containerPort: 80 + securityContext: + runAsNonRoot: true + runAsUser: 10001 + capabilities: + drop: + - all + add: + - NET_BIND_SERVICE + readOnlyRootFilesystem: true + volumeMounts: + - mountPath: /tmp + name: tmp-volume + volumes: + - name: tmp-volume + emptyDir: + medium: Memory + nodeSelector: + beta.kubernetes.io/os: linux +--- +apiVersion: v1 +kind: Service +metadata: + name: carts + annotations: + prometheus.io/scrape: 'true' + labels: + name: carts + namespace: sock-shop +spec: + ports: + # the port that this service should serve on + - port: 80 + targetPort: 80 + selector: + name: carts +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: carts-db + labels: + name: carts-db + namespace: sock-shop +spec: + replicas: 1 + selector: + matchLabels: + name: carts-db + template: + metadata: + labels: + name: carts-db + spec: + containers: + - name: carts-db + image: mongo + ports: + - name: mongo + containerPort: 27017 + securityContext: + capabilities: + drop: + - all + add: + - CHOWN + - SETGID + - SETUID + readOnlyRootFilesystem: true + volumeMounts: + - mountPath: /tmp + name: tmp-volume + volumes: + - name: tmp-volume + emptyDir: + medium: Memory + nodeSelector: + beta.kubernetes.io/os: linux +--- +apiVersion: v1 +kind: Service +metadata: + name: carts-db + labels: + name: carts-db + namespace: sock-shop +spec: + ports: + # the port that this service should serve on + - port: 27017 + targetPort: 27017 + selector: + name: carts-db +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: catalogue + labels: + name: catalogue + namespace: sock-shop +spec: + replicas: 1 + selector: + matchLabels: + name: catalogue + template: + metadata: + labels: + name: catalogue + spec: + containers: + - name: catalogue + image: weaveworksdemos/catalogue:0.3.5 + command: ["/app"] + args: + - -port=80 + resources: + limits: + cpu: 200m + memory: 200Mi + requests: + cpu: 100m + memory: 100Mi + ports: + - containerPort: 80 + securityContext: + runAsNonRoot: true + runAsUser: 10001 + capabilities: + drop: + - all + add: + - NET_BIND_SERVICE + readOnlyRootFilesystem: true + livenessProbe: + httpGet: + path: /health + port: 80 + initialDelaySeconds: 300 + periodSeconds: 3 + readinessProbe: + httpGet: + path: /health + port: 80 + initialDelaySeconds: 180 + periodSeconds: 3 + nodeSelector: + beta.kubernetes.io/os: linux +--- +apiVersion: v1 +kind: Service +metadata: + name: catalogue + annotations: + prometheus.io/scrape: 'true' + labels: + name: catalogue + namespace: sock-shop +spec: + ports: + # the port that this service should serve on + - port: 80 + targetPort: 80 + selector: + name: catalogue +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: catalogue-db + labels: + name: catalogue-db + namespace: sock-shop +spec: + replicas: 1 + selector: + matchLabels: + name: catalogue-db + template: + metadata: + labels: + name: catalogue-db + spec: + containers: + - name: catalogue-db + image: weaveworksdemos/catalogue-db:0.3.0 + env: + - name: MYSQL_ROOT_PASSWORD + value: fake_password + - name: MYSQL_DATABASE + value: socksdb + ports: + - name: mysql + containerPort: 3306 + nodeSelector: + beta.kubernetes.io/os: linux +--- +apiVersion: v1 +kind: Service +metadata: + name: catalogue-db + labels: + name: catalogue-db + namespace: sock-shop +spec: + ports: + # the port that this service should serve on + - port: 3306 + targetPort: 3306 + selector: + name: catalogue-db +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: front-end + namespace: sock-shop +spec: + replicas: 1 + selector: + matchLabels: + name: front-end + template: + metadata: + labels: + name: front-end + annotations: + admission.datadoghq.com/dotnet-lib.version: "v2.53.2-musl" + spec: + containers: + - name: front-end + image: weaveworksdemos/front-end:0.3.12 + resources: + limits: + cpu: 300m + memory: 1000Mi + requests: + cpu: 100m + memory: 300Mi + ports: + - containerPort: 8079 + env: + - name: SESSION_REDIS + value: "true" + securityContext: + runAsNonRoot: true + runAsUser: 10001 + capabilities: + drop: + - all + readOnlyRootFilesystem: true + livenessProbe: + httpGet: + path: / + port: 8079 + initialDelaySeconds: 300 + periodSeconds: 3 + readinessProbe: + httpGet: + path: / + port: 8079 + initialDelaySeconds: 30 + periodSeconds: 3 + nodeSelector: + beta.kubernetes.io/os: linux +--- +apiVersion: v1 +kind: Service +metadata: + name: front-end + annotations: + prometheus.io/scrape: 'true' + labels: + name: front-end + namespace: sock-shop +spec: + type: NodePort + ports: + - port: 80 + targetPort: 8079 + nodePort: 30001 + selector: + name: front-end +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: orders + labels: + name: orders + namespace: sock-shop +spec: + replicas: 1 + selector: + matchLabels: + name: orders + template: + metadata: + labels: + name: orders + annotations: + admission.datadoghq.com/dotnet-lib.version: "v2.53.2-musl" + spec: + containers: + - name: orders + image: weaveworksdemos/orders:0.4.7 + env: + - name: JAVA_OPTS + value: -Xms64m -Xmx128m -XX:+UseG1GC -Djava.security.egd=file:/dev/urandom -Dspring.zipkin.enabled=false + resources: + limits: + cpu: 500m + memory: 500Mi + requests: + cpu: 100m + memory: 300Mi + ports: + - containerPort: 80 + securityContext: + runAsNonRoot: true + runAsUser: 10001 + capabilities: + drop: + - all + add: + - NET_BIND_SERVICE + readOnlyRootFilesystem: true + volumeMounts: + - mountPath: /tmp + name: tmp-volume + volumes: + - name: tmp-volume + emptyDir: + medium: Memory + nodeSelector: + beta.kubernetes.io/os: linux +--- +apiVersion: v1 +kind: Service +metadata: + name: orders + annotations: + prometheus.io/scrape: 'true' + labels: + name: orders + namespace: sock-shop +spec: + ports: + # the port that this service should serve on + - port: 80 + targetPort: 80 + selector: + name: orders +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: orders-db + labels: + name: orders-db + namespace: sock-shop +spec: + replicas: 1 + selector: + matchLabels: + name: orders-db + template: + metadata: + labels: + name: orders-db + spec: + containers: + - name: orders-db + image: mongo + ports: + - name: mongo + containerPort: 27017 + securityContext: + capabilities: + drop: + - all + add: + - CHOWN + - SETGID + - SETUID + readOnlyRootFilesystem: true + volumeMounts: + - mountPath: /tmp + name: tmp-volume + volumes: + - name: tmp-volume + emptyDir: + medium: Memory + nodeSelector: + beta.kubernetes.io/os: linux +--- +apiVersion: v1 +kind: Service +metadata: + name: orders-db + labels: + name: orders-db + namespace: sock-shop +spec: + ports: + # the port that this service should serve on + - port: 27017 + targetPort: 27017 + selector: + name: orders-db +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: payment + labels: + name: payment + namespace: sock-shop +spec: + replicas: 1 + selector: + matchLabels: + name: payment + template: + metadata: + labels: + name: payment + spec: + containers: + - name: payment + image: weaveworksdemos/payment:0.4.3 + resources: + limits: + cpu: 200m + memory: 200Mi + requests: + cpu: 99m + memory: 100Mi + ports: + - containerPort: 80 + securityContext: + runAsNonRoot: true + runAsUser: 10001 + capabilities: + drop: + - all + add: + - NET_BIND_SERVICE + readOnlyRootFilesystem: true + livenessProbe: + httpGet: + path: /health + port: 80 + initialDelaySeconds: 300 + periodSeconds: 3 + readinessProbe: + httpGet: + path: /health + port: 80 + initialDelaySeconds: 180 + periodSeconds: 3 + nodeSelector: + beta.kubernetes.io/os: linux +--- +apiVersion: v1 +kind: Service +metadata: + name: payment + annotations: + prometheus.io/scrape: 'true' + labels: + name: payment + namespace: sock-shop +spec: + ports: + # the port that this service should serve on + - port: 80 + targetPort: 80 + selector: + name: payment +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: queue-master + labels: + name: queue-master + namespace: sock-shop +spec: + replicas: 1 + selector: + matchLabels: + name: queue-master + template: + metadata: + labels: + name: queue-master + annotations: + admission.datadoghq.com/dotnet-lib.version: "v2.53.2-musl" + spec: + containers: + - name: queue-master + image: weaveworksdemos/queue-master:0.3.1 + env: + - name: JAVA_OPTS + value: -Xms64m -Xmx128m -XX:+UseG1GC -Djava.security.egd=file:/dev/urandom -Dspring.zipkin.enabled=false + resources: + limits: + cpu: 300m + memory: 500Mi + requests: + cpu: 100m + memory: 300Mi + ports: + - containerPort: 80 + nodeSelector: + beta.kubernetes.io/os: linux +--- +apiVersion: v1 +kind: Service +metadata: + name: queue-master + annotations: + prometheus.io/scrape: 'true' + labels: + name: queue-master + namespace: sock-shop +spec: + ports: + # the port that this service should serve on + - port: 80 + targetPort: 80 + selector: + name: queue-master +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: rabbitmq + labels: + name: rabbitmq + namespace: sock-shop +spec: + replicas: 1 + selector: + matchLabels: + name: rabbitmq + template: + metadata: + labels: + name: rabbitmq + annotations: + prometheus.io/scrape: "false" + spec: + containers: + - name: rabbitmq + image: rabbitmq:3.6.8-management + ports: + - containerPort: 15672 + name: management + - containerPort: 5672 + name: rabbitmq + securityContext: + capabilities: + drop: + - all + add: + - CHOWN + - SETGID + - SETUID + - DAC_OVERRIDE + readOnlyRootFilesystem: true + - name: rabbitmq-exporter + image: kbudde/rabbitmq-exporter + ports: + - containerPort: 9090 + name: exporter + nodeSelector: + beta.kubernetes.io/os: linux +--- +apiVersion: v1 +kind: Service +metadata: + name: rabbitmq + annotations: + prometheus.io/scrape: 'true' + prometheus.io/port: '9090' + labels: + name: rabbitmq + namespace: sock-shop +spec: + ports: + # the port that this service should serve on + - port: 5672 + name: rabbitmq + targetPort: 5672 + - port: 9090 + name: exporter + targetPort: exporter + protocol: TCP + selector: + name: rabbitmq +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: session-db + labels: + name: session-db + namespace: sock-shop +spec: + replicas: 1 + selector: + matchLabels: + name: session-db + template: + metadata: + labels: + name: session-db + annotations: + prometheus.io.scrape: "false" + admission.datadoghq.com/dotnet-lib.version: "v2.53.2-musl" + spec: + containers: + - name: session-db + image: redis:alpine + ports: + - name: redis + containerPort: 6379 + securityContext: + capabilities: + drop: + - all + add: + - CHOWN + - SETGID + - SETUID + readOnlyRootFilesystem: true + nodeSelector: + beta.kubernetes.io/os: linux +--- +apiVersion: v1 +kind: Service +metadata: + name: session-db + labels: + name: session-db + namespace: sock-shop +spec: + ports: + # the port that this service should serve on + - port: 6379 + targetPort: 6379 + selector: + name: session-db +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: shipping + labels: + name: shipping + namespace: sock-shop +spec: + replicas: 1 + selector: + matchLabels: + name: shipping + template: + metadata: + labels: + name: shipping + annotations: + admission.datadoghq.com/dotnet-lib.version: "v2.53.2-musl" + spec: + containers: + - name: shipping + image: weaveworksdemos/shipping:0.4.8 + env: + - name: ZIPKIN + value: zipkin.jaeger.svc.cluster.local + - name: JAVA_OPTS + value: -Xms64m -Xmx128m -XX:+UseG1GC -Djava.security.egd=file:/dev/urandom -Dspring.zipkin.enabled=false + resources: + limits: + cpu: 300m + memory: 500Mi + requests: + cpu: 100m + memory: 300Mi + ports: + - containerPort: 80 + securityContext: + runAsNonRoot: true + runAsUser: 10001 + capabilities: + drop: + - all + add: + - NET_BIND_SERVICE + readOnlyRootFilesystem: true + volumeMounts: + - mountPath: /tmp + name: tmp-volume + volumes: + - name: tmp-volume + emptyDir: + medium: Memory + nodeSelector: + beta.kubernetes.io/os: linux +--- +apiVersion: v1 +kind: Service +metadata: + name: shipping + annotations: + prometheus.io/scrape: 'true' + labels: + name: shipping + namespace: sock-shop +spec: + ports: + # the port that this service should serve on + - port: 80 + targetPort: 80 + selector: + name: shipping + +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: user + labels: + name: user + namespace: sock-shop +spec: + replicas: 1 + selector: + matchLabels: + name: user + template: + metadata: + labels: + name: user + spec: + containers: + - name: user + image: weaveworksdemos/user:0.4.7 + resources: + limits: + cpu: 300m + memory: 200Mi + requests: + cpu: 100m + memory: 100Mi + ports: + - containerPort: 80 + env: + - name: mongo + value: user-db:27017 + securityContext: + runAsNonRoot: true + runAsUser: 10001 + capabilities: + drop: + - all + add: + - NET_BIND_SERVICE + readOnlyRootFilesystem: true + livenessProbe: + httpGet: + path: /health + port: 80 + initialDelaySeconds: 300 + periodSeconds: 3 + readinessProbe: + httpGet: + path: /health + port: 80 + initialDelaySeconds: 180 + periodSeconds: 3 + nodeSelector: + beta.kubernetes.io/os: linux +--- +apiVersion: v1 +kind: Service +metadata: + name: user + annotations: + prometheus.io/scrape: 'true' + labels: + name: user + namespace: sock-shop +spec: + ports: + # the port that this service should serve on + - port: 80 + targetPort: 80 + selector: + name: user + +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: user-db + labels: + name: user-db + namespace: sock-shop +spec: + replicas: 1 + selector: + matchLabels: + name: user-db + template: + metadata: + labels: + name: user-db + spec: + containers: + - name: user-db + image: weaveworksdemos/user-db:0.3.0 + + ports: + - name: mongo + containerPort: 27017 + securityContext: + capabilities: + drop: + - all + add: + - CHOWN + - SETGID + - SETUID + readOnlyRootFilesystem: true + volumeMounts: + - mountPath: /tmp + name: tmp-volume + volumes: + - name: tmp-volume + emptyDir: + medium: Memory + nodeSelector: + beta.kubernetes.io/os: linux +--- +apiVersion: v1 +kind: Service +metadata: + name: user-db + labels: + name: user-db + namespace: sock-shop +spec: + ports: + # the port that this service should serve on + - port: 27017 + targetPort: 27017 + selector: + name: user-db diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_find_resource.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_find_resource.txt new file mode 100644 index 00000000000..54ea8e42b62 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_find_resource.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"deployment","keyword":"twingate-connector-2"}} +{"schema_version": "robusta:v1.0.0", "status": "error", "error": "Command `kubectl get -A --show-labels -o wide deployment | grep twingate-connector-2` failed with return code 1\nOutput:\n", "return_code": 1, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide deployment | grep twingate-connector-2", "params": {"kind": "deployment", "keyword": "twingate-connector-2"}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_find_resource_deployment_catalogue.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_find_resource_deployment_catalogue.txt new file mode 100644 index 00000000000..a9701246d7d --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_find_resource_deployment_catalogue.txt @@ -0,0 +1,4 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"deployment","keyword":"catalogue"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide deployment | grep catalogue", "params": {"kind": "deployment", "keyword": "catalogue"}} +sock-shop catalogue 1/1 1 1 49d catalogue weaveworksdemos/catalogue:0.3.5 name=catalogue name=catalogue +sock-shop catalogue-db 1/1 1 1 49d catalogue-db weaveworksdemos/catalogue-db:0.3.0 name=catalogue-db name=catalogue-db diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_get_by_kind_in_namespace.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_get_by_kind_in_namespace.txt new file mode 100644 index 00000000000..187ab3cd2b5 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_get_by_kind_in_namespace.txt @@ -0,0 +1,17 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_get_by_kind_in_namespace","match_params":{"kind":"pod","namespace":"sock-shop"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get --show-labels -o wide pod -n sock-shop", "params": {"kind": "pod", "namespace": "sock-shop"}} +NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES LABELS +carts-db-676c6b5865-rp4pg 1/1 Running 87 (3h37m ago) 27d 10.244.1.3 kind-double-node-worker name=carts-db,pod-template-hash=676c6b5865 +carts-f54496f6d-4bcjt 1/1 Running 14 (3h37m ago) 27d 10.244.1.5 kind-double-node-worker name=carts,pod-template-hash=f54496f6d +catalogue-db-c948fd796-r46nj 1/1 Running 78 (3h37m ago) 27d 10.244.1.35 kind-double-node-worker name=catalogue-db,pod-template-hash=c948fd796 +catalogue-f7687cb4-bjxf2 1/1 Running 14 (3h37m ago) 27d 10.244.1.42 kind-double-node-worker name=catalogue,pod-template-hash=f7687cb4 +front-end-6bc5876d74-4lbfd 1/1 Running 14 (3h37m ago) 27d 10.244.1.15 kind-double-node-worker name=front-end,pod-template-hash=6bc5876d74 +orders-697cb4957d-gf5j4 1/1 Running 14 (3h37m ago) 27d 10.244.1.48 kind-double-node-worker name=orders,pod-template-hash=697cb4957d +orders-db-658fc79675-ncmkl 1/1 Running 91 (3h37m ago) 27d 10.244.1.8 kind-double-node-worker name=orders-db,pod-template-hash=658fc79675 +payment-84bbbfd97f-82vmg 1/1 Running 14 (3h37m ago) 27d 10.244.1.6 kind-double-node-worker name=payment,pod-template-hash=84bbbfd97f +queue-master-566bfb8644-v2n4f 1/1 Running 14 (3h37m ago) 27d 10.244.1.54 kind-double-node-worker name=queue-master,pod-template-hash=566bfb8644 +rabbitmq-556cb847-qqtjf 2/2 Running 92 (3h37m ago) 27d 10.244.1.4 kind-double-node-worker name=rabbitmq,pod-template-hash=556cb847 +session-db-59cc4b855f-p66ck 1/1 Running 14 (3h37m ago) 27d 10.244.1.50 kind-double-node-worker name=session-db,pod-template-hash=59cc4b855f +shipping-c4d77b86d-z8jsh 1/1 Running 14 (3h37m ago) 27d 10.244.1.7 kind-double-node-worker name=shipping,pod-template-hash=c4d77b86d +user-574f64957c-xxwps 1/1 Running 72 (3h37m ago) 27d 10.244.1.9 kind-double-node-worker name=user,pod-template-hash=574f64957c +user-db-7f98f68489-bfpz5 1/1 Running 86 (3h37m ago) 27d 10.244.1.33 kind-double-node-worker name=user-db,pod-template-hash=7f98f68489 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_get_by_name.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_get_by_name.txt new file mode 100644 index 00000000000..24f096bbbcf --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_get_by_name.txt @@ -0,0 +1,4 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_get_by_name","match_params":{"kind":"deployment","name":"catalogue","namespace":"sock-shop"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get --show-labels -o wide deployment catalogue -n sock-shop", "params": {"kind": "deployment", "name": "catalogue", "namespace": "sock-shop"}} +NAME READY UP-TO-DATE AVAILABLE AGE CONTAINERS IMAGES SELECTOR LABELS +catalogue 1/1 1 1 27d catalogue weaveworksdemos/catalogue:0.3.5 name=catalogue name=catalogue diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_lineage_children.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_lineage_children.txt new file mode 100644 index 00000000000..58cd97fcb93 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/kubectl_lineage_children.txt @@ -0,0 +1,8 @@ +{"toolset_name":"kubernetes/kube-lineage-extras","tool_name":"kubectl_lineage_children","match_params":{"kind":"deployment","name":"catalogue","namespace":"sock-shop"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kube-lineage deployment catalogue -n sock-shop", "params": {"kind": "deployment", "name": "catalogue", "namespace": "sock-shop"}} +NAME READY STATUS AGE +Deployment/catalogue 1/1 27d +└── ReplicaSet/catalogue-f7687cb4 1/1 27d + └── Pod/catalogue-f7687cb4-bjxf2 1/1 Running 27d + └── Service/catalogue - 27d + └── EndpointSlice/catalogue-4cr5z - 27d diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/test_case.yaml new file mode 100644 index 00000000000..8d8be05cc28 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/43_slack_deployment_logs/test_case.yaml @@ -0,0 +1,16 @@ +user_prompt: "Fetch the logs for the last 6 hours of this deployment" +expected_output: "Unable to connect to Database" +before_test: | + kubectl apply -f ./helm/sock-shop.yaml + sleep 20 +after_test: | + kubectl delete -f ./helm/sock-shop.yaml || true +tags: + - medium + - kubernetes + - logs + +test_type: server + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/kubectl_describe_job_java-api-checker_ask-holmes-namespace-46.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/kubectl_describe_job_java-api-checker_ask-holmes-namespace-46.txt new file mode 100644 index 00000000000..d2904c22b16 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/kubectl_describe_job_java-api-checker_ask-holmes-namespace-46.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"job","name":"java-api-checker","namespace":"ask-holmes-namespace-46"}} +{"schema_version": "robusta:v1.0.0", "status": "error", "error": "Command `kubectl describe job java-api-checker -n ask-holmes-namespace-46` failed with return code 1\nOutput:\nError from server (NotFound): jobs.batch \"java-api-checker\" not found", "return_code": 1, "data": null, "url": null, "invocation": "kubectl describe job java-api-checker -n ask-holmes-namespace-46", "params": {"kind": "job", "name": "java-api-checker", "namespace": "ask-holmes-namespace-46"}} +Error from server (NotFound): jobs.batch "java-api-checker" not found diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/kubectl_find_resource_java-api-checker_job.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/kubectl_find_resource_java-api-checker_job.txt new file mode 100644 index 00000000000..c4b5d0ab43a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/kubectl_find_resource_java-api-checker_job.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"job","keyword":"java-api-checker"}} +{"schema_version": "robusta:v1.0.0", "status": "error", "error": "Command `kubectl get -A --show-labels -o wide job | grep java-api-checker` failed with return code 1\nOutput:\n", "return_code": 1, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide job | grep java-api-checker", "params": {"kind": "job", "keyword": "java-api-checker"}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/kubectl_logs.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/kubectl_logs.txt new file mode 100644 index 00000000000..57b26d7c0ec --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/kubectl_logs.txt @@ -0,0 +1,10 @@ +{"toolset_name": "kubernetes/logs", "tool_name": "fetch_pod_logs", "match_params": {"pod_name": "java-api-checker-mdr44", "namespace": "ask-holmes-namespace-46"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "fetch_pod_logs command", "params": {"pod_name": "java-api-checker-mdr44", "namespace": "ask-holmes-namespace-46"}} +stdout: +Java Network Exception: +All host(s) tried for db query failed (tried: prod-db:3333) - no available connection and the queue has reached its max size 256 +All host(s) tried for db query failed (tried: prod-db:3333) - no available connection and the queue has reached its max size 256 +All host(s) tried for db query failed (tried: prod-db:3333) - no available connection and the queue has reached its max size 256 +All host(s) tried for db query failed (tried: prod-db:3333) - no available connection and the queue has reached its max size 256 + +stderr: diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/manifest.yaml new file mode 100644 index 00000000000..eda4332dd78 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/manifest.yaml @@ -0,0 +1,15 @@ +apiVersion: batch/v1 +kind: Job +metadata: + name: typescript-transpiler + namespace: ts-46 +spec: + template: + spec: + containers: + - name: typescript-transpiler + image: busybox + command: ["/bin/sh", "-c"] + args: ["echo 'Java Network Exception: \nAll host(s) tried for db query failed (tried: prod-db:3333) - no available connection and the queue has reached its max size 256 \nAll host(s) tried for db query failed (tried: prod-db:3333) - no available connection and the queue has reached its max size 256 \nAll host(s) tried for db query failed (tried: prod-db:3333) - no available connection and the queue has reached its max size 256 \nAll host(s) tried for db query failed (tried: prod-db:3333) - no available connection and the queue has reached its max size 256'; sleep 60; exit 1"] + restartPolicy: Never + backoffLimit: 1 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/test_case.yaml new file mode 100644 index 00000000000..ebb6b366241 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/test_case.yaml @@ -0,0 +1,19 @@ +user_prompt: "What is the issue with job typescript-transpiler in namespace `ts-46`" +tags: + - logs + - medium + - kubernetes +skip: true +skip_reason: "This eval makes no sense - Holmes can't possibly know the answer unless it's connected to an external logs source. We need to add an external logs source for this eval, then re-enable it and it will be a great test for cases where job is no longer in cluster but we have persistent logs and can answer anyway" +expected_output: + - failure to connect to the database at `prod-db:3333` +before_test: | + kubectl create namespace ts-46 + kubectl apply -f ./manifest.yaml + sleep 60 + kubectl delete -f ./manifest.yaml + sleep 20 +after_test: | + kubectl delete namespace ts-46 --ignore-not-found --wait=false +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/toolsets.yaml new file mode 100644 index 00000000000..0c666eab6f9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/46_job_crashing_no_longer_exists/toolsets.yaml @@ -0,0 +1,5 @@ +toolsets: + kubernetes/core: + enabled: true + kubernetes/logs: + enabled: true diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/fetch_pod_logs_ask-holmes-namespace-47_long-logs-app-84fbcbfb5f-57zrx.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/fetch_pod_logs_ask-holmes-namespace-47_long-logs-app-84fbcbfb5f-57zrx.txt new file mode 100644 index 00000000000..6a29638d157 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/fetch_pod_logs_ask-holmes-namespace-47_long-logs-app-84fbcbfb5f-57zrx.txt @@ -0,0 +1,59733 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"long-logs-app-84fbcbfb5f-57zrx","namespace":"ask-holmes-namespace-47"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "ask-holmes-namespace-47", "pod_name": "long-logs-app-84fbcbfb5f-57zrx", "start_time": null, "end_time": null, "filter": null, "limit": null}} +{"kind":"Status","apiVersion":"v1","metadata":{},"status":"Failure","message":"previous terminated container \"long-logs-app\" in pod \"long-logs-app-84fbcbfb5f-57zrx\" not found","reason":"BadRequest","code":400} + +Generating logs until 5000000 tokens... +2025-06-18T13:49:04.581Z [INFO] user-service - Operation: email_sent - Processing time: 737ms - RequestID: r1bsgz2l6km +2025-06-18T13:49:04.681Z [INFO] order-service - Operation: cache_miss - Processing time: 697ms - RequestID: vmzv72vtt2s +2025-06-18T13:49:04.781Z [DEBUG] payment-service - POST /api/v1/payments - Status: 404 - Response time: 399ms - IP: 192.168.141.100 - User: user_1029 - RequestID: s3fqstj7ted +2025-06-18T13:49:04.881Z [INFO] notification-service - DELETE /api/v1/payments - Status: 500 - Response time: 1410ms - IP: 192.168.28.146 - User: user_1015 - RequestID: nspcjsd0f7 +2025-06-18T13:49:04.981Z [INFO] user-service - Auth event: password_change - User: user_1083 - IP: 192.168.11.60 - RequestID: jsrfv1l7nuh +2025-06-18T13:49:05.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 841ms - RequestID: tuxbrf8u6i +2025-06-18T13:49:05.181Z [INFO] order-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1759ms - IP: 192.168.79.143 - User: user_1090 - RequestID: w0m324006eg +2025-06-18T13:49:05.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 839ms - RequestID: kq1buzihibh +2025-06-18T13:49:05.381Z [INFO] user-service - GET /api/v1/auth/login - Status: 200 - Response time: 441ms - IP: 192.168.53.133 - User: user_1020 - RequestID: 76u7z5i8jhr +2025-06-18T13:49:05.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.68.158 - RequestID: ltvvflu1zt +2025-06-18T13:49:05.581Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 289ms - Rows affected: 61 - RequestID: oz6e3ibto8 +2025-06-18T13:49:05.681Z [INFO] payment-service - Operation: notification_queued - Processing time: 882ms - RequestID: mtiif7tnau +2025-06-18T13:49:05.781Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 1040ms - RequestID: p7z0vidzjs +2025-06-18T13:49:05.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1066 - IP: 192.168.196.226 - RequestID: smaqt48s6bk +2025-06-18T13:49:05.981Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 401 - Response time: 149ms - IP: 192.168.141.100 - User: user_1096 - RequestID: xqfe8aq9yel +2025-06-18T13:49:06.081Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 570ms - RequestID: hic1c3fcba7 +2025-06-18T13:49:06.181Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 84ms - Rows affected: 19 - RequestID: enm9gphr24 +2025-06-18T13:49:06.281Z [INFO] notification-service - Operation: notification_queued - Processing time: 874ms - RequestID: p0dfpqvqu3o +2025-06-18T13:49:06.381Z [DEBUG] user-service - Operation: cache_hit - Processing time: 272ms - RequestID: e8y19gbjcjl +2025-06-18T13:49:06.481Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 130ms - Rows affected: 28 - RequestID: h2pjvz9xjd +2025-06-18T13:49:06.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.1.152 - RequestID: jydt1xcvjq9 +2025-06-18T13:49:06.681Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 1047ms - RequestID: ke7yfuwfntd +2025-06-18T13:49:06.781Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 141ms - Rows affected: 50 - RequestID: y6btn4jcy0g +2025-06-18T13:49:06.881Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 510ms - IP: 192.168.141.100 - User: user_1009 - RequestID: mgvw21wycl +2025-06-18T13:49:06.981Z [TRACE] payment-service - POST /api/v1/payments - Status: 401 - Response time: 1964ms - IP: 192.168.1.152 - User: user_1059 - RequestID: t5oe79o0gw +2025-06-18T13:49:07.081Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 908ms - RequestID: j2gc2wou6vs +2025-06-18T13:49:07.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.10.184 - RequestID: u36g9clkwms +2025-06-18T13:49:07.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.64.33 - RequestID: uujyj64395 +2025-06-18T13:49:07.381Z [INFO] user-service - Auth event: logout - User: user_1078 - IP: 192.168.33.76 - RequestID: 0ynpxifvslc +2025-06-18T13:49:07.481Z [TRACE] notification-service - Auth event: password_change - User: user_1015 - IP: 192.168.46.63 - RequestID: s72x53gwdh +2025-06-18T13:49:07.581Z [TRACE] auth-service - Operation: email_sent - Processing time: 100ms - RequestID: ea86kt6rqya +2025-06-18T13:49:07.681Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 450ms - RequestID: zbatufepru +2025-06-18T13:49:07.781Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 103ms - RequestID: ekdtiuj4cz5 +2025-06-18T13:49:07.881Z [TRACE] user-service - Database DELETE on orders - Execution time: 299ms - Rows affected: 80 - RequestID: 6xms1qu1ejc +2025-06-18T13:49:07.981Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 907ms - RequestID: l0wqq4yc74 +2025-06-18T13:49:08.081Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 162ms - RequestID: gg87cxjzmyi +2025-06-18T13:49:08.181Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1984ms - IP: 192.168.13.72 - User: user_1079 - RequestID: bds0zru7vge +2025-06-18T13:49:08.281Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 198ms - Rows affected: 37 - RequestID: eu8c4qtjqkt +2025-06-18T13:49:08.381Z [DEBUG] order-service - PUT /api/v1/payments - Status: 400 - Response time: 877ms - IP: 192.168.138.123 - User: user_1056 - RequestID: 8g1v9lsolnf +2025-06-18T13:49:08.481Z [INFO] order-service - Database DELETE on sessions - Execution time: 66ms - Rows affected: 89 - RequestID: 9sw2syx8pz +2025-06-18T13:49:08.581Z [TRACE] payment-service - Database SELECT on payments - Execution time: 342ms - Rows affected: 27 - RequestID: 7al3lkcfej2 +2025-06-18T13:49:08.681Z [INFO] notification-service - GET /api/v1/inventory - Status: 502 - Response time: 886ms - IP: 192.168.32.38 - User: user_1059 - RequestID: eom31jz7jii +2025-06-18T13:49:08.781Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1545ms - IP: 192.168.44.5 - User: user_1082 - RequestID: uw6r3ioshek +2025-06-18T13:49:08.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1044 - IP: 192.168.79.141 - RequestID: 2qd2n12kofl +2025-06-18T13:49:08.981Z [TRACE] notification-service - Database INSERT on products - Execution time: 73ms - Rows affected: 79 - RequestID: sghnim0sir +2025-06-18T13:49:09.081Z [INFO] payment-service - Auth event: login_success - User: user_1061 - IP: 192.168.33.76 - RequestID: uirzmul18x9 +2025-06-18T13:49:09.181Z [INFO] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 1806ms - IP: 192.168.232.72 - User: user_1059 - RequestID: s3ynsk0fvpc +2025-06-18T13:49:09.281Z [INFO] auth-service - PUT /api/v1/payments - Status: 201 - Response time: 179ms - IP: 192.168.144.38 - User: user_1010 - RequestID: 7blh49ewye8 +2025-06-18T13:49:09.381Z [DEBUG] auth-service - Operation: email_sent - Processing time: 902ms - RequestID: wzf869ryz1i +2025-06-18T13:49:09.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.1.152 - RequestID: 2bkg0vhkycg +2025-06-18T13:49:09.581Z [INFO] order-service - Operation: inventory_updated - Processing time: 611ms - RequestID: kejvy3uxzmi +2025-06-18T13:49:09.681Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 655ms - RequestID: owtuvx8m7y +2025-06-18T13:49:09.781Z [TRACE] user-service - Database INSERT on orders - Execution time: 247ms - Rows affected: 27 - RequestID: 3nzbin4gj7l +2025-06-18T13:49:09.881Z [INFO] user-service - Database DELETE on products - Execution time: 352ms - Rows affected: 5 - RequestID: c6cw7exqi6 +2025-06-18T13:49:09.981Z [TRACE] auth-service - Database UPDATE on products - Execution time: 272ms - Rows affected: 56 - RequestID: uhn8p6c3ayt +2025-06-18T13:49:10.081Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 500 - Response time: 382ms - IP: 192.168.104.37 - User: user_1013 - RequestID: f318cpljc5c +2025-06-18T13:49:10.181Z [INFO] order-service - PUT /api/v1/payments - Status: 403 - Response time: 1319ms - IP: 192.168.158.144 - User: user_1056 - RequestID: bbqge4vzyzw +2025-06-18T13:49:10.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 860ms - RequestID: 7hioj9mns7b +2025-06-18T13:49:10.381Z [INFO] user-service - Database DELETE on orders - Execution time: 158ms - Rows affected: 30 - RequestID: rgawkjsi5mc +2025-06-18T13:49:10.481Z [DEBUG] user-service - POST /api/v1/payments - Status: 503 - Response time: 1388ms - IP: 192.168.11.60 - User: user_1039 - RequestID: 80e1k623oob +2025-06-18T13:49:10.581Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 197ms - Rows affected: 60 - RequestID: 6kmsvb0mvvr +2025-06-18T13:49:10.681Z [TRACE] auth-service - Operation: notification_queued - Processing time: 698ms - RequestID: suq0tc1cwar +2025-06-18T13:49:10.781Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 403 - Response time: 1760ms - IP: 192.168.247.134 - User: user_1065 - RequestID: k447ky7lzu +2025-06-18T13:49:10.881Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 285ms - Rows affected: 79 - RequestID: 0gen4z1skfq +2025-06-18T13:49:10.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1089 - IP: 192.168.133.7 - RequestID: cen13jj0jfw +2025-06-18T13:49:11.081Z [INFO] payment-service - Operation: webhook_sent - Processing time: 139ms - RequestID: 7xgmbimazzu +2025-06-18T13:49:11.181Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 287ms - Rows affected: 55 - RequestID: faezxe8fx6p +2025-06-18T13:49:11.281Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 1ms - Rows affected: 51 - RequestID: kwr6hgyh5s8 +2025-06-18T13:49:11.381Z [TRACE] order-service - Auth event: login_success - User: user_1037 - IP: 192.168.13.72 - RequestID: a3rxcgsgjto +2025-06-18T13:49:11.481Z [DEBUG] notification-service - Auth event: logout - User: user_1090 - IP: 192.168.240.169 - RequestID: yxcff182d3 +2025-06-18T13:49:11.581Z [DEBUG] order-service - Database INSERT on payments - Execution time: 473ms - Rows affected: 92 - RequestID: mfhxvk4m7os +2025-06-18T13:49:11.681Z [INFO] payment-service - Operation: email_sent - Processing time: 495ms - RequestID: q8oeldfkyn +2025-06-18T13:49:11.781Z [INFO] order-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.79.141 - RequestID: i6ugvyh6w1i +2025-06-18T13:49:11.881Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 88ms - Rows affected: 93 - RequestID: whm0icwgru +2025-06-18T13:49:11.981Z [INFO] order-service - Database DELETE on orders - Execution time: 179ms - Rows affected: 94 - RequestID: pd6xb95ggb +2025-06-18T13:49:12.081Z [TRACE] auth-service - Database UPDATE on users - Execution time: 427ms - Rows affected: 68 - RequestID: 0jbsfuke35lt +2025-06-18T13:49:12.181Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 308ms - Rows affected: 96 - RequestID: kxn7v70d8yn +2025-06-18T13:49:12.281Z [INFO] order-service - Auth event: login_failed - User: user_1098 - IP: 192.168.240.169 - RequestID: u2n5soigaf +2025-06-18T13:49:12.381Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 495ms - Rows affected: 8 - RequestID: 5fhtgarmfjb +2025-06-18T13:49:12.481Z [INFO] auth-service - POST /api/v1/users - Status: 200 - Response time: 342ms - IP: 192.168.79.116 - User: user_1087 - RequestID: 33zjbm4qdvd +2025-06-18T13:49:12.581Z [TRACE] order-service - POST /api/v1/auth/login - Status: 201 - Response time: 624ms - IP: 192.168.133.7 - User: user_1006 - RequestID: wu97gqh8tgj +2025-06-18T13:49:12.681Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.227.77 - RequestID: mvrw28g6v88 +2025-06-18T13:49:12.781Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 260ms - IP: 192.168.170.215 - User: user_1002 - RequestID: 64vxtanv84a +2025-06-18T13:49:12.881Z [TRACE] order-service - Operation: cache_miss - Processing time: 989ms - RequestID: ni1yv18buv9 +2025-06-18T13:49:12.981Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1626ms - IP: 192.168.68.158 - User: user_1003 - RequestID: klzex2afb99 +2025-06-18T13:49:13.081Z [TRACE] payment-service - Operation: email_sent - Processing time: 328ms - RequestID: tna0d26who +2025-06-18T13:49:13.181Z [INFO] order-service - POST /api/v1/payments - Status: 400 - Response time: 1811ms - IP: 192.168.79.141 - User: user_1069 - RequestID: g6blru3sd2q +2025-06-18T13:49:13.281Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.10.184 - RequestID: qgsl0adpyci +2025-06-18T13:49:13.381Z [TRACE] notification-service - Database SELECT on users - Execution time: 11ms - Rows affected: 76 - RequestID: a2ogta1q3t5 +2025-06-18T13:49:13.481Z [INFO] notification-service - Operation: inventory_updated - Processing time: 126ms - RequestID: flai6yj72gs +2025-06-18T13:49:13.581Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1194ms - IP: 192.168.97.87 - User: user_1017 - RequestID: pllhyf8rnta +2025-06-18T13:49:13.681Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 749ms - RequestID: mzwm6zlzxp +2025-06-18T13:49:13.781Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 338ms - Rows affected: 97 - RequestID: y890mutnads +2025-06-18T13:49:13.881Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 226ms - Rows affected: 28 - RequestID: nsm7z69tw +2025-06-18T13:49:13.981Z [INFO] notification-service - POST /api/v1/orders - Status: 201 - Response time: 534ms - IP: 192.168.32.38 - User: user_1048 - RequestID: w4f7zfu3uar +2025-06-18T13:49:14.081Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 403 - Response time: 1841ms - IP: 192.168.1.152 - User: user_1041 - RequestID: o2kr3w3ak8b +2025-06-18T13:49:14.181Z [TRACE] order-service - Database INSERT on users - Execution time: 54ms - Rows affected: 78 - RequestID: 20azwmiqx0j +2025-06-18T13:49:14.281Z [INFO] auth-service - Auth event: login_success - User: user_1054 - IP: 192.168.53.133 - RequestID: mkwckr0mms +2025-06-18T13:49:14.381Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 237ms - Rows affected: 42 - RequestID: qzrvffsun1p +2025-06-18T13:49:14.481Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 925ms - IP: 192.168.113.218 - User: user_1084 - RequestID: jl299q3ceqo +2025-06-18T13:49:14.581Z [INFO] inventory-service - Operation: cache_miss - Processing time: 415ms - RequestID: hh4m67uc6ea +2025-06-18T13:49:14.681Z [DEBUG] order-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.227.233 - RequestID: eywtv7i0se +2025-06-18T13:49:14.781Z [DEBUG] payment-service - Database DELETE on users - Execution time: 251ms - Rows affected: 65 - RequestID: fevn77te7x +2025-06-18T13:49:14.881Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1960ms - IP: 192.168.104.37 - User: user_1033 - RequestID: 0226q17uoe3 +2025-06-18T13:49:14.981Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 483ms - Rows affected: 72 - RequestID: bk6r9kzmhxe +2025-06-18T13:49:15.081Z [TRACE] auth-service - Operation: cache_hit - Processing time: 151ms - RequestID: 65xb5kgd415 +2025-06-18T13:49:15.181Z [TRACE] order-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.100.240 - RequestID: zkn94ycne4 +2025-06-18T13:49:15.281Z [INFO] order-service - Auth event: login_success - User: user_1060 - IP: 192.168.68.128 - RequestID: 6hmqaqqxn7e +2025-06-18T13:49:15.381Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 242ms - IP: 192.168.187.199 - User: user_1081 - RequestID: mqfgky8a5zr +2025-06-18T13:49:15.481Z [TRACE] order-service - GET /api/v1/orders - Status: 503 - Response time: 1296ms - IP: 192.168.174.114 - User: user_1074 - RequestID: qzzqz1e0s58 +2025-06-18T13:49:15.581Z [DEBUG] inventory-service - Auth event: login_success - User: user_1035 - IP: 192.168.79.141 - RequestID: 1q9di9tnw36 +2025-06-18T13:49:15.681Z [TRACE] payment-service - Operation: notification_queued - Processing time: 228ms - RequestID: x9rkvtjps0m +2025-06-18T13:49:15.781Z [DEBUG] payment-service - PUT /api/v1/users - Status: 500 - Response time: 1530ms - IP: 192.168.14.77 - User: user_1058 - RequestID: pvca382iw1 +2025-06-18T13:49:15.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.64.33 - RequestID: sz9m62wbjdd +2025-06-18T13:49:15.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.196.226 - RequestID: 1sb55t8qpp9 +2025-06-18T13:49:16.081Z [TRACE] user-service - Auth event: logout - User: user_1025 - IP: 192.168.227.77 - RequestID: wx6oijjkqlc +2025-06-18T13:49:16.181Z [INFO] order-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.247.134 - RequestID: 3dtezhohxep +2025-06-18T13:49:16.281Z [DEBUG] auth-service - POST /api/v1/orders - Status: 500 - Response time: 91ms - IP: 192.168.100.240 - User: user_1010 - RequestID: uycw5ut19as +2025-06-18T13:49:16.381Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 845ms - RequestID: sa80y98hbke +2025-06-18T13:49:16.481Z [INFO] user-service - Operation: inventory_updated - Processing time: 1026ms - RequestID: fkqpwt5gx4 +2025-06-18T13:49:16.581Z [TRACE] auth-service - Operation: cache_hit - Processing time: 489ms - RequestID: y1blq5o6c5 +2025-06-18T13:49:16.681Z [TRACE] auth-service - Auth event: password_change - User: user_1069 - IP: 192.168.158.144 - RequestID: qu7ufbt97o9 +2025-06-18T13:49:16.781Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1387ms - IP: 192.168.242.165 - User: user_1001 - RequestID: lj3v1md5dqp +2025-06-18T13:49:16.881Z [INFO] user-service - DELETE /api/v1/orders - Status: 502 - Response time: 875ms - IP: 192.168.181.225 - User: user_1075 - RequestID: kqweyqaskj +2025-06-18T13:49:16.981Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 771ms - RequestID: wlorokkas8 +2025-06-18T13:49:17.081Z [INFO] order-service - Auth event: password_change - User: user_1031 - IP: 192.168.53.133 - RequestID: als3ewx7h4m +2025-06-18T13:49:17.181Z [INFO] notification-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.144.38 - RequestID: htiuo9cj5yt +2025-06-18T13:49:17.281Z [DEBUG] payment-service - Operation: email_sent - Processing time: 737ms - RequestID: jx6n0f29n6 +2025-06-18T13:49:17.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 891ms - RequestID: qeopczl72mm +2025-06-18T13:49:17.481Z [TRACE] user-service - Operation: payment_processed - Processing time: 233ms - RequestID: m7fl7bxkg7b +2025-06-18T13:49:17.581Z [DEBUG] user-service - PUT /api/v1/payments - Status: 500 - Response time: 520ms - IP: 192.168.133.7 - User: user_1098 - RequestID: 541s8s5cfdu +2025-06-18T13:49:17.681Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 401 - Response time: 1907ms - IP: 192.168.46.63 - User: user_1029 - RequestID: eyoymebttva +2025-06-18T13:49:17.781Z [TRACE] payment-service - GET /api/v1/users - Status: 503 - Response time: 304ms - IP: 192.168.68.158 - User: user_1063 - RequestID: xpljf1xvlud +2025-06-18T13:49:17.881Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 500 - Response time: 1419ms - IP: 192.168.227.77 - User: user_1023 - RequestID: 55pgec0yo9 +2025-06-18T13:49:17.981Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 98ms - RequestID: i650taj30a +2025-06-18T13:49:18.081Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1497ms - IP: 192.168.158.144 - User: user_1080 - RequestID: ewoajdqkocd +2025-06-18T13:49:18.181Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.133.7 - RequestID: 2eu1ef8zw3u +2025-06-18T13:49:18.281Z [DEBUG] auth-service - Database DELETE on products - Execution time: 284ms - Rows affected: 44 - RequestID: 1vjnnehlaxw +2025-06-18T13:49:18.381Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 402ms - Rows affected: 33 - RequestID: a8wedrzyim +2025-06-18T13:49:18.481Z [DEBUG] payment-service - Auth event: login_failed - User: user_1043 - IP: 192.168.229.123 - RequestID: 1ydkp26l7t3 +2025-06-18T13:49:18.581Z [INFO] payment-service - Operation: webhook_sent - Processing time: 413ms - RequestID: 0as88pgqan9t +2025-06-18T13:49:18.681Z [TRACE] inventory-service - Auth event: login_success - User: user_1095 - IP: 192.168.189.103 - RequestID: 3krz4vk9kyn +2025-06-18T13:49:18.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 647ms - RequestID: ipvt0i9t8sd +2025-06-18T13:49:18.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1085 - IP: 192.168.174.114 - RequestID: 68i4tz3ewy +2025-06-18T13:49:18.981Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 38ms - Rows affected: 11 - RequestID: tbaegk6c47 +2025-06-18T13:49:19.081Z [TRACE] user-service - Auth event: password_change - User: user_1005 - IP: 192.168.68.158 - RequestID: wuh03htc2w +2025-06-18T13:49:19.181Z [TRACE] order-service - Database UPDATE on payments - Execution time: 350ms - Rows affected: 9 - RequestID: 3p7nzmsvcxn +2025-06-18T13:49:19.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1043 - IP: 192.168.53.133 - RequestID: h4tshaspwpu +2025-06-18T13:49:19.381Z [INFO] payment-service - POST /api/v1/users - Status: 200 - Response time: 1142ms - IP: 192.168.240.169 - User: user_1033 - RequestID: bqjla41z26h +2025-06-18T13:49:19.481Z [INFO] order-service - Database SELECT on users - Execution time: 406ms - Rows affected: 81 - RequestID: hr1uhsr4wi8 +2025-06-18T13:49:19.581Z [INFO] payment-service - Operation: order_created - Processing time: 61ms - RequestID: 26c9kwvzwj1 +2025-06-18T13:49:19.681Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 502 - Response time: 452ms - IP: 192.168.247.134 - User: user_1022 - RequestID: ez90c4v56kj +2025-06-18T13:49:19.781Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 897ms - RequestID: onr73qbr59 +2025-06-18T13:49:19.881Z [TRACE] inventory-service - Auth event: password_change - User: user_1037 - IP: 192.168.227.233 - RequestID: 6647jm7vxj9 +2025-06-18T13:49:19.981Z [DEBUG] user-service - Database DELETE on payments - Execution time: 241ms - Rows affected: 68 - RequestID: j8dzu72c7pn +2025-06-18T13:49:20.081Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 637ms - IP: 192.168.247.134 - User: user_1047 - RequestID: xtuvl6fuffl +2025-06-18T13:49:20.181Z [INFO] order-service - DELETE /api/v1/payments - Status: 502 - Response time: 692ms - IP: 192.168.79.141 - User: user_1060 - RequestID: axnfl9ujsrc +2025-06-18T13:49:20.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 490ms - RequestID: zqxvkrdo86r +2025-06-18T13:49:20.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 370ms - RequestID: zotvtxw1ouc +2025-06-18T13:49:20.481Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 385ms - Rows affected: 67 - RequestID: qxtzguok4nc +2025-06-18T13:49:20.581Z [INFO] user-service - Operation: cache_miss - Processing time: 1042ms - RequestID: u9l394jz2zo +2025-06-18T13:49:20.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1032 - IP: 192.168.104.37 - RequestID: t11md676glk +2025-06-18T13:49:20.781Z [TRACE] user-service - Database DELETE on users - Execution time: 215ms - Rows affected: 13 - RequestID: dempu1ytd9j +2025-06-18T13:49:20.881Z [TRACE] payment-service - Operation: order_created - Processing time: 267ms - RequestID: ko2524ql8fe +2025-06-18T13:49:20.981Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 502 - Response time: 42ms - IP: 192.168.189.103 - User: user_1007 - RequestID: dtnh4vxa1mp +2025-06-18T13:49:21.081Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 579ms - RequestID: u8dr56hzvke +2025-06-18T13:49:21.181Z [TRACE] notification-service - Database DELETE on users - Execution time: 39ms - Rows affected: 14 - RequestID: 7uymmaf9rth +2025-06-18T13:49:21.281Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1285ms - IP: 192.168.1.152 - User: user_1079 - RequestID: 7h1wm3b4m8n +2025-06-18T13:49:21.381Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 126ms - Rows affected: 82 - RequestID: v5uue1sfjxc +2025-06-18T13:49:21.481Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1642ms - IP: 192.168.174.114 - User: user_1012 - RequestID: 7j7ezpvspom +2025-06-18T13:49:21.581Z [INFO] notification-service - Auth event: login_success - User: user_1063 - IP: 192.168.11.60 - RequestID: xkgjh7fbg1 +2025-06-18T13:49:21.681Z [INFO] inventory-service - Auth event: password_change - User: user_1079 - IP: 192.168.247.134 - RequestID: tnbvey7fw +2025-06-18T13:49:21.781Z [DEBUG] payment-service - Auth event: login_failed - User: user_1001 - IP: 192.168.28.146 - RequestID: yt4rcyfmhh +2025-06-18T13:49:21.881Z [TRACE] payment-service - Auth event: login_success - User: user_1066 - IP: 192.168.36.218 - RequestID: taranvi881 +2025-06-18T13:49:21.981Z [INFO] user-service - Auth event: login_success - User: user_1078 - IP: 192.168.181.225 - RequestID: 788ufy8zboq +2025-06-18T13:49:22.081Z [DEBUG] inventory-service - Operation: order_created - Processing time: 575ms - RequestID: 7ithpnknouf +2025-06-18T13:49:22.181Z [TRACE] payment-service - Operation: cache_miss - Processing time: 390ms - RequestID: tnevxpqh3p +2025-06-18T13:49:22.281Z [TRACE] order-service - DELETE /api/v1/users - Status: 200 - Response time: 1199ms - IP: 192.168.1.152 - User: user_1073 - RequestID: 9ba24jkqntn +2025-06-18T13:49:22.381Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 141ms - Rows affected: 17 - RequestID: 6mzzsosw3en +2025-06-18T13:49:22.481Z [INFO] order-service - Auth event: login_success - User: user_1044 - IP: 192.168.79.116 - RequestID: 1wuedahif3h +2025-06-18T13:49:22.581Z [INFO] payment-service - GET /api/v1/payments - Status: 401 - Response time: 1965ms - IP: 192.168.235.117 - User: user_1057 - RequestID: 06p0v940jmyi +2025-06-18T13:49:22.681Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1215ms - IP: 192.168.100.240 - User: user_1072 - RequestID: 7mb48kyhlwx +2025-06-18T13:49:22.781Z [TRACE] user-service - Operation: notification_queued - Processing time: 681ms - RequestID: orkev5nfai +2025-06-18T13:49:22.881Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 188ms - Rows affected: 21 - RequestID: ju4ansokjpl +2025-06-18T13:49:22.981Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 401 - Response time: 152ms - IP: 192.168.68.158 - User: user_1079 - RequestID: b5sd38tkkmp +2025-06-18T13:49:23.081Z [DEBUG] user-service - Auth event: logout - User: user_1065 - IP: 192.168.242.165 - RequestID: b5o7q57fj5 +2025-06-18T13:49:23.181Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 454ms - Rows affected: 28 - RequestID: gsdmp64b7u9 +2025-06-18T13:49:23.281Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1960ms - IP: 192.168.53.133 - User: user_1096 - RequestID: vdefp9ormli +2025-06-18T13:49:23.381Z [DEBUG] notification-service - Database DELETE on users - Execution time: 457ms - Rows affected: 51 - RequestID: strh6p66ovf +2025-06-18T13:49:23.481Z [INFO] payment-service - Database SELECT on products - Execution time: 331ms - Rows affected: 30 - RequestID: g9ecx9nq8vo +2025-06-18T13:49:23.581Z [TRACE] auth-service - Database SELECT on payments - Execution time: 282ms - Rows affected: 4 - RequestID: 3cfbf3st32p +2025-06-18T13:49:23.681Z [TRACE] notification-service - Operation: notification_queued - Processing time: 429ms - RequestID: s5w4f1p1nko +2025-06-18T13:49:23.781Z [INFO] user-service - Auth event: logout - User: user_1087 - IP: 192.168.100.240 - RequestID: enwd9sirdhp +2025-06-18T13:49:23.881Z [INFO] payment-service - Operation: webhook_sent - Processing time: 107ms - RequestID: a06ghkb7wns +2025-06-18T13:49:23.981Z [INFO] payment-service - Operation: notification_queued - Processing time: 686ms - RequestID: mavzdgelr7o +2025-06-18T13:49:24.081Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 133ms - RequestID: 9q1mchr3eut +2025-06-18T13:49:24.181Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 503 - Response time: 1343ms - IP: 192.168.229.123 - User: user_1053 - RequestID: 3x3pb6agybb +2025-06-18T13:49:24.281Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 400ms - Rows affected: 41 - RequestID: u6y6895jn5h +2025-06-18T13:49:24.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.159.94 - RequestID: wlilrun4z8m +2025-06-18T13:49:24.481Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 574ms - RequestID: 5ckplsvd6oo +2025-06-18T13:49:24.581Z [INFO] user-service - Database SELECT on orders - Execution time: 219ms - Rows affected: 45 - RequestID: p7e4xneonz +2025-06-18T13:49:24.681Z [INFO] order-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1874ms - IP: 192.168.133.7 - User: user_1084 - RequestID: 4jf07aikjjc +2025-06-18T13:49:24.781Z [DEBUG] auth-service - GET /api/v1/payments - Status: 502 - Response time: 262ms - IP: 192.168.104.37 - User: user_1068 - RequestID: 1hrgikbk56c +2025-06-18T13:49:24.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 237ms - RequestID: airjkj18thg +2025-06-18T13:49:24.981Z [TRACE] order-service - Database INSERT on orders - Execution time: 221ms - Rows affected: 91 - RequestID: qvfcb50jx6 +2025-06-18T13:49:25.081Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 201 - Response time: 1123ms - IP: 192.168.141.100 - User: user_1032 - RequestID: 3v9u57j8e4o +2025-06-18T13:49:25.181Z [INFO] payment-service - Database UPDATE on users - Execution time: 475ms - Rows affected: 33 - RequestID: yh0ollu0elh +2025-06-18T13:49:25.281Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 1048ms - RequestID: v0bpcfqf5d +2025-06-18T13:49:25.381Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 106ms - Rows affected: 68 - RequestID: zmmpkicszn +2025-06-18T13:49:25.481Z [TRACE] inventory-service - Auth event: login_failed - User: user_1060 - IP: 192.168.44.5 - RequestID: 40c0e1ybs6i +2025-06-18T13:49:25.581Z [INFO] inventory-service - Auth event: login_success - User: user_1056 - IP: 192.168.170.215 - RequestID: iob0c5nhqy +2025-06-18T13:49:25.681Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 418ms - Rows affected: 87 - RequestID: 9nri730fj7o +2025-06-18T13:49:25.781Z [INFO] inventory-service - GET /api/v1/payments - Status: 500 - Response time: 1281ms - IP: 192.168.68.158 - User: user_1057 - RequestID: o5q7cic17is +2025-06-18T13:49:25.881Z [INFO] inventory-service - Database SELECT on orders - Execution time: 155ms - Rows affected: 84 - RequestID: srearkbntjn +2025-06-18T13:49:25.981Z [INFO] notification-service - Auth event: logout - User: user_1035 - IP: 192.168.1.152 - RequestID: 04ul0qfvz0s3 +2025-06-18T13:49:26.081Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 156ms - Rows affected: 94 - RequestID: suak0b9ann +2025-06-18T13:49:26.181Z [TRACE] payment-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.167.32 - RequestID: ya0qg2red8j +2025-06-18T13:49:26.281Z [DEBUG] notification-service - Auth event: logout - User: user_1042 - IP: 192.168.44.5 - RequestID: kt1uvqkpjne +2025-06-18T13:49:26.381Z [TRACE] user-service - Auth event: login_success - User: user_1089 - IP: 192.168.229.123 - RequestID: j7thc1nd98l +2025-06-18T13:49:26.481Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 419ms - IP: 192.168.79.143 - User: user_1035 - RequestID: dvt3bjmzwgv +2025-06-18T13:49:26.581Z [INFO] user-service - Operation: notification_queued - Processing time: 806ms - RequestID: iq5xcouziuh +2025-06-18T13:49:26.681Z [INFO] notification-service - POST /api/v1/payments - Status: 400 - Response time: 1981ms - IP: 192.168.242.165 - User: user_1013 - RequestID: 0frn7dvewyz +2025-06-18T13:49:26.781Z [DEBUG] user-service - POST /api/v1/users - Status: 401 - Response time: 987ms - IP: 192.168.133.7 - User: user_1075 - RequestID: q5ulejesyzi +2025-06-18T13:49:26.881Z [INFO] payment-service - Operation: order_created - Processing time: 385ms - RequestID: 77jco5xgydl +2025-06-18T13:49:26.981Z [DEBUG] notification-service - GET /api/v1/users - Status: 201 - Response time: 170ms - IP: 192.168.79.143 - User: user_1049 - RequestID: 7ida3vl423 +2025-06-18T13:49:27.081Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 502 - Response time: 194ms - IP: 192.168.141.100 - User: user_1034 - RequestID: k3x32al2nj +2025-06-18T13:49:27.181Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 465ms - Rows affected: 41 - RequestID: x0l0n2frlpl +2025-06-18T13:49:27.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1035 - IP: 192.168.181.225 - RequestID: 04e4xxyopq0n +2025-06-18T13:49:27.381Z [TRACE] user-service - Database SELECT on users - Execution time: 50ms - Rows affected: 27 - RequestID: ik31udxpdb +2025-06-18T13:49:27.481Z [INFO] notification-service - GET /api/v1/auth/login - Status: 500 - Response time: 396ms - IP: 192.168.64.33 - User: user_1033 - RequestID: k6e9vxs879 +2025-06-18T13:49:27.581Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 585ms - RequestID: ja8rcr3ga4 +2025-06-18T13:49:27.681Z [INFO] notification-service - Operation: notification_queued - Processing time: 107ms - RequestID: o9dnwa7lwo +2025-06-18T13:49:27.781Z [DEBUG] user-service - Operation: notification_queued - Processing time: 234ms - RequestID: no131tlewm +2025-06-18T13:49:27.881Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 160ms - Rows affected: 96 - RequestID: 21cfx4abc63 +2025-06-18T13:49:27.981Z [TRACE] order-service - GET /api/v1/auth/login - Status: 404 - Response time: 1771ms - IP: 192.168.240.169 - User: user_1088 - RequestID: j34zs369v6o +2025-06-18T13:49:28.081Z [TRACE] notification-service - Auth event: login_success - User: user_1078 - IP: 192.168.242.165 - RequestID: oh9zzb24op9 +2025-06-18T13:49:28.181Z [INFO] auth-service - Auth event: login_failed - User: user_1009 - IP: 192.168.211.72 - RequestID: no6km6n7zt +2025-06-18T13:49:28.281Z [INFO] order-service - Database SELECT on users - Execution time: 128ms - Rows affected: 47 - RequestID: n31clc4nqr +2025-06-18T13:49:28.381Z [TRACE] user-service - Operation: cache_miss - Processing time: 342ms - RequestID: 3zxc5x1fyid +2025-06-18T13:49:28.481Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 738ms - RequestID: esuyi3itvig +2025-06-18T13:49:28.581Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1215ms - IP: 192.168.227.77 - User: user_1010 - RequestID: dcujrmigkhn +2025-06-18T13:49:28.681Z [TRACE] inventory-service - Auth event: password_change - User: user_1025 - IP: 192.168.138.123 - RequestID: cufdyypnbw +2025-06-18T13:49:28.781Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1827ms - IP: 192.168.181.225 - User: user_1081 - RequestID: kkxak8hpeuk +2025-06-18T13:49:28.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1011 - IP: 192.168.100.240 - RequestID: 60g6ji85vxt +2025-06-18T13:49:28.981Z [TRACE] order-service - Auth event: password_change - User: user_1061 - IP: 192.168.68.158 - RequestID: kp7onevofoh +2025-06-18T13:49:29.081Z [TRACE] user-service - Operation: order_created - Processing time: 500ms - RequestID: izf60wvvh0r +2025-06-18T13:49:29.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1058 - IP: 192.168.33.76 - RequestID: 5k3ec5qithh +2025-06-18T13:49:29.281Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 404 - Response time: 250ms - IP: 192.168.79.116 - User: user_1006 - RequestID: vejffcpzgdl +2025-06-18T13:49:29.381Z [INFO] user-service - Auth event: login_failed - User: user_1062 - IP: 192.168.31.117 - RequestID: oe45b3560j +2025-06-18T13:49:29.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.100.240 - RequestID: 4h782yjxxw3 +2025-06-18T13:49:29.581Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 502 - Response time: 412ms - IP: 192.168.44.5 - User: user_1098 - RequestID: i3hcts8bo58 +2025-06-18T13:49:29.681Z [INFO] payment-service - Database INSERT on products - Execution time: 261ms - Rows affected: 51 - RequestID: 48zxxjbv6f5 +2025-06-18T13:49:29.781Z [DEBUG] auth-service - Operation: email_sent - Processing time: 366ms - RequestID: tlj3flzj90i +2025-06-18T13:49:29.881Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 827ms - RequestID: odzt15lxpnr +2025-06-18T13:49:29.981Z [INFO] auth-service - Database INSERT on products - Execution time: 6ms - Rows affected: 25 - RequestID: vh4kfgm5xzb +2025-06-18T13:49:30.081Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 401 - Response time: 1211ms - IP: 192.168.227.77 - User: user_1084 - RequestID: crqag12x2o8 +2025-06-18T13:49:30.181Z [INFO] notification-service - PATCH /api/v1/users - Status: 403 - Response time: 740ms - IP: 192.168.174.114 - User: user_1088 - RequestID: n3k1k9ogbo8 +2025-06-18T13:49:30.281Z [INFO] auth-service - Database UPDATE on orders - Execution time: 105ms - Rows affected: 86 - RequestID: h20tre12wub +2025-06-18T13:49:30.381Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 400 - Response time: 1553ms - IP: 192.168.211.72 - User: user_1045 - RequestID: 8p6ug42x7dr +2025-06-18T13:49:30.481Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 320ms - Rows affected: 99 - RequestID: i10onwhe9pr +2025-06-18T13:49:30.581Z [DEBUG] user-service - PATCH /api/v1/users - Status: 400 - Response time: 404ms - IP: 192.168.247.134 - User: user_1054 - RequestID: uvse8oegbek +2025-06-18T13:49:30.681Z [INFO] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 19ms - IP: 192.168.81.206 - User: user_1006 - RequestID: 3v970ivbj1z +2025-06-18T13:49:30.781Z [TRACE] order-service - Operation: email_sent - Processing time: 482ms - RequestID: or7ru0gtg6f +2025-06-18T13:49:30.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.33.76 - RequestID: wf3t3pspdf9 +2025-06-18T13:49:30.981Z [INFO] user-service - Database SELECT on payments - Execution time: 124ms - Rows affected: 3 - RequestID: ci92n1022cu +2025-06-18T13:49:31.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.170.215 - RequestID: e6abmavvw8j +2025-06-18T13:49:31.181Z [INFO] inventory-service - Auth event: login_failed - User: user_1019 - IP: 192.168.144.38 - RequestID: 5xgccterg4u +2025-06-18T13:49:31.281Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 502 - Response time: 620ms - IP: 192.168.104.37 - User: user_1047 - RequestID: jgrs0qngu1s +2025-06-18T13:49:31.381Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 503 - Response time: 1313ms - IP: 192.168.32.38 - User: user_1073 - RequestID: 6s5bpdoyts6 +2025-06-18T13:49:31.481Z [DEBUG] payment-service - Auth event: logout - User: user_1061 - IP: 192.168.181.225 - RequestID: tilqgfvtm28 +2025-06-18T13:49:31.581Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 201 - Response time: 141ms - IP: 192.168.100.240 - User: user_1026 - RequestID: dxqqjl9q5kn +2025-06-18T13:49:31.681Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 500 - Response time: 37ms - IP: 192.168.79.141 - User: user_1022 - RequestID: bqdlp6immu +2025-06-18T13:49:31.781Z [TRACE] order-service - Database SELECT on sessions - Execution time: 176ms - Rows affected: 15 - RequestID: 9azxij0vql +2025-06-18T13:49:31.881Z [DEBUG] notification-service - POST /api/v1/payments - Status: 500 - Response time: 407ms - IP: 192.168.235.117 - User: user_1008 - RequestID: 9zqbg3gpjcs +2025-06-18T13:49:31.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1065 - IP: 192.168.79.143 - RequestID: pp071k9dbai +2025-06-18T13:49:32.081Z [TRACE] inventory-service - Operation: email_sent - Processing time: 654ms - RequestID: upzklogumys +2025-06-18T13:49:32.181Z [TRACE] user-service - Operation: email_sent - Processing time: 594ms - RequestID: fles5ir6sod +2025-06-18T13:49:32.281Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 403 - Response time: 1606ms - IP: 192.168.104.37 - User: user_1074 - RequestID: nff2qxviy8n +2025-06-18T13:49:32.381Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 500ms - Rows affected: 31 - RequestID: zn7ymvbmhiq +2025-06-18T13:49:32.481Z [INFO] user-service - Database DELETE on payments - Execution time: 235ms - Rows affected: 92 - RequestID: pbu91hztblf +2025-06-18T13:49:32.581Z [INFO] inventory-service - Operation: order_created - Processing time: 338ms - RequestID: 10wcqdazyy08 +2025-06-18T13:49:32.681Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 200 - Response time: 798ms - IP: 192.168.147.171 - User: user_1025 - RequestID: sh6hwtx1em +2025-06-18T13:49:32.781Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 172ms - Rows affected: 36 - RequestID: fb97jrvlj4 +2025-06-18T13:49:32.881Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 762ms - RequestID: ff6c2sboic8 +2025-06-18T13:49:32.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.68.128 - RequestID: sfg0g0s1shb +2025-06-18T13:49:33.081Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 348ms - RequestID: 7lz860xzk5v +2025-06-18T13:49:33.181Z [INFO] notification-service - PUT /api/v1/users - Status: 502 - Response time: 705ms - IP: 192.168.141.100 - User: user_1058 - RequestID: 9nx55xmmwkv +2025-06-18T13:49:33.281Z [INFO] auth-service - Auth event: login_success - User: user_1081 - IP: 192.168.97.87 - RequestID: bwdvv9eezmn +2025-06-18T13:49:33.381Z [INFO] order-service - Database INSERT on payments - Execution time: 294ms - Rows affected: 21 - RequestID: vaicjlf0cbe +2025-06-18T13:49:33.481Z [TRACE] user-service - Database UPDATE on products - Execution time: 319ms - Rows affected: 97 - RequestID: 06akbhnoece +2025-06-18T13:49:33.581Z [INFO] notification-service - Operation: webhook_sent - Processing time: 430ms - RequestID: 7l2kja2ntb +2025-06-18T13:49:33.681Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 262ms - Rows affected: 54 - RequestID: kml1k0ld69 +2025-06-18T13:49:33.781Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 141ms - Rows affected: 91 - RequestID: begh73cngvh +2025-06-18T13:49:33.881Z [DEBUG] notification-service - POST /api/v1/users - Status: 403 - Response time: 1286ms - IP: 192.168.174.114 - User: user_1025 - RequestID: t95nay14jo +2025-06-18T13:49:33.981Z [DEBUG] notification-service - Database INSERT on users - Execution time: 320ms - Rows affected: 77 - RequestID: ybv2m68seds +2025-06-18T13:49:34.081Z [DEBUG] auth-service - Database INSERT on products - Execution time: 296ms - Rows affected: 98 - RequestID: n3kh577p3p +2025-06-18T13:49:34.181Z [DEBUG] order-service - Operation: cache_miss - Processing time: 739ms - RequestID: q2h8p2qjakq +2025-06-18T13:49:34.281Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 401 - Response time: 634ms - IP: 192.168.147.171 - User: user_1053 - RequestID: 95duelva7ee +2025-06-18T13:49:34.381Z [TRACE] notification-service - Operation: email_sent - Processing time: 286ms - RequestID: hazqy1wb5at +2025-06-18T13:49:34.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.79.141 - RequestID: 5wnxm7f6irs +2025-06-18T13:49:34.581Z [TRACE] user-service - Database SELECT on sessions - Execution time: 3ms - Rows affected: 68 - RequestID: tayqionkuxm +2025-06-18T13:49:34.681Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 401 - Response time: 96ms - IP: 192.168.170.215 - User: user_1040 - RequestID: o0vhett6i0o +2025-06-18T13:49:34.781Z [INFO] notification-service - Operation: cache_hit - Processing time: 167ms - RequestID: qbt1p2dmrr +2025-06-18T13:49:34.881Z [INFO] payment-service - Auth event: password_change - User: user_1094 - IP: 192.168.170.215 - RequestID: hty5zq7c3dc +2025-06-18T13:49:34.981Z [DEBUG] payment-service - Database SELECT on products - Execution time: 17ms - Rows affected: 49 - RequestID: n6po1k5sft +2025-06-18T13:49:35.081Z [DEBUG] notification-service - Database DELETE on products - Execution time: 31ms - Rows affected: 98 - RequestID: xm6smww9lh +2025-06-18T13:49:35.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1041 - IP: 192.168.242.165 - RequestID: 4xdnsl0w96m +2025-06-18T13:49:35.281Z [TRACE] order-service - Operation: email_sent - Processing time: 890ms - RequestID: w40kzpv773 +2025-06-18T13:49:35.381Z [TRACE] inventory-service - Auth event: logout - User: user_1060 - IP: 192.168.36.218 - RequestID: 58jt1m2mees +2025-06-18T13:49:35.481Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 521ms - RequestID: g1fwxhpnwxi +2025-06-18T13:49:35.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 979ms - RequestID: 5jtbjqqa7a +2025-06-18T13:49:35.681Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 137ms - Rows affected: 0 - RequestID: y4mlik6tpg +2025-06-18T13:49:35.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.79.143 - RequestID: strsgsdtnb +2025-06-18T13:49:35.881Z [TRACE] user-service - DELETE /api/v1/orders - Status: 502 - Response time: 126ms - IP: 192.168.194.41 - User: user_1012 - RequestID: 06goycursmpb +2025-06-18T13:49:35.981Z [INFO] payment-service - Database DELETE on products - Execution time: 392ms - Rows affected: 60 - RequestID: wxg4iekrmf +2025-06-18T13:49:36.081Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 404 - Response time: 181ms - IP: 192.168.30.79 - User: user_1054 - RequestID: ipe1fl9rqtd +2025-06-18T13:49:36.181Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 485ms - Rows affected: 34 - RequestID: ofhra79m3lj +2025-06-18T13:49:36.281Z [TRACE] inventory-service - POST /api/v1/payments - Status: 400 - Response time: 1119ms - IP: 192.168.158.144 - User: user_1045 - RequestID: wqa6fnzlhw +2025-06-18T13:49:36.381Z [DEBUG] order-service - Operation: notification_queued - Processing time: 472ms - RequestID: ofebhub8r6 +2025-06-18T13:49:36.481Z [INFO] payment-service - GET /api/v1/orders - Status: 201 - Response time: 128ms - IP: 192.168.189.103 - User: user_1095 - RequestID: kd8fiog1z69 +2025-06-18T13:49:36.581Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 584ms - IP: 192.168.79.116 - User: user_1059 - RequestID: 2oq0cjv1rtg +2025-06-18T13:49:36.681Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 178ms - Rows affected: 64 - RequestID: cn75dzid3v4 +2025-06-18T13:49:36.781Z [TRACE] order-service - Operation: email_sent - Processing time: 628ms - RequestID: 9ns3zb1srwu +2025-06-18T13:49:36.881Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 282ms - Rows affected: 89 - RequestID: n3ya63w4bjn +2025-06-18T13:49:36.981Z [TRACE] order-service - Operation: email_sent - Processing time: 125ms - RequestID: 1e3s20i4h9t +2025-06-18T13:49:37.081Z [TRACE] payment-service - Database UPDATE on users - Execution time: 398ms - Rows affected: 37 - RequestID: 59ql1vwqwlg +2025-06-18T13:49:37.181Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1118ms - IP: 192.168.240.169 - User: user_1009 - RequestID: xblcz51h5jm +2025-06-18T13:49:37.281Z [INFO] auth-service - GET /api/v1/auth/login - Status: 404 - Response time: 493ms - IP: 192.168.242.165 - User: user_1048 - RequestID: 89pvvji25u9 +2025-06-18T13:49:37.381Z [TRACE] user-service - Auth event: login_success - User: user_1091 - IP: 192.168.11.60 - RequestID: cl0vx21z9su +2025-06-18T13:49:37.481Z [INFO] inventory-service - Database INSERT on users - Execution time: 306ms - Rows affected: 26 - RequestID: ftie1ozfxqp +2025-06-18T13:49:37.581Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 219ms - RequestID: rmff2w6a4v +2025-06-18T13:49:37.681Z [TRACE] auth-service - Auth event: login_success - User: user_1068 - IP: 192.168.79.116 - RequestID: 4kry8iw7dgj +2025-06-18T13:49:37.781Z [DEBUG] auth-service - Database INSERT on users - Execution time: 116ms - Rows affected: 38 - RequestID: 4634gjm4tsa +2025-06-18T13:49:37.881Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 244ms - Rows affected: 96 - RequestID: asbztwcp4q +2025-06-18T13:49:37.981Z [DEBUG] order-service - Auth event: password_change - User: user_1093 - IP: 192.168.189.103 - RequestID: h7c7ud92t0s +2025-06-18T13:49:38.081Z [INFO] order-service - Operation: payment_processed - Processing time: 612ms - RequestID: yesw911shu +2025-06-18T13:49:38.181Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 374ms - Rows affected: 79 - RequestID: xneik8tq9in +2025-06-18T13:49:38.281Z [DEBUG] auth-service - Database SELECT on products - Execution time: 430ms - Rows affected: 72 - RequestID: 0170a2m4s6vj +2025-06-18T13:49:38.381Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 139ms - Rows affected: 37 - RequestID: 4xyec8gik6k +2025-06-18T13:49:38.481Z [DEBUG] user-service - Database DELETE on orders - Execution time: 426ms - Rows affected: 22 - RequestID: vnyeo99jtmb +2025-06-18T13:49:38.581Z [INFO] payment-service - Auth event: login_success - User: user_1041 - IP: 192.168.104.37 - RequestID: 985d0vy50tk +2025-06-18T13:49:38.681Z [INFO] order-service - Database INSERT on payments - Execution time: 235ms - Rows affected: 56 - RequestID: h8vtbcmny9e +2025-06-18T13:49:38.781Z [INFO] user-service - PUT /api/v1/inventory - Status: 503 - Response time: 1494ms - IP: 192.168.79.141 - User: user_1033 - RequestID: u9j0qnrn8y +2025-06-18T13:49:38.881Z [TRACE] payment-service - Auth event: password_change - User: user_1036 - IP: 192.168.242.165 - RequestID: qpoqzr64zx +2025-06-18T13:49:38.981Z [TRACE] inventory-service - POST /api/v1/payments - Status: 401 - Response time: 640ms - IP: 192.168.181.225 - User: user_1010 - RequestID: 7l0wrockx3a +2025-06-18T13:49:39.081Z [TRACE] user-service - Database SELECT on products - Execution time: 451ms - Rows affected: 20 - RequestID: tpurwks5ynb +2025-06-18T13:49:39.181Z [TRACE] order-service - Database DELETE on orders - Execution time: 370ms - Rows affected: 99 - RequestID: s4l61xyr1g +2025-06-18T13:49:39.281Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.133.7 - RequestID: 8kehe488i7s +2025-06-18T13:49:39.381Z [TRACE] user-service - Operation: payment_processed - Processing time: 252ms - RequestID: 9809p2oxs8q +2025-06-18T13:49:39.481Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1231ms - IP: 192.168.159.94 - User: user_1006 - RequestID: ox7tgoni93 +2025-06-18T13:49:39.581Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1304ms - IP: 192.168.97.87 - User: user_1093 - RequestID: o55bljzbkwn +2025-06-18T13:49:39.681Z [TRACE] payment-service - Operation: email_sent - Processing time: 718ms - RequestID: tnml8reo7od +2025-06-18T13:49:39.781Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 201 - Response time: 39ms - IP: 192.168.31.117 - User: user_1062 - RequestID: 502k9kv8f4 +2025-06-18T13:49:39.881Z [INFO] auth-service - Database UPDATE on orders - Execution time: 436ms - Rows affected: 81 - RequestID: rrzpfrcxsh +2025-06-18T13:49:39.981Z [DEBUG] inventory-service - GET /api/v1/users - Status: 201 - Response time: 1184ms - IP: 192.168.229.123 - User: user_1078 - RequestID: t572ahzo81 +2025-06-18T13:49:40.081Z [INFO] user-service - Auth event: password_change - User: user_1076 - IP: 192.168.196.226 - RequestID: olvq8yx3ver +2025-06-18T13:49:40.181Z [INFO] notification-service - Database SELECT on payments - Execution time: 160ms - Rows affected: 85 - RequestID: smlpv790rmm +2025-06-18T13:49:40.281Z [TRACE] inventory-service - GET /api/v1/payments - Status: 500 - Response time: 923ms - IP: 192.168.144.38 - User: user_1036 - RequestID: yjgu5r4gskm +2025-06-18T13:49:40.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.97.87 - RequestID: nhq14yt8gs +2025-06-18T13:49:40.481Z [TRACE] order-service - Auth event: logout - User: user_1093 - IP: 192.168.11.60 - RequestID: 8vwj3yin4th +2025-06-18T13:49:40.581Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 394ms - Rows affected: 72 - RequestID: eqknvr4hp47 +2025-06-18T13:49:40.681Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 401 - Response time: 801ms - IP: 192.168.81.206 - User: user_1047 - RequestID: woxkjff8ay +2025-06-18T13:49:40.781Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 654ms - RequestID: v4dczyzv18o +2025-06-18T13:49:40.881Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 404 - Response time: 165ms - IP: 192.168.227.233 - User: user_1005 - RequestID: jh8sljypdrm +2025-06-18T13:49:40.981Z [INFO] auth-service - Database DELETE on orders - Execution time: 276ms - Rows affected: 6 - RequestID: 2m0qh3f2vfe +2025-06-18T13:49:41.081Z [INFO] order-service - Operation: email_sent - Processing time: 499ms - RequestID: a3bm1ns4faf +2025-06-18T13:49:41.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 91ms - RequestID: bfgp8z8hgql +2025-06-18T13:49:41.281Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 401 - Response time: 524ms - IP: 192.168.159.94 - User: user_1030 - RequestID: 2hobc2bqa6l +2025-06-18T13:49:41.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.28.146 - RequestID: nkg4nrqf4j8 +2025-06-18T13:49:41.481Z [TRACE] order-service - Operation: cache_hit - Processing time: 371ms - RequestID: i2w0ks9edlp +2025-06-18T13:49:41.581Z [INFO] notification-service - Operation: payment_processed - Processing time: 750ms - RequestID: wel14h7pyr +2025-06-18T13:49:41.681Z [DEBUG] payment-service - Database INSERT on users - Execution time: 462ms - Rows affected: 48 - RequestID: 9bm0ubu9dxh +2025-06-18T13:49:41.781Z [INFO] notification-service - Operation: cache_hit - Processing time: 758ms - RequestID: k86dih9da4l +2025-06-18T13:49:41.881Z [TRACE] notification-service - Operation: email_sent - Processing time: 682ms - RequestID: 4qesbzn9yed +2025-06-18T13:49:41.981Z [INFO] user-service - Operation: cache_hit - Processing time: 366ms - RequestID: 41pcs4lqbjb +2025-06-18T13:49:42.081Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 131ms - Rows affected: 18 - RequestID: 4j67o7hf0h6 +2025-06-18T13:49:42.181Z [INFO] payment-service - Operation: email_sent - Processing time: 126ms - RequestID: lxu6oqhcqna +2025-06-18T13:49:42.281Z [INFO] order-service - Database UPDATE on sessions - Execution time: 489ms - Rows affected: 91 - RequestID: pqz9osoo2k +2025-06-18T13:49:42.381Z [DEBUG] order-service - Operation: payment_processed - Processing time: 186ms - RequestID: kr0hzr76faf +2025-06-18T13:49:42.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 649ms - RequestID: 7rzek90sag8 +2025-06-18T13:49:42.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 228ms - RequestID: 2lvjwcem1yh +2025-06-18T13:49:42.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 120ms - RequestID: udllvl489l +2025-06-18T13:49:42.781Z [INFO] order-service - Database DELETE on users - Execution time: 262ms - Rows affected: 5 - RequestID: 0bf2spmokdyb +2025-06-18T13:49:42.881Z [DEBUG] payment-service - Database INSERT on products - Execution time: 393ms - Rows affected: 18 - RequestID: jxtkcjwwtf +2025-06-18T13:49:42.981Z [INFO] payment-service - Auth event: login_failed - User: user_1086 - IP: 192.168.53.133 - RequestID: wral4ec4bq +2025-06-18T13:49:43.081Z [TRACE] order-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.79.116 - RequestID: ooybpuukmf9 +2025-06-18T13:49:43.181Z [TRACE] auth-service - Database UPDATE on products - Execution time: 273ms - Rows affected: 35 - RequestID: ans0hbzbie8 +2025-06-18T13:49:43.281Z [INFO] order-service - Auth event: token_refresh - User: user_1029 - IP: 192.168.104.37 - RequestID: t3at2ue8bup +2025-06-18T13:49:43.381Z [TRACE] order-service - DELETE /api/v1/orders - Status: 502 - Response time: 1414ms - IP: 192.168.68.158 - User: user_1039 - RequestID: rpbaksrb2xf +2025-06-18T13:49:43.481Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 479ms - Rows affected: 93 - RequestID: 1dmksyoryf9 +2025-06-18T13:49:43.581Z [TRACE] payment-service - Operation: payment_processed - Processing time: 1030ms - RequestID: e3ir221cne7 +2025-06-18T13:49:43.681Z [INFO] order-service - Operation: order_created - Processing time: 585ms - RequestID: 5bhz9512367 +2025-06-18T13:49:43.781Z [TRACE] user-service - Database INSERT on products - Execution time: 19ms - Rows affected: 83 - RequestID: t8qeuz68lqm +2025-06-18T13:49:43.881Z [DEBUG] user-service - Auth event: login_success - User: user_1073 - IP: 192.168.187.199 - RequestID: m5cjde225gt +2025-06-18T13:49:43.981Z [TRACE] user-service - Auth event: login_success - User: user_1028 - IP: 192.168.13.72 - RequestID: d2ce9z57g7f +2025-06-18T13:49:44.081Z [TRACE] order-service - Auth event: logout - User: user_1063 - IP: 192.168.227.233 - RequestID: uhqc3h9uh0l +2025-06-18T13:49:44.181Z [INFO] payment-service - Database DELETE on payments - Execution time: 176ms - Rows affected: 34 - RequestID: 5de46209rc6 +2025-06-18T13:49:44.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 980ms - RequestID: ujusof65c4 +2025-06-18T13:49:44.381Z [TRACE] user-service - Auth event: login_success - User: user_1096 - IP: 192.168.30.79 - RequestID: w6u4dpmuv8 +2025-06-18T13:49:44.481Z [INFO] notification-service - Database DELETE on products - Execution time: 266ms - Rows affected: 0 - RequestID: ezsgxeq5oja +2025-06-18T13:49:44.581Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 543ms - IP: 192.168.242.165 - User: user_1034 - RequestID: vawvnkpsdj +2025-06-18T13:49:44.681Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1426ms - IP: 192.168.144.38 - User: user_1045 - RequestID: 2vsp6uib6z +2025-06-18T13:49:44.781Z [TRACE] notification-service - Operation: cache_miss - Processing time: 928ms - RequestID: pa06otox0q +2025-06-18T13:49:44.881Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 406ms - Rows affected: 33 - RequestID: 6n814lny9bg +2025-06-18T13:49:44.981Z [INFO] order-service - DELETE /api/v1/payments - Status: 503 - Response time: 1153ms - IP: 192.168.100.240 - User: user_1021 - RequestID: 4ji7jhmdxa6 +2025-06-18T13:49:45.081Z [TRACE] payment-service - POST /api/v1/orders - Status: 401 - Response time: 576ms - IP: 192.168.144.38 - User: user_1069 - RequestID: hxlafecfga7 +2025-06-18T13:49:45.181Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 202ms - Rows affected: 15 - RequestID: 3at91igajxc +2025-06-18T13:49:45.281Z [INFO] order-service - Auth event: login_failed - User: user_1009 - IP: 192.168.235.117 - RequestID: 53wqcjckcmm +2025-06-18T13:49:45.381Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 706ms - RequestID: sv8ffjx7k6 +2025-06-18T13:49:45.481Z [TRACE] user-service - Operation: webhook_sent - Processing time: 945ms - RequestID: f53x6uw85yq +2025-06-18T13:49:45.581Z [INFO] auth-service - Auth event: login_failed - User: user_1079 - IP: 192.168.242.165 - RequestID: 7waxh1c37eb +2025-06-18T13:49:45.681Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 297ms - RequestID: fzxir3z1pyq +2025-06-18T13:49:45.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1088 - IP: 192.168.100.240 - RequestID: 984cb9kcwnj +2025-06-18T13:49:45.881Z [TRACE] notification-service - Database UPDATE on products - Execution time: 81ms - Rows affected: 69 - RequestID: g0m94m5ljk +2025-06-18T13:49:45.981Z [INFO] payment-service - Operation: notification_queued - Processing time: 930ms - RequestID: kasiew2q9q +2025-06-18T13:49:46.081Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1482ms - IP: 192.168.170.215 - User: user_1036 - RequestID: brnk765dpqk +2025-06-18T13:49:46.181Z [TRACE] payment-service - Operation: notification_queued - Processing time: 309ms - RequestID: ypj1cqpj5is +2025-06-18T13:49:46.281Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 500 - Response time: 418ms - IP: 192.168.14.77 - User: user_1004 - RequestID: l8byu3hosdj +2025-06-18T13:49:46.381Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 117ms - Rows affected: 48 - RequestID: 8s110k5ziw +2025-06-18T13:49:46.481Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 106ms - Rows affected: 19 - RequestID: 7fbv4z9obx9 +2025-06-18T13:49:46.581Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 401 - Response time: 730ms - IP: 192.168.104.37 - User: user_1018 - RequestID: mkzvm2x52t +2025-06-18T13:49:46.681Z [INFO] order-service - Database SELECT on orders - Execution time: 396ms - Rows affected: 63 - RequestID: mn1f6vyzxv +2025-06-18T13:49:46.781Z [INFO] order-service - PUT /api/v1/payments - Status: 503 - Response time: 630ms - IP: 192.168.211.72 - User: user_1045 - RequestID: geau0twoi3n +2025-06-18T13:49:46.881Z [TRACE] auth-service - Auth event: login_success - User: user_1078 - IP: 192.168.232.72 - RequestID: s90r3477q +2025-06-18T13:49:46.981Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 503 - Response time: 1566ms - IP: 192.168.158.144 - User: user_1076 - RequestID: 4kxpccz974f +2025-06-18T13:49:47.081Z [INFO] payment-service - POST /api/v1/auth/login - Status: 502 - Response time: 42ms - IP: 192.168.46.63 - User: user_1016 - RequestID: rbikz32gfp +2025-06-18T13:49:47.181Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 400ms - Rows affected: 26 - RequestID: bhqtk7pqk1 +2025-06-18T13:49:47.281Z [INFO] inventory-service - Database INSERT on payments - Execution time: 411ms - Rows affected: 52 - RequestID: rjlkqmso6qf +2025-06-18T13:49:47.381Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 915ms - IP: 192.168.36.218 - User: user_1034 - RequestID: i1j0ynh5tvo +2025-06-18T13:49:47.481Z [INFO] order-service - POST /api/v1/payments - Status: 401 - Response time: 1736ms - IP: 192.168.30.79 - User: user_1099 - RequestID: wyugijflsm +2025-06-18T13:49:47.581Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 502 - Response time: 199ms - IP: 192.168.104.37 - User: user_1034 - RequestID: nt1vcxk8qq +2025-06-18T13:49:47.681Z [TRACE] user-service - Operation: notification_queued - Processing time: 775ms - RequestID: wucaye9tux +2025-06-18T13:49:47.781Z [DEBUG] order-service - Operation: payment_processed - Processing time: 569ms - RequestID: hetc3xqxiue +2025-06-18T13:49:47.881Z [TRACE] inventory-service - GET /api/v1/payments - Status: 401 - Response time: 1231ms - IP: 192.168.211.72 - User: user_1007 - RequestID: 2p56fbtx2md +2025-06-18T13:49:47.981Z [INFO] payment-service - GET /api/v1/auth/login - Status: 404 - Response time: 1072ms - IP: 192.168.28.146 - User: user_1088 - RequestID: hrntn6ftrfe +2025-06-18T13:49:48.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.100.240 - RequestID: dm488rjenyk +2025-06-18T13:49:48.181Z [INFO] user-service - DELETE /api/v1/payments - Status: 200 - Response time: 1130ms - IP: 192.168.14.77 - User: user_1008 - RequestID: be1wh7adz1p +2025-06-18T13:49:48.281Z [TRACE] payment-service - Database DELETE on users - Execution time: 113ms - Rows affected: 48 - RequestID: zmxsznozvu +2025-06-18T13:49:48.381Z [INFO] order-service - POST /api/v1/auth/login - Status: 500 - Response time: 1413ms - IP: 192.168.196.226 - User: user_1076 - RequestID: ufx45j0giq +2025-06-18T13:49:48.481Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 485ms - Rows affected: 34 - RequestID: 92nvqo6z3q +2025-06-18T13:49:48.581Z [TRACE] auth-service - Auth event: password_change - User: user_1065 - IP: 192.168.30.79 - RequestID: c5hlta5y1n +2025-06-18T13:49:48.681Z [DEBUG] inventory-service - Auth event: logout - User: user_1006 - IP: 192.168.85.229 - RequestID: 86jyr9vxfms +2025-06-18T13:49:48.781Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 403 - Response time: 131ms - IP: 192.168.104.37 - User: user_1035 - RequestID: joujptl1v09 +2025-06-18T13:49:48.881Z [DEBUG] auth-service - Database INSERT on users - Execution time: 94ms - Rows affected: 85 - RequestID: vii4o480719 +2025-06-18T13:49:48.981Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 241ms - Rows affected: 98 - RequestID: gig1f6y43d +2025-06-18T13:49:49.081Z [TRACE] user-service - Auth event: login_success - User: user_1018 - IP: 192.168.14.77 - RequestID: khdlwfbyli +2025-06-18T13:49:49.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1015 - IP: 192.168.196.226 - RequestID: qmj20y6p7v +2025-06-18T13:49:49.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.68.158 - RequestID: lzxnv29pzvn +2025-06-18T13:49:49.381Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 476ms - RequestID: u7k22rct8pl +2025-06-18T13:49:49.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1092 - IP: 192.168.187.199 - RequestID: o1ta326meh +2025-06-18T13:49:49.581Z [INFO] notification-service - PUT /api/v1/payments - Status: 201 - Response time: 150ms - IP: 192.168.174.114 - User: user_1017 - RequestID: 40aw21yit5t +2025-06-18T13:49:49.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.159.94 - RequestID: 515cm5a0b9x +2025-06-18T13:49:49.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.32.38 - RequestID: cdh0rzlelv +2025-06-18T13:49:49.881Z [TRACE] order-service - Database DELETE on products - Execution time: 204ms - Rows affected: 8 - RequestID: ctcfeiuqecs +2025-06-18T13:49:49.981Z [TRACE] inventory-service - Auth event: logout - User: user_1040 - IP: 192.168.187.199 - RequestID: 6x9hzbw152m +2025-06-18T13:49:50.081Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 369ms - RequestID: ylms0fqdv2j +2025-06-18T13:49:50.181Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 124ms - Rows affected: 96 - RequestID: neesv6urti +2025-06-18T13:49:50.281Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 51ms - Rows affected: 14 - RequestID: puc58tjk6xs +2025-06-18T13:49:50.381Z [INFO] inventory-service - Auth event: password_change - User: user_1026 - IP: 192.168.189.103 - RequestID: flws58synzb +2025-06-18T13:49:50.481Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 503 - Response time: 933ms - IP: 192.168.235.117 - User: user_1086 - RequestID: wu4vcyasx2 +2025-06-18T13:49:50.581Z [INFO] notification-service - Database DELETE on payments - Execution time: 335ms - Rows affected: 96 - RequestID: e6wwkvk6iv +2025-06-18T13:49:50.681Z [DEBUG] order-service - Auth event: logout - User: user_1045 - IP: 192.168.10.184 - RequestID: ozi5rg96b6k +2025-06-18T13:49:50.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1021 - IP: 192.168.64.33 - RequestID: 8ovpbehmcfa +2025-06-18T13:49:50.881Z [TRACE] payment-service - Database UPDATE on users - Execution time: 325ms - Rows affected: 11 - RequestID: 48y5ssio498 +2025-06-18T13:49:50.981Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 688ms - RequestID: nuwity9ezan +2025-06-18T13:49:51.081Z [DEBUG] order-service - GET /api/v1/payments - Status: 400 - Response time: 1057ms - IP: 192.168.68.128 - User: user_1021 - RequestID: qf6pb4aah0i +2025-06-18T13:49:51.181Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 502 - Response time: 182ms - IP: 192.168.240.169 - User: user_1035 - RequestID: 0r901thhuhg +2025-06-18T13:49:51.281Z [TRACE] auth-service - Operation: payment_processed - Processing time: 738ms - RequestID: zm7tpmrzgbj +2025-06-18T13:49:51.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.97.87 - RequestID: qfgurt1kl9q +2025-06-18T13:49:51.481Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 403 - Response time: 517ms - IP: 192.168.229.123 - User: user_1058 - RequestID: ya3mjgpeu7 +2025-06-18T13:49:51.581Z [TRACE] payment-service - Database DELETE on products - Execution time: 134ms - Rows affected: 83 - RequestID: g6k1berqf5 +2025-06-18T13:49:51.681Z [INFO] payment-service - Database SELECT on payments - Execution time: 201ms - Rows affected: 27 - RequestID: 2psbnxeehhb +2025-06-18T13:49:51.781Z [INFO] payment-service - GET /api/v1/users - Status: 200 - Response time: 122ms - IP: 192.168.235.117 - User: user_1022 - RequestID: upclwhesd9 +2025-06-18T13:49:51.881Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 519ms - RequestID: 7eildzz75zj +2025-06-18T13:49:51.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 735ms - RequestID: l50ezc3r0vk +2025-06-18T13:49:52.081Z [TRACE] payment-service - Auth event: logout - User: user_1038 - IP: 192.168.211.72 - RequestID: kcg2nc0euec +2025-06-18T13:49:52.181Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1933ms - IP: 192.168.33.76 - User: user_1038 - RequestID: 1mn6qf484a4 +2025-06-18T13:49:52.281Z [INFO] payment-service - Operation: inventory_updated - Processing time: 388ms - RequestID: g4e57mla30a +2025-06-18T13:49:52.381Z [TRACE] notification-service - Operation: email_sent - Processing time: 68ms - RequestID: 9u11r218kn4 +2025-06-18T13:49:52.481Z [TRACE] payment-service - Operation: email_sent - Processing time: 406ms - RequestID: d1pak31odqm +2025-06-18T13:49:52.581Z [TRACE] payment-service - POST /api/v1/orders - Status: 502 - Response time: 613ms - IP: 192.168.68.128 - User: user_1003 - RequestID: zyjmjqzjkpk +2025-06-18T13:49:52.681Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 389ms - Rows affected: 48 - RequestID: e6q1nm0ybba +2025-06-18T13:49:52.781Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 200 - Response time: 1244ms - IP: 192.168.33.76 - User: user_1061 - RequestID: krdd6rhtxnp +2025-06-18T13:49:52.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1014 - IP: 192.168.147.171 - RequestID: 6mmgp45aet9 +2025-06-18T13:49:52.981Z [INFO] payment-service - Operation: email_sent - Processing time: 551ms - RequestID: cx0yjwnyvyc +2025-06-18T13:49:53.081Z [TRACE] order-service - Auth event: login_failed - User: user_1065 - IP: 192.168.32.38 - RequestID: 1qwptdc790m +2025-06-18T13:49:53.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.81.206 - RequestID: 6m4livm3g92 +2025-06-18T13:49:53.281Z [TRACE] order-service - Database SELECT on users - Execution time: 395ms - Rows affected: 65 - RequestID: biawtr7ir3g +2025-06-18T13:49:53.381Z [TRACE] auth-service - Auth event: login_success - User: user_1035 - IP: 192.168.174.114 - RequestID: 9gjrlbo5dyg +2025-06-18T13:49:53.481Z [TRACE] auth-service - Database INSERT on products - Execution time: 333ms - Rows affected: 87 - RequestID: eyj2ou0rjj7 +2025-06-18T13:49:53.581Z [DEBUG] payment-service - Database DELETE on products - Execution time: 486ms - Rows affected: 36 - RequestID: jkfwmptwdu +2025-06-18T13:49:53.681Z [INFO] auth-service - Auth event: password_change - User: user_1013 - IP: 192.168.104.37 - RequestID: 3dmymwhyaok +2025-06-18T13:49:53.781Z [TRACE] auth-service - Auth event: logout - User: user_1066 - IP: 192.168.104.37 - RequestID: 1o1qyng6rp4 +2025-06-18T13:49:53.881Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 500 - Response time: 1567ms - IP: 192.168.189.103 - User: user_1014 - RequestID: qxrf1taay6 +2025-06-18T13:49:53.981Z [INFO] order-service - Operation: payment_processed - Processing time: 859ms - RequestID: i1z93njsles +2025-06-18T13:49:54.081Z [INFO] user-service - Database UPDATE on users - Execution time: 212ms - Rows affected: 11 - RequestID: a2hdnx6s5lw +2025-06-18T13:49:54.181Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 768ms - RequestID: rloiov2vm2e +2025-06-18T13:49:54.281Z [INFO] inventory-service - Database DELETE on users - Execution time: 381ms - Rows affected: 64 - RequestID: 7kfw5ygxm5a +2025-06-18T13:49:54.381Z [TRACE] inventory-service - Auth event: password_change - User: user_1086 - IP: 192.168.170.215 - RequestID: qec8j4g79s +2025-06-18T13:49:54.481Z [INFO] auth-service - Auth event: login_success - User: user_1045 - IP: 192.168.31.117 - RequestID: jdgmmizhmfg +2025-06-18T13:49:54.581Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 400 - Response time: 685ms - IP: 192.168.181.225 - User: user_1065 - RequestID: 0nert0znwmg +2025-06-18T13:49:54.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1074 - IP: 192.168.227.233 - RequestID: llupirwuyq +2025-06-18T13:49:54.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1082 - IP: 192.168.170.215 - RequestID: j3pu81wdue +2025-06-18T13:49:54.881Z [TRACE] inventory-service - Auth event: login_success - User: user_1061 - IP: 192.168.28.146 - RequestID: w19hwor56h +2025-06-18T13:49:54.981Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 346ms - RequestID: ioxz0fv5ari +2025-06-18T13:49:55.081Z [INFO] order-service - GET /api/v1/orders - Status: 500 - Response time: 1900ms - IP: 192.168.14.77 - User: user_1094 - RequestID: ayrl0xh6k3 +2025-06-18T13:49:55.181Z [INFO] notification-service - Database SELECT on users - Execution time: 146ms - Rows affected: 94 - RequestID: wmdgnhr236 +2025-06-18T13:49:55.281Z [TRACE] auth-service - PUT /api/v1/users - Status: 502 - Response time: 764ms - IP: 192.168.170.215 - User: user_1063 - RequestID: y1medy1gxx +2025-06-18T13:49:55.381Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1155ms - IP: 192.168.229.123 - User: user_1087 - RequestID: a517xjb4a0l +2025-06-18T13:49:55.481Z [TRACE] payment-service - Auth event: password_change - User: user_1018 - IP: 192.168.141.100 - RequestID: wgq61hwnhgi +2025-06-18T13:49:55.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.46.63 - RequestID: 8ymcthc51u4 +2025-06-18T13:49:55.681Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 457ms - Rows affected: 60 - RequestID: kbh9jsaoul +2025-06-18T13:49:55.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 77ms - RequestID: g2o4swkb0e8 +2025-06-18T13:49:55.881Z [TRACE] notification-service - Auth event: logout - User: user_1062 - IP: 192.168.33.76 - RequestID: nehzth7t2or +2025-06-18T13:49:55.981Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 201 - Response time: 1327ms - IP: 192.168.68.158 - User: user_1059 - RequestID: tcm46ll3o4 +2025-06-18T13:49:56.081Z [DEBUG] notification-service - Database INSERT on products - Execution time: 307ms - Rows affected: 9 - RequestID: yb7185k13sn +2025-06-18T13:49:56.181Z [INFO] notification-service - Database INSERT on sessions - Execution time: 199ms - Rows affected: 56 - RequestID: 3xjxvztzhup +2025-06-18T13:49:56.281Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 200 - Response time: 1805ms - IP: 192.168.79.141 - User: user_1019 - RequestID: 2eeb7fqlolk +2025-06-18T13:49:56.381Z [TRACE] payment-service - Operation: payment_processed - Processing time: 873ms - RequestID: p1ddrnuxpp +2025-06-18T13:49:56.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.104.37 - RequestID: ximwgv6v62i +2025-06-18T13:49:56.581Z [INFO] auth-service - Auth event: logout - User: user_1053 - IP: 192.168.133.7 - RequestID: e5mh70hfmif +2025-06-18T13:49:56.681Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 503 - Response time: 95ms - IP: 192.168.147.171 - User: user_1027 - RequestID: gdz7dechize +2025-06-18T13:49:56.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 827ms - RequestID: s3ttziya2me +2025-06-18T13:49:56.881Z [TRACE] order-service - Auth event: password_change - User: user_1001 - IP: 192.168.85.229 - RequestID: upoap5demz +2025-06-18T13:49:56.981Z [INFO] payment-service - POST /api/v1/payments - Status: 401 - Response time: 1890ms - IP: 192.168.167.32 - User: user_1092 - RequestID: 67iyfaoky1p +2025-06-18T13:49:57.081Z [DEBUG] order-service - Auth event: password_change - User: user_1041 - IP: 192.168.30.79 - RequestID: gj85r05aodv +2025-06-18T13:49:57.181Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1068ms - IP: 192.168.53.133 - User: user_1063 - RequestID: ry5kjqrdihk +2025-06-18T13:49:57.281Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 495ms - RequestID: ukhqetnnsp +2025-06-18T13:49:57.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 544ms - RequestID: zig7j5kwvgr +2025-06-18T13:49:57.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 526ms - RequestID: ax4cdubgbt +2025-06-18T13:49:57.581Z [DEBUG] payment-service - Auth event: login_success - User: user_1016 - IP: 192.168.14.77 - RequestID: kyk3vhj7tif +2025-06-18T13:49:57.681Z [TRACE] order-service - Auth event: logout - User: user_1059 - IP: 192.168.31.117 - RequestID: 025dmf7gwg65 +2025-06-18T13:49:57.781Z [DEBUG] order-service - POST /api/v1/orders - Status: 403 - Response time: 1213ms - IP: 192.168.28.146 - User: user_1057 - RequestID: rxyce590jnh +2025-06-18T13:49:57.881Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 200 - Response time: 542ms - IP: 192.168.232.72 - User: user_1072 - RequestID: cjcgrn6hcot +2025-06-18T13:49:57.981Z [DEBUG] auth-service - POST /api/v1/payments - Status: 500 - Response time: 1013ms - IP: 192.168.144.38 - User: user_1022 - RequestID: 9993kiisy2g +2025-06-18T13:49:58.081Z [DEBUG] user-service - PUT /api/v1/payments - Status: 200 - Response time: 1833ms - IP: 192.168.100.240 - User: user_1033 - RequestID: rtik0qnj9oo +2025-06-18T13:49:58.181Z [INFO] auth-service - Database SELECT on sessions - Execution time: 22ms - Rows affected: 57 - RequestID: e96458r64oj +2025-06-18T13:49:58.281Z [TRACE] payment-service - PUT /api/v1/users - Status: 201 - Response time: 1402ms - IP: 192.168.242.165 - User: user_1090 - RequestID: 41h462syrmn +2025-06-18T13:49:58.381Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 812ms - RequestID: aj128oqcw7 +2025-06-18T13:49:58.481Z [TRACE] notification-service - Database DELETE on payments - Execution time: 152ms - Rows affected: 67 - RequestID: 0ty07cgeq8kr +2025-06-18T13:49:58.581Z [INFO] order-service - Database UPDATE on payments - Execution time: 150ms - Rows affected: 7 - RequestID: 51ukjk3lgfm +2025-06-18T13:49:58.681Z [INFO] payment-service - Auth event: login_failed - User: user_1049 - IP: 192.168.170.215 - RequestID: 5u62p5pgv6g +2025-06-18T13:49:58.781Z [INFO] auth-service - Auth event: login_failed - User: user_1072 - IP: 192.168.36.218 - RequestID: pccnjqb8o6j +2025-06-18T13:49:58.881Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 213ms - Rows affected: 51 - RequestID: uteshiw2pu +2025-06-18T13:49:58.981Z [INFO] inventory-service - Auth event: password_change - User: user_1053 - IP: 192.168.113.218 - RequestID: oq233y2l3l +2025-06-18T13:49:59.081Z [TRACE] order-service - Operation: notification_queued - Processing time: 95ms - RequestID: 1gmu7p7howb +2025-06-18T13:49:59.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.33.76 - RequestID: fbg0srzclw +2025-06-18T13:49:59.281Z [INFO] notification-service - DELETE /api/v1/orders - Status: 401 - Response time: 1166ms - IP: 192.168.170.215 - User: user_1019 - RequestID: 20j5lcvf225 +2025-06-18T13:49:59.381Z [INFO] payment-service - Operation: cache_hit - Processing time: 855ms - RequestID: w17l0mdgsel +2025-06-18T13:49:59.481Z [TRACE] order-service - PATCH /api/v1/orders - Status: 401 - Response time: 756ms - IP: 192.168.31.117 - User: user_1034 - RequestID: 7osbfaovo3q +2025-06-18T13:49:59.581Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 158ms - Rows affected: 11 - RequestID: 5aoc3dkl3kk +2025-06-18T13:49:59.681Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 903ms - RequestID: xbh8rz963ti +2025-06-18T13:49:59.781Z [INFO] auth-service - Auth event: login_success - User: user_1065 - IP: 192.168.229.123 - RequestID: 9laqeij15h +2025-06-18T13:49:59.881Z [INFO] auth-service - Database INSERT on products - Execution time: 1ms - Rows affected: 34 - RequestID: 6r3z6o0jpef +2025-06-18T13:49:59.981Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 304ms - Rows affected: 51 - RequestID: nkr9tpy9v3d +2025-06-18T13:50:00.081Z [TRACE] inventory-service - Database SELECT on products - Execution time: 459ms - Rows affected: 83 - RequestID: 2f1vwhllips +2025-06-18T13:50:00.181Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 35ms - Rows affected: 64 - RequestID: mfwo9zy04w +2025-06-18T13:50:00.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 896ms - RequestID: qta62y2bj2p +2025-06-18T13:50:00.381Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 502ms - RequestID: 5a5kj9y6fh +2025-06-18T13:50:00.481Z [TRACE] order-service - Operation: inventory_updated - Processing time: 770ms - RequestID: h7yk1ribp4a +2025-06-18T13:50:00.581Z [INFO] notification-service - Auth event: password_change - User: user_1089 - IP: 192.168.138.123 - RequestID: osn32xdustl +2025-06-18T13:50:00.681Z [INFO] notification-service - GET /api/v1/payments - Status: 403 - Response time: 881ms - IP: 192.168.32.38 - User: user_1042 - RequestID: il2pho9rk3 +2025-06-18T13:50:00.781Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1991ms - IP: 192.168.247.134 - User: user_1050 - RequestID: 5y18aykjxaw +2025-06-18T13:50:00.881Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 504ms - IP: 192.168.141.100 - User: user_1033 - RequestID: 3opu6lxqmq4 +2025-06-18T13:50:00.981Z [INFO] user-service - Auth event: login_failed - User: user_1064 - IP: 192.168.242.165 - RequestID: fr32f3gepx +2025-06-18T13:50:01.081Z [TRACE] order-service - GET /api/v1/users - Status: 201 - Response time: 182ms - IP: 192.168.147.171 - User: user_1099 - RequestID: yyv9aewn8lq +2025-06-18T13:50:01.181Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 404 - Response time: 310ms - IP: 192.168.1.152 - User: user_1047 - RequestID: ej9shquhlt +2025-06-18T13:50:01.281Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.97.87 - RequestID: duxdbdf5hc4 +2025-06-18T13:50:01.381Z [DEBUG] user-service - Operation: order_created - Processing time: 801ms - RequestID: 4fte62dncfb +2025-06-18T13:50:01.481Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 1045ms - RequestID: nelvgfz2bwd +2025-06-18T13:50:01.581Z [DEBUG] user-service - Database UPDATE on products - Execution time: 18ms - Rows affected: 46 - RequestID: 0bsd5tqdj40m +2025-06-18T13:50:01.681Z [TRACE] auth-service - Auth event: login_failed - User: user_1030 - IP: 192.168.227.233 - RequestID: qqd34e2w7z +2025-06-18T13:50:01.781Z [TRACE] order-service - Auth event: password_change - User: user_1015 - IP: 192.168.1.152 - RequestID: hmixi8jn55j +2025-06-18T13:50:01.881Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 9ms - Rows affected: 44 - RequestID: axm8e52m2ur +2025-06-18T13:50:01.981Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 200 - Response time: 1933ms - IP: 192.168.144.38 - User: user_1096 - RequestID: o2z4rh82u6 +2025-06-18T13:50:02.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.181.225 - RequestID: 3thrahh3ip3 +2025-06-18T13:50:02.181Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 546ms - IP: 192.168.235.117 - User: user_1012 - RequestID: 32cpx09bflh +2025-06-18T13:50:02.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.36.218 - RequestID: bqmg6ex3ix8 +2025-06-18T13:50:02.381Z [DEBUG] user-service - Operation: notification_queued - Processing time: 850ms - RequestID: fpjybwz1px6 +2025-06-18T13:50:02.481Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 84ms - Rows affected: 39 - RequestID: 1ftkeucpghj +2025-06-18T13:50:02.581Z [DEBUG] user-service - Operation: cache_miss - Processing time: 484ms - RequestID: aok1bo36e2l +2025-06-18T13:50:02.681Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 254ms - Rows affected: 29 - RequestID: v64ucgyxl9n +2025-06-18T13:50:02.781Z [INFO] notification-service - Auth event: login_success - User: user_1059 - IP: 192.168.33.76 - RequestID: 3gf09bvz6vy +2025-06-18T13:50:02.881Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 154ms - RequestID: cwyvljaqh5v +2025-06-18T13:50:02.981Z [INFO] order-service - DELETE /api/v1/users - Status: 401 - Response time: 1948ms - IP: 192.168.97.87 - User: user_1003 - RequestID: fn5vyce50i +2025-06-18T13:50:03.081Z [INFO] auth-service - Operation: cache_miss - Processing time: 854ms - RequestID: pftsfve0he +2025-06-18T13:50:03.181Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 267ms - RequestID: suwa4gjivfg +2025-06-18T13:50:03.281Z [INFO] auth-service - Operation: notification_queued - Processing time: 488ms - RequestID: oxjtp0l2g2b +2025-06-18T13:50:03.381Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 61ms - Rows affected: 17 - RequestID: qun5boy634h +2025-06-18T13:50:03.481Z [TRACE] payment-service - Auth event: login_failed - User: user_1081 - IP: 192.168.229.123 - RequestID: n4ndq21oilt +2025-06-18T13:50:03.581Z [INFO] user-service - Operation: cache_miss - Processing time: 61ms - RequestID: 7qdzrhbu0on +2025-06-18T13:50:03.681Z [TRACE] notification-service - Operation: notification_queued - Processing time: 594ms - RequestID: np2gvph53v +2025-06-18T13:50:03.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1051 - IP: 192.168.167.32 - RequestID: q4gwlydeeuc +2025-06-18T13:50:03.881Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 403 - Response time: 826ms - IP: 192.168.81.206 - User: user_1068 - RequestID: c2dxig7d7cp +2025-06-18T13:50:03.981Z [INFO] notification-service - Database INSERT on sessions - Execution time: 493ms - Rows affected: 22 - RequestID: ssvyq74bvc +2025-06-18T13:50:04.081Z [INFO] auth-service - Operation: webhook_sent - Processing time: 508ms - RequestID: i2av3mj6h7 +2025-06-18T13:50:04.181Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 467ms - Rows affected: 66 - RequestID: wqvsfrm12cc +2025-06-18T13:50:04.281Z [DEBUG] inventory-service - POST /api/v1/users - Status: 200 - Response time: 897ms - IP: 192.168.229.123 - User: user_1040 - RequestID: dhq873oywxs +2025-06-18T13:50:04.381Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 123ms - Rows affected: 15 - RequestID: nx7abucwpw +2025-06-18T13:50:04.481Z [DEBUG] order-service - Auth event: login_failed - User: user_1073 - IP: 192.168.144.38 - RequestID: jc5vcn6lh2c +2025-06-18T13:50:04.581Z [INFO] payment-service - Auth event: login_success - User: user_1023 - IP: 192.168.79.116 - RequestID: u9kmzd0ydya +2025-06-18T13:50:04.681Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 404 - Response time: 480ms - IP: 192.168.79.141 - User: user_1029 - RequestID: 4z38d1araw8 +2025-06-18T13:50:04.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.147.171 - RequestID: jmwkebjp7h +2025-06-18T13:50:04.881Z [TRACE] user-service - Operation: payment_processed - Processing time: 571ms - RequestID: oqn85kts1d +2025-06-18T13:50:04.981Z [TRACE] order-service - Database UPDATE on users - Execution time: 249ms - Rows affected: 24 - RequestID: oou66zik30q +2025-06-18T13:50:05.081Z [DEBUG] order-service - Operation: cache_hit - Processing time: 446ms - RequestID: 20algc6s9lx +2025-06-18T13:50:05.181Z [INFO] order-service - Database SELECT on orders - Execution time: 376ms - Rows affected: 38 - RequestID: jm8bbkxff8m +2025-06-18T13:50:05.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1012 - IP: 192.168.147.171 - RequestID: hi0k9xs9ff +2025-06-18T13:50:05.381Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 503 - Response time: 266ms - IP: 192.168.53.133 - User: user_1011 - RequestID: gmar5ueu955 +2025-06-18T13:50:05.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.14.77 - RequestID: 17nus26jqy7 +2025-06-18T13:50:05.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.229.123 - RequestID: vmkftc7fvk +2025-06-18T13:50:05.681Z [TRACE] auth-service - Auth event: login_failed - User: user_1034 - IP: 192.168.227.77 - RequestID: 5x359o6kw4p +2025-06-18T13:50:05.781Z [TRACE] payment-service - Database INSERT on orders - Execution time: 357ms - Rows affected: 62 - RequestID: w8bmqnfnah +2025-06-18T13:50:05.881Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 36ms - Rows affected: 98 - RequestID: cqobz6n9me +2025-06-18T13:50:05.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1091 - IP: 192.168.10.184 - RequestID: qtnl0nmi2t +2025-06-18T13:50:06.081Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 502 - Response time: 982ms - IP: 192.168.159.94 - User: user_1087 - RequestID: d3fmsx27ygg +2025-06-18T13:50:06.181Z [DEBUG] payment-service - Database DELETE on users - Execution time: 154ms - Rows affected: 77 - RequestID: ixp7lr609q +2025-06-18T13:50:06.281Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 733ms - IP: 192.168.14.77 - User: user_1027 - RequestID: jsfq95kzxuc +2025-06-18T13:50:06.381Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 401 - Response time: 300ms - IP: 192.168.81.206 - User: user_1077 - RequestID: 595uurgqc08 +2025-06-18T13:50:06.481Z [INFO] order-service - POST /api/v1/orders - Status: 201 - Response time: 714ms - IP: 192.168.30.79 - User: user_1048 - RequestID: akqlwoooh4 +2025-06-18T13:50:06.581Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 101ms - Rows affected: 16 - RequestID: 5czpxnlu9g6 +2025-06-18T13:50:06.681Z [INFO] inventory-service - POST /api/v1/payments - Status: 500 - Response time: 938ms - IP: 192.168.133.7 - User: user_1057 - RequestID: 8gi6ojy6w1q +2025-06-18T13:50:06.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 177ms - RequestID: iko6fd6nszm +2025-06-18T13:50:06.881Z [INFO] notification-service - Database DELETE on users - Execution time: 319ms - Rows affected: 7 - RequestID: 12nrgx2wjds8 +2025-06-18T13:50:06.981Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 1012ms - RequestID: teza8njmpl8 +2025-06-18T13:50:07.081Z [DEBUG] payment-service - Auth event: password_change - User: user_1039 - IP: 192.168.235.117 - RequestID: jegntx2i7fg +2025-06-18T13:50:07.181Z [DEBUG] order-service - Operation: cache_miss - Processing time: 129ms - RequestID: gkwkfftyk2d +2025-06-18T13:50:07.281Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 400 - Response time: 547ms - IP: 192.168.104.37 - User: user_1088 - RequestID: 18peyt6w0e5 +2025-06-18T13:50:07.381Z [DEBUG] notification-service - GET /api/v1/users - Status: 502 - Response time: 338ms - IP: 192.168.79.116 - User: user_1062 - RequestID: pdkzryqlic +2025-06-18T13:50:07.481Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 65ms - Rows affected: 64 - RequestID: 18lp15b6ynx +2025-06-18T13:50:07.581Z [DEBUG] auth-service - Database INSERT on products - Execution time: 52ms - Rows affected: 4 - RequestID: o97vn7fdlal +2025-06-18T13:50:07.681Z [DEBUG] auth-service - Database SELECT on products - Execution time: 199ms - Rows affected: 68 - RequestID: zmfva60snf8 +2025-06-18T13:50:07.781Z [INFO] auth-service - PATCH /api/v1/payments - Status: 403 - Response time: 211ms - IP: 192.168.68.128 - User: user_1047 - RequestID: fjqxo2fd5nb +2025-06-18T13:50:07.881Z [TRACE] order-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.68.158 - RequestID: ynqqmtulnpe +2025-06-18T13:50:07.981Z [DEBUG] auth-service - Database SELECT on users - Execution time: 328ms - Rows affected: 85 - RequestID: nxo0c55y6ii +2025-06-18T13:50:08.081Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 401 - Response time: 1813ms - IP: 192.168.85.229 - User: user_1060 - RequestID: vwwab9mw788 +2025-06-18T13:50:08.181Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 455ms - IP: 192.168.227.233 - User: user_1056 - RequestID: 3m5gkh128w5 +2025-06-18T13:50:08.281Z [DEBUG] auth-service - Auth event: login_failed - User: user_1087 - IP: 192.168.1.152 - RequestID: lanklexmey +2025-06-18T13:50:08.381Z [INFO] order-service - Operation: notification_queued - Processing time: 304ms - RequestID: wvxvasl9xxc +2025-06-18T13:50:08.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.97.87 - RequestID: 1ydhyhnowjb +2025-06-18T13:50:08.581Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 778ms - RequestID: 3t5b4b7pwad +2025-06-18T13:50:08.681Z [TRACE] order-service - Database INSERT on users - Execution time: 290ms - Rows affected: 96 - RequestID: 40ifvgarbjk +2025-06-18T13:50:08.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.227.77 - RequestID: mer1yv2al4 +2025-06-18T13:50:08.881Z [TRACE] auth-service - Auth event: password_change - User: user_1065 - IP: 192.168.235.117 - RequestID: 37s513wownb +2025-06-18T13:50:08.981Z [TRACE] user-service - Operation: notification_queued - Processing time: 720ms - RequestID: uhmcgzplpsj +2025-06-18T13:50:09.081Z [TRACE] notification-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.242.165 - RequestID: 81bfjnaa33w +2025-06-18T13:50:09.181Z [INFO] user-service - POST /api/v1/orders - Status: 403 - Response time: 810ms - IP: 192.168.147.171 - User: user_1042 - RequestID: 7duwvm0ryvw +2025-06-18T13:50:09.281Z [TRACE] auth-service - Auth event: logout - User: user_1082 - IP: 192.168.170.215 - RequestID: 23k360l0hyt +2025-06-18T13:50:09.381Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 310ms - Rows affected: 67 - RequestID: g1pcm9hypm +2025-06-18T13:50:09.481Z [INFO] order-service - Database INSERT on sessions - Execution time: 220ms - Rows affected: 79 - RequestID: d79uig31zlp +2025-06-18T13:50:09.581Z [TRACE] notification-service - POST /api/v1/payments - Status: 201 - Response time: 144ms - IP: 192.168.133.7 - User: user_1088 - RequestID: 6pe8heo6kq7 +2025-06-18T13:50:09.681Z [TRACE] user-service - Operation: inventory_updated - Processing time: 57ms - RequestID: v758rpmooer +2025-06-18T13:50:09.781Z [TRACE] order-service - Database INSERT on products - Execution time: 3ms - Rows affected: 18 - RequestID: y5dpyubktw +2025-06-18T13:50:09.881Z [DEBUG] order-service - Database INSERT on payments - Execution time: 81ms - Rows affected: 98 - RequestID: orhjnrrfaqi +2025-06-18T13:50:09.981Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 95ms - Rows affected: 18 - RequestID: c2wdm924jzu +2025-06-18T13:50:10.081Z [TRACE] order-service - PATCH /api/v1/users - Status: 500 - Response time: 1530ms - IP: 192.168.79.143 - User: user_1022 - RequestID: vyzkjqx87ee +2025-06-18T13:50:10.181Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 502 - Response time: 1796ms - IP: 192.168.97.87 - User: user_1069 - RequestID: 4ce5j8oku5s +2025-06-18T13:50:10.281Z [INFO] user-service - Database SELECT on orders - Execution time: 398ms - Rows affected: 43 - RequestID: l5xnaw0890n +2025-06-18T13:50:10.381Z [DEBUG] order-service - Auth event: logout - User: user_1010 - IP: 192.168.10.184 - RequestID: wfnpdz5glui +2025-06-18T13:50:10.481Z [DEBUG] order-service - POST /api/v1/inventory - Status: 503 - Response time: 1575ms - IP: 192.168.68.158 - User: user_1010 - RequestID: ykz369ou51 +2025-06-18T13:50:10.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 115ms - RequestID: ipjspagj6v +2025-06-18T13:50:10.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.85.229 - RequestID: dzgfqqqf4xn +2025-06-18T13:50:10.781Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 603ms - RequestID: 9con0kdgjq +2025-06-18T13:50:10.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.46.63 - RequestID: mi1r20tuqkl +2025-06-18T13:50:10.981Z [INFO] notification-service - Database UPDATE on payments - Execution time: 76ms - Rows affected: 32 - RequestID: c4atq98221d +2025-06-18T13:50:11.081Z [TRACE] inventory-service - Operation: order_created - Processing time: 736ms - RequestID: 7kf4u9cg3ra +2025-06-18T13:50:11.181Z [DEBUG] auth-service - Auth event: password_change - User: user_1002 - IP: 192.168.158.144 - RequestID: je7y02k4t9r +2025-06-18T13:50:11.281Z [TRACE] order-service - Database UPDATE on products - Execution time: 70ms - Rows affected: 63 - RequestID: 5sjrnha88gp +2025-06-18T13:50:11.381Z [INFO] inventory-service - POST /api/v1/users - Status: 400 - Response time: 1417ms - IP: 192.168.79.141 - User: user_1043 - RequestID: orvj66xls4t +2025-06-18T13:50:11.481Z [DEBUG] auth-service - Database SELECT on products - Execution time: 272ms - Rows affected: 80 - RequestID: 2j8ddcio77z +2025-06-18T13:50:11.581Z [INFO] inventory-service - Auth event: login_failed - User: user_1063 - IP: 192.168.159.94 - RequestID: 1jrdo72okmt +2025-06-18T13:50:11.681Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 18ms - Rows affected: 88 - RequestID: gwj1lx5qlx6 +2025-06-18T13:50:11.781Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 404 - Response time: 171ms - IP: 192.168.240.169 - User: user_1031 - RequestID: x1uds11jpv +2025-06-18T13:50:11.881Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 404 - Response time: 744ms - IP: 192.168.144.38 - User: user_1029 - RequestID: luksv0w8s9 +2025-06-18T13:50:11.981Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 365ms - RequestID: at1cyfczugq +2025-06-18T13:50:12.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1036 - IP: 192.168.133.7 - RequestID: qtgx6u3lq4 +2025-06-18T13:50:12.181Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 474ms - IP: 192.168.167.32 - User: user_1017 - RequestID: iw0nfyaq6cn +2025-06-18T13:50:12.281Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 401 - Response time: 1103ms - IP: 192.168.104.37 - User: user_1038 - RequestID: 30gtwtsvphf +2025-06-18T13:50:12.381Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.31.117 - RequestID: xjgpxulkh1 +2025-06-18T13:50:12.481Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1594ms - IP: 192.168.30.79 - User: user_1079 - RequestID: a1npmsk1ul8 +2025-06-18T13:50:12.581Z [INFO] payment-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.170.215 - RequestID: jm5sk23nvce +2025-06-18T13:50:12.681Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1234ms - IP: 192.168.187.199 - User: user_1070 - RequestID: 6d1nleqfdp9 +2025-06-18T13:50:12.781Z [TRACE] order-service - Database INSERT on products - Execution time: 420ms - Rows affected: 29 - RequestID: 0uvzfe4broeh +2025-06-18T13:50:12.881Z [TRACE] order-service - Database INSERT on orders - Execution time: 62ms - Rows affected: 6 - RequestID: ukn969jgw5t +2025-06-18T13:50:12.981Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.68.158 - RequestID: 57ew8c1voz +2025-06-18T13:50:13.081Z [DEBUG] order-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.227.233 - RequestID: rg51y9ibri +2025-06-18T13:50:13.181Z [INFO] order-service - Database INSERT on users - Execution time: 82ms - Rows affected: 80 - RequestID: irjaw9fqyt +2025-06-18T13:50:13.281Z [DEBUG] auth-service - Auth event: password_change - User: user_1086 - IP: 192.168.33.76 - RequestID: 0yiushoq0hf +2025-06-18T13:50:13.381Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 403 - Response time: 1331ms - IP: 192.168.247.134 - User: user_1001 - RequestID: byee1lihycd +2025-06-18T13:50:13.481Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 502 - Response time: 439ms - IP: 192.168.211.72 - User: user_1007 - RequestID: cg8n5e1b44 +2025-06-18T13:50:13.581Z [INFO] auth-service - Database INSERT on users - Execution time: 338ms - Rows affected: 45 - RequestID: 33dquncgcjp +2025-06-18T13:50:13.681Z [TRACE] notification-service - Operation: order_created - Processing time: 415ms - RequestID: e8754rbmq9b +2025-06-18T13:50:13.781Z [INFO] user-service - Database UPDATE on orders - Execution time: 253ms - Rows affected: 65 - RequestID: kndik4fc13 +2025-06-18T13:50:13.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.227.233 - RequestID: vb26vmg13q +2025-06-18T13:50:13.981Z [DEBUG] user-service - Auth event: login_failed - User: user_1062 - IP: 192.168.232.72 - RequestID: qcan26nfo7 +2025-06-18T13:50:14.081Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 146ms - Rows affected: 66 - RequestID: jbxwz33a87 +2025-06-18T13:50:14.181Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 273ms - Rows affected: 20 - RequestID: mqvqr13wcp +2025-06-18T13:50:14.281Z [DEBUG] inventory-service - Auth event: login_success - User: user_1093 - IP: 192.168.1.152 - RequestID: a168an3kx6 +2025-06-18T13:50:14.381Z [TRACE] payment-service - POST /api/v1/users - Status: 201 - Response time: 606ms - IP: 192.168.133.7 - User: user_1080 - RequestID: dykmddvjcic +2025-06-18T13:50:14.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 744ms - RequestID: 187zy9ft3xs +2025-06-18T13:50:14.581Z [INFO] inventory-service - Database INSERT on products - Execution time: 241ms - Rows affected: 27 - RequestID: 8aw619px327 +2025-06-18T13:50:14.681Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 500 - Response time: 1645ms - IP: 192.168.167.32 - User: user_1072 - RequestID: aclreh6t2ds +2025-06-18T13:50:14.781Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 115ms - RequestID: rkrbf1l9uzp +2025-06-18T13:50:14.881Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1486ms - IP: 192.168.187.199 - User: user_1028 - RequestID: 1gxcxn9f9td +2025-06-18T13:50:14.981Z [DEBUG] auth-service - Database SELECT on products - Execution time: 242ms - Rows affected: 84 - RequestID: fsnk0xevgyg +2025-06-18T13:50:15.081Z [DEBUG] order-service - Operation: cache_hit - Processing time: 1024ms - RequestID: pgrkjlzuu5 +2025-06-18T13:50:15.181Z [INFO] order-service - PUT /api/v1/payments - Status: 502 - Response time: 1820ms - IP: 192.168.232.72 - User: user_1070 - RequestID: wm1n7asbku +2025-06-18T13:50:15.281Z [INFO] payment-service - POST /api/v1/auth/login - Status: 400 - Response time: 1607ms - IP: 192.168.240.169 - User: user_1069 - RequestID: i8rq67ud5uk +2025-06-18T13:50:15.381Z [INFO] payment-service - Auth event: logout - User: user_1046 - IP: 192.168.36.218 - RequestID: wsx2j68p0yl +2025-06-18T13:50:15.481Z [INFO] order-service - PUT /api/v1/auth/login - Status: 404 - Response time: 382ms - IP: 192.168.13.72 - User: user_1004 - RequestID: rqvcb8x20qn +2025-06-18T13:50:15.581Z [TRACE] notification-service - Database INSERT on payments - Execution time: 437ms - Rows affected: 83 - RequestID: 6inmuirgip7 +2025-06-18T13:50:15.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 810ms - RequestID: y6wd17zz9o +2025-06-18T13:50:15.781Z [INFO] inventory-service - Operation: payment_processed - Processing time: 840ms - RequestID: c8q9bvawdbt +2025-06-18T13:50:15.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1028 - IP: 192.168.46.63 - RequestID: 1n7y8lr2o73 +2025-06-18T13:50:15.981Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 404 - Response time: 1820ms - IP: 192.168.196.226 - User: user_1063 - RequestID: gjmf0dmoya +2025-06-18T13:50:16.081Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.158.144 - RequestID: s3nrax924s8 +2025-06-18T13:50:16.181Z [INFO] user-service - Auth event: login_failed - User: user_1028 - IP: 192.168.79.141 - RequestID: o3onfeky60h +2025-06-18T13:50:16.281Z [DEBUG] order-service - GET /api/v1/inventory - Status: 401 - Response time: 1552ms - IP: 192.168.167.32 - User: user_1062 - RequestID: dhz80wn3s77 +2025-06-18T13:50:16.381Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 247ms - Rows affected: 41 - RequestID: vflgomzwf9 +2025-06-18T13:50:16.481Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 91ms - Rows affected: 55 - RequestID: foyljzr2r6t +2025-06-18T13:50:16.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.32.38 - RequestID: e31hudhx9nt +2025-06-18T13:50:16.681Z [INFO] user-service - Operation: cache_miss - Processing time: 359ms - RequestID: axh6tqqxvtn +2025-06-18T13:50:16.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.240.169 - RequestID: vgn3dcjkxdh +2025-06-18T13:50:16.881Z [TRACE] order-service - Operation: email_sent - Processing time: 893ms - RequestID: uplf80apbes +2025-06-18T13:50:16.981Z [INFO] order-service - GET /api/v1/users - Status: 500 - Response time: 208ms - IP: 192.168.247.134 - User: user_1075 - RequestID: purt52975h +2025-06-18T13:50:17.081Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1866ms - IP: 192.168.167.32 - User: user_1014 - RequestID: aguxi6f7lvf +2025-06-18T13:50:17.181Z [DEBUG] auth-service - GET /api/v1/payments - Status: 403 - Response time: 587ms - IP: 192.168.138.123 - User: user_1057 - RequestID: hk49skozv34 +2025-06-18T13:50:17.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1073 - IP: 192.168.33.76 - RequestID: 41gbl6xm2je +2025-06-18T13:50:17.381Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 200 - Response time: 427ms - IP: 192.168.79.143 - User: user_1012 - RequestID: pes1p01wb49 +2025-06-18T13:50:17.481Z [INFO] inventory-service - Auth event: logout - User: user_1026 - IP: 192.168.97.87 - RequestID: wanbjyeugrh +2025-06-18T13:50:17.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.113.218 - RequestID: kr41urf16t +2025-06-18T13:50:17.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 760ms - RequestID: rrikcu5d5ta +2025-06-18T13:50:17.781Z [TRACE] user-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.141.100 - RequestID: vyts1905mfs +2025-06-18T13:50:17.881Z [DEBUG] user-service - Operation: order_created - Processing time: 818ms - RequestID: pzjcfvht0dq +2025-06-18T13:50:17.981Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.144.38 - RequestID: 7cik1yd7hi3 +2025-06-18T13:50:18.081Z [INFO] inventory-service - Database UPDATE on products - Execution time: 11ms - Rows affected: 31 - RequestID: ot9b4w1zur +2025-06-18T13:50:18.181Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 137ms - Rows affected: 3 - RequestID: 675picrol1m +2025-06-18T13:50:18.281Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 172ms - RequestID: 0fv7szssfnq9 +2025-06-18T13:50:18.381Z [INFO] user-service - POST /api/v1/users - Status: 503 - Response time: 1564ms - IP: 192.168.28.146 - User: user_1042 - RequestID: nwb0vsmjwze +2025-06-18T13:50:18.481Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 209ms - Rows affected: 14 - RequestID: t4y378nkb3q +2025-06-18T13:50:18.581Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 643ms - IP: 192.168.97.87 - User: user_1023 - RequestID: 2pz969tc12h +2025-06-18T13:50:18.681Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1877ms - IP: 192.168.79.116 - User: user_1081 - RequestID: cz5v4kfcib9 +2025-06-18T13:50:18.781Z [INFO] payment-service - Database SELECT on users - Execution time: 195ms - Rows affected: 88 - RequestID: xfla8u76ji +2025-06-18T13:50:18.881Z [INFO] order-service - Database INSERT on products - Execution time: 457ms - Rows affected: 95 - RequestID: yw9c5onugo +2025-06-18T13:50:18.981Z [DEBUG] payment-service - Operation: email_sent - Processing time: 813ms - RequestID: q9s5qsj7xg +2025-06-18T13:50:19.081Z [TRACE] order-service - Operation: notification_queued - Processing time: 560ms - RequestID: kdj96r4zqwj +2025-06-18T13:50:19.181Z [INFO] payment-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.189.103 - RequestID: v6su4yi9pb +2025-06-18T13:50:19.281Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1438ms - IP: 192.168.68.158 - User: user_1084 - RequestID: gr8oimbhts +2025-06-18T13:50:19.381Z [INFO] order-service - Operation: cache_hit - Processing time: 548ms - RequestID: 3ibt6xgb27e +2025-06-18T13:50:19.481Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 42ms - Rows affected: 31 - RequestID: dkol2o9xdig +2025-06-18T13:50:19.581Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 174ms - RequestID: y46qrr1emsj +2025-06-18T13:50:19.681Z [DEBUG] inventory-service - Auth event: login_success - User: user_1005 - IP: 192.168.10.184 - RequestID: mhueo9v6ep +2025-06-18T13:50:19.781Z [TRACE] auth-service - Database INSERT on orders - Execution time: 226ms - Rows affected: 23 - RequestID: 9y8tdcn4wp9 +2025-06-18T13:50:19.881Z [TRACE] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 1243ms - IP: 192.168.13.72 - User: user_1079 - RequestID: erb0h99bmdd +2025-06-18T13:50:19.981Z [INFO] order-service - Database UPDATE on users - Execution time: 161ms - Rows affected: 9 - RequestID: k780gj7hyb +2025-06-18T13:50:20.081Z [INFO] auth-service - Auth event: logout - User: user_1032 - IP: 192.168.147.171 - RequestID: zbhdx4c0wj +2025-06-18T13:50:20.181Z [TRACE] payment-service - GET /api/v1/users - Status: 404 - Response time: 1471ms - IP: 192.168.79.143 - User: user_1082 - RequestID: liw3bd3kh1 +2025-06-18T13:50:20.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 372ms - RequestID: 4j41iza5vsr +2025-06-18T13:50:20.381Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 404 - Response time: 421ms - IP: 192.168.81.206 - User: user_1081 - RequestID: mcnm0i8eqx +2025-06-18T13:50:20.481Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 402ms - RequestID: yhc95lboqx +2025-06-18T13:50:20.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1037 - IP: 192.168.235.117 - RequestID: n964w4a9y5 +2025-06-18T13:50:20.681Z [DEBUG] user-service - PUT /api/v1/users - Status: 403 - Response time: 1390ms - IP: 192.168.113.218 - User: user_1037 - RequestID: 14kiz64m4ba +2025-06-18T13:50:20.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 262ms - RequestID: yb5mm8waxj +2025-06-18T13:50:20.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1022 - IP: 192.168.85.229 - RequestID: dn06f8m29pk +2025-06-18T13:50:20.981Z [TRACE] payment-service - GET /api/v1/users - Status: 404 - Response time: 17ms - IP: 192.168.46.63 - User: user_1035 - RequestID: 3x0d8d6ljkx +2025-06-18T13:50:21.081Z [INFO] auth-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.53.133 - RequestID: ubtki5blw1e +2025-06-18T13:50:21.181Z [INFO] user-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.36.218 - RequestID: djjyiuoeue +2025-06-18T13:50:21.281Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.64.33 - RequestID: wejypmgtnps +2025-06-18T13:50:21.381Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 902ms - RequestID: i7o41lhdfc9 +2025-06-18T13:50:21.481Z [INFO] payment-service - GET /api/v1/users - Status: 201 - Response time: 455ms - IP: 192.168.242.165 - User: user_1000 - RequestID: fcrilboivop +2025-06-18T13:50:21.581Z [INFO] auth-service - Database INSERT on orders - Execution time: 42ms - Rows affected: 12 - RequestID: 4ze8in4rdmq +2025-06-18T13:50:21.681Z [TRACE] auth-service - Operation: cache_miss - Processing time: 608ms - RequestID: sf2g23wbrjh +2025-06-18T13:50:21.781Z [INFO] payment-service - Database DELETE on orders - Execution time: 143ms - Rows affected: 25 - RequestID: c2db0kj8475 +2025-06-18T13:50:21.881Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 206ms - Rows affected: 93 - RequestID: iwrt262kqfg +2025-06-18T13:50:21.981Z [TRACE] inventory-service - Auth event: logout - User: user_1083 - IP: 192.168.196.226 - RequestID: 7evtr6f3yu +2025-06-18T13:50:22.081Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 1843ms - IP: 192.168.138.123 - User: user_1036 - RequestID: 3elt4hwzi6 +2025-06-18T13:50:22.181Z [DEBUG] payment-service - Operation: order_created - Processing time: 517ms - RequestID: p9i7b2d3rx +2025-06-18T13:50:22.281Z [INFO] order-service - Database UPDATE on sessions - Execution time: 420ms - Rows affected: 44 - RequestID: u83eie31ujr +2025-06-18T13:50:22.381Z [TRACE] auth-service - Auth event: logout - User: user_1041 - IP: 192.168.64.33 - RequestID: 4c23oofo51b +2025-06-18T13:50:22.481Z [INFO] user-service - Database INSERT on orders - Execution time: 205ms - Rows affected: 22 - RequestID: 6264zahrqeu +2025-06-18T13:50:22.581Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 387ms - Rows affected: 62 - RequestID: l1rqgob8vx +2025-06-18T13:50:22.681Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 404 - Response time: 1055ms - IP: 192.168.33.76 - User: user_1034 - RequestID: eqaa0kr3z5k +2025-06-18T13:50:22.781Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 413ms - RequestID: 4wh0m783aau +2025-06-18T13:50:22.881Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 9ms - Rows affected: 41 - RequestID: gvgnuifr05 +2025-06-18T13:50:22.981Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 255ms - IP: 192.168.247.134 - User: user_1081 - RequestID: diqx408sgy +2025-06-18T13:50:23.081Z [TRACE] payment-service - POST /api/v1/orders - Status: 200 - Response time: 932ms - IP: 192.168.174.114 - User: user_1075 - RequestID: m8jcnvzikpp +2025-06-18T13:50:23.181Z [TRACE] inventory-service - Auth event: login_failed - User: user_1031 - IP: 192.168.79.116 - RequestID: ul878y7yip +2025-06-18T13:50:23.281Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 92ms - RequestID: unyms9xgnw +2025-06-18T13:50:23.381Z [DEBUG] auth-service - GET /api/v1/payments - Status: 404 - Response time: 1477ms - IP: 192.168.189.103 - User: user_1042 - RequestID: xssykf635ub +2025-06-18T13:50:23.481Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 503 - Response time: 755ms - IP: 192.168.235.117 - User: user_1094 - RequestID: ueoaj3xj6n +2025-06-18T13:50:23.581Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 400 - Response time: 1114ms - IP: 192.168.189.103 - User: user_1010 - RequestID: gv0jrjp4x8 +2025-06-18T13:50:23.681Z [TRACE] inventory-service - Database DELETE on users - Execution time: 217ms - Rows affected: 74 - RequestID: 8pxycl3q2yh +2025-06-18T13:50:23.781Z [INFO] payment-service - Operation: order_created - Processing time: 1019ms - RequestID: kicyutnqnfn +2025-06-18T13:50:23.881Z [INFO] order-service - Operation: cache_hit - Processing time: 171ms - RequestID: iiavzt3ip3r +2025-06-18T13:50:23.981Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 346ms - Rows affected: 65 - RequestID: 1z8aord4jah +2025-06-18T13:50:24.081Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 884ms - IP: 192.168.85.229 - User: user_1054 - RequestID: vfy7iu3ocm +2025-06-18T13:50:24.181Z [TRACE] payment-service - Database SELECT on orders - Execution time: 53ms - Rows affected: 79 - RequestID: dkkok7rh669 +2025-06-18T13:50:24.281Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 273ms - Rows affected: 87 - RequestID: zxkblcble3o +2025-06-18T13:50:24.381Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 71ms - Rows affected: 4 - RequestID: 0wni7xjkkjao +2025-06-18T13:50:24.481Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 43ms - Rows affected: 80 - RequestID: yo649a22vyr +2025-06-18T13:50:24.581Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 9ms - Rows affected: 33 - RequestID: ixscyj9fav +2025-06-18T13:50:24.681Z [INFO] order-service - Database UPDATE on payments - Execution time: 382ms - Rows affected: 82 - RequestID: rfdc9mw59h +2025-06-18T13:50:24.781Z [INFO] auth-service - PUT /api/v1/inventory - Status: 401 - Response time: 674ms - IP: 192.168.240.169 - User: user_1035 - RequestID: 01fuz4zml6hw +2025-06-18T13:50:24.881Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1064 - IP: 192.168.31.117 - RequestID: vvtt8t8hydf +2025-06-18T13:50:24.981Z [TRACE] order-service - Database SELECT on sessions - Execution time: 231ms - Rows affected: 76 - RequestID: 7me35zbephl +2025-06-18T13:50:25.081Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1182ms - IP: 192.168.68.128 - User: user_1060 - RequestID: o2fguvw12ds +2025-06-18T13:50:25.181Z [DEBUG] user-service - GET /api/v1/orders - Status: 502 - Response time: 1687ms - IP: 192.168.144.38 - User: user_1016 - RequestID: 7y0nhgaaohe +2025-06-18T13:50:25.281Z [DEBUG] user-service - Operation: email_sent - Processing time: 837ms - RequestID: f5fj9mmsg2b +2025-06-18T13:50:25.381Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 503 - Response time: 462ms - IP: 192.168.1.152 - User: user_1092 - RequestID: xmfyt45ghs +2025-06-18T13:50:25.481Z [INFO] notification-service - Database SELECT on orders - Execution time: 207ms - Rows affected: 85 - RequestID: kfdy66d3aeo +2025-06-18T13:50:25.581Z [INFO] inventory-service - Auth event: login_success - User: user_1033 - IP: 192.168.44.5 - RequestID: 0mbw52wbmro +2025-06-18T13:50:25.681Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 401 - Response time: 766ms - IP: 192.168.79.116 - User: user_1097 - RequestID: mlgkztg9pk +2025-06-18T13:50:25.781Z [DEBUG] notification-service - GET /api/v1/orders - Status: 404 - Response time: 546ms - IP: 192.168.81.206 - User: user_1046 - RequestID: ca7puc8dk4j +2025-06-18T13:50:25.881Z [DEBUG] user-service - Auth event: logout - User: user_1049 - IP: 192.168.100.240 - RequestID: hvsnt3rqw7r +2025-06-18T13:50:25.981Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 223ms - Rows affected: 42 - RequestID: m252ql8vde +2025-06-18T13:50:26.081Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 625ms - RequestID: k934cipfke +2025-06-18T13:50:26.181Z [TRACE] payment-service - Auth event: login_success - User: user_1098 - IP: 192.168.14.77 - RequestID: o1a2u1ggwd +2025-06-18T13:50:26.281Z [DEBUG] payment-service - Operation: email_sent - Processing time: 99ms - RequestID: fx4g1moubvc +2025-06-18T13:50:26.381Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1378ms - IP: 192.168.194.41 - User: user_1020 - RequestID: 1v8aea840vlh +2025-06-18T13:50:26.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1025 - IP: 192.168.104.37 - RequestID: mrbpsipxnn +2025-06-18T13:50:26.581Z [TRACE] payment-service - Auth event: logout - User: user_1093 - IP: 192.168.232.72 - RequestID: co1el619xd +2025-06-18T13:50:26.681Z [TRACE] order-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.229.123 - RequestID: hyfr578dsr6 +2025-06-18T13:50:26.781Z [INFO] notification-service - Operation: notification_queued - Processing time: 269ms - RequestID: k78tnwfukja +2025-06-18T13:50:26.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1062 - IP: 192.168.10.184 - RequestID: v3y12psjuis +2025-06-18T13:50:26.981Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 487ms - Rows affected: 66 - RequestID: mh5nckjf74c +2025-06-18T13:50:27.081Z [INFO] auth-service - Database UPDATE on payments - Execution time: 225ms - Rows affected: 3 - RequestID: vzhl4d7j26 +2025-06-18T13:50:27.181Z [TRACE] auth-service - Operation: email_sent - Processing time: 658ms - RequestID: ebst2tp6t4 +2025-06-18T13:50:27.281Z [TRACE] auth-service - DELETE /api/v1/users - Status: 502 - Response time: 1008ms - IP: 192.168.187.199 - User: user_1090 - RequestID: nb3sfot8sw +2025-06-18T13:50:27.381Z [INFO] auth-service - Database INSERT on users - Execution time: 187ms - Rows affected: 59 - RequestID: cgbqllkfiih +2025-06-18T13:50:27.481Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 308ms - RequestID: z579micgi8h +2025-06-18T13:50:27.581Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 492ms - Rows affected: 38 - RequestID: p0qd2ohusx +2025-06-18T13:50:27.681Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 358ms - IP: 192.168.232.72 - User: user_1006 - RequestID: zb1lppvg109 +2025-06-18T13:50:27.781Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1153ms - IP: 192.168.196.226 - User: user_1049 - RequestID: w2bhck947n +2025-06-18T13:50:27.881Z [INFO] order-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.44.5 - RequestID: 2qfwltwpfxb +2025-06-18T13:50:27.981Z [TRACE] user-service - Operation: order_created - Processing time: 433ms - RequestID: h7deh84om5q +2025-06-18T13:50:28.081Z [INFO] order-service - Auth event: login_success - User: user_1007 - IP: 192.168.158.144 - RequestID: 2faa4svjofa +2025-06-18T13:50:28.181Z [INFO] user-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.79.141 - RequestID: 4b6o26ktrfy +2025-06-18T13:50:28.281Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 63ms - Rows affected: 15 - RequestID: ci4ilfwk0rm +2025-06-18T13:50:28.381Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 404 - Response time: 510ms - IP: 192.168.79.141 - User: user_1001 - RequestID: t5z1whztf5 +2025-06-18T13:50:28.481Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 502 - Response time: 664ms - IP: 192.168.170.215 - User: user_1081 - RequestID: 935gu10ligt +2025-06-18T13:50:28.581Z [INFO] payment-service - Auth event: password_change - User: user_1086 - IP: 192.168.144.38 - RequestID: n9l9pupevdp +2025-06-18T13:50:28.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1044 - IP: 192.168.100.240 - RequestID: 3a1e32yq1v +2025-06-18T13:50:28.781Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 500 - Response time: 837ms - IP: 192.168.211.72 - User: user_1071 - RequestID: 6284irrxe8a +2025-06-18T13:50:28.881Z [DEBUG] payment-service - Database SELECT on users - Execution time: 178ms - Rows affected: 2 - RequestID: ygfpbyzagl +2025-06-18T13:50:28.981Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 404 - Response time: 324ms - IP: 192.168.167.32 - User: user_1039 - RequestID: 11tprd3i5x2q +2025-06-18T13:50:29.081Z [INFO] inventory-service - Database DELETE on products - Execution time: 330ms - Rows affected: 15 - RequestID: 5pncd4wp5at +2025-06-18T13:50:29.181Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1857ms - IP: 192.168.211.72 - User: user_1062 - RequestID: 7jdd2yel0wk +2025-06-18T13:50:29.281Z [INFO] payment-service - Operation: webhook_sent - Processing time: 858ms - RequestID: xuxdodw0y4s +2025-06-18T13:50:29.381Z [TRACE] order-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.196.226 - RequestID: chwc8e2c8cs +2025-06-18T13:50:29.481Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 105ms - Rows affected: 74 - RequestID: ob2yzce8kl +2025-06-18T13:50:29.581Z [TRACE] auth-service - Operation: notification_queued - Processing time: 1030ms - RequestID: lnlvupyn4e +2025-06-18T13:50:29.681Z [INFO] order-service - GET /api/v1/payments - Status: 403 - Response time: 1335ms - IP: 192.168.28.146 - User: user_1079 - RequestID: zolx1f3tv8 +2025-06-18T13:50:29.781Z [INFO] inventory-service - Database INSERT on orders - Execution time: 260ms - Rows affected: 20 - RequestID: c38gcgyang4 +2025-06-18T13:50:29.881Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 496ms - Rows affected: 45 - RequestID: zov2sjwt9g9 +2025-06-18T13:50:29.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1011 - IP: 192.168.64.33 - RequestID: 8kavvic79lc +2025-06-18T13:50:30.081Z [INFO] payment-service - Auth event: login_failed - User: user_1072 - IP: 192.168.53.133 - RequestID: u9j5xfv6s5d +2025-06-18T13:50:30.181Z [TRACE] notification-service - Operation: email_sent - Processing time: 717ms - RequestID: fzi94pht0m6 +2025-06-18T13:50:30.281Z [INFO] payment-service - Operation: cache_miss - Processing time: 386ms - RequestID: jv0bas4d1f +2025-06-18T13:50:30.381Z [TRACE] user-service - Auth event: password_change - User: user_1041 - IP: 192.168.133.7 - RequestID: ycc62z8y0es +2025-06-18T13:50:30.481Z [INFO] user-service - Operation: payment_processed - Processing time: 385ms - RequestID: 1q4xp1c35xh +2025-06-18T13:50:30.581Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 165ms - Rows affected: 86 - RequestID: hq6h28c2uwe +2025-06-18T13:50:30.681Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 94ms - Rows affected: 63 - RequestID: jqun9c0k8xf +2025-06-18T13:50:30.781Z [TRACE] auth-service - PUT /api/v1/users - Status: 401 - Response time: 1842ms - IP: 192.168.11.60 - User: user_1049 - RequestID: 6aarkuv1ai8 +2025-06-18T13:50:30.881Z [INFO] payment-service - Database INSERT on sessions - Execution time: 388ms - Rows affected: 29 - RequestID: exnsbdsa0wb +2025-06-18T13:50:30.981Z [INFO] notification-service - Database SELECT on payments - Execution time: 227ms - Rows affected: 91 - RequestID: 9llir8vwup +2025-06-18T13:50:31.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.10.184 - RequestID: i2n8aft7gn +2025-06-18T13:50:31.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 574ms - RequestID: nn9uoq5knk +2025-06-18T13:50:31.281Z [INFO] user-service - Auth event: login_failed - User: user_1020 - IP: 192.168.133.7 - RequestID: 8p9cdd2riw2 +2025-06-18T13:50:31.381Z [INFO] inventory-service - PUT /api/v1/orders - Status: 500 - Response time: 280ms - IP: 192.168.44.5 - User: user_1092 - RequestID: y1ach1n2x4 +2025-06-18T13:50:31.481Z [INFO] order-service - Operation: inventory_updated - Processing time: 941ms - RequestID: yirj1g3hd8 +2025-06-18T13:50:31.581Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 500 - Response time: 158ms - IP: 192.168.1.152 - User: user_1095 - RequestID: 7vzp9yv2q39 +2025-06-18T13:50:31.681Z [TRACE] payment-service - DELETE /api/v1/users - Status: 200 - Response time: 1400ms - IP: 192.168.240.169 - User: user_1066 - RequestID: 4qgp26mn94v +2025-06-18T13:50:31.781Z [TRACE] order-service - GET /api/v1/users - Status: 200 - Response time: 995ms - IP: 192.168.227.233 - User: user_1041 - RequestID: fi4burocpnu +2025-06-18T13:50:31.881Z [TRACE] auth-service - POST /api/v1/inventory - Status: 200 - Response time: 612ms - IP: 192.168.229.123 - User: user_1046 - RequestID: 7ms6ty4jdnn +2025-06-18T13:50:31.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.64.33 - RequestID: mt5uojb6le +2025-06-18T13:50:32.081Z [TRACE] auth-service - Database DELETE on orders - Execution time: 454ms - Rows affected: 59 - RequestID: mffvyfkeuip +2025-06-18T13:50:32.181Z [INFO] auth-service - Database SELECT on products - Execution time: 370ms - Rows affected: 99 - RequestID: 7eaggve2vqi +2025-06-18T13:50:32.281Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 423ms - Rows affected: 20 - RequestID: e9me1020dpw +2025-06-18T13:50:32.381Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1271ms - IP: 192.168.141.100 - User: user_1098 - RequestID: 5rmdffsw5t +2025-06-18T13:50:32.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.187.199 - RequestID: kzf891xgjm +2025-06-18T13:50:32.581Z [DEBUG] order-service - Auth event: login_failed - User: user_1038 - IP: 192.168.138.123 - RequestID: 4816t2dyyqj +2025-06-18T13:50:32.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1047 - IP: 192.168.97.87 - RequestID: vj7di7kn30n +2025-06-18T13:50:32.781Z [INFO] notification-service - Auth event: login_failed - User: user_1048 - IP: 192.168.30.79 - RequestID: 2yjvhxbx6f3 +2025-06-18T13:50:32.881Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 400 - Response time: 590ms - IP: 192.168.11.60 - User: user_1071 - RequestID: v5z9os9pk5f +2025-06-18T13:50:32.981Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 200 - Response time: 88ms - IP: 192.168.194.41 - User: user_1072 - RequestID: luwoh028w3 +2025-06-18T13:50:33.081Z [INFO] order-service - PUT /api/v1/orders - Status: 201 - Response time: 789ms - IP: 192.168.31.117 - User: user_1097 - RequestID: afdv3g2ypml +2025-06-18T13:50:33.181Z [DEBUG] order-service - Database DELETE on orders - Execution time: 447ms - Rows affected: 0 - RequestID: c9qqa4kudf +2025-06-18T13:50:33.281Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 98ms - Rows affected: 31 - RequestID: fuk2s5x6nzd +2025-06-18T13:50:33.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.10.184 - RequestID: 4prz35jimwm +2025-06-18T13:50:33.481Z [INFO] inventory-service - Database DELETE on orders - Execution time: 437ms - Rows affected: 25 - RequestID: cs53r58a3ci +2025-06-18T13:50:33.581Z [TRACE] order-service - Database DELETE on orders - Execution time: 106ms - Rows affected: 40 - RequestID: feb6an5adz6 +2025-06-18T13:50:33.681Z [INFO] payment-service - PUT /api/v1/users - Status: 500 - Response time: 764ms - IP: 192.168.79.143 - User: user_1023 - RequestID: rhoy6cqh8ra +2025-06-18T13:50:33.781Z [TRACE] auth-service - Operation: email_sent - Processing time: 415ms - RequestID: s2qpbrba1qt +2025-06-18T13:50:33.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.211.72 - RequestID: 51ey8x34gpx +2025-06-18T13:50:33.981Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 97ms - Rows affected: 69 - RequestID: nwqds1unqgp +2025-06-18T13:50:34.081Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 497ms - Rows affected: 32 - RequestID: abe4i1tx5yl +2025-06-18T13:50:34.181Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 214ms - Rows affected: 86 - RequestID: yayz8dskv9c +2025-06-18T13:50:34.281Z [DEBUG] user-service - Database SELECT on users - Execution time: 320ms - Rows affected: 89 - RequestID: tmtbsvs3j6n +2025-06-18T13:50:34.381Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 987ms - RequestID: 165mv7ek42h +2025-06-18T13:50:34.481Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 47ms - Rows affected: 88 - RequestID: dx7e1f762tv +2025-06-18T13:50:34.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.235.117 - RequestID: lefr21n2dbi +2025-06-18T13:50:34.681Z [INFO] notification-service - Auth event: logout - User: user_1066 - IP: 192.168.79.143 - RequestID: i48mg0mytqi +2025-06-18T13:50:34.781Z [TRACE] order-service - Operation: inventory_updated - Processing time: 646ms - RequestID: qhqy9x6uv6r +2025-06-18T13:50:34.881Z [INFO] user-service - Database DELETE on products - Execution time: 259ms - Rows affected: 98 - RequestID: riemfamhebj +2025-06-18T13:50:34.981Z [INFO] notification-service - Operation: webhook_sent - Processing time: 586ms - RequestID: 9v5a1sjlfwk +2025-06-18T13:50:35.081Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 430ms - Rows affected: 94 - RequestID: oszfp4fo1nk +2025-06-18T13:50:35.181Z [DEBUG] order-service - GET /api/v1/payments - Status: 400 - Response time: 373ms - IP: 192.168.159.94 - User: user_1081 - RequestID: nfw787klzo +2025-06-18T13:50:35.281Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 200 - Response time: 1755ms - IP: 192.168.11.60 - User: user_1000 - RequestID: 5dpnw0t1cvw +2025-06-18T13:50:35.381Z [INFO] inventory-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.68.128 - RequestID: kosqdkkl83 +2025-06-18T13:50:35.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.147.171 - RequestID: n491p1s0fdn +2025-06-18T13:50:35.581Z [TRACE] payment-service - Auth event: password_change - User: user_1041 - IP: 192.168.79.116 - RequestID: vfujxt09pa +2025-06-18T13:50:35.681Z [TRACE] auth-service - Database DELETE on products - Execution time: 389ms - Rows affected: 17 - RequestID: 220v2fedsol +2025-06-18T13:50:35.781Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 317ms - RequestID: 70zh5m9okgd +2025-06-18T13:50:35.881Z [TRACE] user-service - PATCH /api/v1/users - Status: 201 - Response time: 1313ms - IP: 192.168.104.37 - User: user_1047 - RequestID: m49elsrtndq +2025-06-18T13:50:35.981Z [INFO] payment-service - Database INSERT on products - Execution time: 492ms - Rows affected: 61 - RequestID: chdbwhixm4k +2025-06-18T13:50:36.081Z [INFO] order-service - Operation: webhook_sent - Processing time: 377ms - RequestID: wd2b37cv91 +2025-06-18T13:50:36.181Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 400 - Response time: 777ms - IP: 192.168.211.72 - User: user_1037 - RequestID: pn7cx4vd9a7 +2025-06-18T13:50:36.281Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1274ms - IP: 192.168.79.141 - User: user_1033 - RequestID: daqdqoankdv +2025-06-18T13:50:36.381Z [DEBUG] user-service - Operation: order_created - Processing time: 1040ms - RequestID: 1ll9xp2r8x3 +2025-06-18T13:50:36.481Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 734ms - RequestID: 7p7r758quqp +2025-06-18T13:50:36.581Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 573ms - RequestID: 8oiqhqaguns +2025-06-18T13:50:36.681Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 238ms - Rows affected: 74 - RequestID: tdo9gsuefa +2025-06-18T13:50:36.781Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 466ms - Rows affected: 2 - RequestID: yq9o86e8oob +2025-06-18T13:50:36.881Z [TRACE] payment-service - Auth event: login_success - User: user_1048 - IP: 192.168.187.199 - RequestID: vg5ve96whkn +2025-06-18T13:50:36.981Z [TRACE] user-service - DELETE /api/v1/users - Status: 502 - Response time: 24ms - IP: 192.168.64.33 - User: user_1081 - RequestID: pkvndh7ryyq +2025-06-18T13:50:37.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1056 - IP: 192.168.85.229 - RequestID: a2ybdokoy8c +2025-06-18T13:50:37.181Z [INFO] payment-service - Operation: webhook_sent - Processing time: 928ms - RequestID: k0mwjmp5ord +2025-06-18T13:50:37.281Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1548ms - IP: 192.168.104.37 - User: user_1036 - RequestID: lyv3uktdohi +2025-06-18T13:50:37.381Z [INFO] notification-service - Auth event: login_success - User: user_1073 - IP: 192.168.79.143 - RequestID: kvxcckzaa1 +2025-06-18T13:50:37.481Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 498ms - RequestID: g8bqj4mjori +2025-06-18T13:50:37.581Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 351ms - Rows affected: 56 - RequestID: jto99b76xol +2025-06-18T13:50:37.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1018 - IP: 192.168.158.144 - RequestID: 0djqu600svy +2025-06-18T13:50:37.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 819ms - RequestID: 8nh8nblghjf +2025-06-18T13:50:37.881Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 226ms - Rows affected: 94 - RequestID: r4j576mk5ek +2025-06-18T13:50:37.981Z [INFO] inventory-service - Auth event: password_change - User: user_1080 - IP: 192.168.53.133 - RequestID: c6h0fhufno +2025-06-18T13:50:38.081Z [INFO] payment-service - Auth event: login_failed - User: user_1092 - IP: 192.168.13.72 - RequestID: bmqtl0px32 +2025-06-18T13:50:38.181Z [INFO] auth-service - Operation: email_sent - Processing time: 782ms - RequestID: g6htqnaqxd9 +2025-06-18T13:50:38.281Z [TRACE] order-service - Database INSERT on products - Execution time: 118ms - Rows affected: 30 - RequestID: 3hzcu77b7m6 +2025-06-18T13:50:38.381Z [TRACE] auth-service - Operation: order_created - Processing time: 402ms - RequestID: rr7it75fcun +2025-06-18T13:50:38.481Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 478ms - RequestID: vh0dbxgyhhl +2025-06-18T13:50:38.581Z [INFO] payment-service - Operation: notification_queued - Processing time: 995ms - RequestID: gk345o353vd +2025-06-18T13:50:38.681Z [TRACE] payment-service - Operation: email_sent - Processing time: 902ms - RequestID: jazpiqy0jhi +2025-06-18T13:50:38.781Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 282ms - Rows affected: 75 - RequestID: vv6m1r6glyn +2025-06-18T13:50:38.881Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 218ms - Rows affected: 99 - RequestID: rywa1nn2zx +2025-06-18T13:50:38.981Z [DEBUG] user-service - Database DELETE on orders - Execution time: 34ms - Rows affected: 56 - RequestID: idhhrse25xl +2025-06-18T13:50:39.081Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 96ms - Rows affected: 47 - RequestID: yd7z2l6aw2j +2025-06-18T13:50:39.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.10.184 - RequestID: a19oezj9gx5 +2025-06-18T13:50:39.281Z [INFO] order-service - Auth event: login_failed - User: user_1001 - IP: 192.168.46.63 - RequestID: meeyzxjhwl +2025-06-18T13:50:39.381Z [INFO] user-service - Operation: email_sent - Processing time: 761ms - RequestID: 5zh1g9me3bh +2025-06-18T13:50:39.481Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 403 - Response time: 1425ms - IP: 192.168.158.144 - User: user_1018 - RequestID: fr6hj4qnuvf +2025-06-18T13:50:39.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.1.152 - RequestID: 6vltv9427og +2025-06-18T13:50:39.681Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 400 - Response time: 454ms - IP: 192.168.247.134 - User: user_1054 - RequestID: ucvv05krprq +2025-06-18T13:50:39.781Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 52ms - Rows affected: 46 - RequestID: irmu7dwpg3 +2025-06-18T13:50:39.881Z [INFO] auth-service - GET /api/v1/payments - Status: 401 - Response time: 1631ms - IP: 192.168.147.171 - User: user_1055 - RequestID: bal0szsoeav +2025-06-18T13:50:39.981Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 201 - Response time: 979ms - IP: 192.168.227.233 - User: user_1049 - RequestID: ijg3qdyxzd +2025-06-18T13:50:40.081Z [INFO] order-service - Database UPDATE on payments - Execution time: 292ms - Rows affected: 90 - RequestID: eo6y8fixq9a +2025-06-18T13:50:40.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 1043ms - RequestID: 3z0fgc4lywu +2025-06-18T13:50:40.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1043 - IP: 192.168.170.215 - RequestID: m155qwedvw +2025-06-18T13:50:40.381Z [INFO] user-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.68.128 - RequestID: 4nf34uu91zg +2025-06-18T13:50:40.481Z [DEBUG] auth-service - Auth event: password_change - User: user_1001 - IP: 192.168.13.72 - RequestID: w8ub5xuer7 +2025-06-18T13:50:40.581Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 403 - Response time: 1063ms - IP: 192.168.227.77 - User: user_1010 - RequestID: xva542uucr +2025-06-18T13:50:40.681Z [TRACE] auth-service - Operation: cache_miss - Processing time: 441ms - RequestID: 8xecp573ovk +2025-06-18T13:50:40.781Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 503 - Response time: 1926ms - IP: 192.168.158.144 - User: user_1010 - RequestID: en7lnpvk5q +2025-06-18T13:50:40.881Z [TRACE] inventory-service - POST /api/v1/users - Status: 201 - Response time: 1584ms - IP: 192.168.11.60 - User: user_1031 - RequestID: 341ztf9gkcn +2025-06-18T13:50:40.981Z [TRACE] auth-service - PUT /api/v1/orders - Status: 502 - Response time: 308ms - IP: 192.168.68.128 - User: user_1031 - RequestID: sdlxijtpq29 +2025-06-18T13:50:41.081Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 404 - Response time: 902ms - IP: 192.168.85.229 - User: user_1036 - RequestID: 3zu5c0jks76 +2025-06-18T13:50:41.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 827ms - RequestID: b4bobeismdd +2025-06-18T13:50:41.281Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 425ms - Rows affected: 19 - RequestID: zk28mqr0ld +2025-06-18T13:50:41.381Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 712ms - RequestID: k72sg0n4ok +2025-06-18T13:50:41.481Z [INFO] auth-service - DELETE /api/v1/payments - Status: 502 - Response time: 1000ms - IP: 192.168.11.60 - User: user_1095 - RequestID: xsnxl3tvkwi +2025-06-18T13:50:41.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1012 - IP: 192.168.31.117 - RequestID: 2n64iams08w +2025-06-18T13:50:41.681Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 424ms - Rows affected: 13 - RequestID: ldsrnbyatv8 +2025-06-18T13:50:41.781Z [TRACE] user-service - Database UPDATE on products - Execution time: 231ms - Rows affected: 10 - RequestID: ssrcbyib5lr +2025-06-18T13:50:41.881Z [INFO] notification-service - Auth event: password_change - User: user_1096 - IP: 192.168.158.144 - RequestID: 34r8lhjjjzk +2025-06-18T13:50:41.981Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1551ms - IP: 192.168.14.77 - User: user_1021 - RequestID: zwk699q1au +2025-06-18T13:50:42.081Z [DEBUG] payment-service - Auth event: login_success - User: user_1000 - IP: 192.168.36.218 - RequestID: eaentvzlw7r +2025-06-18T13:50:42.181Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 400 - Response time: 1014ms - IP: 192.168.104.37 - User: user_1078 - RequestID: 4sy5wzlm9dh +2025-06-18T13:50:42.281Z [INFO] user-service - GET /api/v1/auth/login - Status: 502 - Response time: 1462ms - IP: 192.168.36.218 - User: user_1084 - RequestID: d6cq1x5jgrd +2025-06-18T13:50:42.381Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 1046ms - RequestID: jmctup2exzc +2025-06-18T13:50:42.481Z [INFO] notification-service - Database INSERT on sessions - Execution time: 185ms - Rows affected: 95 - RequestID: pbfy3s0yj7 +2025-06-18T13:50:42.581Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1842ms - IP: 192.168.64.33 - User: user_1016 - RequestID: euuvbu4u7c9 +2025-06-18T13:50:42.681Z [TRACE] inventory-service - Database SELECT on users - Execution time: 174ms - Rows affected: 68 - RequestID: ebgycmvqt1b +2025-06-18T13:50:42.781Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1393ms - IP: 192.168.189.103 - User: user_1056 - RequestID: wf9gty05a48 +2025-06-18T13:50:42.881Z [TRACE] payment-service - Database SELECT on orders - Execution time: 390ms - Rows affected: 73 - RequestID: 1ikua89e631 +2025-06-18T13:50:42.981Z [DEBUG] user-service - Database UPDATE on products - Execution time: 432ms - Rows affected: 68 - RequestID: pci9j0yucbk +2025-06-18T13:50:43.081Z [DEBUG] notification-service - Auth event: logout - User: user_1046 - IP: 192.168.79.116 - RequestID: bxn481aomiv +2025-06-18T13:50:43.181Z [INFO] user-service - Operation: cache_miss - Processing time: 258ms - RequestID: i8580dgczb +2025-06-18T13:50:43.281Z [TRACE] user-service - Auth event: login_failed - User: user_1028 - IP: 192.168.53.133 - RequestID: whdw0eowk +2025-06-18T13:50:43.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.240.169 - RequestID: 4estos9d768 +2025-06-18T13:50:43.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.113.218 - RequestID: wojw52fmac +2025-06-18T13:50:43.581Z [DEBUG] order-service - Auth event: logout - User: user_1070 - IP: 192.168.158.144 - RequestID: pr6xtma4bu +2025-06-18T13:50:43.681Z [DEBUG] user-service - Database DELETE on products - Execution time: 152ms - Rows affected: 26 - RequestID: ejpu9d0v8s +2025-06-18T13:50:43.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1088 - IP: 192.168.189.103 - RequestID: 2mkbvjmudpx +2025-06-18T13:50:43.881Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 404 - Response time: 450ms - IP: 192.168.44.5 - User: user_1008 - RequestID: p3pkh3vaxrn +2025-06-18T13:50:43.981Z [TRACE] payment-service - Database SELECT on orders - Execution time: 403ms - Rows affected: 52 - RequestID: a92c8x4ie2 +2025-06-18T13:50:44.081Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 469ms - Rows affected: 35 - RequestID: 1s71p6pekrt +2025-06-18T13:50:44.181Z [TRACE] user-service - Database SELECT on sessions - Execution time: 476ms - Rows affected: 62 - RequestID: vezi1b7tt18 +2025-06-18T13:50:44.281Z [INFO] notification-service - Database SELECT on sessions - Execution time: 157ms - Rows affected: 78 - RequestID: efom5wo296t +2025-06-18T13:50:44.381Z [DEBUG] order-service - Auth event: login_success - User: user_1031 - IP: 192.168.170.215 - RequestID: tbtnxi2mfsn +2025-06-18T13:50:44.481Z [TRACE] payment-service - Operation: order_created - Processing time: 839ms - RequestID: 1236no00rgt +2025-06-18T13:50:44.581Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 306ms - Rows affected: 36 - RequestID: 1lxblhpobhh +2025-06-18T13:50:44.681Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 849ms - RequestID: c4zlb5h6fok +2025-06-18T13:50:44.781Z [INFO] auth-service - Database UPDATE on orders - Execution time: 171ms - Rows affected: 74 - RequestID: 0jve3hhovfy +2025-06-18T13:50:44.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1031 - IP: 192.168.11.60 - RequestID: 0f1pm6l9ro68 +2025-06-18T13:50:44.981Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 201 - Response time: 2004ms - IP: 192.168.167.32 - User: user_1062 - RequestID: bkddq404yys +2025-06-18T13:50:45.081Z [TRACE] user-service - Database SELECT on orders - Execution time: 57ms - Rows affected: 73 - RequestID: 2loj1k4j2fu +2025-06-18T13:50:45.181Z [INFO] payment-service - Database UPDATE on users - Execution time: 112ms - Rows affected: 80 - RequestID: mugzzu8da9o +2025-06-18T13:50:45.281Z [TRACE] notification-service - Auth event: password_change - User: user_1045 - IP: 192.168.13.72 - RequestID: l2d42ux4xu8 +2025-06-18T13:50:45.381Z [TRACE] user-service - GET /api/v1/orders - Status: 200 - Response time: 117ms - IP: 192.168.68.158 - User: user_1007 - RequestID: n017spk4whp +2025-06-18T13:50:45.481Z [TRACE] inventory-service - POST /api/v1/payments - Status: 200 - Response time: 642ms - IP: 192.168.242.165 - User: user_1068 - RequestID: 4lf02dqfx74 +2025-06-18T13:50:45.581Z [DEBUG] user-service - Auth event: logout - User: user_1007 - IP: 192.168.33.76 - RequestID: zme8i7kqar +2025-06-18T13:50:45.681Z [INFO] payment-service - GET /api/v1/auth/login - Status: 404 - Response time: 369ms - IP: 192.168.10.184 - User: user_1039 - RequestID: vn9cml1nyj +2025-06-18T13:50:45.781Z [TRACE] order-service - Operation: notification_queued - Processing time: 129ms - RequestID: mdy77wpe2ja +2025-06-18T13:50:45.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 688ms - RequestID: 81ywse0y2b6 +2025-06-18T13:50:45.981Z [TRACE] inventory-service - Auth event: logout - User: user_1013 - IP: 192.168.211.72 - RequestID: kcu4yx0q2u +2025-06-18T13:50:46.081Z [INFO] payment-service - PATCH /api/v1/orders - Status: 502 - Response time: 1674ms - IP: 192.168.158.144 - User: user_1097 - RequestID: rgp74xn1aef +2025-06-18T13:50:46.181Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 246ms - RequestID: d982fy948xu +2025-06-18T13:50:46.281Z [INFO] user-service - Operation: notification_queued - Processing time: 374ms - RequestID: 8f1994wtux7 +2025-06-18T13:50:46.381Z [INFO] auth-service - Database SELECT on users - Execution time: 143ms - Rows affected: 75 - RequestID: hud7221ld2q +2025-06-18T13:50:46.481Z [TRACE] user-service - Database DELETE on payments - Execution time: 272ms - Rows affected: 4 - RequestID: hg8kgi3iqpo +2025-06-18T13:50:46.581Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 514ms - RequestID: 3jsp1hzbpxg +2025-06-18T13:50:46.681Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 19ms - Rows affected: 80 - RequestID: 9al0uvb1gjn +2025-06-18T13:50:46.781Z [TRACE] order-service - Auth event: login_success - User: user_1055 - IP: 192.168.13.72 - RequestID: 2gpejw14rdd +2025-06-18T13:50:46.881Z [TRACE] payment-service - PUT /api/v1/users - Status: 502 - Response time: 1635ms - IP: 192.168.187.199 - User: user_1044 - RequestID: uss80wq07 +2025-06-18T13:50:46.981Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 507ms - RequestID: jp2mxt6raz +2025-06-18T13:50:47.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 398ms - RequestID: zljtfyafrsr +2025-06-18T13:50:47.181Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 408ms - Rows affected: 4 - RequestID: 9to5hvrjmam +2025-06-18T13:50:47.281Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 201 - Response time: 648ms - IP: 192.168.147.171 - User: user_1046 - RequestID: nrndca502f +2025-06-18T13:50:47.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 247ms - RequestID: o92gsioe3a +2025-06-18T13:50:47.481Z [INFO] order-service - Operation: cache_miss - Processing time: 467ms - RequestID: xzuceoml6gq +2025-06-18T13:50:47.581Z [TRACE] payment-service - Operation: cache_miss - Processing time: 492ms - RequestID: g3x01zg5xlg +2025-06-18T13:50:47.681Z [DEBUG] user-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.79.143 - RequestID: wmwc5j418zs +2025-06-18T13:50:47.781Z [TRACE] auth-service - Operation: cache_hit - Processing time: 1023ms - RequestID: 0fyengbcjb6 +2025-06-18T13:50:47.881Z [INFO] payment-service - Auth event: password_change - User: user_1055 - IP: 192.168.68.158 - RequestID: 7wga1nvey4h +2025-06-18T13:50:47.981Z [INFO] user-service - POST /api/v1/users - Status: 502 - Response time: 1399ms - IP: 192.168.100.240 - User: user_1075 - RequestID: mpemsdkk4qr +2025-06-18T13:50:48.081Z [DEBUG] order-service - Auth event: login_success - User: user_1045 - IP: 192.168.181.225 - RequestID: 4kie8ts3ton +2025-06-18T13:50:48.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.11.60 - RequestID: nq70n9brqj +2025-06-18T13:50:48.281Z [TRACE] notification-service - Auth event: login_failed - User: user_1040 - IP: 192.168.147.171 - RequestID: 1uj8217p7v1 +2025-06-18T13:50:48.381Z [INFO] order-service - Database INSERT on orders - Execution time: 411ms - Rows affected: 49 - RequestID: us6px8ophub +2025-06-18T13:50:48.481Z [INFO] auth-service - Database INSERT on users - Execution time: 500ms - Rows affected: 49 - RequestID: flbi71smv8p +2025-06-18T13:50:48.581Z [DEBUG] user-service - GET /api/v1/users - Status: 403 - Response time: 1948ms - IP: 192.168.44.5 - User: user_1068 - RequestID: bik6hamzogg +2025-06-18T13:50:48.681Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 1726ms - IP: 192.168.211.72 - User: user_1023 - RequestID: 60r30qlcyik +2025-06-18T13:50:48.781Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 903ms - RequestID: qzn58lbv4v +2025-06-18T13:50:48.881Z [DEBUG] auth-service - Operation: email_sent - Processing time: 450ms - RequestID: p39x5tzeo8o +2025-06-18T13:50:48.981Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 200 - Response time: 438ms - IP: 192.168.232.72 - User: user_1046 - RequestID: cynq44mwa1 +2025-06-18T13:50:49.081Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 489ms - Rows affected: 10 - RequestID: 7rm703ndh0n +2025-06-18T13:50:49.181Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 394ms - Rows affected: 85 - RequestID: jni2nfqbo2 +2025-06-18T13:50:49.281Z [INFO] order-service - Operation: order_created - Processing time: 1023ms - RequestID: p1x802yhbo +2025-06-18T13:50:49.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.64.33 - RequestID: 3tp0i6vpkbq +2025-06-18T13:50:49.481Z [DEBUG] user-service - Operation: notification_queued - Processing time: 1013ms - RequestID: 459sb3q86bx +2025-06-18T13:50:49.581Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 417ms - Rows affected: 2 - RequestID: 0116ccm9ehsm +2025-06-18T13:50:49.681Z [INFO] order-service - Operation: webhook_sent - Processing time: 624ms - RequestID: tnfqz7ijew +2025-06-18T13:50:49.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.194.41 - RequestID: iavudw2kr3 +2025-06-18T13:50:49.881Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 407ms - IP: 192.168.11.60 - User: user_1083 - RequestID: fsgtytqhmvf +2025-06-18T13:50:49.981Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 819ms - RequestID: swe20nf3llc +2025-06-18T13:50:50.081Z [DEBUG] order-service - PATCH /api/v1/users - Status: 503 - Response time: 374ms - IP: 192.168.242.165 - User: user_1012 - RequestID: di7grakyehv +2025-06-18T13:50:50.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1068 - IP: 192.168.64.33 - RequestID: 8hadk5mw7yl +2025-06-18T13:50:50.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1048 - IP: 192.168.79.143 - RequestID: 5eswbxul46d +2025-06-18T13:50:50.381Z [INFO] payment-service - POST /api/v1/orders - Status: 404 - Response time: 1279ms - IP: 192.168.31.117 - User: user_1069 - RequestID: qnaozp1278k +2025-06-18T13:50:50.481Z [TRACE] order-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.242.165 - RequestID: fhy9186903i +2025-06-18T13:50:50.581Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 384ms - Rows affected: 70 - RequestID: 3zawlg56a4i +2025-06-18T13:50:50.681Z [DEBUG] user-service - Operation: payment_processed - Processing time: 574ms - RequestID: jbp7w4exivj +2025-06-18T13:50:50.781Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 228ms - Rows affected: 52 - RequestID: ysu50khhw9g +2025-06-18T13:50:50.881Z [INFO] notification-service - Operation: webhook_sent - Processing time: 773ms - RequestID: x0638pvtmnb +2025-06-18T13:50:50.981Z [INFO] inventory-service - Operation: order_created - Processing time: 678ms - RequestID: o2yfij58bue +2025-06-18T13:50:51.081Z [INFO] auth-service - Database DELETE on orders - Execution time: 268ms - Rows affected: 40 - RequestID: 4loa0bnos7s +2025-06-18T13:50:51.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 647ms - RequestID: jhp9aqtodaj +2025-06-18T13:50:51.281Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 28ms - IP: 192.168.194.41 - User: user_1064 - RequestID: s1jlh6ek0xc +2025-06-18T13:50:51.381Z [INFO] user-service - GET /api/v1/orders - Status: 404 - Response time: 1069ms - IP: 192.168.68.128 - User: user_1085 - RequestID: fe3ntyohcup +2025-06-18T13:50:51.481Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1023ms - IP: 192.168.104.37 - User: user_1049 - RequestID: ai6ar5j082c +2025-06-18T13:50:51.581Z [TRACE] payment-service - POST /api/v1/payments - Status: 404 - Response time: 732ms - IP: 192.168.1.152 - User: user_1095 - RequestID: dh35frfuyz +2025-06-18T13:50:51.681Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 302ms - RequestID: 91etnzc8yo9 +2025-06-18T13:50:51.781Z [TRACE] notification-service - Auth event: login_success - User: user_1015 - IP: 192.168.28.146 - RequestID: 062v6890lt +2025-06-18T13:50:51.881Z [INFO] notification-service - Operation: notification_queued - Processing time: 770ms - RequestID: tr4ei2vopdl +2025-06-18T13:50:51.981Z [DEBUG] order-service - Database INSERT on payments - Execution time: 372ms - Rows affected: 93 - RequestID: xpbcrmrxcll +2025-06-18T13:50:52.081Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 497ms - Rows affected: 36 - RequestID: n8c6m1lothe +2025-06-18T13:50:52.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.240.169 - RequestID: e84ggm7t1a +2025-06-18T13:50:52.281Z [TRACE] user-service - POST /api/v1/users - Status: 500 - Response time: 27ms - IP: 192.168.1.152 - User: user_1094 - RequestID: o2xli4hnge +2025-06-18T13:50:52.381Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.113.218 - RequestID: 3uzjw85rp95 +2025-06-18T13:50:52.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1085 - IP: 192.168.28.146 - RequestID: mj87pbbhbyg +2025-06-18T13:50:52.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1080 - IP: 192.168.147.171 - RequestID: 0gchkpchpvvu +2025-06-18T13:50:52.681Z [TRACE] notification-service - Auth event: logout - User: user_1025 - IP: 192.168.97.87 - RequestID: btj6oljcn4a +2025-06-18T13:50:52.781Z [INFO] payment-service - Operation: notification_queued - Processing time: 733ms - RequestID: 6ts7ccx7tx3 +2025-06-18T13:50:52.881Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 116ms - Rows affected: 44 - RequestID: g6uogcaruvt +2025-06-18T13:50:52.981Z [DEBUG] order-service - Operation: cache_hit - Processing time: 369ms - RequestID: m7mzyvocd3 +2025-06-18T13:50:53.081Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 159ms - Rows affected: 83 - RequestID: q8hf35rcvt +2025-06-18T13:50:53.181Z [INFO] payment-service - Auth event: logout - User: user_1071 - IP: 192.168.229.123 - RequestID: j4akaiuqn39 +2025-06-18T13:50:53.281Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1379ms - IP: 192.168.147.171 - User: user_1085 - RequestID: i49px4y9c5 +2025-06-18T13:50:53.381Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 31ms - Rows affected: 4 - RequestID: 4mpy2z1mmte +2025-06-18T13:50:53.481Z [TRACE] auth-service - Operation: order_created - Processing time: 578ms - RequestID: 18wtuibsg5a +2025-06-18T13:50:53.581Z [TRACE] payment-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.194.41 - RequestID: m9yf4s8cl7 +2025-06-18T13:50:53.681Z [INFO] notification-service - Operation: inventory_updated - Processing time: 926ms - RequestID: 3oq4lj0fw6b +2025-06-18T13:50:53.781Z [INFO] order-service - POST /api/v1/auth/logout - Status: 401 - Response time: 867ms - IP: 192.168.36.218 - User: user_1074 - RequestID: 3uox2kl8kpg +2025-06-18T13:50:53.881Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1105ms - IP: 192.168.53.133 - User: user_1014 - RequestID: 1cr04iu15l7 +2025-06-18T13:50:53.981Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1681ms - IP: 192.168.113.218 - User: user_1086 - RequestID: 5c4uhu3krdb +2025-06-18T13:50:54.081Z [INFO] order-service - DELETE /api/v1/payments - Status: 400 - Response time: 1972ms - IP: 192.168.247.134 - User: user_1040 - RequestID: e1uielpmkte +2025-06-18T13:50:54.181Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 906ms - RequestID: 7xj4159qyi5 +2025-06-18T13:50:54.281Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 406ms - Rows affected: 64 - RequestID: zkldaqp0xbc +2025-06-18T13:50:54.381Z [INFO] payment-service - Auth event: logout - User: user_1086 - IP: 192.168.14.77 - RequestID: r1ktmg63pme +2025-06-18T13:50:54.481Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.147.171 - RequestID: xnpbtex9iwh +2025-06-18T13:50:54.581Z [INFO] order-service - PATCH /api/v1/users - Status: 403 - Response time: 1728ms - IP: 192.168.36.218 - User: user_1076 - RequestID: f76llje5p0h +2025-06-18T13:50:54.681Z [DEBUG] order-service - Operation: notification_queued - Processing time: 523ms - RequestID: 15gn67b8gr9 +2025-06-18T13:50:54.781Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 19ms - Rows affected: 95 - RequestID: bh23nn7qrra +2025-06-18T13:50:54.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1048 - IP: 192.168.14.77 - RequestID: pw2q68uz2o +2025-06-18T13:50:54.981Z [INFO] order-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.53.133 - RequestID: kl51e76dbqb +2025-06-18T13:50:55.081Z [TRACE] auth-service - Operation: cache_hit - Processing time: 89ms - RequestID: v63oeqm8svk +2025-06-18T13:50:55.181Z [TRACE] user-service - Database DELETE on payments - Execution time: 161ms - Rows affected: 33 - RequestID: 3v3xa6cczkc +2025-06-18T13:50:55.281Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 866ms - RequestID: m1whwqpefyq +2025-06-18T13:50:55.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1064 - IP: 192.168.53.133 - RequestID: m6vmp356kp +2025-06-18T13:50:55.481Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 786ms - RequestID: e84jkkrk47m +2025-06-18T13:50:55.581Z [TRACE] order-service - Auth event: password_change - User: user_1074 - IP: 192.168.196.226 - RequestID: 58u98ww66lf +2025-06-18T13:50:55.681Z [TRACE] user-service - GET /api/v1/auth/login - Status: 401 - Response time: 1184ms - IP: 192.168.232.72 - User: user_1059 - RequestID: ozvd0rerxwr +2025-06-18T13:50:55.781Z [INFO] auth-service - PUT /api/v1/inventory - Status: 502 - Response time: 1356ms - IP: 192.168.36.218 - User: user_1090 - RequestID: 1r6qkpngyn3 +2025-06-18T13:50:55.881Z [DEBUG] user-service - Operation: cache_hit - Processing time: 858ms - RequestID: 1my1a7xi7it +2025-06-18T13:50:55.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.196.226 - RequestID: xxm3tsxf0k +2025-06-18T13:50:56.081Z [TRACE] order-service - Database INSERT on payments - Execution time: 425ms - Rows affected: 83 - RequestID: 4wp5xl46r26 +2025-06-18T13:50:56.181Z [TRACE] notification-service - Database INSERT on products - Execution time: 191ms - Rows affected: 91 - RequestID: xa4e4cgjou7 +2025-06-18T13:50:56.281Z [DEBUG] user-service - Auth event: password_change - User: user_1056 - IP: 192.168.44.5 - RequestID: q02mcfblii +2025-06-18T13:50:56.381Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 352ms - Rows affected: 15 - RequestID: il919ld4uxe +2025-06-18T13:50:56.481Z [TRACE] payment-service - Database INSERT on orders - Execution time: 229ms - Rows affected: 38 - RequestID: ajfhkqs1b3s +2025-06-18T13:50:56.581Z [INFO] user-service - PATCH /api/v1/orders - Status: 404 - Response time: 56ms - IP: 192.168.147.171 - User: user_1056 - RequestID: 5aq5srdwefa +2025-06-18T13:50:56.681Z [INFO] payment-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.79.143 - RequestID: 5cyix7bvaki +2025-06-18T13:50:56.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1094 - IP: 192.168.133.7 - RequestID: vyfpn7d11f +2025-06-18T13:50:56.881Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 470ms - Rows affected: 29 - RequestID: tt1maogpy6 +2025-06-18T13:50:56.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.79.143 - RequestID: nqt7yoph5op +2025-06-18T13:50:57.081Z [TRACE] order-service - Operation: payment_processed - Processing time: 421ms - RequestID: w0z1obd6ma +2025-06-18T13:50:57.181Z [INFO] user-service - Operation: email_sent - Processing time: 327ms - RequestID: n0mw6mchsh +2025-06-18T13:50:57.281Z [INFO] payment-service - DELETE /api/v1/orders - Status: 502 - Response time: 1649ms - IP: 192.168.10.184 - User: user_1012 - RequestID: 4lsu8p1l4i5 +2025-06-18T13:50:57.381Z [DEBUG] payment-service - Auth event: password_change - User: user_1015 - IP: 192.168.113.218 - RequestID: lsxlg4oe4te +2025-06-18T13:50:57.481Z [TRACE] inventory-service - Auth event: login_failed - User: user_1069 - IP: 192.168.144.38 - RequestID: ex73ilgwydm +2025-06-18T13:50:57.581Z [INFO] notification-service - Operation: webhook_sent - Processing time: 242ms - RequestID: dm0ymsszii +2025-06-18T13:50:57.681Z [TRACE] order-service - Database SELECT on products - Execution time: 379ms - Rows affected: 13 - RequestID: uwyzfsyac5 +2025-06-18T13:50:57.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.1.152 - RequestID: kd8p2oti7m +2025-06-18T13:50:57.881Z [DEBUG] order-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.31.117 - RequestID: agepjysruga +2025-06-18T13:50:57.981Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 786ms - IP: 192.168.187.199 - User: user_1019 - RequestID: wziizsgdq8 +2025-06-18T13:50:58.081Z [INFO] order-service - PUT /api/v1/payments - Status: 400 - Response time: 558ms - IP: 192.168.187.199 - User: user_1049 - RequestID: lpn9tbycy9l +2025-06-18T13:50:58.181Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 76ms - Rows affected: 38 - RequestID: q51y5upiwb8 +2025-06-18T13:50:58.281Z [INFO] order-service - Database INSERT on payments - Execution time: 404ms - Rows affected: 59 - RequestID: 9pwc7m8heuu +2025-06-18T13:50:58.381Z [TRACE] user-service - Auth event: logout - User: user_1004 - IP: 192.168.147.171 - RequestID: o47z46n6kp9 +2025-06-18T13:50:58.481Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 162ms - IP: 192.168.36.218 - User: user_1079 - RequestID: xboc485qln +2025-06-18T13:50:58.581Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 225ms - Rows affected: 22 - RequestID: ph74byekru +2025-06-18T13:50:58.681Z [INFO] auth-service - Operation: cache_hit - Processing time: 644ms - RequestID: fzdsbzbcdrm +2025-06-18T13:50:58.781Z [INFO] notification-service - Auth event: login_success - User: user_1047 - IP: 192.168.158.144 - RequestID: ehi7f09wlv6 +2025-06-18T13:50:58.881Z [TRACE] inventory-service - Auth event: logout - User: user_1044 - IP: 192.168.144.38 - RequestID: necemu1ufp +2025-06-18T13:50:58.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.81.206 - RequestID: ty4rdnlzt4g +2025-06-18T13:50:59.081Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 996ms - RequestID: cx3tln0z6q +2025-06-18T13:50:59.181Z [INFO] payment-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.247.134 - RequestID: ls5udvmx82r +2025-06-18T13:50:59.281Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 437ms - RequestID: kba9xnytgf +2025-06-18T13:50:59.381Z [DEBUG] payment-service - Auth event: login_success - User: user_1045 - IP: 192.168.79.141 - RequestID: 5av6epgwsck +2025-06-18T13:50:59.481Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1264ms - IP: 192.168.113.218 - User: user_1086 - RequestID: 1d61s3jmnt1 +2025-06-18T13:50:59.581Z [INFO] notification-service - Database INSERT on products - Execution time: 150ms - Rows affected: 60 - RequestID: hulen9m1igg +2025-06-18T13:50:59.681Z [TRACE] user-service - Database INSERT on products - Execution time: 109ms - Rows affected: 90 - RequestID: q0sr76wr18o +2025-06-18T13:50:59.781Z [DEBUG] order-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.174.114 - RequestID: ov9e4xeh82t +2025-06-18T13:50:59.881Z [INFO] user-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.68.128 - RequestID: 0a3fkhankcef +2025-06-18T13:50:59.981Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 502 - Response time: 476ms - IP: 192.168.85.229 - User: user_1065 - RequestID: u686m0e2zbl +2025-06-18T13:51:00.081Z [TRACE] user-service - Operation: cache_hit - Processing time: 75ms - RequestID: sgjemhl49m +2025-06-18T13:51:00.181Z [INFO] payment-service - POST /api/v1/payments - Status: 400 - Response time: 1701ms - IP: 192.168.170.215 - User: user_1067 - RequestID: 3dwjhnkuch7 +2025-06-18T13:51:00.281Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 762ms - RequestID: e0b9o8qwxe +2025-06-18T13:51:00.381Z [TRACE] order-service - Auth event: password_change - User: user_1005 - IP: 192.168.141.100 - RequestID: qtl3yk6mjsf +2025-06-18T13:51:00.481Z [TRACE] auth-service - Database UPDATE on users - Execution time: 361ms - Rows affected: 22 - RequestID: nsqs0sji8hb +2025-06-18T13:51:00.581Z [TRACE] user-service - Operation: notification_queued - Processing time: 370ms - RequestID: o669e15dwog +2025-06-18T13:51:00.681Z [TRACE] auth-service - Auth event: login_failed - User: user_1002 - IP: 192.168.68.128 - RequestID: hh8nbapfrp5 +2025-06-18T13:51:00.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.31.117 - RequestID: s7yxu8qmosl +2025-06-18T13:51:00.881Z [INFO] user-service - Operation: payment_processed - Processing time: 971ms - RequestID: 8qnnkrmeku +2025-06-18T13:51:00.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1004 - IP: 192.168.167.32 - RequestID: 12bxalmi2p4q +2025-06-18T13:51:01.081Z [DEBUG] auth-service - Database DELETE on users - Execution time: 308ms - Rows affected: 20 - RequestID: 4mwopx3geeh +2025-06-18T13:51:01.181Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 757ms - IP: 192.168.229.123 - User: user_1022 - RequestID: cg9lemcaakw +2025-06-18T13:51:01.281Z [TRACE] notification-service - Database SELECT on payments - Execution time: 239ms - Rows affected: 57 - RequestID: vtgii14lt4j +2025-06-18T13:51:01.381Z [INFO] user-service - Operation: order_created - Processing time: 108ms - RequestID: 0sc11hojdxl +2025-06-18T13:51:01.481Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 440ms - Rows affected: 65 - RequestID: f13ai4bqvrk +2025-06-18T13:51:01.581Z [TRACE] payment-service - Auth event: login_failed - User: user_1008 - IP: 192.168.28.146 - RequestID: 2queetxcwco +2025-06-18T13:51:01.681Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1004ms - IP: 192.168.100.240 - User: user_1007 - RequestID: zdmmzvyp1xi +2025-06-18T13:51:01.781Z [INFO] user-service - Database DELETE on products - Execution time: 110ms - Rows affected: 11 - RequestID: 4wcin7uxv65 +2025-06-18T13:51:01.881Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 404 - Response time: 179ms - IP: 192.168.79.143 - User: user_1061 - RequestID: gcvi1zdc1gc +2025-06-18T13:51:01.981Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 193ms - Rows affected: 38 - RequestID: 802zna3cw3 +2025-06-18T13:51:02.081Z [TRACE] order-service - Auth event: password_change - User: user_1073 - IP: 192.168.1.152 - RequestID: 6r10ox46x5 +2025-06-18T13:51:02.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.10.184 - RequestID: 7ae435l7dxg +2025-06-18T13:51:02.281Z [DEBUG] order-service - Operation: order_created - Processing time: 1039ms - RequestID: ljrdui9qeh8 +2025-06-18T13:51:02.381Z [INFO] user-service - Operation: cache_miss - Processing time: 997ms - RequestID: i1yl8zzu01 +2025-06-18T13:51:02.481Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 466ms - Rows affected: 60 - RequestID: 2b5drthy5yw +2025-06-18T13:51:02.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.227.77 - RequestID: ctr4t9qvwvg +2025-06-18T13:51:02.681Z [DEBUG] order-service - Operation: payment_processed - Processing time: 173ms - RequestID: 3v0lngyzns5 +2025-06-18T13:51:02.781Z [INFO] order-service - Database DELETE on payments - Execution time: 360ms - Rows affected: 0 - RequestID: 8kp2s4ndncp +2025-06-18T13:51:02.881Z [DEBUG] notification-service - Auth event: logout - User: user_1065 - IP: 192.168.68.158 - RequestID: uurvy16a51 +2025-06-18T13:51:02.981Z [DEBUG] inventory-service - Auth event: password_change - User: user_1046 - IP: 192.168.30.79 - RequestID: ooghp7uvyb +2025-06-18T13:51:03.081Z [TRACE] user-service - GET /api/v1/orders - Status: 502 - Response time: 638ms - IP: 192.168.10.184 - User: user_1011 - RequestID: fpq4iq0f04t +2025-06-18T13:51:03.181Z [INFO] user-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.232.72 - RequestID: mukhxhxn7ji +2025-06-18T13:51:03.281Z [INFO] payment-service - Database DELETE on products - Execution time: 435ms - Rows affected: 10 - RequestID: dzghq727boq +2025-06-18T13:51:03.381Z [INFO] order-service - Database SELECT on payments - Execution time: 109ms - Rows affected: 3 - RequestID: 4rmjtgz97sm +2025-06-18T13:51:03.481Z [DEBUG] order-service - Database UPDATE on products - Execution time: 191ms - Rows affected: 81 - RequestID: hnjghkbtweq +2025-06-18T13:51:03.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.159.94 - RequestID: gu6ap50ldfq +2025-06-18T13:51:03.681Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1400ms - IP: 192.168.189.103 - User: user_1049 - RequestID: i2nzpvz75rs +2025-06-18T13:51:03.781Z [DEBUG] payment-service - Auth event: logout - User: user_1078 - IP: 192.168.32.38 - RequestID: j2mo6fhtz2 +2025-06-18T13:51:03.881Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 403 - Response time: 601ms - IP: 192.168.46.63 - User: user_1062 - RequestID: sfezmjoyf +2025-06-18T13:51:03.981Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 195ms - Rows affected: 24 - RequestID: 6drgvi102ib +2025-06-18T13:51:04.081Z [DEBUG] user-service - Database SELECT on payments - Execution time: 296ms - Rows affected: 82 - RequestID: 2rwez10m8nw +2025-06-18T13:51:04.181Z [TRACE] user-service - Operation: email_sent - Processing time: 658ms - RequestID: zo1pj8fvqxs +2025-06-18T13:51:04.281Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 403 - Response time: 1230ms - IP: 192.168.211.72 - User: user_1078 - RequestID: x77u7xkfcqn +2025-06-18T13:51:04.381Z [TRACE] order-service - Operation: order_created - Processing time: 802ms - RequestID: twuwt78x08 +2025-06-18T13:51:04.481Z [DEBUG] notification-service - Database SELECT on users - Execution time: 141ms - Rows affected: 20 - RequestID: ywjdm2bhg4r +2025-06-18T13:51:04.581Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 20ms - Rows affected: 68 - RequestID: x51x3j1uoe +2025-06-18T13:51:04.681Z [DEBUG] auth-service - Auth event: logout - User: user_1080 - IP: 192.168.144.38 - RequestID: v0vlty1naog +2025-06-18T13:51:04.781Z [DEBUG] notification-service - GET /api/v1/orders - Status: 403 - Response time: 1337ms - IP: 192.168.10.184 - User: user_1042 - RequestID: jp3qifd7sg +2025-06-18T13:51:04.881Z [INFO] user-service - Database UPDATE on sessions - Execution time: 414ms - Rows affected: 63 - RequestID: 7s5k1nu83z +2025-06-18T13:51:04.981Z [TRACE] user-service - Auth event: password_change - User: user_1042 - IP: 192.168.194.41 - RequestID: 04s1dulk2xto +2025-06-18T13:51:05.081Z [INFO] payment-service - DELETE /api/v1/users - Status: 502 - Response time: 1739ms - IP: 192.168.68.158 - User: user_1080 - RequestID: i759fzxgrr +2025-06-18T13:51:05.181Z [INFO] inventory-service - Operation: cache_miss - Processing time: 738ms - RequestID: qtc62t2fh9 +2025-06-18T13:51:05.281Z [INFO] order-service - Database INSERT on orders - Execution time: 348ms - Rows affected: 64 - RequestID: yj76gbhf6qb +2025-06-18T13:51:05.381Z [TRACE] user-service - Database UPDATE on orders - Execution time: 401ms - Rows affected: 36 - RequestID: er7itb37lxn +2025-06-18T13:51:05.481Z [TRACE] auth-service - Operation: cache_hit - Processing time: 208ms - RequestID: dpbs96d5x9f +2025-06-18T13:51:05.581Z [INFO] user-service - Database UPDATE on products - Execution time: 189ms - Rows affected: 45 - RequestID: 8rixo8rwkcr +2025-06-18T13:51:05.681Z [TRACE] order-service - Operation: cache_miss - Processing time: 571ms - RequestID: n6csxurtqa +2025-06-18T13:51:05.781Z [INFO] auth-service - Database DELETE on products - Execution time: 383ms - Rows affected: 37 - RequestID: jm1xz20nk6i +2025-06-18T13:51:05.881Z [INFO] user-service - Database INSERT on orders - Execution time: 218ms - Rows affected: 85 - RequestID: mahq51ea5rp +2025-06-18T13:51:05.981Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 446ms - Rows affected: 84 - RequestID: g6c7ln6ut8k +2025-06-18T13:51:06.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 678ms - RequestID: m16l56n5zj +2025-06-18T13:51:06.181Z [INFO] payment-service - Operation: order_created - Processing time: 906ms - RequestID: 55kxc2728t4 +2025-06-18T13:51:06.281Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1519ms - IP: 192.168.104.37 - User: user_1082 - RequestID: 8svm95dbkz8 +2025-06-18T13:51:06.381Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 454ms - RequestID: yaybqsnuqh +2025-06-18T13:51:06.481Z [TRACE] auth-service - Operation: notification_queued - Processing time: 222ms - RequestID: bwl01j601jc +2025-06-18T13:51:06.581Z [TRACE] user-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.211.72 - RequestID: 00ypdpeukqqt +2025-06-18T13:51:06.681Z [DEBUG] user-service - PUT /api/v1/orders - Status: 403 - Response time: 1559ms - IP: 192.168.14.77 - User: user_1030 - RequestID: aroacuktgpi +2025-06-18T13:51:06.781Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 190ms - RequestID: h35v1cxlfos +2025-06-18T13:51:06.881Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 7ms - Rows affected: 75 - RequestID: 8v0k3i7aiku +2025-06-18T13:51:06.981Z [INFO] inventory-service - DELETE /api/v1/users - Status: 200 - Response time: 1630ms - IP: 192.168.68.158 - User: user_1083 - RequestID: blzljnjolsv +2025-06-18T13:51:07.081Z [TRACE] auth-service - Auth event: login_failed - User: user_1026 - IP: 192.168.36.218 - RequestID: ymxhb95ocl +2025-06-18T13:51:07.181Z [INFO] inventory-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.227.233 - RequestID: wra8vtm37m +2025-06-18T13:51:07.281Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 959ms - RequestID: ljcmdnip3il +2025-06-18T13:51:07.381Z [TRACE] order-service - Database INSERT on products - Execution time: 331ms - Rows affected: 17 - RequestID: hg35k7vhfd7 +2025-06-18T13:51:07.481Z [INFO] user-service - GET /api/v1/payments - Status: 403 - Response time: 854ms - IP: 192.168.158.144 - User: user_1098 - RequestID: k4cocgqssh +2025-06-18T13:51:07.581Z [INFO] auth-service - Operation: notification_queued - Processing time: 240ms - RequestID: kxbswvnljyr +2025-06-18T13:51:07.681Z [TRACE] auth-service - Operation: email_sent - Processing time: 891ms - RequestID: oim7mpqsrce +2025-06-18T13:51:07.781Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 97ms - RequestID: vsrunp3o75f +2025-06-18T13:51:07.881Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1422ms - IP: 192.168.11.60 - User: user_1052 - RequestID: yt6646afd8 +2025-06-18T13:51:07.981Z [INFO] auth-service - Database INSERT on sessions - Execution time: 491ms - Rows affected: 12 - RequestID: y2jzgojexhb +2025-06-18T13:51:08.081Z [INFO] user-service - Auth event: logout - User: user_1013 - IP: 192.168.14.77 - RequestID: 30oc2sbedmo +2025-06-18T13:51:08.181Z [TRACE] user-service - Operation: notification_queued - Processing time: 879ms - RequestID: ev4jzm75zkq +2025-06-18T13:51:08.281Z [INFO] notification-service - Database UPDATE on products - Execution time: 325ms - Rows affected: 89 - RequestID: b8gxr7ze1gq +2025-06-18T13:51:08.381Z [INFO] user-service - Database DELETE on products - Execution time: 90ms - Rows affected: 95 - RequestID: kmkbm6r76tr +2025-06-18T13:51:08.481Z [INFO] order-service - GET /api/v1/inventory - Status: 403 - Response time: 487ms - IP: 192.168.46.63 - User: user_1031 - RequestID: 70674blypwl +2025-06-18T13:51:08.581Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 931ms - RequestID: vgvisa0l5s +2025-06-18T13:51:08.681Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 599ms - RequestID: lgvkj8dxn38 +2025-06-18T13:51:08.781Z [TRACE] order-service - Operation: cache_miss - Processing time: 1026ms - RequestID: x5ef61wwn1b +2025-06-18T13:51:08.881Z [TRACE] order-service - Operation: email_sent - Processing time: 224ms - RequestID: zqs718z028 +2025-06-18T13:51:08.981Z [INFO] order-service - PUT /api/v1/payments - Status: 400 - Response time: 120ms - IP: 192.168.167.32 - User: user_1068 - RequestID: f52kh3do8ip +2025-06-18T13:51:09.081Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 363ms - Rows affected: 23 - RequestID: 0dh0hrv8frun +2025-06-18T13:51:09.181Z [INFO] auth-service - Operation: notification_queued - Processing time: 245ms - RequestID: z2tzbbrhl1 +2025-06-18T13:51:09.281Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 86ms - Rows affected: 44 - RequestID: k4hkkogry1o +2025-06-18T13:51:09.381Z [DEBUG] order-service - Database UPDATE on users - Execution time: 311ms - Rows affected: 46 - RequestID: 1lfe4z35wwk +2025-06-18T13:51:09.481Z [TRACE] payment-service - Database INSERT on payments - Execution time: 407ms - Rows affected: 45 - RequestID: b1t97di6inq +2025-06-18T13:51:09.581Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 400 - Response time: 345ms - IP: 192.168.235.117 - User: user_1027 - RequestID: dzhyb9ouztb +2025-06-18T13:51:09.681Z [INFO] auth-service - Operation: email_sent - Processing time: 205ms - RequestID: 2z4tg7qp4h +2025-06-18T13:51:09.781Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 389ms - Rows affected: 63 - RequestID: 1ksqdijhf3v +2025-06-18T13:51:09.881Z [INFO] auth-service - POST /api/v1/inventory - Status: 403 - Response time: 68ms - IP: 192.168.68.158 - User: user_1011 - RequestID: mu3680cf3rd +2025-06-18T13:51:09.981Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 410ms - Rows affected: 84 - RequestID: dnesqytbspa +2025-06-18T13:51:10.081Z [DEBUG] payment-service - GET /api/v1/orders - Status: 403 - Response time: 731ms - IP: 192.168.81.206 - User: user_1035 - RequestID: knbpehv7y +2025-06-18T13:51:10.181Z [TRACE] notification-service - Operation: email_sent - Processing time: 848ms - RequestID: 35v2hb0lqg3 +2025-06-18T13:51:10.281Z [INFO] user-service - Operation: cache_hit - Processing time: 378ms - RequestID: i6v2zghbke +2025-06-18T13:51:10.381Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 682ms - RequestID: fniajm5nv4i +2025-06-18T13:51:10.481Z [TRACE] user-service - GET /api/v1/payments - Status: 200 - Response time: 311ms - IP: 192.168.211.72 - User: user_1037 - RequestID: k45bq0b9dl +2025-06-18T13:51:10.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 160ms - RequestID: quuj34jzllr +2025-06-18T13:51:10.681Z [INFO] auth-service - GET /api/v1/users - Status: 503 - Response time: 1844ms - IP: 192.168.133.7 - User: user_1020 - RequestID: 2h12ksu2q8d +2025-06-18T13:51:10.781Z [INFO] auth-service - Database DELETE on orders - Execution time: 297ms - Rows affected: 13 - RequestID: 5gxpah54osw +2025-06-18T13:51:10.881Z [INFO] auth-service - Auth event: logout - User: user_1007 - IP: 192.168.85.229 - RequestID: qbplm1gawt +2025-06-18T13:51:10.981Z [INFO] payment-service - Operation: cache_hit - Processing time: 661ms - RequestID: pu5zd2fkwh +2025-06-18T13:51:11.081Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 1231ms - IP: 192.168.196.226 - User: user_1018 - RequestID: ld68d7ookkk +2025-06-18T13:51:11.181Z [TRACE] auth-service - POST /api/v1/payments - Status: 404 - Response time: 362ms - IP: 192.168.141.100 - User: user_1095 - RequestID: 5z1qbmpki66 +2025-06-18T13:51:11.281Z [TRACE] user-service - POST /api/v1/orders - Status: 404 - Response time: 1365ms - IP: 192.168.31.117 - User: user_1073 - RequestID: 9h62f8v5sa4 +2025-06-18T13:51:11.381Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 973ms - RequestID: lz3nl68f8hl +2025-06-18T13:51:11.481Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1032ms - IP: 192.168.30.79 - User: user_1025 - RequestID: 5kwznjf9urm +2025-06-18T13:51:11.581Z [INFO] auth-service - GET /api/v1/orders - Status: 503 - Response time: 533ms - IP: 192.168.10.184 - User: user_1048 - RequestID: vgkv2zxve79 +2025-06-18T13:51:11.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 377ms - RequestID: n4mtlzm4xnj +2025-06-18T13:51:11.781Z [INFO] payment-service - Database INSERT on orders - Execution time: 470ms - Rows affected: 28 - RequestID: 0wuw3uagbumj +2025-06-18T13:51:11.881Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1025ms - IP: 192.168.240.169 - User: user_1007 - RequestID: z8xp0k0rq7a +2025-06-18T13:51:11.981Z [INFO] payment-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.174.114 - RequestID: kzyblgfqx9 +2025-06-18T13:51:12.081Z [TRACE] inventory-service - Auth event: login_success - User: user_1083 - IP: 192.168.158.144 - RequestID: 554wmvojf2u +2025-06-18T13:51:12.181Z [INFO] auth-service - Database DELETE on payments - Execution time: 490ms - Rows affected: 24 - RequestID: wttivk1wcl +2025-06-18T13:51:12.281Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 101ms - Rows affected: 97 - RequestID: sxxvgj52x2q +2025-06-18T13:51:12.381Z [DEBUG] user-service - PUT /api/v1/orders - Status: 502 - Response time: 91ms - IP: 192.168.68.128 - User: user_1050 - RequestID: b5z82eqj9t +2025-06-18T13:51:12.481Z [DEBUG] user-service - Auth event: login_success - User: user_1072 - IP: 192.168.227.233 - RequestID: c78fjghlz4m +2025-06-18T13:51:12.581Z [INFO] user-service - Auth event: password_change - User: user_1039 - IP: 192.168.187.199 - RequestID: tdwwbvsipo +2025-06-18T13:51:12.681Z [TRACE] user-service - Operation: inventory_updated - Processing time: 473ms - RequestID: eh8xujd8kxm +2025-06-18T13:51:12.781Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 451ms - Rows affected: 6 - RequestID: eza11evf1b +2025-06-18T13:51:12.881Z [INFO] order-service - Database INSERT on orders - Execution time: 420ms - Rows affected: 11 - RequestID: n07htdjkh6 +2025-06-18T13:51:12.981Z [TRACE] auth-service - Database SELECT on products - Execution time: 278ms - Rows affected: 91 - RequestID: a65vm9i2zlm +2025-06-18T13:51:13.081Z [DEBUG] auth-service - Auth event: logout - User: user_1016 - IP: 192.168.104.37 - RequestID: 6evexxds0dg +2025-06-18T13:51:13.181Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 877ms - RequestID: vqwslplggu +2025-06-18T13:51:13.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.170.215 - RequestID: gi4cc8gl8u6 +2025-06-18T13:51:13.381Z [TRACE] user-service - Auth event: password_change - User: user_1046 - IP: 192.168.170.215 - RequestID: i4hondr3ljc +2025-06-18T13:51:13.481Z [INFO] order-service - Auth event: login_success - User: user_1036 - IP: 192.168.100.240 - RequestID: 67skwzkp5fw +2025-06-18T13:51:13.581Z [TRACE] auth-service - Operation: cache_miss - Processing time: 457ms - RequestID: 30x7597t0a4 +2025-06-18T13:51:13.681Z [INFO] notification-service - Database INSERT on payments - Execution time: 88ms - Rows affected: 76 - RequestID: 69iqk1zmiuw +2025-06-18T13:51:13.781Z [TRACE] order-service - Operation: notification_queued - Processing time: 366ms - RequestID: hn29q7o6cg9 +2025-06-18T13:51:13.881Z [DEBUG] order-service - Database DELETE on users - Execution time: 215ms - Rows affected: 84 - RequestID: osryqb7n0b9 +2025-06-18T13:51:13.981Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 750ms - RequestID: j37ew0q3r6 +2025-06-18T13:51:14.081Z [DEBUG] payment-service - Auth event: login_success - User: user_1063 - IP: 192.168.85.229 - RequestID: kdfxr9ztjp +2025-06-18T13:51:14.181Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 589ms - RequestID: 611i8hmyekt +2025-06-18T13:51:14.281Z [INFO] payment-service - Database DELETE on products - Execution time: 363ms - Rows affected: 83 - RequestID: cvyhdqu4pdi +2025-06-18T13:51:14.381Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 147ms - Rows affected: 6 - RequestID: 1w0n6pvq1z +2025-06-18T13:51:14.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 687ms - RequestID: mrtiqrl9uq +2025-06-18T13:51:14.581Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 57ms - RequestID: zs135ynsk +2025-06-18T13:51:14.681Z [INFO] auth-service - Database UPDATE on payments - Execution time: 192ms - Rows affected: 90 - RequestID: hgza8q5ueuk +2025-06-18T13:51:14.781Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.44.5 - RequestID: 5vl72lpgutr +2025-06-18T13:51:14.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1079 - IP: 192.168.28.146 - RequestID: 9uab1gzot9 +2025-06-18T13:51:14.981Z [TRACE] payment-service - Database DELETE on products - Execution time: 324ms - Rows affected: 87 - RequestID: yn95tbbst1h +2025-06-18T13:51:15.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.187.199 - RequestID: iqkhnpj0zrs +2025-06-18T13:51:15.181Z [INFO] order-service - Auth event: login_success - User: user_1020 - IP: 192.168.13.72 - RequestID: gm3sm7fxnep +2025-06-18T13:51:15.281Z [DEBUG] payment-service - Database SELECT on users - Execution time: 421ms - Rows affected: 50 - RequestID: uiklttb5jdq +2025-06-18T13:51:15.381Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 27ms - Rows affected: 88 - RequestID: 8ah3jcsb63t +2025-06-18T13:51:15.481Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 269ms - Rows affected: 89 - RequestID: c0whvc5urd6 +2025-06-18T13:51:15.581Z [INFO] payment-service - Operation: cache_hit - Processing time: 666ms - RequestID: kzusn0ft +2025-06-18T13:51:15.681Z [DEBUG] payment-service - Auth event: login_success - User: user_1086 - IP: 192.168.187.199 - RequestID: g7nc2oqzrp9 +2025-06-18T13:51:15.781Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 65ms - Rows affected: 52 - RequestID: nuzq7n65ayq +2025-06-18T13:51:15.881Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 503 - Response time: 205ms - IP: 192.168.147.171 - User: user_1082 - RequestID: 4p1evsvwxmg +2025-06-18T13:51:15.981Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1355ms - IP: 192.168.227.233 - User: user_1043 - RequestID: f1gzducv55 +2025-06-18T13:51:16.081Z [TRACE] payment-service - Operation: cache_miss - Processing time: 479ms - RequestID: 1kzisvlszbr +2025-06-18T13:51:16.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 675ms - RequestID: ko0cs0nugia +2025-06-18T13:51:16.281Z [INFO] order-service - Operation: cache_miss - Processing time: 415ms - RequestID: a93pw4dr3x +2025-06-18T13:51:16.381Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 92ms - Rows affected: 25 - RequestID: x1kn1pt10tf +2025-06-18T13:51:16.481Z [TRACE] auth-service - GET /api/v1/orders - Status: 503 - Response time: 1348ms - IP: 192.168.100.240 - User: user_1020 - RequestID: 9imq5kg6kal +2025-06-18T13:51:16.581Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 308ms - Rows affected: 84 - RequestID: 6biig3f6p9 +2025-06-18T13:51:16.681Z [TRACE] auth-service - Operation: cache_hit - Processing time: 409ms - RequestID: dq3nr4waqbe +2025-06-18T13:51:16.781Z [TRACE] user-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.68.128 - RequestID: m214a5p18nj +2025-06-18T13:51:16.881Z [TRACE] auth-service - GET /api/v1/inventory - Status: 200 - Response time: 405ms - IP: 192.168.158.144 - User: user_1093 - RequestID: 682hhosrv9x +2025-06-18T13:51:16.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.79.141 - RequestID: of88vyoxi7 +2025-06-18T13:51:17.081Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 209ms - IP: 192.168.232.72 - User: user_1016 - RequestID: 1tu1uhrtbwo +2025-06-18T13:51:17.181Z [TRACE] payment-service - Database INSERT on orders - Execution time: 241ms - Rows affected: 79 - RequestID: lr6ctkx4fjb +2025-06-18T13:51:17.281Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 624ms - RequestID: 2uuw0rpg8ra +2025-06-18T13:51:17.381Z [INFO] inventory-service - Operation: email_sent - Processing time: 221ms - RequestID: g6ufr64jdx +2025-06-18T13:51:17.481Z [INFO] payment-service - Operation: cache_miss - Processing time: 693ms - RequestID: 7qxodtkvskp +2025-06-18T13:51:17.581Z [INFO] auth-service - Operation: email_sent - Processing time: 1034ms - RequestID: 7u60crvqhlm +2025-06-18T13:51:17.681Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 370ms - IP: 192.168.85.229 - User: user_1066 - RequestID: zbmwiy0la3 +2025-06-18T13:51:17.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.196.226 - RequestID: nnjysn5j7ka +2025-06-18T13:51:17.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1026 - IP: 192.168.13.72 - RequestID: suq4of2vfyg +2025-06-18T13:51:17.981Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 356ms - Rows affected: 52 - RequestID: owd0j6uguy +2025-06-18T13:51:18.081Z [INFO] auth-service - Database DELETE on products - Execution time: 340ms - Rows affected: 50 - RequestID: 6buw476sdad +2025-06-18T13:51:18.181Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 951ms - RequestID: e0k9sgrb0xt +2025-06-18T13:51:18.281Z [DEBUG] user-service - GET /api/v1/inventory - Status: 404 - Response time: 1049ms - IP: 192.168.30.79 - User: user_1014 - RequestID: 19bma1v8cfl +2025-06-18T13:51:18.381Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.196.226 - RequestID: ikv5vam7mw8 +2025-06-18T13:51:18.481Z [TRACE] payment-service - Auth event: logout - User: user_1063 - IP: 192.168.158.144 - RequestID: j0bi4k1nvpe +2025-06-18T13:51:18.581Z [INFO] order-service - Auth event: login_success - User: user_1044 - IP: 192.168.232.72 - RequestID: oa9y6x1jj3d +2025-06-18T13:51:18.681Z [INFO] notification-service - Auth event: login_failed - User: user_1007 - IP: 192.168.141.100 - RequestID: 52qvum92am3 +2025-06-18T13:51:18.781Z [TRACE] notification-service - PATCH /api/v1/users - Status: 403 - Response time: 924ms - IP: 192.168.187.199 - User: user_1063 - RequestID: 2i6dud6ku0r +2025-06-18T13:51:18.881Z [INFO] user-service - PATCH /api/v1/users - Status: 201 - Response time: 1388ms - IP: 192.168.13.72 - User: user_1036 - RequestID: 9rxcftivx59 +2025-06-18T13:51:18.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 383ms - RequestID: nllustpuw1m +2025-06-18T13:51:19.081Z [INFO] payment-service - Database INSERT on users - Execution time: 373ms - Rows affected: 25 - RequestID: ievtcc6ge3f +2025-06-18T13:51:19.181Z [TRACE] order-service - Auth event: login_success - User: user_1095 - IP: 192.168.68.158 - RequestID: cj1vr8z4ua +2025-06-18T13:51:19.281Z [TRACE] order-service - Database INSERT on payments - Execution time: 134ms - Rows affected: 84 - RequestID: 9ikxdbrh1so +2025-06-18T13:51:19.381Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 171ms - Rows affected: 0 - RequestID: 8ka8nvugobi +2025-06-18T13:51:19.481Z [TRACE] auth-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.189.103 - RequestID: hxzblhiq84a +2025-06-18T13:51:19.581Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 932ms - RequestID: h7ki4ili0sp +2025-06-18T13:51:19.681Z [TRACE] payment-service - Auth event: logout - User: user_1033 - IP: 192.168.85.229 - RequestID: gir9qmwdfc7 +2025-06-18T13:51:19.781Z [INFO] auth-service - POST /api/v1/payments - Status: 401 - Response time: 539ms - IP: 192.168.159.94 - User: user_1011 - RequestID: s0gb1yertcq +2025-06-18T13:51:19.881Z [TRACE] payment-service - Database SELECT on payments - Execution time: 81ms - Rows affected: 0 - RequestID: azeqxtonykb +2025-06-18T13:51:19.981Z [INFO] order-service - PUT /api/v1/orders - Status: 400 - Response time: 898ms - IP: 192.168.211.72 - User: user_1085 - RequestID: h4r5hysccca +2025-06-18T13:51:20.081Z [INFO] order-service - Database INSERT on users - Execution time: 151ms - Rows affected: 39 - RequestID: 3wu8ttwbngm +2025-06-18T13:51:20.181Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 763ms - RequestID: 3vdgqi8urai +2025-06-18T13:51:20.281Z [TRACE] notification-service - POST /api/v1/orders - Status: 500 - Response time: 156ms - IP: 192.168.1.152 - User: user_1046 - RequestID: 7lmpexobleh +2025-06-18T13:51:20.381Z [INFO] inventory-service - Database DELETE on payments - Execution time: 169ms - Rows affected: 37 - RequestID: cvq5kofw02 +2025-06-18T13:51:20.481Z [TRACE] auth-service - Auth event: login_failed - User: user_1037 - IP: 192.168.14.77 - RequestID: m14mlxomr3a +2025-06-18T13:51:20.581Z [TRACE] auth-service - Database SELECT on users - Execution time: 238ms - Rows affected: 14 - RequestID: 585xd94jpw +2025-06-18T13:51:20.681Z [TRACE] auth-service - Auth event: password_change - User: user_1093 - IP: 192.168.30.79 - RequestID: p9jacjacig +2025-06-18T13:51:20.781Z [TRACE] payment-service - Auth event: password_change - User: user_1062 - IP: 192.168.229.123 - RequestID: 9sv0z7kmzi +2025-06-18T13:51:20.881Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 66ms - Rows affected: 17 - RequestID: 3t5vh1h2geo +2025-06-18T13:51:20.981Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 401 - Response time: 77ms - IP: 192.168.46.63 - User: user_1063 - RequestID: dvykz2bseo +2025-06-18T13:51:21.081Z [TRACE] user-service - Operation: cache_hit - Processing time: 876ms - RequestID: 0dnwk1jxgzmr +2025-06-18T13:51:21.181Z [DEBUG] order-service - Database SELECT on orders - Execution time: 238ms - Rows affected: 59 - RequestID: nqct68lbfi +2025-06-18T13:51:21.281Z [TRACE] user-service - Operation: order_created - Processing time: 508ms - RequestID: 956iiu9iu5m +2025-06-18T13:51:21.381Z [DEBUG] user-service - Operation: cache_miss - Processing time: 881ms - RequestID: yilkynl6rv8 +2025-06-18T13:51:21.481Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 642ms - RequestID: 3mc6dqx9uye +2025-06-18T13:51:21.581Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 201 - Response time: 556ms - IP: 192.168.1.152 - User: user_1090 - RequestID: gn8anny68m +2025-06-18T13:51:21.681Z [TRACE] order-service - DELETE /api/v1/users - Status: 201 - Response time: 1152ms - IP: 192.168.97.87 - User: user_1037 - RequestID: cd54w4w88y +2025-06-18T13:51:21.781Z [INFO] order-service - DELETE /api/v1/inventory - Status: 502 - Response time: 834ms - IP: 192.168.147.171 - User: user_1044 - RequestID: tlw3220qqwg +2025-06-18T13:51:21.881Z [TRACE] order-service - Database SELECT on sessions - Execution time: 144ms - Rows affected: 79 - RequestID: h4ma4vf2crg +2025-06-18T13:51:21.981Z [INFO] auth-service - Operation: cache_hit - Processing time: 252ms - RequestID: lzh9mpkoiws +2025-06-18T13:51:22.081Z [DEBUG] payment-service - PUT /api/v1/users - Status: 200 - Response time: 1564ms - IP: 192.168.227.77 - User: user_1025 - RequestID: h6940ixovtm +2025-06-18T13:51:22.181Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 581ms - RequestID: pe8qtrifibr +2025-06-18T13:51:22.281Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 720ms - RequestID: 65i9pcwdbq6 +2025-06-18T13:51:22.381Z [TRACE] inventory-service - Database SELECT on products - Execution time: 323ms - Rows affected: 18 - RequestID: o0iqnqabfuc +2025-06-18T13:51:22.481Z [INFO] auth-service - DELETE /api/v1/orders - Status: 400 - Response time: 296ms - IP: 192.168.196.226 - User: user_1030 - RequestID: kp4lc1a7g68 +2025-06-18T13:51:22.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 721ms - RequestID: pk95zoyb6q +2025-06-18T13:51:22.681Z [TRACE] order-service - Database SELECT on payments - Execution time: 338ms - Rows affected: 95 - RequestID: nojh3dxh76 +2025-06-18T13:51:22.781Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1634ms - IP: 192.168.144.38 - User: user_1048 - RequestID: 4z6868myufd +2025-06-18T13:51:22.881Z [INFO] user-service - Operation: webhook_sent - Processing time: 97ms - RequestID: fe0zbjj54h5 +2025-06-18T13:51:22.981Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 364ms - RequestID: mnfj4hoeclh +2025-06-18T13:51:23.081Z [INFO] payment-service - Operation: cache_miss - Processing time: 379ms - RequestID: 3bmqrl7oymm +2025-06-18T13:51:23.181Z [INFO] inventory-service - Auth event: login_failed - User: user_1087 - IP: 192.168.189.103 - RequestID: up1spofzhh +2025-06-18T13:51:23.281Z [INFO] order-service - POST /api/v1/payments - Status: 404 - Response time: 773ms - IP: 192.168.232.72 - User: user_1036 - RequestID: y0wmrifnum +2025-06-18T13:51:23.381Z [DEBUG] order-service - Auth event: login_success - User: user_1072 - IP: 192.168.81.206 - RequestID: trxrd8e16l +2025-06-18T13:51:23.481Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 201 - Response time: 466ms - IP: 192.168.240.169 - User: user_1072 - RequestID: spx8xrdiau +2025-06-18T13:51:23.581Z [INFO] order-service - Operation: inventory_updated - Processing time: 233ms - RequestID: jb6u068fh5 +2025-06-18T13:51:23.681Z [INFO] payment-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.36.218 - RequestID: k75d9ul8na9 +2025-06-18T13:51:23.781Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 408ms - Rows affected: 16 - RequestID: yuvfji42dg +2025-06-18T13:51:23.881Z [INFO] inventory-service - GET /api/v1/orders - Status: 200 - Response time: 1145ms - IP: 192.168.100.240 - User: user_1065 - RequestID: lozrh3b4xrh +2025-06-18T13:51:23.981Z [INFO] payment-service - Operation: notification_queued - Processing time: 469ms - RequestID: ch0hkgm2d1d +2025-06-18T13:51:24.081Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 211ms - RequestID: g7cudwce1pb +2025-06-18T13:51:24.181Z [TRACE] payment-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.11.60 - RequestID: eq10quplqdg +2025-06-18T13:51:24.281Z [INFO] order-service - Operation: inventory_updated - Processing time: 246ms - RequestID: x11d31fw55 +2025-06-18T13:51:24.381Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 372ms - Rows affected: 43 - RequestID: 6nw1txmhyv9 +2025-06-18T13:51:24.481Z [TRACE] auth-service - Database SELECT on users - Execution time: 255ms - Rows affected: 60 - RequestID: 11a2o0ez8gh +2025-06-18T13:51:24.581Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 417ms - RequestID: 1nw20nn3i8o +2025-06-18T13:51:24.681Z [TRACE] order-service - GET /api/v1/payments - Status: 503 - Response time: 1112ms - IP: 192.168.187.199 - User: user_1035 - RequestID: s79ayt1uj3k +2025-06-18T13:51:24.781Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 175ms - RequestID: 9rlyk95h2jl +2025-06-18T13:51:24.881Z [INFO] notification-service - Auth event: login_failed - User: user_1001 - IP: 192.168.194.41 - RequestID: 5209ft1bnmj +2025-06-18T13:51:24.981Z [INFO] payment-service - Database INSERT on sessions - Execution time: 364ms - Rows affected: 73 - RequestID: 4noqbc1ihr +2025-06-18T13:51:25.081Z [TRACE] order-service - Operation: inventory_updated - Processing time: 559ms - RequestID: 3ux0ps21044 +2025-06-18T13:51:25.181Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 401 - Response time: 1527ms - IP: 192.168.229.123 - User: user_1029 - RequestID: mwffwvln7fl +2025-06-18T13:51:25.281Z [INFO] user-service - Auth event: password_change - User: user_1025 - IP: 192.168.227.233 - RequestID: e9xjismp2f +2025-06-18T13:51:25.381Z [INFO] user-service - PUT /api/v1/auth/login - Status: 201 - Response time: 926ms - IP: 192.168.242.165 - User: user_1010 - RequestID: auey4llh9bq +2025-06-18T13:51:25.481Z [TRACE] user-service - Auth event: logout - User: user_1010 - IP: 192.168.196.226 - RequestID: uod3azlk9x +2025-06-18T13:51:25.581Z [DEBUG] payment-service - Auth event: logout - User: user_1019 - IP: 192.168.32.38 - RequestID: nomslweli9 +2025-06-18T13:51:25.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.36.218 - RequestID: rban8bkovo +2025-06-18T13:51:25.781Z [INFO] order-service - Operation: payment_processed - Processing time: 886ms - RequestID: mzknrrs2ddl +2025-06-18T13:51:25.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1050 - IP: 192.168.100.240 - RequestID: np1lte8s5y +2025-06-18T13:51:25.981Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 176ms - Rows affected: 78 - RequestID: oioi59zcavk +2025-06-18T13:51:26.081Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 357ms - Rows affected: 17 - RequestID: 05q5il1x3l4t +2025-06-18T13:51:26.181Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 577ms - RequestID: 49a6cw1ozh8 +2025-06-18T13:51:26.281Z [TRACE] payment-service - Auth event: login_success - User: user_1008 - IP: 192.168.240.169 - RequestID: gix3rwobar +2025-06-18T13:51:26.381Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 113ms - IP: 192.168.10.184 - User: user_1042 - RequestID: pvhlcqznxnr +2025-06-18T13:51:26.481Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 824ms - IP: 192.168.79.141 - User: user_1030 - RequestID: m8ruzbfj9v +2025-06-18T13:51:26.581Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 745ms - RequestID: z8dtvhj8frn +2025-06-18T13:51:26.681Z [DEBUG] payment-service - Auth event: login_success - User: user_1037 - IP: 192.168.138.123 - RequestID: 7mzd6703xtw +2025-06-18T13:51:26.781Z [TRACE] payment-service - Operation: cache_miss - Processing time: 939ms - RequestID: ccntazjequu +2025-06-18T13:51:26.881Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 127ms - RequestID: uazbws79l3 +2025-06-18T13:51:26.981Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 201 - Response time: 706ms - IP: 192.168.133.7 - User: user_1041 - RequestID: dk4siarzn5 +2025-06-18T13:51:27.081Z [TRACE] inventory-service - Auth event: logout - User: user_1099 - IP: 192.168.100.240 - RequestID: mt2l6e8d5fm +2025-06-18T13:51:27.181Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 457ms - IP: 192.168.235.117 - User: user_1094 - RequestID: brsful4jv5 +2025-06-18T13:51:27.281Z [DEBUG] payment-service - Auth event: password_change - User: user_1035 - IP: 192.168.240.169 - RequestID: mjm3hnucx89 +2025-06-18T13:51:27.381Z [DEBUG] auth-service - POST /api/v1/payments - Status: 404 - Response time: 1943ms - IP: 192.168.235.117 - User: user_1024 - RequestID: ug0xyw02rea +2025-06-18T13:51:27.481Z [DEBUG] notification-service - Database INSERT on products - Execution time: 282ms - Rows affected: 73 - RequestID: 12xklxw7aj3h +2025-06-18T13:51:27.581Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 22ms - IP: 192.168.240.169 - User: user_1085 - RequestID: axokg0oi09d +2025-06-18T13:51:27.681Z [INFO] user-service - Database INSERT on payments - Execution time: 171ms - Rows affected: 87 - RequestID: nb10sjjz7zn +2025-06-18T13:51:27.781Z [TRACE] inventory-service - Operation: order_created - Processing time: 667ms - RequestID: jnu27u5de1 +2025-06-18T13:51:27.881Z [TRACE] auth-service - Auth event: logout - User: user_1034 - IP: 192.168.28.146 - RequestID: e96587mfziu +2025-06-18T13:51:27.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 696ms - RequestID: y28av3r9nik +2025-06-18T13:51:28.081Z [TRACE] payment-service - Database INSERT on users - Execution time: 369ms - Rows affected: 98 - RequestID: f8s1bvtc3y +2025-06-18T13:51:28.181Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 270ms - Rows affected: 50 - RequestID: xd4u9mgqgga +2025-06-18T13:51:28.281Z [DEBUG] order-service - DELETE /api/v1/users - Status: 503 - Response time: 1737ms - IP: 192.168.181.225 - User: user_1061 - RequestID: ezgfv3ld7zg +2025-06-18T13:51:28.381Z [INFO] auth-service - PUT /api/v1/orders - Status: 500 - Response time: 193ms - IP: 192.168.14.77 - User: user_1096 - RequestID: zdkcsn588p +2025-06-18T13:51:28.481Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1985ms - IP: 192.168.64.33 - User: user_1053 - RequestID: 02d034cuwicj +2025-06-18T13:51:28.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.79.143 - RequestID: xlxot8rulxg +2025-06-18T13:51:28.681Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 844ms - IP: 192.168.104.37 - User: user_1005 - RequestID: qbl7ui93ubd +2025-06-18T13:51:28.781Z [INFO] auth-service - Database UPDATE on users - Execution time: 4ms - Rows affected: 80 - RequestID: x8drcnqxlro +2025-06-18T13:51:28.881Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 647ms - IP: 192.168.14.77 - User: user_1073 - RequestID: defaocsv774 +2025-06-18T13:51:28.981Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1437ms - IP: 192.168.31.117 - User: user_1083 - RequestID: vgw7ys1jzgr +2025-06-18T13:51:29.081Z [TRACE] payment-service - Auth event: login_success - User: user_1099 - IP: 192.168.227.77 - RequestID: x4frw627hs +2025-06-18T13:51:29.181Z [TRACE] user-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.147.171 - RequestID: 62icwiovjsn +2025-06-18T13:51:29.281Z [INFO] inventory-service - PUT /api/v1/payments - Status: 201 - Response time: 994ms - IP: 192.168.247.134 - User: user_1079 - RequestID: yu5f4kai4u +2025-06-18T13:51:29.381Z [TRACE] auth-service - Auth event: password_change - User: user_1090 - IP: 192.168.13.72 - RequestID: hgaepk3bclq +2025-06-18T13:51:29.481Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1527ms - IP: 192.168.81.206 - User: user_1001 - RequestID: fidegcd6pio +2025-06-18T13:51:29.581Z [INFO] user-service - Operation: webhook_sent - Processing time: 624ms - RequestID: y17jpu9as3d +2025-06-18T13:51:29.681Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 355ms - Rows affected: 25 - RequestID: agarsc0vgpu +2025-06-18T13:51:29.781Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 156ms - Rows affected: 95 - RequestID: klpbcruhqz9 +2025-06-18T13:51:29.881Z [INFO] order-service - GET /api/v1/auth/login - Status: 401 - Response time: 1136ms - IP: 192.168.229.123 - User: user_1060 - RequestID: kl2hpp50f6a +2025-06-18T13:51:29.981Z [TRACE] auth-service - Operation: notification_queued - Processing time: 678ms - RequestID: fc93rwl7rdc +2025-06-18T13:51:30.081Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1229ms - IP: 192.168.133.7 - User: user_1090 - RequestID: cotaxx4viqf +2025-06-18T13:51:30.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.11.60 - RequestID: jnync0j1skb +2025-06-18T13:51:30.281Z [DEBUG] user-service - Database SELECT on products - Execution time: 497ms - Rows affected: 32 - RequestID: 6rlvb7kdczy +2025-06-18T13:51:30.381Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 332ms - IP: 192.168.181.225 - User: user_1079 - RequestID: alnff00dg9n +2025-06-18T13:51:30.481Z [INFO] payment-service - Operation: cache_hit - Processing time: 619ms - RequestID: bz9evuhs4rt +2025-06-18T13:51:30.581Z [INFO] payment-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.229.123 - RequestID: k5hin6kxz5i +2025-06-18T13:51:30.681Z [INFO] user-service - POST /api/v1/orders - Status: 401 - Response time: 914ms - IP: 192.168.232.72 - User: user_1019 - RequestID: zil5xb5u1hr +2025-06-18T13:51:30.781Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 380ms - Rows affected: 5 - RequestID: cs5mckkrp4v +2025-06-18T13:51:30.881Z [INFO] inventory-service - Operation: cache_miss - Processing time: 566ms - RequestID: b009yf0k3nh +2025-06-18T13:51:30.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 852ms - RequestID: cnu2wdh712o +2025-06-18T13:51:31.081Z [INFO] notification-service - Auth event: password_change - User: user_1057 - IP: 192.168.53.133 - RequestID: c4hjrtbjau +2025-06-18T13:51:31.181Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1417ms - IP: 192.168.147.171 - User: user_1069 - RequestID: qkmx1qg2xls +2025-06-18T13:51:31.281Z [INFO] inventory-service - Database SELECT on users - Execution time: 384ms - Rows affected: 51 - RequestID: wsqzm57tkt +2025-06-18T13:51:31.381Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 328ms - Rows affected: 8 - RequestID: hcxjgpmwjn +2025-06-18T13:51:31.481Z [DEBUG] auth-service - GET /api/v1/payments - Status: 404 - Response time: 599ms - IP: 192.168.240.169 - User: user_1020 - RequestID: hc8ohbfdy7h +2025-06-18T13:51:31.581Z [INFO] order-service - Operation: notification_queued - Processing time: 1020ms - RequestID: 9jxsxlqbqmt +2025-06-18T13:51:31.681Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 246ms - IP: 192.168.174.114 - User: user_1089 - RequestID: onh2gqr4qrs +2025-06-18T13:51:31.781Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 325ms - Rows affected: 24 - RequestID: gyvnza732k +2025-06-18T13:51:31.881Z [INFO] order-service - DELETE /api/v1/inventory - Status: 403 - Response time: 613ms - IP: 192.168.97.87 - User: user_1004 - RequestID: m0cpmmnp6ea +2025-06-18T13:51:31.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.64.33 - RequestID: qnj5m83szne +2025-06-18T13:51:32.081Z [TRACE] notification-service - Operation: order_created - Processing time: 179ms - RequestID: vhsqavdzeha +2025-06-18T13:51:32.181Z [TRACE] payment-service - Database DELETE on users - Execution time: 53ms - Rows affected: 10 - RequestID: po8msdavsv +2025-06-18T13:51:32.281Z [INFO] inventory-service - Auth event: login_success - User: user_1028 - IP: 192.168.227.233 - RequestID: dbnhbe4nrep +2025-06-18T13:51:32.381Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 475ms - Rows affected: 29 - RequestID: jpi3sz18i6 +2025-06-18T13:51:32.481Z [INFO] notification-service - Database DELETE on sessions - Execution time: 381ms - Rows affected: 46 - RequestID: mkzyf95wx6l +2025-06-18T13:51:32.581Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 474ms - Rows affected: 93 - RequestID: 5gw6nezkh8r +2025-06-18T13:51:32.681Z [TRACE] auth-service - Auth event: login_failed - User: user_1096 - IP: 192.168.64.33 - RequestID: fxfpz4gkyhj +2025-06-18T13:51:32.781Z [TRACE] payment-service - Auth event: logout - User: user_1017 - IP: 192.168.227.233 - RequestID: piguy9347ni +2025-06-18T13:51:32.881Z [TRACE] auth-service - PUT /api/v1/payments - Status: 201 - Response time: 1781ms - IP: 192.168.85.229 - User: user_1085 - RequestID: auc2vj5yn0p +2025-06-18T13:51:32.981Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 195ms - RequestID: co0t1iqcdpu +2025-06-18T13:51:33.081Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 327ms - Rows affected: 49 - RequestID: xyb26yty9gn +2025-06-18T13:51:33.181Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1284ms - IP: 192.168.30.79 - User: user_1001 - RequestID: rkvrmedumy +2025-06-18T13:51:33.281Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1255ms - IP: 192.168.68.128 - User: user_1089 - RequestID: ou8ytabdlf7 +2025-06-18T13:51:33.381Z [TRACE] auth-service - Operation: notification_queued - Processing time: 539ms - RequestID: i9yw0chrfsp +2025-06-18T13:51:33.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.174.114 - RequestID: 1wu8j4s05lm +2025-06-18T13:51:33.581Z [TRACE] user-service - Operation: payment_processed - Processing time: 826ms - RequestID: 8qxyptvfrhw +2025-06-18T13:51:33.681Z [TRACE] user-service - Operation: email_sent - Processing time: 663ms - RequestID: 2svvkxk1yrq +2025-06-18T13:51:33.781Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 403 - Response time: 615ms - IP: 192.168.167.32 - User: user_1050 - RequestID: 5cw03jwvigj +2025-06-18T13:51:33.881Z [TRACE] payment-service - PUT /api/v1/orders - Status: 503 - Response time: 536ms - IP: 192.168.1.152 - User: user_1084 - RequestID: 02ftycrzb8f7 +2025-06-18T13:51:33.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 464ms - RequestID: n9dqrs5ma3 +2025-06-18T13:51:34.081Z [DEBUG] user-service - Database SELECT on products - Execution time: 67ms - Rows affected: 93 - RequestID: hl2vffsprwc +2025-06-18T13:51:34.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1012 - IP: 192.168.181.225 - RequestID: t5ubqs7ootd +2025-06-18T13:51:34.281Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 191ms - Rows affected: 64 - RequestID: 59l2s7cu6o +2025-06-18T13:51:34.381Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 611ms - RequestID: 80le90chwk5 +2025-06-18T13:51:34.481Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 189ms - Rows affected: 23 - RequestID: 49ywho3h7c4 +2025-06-18T13:51:34.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.31.117 - RequestID: 9f4d4thqkil +2025-06-18T13:51:34.681Z [INFO] payment-service - Database SELECT on payments - Execution time: 234ms - Rows affected: 43 - RequestID: 4znfh2l80jp +2025-06-18T13:51:34.781Z [TRACE] notification-service - POST /api/v1/orders - Status: 404 - Response time: 362ms - IP: 192.168.13.72 - User: user_1089 - RequestID: k34kdihzdx9 +2025-06-18T13:51:34.881Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 378ms - RequestID: tjwfwb99s38 +2025-06-18T13:51:34.981Z [TRACE] order-service - Auth event: login_failed - User: user_1079 - IP: 192.168.229.123 - RequestID: f2rc0kouvsa +2025-06-18T13:51:35.081Z [TRACE] inventory-service - Operation: order_created - Processing time: 717ms - RequestID: i58mt0a683 +2025-06-18T13:51:35.181Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 792ms - RequestID: jxuuwn556p +2025-06-18T13:51:35.281Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 400 - Response time: 1243ms - IP: 192.168.30.79 - User: user_1032 - RequestID: f7r2grhtmo4 +2025-06-18T13:51:35.381Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 685ms - IP: 192.168.133.7 - User: user_1014 - RequestID: bx9ua4p0c95 +2025-06-18T13:51:35.481Z [INFO] auth-service - POST /api/v1/auth/login - Status: 401 - Response time: 1628ms - IP: 192.168.31.117 - User: user_1064 - RequestID: mjigssg913 +2025-06-18T13:51:35.581Z [INFO] payment-service - GET /api/v1/orders - Status: 201 - Response time: 1377ms - IP: 192.168.196.226 - User: user_1026 - RequestID: nrxi4va1fld +2025-06-18T13:51:35.681Z [INFO] order-service - Auth event: login_failed - User: user_1003 - IP: 192.168.33.76 - RequestID: pdz3svjeju +2025-06-18T13:51:35.781Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 409ms - IP: 192.168.174.114 - User: user_1010 - RequestID: ewkjliurfzv +2025-06-18T13:51:35.881Z [DEBUG] payment-service - Auth event: login_failed - User: user_1063 - IP: 192.168.28.146 - RequestID: v8oq5jo7rt +2025-06-18T13:51:35.981Z [INFO] auth-service - Operation: notification_queued - Processing time: 282ms - RequestID: 5az7u1c0x7 +2025-06-18T13:51:36.081Z [DEBUG] payment-service - Operation: email_sent - Processing time: 226ms - RequestID: w4gcvc3x04 +2025-06-18T13:51:36.181Z [INFO] auth-service - Auth event: login_success - User: user_1067 - IP: 192.168.30.79 - RequestID: 2blmwgr0l9x +2025-06-18T13:51:36.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1042 - IP: 192.168.79.116 - RequestID: n8vrafainj +2025-06-18T13:51:36.381Z [DEBUG] user-service - Database INSERT on users - Execution time: 431ms - Rows affected: 16 - RequestID: 89g0dciyeqk +2025-06-18T13:51:36.481Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 180ms - Rows affected: 41 - RequestID: n153vxv6gfa +2025-06-18T13:51:36.581Z [TRACE] user-service - Database DELETE on payments - Execution time: 69ms - Rows affected: 49 - RequestID: y4uw2cenu0a +2025-06-18T13:51:36.681Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 201 - Response time: 114ms - IP: 192.168.235.117 - User: user_1052 - RequestID: 9elrkgdj3g +2025-06-18T13:51:36.781Z [TRACE] user-service - PATCH /api/v1/payments - Status: 502 - Response time: 1724ms - IP: 192.168.44.5 - User: user_1088 - RequestID: 65chbxtjfox +2025-06-18T13:51:36.881Z [TRACE] user-service - Database INSERT on users - Execution time: 321ms - Rows affected: 80 - RequestID: n9apr50b0w +2025-06-18T13:51:36.981Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 500 - Response time: 1646ms - IP: 192.168.81.206 - User: user_1077 - RequestID: 4w90be8mk6f +2025-06-18T13:51:37.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 218ms - RequestID: wksi9882lp8 +2025-06-18T13:51:37.181Z [INFO] payment-service - Operation: webhook_sent - Processing time: 148ms - RequestID: 83imrukzrqs +2025-06-18T13:51:37.281Z [TRACE] inventory-service - Operation: email_sent - Processing time: 154ms - RequestID: ei11x5hqmbv +2025-06-18T13:51:37.381Z [INFO] inventory-service - Operation: notification_queued - Processing time: 474ms - RequestID: doo4jasker +2025-06-18T13:51:37.481Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 485ms - RequestID: g9yd31e3vji +2025-06-18T13:51:37.581Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 200 - Response time: 735ms - IP: 192.168.187.199 - User: user_1093 - RequestID: mobcxdd4n4 +2025-06-18T13:51:37.681Z [INFO] auth-service - POST /api/v1/orders - Status: 404 - Response time: 787ms - IP: 192.168.33.76 - User: user_1073 - RequestID: k8q7xwum4pl +2025-06-18T13:51:37.781Z [INFO] notification-service - Database SELECT on users - Execution time: 236ms - Rows affected: 28 - RequestID: 8q97qh9e7at +2025-06-18T13:51:37.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1058 - IP: 192.168.10.184 - RequestID: o1s0pw03twc +2025-06-18T13:51:37.981Z [INFO] order-service - POST /api/v1/auth/login - Status: 500 - Response time: 626ms - IP: 192.168.97.87 - User: user_1032 - RequestID: 8ru1z5iljjb +2025-06-18T13:51:38.081Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 475ms - Rows affected: 18 - RequestID: d39iazzklns +2025-06-18T13:51:38.181Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 679ms - IP: 192.168.187.199 - User: user_1072 - RequestID: bte184zcidi +2025-06-18T13:51:38.281Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 261ms - Rows affected: 32 - RequestID: nz3hqezfy9 +2025-06-18T13:51:38.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1004 - IP: 192.168.81.206 - RequestID: cr3ukwoajq7 +2025-06-18T13:51:38.481Z [INFO] notification-service - Auth event: login_success - User: user_1094 - IP: 192.168.85.229 - RequestID: ptgqwo6f87 +2025-06-18T13:51:38.581Z [DEBUG] user-service - Auth event: login_success - User: user_1009 - IP: 192.168.68.158 - RequestID: x9yxs54tx7 +2025-06-18T13:51:38.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1090 - IP: 192.168.174.114 - RequestID: p4y2f89tiqq +2025-06-18T13:51:38.781Z [TRACE] auth-service - Operation: notification_queued - Processing time: 893ms - RequestID: sj6g9ivdtsj +2025-06-18T13:51:38.881Z [TRACE] notification-service - Database DELETE on users - Execution time: 254ms - Rows affected: 1 - RequestID: b82xqfrqbll +2025-06-18T13:51:38.981Z [INFO] user-service - PATCH /api/v1/users - Status: 503 - Response time: 1109ms - IP: 192.168.240.169 - User: user_1010 - RequestID: 61qc4ue909m +2025-06-18T13:51:39.081Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 477ms - Rows affected: 52 - RequestID: igscwi8xu +2025-06-18T13:51:39.181Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1854ms - IP: 192.168.196.226 - User: user_1014 - RequestID: 5vshzjrnrfm +2025-06-18T13:51:39.281Z [TRACE] auth-service - Operation: order_created - Processing time: 483ms - RequestID: 8shaba3gykf +2025-06-18T13:51:39.381Z [INFO] inventory-service - POST /api/v1/inventory - Status: 200 - Response time: 897ms - IP: 192.168.68.128 - User: user_1018 - RequestID: dnmp7i7031e +2025-06-18T13:51:39.481Z [TRACE] inventory-service - Auth event: login_failed - User: user_1054 - IP: 192.168.68.128 - RequestID: orrtxal12xj +2025-06-18T13:51:39.581Z [INFO] notification-service - Database DELETE on products - Execution time: 305ms - Rows affected: 55 - RequestID: asb9k1ugfl4 +2025-06-18T13:51:39.681Z [INFO] notification-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.33.76 - RequestID: 3k6wk9cj9rn +2025-06-18T13:51:39.781Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1222ms - IP: 192.168.227.77 - User: user_1008 - RequestID: q9jwimh8dbc +2025-06-18T13:51:39.881Z [INFO] notification-service - Auth event: password_change - User: user_1093 - IP: 192.168.227.77 - RequestID: oerkbr4co4 +2025-06-18T13:51:39.981Z [TRACE] payment-service - Auth event: login_success - User: user_1022 - IP: 192.168.232.72 - RequestID: whijxta0k6k +2025-06-18T13:51:40.081Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 289ms - Rows affected: 2 - RequestID: otdpjspc9zn +2025-06-18T13:51:40.181Z [DEBUG] user-service - Operation: email_sent - Processing time: 399ms - RequestID: iyl9smdj3gg +2025-06-18T13:51:40.281Z [INFO] notification-service - Operation: email_sent - Processing time: 384ms - RequestID: r04yu7q5i8 +2025-06-18T13:51:40.381Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 633ms - IP: 192.168.13.72 - User: user_1080 - RequestID: tqu2jk67f7k +2025-06-18T13:51:40.481Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 430ms - RequestID: zu3o1ozm1o +2025-06-18T13:51:40.581Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 642ms - RequestID: 2xlk685bk2f +2025-06-18T13:51:40.681Z [TRACE] notification-service - Database SELECT on payments - Execution time: 451ms - Rows affected: 49 - RequestID: nck9eislfjn +2025-06-18T13:51:40.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.64.33 - RequestID: 4mrh25qa9pf +2025-06-18T13:51:40.881Z [DEBUG] auth-service - Operation: order_created - Processing time: 1019ms - RequestID: 20svrgbqqp3 +2025-06-18T13:51:40.981Z [INFO] notification-service - Operation: email_sent - Processing time: 870ms - RequestID: ructlr72oc +2025-06-18T13:51:41.081Z [DEBUG] order-service - Database DELETE on products - Execution time: 43ms - Rows affected: 67 - RequestID: kakhyfm2sr +2025-06-18T13:51:41.181Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 503 - Response time: 1650ms - IP: 192.168.68.128 - User: user_1093 - RequestID: qgtzase2usg +2025-06-18T13:51:41.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.147.171 - RequestID: cindilf392d +2025-06-18T13:51:41.381Z [INFO] inventory-service - Operation: email_sent - Processing time: 270ms - RequestID: j5tr9rt2v3m +2025-06-18T13:51:41.481Z [TRACE] auth-service - Operation: cache_miss - Processing time: 60ms - RequestID: qenzwpfkw4 +2025-06-18T13:51:41.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 79ms - RequestID: uortrkriwb9 +2025-06-18T13:51:41.681Z [DEBUG] auth-service - Operation: order_created - Processing time: 586ms - RequestID: edjkaj27hm6 +2025-06-18T13:51:41.781Z [DEBUG] notification-service - Auth event: password_change - User: user_1099 - IP: 192.168.181.225 - RequestID: n79miec76vq +2025-06-18T13:51:41.881Z [TRACE] order-service - Auth event: login_success - User: user_1084 - IP: 192.168.10.184 - RequestID: e3r3msohxg7 +2025-06-18T13:51:41.981Z [TRACE] notification-service - Database SELECT on payments - Execution time: 285ms - Rows affected: 91 - RequestID: eq2ohgflc6l +2025-06-18T13:51:42.081Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 500ms - IP: 192.168.53.133 - User: user_1008 - RequestID: tvhrzx12mj9 +2025-06-18T13:51:42.181Z [DEBUG] order-service - Operation: order_created - Processing time: 257ms - RequestID: m2unr8vcdi +2025-06-18T13:51:42.281Z [TRACE] order-service - PATCH /api/v1/orders - Status: 401 - Response time: 466ms - IP: 192.168.144.38 - User: user_1028 - RequestID: 0pcz5oygn0e +2025-06-18T13:51:42.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 694ms - RequestID: 08cinvho3fda +2025-06-18T13:51:42.481Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 983ms - RequestID: vly3yz0tydp +2025-06-18T13:51:42.581Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 500 - Response time: 1640ms - IP: 192.168.68.158 - User: user_1058 - RequestID: nhel16g70k +2025-06-18T13:51:42.681Z [TRACE] user-service - Operation: order_created - Processing time: 777ms - RequestID: 3tuqltxujrd +2025-06-18T13:51:42.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.33.76 - RequestID: eft84w3f4ta +2025-06-18T13:51:42.881Z [TRACE] payment-service - Auth event: logout - User: user_1063 - IP: 192.168.235.117 - RequestID: ql11d15wroc +2025-06-18T13:51:42.981Z [TRACE] notification-service - Operation: cache_miss - Processing time: 663ms - RequestID: 11bff1vjd3ri +2025-06-18T13:51:43.081Z [INFO] auth-service - Auth event: logout - User: user_1073 - IP: 192.168.211.72 - RequestID: trytp6la5ga +2025-06-18T13:51:43.181Z [TRACE] notification-service - Auth event: password_change - User: user_1015 - IP: 192.168.33.76 - RequestID: uqfilrlwi2h +2025-06-18T13:51:43.281Z [INFO] user-service - Operation: inventory_updated - Processing time: 529ms - RequestID: pzc66kkfqra +2025-06-18T13:51:43.381Z [INFO] auth-service - POST /api/v1/orders - Status: 201 - Response time: 751ms - IP: 192.168.167.32 - User: user_1034 - RequestID: efo82nv81up +2025-06-18T13:51:43.481Z [DEBUG] notification-service - Database SELECT on users - Execution time: 26ms - Rows affected: 23 - RequestID: fv2v7lm7s2g +2025-06-18T13:51:43.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1024 - IP: 192.168.81.206 - RequestID: vp1kc5o7wcl +2025-06-18T13:51:43.681Z [INFO] user-service - Auth event: logout - User: user_1098 - IP: 192.168.194.41 - RequestID: wqehmnmeqn +2025-06-18T13:51:43.781Z [INFO] order-service - PATCH /api/v1/payments - Status: 502 - Response time: 413ms - IP: 192.168.227.233 - User: user_1052 - RequestID: m73lq6a1b +2025-06-18T13:51:43.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1082 - IP: 192.168.14.77 - RequestID: xinq91uubem +2025-06-18T13:51:43.981Z [INFO] order-service - PUT /api/v1/orders - Status: 401 - Response time: 1584ms - IP: 192.168.79.116 - User: user_1092 - RequestID: utiqx0njzm +2025-06-18T13:51:44.081Z [TRACE] payment-service - Auth event: login_success - User: user_1016 - IP: 192.168.68.128 - RequestID: qc5j63abwi8 +2025-06-18T13:51:44.181Z [TRACE] inventory-service - Database SELECT on products - Execution time: 202ms - Rows affected: 24 - RequestID: msnvkeyoci8 +2025-06-18T13:51:44.281Z [TRACE] auth-service - Database SELECT on orders - Execution time: 8ms - Rows affected: 74 - RequestID: 0x1yid0cdfhj +2025-06-18T13:51:44.381Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 92ms - RequestID: jqliwwpdkpa +2025-06-18T13:51:44.481Z [DEBUG] user-service - Database UPDATE on users - Execution time: 292ms - Rows affected: 60 - RequestID: lm42h77ja8 +2025-06-18T13:51:44.581Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 470ms - Rows affected: 99 - RequestID: 2qf550a1ljw +2025-06-18T13:51:44.681Z [DEBUG] inventory-service - Auth event: password_change - User: user_1047 - IP: 192.168.33.76 - RequestID: 0n6e10ls0y7 +2025-06-18T13:51:44.781Z [INFO] user-service - Operation: email_sent - Processing time: 202ms - RequestID: rvbqy3aw44l +2025-06-18T13:51:44.881Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 101ms - RequestID: 9fh1636p796 +2025-06-18T13:51:44.981Z [INFO] order-service - Database INSERT on products - Execution time: 93ms - Rows affected: 55 - RequestID: agln1y7bybc +2025-06-18T13:51:45.081Z [TRACE] user-service - Operation: email_sent - Processing time: 1024ms - RequestID: 6tvhk59lrs8 +2025-06-18T13:51:45.181Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 133ms - Rows affected: 55 - RequestID: hj9o39lyz97 +2025-06-18T13:51:45.281Z [DEBUG] user-service - POST /api/v1/users - Status: 500 - Response time: 538ms - IP: 192.168.81.206 - User: user_1006 - RequestID: wsrs9942ctj +2025-06-18T13:51:45.381Z [TRACE] notification-service - Database UPDATE on users - Execution time: 291ms - Rows affected: 88 - RequestID: d0fstehugf +2025-06-18T13:51:45.481Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 770ms - RequestID: c0rj135uexa +2025-06-18T13:51:45.581Z [TRACE] notification-service - PUT /api/v1/orders - Status: 401 - Response time: 378ms - IP: 192.168.189.103 - User: user_1052 - RequestID: nrp6j8y052o +2025-06-18T13:51:45.681Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 514ms - RequestID: pjqbn7c93ts +2025-06-18T13:51:45.781Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 261ms - Rows affected: 58 - RequestID: hptpp0oi10r +2025-06-18T13:51:45.881Z [INFO] order-service - Auth event: password_change - User: user_1046 - IP: 192.168.232.72 - RequestID: lbgp1cqrnq +2025-06-18T13:51:45.981Z [INFO] payment-service - Auth event: logout - User: user_1042 - IP: 192.168.187.199 - RequestID: f5dk8ptf8b +2025-06-18T13:51:46.081Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1497ms - IP: 192.168.14.77 - User: user_1003 - RequestID: 7j3q8pj6kyb +2025-06-18T13:51:46.181Z [INFO] order-service - Auth event: password_change - User: user_1089 - IP: 192.168.32.38 - RequestID: 11kt2lkt71m +2025-06-18T13:51:46.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 558ms - RequestID: z4k296g79l +2025-06-18T13:51:46.381Z [TRACE] auth-service - Database INSERT on products - Execution time: 346ms - Rows affected: 43 - RequestID: 61aulu6m15r +2025-06-18T13:51:46.481Z [TRACE] auth-service - Operation: order_created - Processing time: 56ms - RequestID: nhekrbcrm4 +2025-06-18T13:51:46.581Z [DEBUG] auth-service - Auth event: login_success - User: user_1054 - IP: 192.168.194.41 - RequestID: d0ipx56ou5j +2025-06-18T13:51:46.681Z [TRACE] notification-service - Database SELECT on orders - Execution time: 63ms - Rows affected: 23 - RequestID: ge0dou3k8yl +2025-06-18T13:51:46.781Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 861ms - IP: 192.168.81.206 - User: user_1094 - RequestID: c0yptub4fad +2025-06-18T13:51:46.881Z [DEBUG] auth-service - Operation: order_created - Processing time: 650ms - RequestID: oi17ja707m +2025-06-18T13:51:46.981Z [INFO] user-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1280ms - IP: 192.168.158.144 - User: user_1074 - RequestID: kb2nce4j6dl +2025-06-18T13:51:47.081Z [TRACE] auth-service - Auth event: password_change - User: user_1065 - IP: 192.168.28.146 - RequestID: 3rxv9wm6cts +2025-06-18T13:51:47.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.133.7 - RequestID: nut8hwh8wgq +2025-06-18T13:51:47.281Z [INFO] notification-service - PUT /api/v1/payments - Status: 404 - Response time: 1243ms - IP: 192.168.181.225 - User: user_1097 - RequestID: ot6df2p1qw +2025-06-18T13:51:47.381Z [TRACE] user-service - Operation: cache_hit - Processing time: 119ms - RequestID: 42vb0yvq23u +2025-06-18T13:51:47.481Z [INFO] user-service - Auth event: login_failed - User: user_1048 - IP: 192.168.211.72 - RequestID: t0u411yp3bk +2025-06-18T13:51:47.581Z [TRACE] notification-service - Auth event: login_success - User: user_1081 - IP: 192.168.242.165 - RequestID: zfvrk5tgdp +2025-06-18T13:51:47.681Z [TRACE] auth-service - Database INSERT on products - Execution time: 100ms - Rows affected: 99 - RequestID: pjvd9bkv0ur +2025-06-18T13:51:47.781Z [TRACE] user-service - Auth event: logout - User: user_1070 - IP: 192.168.1.152 - RequestID: 70g8ks9y2w +2025-06-18T13:51:47.881Z [INFO] inventory-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.170.215 - RequestID: bli5t15gj9c +2025-06-18T13:51:47.981Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 530ms - RequestID: mdu6z1t4jro +2025-06-18T13:51:48.081Z [TRACE] auth-service - PATCH /api/v1/users - Status: 500 - Response time: 1330ms - IP: 192.168.31.117 - User: user_1078 - RequestID: ezf0laopdhe +2025-06-18T13:51:48.181Z [INFO] order-service - Operation: webhook_sent - Processing time: 128ms - RequestID: e166r298cja +2025-06-18T13:51:48.281Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 440ms - RequestID: vdc2jtp2qo +2025-06-18T13:51:48.381Z [TRACE] auth-service - Database UPDATE on users - Execution time: 228ms - Rows affected: 6 - RequestID: ninpuruklo +2025-06-18T13:51:48.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 708ms - RequestID: 2twfvuaeahl +2025-06-18T13:51:48.581Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1879ms - IP: 192.168.79.141 - User: user_1070 - RequestID: fi02mzinyiq +2025-06-18T13:51:48.681Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 207ms - Rows affected: 58 - RequestID: 4v0yfnjda73 +2025-06-18T13:51:48.781Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 225ms - Rows affected: 30 - RequestID: 3e1zo6sidph +2025-06-18T13:51:48.881Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 187ms - Rows affected: 52 - RequestID: a638ihe2a1n +2025-06-18T13:51:48.981Z [INFO] payment-service - PUT /api/v1/orders - Status: 200 - Response time: 1278ms - IP: 192.168.242.165 - User: user_1010 - RequestID: v9n1jd2cs0e +2025-06-18T13:51:49.081Z [TRACE] order-service - Operation: cache_hit - Processing time: 70ms - RequestID: siqlsz8ivy +2025-06-18T13:51:49.181Z [TRACE] user-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.187.199 - RequestID: 3ir5uk1s47 +2025-06-18T13:51:49.281Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 28ms - Rows affected: 99 - RequestID: hxftthugslw +2025-06-18T13:51:49.381Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 401 - Response time: 1440ms - IP: 192.168.158.144 - User: user_1053 - RequestID: 1bpog54kjwl +2025-06-18T13:51:49.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 852ms - RequestID: xbx8d5hy2e +2025-06-18T13:51:49.581Z [INFO] notification-service - Database SELECT on payments - Execution time: 242ms - Rows affected: 63 - RequestID: 8gcidt8gxm8 +2025-06-18T13:51:49.681Z [DEBUG] auth-service - Database DELETE on products - Execution time: 264ms - Rows affected: 58 - RequestID: tk9qenlb4mq +2025-06-18T13:51:49.781Z [INFO] inventory-service - Auth event: logout - User: user_1044 - IP: 192.168.31.117 - RequestID: il1tldzhftk +2025-06-18T13:51:49.881Z [TRACE] notification-service - Operation: order_created - Processing time: 956ms - RequestID: ncwawbsygqm +2025-06-18T13:51:49.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1091 - IP: 192.168.187.199 - RequestID: egj4wnxtx4m +2025-06-18T13:51:50.081Z [DEBUG] user-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.167.32 - RequestID: 0gc30g032n07 +2025-06-18T13:51:50.181Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 269ms - Rows affected: 30 - RequestID: lzpwjrxpwcd +2025-06-18T13:51:50.281Z [TRACE] notification-service - Auth event: login_success - User: user_1001 - IP: 192.168.247.134 - RequestID: m2ngrgrppg +2025-06-18T13:51:50.381Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 100ms - Rows affected: 68 - RequestID: kcxvugadbqs +2025-06-18T13:51:50.481Z [DEBUG] order-service - Database UPDATE on users - Execution time: 370ms - Rows affected: 23 - RequestID: xvxke564zke +2025-06-18T13:51:50.581Z [INFO] inventory-service - POST /api/v1/users - Status: 503 - Response time: 829ms - IP: 192.168.53.133 - User: user_1049 - RequestID: hj3e0ojyvds +2025-06-18T13:51:50.681Z [TRACE] order-service - Auth event: login_failed - User: user_1015 - IP: 192.168.174.114 - RequestID: d96obk45c37 +2025-06-18T13:51:50.781Z [TRACE] user-service - GET /api/v1/inventory - Status: 503 - Response time: 401ms - IP: 192.168.242.165 - User: user_1089 - RequestID: ic43licoiog +2025-06-18T13:51:50.881Z [TRACE] inventory-service - Operation: order_created - Processing time: 1028ms - RequestID: 72stoa30zz8 +2025-06-18T13:51:50.981Z [INFO] user-service - Database SELECT on users - Execution time: 264ms - Rows affected: 5 - RequestID: rky5k1zqecr +2025-06-18T13:51:51.081Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 201 - Response time: 279ms - IP: 192.168.44.5 - User: user_1096 - RequestID: 9845xro2nmv +2025-06-18T13:51:51.181Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 503 - Response time: 403ms - IP: 192.168.159.94 - User: user_1068 - RequestID: u2gbvyjz5ld +2025-06-18T13:51:51.281Z [TRACE] payment-service - Database DELETE on products - Execution time: 66ms - Rows affected: 62 - RequestID: znd5tgdiodh +2025-06-18T13:51:51.381Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1395ms - IP: 192.168.232.72 - User: user_1033 - RequestID: tgs85r4jsl +2025-06-18T13:51:51.481Z [DEBUG] auth-service - POST /api/v1/users - Status: 503 - Response time: 222ms - IP: 192.168.138.123 - User: user_1020 - RequestID: nc0kkn7kl4 +2025-06-18T13:51:51.581Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1160ms - IP: 192.168.235.117 - User: user_1056 - RequestID: fvw2idyk2g +2025-06-18T13:51:51.681Z [INFO] inventory-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.104.37 - RequestID: tffa95xjwjb +2025-06-18T13:51:51.781Z [INFO] user-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.33.76 - RequestID: rfxbn5tfyvm +2025-06-18T13:51:51.881Z [TRACE] payment-service - Operation: cache_hit - Processing time: 296ms - RequestID: 2nibjjd5ek3 +2025-06-18T13:51:51.981Z [INFO] notification-service - Auth event: login_success - User: user_1032 - IP: 192.168.235.117 - RequestID: yojjnd7y85g +2025-06-18T13:51:52.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 852ms - RequestID: ryidtr141f +2025-06-18T13:51:52.181Z [INFO] order-service - Operation: inventory_updated - Processing time: 261ms - RequestID: wbwl0f5mnr9 +2025-06-18T13:51:52.281Z [INFO] user-service - Operation: order_created - Processing time: 912ms - RequestID: 2nwv8t2ypn9 +2025-06-18T13:51:52.381Z [INFO] inventory-service - POST /api/v1/payments - Status: 503 - Response time: 1372ms - IP: 192.168.68.158 - User: user_1006 - RequestID: e5gtaoles8 +2025-06-18T13:51:52.481Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 313ms - Rows affected: 71 - RequestID: z12gb86pd8 +2025-06-18T13:51:52.581Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 200 - Response time: 784ms - IP: 192.168.240.169 - User: user_1038 - RequestID: 5ma51j4arpi +2025-06-18T13:51:52.681Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 166ms - RequestID: 2o71x9qpl9l +2025-06-18T13:51:52.781Z [INFO] auth-service - Operation: webhook_sent - Processing time: 281ms - RequestID: 09b7et5rvc77 +2025-06-18T13:51:52.881Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 456ms - Rows affected: 80 - RequestID: 5rz1mrtryuy +2025-06-18T13:51:52.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 515ms - RequestID: 4wa8wl8d0wk +2025-06-18T13:51:53.081Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 453ms - Rows affected: 75 - RequestID: npzhqgtt24 +2025-06-18T13:51:53.181Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 655ms - RequestID: 0pm162lnf07 +2025-06-18T13:51:53.281Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 125ms - RequestID: 52tpmgu8b04 +2025-06-18T13:51:53.381Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 315ms - Rows affected: 43 - RequestID: ey4n6n3u9n9 +2025-06-18T13:51:53.481Z [TRACE] auth-service - Operation: cache_hit - Processing time: 281ms - RequestID: 1jlz11yri7n +2025-06-18T13:51:53.581Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 400 - Response time: 1664ms - IP: 192.168.187.199 - User: user_1033 - RequestID: vbvkthvi6el +2025-06-18T13:51:53.681Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1674ms - IP: 192.168.100.240 - User: user_1042 - RequestID: p6xh3bq112s +2025-06-18T13:51:53.781Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 200 - Response time: 365ms - IP: 192.168.32.38 - User: user_1030 - RequestID: gaejwll1s19 +2025-06-18T13:51:53.881Z [INFO] auth-service - Database DELETE on products - Execution time: 110ms - Rows affected: 24 - RequestID: nsj1wz6j8vh +2025-06-18T13:51:53.981Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 895ms - RequestID: 69g9q8xkgqp +2025-06-18T13:51:54.081Z [TRACE] user-service - Database INSERT on users - Execution time: 115ms - Rows affected: 15 - RequestID: lauem5zv6m +2025-06-18T13:51:54.181Z [TRACE] auth-service - Auth event: login_success - User: user_1051 - IP: 192.168.1.152 - RequestID: 3y01ie9xjai +2025-06-18T13:51:54.281Z [INFO] order-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1441ms - IP: 192.168.31.117 - User: user_1057 - RequestID: 4fxgvxe5bo4 +2025-06-18T13:51:54.381Z [DEBUG] order-service - Auth event: login_success - User: user_1099 - IP: 192.168.227.77 - RequestID: rjoym9zp1qn +2025-06-18T13:51:54.481Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 395ms - Rows affected: 83 - RequestID: q6835il6xp +2025-06-18T13:51:54.581Z [INFO] auth-service - Auth event: logout - User: user_1025 - IP: 192.168.229.123 - RequestID: a0ba5udxzq +2025-06-18T13:51:54.681Z [DEBUG] auth-service - Database SELECT on products - Execution time: 257ms - Rows affected: 64 - RequestID: w2slww4vc1o +2025-06-18T13:51:54.781Z [INFO] notification-service - Database SELECT on sessions - Execution time: 283ms - Rows affected: 60 - RequestID: 0yw5k1c5fmk +2025-06-18T13:51:54.881Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.113.218 - RequestID: 9pny9xrtx79 +2025-06-18T13:51:54.981Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 403 - Response time: 1748ms - IP: 192.168.32.38 - User: user_1089 - RequestID: wrro3vdh33l +2025-06-18T13:51:55.081Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 400 - Response time: 523ms - IP: 192.168.11.60 - User: user_1035 - RequestID: 2bwsle2eb9 +2025-06-18T13:51:55.181Z [TRACE] auth-service - Database DELETE on products - Execution time: 104ms - Rows affected: 25 - RequestID: so4ysx83fm +2025-06-18T13:51:55.281Z [TRACE] auth-service - DELETE /api/v1/users - Status: 200 - Response time: 1018ms - IP: 192.168.44.5 - User: user_1006 - RequestID: r5bw03tf36 +2025-06-18T13:51:55.381Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 980ms - RequestID: 7vk2nf68t0v +2025-06-18T13:51:55.481Z [DEBUG] user-service - Auth event: password_change - User: user_1059 - IP: 192.168.227.77 - RequestID: iuw7dpihuu +2025-06-18T13:51:55.581Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 502 - Response time: 308ms - IP: 192.168.227.77 - User: user_1050 - RequestID: oow51h4ae1j +2025-06-18T13:51:55.681Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 469ms - RequestID: h95gpveoume +2025-06-18T13:51:55.781Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 197ms - Rows affected: 29 - RequestID: ale143zzlxm +2025-06-18T13:51:55.881Z [INFO] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 216ms - IP: 192.168.1.152 - User: user_1043 - RequestID: 2qdl2t6vklu +2025-06-18T13:51:55.981Z [TRACE] user-service - DELETE /api/v1/orders - Status: 200 - Response time: 1056ms - IP: 192.168.28.146 - User: user_1070 - RequestID: gxolcxe7kam +2025-06-18T13:51:56.081Z [INFO] notification-service - Auth event: password_change - User: user_1041 - IP: 192.168.170.215 - RequestID: 2pdfhh3wod4 +2025-06-18T13:51:56.181Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 455ms - Rows affected: 16 - RequestID: 294wwqwqz5r +2025-06-18T13:51:56.281Z [TRACE] user-service - Operation: webhook_sent - Processing time: 998ms - RequestID: r1pi4idsszr +2025-06-18T13:51:56.381Z [INFO] auth-service - Operation: webhook_sent - Processing time: 670ms - RequestID: 4a0dqts20sw +2025-06-18T13:51:56.481Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 699ms - IP: 192.168.240.169 - User: user_1006 - RequestID: rlk8kb83b9g +2025-06-18T13:51:56.581Z [TRACE] payment-service - Database INSERT on payments - Execution time: 383ms - Rows affected: 9 - RequestID: tldxdoelmr8 +2025-06-18T13:51:56.681Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1580ms - IP: 192.168.113.218 - User: user_1066 - RequestID: z7jyrlsjn5g +2025-06-18T13:51:56.781Z [INFO] inventory-service - Operation: notification_queued - Processing time: 797ms - RequestID: ji06tfumxeh +2025-06-18T13:51:56.881Z [TRACE] auth-service - Operation: payment_processed - Processing time: 977ms - RequestID: i69wzy8m6qs +2025-06-18T13:51:56.981Z [TRACE] payment-service - Auth event: password_change - User: user_1066 - IP: 192.168.147.171 - RequestID: 2jipb7kbaeh +2025-06-18T13:51:57.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.189.103 - RequestID: eane4172h +2025-06-18T13:51:57.181Z [INFO] payment-service - Operation: payment_processed - Processing time: 959ms - RequestID: ae6usua97lu +2025-06-18T13:51:57.281Z [TRACE] payment-service - Database INSERT on users - Execution time: 487ms - Rows affected: 58 - RequestID: vsnqdrjoyep +2025-06-18T13:51:57.381Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 502 - Response time: 1093ms - IP: 192.168.10.184 - User: user_1089 - RequestID: lsdlq89rhxm +2025-06-18T13:51:57.481Z [DEBUG] order-service - Auth event: password_change - User: user_1060 - IP: 192.168.194.41 - RequestID: ioq9oyx0js +2025-06-18T13:51:57.581Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 404 - Response time: 1170ms - IP: 192.168.194.41 - User: user_1052 - RequestID: 5phbo7i1sh4 +2025-06-18T13:51:57.681Z [DEBUG] auth-service - Database INSERT on products - Execution time: 12ms - Rows affected: 66 - RequestID: j1rv8lubtw9 +2025-06-18T13:51:57.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 822ms - RequestID: zwhntvs7mip +2025-06-18T13:51:57.881Z [TRACE] auth-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.138.123 - RequestID: bnf8f5ozw24 +2025-06-18T13:51:57.981Z [INFO] payment-service - Auth event: login_failed - User: user_1086 - IP: 192.168.144.38 - RequestID: gihxfs2xpq +2025-06-18T13:51:58.081Z [INFO] notification-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.32.38 - RequestID: skbfo0s08k9 +2025-06-18T13:51:58.181Z [TRACE] notification-service - POST /api/v1/payments - Status: 503 - Response time: 1116ms - IP: 192.168.235.117 - User: user_1021 - RequestID: oiyzlyw0wtq +2025-06-18T13:51:58.281Z [TRACE] notification-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.30.79 - RequestID: t20eosbpl7o +2025-06-18T13:51:58.381Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 403 - Response time: 913ms - IP: 192.168.138.123 - User: user_1073 - RequestID: z3evp0x0nsb +2025-06-18T13:51:58.481Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 400 - Response time: 1011ms - IP: 192.168.79.116 - User: user_1022 - RequestID: ystibjjziba +2025-06-18T13:51:58.581Z [INFO] order-service - Operation: order_created - Processing time: 422ms - RequestID: 7yhdc7475io +2025-06-18T13:51:58.681Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 133ms - Rows affected: 6 - RequestID: c0xas1psphj +2025-06-18T13:51:58.781Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 145ms - RequestID: ixryp3p4bik +2025-06-18T13:51:58.881Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 503 - Response time: 1427ms - IP: 192.168.68.128 - User: user_1098 - RequestID: f869m497q9l +2025-06-18T13:51:58.981Z [DEBUG] order-service - Auth event: login_failed - User: user_1076 - IP: 192.168.33.76 - RequestID: pngapcdsat +2025-06-18T13:51:59.081Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1209ms - IP: 192.168.147.171 - User: user_1055 - RequestID: 5yugjgmkt1u +2025-06-18T13:51:59.181Z [TRACE] payment-service - Auth event: password_change - User: user_1089 - IP: 192.168.53.133 - RequestID: 7uk2ydh0jx +2025-06-18T13:51:59.281Z [DEBUG] user-service - Operation: email_sent - Processing time: 677ms - RequestID: 411aqbk2o98 +2025-06-18T13:51:59.381Z [TRACE] payment-service - Auth event: login_success - User: user_1044 - IP: 192.168.14.77 - RequestID: 05lpja0va73q +2025-06-18T13:51:59.481Z [DEBUG] notification-service - GET /api/v1/users - Status: 201 - Response time: 1511ms - IP: 192.168.235.117 - User: user_1074 - RequestID: n467zghbs6 +2025-06-18T13:51:59.581Z [TRACE] order-service - GET /api/v1/orders - Status: 404 - Response time: 583ms - IP: 192.168.100.240 - User: user_1006 - RequestID: zcamahafxw +2025-06-18T13:51:59.681Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.229.123 - RequestID: 9fmhnc3cne4 +2025-06-18T13:51:59.781Z [INFO] inventory-service - POST /api/v1/orders - Status: 200 - Response time: 702ms - IP: 192.168.100.240 - User: user_1010 - RequestID: eaevnw0q2a +2025-06-18T13:51:59.881Z [INFO] user-service - PUT /api/v1/users - Status: 400 - Response time: 1314ms - IP: 192.168.194.41 - User: user_1026 - RequestID: 9hlk62o6ffj +2025-06-18T13:51:59.981Z [TRACE] order-service - Operation: inventory_updated - Processing time: 713ms - RequestID: 6l6nd7dxhak +2025-06-18T13:52:00.081Z [TRACE] user-service - PUT /api/v1/inventory - Status: 200 - Response time: 1208ms - IP: 192.168.68.128 - User: user_1010 - RequestID: xldo07gaxoc +2025-06-18T13:52:00.181Z [TRACE] notification-service - Auth event: logout - User: user_1042 - IP: 192.168.53.133 - RequestID: a41umz72mfw +2025-06-18T13:52:00.281Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 791ms - RequestID: lrftdebtojc +2025-06-18T13:52:00.381Z [TRACE] notification-service - Operation: cache_hit - Processing time: 470ms - RequestID: usgumfqu0s +2025-06-18T13:52:00.481Z [TRACE] notification-service - Auth event: password_change - User: user_1009 - IP: 192.168.147.171 - RequestID: 03i9l79z5osw +2025-06-18T13:52:00.581Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 12ms - Rows affected: 91 - RequestID: 7uwpdf1gz47 +2025-06-18T13:52:00.681Z [INFO] auth-service - PUT /api/v1/payments - Status: 404 - Response time: 1102ms - IP: 192.168.53.133 - User: user_1000 - RequestID: 3ewbvc724kn +2025-06-18T13:52:00.781Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1199ms - IP: 192.168.133.7 - User: user_1060 - RequestID: 9ddg8dq8n3v +2025-06-18T13:52:00.881Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1433ms - IP: 192.168.189.103 - User: user_1049 - RequestID: e2anrf5m1w +2025-06-18T13:52:00.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.46.63 - RequestID: juvw7rywaw +2025-06-18T13:52:01.081Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1094 - IP: 192.168.113.218 - RequestID: pym1vba1sz8 +2025-06-18T13:52:01.181Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 5ms - Rows affected: 65 - RequestID: 24g6qkrieb7 +2025-06-18T13:52:01.281Z [INFO] inventory-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.79.143 - RequestID: sx4i1l0cksj +2025-06-18T13:52:01.381Z [DEBUG] auth-service - Database INSERT on users - Execution time: 445ms - Rows affected: 94 - RequestID: yyf9z69dm6c +2025-06-18T13:52:01.481Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1321ms - IP: 192.168.170.215 - User: user_1090 - RequestID: 6dgdlzsrg47 +2025-06-18T13:52:01.581Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 541ms - RequestID: 7hhld4n5i5o +2025-06-18T13:52:01.681Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 794ms - RequestID: r9p40hywcy +2025-06-18T13:52:01.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.158.144 - RequestID: 3202ynpl0e +2025-06-18T13:52:01.881Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 24ms - Rows affected: 15 - RequestID: 5wgio7l73ls +2025-06-18T13:52:01.981Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 200ms - Rows affected: 42 - RequestID: y2ei6e60qq +2025-06-18T13:52:02.081Z [DEBUG] order-service - Auth event: login_success - User: user_1039 - IP: 192.168.31.117 - RequestID: lwj6qcpjoz +2025-06-18T13:52:02.181Z [INFO] auth-service - Auth event: password_change - User: user_1037 - IP: 192.168.14.77 - RequestID: 03x2c0ddzm25 +2025-06-18T13:52:02.281Z [INFO] payment-service - Auth event: login_failed - User: user_1045 - IP: 192.168.68.158 - RequestID: tzh3fbk2s1c +2025-06-18T13:52:02.381Z [INFO] notification-service - DELETE /api/v1/users - Status: 502 - Response time: 922ms - IP: 192.168.242.165 - User: user_1011 - RequestID: 4r0ayoynrls +2025-06-18T13:52:02.481Z [DEBUG] payment-service - Auth event: logout - User: user_1029 - IP: 192.168.187.199 - RequestID: lcrqoaoq9f +2025-06-18T13:52:02.581Z [INFO] auth-service - Database SELECT on payments - Execution time: 70ms - Rows affected: 75 - RequestID: vwaihch3g2g +2025-06-18T13:52:02.681Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 502 - Response time: 632ms - IP: 192.168.53.133 - User: user_1074 - RequestID: 1ro0ufmvdbr +2025-06-18T13:52:02.781Z [INFO] notification-service - Auth event: password_change - User: user_1066 - IP: 192.168.138.123 - RequestID: 1f9s4rsxn05 +2025-06-18T13:52:02.881Z [DEBUG] user-service - Database SELECT on orders - Execution time: 253ms - Rows affected: 8 - RequestID: ar8s0newfx6 +2025-06-18T13:52:02.981Z [INFO] payment-service - PUT /api/v1/users - Status: 401 - Response time: 55ms - IP: 192.168.79.143 - User: user_1072 - RequestID: b9b52guewiv +2025-06-18T13:52:03.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.79.116 - RequestID: fadfhvsh5ve +2025-06-18T13:52:03.181Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 503 - Response time: 826ms - IP: 192.168.229.123 - User: user_1075 - RequestID: x2j020j507d +2025-06-18T13:52:03.281Z [INFO] order-service - Auth event: logout - User: user_1070 - IP: 192.168.68.128 - RequestID: zmdeqf4htli +2025-06-18T13:52:03.381Z [INFO] payment-service - Auth event: logout - User: user_1015 - IP: 192.168.104.37 - RequestID: vgf12o4aecb +2025-06-18T13:52:03.481Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 385ms - Rows affected: 23 - RequestID: 3azvmlhfjp5 +2025-06-18T13:52:03.581Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 355ms - RequestID: r93crhs2bx +2025-06-18T13:52:03.681Z [INFO] auth-service - PUT /api/v1/inventory - Status: 403 - Response time: 754ms - IP: 192.168.1.152 - User: user_1094 - RequestID: 1hgak7rb8i8 +2025-06-18T13:52:03.781Z [INFO] user-service - PUT /api/v1/orders - Status: 200 - Response time: 1816ms - IP: 192.168.10.184 - User: user_1065 - RequestID: 3wt7vylrtwy +2025-06-18T13:52:03.881Z [TRACE] user-service - Auth event: login_success - User: user_1087 - IP: 192.168.68.128 - RequestID: h2n5lt5odei +2025-06-18T13:52:03.981Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 307ms - Rows affected: 90 - RequestID: egng9h081m +2025-06-18T13:52:04.081Z [TRACE] notification-service - Auth event: login_failed - User: user_1068 - IP: 192.168.138.123 - RequestID: du8ic7bqg7w +2025-06-18T13:52:04.181Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 201 - Response time: 324ms - IP: 192.168.174.114 - User: user_1067 - RequestID: 5g83zis22fm +2025-06-18T13:52:04.281Z [TRACE] order-service - GET /api/v1/auth/login - Status: 500 - Response time: 1208ms - IP: 192.168.235.117 - User: user_1070 - RequestID: 1wi714yuiuc +2025-06-18T13:52:04.381Z [INFO] order-service - Auth event: logout - User: user_1030 - IP: 192.168.97.87 - RequestID: 66ukuhwsnas +2025-06-18T13:52:04.481Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 1780ms - IP: 192.168.10.184 - User: user_1000 - RequestID: wy18ih41xs +2025-06-18T13:52:04.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.97.87 - RequestID: tqusnvfs0de +2025-06-18T13:52:04.681Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 370ms - Rows affected: 22 - RequestID: mn7tysp3e49 +2025-06-18T13:52:04.781Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 217ms - Rows affected: 97 - RequestID: cykpr7dyll +2025-06-18T13:52:04.881Z [INFO] auth-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.211.72 - RequestID: blrurn42ymr +2025-06-18T13:52:04.981Z [INFO] order-service - POST /api/v1/auth/login - Status: 503 - Response time: 630ms - IP: 192.168.187.199 - User: user_1090 - RequestID: 0qvazi3nmtdk +2025-06-18T13:52:05.081Z [TRACE] user-service - Database SELECT on payments - Execution time: 30ms - Rows affected: 29 - RequestID: g0ocpq3kfgi +2025-06-18T13:52:05.181Z [TRACE] auth-service - Operation: order_created - Processing time: 455ms - RequestID: 2wir54hq7l3 +2025-06-18T13:52:05.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 760ms - RequestID: aeljtpkynlv +2025-06-18T13:52:05.381Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 348ms - Rows affected: 83 - RequestID: dp16k3lynd9 +2025-06-18T13:52:05.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1045 - IP: 192.168.170.215 - RequestID: gzahpio1ok7 +2025-06-18T13:52:05.581Z [DEBUG] payment-service - Auth event: login_failed - User: user_1035 - IP: 192.168.133.7 - RequestID: lpc1csonzk +2025-06-18T13:52:05.681Z [INFO] payment-service - Auth event: login_success - User: user_1053 - IP: 192.168.227.77 - RequestID: hx25pkxgac5 +2025-06-18T13:52:05.781Z [TRACE] notification-service - Database DELETE on orders - Execution time: 127ms - Rows affected: 41 - RequestID: ww0jhozddag +2025-06-18T13:52:05.881Z [INFO] auth-service - Operation: email_sent - Processing time: 287ms - RequestID: lghopjhlbdp +2025-06-18T13:52:05.981Z [DEBUG] notification-service - Database DELETE on products - Execution time: 87ms - Rows affected: 2 - RequestID: 4ols5ksfpzc +2025-06-18T13:52:06.081Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.104.37 - RequestID: kbcxyxyufwq +2025-06-18T13:52:06.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1003 - IP: 192.168.187.199 - RequestID: 1wzdlkue99v +2025-06-18T13:52:06.281Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 401 - Response time: 1462ms - IP: 192.168.13.72 - User: user_1060 - RequestID: gsu087n7wyl +2025-06-18T13:52:06.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 126ms - RequestID: aw9pqoi7948 +2025-06-18T13:52:06.481Z [TRACE] auth-service - Database SELECT on payments - Execution time: 493ms - Rows affected: 59 - RequestID: ums4lnhvupb +2025-06-18T13:52:06.581Z [DEBUG] auth-service - Database SELECT on users - Execution time: 285ms - Rows affected: 15 - RequestID: uve8g3ri7k +2025-06-18T13:52:06.681Z [TRACE] payment-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.11.60 - RequestID: rjb3bdfwb7 +2025-06-18T13:52:06.781Z [TRACE] auth-service - GET /api/v1/inventory - Status: 201 - Response time: 448ms - IP: 192.168.64.33 - User: user_1082 - RequestID: sb69ksswpxp +2025-06-18T13:52:06.881Z [TRACE] inventory-service - Auth event: logout - User: user_1032 - IP: 192.168.36.218 - RequestID: at5mj7y19a +2025-06-18T13:52:06.981Z [INFO] inventory-service - PUT /api/v1/orders - Status: 400 - Response time: 1424ms - IP: 192.168.170.215 - User: user_1015 - RequestID: zdkuvcc24q +2025-06-18T13:52:07.081Z [DEBUG] order-service - Database DELETE on products - Execution time: 345ms - Rows affected: 83 - RequestID: r60ozxahu +2025-06-18T13:52:07.181Z [INFO] user-service - Operation: email_sent - Processing time: 376ms - RequestID: igb8jxn20hi +2025-06-18T13:52:07.281Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 201 - Response time: 848ms - IP: 192.168.97.87 - User: user_1022 - RequestID: s3g87d3jfe +2025-06-18T13:52:07.381Z [TRACE] order-service - Database INSERT on sessions - Execution time: 72ms - Rows affected: 90 - RequestID: ar64tun6h7e +2025-06-18T13:52:07.481Z [INFO] order-service - PATCH /api/v1/orders - Status: 404 - Response time: 1443ms - IP: 192.168.227.233 - User: user_1030 - RequestID: r7f596cu92m +2025-06-18T13:52:07.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 574ms - RequestID: wehbqi66v18 +2025-06-18T13:52:07.681Z [DEBUG] order-service - Database DELETE on products - Execution time: 376ms - Rows affected: 72 - RequestID: vvqkwefozki +2025-06-18T13:52:07.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1064 - IP: 192.168.97.87 - RequestID: khz8zm1scxp +2025-06-18T13:52:07.881Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 673ms - RequestID: 9uod5h7at6 +2025-06-18T13:52:07.981Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 400 - Response time: 807ms - IP: 192.168.211.72 - User: user_1048 - RequestID: 2u9jwtsty3 +2025-06-18T13:52:08.081Z [INFO] auth-service - Auth event: logout - User: user_1071 - IP: 192.168.36.218 - RequestID: phkbz773fw +2025-06-18T13:52:08.181Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 404 - Response time: 320ms - IP: 192.168.13.72 - User: user_1078 - RequestID: os3sim7c4kn +2025-06-18T13:52:08.281Z [TRACE] order-service - Auth event: login_failed - User: user_1028 - IP: 192.168.196.226 - RequestID: c0q8cb4qf8e +2025-06-18T13:52:08.381Z [INFO] auth-service - Auth event: logout - User: user_1008 - IP: 192.168.235.117 - RequestID: nd7jspau3cr +2025-06-18T13:52:08.481Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 447ms - RequestID: b9gwfknox0u +2025-06-18T13:52:08.581Z [DEBUG] order-service - POST /api/v1/orders - Status: 503 - Response time: 1965ms - IP: 192.168.1.152 - User: user_1067 - RequestID: 094k6byu6tmp +2025-06-18T13:52:08.681Z [TRACE] inventory-service - Operation: email_sent - Processing time: 717ms - RequestID: 0e34u2xabpwm +2025-06-18T13:52:08.781Z [INFO] auth-service - Auth event: login_failed - User: user_1025 - IP: 192.168.104.37 - RequestID: 1iaf66lf5pm +2025-06-18T13:52:08.881Z [INFO] auth-service - Database DELETE on users - Execution time: 132ms - Rows affected: 40 - RequestID: 3zo80j9ccdp +2025-06-18T13:52:08.981Z [INFO] order-service - Auth event: login_failed - User: user_1004 - IP: 192.168.100.240 - RequestID: ntm3fkkhe3 +2025-06-18T13:52:09.081Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 500 - Response time: 110ms - IP: 192.168.36.218 - User: user_1033 - RequestID: tdjjl8yx2mc +2025-06-18T13:52:09.181Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 328ms - RequestID: g4oipyqzsdb +2025-06-18T13:52:09.281Z [INFO] auth-service - Database DELETE on orders - Execution time: 437ms - Rows affected: 31 - RequestID: ikji7f6a97m +2025-06-18T13:52:09.381Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 403 - Response time: 1913ms - IP: 192.168.174.114 - User: user_1015 - RequestID: kkkn9ljfad +2025-06-18T13:52:09.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 869ms - RequestID: uwxhuykzca +2025-06-18T13:52:09.581Z [INFO] auth-service - Auth event: login_failed - User: user_1023 - IP: 192.168.159.94 - RequestID: umxi5p3hmxe +2025-06-18T13:52:09.681Z [INFO] notification-service - POST /api/v1/orders - Status: 502 - Response time: 1847ms - IP: 192.168.133.7 - User: user_1034 - RequestID: g3u3plh2s7h +2025-06-18T13:52:09.781Z [INFO] user-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.79.143 - RequestID: zj4bud0qfh +2025-06-18T13:52:09.881Z [DEBUG] order-service - POST /api/v1/payments - Status: 502 - Response time: 557ms - IP: 192.168.147.171 - User: user_1089 - RequestID: ptejoo5lozd +2025-06-18T13:52:09.981Z [INFO] notification-service - Database UPDATE on orders - Execution time: 462ms - Rows affected: 94 - RequestID: xaqcmr1ogc +2025-06-18T13:52:10.081Z [INFO] inventory-service - PATCH /api/v1/users - Status: 403 - Response time: 515ms - IP: 192.168.33.76 - User: user_1063 - RequestID: uccd028m6zp +2025-06-18T13:52:10.181Z [INFO] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1728ms - IP: 192.168.36.218 - User: user_1079 - RequestID: ktourqb9xgb +2025-06-18T13:52:10.281Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 400 - Response time: 1215ms - IP: 192.168.167.32 - User: user_1011 - RequestID: ec899k60k0p +2025-06-18T13:52:10.381Z [TRACE] order-service - Database SELECT on orders - Execution time: 465ms - Rows affected: 24 - RequestID: kzqonr60sv9 +2025-06-18T13:52:10.481Z [TRACE] order-service - Auth event: login_success - User: user_1040 - IP: 192.168.167.32 - RequestID: zrzm7aqhsgj +2025-06-18T13:52:10.581Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 200 - Response time: 1819ms - IP: 192.168.79.116 - User: user_1041 - RequestID: uqvtnz1tucj +2025-06-18T13:52:10.681Z [INFO] inventory-service - Database DELETE on payments - Execution time: 178ms - Rows affected: 10 - RequestID: uafgkk2i4fj +2025-06-18T13:52:10.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.14.77 - RequestID: x9m2xz1efoj +2025-06-18T13:52:10.881Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 182ms - Rows affected: 41 - RequestID: 4nj1ejrupfa +2025-06-18T13:52:10.981Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 192ms - RequestID: wev2adw2jsg +2025-06-18T13:52:11.081Z [TRACE] notification-service - Operation: notification_queued - Processing time: 953ms - RequestID: 5n2anrb76lj +2025-06-18T13:52:11.181Z [INFO] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 496ms - IP: 192.168.232.72 - User: user_1001 - RequestID: hoqwrv3xdy9 +2025-06-18T13:52:11.281Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 104ms - Rows affected: 2 - RequestID: j3ibr4yvqm +2025-06-18T13:52:11.381Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 400ms - Rows affected: 17 - RequestID: kdondntk5x9 +2025-06-18T13:52:11.481Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 123ms - IP: 192.168.44.5 - User: user_1085 - RequestID: ih73tn4ch8 +2025-06-18T13:52:11.581Z [INFO] notification-service - Auth event: login_success - User: user_1014 - IP: 192.168.159.94 - RequestID: fv495cix7s6 +2025-06-18T13:52:11.681Z [INFO] user-service - Database UPDATE on sessions - Execution time: 362ms - Rows affected: 10 - RequestID: kspvderxvyi +2025-06-18T13:52:11.781Z [DEBUG] notification-service - Auth event: logout - User: user_1083 - IP: 192.168.229.123 - RequestID: mb1l6ql0if +2025-06-18T13:52:11.881Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.28.146 - RequestID: y8y6svsbvgs +2025-06-18T13:52:11.981Z [INFO] notification-service - Operation: webhook_sent - Processing time: 481ms - RequestID: zmsaq21hc7k +2025-06-18T13:52:12.081Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 952ms - RequestID: rhxuv5d4r8c +2025-06-18T13:52:12.181Z [INFO] inventory-service - Database SELECT on users - Execution time: 334ms - Rows affected: 64 - RequestID: 6bdby0u9qm +2025-06-18T13:52:12.281Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1816ms - IP: 192.168.68.158 - User: user_1072 - RequestID: u8vzxgym8kk +2025-06-18T13:52:12.381Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 419ms - Rows affected: 72 - RequestID: hyahdwb0p3 +2025-06-18T13:52:12.481Z [TRACE] payment-service - Operation: order_created - Processing time: 370ms - RequestID: 5hhg6xq8j9d +2025-06-18T13:52:12.581Z [INFO] payment-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.79.116 - RequestID: 9hml6fc2t0j +2025-06-18T13:52:12.681Z [DEBUG] inventory-service - Auth event: password_change - User: user_1041 - IP: 192.168.240.169 - RequestID: aa1oiovpd0k +2025-06-18T13:52:12.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 342ms - RequestID: wktpzvpzhcl +2025-06-18T13:52:12.881Z [TRACE] order-service - Operation: cache_hit - Processing time: 892ms - RequestID: q7qcdu2ivj +2025-06-18T13:52:12.981Z [INFO] payment-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.194.41 - RequestID: s4k0l3jal7 +2025-06-18T13:52:13.081Z [INFO] user-service - Auth event: login_success - User: user_1042 - IP: 192.168.242.165 - RequestID: 4sn1t32hgps +2025-06-18T13:52:13.181Z [TRACE] order-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.196.226 - RequestID: l9o5roc3v7b +2025-06-18T13:52:13.281Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 42ms - Rows affected: 29 - RequestID: zg2qhlg9g7q +2025-06-18T13:52:13.381Z [INFO] payment-service - Auth event: login_success - User: user_1008 - IP: 192.168.133.7 - RequestID: pa2u1uwz9zb +2025-06-18T13:52:13.481Z [TRACE] auth-service - Auth event: password_change - User: user_1067 - IP: 192.168.32.38 - RequestID: 04br3r0lzohq +2025-06-18T13:52:13.581Z [DEBUG] inventory-service - Operation: order_created - Processing time: 953ms - RequestID: ezmdq2snozn +2025-06-18T13:52:13.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1024 - IP: 192.168.211.72 - RequestID: 7n22hv2re3c +2025-06-18T13:52:13.781Z [DEBUG] order-service - PUT /api/v1/orders - Status: 500 - Response time: 1803ms - IP: 192.168.229.123 - User: user_1067 - RequestID: fku3gaocs69 +2025-06-18T13:52:13.881Z [TRACE] user-service - Auth event: login_failed - User: user_1005 - IP: 192.168.167.32 - RequestID: 4aeth5yfld9 +2025-06-18T13:52:13.981Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 444ms - Rows affected: 46 - RequestID: 20qo5dy6le2 +2025-06-18T13:52:14.081Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1976ms - IP: 192.168.81.206 - User: user_1080 - RequestID: snsublvbhd +2025-06-18T13:52:14.181Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 861ms - RequestID: sek0p09l7t +2025-06-18T13:52:14.281Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 731ms - RequestID: 83sjq7o0c9x +2025-06-18T13:52:14.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.13.72 - RequestID: m63w80n01oh +2025-06-18T13:52:14.481Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1911ms - IP: 192.168.133.7 - User: user_1073 - RequestID: lmeek3k1o1a +2025-06-18T13:52:14.581Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1600ms - IP: 192.168.159.94 - User: user_1054 - RequestID: igdbdbbrsz +2025-06-18T13:52:14.681Z [INFO] inventory-service - Database UPDATE on products - Execution time: 124ms - Rows affected: 76 - RequestID: d0m4ivvm7pu +2025-06-18T13:52:14.781Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 276ms - Rows affected: 59 - RequestID: w9f4mkdmoos +2025-06-18T13:52:14.881Z [TRACE] payment-service - Database SELECT on payments - Execution time: 203ms - Rows affected: 54 - RequestID: nue3526q1ye +2025-06-18T13:52:14.981Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 499ms - Rows affected: 4 - RequestID: kfe1bpbcyko +2025-06-18T13:52:15.081Z [DEBUG] user-service - Auth event: login_success - User: user_1010 - IP: 192.168.189.103 - RequestID: qogxo3los6p +2025-06-18T13:52:15.181Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 500 - Response time: 538ms - IP: 192.168.159.94 - User: user_1091 - RequestID: vlqajlz01lf +2025-06-18T13:52:15.281Z [TRACE] notification-service - Operation: payment_processed - Processing time: 445ms - RequestID: lkob7r42k2h +2025-06-18T13:52:15.381Z [TRACE] auth-service - GET /api/v1/orders - Status: 500 - Response time: 656ms - IP: 192.168.235.117 - User: user_1052 - RequestID: s6213cj0oi +2025-06-18T13:52:15.481Z [TRACE] order-service - Database DELETE on sessions - Execution time: 20ms - Rows affected: 48 - RequestID: kpdcolhgxz8 +2025-06-18T13:52:15.581Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 466ms - RequestID: qe8xio9p0x +2025-06-18T13:52:15.681Z [TRACE] auth-service - Auth event: password_change - User: user_1029 - IP: 192.168.232.72 - RequestID: oaf5mm0k1ri +2025-06-18T13:52:15.781Z [INFO] payment-service - Operation: webhook_sent - Processing time: 485ms - RequestID: 3krk1zloeu +2025-06-18T13:52:15.881Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 241ms - RequestID: 9rqe0cp6bth +2025-06-18T13:52:15.981Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1267ms - IP: 192.168.196.226 - User: user_1078 - RequestID: tgsk712ht4g +2025-06-18T13:52:16.081Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 503 - Response time: 1851ms - IP: 192.168.11.60 - User: user_1003 - RequestID: 1uozacpinyh +2025-06-18T13:52:16.181Z [TRACE] notification-service - Operation: notification_queued - Processing time: 424ms - RequestID: 1ql4c0bgave +2025-06-18T13:52:16.281Z [INFO] order-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1386ms - IP: 192.168.81.206 - User: user_1044 - RequestID: euwanlm98dq +2025-06-18T13:52:16.381Z [INFO] user-service - Database UPDATE on sessions - Execution time: 417ms - Rows affected: 78 - RequestID: gq3ik637abt +2025-06-18T13:52:16.481Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 215ms - RequestID: ut4otcpuhv +2025-06-18T13:52:16.581Z [DEBUG] order-service - Auth event: logout - User: user_1050 - IP: 192.168.30.79 - RequestID: 7unw82d9g49 +2025-06-18T13:52:16.681Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 152ms - Rows affected: 24 - RequestID: 0c15fsmg37x +2025-06-18T13:52:16.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.113.218 - RequestID: ds0czmiynyk +2025-06-18T13:52:16.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1076 - IP: 192.168.240.169 - RequestID: 6es7my6x8qj +2025-06-18T13:52:16.981Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 503 - Response time: 1564ms - IP: 192.168.33.76 - User: user_1020 - RequestID: cb72s8iibhc +2025-06-18T13:52:17.081Z [DEBUG] user-service - Auth event: logout - User: user_1054 - IP: 192.168.211.72 - RequestID: grz2ewd6kib +2025-06-18T13:52:17.181Z [INFO] inventory-service - Auth event: password_change - User: user_1098 - IP: 192.168.33.76 - RequestID: lcsrvabgv1 +2025-06-18T13:52:17.281Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1952ms - IP: 192.168.242.165 - User: user_1027 - RequestID: q7hz5bpmc2s +2025-06-18T13:52:17.381Z [INFO] payment-service - Database INSERT on orders - Execution time: 191ms - Rows affected: 71 - RequestID: hr3ggrpadk +2025-06-18T13:52:17.481Z [INFO] notification-service - Auth event: logout - User: user_1050 - IP: 192.168.144.38 - RequestID: cxxtmbf34z +2025-06-18T13:52:17.581Z [INFO] inventory-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.85.229 - RequestID: vuozyfeocmq +2025-06-18T13:52:17.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1059 - IP: 192.168.240.169 - RequestID: i9gg71qytje +2025-06-18T13:52:17.781Z [INFO] inventory-service - Operation: payment_processed - Processing time: 59ms - RequestID: hlavwg9djml +2025-06-18T13:52:17.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.232.72 - RequestID: u62ze8up4u8 +2025-06-18T13:52:17.981Z [TRACE] order-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.235.117 - RequestID: e722pog25o5 +2025-06-18T13:52:18.081Z [INFO] order-service - Auth event: login_success - User: user_1059 - IP: 192.168.144.38 - RequestID: vdw4gzqj36a +2025-06-18T13:52:18.181Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 265ms - RequestID: h65ohna2hdp +2025-06-18T13:52:18.281Z [TRACE] auth-service - Database INSERT on payments - Execution time: 133ms - Rows affected: 51 - RequestID: w41zfsz6yga +2025-06-18T13:52:18.381Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 79ms - RequestID: w3ilcv6ss2p +2025-06-18T13:52:18.481Z [INFO] order-service - Operation: inventory_updated - Processing time: 250ms - RequestID: 8x53zitzqov +2025-06-18T13:52:18.581Z [TRACE] user-service - Auth event: logout - User: user_1001 - IP: 192.168.113.218 - RequestID: 51m1gwsys27 +2025-06-18T13:52:18.681Z [TRACE] notification-service - GET /api/v1/orders - Status: 500 - Response time: 1381ms - IP: 192.168.68.158 - User: user_1085 - RequestID: bi1m3ppar4 +2025-06-18T13:52:18.781Z [DEBUG] user-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.13.72 - RequestID: xjae2bcuwzc +2025-06-18T13:52:18.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1083 - IP: 192.168.141.100 - RequestID: yuc75499rvm +2025-06-18T13:52:18.981Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 910ms - IP: 192.168.211.72 - User: user_1094 - RequestID: m3icfxk1u7 +2025-06-18T13:52:19.081Z [TRACE] payment-service - Database UPDATE on users - Execution time: 132ms - Rows affected: 36 - RequestID: g6907slx8l9 +2025-06-18T13:52:19.181Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 401 - Response time: 422ms - IP: 192.168.13.72 - User: user_1034 - RequestID: hpcyjlut1za +2025-06-18T13:52:19.281Z [TRACE] order-service - Database DELETE on products - Execution time: 81ms - Rows affected: 37 - RequestID: p3yoxhghr1c +2025-06-18T13:52:19.381Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 249ms - Rows affected: 24 - RequestID: fisvhwhv5od +2025-06-18T13:52:19.481Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 835ms - RequestID: d7xdqv6cnb +2025-06-18T13:52:19.581Z [INFO] auth-service - Operation: notification_queued - Processing time: 178ms - RequestID: bzsj8q4w7y6 +2025-06-18T13:52:19.681Z [TRACE] order-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.232.72 - RequestID: bbfi5pbb2oa +2025-06-18T13:52:19.781Z [TRACE] user-service - Operation: cache_hit - Processing time: 230ms - RequestID: jfx6z20s1kf +2025-06-18T13:52:19.881Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1222ms - IP: 192.168.181.225 - User: user_1062 - RequestID: oeehn1s5iz +2025-06-18T13:52:19.981Z [INFO] user-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1751ms - IP: 192.168.144.38 - User: user_1046 - RequestID: aoj8xa9yby7 +2025-06-18T13:52:20.081Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 400 - Response time: 1904ms - IP: 192.168.28.146 - User: user_1098 - RequestID: x6lwc93yhvp +2025-06-18T13:52:20.181Z [TRACE] inventory-service - Operation: order_created - Processing time: 1016ms - RequestID: vukvytjkfkb +2025-06-18T13:52:20.281Z [TRACE] auth-service - GET /api/v1/orders - Status: 404 - Response time: 1331ms - IP: 192.168.10.184 - User: user_1027 - RequestID: c2tgpmp8xkw +2025-06-18T13:52:20.381Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1125ms - IP: 192.168.1.152 - User: user_1079 - RequestID: gsxn2aeoxw +2025-06-18T13:52:20.481Z [TRACE] auth-service - Database DELETE on payments - Execution time: 282ms - Rows affected: 68 - RequestID: jt4vwomz5p +2025-06-18T13:52:20.581Z [TRACE] order-service - Database SELECT on users - Execution time: 319ms - Rows affected: 25 - RequestID: 9olh5tzhta +2025-06-18T13:52:20.681Z [INFO] payment-service - Database INSERT on users - Execution time: 128ms - Rows affected: 26 - RequestID: oijs74d6tqo +2025-06-18T13:52:20.781Z [TRACE] order-service - PATCH /api/v1/payments - Status: 403 - Response time: 681ms - IP: 192.168.68.128 - User: user_1029 - RequestID: 7b8c1umh787 +2025-06-18T13:52:20.881Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 358ms - Rows affected: 17 - RequestID: sqemdgo9ec +2025-06-18T13:52:20.981Z [DEBUG] order-service - Operation: payment_processed - Processing time: 1049ms - RequestID: 9nelay5qaq8 +2025-06-18T13:52:21.081Z [TRACE] order-service - Auth event: password_change - User: user_1045 - IP: 192.168.113.218 - RequestID: j878stethkp +2025-06-18T13:52:21.181Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1897ms - IP: 192.168.79.143 - User: user_1016 - RequestID: wvmgnpsr9hg +2025-06-18T13:52:21.281Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 842ms - RequestID: d2s8cum8puq +2025-06-18T13:52:21.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 522ms - RequestID: n39krf18c6 +2025-06-18T13:52:21.481Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 69ms - Rows affected: 12 - RequestID: 9nv9jrn3cx +2025-06-18T13:52:21.581Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 162ms - Rows affected: 1 - RequestID: y8aod8vt7bj +2025-06-18T13:52:21.681Z [INFO] auth-service - Auth event: login_success - User: user_1011 - IP: 192.168.227.77 - RequestID: fko2mje82a6 +2025-06-18T13:52:21.781Z [INFO] order-service - GET /api/v1/users - Status: 401 - Response time: 1608ms - IP: 192.168.194.41 - User: user_1022 - RequestID: fl1hbeta7hk +2025-06-18T13:52:21.881Z [TRACE] inventory-service - POST /api/v1/orders - Status: 502 - Response time: 208ms - IP: 192.168.14.77 - User: user_1036 - RequestID: w4zars81a4 +2025-06-18T13:52:21.981Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 52ms - RequestID: lcvcis8x2ma +2025-06-18T13:52:22.081Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 930ms - RequestID: 779g761by99 +2025-06-18T13:52:22.181Z [TRACE] notification-service - Database INSERT on orders - Execution time: 466ms - Rows affected: 86 - RequestID: tf4mxwf38z +2025-06-18T13:52:22.281Z [INFO] notification-service - Operation: inventory_updated - Processing time: 959ms - RequestID: 4hehgacg4xl +2025-06-18T13:52:22.381Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 184ms - Rows affected: 77 - RequestID: kwxt6d08cqa +2025-06-18T13:52:22.481Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 387ms - IP: 192.168.147.171 - User: user_1023 - RequestID: b6oump8lqc5 +2025-06-18T13:52:22.581Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 252ms - Rows affected: 61 - RequestID: erwe1krxnm4 +2025-06-18T13:52:22.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 897ms - RequestID: ylhe7fubhe +2025-06-18T13:52:22.781Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 400 - Response time: 1864ms - IP: 192.168.144.38 - User: user_1063 - RequestID: xzayyhnxlhg +2025-06-18T13:52:22.881Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1297ms - IP: 192.168.53.133 - User: user_1010 - RequestID: 13y120ioram +2025-06-18T13:52:22.981Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 465ms - Rows affected: 56 - RequestID: e3uqb23na6 +2025-06-18T13:52:23.081Z [TRACE] payment-service - Auth event: login_failed - User: user_1013 - IP: 192.168.159.94 - RequestID: ha55k78vtm +2025-06-18T13:52:23.181Z [TRACE] auth-service - Operation: cache_hit - Processing time: 791ms - RequestID: 8fy39xtgvc7 +2025-06-18T13:52:23.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.144.38 - RequestID: qymlr7t1r8 +2025-06-18T13:52:23.381Z [INFO] user-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.196.226 - RequestID: xs7dq40hrxk +2025-06-18T13:52:23.481Z [TRACE] user-service - Database SELECT on payments - Execution time: 136ms - Rows affected: 33 - RequestID: tcg1ntj8u8c +2025-06-18T13:52:23.581Z [DEBUG] payment-service - Operation: email_sent - Processing time: 947ms - RequestID: 9xlzvb9niam +2025-06-18T13:52:23.681Z [DEBUG] auth-service - Database SELECT on products - Execution time: 221ms - Rows affected: 90 - RequestID: helfpi32axa +2025-06-18T13:52:23.781Z [INFO] notification-service - Database DELETE on orders - Execution time: 248ms - Rows affected: 42 - RequestID: df6w8709z78 +2025-06-18T13:52:23.881Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 200 - Response time: 249ms - IP: 192.168.97.87 - User: user_1086 - RequestID: 1ncgxr380st +2025-06-18T13:52:23.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1098 - IP: 192.168.147.171 - RequestID: ay0n07f1ept +2025-06-18T13:52:24.081Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 384ms - Rows affected: 37 - RequestID: af1sxqojit +2025-06-18T13:52:24.181Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 503 - Response time: 1499ms - IP: 192.168.64.33 - User: user_1042 - RequestID: kqpo8tg1zer +2025-06-18T13:52:24.281Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 124ms - Rows affected: 77 - RequestID: vlk8r15wpk +2025-06-18T13:52:24.381Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 403 - Response time: 964ms - IP: 192.168.247.134 - User: user_1021 - RequestID: 1moazzvhm42 +2025-06-18T13:52:24.481Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1775ms - IP: 192.168.211.72 - User: user_1064 - RequestID: lv1e3qp932 +2025-06-18T13:52:24.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.138.123 - RequestID: 41xgae1rcb5 +2025-06-18T13:52:24.681Z [DEBUG] user-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.170.215 - RequestID: bgbstmgowo6 +2025-06-18T13:52:24.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1074 - IP: 192.168.144.38 - RequestID: xbw7fastl9a +2025-06-18T13:52:24.881Z [TRACE] order-service - Auth event: login_failed - User: user_1052 - IP: 192.168.159.94 - RequestID: 7pj3vwxs3a5 +2025-06-18T13:52:24.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.81.206 - RequestID: qzscntlowtg +2025-06-18T13:52:25.081Z [DEBUG] user-service - Database UPDATE on products - Execution time: 288ms - Rows affected: 93 - RequestID: 48aqyezj2fa +2025-06-18T13:52:25.181Z [DEBUG] payment-service - Operation: email_sent - Processing time: 672ms - RequestID: 5ijon7v9l0v +2025-06-18T13:52:25.281Z [DEBUG] user-service - Operation: email_sent - Processing time: 160ms - RequestID: jymdaitcr1l +2025-06-18T13:52:25.381Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 56ms - Rows affected: 28 - RequestID: b082mntont6 +2025-06-18T13:52:25.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 706ms - RequestID: joygzyb0j5 +2025-06-18T13:52:25.581Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1162ms - IP: 192.168.211.72 - User: user_1067 - RequestID: ia2vvdjwabi +2025-06-18T13:52:25.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.44.5 - RequestID: 2yjs17455vf +2025-06-18T13:52:25.781Z [INFO] inventory-service - Database INSERT on orders - Execution time: 63ms - Rows affected: 0 - RequestID: om3ei49bvqf +2025-06-18T13:52:25.881Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 502 - Response time: 1881ms - IP: 192.168.28.146 - User: user_1041 - RequestID: ranniijcfj +2025-06-18T13:52:25.981Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 214ms - Rows affected: 95 - RequestID: amuwgj8yh16 +2025-06-18T13:52:26.081Z [DEBUG] order-service - Auth event: logout - User: user_1096 - IP: 192.168.189.103 - RequestID: wwoxhujjbhg +2025-06-18T13:52:26.181Z [DEBUG] order-service - Auth event: login_failed - User: user_1015 - IP: 192.168.144.38 - RequestID: j5zhidmlbs +2025-06-18T13:52:26.281Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 157ms - Rows affected: 0 - RequestID: jlyeofkwtv +2025-06-18T13:52:26.381Z [TRACE] order-service - Auth event: logout - User: user_1042 - IP: 192.168.158.144 - RequestID: 60lg36qg43x +2025-06-18T13:52:26.481Z [TRACE] order-service - Operation: cache_miss - Processing time: 683ms - RequestID: d16e7z6qeg +2025-06-18T13:52:26.581Z [TRACE] user-service - POST /api/v1/orders - Status: 400 - Response time: 762ms - IP: 192.168.1.152 - User: user_1001 - RequestID: yrqz6l23bm +2025-06-18T13:52:26.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 696ms - RequestID: 8fd9t81ahok +2025-06-18T13:52:26.781Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 400 - Response time: 813ms - IP: 192.168.79.116 - User: user_1079 - RequestID: 5unlrjuyh4w +2025-06-18T13:52:26.881Z [INFO] notification-service - Operation: inventory_updated - Processing time: 290ms - RequestID: mhoxmbsgktc +2025-06-18T13:52:26.981Z [TRACE] user-service - Database SELECT on sessions - Execution time: 64ms - Rows affected: 25 - RequestID: 838cmh4yjm4 +2025-06-18T13:52:27.081Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1361ms - IP: 192.168.227.77 - User: user_1040 - RequestID: 5gq20td5ix3 +2025-06-18T13:52:27.181Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 184ms - Rows affected: 24 - RequestID: ql63iswr8bi +2025-06-18T13:52:27.281Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 441ms - IP: 192.168.144.38 - User: user_1035 - RequestID: m8gqjujespo +2025-06-18T13:52:27.381Z [INFO] notification-service - PUT /api/v1/orders - Status: 201 - Response time: 1879ms - IP: 192.168.68.158 - User: user_1025 - RequestID: akxu6229k4u +2025-06-18T13:52:27.481Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 827ms - RequestID: biae2kb2ltd +2025-06-18T13:52:27.581Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 639ms - IP: 192.168.196.226 - User: user_1045 - RequestID: x7624878lf +2025-06-18T13:52:27.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1064 - IP: 192.168.138.123 - RequestID: ln7j35mxi7j +2025-06-18T13:52:27.781Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 551ms - RequestID: m0l7dtdqal +2025-06-18T13:52:27.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 253ms - RequestID: pwpm1723bw +2025-06-18T13:52:27.981Z [DEBUG] inventory-service - Operation: order_created - Processing time: 478ms - RequestID: 8g5qqaq8fh9 +2025-06-18T13:52:28.081Z [TRACE] notification-service - Operation: cache_hit - Processing time: 78ms - RequestID: cbwy661qll +2025-06-18T13:52:28.181Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 13ms - Rows affected: 13 - RequestID: 1o6f9f5niyu +2025-06-18T13:52:28.281Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 404 - Response time: 456ms - IP: 192.168.28.146 - User: user_1072 - RequestID: abddmcgql3n +2025-06-18T13:52:28.381Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1186ms - IP: 192.168.240.169 - User: user_1023 - RequestID: ridaa1icl8p +2025-06-18T13:52:28.481Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 503 - Response time: 26ms - IP: 192.168.46.63 - User: user_1090 - RequestID: own96mqgfne +2025-06-18T13:52:28.581Z [INFO] payment-service - Operation: notification_queued - Processing time: 327ms - RequestID: 1hliu7bvujv +2025-06-18T13:52:28.681Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 502 - Response time: 757ms - IP: 192.168.64.33 - User: user_1070 - RequestID: qai9eww8b5t +2025-06-18T13:52:28.781Z [INFO] order-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.53.133 - RequestID: dz2jb719n2v +2025-06-18T13:52:28.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1068 - IP: 192.168.158.144 - RequestID: jqg0l8cgfr +2025-06-18T13:52:28.981Z [DEBUG] payment-service - Auth event: logout - User: user_1013 - IP: 192.168.229.123 - RequestID: mlgolkmbn8i +2025-06-18T13:52:29.081Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 453ms - RequestID: 12sll8nx9fy +2025-06-18T13:52:29.181Z [INFO] user-service - Operation: webhook_sent - Processing time: 712ms - RequestID: 18jnylkz3kpi +2025-06-18T13:52:29.281Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 711ms - RequestID: rh0w8h3x688 +2025-06-18T13:52:29.381Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 499ms - Rows affected: 28 - RequestID: ih62gi628wp +2025-06-18T13:52:29.481Z [INFO] inventory-service - Auth event: password_change - User: user_1036 - IP: 192.168.10.184 - RequestID: z0zbp9csq8a +2025-06-18T13:52:29.581Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 143ms - Rows affected: 82 - RequestID: uz0534wex7k +2025-06-18T13:52:29.681Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 404 - Response time: 39ms - IP: 192.168.33.76 - User: user_1076 - RequestID: mx2gvk5dnk +2025-06-18T13:52:29.781Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 500 - Response time: 934ms - IP: 192.168.196.226 - User: user_1070 - RequestID: 8gd5sf9ha9k +2025-06-18T13:52:29.881Z [TRACE] user-service - Operation: cache_hit - Processing time: 564ms - RequestID: zs1it99z80h +2025-06-18T13:52:29.981Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 502 - Response time: 673ms - IP: 192.168.97.87 - User: user_1088 - RequestID: 54haahurr6t +2025-06-18T13:52:30.081Z [INFO] notification-service - Database INSERT on users - Execution time: 42ms - Rows affected: 55 - RequestID: 8k2xwhp7uur +2025-06-18T13:52:30.181Z [INFO] inventory-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.229.123 - RequestID: l0337z5pi9 +2025-06-18T13:52:30.281Z [TRACE] payment-service - PUT /api/v1/payments - Status: 401 - Response time: 459ms - IP: 192.168.240.169 - User: user_1066 - RequestID: del8ru2x0ot +2025-06-18T13:52:30.381Z [INFO] user-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1663ms - IP: 192.168.113.218 - User: user_1068 - RequestID: z9498v0c1kp +2025-06-18T13:52:30.481Z [INFO] auth-service - Operation: notification_queued - Processing time: 358ms - RequestID: 2wjb17gjsx9 +2025-06-18T13:52:30.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 613ms - RequestID: ryg5bvnp0ds +2025-06-18T13:52:30.681Z [TRACE] inventory-service - Operation: email_sent - Processing time: 280ms - RequestID: 11ti62h4mlv +2025-06-18T13:52:30.781Z [TRACE] order-service - Operation: inventory_updated - Processing time: 390ms - RequestID: u8tuwssnd3 +2025-06-18T13:52:30.881Z [INFO] auth-service - Operation: email_sent - Processing time: 485ms - RequestID: zh556zf5vg9 +2025-06-18T13:52:30.981Z [INFO] order-service - DELETE /api/v1/payments - Status: 503 - Response time: 787ms - IP: 192.168.10.184 - User: user_1013 - RequestID: nz9ia8efufh +2025-06-18T13:52:31.081Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 401 - Response time: 905ms - IP: 192.168.247.134 - User: user_1032 - RequestID: vslfkcf9gy9 +2025-06-18T13:52:31.181Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 246ms - Rows affected: 83 - RequestID: l5z0douqt7 +2025-06-18T13:52:31.281Z [DEBUG] user-service - Operation: cache_miss - Processing time: 307ms - RequestID: 4jj41oaxlkq +2025-06-18T13:52:31.381Z [INFO] payment-service - Auth event: login_failed - User: user_1047 - IP: 192.168.100.240 - RequestID: gnof8eh597 +2025-06-18T13:52:31.481Z [DEBUG] user-service - Auth event: logout - User: user_1083 - IP: 192.168.194.41 - RequestID: 7ev88nekdbl +2025-06-18T13:52:31.581Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 400 - Response time: 808ms - IP: 192.168.79.141 - User: user_1019 - RequestID: moukfjsle9s +2025-06-18T13:52:31.681Z [TRACE] notification-service - Database UPDATE on users - Execution time: 334ms - Rows affected: 53 - RequestID: exowmiy114i +2025-06-18T13:52:31.781Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 125ms - Rows affected: 66 - RequestID: h0rrwo18y4 +2025-06-18T13:52:31.881Z [DEBUG] user-service - Operation: cache_miss - Processing time: 894ms - RequestID: r7h37lyg228 +2025-06-18T13:52:31.981Z [TRACE] user-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.196.226 - RequestID: 5zkr1b27s0r +2025-06-18T13:52:32.081Z [DEBUG] order-service - Database INSERT on orders - Execution time: 412ms - Rows affected: 80 - RequestID: 4q1y0oz2npm +2025-06-18T13:52:32.181Z [INFO] order-service - POST /api/v1/inventory - Status: 401 - Response time: 74ms - IP: 192.168.187.199 - User: user_1005 - RequestID: ulheh269bxh +2025-06-18T13:52:32.281Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 119ms - RequestID: 4p1ewolgw5x +2025-06-18T13:52:32.381Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 435ms - RequestID: fpbcvcn80i5 +2025-06-18T13:52:32.481Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1461ms - IP: 192.168.68.128 - User: user_1021 - RequestID: kbyifngxzdn +2025-06-18T13:52:32.581Z [DEBUG] payment-service - Auth event: login_failed - User: user_1039 - IP: 192.168.10.184 - RequestID: q9mmkkuum7 +2025-06-18T13:52:32.681Z [INFO] payment-service - Operation: payment_processed - Processing time: 569ms - RequestID: axu4xixd2cs +2025-06-18T13:52:32.781Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 393ms - Rows affected: 64 - RequestID: ygg8ka9ugh +2025-06-18T13:52:32.881Z [INFO] order-service - Database UPDATE on sessions - Execution time: 404ms - Rows affected: 49 - RequestID: wuak29w3m3 +2025-06-18T13:52:32.981Z [INFO] inventory-service - Auth event: login_failed - User: user_1017 - IP: 192.168.30.79 - RequestID: t32x7ufldd9 +2025-06-18T13:52:33.081Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 42ms - Rows affected: 15 - RequestID: syaeot8hto +2025-06-18T13:52:33.181Z [TRACE] auth-service - Operation: notification_queued - Processing time: 371ms - RequestID: or1didggyq +2025-06-18T13:52:33.281Z [DEBUG] user-service - Auth event: login_success - User: user_1011 - IP: 192.168.53.133 - RequestID: 3ptq5n86r3 +2025-06-18T13:52:33.381Z [TRACE] user-service - Operation: email_sent - Processing time: 777ms - RequestID: csvb26h3hz +2025-06-18T13:52:33.481Z [INFO] notification-service - Auth event: login_success - User: user_1028 - IP: 192.168.64.33 - RequestID: jhazcc8dqq +2025-06-18T13:52:33.581Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 401 - Response time: 1501ms - IP: 192.168.53.133 - User: user_1017 - RequestID: 44pbdf2yomy +2025-06-18T13:52:33.681Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 279ms - Rows affected: 33 - RequestID: qb1boxw6btm +2025-06-18T13:52:33.781Z [INFO] user-service - POST /api/v1/users - Status: 403 - Response time: 1594ms - IP: 192.168.240.169 - User: user_1096 - RequestID: xud7wk94kw +2025-06-18T13:52:33.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1086 - IP: 192.168.138.123 - RequestID: x9759bwfoj +2025-06-18T13:52:33.981Z [DEBUG] user-service - Database UPDATE on users - Execution time: 475ms - Rows affected: 29 - RequestID: u5c5jzg4xm +2025-06-18T13:52:34.081Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 200 - Response time: 47ms - IP: 192.168.167.32 - User: user_1084 - RequestID: 9fvk0hoqp3 +2025-06-18T13:52:34.181Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 503 - Response time: 419ms - IP: 192.168.31.117 - User: user_1012 - RequestID: c1odkhil4eh +2025-06-18T13:52:34.281Z [TRACE] auth-service - Database INSERT on payments - Execution time: 460ms - Rows affected: 96 - RequestID: 4uttxl2iz0d +2025-06-18T13:52:34.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 793ms - RequestID: mcx9vb1en5q +2025-06-18T13:52:34.481Z [TRACE] payment-service - GET /api/v1/inventory - Status: 403 - Response time: 1204ms - IP: 192.168.14.77 - User: user_1088 - RequestID: 5vbltinubce +2025-06-18T13:52:34.581Z [TRACE] order-service - Operation: cache_miss - Processing time: 202ms - RequestID: 5b2mpovzoae +2025-06-18T13:52:34.681Z [INFO] payment-service - PUT /api/v1/inventory - Status: 403 - Response time: 1388ms - IP: 192.168.247.134 - User: user_1096 - RequestID: uy3i0xyqbsq +2025-06-18T13:52:34.781Z [TRACE] notification-service - Auth event: login_success - User: user_1019 - IP: 192.168.13.72 - RequestID: yxm6gunzry +2025-06-18T13:52:34.881Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 125ms - RequestID: aywo9yn84cl +2025-06-18T13:52:34.981Z [DEBUG] order-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.53.133 - RequestID: hoa6c4nry2 +2025-06-18T13:52:35.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 233ms - RequestID: j0jrsy7tz5h +2025-06-18T13:52:35.181Z [INFO] auth-service - Operation: email_sent - Processing time: 282ms - RequestID: ynwcvk0r1le +2025-06-18T13:52:35.281Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 203ms - Rows affected: 36 - RequestID: 81edi9r20km +2025-06-18T13:52:35.381Z [TRACE] auth-service - Operation: cache_hit - Processing time: 537ms - RequestID: 37gtkvz9855 +2025-06-18T13:52:35.481Z [TRACE] auth-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.81.206 - RequestID: iguswigh4s +2025-06-18T13:52:35.581Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 200 - Response time: 269ms - IP: 192.168.33.76 - User: user_1098 - RequestID: 5g8v207l07a +2025-06-18T13:52:35.681Z [INFO] inventory-service - Operation: cache_miss - Processing time: 197ms - RequestID: w30o600n61i +2025-06-18T13:52:35.781Z [TRACE] order-service - Operation: email_sent - Processing time: 520ms - RequestID: 4y5los8lsge +2025-06-18T13:52:35.881Z [TRACE] order-service - Auth event: login_success - User: user_1008 - IP: 192.168.141.100 - RequestID: r5sn75h95nm +2025-06-18T13:52:35.981Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 176ms - IP: 192.168.13.72 - User: user_1094 - RequestID: jbt7txeaiw +2025-06-18T13:52:36.081Z [DEBUG] notification-service - Auth event: password_change - User: user_1046 - IP: 192.168.141.100 - RequestID: r6ntoox8pn +2025-06-18T13:52:36.181Z [INFO] auth-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.53.133 - RequestID: kk0r7ttkwk +2025-06-18T13:52:36.281Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 858ms - RequestID: o56j24amzpd +2025-06-18T13:52:36.381Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1450ms - IP: 192.168.138.123 - User: user_1098 - RequestID: crxxxlu7nbo +2025-06-18T13:52:36.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 214ms - RequestID: 7ztaww7ki24 +2025-06-18T13:52:36.581Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 281ms - Rows affected: 80 - RequestID: uc8oeb6eu4 +2025-06-18T13:52:36.681Z [INFO] notification-service - Operation: order_created - Processing time: 514ms - RequestID: xlmnraf58ni +2025-06-18T13:52:36.781Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 500 - Response time: 81ms - IP: 192.168.36.218 - User: user_1086 - RequestID: vlq8atiopa +2025-06-18T13:52:36.881Z [INFO] payment-service - Operation: cache_hit - Processing time: 358ms - RequestID: m6mmy9yz37p +2025-06-18T13:52:36.981Z [DEBUG] user-service - PUT /api/v1/users - Status: 404 - Response time: 863ms - IP: 192.168.36.218 - User: user_1048 - RequestID: 1ydif7z2prt +2025-06-18T13:52:37.081Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 353ms - Rows affected: 2 - RequestID: fwvyrgfzsvi +2025-06-18T13:52:37.181Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 104ms - Rows affected: 19 - RequestID: n0vtkrbaj1 +2025-06-18T13:52:37.281Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 614ms - RequestID: gnsokur6ztw +2025-06-18T13:52:37.381Z [TRACE] order-service - POST /api/v1/orders - Status: 500 - Response time: 1231ms - IP: 192.168.10.184 - User: user_1074 - RequestID: 8clo2h17jx +2025-06-18T13:52:37.481Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1892ms - IP: 192.168.28.146 - User: user_1029 - RequestID: ktv60ibaujl +2025-06-18T13:52:37.581Z [INFO] inventory-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.104.37 - RequestID: l6wgrb1t9is +2025-06-18T13:52:37.681Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 437ms - Rows affected: 46 - RequestID: 830zlm2tqdr +2025-06-18T13:52:37.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.240.169 - RequestID: 6be2jqcx57u +2025-06-18T13:52:37.881Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 201 - Response time: 645ms - IP: 192.168.104.37 - User: user_1024 - RequestID: eguvvuhf5mt +2025-06-18T13:52:37.981Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 869ms - RequestID: zf55z6bkyh +2025-06-18T13:52:38.081Z [INFO] auth-service - Operation: cache_miss - Processing time: 1027ms - RequestID: ij6cy8anqg +2025-06-18T13:52:38.181Z [INFO] notification-service - Operation: email_sent - Processing time: 515ms - RequestID: uw3wmskyw1 +2025-06-18T13:52:38.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1030 - IP: 192.168.147.171 - RequestID: xbgzm97a4b +2025-06-18T13:52:38.381Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 698ms - RequestID: usml8ff43ik +2025-06-18T13:52:38.481Z [TRACE] order-service - Operation: cache_miss - Processing time: 616ms - RequestID: 9h6epk1d0xj +2025-06-18T13:52:38.581Z [INFO] auth-service - Operation: order_created - Processing time: 614ms - RequestID: nshpak5v38g +2025-06-18T13:52:38.681Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 687ms - RequestID: 1cw4e3ia3b8 +2025-06-18T13:52:38.781Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 50ms - Rows affected: 2 - RequestID: gnqz8od9bzj +2025-06-18T13:52:38.881Z [TRACE] notification-service - Auth event: logout - User: user_1031 - IP: 192.168.113.218 - RequestID: s6n9358lbmn +2025-06-18T13:52:38.981Z [DEBUG] order-service - PUT /api/v1/orders - Status: 200 - Response time: 1677ms - IP: 192.168.144.38 - User: user_1095 - RequestID: pu1rma7k3x +2025-06-18T13:52:39.081Z [INFO] user-service - Operation: notification_queued - Processing time: 1000ms - RequestID: s6gf64b5wj +2025-06-18T13:52:39.181Z [TRACE] auth-service - Auth event: password_change - User: user_1023 - IP: 192.168.113.218 - RequestID: z3kpgu1evk +2025-06-18T13:52:39.281Z [INFO] notification-service - Operation: inventory_updated - Processing time: 224ms - RequestID: 0uc1hitkrkwg +2025-06-18T13:52:39.381Z [INFO] user-service - PUT /api/v1/users - Status: 404 - Response time: 1562ms - IP: 192.168.138.123 - User: user_1067 - RequestID: w8v77kfwn +2025-06-18T13:52:39.481Z [TRACE] user-service - Database SELECT on sessions - Execution time: 301ms - Rows affected: 13 - RequestID: 7hpilg06bpt +2025-06-18T13:52:39.581Z [DEBUG] order-service - Auth event: login_success - User: user_1034 - IP: 192.168.235.117 - RequestID: vssql2ql1me +2025-06-18T13:52:39.681Z [DEBUG] notification-service - Auth event: logout - User: user_1003 - IP: 192.168.196.226 - RequestID: cuugb0kso3j +2025-06-18T13:52:39.781Z [DEBUG] notification-service - Database DELETE on users - Execution time: 313ms - Rows affected: 91 - RequestID: zhjqrjs8yp +2025-06-18T13:52:39.881Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 401 - Response time: 846ms - IP: 192.168.196.226 - User: user_1030 - RequestID: omm385f256 +2025-06-18T13:52:39.981Z [TRACE] notification-service - Database SELECT on users - Execution time: 360ms - Rows affected: 54 - RequestID: ksrptaw19tn +2025-06-18T13:52:40.081Z [DEBUG] auth-service - GET /api/v1/payments - Status: 403 - Response time: 1572ms - IP: 192.168.36.218 - User: user_1062 - RequestID: zeyzyw4t28f +2025-06-18T13:52:40.181Z [TRACE] payment-service - Database UPDATE on products - Execution time: 489ms - Rows affected: 97 - RequestID: 77xl1x8e9q3 +2025-06-18T13:52:40.281Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 727ms - RequestID: f3jj8extxse +2025-06-18T13:52:40.381Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1538ms - IP: 192.168.10.184 - User: user_1018 - RequestID: z6qe7dnakqi +2025-06-18T13:52:40.481Z [INFO] order-service - Operation: cache_hit - Processing time: 814ms - RequestID: m42nh8q8wka +2025-06-18T13:52:40.581Z [DEBUG] auth-service - POST /api/v1/payments - Status: 401 - Response time: 1657ms - IP: 192.168.53.133 - User: user_1096 - RequestID: xtd9kswv0a +2025-06-18T13:52:40.681Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 637ms - RequestID: m3jj058uj4a +2025-06-18T13:52:40.781Z [INFO] payment-service - Auth event: password_change - User: user_1002 - IP: 192.168.68.128 - RequestID: w9qz3nfk14j +2025-06-18T13:52:40.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1045 - IP: 192.168.247.134 - RequestID: 1uv4kxtgl0l +2025-06-18T13:52:40.981Z [INFO] payment-service - Auth event: password_change - User: user_1085 - IP: 192.168.196.226 - RequestID: oganc5n9svb +2025-06-18T13:52:41.081Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 4ms - Rows affected: 35 - RequestID: l7mpmke05a +2025-06-18T13:52:41.181Z [TRACE] payment-service - GET /api/v1/inventory - Status: 403 - Response time: 1575ms - IP: 192.168.68.128 - User: user_1011 - RequestID: o947aksjacp +2025-06-18T13:52:41.281Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 336ms - Rows affected: 98 - RequestID: kvmfibcc45b +2025-06-18T13:52:41.381Z [INFO] payment-service - Database UPDATE on orders - Execution time: 271ms - Rows affected: 64 - RequestID: g8gld8yrlx +2025-06-18T13:52:41.481Z [DEBUG] user-service - Database DELETE on products - Execution time: 275ms - Rows affected: 83 - RequestID: qd93bzdtvqn +2025-06-18T13:52:41.581Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 175ms - RequestID: frizf0tbnat +2025-06-18T13:52:41.681Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 201 - Response time: 1974ms - IP: 192.168.170.215 - User: user_1092 - RequestID: bcl56e753kh +2025-06-18T13:52:41.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1095 - IP: 192.168.242.165 - RequestID: ttsnh1zfme +2025-06-18T13:52:41.881Z [INFO] inventory-service - Auth event: password_change - User: user_1059 - IP: 192.168.30.79 - RequestID: aqaulwxigye +2025-06-18T13:52:41.981Z [INFO] notification-service - Auth event: login_success - User: user_1086 - IP: 192.168.158.144 - RequestID: d1gqxzhnle +2025-06-18T13:52:42.081Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 114ms - Rows affected: 65 - RequestID: 252ghuqvtz +2025-06-18T13:52:42.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.79.141 - RequestID: 2ntcb6ertgm +2025-06-18T13:52:42.281Z [INFO] payment-service - Auth event: login_failed - User: user_1099 - IP: 192.168.44.5 - RequestID: f7sgbpz49lc +2025-06-18T13:52:42.381Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.1.152 - RequestID: 0zo3ej0jr8e8 +2025-06-18T13:52:42.481Z [DEBUG] user-service - Database INSERT on payments - Execution time: 39ms - Rows affected: 29 - RequestID: m2968xa1pmj +2025-06-18T13:52:42.581Z [DEBUG] user-service - Database INSERT on users - Execution time: 383ms - Rows affected: 38 - RequestID: mwf4skbzxhp +2025-06-18T13:52:42.681Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1548ms - IP: 192.168.189.103 - User: user_1038 - RequestID: si3ar6hqqsk +2025-06-18T13:52:42.781Z [INFO] auth-service - Operation: cache_hit - Processing time: 675ms - RequestID: 8tdyr4c47et +2025-06-18T13:52:42.881Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 697ms - RequestID: bw2u00e4dx +2025-06-18T13:52:42.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 512ms - RequestID: ne0vre9niu +2025-06-18T13:52:43.081Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 404 - Response time: 873ms - IP: 192.168.240.169 - User: user_1055 - RequestID: 5k7f6d77ecs +2025-06-18T13:52:43.181Z [TRACE] order-service - Database INSERT on payments - Execution time: 305ms - Rows affected: 95 - RequestID: c3533k8e45 +2025-06-18T13:52:43.281Z [DEBUG] payment-service - POST /api/v1/users - Status: 403 - Response time: 791ms - IP: 192.168.141.100 - User: user_1021 - RequestID: 5m5lirydc7g +2025-06-18T13:52:43.381Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 1487ms - IP: 192.168.144.38 - User: user_1098 - RequestID: 2swdlj76ykg +2025-06-18T13:52:43.481Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 404 - Response time: 1185ms - IP: 192.168.174.114 - User: user_1072 - RequestID: s22bazeyj9 +2025-06-18T13:52:43.581Z [INFO] auth-service - Operation: notification_queued - Processing time: 214ms - RequestID: bqvtmbyqpcv +2025-06-18T13:52:43.681Z [TRACE] user-service - Auth event: login_success - User: user_1009 - IP: 192.168.79.116 - RequestID: vrrip1471el +2025-06-18T13:52:43.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.32.38 - RequestID: s3tof9a1tjk +2025-06-18T13:52:43.881Z [DEBUG] user-service - Auth event: logout - User: user_1095 - IP: 192.168.159.94 - RequestID: 9ed8alry196 +2025-06-18T13:52:43.981Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.13.72 - RequestID: ppbyruemvmp +2025-06-18T13:52:44.081Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.158.144 - RequestID: 221amnr49yx +2025-06-18T13:52:44.181Z [INFO] order-service - Database DELETE on sessions - Execution time: 443ms - Rows affected: 87 - RequestID: 0qfdy37akyx +2025-06-18T13:52:44.281Z [INFO] order-service - Auth event: login_success - User: user_1091 - IP: 192.168.79.143 - RequestID: pghx2lvqahl +2025-06-18T13:52:44.381Z [TRACE] user-service - Operation: cache_hit - Processing time: 851ms - RequestID: 622orjf2hie +2025-06-18T13:52:44.481Z [TRACE] inventory-service - Auth event: login_success - User: user_1081 - IP: 192.168.30.79 - RequestID: 9rxlop0uir6 +2025-06-18T13:52:44.581Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 200 - Response time: 1092ms - IP: 192.168.229.123 - User: user_1000 - RequestID: q32uz5fhxhe +2025-06-18T13:52:44.681Z [INFO] user-service - Operation: order_created - Processing time: 708ms - RequestID: l93fomjlm2p +2025-06-18T13:52:44.781Z [TRACE] notification-service - Auth event: login_success - User: user_1001 - IP: 192.168.232.72 - RequestID: os94d6177w +2025-06-18T13:52:44.881Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 499ms - Rows affected: 22 - RequestID: 9si3jqwb6rm +2025-06-18T13:52:44.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 279ms - RequestID: 1gyei5670oj +2025-06-18T13:52:45.081Z [TRACE] payment-service - PUT /api/v1/users - Status: 503 - Response time: 1022ms - IP: 192.168.211.72 - User: user_1067 - RequestID: rs4eq7s81v +2025-06-18T13:52:45.181Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1016ms - IP: 192.168.189.103 - User: user_1070 - RequestID: 6qlm3cht4gl +2025-06-18T13:52:45.281Z [DEBUG] user-service - POST /api/v1/inventory - Status: 201 - Response time: 1308ms - IP: 192.168.100.240 - User: user_1010 - RequestID: 4snkoakhu7w +2025-06-18T13:52:45.381Z [TRACE] payment-service - Auth event: login_failed - User: user_1059 - IP: 192.168.44.5 - RequestID: op82lwrhqk +2025-06-18T13:52:45.481Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 14ms - Rows affected: 69 - RequestID: yfimu9tfcuc +2025-06-18T13:52:45.581Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 201 - Response time: 1571ms - IP: 192.168.13.72 - User: user_1041 - RequestID: 6d9qby4i5uu +2025-06-18T13:52:45.681Z [TRACE] inventory-service - GET /api/v1/orders - Status: 201 - Response time: 123ms - IP: 192.168.144.38 - User: user_1001 - RequestID: 92l8zwky6zj +2025-06-18T13:52:45.781Z [TRACE] payment-service - Operation: email_sent - Processing time: 669ms - RequestID: yd8ejbhq9fl +2025-06-18T13:52:45.881Z [INFO] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 853ms - IP: 192.168.46.63 - User: user_1034 - RequestID: hvj15zdkzn7 +2025-06-18T13:52:45.981Z [TRACE] order-service - Auth event: logout - User: user_1094 - IP: 192.168.28.146 - RequestID: mg0392a1hfp +2025-06-18T13:52:46.081Z [INFO] order-service - GET /api/v1/auth/logout - Status: 500 - Response time: 817ms - IP: 192.168.1.152 - User: user_1097 - RequestID: 0qxz3gnih16 +2025-06-18T13:52:46.181Z [INFO] auth-service - Auth event: password_change - User: user_1066 - IP: 192.168.10.184 - RequestID: suf3n8syrs9 +2025-06-18T13:52:46.281Z [TRACE] user-service - POST /api/v1/payments - Status: 200 - Response time: 1142ms - IP: 192.168.44.5 - User: user_1086 - RequestID: g8mectka6qh +2025-06-18T13:52:46.381Z [INFO] user-service - Operation: cache_miss - Processing time: 708ms - RequestID: owmsr91a28 +2025-06-18T13:52:46.481Z [INFO] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 1513ms - IP: 192.168.227.233 - User: user_1094 - RequestID: 6ma1635bds9 +2025-06-18T13:52:46.581Z [INFO] notification-service - Database INSERT on users - Execution time: 295ms - Rows affected: 78 - RequestID: 6tixaexk4g5 +2025-06-18T13:52:46.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.247.134 - RequestID: jcwwpmr8k +2025-06-18T13:52:46.781Z [TRACE] auth-service - Database DELETE on users - Execution time: 468ms - Rows affected: 34 - RequestID: tk7z8ljzt6 +2025-06-18T13:52:46.881Z [TRACE] order-service - Database DELETE on sessions - Execution time: 52ms - Rows affected: 23 - RequestID: dwlrrn57cm +2025-06-18T13:52:46.981Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 12ms - Rows affected: 76 - RequestID: 7ywciu1bti +2025-06-18T13:52:47.081Z [DEBUG] auth-service - Database SELECT on products - Execution time: 327ms - Rows affected: 77 - RequestID: dksh3pgwbhq +2025-06-18T13:52:47.181Z [INFO] inventory-service - Operation: order_created - Processing time: 998ms - RequestID: eukyzsaoirj +2025-06-18T13:52:47.281Z [TRACE] inventory-service - Auth event: password_change - User: user_1093 - IP: 192.168.174.114 - RequestID: qrznt0rdzd +2025-06-18T13:52:47.381Z [TRACE] auth-service - Operation: order_created - Processing time: 877ms - RequestID: 8vuepwxshu +2025-06-18T13:52:47.481Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 429ms - Rows affected: 92 - RequestID: t01tcj5g7u +2025-06-18T13:52:47.581Z [TRACE] auth-service - Database SELECT on users - Execution time: 57ms - Rows affected: 70 - RequestID: ey0vdolnp27 +2025-06-18T13:52:47.681Z [TRACE] order-service - Operation: inventory_updated - Processing time: 757ms - RequestID: alk4czjfnuc +2025-06-18T13:52:47.781Z [DEBUG] order-service - Auth event: login_success - User: user_1091 - IP: 192.168.100.240 - RequestID: 1onzfkobxnr +2025-06-18T13:52:47.881Z [TRACE] inventory-service - Operation: email_sent - Processing time: 713ms - RequestID: ap783e16lui +2025-06-18T13:52:47.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1067 - IP: 192.168.141.100 - RequestID: nkl8lyw1rn +2025-06-18T13:52:48.081Z [TRACE] payment-service - Database SELECT on users - Execution time: 26ms - Rows affected: 11 - RequestID: puequs0ccs +2025-06-18T13:52:48.181Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1269ms - IP: 192.168.44.5 - User: user_1029 - RequestID: uwutqx9ulo +2025-06-18T13:52:48.281Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 385ms - IP: 192.168.64.33 - User: user_1096 - RequestID: v0qhjflcy5k +2025-06-18T13:52:48.381Z [TRACE] payment-service - Database INSERT on products - Execution time: 165ms - Rows affected: 76 - RequestID: 2ao6e16jw28 +2025-06-18T13:52:48.481Z [TRACE] payment-service - Database INSERT on orders - Execution time: 229ms - Rows affected: 6 - RequestID: 98vcyf5edvc +2025-06-18T13:52:48.581Z [TRACE] notification-service - Database UPDATE on users - Execution time: 92ms - Rows affected: 65 - RequestID: 4hpa6q3ecyl +2025-06-18T13:52:48.681Z [INFO] user-service - Operation: notification_queued - Processing time: 150ms - RequestID: f524tmatev7 +2025-06-18T13:52:48.781Z [INFO] order-service - Auth event: logout - User: user_1089 - IP: 192.168.30.79 - RequestID: j6wwy8a3gv +2025-06-18T13:52:48.881Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1550ms - IP: 192.168.167.32 - User: user_1019 - RequestID: i5azq517d7 +2025-06-18T13:52:48.981Z [INFO] payment-service - Operation: order_created - Processing time: 949ms - RequestID: rbqjj5anwmm +2025-06-18T13:52:49.081Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 5ms - Rows affected: 84 - RequestID: 2mpqcyuzds4 +2025-06-18T13:52:49.181Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 209ms - Rows affected: 27 - RequestID: qypgis0i74m +2025-06-18T13:52:49.281Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 50ms - Rows affected: 53 - RequestID: dj2hyk8oygm +2025-06-18T13:52:49.381Z [DEBUG] auth-service - Auth event: logout - User: user_1084 - IP: 192.168.170.215 - RequestID: 4npxi2i27wi +2025-06-18T13:52:49.481Z [TRACE] notification-service - Auth event: logout - User: user_1030 - IP: 192.168.44.5 - RequestID: kxcrjl12ca +2025-06-18T13:52:49.581Z [INFO] notification-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.97.87 - RequestID: u5mszt7km8 +2025-06-18T13:52:49.681Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 1025ms - RequestID: 6o9jbmh7me +2025-06-18T13:52:49.781Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 125ms - IP: 192.168.36.218 - User: user_1059 - RequestID: 3cuy7e4hvlo +2025-06-18T13:52:49.881Z [INFO] order-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.189.103 - RequestID: rfbanxmd2a +2025-06-18T13:52:49.981Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 14ms - Rows affected: 81 - RequestID: z1t5jwxrt5q +2025-06-18T13:52:50.081Z [INFO] order-service - Operation: inventory_updated - Processing time: 116ms - RequestID: iptpzwolies +2025-06-18T13:52:50.181Z [TRACE] notification-service - Database INSERT on users - Execution time: 259ms - Rows affected: 28 - RequestID: oh3jugc0ht +2025-06-18T13:52:50.281Z [INFO] payment-service - POST /api/v1/auth/login - Status: 400 - Response time: 462ms - IP: 192.168.79.116 - User: user_1015 - RequestID: emn0a6j0a4i +2025-06-18T13:52:50.381Z [INFO] payment-service - Database UPDATE on users - Execution time: 494ms - Rows affected: 88 - RequestID: 2nr7miywxwe +2025-06-18T13:52:50.481Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 391ms - Rows affected: 7 - RequestID: hgpc1ounn4v +2025-06-18T13:52:50.581Z [TRACE] notification-service - Database INSERT on orders - Execution time: 255ms - Rows affected: 90 - RequestID: 3yu3n94cu03 +2025-06-18T13:52:50.681Z [INFO] user-service - PUT /api/v1/orders - Status: 401 - Response time: 793ms - IP: 192.168.44.5 - User: user_1092 - RequestID: hnknw2hyvsr +2025-06-18T13:52:50.781Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 690ms - RequestID: 4n692n5x8jp +2025-06-18T13:52:50.881Z [TRACE] notification-service - Database SELECT on users - Execution time: 196ms - Rows affected: 77 - RequestID: 3xruvmzgpu8 +2025-06-18T13:52:50.981Z [INFO] payment-service - Database UPDATE on payments - Execution time: 288ms - Rows affected: 99 - RequestID: u18z2yrwjab +2025-06-18T13:52:51.081Z [INFO] payment-service - POST /api/v1/users - Status: 403 - Response time: 1305ms - IP: 192.168.187.199 - User: user_1002 - RequestID: m04k27h3ac +2025-06-18T13:52:51.181Z [INFO] notification-service - Operation: cache_hit - Processing time: 561ms - RequestID: aoumo6spin +2025-06-18T13:52:51.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.247.134 - RequestID: n3eht2lwrkd +2025-06-18T13:52:51.381Z [TRACE] order-service - Operation: order_created - Processing time: 506ms - RequestID: ooh89w3upf +2025-06-18T13:52:51.481Z [INFO] user-service - GET /api/v1/payments - Status: 404 - Response time: 1015ms - IP: 192.168.64.33 - User: user_1066 - RequestID: g0o4543zxol +2025-06-18T13:52:51.581Z [TRACE] auth-service - Operation: email_sent - Processing time: 747ms - RequestID: qdl0nu1o91m +2025-06-18T13:52:51.681Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 179ms - Rows affected: 20 - RequestID: o86z4rvto5k +2025-06-18T13:52:51.781Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 627ms - RequestID: t8j6l2lb8j +2025-06-18T13:52:51.881Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 311ms - IP: 192.168.174.114 - User: user_1099 - RequestID: 73g2pqmpk62 +2025-06-18T13:52:51.981Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 502 - Response time: 965ms - IP: 192.168.240.169 - User: user_1013 - RequestID: 8r6rffcewqh +2025-06-18T13:52:52.081Z [TRACE] auth-service - Operation: cache_miss - Processing time: 1046ms - RequestID: fvgui2hqmw5 +2025-06-18T13:52:52.181Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1778ms - IP: 192.168.174.114 - User: user_1011 - RequestID: dx10k0hl44d +2025-06-18T13:52:52.281Z [INFO] notification-service - Database UPDATE on products - Execution time: 65ms - Rows affected: 93 - RequestID: spwihm6r49g +2025-06-18T13:52:52.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1041 - IP: 192.168.147.171 - RequestID: 6bf5r0pi9e3 +2025-06-18T13:52:52.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.232.72 - RequestID: z6quf49dexk +2025-06-18T13:52:52.581Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 103ms - Rows affected: 24 - RequestID: mfkijkw652 +2025-06-18T13:52:52.681Z [DEBUG] user-service - Operation: payment_processed - Processing time: 611ms - RequestID: bhpibkiljsp +2025-06-18T13:52:52.781Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 502 - Response time: 174ms - IP: 192.168.189.103 - User: user_1056 - RequestID: pegll5j1xr +2025-06-18T13:52:52.881Z [DEBUG] user-service - Database DELETE on products - Execution time: 125ms - Rows affected: 41 - RequestID: 1y8sx8gihe +2025-06-18T13:52:52.981Z [INFO] notification-service - GET /api/v1/users - Status: 201 - Response time: 1202ms - IP: 192.168.170.215 - User: user_1069 - RequestID: re0ti6rlz +2025-06-18T13:52:53.081Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 500 - Response time: 1391ms - IP: 192.168.227.233 - User: user_1021 - RequestID: d0m7v37yizi +2025-06-18T13:52:53.181Z [DEBUG] user-service - PATCH /api/v1/users - Status: 200 - Response time: 1362ms - IP: 192.168.81.206 - User: user_1084 - RequestID: 2230g7y7dlm +2025-06-18T13:52:53.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1061 - IP: 192.168.189.103 - RequestID: suh1dw1gam +2025-06-18T13:52:53.381Z [INFO] order-service - Auth event: logout - User: user_1030 - IP: 192.168.174.114 - RequestID: d7jywv0gpxw +2025-06-18T13:52:53.481Z [INFO] inventory-service - Database INSERT on payments - Execution time: 256ms - Rows affected: 4 - RequestID: itjpo791ir +2025-06-18T13:52:53.581Z [INFO] user-service - Auth event: logout - User: user_1039 - IP: 192.168.159.94 - RequestID: rtr0nv6ppwk +2025-06-18T13:52:53.681Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 156ms - Rows affected: 42 - RequestID: 8lg6mjrulln +2025-06-18T13:52:53.781Z [TRACE] auth-service - Database SELECT on payments - Execution time: 85ms - Rows affected: 10 - RequestID: gmlejw4tyck +2025-06-18T13:52:53.881Z [DEBUG] user-service - POST /api/v1/payments - Status: 403 - Response time: 1830ms - IP: 192.168.144.38 - User: user_1013 - RequestID: qa8xtrx33h +2025-06-18T13:52:53.981Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 145ms - RequestID: sbf52orszon +2025-06-18T13:52:54.081Z [INFO] user-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.196.226 - RequestID: e1ef5s9wufd +2025-06-18T13:52:54.181Z [INFO] user-service - Operation: payment_processed - Processing time: 210ms - RequestID: chhjgc08cf5 +2025-06-18T13:52:54.281Z [TRACE] notification-service - Auth event: password_change - User: user_1005 - IP: 192.168.81.206 - RequestID: tlnwhlr7mno +2025-06-18T13:52:54.381Z [TRACE] auth-service - Database UPDATE on users - Execution time: 197ms - Rows affected: 10 - RequestID: lsp0pb27joj +2025-06-18T13:52:54.481Z [TRACE] user-service - PUT /api/v1/payments - Status: 401 - Response time: 26ms - IP: 192.168.68.128 - User: user_1079 - RequestID: w79tfthemyr +2025-06-18T13:52:54.581Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 478ms - Rows affected: 83 - RequestID: ezoh5zxjtw6 +2025-06-18T13:52:54.681Z [INFO] user-service - Operation: notification_queued - Processing time: 738ms - RequestID: zsu2o9seohf +2025-06-18T13:52:54.781Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 400 - Response time: 1148ms - IP: 192.168.170.215 - User: user_1039 - RequestID: se14h509qpi +2025-06-18T13:52:54.881Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.227.77 - RequestID: 53zu1tb666r +2025-06-18T13:52:54.981Z [TRACE] order-service - Database INSERT on orders - Execution time: 234ms - Rows affected: 34 - RequestID: 1ppxa7oix0i +2025-06-18T13:52:55.081Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 404 - Response time: 1158ms - IP: 192.168.44.5 - User: user_1034 - RequestID: h8akoh1ptvf +2025-06-18T13:52:55.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.194.41 - RequestID: spzzsk3jtn +2025-06-18T13:52:55.281Z [TRACE] user-service - PATCH /api/v1/users - Status: 403 - Response time: 757ms - IP: 192.168.31.117 - User: user_1080 - RequestID: qwur1q6kn9s +2025-06-18T13:52:55.381Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 276ms - RequestID: rh5umtx6fg +2025-06-18T13:52:55.481Z [INFO] order-service - Operation: cache_hit - Processing time: 854ms - RequestID: cg5mlps7xnl +2025-06-18T13:52:55.581Z [INFO] order-service - Auth event: password_change - User: user_1050 - IP: 192.168.141.100 - RequestID: r25xux95zoa +2025-06-18T13:52:55.681Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1768ms - IP: 192.168.247.134 - User: user_1024 - RequestID: 3a44wkm1ag2 +2025-06-18T13:52:55.781Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 404 - Response time: 224ms - IP: 192.168.133.7 - User: user_1094 - RequestID: k4fwt7yv6g +2025-06-18T13:52:55.881Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 899ms - RequestID: r33yiyxejjn +2025-06-18T13:52:55.981Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1911ms - IP: 192.168.30.79 - User: user_1058 - RequestID: 06jy4h0oor0g +2025-06-18T13:52:56.081Z [DEBUG] order-service - Operation: notification_queued - Processing time: 121ms - RequestID: ofdkxtcbewk +2025-06-18T13:52:56.181Z [TRACE] auth-service - Database DELETE on orders - Execution time: 280ms - Rows affected: 57 - RequestID: t49p4pxx4i +2025-06-18T13:52:56.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.85.229 - RequestID: s162ta22y +2025-06-18T13:52:56.381Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 11ms - Rows affected: 1 - RequestID: zw0lz3pszqg +2025-06-18T13:52:56.481Z [TRACE] notification-service - GET /api/v1/orders - Status: 400 - Response time: 618ms - IP: 192.168.31.117 - User: user_1036 - RequestID: 0lq2fbv5qqwl +2025-06-18T13:52:56.581Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 237ms - Rows affected: 22 - RequestID: 6tw08gwv7u8 +2025-06-18T13:52:56.681Z [DEBUG] notification-service - Operation: email_sent - Processing time: 830ms - RequestID: yju81oc2q2f +2025-06-18T13:52:56.781Z [INFO] payment-service - Operation: order_created - Processing time: 725ms - RequestID: 8awxcrxwju4 +2025-06-18T13:52:56.881Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 49ms - Rows affected: 71 - RequestID: 32wwfvks13j +2025-06-18T13:52:56.981Z [DEBUG] order-service - Operation: cache_hit - Processing time: 1046ms - RequestID: er88yyt4jfq +2025-06-18T13:52:57.081Z [INFO] order-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1541ms - IP: 192.168.167.32 - User: user_1055 - RequestID: ozj1aisxrwp +2025-06-18T13:52:57.181Z [INFO] order-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.36.218 - RequestID: j3yufa291x +2025-06-18T13:52:57.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.11.60 - RequestID: wg8mr9eecz +2025-06-18T13:52:57.381Z [INFO] user-service - Database SELECT on products - Execution time: 190ms - Rows affected: 41 - RequestID: 6beb20n2uv +2025-06-18T13:52:57.481Z [DEBUG] inventory-service - Auth event: login_success - User: user_1028 - IP: 192.168.68.158 - RequestID: v32iif7uuw +2025-06-18T13:52:57.581Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1444ms - IP: 192.168.170.215 - User: user_1060 - RequestID: mdyvw8kj2x +2025-06-18T13:52:57.681Z [TRACE] payment-service - Database DELETE on products - Execution time: 127ms - Rows affected: 96 - RequestID: p7a87l4og9q +2025-06-18T13:52:57.781Z [INFO] notification-service - GET /api/v1/users - Status: 401 - Response time: 668ms - IP: 192.168.227.77 - User: user_1076 - RequestID: ru58ht8crxp +2025-06-18T13:52:57.881Z [TRACE] user-service - Operation: webhook_sent - Processing time: 733ms - RequestID: m12tjljubf +2025-06-18T13:52:57.981Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 8ms - Rows affected: 14 - RequestID: bvj2la7h2u6 +2025-06-18T13:52:58.081Z [INFO] order-service - Auth event: login_success - User: user_1016 - IP: 192.168.97.87 - RequestID: uyz5t0vroa +2025-06-18T13:52:58.181Z [TRACE] payment-service - Auth event: login_success - User: user_1015 - IP: 192.168.235.117 - RequestID: l9q2isyxkoo +2025-06-18T13:52:58.281Z [TRACE] notification-service - Operation: cache_miss - Processing time: 852ms - RequestID: muyc30w7v9c +2025-06-18T13:52:58.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 646ms - RequestID: 669dmk797jw +2025-06-18T13:52:58.481Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 124ms - Rows affected: 30 - RequestID: p9baqgopnb +2025-06-18T13:52:58.581Z [INFO] user-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1193ms - IP: 192.168.28.146 - User: user_1032 - RequestID: flpoxlhibh +2025-06-18T13:52:58.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.104.37 - RequestID: qpgpua7tyb +2025-06-18T13:52:58.781Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 200 - Response time: 1508ms - IP: 192.168.235.117 - User: user_1047 - RequestID: qchbiknz0o +2025-06-18T13:52:58.881Z [TRACE] inventory-service - Database INSERT on users - Execution time: 50ms - Rows affected: 88 - RequestID: w43psl67weh +2025-06-18T13:52:58.981Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 502 - Response time: 1347ms - IP: 192.168.100.240 - User: user_1040 - RequestID: ouqq2jwzsxa +2025-06-18T13:52:59.081Z [INFO] order-service - Operation: webhook_sent - Processing time: 89ms - RequestID: j9jvu5p16v +2025-06-18T13:52:59.181Z [TRACE] notification-service - Operation: notification_queued - Processing time: 837ms - RequestID: wg5qaen5cq +2025-06-18T13:52:59.281Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 312ms - IP: 192.168.36.218 - User: user_1009 - RequestID: gfgdb1vm0bn +2025-06-18T13:52:59.381Z [INFO] user-service - Database SELECT on sessions - Execution time: 499ms - Rows affected: 36 - RequestID: 3w0g2bdutlh +2025-06-18T13:52:59.481Z [TRACE] order-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.97.87 - RequestID: a3zu417m3rr +2025-06-18T13:52:59.581Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 955ms - RequestID: ifuql6dz7x9 +2025-06-18T13:52:59.681Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 490ms - Rows affected: 46 - RequestID: bb4bo7q22dg +2025-06-18T13:52:59.781Z [TRACE] order-service - Database UPDATE on orders - Execution time: 421ms - Rows affected: 53 - RequestID: gu1kpa15y77 +2025-06-18T13:52:59.881Z [TRACE] user-service - PATCH /api/v1/users - Status: 200 - Response time: 788ms - IP: 192.168.36.218 - User: user_1019 - RequestID: jokiu3c1zf +2025-06-18T13:52:59.981Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 253ms - Rows affected: 24 - RequestID: 7ltcvbf5lpy +2025-06-18T13:53:00.081Z [TRACE] notification-service - DELETE /api/v1/users - Status: 201 - Response time: 473ms - IP: 192.168.79.141 - User: user_1085 - RequestID: l2hlh3r729r +2025-06-18T13:53:00.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 448ms - RequestID: 5tcia2597vr +2025-06-18T13:53:00.281Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 463ms - Rows affected: 30 - RequestID: c1hfjbtai3s +2025-06-18T13:53:00.381Z [TRACE] order-service - Operation: email_sent - Processing time: 950ms - RequestID: om0kv5453if +2025-06-18T13:53:00.481Z [TRACE] user-service - DELETE /api/v1/users - Status: 200 - Response time: 946ms - IP: 192.168.10.184 - User: user_1010 - RequestID: v18m5u0ce6a +2025-06-18T13:53:00.581Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1091 - IP: 192.168.144.38 - RequestID: nx2cdvfhwy +2025-06-18T13:53:00.681Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 500ms - Rows affected: 67 - RequestID: o96ss38wkg +2025-06-18T13:53:00.781Z [INFO] auth-service - DELETE /api/v1/orders - Status: 403 - Response time: 1671ms - IP: 192.168.32.38 - User: user_1074 - RequestID: 7j5lk92zbuv +2025-06-18T13:53:00.881Z [INFO] inventory-service - Database SELECT on orders - Execution time: 161ms - Rows affected: 19 - RequestID: qxkjv6dl3g +2025-06-18T13:53:00.981Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 128ms - Rows affected: 21 - RequestID: hs52i8lbgmq +2025-06-18T13:53:01.081Z [TRACE] payment-service - Database INSERT on orders - Execution time: 62ms - Rows affected: 99 - RequestID: q82i7mta8p +2025-06-18T13:53:01.181Z [INFO] order-service - PUT /api/v1/auth/login - Status: 401 - Response time: 638ms - IP: 192.168.235.117 - User: user_1004 - RequestID: oxb89gxnmwa +2025-06-18T13:53:01.281Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1140ms - IP: 192.168.53.133 - User: user_1022 - RequestID: jfkhv6f0p2 +2025-06-18T13:53:01.381Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 264ms - Rows affected: 25 - RequestID: u1ilq0l1jv +2025-06-18T13:53:01.481Z [TRACE] inventory-service - Auth event: password_change - User: user_1057 - IP: 192.168.133.7 - RequestID: 4m79lyy2of6 +2025-06-18T13:53:01.581Z [INFO] user-service - Operation: cache_hit - Processing time: 424ms - RequestID: x0hf85pi459 +2025-06-18T13:53:01.681Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 403 - Response time: 295ms - IP: 192.168.147.171 - User: user_1067 - RequestID: eilivyxoni6 +2025-06-18T13:53:01.781Z [TRACE] auth-service - Operation: order_created - Processing time: 453ms - RequestID: 4escmwoizq1 +2025-06-18T13:53:01.881Z [TRACE] user-service - Auth event: login_failed - User: user_1037 - IP: 192.168.81.206 - RequestID: hll3uhh8nob +2025-06-18T13:53:01.981Z [INFO] auth-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.242.165 - RequestID: thsg7erlirl +2025-06-18T13:53:02.081Z [INFO] payment-service - Auth event: login_success - User: user_1085 - IP: 192.168.194.41 - RequestID: 5ciz9kriws9 +2025-06-18T13:53:02.181Z [DEBUG] payment-service - Operation: order_created - Processing time: 87ms - RequestID: ursgbowpn9 +2025-06-18T13:53:02.281Z [INFO] auth-service - Operation: payment_processed - Processing time: 267ms - RequestID: un9a1ttuoq +2025-06-18T13:53:02.381Z [TRACE] notification-service - Auth event: logout - User: user_1088 - IP: 192.168.68.158 - RequestID: 78ivurs71u3 +2025-06-18T13:53:02.481Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 94ms - Rows affected: 23 - RequestID: gb3jwq1kqbp +2025-06-18T13:53:02.581Z [INFO] inventory-service - Auth event: login_success - User: user_1078 - IP: 192.168.32.38 - RequestID: c6qy18v3yoi +2025-06-18T13:53:02.681Z [TRACE] user-service - GET /api/v1/users - Status: 500 - Response time: 1556ms - IP: 192.168.46.63 - User: user_1040 - RequestID: z9x6aynvzcf +2025-06-18T13:53:02.781Z [TRACE] order-service - Operation: order_created - Processing time: 162ms - RequestID: xhmy3vxsr2s +2025-06-18T13:53:02.881Z [INFO] user-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1640ms - IP: 192.168.159.94 - User: user_1098 - RequestID: tsj12qrsycd +2025-06-18T13:53:02.981Z [INFO] payment-service - Database UPDATE on users - Execution time: 480ms - Rows affected: 33 - RequestID: 4fkdg5q3nq9 +2025-06-18T13:53:03.081Z [TRACE] payment-service - Auth event: login_failed - User: user_1028 - IP: 192.168.159.94 - RequestID: o3hnj7n3a6 +2025-06-18T13:53:03.181Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 944ms - RequestID: rdzch1ta2g +2025-06-18T13:53:03.281Z [DEBUG] user-service - POST /api/v1/inventory - Status: 404 - Response time: 1294ms - IP: 192.168.138.123 - User: user_1048 - RequestID: 8xheeg59lkt +2025-06-18T13:53:03.381Z [TRACE] user-service - Operation: inventory_updated - Processing time: 984ms - RequestID: eoa6ihyy5mb +2025-06-18T13:53:03.481Z [INFO] payment-service - Operation: payment_processed - Processing time: 555ms - RequestID: io7bdhs30ph +2025-06-18T13:53:03.581Z [DEBUG] payment-service - POST /api/v1/users - Status: 200 - Response time: 641ms - IP: 192.168.33.76 - User: user_1054 - RequestID: wpozw580f6h +2025-06-18T13:53:03.681Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 500 - Response time: 706ms - IP: 192.168.147.171 - User: user_1064 - RequestID: tkzszr2ei1p +2025-06-18T13:53:03.781Z [TRACE] order-service - Auth event: password_change - User: user_1058 - IP: 192.168.30.79 - RequestID: 8d1amvsd8f +2025-06-18T13:53:03.881Z [INFO] order-service - POST /api/v1/inventory - Status: 200 - Response time: 1257ms - IP: 192.168.31.117 - User: user_1032 - RequestID: afsmor3lapa +2025-06-18T13:53:03.981Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 927ms - RequestID: sf7ikjuding +2025-06-18T13:53:04.081Z [INFO] order-service - Operation: notification_queued - Processing time: 739ms - RequestID: ljic17w7g7a +2025-06-18T13:53:04.181Z [DEBUG] auth-service - Operation: email_sent - Processing time: 814ms - RequestID: qk2jccof03o +2025-06-18T13:53:04.281Z [DEBUG] user-service - Database DELETE on orders - Execution time: 85ms - Rows affected: 86 - RequestID: juczms9qza +2025-06-18T13:53:04.381Z [INFO] order-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.133.7 - RequestID: gsudpfjmx99 +2025-06-18T13:53:04.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1027 - IP: 192.168.79.143 - RequestID: 2msf86afxmy +2025-06-18T13:53:04.581Z [INFO] payment-service - Database SELECT on orders - Execution time: 202ms - Rows affected: 8 - RequestID: 6cr21l12yu5 +2025-06-18T13:53:04.681Z [INFO] notification-service - Operation: order_created - Processing time: 405ms - RequestID: w0yqrwnhh9 +2025-06-18T13:53:04.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1082 - IP: 192.168.211.72 - RequestID: hwqqqu8fnbe +2025-06-18T13:53:04.881Z [DEBUG] user-service - Database INSERT on products - Execution time: 13ms - Rows affected: 36 - RequestID: akjvocmvtst +2025-06-18T13:53:04.981Z [TRACE] payment-service - Operation: notification_queued - Processing time: 828ms - RequestID: u3sinsfsh7p +2025-06-18T13:53:05.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.181.225 - RequestID: 7al73hplh74 +2025-06-18T13:53:05.181Z [TRACE] payment-service - GET /api/v1/orders - Status: 201 - Response time: 1310ms - IP: 192.168.113.218 - User: user_1035 - RequestID: mkifpikyj7j +2025-06-18T13:53:05.281Z [INFO] user-service - Auth event: logout - User: user_1082 - IP: 192.168.133.7 - RequestID: uuu8x0fgwh +2025-06-18T13:53:05.381Z [INFO] user-service - GET /api/v1/payments - Status: 201 - Response time: 1711ms - IP: 192.168.211.72 - User: user_1014 - RequestID: nz86poje3w +2025-06-18T13:53:05.481Z [INFO] auth-service - Database SELECT on users - Execution time: 177ms - Rows affected: 24 - RequestID: w9tdlavf2je +2025-06-18T13:53:05.581Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.10.184 - RequestID: ab9hzt4f34r +2025-06-18T13:53:05.681Z [INFO] inventory-service - Operation: cache_miss - Processing time: 226ms - RequestID: owtecuu53z +2025-06-18T13:53:05.781Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 503 - Response time: 1272ms - IP: 192.168.28.146 - User: user_1028 - RequestID: mdc1mq61qd +2025-06-18T13:53:05.881Z [INFO] payment-service - PUT /api/v1/orders - Status: 400 - Response time: 962ms - IP: 192.168.1.152 - User: user_1097 - RequestID: dijeng95oac +2025-06-18T13:53:05.981Z [TRACE] notification-service - Operation: cache_miss - Processing time: 531ms - RequestID: xy5dfou2b6p +2025-06-18T13:53:06.081Z [TRACE] auth-service - POST /api/v1/orders - Status: 404 - Response time: 83ms - IP: 192.168.242.165 - User: user_1020 - RequestID: wqm7grijq3s +2025-06-18T13:53:06.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 254ms - RequestID: 0xyw5umr5l9p +2025-06-18T13:53:06.281Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.189.103 - RequestID: 5zsu2m7rb8k +2025-06-18T13:53:06.381Z [DEBUG] notification-service - POST /api/v1/users - Status: 503 - Response time: 1700ms - IP: 192.168.14.77 - User: user_1050 - RequestID: mgw9eukmy9j +2025-06-18T13:53:06.481Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 401ms - Rows affected: 0 - RequestID: d48n2682fua +2025-06-18T13:53:06.581Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 373ms - Rows affected: 96 - RequestID: 2e2epipy1mm +2025-06-18T13:53:06.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 414ms - RequestID: 8rop9u5wwjy +2025-06-18T13:53:06.781Z [INFO] user-service - Operation: order_created - Processing time: 382ms - RequestID: tekjgwnneq +2025-06-18T13:53:06.881Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 376ms - RequestID: krt6vfpo7a7 +2025-06-18T13:53:06.981Z [TRACE] user-service - Database INSERT on orders - Execution time: 43ms - Rows affected: 25 - RequestID: fs8m4d6vk0l +2025-06-18T13:53:07.081Z [INFO] auth-service - Auth event: password_change - User: user_1091 - IP: 192.168.36.218 - RequestID: skwprrbfbsp +2025-06-18T13:53:07.181Z [TRACE] auth-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.100.240 - RequestID: tfr1pftq8zf +2025-06-18T13:53:07.281Z [DEBUG] auth-service - Auth event: login_success - User: user_1020 - IP: 192.168.144.38 - RequestID: zanyf9masqg +2025-06-18T13:53:07.381Z [DEBUG] notification-service - Auth event: logout - User: user_1003 - IP: 192.168.138.123 - RequestID: 41s1lw9h2x7 +2025-06-18T13:53:07.481Z [TRACE] auth-service - Auth event: password_change - User: user_1086 - IP: 192.168.10.184 - RequestID: yfs6nliqfhj +2025-06-18T13:53:07.581Z [INFO] payment-service - PATCH /api/v1/payments - Status: 502 - Response time: 425ms - IP: 192.168.141.100 - User: user_1055 - RequestID: t4tlfj4k02i +2025-06-18T13:53:07.681Z [INFO] inventory-service - PUT /api/v1/payments - Status: 502 - Response time: 1509ms - IP: 192.168.1.152 - User: user_1032 - RequestID: wyhixznjre +2025-06-18T13:53:07.781Z [INFO] payment-service - Database INSERT on payments - Execution time: 371ms - Rows affected: 23 - RequestID: hilwm4px5hu +2025-06-18T13:53:07.881Z [DEBUG] user-service - Database INSERT on products - Execution time: 299ms - Rows affected: 80 - RequestID: 3hu7knjfgnm +2025-06-18T13:53:07.981Z [DEBUG] auth-service - Auth event: logout - User: user_1030 - IP: 192.168.187.199 - RequestID: b8gkr99tvg +2025-06-18T13:53:08.081Z [DEBUG] user-service - Auth event: login_failed - User: user_1007 - IP: 192.168.232.72 - RequestID: pnhka50jwr +2025-06-18T13:53:08.181Z [TRACE] user-service - Operation: webhook_sent - Processing time: 632ms - RequestID: rs045ddhx7 +2025-06-18T13:53:08.281Z [INFO] user-service - Database INSERT on payments - Execution time: 351ms - Rows affected: 91 - RequestID: wgmxlruzlce +2025-06-18T13:53:08.381Z [TRACE] notification-service - Operation: order_created - Processing time: 51ms - RequestID: r7w8c614n1m +2025-06-18T13:53:08.481Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 984ms - IP: 192.168.79.143 - User: user_1037 - RequestID: f62l0v21hg9 +2025-06-18T13:53:08.581Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 477ms - Rows affected: 80 - RequestID: 7cayj1x87hs +2025-06-18T13:53:08.681Z [TRACE] auth-service - Operation: payment_processed - Processing time: 176ms - RequestID: ngkhztso2f +2025-06-18T13:53:08.781Z [DEBUG] auth-service - GET /api/v1/payments - Status: 502 - Response time: 656ms - IP: 192.168.167.32 - User: user_1084 - RequestID: i4ykucfgmlj +2025-06-18T13:53:08.881Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.30.79 - RequestID: i4nytmlqx4q +2025-06-18T13:53:08.981Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 155ms - Rows affected: 17 - RequestID: x3ulqmhnq6 +2025-06-18T13:53:09.081Z [DEBUG] payment-service - Auth event: logout - User: user_1027 - IP: 192.168.79.143 - RequestID: 8awvqkeuwa7 +2025-06-18T13:53:09.181Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 806ms - RequestID: 0trrkajmuaci +2025-06-18T13:53:09.281Z [INFO] order-service - GET /api/v1/payments - Status: 403 - Response time: 1886ms - IP: 192.168.53.133 - User: user_1032 - RequestID: xuuw4s4lcj8 +2025-06-18T13:53:09.381Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 832ms - RequestID: ofdrfz8abms +2025-06-18T13:53:09.481Z [TRACE] user-service - GET /api/v1/users - Status: 201 - Response time: 1449ms - IP: 192.168.174.114 - User: user_1087 - RequestID: hy4izk85vq +2025-06-18T13:53:09.581Z [DEBUG] user-service - Auth event: password_change - User: user_1068 - IP: 192.168.194.41 - RequestID: zfojn27yodp +2025-06-18T13:53:09.681Z [DEBUG] payment-service - POST /api/v1/payments - Status: 403 - Response time: 1975ms - IP: 192.168.133.7 - User: user_1088 - RequestID: yx8qqw9acz +2025-06-18T13:53:09.781Z [INFO] order-service - PUT /api/v1/auth/login - Status: 400 - Response time: 231ms - IP: 192.168.53.133 - User: user_1042 - RequestID: z1qys186kh +2025-06-18T13:53:09.881Z [DEBUG] payment-service - Operation: email_sent - Processing time: 320ms - RequestID: 8egqy1dse6q +2025-06-18T13:53:09.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 987ms - RequestID: p4gdf5wqvd +2025-06-18T13:53:10.081Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 400 - Response time: 1025ms - IP: 192.168.10.184 - User: user_1090 - RequestID: v60wqrbvh +2025-06-18T13:53:10.181Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 495ms - IP: 192.168.181.225 - User: user_1080 - RequestID: a6q3d8d91q6 +2025-06-18T13:53:10.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 672ms - RequestID: wubrv8mx72 +2025-06-18T13:53:10.381Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 471ms - RequestID: 1yy6qq71gz4h +2025-06-18T13:53:10.481Z [INFO] auth-service - Database INSERT on orders - Execution time: 220ms - Rows affected: 95 - RequestID: 9xz1h4fy2d +2025-06-18T13:53:10.581Z [DEBUG] user-service - Database DELETE on orders - Execution time: 219ms - Rows affected: 69 - RequestID: jroubsduq4 +2025-06-18T13:53:10.681Z [INFO] inventory-service - Database SELECT on payments - Execution time: 332ms - Rows affected: 20 - RequestID: sr04cavs5ls +2025-06-18T13:53:10.781Z [INFO] inventory-service - Operation: payment_processed - Processing time: 1011ms - RequestID: vylzwiu7ad +2025-06-18T13:53:10.881Z [TRACE] order-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.141.100 - RequestID: 18p373z7r3c +2025-06-18T13:53:10.981Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 403 - Response time: 773ms - IP: 192.168.229.123 - User: user_1012 - RequestID: a4pe3ro5rhm +2025-06-18T13:53:11.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 753ms - RequestID: jui7cftx8e +2025-06-18T13:53:11.181Z [INFO] auth-service - DELETE /api/v1/payments - Status: 503 - Response time: 1079ms - IP: 192.168.133.7 - User: user_1007 - RequestID: lb9s2bsaymo +2025-06-18T13:53:11.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.13.72 - RequestID: otfobdb14h9 +2025-06-18T13:53:11.381Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 47ms - IP: 192.168.64.33 - User: user_1036 - RequestID: kebxkdvuase +2025-06-18T13:53:11.481Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 401 - Response time: 1577ms - IP: 192.168.138.123 - User: user_1063 - RequestID: uawb59nej7h +2025-06-18T13:53:11.581Z [TRACE] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 940ms - IP: 192.168.68.128 - User: user_1002 - RequestID: pjey1i3tjv +2025-06-18T13:53:11.681Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 930ms - RequestID: 9c57tmen7uk +2025-06-18T13:53:11.781Z [DEBUG] order-service - Database INSERT on orders - Execution time: 54ms - Rows affected: 37 - RequestID: mld5eh9kk1 +2025-06-18T13:53:11.881Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 708ms - IP: 192.168.104.37 - User: user_1081 - RequestID: btqn9q1pnmb +2025-06-18T13:53:11.981Z [INFO] notification-service - Database SELECT on orders - Execution time: 490ms - Rows affected: 29 - RequestID: ttlf4rg7fy +2025-06-18T13:53:12.081Z [INFO] user-service - Auth event: login_success - User: user_1023 - IP: 192.168.181.225 - RequestID: 5iuyiwb25b +2025-06-18T13:53:12.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.79.116 - RequestID: tfenr3e6a7 +2025-06-18T13:53:12.281Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 2001ms - IP: 192.168.167.32 - User: user_1021 - RequestID: xhzb3pc7x6q +2025-06-18T13:53:12.381Z [INFO] payment-service - Database DELETE on users - Execution time: 348ms - Rows affected: 54 - RequestID: k84god1uvc +2025-06-18T13:53:12.481Z [DEBUG] order-service - GET /api/v1/users - Status: 401 - Response time: 916ms - IP: 192.168.33.76 - User: user_1039 - RequestID: bzjebs7fgzq +2025-06-18T13:53:12.581Z [INFO] user-service - Operation: payment_processed - Processing time: 645ms - RequestID: bruytglmr1t +2025-06-18T13:53:12.681Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 213ms - Rows affected: 27 - RequestID: 918pfegc3qm +2025-06-18T13:53:12.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 603ms - RequestID: 9h1fczri6jv +2025-06-18T13:53:12.881Z [INFO] notification-service - Operation: email_sent - Processing time: 69ms - RequestID: h9rpftlp38s +2025-06-18T13:53:12.981Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 54ms - Rows affected: 47 - RequestID: zb2wq9czjw +2025-06-18T13:53:13.081Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 398ms - Rows affected: 50 - RequestID: oppepitfdcc +2025-06-18T13:53:13.181Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 228ms - RequestID: wcza6hupq3 +2025-06-18T13:53:13.281Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 595ms - RequestID: cf271syr55t +2025-06-18T13:53:13.381Z [INFO] inventory-service - Auth event: login_failed - User: user_1074 - IP: 192.168.44.5 - RequestID: djd04gbbsv +2025-06-18T13:53:13.481Z [TRACE] user-service - Auth event: login_failed - User: user_1027 - IP: 192.168.79.141 - RequestID: 5bskw0phsu +2025-06-18T13:53:13.581Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 304ms - Rows affected: 9 - RequestID: m25gwf6ejap +2025-06-18T13:53:13.681Z [INFO] payment-service - Operation: notification_queued - Processing time: 269ms - RequestID: 5b5ji0it1fa +2025-06-18T13:53:13.781Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1261ms - IP: 192.168.147.171 - User: user_1048 - RequestID: 1hnx9s750zd +2025-06-18T13:53:13.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1069 - IP: 192.168.167.32 - RequestID: u52i4czpmqs +2025-06-18T13:53:13.981Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 404 - Response time: 1638ms - IP: 192.168.33.76 - User: user_1091 - RequestID: 75cvtarcinj +2025-06-18T13:53:14.081Z [TRACE] notification-service - Auth event: login_failed - User: user_1003 - IP: 192.168.174.114 - RequestID: 5i9ipfbgsgj +2025-06-18T13:53:14.181Z [TRACE] payment-service - POST /api/v1/users - Status: 201 - Response time: 13ms - IP: 192.168.247.134 - User: user_1029 - RequestID: iyvckx4h1c +2025-06-18T13:53:14.281Z [DEBUG] notification-service - Operation: order_created - Processing time: 320ms - RequestID: tvqaridlcy +2025-06-18T13:53:14.381Z [TRACE] order-service - Operation: cache_hit - Processing time: 544ms - RequestID: 270krhc7wey +2025-06-18T13:53:14.481Z [TRACE] payment-service - Operation: order_created - Processing time: 1026ms - RequestID: 6gd2e41j3fc +2025-06-18T13:53:14.581Z [TRACE] user-service - Operation: notification_queued - Processing time: 56ms - RequestID: 4glg1r99r7u +2025-06-18T13:53:14.681Z [DEBUG] inventory-service - Auth event: password_change - User: user_1029 - IP: 192.168.159.94 - RequestID: engvqzewk6p +2025-06-18T13:53:14.781Z [TRACE] inventory-service - Auth event: logout - User: user_1077 - IP: 192.168.211.72 - RequestID: luin811idui +2025-06-18T13:53:14.881Z [TRACE] payment-service - Database DELETE on orders - Execution time: 313ms - Rows affected: 24 - RequestID: m4eyjt51b +2025-06-18T13:53:14.981Z [DEBUG] order-service - Auth event: login_success - User: user_1052 - IP: 192.168.11.60 - RequestID: n9ryj924wwq +2025-06-18T13:53:15.081Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 734ms - RequestID: e0b1k2qecpp +2025-06-18T13:53:15.181Z [TRACE] notification-service - GET /api/v1/payments - Status: 502 - Response time: 870ms - IP: 192.168.64.33 - User: user_1005 - RequestID: hadazct2lx9 +2025-06-18T13:53:15.281Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 310ms - IP: 192.168.68.158 - User: user_1023 - RequestID: b94v1ta1x1g +2025-06-18T13:53:15.381Z [TRACE] auth-service - Database UPDATE on products - Execution time: 35ms - Rows affected: 76 - RequestID: mp900t23zjb +2025-06-18T13:53:15.481Z [INFO] notification-service - Auth event: password_change - User: user_1076 - IP: 192.168.31.117 - RequestID: hu63f30shnn +2025-06-18T13:53:15.581Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 503 - Response time: 199ms - IP: 192.168.33.76 - User: user_1030 - RequestID: wkvxkegw91j +2025-06-18T13:53:15.681Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 494ms - RequestID: wcosyehrwgr +2025-06-18T13:53:15.781Z [INFO] order-service - GET /api/v1/payments - Status: 200 - Response time: 1782ms - IP: 192.168.235.117 - User: user_1017 - RequestID: 3lzmik77o4v +2025-06-18T13:53:15.881Z [TRACE] user-service - PUT /api/v1/inventory - Status: 400 - Response time: 897ms - IP: 192.168.170.215 - User: user_1057 - RequestID: 3bbcsmvrf1d +2025-06-18T13:53:15.981Z [INFO] order-service - Operation: cache_miss - Processing time: 943ms - RequestID: z1ca6y65zss +2025-06-18T13:53:16.081Z [TRACE] order-service - Auth event: login_success - User: user_1067 - IP: 192.168.10.184 - RequestID: l2k2zat363j +2025-06-18T13:53:16.181Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 56ms - Rows affected: 54 - RequestID: ikshafwdd1 +2025-06-18T13:53:16.281Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 387ms - Rows affected: 49 - RequestID: yirhsba3xo +2025-06-18T13:53:16.381Z [INFO] notification-service - DELETE /api/v1/orders - Status: 201 - Response time: 1195ms - IP: 192.168.187.199 - User: user_1083 - RequestID: mqaodymw2rc +2025-06-18T13:53:16.481Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 400 - Response time: 424ms - IP: 192.168.100.240 - User: user_1063 - RequestID: snvuvzyyz9k +2025-06-18T13:53:16.581Z [INFO] auth-service - Operation: cache_hit - Processing time: 152ms - RequestID: 3tkoj7xv17v +2025-06-18T13:53:16.681Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 153ms - IP: 192.168.64.33 - User: user_1061 - RequestID: uwyxr8opr6n +2025-06-18T13:53:16.781Z [DEBUG] order-service - Operation: email_sent - Processing time: 747ms - RequestID: bfxotp94p8q +2025-06-18T13:53:16.881Z [TRACE] payment-service - Database INSERT on users - Execution time: 220ms - Rows affected: 62 - RequestID: aik2q4xn8rw +2025-06-18T13:53:16.981Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 361ms - RequestID: wcep7tn14af +2025-06-18T13:53:17.081Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 492ms - Rows affected: 31 - RequestID: bb89xrgnlem +2025-06-18T13:53:17.181Z [INFO] order-service - Auth event: password_change - User: user_1038 - IP: 192.168.229.123 - RequestID: l6uqxbkdkkc +2025-06-18T13:53:17.281Z [INFO] user-service - POST /api/v1/orders - Status: 500 - Response time: 910ms - IP: 192.168.100.240 - User: user_1015 - RequestID: bc50u6coita +2025-06-18T13:53:17.381Z [INFO] auth-service - Operation: inventory_updated - Processing time: 920ms - RequestID: rayw8cwm4v +2025-06-18T13:53:17.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 73ms - RequestID: t3781l1t6v +2025-06-18T13:53:17.581Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 100ms - Rows affected: 19 - RequestID: z8qnazi13j +2025-06-18T13:53:17.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.167.32 - RequestID: k3g83b6u34m +2025-06-18T13:53:17.781Z [TRACE] notification-service - Auth event: login_failed - User: user_1026 - IP: 192.168.158.144 - RequestID: mxkox83eb8o +2025-06-18T13:53:17.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1076 - IP: 192.168.232.72 - RequestID: av7w2wsg6a7 +2025-06-18T13:53:17.981Z [INFO] auth-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.232.72 - RequestID: w6pdav213sf +2025-06-18T13:53:18.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1078 - IP: 192.168.1.152 - RequestID: u1kt9tie21a +2025-06-18T13:53:18.181Z [TRACE] auth-service - Database UPDATE on users - Execution time: 79ms - Rows affected: 6 - RequestID: ce375ww0rz5 +2025-06-18T13:53:18.281Z [INFO] user-service - Database UPDATE on sessions - Execution time: 331ms - Rows affected: 87 - RequestID: k2c3k9fjfak +2025-06-18T13:53:18.381Z [DEBUG] order-service - Operation: notification_queued - Processing time: 198ms - RequestID: 4ymzio5km25 +2025-06-18T13:53:18.481Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 790ms - IP: 192.168.196.226 - User: user_1005 - RequestID: xct2cc0prb +2025-06-18T13:53:18.581Z [INFO] auth-service - PATCH /api/v1/users - Status: 502 - Response time: 355ms - IP: 192.168.53.133 - User: user_1072 - RequestID: 0asq8kb007ch +2025-06-18T13:53:18.681Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1368ms - IP: 192.168.28.146 - User: user_1032 - RequestID: 73on9pws393 +2025-06-18T13:53:18.781Z [INFO] payment-service - Auth event: password_change - User: user_1040 - IP: 192.168.141.100 - RequestID: keixo30gy5 +2025-06-18T13:53:18.881Z [DEBUG] user-service - Operation: cache_miss - Processing time: 730ms - RequestID: 40yko0qubf3 +2025-06-18T13:53:18.981Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 503 - Response time: 1698ms - IP: 192.168.10.184 - User: user_1067 - RequestID: j5zm86fp55e +2025-06-18T13:53:19.081Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 268ms - RequestID: yfc09oguh3 +2025-06-18T13:53:19.181Z [INFO] notification-service - Auth event: password_change - User: user_1021 - IP: 192.168.14.77 - RequestID: qfsh3zzhnod +2025-06-18T13:53:19.281Z [DEBUG] order-service - Auth event: login_success - User: user_1095 - IP: 192.168.227.233 - RequestID: d5a2iuno6s6 +2025-06-18T13:53:19.381Z [TRACE] auth-service - GET /api/v1/inventory - Status: 503 - Response time: 727ms - IP: 192.168.64.33 - User: user_1025 - RequestID: fnf02ymvnc +2025-06-18T13:53:19.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.53.133 - RequestID: ws0fsb7tyw +2025-06-18T13:53:19.581Z [TRACE] notification-service - Operation: email_sent - Processing time: 790ms - RequestID: dtshwlsggz +2025-06-18T13:53:19.681Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 435ms - Rows affected: 75 - RequestID: hz0akhn905 +2025-06-18T13:53:19.781Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 240ms - Rows affected: 72 - RequestID: c1tuzzpa6rn +2025-06-18T13:53:19.881Z [TRACE] order-service - Operation: email_sent - Processing time: 559ms - RequestID: 96zka71k8oh +2025-06-18T13:53:19.981Z [DEBUG] payment-service - Database DELETE on users - Execution time: 299ms - Rows affected: 14 - RequestID: 2x3d1kd28fi +2025-06-18T13:53:20.081Z [TRACE] auth-service - Auth event: login_failed - User: user_1060 - IP: 192.168.64.33 - RequestID: xg4f6bg9hw +2025-06-18T13:53:20.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.138.123 - RequestID: z7jiar2b28c +2025-06-18T13:53:20.281Z [INFO] user-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.44.5 - RequestID: r1hqp4xh24 +2025-06-18T13:53:20.381Z [TRACE] auth-service - Auth event: login_success - User: user_1052 - IP: 192.168.235.117 - RequestID: 3t86zhxjine +2025-06-18T13:53:20.481Z [INFO] notification-service - Database INSERT on payments - Execution time: 10ms - Rows affected: 54 - RequestID: q1vvzh6mve9 +2025-06-18T13:53:20.581Z [INFO] inventory-service - Auth event: login_success - User: user_1059 - IP: 192.168.11.60 - RequestID: bsokwd70bta +2025-06-18T13:53:20.681Z [DEBUG] order-service - Operation: payment_processed - Processing time: 665ms - RequestID: sonsmdo391c +2025-06-18T13:53:20.781Z [TRACE] user-service - Operation: payment_processed - Processing time: 63ms - RequestID: u2ujfsrm0z +2025-06-18T13:53:20.881Z [INFO] order-service - PATCH /api/v1/payments - Status: 400 - Response time: 1258ms - IP: 192.168.194.41 - User: user_1082 - RequestID: n76o11qag1l +2025-06-18T13:53:20.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 382ms - RequestID: 1httyp7f3r7 +2025-06-18T13:53:21.081Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1102ms - IP: 192.168.79.116 - User: user_1089 - RequestID: ewpvqc4rnqr +2025-06-18T13:53:21.181Z [INFO] order-service - Auth event: login_success - User: user_1028 - IP: 192.168.44.5 - RequestID: wp60cqiqxgg +2025-06-18T13:53:21.281Z [DEBUG] user-service - Operation: order_created - Processing time: 778ms - RequestID: fxevamj6shk +2025-06-18T13:53:21.381Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1052ms - IP: 192.168.232.72 - User: user_1028 - RequestID: 4kxuhxrl9yy +2025-06-18T13:53:21.481Z [DEBUG] auth-service - Auth event: password_change - User: user_1029 - IP: 192.168.194.41 - RequestID: 59eazm9fnxr +2025-06-18T13:53:21.581Z [TRACE] auth-service - Operation: email_sent - Processing time: 647ms - RequestID: 9ywqmd51zfw +2025-06-18T13:53:21.681Z [INFO] inventory-service - POST /api/v1/users - Status: 403 - Response time: 1895ms - IP: 192.168.30.79 - User: user_1091 - RequestID: j3zmy8bvvn +2025-06-18T13:53:21.781Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 7ms - Rows affected: 46 - RequestID: h6dzpqf2e9j +2025-06-18T13:53:21.881Z [INFO] notification-service - Auth event: login_failed - User: user_1057 - IP: 192.168.104.37 - RequestID: 4ev45t444mn +2025-06-18T13:53:21.981Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 802ms - RequestID: ec0s215533b +2025-06-18T13:53:22.081Z [INFO] inventory-service - POST /api/v1/users - Status: 401 - Response time: 740ms - IP: 192.168.1.152 - User: user_1077 - RequestID: 5zrjrg0xr9t +2025-06-18T13:53:22.181Z [TRACE] payment-service - POST /api/v1/orders - Status: 502 - Response time: 1383ms - IP: 192.168.14.77 - User: user_1076 - RequestID: 570mwz7ne1g +2025-06-18T13:53:22.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 488ms - RequestID: lz9ujwfm77g +2025-06-18T13:53:22.381Z [TRACE] payment-service - Database DELETE on products - Execution time: 134ms - Rows affected: 7 - RequestID: lzvgx3azove +2025-06-18T13:53:22.481Z [INFO] order-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.14.77 - RequestID: mdsu2y4x0ga +2025-06-18T13:53:22.581Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 560ms - RequestID: mym2gs30npk +2025-06-18T13:53:22.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.159.94 - RequestID: fbb6tpteaic +2025-06-18T13:53:22.781Z [INFO] user-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.11.60 - RequestID: jyy18up3tiq +2025-06-18T13:53:22.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1034 - IP: 192.168.232.72 - RequestID: nwitl1802i +2025-06-18T13:53:22.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1000 - IP: 192.168.31.117 - RequestID: 9fqs9qbdxvh +2025-06-18T13:53:23.081Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1175ms - IP: 192.168.44.5 - User: user_1010 - RequestID: ymc25nt8gcd +2025-06-18T13:53:23.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1029 - IP: 192.168.113.218 - RequestID: 6zficwq2u5 +2025-06-18T13:53:23.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.33.76 - RequestID: bhiin6arf4w +2025-06-18T13:53:23.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.28.146 - RequestID: 0or14hnpnbu +2025-06-18T13:53:23.481Z [INFO] auth-service - Database SELECT on sessions - Execution time: 425ms - Rows affected: 88 - RequestID: 55isf1vzgyw +2025-06-18T13:53:23.581Z [DEBUG] inventory-service - Auth event: password_change - User: user_1090 - IP: 192.168.28.146 - RequestID: b05shteabcc +2025-06-18T13:53:23.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1061 - IP: 192.168.11.60 - RequestID: d7gsh5qls5b +2025-06-18T13:53:23.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 981ms - RequestID: ile0nrmtoe +2025-06-18T13:53:23.881Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 64ms - Rows affected: 86 - RequestID: o0go0hh0nj +2025-06-18T13:53:23.981Z [INFO] user-service - Database INSERT on payments - Execution time: 272ms - Rows affected: 95 - RequestID: lwmibltwatg +2025-06-18T13:53:24.081Z [TRACE] auth-service - Database SELECT on orders - Execution time: 152ms - Rows affected: 82 - RequestID: yiip9qqq7j +2025-06-18T13:53:24.181Z [TRACE] user-service - GET /api/v1/inventory - Status: 401 - Response time: 1495ms - IP: 192.168.10.184 - User: user_1083 - RequestID: cyl8s8rs0e6 +2025-06-18T13:53:24.281Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 539ms - IP: 192.168.144.38 - User: user_1019 - RequestID: 9c4u41qkqqb +2025-06-18T13:53:24.381Z [DEBUG] user-service - Database DELETE on orders - Execution time: 37ms - Rows affected: 17 - RequestID: dgii9l6m19i +2025-06-18T13:53:24.481Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 45ms - Rows affected: 58 - RequestID: cm6x3ygrowq +2025-06-18T13:53:24.581Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 989ms - RequestID: te7emygackf +2025-06-18T13:53:24.681Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 175ms - Rows affected: 71 - RequestID: 8q5rtkaz0o7 +2025-06-18T13:53:24.781Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 339ms - Rows affected: 93 - RequestID: ez0r6xqemoq +2025-06-18T13:53:24.881Z [DEBUG] user-service - Auth event: password_change - User: user_1044 - IP: 192.168.97.87 - RequestID: 0b1jvyneaxp +2025-06-18T13:53:24.981Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 2009ms - IP: 192.168.235.117 - User: user_1004 - RequestID: t16s22hbv5s +2025-06-18T13:53:25.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 874ms - RequestID: xr1xvyoog9m +2025-06-18T13:53:25.181Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 192ms - Rows affected: 39 - RequestID: 9hk38jvzcc +2025-06-18T13:53:25.281Z [TRACE] user-service - Auth event: login_failed - User: user_1037 - IP: 192.168.232.72 - RequestID: 16wamluj8j9 +2025-06-18T13:53:25.381Z [TRACE] order-service - Auth event: password_change - User: user_1048 - IP: 192.168.44.5 - RequestID: rnuesuvajyl +2025-06-18T13:53:25.481Z [TRACE] payment-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.158.144 - RequestID: afylplwpkbg +2025-06-18T13:53:25.581Z [TRACE] notification-service - Operation: cache_miss - Processing time: 711ms - RequestID: eamgc0kioeb +2025-06-18T13:53:25.681Z [INFO] payment-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.170.215 - RequestID: g37sq962q8o +2025-06-18T13:53:25.781Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.44.5 - RequestID: g1ukmggf1ya +2025-06-18T13:53:25.881Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.31.117 - RequestID: scbh649ni39 +2025-06-18T13:53:25.981Z [DEBUG] auth-service - Auth event: logout - User: user_1048 - IP: 192.168.247.134 - RequestID: uf3zw7mrgng +2025-06-18T13:53:26.081Z [DEBUG] payment-service - Auth event: login_success - User: user_1037 - IP: 192.168.46.63 - RequestID: aw2ffkbqbz7 +2025-06-18T13:53:26.181Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 737ms - RequestID: 3zppvsvqefo +2025-06-18T13:53:26.281Z [DEBUG] payment-service - Auth event: password_change - User: user_1000 - IP: 192.168.138.123 - RequestID: 56fwkrk1qfo +2025-06-18T13:53:26.381Z [TRACE] user-service - PATCH /api/v1/payments - Status: 401 - Response time: 477ms - IP: 192.168.10.184 - User: user_1038 - RequestID: 4ru84i4k79v +2025-06-18T13:53:26.481Z [DEBUG] inventory-service - Auth event: login_success - User: user_1057 - IP: 192.168.36.218 - RequestID: yavcz8npwd +2025-06-18T13:53:26.581Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 361ms - Rows affected: 61 - RequestID: 3eblweyast7 +2025-06-18T13:53:26.681Z [INFO] inventory-service - Database SELECT on users - Execution time: 253ms - Rows affected: 70 - RequestID: stbri1udabg +2025-06-18T13:53:26.781Z [TRACE] notification-service - Operation: email_sent - Processing time: 1013ms - RequestID: 4ywbb7yuify +2025-06-18T13:53:26.881Z [TRACE] order-service - Database UPDATE on products - Execution time: 492ms - Rows affected: 51 - RequestID: u7r6c9wd28a +2025-06-18T13:53:26.981Z [INFO] user-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.232.72 - RequestID: n9hgi4p6i1 +2025-06-18T13:53:27.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1054 - IP: 192.168.159.94 - RequestID: dyp0kj2emjk +2025-06-18T13:53:27.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.53.133 - RequestID: 10ruibsm9kh8 +2025-06-18T13:53:27.281Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1783ms - IP: 192.168.229.123 - User: user_1059 - RequestID: bfwrg95s31j +2025-06-18T13:53:27.381Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 404ms - Rows affected: 24 - RequestID: nw5szdw349 +2025-06-18T13:53:27.481Z [INFO] order-service - Operation: payment_processed - Processing time: 99ms - RequestID: je4ihtb3ru8 +2025-06-18T13:53:27.581Z [DEBUG] inventory-service - Auth event: login_success - User: user_1021 - IP: 192.168.46.63 - RequestID: lzisshajoc +2025-06-18T13:53:27.681Z [INFO] inventory-service - Auth event: logout - User: user_1055 - IP: 192.168.158.144 - RequestID: qvsbguvmnu +2025-06-18T13:53:27.781Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 70ms - RequestID: i34p2vg03af +2025-06-18T13:53:27.881Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 477ms - Rows affected: 7 - RequestID: 8blw9jem6y +2025-06-18T13:53:27.981Z [INFO] order-service - Operation: cache_miss - Processing time: 409ms - RequestID: rdvv61p5h7s +2025-06-18T13:53:28.081Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1869ms - IP: 192.168.68.158 - User: user_1097 - RequestID: bf464j7h +2025-06-18T13:53:28.181Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 404 - Response time: 696ms - IP: 192.168.104.37 - User: user_1022 - RequestID: s0srj3qi2nb +2025-06-18T13:53:28.281Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 404 - Response time: 973ms - IP: 192.168.79.143 - User: user_1037 - RequestID: w9boxdidq7 +2025-06-18T13:53:28.381Z [DEBUG] user-service - GET /api/v1/orders - Status: 400 - Response time: 149ms - IP: 192.168.79.141 - User: user_1072 - RequestID: qsbrw6o2gk +2025-06-18T13:53:28.481Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 139ms - Rows affected: 48 - RequestID: zip12scvbxr +2025-06-18T13:53:28.581Z [INFO] payment-service - Operation: notification_queued - Processing time: 503ms - RequestID: ocpstrexgsk +2025-06-18T13:53:28.681Z [INFO] payment-service - Operation: email_sent - Processing time: 660ms - RequestID: uabl31zq08 +2025-06-18T13:53:28.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1033 - IP: 192.168.242.165 - RequestID: ulf8q5jnbxs +2025-06-18T13:53:28.881Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 356ms - IP: 192.168.31.117 - User: user_1056 - RequestID: l7dw4j40nse +2025-06-18T13:53:28.981Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 118ms - IP: 192.168.133.7 - User: user_1015 - RequestID: qfcyr6zyz4l +2025-06-18T13:53:29.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.79.116 - RequestID: lklzlyd7kur +2025-06-18T13:53:29.181Z [TRACE] notification-service - Database DELETE on orders - Execution time: 302ms - Rows affected: 86 - RequestID: czisvsr3l6e +2025-06-18T13:53:29.281Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 376ms - Rows affected: 88 - RequestID: vniazezuq8s +2025-06-18T13:53:29.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1030 - IP: 192.168.174.114 - RequestID: ha16ywc4k5m +2025-06-18T13:53:29.481Z [TRACE] payment-service - Auth event: password_change - User: user_1084 - IP: 192.168.133.7 - RequestID: j64cfd2206 +2025-06-18T13:53:29.581Z [DEBUG] notification-service - Database DELETE on products - Execution time: 276ms - Rows affected: 8 - RequestID: k8v48k0f6tq +2025-06-18T13:53:29.681Z [INFO] auth-service - Database DELETE on orders - Execution time: 76ms - Rows affected: 32 - RequestID: g6rd7yv268w +2025-06-18T13:53:29.781Z [INFO] payment-service - Operation: order_created - Processing time: 907ms - RequestID: llm81jqjwcb +2025-06-18T13:53:29.881Z [TRACE] auth-service - Operation: cache_hit - Processing time: 934ms - RequestID: 6xrot3b67kq +2025-06-18T13:53:29.981Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 82ms - Rows affected: 0 - RequestID: xahjc8xqkiq +2025-06-18T13:53:30.081Z [INFO] user-service - Auth event: password_change - User: user_1060 - IP: 192.168.144.38 - RequestID: ffcefv0ddet +2025-06-18T13:53:30.181Z [INFO] notification-service - Operation: order_created - Processing time: 684ms - RequestID: fwd0yty3y9t +2025-06-18T13:53:30.281Z [INFO] order-service - Database INSERT on payments - Execution time: 296ms - Rows affected: 12 - RequestID: immspjyney +2025-06-18T13:53:30.381Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.240.169 - RequestID: t81fo1kd70r +2025-06-18T13:53:30.481Z [INFO] auth-service - Database SELECT on users - Execution time: 317ms - Rows affected: 69 - RequestID: 5odiz3jlr1y +2025-06-18T13:53:30.581Z [DEBUG] payment-service - Database SELECT on products - Execution time: 379ms - Rows affected: 91 - RequestID: di94sigh78l +2025-06-18T13:53:30.681Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 251ms - Rows affected: 8 - RequestID: b8yrrel24b5 +2025-06-18T13:53:30.781Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 200 - Response time: 1060ms - IP: 192.168.181.225 - User: user_1035 - RequestID: zbga5g33ol +2025-06-18T13:53:30.881Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 262ms - Rows affected: 71 - RequestID: ac0cxx683pm +2025-06-18T13:53:30.981Z [INFO] order-service - Auth event: login_failed - User: user_1094 - IP: 192.168.1.152 - RequestID: gri3ikwexr7 +2025-06-18T13:53:31.081Z [TRACE] inventory-service - Auth event: login_failed - User: user_1081 - IP: 192.168.79.143 - RequestID: 8hp14wiartj +2025-06-18T13:53:31.181Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 205ms - Rows affected: 71 - RequestID: 8atlqdp9v18 +2025-06-18T13:53:31.281Z [INFO] notification-service - PATCH /api/v1/payments - Status: 503 - Response time: 1620ms - IP: 192.168.68.158 - User: user_1058 - RequestID: z4l03z0jpx +2025-06-18T13:53:31.381Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 400 - Response time: 1895ms - IP: 192.168.11.60 - User: user_1010 - RequestID: juago9yu57h +2025-06-18T13:53:31.481Z [INFO] order-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.32.38 - RequestID: 0rjnewormchd +2025-06-18T13:53:31.581Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 503 - Response time: 772ms - IP: 192.168.174.114 - User: user_1031 - RequestID: nppxonocjg +2025-06-18T13:53:31.681Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 280ms - Rows affected: 21 - RequestID: 2520negm00q +2025-06-18T13:53:31.781Z [DEBUG] user-service - Operation: payment_processed - Processing time: 298ms - RequestID: 616e8zpqslx +2025-06-18T13:53:31.881Z [DEBUG] notification-service - GET /api/v1/payments - Status: 404 - Response time: 1223ms - IP: 192.168.232.72 - User: user_1007 - RequestID: w344jgyjgq +2025-06-18T13:53:31.981Z [INFO] order-service - Auth event: login_success - User: user_1034 - IP: 192.168.32.38 - RequestID: aaqmpekvt8 +2025-06-18T13:53:32.081Z [INFO] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 449ms - IP: 192.168.68.158 - User: user_1013 - RequestID: 1w0asemwl78 +2025-06-18T13:53:32.181Z [TRACE] user-service - Operation: payment_processed - Processing time: 58ms - RequestID: srub7n2246n +2025-06-18T13:53:32.281Z [TRACE] order-service - Operation: order_created - Processing time: 600ms - RequestID: 6v6o0kvgovk +2025-06-18T13:53:32.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1045 - IP: 192.168.227.233 - RequestID: tswbd0p4g1 +2025-06-18T13:53:32.481Z [TRACE] order-service - Auth event: login_failed - User: user_1082 - IP: 192.168.13.72 - RequestID: 2jpy5d7urxk +2025-06-18T13:53:32.581Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1826ms - IP: 192.168.174.114 - User: user_1000 - RequestID: 2dnnxs755c +2025-06-18T13:53:32.681Z [INFO] inventory-service - Database DELETE on products - Execution time: 247ms - Rows affected: 16 - RequestID: msj08mns7wm +2025-06-18T13:53:32.781Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1394ms - IP: 192.168.242.165 - User: user_1074 - RequestID: qfpque4qyh +2025-06-18T13:53:32.881Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 200 - Response time: 259ms - IP: 192.168.133.7 - User: user_1035 - RequestID: nlqlh9knjfm +2025-06-18T13:53:32.981Z [DEBUG] payment-service - Operation: order_created - Processing time: 605ms - RequestID: lp23l125aws +2025-06-18T13:53:33.081Z [TRACE] auth-service - GET /api/v1/inventory - Status: 403 - Response time: 1944ms - IP: 192.168.14.77 - User: user_1083 - RequestID: 18794y6vhoz +2025-06-18T13:53:33.181Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 439ms - Rows affected: 93 - RequestID: vhhqj13h1tk +2025-06-18T13:53:33.281Z [INFO] auth-service - Auth event: password_change - User: user_1090 - IP: 192.168.170.215 - RequestID: 8s8t5px5y5y +2025-06-18T13:53:33.381Z [INFO] user-service - Operation: order_created - Processing time: 427ms - RequestID: at0p3qteyrp +2025-06-18T13:53:33.481Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 502 - Response time: 672ms - IP: 192.168.30.79 - User: user_1083 - RequestID: 1r4r2rj6242 +2025-06-18T13:53:33.581Z [DEBUG] order-service - GET /api/v1/users - Status: 403 - Response time: 396ms - IP: 192.168.81.206 - User: user_1023 - RequestID: 3p46qxxylnv +2025-06-18T13:53:33.681Z [DEBUG] order-service - Auth event: login_success - User: user_1052 - IP: 192.168.194.41 - RequestID: tos83nqny2o +2025-06-18T13:53:33.781Z [INFO] user-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.247.134 - RequestID: 4gr1gdn0wwz +2025-06-18T13:53:33.881Z [INFO] user-service - Operation: inventory_updated - Processing time: 428ms - RequestID: taj564rnux +2025-06-18T13:53:33.981Z [DEBUG] order-service - Auth event: login_failed - User: user_1042 - IP: 192.168.30.79 - RequestID: vxuezzwtt4k +2025-06-18T13:53:34.081Z [INFO] order-service - Auth event: password_change - User: user_1004 - IP: 192.168.242.165 - RequestID: qdqkp2askgg +2025-06-18T13:53:34.181Z [INFO] auth-service - Operation: webhook_sent - Processing time: 214ms - RequestID: 5bi57b2fuc +2025-06-18T13:53:34.281Z [TRACE] notification-service - Operation: order_created - Processing time: 166ms - RequestID: 06x245u2347 +2025-06-18T13:53:34.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 185ms - RequestID: ma2d9s78rl +2025-06-18T13:53:34.481Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 912ms - RequestID: pfo7hdtaqke +2025-06-18T13:53:34.581Z [INFO] payment-service - Database UPDATE on products - Execution time: 198ms - Rows affected: 89 - RequestID: c893ckhio9b +2025-06-18T13:53:34.681Z [TRACE] inventory-service - Database SELECT on products - Execution time: 315ms - Rows affected: 61 - RequestID: sjj6vpbx9h9 +2025-06-18T13:53:34.781Z [DEBUG] notification-service - Auth event: logout - User: user_1078 - IP: 192.168.181.225 - RequestID: 4gpl7foavbv +2025-06-18T13:53:34.881Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 188ms - RequestID: idzwc0lvyc +2025-06-18T13:53:34.981Z [INFO] user-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.167.32 - RequestID: l49utovb5aj +2025-06-18T13:53:35.081Z [TRACE] payment-service - Database INSERT on payments - Execution time: 52ms - Rows affected: 73 - RequestID: 8znx99xricg +2025-06-18T13:53:35.181Z [TRACE] user-service - Operation: email_sent - Processing time: 560ms - RequestID: q0k0fvyitpa +2025-06-18T13:53:35.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.36.218 - RequestID: l73ggr11mjn +2025-06-18T13:53:35.381Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 260ms - RequestID: 4egtrxwnxhd +2025-06-18T13:53:35.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 543ms - RequestID: o51u6culss +2025-06-18T13:53:35.581Z [INFO] order-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.13.72 - RequestID: gn6bcw7os5l +2025-06-18T13:53:35.681Z [INFO] auth-service - Operation: cache_miss - Processing time: 264ms - RequestID: libacyqy51b +2025-06-18T13:53:35.781Z [INFO] inventory-service - Operation: order_created - Processing time: 519ms - RequestID: 78b2ovjovpe +2025-06-18T13:53:35.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1086 - IP: 192.168.227.77 - RequestID: nc0t1p1q9ro +2025-06-18T13:53:35.981Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 500 - Response time: 1753ms - IP: 192.168.53.133 - User: user_1014 - RequestID: aanpsp7x758 +2025-06-18T13:53:36.081Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 430ms - Rows affected: 18 - RequestID: xmfsnongoxe +2025-06-18T13:53:36.181Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 98ms - IP: 192.168.46.63 - User: user_1091 - RequestID: xjy1kvxhpqs +2025-06-18T13:53:36.281Z [INFO] user-service - Operation: webhook_sent - Processing time: 567ms - RequestID: fg2qgs5bbss +2025-06-18T13:53:36.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1071 - IP: 192.168.81.206 - RequestID: 757zh5d65cr +2025-06-18T13:53:36.481Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 883ms - IP: 192.168.194.41 - User: user_1091 - RequestID: xn6ufjvzkaf +2025-06-18T13:53:36.581Z [INFO] inventory-service - Database SELECT on products - Execution time: 45ms - Rows affected: 38 - RequestID: le446c3am6t +2025-06-18T13:53:36.681Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 355ms - RequestID: kzz509lr9fr +2025-06-18T13:53:36.781Z [TRACE] auth-service - Auth event: logout - User: user_1020 - IP: 192.168.11.60 - RequestID: ndr3toet94 +2025-06-18T13:53:36.881Z [INFO] notification-service - Operation: webhook_sent - Processing time: 312ms - RequestID: yeivshf4c +2025-06-18T13:53:36.981Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 400 - Response time: 384ms - IP: 192.168.227.233 - User: user_1005 - RequestID: oajufure7ib +2025-06-18T13:53:37.081Z [INFO] inventory-service - Database SELECT on payments - Execution time: 52ms - Rows affected: 25 - RequestID: 6dcs18qm9tw +2025-06-18T13:53:37.181Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 426ms - RequestID: cra1bveakmj +2025-06-18T13:53:37.281Z [TRACE] payment-service - Auth event: logout - User: user_1088 - IP: 192.168.11.60 - RequestID: nkbg8bvyxg +2025-06-18T13:53:37.381Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 112ms - Rows affected: 40 - RequestID: zvya97sx9cl +2025-06-18T13:53:37.481Z [INFO] order-service - Database SELECT on products - Execution time: 159ms - Rows affected: 72 - RequestID: 09zsiorxa3da +2025-06-18T13:53:37.581Z [INFO] order-service - Auth event: logout - User: user_1028 - IP: 192.168.159.94 - RequestID: cumrsitaxa +2025-06-18T13:53:37.681Z [TRACE] inventory-service - Database SELECT on products - Execution time: 364ms - Rows affected: 36 - RequestID: ardjnzcgedr +2025-06-18T13:53:37.781Z [TRACE] user-service - Auth event: password_change - User: user_1023 - IP: 192.168.68.158 - RequestID: 8cwjxz7xkt +2025-06-18T13:53:37.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.104.37 - RequestID: 9t7gfdi4r5g +2025-06-18T13:53:37.981Z [TRACE] payment-service - Database UPDATE on products - Execution time: 348ms - Rows affected: 84 - RequestID: eadmg9a42k +2025-06-18T13:53:38.081Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 788ms - RequestID: e8o3knhisfw +2025-06-18T13:53:38.181Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 145ms - Rows affected: 68 - RequestID: 21jcxzuzqwp +2025-06-18T13:53:38.281Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 430ms - Rows affected: 81 - RequestID: s3ja84wj85 +2025-06-18T13:53:38.381Z [TRACE] order-service - Database INSERT on products - Execution time: 171ms - Rows affected: 31 - RequestID: 2wclr6v3d03 +2025-06-18T13:53:38.481Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 404 - Response time: 640ms - IP: 192.168.10.184 - User: user_1096 - RequestID: c855cdcwoas +2025-06-18T13:53:38.581Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 370ms - IP: 192.168.68.158 - User: user_1097 - RequestID: oyyb1zr2yvf +2025-06-18T13:53:38.681Z [INFO] user-service - Operation: payment_processed - Processing time: 610ms - RequestID: nxa8q3r4n6 +2025-06-18T13:53:38.781Z [DEBUG] notification-service - Database SELECT on users - Execution time: 266ms - Rows affected: 17 - RequestID: ll88br5h5n +2025-06-18T13:53:38.881Z [INFO] order-service - Auth event: logout - User: user_1002 - IP: 192.168.189.103 - RequestID: pbm9u0ghr6s +2025-06-18T13:53:38.981Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 503 - Response time: 127ms - IP: 192.168.232.72 - User: user_1067 - RequestID: twt85mvvlvk +2025-06-18T13:53:39.081Z [INFO] payment-service - Operation: cache_hit - Processing time: 1030ms - RequestID: cvqqodnc80q +2025-06-18T13:53:39.181Z [DEBUG] user-service - POST /api/v1/orders - Status: 404 - Response time: 291ms - IP: 192.168.79.143 - User: user_1096 - RequestID: q2l0ffcjia +2025-06-18T13:53:39.281Z [TRACE] order-service - Database SELECT on sessions - Execution time: 57ms - Rows affected: 79 - RequestID: kfb4zx0d2k +2025-06-18T13:53:39.381Z [TRACE] user-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.167.32 - RequestID: bmyv6ic4vsb +2025-06-18T13:53:39.481Z [INFO] payment-service - PATCH /api/v1/orders - Status: 503 - Response time: 19ms - IP: 192.168.68.158 - User: user_1010 - RequestID: irsvensbvm +2025-06-18T13:53:39.581Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 739ms - RequestID: 1ca2gh76cif +2025-06-18T13:53:39.681Z [TRACE] inventory-service - Operation: order_created - Processing time: 400ms - RequestID: i82acxgoyhn +2025-06-18T13:53:39.781Z [DEBUG] order-service - Auth event: logout - User: user_1090 - IP: 192.168.85.229 - RequestID: 480vd3awtby +2025-06-18T13:53:39.881Z [INFO] auth-service - Database UPDATE on users - Execution time: 482ms - Rows affected: 70 - RequestID: h671ghrqnkh +2025-06-18T13:53:39.981Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 354ms - Rows affected: 64 - RequestID: dd3vrcu4wca +2025-06-18T13:53:40.081Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1343ms - IP: 192.168.187.199 - User: user_1084 - RequestID: d90tvgysqwb +2025-06-18T13:53:40.181Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 1690ms - IP: 192.168.81.206 - User: user_1087 - RequestID: 4vijev37cn9 +2025-06-18T13:53:40.281Z [INFO] auth-service - POST /api/v1/users - Status: 401 - Response time: 1586ms - IP: 192.168.194.41 - User: user_1034 - RequestID: 5rvop2qsdr3 +2025-06-18T13:53:40.381Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 412ms - RequestID: 7qjx4rmed3b +2025-06-18T13:53:40.481Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1042ms - IP: 192.168.227.77 - User: user_1087 - RequestID: wubw8sttfp +2025-06-18T13:53:40.581Z [TRACE] auth-service - GET /api/v1/inventory - Status: 400 - Response time: 859ms - IP: 192.168.211.72 - User: user_1058 - RequestID: jwresnnvfbi +2025-06-18T13:53:40.681Z [INFO] inventory-service - Auth event: login_failed - User: user_1066 - IP: 192.168.104.37 - RequestID: r4twwtqzaa8 +2025-06-18T13:53:40.781Z [INFO] inventory-service - Database DELETE on payments - Execution time: 39ms - Rows affected: 29 - RequestID: 07a5cmtqxhi6 +2025-06-18T13:53:40.881Z [TRACE] auth-service - Auth event: login_success - User: user_1035 - IP: 192.168.187.199 - RequestID: ggzbxdk1845 +2025-06-18T13:53:40.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 299ms - RequestID: xyid569y74 +2025-06-18T13:53:41.081Z [INFO] auth-service - GET /api/v1/payments - Status: 403 - Response time: 1023ms - IP: 192.168.30.79 - User: user_1027 - RequestID: 41sns874mbe +2025-06-18T13:53:41.181Z [INFO] payment-service - Auth event: login_failed - User: user_1053 - IP: 192.168.100.240 - RequestID: fbtoududqu +2025-06-18T13:53:41.281Z [INFO] inventory-service - Operation: payment_processed - Processing time: 953ms - RequestID: g1lb20dwdwj +2025-06-18T13:53:41.381Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1202ms - IP: 192.168.11.60 - User: user_1086 - RequestID: q2w0wihsjwn +2025-06-18T13:53:41.481Z [TRACE] inventory-service - Auth event: password_change - User: user_1032 - IP: 192.168.194.41 - RequestID: g8gcsa0ev95 +2025-06-18T13:53:41.581Z [TRACE] notification-service - Database DELETE on products - Execution time: 300ms - Rows affected: 44 - RequestID: bvsxmmtx6f +2025-06-18T13:53:41.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 466ms - RequestID: tk2fa420pdr +2025-06-18T13:53:41.781Z [DEBUG] order-service - PUT /api/v1/payments - Status: 201 - Response time: 150ms - IP: 192.168.13.72 - User: user_1005 - RequestID: t86gt3jkof +2025-06-18T13:53:41.881Z [INFO] order-service - Auth event: login_success - User: user_1013 - IP: 192.168.158.144 - RequestID: 518i3vmctn8 +2025-06-18T13:53:41.981Z [TRACE] auth-service - GET /api/v1/users - Status: 201 - Response time: 609ms - IP: 192.168.141.100 - User: user_1071 - RequestID: q8154abw8a +2025-06-18T13:53:42.081Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 400 - Response time: 1288ms - IP: 192.168.14.77 - User: user_1045 - RequestID: el7o8w03mb8 +2025-06-18T13:53:42.181Z [TRACE] notification-service - Auth event: login_success - User: user_1096 - IP: 192.168.46.63 - RequestID: qcekt7sz7a7 +2025-06-18T13:53:42.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1058 - IP: 192.168.240.169 - RequestID: wkarpiwuzui +2025-06-18T13:53:42.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.232.72 - RequestID: r33446meyo7 +2025-06-18T13:53:42.481Z [INFO] payment-service - PUT /api/v1/users - Status: 404 - Response time: 1540ms - IP: 192.168.167.32 - User: user_1052 - RequestID: j3rgvf4z1w8 +2025-06-18T13:53:42.581Z [INFO] inventory-service - Operation: payment_processed - Processing time: 650ms - RequestID: vdlm8a9mkjl +2025-06-18T13:53:42.681Z [DEBUG] user-service - Operation: order_created - Processing time: 563ms - RequestID: 95iordf665n +2025-06-18T13:53:42.781Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 978ms - RequestID: b918d80nn19 +2025-06-18T13:53:42.881Z [TRACE] auth-service - Operation: notification_queued - Processing time: 91ms - RequestID: 4hrs282i7di +2025-06-18T13:53:42.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 281ms - RequestID: 6pjbgix5vxl +2025-06-18T13:53:43.081Z [INFO] auth-service - Database INSERT on users - Execution time: 486ms - Rows affected: 15 - RequestID: d08coz94frl +2025-06-18T13:53:43.181Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1257ms - IP: 192.168.240.169 - User: user_1082 - RequestID: 7whkkqi00eb +2025-06-18T13:53:43.281Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 497ms - Rows affected: 43 - RequestID: jdb4twr0rt +2025-06-18T13:53:43.381Z [TRACE] auth-service - Database UPDATE on users - Execution time: 170ms - Rows affected: 0 - RequestID: pidj3qtm9zj +2025-06-18T13:53:43.481Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 31ms - Rows affected: 96 - RequestID: vp9dyxmctuo +2025-06-18T13:53:43.581Z [TRACE] auth-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.113.218 - RequestID: 647fnrtwb5e +2025-06-18T13:53:43.681Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 900ms - IP: 192.168.81.206 - User: user_1012 - RequestID: 0jk14y3uj4 +2025-06-18T13:53:43.781Z [DEBUG] order-service - Auth event: login_failed - User: user_1020 - IP: 192.168.167.32 - RequestID: 0vwagakzqqe +2025-06-18T13:53:43.881Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 201 - Response time: 333ms - IP: 192.168.11.60 - User: user_1004 - RequestID: jz0vx2xejf +2025-06-18T13:53:43.981Z [INFO] inventory-service - Auth event: logout - User: user_1087 - IP: 192.168.141.100 - RequestID: t94plpxmhpd +2025-06-18T13:53:44.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.85.229 - RequestID: w31iz6ya1v +2025-06-18T13:53:44.181Z [DEBUG] user-service - Operation: order_created - Processing time: 453ms - RequestID: soyny4i53dk +2025-06-18T13:53:44.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1040 - IP: 192.168.53.133 - RequestID: dnm8zhad3cd +2025-06-18T13:53:44.381Z [TRACE] user-service - Auth event: login_failed - User: user_1072 - IP: 192.168.235.117 - RequestID: 1i9zxfo3k41 +2025-06-18T13:53:44.481Z [TRACE] inventory-service - Operation: email_sent - Processing time: 767ms - RequestID: xl4wcuo0j0g +2025-06-18T13:53:44.581Z [INFO] notification-service - Auth event: logout - User: user_1080 - IP: 192.168.13.72 - RequestID: oph4srnlrl +2025-06-18T13:53:44.681Z [INFO] notification-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.167.32 - RequestID: 23dkcnzorlr +2025-06-18T13:53:44.781Z [INFO] notification-service - Operation: cache_miss - Processing time: 452ms - RequestID: 2kavwykvkpy +2025-06-18T13:53:44.881Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.141.100 - RequestID: ykve23i85qr +2025-06-18T13:53:44.981Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1209ms - IP: 192.168.13.72 - User: user_1062 - RequestID: zi8lk28lmo9 +2025-06-18T13:53:45.081Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 559ms - IP: 192.168.32.38 - User: user_1085 - RequestID: z3ph2wtxhqo +2025-06-18T13:53:45.181Z [INFO] notification-service - Operation: inventory_updated - Processing time: 230ms - RequestID: gwd90kblg1v +2025-06-18T13:53:45.281Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 503 - Response time: 1348ms - IP: 192.168.194.41 - User: user_1063 - RequestID: bkxxjqe3iei +2025-06-18T13:53:45.381Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1720ms - IP: 192.168.138.123 - User: user_1009 - RequestID: j0ncagvrnv +2025-06-18T13:53:45.481Z [INFO] user-service - Database UPDATE on products - Execution time: 240ms - Rows affected: 73 - RequestID: ujgsqflv5n +2025-06-18T13:53:45.581Z [DEBUG] order-service - PATCH /api/v1/users - Status: 200 - Response time: 1965ms - IP: 192.168.138.123 - User: user_1014 - RequestID: b4bnwlajgtb +2025-06-18T13:53:45.681Z [INFO] order-service - Auth event: logout - User: user_1098 - IP: 192.168.187.199 - RequestID: z5qulwfo0yq +2025-06-18T13:53:45.781Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 179ms - Rows affected: 15 - RequestID: q42zbdq5itl +2025-06-18T13:53:45.881Z [TRACE] order-service - POST /api/v1/orders - Status: 500 - Response time: 79ms - IP: 192.168.138.123 - User: user_1019 - RequestID: 4z8gt5actco +2025-06-18T13:53:45.981Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1218ms - IP: 192.168.97.87 - User: user_1008 - RequestID: 9csunoxsvv7 +2025-06-18T13:53:46.081Z [DEBUG] payment-service - Auth event: logout - User: user_1032 - IP: 192.168.30.79 - RequestID: acyd9nzkoa5 +2025-06-18T13:53:46.181Z [INFO] payment-service - Database DELETE on users - Execution time: 228ms - Rows affected: 29 - RequestID: 3dpvdq7jtpp +2025-06-18T13:53:46.281Z [INFO] notification-service - Operation: payment_processed - Processing time: 981ms - RequestID: 2owo0ctkelw +2025-06-18T13:53:46.381Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 503 - Response time: 60ms - IP: 192.168.81.206 - User: user_1075 - RequestID: oywhib7gm89 +2025-06-18T13:53:46.481Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 500 - Response time: 1567ms - IP: 192.168.14.77 - User: user_1070 - RequestID: hfcgom9yc76 +2025-06-18T13:53:46.581Z [TRACE] order-service - Database UPDATE on orders - Execution time: 499ms - Rows affected: 58 - RequestID: bk9sz4i80kg +2025-06-18T13:53:46.681Z [TRACE] auth-service - Operation: email_sent - Processing time: 252ms - RequestID: ew67vfzz3v +2025-06-18T13:53:46.781Z [DEBUG] order-service - Auth event: password_change - User: user_1049 - IP: 192.168.31.117 - RequestID: 0gkbyv4kigrh +2025-06-18T13:53:46.881Z [INFO] order-service - Operation: cache_hit - Processing time: 400ms - RequestID: 4nkrq6cr0q9 +2025-06-18T13:53:46.981Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 943ms - RequestID: l28yjgla2fg +2025-06-18T13:53:47.081Z [DEBUG] order-service - Operation: email_sent - Processing time: 579ms - RequestID: 5b1cg34590e +2025-06-18T13:53:47.181Z [INFO] payment-service - Auth event: password_change - User: user_1035 - IP: 192.168.147.171 - RequestID: fizbprj7krg +2025-06-18T13:53:47.281Z [INFO] auth-service - Operation: cache_hit - Processing time: 448ms - RequestID: 255df6kektw +2025-06-18T13:53:47.381Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 110ms - Rows affected: 6 - RequestID: 503f01be16l +2025-06-18T13:53:47.481Z [INFO] user-service - DELETE /api/v1/orders - Status: 400 - Response time: 1606ms - IP: 192.168.81.206 - User: user_1099 - RequestID: ant59eitvbm +2025-06-18T13:53:47.581Z [TRACE] inventory-service - Database DELETE on products - Execution time: 75ms - Rows affected: 68 - RequestID: nvkt19gowym +2025-06-18T13:53:47.681Z [TRACE] user-service - Auth event: logout - User: user_1065 - IP: 192.168.104.37 - RequestID: srn6vua8cvk +2025-06-18T13:53:47.781Z [TRACE] notification-service - GET /api/v1/orders - Status: 404 - Response time: 641ms - IP: 192.168.81.206 - User: user_1098 - RequestID: 921v7o7aciu +2025-06-18T13:53:47.881Z [DEBUG] user-service - POST /api/v1/inventory - Status: 201 - Response time: 439ms - IP: 192.168.100.240 - User: user_1046 - RequestID: sao2c88lsxh +2025-06-18T13:53:47.981Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 177ms - Rows affected: 82 - RequestID: ttsnxjnmc3k +2025-06-18T13:53:48.081Z [INFO] user-service - DELETE /api/v1/payments - Status: 404 - Response time: 1534ms - IP: 192.168.104.37 - User: user_1086 - RequestID: 0ussudgosxjn +2025-06-18T13:53:48.181Z [INFO] inventory-service - Database DELETE on orders - Execution time: 495ms - Rows affected: 93 - RequestID: bzyhpymdcli +2025-06-18T13:53:48.281Z [DEBUG] user-service - Database INSERT on users - Execution time: 266ms - Rows affected: 50 - RequestID: 5ri382wzomn +2025-06-18T13:53:48.381Z [INFO] auth-service - Database INSERT on users - Execution time: 40ms - Rows affected: 97 - RequestID: gacpwreidzb +2025-06-18T13:53:48.481Z [INFO] user-service - Operation: payment_processed - Processing time: 700ms - RequestID: 4p9b8ujic7e +2025-06-18T13:53:48.581Z [INFO] notification-service - DELETE /api/v1/orders - Status: 502 - Response time: 667ms - IP: 192.168.10.184 - User: user_1087 - RequestID: edf31dijl4 +2025-06-18T13:53:48.681Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 638ms - RequestID: ue3vxjgrvz +2025-06-18T13:53:48.781Z [TRACE] payment-service - Operation: payment_processed - Processing time: 327ms - RequestID: yoe93vsq0vg +2025-06-18T13:53:48.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 128ms - RequestID: 6fm375d80ir +2025-06-18T13:53:48.981Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 370ms - RequestID: iivmfjgosh +2025-06-18T13:53:49.081Z [INFO] auth-service - Auth event: logout - User: user_1062 - IP: 192.168.181.225 - RequestID: oforl5yp2w +2025-06-18T13:53:49.181Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 843ms - RequestID: bfqkmgnhdw6 +2025-06-18T13:53:49.281Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1925ms - IP: 192.168.194.41 - User: user_1023 - RequestID: 221bizf0f48 +2025-06-18T13:53:49.381Z [TRACE] order-service - GET /api/v1/orders - Status: 200 - Response time: 618ms - IP: 192.168.227.233 - User: user_1043 - RequestID: xqm5jhg1ytg +2025-06-18T13:53:49.481Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 502 - Response time: 774ms - IP: 192.168.170.215 - User: user_1063 - RequestID: t0k4w3y8uti +2025-06-18T13:53:49.581Z [INFO] auth-service - Auth event: logout - User: user_1084 - IP: 192.168.31.117 - RequestID: 1xohj13017d +2025-06-18T13:53:49.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 870ms - RequestID: 5v21uqg9aj8 +2025-06-18T13:53:49.781Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 502 - Response time: 617ms - IP: 192.168.53.133 - User: user_1039 - RequestID: vxwodquowob +2025-06-18T13:53:49.881Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 225ms - Rows affected: 65 - RequestID: 45urlao6qgb +2025-06-18T13:53:49.981Z [TRACE] inventory-service - Auth event: login_success - User: user_1070 - IP: 192.168.159.94 - RequestID: secp4fcuqxm +2025-06-18T13:53:50.081Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 401 - Response time: 337ms - IP: 192.168.242.165 - User: user_1020 - RequestID: 1hqr8rf7g0o +2025-06-18T13:53:50.181Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 400 - Response time: 1475ms - IP: 192.168.187.199 - User: user_1024 - RequestID: ch3dj635zdd +2025-06-18T13:53:50.281Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 222ms - Rows affected: 99 - RequestID: 0qaw3ek3hku9 +2025-06-18T13:53:50.381Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 542ms - RequestID: rkvrtnb3rq +2025-06-18T13:53:50.481Z [INFO] order-service - Auth event: login_success - User: user_1076 - IP: 192.168.100.240 - RequestID: cvmjsvkx3rn +2025-06-18T13:53:50.581Z [DEBUG] order-service - Database SELECT on orders - Execution time: 16ms - Rows affected: 38 - RequestID: wqr5fj1u9f +2025-06-18T13:53:50.681Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 452ms - Rows affected: 23 - RequestID: 2p5pjwtvpu4 +2025-06-18T13:53:50.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1018 - IP: 192.168.10.184 - RequestID: uioxnn2blp +2025-06-18T13:53:50.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 620ms - RequestID: 3pkn4tgph3m +2025-06-18T13:53:50.981Z [TRACE] payment-service - Operation: payment_processed - Processing time: 66ms - RequestID: l2335af313b +2025-06-18T13:53:51.081Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 11ms - IP: 192.168.158.144 - User: user_1098 - RequestID: bw8xv6qfb2a +2025-06-18T13:53:51.181Z [INFO] inventory-service - Auth event: login_failed - User: user_1091 - IP: 192.168.79.116 - RequestID: rimnv21j34k +2025-06-18T13:53:51.281Z [DEBUG] user-service - Database SELECT on products - Execution time: 106ms - Rows affected: 95 - RequestID: fhqqfkh5m2f +2025-06-18T13:53:51.381Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.13.72 - RequestID: i48g1lgh35c +2025-06-18T13:53:51.481Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 337ms - Rows affected: 97 - RequestID: q7qcou2z3r +2025-06-18T13:53:51.581Z [INFO] payment-service - DELETE /api/v1/users - Status: 401 - Response time: 42ms - IP: 192.168.144.38 - User: user_1061 - RequestID: v7v35db0i4i +2025-06-18T13:53:51.681Z [INFO] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 72ms - IP: 192.168.174.114 - User: user_1092 - RequestID: 7n6m5s0wicp +2025-06-18T13:53:51.781Z [INFO] user-service - Auth event: logout - User: user_1053 - IP: 192.168.79.143 - RequestID: 85v3fuuuyqw +2025-06-18T13:53:51.881Z [TRACE] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 2001ms - IP: 192.168.46.63 - User: user_1075 - RequestID: l74i9m7l6ci +2025-06-18T13:53:51.981Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 500 - Response time: 159ms - IP: 192.168.133.7 - User: user_1071 - RequestID: etges3b5jb4 +2025-06-18T13:53:52.081Z [INFO] order-service - Auth event: logout - User: user_1041 - IP: 192.168.97.87 - RequestID: zzb59t38q6 +2025-06-18T13:53:52.181Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 277ms - Rows affected: 72 - RequestID: 8f8pl5y4usy +2025-06-18T13:53:52.281Z [TRACE] user-service - Auth event: login_failed - User: user_1024 - IP: 192.168.68.158 - RequestID: xufk826eurb +2025-06-18T13:53:52.381Z [TRACE] notification-service - Database SELECT on products - Execution time: 465ms - Rows affected: 11 - RequestID: 35isjp1zib +2025-06-18T13:53:52.481Z [TRACE] user-service - Auth event: password_change - User: user_1090 - IP: 192.168.133.7 - RequestID: igzv4jkvunm +2025-06-18T13:53:52.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1062 - IP: 192.168.79.141 - RequestID: yas8td16jp +2025-06-18T13:53:52.681Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 620ms - RequestID: 6cwiwrofk89 +2025-06-18T13:53:52.781Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 512ms - RequestID: yv61gf083q +2025-06-18T13:53:52.881Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 72ms - Rows affected: 32 - RequestID: la109jx9349 +2025-06-18T13:53:52.981Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 109ms - IP: 192.168.44.5 - User: user_1090 - RequestID: u9mslx55rvq +2025-06-18T13:53:53.081Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 201 - Response time: 1459ms - IP: 192.168.68.158 - User: user_1076 - RequestID: btea98excvm +2025-06-18T13:53:53.181Z [INFO] order-service - Operation: webhook_sent - Processing time: 492ms - RequestID: 00a3bksllr0sf +2025-06-18T13:53:53.281Z [TRACE] order-service - Operation: notification_queued - Processing time: 402ms - RequestID: 8mxbch5x0n +2025-06-18T13:53:53.381Z [DEBUG] order-service - POST /api/v1/inventory - Status: 500 - Response time: 1154ms - IP: 192.168.138.123 - User: user_1010 - RequestID: ab6dhcq997j +2025-06-18T13:53:53.481Z [INFO] user-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.81.206 - RequestID: fkn0l64s3h7 +2025-06-18T13:53:53.581Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1869ms - IP: 192.168.187.199 - User: user_1036 - RequestID: fcdtnrxwdj +2025-06-18T13:53:53.681Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 219ms - Rows affected: 0 - RequestID: 7vjfwder5s +2025-06-18T13:53:53.781Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 83ms - RequestID: a6yqqzi9b0e +2025-06-18T13:53:53.881Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1183ms - IP: 192.168.46.63 - User: user_1058 - RequestID: w9opjytp5o +2025-06-18T13:53:53.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 109ms - RequestID: anfvw08o22p +2025-06-18T13:53:54.081Z [INFO] notification-service - Database UPDATE on users - Execution time: 5ms - Rows affected: 6 - RequestID: aq1j73kp6vj +2025-06-18T13:53:54.181Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 200 - Response time: 973ms - IP: 192.168.232.72 - User: user_1036 - RequestID: ckzr6hsuyqw +2025-06-18T13:53:54.281Z [TRACE] notification-service - Auth event: login_success - User: user_1099 - IP: 192.168.31.117 - RequestID: i99aiat1y6 +2025-06-18T13:53:54.381Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 181ms - RequestID: jweudtyp0kr +2025-06-18T13:53:54.481Z [DEBUG] notification-service - Operation: order_created - Processing time: 631ms - RequestID: iailyxua4h +2025-06-18T13:53:54.581Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.1.152 - RequestID: 92ufpx1l5qc +2025-06-18T13:53:54.681Z [INFO] notification-service - Operation: notification_queued - Processing time: 344ms - RequestID: m117aejz1c +2025-06-18T13:53:54.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 626ms - RequestID: klb4bktkchb +2025-06-18T13:53:54.881Z [INFO] notification-service - Auth event: password_change - User: user_1053 - IP: 192.168.36.218 - RequestID: ifqn89q2ssf +2025-06-18T13:53:54.981Z [INFO] inventory-service - PUT /api/v1/orders - Status: 400 - Response time: 1581ms - IP: 192.168.211.72 - User: user_1082 - RequestID: c9tts9xba7h +2025-06-18T13:53:55.081Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 232ms - RequestID: rlkn2ygddqa +2025-06-18T13:53:55.181Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 357ms - RequestID: a7i5x44i256 +2025-06-18T13:53:55.281Z [INFO] user-service - DELETE /api/v1/orders - Status: 400 - Response time: 250ms - IP: 192.168.189.103 - User: user_1011 - RequestID: h60rve3a83m +2025-06-18T13:53:55.381Z [DEBUG] order-service - Operation: order_created - Processing time: 517ms - RequestID: mnf1kjrkmg +2025-06-18T13:53:55.481Z [INFO] payment-service - Auth event: login_failed - User: user_1015 - IP: 192.168.147.171 - RequestID: pz9l9vwwzne +2025-06-18T13:53:55.581Z [INFO] user-service - Database DELETE on payments - Execution time: 255ms - Rows affected: 72 - RequestID: jcvomkc3u8s +2025-06-18T13:53:55.681Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 404 - Response time: 846ms - IP: 192.168.235.117 - User: user_1008 - RequestID: odiz6l2ehmm +2025-06-18T13:53:55.781Z [TRACE] payment-service - Auth event: login_success - User: user_1071 - IP: 192.168.11.60 - RequestID: qmnvx7b3ecl +2025-06-18T13:53:55.881Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1881ms - IP: 192.168.79.116 - User: user_1021 - RequestID: xr0fqffx2jl +2025-06-18T13:53:55.981Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1144ms - IP: 192.168.11.60 - User: user_1028 - RequestID: yegfh25onys +2025-06-18T13:53:56.081Z [TRACE] order-service - Database UPDATE on orders - Execution time: 237ms - Rows affected: 38 - RequestID: p1dl7if7w1g +2025-06-18T13:53:56.181Z [TRACE] auth-service - Database UPDATE on users - Execution time: 12ms - Rows affected: 8 - RequestID: 1v0eq0jc2dh +2025-06-18T13:53:56.281Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1984ms - IP: 192.168.211.72 - User: user_1052 - RequestID: l1lncwg1s0b +2025-06-18T13:53:56.381Z [TRACE] auth-service - Operation: cache_miss - Processing time: 247ms - RequestID: ixzaca7xu1f +2025-06-18T13:53:56.481Z [DEBUG] payment-service - Auth event: login_success - User: user_1089 - IP: 192.168.242.165 - RequestID: 6mc2s2meqbp +2025-06-18T13:53:56.581Z [INFO] order-service - Operation: order_created - Processing time: 954ms - RequestID: z61qttb2itj +2025-06-18T13:53:56.681Z [TRACE] payment-service - Operation: cache_miss - Processing time: 806ms - RequestID: ip0sepzulu +2025-06-18T13:53:56.781Z [TRACE] auth-service - GET /api/v1/users - Status: 400 - Response time: 1474ms - IP: 192.168.1.152 - User: user_1049 - RequestID: 5mx3m29jb5s +2025-06-18T13:53:56.881Z [INFO] payment-service - Operation: webhook_sent - Processing time: 518ms - RequestID: ezs93g26nfd +2025-06-18T13:53:56.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1039 - IP: 192.168.44.5 - RequestID: aufesbf68nr +2025-06-18T13:53:57.081Z [TRACE] order-service - Auth event: login_success - User: user_1082 - IP: 192.168.159.94 - RequestID: wy36o7ti6ff +2025-06-18T13:53:57.181Z [INFO] user-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.232.72 - RequestID: mhkjat2i9tl +2025-06-18T13:53:57.281Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 58ms - Rows affected: 52 - RequestID: icb5ck0yko +2025-06-18T13:53:57.381Z [TRACE] user-service - PUT /api/v1/orders - Status: 400 - Response time: 601ms - IP: 192.168.97.87 - User: user_1024 - RequestID: 0na0qx0zr2hl +2025-06-18T13:53:57.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 334ms - RequestID: fucwpp7aux +2025-06-18T13:53:57.581Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 785ms - RequestID: pswmza7obhh +2025-06-18T13:53:57.681Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 496ms - Rows affected: 21 - RequestID: pnkmckkho5 +2025-06-18T13:53:57.781Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 653ms - RequestID: gwqn0udmthl +2025-06-18T13:53:57.881Z [TRACE] payment-service - Auth event: login_failed - User: user_1026 - IP: 192.168.64.33 - RequestID: 8zos2l51qcl +2025-06-18T13:53:57.981Z [INFO] payment-service - DELETE /api/v1/orders - Status: 401 - Response time: 1063ms - IP: 192.168.242.165 - User: user_1099 - RequestID: 9jh6hm0pfth +2025-06-18T13:53:58.081Z [TRACE] notification-service - Database INSERT on payments - Execution time: 8ms - Rows affected: 66 - RequestID: yv96m1tx8yh +2025-06-18T13:53:58.181Z [DEBUG] order-service - POST /api/v1/orders - Status: 502 - Response time: 1503ms - IP: 192.168.79.143 - User: user_1034 - RequestID: vdzpdvnqf3o +2025-06-18T13:53:58.281Z [TRACE] payment-service - Operation: notification_queued - Processing time: 111ms - RequestID: myfjmmiy8 +2025-06-18T13:53:58.381Z [TRACE] auth-service - Operation: cache_hit - Processing time: 1041ms - RequestID: 0656kaim0ole +2025-06-18T13:53:58.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 433ms - RequestID: 8fgsn2s58hu +2025-06-18T13:53:58.581Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.113.218 - RequestID: rtjs5eosjg +2025-06-18T13:53:58.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 385ms - RequestID: znkwgbdwz5 +2025-06-18T13:53:58.781Z [DEBUG] payment-service - Auth event: login_failed - User: user_1089 - IP: 192.168.46.63 - RequestID: f9k71m8z9r +2025-06-18T13:53:58.881Z [DEBUG] user-service - Operation: payment_processed - Processing time: 474ms - RequestID: 0zmuk4qeugyg +2025-06-18T13:53:58.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 512ms - RequestID: g9zgyb9r3ge +2025-06-18T13:53:59.081Z [TRACE] order-service - Auth event: login_success - User: user_1020 - IP: 192.168.104.37 - RequestID: py6r2u89fb +2025-06-18T13:53:59.181Z [TRACE] auth-service - Operation: cache_miss - Processing time: 337ms - RequestID: 1mabrqjnb28 +2025-06-18T13:53:59.281Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 201 - Response time: 487ms - IP: 192.168.144.38 - User: user_1076 - RequestID: 4ehneq4fgmd +2025-06-18T13:53:59.381Z [TRACE] auth-service - Auth event: logout - User: user_1013 - IP: 192.168.167.32 - RequestID: zu7dqqp37c +2025-06-18T13:53:59.481Z [INFO] auth-service - DELETE /api/v1/users - Status: 400 - Response time: 1430ms - IP: 192.168.85.229 - User: user_1051 - RequestID: usjn6xil5y +2025-06-18T13:53:59.581Z [TRACE] payment-service - Auth event: password_change - User: user_1044 - IP: 192.168.170.215 - RequestID: 5ih77xlzog9 +2025-06-18T13:53:59.681Z [INFO] notification-service - Operation: cache_hit - Processing time: 662ms - RequestID: 7v9uu8f1646 +2025-06-18T13:53:59.781Z [TRACE] user-service - Auth event: login_failed - User: user_1034 - IP: 192.168.44.5 - RequestID: 2kyqzoxxhe +2025-06-18T13:53:59.881Z [TRACE] user-service - Database SELECT on products - Execution time: 352ms - Rows affected: 0 - RequestID: gzxf9nr9tzk +2025-06-18T13:53:59.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 990ms - RequestID: x48i5uo733o +2025-06-18T13:54:00.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.79.141 - RequestID: er2d136cj94 +2025-06-18T13:54:00.181Z [INFO] inventory-service - Database SELECT on orders - Execution time: 49ms - Rows affected: 14 - RequestID: racwetd4yw +2025-06-18T13:54:00.281Z [INFO] auth-service - Database INSERT on users - Execution time: 477ms - Rows affected: 14 - RequestID: tinzarpjfpq +2025-06-18T13:54:00.381Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 530ms - RequestID: 3ypgblwpk31 +2025-06-18T13:54:00.481Z [INFO] inventory-service - GET /api/v1/users - Status: 400 - Response time: 500ms - IP: 192.168.138.123 - User: user_1019 - RequestID: 2yfvm8p7f1f +2025-06-18T13:54:00.581Z [DEBUG] order-service - Operation: email_sent - Processing time: 575ms - RequestID: 2l6e0rsqhl7 +2025-06-18T13:54:00.681Z [INFO] user-service - Database UPDATE on products - Execution time: 188ms - Rows affected: 28 - RequestID: eeyw0dfkrkg +2025-06-18T13:54:00.781Z [INFO] user-service - PATCH /api/v1/payments - Status: 201 - Response time: 1556ms - IP: 192.168.227.77 - User: user_1040 - RequestID: 7z9nrsexyuv +2025-06-18T13:54:00.881Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 77ms - Rows affected: 58 - RequestID: w204v8nyiht +2025-06-18T13:54:00.981Z [INFO] payment-service - Database INSERT on users - Execution time: 100ms - Rows affected: 5 - RequestID: 42hjzs7fufg +2025-06-18T13:54:01.081Z [DEBUG] payment-service - Operation: order_created - Processing time: 642ms - RequestID: 1s464y0zqas +2025-06-18T13:54:01.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1093 - IP: 192.168.247.134 - RequestID: g2lmnl7bhg +2025-06-18T13:54:01.281Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.36.218 - RequestID: 12y5lxyg9vr +2025-06-18T13:54:01.381Z [INFO] notification-service - Operation: cache_miss - Processing time: 268ms - RequestID: 4k9b0pv98c +2025-06-18T13:54:01.481Z [TRACE] auth-service - Operation: email_sent - Processing time: 810ms - RequestID: q3gmw2lavop +2025-06-18T13:54:01.581Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 404 - Response time: 1195ms - IP: 192.168.97.87 - User: user_1035 - RequestID: p2ww10sd1ah +2025-06-18T13:54:01.681Z [INFO] order-service - Auth event: login_failed - User: user_1066 - IP: 192.168.64.33 - RequestID: 1s2i6n4scxt +2025-06-18T13:54:01.781Z [TRACE] user-service - Operation: payment_processed - Processing time: 322ms - RequestID: k2i8cdd8w8 +2025-06-18T13:54:01.881Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 115ms - Rows affected: 82 - RequestID: kvh811qo549 +2025-06-18T13:54:01.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 124ms - RequestID: 1nyitspz0kb +2025-06-18T13:54:02.081Z [DEBUG] payment-service - Operation: order_created - Processing time: 498ms - RequestID: sjdekxwobcl +2025-06-18T13:54:02.181Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 791ms - RequestID: a4z97vwynxe +2025-06-18T13:54:02.281Z [INFO] notification-service - Operation: cache_miss - Processing time: 859ms - RequestID: bosu3ef8vnq +2025-06-18T13:54:02.381Z [INFO] payment-service - Database INSERT on orders - Execution time: 36ms - Rows affected: 92 - RequestID: lpvb0ug20h +2025-06-18T13:54:02.481Z [INFO] auth-service - Database SELECT on sessions - Execution time: 379ms - Rows affected: 32 - RequestID: j2junoh8ks +2025-06-18T13:54:02.581Z [INFO] user-service - Auth event: login_success - User: user_1039 - IP: 192.168.211.72 - RequestID: w9ki00zm82m +2025-06-18T13:54:02.681Z [INFO] inventory-service - Operation: email_sent - Processing time: 938ms - RequestID: 19l154psx7b +2025-06-18T13:54:02.781Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 21ms - Rows affected: 52 - RequestID: 2icl01fdlzp +2025-06-18T13:54:02.881Z [TRACE] order-service - Operation: email_sent - Processing time: 473ms - RequestID: 63zaety0vj3 +2025-06-18T13:54:02.981Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 410ms - Rows affected: 48 - RequestID: 07pxpoorlnsc +2025-06-18T13:54:03.081Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 503 - Response time: 1860ms - IP: 192.168.14.77 - User: user_1026 - RequestID: 95pfwbu34fn +2025-06-18T13:54:03.181Z [INFO] user-service - Database UPDATE on payments - Execution time: 183ms - Rows affected: 36 - RequestID: cwso9xaug2r +2025-06-18T13:54:03.281Z [TRACE] order-service - Auth event: logout - User: user_1040 - IP: 192.168.170.215 - RequestID: s4v91s81wi +2025-06-18T13:54:03.381Z [TRACE] user-service - Operation: payment_processed - Processing time: 824ms - RequestID: jlu2zelhfpm +2025-06-18T13:54:03.481Z [TRACE] user-service - DELETE /api/v1/orders - Status: 401 - Response time: 1192ms - IP: 192.168.235.117 - User: user_1041 - RequestID: c6nujp7hdlf +2025-06-18T13:54:03.581Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 400 - Response time: 1269ms - IP: 192.168.144.38 - User: user_1089 - RequestID: mlchi5hxjk +2025-06-18T13:54:03.681Z [INFO] auth-service - Operation: webhook_sent - Processing time: 911ms - RequestID: fvwd1hlekuw +2025-06-18T13:54:03.781Z [TRACE] auth-service - Database INSERT on payments - Execution time: 396ms - Rows affected: 76 - RequestID: 4u9hwuewut +2025-06-18T13:54:03.881Z [INFO] payment-service - Operation: notification_queued - Processing time: 511ms - RequestID: pfd1kcjydv +2025-06-18T13:54:03.981Z [INFO] notification-service - Auth event: login_success - User: user_1006 - IP: 192.168.1.152 - RequestID: ekaudsxlr27 +2025-06-18T13:54:04.081Z [INFO] order-service - POST /api/v1/auth/logout - Status: 502 - Response time: 499ms - IP: 192.168.53.133 - User: user_1077 - RequestID: 8qib9x6tjn +2025-06-18T13:54:04.181Z [TRACE] order-service - Operation: cache_hit - Processing time: 685ms - RequestID: bvx6b3ozw0u +2025-06-18T13:54:04.281Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 201 - Response time: 218ms - IP: 192.168.31.117 - User: user_1003 - RequestID: yrlisz60y9 +2025-06-18T13:54:04.381Z [TRACE] auth-service - Operation: email_sent - Processing time: 650ms - RequestID: 6owgq1il4nv +2025-06-18T13:54:04.481Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 30ms - Rows affected: 97 - RequestID: rrt8br15f2 +2025-06-18T13:54:04.581Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 503 - Response time: 33ms - IP: 192.168.181.225 - User: user_1056 - RequestID: lu9p0d0dtj +2025-06-18T13:54:04.681Z [INFO] user-service - Database UPDATE on sessions - Execution time: 327ms - Rows affected: 54 - RequestID: fuorge9k7r8 +2025-06-18T13:54:04.781Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 500 - Response time: 1156ms - IP: 192.168.64.33 - User: user_1093 - RequestID: 2kjeftxl4kt +2025-06-18T13:54:04.881Z [INFO] notification-service - PATCH /api/v1/payments - Status: 401 - Response time: 775ms - IP: 192.168.194.41 - User: user_1057 - RequestID: tmqbajaoztf +2025-06-18T13:54:04.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1073 - IP: 192.168.31.117 - RequestID: ebaev7lzgzc +2025-06-18T13:54:05.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.181.225 - RequestID: 2vbs5f0quve +2025-06-18T13:54:05.181Z [INFO] notification-service - Auth event: password_change - User: user_1008 - IP: 192.168.147.171 - RequestID: 0iklwpgnvybj +2025-06-18T13:54:05.281Z [TRACE] inventory-service - Database SELECT on products - Execution time: 256ms - Rows affected: 37 - RequestID: c5iorvv2mzn +2025-06-18T13:54:05.381Z [DEBUG] order-service - PUT /api/v1/payments - Status: 404 - Response time: 274ms - IP: 192.168.13.72 - User: user_1055 - RequestID: 7r08a2wqhwk +2025-06-18T13:54:05.481Z [INFO] auth-service - Operation: notification_queued - Processing time: 678ms - RequestID: 2egdeb3vmx1 +2025-06-18T13:54:05.581Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 503ms - RequestID: vnk43hswmw +2025-06-18T13:54:05.681Z [TRACE] auth-service - Auth event: password_change - User: user_1075 - IP: 192.168.81.206 - RequestID: rm4uk4ztzd +2025-06-18T13:54:05.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 908ms - RequestID: 9ajom2592mn +2025-06-18T13:54:05.881Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1304ms - IP: 192.168.194.41 - User: user_1038 - RequestID: ezih7rg5svi +2025-06-18T13:54:05.981Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 401 - Response time: 570ms - IP: 192.168.46.63 - User: user_1075 - RequestID: g2tb5dcrkj7 +2025-06-18T13:54:06.081Z [DEBUG] user-service - Database INSERT on users - Execution time: 355ms - Rows affected: 93 - RequestID: yeex1i9w85 +2025-06-18T13:54:06.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.53.133 - RequestID: r11jttnj9p +2025-06-18T13:54:06.281Z [INFO] payment-service - Database SELECT on products - Execution time: 398ms - Rows affected: 33 - RequestID: 6y8k99glefo +2025-06-18T13:54:06.381Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 318ms - Rows affected: 56 - RequestID: wdeuyssdp1t +2025-06-18T13:54:06.481Z [TRACE] payment-service - POST /api/v1/payments - Status: 201 - Response time: 467ms - IP: 192.168.227.233 - User: user_1017 - RequestID: r56gs7g0u5b +2025-06-18T13:54:06.581Z [TRACE] notification-service - Auth event: password_change - User: user_1079 - IP: 192.168.100.240 - RequestID: fp8p3wm41qi +2025-06-18T13:54:06.681Z [TRACE] user-service - Database SELECT on sessions - Execution time: 430ms - Rows affected: 70 - RequestID: mdv9ywrafwg +2025-06-18T13:54:06.781Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.1.152 - RequestID: bhd6f1b61mv +2025-06-18T13:54:06.881Z [TRACE] notification-service - Auth event: logout - User: user_1024 - IP: 192.168.14.77 - RequestID: 4akqr7n8kos +2025-06-18T13:54:06.981Z [DEBUG] order-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.79.116 - RequestID: xz8uo9qedjt +2025-06-18T13:54:07.081Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.85.229 - RequestID: uvbmgx4672 +2025-06-18T13:54:07.181Z [TRACE] order-service - Database SELECT on products - Execution time: 45ms - Rows affected: 14 - RequestID: rmmx246hyn +2025-06-18T13:54:07.281Z [TRACE] inventory-service - POST /api/v1/users - Status: 200 - Response time: 1095ms - IP: 192.168.227.77 - User: user_1001 - RequestID: dw7mgoau6jt +2025-06-18T13:54:07.381Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 406ms - Rows affected: 79 - RequestID: xvgxxr1slo +2025-06-18T13:54:07.481Z [TRACE] payment-service - Operation: notification_queued - Processing time: 687ms - RequestID: y7sitrsmvq +2025-06-18T13:54:07.581Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 353ms - RequestID: ct9eapl2zpk +2025-06-18T13:54:07.681Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 160ms - Rows affected: 82 - RequestID: 7u9l2am9fbf +2025-06-18T13:54:07.781Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 418ms - Rows affected: 78 - RequestID: d2d8ov3wm16 +2025-06-18T13:54:07.881Z [TRACE] auth-service - Database SELECT on orders - Execution time: 188ms - Rows affected: 26 - RequestID: i1egh91tuf8 +2025-06-18T13:54:07.981Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 1704ms - IP: 192.168.31.117 - User: user_1071 - RequestID: yrgitbh1s9 +2025-06-18T13:54:08.081Z [DEBUG] auth-service - Database SELECT on users - Execution time: 33ms - Rows affected: 56 - RequestID: kai5zmh5xy +2025-06-18T13:54:08.181Z [TRACE] payment-service - Operation: order_created - Processing time: 509ms - RequestID: en21yg9i83 +2025-06-18T13:54:08.281Z [DEBUG] notification-service - Database SELECT on products - Execution time: 383ms - Rows affected: 35 - RequestID: zouvuha2mf +2025-06-18T13:54:08.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 403ms - RequestID: m75li4n3oh +2025-06-18T13:54:08.481Z [TRACE] inventory-service - POST /api/v1/users - Status: 502 - Response time: 908ms - IP: 192.168.158.144 - User: user_1065 - RequestID: i81d3coh7zn +2025-06-18T13:54:08.581Z [INFO] notification-service - Operation: notification_queued - Processing time: 522ms - RequestID: kaj9j2b7q1h +2025-06-18T13:54:08.681Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 713ms - IP: 192.168.100.240 - User: user_1016 - RequestID: 0gqqjo6y6rs +2025-06-18T13:54:08.781Z [DEBUG] notification-service - Operation: email_sent - Processing time: 504ms - RequestID: skhub9pnejs +2025-06-18T13:54:08.881Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 32ms - Rows affected: 98 - RequestID: g1ahu2z38l4 +2025-06-18T13:54:08.981Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 156ms - Rows affected: 90 - RequestID: l4p6ifjlc +2025-06-18T13:54:09.081Z [TRACE] inventory-service - POST /api/v1/payments - Status: 502 - Response time: 1248ms - IP: 192.168.147.171 - User: user_1047 - RequestID: ns0h6f2ivl +2025-06-18T13:54:09.181Z [DEBUG] auth-service - PUT /api/v1/users - Status: 200 - Response time: 958ms - IP: 192.168.11.60 - User: user_1079 - RequestID: ebssjaku6wt +2025-06-18T13:54:09.281Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 502 - Response time: 1895ms - IP: 192.168.144.38 - User: user_1067 - RequestID: 5zakc2942qd +2025-06-18T13:54:09.381Z [TRACE] notification-service - Operation: cache_hit - Processing time: 358ms - RequestID: c5c35qapjuf +2025-06-18T13:54:09.481Z [INFO] inventory-service - Auth event: logout - User: user_1037 - IP: 192.168.79.141 - RequestID: izkjn4s3fhn +2025-06-18T13:54:09.581Z [INFO] user-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1474ms - IP: 192.168.167.32 - User: user_1067 - RequestID: pjohbaha6pj +2025-06-18T13:54:09.681Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1492ms - IP: 192.168.232.72 - User: user_1030 - RequestID: xxnacirgt9j +2025-06-18T13:54:09.781Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1518ms - IP: 192.168.32.38 - User: user_1089 - RequestID: kt68r3iwmk +2025-06-18T13:54:09.881Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 319ms - Rows affected: 27 - RequestID: a7r1cw8xk89 +2025-06-18T13:54:09.981Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 211ms - RequestID: 2nvz90rk868 +2025-06-18T13:54:10.081Z [TRACE] order-service - Operation: inventory_updated - Processing time: 950ms - RequestID: ikboo5vxeh +2025-06-18T13:54:10.181Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 850ms - IP: 192.168.81.206 - User: user_1032 - RequestID: k3mkswiu6u +2025-06-18T13:54:10.281Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 994ms - RequestID: chgmhc7cjj6 +2025-06-18T13:54:10.381Z [TRACE] user-service - Operation: inventory_updated - Processing time: 887ms - RequestID: ahr7b9ou2b +2025-06-18T13:54:10.481Z [INFO] auth-service - GET /api/v1/users - Status: 503 - Response time: 916ms - IP: 192.168.227.77 - User: user_1094 - RequestID: vz16nckr8lj +2025-06-18T13:54:10.581Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 404 - Response time: 710ms - IP: 192.168.11.60 - User: user_1015 - RequestID: 730qw31btjh +2025-06-18T13:54:10.681Z [INFO] auth-service - Database SELECT on products - Execution time: 344ms - Rows affected: 38 - RequestID: ovubegl1ghq +2025-06-18T13:54:10.781Z [INFO] order-service - Operation: webhook_sent - Processing time: 853ms - RequestID: qet28d1qrt +2025-06-18T13:54:10.881Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 400 - Response time: 1582ms - IP: 192.168.181.225 - User: user_1028 - RequestID: c2d8hafnfnq +2025-06-18T13:54:10.981Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 503 - Response time: 243ms - IP: 192.168.194.41 - User: user_1069 - RequestID: gis9ujbu4dj +2025-06-18T13:54:11.081Z [TRACE] payment-service - Operation: notification_queued - Processing time: 511ms - RequestID: z3siemudw9 +2025-06-18T13:54:11.181Z [INFO] user-service - Auth event: login_failed - User: user_1054 - IP: 192.168.229.123 - RequestID: 5nxmr95lkw +2025-06-18T13:54:11.281Z [INFO] inventory-service - Database SELECT on orders - Execution time: 8ms - Rows affected: 51 - RequestID: buehmvak8np +2025-06-18T13:54:11.381Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 46ms - Rows affected: 31 - RequestID: jmjqvdjfrw +2025-06-18T13:54:11.481Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 491ms - Rows affected: 83 - RequestID: 4d70bsubiiv +2025-06-18T13:54:11.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.104.37 - RequestID: i8epd1cxfln +2025-06-18T13:54:11.681Z [TRACE] inventory-service - Database DELETE on users - Execution time: 286ms - Rows affected: 50 - RequestID: 5fg9l0hnnm +2025-06-18T13:54:11.781Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 400 - Response time: 27ms - IP: 192.168.147.171 - User: user_1072 - RequestID: ht960dert8d +2025-06-18T13:54:11.881Z [INFO] order-service - Operation: email_sent - Processing time: 282ms - RequestID: okgza1477al +2025-06-18T13:54:11.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1042 - IP: 192.168.31.117 - RequestID: io2biuknx8g +2025-06-18T13:54:12.081Z [DEBUG] payment-service - Auth event: logout - User: user_1006 - IP: 192.168.1.152 - RequestID: u0jfu3alvzq +2025-06-18T13:54:12.181Z [TRACE] notification-service - Operation: payment_processed - Processing time: 84ms - RequestID: kuzk1u99aan +2025-06-18T13:54:12.281Z [DEBUG] payment-service - Auth event: login_success - User: user_1036 - IP: 192.168.33.76 - RequestID: h5erxvegl5h +2025-06-18T13:54:12.381Z [INFO] auth-service - Database DELETE on products - Execution time: 274ms - Rows affected: 62 - RequestID: jxg898ldpci +2025-06-18T13:54:12.481Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 200 - Response time: 1009ms - IP: 192.168.97.87 - User: user_1009 - RequestID: jpesvv6vss +2025-06-18T13:54:12.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.232.72 - RequestID: jcxpwdjccl +2025-06-18T13:54:12.681Z [DEBUG] payment-service - GET /api/v1/payments - Status: 401 - Response time: 406ms - IP: 192.168.170.215 - User: user_1004 - RequestID: aagy9hq60o8 +2025-06-18T13:54:12.781Z [TRACE] payment-service - Database INSERT on users - Execution time: 376ms - Rows affected: 28 - RequestID: a7qdfnz1sbo +2025-06-18T13:54:12.881Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 428ms - Rows affected: 81 - RequestID: 2rglvcxoxit +2025-06-18T13:54:12.981Z [INFO] auth-service - Auth event: logout - User: user_1096 - IP: 192.168.133.7 - RequestID: mrp6bq3vel +2025-06-18T13:54:13.081Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 200 - Response time: 1752ms - IP: 192.168.189.103 - User: user_1011 - RequestID: nf237tu75fa +2025-06-18T13:54:13.181Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1336ms - IP: 192.168.68.158 - User: user_1072 - RequestID: 16yves2m15o +2025-06-18T13:54:13.281Z [INFO] notification-service - Database DELETE on payments - Execution time: 344ms - Rows affected: 95 - RequestID: riuws7188zd +2025-06-18T13:54:13.381Z [INFO] user-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1131ms - IP: 192.168.147.171 - User: user_1010 - RequestID: wifos2o688e +2025-06-18T13:54:13.481Z [DEBUG] user-service - Operation: cache_miss - Processing time: 243ms - RequestID: yo31lk87s0m +2025-06-18T13:54:13.581Z [DEBUG] notification-service - Database DELETE on products - Execution time: 481ms - Rows affected: 76 - RequestID: 9d2whu0wgoj +2025-06-18T13:54:13.681Z [TRACE] user-service - POST /api/v1/orders - Status: 500 - Response time: 1514ms - IP: 192.168.147.171 - User: user_1081 - RequestID: bzwvhqxfs6k +2025-06-18T13:54:13.781Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 318ms - Rows affected: 27 - RequestID: jatbz8m7iw +2025-06-18T13:54:13.881Z [INFO] inventory-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.167.32 - RequestID: ekh9spnvusp +2025-06-18T13:54:13.981Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 503 - Response time: 626ms - IP: 192.168.68.128 - User: user_1029 - RequestID: vfo9oqhfeuf +2025-06-18T13:54:14.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1063 - IP: 192.168.170.215 - RequestID: cdln60n32wf +2025-06-18T13:54:14.181Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 278ms - RequestID: hkbusjag3ao +2025-06-18T13:54:14.281Z [INFO] inventory-service - Database INSERT on orders - Execution time: 497ms - Rows affected: 92 - RequestID: p89sw9go81q +2025-06-18T13:54:14.381Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 404 - Response time: 1198ms - IP: 192.168.46.63 - User: user_1053 - RequestID: li7s5qssm2 +2025-06-18T13:54:14.481Z [DEBUG] order-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.11.60 - RequestID: 8s66e64yu8l +2025-06-18T13:54:14.581Z [INFO] user-service - Database DELETE on payments - Execution time: 434ms - Rows affected: 56 - RequestID: teun3u5i3o +2025-06-18T13:54:14.681Z [DEBUG] order-service - Operation: email_sent - Processing time: 1042ms - RequestID: ozwkygydh2q +2025-06-18T13:54:14.781Z [INFO] user-service - Operation: order_created - Processing time: 901ms - RequestID: wkn5gniirqf +2025-06-18T13:54:14.881Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 534ms - RequestID: w1f2l66w6ld +2025-06-18T13:54:14.981Z [TRACE] user-service - Auth event: logout - User: user_1061 - IP: 192.168.240.169 - RequestID: wpxz4cziwgr +2025-06-18T13:54:15.081Z [DEBUG] auth-service - POST /api/v1/users - Status: 503 - Response time: 1518ms - IP: 192.168.36.218 - User: user_1033 - RequestID: kp19skponr +2025-06-18T13:54:15.181Z [TRACE] order-service - Auth event: login_success - User: user_1060 - IP: 192.168.79.116 - RequestID: gva5vyjyapd +2025-06-18T13:54:15.281Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.159.94 - RequestID: ulg5aigfar +2025-06-18T13:54:15.381Z [TRACE] payment-service - Operation: cache_miss - Processing time: 1009ms - RequestID: 107d916yqe9l +2025-06-18T13:54:15.481Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1821ms - IP: 192.168.235.117 - User: user_1053 - RequestID: 0dwx9q7lj6i8 +2025-06-18T13:54:15.581Z [INFO] payment-service - Database INSERT on products - Execution time: 297ms - Rows affected: 93 - RequestID: x4i5tzq5wq +2025-06-18T13:54:15.681Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 253ms - Rows affected: 0 - RequestID: dfahkvtpvmt +2025-06-18T13:54:15.781Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 435ms - Rows affected: 2 - RequestID: gl9m7huehd5 +2025-06-18T13:54:15.881Z [DEBUG] user-service - Auth event: logout - User: user_1013 - IP: 192.168.159.94 - RequestID: n5jrgnxudan +2025-06-18T13:54:15.981Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 401 - Response time: 1348ms - IP: 192.168.194.41 - User: user_1085 - RequestID: nrqi1x8z34b +2025-06-18T13:54:16.081Z [TRACE] order-service - POST /api/v1/orders - Status: 500 - Response time: 783ms - IP: 192.168.32.38 - User: user_1012 - RequestID: 10zn4yk3nrqh +2025-06-18T13:54:16.181Z [INFO] notification-service - Auth event: login_success - User: user_1090 - IP: 192.168.79.116 - RequestID: ku6sdf0qrhi +2025-06-18T13:54:16.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 738ms - RequestID: 1tt0mtl6su +2025-06-18T13:54:16.381Z [INFO] order-service - PUT /api/v1/orders - Status: 502 - Response time: 1363ms - IP: 192.168.138.123 - User: user_1010 - RequestID: 6m3uz2plznx +2025-06-18T13:54:16.481Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 139ms - Rows affected: 3 - RequestID: s3fhxujqyu +2025-06-18T13:54:16.581Z [DEBUG] user-service - Operation: order_created - Processing time: 76ms - RequestID: 8pl3901djmb +2025-06-18T13:54:16.681Z [INFO] payment-service - Auth event: logout - User: user_1026 - IP: 192.168.242.165 - RequestID: a6zm9w8dw1p +2025-06-18T13:54:16.781Z [INFO] payment-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.100.240 - RequestID: z87pcjqeqb +2025-06-18T13:54:16.881Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 110ms - RequestID: vq58d2z7epk +2025-06-18T13:54:16.981Z [DEBUG] order-service - Database INSERT on products - Execution time: 274ms - Rows affected: 9 - RequestID: d309rgyhw4l +2025-06-18T13:54:17.081Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1081 - IP: 192.168.174.114 - RequestID: j0igxndhntd +2025-06-18T13:54:17.181Z [DEBUG] order-service - GET /api/v1/orders - Status: 201 - Response time: 387ms - IP: 192.168.79.143 - User: user_1050 - RequestID: h0rq5jixcoo +2025-06-18T13:54:17.281Z [TRACE] payment-service - Operation: order_created - Processing time: 59ms - RequestID: rna045rvg9o +2025-06-18T13:54:17.381Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 403 - Response time: 1629ms - IP: 192.168.46.63 - User: user_1064 - RequestID: xf8j9wsqyrr +2025-06-18T13:54:17.481Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 467ms - Rows affected: 9 - RequestID: z17wyshs89t +2025-06-18T13:54:17.581Z [DEBUG] auth-service - Auth event: logout - User: user_1098 - IP: 192.168.11.60 - RequestID: 3nauu1rwwrc +2025-06-18T13:54:17.681Z [TRACE] inventory-service - POST /api/v1/payments - Status: 400 - Response time: 1075ms - IP: 192.168.79.143 - User: user_1083 - RequestID: 4cu8jrsfh9s +2025-06-18T13:54:17.781Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 427ms - Rows affected: 76 - RequestID: focwwxsipe5 +2025-06-18T13:54:17.881Z [INFO] auth-service - Auth event: logout - User: user_1004 - IP: 192.168.247.134 - RequestID: d9ey3r0kgcc +2025-06-18T13:54:17.981Z [DEBUG] notification-service - Database SELECT on products - Execution time: 408ms - Rows affected: 28 - RequestID: to17imupq3q +2025-06-18T13:54:18.081Z [INFO] auth-service - Auth event: logout - User: user_1022 - IP: 192.168.79.116 - RequestID: rb0jg9uhd89 +2025-06-18T13:54:18.181Z [DEBUG] user-service - Database DELETE on orders - Execution time: 211ms - Rows affected: 28 - RequestID: ucrv06p5sql +2025-06-18T13:54:18.281Z [TRACE] user-service - Auth event: login_success - User: user_1052 - IP: 192.168.14.77 - RequestID: 3i6gqz6rvkb +2025-06-18T13:54:18.381Z [INFO] user-service - Operation: cache_miss - Processing time: 132ms - RequestID: o1hqvr1i2d +2025-06-18T13:54:18.481Z [TRACE] auth-service - Operation: order_created - Processing time: 746ms - RequestID: mip8puio7d +2025-06-18T13:54:18.581Z [INFO] inventory-service - POST /api/v1/orders - Status: 502 - Response time: 1130ms - IP: 192.168.64.33 - User: user_1043 - RequestID: 6np4a704h3x +2025-06-18T13:54:18.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 379ms - RequestID: cy0ee7b0rgi +2025-06-18T13:54:18.781Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 108ms - Rows affected: 13 - RequestID: ysu7mfmmn59 +2025-06-18T13:54:18.881Z [INFO] order-service - Operation: inventory_updated - Processing time: 265ms - RequestID: o75impwoo6d +2025-06-18T13:54:18.981Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 158ms - Rows affected: 13 - RequestID: pjneflj5pps +2025-06-18T13:54:19.081Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 21ms - Rows affected: 71 - RequestID: xy490s3j43 +2025-06-18T13:54:19.181Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 209ms - Rows affected: 91 - RequestID: saw7886jn6n +2025-06-18T13:54:19.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 535ms - RequestID: i6va0tffoua +2025-06-18T13:54:19.381Z [INFO] notification-service - PUT /api/v1/inventory - Status: 401 - Response time: 1474ms - IP: 192.168.85.229 - User: user_1098 - RequestID: jn6fkq2grs9 +2025-06-18T13:54:19.481Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 74ms - Rows affected: 36 - RequestID: doxhnfddahv +2025-06-18T13:54:19.581Z [INFO] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 1752ms - IP: 192.168.227.77 - User: user_1015 - RequestID: r0pp918m3y +2025-06-18T13:54:19.681Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 455ms - Rows affected: 39 - RequestID: p1r7kfo63pr +2025-06-18T13:54:19.781Z [INFO] order-service - Auth event: login_failed - User: user_1036 - IP: 192.168.11.60 - RequestID: c4pdhskp5q7 +2025-06-18T13:54:19.881Z [INFO] order-service - Database DELETE on sessions - Execution time: 445ms - Rows affected: 10 - RequestID: k53rqatxu89 +2025-06-18T13:54:19.981Z [INFO] payment-service - Database SELECT on products - Execution time: 298ms - Rows affected: 98 - RequestID: wmrtifvvvsk +2025-06-18T13:54:20.081Z [INFO] order-service - Database DELETE on users - Execution time: 145ms - Rows affected: 19 - RequestID: 65utslt9dlf +2025-06-18T13:54:20.181Z [DEBUG] order-service - Operation: notification_queued - Processing time: 426ms - RequestID: zywneqrcspm +2025-06-18T13:54:20.281Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 400 - Response time: 191ms - IP: 192.168.79.141 - User: user_1017 - RequestID: 5u0bmuywkqe +2025-06-18T13:54:20.381Z [TRACE] order-service - Auth event: login_failed - User: user_1090 - IP: 192.168.158.144 - RequestID: 7y3o107waq +2025-06-18T13:54:20.481Z [DEBUG] user-service - Operation: order_created - Processing time: 721ms - RequestID: jvrgwika92 +2025-06-18T13:54:20.581Z [TRACE] user-service - Operation: inventory_updated - Processing time: 690ms - RequestID: uk9x52eibqm +2025-06-18T13:54:20.681Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1451ms - IP: 192.168.79.141 - User: user_1052 - RequestID: 3cb0yx0y00y +2025-06-18T13:54:20.781Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 62ms - Rows affected: 20 - RequestID: d8pvcj1ibx6 +2025-06-18T13:54:20.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1007 - IP: 192.168.240.169 - RequestID: 9yza56nohb +2025-06-18T13:54:20.981Z [TRACE] order-service - PUT /api/v1/orders - Status: 503 - Response time: 1813ms - IP: 192.168.97.87 - User: user_1044 - RequestID: sl4qmy0xn2e +2025-06-18T13:54:21.081Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 868ms - IP: 192.168.11.60 - User: user_1037 - RequestID: jp3ik1f65n +2025-06-18T13:54:21.181Z [DEBUG] inventory-service - Auth event: password_change - User: user_1086 - IP: 192.168.100.240 - RequestID: uhqofqf2g4 +2025-06-18T13:54:21.281Z [DEBUG] order-service - Database DELETE on products - Execution time: 369ms - Rows affected: 80 - RequestID: 9idx0hq2so8 +2025-06-18T13:54:21.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1031 - IP: 192.168.189.103 - RequestID: faxzy5jcusq +2025-06-18T13:54:21.481Z [TRACE] user-service - Database INSERT on orders - Execution time: 304ms - Rows affected: 26 - RequestID: mffpo8i82mg +2025-06-18T13:54:21.581Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 270ms - Rows affected: 15 - RequestID: vtx9i0ucvkr +2025-06-18T13:54:21.681Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1075 - IP: 192.168.85.229 - RequestID: ogba7ab0gk +2025-06-18T13:54:21.781Z [DEBUG] order-service - Operation: cache_miss - Processing time: 71ms - RequestID: ashb6lxktsg +2025-06-18T13:54:21.881Z [DEBUG] user-service - Operation: email_sent - Processing time: 496ms - RequestID: 96u9lzs77kc +2025-06-18T13:54:21.981Z [INFO] notification-service - Auth event: password_change - User: user_1090 - IP: 192.168.232.72 - RequestID: nruy3jly01p +2025-06-18T13:54:22.081Z [INFO] inventory-service - GET /api/v1/orders - Status: 500 - Response time: 1145ms - IP: 192.168.187.199 - User: user_1030 - RequestID: cfb9r1pz9y +2025-06-18T13:54:22.181Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 2009ms - IP: 192.168.32.38 - User: user_1058 - RequestID: k0qquxrwwk +2025-06-18T13:54:22.281Z [INFO] notification-service - Operation: webhook_sent - Processing time: 923ms - RequestID: jaw1sizd3h +2025-06-18T13:54:22.381Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 494ms - Rows affected: 0 - RequestID: miceobs2jhq +2025-06-18T13:54:22.481Z [TRACE] user-service - Auth event: logout - User: user_1025 - IP: 192.168.174.114 - RequestID: 7u3z5y5vajl +2025-06-18T13:54:22.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.46.63 - RequestID: lp5qllu9y9 +2025-06-18T13:54:22.681Z [TRACE] auth-service - Database INSERT on payments - Execution time: 62ms - Rows affected: 50 - RequestID: t7eanpb7bmh +2025-06-18T13:54:22.781Z [INFO] auth-service - Database UPDATE on orders - Execution time: 288ms - Rows affected: 43 - RequestID: hwone831vbk +2025-06-18T13:54:22.881Z [INFO] user-service - Operation: cache_hit - Processing time: 131ms - RequestID: wvmx9k43c8 +2025-06-18T13:54:22.981Z [INFO] user-service - POST /api/v1/users - Status: 201 - Response time: 533ms - IP: 192.168.79.143 - User: user_1019 - RequestID: 85xp5a2f8wu +2025-06-18T13:54:23.081Z [DEBUG] order-service - Database UPDATE on products - Execution time: 147ms - Rows affected: 68 - RequestID: e1bd4l5lvuf +2025-06-18T13:54:23.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1085 - IP: 192.168.227.233 - RequestID: bwo36fobykw +2025-06-18T13:54:23.281Z [TRACE] auth-service - Database DELETE on products - Execution time: 293ms - Rows affected: 6 - RequestID: xsdyi4tztj +2025-06-18T13:54:23.381Z [TRACE] auth-service - Operation: cache_miss - Processing time: 281ms - RequestID: tipzucyn5q +2025-06-18T13:54:23.481Z [TRACE] user-service - Database DELETE on sessions - Execution time: 89ms - Rows affected: 34 - RequestID: 0seo17lirow +2025-06-18T13:54:23.581Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1516ms - IP: 192.168.32.38 - User: user_1093 - RequestID: a91x2p4ok4j +2025-06-18T13:54:23.681Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1365ms - IP: 192.168.133.7 - User: user_1046 - RequestID: xdp1bi0zn7q +2025-06-18T13:54:23.781Z [INFO] auth-service - Database SELECT on sessions - Execution time: 426ms - Rows affected: 17 - RequestID: bhh4srssnwc +2025-06-18T13:54:23.881Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 45ms - Rows affected: 5 - RequestID: zes7xivboy9 +2025-06-18T13:54:23.981Z [INFO] order-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.147.171 - RequestID: wvamqnjsxy +2025-06-18T13:54:24.081Z [INFO] auth-service - Database INSERT on sessions - Execution time: 157ms - Rows affected: 74 - RequestID: 516nvqn3r9j +2025-06-18T13:54:24.181Z [INFO] auth-service - Operation: notification_queued - Processing time: 632ms - RequestID: mic9mnz3xsg +2025-06-18T13:54:24.281Z [INFO] auth-service - Auth event: logout - User: user_1020 - IP: 192.168.159.94 - RequestID: bta2svpq52 +2025-06-18T13:54:24.381Z [INFO] user-service - Auth event: login_failed - User: user_1026 - IP: 192.168.113.218 - RequestID: yeilcqhlurt +2025-06-18T13:54:24.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.68.128 - RequestID: 65mmlawpuoh +2025-06-18T13:54:24.581Z [INFO] inventory-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.167.32 - RequestID: u2yl0y0wj8a +2025-06-18T13:54:24.681Z [TRACE] payment-service - Operation: cache_miss - Processing time: 211ms - RequestID: yypjl8z94kd +2025-06-18T13:54:24.781Z [DEBUG] order-service - Auth event: login_success - User: user_1087 - IP: 192.168.79.116 - RequestID: xorr5qgfml +2025-06-18T13:54:24.881Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1071ms - IP: 192.168.64.33 - User: user_1074 - RequestID: f2u7rb9g7kh +2025-06-18T13:54:24.981Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1629ms - IP: 192.168.227.77 - User: user_1094 - RequestID: 008998zfxyoxg +2025-06-18T13:54:25.081Z [INFO] order-service - Operation: email_sent - Processing time: 576ms - RequestID: d2afsg0gvl +2025-06-18T13:54:25.181Z [TRACE] order-service - Auth event: login_failed - User: user_1067 - IP: 192.168.85.229 - RequestID: h2a0ivz5rah +2025-06-18T13:54:25.281Z [INFO] order-service - Operation: cache_miss - Processing time: 452ms - RequestID: r55z0c60kxh +2025-06-18T13:54:25.381Z [INFO] order-service - Operation: email_sent - Processing time: 987ms - RequestID: ofolbzt6u38 +2025-06-18T13:54:25.481Z [TRACE] order-service - Operation: email_sent - Processing time: 615ms - RequestID: b9q6vtofpfs +2025-06-18T13:54:25.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 768ms - RequestID: 0zhkjo3dff +2025-06-18T13:54:25.681Z [INFO] payment-service - Auth event: password_change - User: user_1021 - IP: 192.168.31.117 - RequestID: fbb43hppjsv +2025-06-18T13:54:25.781Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1793ms - IP: 192.168.79.141 - User: user_1096 - RequestID: xgbvb4853n +2025-06-18T13:54:25.881Z [INFO] auth-service - DELETE /api/v1/users - Status: 401 - Response time: 1474ms - IP: 192.168.81.206 - User: user_1096 - RequestID: y0tqyjmv7eq +2025-06-18T13:54:25.981Z [INFO] payment-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.10.184 - RequestID: 4f7e6nk56hk +2025-06-18T13:54:26.081Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 146ms - Rows affected: 96 - RequestID: x4ypk0pdwd +2025-06-18T13:54:26.181Z [TRACE] payment-service - Operation: cache_hit - Processing time: 937ms - RequestID: 8q3pvm7ltap +2025-06-18T13:54:26.281Z [DEBUG] payment-service - Auth event: login_success - User: user_1095 - IP: 192.168.189.103 - RequestID: zrewuq1dyrs +2025-06-18T13:54:26.381Z [DEBUG] user-service - Auth event: login_success - User: user_1094 - IP: 192.168.242.165 - RequestID: 4lmj7up36c3 +2025-06-18T13:54:26.481Z [TRACE] order-service - Database SELECT on products - Execution time: 456ms - Rows affected: 63 - RequestID: 1pcwjg8yxfh +2025-06-18T13:54:26.581Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 384ms - Rows affected: 24 - RequestID: 1ffnpsi7nvi +2025-06-18T13:54:26.681Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 380ms - Rows affected: 47 - RequestID: 6a5jyvwbb3v +2025-06-18T13:54:26.781Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1048 - IP: 192.168.13.72 - RequestID: fyotcy7azx +2025-06-18T13:54:26.881Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 365ms - Rows affected: 6 - RequestID: k1twh7xca4c +2025-06-18T13:54:26.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.232.72 - RequestID: 8cxfvd29h6 +2025-06-18T13:54:27.081Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 892ms - RequestID: jjf5l3gnt6s +2025-06-18T13:54:27.181Z [TRACE] user-service - Database UPDATE on payments - Execution time: 19ms - Rows affected: 35 - RequestID: gb9mqoxyeus +2025-06-18T13:54:27.281Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 353ms - Rows affected: 70 - RequestID: zqto6yls9d8 +2025-06-18T13:54:27.381Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 201 - Response time: 749ms - IP: 192.168.64.33 - User: user_1054 - RequestID: htyj5rd3zxq +2025-06-18T13:54:27.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 534ms - RequestID: xg955woh2pb +2025-06-18T13:54:27.581Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 403 - Response time: 419ms - IP: 192.168.11.60 - User: user_1088 - RequestID: 5bu5qta4of +2025-06-18T13:54:27.681Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1379ms - IP: 192.168.81.206 - User: user_1086 - RequestID: jwsrjfga2lc +2025-06-18T13:54:27.781Z [TRACE] payment-service - Database DELETE on users - Execution time: 200ms - Rows affected: 80 - RequestID: ipas6t5bdjt +2025-06-18T13:54:27.881Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 404 - Response time: 2008ms - IP: 192.168.81.206 - User: user_1082 - RequestID: g9ghom4btch +2025-06-18T13:54:27.981Z [INFO] user-service - Operation: notification_queued - Processing time: 477ms - RequestID: uta7djr8k8n +2025-06-18T13:54:28.081Z [INFO] order-service - Database DELETE on orders - Execution time: 354ms - Rows affected: 86 - RequestID: qmevd57s2w +2025-06-18T13:54:28.181Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 500 - Response time: 127ms - IP: 192.168.144.38 - User: user_1046 - RequestID: jqhib1vk4pk +2025-06-18T13:54:28.281Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 344ms - Rows affected: 33 - RequestID: 5lftez3nw5r +2025-06-18T13:54:28.381Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 200 - Response time: 1133ms - IP: 192.168.158.144 - User: user_1006 - RequestID: 7qad7kv7tah +2025-06-18T13:54:28.481Z [INFO] notification-service - Operation: webhook_sent - Processing time: 108ms - RequestID: 9x739b35vge +2025-06-18T13:54:28.581Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 60ms - Rows affected: 70 - RequestID: hgkalpvgcks +2025-06-18T13:54:28.681Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 192ms - Rows affected: 74 - RequestID: ix66j3dj03o +2025-06-18T13:54:28.781Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1496ms - IP: 192.168.235.117 - User: user_1052 - RequestID: sz4zbt18qub +2025-06-18T13:54:28.881Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 500 - Response time: 1259ms - IP: 192.168.28.146 - User: user_1064 - RequestID: oqhbij22qb +2025-06-18T13:54:28.981Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.33.76 - RequestID: vdggfx4uqlh +2025-06-18T13:54:29.081Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 201 - Response time: 135ms - IP: 192.168.85.229 - User: user_1064 - RequestID: dtwvi998rd +2025-06-18T13:54:29.181Z [TRACE] payment-service - Database INSERT on payments - Execution time: 285ms - Rows affected: 30 - RequestID: 9qqxvjm85nl +2025-06-18T13:54:29.281Z [DEBUG] user-service - Auth event: logout - User: user_1039 - IP: 192.168.144.38 - RequestID: pn7hsxqu6co +2025-06-18T13:54:29.381Z [TRACE] user-service - Database DELETE on products - Execution time: 421ms - Rows affected: 67 - RequestID: xia1jb9678 +2025-06-18T13:54:29.481Z [TRACE] inventory-service - Auth event: logout - User: user_1048 - IP: 192.168.11.60 - RequestID: pxj0p2e37c +2025-06-18T13:54:29.581Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 127ms - Rows affected: 68 - RequestID: x06qbvym5q +2025-06-18T13:54:29.681Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 401 - Response time: 31ms - IP: 192.168.187.199 - User: user_1048 - RequestID: o7szadvr54 +2025-06-18T13:54:29.781Z [INFO] notification-service - Auth event: login_success - User: user_1061 - IP: 192.168.53.133 - RequestID: s3nzzcj1udo +2025-06-18T13:54:29.881Z [INFO] auth-service - Database SELECT on users - Execution time: 355ms - Rows affected: 30 - RequestID: 2wp6a5y9tzc +2025-06-18T13:54:29.981Z [DEBUG] order-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.229.123 - RequestID: u5tgem0p7 +2025-06-18T13:54:30.081Z [TRACE] payment-service - Operation: order_created - Processing time: 440ms - RequestID: wakf0snsy6h +2025-06-18T13:54:30.181Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 403 - Response time: 622ms - IP: 192.168.36.218 - User: user_1024 - RequestID: kekh7fcgmra +2025-06-18T13:54:30.281Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 842ms - IP: 192.168.31.117 - User: user_1069 - RequestID: smbsa23m08 +2025-06-18T13:54:30.381Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 394ms - RequestID: w16d5vgedz +2025-06-18T13:54:30.481Z [TRACE] order-service - Operation: cache_miss - Processing time: 641ms - RequestID: djyw4uu2wzq +2025-06-18T13:54:30.581Z [INFO] payment-service - Operation: order_created - Processing time: 580ms - RequestID: kda6f07dnd +2025-06-18T13:54:30.681Z [TRACE] payment-service - Database DELETE on payments - Execution time: 356ms - Rows affected: 68 - RequestID: xqxmkfc2q5 +2025-06-18T13:54:30.781Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 197ms - Rows affected: 97 - RequestID: p39mf1igiw +2025-06-18T13:54:30.881Z [TRACE] auth-service - Database SELECT on products - Execution time: 224ms - Rows affected: 9 - RequestID: r1xfhdjcpv +2025-06-18T13:54:30.981Z [DEBUG] notification-service - Auth event: login_success - User: user_1002 - IP: 192.168.97.87 - RequestID: ou8ql1fip0l +2025-06-18T13:54:31.081Z [INFO] order-service - Database INSERT on sessions - Execution time: 426ms - Rows affected: 84 - RequestID: x4xx1tq2k0f +2025-06-18T13:54:31.181Z [INFO] payment-service - Database UPDATE on payments - Execution time: 329ms - Rows affected: 43 - RequestID: xnfoqsn1am +2025-06-18T13:54:31.281Z [INFO] payment-service - PATCH /api/v1/orders - Status: 200 - Response time: 1349ms - IP: 192.168.227.233 - User: user_1047 - RequestID: v2xkcqqcil +2025-06-18T13:54:31.381Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 497ms - Rows affected: 7 - RequestID: wasqufelqc +2025-06-18T13:54:31.481Z [INFO] notification-service - Auth event: logout - User: user_1027 - IP: 192.168.211.72 - RequestID: cil4mjfj28l +2025-06-18T13:54:31.581Z [TRACE] payment-service - POST /api/v1/users - Status: 403 - Response time: 1219ms - IP: 192.168.189.103 - User: user_1077 - RequestID: pw2d2kvxrkf +2025-06-18T13:54:31.681Z [INFO] inventory-service - Operation: cache_miss - Processing time: 684ms - RequestID: hfjihd3n4de +2025-06-18T13:54:31.781Z [INFO] user-service - Database INSERT on sessions - Execution time: 377ms - Rows affected: 21 - RequestID: dpo5fndec25 +2025-06-18T13:54:31.881Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 369ms - RequestID: yh4uxfajewj +2025-06-18T13:54:31.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1036 - IP: 192.168.232.72 - RequestID: r2m4vxr41sl +2025-06-18T13:54:32.081Z [DEBUG] auth-service - Auth event: logout - User: user_1022 - IP: 192.168.181.225 - RequestID: 1sb8wd5gqvli +2025-06-18T13:54:32.181Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 643ms - IP: 192.168.227.77 - User: user_1044 - RequestID: n6sjnd6en8 +2025-06-18T13:54:32.281Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1545ms - IP: 192.168.113.218 - User: user_1024 - RequestID: 8h47u5de7qq +2025-06-18T13:54:32.381Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 500 - Response time: 1983ms - IP: 192.168.141.100 - User: user_1097 - RequestID: gw8pjew3ke4 +2025-06-18T13:54:32.481Z [DEBUG] user-service - Operation: payment_processed - Processing time: 732ms - RequestID: 5vetx5eza52 +2025-06-18T13:54:32.581Z [INFO] user-service - Auth event: logout - User: user_1070 - IP: 192.168.247.134 - RequestID: 9otopk05244 +2025-06-18T13:54:32.681Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 348ms - Rows affected: 68 - RequestID: qjzc99myf7 +2025-06-18T13:54:32.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1005 - IP: 192.168.229.123 - RequestID: apc7m1optld +2025-06-18T13:54:32.881Z [TRACE] inventory-service - POST /api/v1/orders - Status: 404 - Response time: 181ms - IP: 192.168.133.7 - User: user_1008 - RequestID: 0zhrqbgzmwwg +2025-06-18T13:54:32.981Z [TRACE] order-service - Database DELETE on users - Execution time: 347ms - Rows affected: 87 - RequestID: lf6i7plkcr +2025-06-18T13:54:33.081Z [DEBUG] user-service - PATCH /api/v1/users - Status: 201 - Response time: 759ms - IP: 192.168.133.7 - User: user_1096 - RequestID: sxxfiw6jznm +2025-06-18T13:54:33.181Z [INFO] order-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.227.77 - RequestID: 56bz4qvqv1q +2025-06-18T13:54:33.281Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 749ms - IP: 192.168.211.72 - User: user_1087 - RequestID: 7lgtrtiqfhq +2025-06-18T13:54:33.381Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 612ms - IP: 192.168.138.123 - User: user_1097 - RequestID: zxeq55ka76h +2025-06-18T13:54:33.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.227.77 - RequestID: kqqryjgtx6e +2025-06-18T13:54:33.581Z [INFO] payment-service - Auth event: logout - User: user_1062 - IP: 192.168.33.76 - RequestID: ne9dxqspd5 +2025-06-18T13:54:33.681Z [DEBUG] inventory-service - Auth event: password_change - User: user_1016 - IP: 192.168.104.37 - RequestID: lbqbzauqkx +2025-06-18T13:54:33.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 1038ms - RequestID: x5q8xnrefp +2025-06-18T13:54:33.881Z [TRACE] payment-service - Auth event: password_change - User: user_1040 - IP: 192.168.81.206 - RequestID: hzxvw6l72pc +2025-06-18T13:54:33.981Z [INFO] user-service - POST /api/v1/auth/login - Status: 401 - Response time: 1582ms - IP: 192.168.229.123 - User: user_1076 - RequestID: 7scalx5clwu +2025-06-18T13:54:34.081Z [TRACE] order-service - Auth event: password_change - User: user_1097 - IP: 192.168.232.72 - RequestID: 1fnmkskyth1 +2025-06-18T13:54:34.181Z [TRACE] payment-service - GET /api/v1/payments - Status: 401 - Response time: 29ms - IP: 192.168.138.123 - User: user_1040 - RequestID: c9eoslq8hzc +2025-06-18T13:54:34.281Z [INFO] payment-service - Operation: email_sent - Processing time: 503ms - RequestID: sb3ccz8jq5f +2025-06-18T13:54:34.381Z [DEBUG] user-service - Database INSERT on payments - Execution time: 211ms - Rows affected: 18 - RequestID: 569q2hzofpg +2025-06-18T13:54:34.481Z [DEBUG] order-service - Auth event: password_change - User: user_1091 - IP: 192.168.79.116 - RequestID: olii32zdjqc +2025-06-18T13:54:34.581Z [TRACE] inventory-service - Database INSERT on users - Execution time: 381ms - Rows affected: 68 - RequestID: rqxm3hkmfvr +2025-06-18T13:54:34.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 420ms - RequestID: dirp9hfszwq +2025-06-18T13:54:34.781Z [DEBUG] notification-service - Database DELETE on users - Execution time: 439ms - Rows affected: 90 - RequestID: qyxbsbr9zhl +2025-06-18T13:54:34.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.227.233 - RequestID: kjqgr70hx3 +2025-06-18T13:54:34.981Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 392ms - Rows affected: 38 - RequestID: bptbo7t4d6 +2025-06-18T13:54:35.081Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 71ms - RequestID: og2cugci8s +2025-06-18T13:54:35.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 145ms - RequestID: ooi5451342k +2025-06-18T13:54:35.281Z [INFO] order-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.242.165 - RequestID: dry5njhg2z +2025-06-18T13:54:35.381Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1939ms - IP: 192.168.68.158 - User: user_1097 - RequestID: l1ajm85z33 +2025-06-18T13:54:35.481Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 201 - Response time: 1554ms - IP: 192.168.36.218 - User: user_1021 - RequestID: ia99jajvfv +2025-06-18T13:54:35.581Z [INFO] inventory-service - Operation: order_created - Processing time: 379ms - RequestID: 1zpu86h2kk3 +2025-06-18T13:54:35.681Z [DEBUG] user-service - PATCH /api/v1/users - Status: 201 - Response time: 497ms - IP: 192.168.229.123 - User: user_1099 - RequestID: ts9uo9vosmc +2025-06-18T13:54:35.781Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 369ms - Rows affected: 98 - RequestID: 4vhpdclx6u +2025-06-18T13:54:35.881Z [INFO] inventory-service - Auth event: logout - User: user_1012 - IP: 192.168.44.5 - RequestID: gc6vrtf1h8o +2025-06-18T13:54:35.981Z [INFO] auth-service - Auth event: logout - User: user_1020 - IP: 192.168.174.114 - RequestID: wl7ub41sac +2025-06-18T13:54:36.081Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 935ms - IP: 192.168.46.63 - User: user_1058 - RequestID: 8b1v7r131ug +2025-06-18T13:54:36.181Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1058 - IP: 192.168.14.77 - RequestID: g3qiw1u3n57 +2025-06-18T13:54:36.281Z [TRACE] payment-service - Auth event: password_change - User: user_1066 - IP: 192.168.79.116 - RequestID: bo6ks6wg76r +2025-06-18T13:54:36.381Z [INFO] payment-service - Database INSERT on payments - Execution time: 309ms - Rows affected: 62 - RequestID: hzvg1gdm1vn +2025-06-18T13:54:36.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 563ms - RequestID: 3fdy7lnu1bn +2025-06-18T13:54:36.581Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 502 - Response time: 1468ms - IP: 192.168.1.152 - User: user_1029 - RequestID: vg43x85upvm +2025-06-18T13:54:36.681Z [INFO] payment-service - Operation: payment_processed - Processing time: 275ms - RequestID: eg1vku1m5r8 +2025-06-18T13:54:36.781Z [TRACE] notification-service - Database SELECT on users - Execution time: 12ms - Rows affected: 4 - RequestID: jpw6uixy6x +2025-06-18T13:54:36.881Z [TRACE] order-service - Auth event: logout - User: user_1030 - IP: 192.168.144.38 - RequestID: d98sfd4j9xt +2025-06-18T13:54:36.981Z [TRACE] order-service - GET /api/v1/inventory - Status: 200 - Response time: 1282ms - IP: 192.168.167.32 - User: user_1005 - RequestID: 1shdchschgo +2025-06-18T13:54:37.081Z [INFO] payment-service - Auth event: password_change - User: user_1029 - IP: 192.168.138.123 - RequestID: 1kaxyvipfhk +2025-06-18T13:54:37.181Z [INFO] notification-service - Auth event: logout - User: user_1016 - IP: 192.168.81.206 - RequestID: a4ngxkohekr +2025-06-18T13:54:37.281Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 281ms - IP: 192.168.79.143 - User: user_1043 - RequestID: uokxr87ge5h +2025-06-18T13:54:37.381Z [DEBUG] order-service - Auth event: password_change - User: user_1028 - IP: 192.168.13.72 - RequestID: i2v037c1rcj +2025-06-18T13:54:37.481Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 354ms - Rows affected: 87 - RequestID: uf3f5cw6y8 +2025-06-18T13:54:37.581Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 404 - Response time: 1427ms - IP: 192.168.158.144 - User: user_1047 - RequestID: 0mhce4n0gl3 +2025-06-18T13:54:37.681Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 215ms - Rows affected: 60 - RequestID: zsbm589hu +2025-06-18T13:54:37.781Z [INFO] notification-service - Operation: email_sent - Processing time: 585ms - RequestID: c3nbiab4u1 +2025-06-18T13:54:37.881Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 503 - Response time: 1443ms - IP: 192.168.147.171 - User: user_1037 - RequestID: g94o4gozkyu +2025-06-18T13:54:37.981Z [TRACE] notification-service - DELETE /api/v1/users - Status: 502 - Response time: 1817ms - IP: 192.168.11.60 - User: user_1098 - RequestID: 3mumamd5zg +2025-06-18T13:54:38.081Z [TRACE] order-service - Operation: order_created - Processing time: 792ms - RequestID: 45ud25zel4c +2025-06-18T13:54:38.181Z [INFO] notification-service - Operation: order_created - Processing time: 880ms - RequestID: shdbhkeq3jf +2025-06-18T13:54:38.281Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 852ms - RequestID: l3j05s4ahi +2025-06-18T13:54:38.381Z [TRACE] payment-service - Operation: cache_hit - Processing time: 846ms - RequestID: z47u7n5f189 +2025-06-18T13:54:38.481Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 578ms - RequestID: gtg6csgtwnl +2025-06-18T13:54:38.581Z [INFO] payment-service - POST /api/v1/inventory - Status: 401 - Response time: 1825ms - IP: 192.168.13.72 - User: user_1039 - RequestID: 4uhrpftwgrd +2025-06-18T13:54:38.681Z [INFO] order-service - PUT /api/v1/users - Status: 200 - Response time: 951ms - IP: 192.168.247.134 - User: user_1014 - RequestID: nwsl9m6u2p +2025-06-18T13:54:38.781Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 498ms - Rows affected: 98 - RequestID: auvwq5wx4m +2025-06-18T13:54:38.881Z [INFO] auth-service - Auth event: login_success - User: user_1054 - IP: 192.168.104.37 - RequestID: o8md972lfm +2025-06-18T13:54:38.981Z [TRACE] inventory-service - Auth event: logout - User: user_1003 - IP: 192.168.31.117 - RequestID: rrie01ko5p +2025-06-18T13:54:39.081Z [DEBUG] order-service - Operation: cache_miss - Processing time: 680ms - RequestID: 4ap1hz88iw8 +2025-06-18T13:54:39.181Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.68.128 - RequestID: 51wx2l986wu +2025-06-18T13:54:39.281Z [TRACE] order-service - POST /api/v1/auth/login - Status: 201 - Response time: 306ms - IP: 192.168.46.63 - User: user_1018 - RequestID: baug482yutj +2025-06-18T13:54:39.381Z [INFO] notification-service - Auth event: login_success - User: user_1072 - IP: 192.168.133.7 - RequestID: 0n1io8kjzaw9 +2025-06-18T13:54:39.481Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 132ms - Rows affected: 70 - RequestID: 9e3xxc6ika +2025-06-18T13:54:39.581Z [DEBUG] user-service - Operation: cache_hit - Processing time: 917ms - RequestID: p9psk4b8qwo +2025-06-18T13:54:39.681Z [DEBUG] user-service - Operation: payment_processed - Processing time: 837ms - RequestID: zbznd5h5d3e +2025-06-18T13:54:39.781Z [TRACE] notification-service - Database DELETE on payments - Execution time: 369ms - Rows affected: 98 - RequestID: tgt675nrvf +2025-06-18T13:54:39.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.211.72 - RequestID: krys73judr +2025-06-18T13:54:39.981Z [INFO] auth-service - GET /api/v1/auth/login - Status: 404 - Response time: 764ms - IP: 192.168.232.72 - User: user_1065 - RequestID: ldyi7ibsnn +2025-06-18T13:54:40.081Z [TRACE] order-service - POST /api/v1/payments - Status: 201 - Response time: 1661ms - IP: 192.168.79.141 - User: user_1081 - RequestID: biurmtl1cok +2025-06-18T13:54:40.181Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 33ms - Rows affected: 95 - RequestID: 3pm24du54xl +2025-06-18T13:54:40.281Z [DEBUG] order-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.167.32 - RequestID: ce3crdnw295 +2025-06-18T13:54:40.381Z [TRACE] auth-service - GET /api/v1/orders - Status: 200 - Response time: 1938ms - IP: 192.168.170.215 - User: user_1052 - RequestID: e0exn2ibatr +2025-06-18T13:54:40.481Z [TRACE] order-service - GET /api/v1/orders - Status: 404 - Response time: 1656ms - IP: 192.168.32.38 - User: user_1032 - RequestID: 3rzn1ybh7zk +2025-06-18T13:54:40.581Z [INFO] auth-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.227.233 - RequestID: ava01hswbpl +2025-06-18T13:54:40.681Z [INFO] user-service - Database SELECT on orders - Execution time: 313ms - Rows affected: 39 - RequestID: wcuoel0hh3 +2025-06-18T13:54:40.781Z [INFO] order-service - Operation: inventory_updated - Processing time: 619ms - RequestID: o39n7982s3g +2025-06-18T13:54:40.881Z [INFO] inventory-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.247.134 - RequestID: tmiunjc4x8 +2025-06-18T13:54:40.981Z [DEBUG] user-service - Auth event: logout - User: user_1067 - IP: 192.168.1.152 - RequestID: 3ui2x4ov3po +2025-06-18T13:54:41.081Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 500 - Response time: 880ms - IP: 192.168.229.123 - User: user_1079 - RequestID: 5yufl7mqumo +2025-06-18T13:54:41.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.174.114 - RequestID: kp2nqthjug +2025-06-18T13:54:41.281Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 500 - Response time: 214ms - IP: 192.168.113.218 - User: user_1011 - RequestID: sb8j09x16cn +2025-06-18T13:54:41.381Z [INFO] inventory-service - GET /api/v1/users - Status: 500 - Response time: 909ms - IP: 192.168.229.123 - User: user_1093 - RequestID: x6jy5fke8ve +2025-06-18T13:54:41.481Z [TRACE] notification-service - Auth event: password_change - User: user_1058 - IP: 192.168.10.184 - RequestID: trdtn8pddzn +2025-06-18T13:54:41.581Z [DEBUG] user-service - Database DELETE on users - Execution time: 173ms - Rows affected: 45 - RequestID: 3buna2u85zb +2025-06-18T13:54:41.681Z [INFO] user-service - Operation: notification_queued - Processing time: 328ms - RequestID: hacse001jk8 +2025-06-18T13:54:41.781Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 27ms - Rows affected: 37 - RequestID: b6v20ipbs5n +2025-06-18T13:54:41.881Z [TRACE] payment-service - Database DELETE on payments - Execution time: 187ms - Rows affected: 37 - RequestID: adi5biv0tyk +2025-06-18T13:54:41.981Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 392ms - Rows affected: 9 - RequestID: 72wcmmr6tc +2025-06-18T13:54:42.081Z [INFO] user-service - Auth event: password_change - User: user_1076 - IP: 192.168.28.146 - RequestID: b13h4577nrr +2025-06-18T13:54:42.181Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 502 - Response time: 917ms - IP: 192.168.79.143 - User: user_1035 - RequestID: ctjo3ncxxr +2025-06-18T13:54:42.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1033 - IP: 192.168.14.77 - RequestID: crwt1neg8m7 +2025-06-18T13:54:42.381Z [INFO] notification-service - Database UPDATE on orders - Execution time: 235ms - Rows affected: 49 - RequestID: x1miik7s5la +2025-06-18T13:54:42.481Z [DEBUG] payment-service - Auth event: login_failed - User: user_1038 - IP: 192.168.79.116 - RequestID: qoxwk7x1s3h +2025-06-18T13:54:42.581Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1744ms - IP: 192.168.79.116 - User: user_1082 - RequestID: 8kyb4pfl1lt +2025-06-18T13:54:42.681Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 144ms - Rows affected: 19 - RequestID: wtpk8fo9m7g +2025-06-18T13:54:42.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 566ms - RequestID: jzlbab0zlp +2025-06-18T13:54:42.881Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1146ms - IP: 192.168.44.5 - User: user_1005 - RequestID: hrzn5jeb9p4 +2025-06-18T13:54:42.981Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 573ms - IP: 192.168.159.94 - User: user_1019 - RequestID: y3p2jp7zoo +2025-06-18T13:54:43.081Z [DEBUG] order-service - DELETE /api/v1/users - Status: 502 - Response time: 1885ms - IP: 192.168.14.77 - User: user_1023 - RequestID: b42fpv08py8 +2025-06-18T13:54:43.181Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 410ms - Rows affected: 60 - RequestID: 3dglhk220ax +2025-06-18T13:54:43.281Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 953ms - RequestID: 3endhxczwe2 +2025-06-18T13:54:43.381Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 401 - Response time: 579ms - IP: 192.168.189.103 - User: user_1021 - RequestID: pxpft4qjjs +2025-06-18T13:54:43.481Z [INFO] inventory-service - Auth event: logout - User: user_1063 - IP: 192.168.170.215 - RequestID: 7vzave9s1jk +2025-06-18T13:54:43.581Z [DEBUG] auth-service - Database DELETE on products - Execution time: 151ms - Rows affected: 48 - RequestID: d2dv0afizm5 +2025-06-18T13:54:43.681Z [INFO] order-service - Operation: payment_processed - Processing time: 529ms - RequestID: cduu3fwgvl +2025-06-18T13:54:43.781Z [TRACE] order-service - POST /api/v1/payments - Status: 401 - Response time: 1223ms - IP: 192.168.68.158 - User: user_1005 - RequestID: to7ar7ycq4 +2025-06-18T13:54:43.881Z [TRACE] auth-service - POST /api/v1/inventory - Status: 200 - Response time: 1081ms - IP: 192.168.247.134 - User: user_1059 - RequestID: szybviofszg +2025-06-18T13:54:43.981Z [DEBUG] user-service - Database SELECT on users - Execution time: 418ms - Rows affected: 87 - RequestID: njvxmfm880h +2025-06-18T13:54:44.081Z [TRACE] auth-service - DELETE /api/v1/users - Status: 200 - Response time: 1473ms - IP: 192.168.1.152 - User: user_1045 - RequestID: tucm3hcr7vm +2025-06-18T13:54:44.181Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 361ms - Rows affected: 57 - RequestID: 2ivl9nj1nrt +2025-06-18T13:54:44.281Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1951ms - IP: 192.168.247.134 - User: user_1061 - RequestID: vcgpchf0jz +2025-06-18T13:54:44.381Z [DEBUG] user-service - Operation: notification_queued - Processing time: 745ms - RequestID: 9odhb89snbw +2025-06-18T13:54:44.481Z [TRACE] user-service - Operation: cache_miss - Processing time: 77ms - RequestID: xyqp00uwvx +2025-06-18T13:54:44.581Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 212ms - RequestID: 8q69c8akcvi +2025-06-18T13:54:44.681Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 435ms - Rows affected: 18 - RequestID: 8g7jpg1q658 +2025-06-18T13:54:44.781Z [INFO] auth-service - Auth event: password_change - User: user_1086 - IP: 192.168.181.225 - RequestID: ut5zo1flu5q +2025-06-18T13:54:44.881Z [INFO] notification-service - Operation: payment_processed - Processing time: 313ms - RequestID: xmrc8roluwk +2025-06-18T13:54:44.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.30.79 - RequestID: j06g29uqmnc +2025-06-18T13:54:45.081Z [INFO] inventory-service - Operation: cache_miss - Processing time: 164ms - RequestID: tw0k2pzs1il +2025-06-18T13:54:45.181Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 145ms - Rows affected: 87 - RequestID: b3iq8et9x2 +2025-06-18T13:54:45.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 936ms - RequestID: rua1sfytgi9 +2025-06-18T13:54:45.381Z [TRACE] inventory-service - GET /api/v1/payments - Status: 503 - Response time: 652ms - IP: 192.168.14.77 - User: user_1050 - RequestID: bfx25lsv66 +2025-06-18T13:54:45.481Z [TRACE] auth-service - DELETE /api/v1/users - Status: 502 - Response time: 817ms - IP: 192.168.227.233 - User: user_1048 - RequestID: mgqbko6clf +2025-06-18T13:54:45.581Z [DEBUG] order-service - PUT /api/v1/payments - Status: 500 - Response time: 1203ms - IP: 192.168.187.199 - User: user_1069 - RequestID: 36vbc8g4tnr +2025-06-18T13:54:45.681Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1154ms - IP: 192.168.170.215 - User: user_1078 - RequestID: ukb5idh21u +2025-06-18T13:54:45.781Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 511ms - RequestID: s5coql9nw +2025-06-18T13:54:45.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 738ms - RequestID: 7trmazaipja +2025-06-18T13:54:45.981Z [TRACE] auth-service - Auth event: password_change - User: user_1036 - IP: 192.168.13.72 - RequestID: 5sbdffeqoz +2025-06-18T13:54:46.081Z [TRACE] payment-service - Operation: notification_queued - Processing time: 864ms - RequestID: 509clz74w +2025-06-18T13:54:46.181Z [DEBUG] auth-service - Auth event: password_change - User: user_1086 - IP: 192.168.10.184 - RequestID: 00pxpwo1km1br +2025-06-18T13:54:46.281Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 686ms - IP: 192.168.232.72 - User: user_1027 - RequestID: ci0we59ev8 +2025-06-18T13:54:46.381Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1374ms - IP: 192.168.138.123 - User: user_1028 - RequestID: 281svcpgkus +2025-06-18T13:54:46.481Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 958ms - IP: 192.168.159.94 - User: user_1087 - RequestID: ysmaujmjw0n +2025-06-18T13:54:46.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 693ms - RequestID: dngvdhc5n4 +2025-06-18T13:54:46.681Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 142ms - Rows affected: 4 - RequestID: 7ld5cstdhwi +2025-06-18T13:54:46.781Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1293ms - IP: 192.168.113.218 - User: user_1090 - RequestID: wi0kywp6j9j +2025-06-18T13:54:46.881Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 503 - Response time: 979ms - IP: 192.168.97.87 - User: user_1019 - RequestID: q97t82h1ooa +2025-06-18T13:54:46.981Z [TRACE] notification-service - Auth event: password_change - User: user_1067 - IP: 192.168.181.225 - RequestID: 47mqhiozg2k +2025-06-18T13:54:47.081Z [INFO] payment-service - Auth event: login_success - User: user_1098 - IP: 192.168.79.116 - RequestID: wbnmhr2i16g +2025-06-18T13:54:47.181Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 404 - Response time: 214ms - IP: 192.168.1.152 - User: user_1067 - RequestID: fq9mwv14h3u +2025-06-18T13:54:47.281Z [TRACE] auth-service - Auth event: login_success - User: user_1089 - IP: 192.168.64.33 - RequestID: bbe4o4n80m4 +2025-06-18T13:54:47.381Z [INFO] order-service - PUT /api/v1/orders - Status: 200 - Response time: 1690ms - IP: 192.168.53.133 - User: user_1003 - RequestID: bhnvfph36tn +2025-06-18T13:54:47.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 688ms - RequestID: yf1hpvfj23n +2025-06-18T13:54:47.581Z [INFO] user-service - Database DELETE on sessions - Execution time: 380ms - Rows affected: 9 - RequestID: l003zgstqk +2025-06-18T13:54:47.681Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 400 - Response time: 1079ms - IP: 192.168.36.218 - User: user_1004 - RequestID: 12115d4rvqbj +2025-06-18T13:54:47.781Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 78ms - Rows affected: 68 - RequestID: cx5p8e5zvqp +2025-06-18T13:54:47.881Z [DEBUG] auth-service - Database DELETE on products - Execution time: 225ms - Rows affected: 35 - RequestID: rsqsy03e4l9 +2025-06-18T13:54:47.981Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 28ms - Rows affected: 71 - RequestID: mcjukee01w9 +2025-06-18T13:54:48.081Z [DEBUG] user-service - Operation: order_created - Processing time: 230ms - RequestID: kh7b8l3ex3 +2025-06-18T13:54:48.181Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1022 - IP: 192.168.227.77 - RequestID: i5acsaehpn +2025-06-18T13:54:48.281Z [INFO] order-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.113.218 - RequestID: lu99xb46u7 +2025-06-18T13:54:48.381Z [INFO] inventory-service - Database DELETE on orders - Execution time: 279ms - Rows affected: 97 - RequestID: b0mq50mfbe +2025-06-18T13:54:48.481Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 259ms - Rows affected: 30 - RequestID: j7fhq9e0eqr +2025-06-18T13:54:48.581Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 200 - Response time: 1785ms - IP: 192.168.196.226 - User: user_1069 - RequestID: niki7yvu4v +2025-06-18T13:54:48.681Z [INFO] auth-service - Operation: email_sent - Processing time: 626ms - RequestID: q5rips34fpl +2025-06-18T13:54:48.781Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 467ms - Rows affected: 59 - RequestID: 1nykvswf3g4 +2025-06-18T13:54:48.881Z [INFO] order-service - Operation: email_sent - Processing time: 73ms - RequestID: uok7z2vw32 +2025-06-18T13:54:48.981Z [INFO] payment-service - Auth event: password_change - User: user_1099 - IP: 192.168.133.7 - RequestID: bos3h8uro9 +2025-06-18T13:54:49.081Z [DEBUG] order-service - Database UPDATE on users - Execution time: 362ms - Rows affected: 29 - RequestID: p2pv6ubrm2 +2025-06-18T13:54:49.181Z [TRACE] order-service - Database UPDATE on orders - Execution time: 55ms - Rows affected: 47 - RequestID: jh5tggiyctj +2025-06-18T13:54:49.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1063 - IP: 192.168.229.123 - RequestID: bchirrgl654 +2025-06-18T13:54:49.381Z [TRACE] order-service - Database INSERT on users - Execution time: 467ms - Rows affected: 23 - RequestID: dx697qsr344 +2025-06-18T13:54:49.481Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 340ms - Rows affected: 56 - RequestID: 2u739tq3uuf +2025-06-18T13:54:49.581Z [TRACE] user-service - Operation: webhook_sent - Processing time: 128ms - RequestID: 054g7y6ak0yv +2025-06-18T13:54:49.681Z [INFO] user-service - DELETE /api/v1/orders - Status: 401 - Response time: 1537ms - IP: 192.168.181.225 - User: user_1003 - RequestID: 0busr13vj8q +2025-06-18T13:54:49.781Z [INFO] auth-service - Auth event: login_success - User: user_1027 - IP: 192.168.97.87 - RequestID: ujrj3xicez8 +2025-06-18T13:54:49.881Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 795ms - IP: 192.168.100.240 - User: user_1064 - RequestID: flgr5x90zuc +2025-06-18T13:54:49.981Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 503 - Response time: 807ms - IP: 192.168.227.233 - User: user_1010 - RequestID: 3d4onnscx22 +2025-06-18T13:54:50.081Z [TRACE] user-service - Operation: order_created - Processing time: 898ms - RequestID: ahu47khb5r5 +2025-06-18T13:54:50.181Z [INFO] auth-service - Database INSERT on payments - Execution time: 260ms - Rows affected: 24 - RequestID: j9f4idw4s8 +2025-06-18T13:54:50.281Z [DEBUG] order-service - Auth event: login_success - User: user_1072 - IP: 192.168.235.117 - RequestID: h2e4ed3f98k +2025-06-18T13:54:50.381Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1741ms - IP: 192.168.97.87 - User: user_1095 - RequestID: execvqumr +2025-06-18T13:54:50.481Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 400 - Response time: 1235ms - IP: 192.168.196.226 - User: user_1098 - RequestID: ip3y6pb2gy +2025-06-18T13:54:50.581Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 115ms - Rows affected: 97 - RequestID: hhygqk6hlgd +2025-06-18T13:54:50.681Z [TRACE] payment-service - Auth event: password_change - User: user_1013 - IP: 192.168.53.133 - RequestID: jrxlo7457bq +2025-06-18T13:54:50.781Z [INFO] notification-service - POST /api/v1/users - Status: 401 - Response time: 1389ms - IP: 192.168.97.87 - User: user_1072 - RequestID: gpug2gnw5xr +2025-06-18T13:54:50.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.235.117 - RequestID: amz56phqolh +2025-06-18T13:54:50.981Z [INFO] notification-service - Auth event: password_change - User: user_1073 - IP: 192.168.158.144 - RequestID: v8xcdvr6c1 +2025-06-18T13:54:51.081Z [TRACE] payment-service - Auth event: logout - User: user_1054 - IP: 192.168.229.123 - RequestID: oebigv4v31 +2025-06-18T13:54:51.181Z [INFO] notification-service - PATCH /api/v1/payments - Status: 401 - Response time: 491ms - IP: 192.168.235.117 - User: user_1023 - RequestID: b32e4evpvm +2025-06-18T13:54:51.281Z [INFO] payment-service - Operation: cache_miss - Processing time: 409ms - RequestID: bo4gqwovwms +2025-06-18T13:54:51.381Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 508ms - RequestID: nm5qa63h929 +2025-06-18T13:54:51.481Z [DEBUG] notification-service - Database SELECT on products - Execution time: 136ms - Rows affected: 31 - RequestID: bws2kgeqo89 +2025-06-18T13:54:51.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.159.94 - RequestID: lgwivajxqda +2025-06-18T13:54:51.681Z [INFO] auth-service - Database DELETE on orders - Execution time: 103ms - Rows affected: 47 - RequestID: 854o5pjjiyy +2025-06-18T13:54:51.781Z [INFO] user-service - Auth event: login_success - User: user_1079 - IP: 192.168.240.169 - RequestID: y53ddtokz0r +2025-06-18T13:54:51.881Z [DEBUG] order-service - Auth event: login_failed - User: user_1037 - IP: 192.168.247.134 - RequestID: g5npwg598nw +2025-06-18T13:54:51.981Z [TRACE] order-service - Database UPDATE on products - Execution time: 484ms - Rows affected: 92 - RequestID: ne1s7w66vd +2025-06-18T13:54:52.081Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 43ms - Rows affected: 19 - RequestID: mh4ls0ek0xk +2025-06-18T13:54:52.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 937ms - RequestID: d6lwlxkx9pc +2025-06-18T13:54:52.281Z [INFO] auth-service - Operation: cache_miss - Processing time: 712ms - RequestID: 9c4v7g6ib2 +2025-06-18T13:54:52.381Z [INFO] user-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.79.116 - RequestID: xmn3jb9kipn +2025-06-18T13:54:52.481Z [INFO] order-service - DELETE /api/v1/orders - Status: 503 - Response time: 1044ms - IP: 192.168.64.33 - User: user_1007 - RequestID: q76eyvsoyq +2025-06-18T13:54:52.581Z [TRACE] auth-service - Operation: notification_queued - Processing time: 641ms - RequestID: nlclc5hpdrl +2025-06-18T13:54:52.681Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 68ms - Rows affected: 97 - RequestID: 70h8ww3dyix +2025-06-18T13:54:52.781Z [TRACE] auth-service - Operation: cache_miss - Processing time: 1044ms - RequestID: ssf21m5b50a +2025-06-18T13:54:52.881Z [INFO] payment-service - Operation: cache_miss - Processing time: 916ms - RequestID: c8vcg7dl9qr +2025-06-18T13:54:52.981Z [INFO] user-service - Database SELECT on products - Execution time: 424ms - Rows affected: 79 - RequestID: v8i1vbb9x2 +2025-06-18T13:54:53.081Z [INFO] order-service - Auth event: logout - User: user_1018 - IP: 192.168.138.123 - RequestID: vfqx784c4ba +2025-06-18T13:54:53.181Z [INFO] inventory-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.10.184 - RequestID: rcpi0m6qejo +2025-06-18T13:54:53.281Z [INFO] notification-service - PATCH /api/v1/payments - Status: 502 - Response time: 1986ms - IP: 192.168.97.87 - User: user_1052 - RequestID: elartg3khf7 +2025-06-18T13:54:53.381Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1554ms - IP: 192.168.14.77 - User: user_1093 - RequestID: m9v22vv70v +2025-06-18T13:54:53.481Z [INFO] notification-service - Database SELECT on sessions - Execution time: 190ms - Rows affected: 35 - RequestID: klf7m8ml17i +2025-06-18T13:54:53.581Z [INFO] inventory-service - Database SELECT on products - Execution time: 170ms - Rows affected: 34 - RequestID: 7j76088yovg +2025-06-18T13:54:53.681Z [INFO] user-service - Database SELECT on users - Execution time: 459ms - Rows affected: 50 - RequestID: x45ldrnhd5 +2025-06-18T13:54:53.781Z [DEBUG] order-service - GET /api/v1/users - Status: 503 - Response time: 463ms - IP: 192.168.133.7 - User: user_1083 - RequestID: f6idkgm6pj +2025-06-18T13:54:53.881Z [DEBUG] user-service - Operation: cache_hit - Processing time: 1001ms - RequestID: uih72r9go6 +2025-06-18T13:54:53.981Z [INFO] auth-service - Operation: cache_hit - Processing time: 619ms - RequestID: c8scyyy2i7 +2025-06-18T13:54:54.081Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 357ms - Rows affected: 74 - RequestID: n3vy70227z8 +2025-06-18T13:54:54.181Z [INFO] order-service - Database DELETE on sessions - Execution time: 414ms - Rows affected: 72 - RequestID: 67a3p6fok7d +2025-06-18T13:54:54.281Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1066ms - IP: 192.168.247.134 - User: user_1052 - RequestID: kjpkqw9g7rq +2025-06-18T13:54:54.381Z [INFO] order-service - Database UPDATE on users - Execution time: 66ms - Rows affected: 94 - RequestID: x01mhygkvmn +2025-06-18T13:54:54.481Z [INFO] order-service - POST /api/v1/payments - Status: 403 - Response time: 480ms - IP: 192.168.229.123 - User: user_1066 - RequestID: 1paixmi6ezuh +2025-06-18T13:54:54.581Z [TRACE] inventory-service - Operation: order_created - Processing time: 241ms - RequestID: u976pf0wwz +2025-06-18T13:54:54.681Z [INFO] notification-service - Operation: email_sent - Processing time: 879ms - RequestID: nua5e2ysrvd +2025-06-18T13:54:54.781Z [TRACE] auth-service - PUT /api/v1/orders - Status: 500 - Response time: 1438ms - IP: 192.168.64.33 - User: user_1050 - RequestID: 7ujdb8f2o0e +2025-06-18T13:54:54.881Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 377ms - Rows affected: 20 - RequestID: b1pqhik7eoe +2025-06-18T13:54:54.981Z [DEBUG] order-service - Operation: order_created - Processing time: 76ms - RequestID: o5p74tj1u7 +2025-06-18T13:54:55.081Z [INFO] payment-service - Database UPDATE on users - Execution time: 135ms - Rows affected: 28 - RequestID: 2kkj0fof2st +2025-06-18T13:54:55.181Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1966ms - IP: 192.168.144.38 - User: user_1065 - RequestID: 80d0mn0u8q7 +2025-06-18T13:54:55.281Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 432ms - Rows affected: 38 - RequestID: 5bcxcicxp3h +2025-06-18T13:54:55.381Z [INFO] auth-service - Auth event: login_failed - User: user_1006 - IP: 192.168.196.226 - RequestID: 51om7mpni6y +2025-06-18T13:54:55.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 362ms - RequestID: ajx0ypb6px5 +2025-06-18T13:54:55.581Z [INFO] user-service - Database DELETE on users - Execution time: 188ms - Rows affected: 68 - RequestID: yyk1njv9pl +2025-06-18T13:54:55.681Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1492ms - IP: 192.168.30.79 - User: user_1015 - RequestID: 1lonfc0irf6 +2025-06-18T13:54:55.781Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 541ms - RequestID: 3zqzg4de5j4 +2025-06-18T13:54:55.881Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 387ms - Rows affected: 11 - RequestID: 7lnk2qwi4ch +2025-06-18T13:54:55.981Z [INFO] auth-service - POST /api/v1/payments - Status: 404 - Response time: 696ms - IP: 192.168.170.215 - User: user_1009 - RequestID: b7s2oa7sgqm +2025-06-18T13:54:56.081Z [INFO] auth-service - Database INSERT on sessions - Execution time: 138ms - Rows affected: 0 - RequestID: 46o49i2xtqh +2025-06-18T13:54:56.181Z [INFO] auth-service - Operation: payment_processed - Processing time: 754ms - RequestID: zlu0hgixxto +2025-06-18T13:54:56.281Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1650ms - IP: 192.168.194.41 - User: user_1044 - RequestID: l7ii4k4onm +2025-06-18T13:54:56.381Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 311ms - Rows affected: 56 - RequestID: 4h5bzvm55md +2025-06-18T13:54:56.481Z [INFO] payment-service - Operation: cache_hit - Processing time: 458ms - RequestID: eab0fdixvxi +2025-06-18T13:54:56.581Z [TRACE] user-service - Operation: cache_miss - Processing time: 202ms - RequestID: sq7h7eu9se +2025-06-18T13:54:56.681Z [TRACE] payment-service - Auth event: logout - User: user_1069 - IP: 192.168.170.215 - RequestID: 1hz0mhdor7j +2025-06-18T13:54:56.781Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 441ms - Rows affected: 77 - RequestID: cdqq4xnflad +2025-06-18T13:54:56.881Z [DEBUG] user-service - POST /api/v1/inventory - Status: 200 - Response time: 1569ms - IP: 192.168.227.233 - User: user_1028 - RequestID: 54gqde67rmw +2025-06-18T13:54:56.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.31.117 - RequestID: sh6hkhckxhd +2025-06-18T13:54:57.081Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 200 - Response time: 818ms - IP: 192.168.174.114 - User: user_1018 - RequestID: 7as5vr2ho8 +2025-06-18T13:54:57.181Z [INFO] order-service - Auth event: logout - User: user_1014 - IP: 192.168.68.158 - RequestID: cra94j9d8vu +2025-06-18T13:54:57.281Z [DEBUG] order-service - Auth event: password_change - User: user_1069 - IP: 192.168.187.199 - RequestID: 1iwu9pa7qwj +2025-06-18T13:54:57.381Z [TRACE] payment-service - POST /api/v1/users - Status: 404 - Response time: 566ms - IP: 192.168.194.41 - User: user_1062 - RequestID: bc5x07n59w +2025-06-18T13:54:57.481Z [TRACE] order-service - DELETE /api/v1/payments - Status: 502 - Response time: 982ms - IP: 192.168.240.169 - User: user_1049 - RequestID: cvokzvi4h7v +2025-06-18T13:54:57.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.97.87 - RequestID: qid6vuqmx5 +2025-06-18T13:54:57.681Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 502 - Response time: 111ms - IP: 192.168.211.72 - User: user_1030 - RequestID: 0wxgkri1xnh +2025-06-18T13:54:57.781Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 428ms - Rows affected: 50 - RequestID: bre1ukygls5 +2025-06-18T13:54:57.881Z [INFO] payment-service - Operation: webhook_sent - Processing time: 210ms - RequestID: aikyo4kgupk +2025-06-18T13:54:57.981Z [INFO] user-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.170.215 - RequestID: i2uuygaixrj +2025-06-18T13:54:58.081Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 99ms - RequestID: zihkcgmeil +2025-06-18T13:54:58.181Z [TRACE] payment-service - Operation: payment_processed - Processing time: 415ms - RequestID: ccdubxk8h4 +2025-06-18T13:54:58.281Z [TRACE] notification-service - Database INSERT on products - Execution time: 151ms - Rows affected: 59 - RequestID: 398rkuxiwos +2025-06-18T13:54:58.381Z [INFO] notification-service - DELETE /api/v1/orders - Status: 404 - Response time: 811ms - IP: 192.168.68.128 - User: user_1088 - RequestID: xcfcpuz3h +2025-06-18T13:54:58.481Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 457ms - Rows affected: 8 - RequestID: 9gry7fe3y8l +2025-06-18T13:54:58.581Z [INFO] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 1508ms - IP: 192.168.64.33 - User: user_1081 - RequestID: 3jr8tiz2pdz +2025-06-18T13:54:58.681Z [INFO] notification-service - Auth event: login_failed - User: user_1027 - IP: 192.168.30.79 - RequestID: nlkd21c1dh +2025-06-18T13:54:58.781Z [DEBUG] order-service - Operation: order_created - Processing time: 881ms - RequestID: d2b3ithwck5 +2025-06-18T13:54:58.881Z [TRACE] user-service - GET /api/v1/orders - Status: 200 - Response time: 651ms - IP: 192.168.196.226 - User: user_1086 - RequestID: fqzjyckpdjg +2025-06-18T13:54:58.981Z [TRACE] inventory-service - Auth event: logout - User: user_1085 - IP: 192.168.68.128 - RequestID: bfqqc5nc7y +2025-06-18T13:54:59.081Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1245ms - IP: 192.168.144.38 - User: user_1086 - RequestID: 6q5eu84t6qj +2025-06-18T13:54:59.181Z [INFO] notification-service - Auth event: login_success - User: user_1062 - IP: 192.168.32.38 - RequestID: 2r5t4717q6j +2025-06-18T13:54:59.281Z [INFO] inventory-service - Auth event: password_change - User: user_1028 - IP: 192.168.46.63 - RequestID: go1vqxnkb24 +2025-06-18T13:54:59.381Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 235ms - Rows affected: 67 - RequestID: pq04ewclwg +2025-06-18T13:54:59.481Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 109ms - Rows affected: 53 - RequestID: zq5c28yvqdm +2025-06-18T13:54:59.581Z [INFO] notification-service - Auth event: login_success - User: user_1007 - IP: 192.168.133.7 - RequestID: olq2z3z3aem +2025-06-18T13:54:59.681Z [INFO] inventory-service - Database DELETE on payments - Execution time: 143ms - Rows affected: 43 - RequestID: 8m5yxga719 +2025-06-18T13:54:59.781Z [DEBUG] payment-service - Auth event: login_failed - User: user_1034 - IP: 192.168.227.77 - RequestID: dzdyc49ig3 +2025-06-18T13:54:59.881Z [DEBUG] order-service - POST /api/v1/users - Status: 500 - Response time: 1645ms - IP: 192.168.181.225 - User: user_1076 - RequestID: vrjvkb9tc7 +2025-06-18T13:54:59.981Z [INFO] auth-service - Database DELETE on orders - Execution time: 432ms - Rows affected: 18 - RequestID: bk2hgohxs7g +2025-06-18T13:55:00.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 649ms - RequestID: 6njsfo6zu45 +2025-06-18T13:55:00.181Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 503 - Response time: 1791ms - IP: 192.168.104.37 - User: user_1026 - RequestID: drs0fna0w5 +2025-06-18T13:55:00.281Z [DEBUG] order-service - Auth event: password_change - User: user_1004 - IP: 192.168.144.38 - RequestID: jr9ecw32iq +2025-06-18T13:55:00.381Z [INFO] order-service - Auth event: login_success - User: user_1071 - IP: 192.168.196.226 - RequestID: 8ah38xk4kop +2025-06-18T13:55:00.481Z [INFO] user-service - PUT /api/v1/orders - Status: 201 - Response time: 590ms - IP: 192.168.242.165 - User: user_1015 - RequestID: jd6885a84n +2025-06-18T13:55:00.581Z [TRACE] user-service - PUT /api/v1/orders - Status: 403 - Response time: 1202ms - IP: 192.168.232.72 - User: user_1075 - RequestID: ta68r2ah3j8 +2025-06-18T13:55:00.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1085 - IP: 192.168.247.134 - RequestID: yxa2ozzmcci +2025-06-18T13:55:00.781Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1210ms - IP: 192.168.159.94 - User: user_1015 - RequestID: z7b242zt9 +2025-06-18T13:55:00.881Z [INFO] auth-service - Operation: cache_miss - Processing time: 218ms - RequestID: 2cqm4svrg79 +2025-06-18T13:55:00.981Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 382ms - RequestID: duz4ptt12ag +2025-06-18T13:55:01.081Z [INFO] order-service - Database DELETE on payments - Execution time: 195ms - Rows affected: 41 - RequestID: 4zf4utpfnni +2025-06-18T13:55:01.181Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1901ms - IP: 192.168.44.5 - User: user_1041 - RequestID: ku87rfwd4n +2025-06-18T13:55:01.281Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 368ms - RequestID: 8u2o3u63uvk +2025-06-18T13:55:01.381Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 107ms - Rows affected: 44 - RequestID: vgx7aa7o5m +2025-06-18T13:55:01.481Z [TRACE] payment-service - POST /api/v1/users - Status: 502 - Response time: 883ms - IP: 192.168.242.165 - User: user_1069 - RequestID: 65fb0cx1xhs +2025-06-18T13:55:01.581Z [INFO] notification-service - Database DELETE on users - Execution time: 209ms - Rows affected: 13 - RequestID: 45autrjoehv +2025-06-18T13:55:01.681Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1225ms - IP: 192.168.181.225 - User: user_1018 - RequestID: lq61gclx5vf +2025-06-18T13:55:01.781Z [TRACE] user-service - Auth event: login_success - User: user_1017 - IP: 192.168.144.38 - RequestID: 6smsvzo3fvu +2025-06-18T13:55:01.881Z [INFO] user-service - Auth event: logout - User: user_1077 - IP: 192.168.64.33 - RequestID: rjex66uv1rs +2025-06-18T13:55:01.981Z [INFO] notification-service - Database DELETE on users - Execution time: 91ms - Rows affected: 14 - RequestID: gqt7as1pmmp +2025-06-18T13:55:02.081Z [DEBUG] auth-service - Auth event: login_success - User: user_1059 - IP: 192.168.158.144 - RequestID: tfn7dfwskq +2025-06-18T13:55:02.181Z [TRACE] user-service - GET /api/v1/payments - Status: 401 - Response time: 1801ms - IP: 192.168.31.117 - User: user_1097 - RequestID: ices6ggvln +2025-06-18T13:55:02.281Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.227.233 - RequestID: ik0zbkg6se +2025-06-18T13:55:02.381Z [TRACE] order-service - Auth event: login_success - User: user_1042 - IP: 192.168.167.32 - RequestID: rwa5j8z7hch +2025-06-18T13:55:02.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 173ms - RequestID: xysdodl7ky9 +2025-06-18T13:55:02.581Z [INFO] user-service - Auth event: password_change - User: user_1027 - IP: 192.168.31.117 - RequestID: n5fz1g3pc +2025-06-18T13:55:02.681Z [DEBUG] inventory-service - Auth event: password_change - User: user_1096 - IP: 192.168.229.123 - RequestID: 2hxy0u6d8ls +2025-06-18T13:55:02.781Z [DEBUG] payment-service - Operation: email_sent - Processing time: 627ms - RequestID: tivfsdxxlyk +2025-06-18T13:55:02.881Z [TRACE] user-service - Database DELETE on sessions - Execution time: 162ms - Rows affected: 78 - RequestID: cjzilydqw7c +2025-06-18T13:55:02.981Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 228ms - Rows affected: 2 - RequestID: ohdlterlmcs +2025-06-18T13:55:03.081Z [DEBUG] user-service - Database INSERT on orders - Execution time: 18ms - Rows affected: 26 - RequestID: 8y4nhfre1n +2025-06-18T13:55:03.181Z [INFO] order-service - Auth event: logout - User: user_1035 - IP: 192.168.1.152 - RequestID: u8qbxfiqshr +2025-06-18T13:55:03.281Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 111ms - Rows affected: 47 - RequestID: 0zifild93ze +2025-06-18T13:55:03.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1049 - IP: 192.168.167.32 - RequestID: 52ta5hwkrao +2025-06-18T13:55:03.481Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1358ms - IP: 192.168.85.229 - User: user_1011 - RequestID: j76iq3xoon +2025-06-18T13:55:03.581Z [INFO] auth-service - Auth event: login_success - User: user_1013 - IP: 192.168.31.117 - RequestID: zi7drabd86a +2025-06-18T13:55:03.681Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 476ms - Rows affected: 12 - RequestID: ovwkvrzmt8 +2025-06-18T13:55:03.781Z [TRACE] payment-service - PUT /api/v1/payments - Status: 200 - Response time: 1153ms - IP: 192.168.10.184 - User: user_1067 - RequestID: fpmucthnv1 +2025-06-18T13:55:03.881Z [DEBUG] user-service - Operation: email_sent - Processing time: 859ms - RequestID: ln6oekcfvij +2025-06-18T13:55:03.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.235.117 - RequestID: mqbv87uy6q +2025-06-18T13:55:04.081Z [INFO] order-service - POST /api/v1/auth/login - Status: 503 - Response time: 323ms - IP: 192.168.104.37 - User: user_1048 - RequestID: l0ydvtlvz6 +2025-06-18T13:55:04.181Z [INFO] notification-service - GET /api/v1/auth/login - Status: 500 - Response time: 931ms - IP: 192.168.46.63 - User: user_1086 - RequestID: m9w8bd8r79 +2025-06-18T13:55:04.281Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 401 - Response time: 1595ms - IP: 192.168.247.134 - User: user_1043 - RequestID: ry1uja6k9gr +2025-06-18T13:55:04.381Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 567ms - IP: 192.168.189.103 - User: user_1027 - RequestID: p1nosfomcb +2025-06-18T13:55:04.481Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 403 - Response time: 1200ms - IP: 192.168.174.114 - User: user_1064 - RequestID: as4i8z81oqv +2025-06-18T13:55:04.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1081 - IP: 192.168.46.63 - RequestID: i0fs5rlkxn +2025-06-18T13:55:04.681Z [TRACE] user-service - Database SELECT on users - Execution time: 138ms - Rows affected: 84 - RequestID: 492u2h8smz2 +2025-06-18T13:55:04.781Z [INFO] inventory-service - Auth event: login_failed - User: user_1076 - IP: 192.168.232.72 - RequestID: t6upw4h3uqc +2025-06-18T13:55:04.881Z [TRACE] notification-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.170.215 - RequestID: hhaqj1rx2p +2025-06-18T13:55:04.981Z [TRACE] user-service - Auth event: password_change - User: user_1004 - IP: 192.168.227.233 - RequestID: j140p8p93x +2025-06-18T13:55:05.081Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 788ms - RequestID: rp28pqen0tb +2025-06-18T13:55:05.181Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1942ms - IP: 192.168.227.77 - User: user_1005 - RequestID: rju3orzt57a +2025-06-18T13:55:05.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.113.218 - RequestID: 9kauccvf38j +2025-06-18T13:55:05.381Z [INFO] payment-service - Auth event: logout - User: user_1058 - IP: 192.168.46.63 - RequestID: d72pgls3tfu +2025-06-18T13:55:05.481Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 400 - Response time: 250ms - IP: 192.168.138.123 - User: user_1026 - RequestID: ix17ppg6g3c +2025-06-18T13:55:05.581Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1149ms - IP: 192.168.141.100 - User: user_1007 - RequestID: 08zzo057gkt8 +2025-06-18T13:55:05.681Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1126ms - IP: 192.168.28.146 - User: user_1067 - RequestID: q05mmxpvhg +2025-06-18T13:55:05.781Z [DEBUG] order-service - Auth event: login_success - User: user_1068 - IP: 192.168.242.165 - RequestID: 9m9lw05xp0u +2025-06-18T13:55:05.881Z [INFO] user-service - PUT /api/v1/users - Status: 201 - Response time: 85ms - IP: 192.168.194.41 - User: user_1023 - RequestID: w7svfuep4o +2025-06-18T13:55:05.981Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 765ms - RequestID: ogfsxke39rf +2025-06-18T13:55:06.081Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 785ms - RequestID: 9hy265sh3y +2025-06-18T13:55:06.181Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 64ms - Rows affected: 4 - RequestID: mjt7rmjnfa +2025-06-18T13:55:06.281Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 205ms - Rows affected: 17 - RequestID: 88jzyjkrhp +2025-06-18T13:55:06.381Z [INFO] user-service - DELETE /api/v1/payments - Status: 403 - Response time: 1717ms - IP: 192.168.133.7 - User: user_1000 - RequestID: hvyqzl9y1l5 +2025-06-18T13:55:06.481Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 228ms - IP: 192.168.10.184 - User: user_1092 - RequestID: cp3mp9xiz7p +2025-06-18T13:55:06.581Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 365ms - Rows affected: 11 - RequestID: vnm19yt2spa +2025-06-18T13:55:06.681Z [DEBUG] payment-service - Auth event: login_success - User: user_1052 - IP: 192.168.167.32 - RequestID: rvii1ebca5 +2025-06-18T13:55:06.781Z [INFO] payment-service - GET /api/v1/auth/login - Status: 502 - Response time: 1872ms - IP: 192.168.138.123 - User: user_1028 - RequestID: uewjro0wree +2025-06-18T13:55:06.881Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 500 - Response time: 302ms - IP: 192.168.64.33 - User: user_1041 - RequestID: q6uq9duhi9g +2025-06-18T13:55:06.981Z [INFO] user-service - Database INSERT on users - Execution time: 185ms - Rows affected: 21 - RequestID: k9dy2udkt3s +2025-06-18T13:55:07.081Z [INFO] notification-service - Operation: webhook_sent - Processing time: 219ms - RequestID: k7zde22gwr9 +2025-06-18T13:55:07.181Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 367ms - Rows affected: 58 - RequestID: b9tvdftljj +2025-06-18T13:55:07.281Z [INFO] payment-service - GET /api/v1/users - Status: 500 - Response time: 1925ms - IP: 192.168.141.100 - User: user_1026 - RequestID: nokls2qob +2025-06-18T13:55:07.381Z [INFO] notification-service - PUT /api/v1/users - Status: 401 - Response time: 1909ms - IP: 192.168.158.144 - User: user_1040 - RequestID: ujogqc0pic +2025-06-18T13:55:07.481Z [DEBUG] order-service - Operation: cache_miss - Processing time: 973ms - RequestID: z3sriimbl8s +2025-06-18T13:55:07.581Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 923ms - RequestID: sgulu8xcaq +2025-06-18T13:55:07.681Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 400 - Response time: 193ms - IP: 192.168.85.229 - User: user_1001 - RequestID: g3fl649hilq +2025-06-18T13:55:07.781Z [INFO] order-service - Auth event: logout - User: user_1010 - IP: 192.168.46.63 - RequestID: sunknqson89 +2025-06-18T13:55:07.881Z [INFO] user-service - Operation: order_created - Processing time: 486ms - RequestID: luw4zky30ll +2025-06-18T13:55:07.981Z [INFO] order-service - GET /api/v1/inventory - Status: 500 - Response time: 714ms - IP: 192.168.14.77 - User: user_1001 - RequestID: g6m1m848uj5 +2025-06-18T13:55:08.081Z [TRACE] notification-service - Auth event: login_failed - User: user_1094 - IP: 192.168.113.218 - RequestID: 4tljrs1ez55 +2025-06-18T13:55:08.181Z [INFO] user-service - Operation: cache_miss - Processing time: 55ms - RequestID: lcv66k73tlk +2025-06-18T13:55:08.281Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 426ms - RequestID: gil5se6mjsn +2025-06-18T13:55:08.381Z [INFO] order-service - Operation: webhook_sent - Processing time: 1035ms - RequestID: lguj5oo6ubr +2025-06-18T13:55:08.481Z [INFO] notification-service - Auth event: password_change - User: user_1040 - IP: 192.168.227.233 - RequestID: 7phwm4gxk3g +2025-06-18T13:55:08.581Z [TRACE] auth-service - Operation: cache_hit - Processing time: 187ms - RequestID: 0272kcu6b4b2 +2025-06-18T13:55:08.681Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 145ms - Rows affected: 55 - RequestID: uc3yvez7jx9 +2025-06-18T13:55:08.781Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1012ms - IP: 192.168.196.226 - User: user_1075 - RequestID: bzx1uztpcpd +2025-06-18T13:55:08.881Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 401 - Response time: 158ms - IP: 192.168.113.218 - User: user_1015 - RequestID: f6odwxoeadw +2025-06-18T13:55:08.981Z [INFO] order-service - Operation: payment_processed - Processing time: 870ms - RequestID: xwkf74m49g +2025-06-18T13:55:09.081Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 400 - Response time: 418ms - IP: 192.168.232.72 - User: user_1033 - RequestID: isvd2dw1uce +2025-06-18T13:55:09.181Z [TRACE] order-service - DELETE /api/v1/users - Status: 404 - Response time: 1117ms - IP: 192.168.31.117 - User: user_1029 - RequestID: uwqborab4sj +2025-06-18T13:55:09.281Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 200 - Response time: 407ms - IP: 192.168.229.123 - User: user_1032 - RequestID: vnwi1hkq1a +2025-06-18T13:55:09.381Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 350ms - RequestID: tektd384bea +2025-06-18T13:55:09.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 824ms - RequestID: 1s02luf48gs +2025-06-18T13:55:09.581Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1348ms - IP: 192.168.144.38 - User: user_1093 - RequestID: t7ivnkeh1cc +2025-06-18T13:55:09.681Z [INFO] order-service - Operation: cache_miss - Processing time: 562ms - RequestID: vgyocvr09xf +2025-06-18T13:55:09.781Z [TRACE] auth-service - Operation: email_sent - Processing time: 280ms - RequestID: ige9f39761 +2025-06-18T13:55:09.881Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 66ms - Rows affected: 71 - RequestID: pgg7x0t4nff +2025-06-18T13:55:09.981Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 888ms - RequestID: xlj0132u8vk +2025-06-18T13:55:10.081Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 447ms - IP: 192.168.14.77 - User: user_1070 - RequestID: qj7qtja5t2 +2025-06-18T13:55:10.181Z [TRACE] auth-service - GET /api/v1/payments - Status: 401 - Response time: 231ms - IP: 192.168.13.72 - User: user_1010 - RequestID: 38tmq2b5gye +2025-06-18T13:55:10.281Z [TRACE] auth-service - Operation: cache_miss - Processing time: 394ms - RequestID: ejmdhy4puld +2025-06-18T13:55:10.381Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 614ms - IP: 192.168.138.123 - User: user_1092 - RequestID: 6j4nxa1f4dd +2025-06-18T13:55:10.481Z [TRACE] payment-service - Operation: payment_processed - Processing time: 345ms - RequestID: xpe0xe69ufj +2025-06-18T13:55:10.581Z [INFO] notification-service - Database INSERT on users - Execution time: 131ms - Rows affected: 4 - RequestID: g7gpkxipk2w +2025-06-18T13:55:10.681Z [TRACE] auth-service - Auth event: login_success - User: user_1027 - IP: 192.168.242.165 - RequestID: igdurgyt66r +2025-06-18T13:55:10.781Z [TRACE] order-service - Database UPDATE on users - Execution time: 71ms - Rows affected: 36 - RequestID: chrywf0hm0n +2025-06-18T13:55:10.881Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 68ms - Rows affected: 16 - RequestID: lijgo39elae +2025-06-18T13:55:10.981Z [DEBUG] payment-service - Auth event: logout - User: user_1056 - IP: 192.168.174.114 - RequestID: zbx4ybxyej +2025-06-18T13:55:11.081Z [INFO] user-service - Operation: webhook_sent - Processing time: 614ms - RequestID: lzfcf016a4s +2025-06-18T13:55:11.181Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1690ms - IP: 192.168.10.184 - User: user_1085 - RequestID: uf4yw51zswg +2025-06-18T13:55:11.281Z [INFO] auth-service - PATCH /api/v1/orders - Status: 201 - Response time: 1366ms - IP: 192.168.240.169 - User: user_1022 - RequestID: 34t8wkx3p7j +2025-06-18T13:55:11.381Z [INFO] payment-service - Database SELECT on users - Execution time: 406ms - Rows affected: 21 - RequestID: gihgn4rno7t +2025-06-18T13:55:11.481Z [INFO] notification-service - Database SELECT on products - Execution time: 113ms - Rows affected: 91 - RequestID: wktt0ox33 +2025-06-18T13:55:11.581Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 238ms - Rows affected: 43 - RequestID: 9onffomu7fp +2025-06-18T13:55:11.681Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 371ms - Rows affected: 30 - RequestID: m7ddcat41 +2025-06-18T13:55:11.781Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 200 - Response time: 596ms - IP: 192.168.196.226 - User: user_1095 - RequestID: z46jw110t0d +2025-06-18T13:55:11.881Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 386ms - Rows affected: 16 - RequestID: qw4jrvlhg8 +2025-06-18T13:55:11.981Z [DEBUG] order-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.68.158 - RequestID: 5lwuxga4uza +2025-06-18T13:55:12.081Z [INFO] payment-service - Auth event: password_change - User: user_1001 - IP: 192.168.167.32 - RequestID: mqc9cj8wuhp +2025-06-18T13:55:12.181Z [INFO] auth-service - Operation: cache_hit - Processing time: 279ms - RequestID: bq92vgfmyd +2025-06-18T13:55:12.281Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 256ms - Rows affected: 79 - RequestID: s3csmvqlml +2025-06-18T13:55:12.381Z [INFO] order-service - Auth event: login_failed - User: user_1072 - IP: 192.168.30.79 - RequestID: j2ddyba0td +2025-06-18T13:55:12.481Z [INFO] user-service - PUT /api/v1/auth/login - Status: 400 - Response time: 227ms - IP: 192.168.189.103 - User: user_1069 - RequestID: oj5j4dsrtz +2025-06-18T13:55:12.581Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 659ms - IP: 192.168.13.72 - User: user_1085 - RequestID: ggwtv5gbmpl +2025-06-18T13:55:12.681Z [TRACE] user-service - Operation: order_created - Processing time: 907ms - RequestID: 346pp92l2p8 +2025-06-18T13:55:12.781Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 180ms - IP: 192.168.85.229 - User: user_1042 - RequestID: f3u2v3mzqar +2025-06-18T13:55:12.881Z [TRACE] auth-service - Auth event: logout - User: user_1042 - IP: 192.168.13.72 - RequestID: 9etrdslu3m +2025-06-18T13:55:12.981Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 768ms - RequestID: koz4tw6i5ir +2025-06-18T13:55:13.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1017 - IP: 192.168.147.171 - RequestID: hi19tswge3s +2025-06-18T13:55:13.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.247.134 - RequestID: il7ridxnb5 +2025-06-18T13:55:13.281Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1991ms - IP: 192.168.227.77 - User: user_1093 - RequestID: mlmjsrxi1p +2025-06-18T13:55:13.381Z [DEBUG] payment-service - POST /api/v1/orders - Status: 500 - Response time: 1131ms - IP: 192.168.167.32 - User: user_1026 - RequestID: meqcb0376o +2025-06-18T13:55:13.481Z [INFO] user-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.159.94 - RequestID: tibrrzgeujq +2025-06-18T13:55:13.581Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 182ms - Rows affected: 81 - RequestID: 6kw2h66g1ku +2025-06-18T13:55:13.681Z [DEBUG] payment-service - Database INSERT on users - Execution time: 396ms - Rows affected: 11 - RequestID: pzr7vznbjjf +2025-06-18T13:55:13.781Z [DEBUG] notification-service - Operation: email_sent - Processing time: 611ms - RequestID: hkrpk0s7ott +2025-06-18T13:55:13.881Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 351ms - Rows affected: 82 - RequestID: kgep8qsd0p +2025-06-18T13:55:13.981Z [DEBUG] order-service - Database INSERT on orders - Execution time: 163ms - Rows affected: 57 - RequestID: z0lq90jp5p +2025-06-18T13:55:14.081Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1919ms - IP: 192.168.97.87 - User: user_1091 - RequestID: 2w84p4vnpe8 +2025-06-18T13:55:14.181Z [INFO] payment-service - Auth event: login_success - User: user_1092 - IP: 192.168.159.94 - RequestID: xick3tx2t3 +2025-06-18T13:55:14.281Z [INFO] order-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.167.32 - RequestID: 97pr9ud1lau +2025-06-18T13:55:14.381Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 319ms - Rows affected: 10 - RequestID: vym91ozssz +2025-06-18T13:55:14.481Z [INFO] order-service - Database UPDATE on orders - Execution time: 162ms - Rows affected: 45 - RequestID: 5cpztcfjqyq +2025-06-18T13:55:14.581Z [INFO] notification-service - DELETE /api/v1/orders - Status: 401 - Response time: 1965ms - IP: 192.168.147.171 - User: user_1053 - RequestID: trgqdrabybm +2025-06-18T13:55:14.681Z [TRACE] order-service - Database INSERT on products - Execution time: 156ms - Rows affected: 71 - RequestID: ei9a7hx1zrh +2025-06-18T13:55:14.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 108ms - RequestID: 7cnf06bseqw +2025-06-18T13:55:14.881Z [TRACE] order-service - Database INSERT on orders - Execution time: 420ms - Rows affected: 4 - RequestID: zn18rlyjpn +2025-06-18T13:55:14.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 157ms - RequestID: lycuanqgy0m +2025-06-18T13:55:15.081Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 255ms - Rows affected: 13 - RequestID: cn3wb2f684c +2025-06-18T13:55:15.181Z [TRACE] order-service - DELETE /api/v1/orders - Status: 404 - Response time: 247ms - IP: 192.168.167.32 - User: user_1080 - RequestID: 74lfc3h4hk5 +2025-06-18T13:55:15.281Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 304ms - Rows affected: 72 - RequestID: izk5e5l5rr +2025-06-18T13:55:15.381Z [INFO] user-service - Operation: notification_queued - Processing time: 229ms - RequestID: fhmrn8aus9f +2025-06-18T13:55:15.481Z [TRACE] order-service - Operation: webhook_sent - Processing time: 128ms - RequestID: o7jnrb3bfis +2025-06-18T13:55:15.581Z [INFO] notification-service - Database INSERT on sessions - Execution time: 360ms - Rows affected: 25 - RequestID: irg37beceve +2025-06-18T13:55:15.681Z [TRACE] order-service - Operation: cache_miss - Processing time: 98ms - RequestID: 9niens8js5 +2025-06-18T13:55:15.781Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 368ms - IP: 192.168.133.7 - User: user_1065 - RequestID: mb3ur81vtih +2025-06-18T13:55:15.881Z [INFO] auth-service - Auth event: login_success - User: user_1026 - IP: 192.168.32.38 - RequestID: 7xwb56ib5kq +2025-06-18T13:55:15.981Z [INFO] notification-service - Database DELETE on orders - Execution time: 31ms - Rows affected: 67 - RequestID: 69mpclu37gd +2025-06-18T13:55:16.081Z [INFO] user-service - GET /api/v1/orders - Status: 404 - Response time: 1800ms - IP: 192.168.113.218 - User: user_1027 - RequestID: xhaue4m3wa +2025-06-18T13:55:16.181Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 770ms - RequestID: gowvky7lzcr +2025-06-18T13:55:16.281Z [TRACE] auth-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.28.146 - RequestID: pw4ckjapx5 +2025-06-18T13:55:16.381Z [TRACE] payment-service - Auth event: login_success - User: user_1086 - IP: 192.168.79.143 - RequestID: 8zrne2zrd64 +2025-06-18T13:55:16.481Z [INFO] order-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.11.60 - RequestID: g6g0i459hg8 +2025-06-18T13:55:16.581Z [DEBUG] user-service - POST /api/v1/payments - Status: 400 - Response time: 1819ms - IP: 192.168.235.117 - User: user_1001 - RequestID: v8pfci3hl2p +2025-06-18T13:55:16.681Z [TRACE] payment-service - Database SELECT on users - Execution time: 145ms - Rows affected: 52 - RequestID: oma15fqdh3m +2025-06-18T13:55:16.781Z [INFO] user-service - Database UPDATE on orders - Execution time: 171ms - Rows affected: 63 - RequestID: 5izyatp03nf +2025-06-18T13:55:16.881Z [TRACE] user-service - Operation: order_created - Processing time: 114ms - RequestID: n5s2g1xef4o +2025-06-18T13:55:16.981Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.46.63 - RequestID: xh07tirgor +2025-06-18T13:55:17.081Z [DEBUG] notification-service - Auth event: logout - User: user_1026 - IP: 192.168.194.41 - RequestID: xdgjnz40m2 +2025-06-18T13:55:17.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1044 - IP: 192.168.31.117 - RequestID: 1xfd9soh884 +2025-06-18T13:55:17.281Z [TRACE] user-service - Database SELECT on users - Execution time: 171ms - Rows affected: 23 - RequestID: 012s37vndj4w +2025-06-18T13:55:17.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.28.146 - RequestID: 19ywdlinkbe +2025-06-18T13:55:17.481Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1749ms - IP: 192.168.32.38 - User: user_1016 - RequestID: yfg6b5j4908 +2025-06-18T13:55:17.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.232.72 - RequestID: w7wmhnue6lq +2025-06-18T13:55:17.681Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 388ms - Rows affected: 60 - RequestID: azvsgbo0o6c +2025-06-18T13:55:17.781Z [DEBUG] user-service - POST /api/v1/payments - Status: 500 - Response time: 282ms - IP: 192.168.174.114 - User: user_1058 - RequestID: z47rdxaqo4 +2025-06-18T13:55:17.881Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 201 - Response time: 134ms - IP: 192.168.187.199 - User: user_1044 - RequestID: va72g1dvgb +2025-06-18T13:55:17.981Z [DEBUG] order-service - POST /api/v1/orders - Status: 502 - Response time: 242ms - IP: 192.168.44.5 - User: user_1022 - RequestID: vnuscvwzqkr +2025-06-18T13:55:18.081Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 231ms - IP: 192.168.167.32 - User: user_1065 - RequestID: qwnfoo5gul8 +2025-06-18T13:55:18.181Z [TRACE] payment-service - Operation: notification_queued - Processing time: 487ms - RequestID: 52vn8ew0tgd +2025-06-18T13:55:18.281Z [DEBUG] auth-service - PUT /api/v1/users - Status: 503 - Response time: 685ms - IP: 192.168.196.226 - User: user_1060 - RequestID: 1all7dbsvpy +2025-06-18T13:55:18.381Z [TRACE] user-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.79.141 - RequestID: nsmr1cbubis +2025-06-18T13:55:18.481Z [TRACE] order-service - PUT /api/v1/payments - Status: 500 - Response time: 166ms - IP: 192.168.181.225 - User: user_1016 - RequestID: 0syllyllmqec +2025-06-18T13:55:18.581Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 111ms - Rows affected: 97 - RequestID: x7lfovk2lxe +2025-06-18T13:55:18.681Z [DEBUG] inventory-service - Auth event: login_success - User: user_1009 - IP: 192.168.13.72 - RequestID: ssmxaip0okd +2025-06-18T13:55:18.781Z [TRACE] order-service - Operation: webhook_sent - Processing time: 564ms - RequestID: qz90vlsn1g +2025-06-18T13:55:18.881Z [TRACE] user-service - Auth event: login_success - User: user_1033 - IP: 192.168.36.218 - RequestID: pxmak1r9vw +2025-06-18T13:55:18.981Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 357ms - Rows affected: 51 - RequestID: sygsrwavflp +2025-06-18T13:55:19.081Z [INFO] auth-service - Operation: payment_processed - Processing time: 794ms - RequestID: y58lztmlxd +2025-06-18T13:55:19.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 594ms - RequestID: nwen9hl2wj +2025-06-18T13:55:19.281Z [INFO] user-service - Operation: webhook_sent - Processing time: 316ms - RequestID: 68014efk4zd +2025-06-18T13:55:19.381Z [INFO] payment-service - PUT /api/v1/orders - Status: 503 - Response time: 302ms - IP: 192.168.235.117 - User: user_1038 - RequestID: kraziygv5tj +2025-06-18T13:55:19.481Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1962ms - IP: 192.168.64.33 - User: user_1047 - RequestID: d60rrc9hkgp +2025-06-18T13:55:19.581Z [TRACE] notification-service - Operation: cache_miss - Processing time: 270ms - RequestID: 9nteooh9it7 +2025-06-18T13:55:19.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 85ms - RequestID: skdp2i9umga +2025-06-18T13:55:19.781Z [TRACE] notification-service - Database DELETE on payments - Execution time: 449ms - Rows affected: 30 - RequestID: h4sf26u2hrd +2025-06-18T13:55:19.881Z [INFO] notification-service - PUT /api/v1/inventory - Status: 401 - Response time: 923ms - IP: 192.168.141.100 - User: user_1023 - RequestID: 908d2hibiav +2025-06-18T13:55:19.981Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 403 - Response time: 1558ms - IP: 192.168.147.171 - User: user_1061 - RequestID: i6t0wo1qu +2025-06-18T13:55:20.081Z [INFO] inventory-service - PUT /api/v1/payments - Status: 200 - Response time: 1406ms - IP: 192.168.158.144 - User: user_1004 - RequestID: oztbdo39inc +2025-06-18T13:55:20.181Z [TRACE] order-service - Operation: email_sent - Processing time: 583ms - RequestID: j4ph3aegau +2025-06-18T13:55:20.281Z [INFO] payment-service - Database INSERT on sessions - Execution time: 62ms - Rows affected: 51 - RequestID: ogvtif14km +2025-06-18T13:55:20.381Z [TRACE] order-service - Auth event: login_success - User: user_1035 - IP: 192.168.159.94 - RequestID: lk3ye9jerxq +2025-06-18T13:55:20.481Z [TRACE] payment-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.113.218 - RequestID: f5dtdvesk98 +2025-06-18T13:55:20.581Z [TRACE] inventory-service - Auth event: login_success - User: user_1061 - IP: 192.168.11.60 - RequestID: i6bojwejgnc +2025-06-18T13:55:20.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1093 - IP: 192.168.79.141 - RequestID: 6ltrpfbjgyc +2025-06-18T13:55:20.781Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 27ms - Rows affected: 89 - RequestID: sgoax5c14xl +2025-06-18T13:55:20.881Z [DEBUG] order-service - Operation: cache_hit - Processing time: 325ms - RequestID: vqjlwzcdeql +2025-06-18T13:55:20.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 237ms - RequestID: 4h87ekiuvj +2025-06-18T13:55:21.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.81.206 - RequestID: jigxxl9mtyd +2025-06-18T13:55:21.181Z [DEBUG] user-service - Operation: cache_hit - Processing time: 280ms - RequestID: 30idk2aovjv +2025-06-18T13:55:21.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.33.76 - RequestID: 6dryfvtdkud +2025-06-18T13:55:21.381Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 6ms - Rows affected: 58 - RequestID: syd2iwzhwy +2025-06-18T13:55:21.481Z [INFO] payment-service - Auth event: logout - User: user_1058 - IP: 192.168.30.79 - RequestID: npjjftoutx +2025-06-18T13:55:21.581Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 500 - Response time: 525ms - IP: 192.168.196.226 - User: user_1055 - RequestID: t3ypjhsckif +2025-06-18T13:55:21.681Z [DEBUG] inventory-service - Auth event: login_success - User: user_1088 - IP: 192.168.11.60 - RequestID: tkpcpx9w3hk +2025-06-18T13:55:21.781Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 500 - Response time: 463ms - IP: 192.168.159.94 - User: user_1011 - RequestID: 0jwouzbozozg +2025-06-18T13:55:21.881Z [TRACE] auth-service - Operation: order_created - Processing time: 158ms - RequestID: ggs0lhdnoyu +2025-06-18T13:55:21.981Z [INFO] inventory-service - Operation: cache_hit - Processing time: 795ms - RequestID: mvvq4s477e +2025-06-18T13:55:22.081Z [TRACE] payment-service - Auth event: logout - User: user_1097 - IP: 192.168.68.128 - RequestID: 1rfu9n6t78q +2025-06-18T13:55:22.181Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 481ms - RequestID: v9iye9v8tan +2025-06-18T13:55:22.281Z [INFO] payment-service - Database SELECT on users - Execution time: 446ms - Rows affected: 67 - RequestID: usbp2999tg +2025-06-18T13:55:22.381Z [INFO] payment-service - Operation: cache_hit - Processing time: 73ms - RequestID: 82wj8mia7ya +2025-06-18T13:55:22.481Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 189ms - Rows affected: 73 - RequestID: h7jquu3l99 +2025-06-18T13:55:22.581Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.30.79 - RequestID: b8bcrb0gmee +2025-06-18T13:55:22.681Z [DEBUG] order-service - POST /api/v1/users - Status: 201 - Response time: 855ms - IP: 192.168.46.63 - User: user_1030 - RequestID: m1b2phccw4q +2025-06-18T13:55:22.781Z [TRACE] user-service - PUT /api/v1/users - Status: 503 - Response time: 1892ms - IP: 192.168.79.141 - User: user_1053 - RequestID: e011bwmacs6 +2025-06-18T13:55:22.881Z [INFO] notification-service - Operation: email_sent - Processing time: 628ms - RequestID: dkegr4s03yv +2025-06-18T13:55:22.981Z [DEBUG] payment-service - Auth event: login_failed - User: user_1098 - IP: 192.168.187.199 - RequestID: hpm9adgqsjj +2025-06-18T13:55:23.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1018 - IP: 192.168.10.184 - RequestID: ulccto51tn +2025-06-18T13:55:23.181Z [INFO] user-service - Operation: payment_processed - Processing time: 794ms - RequestID: 1t21kzzdaho +2025-06-18T13:55:23.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 233ms - RequestID: h7pj60ai4mb +2025-06-18T13:55:23.381Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 469ms - Rows affected: 59 - RequestID: in0dv8udirk +2025-06-18T13:55:23.481Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1049ms - RequestID: 178zae0534o +2025-06-18T13:55:23.581Z [INFO] notification-service - Auth event: login_failed - User: user_1088 - IP: 192.168.100.240 - RequestID: ac32lwze55o +2025-06-18T13:55:23.681Z [INFO] auth-service - Database UPDATE on products - Execution time: 149ms - Rows affected: 17 - RequestID: 1oumt19kod4 +2025-06-18T13:55:23.781Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 404 - Response time: 769ms - IP: 192.168.181.225 - User: user_1035 - RequestID: cd23if278l +2025-06-18T13:55:23.881Z [INFO] user-service - Database DELETE on payments - Execution time: 355ms - Rows affected: 1 - RequestID: bobg8b76lc +2025-06-18T13:55:23.981Z [INFO] inventory-service - Auth event: password_change - User: user_1032 - IP: 192.168.194.41 - RequestID: 70wl14vif5p +2025-06-18T13:55:24.081Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 416ms - Rows affected: 26 - RequestID: wn5hwjhi0t +2025-06-18T13:55:24.181Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 295ms - IP: 192.168.32.38 - User: user_1079 - RequestID: a1r33tfrmk +2025-06-18T13:55:24.281Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 434ms - Rows affected: 36 - RequestID: pi3y61vs8s +2025-06-18T13:55:24.381Z [INFO] notification-service - PUT /api/v1/inventory - Status: 400 - Response time: 557ms - IP: 192.168.104.37 - User: user_1039 - RequestID: 3mm4aggz42w +2025-06-18T13:55:24.481Z [INFO] order-service - Database INSERT on orders - Execution time: 268ms - Rows affected: 34 - RequestID: uc52nxwpimp +2025-06-18T13:55:24.581Z [TRACE] auth-service - Auth event: login_success - User: user_1015 - IP: 192.168.194.41 - RequestID: 3rqbj14mn9c +2025-06-18T13:55:24.681Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 624ms - RequestID: ky0mlm1nhjs +2025-06-18T13:55:24.781Z [INFO] notification-service - Operation: cache_miss - Processing time: 92ms - RequestID: 8wxj3yjloox +2025-06-18T13:55:24.881Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 937ms - IP: 192.168.113.218 - User: user_1072 - RequestID: hhvz8wn9kdc +2025-06-18T13:55:24.981Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 202ms - RequestID: ktdawnckei +2025-06-18T13:55:25.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.113.218 - RequestID: 29adecgw9vu +2025-06-18T13:55:25.181Z [TRACE] notification-service - Operation: payment_processed - Processing time: 527ms - RequestID: 2uewcis9gi8 +2025-06-18T13:55:25.281Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 104ms - Rows affected: 53 - RequestID: o4uan4t15c8 +2025-06-18T13:55:25.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 928ms - RequestID: bywn5ejgwo +2025-06-18T13:55:25.481Z [DEBUG] payment-service - Auth event: login_success - User: user_1094 - IP: 192.168.13.72 - RequestID: wantntk7uv +2025-06-18T13:55:25.581Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 250ms - Rows affected: 53 - RequestID: vx6jfctarpb +2025-06-18T13:55:25.681Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 503 - Response time: 547ms - IP: 192.168.232.72 - User: user_1014 - RequestID: tjpd5ysei9s +2025-06-18T13:55:25.781Z [TRACE] auth-service - Database INSERT on users - Execution time: 492ms - Rows affected: 31 - RequestID: dqihy1o6sj7 +2025-06-18T13:55:25.881Z [TRACE] user-service - PUT /api/v1/inventory - Status: 201 - Response time: 682ms - IP: 192.168.64.33 - User: user_1040 - RequestID: f8o7zvi72bc +2025-06-18T13:55:25.981Z [INFO] auth-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.187.199 - RequestID: 210e4pewjmj +2025-06-18T13:55:26.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1034 - IP: 192.168.159.94 - RequestID: 2xq8u65aqbg +2025-06-18T13:55:26.181Z [TRACE] user-service - Database SELECT on products - Execution time: 289ms - Rows affected: 14 - RequestID: mxud99j95o +2025-06-18T13:55:26.281Z [TRACE] order-service - GET /api/v1/inventory - Status: 500 - Response time: 724ms - IP: 192.168.44.5 - User: user_1001 - RequestID: jksq77u6r5 +2025-06-18T13:55:26.381Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 502 - Response time: 805ms - IP: 192.168.194.41 - User: user_1074 - RequestID: xagz9wuq3d +2025-06-18T13:55:26.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1010 - IP: 192.168.196.226 - RequestID: 423r4lpetvf +2025-06-18T13:55:26.581Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1152ms - IP: 192.168.14.77 - User: user_1086 - RequestID: difqwfupbm5 +2025-06-18T13:55:26.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.81.206 - RequestID: p9w407l1w9 +2025-06-18T13:55:26.781Z [INFO] order-service - Database INSERT on sessions - Execution time: 455ms - Rows affected: 40 - RequestID: v1or8824gpc +2025-06-18T13:55:26.881Z [INFO] inventory-service - Operation: cache_hit - Processing time: 645ms - RequestID: o2evq7chksr +2025-06-18T13:55:26.981Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 308ms - RequestID: e59jt2sv1mw +2025-06-18T13:55:27.081Z [TRACE] user-service - POST /api/v1/orders - Status: 503 - Response time: 195ms - IP: 192.168.100.240 - User: user_1055 - RequestID: 14a5tb3vm4wi +2025-06-18T13:55:27.181Z [INFO] auth-service - GET /api/v1/auth/login - Status: 500 - Response time: 1114ms - IP: 192.168.46.63 - User: user_1084 - RequestID: xdohb6mt3rq +2025-06-18T13:55:27.281Z [TRACE] notification-service - PUT /api/v1/users - Status: 502 - Response time: 1847ms - IP: 192.168.1.152 - User: user_1035 - RequestID: 1o11ezyqliy +2025-06-18T13:55:27.381Z [TRACE] payment-service - POST /api/v1/orders - Status: 502 - Response time: 1725ms - IP: 192.168.44.5 - User: user_1067 - RequestID: 14ucna28ino +2025-06-18T13:55:27.481Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 336ms - Rows affected: 84 - RequestID: uxhcjtmkmqh +2025-06-18T13:55:27.581Z [TRACE] user-service - Database DELETE on sessions - Execution time: 330ms - Rows affected: 28 - RequestID: 3fg87qznfl6 +2025-06-18T13:55:27.681Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 406ms - Rows affected: 67 - RequestID: h8d3qb6cydl +2025-06-18T13:55:27.781Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 149ms - Rows affected: 90 - RequestID: hc7hzpgxmme +2025-06-18T13:55:27.881Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 603ms - IP: 192.168.1.152 - User: user_1086 - RequestID: xthecbszor +2025-06-18T13:55:27.981Z [INFO] order-service - GET /api/v1/payments - Status: 200 - Response time: 329ms - IP: 192.168.189.103 - User: user_1020 - RequestID: 5q4wmugsvgu +2025-06-18T13:55:28.081Z [INFO] payment-service - Operation: notification_queued - Processing time: 152ms - RequestID: ghuu2ghpk3 +2025-06-18T13:55:28.181Z [TRACE] user-service - GET /api/v1/users - Status: 502 - Response time: 953ms - IP: 192.168.227.77 - User: user_1074 - RequestID: 4z0c0wp0jm8 +2025-06-18T13:55:28.281Z [INFO] payment-service - DELETE /api/v1/users - Status: 201 - Response time: 176ms - IP: 192.168.85.229 - User: user_1032 - RequestID: mkk3peot5fb +2025-06-18T13:55:28.381Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 592ms - IP: 192.168.232.72 - User: user_1006 - RequestID: 9eqt9ra6vpu +2025-06-18T13:55:28.481Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 207ms - Rows affected: 7 - RequestID: 663jhbtv8xq +2025-06-18T13:55:28.581Z [TRACE] order-service - Operation: cache_hit - Processing time: 647ms - RequestID: 1r13cgn0h4o +2025-06-18T13:55:28.681Z [TRACE] inventory-service - Operation: order_created - Processing time: 143ms - RequestID: iti3gw19nn +2025-06-18T13:55:28.781Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 205ms - Rows affected: 11 - RequestID: 9d3jjvvl0a7 +2025-06-18T13:55:28.881Z [INFO] user-service - PUT /api/v1/inventory - Status: 503 - Response time: 1078ms - IP: 192.168.227.77 - User: user_1025 - RequestID: ngo91ascd7m +2025-06-18T13:55:28.981Z [TRACE] payment-service - GET /api/v1/orders - Status: 200 - Response time: 681ms - IP: 192.168.13.72 - User: user_1060 - RequestID: xfgre4bvht +2025-06-18T13:55:29.081Z [INFO] user-service - Operation: notification_queued - Processing time: 53ms - RequestID: j1kkuhjdxc9 +2025-06-18T13:55:29.181Z [INFO] user-service - Operation: webhook_sent - Processing time: 689ms - RequestID: zprarktuv1d +2025-06-18T13:55:29.281Z [INFO] payment-service - Database UPDATE on users - Execution time: 351ms - Rows affected: 88 - RequestID: fv32ryot3ae +2025-06-18T13:55:29.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 230ms - RequestID: q23xizqvcdn +2025-06-18T13:55:29.481Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 480ms - RequestID: xibxdsiq60s +2025-06-18T13:55:29.581Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 299ms - Rows affected: 48 - RequestID: a9w6c022uyq +2025-06-18T13:55:29.681Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 403 - Response time: 902ms - IP: 192.168.170.215 - User: user_1066 - RequestID: izzm4d0q6mk +2025-06-18T13:55:29.781Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 225ms - Rows affected: 81 - RequestID: cel9zgxauod +2025-06-18T13:55:29.881Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 420ms - Rows affected: 11 - RequestID: plro161u3sp +2025-06-18T13:55:29.981Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 879ms - RequestID: 1zzmh9rp4hy +2025-06-18T13:55:30.081Z [TRACE] payment-service - POST /api/v1/inventory - Status: 400 - Response time: 942ms - IP: 192.168.33.76 - User: user_1052 - RequestID: 0kgqg8gmxo9 +2025-06-18T13:55:30.181Z [TRACE] order-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.68.128 - RequestID: 6m8y9h61ajh +2025-06-18T13:55:30.281Z [DEBUG] order-service - Operation: cache_miss - Processing time: 155ms - RequestID: oz3n4gtxcc +2025-06-18T13:55:30.381Z [DEBUG] user-service - Operation: cache_miss - Processing time: 376ms - RequestID: uwgmpuqs1cn +2025-06-18T13:55:30.481Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 32ms - Rows affected: 90 - RequestID: bk8v5js4ux +2025-06-18T13:55:30.581Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 606ms - IP: 192.168.10.184 - User: user_1064 - RequestID: kdvmr5w7quj +2025-06-18T13:55:30.681Z [INFO] order-service - Database DELETE on sessions - Execution time: 181ms - Rows affected: 54 - RequestID: zjozfq0fe8 +2025-06-18T13:55:30.781Z [TRACE] order-service - Database DELETE on sessions - Execution time: 77ms - Rows affected: 88 - RequestID: dlrmjlt6jso +2025-06-18T13:55:30.881Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 201 - Response time: 1114ms - IP: 192.168.240.169 - User: user_1072 - RequestID: 1ix9ukvkuu7 +2025-06-18T13:55:30.981Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 449ms - RequestID: 4mxmm86g25p +2025-06-18T13:55:31.081Z [INFO] auth-service - PUT /api/v1/orders - Status: 503 - Response time: 284ms - IP: 192.168.235.117 - User: user_1025 - RequestID: g8g15djc1kk +2025-06-18T13:55:31.181Z [TRACE] user-service - PATCH /api/v1/users - Status: 503 - Response time: 1880ms - IP: 192.168.68.158 - User: user_1009 - RequestID: mbnr7zzla3c +2025-06-18T13:55:31.281Z [DEBUG] notification-service - Auth event: logout - User: user_1018 - IP: 192.168.85.229 - RequestID: v17osaphbus +2025-06-18T13:55:31.381Z [INFO] user-service - Database INSERT on users - Execution time: 7ms - Rows affected: 38 - RequestID: sgmupkitz1 +2025-06-18T13:55:31.481Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 617ms - RequestID: 4ce8tlfdg3d +2025-06-18T13:55:31.581Z [INFO] notification-service - Database UPDATE on products - Execution time: 221ms - Rows affected: 18 - RequestID: ht757e9qze +2025-06-18T13:55:31.681Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 252ms - IP: 192.168.1.152 - User: user_1017 - RequestID: g96tt8n3nrj +2025-06-18T13:55:31.781Z [INFO] auth-service - GET /api/v1/auth/login - Status: 200 - Response time: 570ms - IP: 192.168.159.94 - User: user_1008 - RequestID: ktp4sfg7kba +2025-06-18T13:55:31.881Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1709ms - IP: 192.168.68.158 - User: user_1011 - RequestID: 8xv785nfo34 +2025-06-18T13:55:31.981Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 749ms - IP: 192.168.196.226 - User: user_1001 - RequestID: avvtju3x4kq +2025-06-18T13:55:32.081Z [INFO] inventory-service - Database SELECT on users - Execution time: 302ms - Rows affected: 54 - RequestID: co19pwr06xd +2025-06-18T13:55:32.181Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 77ms - Rows affected: 0 - RequestID: 5th6g451x43 +2025-06-18T13:55:32.281Z [INFO] payment-service - PATCH /api/v1/orders - Status: 201 - Response time: 1269ms - IP: 192.168.211.72 - User: user_1061 - RequestID: 69z177nk67p +2025-06-18T13:55:32.381Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 946ms - RequestID: b1z247plhg +2025-06-18T13:55:32.481Z [TRACE] user-service - Database INSERT on users - Execution time: 220ms - Rows affected: 12 - RequestID: 42vfh0n54b +2025-06-18T13:55:32.581Z [TRACE] user-service - Operation: order_created - Processing time: 1036ms - RequestID: ro6dzpu2yjh +2025-06-18T13:55:32.681Z [TRACE] inventory-service - Database SELECT on products - Execution time: 351ms - Rows affected: 47 - RequestID: w9qj4krp53 +2025-06-18T13:55:32.781Z [TRACE] user-service - Operation: inventory_updated - Processing time: 1000ms - RequestID: 0b945fsa6v17 +2025-06-18T13:55:32.881Z [TRACE] notification-service - Database SELECT on products - Execution time: 491ms - Rows affected: 81 - RequestID: mu1ejmh6q3k +2025-06-18T13:55:32.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 334ms - RequestID: 3xz0smgh279 +2025-06-18T13:55:33.081Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 403 - Response time: 1254ms - IP: 192.168.133.7 - User: user_1011 - RequestID: uz9o1y5sf8n +2025-06-18T13:55:33.181Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 404 - Response time: 470ms - IP: 192.168.189.103 - User: user_1039 - RequestID: gsou8ikmzms +2025-06-18T13:55:33.281Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1078ms - IP: 192.168.141.100 - User: user_1030 - RequestID: ghkfsb79l15 +2025-06-18T13:55:33.381Z [DEBUG] user-service - Operation: email_sent - Processing time: 452ms - RequestID: o72hksbs6q +2025-06-18T13:55:33.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 556ms - RequestID: c7gcmq1y0v5 +2025-06-18T13:55:33.581Z [INFO] inventory-service - POST /api/v1/payments - Status: 404 - Response time: 1470ms - IP: 192.168.194.41 - User: user_1052 - RequestID: ayx87kemhjq +2025-06-18T13:55:33.681Z [INFO] order-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.227.233 - RequestID: qw6v8wk5dvt +2025-06-18T13:55:33.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1003 - IP: 192.168.133.7 - RequestID: 379cv44wy0q +2025-06-18T13:55:33.881Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 400 - Response time: 1155ms - IP: 192.168.46.63 - User: user_1017 - RequestID: gxfgjif613a +2025-06-18T13:55:33.981Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 156ms - Rows affected: 73 - RequestID: 0qjecwxjkz +2025-06-18T13:55:34.081Z [TRACE] notification-service - Operation: cache_hit - Processing time: 373ms - RequestID: dndnqusk2c4 +2025-06-18T13:55:34.181Z [INFO] inventory-service - Operation: cache_miss - Processing time: 262ms - RequestID: 91pv1afemhq +2025-06-18T13:55:34.281Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1116ms - IP: 192.168.79.143 - User: user_1006 - RequestID: xg4e676qocc +2025-06-18T13:55:34.381Z [DEBUG] notification-service - Operation: email_sent - Processing time: 151ms - RequestID: 6kk89a29ock +2025-06-18T13:55:34.481Z [INFO] user-service - PUT /api/v1/payments - Status: 400 - Response time: 111ms - IP: 192.168.64.33 - User: user_1077 - RequestID: c1ehyq489p9 +2025-06-18T13:55:34.581Z [INFO] inventory-service - Auth event: password_change - User: user_1087 - IP: 192.168.97.87 - RequestID: ed1zz6e780r +2025-06-18T13:55:34.681Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 200 - Response time: 1928ms - IP: 192.168.240.169 - User: user_1023 - RequestID: dqttt1jane +2025-06-18T13:55:34.781Z [TRACE] user-service - DELETE /api/v1/users - Status: 400 - Response time: 457ms - IP: 192.168.79.143 - User: user_1003 - RequestID: 279cn98slnm +2025-06-18T13:55:34.881Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 815ms - RequestID: 0frbbzz17vs +2025-06-18T13:55:34.981Z [DEBUG] order-service - Auth event: password_change - User: user_1031 - IP: 192.168.189.103 - RequestID: 94jx7buhvr9 +2025-06-18T13:55:35.081Z [TRACE] auth-service - Operation: notification_queued - Processing time: 120ms - RequestID: 5fgi3br6xus +2025-06-18T13:55:35.181Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 63ms - Rows affected: 15 - RequestID: ahh9wlhyyf +2025-06-18T13:55:35.281Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 167ms - Rows affected: 53 - RequestID: ohjdosn8yzp +2025-06-18T13:55:35.381Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 992ms - RequestID: pz2qdrvlgfo +2025-06-18T13:55:35.481Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 201 - Response time: 426ms - IP: 192.168.97.87 - User: user_1011 - RequestID: gfsssywouy9 +2025-06-18T13:55:35.581Z [DEBUG] auth-service - Auth event: logout - User: user_1091 - IP: 192.168.133.7 - RequestID: 560xswa0uml +2025-06-18T13:55:35.681Z [INFO] order-service - Database UPDATE on products - Execution time: 283ms - Rows affected: 30 - RequestID: e21vicn9fn +2025-06-18T13:55:35.781Z [INFO] payment-service - Operation: email_sent - Processing time: 843ms - RequestID: ebf17k8dtgu +2025-06-18T13:55:35.881Z [TRACE] user-service - Auth event: password_change - User: user_1001 - IP: 192.168.211.72 - RequestID: ghodzhv5qsk +2025-06-18T13:55:35.981Z [INFO] payment-service - Database SELECT on payments - Execution time: 334ms - Rows affected: 82 - RequestID: y10frzopd1i +2025-06-18T13:55:36.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 271ms - RequestID: jrkzd479r1l +2025-06-18T13:55:36.181Z [INFO] notification-service - Operation: email_sent - Processing time: 226ms - RequestID: 109legn7hxjk +2025-06-18T13:55:36.281Z [INFO] payment-service - Operation: notification_queued - Processing time: 987ms - RequestID: p35didp4pn +2025-06-18T13:55:36.381Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.85.229 - RequestID: j6inq858tqc +2025-06-18T13:55:36.481Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.211.72 - RequestID: b2pkt6grs2k +2025-06-18T13:55:36.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.85.229 - RequestID: zy759rmzoii +2025-06-18T13:55:36.681Z [INFO] user-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.14.77 - RequestID: ckx1umyjdy7 +2025-06-18T13:55:36.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1086 - IP: 192.168.64.33 - RequestID: ekonehd2qs9 +2025-06-18T13:55:36.881Z [TRACE] payment-service - Auth event: login_failed - User: user_1046 - IP: 192.168.46.63 - RequestID: 6eq7l2scx84 +2025-06-18T13:55:36.981Z [INFO] notification-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.36.218 - RequestID: tsnkqyg62d +2025-06-18T13:55:37.081Z [TRACE] order-service - Operation: cache_hit - Processing time: 1002ms - RequestID: 6fa8ce3kgzm +2025-06-18T13:55:37.181Z [INFO] auth-service - Operation: inventory_updated - Processing time: 639ms - RequestID: 3efa5kxf88q +2025-06-18T13:55:37.281Z [TRACE] auth-service - Auth event: logout - User: user_1099 - IP: 192.168.174.114 - RequestID: ai8g6fe1gmu +2025-06-18T13:55:37.381Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 268ms - RequestID: oedbab588i9 +2025-06-18T13:55:37.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1003 - IP: 192.168.68.158 - RequestID: zeiqzqfa0zl +2025-06-18T13:55:37.581Z [TRACE] order-service - Operation: order_created - Processing time: 514ms - RequestID: ud36ijmcuy +2025-06-18T13:55:37.681Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 714ms - RequestID: niu7392mzyn +2025-06-18T13:55:37.781Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 282ms - RequestID: ihllo1hhczd +2025-06-18T13:55:37.881Z [TRACE] auth-service - Operation: payment_processed - Processing time: 615ms - RequestID: a0c99dbpw4 +2025-06-18T13:55:37.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 410ms - RequestID: k47pl8rbn0r +2025-06-18T13:55:38.081Z [INFO] order-service - GET /api/v1/users - Status: 502 - Response time: 121ms - IP: 192.168.11.60 - User: user_1000 - RequestID: g4z0lwzlipn +2025-06-18T13:55:38.181Z [DEBUG] notification-service - Operation: email_sent - Processing time: 751ms - RequestID: kf6j7uevi3d +2025-06-18T13:55:38.281Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 404 - Response time: 1840ms - IP: 192.168.174.114 - User: user_1055 - RequestID: 775bjnpkxuk +2025-06-18T13:55:38.381Z [INFO] user-service - Auth event: login_success - User: user_1080 - IP: 192.168.32.38 - RequestID: 4lx1t58uzub +2025-06-18T13:55:38.481Z [INFO] auth-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.167.32 - RequestID: riatxfn0hei +2025-06-18T13:55:38.581Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 108ms - IP: 192.168.79.141 - User: user_1063 - RequestID: 28iqf0vvfqs +2025-06-18T13:55:38.681Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 122ms - Rows affected: 96 - RequestID: 8p61izcbk9x +2025-06-18T13:55:38.781Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 401 - Response time: 1723ms - IP: 192.168.196.226 - User: user_1090 - RequestID: x9mp8pqa5yj +2025-06-18T13:55:38.881Z [INFO] auth-service - Auth event: login_success - User: user_1073 - IP: 192.168.46.63 - RequestID: 4gwwgr3rll8 +2025-06-18T13:55:38.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 702ms - RequestID: vsumkstc64l +2025-06-18T13:55:39.081Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 605ms - IP: 192.168.68.128 - User: user_1076 - RequestID: vgqd7ryurs +2025-06-18T13:55:39.181Z [INFO] inventory-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.181.225 - RequestID: if3faf2o6kb +2025-06-18T13:55:39.281Z [DEBUG] notification-service - Operation: email_sent - Processing time: 310ms - RequestID: per3d8tvhq +2025-06-18T13:55:39.381Z [INFO] user-service - Operation: payment_processed - Processing time: 851ms - RequestID: 63dje7m2z83 +2025-06-18T13:55:39.481Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 82ms - Rows affected: 24 - RequestID: 7liv3x9pmz6 +2025-06-18T13:55:39.581Z [INFO] auth-service - Database SELECT on sessions - Execution time: 165ms - Rows affected: 4 - RequestID: fmf5xq2ldbu +2025-06-18T13:55:39.681Z [TRACE] order-service - Operation: inventory_updated - Processing time: 734ms - RequestID: 505d0yix55o +2025-06-18T13:55:39.781Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 251ms - Rows affected: 2 - RequestID: r62shj0is3b +2025-06-18T13:55:39.881Z [INFO] order-service - Operation: webhook_sent - Processing time: 439ms - RequestID: w6sjhwh0ns +2025-06-18T13:55:39.981Z [INFO] order-service - GET /api/v1/payments - Status: 503 - Response time: 844ms - IP: 192.168.229.123 - User: user_1070 - RequestID: 670wwl84z8k +2025-06-18T13:55:40.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.133.7 - RequestID: b79jph7mgxg +2025-06-18T13:55:40.181Z [TRACE] user-service - Operation: notification_queued - Processing time: 287ms - RequestID: kf7wdowib2o +2025-06-18T13:55:40.281Z [INFO] auth-service - Auth event: login_failed - User: user_1089 - IP: 192.168.104.37 - RequestID: nmfien27cjf +2025-06-18T13:55:40.381Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 129ms - RequestID: ql11p2r875b +2025-06-18T13:55:40.481Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 500 - Response time: 807ms - IP: 192.168.242.165 - User: user_1028 - RequestID: jx0efcetrii +2025-06-18T13:55:40.581Z [TRACE] auth-service - PUT /api/v1/users - Status: 502 - Response time: 1398ms - IP: 192.168.227.77 - User: user_1097 - RequestID: nw5iyutz89p +2025-06-18T13:55:40.681Z [INFO] order-service - Operation: notification_queued - Processing time: 936ms - RequestID: 4x41tw6p03n +2025-06-18T13:55:40.781Z [DEBUG] payment-service - Operation: email_sent - Processing time: 846ms - RequestID: snmpj3acca +2025-06-18T13:55:40.881Z [TRACE] payment-service - Operation: order_created - Processing time: 507ms - RequestID: jzx2yen1it +2025-06-18T13:55:40.981Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 757ms - RequestID: vqimtullpsj +2025-06-18T13:55:41.081Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 381ms - Rows affected: 38 - RequestID: mxng65of4u9 +2025-06-18T13:55:41.181Z [TRACE] notification-service - DELETE /api/v1/users - Status: 200 - Response time: 659ms - IP: 192.168.158.144 - User: user_1017 - RequestID: aovczwqus38 +2025-06-18T13:55:41.281Z [TRACE] auth-service - Operation: notification_queued - Processing time: 797ms - RequestID: 8rneicng1lq +2025-06-18T13:55:41.381Z [INFO] user-service - Database DELETE on orders - Execution time: 160ms - Rows affected: 30 - RequestID: 5r5y8vv6mam +2025-06-18T13:55:41.481Z [TRACE] order-service - Operation: cache_hit - Processing time: 392ms - RequestID: 4vwe6gxm672 +2025-06-18T13:55:41.581Z [DEBUG] user-service - Database DELETE on orders - Execution time: 213ms - Rows affected: 93 - RequestID: yngm2wp5fr +2025-06-18T13:55:41.681Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 140ms - Rows affected: 52 - RequestID: 81oxzdpppyk +2025-06-18T13:55:41.781Z [INFO] notification-service - Auth event: login_failed - User: user_1003 - IP: 192.168.64.33 - RequestID: o7ipjq2ojh +2025-06-18T13:55:41.881Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 407ms - Rows affected: 69 - RequestID: bnw02axenzf +2025-06-18T13:55:41.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1046 - IP: 192.168.11.60 - RequestID: 4aebhu0jtbx +2025-06-18T13:55:42.081Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.31.117 - RequestID: dwzrwqcsgo +2025-06-18T13:55:42.181Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 113ms - Rows affected: 1 - RequestID: 6wh484vpts6 +2025-06-18T13:55:42.281Z [TRACE] auth-service - Database UPDATE on products - Execution time: 333ms - Rows affected: 67 - RequestID: ffpwmmjlhw +2025-06-18T13:55:42.381Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1376ms - IP: 192.168.81.206 - User: user_1078 - RequestID: twhi9xjbsmd +2025-06-18T13:55:42.481Z [DEBUG] auth-service - Operation: email_sent - Processing time: 548ms - RequestID: 0x8foeeotbf +2025-06-18T13:55:42.581Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 281ms - Rows affected: 25 - RequestID: 63218s6osad +2025-06-18T13:55:42.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.36.218 - RequestID: j1jp4e13r8c +2025-06-18T13:55:42.781Z [TRACE] order-service - Operation: notification_queued - Processing time: 443ms - RequestID: 0svn3q3l1hp +2025-06-18T13:55:42.881Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 502 - Response time: 876ms - IP: 192.168.11.60 - User: user_1065 - RequestID: 6a2wsnabiu8 +2025-06-18T13:55:42.981Z [INFO] notification-service - GET /api/v1/payments - Status: 401 - Response time: 1771ms - IP: 192.168.211.72 - User: user_1097 - RequestID: jr9zrwx79um +2025-06-18T13:55:43.081Z [TRACE] user-service - GET /api/v1/inventory - Status: 500 - Response time: 89ms - IP: 192.168.141.100 - User: user_1029 - RequestID: x73oz7a6y2 +2025-06-18T13:55:43.181Z [INFO] auth-service - Database UPDATE on users - Execution time: 445ms - Rows affected: 73 - RequestID: iv2yk8n9jea +2025-06-18T13:55:43.281Z [DEBUG] payment-service - Database SELECT on users - Execution time: 441ms - Rows affected: 70 - RequestID: 95myk9v7uy +2025-06-18T13:55:43.381Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 503 - Response time: 1065ms - IP: 192.168.113.218 - User: user_1092 - RequestID: nx78kg37npf +2025-06-18T13:55:43.481Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 216ms - Rows affected: 70 - RequestID: glcdidjb3i9 +2025-06-18T13:55:43.581Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 302ms - RequestID: 5yn16qrwo2b +2025-06-18T13:55:43.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.187.199 - RequestID: gwx94ctzraw +2025-06-18T13:55:43.781Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1651ms - IP: 192.168.158.144 - User: user_1008 - RequestID: aynp8cm8ffk +2025-06-18T13:55:43.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1074 - IP: 192.168.113.218 - RequestID: jkrow2c7uvf +2025-06-18T13:55:43.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.144.38 - RequestID: b4og5s2op4 +2025-06-18T13:55:44.081Z [INFO] user-service - POST /api/v1/payments - Status: 400 - Response time: 1850ms - IP: 192.168.187.199 - User: user_1073 - RequestID: 4gr695ymk3e +2025-06-18T13:55:44.181Z [INFO] auth-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.44.5 - RequestID: uz6t27h0rie +2025-06-18T13:55:44.281Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 569ms - RequestID: im2etqrac3 +2025-06-18T13:55:44.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.1.152 - RequestID: 2fl3vaa2ttw +2025-06-18T13:55:44.481Z [INFO] user-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.79.116 - RequestID: jz8ighyoj0j +2025-06-18T13:55:44.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 327ms - RequestID: yqf16tb4i8k +2025-06-18T13:55:44.681Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 145ms - Rows affected: 18 - RequestID: 4pxqco1ceg +2025-06-18T13:55:44.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.113.218 - RequestID: dp1f83o1tr +2025-06-18T13:55:44.881Z [DEBUG] order-service - Auth event: login_success - User: user_1011 - IP: 192.168.174.114 - RequestID: 2oqvfmoxljj +2025-06-18T13:55:44.981Z [INFO] payment-service - Operation: payment_processed - Processing time: 253ms - RequestID: 89p60lxr9wu +2025-06-18T13:55:45.081Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 74ms - Rows affected: 48 - RequestID: 840ulnmivuv +2025-06-18T13:55:45.181Z [TRACE] user-service - Auth event: logout - User: user_1054 - IP: 192.168.196.226 - RequestID: q7f3nx3m8nd +2025-06-18T13:55:45.281Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 406ms - Rows affected: 24 - RequestID: 7n0uqx2mscp +2025-06-18T13:55:45.381Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 398ms - Rows affected: 25 - RequestID: cu0z11sucmc +2025-06-18T13:55:45.481Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1620ms - IP: 192.168.181.225 - User: user_1018 - RequestID: ogbk359k569 +2025-06-18T13:55:45.581Z [TRACE] auth-service - Database INSERT on payments - Execution time: 343ms - Rows affected: 18 - RequestID: ywy365n0ole +2025-06-18T13:55:45.681Z [INFO] user-service - Database DELETE on orders - Execution time: 318ms - Rows affected: 67 - RequestID: v0rlr4phvv8 +2025-06-18T13:55:45.781Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 502 - Response time: 679ms - IP: 192.168.194.41 - User: user_1044 - RequestID: h2hr1m9kj6s +2025-06-18T13:55:45.881Z [INFO] notification-service - Operation: order_created - Processing time: 313ms - RequestID: 5uu5cm5btsd +2025-06-18T13:55:45.981Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1654ms - IP: 192.168.64.33 - User: user_1024 - RequestID: c5vpz51i76w +2025-06-18T13:55:46.081Z [INFO] auth-service - Auth event: login_success - User: user_1033 - IP: 192.168.227.233 - RequestID: 905vhtk9fe6 +2025-06-18T13:55:46.181Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 201 - Response time: 1955ms - IP: 192.168.113.218 - User: user_1088 - RequestID: 8dmvw7wiibu +2025-06-18T13:55:46.281Z [TRACE] user-service - Database UPDATE on products - Execution time: 338ms - Rows affected: 3 - RequestID: htu4kuutw89 +2025-06-18T13:55:46.381Z [INFO] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 1388ms - IP: 192.168.196.226 - User: user_1038 - RequestID: xlefg4jvk2i +2025-06-18T13:55:46.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 297ms - RequestID: ttphe1ifwt +2025-06-18T13:55:46.581Z [INFO] inventory-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.133.7 - RequestID: z384qbz982 +2025-06-18T13:55:46.681Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 378ms - Rows affected: 49 - RequestID: c6lyzrddm88 +2025-06-18T13:55:46.781Z [TRACE] notification-service - Database SELECT on orders - Execution time: 366ms - Rows affected: 21 - RequestID: 2q90ooajb9s +2025-06-18T13:55:46.881Z [INFO] payment-service - DELETE /api/v1/payments - Status: 200 - Response time: 1927ms - IP: 192.168.14.77 - User: user_1076 - RequestID: aoncvi39qe +2025-06-18T13:55:46.981Z [INFO] notification-service - PUT /api/v1/users - Status: 403 - Response time: 1612ms - IP: 192.168.33.76 - User: user_1034 - RequestID: z4d7rkrfze +2025-06-18T13:55:47.081Z [TRACE] notification-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.64.33 - RequestID: sow0cxk6aqg +2025-06-18T13:55:47.181Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 30ms - Rows affected: 0 - RequestID: 0e791170ieo +2025-06-18T13:55:47.281Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 436ms - Rows affected: 4 - RequestID: 7qv7w0pfcqc +2025-06-18T13:55:47.381Z [INFO] order-service - Database SELECT on users - Execution time: 64ms - Rows affected: 59 - RequestID: awglg1un8k6 +2025-06-18T13:55:47.481Z [DEBUG] user-service - GET /api/v1/inventory - Status: 200 - Response time: 362ms - IP: 192.168.97.87 - User: user_1058 - RequestID: 8rcn9n73zxt +2025-06-18T13:55:47.581Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 404 - Response time: 154ms - IP: 192.168.31.117 - User: user_1058 - RequestID: aq40rkjzvaj +2025-06-18T13:55:47.681Z [INFO] notification-service - Database SELECT on users - Execution time: 224ms - Rows affected: 68 - RequestID: 932ku3u90le +2025-06-18T13:55:47.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1009 - IP: 192.168.79.143 - RequestID: 62n2t21xgd8 +2025-06-18T13:55:47.881Z [INFO] inventory-service - Operation: email_sent - Processing time: 976ms - RequestID: iy21ti5x4nn +2025-06-18T13:55:47.981Z [TRACE] order-service - POST /api/v1/users - Status: 404 - Response time: 991ms - IP: 192.168.28.146 - User: user_1086 - RequestID: b6l5h38bpbb +2025-06-18T13:55:48.081Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 401 - Response time: 543ms - IP: 192.168.211.72 - User: user_1066 - RequestID: ru7s0q2b7wh +2025-06-18T13:55:48.181Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 722ms - RequestID: bt5emdae6y9 +2025-06-18T13:55:48.281Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 324ms - RequestID: u4dejig0ha +2025-06-18T13:55:48.381Z [TRACE] user-service - Auth event: password_change - User: user_1029 - IP: 192.168.64.33 - RequestID: p8g8edf0ywq +2025-06-18T13:55:48.481Z [TRACE] order-service - Auth event: logout - User: user_1083 - IP: 192.168.232.72 - RequestID: xy4bca82v1p +2025-06-18T13:55:48.581Z [TRACE] payment-service - POST /api/v1/users - Status: 200 - Response time: 283ms - IP: 192.168.32.38 - User: user_1091 - RequestID: xxiotbfuaap +2025-06-18T13:55:48.681Z [TRACE] auth-service - Database UPDATE on users - Execution time: 80ms - Rows affected: 88 - RequestID: 57fzktxtoi +2025-06-18T13:55:48.781Z [TRACE] payment-service - GET /api/v1/users - Status: 500 - Response time: 371ms - IP: 192.168.194.41 - User: user_1087 - RequestID: v9mlze74n2 +2025-06-18T13:55:48.881Z [INFO] payment-service - Database UPDATE on products - Execution time: 172ms - Rows affected: 58 - RequestID: dcnbv4cxcj +2025-06-18T13:55:48.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1001 - IP: 192.168.30.79 - RequestID: 79cwllipc0l +2025-06-18T13:55:49.081Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 500 - Response time: 918ms - IP: 192.168.229.123 - User: user_1026 - RequestID: e3d8iexe64v +2025-06-18T13:55:49.181Z [TRACE] notification-service - Database SELECT on users - Execution time: 476ms - Rows affected: 94 - RequestID: ylkpfpjn148 +2025-06-18T13:55:49.281Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 85ms - Rows affected: 77 - RequestID: jqxlrq4m06 +2025-06-18T13:55:49.381Z [TRACE] user-service - DELETE /api/v1/users - Status: 500 - Response time: 1299ms - IP: 192.168.33.76 - User: user_1024 - RequestID: swnpthn52ih +2025-06-18T13:55:49.481Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 401 - Response time: 806ms - IP: 192.168.79.143 - User: user_1004 - RequestID: 4ihenu75dm4 +2025-06-18T13:55:49.581Z [INFO] payment-service - Database INSERT on orders - Execution time: 6ms - Rows affected: 3 - RequestID: seer0z8qv9 +2025-06-18T13:55:49.681Z [TRACE] inventory-service - GET /api/v1/users - Status: 200 - Response time: 1280ms - IP: 192.168.14.77 - User: user_1077 - RequestID: 7eo1gvvqe9k +2025-06-18T13:55:49.781Z [INFO] user-service - Operation: notification_queued - Processing time: 102ms - RequestID: cb138mv5488 +2025-06-18T13:55:49.881Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 355ms - IP: 192.168.196.226 - User: user_1023 - RequestID: xizwpo5gn2d +2025-06-18T13:55:49.981Z [TRACE] user-service - Operation: order_created - Processing time: 209ms - RequestID: g22hru1q3eg +2025-06-18T13:55:50.081Z [INFO] user-service - Operation: inventory_updated - Processing time: 178ms - RequestID: tvs5n013r18 +2025-06-18T13:55:50.181Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 838ms - RequestID: 69kins9bby5 +2025-06-18T13:55:50.281Z [TRACE] auth-service - PUT /api/v1/orders - Status: 502 - Response time: 1011ms - IP: 192.168.141.100 - User: user_1061 - RequestID: 93iyw0hgii +2025-06-18T13:55:50.381Z [INFO] auth-service - Auth event: login_success - User: user_1092 - IP: 192.168.240.169 - RequestID: ll7cl8drlmc +2025-06-18T13:55:50.481Z [DEBUG] user-service - GET /api/v1/orders - Status: 502 - Response time: 530ms - IP: 192.168.32.38 - User: user_1078 - RequestID: yex4ovdg1p +2025-06-18T13:55:50.581Z [INFO] user-service - PUT /api/v1/payments - Status: 500 - Response time: 734ms - IP: 192.168.44.5 - User: user_1056 - RequestID: q4cavg710so +2025-06-18T13:55:50.681Z [INFO] inventory-service - Auth event: login_failed - User: user_1090 - IP: 192.168.247.134 - RequestID: hmykh2gollp +2025-06-18T13:55:50.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.138.123 - RequestID: 8qh75i5x1bw +2025-06-18T13:55:50.881Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 381ms - Rows affected: 17 - RequestID: uyl9mlyrppj +2025-06-18T13:55:50.981Z [INFO] auth-service - Operation: payment_processed - Processing time: 545ms - RequestID: gnnhm5ac3d +2025-06-18T13:55:51.081Z [TRACE] notification-service - Auth event: login_success - User: user_1001 - IP: 192.168.227.233 - RequestID: kfhr7it1fwj +2025-06-18T13:55:51.181Z [INFO] user-service - Database SELECT on users - Execution time: 267ms - Rows affected: 28 - RequestID: q4v9hiab1g8 +2025-06-18T13:55:51.281Z [INFO] notification-service - Operation: inventory_updated - Processing time: 97ms - RequestID: pc01yrai60s +2025-06-18T13:55:51.381Z [DEBUG] order-service - Database UPDATE on users - Execution time: 429ms - Rows affected: 38 - RequestID: q3wx18sugib +2025-06-18T13:55:51.481Z [DEBUG] user-service - Database DELETE on payments - Execution time: 349ms - Rows affected: 34 - RequestID: q5sknqmom0b +2025-06-18T13:55:51.581Z [DEBUG] payment-service - Auth event: logout - User: user_1010 - IP: 192.168.242.165 - RequestID: p67sas38pk +2025-06-18T13:55:51.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 82ms - RequestID: 2t37efhld02 +2025-06-18T13:55:51.781Z [TRACE] order-service - PUT /api/v1/orders - Status: 200 - Response time: 878ms - IP: 192.168.85.229 - User: user_1061 - RequestID: whf9qraasg +2025-06-18T13:55:51.881Z [TRACE] payment-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.247.134 - RequestID: l4mm8ygktar +2025-06-18T13:55:51.981Z [INFO] order-service - Database UPDATE on orders - Execution time: 157ms - Rows affected: 90 - RequestID: alt79ltz33j +2025-06-18T13:55:52.081Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 998ms - RequestID: fzjwg05zpl +2025-06-18T13:55:52.181Z [TRACE] notification-service - Database DELETE on products - Execution time: 353ms - Rows affected: 17 - RequestID: a477f9h66vu +2025-06-18T13:55:52.281Z [DEBUG] order-service - POST /api/v1/inventory - Status: 401 - Response time: 182ms - IP: 192.168.167.32 - User: user_1086 - RequestID: 73cg7kkqgje +2025-06-18T13:55:52.381Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 679ms - RequestID: mnfgggywl2g +2025-06-18T13:55:52.481Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 459ms - Rows affected: 92 - RequestID: tz55tuvd1c +2025-06-18T13:55:52.581Z [DEBUG] user-service - Auth event: login_failed - User: user_1029 - IP: 192.168.242.165 - RequestID: 1o2gz1butv6 +2025-06-18T13:55:52.681Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 500 - Response time: 883ms - IP: 192.168.158.144 - User: user_1097 - RequestID: 20ptlv7sr3u +2025-06-18T13:55:52.781Z [INFO] user-service - Auth event: logout - User: user_1031 - IP: 192.168.79.141 - RequestID: bh4yyosnbst +2025-06-18T13:55:52.881Z [DEBUG] user-service - Auth event: password_change - User: user_1047 - IP: 192.168.85.229 - RequestID: g4upt8o3y1p +2025-06-18T13:55:52.981Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 28ms - Rows affected: 20 - RequestID: 4ie9adqna1d +2025-06-18T13:55:53.081Z [INFO] order-service - Auth event: password_change - User: user_1012 - IP: 192.168.141.100 - RequestID: uhj8qujifq +2025-06-18T13:55:53.181Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 533ms - RequestID: m9y897a3exa +2025-06-18T13:55:53.281Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 81ms - RequestID: f3a7rtlwwz5 +2025-06-18T13:55:53.381Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1959ms - IP: 192.168.13.72 - User: user_1010 - RequestID: ypyetj76yye +2025-06-18T13:55:53.481Z [TRACE] notification-service - Auth event: logout - User: user_1008 - IP: 192.168.14.77 - RequestID: rpui5ni7xff +2025-06-18T13:55:53.581Z [TRACE] user-service - GET /api/v1/users - Status: 201 - Response time: 792ms - IP: 192.168.32.38 - User: user_1021 - RequestID: 4bfadhf3r9y +2025-06-18T13:55:53.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1081 - IP: 192.168.144.38 - RequestID: 6j3xc0kip7m +2025-06-18T13:55:53.781Z [TRACE] user-service - Operation: notification_queued - Processing time: 257ms - RequestID: vd52db7442 +2025-06-18T13:55:53.881Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1718ms - IP: 192.168.147.171 - User: user_1022 - RequestID: nkgb90lq7x +2025-06-18T13:55:53.981Z [DEBUG] order-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.11.60 - RequestID: qexhawg767 +2025-06-18T13:55:54.081Z [TRACE] auth-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.159.94 - RequestID: pdy4fo77gn +2025-06-18T13:55:54.181Z [TRACE] payment-service - Operation: cache_miss - Processing time: 907ms - RequestID: o8meyxkzs8 +2025-06-18T13:55:54.281Z [TRACE] user-service - Operation: order_created - Processing time: 124ms - RequestID: f9pch2s6jqg +2025-06-18T13:55:54.381Z [TRACE] inventory-service - Auth event: login_success - User: user_1048 - IP: 192.168.194.41 - RequestID: gm7lhs47qw +2025-06-18T13:55:54.481Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 280ms - Rows affected: 12 - RequestID: ttz4u5jm16p +2025-06-18T13:55:54.581Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 472ms - RequestID: bx4uhdrctvr +2025-06-18T13:55:54.681Z [TRACE] user-service - Operation: order_created - Processing time: 814ms - RequestID: ypelq2l3woo +2025-06-18T13:55:54.781Z [TRACE] inventory-service - Database INSERT on products - Execution time: 147ms - Rows affected: 44 - RequestID: krcdxod0r2q +2025-06-18T13:55:54.881Z [TRACE] user-service - Operation: order_created - Processing time: 765ms - RequestID: ysscq2b8ma +2025-06-18T13:55:54.981Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 366ms - Rows affected: 90 - RequestID: psawnopd9um +2025-06-18T13:55:55.081Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 149ms - Rows affected: 87 - RequestID: x54giwu7go +2025-06-18T13:55:55.181Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 351ms - Rows affected: 69 - RequestID: 2y9yz7jn40c +2025-06-18T13:55:55.281Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 503 - Response time: 1124ms - IP: 192.168.227.77 - User: user_1099 - RequestID: udpn6egsubs +2025-06-18T13:55:55.381Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1605ms - IP: 192.168.44.5 - User: user_1050 - RequestID: zdoyrbrzouc +2025-06-18T13:55:55.481Z [TRACE] notification-service - Operation: payment_processed - Processing time: 1030ms - RequestID: 0ueg1sjcbte +2025-06-18T13:55:55.581Z [DEBUG] order-service - Database INSERT on payments - Execution time: 247ms - Rows affected: 4 - RequestID: cgcz2huigyp +2025-06-18T13:55:55.681Z [TRACE] user-service - Database DELETE on users - Execution time: 129ms - Rows affected: 55 - RequestID: clf0ckyhb85 +2025-06-18T13:55:55.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.33.76 - RequestID: foxvzftbftu +2025-06-18T13:55:55.881Z [INFO] notification-service - Operation: email_sent - Processing time: 359ms - RequestID: fol4t99bp +2025-06-18T13:55:55.981Z [TRACE] auth-service - Operation: order_created - Processing time: 679ms - RequestID: 6g9lgu39z19 +2025-06-18T13:55:56.081Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 143ms - RequestID: t762tis0c9i +2025-06-18T13:55:56.181Z [INFO] order-service - Operation: cache_hit - Processing time: 977ms - RequestID: syu7n2g3wq +2025-06-18T13:55:56.281Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 500 - Response time: 860ms - IP: 192.168.133.7 - User: user_1032 - RequestID: wv1cgzb96j9 +2025-06-18T13:55:56.381Z [DEBUG] payment-service - Operation: email_sent - Processing time: 411ms - RequestID: kguaxcnhehm +2025-06-18T13:55:56.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1019 - IP: 192.168.30.79 - RequestID: 9wr4ozycke +2025-06-18T13:55:56.581Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 805ms - RequestID: 9ytqc93fi1h +2025-06-18T13:55:56.681Z [INFO] auth-service - Auth event: login_success - User: user_1068 - IP: 192.168.227.77 - RequestID: 0hlwlgajxfts +2025-06-18T13:55:56.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 424ms - RequestID: p1juf0azpq +2025-06-18T13:55:56.881Z [INFO] notification-service - POST /api/v1/orders - Status: 500 - Response time: 1603ms - IP: 192.168.44.5 - User: user_1065 - RequestID: 6shokmkd77e +2025-06-18T13:55:56.981Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 1584ms - IP: 192.168.46.63 - User: user_1071 - RequestID: 7304j2bvjds +2025-06-18T13:55:57.081Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1587ms - IP: 192.168.68.158 - User: user_1027 - RequestID: xxc4021dckl +2025-06-18T13:55:57.181Z [INFO] auth-service - Database INSERT on orders - Execution time: 133ms - Rows affected: 77 - RequestID: ze8qkyehcf +2025-06-18T13:55:57.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 792ms - RequestID: rwwzv0ikws +2025-06-18T13:55:57.381Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 437ms - Rows affected: 94 - RequestID: 69n68sxrqdg +2025-06-18T13:55:57.481Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 415ms - Rows affected: 18 - RequestID: 85nehysel5x +2025-06-18T13:55:57.581Z [TRACE] notification-service - Operation: cache_miss - Processing time: 330ms - RequestID: pozviy3neln +2025-06-18T13:55:57.681Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 330ms - Rows affected: 4 - RequestID: kjyd5r2qlge +2025-06-18T13:55:57.781Z [INFO] inventory-service - Operation: notification_queued - Processing time: 585ms - RequestID: u30ny4ok0qe +2025-06-18T13:55:57.881Z [DEBUG] user-service - POST /api/v1/orders - Status: 500 - Response time: 1368ms - IP: 192.168.64.33 - User: user_1021 - RequestID: 03n8nkp58oa4 +2025-06-18T13:55:57.981Z [INFO] user-service - Operation: payment_processed - Processing time: 654ms - RequestID: ief0dmml5vp +2025-06-18T13:55:58.081Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 326ms - Rows affected: 37 - RequestID: qna72agy44m +2025-06-18T13:55:58.181Z [INFO] notification-service - Operation: order_created - Processing time: 579ms - RequestID: jclgp9qb8x +2025-06-18T13:55:58.281Z [TRACE] inventory-service - POST /api/v1/payments - Status: 401 - Response time: 1615ms - IP: 192.168.28.146 - User: user_1014 - RequestID: 7nxszvmwzsw +2025-06-18T13:55:58.381Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 225ms - Rows affected: 50 - RequestID: d803v7sybo5 +2025-06-18T13:55:58.481Z [TRACE] user-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.14.77 - RequestID: z1xl1x2ur29 +2025-06-18T13:55:58.581Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 661ms - RequestID: ltthyjy43b +2025-06-18T13:55:58.681Z [INFO] user-service - Database UPDATE on sessions - Execution time: 150ms - Rows affected: 6 - RequestID: z2anq0p456n +2025-06-18T13:55:58.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 249ms - RequestID: 2wsgf21arc8 +2025-06-18T13:55:58.881Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 406ms - Rows affected: 45 - RequestID: m3vra5p5ru +2025-06-18T13:55:58.981Z [TRACE] order-service - Auth event: logout - User: user_1054 - IP: 192.168.32.38 - RequestID: w6kqafxv4bh +2025-06-18T13:55:59.081Z [INFO] order-service - Operation: cache_hit - Processing time: 682ms - RequestID: 2w6c6w3n7t3 +2025-06-18T13:55:59.181Z [TRACE] notification-service - Operation: cache_hit - Processing time: 157ms - RequestID: qrjiqohpup +2025-06-18T13:55:59.281Z [TRACE] user-service - Auth event: login_success - User: user_1034 - IP: 192.168.97.87 - RequestID: ieegiof8jc +2025-06-18T13:55:59.381Z [TRACE] order-service - Auth event: login_failed - User: user_1084 - IP: 192.168.104.37 - RequestID: qnuatrwd53 +2025-06-18T13:55:59.481Z [INFO] auth-service - Auth event: password_change - User: user_1062 - IP: 192.168.31.117 - RequestID: ki12arh8ph +2025-06-18T13:55:59.581Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 400 - Response time: 367ms - IP: 192.168.10.184 - User: user_1047 - RequestID: 6mxhzehyfw2 +2025-06-18T13:55:59.681Z [INFO] order-service - PUT /api/v1/users - Status: 403 - Response time: 956ms - IP: 192.168.159.94 - User: user_1050 - RequestID: pku88ck6d4e +2025-06-18T13:55:59.781Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 502 - Response time: 727ms - IP: 192.168.32.38 - User: user_1054 - RequestID: 6u9grk5y21j +2025-06-18T13:55:59.881Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 227ms - Rows affected: 85 - RequestID: dej6c0jpl0b +2025-06-18T13:55:59.981Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 255ms - Rows affected: 77 - RequestID: 39oknd9jwgt +2025-06-18T13:56:00.081Z [INFO] user-service - Operation: cache_miss - Processing time: 732ms - RequestID: be8ypo1h5bp +2025-06-18T13:56:00.181Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 102ms - Rows affected: 89 - RequestID: o1qwcubs78 +2025-06-18T13:56:00.281Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 171ms - Rows affected: 81 - RequestID: 1m54hy9ywsc +2025-06-18T13:56:00.381Z [INFO] order-service - Database INSERT on orders - Execution time: 93ms - Rows affected: 13 - RequestID: 0hjiddw5irrd +2025-06-18T13:56:00.481Z [INFO] inventory-service - PUT /api/v1/orders - Status: 502 - Response time: 699ms - IP: 192.168.46.63 - User: user_1002 - RequestID: trx4hoohit +2025-06-18T13:56:00.581Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.232.72 - RequestID: p12bi254q97 +2025-06-18T13:56:00.681Z [DEBUG] user-service - Operation: order_created - Processing time: 563ms - RequestID: vo08vwzrkgf +2025-06-18T13:56:00.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.32.38 - RequestID: dh8mmcyit +2025-06-18T13:56:00.881Z [TRACE] auth-service - Database DELETE on users - Execution time: 413ms - Rows affected: 17 - RequestID: fbnwxvaaxh +2025-06-18T13:56:00.981Z [INFO] inventory-service - Database SELECT on products - Execution time: 191ms - Rows affected: 50 - RequestID: aduifszk2qj +2025-06-18T13:56:01.081Z [INFO] order-service - Operation: email_sent - Processing time: 240ms - RequestID: b9teqyu2hfn +2025-06-18T13:56:01.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 502ms - RequestID: 3et2rzk7fq3 +2025-06-18T13:56:01.281Z [INFO] user-service - Operation: order_created - Processing time: 321ms - RequestID: quvmuqxujhg +2025-06-18T13:56:01.381Z [INFO] order-service - Operation: webhook_sent - Processing time: 432ms - RequestID: zyg4tjbed1m +2025-06-18T13:56:01.481Z [TRACE] inventory-service - POST /api/v1/users - Status: 502 - Response time: 101ms - IP: 192.168.147.171 - User: user_1081 - RequestID: fy4p26l0y5r +2025-06-18T13:56:01.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1038 - IP: 192.168.10.184 - RequestID: dhuxlp3beue +2025-06-18T13:56:01.681Z [INFO] order-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.138.123 - RequestID: 1x8hjohc68b +2025-06-18T13:56:01.781Z [TRACE] notification-service - Operation: payment_processed - Processing time: 1001ms - RequestID: ypshtb6krto +2025-06-18T13:56:01.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 677ms - RequestID: 1m4acjjoidn +2025-06-18T13:56:01.981Z [DEBUG] notification-service - Database SELECT on users - Execution time: 47ms - Rows affected: 51 - RequestID: zd543e7c3bd +2025-06-18T13:56:02.081Z [INFO] order-service - Database DELETE on payments - Execution time: 86ms - Rows affected: 51 - RequestID: 0ox5rn9x6dn +2025-06-18T13:56:02.181Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 422ms - Rows affected: 36 - RequestID: zhm1tp97grh +2025-06-18T13:56:02.281Z [TRACE] inventory-service - Auth event: logout - User: user_1045 - IP: 192.168.159.94 - RequestID: 5xu9fmha2og +2025-06-18T13:56:02.381Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 38ms - Rows affected: 58 - RequestID: h1vhn6yg15a +2025-06-18T13:56:02.481Z [TRACE] auth-service - Operation: payment_processed - Processing time: 537ms - RequestID: is71w58x7qk +2025-06-18T13:56:02.581Z [DEBUG] order-service - Database DELETE on payments - Execution time: 325ms - Rows affected: 47 - RequestID: picapqqrwsn +2025-06-18T13:56:02.681Z [DEBUG] user-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.100.240 - RequestID: aiuddb4haid +2025-06-18T13:56:02.781Z [INFO] order-service - Database UPDATE on payments - Execution time: 413ms - Rows affected: 75 - RequestID: s9ca5ac1bpc +2025-06-18T13:56:02.881Z [DEBUG] user-service - Auth event: password_change - User: user_1053 - IP: 192.168.170.215 - RequestID: kbhabi8h1d +2025-06-18T13:56:02.981Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1475ms - IP: 192.168.30.79 - User: user_1098 - RequestID: gc8rmv5np5s +2025-06-18T13:56:03.081Z [INFO] notification-service - Auth event: login_success - User: user_1007 - IP: 192.168.240.169 - RequestID: drn580p6ic6 +2025-06-18T13:56:03.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1054 - IP: 192.168.32.38 - RequestID: 30n8ilr4kc4 +2025-06-18T13:56:03.281Z [DEBUG] order-service - Database DELETE on orders - Execution time: 445ms - Rows affected: 86 - RequestID: 35hry05nv9z +2025-06-18T13:56:03.381Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 83ms - RequestID: 3mkp55c0f2z +2025-06-18T13:56:03.481Z [INFO] auth-service - Database INSERT on products - Execution time: 179ms - Rows affected: 67 - RequestID: dj0ivufox5 +2025-06-18T13:56:03.581Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 1047ms - RequestID: jg6or5x41s9 +2025-06-18T13:56:03.681Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 465ms - RequestID: 9eeuohyg3lk +2025-06-18T13:56:03.781Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 404 - Response time: 295ms - IP: 192.168.194.41 - User: user_1094 - RequestID: 2qns5aq9gfn +2025-06-18T13:56:03.881Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 62ms - Rows affected: 13 - RequestID: svjcc5ftic +2025-06-18T13:56:03.981Z [TRACE] notification-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.14.77 - RequestID: kghxhr2dwm +2025-06-18T13:56:04.081Z [TRACE] payment-service - Auth event: login_success - User: user_1018 - IP: 192.168.141.100 - RequestID: c04uuwezhba +2025-06-18T13:56:04.181Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 299ms - Rows affected: 57 - RequestID: ft72wlx508e +2025-06-18T13:56:04.281Z [DEBUG] notification-service - Operation: email_sent - Processing time: 296ms - RequestID: 6365ael4tfm +2025-06-18T13:56:04.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1038 - IP: 192.168.133.7 - RequestID: m6qm44da1r +2025-06-18T13:56:04.481Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 676ms - RequestID: u0ca3byycvf +2025-06-18T13:56:04.581Z [INFO] auth-service - GET /api/v1/orders - Status: 401 - Response time: 1219ms - IP: 192.168.68.158 - User: user_1079 - RequestID: 6y3n7byxxb4 +2025-06-18T13:56:04.681Z [TRACE] payment-service - Database DELETE on products - Execution time: 91ms - Rows affected: 77 - RequestID: tvg6vgk72ps +2025-06-18T13:56:04.781Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 404 - Response time: 273ms - IP: 192.168.1.152 - User: user_1048 - RequestID: 4jz58bzhwe +2025-06-18T13:56:04.881Z [INFO] inventory-service - Database SELECT on orders - Execution time: 194ms - Rows affected: 25 - RequestID: x3zhf6tio9l +2025-06-18T13:56:04.981Z [INFO] auth-service - Auth event: login_success - User: user_1078 - IP: 192.168.100.240 - RequestID: pm1cpcuacm8 +2025-06-18T13:56:05.081Z [TRACE] payment-service - Auth event: logout - User: user_1017 - IP: 192.168.189.103 - RequestID: zl2vhkr0kb +2025-06-18T13:56:05.181Z [INFO] user-service - Database DELETE on payments - Execution time: 442ms - Rows affected: 11 - RequestID: w5wtogqlvpi +2025-06-18T13:56:05.281Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 492ms - Rows affected: 29 - RequestID: a6xsiissuui +2025-06-18T13:56:05.381Z [INFO] payment-service - Auth event: password_change - User: user_1094 - IP: 192.168.167.32 - RequestID: b64k0lw0uln +2025-06-18T13:56:05.481Z [INFO] notification-service - Database UPDATE on orders - Execution time: 138ms - Rows affected: 18 - RequestID: y70n2c9i1p +2025-06-18T13:56:05.581Z [INFO] payment-service - Database INSERT on payments - Execution time: 206ms - Rows affected: 52 - RequestID: droqli7cx7f +2025-06-18T13:56:05.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 1003ms - RequestID: dgzbutekdxi +2025-06-18T13:56:05.781Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1152ms - IP: 192.168.31.117 - User: user_1087 - RequestID: krjjcwz2tzo +2025-06-18T13:56:05.881Z [INFO] order-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.79.141 - RequestID: sn7skjqs47 +2025-06-18T13:56:05.981Z [INFO] user-service - POST /api/v1/orders - Status: 403 - Response time: 1209ms - IP: 192.168.147.171 - User: user_1034 - RequestID: ttrjx8jqynn +2025-06-18T13:56:06.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.196.226 - RequestID: 52y6v280be3 +2025-06-18T13:56:06.181Z [TRACE] order-service - Operation: notification_queued - Processing time: 550ms - RequestID: lpax0g8pk9 +2025-06-18T13:56:06.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 553ms - RequestID: fcu4p5wjpi +2025-06-18T13:56:06.381Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 324ms - RequestID: bz4051v64k6 +2025-06-18T13:56:06.481Z [INFO] user-service - POST /api/v1/payments - Status: 502 - Response time: 1563ms - IP: 192.168.181.225 - User: user_1008 - RequestID: 07vidvoidglk +2025-06-18T13:56:06.581Z [INFO] notification-service - Database INSERT on products - Execution time: 397ms - Rows affected: 18 - RequestID: 20nsl29y93bi +2025-06-18T13:56:06.681Z [INFO] notification-service - Database SELECT on sessions - Execution time: 155ms - Rows affected: 61 - RequestID: kgr682xww4e +2025-06-18T13:56:06.781Z [TRACE] notification-service - Auth event: password_change - User: user_1066 - IP: 192.168.31.117 - RequestID: k2lv0gafm5n +2025-06-18T13:56:06.881Z [INFO] order-service - Auth event: login_failed - User: user_1080 - IP: 192.168.79.143 - RequestID: zopysposp8b +2025-06-18T13:56:06.981Z [INFO] notification-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.104.37 - RequestID: oue1ubgyrv +2025-06-18T13:56:07.081Z [INFO] user-service - Auth event: login_failed - User: user_1034 - IP: 192.168.240.169 - RequestID: iuuwhte65x +2025-06-18T13:56:07.181Z [TRACE] user-service - Database DELETE on products - Execution time: 467ms - Rows affected: 20 - RequestID: jjz19i38t1 +2025-06-18T13:56:07.281Z [DEBUG] notification-service - Auth event: login_failed - User: user_1000 - IP: 192.168.113.218 - RequestID: 9komm8ptcub +2025-06-18T13:56:07.381Z [TRACE] inventory-service - Auth event: login_success - User: user_1057 - IP: 192.168.232.72 - RequestID: oho2az80g1 +2025-06-18T13:56:07.481Z [INFO] order-service - Database UPDATE on payments - Execution time: 432ms - Rows affected: 30 - RequestID: edxv9tnddf +2025-06-18T13:56:07.581Z [DEBUG] user-service - Auth event: login_success - User: user_1063 - IP: 192.168.144.38 - RequestID: 0pjybvjwpif +2025-06-18T13:56:07.681Z [TRACE] order-service - Database INSERT on sessions - Execution time: 254ms - Rows affected: 35 - RequestID: xtvmjjhrbs +2025-06-18T13:56:07.781Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 859ms - RequestID: 4954viil21q +2025-06-18T13:56:07.881Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 223ms - RequestID: jfwn9eco24 +2025-06-18T13:56:07.981Z [TRACE] user-service - Database DELETE on sessions - Execution time: 401ms - Rows affected: 24 - RequestID: les9ct1mueq +2025-06-18T13:56:08.081Z [TRACE] order-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.147.171 - RequestID: k261d5xyvsa +2025-06-18T13:56:08.181Z [DEBUG] notification-service - GET /api/v1/users - Status: 500 - Response time: 1853ms - IP: 192.168.144.38 - User: user_1077 - RequestID: aetd3zv1rrm +2025-06-18T13:56:08.281Z [TRACE] notification-service - Auth event: password_change - User: user_1002 - IP: 192.168.68.158 - RequestID: r8mej6psklp +2025-06-18T13:56:08.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1083 - IP: 192.168.196.226 - RequestID: rdtj07mrtj +2025-06-18T13:56:08.481Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 247ms - Rows affected: 83 - RequestID: a3iiqrrn5o +2025-06-18T13:56:08.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.44.5 - RequestID: 756ik1draqf +2025-06-18T13:56:08.681Z [INFO] auth-service - PUT /api/v1/users - Status: 401 - Response time: 1175ms - IP: 192.168.181.225 - User: user_1056 - RequestID: mot7vlioeah +2025-06-18T13:56:08.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.196.226 - RequestID: y45apwlpw38 +2025-06-18T13:56:08.881Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1000ms - IP: 192.168.11.60 - User: user_1025 - RequestID: 1nr1nxg2c9l +2025-06-18T13:56:08.981Z [INFO] auth-service - DELETE /api/v1/users - Status: 200 - Response time: 1085ms - IP: 192.168.170.215 - User: user_1054 - RequestID: ts3qndj09l +2025-06-18T13:56:09.081Z [DEBUG] order-service - GET /api/v1/orders - Status: 401 - Response time: 1181ms - IP: 192.168.68.128 - User: user_1014 - RequestID: 126mtpvm33yh +2025-06-18T13:56:09.181Z [TRACE] order-service - Auth event: logout - User: user_1084 - IP: 192.168.144.38 - RequestID: w1niffff5k +2025-06-18T13:56:09.281Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 500 - Response time: 446ms - IP: 192.168.30.79 - User: user_1096 - RequestID: 3ya227i29zv +2025-06-18T13:56:09.381Z [INFO] inventory-service - Database UPDATE on products - Execution time: 251ms - Rows affected: 79 - RequestID: i2hi1ah8kyf +2025-06-18T13:56:09.481Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 27ms - Rows affected: 75 - RequestID: ebcshrik7ar +2025-06-18T13:56:09.581Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 69ms - Rows affected: 63 - RequestID: nlpwjmgfgvb +2025-06-18T13:56:09.681Z [INFO] auth-service - GET /api/v1/payments - Status: 200 - Response time: 1344ms - IP: 192.168.32.38 - User: user_1040 - RequestID: 4npvmvyuns2 +2025-06-18T13:56:09.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 471ms - RequestID: qah8l7g30od +2025-06-18T13:56:09.881Z [INFO] inventory-service - POST /api/v1/payments - Status: 401 - Response time: 79ms - IP: 192.168.194.41 - User: user_1071 - RequestID: 5ok4y24stfl +2025-06-18T13:56:09.981Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1209ms - IP: 192.168.13.72 - User: user_1074 - RequestID: f6k4bn4fvrr +2025-06-18T13:56:10.081Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 703ms - IP: 192.168.196.226 - User: user_1075 - RequestID: 97atpbnx9i +2025-06-18T13:56:10.181Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 843ms - RequestID: pmvbjgden1b +2025-06-18T13:56:10.281Z [TRACE] user-service - GET /api/v1/inventory - Status: 200 - Response time: 1951ms - IP: 192.168.68.128 - User: user_1066 - RequestID: j72h6e7169o +2025-06-18T13:56:10.381Z [INFO] auth-service - GET /api/v1/payments - Status: 400 - Response time: 187ms - IP: 192.168.46.63 - User: user_1004 - RequestID: tu4loalz4il +2025-06-18T13:56:10.481Z [TRACE] notification-service - GET /api/v1/inventory - Status: 201 - Response time: 1980ms - IP: 192.168.33.76 - User: user_1034 - RequestID: b1v0ns53c7 +2025-06-18T13:56:10.581Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 546ms - RequestID: 4wb8vvp869x +2025-06-18T13:56:10.681Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 422ms - Rows affected: 2 - RequestID: vivqu4w6b +2025-06-18T13:56:10.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.242.165 - RequestID: 9udbjn3w9y9 +2025-06-18T13:56:10.881Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 244ms - RequestID: ufzlbh697bg +2025-06-18T13:56:10.981Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 76ms - RequestID: 442pnt8g8x5 +2025-06-18T13:56:11.081Z [TRACE] user-service - Database SELECT on users - Execution time: 40ms - Rows affected: 69 - RequestID: nt0f49qldn +2025-06-18T13:56:11.181Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 838ms - RequestID: hn1s8sj1nwp +2025-06-18T13:56:11.281Z [INFO] order-service - Auth event: password_change - User: user_1011 - IP: 192.168.242.165 - RequestID: sdvr0bp8ywp +2025-06-18T13:56:11.381Z [INFO] notification-service - Database UPDATE on products - Execution time: 284ms - Rows affected: 49 - RequestID: byso935hge7 +2025-06-18T13:56:11.481Z [TRACE] auth-service - PATCH /api/v1/users - Status: 503 - Response time: 597ms - IP: 192.168.159.94 - User: user_1099 - RequestID: j2zvu14y0q +2025-06-18T13:56:11.581Z [TRACE] auth-service - Operation: email_sent - Processing time: 887ms - RequestID: rs241us3qfs +2025-06-18T13:56:11.681Z [INFO] payment-service - Operation: email_sent - Processing time: 1008ms - RequestID: gy9quzb7yve +2025-06-18T13:56:11.781Z [TRACE] auth-service - Database SELECT on payments - Execution time: 47ms - Rows affected: 79 - RequestID: 6beklj8eo6l +2025-06-18T13:56:11.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.30.79 - RequestID: 8my0m67x6yc +2025-06-18T13:56:11.981Z [INFO] order-service - DELETE /api/v1/payments - Status: 502 - Response time: 739ms - IP: 192.168.232.72 - User: user_1027 - RequestID: gech9ml7ap +2025-06-18T13:56:12.081Z [TRACE] payment-service - GET /api/v1/payments - Status: 401 - Response time: 268ms - IP: 192.168.28.146 - User: user_1067 - RequestID: eg810tav5bh +2025-06-18T13:56:12.181Z [INFO] notification-service - Operation: email_sent - Processing time: 471ms - RequestID: 6lk3ssgx993 +2025-06-18T13:56:12.281Z [TRACE] notification-service - Operation: cache_hit - Processing time: 900ms - RequestID: pe3mp812t69 +2025-06-18T13:56:12.381Z [INFO] inventory-service - Database DELETE on users - Execution time: 271ms - Rows affected: 73 - RequestID: 3gmhhnwuido +2025-06-18T13:56:12.481Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 401 - Response time: 546ms - IP: 192.168.194.41 - User: user_1047 - RequestID: z4tfquamb2r +2025-06-18T13:56:12.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.167.32 - RequestID: 0g10gi7tge1 +2025-06-18T13:56:12.681Z [INFO] inventory-service - Auth event: login_failed - User: user_1096 - IP: 192.168.196.226 - RequestID: 6ikg0d0mq3f +2025-06-18T13:56:12.781Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 403 - Response time: 265ms - IP: 192.168.133.7 - User: user_1028 - RequestID: poyeo0g1adh +2025-06-18T13:56:12.881Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1173ms - IP: 192.168.196.226 - User: user_1085 - RequestID: ik1eg681wxt +2025-06-18T13:56:12.981Z [INFO] inventory-service - Operation: email_sent - Processing time: 559ms - RequestID: t2fluvlaubi +2025-06-18T13:56:13.081Z [TRACE] order-service - Auth event: password_change - User: user_1076 - IP: 192.168.36.218 - RequestID: g44rfbryyzu +2025-06-18T13:56:13.181Z [INFO] order-service - Operation: cache_hit - Processing time: 481ms - RequestID: wvh85o6q2zn +2025-06-18T13:56:13.281Z [TRACE] user-service - Operation: email_sent - Processing time: 1009ms - RequestID: q0u4994lg1d +2025-06-18T13:56:13.381Z [TRACE] payment-service - Auth event: login_success - User: user_1053 - IP: 192.168.64.33 - RequestID: 59rzccfb0y2 +2025-06-18T13:56:13.481Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 403 - Response time: 1871ms - IP: 192.168.79.141 - User: user_1056 - RequestID: drygd6fhd8m +2025-06-18T13:56:13.581Z [TRACE] inventory-service - POST /api/v1/orders - Status: 400 - Response time: 284ms - IP: 192.168.100.240 - User: user_1051 - RequestID: lnqwi0wsipi +2025-06-18T13:56:13.681Z [TRACE] user-service - Operation: email_sent - Processing time: 300ms - RequestID: no37bwc16re +2025-06-18T13:56:13.781Z [INFO] payment-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.81.206 - RequestID: fva7hrijbwn +2025-06-18T13:56:13.881Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 276ms - Rows affected: 19 - RequestID: 2b991hezvqp +2025-06-18T13:56:13.981Z [INFO] auth-service - PUT /api/v1/orders - Status: 503 - Response time: 1162ms - IP: 192.168.133.7 - User: user_1042 - RequestID: 0nbxjc9xfgg +2025-06-18T13:56:14.081Z [INFO] auth-service - Auth event: login_success - User: user_1017 - IP: 192.168.174.114 - RequestID: w8oy7ji60ln +2025-06-18T13:56:14.181Z [INFO] user-service - Operation: webhook_sent - Processing time: 849ms - RequestID: wmnie18qri +2025-06-18T13:56:14.281Z [DEBUG] user-service - Operation: payment_processed - Processing time: 188ms - RequestID: igxi0qoxb6l +2025-06-18T13:56:14.381Z [TRACE] order-service - Auth event: login_failed - User: user_1077 - IP: 192.168.158.144 - RequestID: 9ouvdiz8fg +2025-06-18T13:56:14.481Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 145ms - Rows affected: 43 - RequestID: y1wk3zl0638 +2025-06-18T13:56:14.581Z [DEBUG] inventory-service - Operation: order_created - Processing time: 767ms - RequestID: asog1j78q1l +2025-06-18T13:56:14.681Z [INFO] order-service - PUT /api/v1/orders - Status: 502 - Response time: 938ms - IP: 192.168.229.123 - User: user_1095 - RequestID: oe4bexeyf6g +2025-06-18T13:56:14.781Z [TRACE] order-service - Auth event: login_success - User: user_1087 - IP: 192.168.14.77 - RequestID: j9jfrbva9c +2025-06-18T13:56:14.881Z [INFO] user-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.44.5 - RequestID: sap3ux5qb5 +2025-06-18T13:56:14.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 434ms - RequestID: 1ngpnn358k9 +2025-06-18T13:56:15.081Z [TRACE] auth-service - Auth event: login_success - User: user_1080 - IP: 192.168.144.38 - RequestID: qtqsina6vp +2025-06-18T13:56:15.181Z [INFO] inventory-service - Database INSERT on payments - Execution time: 231ms - Rows affected: 58 - RequestID: quqqz7mjged +2025-06-18T13:56:15.281Z [DEBUG] auth-service - Database SELECT on users - Execution time: 184ms - Rows affected: 93 - RequestID: ndcv2krvav +2025-06-18T13:56:15.381Z [TRACE] user-service - Database SELECT on products - Execution time: 339ms - Rows affected: 2 - RequestID: to9553p696d +2025-06-18T13:56:15.481Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1827ms - IP: 192.168.227.77 - User: user_1003 - RequestID: tnkpmlgsp4o +2025-06-18T13:56:15.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.235.117 - RequestID: 4ophf3fahwd +2025-06-18T13:56:15.681Z [TRACE] auth-service - Auth event: login_success - User: user_1038 - IP: 192.168.181.225 - RequestID: 8bp6g4q1n8o +2025-06-18T13:56:15.781Z [TRACE] user-service - Database DELETE on products - Execution time: 43ms - Rows affected: 2 - RequestID: slsad6pdajf +2025-06-18T13:56:15.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 673ms - RequestID: 6avi5zzn5cd +2025-06-18T13:56:15.981Z [INFO] order-service - Operation: payment_processed - Processing time: 376ms - RequestID: 47qk3owqgw3 +2025-06-18T13:56:16.081Z [DEBUG] user-service - Database SELECT on products - Execution time: 94ms - Rows affected: 17 - RequestID: b5a5h641uui +2025-06-18T13:56:16.181Z [TRACE] order-service - Operation: notification_queued - Processing time: 648ms - RequestID: 8xnfdqsu3v +2025-06-18T13:56:16.281Z [INFO] auth-service - POST /api/v1/orders - Status: 401 - Response time: 380ms - IP: 192.168.211.72 - User: user_1057 - RequestID: ztvbs4j17ng +2025-06-18T13:56:16.381Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 188ms - Rows affected: 79 - RequestID: x7xqjsown7h +2025-06-18T13:56:16.481Z [TRACE] user-service - Auth event: password_change - User: user_1073 - IP: 192.168.211.72 - RequestID: apy3326s7cn +2025-06-18T13:56:16.581Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.194.41 - RequestID: 1p47lsc8qyfi +2025-06-18T13:56:16.681Z [TRACE] user-service - GET /api/v1/inventory - Status: 200 - Response time: 494ms - IP: 192.168.64.33 - User: user_1018 - RequestID: lqeoxi6asfo +2025-06-18T13:56:16.781Z [DEBUG] user-service - GET /api/v1/inventory - Status: 401 - Response time: 1322ms - IP: 192.168.181.225 - User: user_1049 - RequestID: 027zsnwnyb83 +2025-06-18T13:56:16.881Z [DEBUG] order-service - Database INSERT on orders - Execution time: 408ms - Rows affected: 41 - RequestID: 49s5sr1ak3u +2025-06-18T13:56:16.981Z [INFO] auth-service - Operation: notification_queued - Processing time: 318ms - RequestID: itr27ukdfn +2025-06-18T13:56:17.081Z [INFO] order-service - Operation: notification_queued - Processing time: 980ms - RequestID: 8c5n1zgdg34 +2025-06-18T13:56:17.181Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 369ms - Rows affected: 1 - RequestID: s1bfuboc2xi +2025-06-18T13:56:17.281Z [DEBUG] auth-service - Auth event: password_change - User: user_1090 - IP: 192.168.13.72 - RequestID: plzm4rrhoqh +2025-06-18T13:56:17.381Z [INFO] notification-service - Database SELECT on sessions - Execution time: 186ms - Rows affected: 45 - RequestID: j8n9xukzxl +2025-06-18T13:56:17.481Z [DEBUG] payment-service - Auth event: login_success - User: user_1009 - IP: 192.168.167.32 - RequestID: bvcrkf533z +2025-06-18T13:56:17.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 231ms - RequestID: 06qubqdrfm4c +2025-06-18T13:56:17.681Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 129ms - RequestID: hcvdjb4yqx +2025-06-18T13:56:17.781Z [INFO] notification-service - PATCH /api/v1/orders - Status: 201 - Response time: 1366ms - IP: 192.168.227.77 - User: user_1091 - RequestID: rlj9k9n154e +2025-06-18T13:56:17.881Z [DEBUG] user-service - Database INSERT on orders - Execution time: 73ms - Rows affected: 47 - RequestID: 1efbha0ybu2 +2025-06-18T13:56:17.981Z [INFO] order-service - Auth event: login_success - User: user_1048 - IP: 192.168.28.146 - RequestID: ig714zw6myg +2025-06-18T13:56:18.081Z [INFO] user-service - Operation: cache_hit - Processing time: 186ms - RequestID: ngs8y31dk6i +2025-06-18T13:56:18.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1022 - IP: 192.168.11.60 - RequestID: 65gx43rxb2l +2025-06-18T13:56:18.281Z [DEBUG] order-service - Auth event: login_failed - User: user_1092 - IP: 192.168.170.215 - RequestID: yfxb18m8jm +2025-06-18T13:56:18.381Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 503 - Response time: 1155ms - IP: 192.168.141.100 - User: user_1011 - RequestID: 8u2tzpfye85 +2025-06-18T13:56:18.481Z [INFO] order-service - Auth event: logout - User: user_1079 - IP: 192.168.194.41 - RequestID: 87cxiujera +2025-06-18T13:56:18.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 575ms - RequestID: rnucoqjz24 +2025-06-18T13:56:18.681Z [DEBUG] payment-service - Operation: email_sent - Processing time: 342ms - RequestID: dc9zpp99w37 +2025-06-18T13:56:18.781Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 142ms - Rows affected: 46 - RequestID: vz35paj3t7 +2025-06-18T13:56:18.881Z [INFO] user-service - Database INSERT on sessions - Execution time: 129ms - Rows affected: 51 - RequestID: 3ss7rfp2crp +2025-06-18T13:56:18.981Z [TRACE] payment-service - Operation: email_sent - Processing time: 50ms - RequestID: 2jypyfdgw0o +2025-06-18T13:56:19.081Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 89ms - RequestID: 1apygzmlnt7 +2025-06-18T13:56:19.181Z [TRACE] notification-service - Database UPDATE on products - Execution time: 367ms - Rows affected: 25 - RequestID: 4ohbp5f01v +2025-06-18T13:56:19.281Z [INFO] notification-service - Operation: cache_hit - Processing time: 88ms - RequestID: b2krcqhvenb +2025-06-18T13:56:19.381Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 403 - Response time: 339ms - IP: 192.168.144.38 - User: user_1066 - RequestID: l0edhsula4 +2025-06-18T13:56:19.481Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 449ms - Rows affected: 86 - RequestID: xpbf0clyjq +2025-06-18T13:56:19.581Z [DEBUG] order-service - PATCH /api/v1/users - Status: 401 - Response time: 699ms - IP: 192.168.100.240 - User: user_1006 - RequestID: b6le66mxels +2025-06-18T13:56:19.681Z [TRACE] auth-service - Auth event: login_success - User: user_1063 - IP: 192.168.14.77 - RequestID: ppioiw4y1bb +2025-06-18T13:56:19.781Z [DEBUG] auth-service - Database DELETE on users - Execution time: 288ms - Rows affected: 45 - RequestID: xrvkzz5l7pn +2025-06-18T13:56:19.881Z [TRACE] order-service - Operation: inventory_updated - Processing time: 178ms - RequestID: 7vlqmatda2q +2025-06-18T13:56:19.981Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 375ms - Rows affected: 92 - RequestID: a9o0rpaqqqr +2025-06-18T13:56:20.081Z [TRACE] payment-service - Operation: cache_hit - Processing time: 805ms - RequestID: 9jp0kw2hxmo +2025-06-18T13:56:20.181Z [INFO] inventory-service - Auth event: login_success - User: user_1013 - IP: 192.168.36.218 - RequestID: 0zwj1m0pcn1 +2025-06-18T13:56:20.281Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1717ms - IP: 192.168.113.218 - User: user_1022 - RequestID: mr970gcagyo +2025-06-18T13:56:20.381Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 200 - Response time: 171ms - IP: 192.168.227.233 - User: user_1081 - RequestID: nnztnaqj4yh +2025-06-18T13:56:20.481Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 139ms - Rows affected: 28 - RequestID: aa4vdzmu91m +2025-06-18T13:56:20.581Z [INFO] notification-service - Auth event: login_success - User: user_1027 - IP: 192.168.167.32 - RequestID: edt379somzb +2025-06-18T13:56:20.681Z [INFO] order-service - PUT /api/v1/payments - Status: 404 - Response time: 1789ms - IP: 192.168.194.41 - User: user_1054 - RequestID: 7a340kgiwyf +2025-06-18T13:56:20.781Z [DEBUG] payment-service - POST /api/v1/users - Status: 500 - Response time: 1742ms - IP: 192.168.79.143 - User: user_1063 - RequestID: 0ttmt1lm9sx +2025-06-18T13:56:20.881Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 215ms - Rows affected: 87 - RequestID: fa8qo55fu6k +2025-06-18T13:56:20.981Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 502 - Response time: 148ms - IP: 192.168.100.240 - User: user_1004 - RequestID: uo91lhdn2jj +2025-06-18T13:56:21.081Z [INFO] payment-service - Database DELETE on payments - Execution time: 246ms - Rows affected: 60 - RequestID: po6zh9i3yxk +2025-06-18T13:56:21.181Z [DEBUG] auth-service - Auth event: login_success - User: user_1036 - IP: 192.168.1.152 - RequestID: 9vrgtg4u6zw +2025-06-18T13:56:21.281Z [INFO] payment-service - Operation: email_sent - Processing time: 912ms - RequestID: akd40vvuwqd +2025-06-18T13:56:21.381Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1712ms - IP: 192.168.104.37 - User: user_1075 - RequestID: u4njgyhj1ka +2025-06-18T13:56:21.481Z [TRACE] order-service - Database SELECT on payments - Execution time: 80ms - Rows affected: 27 - RequestID: q8gfpcinz49 +2025-06-18T13:56:21.581Z [INFO] user-service - PATCH /api/v1/orders - Status: 200 - Response time: 1124ms - IP: 192.168.10.184 - User: user_1049 - RequestID: hyo44effx2a +2025-06-18T13:56:21.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.196.226 - RequestID: 0v72uqegrneq +2025-06-18T13:56:21.781Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 88ms - Rows affected: 60 - RequestID: kitxhqe3h5a +2025-06-18T13:56:21.881Z [INFO] user-service - Operation: payment_processed - Processing time: 266ms - RequestID: 19tww0t2ftd +2025-06-18T13:56:21.981Z [INFO] user-service - Operation: cache_miss - Processing time: 88ms - RequestID: 5bi8d90qcwk +2025-06-18T13:56:22.081Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 388ms - Rows affected: 76 - RequestID: t4grquh9jh +2025-06-18T13:56:22.181Z [TRACE] user-service - Auth event: logout - User: user_1021 - IP: 192.168.30.79 - RequestID: s7vftj16hoi +2025-06-18T13:56:22.281Z [TRACE] auth-service - PATCH /api/v1/users - Status: 201 - Response time: 1776ms - IP: 192.168.64.33 - User: user_1076 - RequestID: tdizw8j936 +2025-06-18T13:56:22.381Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 621ms - RequestID: qmle9jqpug +2025-06-18T13:56:22.481Z [INFO] inventory-service - Database INSERT on products - Execution time: 109ms - Rows affected: 15 - RequestID: wbam1ha10q +2025-06-18T13:56:22.581Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 120ms - Rows affected: 84 - RequestID: yl5exicq2i +2025-06-18T13:56:22.681Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1518ms - IP: 192.168.158.144 - User: user_1046 - RequestID: zl98vtls1x +2025-06-18T13:56:22.781Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 426ms - RequestID: x0n3cnqqiv +2025-06-18T13:56:22.881Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 186ms - Rows affected: 1 - RequestID: 8xfaykgn46j +2025-06-18T13:56:22.981Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 884ms - IP: 192.168.229.123 - User: user_1060 - RequestID: fb0580ba4z6 +2025-06-18T13:56:23.081Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 267ms - Rows affected: 50 - RequestID: ux22ikjhzi +2025-06-18T13:56:23.181Z [DEBUG] user-service - Operation: notification_queued - Processing time: 839ms - RequestID: 1srepagtko4h +2025-06-18T13:56:23.281Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 104ms - Rows affected: 12 - RequestID: l4c8tm3vnm9 +2025-06-18T13:56:23.381Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 500 - Response time: 1149ms - IP: 192.168.13.72 - User: user_1063 - RequestID: i94ragzd7x +2025-06-18T13:56:23.481Z [INFO] payment-service - PATCH /api/v1/orders - Status: 201 - Response time: 831ms - IP: 192.168.32.38 - User: user_1069 - RequestID: 70nytjkpzh +2025-06-18T13:56:23.581Z [TRACE] notification-service - Auth event: login_failed - User: user_1040 - IP: 192.168.32.38 - RequestID: q4wq2ga093h +2025-06-18T13:56:23.681Z [INFO] notification-service - Database INSERT on payments - Execution time: 96ms - Rows affected: 39 - RequestID: 7pamid3dtmo +2025-06-18T13:56:23.781Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 51ms - Rows affected: 20 - RequestID: uypbq4vwtz +2025-06-18T13:56:23.881Z [INFO] auth-service - Database SELECT on products - Execution time: 262ms - Rows affected: 30 - RequestID: mrqwyz13o7 +2025-06-18T13:56:23.981Z [DEBUG] payment-service - Database SELECT on products - Execution time: 172ms - Rows affected: 91 - RequestID: 3u14r3mxthl +2025-06-18T13:56:24.081Z [INFO] auth-service - Database UPDATE on payments - Execution time: 438ms - Rows affected: 63 - RequestID: pc93l5n320p +2025-06-18T13:56:24.181Z [DEBUG] user-service - Database SELECT on orders - Execution time: 31ms - Rows affected: 52 - RequestID: 78oa42wii37 +2025-06-18T13:56:24.281Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 126ms - Rows affected: 22 - RequestID: qqzmaylcpuk +2025-06-18T13:56:24.381Z [INFO] auth-service - GET /api/v1/auth/login - Status: 201 - Response time: 1854ms - IP: 192.168.170.215 - User: user_1084 - RequestID: oifxny1et0p +2025-06-18T13:56:24.481Z [TRACE] user-service - Auth event: password_change - User: user_1057 - IP: 192.168.81.206 - RequestID: vjlms342zj +2025-06-18T13:56:24.581Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 195ms - Rows affected: 64 - RequestID: anz5kooy41n +2025-06-18T13:56:24.681Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 436ms - IP: 192.168.53.133 - User: user_1021 - RequestID: yq2pxusaybi +2025-06-18T13:56:24.781Z [DEBUG] user-service - Operation: email_sent - Processing time: 564ms - RequestID: nludnon952i +2025-06-18T13:56:24.881Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 404 - Response time: 784ms - IP: 192.168.133.7 - User: user_1078 - RequestID: qaqm32b4vd +2025-06-18T13:56:24.981Z [INFO] order-service - PUT /api/v1/auth/login - Status: 500 - Response time: 901ms - IP: 192.168.189.103 - User: user_1081 - RequestID: g5mkbijo6dk +2025-06-18T13:56:25.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1099 - IP: 192.168.14.77 - RequestID: 8o0ohich4aq +2025-06-18T13:56:25.181Z [INFO] user-service - Auth event: logout - User: user_1087 - IP: 192.168.133.7 - RequestID: vh705hq0dc9 +2025-06-18T13:56:25.281Z [INFO] order-service - Operation: inventory_updated - Processing time: 823ms - RequestID: rigemms0maj +2025-06-18T13:56:25.381Z [INFO] notification-service - Auth event: logout - User: user_1028 - IP: 192.168.64.33 - RequestID: efvuwyw6rwv +2025-06-18T13:56:25.481Z [INFO] payment-service - GET /api/v1/inventory - Status: 403 - Response time: 21ms - IP: 192.168.53.133 - User: user_1084 - RequestID: hlhhl1n450p +2025-06-18T13:56:25.581Z [TRACE] notification-service - Operation: order_created - Processing time: 682ms - RequestID: 0w77h9yyyut +2025-06-18T13:56:25.681Z [INFO] user-service - Operation: notification_queued - Processing time: 509ms - RequestID: cvnlz2swv0f +2025-06-18T13:56:25.781Z [TRACE] order-service - Operation: order_created - Processing time: 767ms - RequestID: oqlk4dj601 +2025-06-18T13:56:25.881Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 403 - Response time: 920ms - IP: 192.168.133.7 - User: user_1089 - RequestID: gx5ikqledt +2025-06-18T13:56:25.981Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 507ms - RequestID: 9gnsnpu8y4l +2025-06-18T13:56:26.081Z [INFO] inventory-service - Auth event: password_change - User: user_1014 - IP: 192.168.1.152 - RequestID: zy6yk5zqvb +2025-06-18T13:56:26.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1096 - IP: 192.168.31.117 - RequestID: 2217f7x731c +2025-06-18T13:56:26.281Z [DEBUG] notification-service - Operation: email_sent - Processing time: 460ms - RequestID: 3dyxd3hv01x +2025-06-18T13:56:26.381Z [INFO] auth-service - Auth event: logout - User: user_1063 - IP: 192.168.30.79 - RequestID: 9kgcpkrsy7 +2025-06-18T13:56:26.481Z [TRACE] payment-service - Operation: order_created - Processing time: 394ms - RequestID: 2kus8br4e4a +2025-06-18T13:56:26.581Z [INFO] inventory-service - GET /api/v1/inventory - Status: 502 - Response time: 1157ms - IP: 192.168.11.60 - User: user_1050 - RequestID: 7r6uu5h5xah +2025-06-18T13:56:26.681Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 285ms - Rows affected: 8 - RequestID: iewlipb1cz +2025-06-18T13:56:26.781Z [TRACE] order-service - Database INSERT on orders - Execution time: 327ms - Rows affected: 18 - RequestID: f7sdc27i3xa +2025-06-18T13:56:26.881Z [INFO] order-service - Operation: notification_queued - Processing time: 662ms - RequestID: lf5amj1riih +2025-06-18T13:56:26.981Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 328ms - Rows affected: 44 - RequestID: he0qkvzx3ya +2025-06-18T13:56:27.081Z [INFO] order-service - Auth event: password_change - User: user_1070 - IP: 192.168.181.225 - RequestID: zv2gmuorhk9 +2025-06-18T13:56:27.181Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 2001ms - IP: 192.168.81.206 - User: user_1027 - RequestID: c350ernj1j +2025-06-18T13:56:27.281Z [INFO] user-service - Auth event: login_failed - User: user_1038 - IP: 192.168.46.63 - RequestID: olzwf0blju +2025-06-18T13:56:27.381Z [DEBUG] order-service - Database INSERT on orders - Execution time: 246ms - Rows affected: 77 - RequestID: t4ognlye3cl +2025-06-18T13:56:27.481Z [INFO] auth-service - Auth event: login_failed - User: user_1064 - IP: 192.168.11.60 - RequestID: 9brwatiwyi +2025-06-18T13:56:27.581Z [TRACE] payment-service - Auth event: login_success - User: user_1008 - IP: 192.168.174.114 - RequestID: c0g5v0jabxr +2025-06-18T13:56:27.681Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 398ms - Rows affected: 21 - RequestID: pwd9egh6hut +2025-06-18T13:56:27.781Z [DEBUG] order-service - Database INSERT on products - Execution time: 463ms - Rows affected: 35 - RequestID: cslqeulzdsr +2025-06-18T13:56:27.881Z [TRACE] order-service - Auth event: login_failed - User: user_1095 - IP: 192.168.232.72 - RequestID: i6nf1xn468s +2025-06-18T13:56:27.981Z [DEBUG] order-service - Auth event: logout - User: user_1014 - IP: 192.168.14.77 - RequestID: qrn11gwpu8 +2025-06-18T13:56:28.081Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 148ms - Rows affected: 35 - RequestID: v7lstwz6w8c +2025-06-18T13:56:28.181Z [INFO] user-service - PATCH /api/v1/orders - Status: 201 - Response time: 1288ms - IP: 192.168.79.141 - User: user_1010 - RequestID: i4qf2hrn9ds +2025-06-18T13:56:28.281Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 313ms - Rows affected: 44 - RequestID: mbye98y9yde +2025-06-18T13:56:28.381Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 401 - Response time: 643ms - IP: 192.168.147.171 - User: user_1068 - RequestID: kwurh8lz42 +2025-06-18T13:56:28.481Z [INFO] auth-service - Database UPDATE on users - Execution time: 132ms - Rows affected: 96 - RequestID: d5vsrbgqvs8 +2025-06-18T13:56:28.581Z [DEBUG] order-service - Database SELECT on payments - Execution time: 390ms - Rows affected: 53 - RequestID: zodd6pxjwe +2025-06-18T13:56:28.681Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 201 - Response time: 601ms - IP: 192.168.229.123 - User: user_1026 - RequestID: jh70uwn2dzl +2025-06-18T13:56:28.781Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 442ms - Rows affected: 42 - RequestID: xup1hkdpoh +2025-06-18T13:56:28.881Z [TRACE] order-service - Auth event: password_change - User: user_1010 - IP: 192.168.79.143 - RequestID: 38w2k8u16i4 +2025-06-18T13:56:28.981Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1041ms - IP: 192.168.242.165 - User: user_1095 - RequestID: 7r5q9mde36 +2025-06-18T13:56:29.081Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 503 - Response time: 965ms - IP: 192.168.174.114 - User: user_1086 - RequestID: kxxjlwqkg9 +2025-06-18T13:56:29.181Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 769ms - IP: 192.168.33.76 - User: user_1009 - RequestID: zq5vckra1c +2025-06-18T13:56:29.281Z [INFO] user-service - Auth event: login_failed - User: user_1058 - IP: 192.168.79.116 - RequestID: aknob63lznn +2025-06-18T13:56:29.381Z [INFO] order-service - PATCH /api/v1/payments - Status: 401 - Response time: 90ms - IP: 192.168.227.233 - User: user_1042 - RequestID: p1pmw6na01t +2025-06-18T13:56:29.481Z [TRACE] payment-service - Auth event: login_failed - User: user_1073 - IP: 192.168.13.72 - RequestID: uz24sj6ju5 +2025-06-18T13:56:29.581Z [INFO] payment-service - Database DELETE on orders - Execution time: 149ms - Rows affected: 55 - RequestID: 137fjy2pga8 +2025-06-18T13:56:29.681Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 192ms - Rows affected: 38 - RequestID: 47c0etffkml +2025-06-18T13:56:29.781Z [INFO] payment-service - Auth event: login_success - User: user_1036 - IP: 192.168.79.141 - RequestID: lbmunqq8cz +2025-06-18T13:56:29.881Z [INFO] user-service - POST /api/v1/payments - Status: 500 - Response time: 1871ms - IP: 192.168.31.117 - User: user_1059 - RequestID: gaqqjcqn1jm +2025-06-18T13:56:29.981Z [INFO] inventory-service - Database INSERT on products - Execution time: 9ms - Rows affected: 26 - RequestID: u99vi3z1k8 +2025-06-18T13:56:30.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.33.76 - RequestID: cvu0yvksaij +2025-06-18T13:56:30.181Z [TRACE] user-service - Database SELECT on products - Execution time: 365ms - Rows affected: 42 - RequestID: z09qfbkbcn +2025-06-18T13:56:30.281Z [TRACE] payment-service - POST /api/v1/payments - Status: 500 - Response time: 1771ms - IP: 192.168.196.226 - User: user_1069 - RequestID: n6hju2da07 +2025-06-18T13:56:30.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1019 - IP: 192.168.81.206 - RequestID: o9aepk7vpxf +2025-06-18T13:56:30.481Z [DEBUG] auth-service - Operation: order_created - Processing time: 182ms - RequestID: rgdhe9jrq3 +2025-06-18T13:56:30.581Z [DEBUG] inventory-service - Operation: order_created - Processing time: 354ms - RequestID: bmfyzxecwaq +2025-06-18T13:56:30.681Z [TRACE] user-service - GET /api/v1/inventory - Status: 500 - Response time: 995ms - IP: 192.168.181.225 - User: user_1015 - RequestID: 3j3oybs8qfw +2025-06-18T13:56:30.781Z [TRACE] payment-service - Database INSERT on payments - Execution time: 176ms - Rows affected: 66 - RequestID: esv2hkufw7e +2025-06-18T13:56:30.881Z [TRACE] auth-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.13.72 - RequestID: 43r8wvw1i56 +2025-06-18T13:56:30.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 836ms - RequestID: 47mkwkzra6k +2025-06-18T13:56:31.081Z [TRACE] user-service - Database DELETE on products - Execution time: 257ms - Rows affected: 40 - RequestID: oaclq2mlkd +2025-06-18T13:56:31.181Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 461ms - Rows affected: 59 - RequestID: uduiz268sb +2025-06-18T13:56:31.281Z [TRACE] user-service - Auth event: password_change - User: user_1080 - IP: 192.168.68.128 - RequestID: ifrips2ig0n +2025-06-18T13:56:31.381Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1047ms - IP: 192.168.158.144 - User: user_1055 - RequestID: eienkicwa7v +2025-06-18T13:56:31.481Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 497ms - IP: 192.168.81.206 - User: user_1002 - RequestID: x9ce1c76axs +2025-06-18T13:56:31.581Z [DEBUG] order-service - DELETE /api/v1/users - Status: 502 - Response time: 1177ms - IP: 192.168.36.218 - User: user_1035 - RequestID: 09n69zylc4l8 +2025-06-18T13:56:31.681Z [INFO] auth-service - Database INSERT on users - Execution time: 93ms - Rows affected: 74 - RequestID: 2onn4oli3oa +2025-06-18T13:56:31.781Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 401 - Response time: 694ms - IP: 192.168.104.37 - User: user_1028 - RequestID: ecz18avvysu +2025-06-18T13:56:31.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1041 - IP: 192.168.187.199 - RequestID: l6ek7ijuhl +2025-06-18T13:56:31.981Z [TRACE] order-service - Database INSERT on products - Execution time: 60ms - Rows affected: 6 - RequestID: afang4phb6s +2025-06-18T13:56:32.081Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 66ms - Rows affected: 84 - RequestID: 1p7d06k6ap2 +2025-06-18T13:56:32.181Z [TRACE] user-service - PUT /api/v1/users - Status: 500 - Response time: 622ms - IP: 192.168.227.77 - User: user_1022 - RequestID: z2sb21091lt +2025-06-18T13:56:32.281Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 283ms - Rows affected: 90 - RequestID: lw55nsrnwt8 +2025-06-18T13:56:32.381Z [INFO] auth-service - Database UPDATE on products - Execution time: 204ms - Rows affected: 8 - RequestID: vsjo72sa9t +2025-06-18T13:56:32.481Z [TRACE] order-service - Auth event: password_change - User: user_1003 - IP: 192.168.235.117 - RequestID: dt48gidgx7 +2025-06-18T13:56:32.581Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 654ms - RequestID: xxegqbjh7me +2025-06-18T13:56:32.681Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 866ms - IP: 192.168.158.144 - User: user_1018 - RequestID: jy67c6urckp +2025-06-18T13:56:32.781Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 214ms - Rows affected: 33 - RequestID: of5igbfj3rq +2025-06-18T13:56:32.881Z [INFO] notification-service - GET /api/v1/inventory - Status: 400 - Response time: 303ms - IP: 192.168.242.165 - User: user_1066 - RequestID: cqkr8jplazp +2025-06-18T13:56:32.981Z [INFO] inventory-service - Operation: cache_hit - Processing time: 289ms - RequestID: dpn1ca01qhr +2025-06-18T13:56:33.081Z [INFO] order-service - Database SELECT on users - Execution time: 123ms - Rows affected: 96 - RequestID: axllhos9swv +2025-06-18T13:56:33.181Z [INFO] notification-service - DELETE /api/v1/payments - Status: 400 - Response time: 1386ms - IP: 192.168.68.158 - User: user_1075 - RequestID: nbzsb5qssdl +2025-06-18T13:56:33.281Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 78ms - Rows affected: 48 - RequestID: g2sghovv9kd +2025-06-18T13:56:33.381Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 155ms - Rows affected: 73 - RequestID: 9z5jmvq548c +2025-06-18T13:56:33.481Z [DEBUG] order-service - PUT /api/v1/orders - Status: 401 - Response time: 1849ms - IP: 192.168.232.72 - User: user_1022 - RequestID: o8yjhsh8xom +2025-06-18T13:56:33.581Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 404 - Response time: 993ms - IP: 192.168.189.103 - User: user_1084 - RequestID: 7407ufh5q4j +2025-06-18T13:56:33.681Z [INFO] payment-service - PATCH /api/v1/payments - Status: 503 - Response time: 1238ms - IP: 192.168.44.5 - User: user_1056 - RequestID: ioiqfp31lpo +2025-06-18T13:56:33.781Z [INFO] order-service - Database INSERT on payments - Execution time: 196ms - Rows affected: 44 - RequestID: xqfo2ahmge +2025-06-18T13:56:33.881Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 130ms - RequestID: 78bwws260vg +2025-06-18T13:56:33.981Z [TRACE] payment-service - Auth event: login_success - User: user_1035 - IP: 192.168.247.134 - RequestID: p2v3l4j4zki +2025-06-18T13:56:34.081Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 377ms - Rows affected: 68 - RequestID: 661pd7qzjqj +2025-06-18T13:56:34.181Z [INFO] inventory-service - Database INSERT on orders - Execution time: 113ms - Rows affected: 51 - RequestID: 8loakyeyfm4 +2025-06-18T13:56:34.281Z [TRACE] order-service - Operation: inventory_updated - Processing time: 844ms - RequestID: 1zlvbtxa9ca +2025-06-18T13:56:34.381Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 482ms - Rows affected: 59 - RequestID: fyokzc2z43 +2025-06-18T13:56:34.481Z [INFO] order-service - GET /api/v1/orders - Status: 502 - Response time: 605ms - IP: 192.168.53.133 - User: user_1063 - RequestID: hi6k4h7gk4 +2025-06-18T13:56:34.581Z [TRACE] payment-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.227.233 - RequestID: ci4330oaber +2025-06-18T13:56:34.681Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 373ms - RequestID: grn664dhp2n +2025-06-18T13:56:34.781Z [INFO] inventory-service - Auth event: password_change - User: user_1038 - IP: 192.168.227.233 - RequestID: b8ad49e5ar +2025-06-18T13:56:34.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.167.32 - RequestID: wb29ox66cac +2025-06-18T13:56:34.981Z [DEBUG] inventory-service - Auth event: password_change - User: user_1082 - IP: 192.168.79.141 - RequestID: ioo0j4r03t +2025-06-18T13:56:35.081Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 487ms - RequestID: bl5oefwqp2m +2025-06-18T13:56:35.181Z [INFO] user-service - Database DELETE on products - Execution time: 244ms - Rows affected: 45 - RequestID: 0mdtm8g79pa +2025-06-18T13:56:35.281Z [DEBUG] payment-service - Auth event: login_success - User: user_1035 - IP: 192.168.100.240 - RequestID: xiihrqcb2wl +2025-06-18T13:56:35.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.113.218 - RequestID: c8q3wkeitpm +2025-06-18T13:56:35.481Z [INFO] payment-service - Auth event: password_change - User: user_1033 - IP: 192.168.46.63 - RequestID: bsst5t4ugq7 +2025-06-18T13:56:35.581Z [TRACE] order-service - Operation: notification_queued - Processing time: 660ms - RequestID: zwybo1rg41e +2025-06-18T13:56:35.681Z [INFO] payment-service - Operation: cache_miss - Processing time: 1032ms - RequestID: 17qakq733o2 +2025-06-18T13:56:35.781Z [INFO] auth-service - Operation: payment_processed - Processing time: 352ms - RequestID: lbxy28ti5t +2025-06-18T13:56:35.881Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 449ms - Rows affected: 62 - RequestID: dmgruivpqzb +2025-06-18T13:56:35.981Z [TRACE] user-service - Auth event: login_failed - User: user_1095 - IP: 192.168.167.32 - RequestID: 69ndjlhzdr7 +2025-06-18T13:56:36.081Z [TRACE] notification-service - Operation: payment_processed - Processing time: 239ms - RequestID: 4cn9t758qw6 +2025-06-18T13:56:36.181Z [TRACE] user-service - Database INSERT on payments - Execution time: 445ms - Rows affected: 78 - RequestID: q0mbcs1r1ye +2025-06-18T13:56:36.281Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 525ms - IP: 192.168.235.117 - User: user_1078 - RequestID: gzmug34dese +2025-06-18T13:56:36.381Z [DEBUG] order-service - Auth event: logout - User: user_1095 - IP: 192.168.64.33 - RequestID: gdczm5rmbiq +2025-06-18T13:56:36.481Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 278ms - Rows affected: 99 - RequestID: 20y1x8q64zo +2025-06-18T13:56:36.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 405ms - RequestID: 7x5ln3rvx1i +2025-06-18T13:56:36.681Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 840ms - RequestID: j21aqzbgmfq +2025-06-18T13:56:36.781Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 105ms - Rows affected: 4 - RequestID: m25f3zcr5d +2025-06-18T13:56:36.881Z [DEBUG] order-service - Auth event: login_success - User: user_1042 - IP: 192.168.227.233 - RequestID: 035k86rs2lt +2025-06-18T13:56:36.981Z [INFO] user-service - GET /api/v1/auth/logout - Status: 200 - Response time: 623ms - IP: 192.168.30.79 - User: user_1006 - RequestID: dy9sollsq4v +2025-06-18T13:56:37.081Z [TRACE] auth-service - Auth event: logout - User: user_1029 - IP: 192.168.68.128 - RequestID: d0hh5isjiqr +2025-06-18T13:56:37.181Z [INFO] auth-service - Operation: inventory_updated - Processing time: 947ms - RequestID: s631okpvzc +2025-06-18T13:56:37.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 628ms - RequestID: yr894uf676c +2025-06-18T13:56:37.381Z [INFO] notification-service - Auth event: login_failed - User: user_1078 - IP: 192.168.46.63 - RequestID: 35tnc70vssf +2025-06-18T13:56:37.481Z [TRACE] order-service - Operation: payment_processed - Processing time: 214ms - RequestID: htlt4bmmxlk +2025-06-18T13:56:37.581Z [INFO] inventory-service - Auth event: login_failed - User: user_1033 - IP: 192.168.227.77 - RequestID: rgnbedc9wk +2025-06-18T13:56:37.681Z [DEBUG] order-service - Database INSERT on users - Execution time: 315ms - Rows affected: 95 - RequestID: hscbw9o6tbi +2025-06-18T13:56:37.781Z [DEBUG] order-service - POST /api/v1/inventory - Status: 404 - Response time: 241ms - IP: 192.168.46.63 - User: user_1081 - RequestID: g1oh45pp47g +2025-06-18T13:56:37.881Z [TRACE] user-service - Database DELETE on orders - Execution time: 120ms - Rows affected: 91 - RequestID: knrtlf8jehp +2025-06-18T13:56:37.981Z [DEBUG] order-service - Operation: cache_hit - Processing time: 210ms - RequestID: fl3svmkc7gt +2025-06-18T13:56:38.081Z [DEBUG] user-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.167.32 - RequestID: zc08b7z31ii +2025-06-18T13:56:38.181Z [INFO] user-service - Operation: order_created - Processing time: 839ms - RequestID: ce98zehojru +2025-06-18T13:56:38.281Z [TRACE] auth-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.240.169 - RequestID: wuqnq2xgwnk +2025-06-18T13:56:38.381Z [INFO] payment-service - Database DELETE on users - Execution time: 120ms - Rows affected: 72 - RequestID: t05u6s7ogv9 +2025-06-18T13:56:38.481Z [TRACE] order-service - Operation: cache_hit - Processing time: 312ms - RequestID: iduhf1wxzs +2025-06-18T13:56:38.581Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 531ms - RequestID: ilb6dv13y2m +2025-06-18T13:56:38.681Z [TRACE] auth-service - Database DELETE on users - Execution time: 299ms - Rows affected: 96 - RequestID: 7sb2b7ur77j +2025-06-18T13:56:38.781Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 404 - Response time: 341ms - IP: 192.168.138.123 - User: user_1073 - RequestID: 46c0jvkakzh +2025-06-18T13:56:38.881Z [DEBUG] auth-service - Auth event: logout - User: user_1059 - IP: 192.168.32.38 - RequestID: k15rciy738i +2025-06-18T13:56:38.981Z [TRACE] payment-service - Auth event: login_failed - User: user_1062 - IP: 192.168.33.76 - RequestID: 0hp9lalpepue +2025-06-18T13:56:39.081Z [DEBUG] notification-service - Auth event: logout - User: user_1030 - IP: 192.168.174.114 - RequestID: hqxykor9d2n +2025-06-18T13:56:39.181Z [TRACE] inventory-service - GET /api/v1/orders - Status: 401 - Response time: 873ms - IP: 192.168.138.123 - User: user_1015 - RequestID: mw2syka2ot +2025-06-18T13:56:39.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 264ms - RequestID: d50001ps8yq +2025-06-18T13:56:39.381Z [DEBUG] notification-service - Auth event: logout - User: user_1077 - IP: 192.168.141.100 - RequestID: 30ql2asvio5 +2025-06-18T13:56:39.481Z [TRACE] notification-service - GET /api/v1/auth/login - Status: 200 - Response time: 238ms - IP: 192.168.235.117 - User: user_1090 - RequestID: lk8ukx3wtmd +2025-06-18T13:56:39.581Z [DEBUG] user-service - Operation: payment_processed - Processing time: 274ms - RequestID: k5exy00jfe +2025-06-18T13:56:39.681Z [INFO] order-service - GET /api/v1/orders - Status: 500 - Response time: 1592ms - IP: 192.168.138.123 - User: user_1043 - RequestID: 5cqr2hn3qyt +2025-06-18T13:56:39.781Z [TRACE] auth-service - POST /api/v1/users - Status: 403 - Response time: 1709ms - IP: 192.168.68.128 - User: user_1018 - RequestID: hj3tt1rovpe +2025-06-18T13:56:39.881Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 662ms - IP: 192.168.211.72 - User: user_1082 - RequestID: t5iq3tgpuz +2025-06-18T13:56:39.981Z [INFO] order-service - POST /api/v1/auth/login - Status: 502 - Response time: 37ms - IP: 192.168.141.100 - User: user_1085 - RequestID: 0pjr1xisqkyk +2025-06-18T13:56:40.081Z [DEBUG] auth-service - Operation: order_created - Processing time: 490ms - RequestID: 0hw627wts43q +2025-06-18T13:56:40.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.32.38 - RequestID: dgx5gpb5er7 +2025-06-18T13:56:40.281Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 286ms - Rows affected: 62 - RequestID: qarohgl45tt +2025-06-18T13:56:40.381Z [TRACE] auth-service - Operation: email_sent - Processing time: 358ms - RequestID: 1ho80n837fd +2025-06-18T13:56:40.481Z [TRACE] notification-service - Database INSERT on users - Execution time: 473ms - Rows affected: 77 - RequestID: pw0j9wm26e +2025-06-18T13:56:40.581Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 458ms - RequestID: me4aal5r2w +2025-06-18T13:56:40.681Z [TRACE] order-service - Operation: order_created - Processing time: 222ms - RequestID: d10cnb7l1yw +2025-06-18T13:56:40.781Z [DEBUG] payment-service - Auth event: logout - User: user_1059 - IP: 192.168.133.7 - RequestID: xg9djo39r3o +2025-06-18T13:56:40.881Z [INFO] payment-service - Auth event: password_change - User: user_1003 - IP: 192.168.227.77 - RequestID: xguc4g690fk +2025-06-18T13:56:40.981Z [INFO] auth-service - Operation: email_sent - Processing time: 122ms - RequestID: lv7e7cj4ut9 +2025-06-18T13:56:41.081Z [INFO] payment-service - Operation: notification_queued - Processing time: 517ms - RequestID: n924qzjqp3 +2025-06-18T13:56:41.181Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 400 - Response time: 1435ms - IP: 192.168.64.33 - User: user_1039 - RequestID: skbworw8d1c +2025-06-18T13:56:41.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 461ms - RequestID: 29osr69njmk +2025-06-18T13:56:41.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.227.233 - RequestID: 65gj2xw409 +2025-06-18T13:56:41.481Z [TRACE] notification-service - Auth event: login_success - User: user_1087 - IP: 192.168.79.141 - RequestID: lzg27hxw4a +2025-06-18T13:56:41.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.159.94 - RequestID: 4qjqlrpxzn5 +2025-06-18T13:56:41.681Z [INFO] user-service - Database SELECT on products - Execution time: 220ms - Rows affected: 84 - RequestID: ogc0qvkxrm +2025-06-18T13:56:41.781Z [TRACE] order-service - POST /api/v1/orders - Status: 503 - Response time: 1163ms - IP: 192.168.68.128 - User: user_1094 - RequestID: 2ib63tufw4c +2025-06-18T13:56:41.881Z [INFO] order-service - Operation: cache_hit - Processing time: 536ms - RequestID: tmqxk3z0oj9 +2025-06-18T13:56:41.981Z [TRACE] user-service - Operation: notification_queued - Processing time: 509ms - RequestID: xhsukkjwod +2025-06-18T13:56:42.081Z [INFO] auth-service - DELETE /api/v1/orders - Status: 403 - Response time: 268ms - IP: 192.168.97.87 - User: user_1027 - RequestID: 7qbw9i9qljk +2025-06-18T13:56:42.181Z [INFO] notification-service - Auth event: password_change - User: user_1047 - IP: 192.168.1.152 - RequestID: rc7cftz9kq +2025-06-18T13:56:42.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1092 - IP: 192.168.181.225 - RequestID: a1pyxapebtd +2025-06-18T13:56:42.381Z [DEBUG] user-service - Database INSERT on users - Execution time: 74ms - Rows affected: 24 - RequestID: cyxrw483mpe +2025-06-18T13:56:42.481Z [INFO] auth-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.227.77 - RequestID: 0pp668qqv6f +2025-06-18T13:56:42.581Z [DEBUG] order-service - Database SELECT on products - Execution time: 404ms - Rows affected: 41 - RequestID: yfx99uxz7an +2025-06-18T13:56:42.681Z [TRACE] order-service - Operation: payment_processed - Processing time: 633ms - RequestID: qrtzf4poozp +2025-06-18T13:56:42.781Z [INFO] order-service - Auth event: logout - User: user_1076 - IP: 192.168.147.171 - RequestID: 16l3rnj5goa +2025-06-18T13:56:42.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 261ms - RequestID: d8leghsgcv6 +2025-06-18T13:56:42.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.158.144 - RequestID: 8xlaxxwgp6l +2025-06-18T13:56:43.081Z [DEBUG] user-service - Database DELETE on orders - Execution time: 274ms - Rows affected: 14 - RequestID: 2dyb6usyjkg +2025-06-18T13:56:43.181Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 401 - Response time: 89ms - IP: 192.168.79.143 - User: user_1068 - RequestID: 5cxv9ndy5kq +2025-06-18T13:56:43.281Z [INFO] order-service - Operation: email_sent - Processing time: 178ms - RequestID: 4xbbb7f6085 +2025-06-18T13:56:43.381Z [TRACE] notification-service - Auth event: logout - User: user_1043 - IP: 192.168.227.233 - RequestID: 8o2s6u2gg58 +2025-06-18T13:56:43.481Z [DEBUG] order-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.10.184 - RequestID: sgqto6vy3u +2025-06-18T13:56:43.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1095 - IP: 192.168.11.60 - RequestID: gi3e76491sf +2025-06-18T13:56:43.681Z [TRACE] notification-service - GET /api/v1/users - Status: 500 - Response time: 22ms - IP: 192.168.46.63 - User: user_1099 - RequestID: od9u1tdsx9 +2025-06-18T13:56:43.781Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 156ms - Rows affected: 29 - RequestID: 6ggg3ir2754 +2025-06-18T13:56:43.881Z [TRACE] auth-service - Operation: cache_hit - Processing time: 775ms - RequestID: qo2b115spng +2025-06-18T13:56:43.981Z [INFO] auth-service - Database INSERT on sessions - Execution time: 12ms - Rows affected: 23 - RequestID: fod30gvz7k9 +2025-06-18T13:56:44.081Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 157ms - Rows affected: 68 - RequestID: 2tqf5rblmcu +2025-06-18T13:56:44.181Z [INFO] payment-service - PATCH /api/v1/orders - Status: 401 - Response time: 1896ms - IP: 192.168.167.32 - User: user_1077 - RequestID: yjdkdiyhpfi +2025-06-18T13:56:44.281Z [INFO] inventory-service - Operation: cache_hit - Processing time: 927ms - RequestID: us94fksnmhb +2025-06-18T13:56:44.381Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 28ms - Rows affected: 75 - RequestID: z3mfufywmtk +2025-06-18T13:56:44.481Z [TRACE] order-service - Database DELETE on payments - Execution time: 296ms - Rows affected: 31 - RequestID: wjvpii11vi +2025-06-18T13:56:44.581Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1891ms - IP: 192.168.10.184 - User: user_1077 - RequestID: i4xdok3sqe +2025-06-18T13:56:44.681Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 405ms - Rows affected: 77 - RequestID: 8vqg33azdz9 +2025-06-18T13:56:44.781Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 500 - Response time: 351ms - IP: 192.168.32.38 - User: user_1019 - RequestID: dre1n89rybm +2025-06-18T13:56:44.881Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 502 - Response time: 673ms - IP: 192.168.167.32 - User: user_1037 - RequestID: ldojygk4se +2025-06-18T13:56:44.981Z [DEBUG] notification-service - Auth event: login_success - User: user_1062 - IP: 192.168.68.128 - RequestID: juq5hyorpgg +2025-06-18T13:56:45.081Z [TRACE] notification-service - Auth event: login_failed - User: user_1042 - IP: 192.168.138.123 - RequestID: 2d0wizwk5w +2025-06-18T13:56:45.181Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1071ms - IP: 192.168.211.72 - User: user_1097 - RequestID: ynm891wc7bf +2025-06-18T13:56:45.281Z [INFO] order-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.158.144 - RequestID: luysr28k10h +2025-06-18T13:56:45.381Z [TRACE] user-service - PATCH /api/v1/users - Status: 400 - Response time: 1518ms - IP: 192.168.147.171 - User: user_1083 - RequestID: 4le4iqvvfmm +2025-06-18T13:56:45.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.85.229 - RequestID: r9nj79vk1p +2025-06-18T13:56:45.581Z [TRACE] order-service - Auth event: login_failed - User: user_1084 - IP: 192.168.85.229 - RequestID: z50r2skrl0f +2025-06-18T13:56:45.681Z [TRACE] user-service - Operation: cache_hit - Processing time: 580ms - RequestID: z1qr0jfqg5k +2025-06-18T13:56:45.781Z [INFO] payment-service - Auth event: password_change - User: user_1076 - IP: 192.168.33.76 - RequestID: yuj7b8ln95a +2025-06-18T13:56:45.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.1.152 - RequestID: pnjb9mpy29g +2025-06-18T13:56:45.981Z [INFO] user-service - Database UPDATE on orders - Execution time: 172ms - Rows affected: 2 - RequestID: u8wy7vce0f +2025-06-18T13:56:46.081Z [INFO] user-service - Auth event: login_success - User: user_1050 - IP: 192.168.13.72 - RequestID: xpvo4kao92d +2025-06-18T13:56:46.181Z [INFO] user-service - Operation: payment_processed - Processing time: 684ms - RequestID: gs3nhkyn397 +2025-06-18T13:56:46.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 729ms - RequestID: kom2wqp1mmo +2025-06-18T13:56:46.381Z [INFO] inventory-service - Database SELECT on orders - Execution time: 330ms - Rows affected: 4 - RequestID: 95eafw05y4l +2025-06-18T13:56:46.481Z [TRACE] order-service - POST /api/v1/inventory - Status: 404 - Response time: 1600ms - IP: 192.168.79.143 - User: user_1062 - RequestID: r4cc4xjwkg +2025-06-18T13:56:46.581Z [INFO] order-service - GET /api/v1/payments - Status: 500 - Response time: 429ms - IP: 192.168.141.100 - User: user_1093 - RequestID: 4piuxjci5fd +2025-06-18T13:56:46.681Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1731ms - IP: 192.168.240.169 - User: user_1063 - RequestID: xr1uimr82kr +2025-06-18T13:56:46.781Z [TRACE] user-service - Operation: payment_processed - Processing time: 168ms - RequestID: rofdejb7sn +2025-06-18T13:56:46.881Z [TRACE] payment-service - Database SELECT on orders - Execution time: 384ms - Rows affected: 66 - RequestID: v9wt22dho2f +2025-06-18T13:56:46.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.100.240 - RequestID: c28ruihet9j +2025-06-18T13:56:47.081Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 193ms - IP: 192.168.10.184 - User: user_1039 - RequestID: 1zxpf7n6b7k +2025-06-18T13:56:47.181Z [INFO] inventory-service - Operation: notification_queued - Processing time: 239ms - RequestID: uoe7682quys +2025-06-18T13:56:47.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1006 - IP: 192.168.28.146 - RequestID: mbi1o92uwc +2025-06-18T13:56:47.381Z [DEBUG] payment-service - Auth event: password_change - User: user_1094 - IP: 192.168.68.128 - RequestID: 5o3uxaovgu3 +2025-06-18T13:56:47.481Z [INFO] auth-service - Database INSERT on products - Execution time: 254ms - Rows affected: 3 - RequestID: q7287euvh1 +2025-06-18T13:56:47.581Z [INFO] order-service - PATCH /api/v1/users - Status: 200 - Response time: 1891ms - IP: 192.168.68.128 - User: user_1000 - RequestID: e4ncvsh1ka +2025-06-18T13:56:47.681Z [INFO] payment-service - Database SELECT on users - Execution time: 155ms - Rows affected: 95 - RequestID: 7kdijw5nzrx +2025-06-18T13:56:47.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 467ms - RequestID: 45ne9pck0yf +2025-06-18T13:56:47.881Z [INFO] payment-service - Operation: cache_hit - Processing time: 159ms - RequestID: 93chrz3u0yj +2025-06-18T13:56:47.981Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 1029ms - RequestID: 9bq6rzvy05 +2025-06-18T13:56:48.081Z [INFO] user-service - Auth event: login_failed - User: user_1050 - IP: 192.168.13.72 - RequestID: 3du2wadnotx +2025-06-18T13:56:48.181Z [INFO] user-service - Operation: cache_miss - Processing time: 1032ms - RequestID: xjr9buzd8n +2025-06-18T13:56:48.281Z [DEBUG] payment-service - Database DELETE on users - Execution time: 364ms - Rows affected: 60 - RequestID: whjhljwsso +2025-06-18T13:56:48.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 993ms - RequestID: mak8acthu9m +2025-06-18T13:56:48.481Z [INFO] payment-service - Database SELECT on products - Execution time: 372ms - Rows affected: 26 - RequestID: tlcyluy5vt +2025-06-18T13:56:48.581Z [TRACE] inventory-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1877ms - IP: 192.168.187.199 - User: user_1066 - RequestID: muiwh9vg8vh +2025-06-18T13:56:48.681Z [DEBUG] auth-service - Operation: email_sent - Processing time: 445ms - RequestID: 51apwhnutuy +2025-06-18T13:56:48.781Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 503 - Response time: 1196ms - IP: 192.168.144.38 - User: user_1038 - RequestID: 8ku5e9oxwzy +2025-06-18T13:56:48.881Z [DEBUG] user-service - Database SELECT on products - Execution time: 427ms - Rows affected: 73 - RequestID: 43lz8278g1f +2025-06-18T13:56:48.981Z [INFO] auth-service - Operation: notification_queued - Processing time: 1013ms - RequestID: zx7to3trev +2025-06-18T13:56:49.081Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 491ms - Rows affected: 81 - RequestID: 8xzajfc0oqq +2025-06-18T13:56:49.181Z [INFO] order-service - POST /api/v1/orders - Status: 403 - Response time: 1311ms - IP: 192.168.159.94 - User: user_1094 - RequestID: 466aa6xv2mc +2025-06-18T13:56:49.281Z [INFO] payment-service - Operation: email_sent - Processing time: 149ms - RequestID: 84876f54uv7 +2025-06-18T13:56:49.381Z [INFO] user-service - Auth event: login_failed - User: user_1053 - IP: 192.168.232.72 - RequestID: jgode87ghw +2025-06-18T13:56:49.481Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1710ms - IP: 192.168.100.240 - User: user_1042 - RequestID: bs1wkxgtp5i +2025-06-18T13:56:49.581Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 460ms - RequestID: 6sdumdebd1 +2025-06-18T13:56:49.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 229ms - RequestID: qz82drbii9l +2025-06-18T13:56:49.781Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 440ms - RequestID: o27rhx5k55h +2025-06-18T13:56:49.881Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.79.141 - RequestID: a6w01xonqys +2025-06-18T13:56:49.981Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 262ms - Rows affected: 29 - RequestID: a43dxwspwrv +2025-06-18T13:56:50.081Z [INFO] auth-service - DELETE /api/v1/payments - Status: 400 - Response time: 1154ms - IP: 192.168.68.128 - User: user_1084 - RequestID: lkzpvju3wkl +2025-06-18T13:56:50.181Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1118ms - IP: 192.168.189.103 - User: user_1063 - RequestID: 2xpzl4y8uzr +2025-06-18T13:56:50.281Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1430ms - IP: 192.168.227.233 - User: user_1035 - RequestID: s7ioueci77 +2025-06-18T13:56:50.381Z [INFO] order-service - Database INSERT on orders - Execution time: 159ms - Rows affected: 79 - RequestID: yim8twt7gzc +2025-06-18T13:56:50.481Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 400 - Response time: 648ms - IP: 192.168.159.94 - User: user_1051 - RequestID: hdo35mpqbh +2025-06-18T13:56:50.581Z [INFO] notification-service - Database DELETE on users - Execution time: 122ms - Rows affected: 46 - RequestID: 27uxv3cjfcti +2025-06-18T13:56:50.681Z [INFO] order-service - DELETE /api/v1/payments - Status: 200 - Response time: 869ms - IP: 192.168.85.229 - User: user_1017 - RequestID: vgq8qvp4e6 +2025-06-18T13:56:50.781Z [TRACE] payment-service - Database DELETE on orders - Execution time: 115ms - Rows affected: 43 - RequestID: qc2f3xycch +2025-06-18T13:56:50.881Z [DEBUG] payment-service - POST /api/v1/orders - Status: 404 - Response time: 1722ms - IP: 192.168.33.76 - User: user_1086 - RequestID: zzzn0v0snc +2025-06-18T13:56:50.981Z [DEBUG] user-service - Database INSERT on users - Execution time: 31ms - Rows affected: 46 - RequestID: 5nlsezid9fp +2025-06-18T13:56:51.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 710ms - RequestID: opnc2q1hnsc +2025-06-18T13:56:51.181Z [DEBUG] user-service - Operation: order_created - Processing time: 126ms - RequestID: cod9swhkjtr +2025-06-18T13:56:51.281Z [TRACE] payment-service - Auth event: logout - User: user_1083 - IP: 192.168.53.133 - RequestID: g1638uhfu9 +2025-06-18T13:56:51.381Z [INFO] user-service - Auth event: login_failed - User: user_1000 - IP: 192.168.147.171 - RequestID: 37ypzdj3mki +2025-06-18T13:56:51.481Z [DEBUG] user-service - Database INSERT on orders - Execution time: 149ms - Rows affected: 35 - RequestID: g8w4zmuvowg +2025-06-18T13:56:51.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.97.87 - RequestID: fu3n0k3c3iw +2025-06-18T13:56:51.681Z [INFO] notification-service - Operation: cache_hit - Processing time: 696ms - RequestID: 6rbsvesvgdh +2025-06-18T13:56:51.781Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 747ms - RequestID: bygzmmgqew +2025-06-18T13:56:51.881Z [TRACE] user-service - Operation: email_sent - Processing time: 654ms - RequestID: wgewxohduj +2025-06-18T13:56:51.981Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 316ms - Rows affected: 62 - RequestID: 4j59z8lc6dc +2025-06-18T13:56:52.081Z [INFO] user-service - Database INSERT on payments - Execution time: 92ms - Rows affected: 24 - RequestID: dxt1cyzl06 +2025-06-18T13:56:52.181Z [TRACE] payment-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.68.158 - RequestID: c3h5blztr5m +2025-06-18T13:56:52.281Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 563ms - RequestID: xjh92435eos +2025-06-18T13:56:52.381Z [INFO] notification-service - Auth event: password_change - User: user_1027 - IP: 192.168.79.116 - RequestID: tch0p4c3kcn +2025-06-18T13:56:52.481Z [INFO] user-service - Database UPDATE on sessions - Execution time: 270ms - Rows affected: 38 - RequestID: mjwiovkpkh8 +2025-06-18T13:56:52.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.104.37 - RequestID: y6y4ystgekp +2025-06-18T13:56:52.681Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 919ms - IP: 192.168.232.72 - User: user_1040 - RequestID: 4nvlkg907ft +2025-06-18T13:56:52.781Z [INFO] user-service - Operation: cache_miss - Processing time: 656ms - RequestID: bmt5ey7xxx4 +2025-06-18T13:56:52.881Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 500 - Response time: 377ms - IP: 192.168.14.77 - User: user_1013 - RequestID: ol7r0cyymjq +2025-06-18T13:56:52.981Z [INFO] payment-service - Operation: order_created - Processing time: 759ms - RequestID: r4zjgb4z06 +2025-06-18T13:56:53.081Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 594ms - RequestID: dg711nzedfs +2025-06-18T13:56:53.181Z [INFO] auth-service - Operation: payment_processed - Processing time: 50ms - RequestID: jfcc7czxvl +2025-06-18T13:56:53.281Z [TRACE] notification-service - POST /api/v1/payments - Status: 200 - Response time: 1545ms - IP: 192.168.113.218 - User: user_1033 - RequestID: yy7vik5xycq +2025-06-18T13:56:53.381Z [INFO] notification-service - Database SELECT on products - Execution time: 188ms - Rows affected: 0 - RequestID: ly35sk4y677 +2025-06-18T13:56:53.481Z [INFO] auth-service - Operation: order_created - Processing time: 670ms - RequestID: h620x9vxg7 +2025-06-18T13:56:53.581Z [INFO] order-service - Auth event: logout - User: user_1042 - IP: 192.168.44.5 - RequestID: 8cjd3b6pt1r +2025-06-18T13:56:53.681Z [INFO] order-service - Auth event: login_failed - User: user_1003 - IP: 192.168.147.171 - RequestID: kps1rw7bgag +2025-06-18T13:56:53.781Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 724ms - IP: 192.168.141.100 - User: user_1032 - RequestID: xzc6s39tgti +2025-06-18T13:56:53.881Z [TRACE] inventory-service - Database INSERT on products - Execution time: 229ms - Rows affected: 4 - RequestID: wekncqd63es +2025-06-18T13:56:53.981Z [INFO] payment-service - Operation: cache_miss - Processing time: 353ms - RequestID: c8ehd6g9l8s +2025-06-18T13:56:54.081Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 133ms - Rows affected: 30 - RequestID: h0dwx1dh6lt +2025-06-18T13:56:54.181Z [INFO] user-service - Database INSERT on users - Execution time: 33ms - Rows affected: 86 - RequestID: yzary8zpyh +2025-06-18T13:56:54.281Z [TRACE] auth-service - Operation: cache_hit - Processing time: 603ms - RequestID: bxu1828h1ov +2025-06-18T13:56:54.381Z [DEBUG] user-service - POST /api/v1/orders - Status: 404 - Response time: 465ms - IP: 192.168.242.165 - User: user_1050 - RequestID: hgymwixdar7 +2025-06-18T13:56:54.481Z [TRACE] auth-service - DELETE /api/v1/users - Status: 404 - Response time: 231ms - IP: 192.168.85.229 - User: user_1083 - RequestID: b2lhd0cetsm +2025-06-18T13:56:54.581Z [INFO] notification-service - Operation: order_created - Processing time: 399ms - RequestID: kmzr4e3xy4d +2025-06-18T13:56:54.681Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 404 - Response time: 1272ms - IP: 192.168.33.76 - User: user_1093 - RequestID: w15ollh5lkg +2025-06-18T13:56:54.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.81.206 - RequestID: gj9m963gjzo +2025-06-18T13:56:54.881Z [DEBUG] order-service - Database INSERT on products - Execution time: 348ms - Rows affected: 85 - RequestID: tbxriaji7pm +2025-06-18T13:56:54.981Z [DEBUG] auth-service - Database SELECT on users - Execution time: 109ms - Rows affected: 54 - RequestID: i6ijyuzee8 +2025-06-18T13:56:55.081Z [TRACE] user-service - POST /api/v1/orders - Status: 401 - Response time: 727ms - IP: 192.168.79.116 - User: user_1042 - RequestID: ka655lp3u6p +2025-06-18T13:56:55.181Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 533ms - RequestID: coqwfq56vc5 +2025-06-18T13:56:55.281Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 201 - Response time: 379ms - IP: 192.168.11.60 - User: user_1087 - RequestID: t4tu5ocph7e +2025-06-18T13:56:55.381Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 732ms - RequestID: vsjng4qfowj +2025-06-18T13:56:55.481Z [TRACE] inventory-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 825ms - IP: 192.168.227.233 - User: user_1003 - RequestID: 66wp4gfcxsu +2025-06-18T13:56:55.581Z [DEBUG] payment-service - Database SELECT on users - Execution time: 415ms - Rows affected: 83 - RequestID: ecuy6b4kq1l +2025-06-18T13:56:55.681Z [INFO] user-service - Database SELECT on payments - Execution time: 409ms - Rows affected: 17 - RequestID: 54lebg7djwu +2025-06-18T13:56:55.781Z [TRACE] notification-service - Auth event: login_success - User: user_1008 - IP: 192.168.189.103 - RequestID: xl3eblopsln +2025-06-18T13:56:55.881Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1670ms - IP: 192.168.30.79 - User: user_1035 - RequestID: nbxmrk3eqvb +2025-06-18T13:56:55.981Z [DEBUG] user-service - Auth event: logout - User: user_1007 - IP: 192.168.194.41 - RequestID: ys8mat8akud +2025-06-18T13:56:56.081Z [TRACE] notification-service - Auth event: login_failed - User: user_1044 - IP: 192.168.97.87 - RequestID: 2wkba848mvg +2025-06-18T13:56:56.181Z [INFO] order-service - POST /api/v1/inventory - Status: 502 - Response time: 239ms - IP: 192.168.196.226 - User: user_1072 - RequestID: xfzgyxeshyp +2025-06-18T13:56:56.281Z [INFO] auth-service - POST /api/v1/payments - Status: 201 - Response time: 160ms - IP: 192.168.194.41 - User: user_1089 - RequestID: aiw6nyc8yl6 +2025-06-18T13:56:56.381Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 644ms - RequestID: fmk7cn4pqn +2025-06-18T13:56:56.481Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 200ms - RequestID: y8tcy4bi1c +2025-06-18T13:56:56.581Z [INFO] inventory-service - Auth event: login_success - User: user_1051 - IP: 192.168.46.63 - RequestID: koqfoxcekz +2025-06-18T13:56:56.681Z [INFO] payment-service - GET /api/v1/inventory - Status: 401 - Response time: 50ms - IP: 192.168.11.60 - User: user_1087 - RequestID: jvs5m64uf4 +2025-06-18T13:56:56.781Z [INFO] order-service - PATCH /api/v1/payments - Status: 400 - Response time: 1808ms - IP: 192.168.240.169 - User: user_1055 - RequestID: 1lhd4ifb7xq +2025-06-18T13:56:56.881Z [DEBUG] payment-service - Operation: email_sent - Processing time: 583ms - RequestID: nhsfzjeuvlm +2025-06-18T13:56:56.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.141.100 - RequestID: l8nnmx9iq7 +2025-06-18T13:56:57.081Z [DEBUG] order-service - PUT /api/v1/orders - Status: 401 - Response time: 1789ms - IP: 192.168.1.152 - User: user_1033 - RequestID: zpv3kgi8m1 +2025-06-18T13:56:57.181Z [DEBUG] order-service - PUT /api/v1/payments - Status: 403 - Response time: 1361ms - IP: 192.168.31.117 - User: user_1035 - RequestID: pz4b6pabl6e +2025-06-18T13:56:57.281Z [INFO] order-service - POST /api/v1/auth/logout - Status: 503 - Response time: 685ms - IP: 192.168.194.41 - User: user_1086 - RequestID: 58njsstx0hw +2025-06-18T13:56:57.381Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1597ms - IP: 192.168.104.37 - User: user_1085 - RequestID: xeepynksmub +2025-06-18T13:56:57.481Z [INFO] inventory-service - Auth event: logout - User: user_1002 - IP: 192.168.194.41 - RequestID: 5nd70np76tr +2025-06-18T13:56:57.581Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1612ms - IP: 192.168.14.77 - User: user_1048 - RequestID: 58br5ji3dzj +2025-06-18T13:56:57.681Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 418ms - Rows affected: 13 - RequestID: 62btedxcmu8 +2025-06-18T13:56:57.781Z [DEBUG] payment-service - Auth event: login_failed - User: user_1051 - IP: 192.168.235.117 - RequestID: fn7grclmv2 +2025-06-18T13:56:57.881Z [DEBUG] user-service - Operation: notification_queued - Processing time: 254ms - RequestID: wdsz19vk5f +2025-06-18T13:56:57.981Z [INFO] user-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.97.87 - RequestID: ifnohbarlj +2025-06-18T13:56:58.081Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 401 - Response time: 107ms - IP: 192.168.189.103 - User: user_1035 - RequestID: jyzusoil2u +2025-06-18T13:56:58.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 558ms - RequestID: bfb0i9mjwue +2025-06-18T13:56:58.281Z [INFO] auth-service - Database SELECT on products - Execution time: 157ms - Rows affected: 43 - RequestID: 78d6t2ll7u7 +2025-06-18T13:56:58.381Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1187ms - IP: 192.168.138.123 - User: user_1098 - RequestID: wbzh9ucc17t +2025-06-18T13:56:58.481Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1274ms - IP: 192.168.170.215 - User: user_1003 - RequestID: v1q3imhy9gb +2025-06-18T13:56:58.581Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1658ms - IP: 192.168.13.72 - User: user_1020 - RequestID: 2ot5axv6gpk +2025-06-18T13:56:58.681Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 238ms - Rows affected: 77 - RequestID: 9u3waanm9f9 +2025-06-18T13:56:58.781Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 334ms - Rows affected: 53 - RequestID: kihg0u7rhi +2025-06-18T13:56:58.881Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 191ms - Rows affected: 46 - RequestID: fiacn09vyyu +2025-06-18T13:56:58.981Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1702ms - IP: 192.168.68.128 - User: user_1090 - RequestID: 2lt4pjw67b +2025-06-18T13:56:59.081Z [INFO] order-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.113.218 - RequestID: efd8qy9biui +2025-06-18T13:56:59.181Z [INFO] notification-service - Operation: payment_processed - Processing time: 620ms - RequestID: pn9s1urpqq +2025-06-18T13:56:59.281Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 289ms - RequestID: nqrbyljumo +2025-06-18T13:56:59.381Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1854ms - IP: 192.168.32.38 - User: user_1061 - RequestID: 0u70ybb9d18r +2025-06-18T13:56:59.481Z [DEBUG] user-service - Operation: order_created - Processing time: 658ms - RequestID: ioz19dwkq3 +2025-06-18T13:56:59.581Z [INFO] user-service - Auth event: logout - User: user_1031 - IP: 192.168.53.133 - RequestID: 8wrdyemkgtf +2025-06-18T13:56:59.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.28.146 - RequestID: ygt1t2h9dg +2025-06-18T13:56:59.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1000 - IP: 192.168.227.233 - RequestID: 4t4vpxcyns5 +2025-06-18T13:56:59.881Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 646ms - RequestID: p4h3grha4 +2025-06-18T13:56:59.981Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 225ms - RequestID: s4tdw7kk72p +2025-06-18T13:57:00.081Z [INFO] auth-service - Operation: email_sent - Processing time: 268ms - RequestID: 4yiqdpbj6dh +2025-06-18T13:57:00.181Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 404 - Response time: 1470ms - IP: 192.168.167.32 - User: user_1034 - RequestID: jkt9gw9zy5 +2025-06-18T13:57:00.281Z [TRACE] payment-service - Operation: notification_queued - Processing time: 62ms - RequestID: byddltx5fm +2025-06-18T13:57:00.381Z [INFO] order-service - Operation: webhook_sent - Processing time: 474ms - RequestID: 0n71350z76hd +2025-06-18T13:57:00.481Z [DEBUG] inventory-service - Auth event: login_success - User: user_1040 - IP: 192.168.138.123 - RequestID: hw8m2mzyi3m +2025-06-18T13:57:00.581Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1135ms - IP: 192.168.44.5 - User: user_1063 - RequestID: c8xek52udl8 +2025-06-18T13:57:00.681Z [TRACE] auth-service - Operation: email_sent - Processing time: 281ms - RequestID: vvwlizjvhgr +2025-06-18T13:57:00.781Z [INFO] user-service - PUT /api/v1/orders - Status: 201 - Response time: 1088ms - IP: 192.168.13.72 - User: user_1074 - RequestID: s1vsrhbzujf +2025-06-18T13:57:00.881Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 452ms - Rows affected: 65 - RequestID: 4mr9d4k8rfx +2025-06-18T13:57:00.981Z [TRACE] user-service - POST /api/v1/inventory - Status: 502 - Response time: 772ms - IP: 192.168.85.229 - User: user_1077 - RequestID: t4maw1nvfm +2025-06-18T13:57:01.081Z [INFO] order-service - Operation: notification_queued - Processing time: 470ms - RequestID: 7a49g6c13w8 +2025-06-18T13:57:01.181Z [TRACE] user-service - Auth event: password_change - User: user_1065 - IP: 192.168.211.72 - RequestID: vi81qw0nzdd +2025-06-18T13:57:01.281Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 516ms - RequestID: yflqssi7goh +2025-06-18T13:57:01.381Z [TRACE] notification-service - DELETE /api/v1/users - Status: 502 - Response time: 481ms - IP: 192.168.79.141 - User: user_1026 - RequestID: m7so26kwu5 +2025-06-18T13:57:01.481Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 394ms - Rows affected: 91 - RequestID: rnp8h6c6vv8 +2025-06-18T13:57:01.581Z [TRACE] payment-service - Database SELECT on products - Execution time: 194ms - Rows affected: 78 - RequestID: 3lzzxw8zm9h +2025-06-18T13:57:01.681Z [DEBUG] user-service - Database INSERT on payments - Execution time: 168ms - Rows affected: 80 - RequestID: fb8t3t83e2 +2025-06-18T13:57:01.781Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 145ms - Rows affected: 36 - RequestID: eg9aiofur3c +2025-06-18T13:57:01.881Z [INFO] auth-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.100.240 - RequestID: qtt8ch6mc2i +2025-06-18T13:57:01.981Z [DEBUG] user-service - Database DELETE on payments - Execution time: 419ms - Rows affected: 44 - RequestID: kv0htfesti +2025-06-18T13:57:02.081Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 8ms - Rows affected: 21 - RequestID: bsh1d69xs2o +2025-06-18T13:57:02.181Z [INFO] user-service - Database DELETE on payments - Execution time: 410ms - Rows affected: 38 - RequestID: 95zkahe3xaj +2025-06-18T13:57:02.281Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 208ms - Rows affected: 25 - RequestID: nvqtnwgn0je +2025-06-18T13:57:02.381Z [INFO] user-service - Database SELECT on sessions - Execution time: 376ms - Rows affected: 94 - RequestID: vygat4v5yao +2025-06-18T13:57:02.481Z [DEBUG] auth-service - Database INSERT on products - Execution time: 234ms - Rows affected: 61 - RequestID: 2bnny7cs2yv +2025-06-18T13:57:02.581Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 84ms - Rows affected: 36 - RequestID: x2ri5pmhd2 +2025-06-18T13:57:02.681Z [INFO] user-service - Auth event: login_failed - User: user_1018 - IP: 192.168.68.128 - RequestID: bwze3nuh7b +2025-06-18T13:57:02.781Z [INFO] user-service - Database INSERT on users - Execution time: 60ms - Rows affected: 37 - RequestID: m0xxlybxkgq +2025-06-18T13:57:02.881Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 179ms - Rows affected: 68 - RequestID: g7u5wjt5kti +2025-06-18T13:57:02.981Z [INFO] payment-service - Database SELECT on orders - Execution time: 369ms - Rows affected: 32 - RequestID: dggtn5w62cd +2025-06-18T13:57:03.081Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 400 - Response time: 193ms - IP: 192.168.31.117 - User: user_1057 - RequestID: zq8988ta2pq +2025-06-18T13:57:03.181Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 172ms - Rows affected: 80 - RequestID: l9x0x8rzrzo +2025-06-18T13:57:03.281Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1911ms - IP: 192.168.68.158 - User: user_1076 - RequestID: 6y3n1fgzjia +2025-06-18T13:57:03.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 781ms - RequestID: ro6qp9mgezc +2025-06-18T13:57:03.481Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 461ms - Rows affected: 45 - RequestID: 1j4gf0tb8vvh +2025-06-18T13:57:03.581Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 401 - Response time: 410ms - IP: 192.168.10.184 - User: user_1073 - RequestID: 2kmr5y5qwjj +2025-06-18T13:57:03.681Z [TRACE] notification-service - Database SELECT on products - Execution time: 407ms - Rows affected: 49 - RequestID: zmukp5wag3 +2025-06-18T13:57:03.781Z [INFO] payment-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.53.133 - RequestID: eaoql7vrw2p +2025-06-18T13:57:03.881Z [TRACE] auth-service - Operation: payment_processed - Processing time: 288ms - RequestID: k6gi51siyxm +2025-06-18T13:57:03.981Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 503 - Response time: 1072ms - IP: 192.168.13.72 - User: user_1090 - RequestID: wj04visqe9 +2025-06-18T13:57:04.081Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 404 - Response time: 1471ms - IP: 192.168.141.100 - User: user_1081 - RequestID: uwop9fk1nob +2025-06-18T13:57:04.181Z [INFO] payment-service - Database INSERT on orders - Execution time: 347ms - Rows affected: 19 - RequestID: hgcma848c7h +2025-06-18T13:57:04.281Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 270ms - RequestID: zevprwx12l +2025-06-18T13:57:04.381Z [DEBUG] order-service - Operation: email_sent - Processing time: 202ms - RequestID: tfn758v12s +2025-06-18T13:57:04.481Z [INFO] order-service - Operation: cache_hit - Processing time: 328ms - RequestID: 3758mxxmjke +2025-06-18T13:57:04.581Z [DEBUG] order-service - Operation: email_sent - Processing time: 857ms - RequestID: m2ajbnszfl +2025-06-18T13:57:04.681Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 201 - Response time: 527ms - IP: 192.168.247.134 - User: user_1033 - RequestID: icyq2xps65o +2025-06-18T13:57:04.781Z [DEBUG] user-service - Auth event: logout - User: user_1093 - IP: 192.168.79.143 - RequestID: hiipzf91y1l +2025-06-18T13:57:04.881Z [TRACE] inventory-service - Database SELECT on products - Execution time: 7ms - Rows affected: 97 - RequestID: 5yzovahlog4 +2025-06-18T13:57:04.981Z [DEBUG] order-service - GET /api/v1/inventory - Status: 400 - Response time: 841ms - IP: 192.168.133.7 - User: user_1077 - RequestID: 6n1m1erekwp +2025-06-18T13:57:05.081Z [DEBUG] inventory-service - Auth event: password_change - User: user_1066 - IP: 192.168.81.206 - RequestID: rhdgeplkr2e +2025-06-18T13:57:05.181Z [DEBUG] user-service - Database UPDATE on products - Execution time: 395ms - Rows affected: 56 - RequestID: sygann0bt8q +2025-06-18T13:57:05.281Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1197ms - IP: 192.168.247.134 - User: user_1017 - RequestID: huqr5bqtsja +2025-06-18T13:57:05.381Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 773ms - IP: 192.168.189.103 - User: user_1020 - RequestID: 67xj6g2do9c +2025-06-18T13:57:05.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.232.72 - RequestID: a1yal24yhnk +2025-06-18T13:57:05.581Z [TRACE] auth-service - Operation: email_sent - Processing time: 843ms - RequestID: cm2796yu6g5 +2025-06-18T13:57:05.681Z [TRACE] user-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.97.87 - RequestID: tgf0hne2omn +2025-06-18T13:57:05.781Z [INFO] user-service - Database SELECT on users - Execution time: 313ms - Rows affected: 30 - RequestID: 9dptvaqvfbs +2025-06-18T13:57:05.881Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 200 - Response time: 773ms - IP: 192.168.138.123 - User: user_1095 - RequestID: 72dc1uu2g69 +2025-06-18T13:57:05.981Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 350ms - RequestID: xrc2rzpeigc +2025-06-18T13:57:06.081Z [TRACE] order-service - Database SELECT on users - Execution time: 382ms - Rows affected: 24 - RequestID: 5j7ztt1opk3 +2025-06-18T13:57:06.181Z [TRACE] payment-service - Operation: email_sent - Processing time: 792ms - RequestID: a3lzvpt2y86 +2025-06-18T13:57:06.281Z [INFO] order-service - Database INSERT on users - Execution time: 489ms - Rows affected: 55 - RequestID: 749jw23mb1 +2025-06-18T13:57:06.381Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 200 - Response time: 790ms - IP: 192.168.44.5 - User: user_1078 - RequestID: p38visv55q +2025-06-18T13:57:06.481Z [INFO] user-service - Auth event: logout - User: user_1084 - IP: 192.168.68.128 - RequestID: spmc7egjk6k +2025-06-18T13:57:06.581Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 208ms - RequestID: o0opc0i1h5d +2025-06-18T13:57:06.681Z [TRACE] user-service - Database UPDATE on products - Execution time: 9ms - Rows affected: 66 - RequestID: w0a67lf45qi +2025-06-18T13:57:06.781Z [TRACE] order-service - Operation: email_sent - Processing time: 112ms - RequestID: c53ylklhw3k +2025-06-18T13:57:06.881Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 11ms - Rows affected: 30 - RequestID: ll5t1sw94r +2025-06-18T13:57:06.981Z [INFO] auth-service - Auth event: logout - User: user_1039 - IP: 192.168.196.226 - RequestID: lf9obzyfeoi +2025-06-18T13:57:07.081Z [INFO] user-service - Operation: cache_miss - Processing time: 954ms - RequestID: ou09bynicld +2025-06-18T13:57:07.181Z [DEBUG] order-service - Operation: cache_miss - Processing time: 1049ms - RequestID: t9fqzqe89im +2025-06-18T13:57:07.281Z [INFO] order-service - Database INSERT on products - Execution time: 331ms - Rows affected: 60 - RequestID: c7nat6j750n +2025-06-18T13:57:07.381Z [INFO] user-service - Operation: order_created - Processing time: 60ms - RequestID: ko1cifikbz +2025-06-18T13:57:07.481Z [INFO] auth-service - Database UPDATE on orders - Execution time: 399ms - Rows affected: 5 - RequestID: ku7fe8m2yqi +2025-06-18T13:57:07.581Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 502 - Response time: 1786ms - IP: 192.168.147.171 - User: user_1006 - RequestID: 8kzccy1w38c +2025-06-18T13:57:07.681Z [INFO] order-service - PATCH /api/v1/inventory - Status: 200 - Response time: 724ms - IP: 192.168.196.226 - User: user_1094 - RequestID: i97ev9a5xc8 +2025-06-18T13:57:07.781Z [DEBUG] user-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.46.63 - RequestID: ul6u196mwz +2025-06-18T13:57:07.881Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1111ms - IP: 192.168.181.225 - User: user_1047 - RequestID: 8ol3xcoguiv +2025-06-18T13:57:07.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1048 - IP: 192.168.170.215 - RequestID: j1evh2vbsqi +2025-06-18T13:57:08.081Z [DEBUG] order-service - Auth event: password_change - User: user_1045 - IP: 192.168.235.117 - RequestID: rbcdk36517d +2025-06-18T13:57:08.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1073 - IP: 192.168.79.116 - RequestID: 96nfirjldvo +2025-06-18T13:57:08.281Z [INFO] notification-service - Database UPDATE on users - Execution time: 289ms - Rows affected: 42 - RequestID: 2nnwlni6n8d +2025-06-18T13:57:08.381Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1462ms - IP: 192.168.13.72 - User: user_1066 - RequestID: e0mhk27gf6i +2025-06-18T13:57:08.481Z [INFO] inventory-service - Database UPDATE on products - Execution time: 8ms - Rows affected: 32 - RequestID: gdpvd3wadws +2025-06-18T13:57:08.581Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 327ms - RequestID: cnorgv8cgg +2025-06-18T13:57:08.681Z [DEBUG] user-service - Database INSERT on orders - Execution time: 270ms - Rows affected: 85 - RequestID: v5qeutg2ea +2025-06-18T13:57:08.781Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 150ms - Rows affected: 57 - RequestID: ap64lzlp78n +2025-06-18T13:57:08.881Z [TRACE] auth-service - Database INSERT on payments - Execution time: 439ms - Rows affected: 78 - RequestID: extjgd1vq47 +2025-06-18T13:57:08.981Z [DEBUG] payment-service - Database DELETE on users - Execution time: 467ms - Rows affected: 43 - RequestID: cp3tn02sd8c +2025-06-18T13:57:09.081Z [INFO] inventory-service - GET /api/v1/users - Status: 400 - Response time: 1685ms - IP: 192.168.138.123 - User: user_1059 - RequestID: 6thyesoomcg +2025-06-18T13:57:09.181Z [INFO] user-service - Database DELETE on sessions - Execution time: 214ms - Rows affected: 62 - RequestID: 8ym2z21c4cc +2025-06-18T13:57:09.281Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1275ms - IP: 192.168.31.117 - User: user_1014 - RequestID: toboc9zcyq8 +2025-06-18T13:57:09.381Z [INFO] auth-service - Database SELECT on orders - Execution time: 126ms - Rows affected: 32 - RequestID: eprkva9sdio +2025-06-18T13:57:09.481Z [TRACE] order-service - Auth event: login_failed - User: user_1083 - IP: 192.168.235.117 - RequestID: kl3oosihzx +2025-06-18T13:57:09.581Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 411ms - RequestID: dvx9nvbvkul +2025-06-18T13:57:09.681Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 200 - Response time: 1633ms - IP: 192.168.10.184 - User: user_1001 - RequestID: qe5wzpj2sw +2025-06-18T13:57:09.781Z [INFO] notification-service - Operation: notification_queued - Processing time: 806ms - RequestID: sgpagt0pbz +2025-06-18T13:57:09.881Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 344ms - Rows affected: 67 - RequestID: odty7fa4g2h +2025-06-18T13:57:09.981Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 747ms - RequestID: a01uaqqlesn +2025-06-18T13:57:10.081Z [TRACE] payment-service - Operation: email_sent - Processing time: 621ms - RequestID: ogpyzmeutr +2025-06-18T13:57:10.181Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1999ms - IP: 192.168.32.38 - User: user_1011 - RequestID: 17k1v4k6eyq +2025-06-18T13:57:10.281Z [TRACE] payment-service - Database DELETE on users - Execution time: 101ms - Rows affected: 58 - RequestID: q53yplfct9j +2025-06-18T13:57:10.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1022 - IP: 192.168.167.32 - RequestID: ky725vlpbz +2025-06-18T13:57:10.481Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 628ms - IP: 192.168.242.165 - User: user_1053 - RequestID: q2rbgg1ooi +2025-06-18T13:57:10.581Z [INFO] payment-service - Operation: order_created - Processing time: 438ms - RequestID: xp2kpv5utf8 +2025-06-18T13:57:10.681Z [DEBUG] inventory-service - Auth event: login_success - User: user_1014 - IP: 192.168.33.76 - RequestID: hnx2mkeqoxq +2025-06-18T13:57:10.781Z [INFO] inventory-service - POST /api/v1/payments - Status: 201 - Response time: 102ms - IP: 192.168.100.240 - User: user_1010 - RequestID: 96nq2hyghfj +2025-06-18T13:57:10.881Z [INFO] auth-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.227.77 - RequestID: jgsmpl9wgkh +2025-06-18T13:57:10.981Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1803ms - IP: 192.168.85.229 - User: user_1064 - RequestID: 88ngqck8s83 +2025-06-18T13:57:11.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 668ms - RequestID: 0qhan7lb8md +2025-06-18T13:57:11.181Z [INFO] payment-service - DELETE /api/v1/users - Status: 502 - Response time: 850ms - IP: 192.168.232.72 - User: user_1053 - RequestID: xxmfmkiudr +2025-06-18T13:57:11.281Z [TRACE] auth-service - Database DELETE on orders - Execution time: 251ms - Rows affected: 35 - RequestID: 4db1v99ppnn +2025-06-18T13:57:11.381Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 45ms - Rows affected: 94 - RequestID: 1o5jxhx6w6m +2025-06-18T13:57:11.481Z [DEBUG] user-service - Auth event: password_change - User: user_1073 - IP: 192.168.133.7 - RequestID: sqy3av4199p +2025-06-18T13:57:11.581Z [TRACE] payment-service - Auth event: password_change - User: user_1053 - IP: 192.168.158.144 - RequestID: rvmp2jpb0kc +2025-06-18T13:57:11.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 256ms - RequestID: jlnn1mbei5i +2025-06-18T13:57:11.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.240.169 - RequestID: kgdbucz7mog +2025-06-18T13:57:11.881Z [INFO] user-service - Operation: notification_queued - Processing time: 778ms - RequestID: sibj5x42lo +2025-06-18T13:57:11.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.174.114 - RequestID: zq0qvz8mosi +2025-06-18T13:57:12.081Z [DEBUG] order-service - Database SELECT on products - Execution time: 483ms - Rows affected: 68 - RequestID: cyzwijpd1bk +2025-06-18T13:57:12.181Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 850ms - IP: 192.168.85.229 - User: user_1067 - RequestID: 4q6wwytddlt +2025-06-18T13:57:12.281Z [TRACE] user-service - Operation: cache_hit - Processing time: 744ms - RequestID: 4xw8rzajsji +2025-06-18T13:57:12.381Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 183ms - Rows affected: 3 - RequestID: b4rytbcuven +2025-06-18T13:57:12.481Z [DEBUG] order-service - Database SELECT on orders - Execution time: 457ms - Rows affected: 32 - RequestID: lhawo8yswgb +2025-06-18T13:57:12.581Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 102ms - IP: 192.168.141.100 - User: user_1085 - RequestID: naebb7r5qrr +2025-06-18T13:57:12.681Z [INFO] inventory-service - Operation: email_sent - Processing time: 144ms - RequestID: hv9bnx4m95r +2025-06-18T13:57:12.781Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 500 - Response time: 889ms - IP: 192.168.68.158 - User: user_1002 - RequestID: ksyznjt33d +2025-06-18T13:57:12.881Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.104.37 - RequestID: skbsidgrr4m +2025-06-18T13:57:12.981Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 400 - Response time: 1457ms - IP: 192.168.85.229 - User: user_1023 - RequestID: 37gruz9u1od +2025-06-18T13:57:13.081Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 216ms - Rows affected: 59 - RequestID: j3ajdujms9 +2025-06-18T13:57:13.181Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 401 - Response time: 884ms - IP: 192.168.14.77 - User: user_1071 - RequestID: 9dylwq3iiql +2025-06-18T13:57:13.281Z [TRACE] auth-service - Database INSERT on payments - Execution time: 406ms - Rows affected: 76 - RequestID: uivpyhiuxs +2025-06-18T13:57:13.381Z [INFO] order-service - POST /api/v1/auth/login - Status: 401 - Response time: 1834ms - IP: 192.168.133.7 - User: user_1067 - RequestID: hersqchm1u +2025-06-18T13:57:13.481Z [DEBUG] payment-service - Auth event: login_failed - User: user_1093 - IP: 192.168.227.77 - RequestID: 5uhh3isq4z4 +2025-06-18T13:57:13.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 172ms - RequestID: fr0hsoet8sg +2025-06-18T13:57:13.681Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 201 - Response time: 155ms - IP: 192.168.31.117 - User: user_1068 - RequestID: cmzoms2qpgs +2025-06-18T13:57:13.781Z [TRACE] order-service - POST /api/v1/inventory - Status: 201 - Response time: 1772ms - IP: 192.168.158.144 - User: user_1010 - RequestID: ex83q5m3fj9 +2025-06-18T13:57:13.881Z [INFO] user-service - Database INSERT on payments - Execution time: 7ms - Rows affected: 47 - RequestID: 8edh1demdug +2025-06-18T13:57:13.981Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 350ms - Rows affected: 66 - RequestID: 9mz9b2n73vi +2025-06-18T13:57:14.081Z [TRACE] auth-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.13.72 - RequestID: o9zexinjvqi +2025-06-18T13:57:14.181Z [TRACE] user-service - POST /api/v1/users - Status: 404 - Response time: 1219ms - IP: 192.168.229.123 - User: user_1024 - RequestID: xs4vy3k1tmd +2025-06-18T13:57:14.281Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 261ms - Rows affected: 89 - RequestID: 99v6wl7u2ic +2025-06-18T13:57:14.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1048 - IP: 192.168.97.87 - RequestID: 9l705oycjy5 +2025-06-18T13:57:14.481Z [TRACE] order-service - Auth event: login_success - User: user_1041 - IP: 192.168.232.72 - RequestID: f9o5xn4p16j +2025-06-18T13:57:14.581Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 90ms - Rows affected: 93 - RequestID: gz0297g7nqu +2025-06-18T13:57:14.681Z [DEBUG] notification-service - Operation: email_sent - Processing time: 177ms - RequestID: vj6leuhagb +2025-06-18T13:57:14.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 989ms - RequestID: lqu2pvp5bjs +2025-06-18T13:57:14.881Z [INFO] notification-service - POST /api/v1/auth/login - Status: 502 - Response time: 173ms - IP: 192.168.187.199 - User: user_1097 - RequestID: qgv0icbtg9 +2025-06-18T13:57:14.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 622ms - RequestID: br3i70o2smb +2025-06-18T13:57:15.081Z [TRACE] user-service - Operation: webhook_sent - Processing time: 355ms - RequestID: n6p8rulzbfg +2025-06-18T13:57:15.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.181.225 - RequestID: kr1rbqurpv +2025-06-18T13:57:15.281Z [INFO] user-service - Auth event: login_success - User: user_1003 - IP: 192.168.36.218 - RequestID: u2pbke4mq9j +2025-06-18T13:57:15.381Z [INFO] user-service - Database INSERT on sessions - Execution time: 115ms - Rows affected: 94 - RequestID: icwtg69u28 +2025-06-18T13:57:15.481Z [TRACE] order-service - Auth event: login_success - User: user_1094 - IP: 192.168.187.199 - RequestID: 1f3jrfi6f4k +2025-06-18T13:57:15.581Z [INFO] payment-service - Database INSERT on payments - Execution time: 253ms - Rows affected: 25 - RequestID: kp5elo3gnbl +2025-06-18T13:57:15.681Z [INFO] payment-service - POST /api/v1/payments - Status: 201 - Response time: 902ms - IP: 192.168.81.206 - User: user_1013 - RequestID: hwy768j64z7 +2025-06-18T13:57:15.781Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 16ms - Rows affected: 57 - RequestID: 8fb4dhlhdr5 +2025-06-18T13:57:15.881Z [TRACE] order-service - Auth event: logout - User: user_1095 - IP: 192.168.28.146 - RequestID: 2ehqp7sf1l +2025-06-18T13:57:15.981Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 423ms - RequestID: fu6p4ya37n5 +2025-06-18T13:57:16.081Z [TRACE] user-service - PATCH /api/v1/users - Status: 401 - Response time: 247ms - IP: 192.168.174.114 - User: user_1003 - RequestID: 4yntob2x5hc +2025-06-18T13:57:16.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.79.141 - RequestID: p181ilaqbh8 +2025-06-18T13:57:16.281Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 400 - Response time: 41ms - IP: 192.168.79.141 - User: user_1005 - RequestID: 1vv64mc1xve +2025-06-18T13:57:16.381Z [INFO] user-service - Database UPDATE on sessions - Execution time: 324ms - Rows affected: 58 - RequestID: u56q6upfjm8 +2025-06-18T13:57:16.481Z [INFO] inventory-service - Auth event: login_success - User: user_1090 - IP: 192.168.68.128 - RequestID: mrdxyp15knc +2025-06-18T13:57:16.581Z [TRACE] auth-service - Database DELETE on payments - Execution time: 472ms - Rows affected: 6 - RequestID: 4gvw64v782e +2025-06-18T13:57:16.681Z [INFO] order-service - Auth event: login_success - User: user_1006 - IP: 192.168.240.169 - RequestID: 2h79xwgrx2r +2025-06-18T13:57:16.781Z [INFO] auth-service - Operation: cache_hit - Processing time: 1043ms - RequestID: v5n4whjoi8 +2025-06-18T13:57:16.881Z [INFO] user-service - Operation: cache_miss - Processing time: 64ms - RequestID: r5ow6a4cp7 +2025-06-18T13:57:16.981Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 502 - Response time: 107ms - IP: 192.168.36.218 - User: user_1018 - RequestID: secg6fx7lk +2025-06-18T13:57:17.081Z [TRACE] notification-service - Database UPDATE on users - Execution time: 331ms - Rows affected: 48 - RequestID: 5zsm9i6b2b +2025-06-18T13:57:17.181Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 503 - Response time: 1067ms - IP: 192.168.30.79 - User: user_1057 - RequestID: 6gyag21lfm +2025-06-18T13:57:17.281Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1779ms - IP: 192.168.227.77 - User: user_1094 - RequestID: zt5zwfgnx2g +2025-06-18T13:57:17.381Z [INFO] order-service - Auth event: token_refresh - User: user_1029 - IP: 192.168.36.218 - RequestID: 5fp7uroc0ai +2025-06-18T13:57:17.481Z [TRACE] user-service - Database UPDATE on orders - Execution time: 10ms - Rows affected: 37 - RequestID: y1j532xuq5h +2025-06-18T13:57:17.581Z [INFO] user-service - Database SELECT on payments - Execution time: 245ms - Rows affected: 6 - RequestID: rlkcmwasrxt +2025-06-18T13:57:17.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1054 - IP: 192.168.170.215 - RequestID: y4ci1pc0qc +2025-06-18T13:57:17.781Z [INFO] auth-service - Operation: inventory_updated - Processing time: 318ms - RequestID: wwv3i6nbhw +2025-06-18T13:57:17.881Z [TRACE] user-service - Auth event: login_failed - User: user_1018 - IP: 192.168.144.38 - RequestID: 1z7yfc56nnt +2025-06-18T13:57:17.981Z [DEBUG] user-service - Database INSERT on users - Execution time: 384ms - Rows affected: 39 - RequestID: ravevr8j0ur +2025-06-18T13:57:18.081Z [TRACE] payment-service - Auth event: password_change - User: user_1030 - IP: 192.168.133.7 - RequestID: 0i6xi4910vak +2025-06-18T13:57:18.181Z [DEBUG] user-service - PUT /api/v1/users - Status: 503 - Response time: 98ms - IP: 192.168.211.72 - User: user_1047 - RequestID: urknldnqdac +2025-06-18T13:57:18.281Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 347ms - Rows affected: 26 - RequestID: x0zoaoa2qr +2025-06-18T13:57:18.381Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 201 - Response time: 49ms - IP: 192.168.81.206 - User: user_1004 - RequestID: enj7g5bf00w +2025-06-18T13:57:18.481Z [INFO] notification-service - Database UPDATE on products - Execution time: 189ms - Rows affected: 5 - RequestID: 6j71kgnlka3 +2025-06-18T13:57:18.581Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 273ms - Rows affected: 60 - RequestID: di189ns1dqp +2025-06-18T13:57:18.681Z [INFO] user-service - Operation: cache_miss - Processing time: 130ms - RequestID: gpfzyt114uj +2025-06-18T13:57:18.781Z [INFO] order-service - Database UPDATE on orders - Execution time: 327ms - Rows affected: 56 - RequestID: rft7ehaw9n +2025-06-18T13:57:18.881Z [TRACE] notification-service - PUT /api/v1/payments - Status: 404 - Response time: 1543ms - IP: 192.168.31.117 - User: user_1006 - RequestID: p5vaieiyzq +2025-06-18T13:57:18.981Z [INFO] inventory-service - Database INSERT on products - Execution time: 278ms - Rows affected: 27 - RequestID: qknjgiozeb +2025-06-18T13:57:19.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.181.225 - RequestID: vxsdzsqj7kq +2025-06-18T13:57:19.181Z [TRACE] order-service - Operation: email_sent - Processing time: 522ms - RequestID: 3doeqhp2syg +2025-06-18T13:57:19.281Z [TRACE] auth-service - DELETE /api/v1/users - Status: 400 - Response time: 856ms - IP: 192.168.170.215 - User: user_1038 - RequestID: jt2jpd26hz +2025-06-18T13:57:19.381Z [INFO] payment-service - POST /api/v1/payments - Status: 404 - Response time: 1105ms - IP: 192.168.144.38 - User: user_1049 - RequestID: xzopur439ce +2025-06-18T13:57:19.481Z [TRACE] user-service - GET /api/v1/inventory - Status: 500 - Response time: 1796ms - IP: 192.168.100.240 - User: user_1024 - RequestID: i4uurt5swqd +2025-06-18T13:57:19.581Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 2ms - Rows affected: 95 - RequestID: gp92c4tyj7i +2025-06-18T13:57:19.681Z [TRACE] auth-service - Operation: notification_queued - Processing time: 783ms - RequestID: ywrmwxdcbkj +2025-06-18T13:57:19.781Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 703ms - RequestID: 3vd6dhboowg +2025-06-18T13:57:19.881Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1190ms - IP: 192.168.53.133 - User: user_1075 - RequestID: jrpteswvw3h +2025-06-18T13:57:19.981Z [INFO] auth-service - Operation: webhook_sent - Processing time: 527ms - RequestID: q6rq7yfi5g +2025-06-18T13:57:20.081Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 814ms - RequestID: f76htjwkbrt +2025-06-18T13:57:20.181Z [TRACE] user-service - Auth event: logout - User: user_1023 - IP: 192.168.147.171 - RequestID: 2vlaz8kprk +2025-06-18T13:57:20.281Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 363ms - Rows affected: 86 - RequestID: 172giwizdamh +2025-06-18T13:57:20.381Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 1008ms - RequestID: r1ce52gfugp +2025-06-18T13:57:20.481Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 352ms - RequestID: k3nir8z9cz +2025-06-18T13:57:20.581Z [INFO] user-service - Operation: email_sent - Processing time: 521ms - RequestID: 8h75yfm24bj +2025-06-18T13:57:20.681Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 498ms - Rows affected: 56 - RequestID: hz6yfrkmexk +2025-06-18T13:57:20.781Z [INFO] user-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1155ms - IP: 192.168.159.94 - User: user_1058 - RequestID: 4ng47s6ooxx +2025-06-18T13:57:20.881Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 302ms - Rows affected: 75 - RequestID: vu9whswj46i +2025-06-18T13:57:20.981Z [INFO] payment-service - PATCH /api/v1/orders - Status: 403 - Response time: 1524ms - IP: 192.168.113.218 - User: user_1073 - RequestID: w8zse4mge0g +2025-06-18T13:57:21.081Z [INFO] auth-service - Auth event: password_change - User: user_1081 - IP: 192.168.79.116 - RequestID: 4tfm5fd0v0q +2025-06-18T13:57:21.181Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 478ms - Rows affected: 51 - RequestID: byq4x3dbyt4 +2025-06-18T13:57:21.281Z [TRACE] notification-service - Operation: cache_miss - Processing time: 452ms - RequestID: 8h6pxa25b0v +2025-06-18T13:57:21.381Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 86ms - Rows affected: 20 - RequestID: 76m59fzzw9t +2025-06-18T13:57:21.481Z [DEBUG] user-service - Auth event: login_failed - User: user_1051 - IP: 192.168.68.158 - RequestID: xhtrn6u1zi9 +2025-06-18T13:57:21.581Z [INFO] order-service - Auth event: logout - User: user_1029 - IP: 192.168.44.5 - RequestID: zrer3rupij +2025-06-18T13:57:21.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1056 - IP: 192.168.144.38 - RequestID: qvazl2i5c7 +2025-06-18T13:57:21.781Z [TRACE] user-service - Operation: order_created - Processing time: 960ms - RequestID: 0yi5c4mexp8p +2025-06-18T13:57:21.881Z [INFO] order-service - Database UPDATE on orders - Execution time: 121ms - Rows affected: 90 - RequestID: ekhkme9u7za +2025-06-18T13:57:21.981Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 1049ms - RequestID: dpjmo7tk4qf +2025-06-18T13:57:22.081Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 931ms - RequestID: gkzuboqm2ym +2025-06-18T13:57:22.181Z [TRACE] auth-service - Operation: notification_queued - Processing time: 152ms - RequestID: s1jbre259r +2025-06-18T13:57:22.281Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 3ms - Rows affected: 72 - RequestID: refoq64c04 +2025-06-18T13:57:22.381Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 330ms - Rows affected: 30 - RequestID: wjzk9admzgq +2025-06-18T13:57:22.481Z [INFO] auth-service - PATCH /api/v1/orders - Status: 404 - Response time: 191ms - IP: 192.168.174.114 - User: user_1080 - RequestID: guqskmlf45h +2025-06-18T13:57:22.581Z [TRACE] order-service - Database SELECT on sessions - Execution time: 438ms - Rows affected: 43 - RequestID: z6toa48x9na +2025-06-18T13:57:22.681Z [INFO] order-service - Operation: cache_hit - Processing time: 304ms - RequestID: w47wnuy512 +2025-06-18T13:57:22.781Z [TRACE] user-service - Database DELETE on sessions - Execution time: 350ms - Rows affected: 25 - RequestID: ou5h25fstii +2025-06-18T13:57:22.881Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 361ms - Rows affected: 56 - RequestID: zqozj2fivtb +2025-06-18T13:57:22.981Z [INFO] notification-service - Auth event: password_change - User: user_1013 - IP: 192.168.100.240 - RequestID: dbliy56evn +2025-06-18T13:57:23.081Z [INFO] user-service - Database SELECT on users - Execution time: 304ms - Rows affected: 30 - RequestID: imizvwnt1z +2025-06-18T13:57:23.181Z [TRACE] notification-service - Operation: email_sent - Processing time: 866ms - RequestID: ijcj0ygl8un +2025-06-18T13:57:23.281Z [TRACE] order-service - POST /api/v1/inventory - Status: 201 - Response time: 2009ms - IP: 192.168.68.158 - User: user_1069 - RequestID: 9nn1smle9p5 +2025-06-18T13:57:23.381Z [INFO] user-service - Operation: payment_processed - Processing time: 553ms - RequestID: kmjulqxea4q +2025-06-18T13:57:23.481Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1412ms - IP: 192.168.232.72 - User: user_1019 - RequestID: 036mq0v8b8z7 +2025-06-18T13:57:23.581Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 456ms - RequestID: gq1yqf4p3gh +2025-06-18T13:57:23.681Z [TRACE] user-service - Database INSERT on users - Execution time: 434ms - Rows affected: 45 - RequestID: ov797lr04p +2025-06-18T13:57:23.781Z [INFO] order-service - Operation: email_sent - Processing time: 1009ms - RequestID: aujjux1lv2k +2025-06-18T13:57:23.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 72ms - RequestID: pmzf7yzatr9 +2025-06-18T13:57:23.981Z [DEBUG] notification-service - POST /api/v1/payments - Status: 201 - Response time: 988ms - IP: 192.168.68.128 - User: user_1007 - RequestID: a4eom7eej15 +2025-06-18T13:57:24.081Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 401 - Response time: 1227ms - IP: 192.168.79.141 - User: user_1045 - RequestID: 2s7ebk159tr +2025-06-18T13:57:24.181Z [INFO] payment-service - Operation: email_sent - Processing time: 425ms - RequestID: yh77erpjmlh +2025-06-18T13:57:24.281Z [INFO] notification-service - Database INSERT on payments - Execution time: 405ms - Rows affected: 54 - RequestID: 883lt6teqno +2025-06-18T13:57:24.381Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 93ms - Rows affected: 87 - RequestID: y4ed8pneza +2025-06-18T13:57:24.481Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1853ms - IP: 192.168.1.152 - User: user_1016 - RequestID: 052yzwzfqtma +2025-06-18T13:57:24.581Z [TRACE] notification-service - Database INSERT on orders - Execution time: 491ms - Rows affected: 89 - RequestID: cgv7t1ey5nv +2025-06-18T13:57:24.681Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 500 - Response time: 798ms - IP: 192.168.138.123 - User: user_1043 - RequestID: y7ujzxhn51 +2025-06-18T13:57:24.781Z [TRACE] order-service - Auth event: logout - User: user_1039 - IP: 192.168.235.117 - RequestID: bypnewyzw4l +2025-06-18T13:57:24.881Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 129ms - RequestID: kcf1tlt4i5l +2025-06-18T13:57:24.981Z [DEBUG] auth-service - POST /api/v1/orders - Status: 500 - Response time: 472ms - IP: 192.168.13.72 - User: user_1001 - RequestID: p0z680geoca +2025-06-18T13:57:25.081Z [DEBUG] order-service - Operation: notification_queued - Processing time: 179ms - RequestID: iov1mq4mt1i +2025-06-18T13:57:25.181Z [INFO] payment-service - Database DELETE on products - Execution time: 175ms - Rows affected: 66 - RequestID: 2e8fbgz26lz +2025-06-18T13:57:25.281Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 608ms - IP: 192.168.79.141 - User: user_1084 - RequestID: llhbox79ztc +2025-06-18T13:57:25.381Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1804ms - IP: 192.168.14.77 - User: user_1061 - RequestID: 5g2234fmvi2 +2025-06-18T13:57:25.481Z [INFO] auth-service - Database UPDATE on orders - Execution time: 104ms - Rows affected: 29 - RequestID: bqer528tlzr +2025-06-18T13:57:25.581Z [INFO] payment-service - Operation: cache_hit - Processing time: 399ms - RequestID: v42ltq6lxv +2025-06-18T13:57:25.681Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 99ms - Rows affected: 32 - RequestID: hexvs96ob5 +2025-06-18T13:57:25.781Z [INFO] payment-service - Auth event: login_success - User: user_1017 - IP: 192.168.104.37 - RequestID: tlhmde49ko +2025-06-18T13:57:25.881Z [TRACE] order-service - Operation: email_sent - Processing time: 803ms - RequestID: mj51ro5qqs8 +2025-06-18T13:57:25.981Z [DEBUG] notification-service - Database INSERT on products - Execution time: 296ms - Rows affected: 39 - RequestID: cw2dw962brd +2025-06-18T13:57:26.081Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 742ms - RequestID: p4jejpdkf6k +2025-06-18T13:57:26.181Z [DEBUG] order-service - Operation: order_created - Processing time: 429ms - RequestID: y30os1szh6 +2025-06-18T13:57:26.281Z [INFO] notification-service - Database SELECT on users - Execution time: 231ms - Rows affected: 1 - RequestID: ai3s7bar4tf +2025-06-18T13:57:26.381Z [TRACE] notification-service - Operation: email_sent - Processing time: 291ms - RequestID: ikg1e0leq29 +2025-06-18T13:57:26.481Z [DEBUG] notification-service - Database DELETE on products - Execution time: 460ms - Rows affected: 77 - RequestID: 3noqdbmnxoe +2025-06-18T13:57:26.581Z [INFO] user-service - Database SELECT on payments - Execution time: 75ms - Rows affected: 17 - RequestID: icypc1lfnc +2025-06-18T13:57:26.681Z [TRACE] order-service - Database UPDATE on products - Execution time: 302ms - Rows affected: 17 - RequestID: 3tl4zb7rp82 +2025-06-18T13:57:26.781Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 458ms - Rows affected: 67 - RequestID: cnf8i5wzzjh +2025-06-18T13:57:26.881Z [DEBUG] payment-service - Database SELECT on users - Execution time: 83ms - Rows affected: 6 - RequestID: ri75txcqp6g +2025-06-18T13:57:26.981Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1788ms - IP: 192.168.229.123 - User: user_1027 - RequestID: g41h66y3ovs +2025-06-18T13:57:27.081Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 434ms - IP: 192.168.97.87 - User: user_1091 - RequestID: 4gb95yf9xkn +2025-06-18T13:57:27.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.46.63 - RequestID: nmo0orxjlul +2025-06-18T13:57:27.281Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1941ms - IP: 192.168.133.7 - User: user_1071 - RequestID: 6p8ftftd8yd +2025-06-18T13:57:27.381Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 260ms - RequestID: 60gl476vcfg +2025-06-18T13:57:27.481Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 407ms - Rows affected: 50 - RequestID: bzleyr8xccs +2025-06-18T13:57:27.581Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1590ms - IP: 192.168.30.79 - User: user_1001 - RequestID: y1rqf16dvli +2025-06-18T13:57:27.681Z [INFO] user-service - DELETE /api/v1/payments - Status: 502 - Response time: 105ms - IP: 192.168.196.226 - User: user_1048 - RequestID: horqodnttp +2025-06-18T13:57:27.781Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 366ms - RequestID: zl5l2s0h8m +2025-06-18T13:57:27.881Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 318ms - Rows affected: 65 - RequestID: dct2cgoft8i +2025-06-18T13:57:27.981Z [INFO] notification-service - Auth event: logout - User: user_1044 - IP: 192.168.158.144 - RequestID: lfjr8aefcoj +2025-06-18T13:57:28.081Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 503 - Response time: 1537ms - IP: 192.168.97.87 - User: user_1095 - RequestID: t6ueqazp30e +2025-06-18T13:57:28.181Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 298ms - Rows affected: 87 - RequestID: e4kulacgicr +2025-06-18T13:57:28.281Z [INFO] user-service - Database UPDATE on sessions - Execution time: 494ms - Rows affected: 24 - RequestID: fiqn0jghkov +2025-06-18T13:57:28.381Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 177ms - Rows affected: 17 - RequestID: rs1eq2i42ms +2025-06-18T13:57:28.481Z [INFO] user-service - Operation: cache_miss - Processing time: 435ms - RequestID: 4hck90s3ufs +2025-06-18T13:57:28.581Z [DEBUG] payment-service - Operation: order_created - Processing time: 678ms - RequestID: 5vu3oovrt7s +2025-06-18T13:57:28.681Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 254ms - Rows affected: 5 - RequestID: 4tvie68x244 +2025-06-18T13:57:28.781Z [TRACE] payment-service - Auth event: login_success - User: user_1025 - IP: 192.168.30.79 - RequestID: birelv7upb +2025-06-18T13:57:28.881Z [TRACE] auth-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.158.144 - RequestID: lfl5iyr15m +2025-06-18T13:57:28.981Z [TRACE] user-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.235.117 - RequestID: uwqx16ieevr +2025-06-18T13:57:29.081Z [DEBUG] notification-service - Operation: order_created - Processing time: 643ms - RequestID: 4y2rsqu782w +2025-06-18T13:57:29.181Z [INFO] auth-service - Operation: payment_processed - Processing time: 948ms - RequestID: jjc0ssg9ai +2025-06-18T13:57:29.281Z [TRACE] user-service - Auth event: login_success - User: user_1058 - IP: 192.168.158.144 - RequestID: yw5gkjkej4n +2025-06-18T13:57:29.381Z [INFO] notification-service - PATCH /api/v1/payments - Status: 200 - Response time: 1528ms - IP: 192.168.229.123 - User: user_1017 - RequestID: 2z2d9fjx05d +2025-06-18T13:57:29.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1079 - IP: 192.168.44.5 - RequestID: pdhflk7wwc +2025-06-18T13:57:29.581Z [INFO] order-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.100.240 - RequestID: eya04aohm8 +2025-06-18T13:57:29.681Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 587ms - RequestID: o5oxdbudizg +2025-06-18T13:57:29.781Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 421ms - Rows affected: 95 - RequestID: xmu268n15q +2025-06-18T13:57:29.881Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1886ms - IP: 192.168.189.103 - User: user_1029 - RequestID: yhdu24refkd +2025-06-18T13:57:29.981Z [INFO] payment-service - Database INSERT on orders - Execution time: 493ms - Rows affected: 47 - RequestID: xxve6igyjll +2025-06-18T13:57:30.081Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.36.218 - RequestID: w193d4qydbj +2025-06-18T13:57:30.181Z [INFO] inventory-service - PUT /api/v1/users - Status: 404 - Response time: 310ms - IP: 192.168.32.38 - User: user_1029 - RequestID: 1c0cc7nh12a +2025-06-18T13:57:30.281Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 46ms - Rows affected: 73 - RequestID: bpqaplk3mgh +2025-06-18T13:57:30.381Z [INFO] payment-service - POST /api/v1/payments - Status: 400 - Response time: 251ms - IP: 192.168.158.144 - User: user_1098 - RequestID: wdj5m91pze8 +2025-06-18T13:57:30.481Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 199ms - Rows affected: 24 - RequestID: i5xp3h93sbn +2025-06-18T13:57:30.581Z [INFO] notification-service - POST /api/v1/inventory - Status: 200 - Response time: 337ms - IP: 192.168.33.76 - User: user_1072 - RequestID: fb6y9ccvddu +2025-06-18T13:57:30.681Z [TRACE] payment-service - Operation: order_created - Processing time: 812ms - RequestID: mujv5idgies +2025-06-18T13:57:30.781Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 415ms - Rows affected: 96 - RequestID: jwevw7wwt2s +2025-06-18T13:57:30.881Z [INFO] payment-service - Database INSERT on sessions - Execution time: 36ms - Rows affected: 56 - RequestID: 9wymtpl60lk +2025-06-18T13:57:30.981Z [TRACE] payment-service - Database INSERT on products - Execution time: 300ms - Rows affected: 74 - RequestID: 24cajek6nic +2025-06-18T13:57:31.081Z [DEBUG] auth-service - Auth event: logout - User: user_1007 - IP: 192.168.44.5 - RequestID: 3g1hf6fpnee +2025-06-18T13:57:31.181Z [TRACE] order-service - POST /api/v1/orders - Status: 200 - Response time: 646ms - IP: 192.168.46.63 - User: user_1049 - RequestID: 1455wmod14pl +2025-06-18T13:57:31.281Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 201 - Response time: 433ms - IP: 192.168.46.63 - User: user_1000 - RequestID: 7zc7jwpmvp3 +2025-06-18T13:57:31.381Z [DEBUG] user-service - Auth event: password_change - User: user_1027 - IP: 192.168.211.72 - RequestID: or4659nknj +2025-06-18T13:57:31.481Z [TRACE] user-service - Operation: order_created - Processing time: 918ms - RequestID: 6p8a6e6hxo9 +2025-06-18T13:57:31.581Z [INFO] payment-service - Auth event: logout - User: user_1038 - IP: 192.168.44.5 - RequestID: k3ioazjvw +2025-06-18T13:57:31.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 971ms - RequestID: kn5txque1t +2025-06-18T13:57:31.781Z [DEBUG] order-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.30.79 - RequestID: p4unqpld53d +2025-06-18T13:57:31.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 852ms - RequestID: 3w7otqk8l78 +2025-06-18T13:57:31.981Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 500 - Response time: 329ms - IP: 192.168.28.146 - User: user_1081 - RequestID: 1yq1v8e0ach +2025-06-18T13:57:32.081Z [DEBUG] order-service - Database DELETE on orders - Execution time: 144ms - Rows affected: 29 - RequestID: xs2n4zgjlu +2025-06-18T13:57:32.181Z [TRACE] notification-service - Operation: order_created - Processing time: 1020ms - RequestID: 3xp0k5wulft +2025-06-18T13:57:32.281Z [TRACE] user-service - PATCH /api/v1/orders - Status: 403 - Response time: 549ms - IP: 192.168.13.72 - User: user_1009 - RequestID: qmy9lbmaazh +2025-06-18T13:57:32.381Z [INFO] notification-service - Operation: inventory_updated - Processing time: 1001ms - RequestID: agv8fdnkpn +2025-06-18T13:57:32.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 463ms - RequestID: lex0857k22 +2025-06-18T13:57:32.581Z [INFO] inventory-service - Auth event: login_success - User: user_1025 - IP: 192.168.30.79 - RequestID: 0h8fg6dvomek +2025-06-18T13:57:32.681Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 360ms - RequestID: m6vomneeec +2025-06-18T13:57:32.781Z [INFO] payment-service - Database UPDATE on orders - Execution time: 227ms - Rows affected: 46 - RequestID: boz95okyx4a +2025-06-18T13:57:32.881Z [INFO] user-service - GET /api/v1/users - Status: 201 - Response time: 740ms - IP: 192.168.36.218 - User: user_1069 - RequestID: jxw44s5hir +2025-06-18T13:57:32.981Z [DEBUG] payment-service - POST /api/v1/payments - Status: 200 - Response time: 723ms - IP: 192.168.68.128 - User: user_1064 - RequestID: g00yqf0nce +2025-06-18T13:57:33.081Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1045ms - RequestID: 8xv0d1vqhvr +2025-06-18T13:57:33.181Z [INFO] order-service - Auth event: logout - User: user_1048 - IP: 192.168.113.218 - RequestID: nljr82q1r4r +2025-06-18T13:57:33.281Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 595ms - RequestID: hdbtctu2bz6 +2025-06-18T13:57:33.381Z [DEBUG] payment-service - Operation: email_sent - Processing time: 269ms - RequestID: piubuc2hlx +2025-06-18T13:57:33.481Z [TRACE] user-service - Auth event: logout - User: user_1058 - IP: 192.168.104.37 - RequestID: xoymgpdw2x +2025-06-18T13:57:33.581Z [DEBUG] order-service - Database UPDATE on products - Execution time: 65ms - Rows affected: 6 - RequestID: u0k7n75zla +2025-06-18T13:57:33.681Z [TRACE] notification-service - Database SELECT on orders - Execution time: 476ms - Rows affected: 53 - RequestID: p21nxtraah +2025-06-18T13:57:33.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 73ms - RequestID: gnw781dn8qd +2025-06-18T13:57:33.881Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 705ms - RequestID: bwyk2tvr25d +2025-06-18T13:57:33.981Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 178ms - Rows affected: 46 - RequestID: gbyt3niydhn +2025-06-18T13:57:34.081Z [TRACE] order-service - Operation: inventory_updated - Processing time: 744ms - RequestID: zvvyqb132ao +2025-06-18T13:57:34.181Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 675ms - RequestID: vrlkbbtg2rb +2025-06-18T13:57:34.281Z [INFO] user-service - POST /api/v1/auth/login - Status: 404 - Response time: 1015ms - IP: 192.168.104.37 - User: user_1001 - RequestID: mw6vige98l +2025-06-18T13:57:34.381Z [TRACE] notification-service - Auth event: login_success - User: user_1057 - IP: 192.168.235.117 - RequestID: x2ks1u4g0rc +2025-06-18T13:57:34.481Z [INFO] order-service - Operation: cache_miss - Processing time: 254ms - RequestID: 2j7mu3524sx +2025-06-18T13:57:34.581Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 479ms - Rows affected: 1 - RequestID: xi4bv4qfum +2025-06-18T13:57:34.681Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 200 - Response time: 590ms - IP: 192.168.104.37 - User: user_1054 - RequestID: nu2x1dvq8c +2025-06-18T13:57:34.781Z [INFO] notification-service - Auth event: login_failed - User: user_1089 - IP: 192.168.138.123 - RequestID: vpb1hj5ubpj +2025-06-18T13:57:34.881Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 500 - Response time: 1325ms - IP: 192.168.181.225 - User: user_1044 - RequestID: kq08cx724y +2025-06-18T13:57:34.981Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 732ms - RequestID: 46tn81azhzf +2025-06-18T13:57:35.081Z [DEBUG] order-service - Database SELECT on payments - Execution time: 349ms - Rows affected: 91 - RequestID: 0q4esdh0tbx +2025-06-18T13:57:35.181Z [DEBUG] auth-service - Auth event: password_change - User: user_1089 - IP: 192.168.32.38 - RequestID: mmzyvo1urrk +2025-06-18T13:57:35.281Z [INFO] auth-service - GET /api/v1/payments - Status: 400 - Response time: 1900ms - IP: 192.168.242.165 - User: user_1036 - RequestID: 8fx5a4v2w7b +2025-06-18T13:57:35.381Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 110ms - RequestID: 7xhu1ealsd7 +2025-06-18T13:57:35.481Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.113.218 - RequestID: i9nywru6hw +2025-06-18T13:57:35.581Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1206ms - IP: 192.168.68.128 - User: user_1082 - RequestID: jdjrj39im18 +2025-06-18T13:57:35.681Z [TRACE] payment-service - GET /api/v1/inventory - Status: 200 - Response time: 1335ms - IP: 192.168.53.133 - User: user_1066 - RequestID: o84xgi32qjd +2025-06-18T13:57:35.781Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 424ms - Rows affected: 52 - RequestID: poobwd42qoa +2025-06-18T13:57:35.881Z [INFO] inventory-service - Auth event: logout - User: user_1001 - IP: 192.168.247.134 - RequestID: ij172r2toam +2025-06-18T13:57:35.981Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 403 - Response time: 1651ms - IP: 192.168.31.117 - User: user_1059 - RequestID: 9qlwinlm5qk +2025-06-18T13:57:36.081Z [TRACE] user-service - Operation: webhook_sent - Processing time: 939ms - RequestID: zgl79lbafk +2025-06-18T13:57:36.181Z [DEBUG] user-service - Auth event: login_success - User: user_1053 - IP: 192.168.181.225 - RequestID: xt3k3chgqhd +2025-06-18T13:57:36.281Z [INFO] payment-service - POST /api/v1/auth/login - Status: 500 - Response time: 1051ms - IP: 192.168.229.123 - User: user_1095 - RequestID: pub0m8x9soo +2025-06-18T13:57:36.381Z [TRACE] user-service - Database SELECT on products - Execution time: 66ms - Rows affected: 39 - RequestID: d7odnh8amo +2025-06-18T13:57:36.481Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 481ms - Rows affected: 71 - RequestID: yc3rggcpmpe +2025-06-18T13:57:36.581Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1525ms - IP: 192.168.227.233 - User: user_1002 - RequestID: smgm2fdvc2 +2025-06-18T13:57:36.681Z [INFO] inventory-service - POST /api/v1/payments - Status: 404 - Response time: 1776ms - IP: 192.168.81.206 - User: user_1045 - RequestID: pp3a4kcg0g +2025-06-18T13:57:36.781Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 977ms - RequestID: mqf25jubr2 +2025-06-18T13:57:36.881Z [TRACE] notification-service - Operation: payment_processed - Processing time: 223ms - RequestID: wr9vbwaxngp +2025-06-18T13:57:36.981Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 62ms - Rows affected: 44 - RequestID: bhp63ne2e79 +2025-06-18T13:57:37.081Z [INFO] payment-service - Operation: notification_queued - Processing time: 528ms - RequestID: c0ftxypyy1 +2025-06-18T13:57:37.181Z [DEBUG] order-service - GET /api/v1/inventory - Status: 500 - Response time: 1859ms - IP: 192.168.53.133 - User: user_1084 - RequestID: m25yx9hilq +2025-06-18T13:57:37.281Z [INFO] auth-service - POST /api/v1/inventory - Status: 201 - Response time: 2007ms - IP: 192.168.229.123 - User: user_1077 - RequestID: 2rccnmey5m3 +2025-06-18T13:57:37.381Z [INFO] inventory-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.14.77 - RequestID: i89tx7j4vea +2025-06-18T13:57:37.481Z [TRACE] order-service - Database INSERT on payments - Execution time: 195ms - Rows affected: 20 - RequestID: muf7v6g2pn +2025-06-18T13:57:37.581Z [INFO] payment-service - Auth event: login_success - User: user_1040 - IP: 192.168.174.114 - RequestID: d1dxqqp2fuv +2025-06-18T13:57:37.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.46.63 - RequestID: vb9n96y024 +2025-06-18T13:57:37.781Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 861ms - RequestID: 72wrp9czcd6 +2025-06-18T13:57:37.881Z [DEBUG] order-service - Database INSERT on orders - Execution time: 223ms - Rows affected: 33 - RequestID: qwvr5fj5sdm +2025-06-18T13:57:37.981Z [INFO] inventory-service - Auth event: login_success - User: user_1087 - IP: 192.168.181.225 - RequestID: hiwjeemqlvu +2025-06-18T13:57:38.081Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1096ms - IP: 192.168.189.103 - User: user_1003 - RequestID: 8y884q8t72b +2025-06-18T13:57:38.181Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 502 - Response time: 397ms - IP: 192.168.189.103 - User: user_1014 - RequestID: 45pxgx2vrac +2025-06-18T13:57:38.281Z [INFO] auth-service - Operation: notification_queued - Processing time: 888ms - RequestID: i34ev48ent +2025-06-18T13:57:38.381Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 201 - Response time: 601ms - IP: 192.168.97.87 - User: user_1043 - RequestID: q27hktyyje +2025-06-18T13:57:38.481Z [DEBUG] payment-service - Operation: order_created - Processing time: 459ms - RequestID: s7d37wc3xvm +2025-06-18T13:57:38.581Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 141ms - Rows affected: 31 - RequestID: 9sprlrq1fi +2025-06-18T13:57:38.681Z [DEBUG] user-service - Auth event: login_failed - User: user_1014 - IP: 192.168.97.87 - RequestID: 30czseckyf9 +2025-06-18T13:57:38.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.196.226 - RequestID: g29j7c6z11g +2025-06-18T13:57:38.881Z [TRACE] payment-service - Auth event: login_failed - User: user_1065 - IP: 192.168.81.206 - RequestID: ng70l5209vo +2025-06-18T13:57:38.981Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 637ms - RequestID: 7a1rcrz2wg3 +2025-06-18T13:57:39.081Z [INFO] user-service - Auth event: login_success - User: user_1056 - IP: 192.168.14.77 - RequestID: yeuemuckkm +2025-06-18T13:57:39.181Z [INFO] payment-service - PATCH /api/v1/users - Status: 401 - Response time: 1950ms - IP: 192.168.247.134 - User: user_1074 - RequestID: 8y595fs35m4 +2025-06-18T13:57:39.281Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 256ms - Rows affected: 60 - RequestID: 6my2siebfqe +2025-06-18T13:57:39.381Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 1015ms - RequestID: nzye0o4pz4 +2025-06-18T13:57:39.481Z [TRACE] auth-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.79.141 - RequestID: 0ll1xy8dtwa +2025-06-18T13:57:39.581Z [INFO] payment-service - Database INSERT on orders - Execution time: 80ms - Rows affected: 56 - RequestID: e4yf6pzi4g5 +2025-06-18T13:57:39.681Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1591ms - IP: 192.168.31.117 - User: user_1058 - RequestID: 4vnk28vhl8w +2025-06-18T13:57:39.781Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.64.33 - RequestID: v35i7dfz2ne +2025-06-18T13:57:39.881Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 404 - Response time: 904ms - IP: 192.168.13.72 - User: user_1099 - RequestID: kg56voumj8j +2025-06-18T13:57:39.981Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 429ms - Rows affected: 4 - RequestID: 03p7u8rsqb72 +2025-06-18T13:57:40.081Z [INFO] payment-service - Operation: webhook_sent - Processing time: 485ms - RequestID: oikgg3w9hp +2025-06-18T13:57:40.181Z [INFO] notification-service - POST /api/v1/users - Status: 403 - Response time: 58ms - IP: 192.168.97.87 - User: user_1034 - RequestID: plmvn6a4ps +2025-06-18T13:57:40.281Z [INFO] notification-service - Operation: cache_hit - Processing time: 555ms - RequestID: zmhd398jip8 +2025-06-18T13:57:40.381Z [TRACE] user-service - Database DELETE on products - Execution time: 398ms - Rows affected: 5 - RequestID: 9dvyu609z5w +2025-06-18T13:57:40.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.30.79 - RequestID: zwlhh4xg3hb +2025-06-18T13:57:40.581Z [INFO] inventory-service - Operation: cache_hit - Processing time: 990ms - RequestID: kc2n628ko6q +2025-06-18T13:57:40.681Z [DEBUG] order-service - PUT /api/v1/orders - Status: 400 - Response time: 1377ms - IP: 192.168.64.33 - User: user_1035 - RequestID: 4vutf2bqsds +2025-06-18T13:57:40.781Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 227ms - Rows affected: 45 - RequestID: mmshlgrdu +2025-06-18T13:57:40.881Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 179ms - Rows affected: 86 - RequestID: u6g2hmzkuch +2025-06-18T13:57:40.981Z [TRACE] payment-service - POST /api/v1/inventory - Status: 401 - Response time: 1156ms - IP: 192.168.81.206 - User: user_1093 - RequestID: r4j230loli9 +2025-06-18T13:57:41.081Z [INFO] notification-service - Operation: payment_processed - Processing time: 239ms - RequestID: 2eokoidmgag +2025-06-18T13:57:41.181Z [TRACE] user-service - Auth event: login_success - User: user_1008 - IP: 192.168.28.146 - RequestID: 34g8rrbvdbr +2025-06-18T13:57:41.281Z [TRACE] user-service - Auth event: logout - User: user_1000 - IP: 192.168.81.206 - RequestID: 6xeqbw2pect +2025-06-18T13:57:41.381Z [INFO] notification-service - Database INSERT on products - Execution time: 374ms - Rows affected: 96 - RequestID: jv6qavr9gta +2025-06-18T13:57:41.481Z [DEBUG] order-service - Operation: order_created - Processing time: 843ms - RequestID: kx9lmckx0z +2025-06-18T13:57:41.581Z [TRACE] user-service - DELETE /api/v1/payments - Status: 404 - Response time: 1821ms - IP: 192.168.242.165 - User: user_1065 - RequestID: 1zxj2zxfjs +2025-06-18T13:57:41.681Z [TRACE] order-service - Database UPDATE on orders - Execution time: 185ms - Rows affected: 64 - RequestID: r848iqd6ky +2025-06-18T13:57:41.781Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 404 - Response time: 76ms - IP: 192.168.141.100 - User: user_1078 - RequestID: clc2hzmnsgd +2025-06-18T13:57:41.881Z [TRACE] order-service - Operation: inventory_updated - Processing time: 107ms - RequestID: 3zmxuc7hak +2025-06-18T13:57:41.981Z [DEBUG] user-service - Database INSERT on users - Execution time: 342ms - Rows affected: 94 - RequestID: wiwn11mr7cg +2025-06-18T13:57:42.081Z [TRACE] auth-service - Operation: email_sent - Processing time: 1012ms - RequestID: v5ktuhz6ffo +2025-06-18T13:57:42.181Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 585ms - RequestID: c8vixorkhj5 +2025-06-18T13:57:42.281Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 1265ms - IP: 192.168.147.171 - User: user_1081 - RequestID: u2ev4u2uwr +2025-06-18T13:57:42.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 972ms - RequestID: 6rx8oawt14 +2025-06-18T13:57:42.481Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 400 - Response time: 1224ms - IP: 192.168.189.103 - User: user_1073 - RequestID: hzi9a0hi36 +2025-06-18T13:57:42.581Z [DEBUG] notification-service - Auth event: password_change - User: user_1032 - IP: 192.168.36.218 - RequestID: uqjuk93pgb +2025-06-18T13:57:42.681Z [INFO] order-service - Operation: inventory_updated - Processing time: 568ms - RequestID: 9resgo87ww6 +2025-06-18T13:57:42.781Z [INFO] order-service - Operation: email_sent - Processing time: 322ms - RequestID: nhcnvyy90hq +2025-06-18T13:57:42.881Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 168ms - Rows affected: 76 - RequestID: ju6kg40dii +2025-06-18T13:57:42.981Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 304ms - Rows affected: 20 - RequestID: 4xqcaof7z2d +2025-06-18T13:57:43.081Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 500 - Response time: 312ms - IP: 192.168.158.144 - User: user_1062 - RequestID: 8m7yn4hx1nn +2025-06-18T13:57:43.181Z [INFO] notification-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.187.199 - RequestID: zom6rojyffp +2025-06-18T13:57:43.281Z [INFO] order-service - PUT /api/v1/auth/login - Status: 200 - Response time: 954ms - IP: 192.168.53.133 - User: user_1043 - RequestID: mci7sqk02e +2025-06-18T13:57:43.381Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1936ms - IP: 192.168.158.144 - User: user_1092 - RequestID: gk0xhzq7xr +2025-06-18T13:57:43.481Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 366ms - Rows affected: 43 - RequestID: 8n0ikfv2kvw +2025-06-18T13:57:43.581Z [TRACE] payment-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.167.32 - RequestID: krpjd5gm72b +2025-06-18T13:57:43.681Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 128ms - Rows affected: 71 - RequestID: 4tqco4md7j +2025-06-18T13:57:43.781Z [INFO] order-service - Operation: payment_processed - Processing time: 1029ms - RequestID: m4fd6hy0crp +2025-06-18T13:57:43.881Z [DEBUG] auth-service - Operation: email_sent - Processing time: 345ms - RequestID: f60t4iwcg57 +2025-06-18T13:57:43.981Z [DEBUG] inventory-service - Auth event: login_success - User: user_1034 - IP: 192.168.44.5 - RequestID: xtfaz7lpeae +2025-06-18T13:57:44.081Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 16ms - Rows affected: 39 - RequestID: zbwj18kk7s +2025-06-18T13:57:44.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1027 - IP: 192.168.64.33 - RequestID: kyjkwtkherj +2025-06-18T13:57:44.281Z [INFO] user-service - Operation: cache_miss - Processing time: 448ms - RequestID: 4vewoerp41b +2025-06-18T13:57:44.381Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 404 - Response time: 995ms - IP: 192.168.240.169 - User: user_1039 - RequestID: 0vigpi6dvd1 +2025-06-18T13:57:44.481Z [TRACE] payment-service - Database DELETE on orders - Execution time: 128ms - Rows affected: 7 - RequestID: nl2i6df5rvf +2025-06-18T13:57:44.581Z [INFO] auth-service - Auth event: logout - User: user_1043 - IP: 192.168.167.32 - RequestID: uwlp345w4g +2025-06-18T13:57:44.681Z [INFO] payment-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.104.37 - RequestID: vu6e5y8xn9 +2025-06-18T13:57:44.781Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.211.72 - RequestID: ho8rz2y42k9 +2025-06-18T13:57:44.881Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 341ms - RequestID: d3vk36pj4b +2025-06-18T13:57:44.981Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 503 - Response time: 825ms - IP: 192.168.13.72 - User: user_1027 - RequestID: kzpszqky9kc +2025-06-18T13:57:45.081Z [DEBUG] order-service - Operation: order_created - Processing time: 427ms - RequestID: 0he4849suh5m +2025-06-18T13:57:45.181Z [INFO] user-service - Database DELETE on sessions - Execution time: 452ms - Rows affected: 92 - RequestID: 310l5vx6xb +2025-06-18T13:57:45.281Z [INFO] inventory-service - Database INSERT on payments - Execution time: 39ms - Rows affected: 52 - RequestID: bdllhkshc2i +2025-06-18T13:57:45.381Z [TRACE] user-service - Operation: notification_queued - Processing time: 246ms - RequestID: rogit6cip3 +2025-06-18T13:57:45.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.79.143 - RequestID: wkce7vfnf3p +2025-06-18T13:57:45.581Z [DEBUG] order-service - Operation: email_sent - Processing time: 281ms - RequestID: ugyy1xoo1uo +2025-06-18T13:57:45.681Z [DEBUG] payment-service - Operation: order_created - Processing time: 180ms - RequestID: 97nbbp16a7u +2025-06-18T13:57:45.781Z [INFO] user-service - Auth event: logout - User: user_1032 - IP: 192.168.68.128 - RequestID: r0ekk4dzq3h +2025-06-18T13:57:45.881Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 120ms - Rows affected: 64 - RequestID: t9anv1uguqd +2025-06-18T13:57:45.981Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 123ms - Rows affected: 15 - RequestID: zlcq5ll93bm +2025-06-18T13:57:46.081Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 118ms - RequestID: 7nplie7fkco +2025-06-18T13:57:46.181Z [TRACE] notification-service - Operation: notification_queued - Processing time: 415ms - RequestID: 7f94ad4wwma +2025-06-18T13:57:46.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.138.123 - RequestID: 96cm0rpirs8 +2025-06-18T13:57:46.381Z [TRACE] order-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.144.38 - RequestID: 7zvfolvutvd +2025-06-18T13:57:46.481Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 200 - Response time: 1655ms - IP: 192.168.33.76 - User: user_1067 - RequestID: f9z659u3igf +2025-06-18T13:57:46.581Z [TRACE] inventory-service - Auth event: login_success - User: user_1084 - IP: 192.168.232.72 - RequestID: je0e0dvsdpr +2025-06-18T13:57:46.681Z [TRACE] auth-service - GET /api/v1/orders - Status: 404 - Response time: 1633ms - IP: 192.168.53.133 - User: user_1049 - RequestID: ikyrw55b98g +2025-06-18T13:57:46.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 696ms - RequestID: endods46b4 +2025-06-18T13:57:46.881Z [DEBUG] user-service - Operation: order_created - Processing time: 1045ms - RequestID: ecqtp4vxsch +2025-06-18T13:57:46.981Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 35ms - Rows affected: 16 - RequestID: xgghuu4sgjl +2025-06-18T13:57:47.081Z [INFO] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1094ms - IP: 192.168.1.152 - User: user_1023 - RequestID: jd6gee4c2on +2025-06-18T13:57:47.181Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 201 - Response time: 521ms - IP: 192.168.28.146 - User: user_1048 - RequestID: 5lcsrcmdtwj +2025-06-18T13:57:47.281Z [DEBUG] order-service - DELETE /api/v1/users - Status: 503 - Response time: 1922ms - IP: 192.168.158.144 - User: user_1029 - RequestID: p9jh8oe1n3 +2025-06-18T13:57:47.381Z [TRACE] user-service - GET /api/v1/orders - Status: 201 - Response time: 1740ms - IP: 192.168.189.103 - User: user_1096 - RequestID: tt1zykxb09l +2025-06-18T13:57:47.481Z [DEBUG] user-service - Database UPDATE on products - Execution time: 14ms - Rows affected: 33 - RequestID: sia6d7v2sd +2025-06-18T13:57:47.581Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 137ms - Rows affected: 92 - RequestID: qqsrt7bpbtk +2025-06-18T13:57:47.681Z [DEBUG] auth-service - Auth event: logout - User: user_1083 - IP: 192.168.14.77 - RequestID: qr2f5muxmce +2025-06-18T13:57:47.781Z [INFO] order-service - Database INSERT on orders - Execution time: 450ms - Rows affected: 34 - RequestID: nabzflaosk +2025-06-18T13:57:47.881Z [DEBUG] order-service - Operation: order_created - Processing time: 258ms - RequestID: k9ke3xvfts +2025-06-18T13:57:47.981Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 404 - Response time: 72ms - IP: 192.168.159.94 - User: user_1089 - RequestID: pn0ruutygw +2025-06-18T13:57:48.081Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 400 - Response time: 253ms - IP: 192.168.227.77 - User: user_1048 - RequestID: 28j11kj3d9u +2025-06-18T13:57:48.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1070 - IP: 192.168.79.116 - RequestID: skhdyss2f6o +2025-06-18T13:57:48.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 629ms - RequestID: a3u4dvyky9p +2025-06-18T13:57:48.381Z [TRACE] notification-service - Operation: email_sent - Processing time: 557ms - RequestID: sxgrwn2232 +2025-06-18T13:57:48.481Z [DEBUG] order-service - POST /api/v1/inventory - Status: 503 - Response time: 708ms - IP: 192.168.81.206 - User: user_1007 - RequestID: e07gycd9a4n +2025-06-18T13:57:48.581Z [INFO] order-service - Operation: inventory_updated - Processing time: 690ms - RequestID: s1fvl1coo5 +2025-06-18T13:57:48.681Z [INFO] auth-service - Auth event: password_change - User: user_1014 - IP: 192.168.79.143 - RequestID: 94hpgafcz2t +2025-06-18T13:57:48.781Z [TRACE] order-service - Database UPDATE on payments - Execution time: 375ms - Rows affected: 56 - RequestID: 0amrlprhakt +2025-06-18T13:57:48.881Z [DEBUG] payment-service - Database INSERT on users - Execution time: 494ms - Rows affected: 96 - RequestID: hijgzpajllg +2025-06-18T13:57:48.981Z [INFO] order-service - Database INSERT on sessions - Execution time: 351ms - Rows affected: 12 - RequestID: 9gkl0ubfqos +2025-06-18T13:57:49.081Z [DEBUG] notification-service - Auth event: password_change - User: user_1001 - IP: 192.168.174.114 - RequestID: deil3a5puci +2025-06-18T13:57:49.181Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 243ms - Rows affected: 74 - RequestID: e6ko5d55x7e +2025-06-18T13:57:49.281Z [TRACE] order-service - Auth event: password_change - User: user_1016 - IP: 192.168.211.72 - RequestID: rfb6hfx0e9r +2025-06-18T13:57:49.381Z [INFO] order-service - Database DELETE on payments - Execution time: 46ms - Rows affected: 33 - RequestID: q3rxaq82q5l +2025-06-18T13:57:49.481Z [INFO] inventory-service - Auth event: login_success - User: user_1077 - IP: 192.168.64.33 - RequestID: xct9v8y48de +2025-06-18T13:57:49.581Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 430ms - RequestID: mt9krxs2zy +2025-06-18T13:57:49.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.13.72 - RequestID: cf0w3nq552b +2025-06-18T13:57:49.781Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 641ms - RequestID: 15xhpjbsl4a +2025-06-18T13:57:49.881Z [INFO] user-service - Operation: order_created - Processing time: 668ms - RequestID: tfv2m83tvlp +2025-06-18T13:57:49.981Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1107ms - IP: 192.168.133.7 - User: user_1081 - RequestID: k9wrrf9f4d +2025-06-18T13:57:50.081Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1149ms - IP: 192.168.53.133 - User: user_1055 - RequestID: m978wv2yyxm +2025-06-18T13:57:50.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.64.33 - RequestID: o7wolh79qe +2025-06-18T13:57:50.281Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 319ms - Rows affected: 58 - RequestID: awdi6fsmiib +2025-06-18T13:57:50.381Z [DEBUG] order-service - Operation: payment_processed - Processing time: 67ms - RequestID: 4nnuvhshyvw +2025-06-18T13:57:50.481Z [INFO] payment-service - Auth event: login_failed - User: user_1093 - IP: 192.168.181.225 - RequestID: 48p52eaev4 +2025-06-18T13:57:50.581Z [DEBUG] payment-service - Auth event: password_change - User: user_1093 - IP: 192.168.31.117 - RequestID: qkou4meahb +2025-06-18T13:57:50.681Z [TRACE] inventory-service - Auth event: login_success - User: user_1085 - IP: 192.168.138.123 - RequestID: 394h84xkgx3 +2025-06-18T13:57:50.781Z [DEBUG] payment-service - Operation: order_created - Processing time: 1038ms - RequestID: 4rf3533eg9b +2025-06-18T13:57:50.881Z [DEBUG] user-service - Auth event: login_failed - User: user_1056 - IP: 192.168.211.72 - RequestID: yzp539f1mi +2025-06-18T13:57:50.981Z [INFO] order-service - Auth event: login_success - User: user_1038 - IP: 192.168.68.128 - RequestID: 7mbv4nm27fp +2025-06-18T13:57:51.081Z [INFO] user-service - Auth event: logout - User: user_1004 - IP: 192.168.28.146 - RequestID: bkw37uyx4fe +2025-06-18T13:57:51.181Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 131ms - RequestID: 3c4tilh8qxr +2025-06-18T13:57:51.281Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 404 - Response time: 1096ms - IP: 192.168.113.218 - User: user_1043 - RequestID: h8uszs3ztb4 +2025-06-18T13:57:51.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 286ms - RequestID: d6e7c61oxdf +2025-06-18T13:57:51.481Z [DEBUG] user-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.141.100 - RequestID: if43hj9bpze +2025-06-18T13:57:51.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 233ms - RequestID: x97fm3fkkab +2025-06-18T13:57:51.681Z [TRACE] inventory-service - POST /api/v1/orders - Status: 200 - Response time: 1668ms - IP: 192.168.227.233 - User: user_1012 - RequestID: 7pk5zls521k +2025-06-18T13:57:51.781Z [TRACE] auth-service - Database INSERT on users - Execution time: 293ms - Rows affected: 50 - RequestID: 3uu0bldeia4 +2025-06-18T13:57:51.881Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 201ms - IP: 192.168.211.72 - User: user_1010 - RequestID: 9hixnf8zvmt +2025-06-18T13:57:51.981Z [DEBUG] auth-service - Auth event: logout - User: user_1014 - IP: 192.168.144.38 - RequestID: jusn1walhx +2025-06-18T13:57:52.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1058 - IP: 192.168.28.146 - RequestID: an6kp3hv7 +2025-06-18T13:57:52.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1039 - IP: 192.168.104.37 - RequestID: ee9sdnuv6mh +2025-06-18T13:57:52.281Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 211ms - Rows affected: 49 - RequestID: h37g0gl6d6n +2025-06-18T13:57:52.381Z [TRACE] notification-service - POST /api/v1/payments - Status: 403 - Response time: 1833ms - IP: 192.168.113.218 - User: user_1031 - RequestID: xt3l9oucnc +2025-06-18T13:57:52.481Z [DEBUG] order-service - POST /api/v1/inventory - Status: 403 - Response time: 1967ms - IP: 192.168.104.37 - User: user_1010 - RequestID: uybvmnuxgle +2025-06-18T13:57:52.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 295ms - RequestID: bsilbi6v1fn +2025-06-18T13:57:52.681Z [TRACE] notification-service - GET /api/v1/users - Status: 400 - Response time: 1836ms - IP: 192.168.113.218 - User: user_1012 - RequestID: ow22zlyeo5h +2025-06-18T13:57:52.781Z [TRACE] auth-service - Operation: email_sent - Processing time: 518ms - RequestID: 8975lo2paxb +2025-06-18T13:57:52.881Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 933ms - RequestID: hk17bv2rwbn +2025-06-18T13:57:52.981Z [TRACE] auth-service - Operation: notification_queued - Processing time: 1037ms - RequestID: y55simqivd8 +2025-06-18T13:57:53.081Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 493ms - Rows affected: 14 - RequestID: hndd43xayou +2025-06-18T13:57:53.181Z [INFO] notification-service - Database INSERT on orders - Execution time: 481ms - Rows affected: 50 - RequestID: v9c8daaeeb +2025-06-18T13:57:53.281Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 279ms - Rows affected: 21 - RequestID: 9seh7dyxkk9 +2025-06-18T13:57:53.381Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 401 - Response time: 389ms - IP: 192.168.181.225 - User: user_1011 - RequestID: ufyfb6pux1k +2025-06-18T13:57:53.481Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 804ms - RequestID: mpqnsbz57qb +2025-06-18T13:57:53.581Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1685ms - IP: 192.168.133.7 - User: user_1031 - RequestID: truohmp3llc +2025-06-18T13:57:53.681Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 81ms - Rows affected: 63 - RequestID: 9cw0dor4gd +2025-06-18T13:57:53.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1060 - IP: 192.168.79.141 - RequestID: vhw7suvzqx +2025-06-18T13:57:53.881Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 401 - Response time: 74ms - IP: 192.168.235.117 - User: user_1057 - RequestID: 0nl1uo9obcao +2025-06-18T13:57:53.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 376ms - RequestID: 33olj70tagm +2025-06-18T13:57:54.081Z [TRACE] payment-service - PATCH /api/v1/users - Status: 503 - Response time: 1381ms - IP: 192.168.170.215 - User: user_1077 - RequestID: qotrx0n6kf +2025-06-18T13:57:54.181Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 503 - Response time: 743ms - IP: 192.168.28.146 - User: user_1073 - RequestID: czj3ij4i7r7 +2025-06-18T13:57:54.281Z [TRACE] order-service - Auth event: logout - User: user_1084 - IP: 192.168.158.144 - RequestID: 8x3unry0hcu +2025-06-18T13:57:54.381Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 403 - Response time: 26ms - IP: 192.168.247.134 - User: user_1007 - RequestID: a55o1ymbiwm +2025-06-18T13:57:54.481Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 904ms - RequestID: 9n3hhygzpgi +2025-06-18T13:57:54.581Z [INFO] auth-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.247.134 - RequestID: vpjilejcej +2025-06-18T13:57:54.681Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1009 - IP: 192.168.33.76 - RequestID: zwfudsk9j2k +2025-06-18T13:57:54.781Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 401 - Response time: 965ms - IP: 192.168.81.206 - User: user_1059 - RequestID: 6hanvqaduce +2025-06-18T13:57:54.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.64.33 - RequestID: wqe2yhqdd5l +2025-06-18T13:57:54.981Z [INFO] order-service - Auth event: password_change - User: user_1097 - IP: 192.168.104.37 - RequestID: xq2ebgjeq6e +2025-06-18T13:57:55.081Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 389ms - Rows affected: 19 - RequestID: p65qqxd6opj +2025-06-18T13:57:55.181Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 911ms - RequestID: me2trheis7 +2025-06-18T13:57:55.281Z [DEBUG] user-service - Database DELETE on payments - Execution time: 190ms - Rows affected: 97 - RequestID: djib9n0byyw +2025-06-18T13:57:55.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1082 - IP: 192.168.30.79 - RequestID: yy2ps5jmcyn +2025-06-18T13:57:55.481Z [DEBUG] payment-service - Operation: order_created - Processing time: 736ms - RequestID: y3sicc7f5cl +2025-06-18T13:57:55.581Z [TRACE] order-service - GET /api/v1/auth/login - Status: 502 - Response time: 1728ms - IP: 192.168.79.143 - User: user_1069 - RequestID: jucakkli4rs +2025-06-18T13:57:55.681Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 248ms - RequestID: 7mu7fknfjqu +2025-06-18T13:57:55.781Z [TRACE] auth-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.64.33 - RequestID: 8lrgxble1v2 +2025-06-18T13:57:55.881Z [TRACE] user-service - Operation: order_created - Processing time: 675ms - RequestID: nsbgz4jhnt +2025-06-18T13:57:55.981Z [INFO] payment-service - Database DELETE on products - Execution time: 182ms - Rows affected: 98 - RequestID: m1bleh6gu0j +2025-06-18T13:57:56.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1054 - IP: 192.168.158.144 - RequestID: svmk7zv3jf +2025-06-18T13:57:56.181Z [TRACE] inventory-service - POST /api/v1/orders - Status: 403 - Response time: 1243ms - IP: 192.168.30.79 - User: user_1029 - RequestID: hp8kim9foyc +2025-06-18T13:57:56.281Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 201 - Response time: 1694ms - IP: 192.168.211.72 - User: user_1010 - RequestID: dkka1ia7qke +2025-06-18T13:57:56.381Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1079ms - IP: 192.168.104.37 - User: user_1018 - RequestID: asc9fi4tqkk +2025-06-18T13:57:56.481Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 822ms - RequestID: ty1eqf5pua +2025-06-18T13:57:56.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 607ms - RequestID: zbempm07jo +2025-06-18T13:57:56.681Z [DEBUG] order-service - Operation: email_sent - Processing time: 867ms - RequestID: yinu80fhcha +2025-06-18T13:57:56.781Z [INFO] payment-service - GET /api/v1/users - Status: 503 - Response time: 908ms - IP: 192.168.227.233 - User: user_1095 - RequestID: hg5w5prpkji +2025-06-18T13:57:56.881Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 321ms - Rows affected: 95 - RequestID: sfd3tsl55j +2025-06-18T13:57:56.981Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1767ms - IP: 192.168.32.38 - User: user_1026 - RequestID: h4xchdtm0n9 +2025-06-18T13:57:57.081Z [INFO] inventory-service - Operation: email_sent - Processing time: 596ms - RequestID: ic23i9c5a4 +2025-06-18T13:57:57.181Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 201 - Response time: 1722ms - IP: 192.168.1.152 - User: user_1068 - RequestID: ku0nxm8mvn +2025-06-18T13:57:57.281Z [INFO] inventory-service - Database SELECT on users - Execution time: 367ms - Rows affected: 69 - RequestID: ktu0gs28kz +2025-06-18T13:57:57.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 634ms - RequestID: dfw2py57nze +2025-06-18T13:57:57.481Z [INFO] order-service - Database UPDATE on products - Execution time: 482ms - Rows affected: 52 - RequestID: ct0f99vek5o +2025-06-18T13:57:57.581Z [TRACE] user-service - Operation: cache_hit - Processing time: 749ms - RequestID: p2gen85bewj +2025-06-18T13:57:57.681Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 593ms - RequestID: vbrp0oj5a +2025-06-18T13:57:57.781Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 481ms - Rows affected: 21 - RequestID: o4nj63fvdi +2025-06-18T13:57:57.881Z [DEBUG] user-service - GET /api/v1/users - Status: 200 - Response time: 1289ms - IP: 192.168.31.117 - User: user_1096 - RequestID: abbjk46vf49 +2025-06-18T13:57:57.981Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 169ms - Rows affected: 0 - RequestID: mun81p2eq9 +2025-06-18T13:57:58.081Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 213ms - Rows affected: 81 - RequestID: wxlnqqj5xma +2025-06-18T13:57:58.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 662ms - RequestID: 9uairyykas +2025-06-18T13:57:58.281Z [TRACE] notification-service - Auth event: password_change - User: user_1098 - IP: 192.168.229.123 - RequestID: ib2mbbke9wq +2025-06-18T13:57:58.381Z [INFO] user-service - Operation: email_sent - Processing time: 941ms - RequestID: 7n01fldk5ff +2025-06-18T13:57:58.481Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 276ms - Rows affected: 46 - RequestID: yc23mtzo1zm +2025-06-18T13:57:58.581Z [DEBUG] notification-service - Auth event: logout - User: user_1097 - IP: 192.168.79.143 - RequestID: byotb9vm0gk +2025-06-18T13:57:58.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.79.143 - RequestID: 0dj47f0t58zd +2025-06-18T13:57:58.781Z [INFO] user-service - PATCH /api/v1/payments - Status: 500 - Response time: 1096ms - IP: 192.168.144.38 - User: user_1059 - RequestID: 7fwzvsf27uj +2025-06-18T13:57:58.881Z [INFO] notification-service - Operation: email_sent - Processing time: 653ms - RequestID: 3prqoyxnu9v +2025-06-18T13:57:58.981Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 473ms - IP: 192.168.194.41 - User: user_1055 - RequestID: r693k6o0h39 +2025-06-18T13:57:59.081Z [DEBUG] auth-service - Operation: email_sent - Processing time: 151ms - RequestID: 5imo1e9gh3g +2025-06-18T13:57:59.181Z [DEBUG] user-service - Auth event: login_success - User: user_1094 - IP: 192.168.196.226 - RequestID: cw856artlf4 +2025-06-18T13:57:59.281Z [INFO] auth-service - Auth event: password_change - User: user_1016 - IP: 192.168.53.133 - RequestID: tq4ubpvyyc +2025-06-18T13:57:59.381Z [INFO] inventory-service - Auth event: login_success - User: user_1052 - IP: 192.168.85.229 - RequestID: 2h1i2owe7nf +2025-06-18T13:57:59.481Z [DEBUG] user-service - Auth event: login_failed - User: user_1041 - IP: 192.168.181.225 - RequestID: 6kxrj3bfwig +2025-06-18T13:57:59.581Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 403 - Response time: 1781ms - IP: 192.168.36.218 - User: user_1050 - RequestID: 8cn9kvmsevf +2025-06-18T13:57:59.681Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 299ms - Rows affected: 55 - RequestID: s3xitcyu719 +2025-06-18T13:57:59.781Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 265ms - Rows affected: 92 - RequestID: pussile7f7g +2025-06-18T13:57:59.881Z [INFO] user-service - Auth event: password_change - User: user_1052 - IP: 192.168.138.123 - RequestID: htsnzcp904 +2025-06-18T13:57:59.981Z [DEBUG] user-service - Operation: cache_hit - Processing time: 959ms - RequestID: wihxvveqgq +2025-06-18T13:58:00.081Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 350ms - IP: 192.168.247.134 - User: user_1005 - RequestID: 3c38tbsr6zf +2025-06-18T13:58:00.181Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 56ms - Rows affected: 44 - RequestID: ws8jl1do5kf +2025-06-18T13:58:00.281Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 401 - Response time: 621ms - IP: 192.168.13.72 - User: user_1018 - RequestID: 5p07zme6sdp +2025-06-18T13:58:00.381Z [TRACE] order-service - Operation: payment_processed - Processing time: 113ms - RequestID: 8z6wg9bwq16 +2025-06-18T13:58:00.481Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.11.60 - RequestID: gswcert1o1c +2025-06-18T13:58:00.581Z [DEBUG] payment-service - POST /api/v1/orders - Status: 400 - Response time: 1805ms - IP: 192.168.68.128 - User: user_1041 - RequestID: 2frvhkryro5 +2025-06-18T13:58:00.681Z [INFO] user-service - Database INSERT on orders - Execution time: 83ms - Rows affected: 71 - RequestID: 5qi2qbvn68h +2025-06-18T13:58:00.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1037 - IP: 192.168.33.76 - RequestID: rr0hi1b8j7i +2025-06-18T13:58:00.881Z [TRACE] inventory-service - Auth event: login_success - User: user_1086 - IP: 192.168.11.60 - RequestID: pqbwfo4bfu +2025-06-18T13:58:00.981Z [DEBUG] user-service - Operation: cache_miss - Processing time: 392ms - RequestID: 5zjj8yurbyn +2025-06-18T13:58:01.081Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 503 - Response time: 908ms - IP: 192.168.113.218 - User: user_1025 - RequestID: n1yaskslr5 +2025-06-18T13:58:01.181Z [INFO] user-service - PATCH /api/v1/orders - Status: 500 - Response time: 156ms - IP: 192.168.167.32 - User: user_1044 - RequestID: fj98ce3yjto +2025-06-18T13:58:01.281Z [TRACE] user-service - Database DELETE on sessions - Execution time: 347ms - Rows affected: 7 - RequestID: vyisz4luh68 +2025-06-18T13:58:01.381Z [INFO] payment-service - GET /api/v1/auth/login - Status: 401 - Response time: 1908ms - IP: 192.168.170.215 - User: user_1084 - RequestID: sdm3ugkfak +2025-06-18T13:58:01.481Z [INFO] order-service - POST /api/v1/payments - Status: 401 - Response time: 56ms - IP: 192.168.68.128 - User: user_1069 - RequestID: cktsvfecuhg +2025-06-18T13:58:01.581Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 459ms - Rows affected: 88 - RequestID: 6efu9thtu4v +2025-06-18T13:58:01.681Z [DEBUG] payment-service - Auth event: login_success - User: user_1089 - IP: 192.168.28.146 - RequestID: pncxe1l2ua +2025-06-18T13:58:01.781Z [TRACE] payment-service - Operation: cache_hit - Processing time: 661ms - RequestID: mvfc8saiscr +2025-06-18T13:58:01.881Z [DEBUG] user-service - Operation: payment_processed - Processing time: 608ms - RequestID: p5ocl8albvc +2025-06-18T13:58:01.981Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 270ms - Rows affected: 47 - RequestID: zru21zc85y +2025-06-18T13:58:02.081Z [DEBUG] payment-service - GET /api/v1/payments - Status: 502 - Response time: 1850ms - IP: 192.168.196.226 - User: user_1044 - RequestID: zfr5zw8bxe +2025-06-18T13:58:02.181Z [TRACE] auth-service - Database DELETE on products - Execution time: 171ms - Rows affected: 6 - RequestID: hho0cxda0z +2025-06-18T13:58:02.281Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 310ms - RequestID: ztnjjvdg0f +2025-06-18T13:58:02.381Z [TRACE] order-service - Auth event: logout - User: user_1049 - IP: 192.168.1.152 - RequestID: 8vjacfnzopa +2025-06-18T13:58:02.481Z [INFO] auth-service - Operation: payment_processed - Processing time: 516ms - RequestID: bksk4dvi64p +2025-06-18T13:58:02.581Z [INFO] order-service - Auth event: logout - User: user_1074 - IP: 192.168.247.134 - RequestID: zuvaxf88vkg +2025-06-18T13:58:02.681Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 90ms - Rows affected: 95 - RequestID: tldls6ammc9 +2025-06-18T13:58:02.781Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 44ms - IP: 192.168.81.206 - User: user_1099 - RequestID: x20221jlk3o +2025-06-18T13:58:02.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.79.141 - RequestID: d9u0s4glpjp +2025-06-18T13:58:02.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.44.5 - RequestID: 3u0o2tvlvcb +2025-06-18T13:58:03.081Z [TRACE] notification-service - Operation: cache_hit - Processing time: 153ms - RequestID: z0tqk95o1f +2025-06-18T13:58:03.181Z [DEBUG] user-service - Database SELECT on products - Execution time: 124ms - Rows affected: 21 - RequestID: 4qzjcdefyqw +2025-06-18T13:58:03.281Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 500 - Response time: 1213ms - IP: 192.168.79.116 - User: user_1022 - RequestID: b0nstp00536 +2025-06-18T13:58:03.381Z [TRACE] order-service - Database UPDATE on products - Execution time: 11ms - Rows affected: 81 - RequestID: ypgowtb079o +2025-06-18T13:58:03.481Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1683ms - IP: 192.168.33.76 - User: user_1098 - RequestID: 3mux4safuij +2025-06-18T13:58:03.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.211.72 - RequestID: xnxz2mhubbi +2025-06-18T13:58:03.681Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 364ms - Rows affected: 76 - RequestID: w1ghkpstyqj +2025-06-18T13:58:03.781Z [TRACE] auth-service - POST /api/v1/inventory - Status: 500 - Response time: 1365ms - IP: 192.168.187.199 - User: user_1089 - RequestID: 7jjubqb6g43 +2025-06-18T13:58:03.881Z [INFO] auth-service - Operation: notification_queued - Processing time: 91ms - RequestID: bpr7rmv1axv +2025-06-18T13:58:03.981Z [INFO] notification-service - DELETE /api/v1/orders - Status: 500 - Response time: 303ms - IP: 192.168.11.60 - User: user_1079 - RequestID: 45yedipwpfm +2025-06-18T13:58:04.081Z [DEBUG] order-service - DELETE /api/v1/users - Status: 503 - Response time: 609ms - IP: 192.168.242.165 - User: user_1036 - RequestID: mewizmn8ig +2025-06-18T13:58:04.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 1039ms - RequestID: abzaxr9ji5p +2025-06-18T13:58:04.281Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 401 - Response time: 1442ms - IP: 192.168.64.33 - User: user_1019 - RequestID: lj4dmizpmr +2025-06-18T13:58:04.381Z [DEBUG] order-service - Operation: notification_queued - Processing time: 536ms - RequestID: 6mlce0poho +2025-06-18T13:58:04.481Z [DEBUG] order-service - Auth event: login_failed - User: user_1097 - IP: 192.168.14.77 - RequestID: 12i2nnsmoxid +2025-06-18T13:58:04.581Z [DEBUG] payment-service - Operation: email_sent - Processing time: 472ms - RequestID: rb2brhbb8zg +2025-06-18T13:58:04.681Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 316ms - Rows affected: 95 - RequestID: sn0gpnc4r7 +2025-06-18T13:58:04.781Z [INFO] notification-service - Operation: webhook_sent - Processing time: 107ms - RequestID: ybykwvy7ikl +2025-06-18T13:58:04.881Z [INFO] auth-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.158.144 - RequestID: mzk2em7iqq +2025-06-18T13:58:04.981Z [TRACE] auth-service - Database INSERT on orders - Execution time: 353ms - Rows affected: 18 - RequestID: tossjj7xyl +2025-06-18T13:58:05.081Z [INFO] order-service - Operation: cache_miss - Processing time: 844ms - RequestID: k42itviroa +2025-06-18T13:58:05.181Z [TRACE] notification-service - Operation: payment_processed - Processing time: 236ms - RequestID: jvxb09wn7x +2025-06-18T13:58:05.281Z [TRACE] user-service - GET /api/v1/auth/login - Status: 401 - Response time: 1889ms - IP: 192.168.53.133 - User: user_1082 - RequestID: 4wni4fjeukk +2025-06-18T13:58:05.381Z [INFO] inventory-service - Database SELECT on orders - Execution time: 425ms - Rows affected: 36 - RequestID: 8z5yb9nlyhr +2025-06-18T13:58:05.481Z [DEBUG] order-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.138.123 - RequestID: ls4wj76arze +2025-06-18T13:58:05.581Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 200 - Response time: 706ms - IP: 192.168.11.60 - User: user_1074 - RequestID: tm6fkcfx9w +2025-06-18T13:58:05.681Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 319ms - RequestID: cxfx9zlqn3j +2025-06-18T13:58:05.781Z [DEBUG] user-service - Database UPDATE on users - Execution time: 71ms - Rows affected: 18 - RequestID: 7ohc3vtpgw8 +2025-06-18T13:58:05.881Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 214ms - Rows affected: 93 - RequestID: j2mesd2stsl +2025-06-18T13:58:05.981Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 619ms - RequestID: p8sdryslaq +2025-06-18T13:58:06.081Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 827ms - IP: 192.168.232.72 - User: user_1032 - RequestID: dmoz0vklnnw +2025-06-18T13:58:06.181Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 682ms - IP: 192.168.144.38 - User: user_1027 - RequestID: 9vdqz0ysngs +2025-06-18T13:58:06.281Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 1003ms - RequestID: qlg1j7liojr +2025-06-18T13:58:06.381Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 806ms - RequestID: jcbz25swdac +2025-06-18T13:58:06.481Z [TRACE] inventory-service - Operation: order_created - Processing time: 625ms - RequestID: 3vg7x8zezl1 +2025-06-18T13:58:06.581Z [TRACE] user-service - Database DELETE on users - Execution time: 406ms - Rows affected: 2 - RequestID: vp3yzude5o +2025-06-18T13:58:06.681Z [TRACE] user-service - PATCH /api/v1/orders - Status: 200 - Response time: 456ms - IP: 192.168.85.229 - User: user_1093 - RequestID: 70zuw9b8z7e +2025-06-18T13:58:06.781Z [INFO] auth-service - Auth event: password_change - User: user_1032 - IP: 192.168.32.38 - RequestID: 92gjh3yyccf +2025-06-18T13:58:06.881Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1362ms - IP: 192.168.227.77 - User: user_1059 - RequestID: om47u8imudm +2025-06-18T13:58:06.981Z [INFO] user-service - Auth event: logout - User: user_1049 - IP: 192.168.79.116 - RequestID: le0x5ql2xi8 +2025-06-18T13:58:07.081Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 198ms - Rows affected: 88 - RequestID: vg5hrjmm7sm +2025-06-18T13:58:07.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 151ms - RequestID: 7no008tmnqx +2025-06-18T13:58:07.281Z [TRACE] user-service - Database INSERT on products - Execution time: 211ms - Rows affected: 43 - RequestID: 3ro29wf6yj1 +2025-06-18T13:58:07.381Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1398ms - IP: 192.168.46.63 - User: user_1009 - RequestID: rsmygwalf7p +2025-06-18T13:58:07.481Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1784ms - IP: 192.168.187.199 - User: user_1090 - RequestID: h9vfqj3n8uk +2025-06-18T13:58:07.581Z [TRACE] notification-service - Operation: email_sent - Processing time: 497ms - RequestID: 72a83tng199 +2025-06-18T13:58:07.681Z [INFO] inventory-service - Operation: email_sent - Processing time: 471ms - RequestID: qp9zlms25sh +2025-06-18T13:58:07.781Z [INFO] user-service - Operation: inventory_updated - Processing time: 281ms - RequestID: lez85lwhst9 +2025-06-18T13:58:07.881Z [TRACE] user-service - Database SELECT on users - Execution time: 170ms - Rows affected: 65 - RequestID: 8de1pmclt27 +2025-06-18T13:58:07.981Z [INFO] order-service - Auth event: login_failed - User: user_1045 - IP: 192.168.113.218 - RequestID: l796otwnhw +2025-06-18T13:58:08.081Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1589ms - IP: 192.168.229.123 - User: user_1001 - RequestID: fdka0v65hv4 +2025-06-18T13:58:08.181Z [INFO] notification-service - Operation: email_sent - Processing time: 376ms - RequestID: fjdr6vc1vbs +2025-06-18T13:58:08.281Z [INFO] payment-service - DELETE /api/v1/users - Status: 403 - Response time: 314ms - IP: 192.168.189.103 - User: user_1029 - RequestID: 41w4j4zznq2 +2025-06-18T13:58:08.381Z [INFO] notification-service - Operation: order_created - Processing time: 831ms - RequestID: 8mma83crv36 +2025-06-18T13:58:08.481Z [DEBUG] user-service - GET /api/v1/orders - Status: 502 - Response time: 1823ms - IP: 192.168.33.76 - User: user_1060 - RequestID: 9um79vdjlrs +2025-06-18T13:58:08.581Z [DEBUG] notification-service - Operation: order_created - Processing time: 918ms - RequestID: kt7pjdh2hp +2025-06-18T13:58:08.681Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 220ms - Rows affected: 27 - RequestID: hc20n3kemyg +2025-06-18T13:58:08.781Z [INFO] order-service - Database INSERT on users - Execution time: 5ms - Rows affected: 95 - RequestID: 1qbb912y9hh +2025-06-18T13:58:08.881Z [INFO] order-service - DELETE /api/v1/orders - Status: 502 - Response time: 1453ms - IP: 192.168.189.103 - User: user_1030 - RequestID: lbmshphi6h +2025-06-18T13:58:08.981Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 200 - Response time: 1912ms - IP: 192.168.44.5 - User: user_1049 - RequestID: z04ym1onnck +2025-06-18T13:58:09.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.46.63 - RequestID: zrvzp60ty9d +2025-06-18T13:58:09.181Z [INFO] order-service - Operation: inventory_updated - Processing time: 136ms - RequestID: 27506of1fyv +2025-06-18T13:58:09.281Z [TRACE] user-service - Operation: cache_hit - Processing time: 918ms - RequestID: bajutes0uzq +2025-06-18T13:58:09.381Z [DEBUG] user-service - Operation: payment_processed - Processing time: 540ms - RequestID: xgrgw8fuy5 +2025-06-18T13:58:09.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.104.37 - RequestID: v7tzoe2rds9 +2025-06-18T13:58:09.581Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1099ms - IP: 192.168.174.114 - User: user_1081 - RequestID: 8lusr4w7yiq +2025-06-18T13:58:09.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.147.171 - RequestID: 55zaa70lbqx +2025-06-18T13:58:09.781Z [INFO] order-service - GET /api/v1/orders - Status: 503 - Response time: 1202ms - IP: 192.168.68.128 - User: user_1066 - RequestID: smwq4i2j48n +2025-06-18T13:58:09.881Z [TRACE] order-service - Database INSERT on sessions - Execution time: 19ms - Rows affected: 0 - RequestID: 3ix6tcjidgv +2025-06-18T13:58:09.981Z [DEBUG] auth-service - Database SELECT on products - Execution time: 500ms - Rows affected: 93 - RequestID: xtk37lwlbk +2025-06-18T13:58:10.081Z [TRACE] payment-service - Operation: notification_queued - Processing time: 740ms - RequestID: 51a949e74bc +2025-06-18T13:58:10.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.64.33 - RequestID: fk4bsh3pubk +2025-06-18T13:58:10.281Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 788ms - IP: 192.168.30.79 - User: user_1088 - RequestID: c50i433nww +2025-06-18T13:58:10.381Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.232.72 - RequestID: x77jzvzp909 +2025-06-18T13:58:10.481Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 401 - Response time: 33ms - IP: 192.168.227.233 - User: user_1078 - RequestID: bsqk9de2te7 +2025-06-18T13:58:10.581Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 502 - Response time: 828ms - IP: 192.168.181.225 - User: user_1052 - RequestID: azglcngibln +2025-06-18T13:58:10.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 420ms - RequestID: h0dsnlx2fz +2025-06-18T13:58:10.781Z [INFO] notification-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.211.72 - RequestID: 9opxh30b5g +2025-06-18T13:58:10.881Z [TRACE] user-service - Auth event: login_success - User: user_1056 - IP: 192.168.211.72 - RequestID: 038n8lqxz2vr +2025-06-18T13:58:10.981Z [INFO] auth-service - Auth event: logout - User: user_1016 - IP: 192.168.44.5 - RequestID: awsn12u5wgr +2025-06-18T13:58:11.081Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 888ms - IP: 192.168.144.38 - User: user_1058 - RequestID: ingv8nk1ye +2025-06-18T13:58:11.181Z [TRACE] user-service - Database DELETE on sessions - Execution time: 436ms - Rows affected: 7 - RequestID: 4kdl8tk87bn +2025-06-18T13:58:11.281Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 400 - Response time: 1712ms - IP: 192.168.81.206 - User: user_1036 - RequestID: 8gu42v4wpsc +2025-06-18T13:58:11.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.36.218 - RequestID: 3ij4rfmm18k +2025-06-18T13:58:11.481Z [DEBUG] order-service - GET /api/v1/payments - Status: 403 - Response time: 92ms - IP: 192.168.11.60 - User: user_1008 - RequestID: ipag0p8dcb +2025-06-18T13:58:11.581Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1354ms - IP: 192.168.174.114 - User: user_1093 - RequestID: kmof85m87m9 +2025-06-18T13:58:11.681Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 502 - Response time: 980ms - IP: 192.168.79.116 - User: user_1029 - RequestID: 3hgnt5gsgwf +2025-06-18T13:58:11.781Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 61ms - RequestID: 2nhdh60qazd +2025-06-18T13:58:11.881Z [INFO] order-service - Auth event: login_failed - User: user_1047 - IP: 192.168.36.218 - RequestID: z1mu8fbcjll +2025-06-18T13:58:11.981Z [TRACE] auth-service - Auth event: login_success - User: user_1080 - IP: 192.168.240.169 - RequestID: vcd9ztknx5o +2025-06-18T13:58:12.081Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 697ms - RequestID: tmf8yqfkk7a +2025-06-18T13:58:12.181Z [INFO] payment-service - Database UPDATE on orders - Execution time: 144ms - Rows affected: 79 - RequestID: 2whyevcwt5x +2025-06-18T13:58:12.281Z [INFO] auth-service - Operation: cache_hit - Processing time: 513ms - RequestID: 8ziji1uv9ph +2025-06-18T13:58:12.381Z [TRACE] user-service - Database INSERT on orders - Execution time: 466ms - Rows affected: 19 - RequestID: 8q992iwisgx +2025-06-18T13:58:12.481Z [INFO] inventory-service - Auth event: login_failed - User: user_1007 - IP: 192.168.227.233 - RequestID: jbljzo2ipw7 +2025-06-18T13:58:12.581Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 379ms - Rows affected: 64 - RequestID: ud0yu2bsyh +2025-06-18T13:58:12.681Z [INFO] user-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.68.158 - RequestID: mujeb9vrkz +2025-06-18T13:58:12.781Z [DEBUG] order-service - Operation: cache_miss - Processing time: 854ms - RequestID: r6cv9v3gdo +2025-06-18T13:58:12.881Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 200 - Response time: 797ms - IP: 192.168.211.72 - User: user_1069 - RequestID: kpq888wyh0o +2025-06-18T13:58:12.981Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 10ms - Rows affected: 64 - RequestID: t5u44svn6c +2025-06-18T13:58:13.081Z [TRACE] user-service - Operation: webhook_sent - Processing time: 848ms - RequestID: 6ygs1o9xtgg +2025-06-18T13:58:13.181Z [TRACE] user-service - Auth event: login_failed - User: user_1086 - IP: 192.168.14.77 - RequestID: 1csiunmvacm +2025-06-18T13:58:13.281Z [INFO] user-service - Operation: notification_queued - Processing time: 790ms - RequestID: a1pu8b6oons +2025-06-18T13:58:13.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1042 - IP: 192.168.113.218 - RequestID: csligb83rhf +2025-06-18T13:58:13.481Z [INFO] auth-service - Operation: email_sent - Processing time: 304ms - RequestID: aje7ztai3yc +2025-06-18T13:58:13.581Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 500 - Response time: 1176ms - IP: 192.168.100.240 - User: user_1080 - RequestID: feo3pan7h1c +2025-06-18T13:58:13.681Z [TRACE] order-service - Auth event: login_success - User: user_1085 - IP: 192.168.232.72 - RequestID: obr3noobjwj +2025-06-18T13:58:13.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1055 - IP: 192.168.227.233 - RequestID: y7b3jmpwvbp +2025-06-18T13:58:13.881Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 589ms - IP: 192.168.44.5 - User: user_1019 - RequestID: txz0pu7opm +2025-06-18T13:58:13.981Z [INFO] notification-service - Auth event: password_change - User: user_1039 - IP: 192.168.227.77 - RequestID: qzczpvqb7eb +2025-06-18T13:58:14.081Z [DEBUG] order-service - Database SELECT on users - Execution time: 347ms - Rows affected: 55 - RequestID: dqthrq43bw +2025-06-18T13:58:14.181Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 322ms - Rows affected: 80 - RequestID: 8k00gl4hipj +2025-06-18T13:58:14.281Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 599ms - RequestID: i8v1vcla9kg +2025-06-18T13:58:14.381Z [INFO] user-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.1.152 - RequestID: nj01tb8pfxb +2025-06-18T13:58:14.481Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 502 - Response time: 1784ms - IP: 192.168.170.215 - User: user_1051 - RequestID: 2rldwex0kj1 +2025-06-18T13:58:14.581Z [INFO] user-service - PATCH /api/v1/orders - Status: 400 - Response time: 1422ms - IP: 192.168.13.72 - User: user_1007 - RequestID: ibrwlp23hm +2025-06-18T13:58:14.681Z [INFO] order-service - Database INSERT on orders - Execution time: 356ms - Rows affected: 57 - RequestID: e8hu3oztofu +2025-06-18T13:58:14.781Z [INFO] auth-service - Operation: order_created - Processing time: 140ms - RequestID: ee6mj6cog8u +2025-06-18T13:58:14.881Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 502 - Response time: 1161ms - IP: 192.168.196.226 - User: user_1059 - RequestID: ic8ygt3onyk +2025-06-18T13:58:14.981Z [INFO] notification-service - Operation: email_sent - Processing time: 611ms - RequestID: k49vq81m2ba +2025-06-18T13:58:15.081Z [TRACE] order-service - Auth event: login_failed - User: user_1021 - IP: 192.168.159.94 - RequestID: 1exejcf27gk +2025-06-18T13:58:15.181Z [INFO] order-service - GET /api/v1/orders - Status: 404 - Response time: 999ms - IP: 192.168.229.123 - User: user_1033 - RequestID: no7bhqenab +2025-06-18T13:58:15.281Z [TRACE] user-service - Database INSERT on orders - Execution time: 258ms - Rows affected: 74 - RequestID: jjkbvw3yo4o +2025-06-18T13:58:15.381Z [DEBUG] payment-service - Auth event: logout - User: user_1085 - IP: 192.168.141.100 - RequestID: 1mn7bu6ukj4 +2025-06-18T13:58:15.481Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 365ms - Rows affected: 43 - RequestID: 4j40pyuh0ub +2025-06-18T13:58:15.581Z [DEBUG] payment-service - Database DELETE on products - Execution time: 309ms - Rows affected: 67 - RequestID: 9fi1dlr763u +2025-06-18T13:58:15.681Z [TRACE] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 1492ms - IP: 192.168.46.63 - User: user_1028 - RequestID: 5dor6qs5j1u +2025-06-18T13:58:15.781Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1062ms - IP: 192.168.28.146 - User: user_1002 - RequestID: cl813n52zls +2025-06-18T13:58:15.881Z [TRACE] order-service - Operation: email_sent - Processing time: 335ms - RequestID: m6lphmy0rx +2025-06-18T13:58:15.981Z [DEBUG] notification-service - Auth event: logout - User: user_1050 - IP: 192.168.227.77 - RequestID: no7rovj8cup +2025-06-18T13:58:16.081Z [INFO] auth-service - Operation: cache_miss - Processing time: 417ms - RequestID: zhfnmnr5qhe +2025-06-18T13:58:16.181Z [INFO] inventory-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.240.169 - RequestID: czjyl9dcqq +2025-06-18T13:58:16.281Z [INFO] order-service - Auth event: logout - User: user_1082 - IP: 192.168.36.218 - RequestID: f4acwujfl5v +2025-06-18T13:58:16.381Z [TRACE] auth-service - Operation: cache_miss - Processing time: 988ms - RequestID: g9za905fgj +2025-06-18T13:58:16.481Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 422ms - Rows affected: 12 - RequestID: i16d71gxni +2025-06-18T13:58:16.581Z [INFO] user-service - Operation: inventory_updated - Processing time: 95ms - RequestID: vf78113tflc +2025-06-18T13:58:16.681Z [INFO] user-service - Auth event: login_failed - User: user_1019 - IP: 192.168.79.143 - RequestID: 8hqndjvjd6h +2025-06-18T13:58:16.781Z [INFO] auth-service - Operation: notification_queued - Processing time: 241ms - RequestID: euq2icfb6o +2025-06-18T13:58:16.881Z [INFO] inventory-service - POST /api/v1/users - Status: 400 - Response time: 527ms - IP: 192.168.36.218 - User: user_1074 - RequestID: vrtikyxc1g +2025-06-18T13:58:16.981Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 150ms - Rows affected: 8 - RequestID: 8kopl64vvan +2025-06-18T13:58:17.081Z [INFO] user-service - Operation: cache_miss - Processing time: 289ms - RequestID: uf0rsuff01 +2025-06-18T13:58:17.181Z [DEBUG] auth-service - Auth event: logout - User: user_1093 - IP: 192.168.30.79 - RequestID: 33znk0jq665 +2025-06-18T13:58:17.281Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 473ms - Rows affected: 15 - RequestID: ewa23u9zm4 +2025-06-18T13:58:17.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 479ms - RequestID: ovkak0u76i +2025-06-18T13:58:17.481Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 200 - Response time: 814ms - IP: 192.168.196.226 - User: user_1007 - RequestID: ycsk508z0qo +2025-06-18T13:58:17.581Z [TRACE] notification-service - GET /api/v1/auth/login - Status: 404 - Response time: 1098ms - IP: 192.168.211.72 - User: user_1095 - RequestID: yogonf3zmhh +2025-06-18T13:58:17.681Z [INFO] user-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.138.123 - RequestID: qswaly5ggx8 +2025-06-18T13:58:17.781Z [TRACE] order-service - POST /api/v1/inventory - Status: 500 - Response time: 1643ms - IP: 192.168.13.72 - User: user_1086 - RequestID: 6e9c9apxutn +2025-06-18T13:58:17.881Z [INFO] payment-service - Auth event: login_failed - User: user_1090 - IP: 192.168.44.5 - RequestID: 1s6tb1jsp7a +2025-06-18T13:58:17.981Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 476ms - Rows affected: 60 - RequestID: xepnzcbezf8 +2025-06-18T13:58:18.081Z [DEBUG] auth-service - Auth event: logout - User: user_1052 - IP: 192.168.11.60 - RequestID: sf2g57zrlzr +2025-06-18T13:58:18.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1060 - IP: 192.168.167.32 - RequestID: 36iohzz7pc +2025-06-18T13:58:18.281Z [INFO] notification-service - Operation: email_sent - Processing time: 968ms - RequestID: 65rrr15608c +2025-06-18T13:58:18.381Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 495ms - RequestID: gmzmrezegyn +2025-06-18T13:58:18.481Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 200 - Response time: 478ms - IP: 192.168.196.226 - User: user_1058 - RequestID: afll422y2f +2025-06-18T13:58:18.581Z [TRACE] auth-service - Database SELECT on orders - Execution time: 237ms - Rows affected: 76 - RequestID: laeuxrax9qb +2025-06-18T13:58:18.681Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 205ms - Rows affected: 12 - RequestID: kvnb0dgedea +2025-06-18T13:58:18.781Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 287ms - RequestID: 5csnkre69gn +2025-06-18T13:58:18.881Z [INFO] notification-service - Operation: cache_miss - Processing time: 1022ms - RequestID: zbei3usrdyf +2025-06-18T13:58:18.981Z [INFO] inventory-service - Auth event: logout - User: user_1078 - IP: 192.168.235.117 - RequestID: mzn4ud3izm +2025-06-18T13:58:19.081Z [TRACE] inventory-service - Auth event: logout - User: user_1090 - IP: 192.168.211.72 - RequestID: mhjq8ugf8o +2025-06-18T13:58:19.181Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1306ms - IP: 192.168.159.94 - User: user_1076 - RequestID: 63i4i1pbv3n +2025-06-18T13:58:19.281Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 200 - Response time: 276ms - IP: 192.168.79.141 - User: user_1023 - RequestID: e78rwmlhr2h +2025-06-18T13:58:19.381Z [INFO] notification-service - DELETE /api/v1/orders - Status: 500 - Response time: 670ms - IP: 192.168.232.72 - User: user_1013 - RequestID: 5cy1r1guxu4 +2025-06-18T13:58:19.481Z [INFO] order-service - Auth event: password_change - User: user_1051 - IP: 192.168.68.128 - RequestID: 5fw4pwl6umx +2025-06-18T13:58:19.581Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1029 - IP: 192.168.194.41 - RequestID: 7fvay6343cs +2025-06-18T13:58:19.681Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 400 - Response time: 56ms - IP: 192.168.68.158 - User: user_1068 - RequestID: 5zrmydi1fh5 +2025-06-18T13:58:19.781Z [TRACE] notification-service - Auth event: login_success - User: user_1009 - IP: 192.168.144.38 - RequestID: zwkgcquphm +2025-06-18T13:58:19.881Z [DEBUG] order-service - Database SELECT on products - Execution time: 108ms - Rows affected: 12 - RequestID: svepkzgqr5j +2025-06-18T13:58:19.981Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 115ms - Rows affected: 70 - RequestID: 0653iy1ltqxf +2025-06-18T13:58:20.081Z [INFO] order-service - Database DELETE on products - Execution time: 426ms - Rows affected: 22 - RequestID: 654b4ee972k +2025-06-18T13:58:20.181Z [DEBUG] user-service - Auth event: password_change - User: user_1089 - IP: 192.168.167.32 - RequestID: envpv1w62qa +2025-06-18T13:58:20.281Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 98ms - Rows affected: 91 - RequestID: 6xjahjofuf +2025-06-18T13:58:20.381Z [TRACE] auth-service - GET /api/v1/orders - Status: 200 - Response time: 575ms - IP: 192.168.79.143 - User: user_1029 - RequestID: yte1xt3dcx +2025-06-18T13:58:20.481Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 139ms - Rows affected: 28 - RequestID: 24aqca3rj3x +2025-06-18T13:58:20.581Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 400 - Response time: 637ms - IP: 192.168.170.215 - User: user_1019 - RequestID: 18yz65dhyf8 +2025-06-18T13:58:20.681Z [TRACE] user-service - PUT /api/v1/inventory - Status: 404 - Response time: 219ms - IP: 192.168.14.77 - User: user_1010 - RequestID: y3n334s89 +2025-06-18T13:58:20.781Z [DEBUG] user-service - Database UPDATE on users - Execution time: 456ms - Rows affected: 19 - RequestID: sehhuo0x13e +2025-06-18T13:58:20.881Z [TRACE] inventory-service - Operation: order_created - Processing time: 86ms - RequestID: vn6mpozqsi +2025-06-18T13:58:20.981Z [INFO] order-service - Auth event: login_failed - User: user_1043 - IP: 192.168.1.152 - RequestID: yso2wk6xasd +2025-06-18T13:58:21.081Z [TRACE] payment-service - Database UPDATE on users - Execution time: 373ms - Rows affected: 44 - RequestID: spyzh9872 +2025-06-18T13:58:21.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1053 - IP: 192.168.104.37 - RequestID: eer61ui2awu +2025-06-18T13:58:21.281Z [TRACE] order-service - Database INSERT on sessions - Execution time: 162ms - Rows affected: 95 - RequestID: wdvccerhhic +2025-06-18T13:58:21.381Z [INFO] auth-service - Operation: email_sent - Processing time: 563ms - RequestID: i9zahr5m1we +2025-06-18T13:58:21.481Z [TRACE] user-service - POST /api/v1/payments - Status: 503 - Response time: 400ms - IP: 192.168.14.77 - User: user_1003 - RequestID: ex8922dpko +2025-06-18T13:58:21.581Z [DEBUG] user-service - Database INSERT on products - Execution time: 119ms - Rows affected: 97 - RequestID: qm4wyzjo9oj +2025-06-18T13:58:21.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1088 - IP: 192.168.144.38 - RequestID: i62tryxksu +2025-06-18T13:58:21.781Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 418ms - Rows affected: 9 - RequestID: 8tli2sgmv07 +2025-06-18T13:58:21.881Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 426ms - Rows affected: 44 - RequestID: rs6cmvik6z +2025-06-18T13:58:21.981Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 910ms - IP: 192.168.68.158 - User: user_1088 - RequestID: t5tyiiv5548 +2025-06-18T13:58:22.081Z [INFO] order-service - Database UPDATE on payments - Execution time: 217ms - Rows affected: 83 - RequestID: uv2rscojd7 +2025-06-18T13:58:22.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.32.38 - RequestID: fgqf08idstm +2025-06-18T13:58:22.281Z [DEBUG] payment-service - Auth event: password_change - User: user_1073 - IP: 192.168.159.94 - RequestID: z0mqhh8tqhh +2025-06-18T13:58:22.381Z [TRACE] payment-service - Operation: email_sent - Processing time: 443ms - RequestID: qh7ambcynt +2025-06-18T13:58:22.481Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1942ms - IP: 192.168.227.77 - User: user_1051 - RequestID: q6mrisc3fym +2025-06-18T13:58:22.581Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 308ms - Rows affected: 95 - RequestID: iljwd6l9rvh +2025-06-18T13:58:22.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.79.143 - RequestID: jhfua1c2tc9 +2025-06-18T13:58:22.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 219ms - RequestID: qmtcxin13f +2025-06-18T13:58:22.881Z [TRACE] user-service - Auth event: login_success - User: user_1070 - IP: 192.168.133.7 - RequestID: 6uylix25vp4 +2025-06-18T13:58:22.981Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 343ms - Rows affected: 70 - RequestID: qk234xa60h +2025-06-18T13:58:23.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 263ms - RequestID: 9385o4gj37u +2025-06-18T13:58:23.181Z [INFO] auth-service - Operation: payment_processed - Processing time: 218ms - RequestID: 9vtlytumisn +2025-06-18T13:58:23.281Z [INFO] inventory-service - Operation: order_created - Processing time: 152ms - RequestID: jtsdtqjqe1b +2025-06-18T13:58:23.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.33.76 - RequestID: ysyyzfsqa3 +2025-06-18T13:58:23.481Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1180ms - IP: 192.168.232.72 - User: user_1026 - RequestID: g0ngbrfls37 +2025-06-18T13:58:23.581Z [DEBUG] payment-service - Operation: order_created - Processing time: 611ms - RequestID: tqbda5ai67g +2025-06-18T13:58:23.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 572ms - RequestID: ocmex5al72 +2025-06-18T13:58:23.781Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1059ms - IP: 192.168.104.37 - User: user_1021 - RequestID: xy0e5lo2v5 +2025-06-18T13:58:23.881Z [TRACE] auth-service - Operation: cache_hit - Processing time: 189ms - RequestID: pgl931psmyn +2025-06-18T13:58:23.981Z [TRACE] user-service - Database INSERT on payments - Execution time: 218ms - Rows affected: 64 - RequestID: c3i2wx0br04 +2025-06-18T13:58:24.081Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 104ms - Rows affected: 54 - RequestID: pn8kgz39kzd +2025-06-18T13:58:24.181Z [TRACE] order-service - Auth event: logout - User: user_1010 - IP: 192.168.229.123 - RequestID: rbmtydjvgo +2025-06-18T13:58:24.281Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 649ms - RequestID: 95n7t2ubncb +2025-06-18T13:58:24.381Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 197ms - RequestID: lpyoqmombf +2025-06-18T13:58:24.481Z [INFO] inventory-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.147.171 - RequestID: k7jtcu9nldp +2025-06-18T13:58:24.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.235.117 - RequestID: 9ase8qtp8we +2025-06-18T13:58:24.681Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 191ms - Rows affected: 80 - RequestID: zcr0jv2s99s +2025-06-18T13:58:24.781Z [DEBUG] order-service - Operation: payment_processed - Processing time: 636ms - RequestID: qx7otikkeef +2025-06-18T13:58:24.881Z [DEBUG] order-service - Database UPDATE on products - Execution time: 493ms - Rows affected: 59 - RequestID: nzlyevejx +2025-06-18T13:58:24.981Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 1017ms - RequestID: k0ozzgm227i +2025-06-18T13:58:25.081Z [INFO] payment-service - PATCH /api/v1/payments - Status: 201 - Response time: 573ms - IP: 192.168.227.233 - User: user_1032 - RequestID: twny58u2m8h +2025-06-18T13:58:25.181Z [INFO] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 1297ms - IP: 192.168.10.184 - User: user_1059 - RequestID: 8iu4hvham5a +2025-06-18T13:58:25.281Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.81.206 - RequestID: qjk6pshls2 +2025-06-18T13:58:25.381Z [INFO] inventory-service - Database SELECT on orders - Execution time: 485ms - Rows affected: 0 - RequestID: 63yfvadrz1x +2025-06-18T13:58:25.481Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 377ms - Rows affected: 2 - RequestID: iin8mlxajh +2025-06-18T13:58:25.581Z [DEBUG] user-service - Auth event: login_success - User: user_1078 - IP: 192.168.141.100 - RequestID: 4h4cg0d7gmv +2025-06-18T13:58:25.681Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1028 - IP: 192.168.181.225 - RequestID: 9mnzm7f4v1h +2025-06-18T13:58:25.781Z [DEBUG] inventory-service - GET /api/v1/users - Status: 500 - Response time: 419ms - IP: 192.168.44.5 - User: user_1067 - RequestID: o6jwdydsaqd +2025-06-18T13:58:25.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 674ms - RequestID: 8egp2sqmic5 +2025-06-18T13:58:25.981Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1713ms - IP: 192.168.242.165 - User: user_1005 - RequestID: w27hsa7o6ch +2025-06-18T13:58:26.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.247.134 - RequestID: zyo4grbtqon +2025-06-18T13:58:26.181Z [INFO] user-service - Auth event: password_change - User: user_1011 - IP: 192.168.68.158 - RequestID: sx6s2yqpneq +2025-06-18T13:58:26.281Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 476ms - Rows affected: 45 - RequestID: pnxf8uwwxjp +2025-06-18T13:58:26.381Z [INFO] payment-service - PUT /api/v1/users - Status: 404 - Response time: 353ms - IP: 192.168.13.72 - User: user_1078 - RequestID: hoyt2xsaq7f +2025-06-18T13:58:26.481Z [INFO] user-service - Auth event: password_change - User: user_1055 - IP: 192.168.36.218 - RequestID: olk0z71nut +2025-06-18T13:58:26.581Z [INFO] auth-service - Auth event: logout - User: user_1033 - IP: 192.168.79.143 - RequestID: uwyotm0ml4 +2025-06-18T13:58:26.681Z [INFO] order-service - PATCH /api/v1/inventory - Status: 201 - Response time: 42ms - IP: 192.168.229.123 - User: user_1073 - RequestID: 8a52pd48pwn +2025-06-18T13:58:26.781Z [TRACE] user-service - Auth event: logout - User: user_1014 - IP: 192.168.138.123 - RequestID: y9khmrvehh +2025-06-18T13:58:26.881Z [TRACE] auth-service - PUT /api/v1/payments - Status: 200 - Response time: 1159ms - IP: 192.168.232.72 - User: user_1095 - RequestID: 0wddp4imh62c +2025-06-18T13:58:26.981Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 404 - Response time: 1577ms - IP: 192.168.10.184 - User: user_1081 - RequestID: ahb07bwbjho +2025-06-18T13:58:27.081Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 347ms - Rows affected: 52 - RequestID: poejjjhhg9l +2025-06-18T13:58:27.181Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 363ms - Rows affected: 5 - RequestID: gfxlno8n75r +2025-06-18T13:58:27.281Z [TRACE] user-service - Operation: email_sent - Processing time: 239ms - RequestID: pjoieqrcvac +2025-06-18T13:58:27.381Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 984ms - RequestID: bxdzwmsht2l +2025-06-18T13:58:27.481Z [INFO] auth-service - Operation: payment_processed - Processing time: 205ms - RequestID: kectcy6b3jl +2025-06-18T13:58:27.581Z [DEBUG] notification-service - Auth event: logout - User: user_1047 - IP: 192.168.81.206 - RequestID: 4uvvhqtn9ti +2025-06-18T13:58:27.681Z [INFO] user-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.68.158 - RequestID: uzt5rtg4ho8 +2025-06-18T13:58:27.781Z [TRACE] order-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.227.77 - RequestID: qg28fvr6rqa +2025-06-18T13:58:27.881Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 345ms - Rows affected: 25 - RequestID: yml5tizcyh +2025-06-18T13:58:27.981Z [INFO] auth-service - Operation: email_sent - Processing time: 921ms - RequestID: zutq7xrt9q8 +2025-06-18T13:58:28.081Z [TRACE] auth-service - Operation: order_created - Processing time: 176ms - RequestID: hikuadazcgw +2025-06-18T13:58:28.181Z [TRACE] user-service - Operation: payment_processed - Processing time: 247ms - RequestID: 8zf1wm4k5c4 +2025-06-18T13:58:28.281Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 302ms - Rows affected: 45 - RequestID: ei80a4xy0yc +2025-06-18T13:58:28.381Z [INFO] user-service - Operation: cache_hit - Processing time: 624ms - RequestID: 2bjgxfd2lf3 +2025-06-18T13:58:28.481Z [DEBUG] order-service - Auth event: login_success - User: user_1055 - IP: 192.168.28.146 - RequestID: r5gkzyevjdk +2025-06-18T13:58:28.581Z [DEBUG] payment-service - POST /api/v1/users - Status: 404 - Response time: 689ms - IP: 192.168.147.171 - User: user_1043 - RequestID: gjldb23oltq +2025-06-18T13:58:28.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.242.165 - RequestID: yuzecq9vlck +2025-06-18T13:58:28.781Z [TRACE] user-service - Auth event: password_change - User: user_1064 - IP: 192.168.158.144 - RequestID: iujvj0nehjs +2025-06-18T13:58:28.881Z [INFO] notification-service - Database SELECT on users - Execution time: 195ms - Rows affected: 32 - RequestID: 6hrwh0ffvae +2025-06-18T13:58:28.981Z [TRACE] auth-service - Operation: order_created - Processing time: 853ms - RequestID: f5lzvh7qs0d +2025-06-18T13:58:29.081Z [TRACE] user-service - Auth event: logout - User: user_1027 - IP: 192.168.227.77 - RequestID: 1x9bla8xm6s +2025-06-18T13:58:29.181Z [TRACE] user-service - Database INSERT on orders - Execution time: 294ms - Rows affected: 76 - RequestID: 7y158zq7qd5 +2025-06-18T13:58:29.281Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 500 - Response time: 124ms - IP: 192.168.189.103 - User: user_1025 - RequestID: 9mbu3khdqs +2025-06-18T13:58:29.381Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 201 - Response time: 850ms - IP: 192.168.167.32 - User: user_1010 - RequestID: dndt5qpx04n +2025-06-18T13:58:29.481Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1639ms - IP: 192.168.79.116 - User: user_1002 - RequestID: yn4w8yc1uda +2025-06-18T13:58:29.581Z [INFO] notification-service - POST /api/v1/users - Status: 401 - Response time: 922ms - IP: 192.168.159.94 - User: user_1006 - RequestID: z5n9uq9y02c +2025-06-18T13:58:29.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.11.60 - RequestID: 2ic4ug7mk9h +2025-06-18T13:58:29.781Z [DEBUG] user-service - Database DELETE on payments - Execution time: 229ms - Rows affected: 81 - RequestID: 6fe2dw4fxre +2025-06-18T13:58:29.881Z [TRACE] notification-service - Operation: payment_processed - Processing time: 601ms - RequestID: 86tzt6pcyn +2025-06-18T13:58:29.981Z [TRACE] order-service - Database DELETE on sessions - Execution time: 299ms - Rows affected: 65 - RequestID: i1bs3x9smq +2025-06-18T13:58:30.081Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 401 - Response time: 625ms - IP: 192.168.85.229 - User: user_1032 - RequestID: 5b02539imlg +2025-06-18T13:58:30.181Z [INFO] order-service - Database INSERT on orders - Execution time: 136ms - Rows affected: 72 - RequestID: bnuj3p12g8 +2025-06-18T13:58:30.281Z [INFO] auth-service - Auth event: logout - User: user_1066 - IP: 192.168.81.206 - RequestID: fhe5td21sci +2025-06-18T13:58:30.381Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 312ms - IP: 192.168.189.103 - User: user_1066 - RequestID: mpe7r7oixv +2025-06-18T13:58:30.481Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1961ms - IP: 192.168.68.158 - User: user_1096 - RequestID: 9xedj5yjze5 +2025-06-18T13:58:30.581Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 443ms - Rows affected: 78 - RequestID: k52l7oljxh +2025-06-18T13:58:30.681Z [INFO] payment-service - Auth event: login_failed - User: user_1025 - IP: 192.168.28.146 - RequestID: m5v2n1llznf +2025-06-18T13:58:30.781Z [INFO] notification-service - Operation: webhook_sent - Processing time: 783ms - RequestID: i7mkuhxi1no +2025-06-18T13:58:30.881Z [INFO] inventory-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.36.218 - RequestID: lzkdyb51sgd +2025-06-18T13:58:30.981Z [INFO] order-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.31.117 - RequestID: x5a0wr47hos +2025-06-18T13:58:31.081Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 203ms - IP: 192.168.113.218 - User: user_1040 - RequestID: 8jfoz7577k5 +2025-06-18T13:58:31.181Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1118ms - IP: 192.168.28.146 - User: user_1057 - RequestID: 3v1jwx1ckaq +2025-06-18T13:58:31.281Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 700ms - RequestID: t756w8su8qb +2025-06-18T13:58:31.381Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 404 - Response time: 1686ms - IP: 192.168.147.171 - User: user_1037 - RequestID: qe6tg4ygqyc +2025-06-18T13:58:31.481Z [DEBUG] inventory-service - Operation: order_created - Processing time: 595ms - RequestID: 2hwma2tooqq +2025-06-18T13:58:31.581Z [TRACE] notification-service - Database INSERT on products - Execution time: 447ms - Rows affected: 4 - RequestID: y98v25yc3os +2025-06-18T13:58:31.681Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 72ms - RequestID: btzmgbpqfk +2025-06-18T13:58:31.781Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 215ms - Rows affected: 22 - RequestID: y14puoyii4 +2025-06-18T13:58:31.881Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 29ms - Rows affected: 5 - RequestID: yrtczbpr6ok +2025-06-18T13:58:31.981Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 339ms - RequestID: 2d7pzqb972n +2025-06-18T13:58:32.081Z [TRACE] order-service - Database SELECT on payments - Execution time: 371ms - Rows affected: 60 - RequestID: 5btdf6fpbnc +2025-06-18T13:58:32.181Z [INFO] order-service - POST /api/v1/orders - Status: 401 - Response time: 1986ms - IP: 192.168.79.143 - User: user_1094 - RequestID: donb2r24tgv +2025-06-18T13:58:32.281Z [DEBUG] user-service - Database INSERT on payments - Execution time: 339ms - Rows affected: 6 - RequestID: sm67u77da4c +2025-06-18T13:58:32.381Z [TRACE] user-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.158.144 - RequestID: 7bzxtd8mjbv +2025-06-18T13:58:32.481Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 450ms - RequestID: dnycts2hppv +2025-06-18T13:58:32.581Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 204ms - Rows affected: 59 - RequestID: mjuwm48fnwj +2025-06-18T13:58:32.681Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1495ms - IP: 192.168.240.169 - User: user_1074 - RequestID: aexk7mdy2l8 +2025-06-18T13:58:32.781Z [INFO] inventory-service - Auth event: login_success - User: user_1060 - IP: 192.168.187.199 - RequestID: qg2o2v4kms +2025-06-18T13:58:32.881Z [TRACE] user-service - Auth event: logout - User: user_1094 - IP: 192.168.242.165 - RequestID: 141i3xswkdug +2025-06-18T13:58:32.981Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 737ms - RequestID: naac2idb8oj +2025-06-18T13:58:33.081Z [TRACE] inventory-service - POST /api/v1/payments - Status: 503 - Response time: 438ms - IP: 192.168.144.38 - User: user_1044 - RequestID: b4gse4koqmi +2025-06-18T13:58:33.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 257ms - RequestID: j2d21uj7n3 +2025-06-18T13:58:33.281Z [INFO] user-service - Operation: cache_miss - Processing time: 697ms - RequestID: kieeuo5fyws +2025-06-18T13:58:33.381Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 226ms - Rows affected: 53 - RequestID: ld8u9qc03r +2025-06-18T13:58:33.481Z [DEBUG] user-service - Operation: notification_queued - Processing time: 78ms - RequestID: zbeedu1vnzh +2025-06-18T13:58:33.581Z [TRACE] order-service - Database DELETE on payments - Execution time: 123ms - Rows affected: 62 - RequestID: 4kaqkf990j8 +2025-06-18T13:58:33.681Z [INFO] user-service - Database UPDATE on products - Execution time: 489ms - Rows affected: 72 - RequestID: tetm8y5nd38 +2025-06-18T13:58:33.781Z [TRACE] inventory-service - Auth event: login_failed - User: user_1049 - IP: 192.168.11.60 - RequestID: tqllhhpj09 +2025-06-18T13:58:33.881Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 45ms - Rows affected: 94 - RequestID: 5dqi7nfffu9 +2025-06-18T13:58:33.981Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 95ms - Rows affected: 69 - RequestID: yxbkits4yt +2025-06-18T13:58:34.081Z [INFO] user-service - Auth event: login_success - User: user_1020 - IP: 192.168.104.37 - RequestID: oa757bsubos +2025-06-18T13:58:34.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 324ms - RequestID: tmjo3n3lwwb +2025-06-18T13:58:34.281Z [DEBUG] auth-service - Operation: order_created - Processing time: 766ms - RequestID: oo9x99yfter +2025-06-18T13:58:34.381Z [TRACE] order-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.242.165 - RequestID: g9i8oe9c9da +2025-06-18T13:58:34.481Z [DEBUG] user-service - POST /api/v1/orders - Status: 404 - Response time: 1847ms - IP: 192.168.36.218 - User: user_1077 - RequestID: n4uhpoho0wb +2025-06-18T13:58:34.581Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 261ms - Rows affected: 27 - RequestID: 45cdf4cojba +2025-06-18T13:58:34.681Z [TRACE] user-service - Auth event: password_change - User: user_1019 - IP: 192.168.31.117 - RequestID: osr7emakf9n +2025-06-18T13:58:34.781Z [INFO] user-service - GET /api/v1/orders - Status: 200 - Response time: 875ms - IP: 192.168.64.33 - User: user_1069 - RequestID: bpf2w3mp8zt +2025-06-18T13:58:34.881Z [INFO] notification-service - POST /api/v1/orders - Status: 201 - Response time: 1852ms - IP: 192.168.181.225 - User: user_1007 - RequestID: 7i9l7kycie8 +2025-06-18T13:58:34.981Z [TRACE] auth-service - POST /api/v1/payments - Status: 503 - Response time: 1733ms - IP: 192.168.240.169 - User: user_1065 - RequestID: 03nl44k37f9u +2025-06-18T13:58:35.081Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 58ms - Rows affected: 99 - RequestID: g8e6kzhha18 +2025-06-18T13:58:35.181Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1532ms - IP: 192.168.46.63 - User: user_1056 - RequestID: 9d9vpyzs3za +2025-06-18T13:58:35.281Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 401 - Response time: 876ms - IP: 192.168.240.169 - User: user_1009 - RequestID: ocilb2x8fk +2025-06-18T13:58:35.381Z [TRACE] notification-service - Operation: email_sent - Processing time: 673ms - RequestID: dxxkjpnpf4g +2025-06-18T13:58:35.481Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 369ms - RequestID: pzdfnqhq9l +2025-06-18T13:58:35.581Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 424ms - Rows affected: 81 - RequestID: 34rywyy1sev +2025-06-18T13:58:35.681Z [TRACE] order-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.53.133 - RequestID: tn2uq4tz3e +2025-06-18T13:58:35.781Z [INFO] order-service - Auth event: login_failed - User: user_1087 - IP: 192.168.79.116 - RequestID: j69bdprf75q +2025-06-18T13:58:35.881Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 159ms - Rows affected: 93 - RequestID: 7t9zbgfbx37 +2025-06-18T13:58:35.981Z [INFO] notification-service - PUT /api/v1/users - Status: 200 - Response time: 1234ms - IP: 192.168.1.152 - User: user_1079 - RequestID: yyai3k0kak9 +2025-06-18T13:58:36.081Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 94ms - RequestID: secnso81el9 +2025-06-18T13:58:36.181Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 366ms - Rows affected: 21 - RequestID: w0oy0l7fps +2025-06-18T13:58:36.281Z [INFO] user-service - Auth event: login_success - User: user_1040 - IP: 192.168.33.76 - RequestID: mwyis4qw4p +2025-06-18T13:58:36.381Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1704ms - IP: 192.168.36.218 - User: user_1012 - RequestID: q8rmqoc8fu +2025-06-18T13:58:36.481Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 77ms - Rows affected: 15 - RequestID: sin7o9oae2f +2025-06-18T13:58:36.581Z [INFO] notification-service - Operation: email_sent - Processing time: 662ms - RequestID: md2anjbzq28 +2025-06-18T13:58:36.681Z [DEBUG] order-service - Database INSERT on products - Execution time: 302ms - Rows affected: 29 - RequestID: d4pqi311njm +2025-06-18T13:58:36.781Z [TRACE] notification-service - Database INSERT on users - Execution time: 8ms - Rows affected: 89 - RequestID: t2ali56nab +2025-06-18T13:58:36.881Z [INFO] payment-service - Operation: email_sent - Processing time: 492ms - RequestID: xv3sisi214 +2025-06-18T13:58:36.981Z [DEBUG] order-service - Operation: order_created - Processing time: 650ms - RequestID: bixl8q9cw1i +2025-06-18T13:58:37.081Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 477ms - RequestID: lmi5exutpue +2025-06-18T13:58:37.181Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 502 - Response time: 1376ms - IP: 192.168.10.184 - User: user_1055 - RequestID: mj6iq79q9g +2025-06-18T13:58:37.281Z [TRACE] order-service - Database SELECT on users - Execution time: 495ms - Rows affected: 64 - RequestID: v3pc6bil68g +2025-06-18T13:58:37.381Z [INFO] user-service - Auth event: logout - User: user_1023 - IP: 192.168.30.79 - RequestID: f5pxq17gya +2025-06-18T13:58:37.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.170.215 - RequestID: y19i3p96e8p +2025-06-18T13:58:37.581Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 484ms - RequestID: yb3p0ygk8h +2025-06-18T13:58:37.681Z [TRACE] notification-service - DELETE /api/v1/users - Status: 403 - Response time: 1638ms - IP: 192.168.144.38 - User: user_1064 - RequestID: izjhvjkz23q +2025-06-18T13:58:37.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.79.143 - RequestID: jcgbi3x3y2e +2025-06-18T13:58:37.881Z [INFO] order-service - Database SELECT on sessions - Execution time: 442ms - Rows affected: 48 - RequestID: qn9x7xzmiad +2025-06-18T13:58:37.981Z [TRACE] order-service - Operation: webhook_sent - Processing time: 512ms - RequestID: kmfgxrdt5hq +2025-06-18T13:58:38.081Z [INFO] notification-service - Operation: cache_miss - Processing time: 316ms - RequestID: qippebovl3 +2025-06-18T13:58:38.181Z [DEBUG] order-service - Auth event: login_success - User: user_1094 - IP: 192.168.79.143 - RequestID: piqjlhsqbgk +2025-06-18T13:58:38.281Z [INFO] notification-service - Database INSERT on users - Execution time: 249ms - Rows affected: 82 - RequestID: 56zeavk0p37 +2025-06-18T13:58:38.381Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1474ms - IP: 192.168.158.144 - User: user_1093 - RequestID: p7rr1vczfdk +2025-06-18T13:58:38.481Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 244ms - Rows affected: 82 - RequestID: hh6jgikil7k +2025-06-18T13:58:38.581Z [TRACE] user-service - PATCH /api/v1/users - Status: 500 - Response time: 330ms - IP: 192.168.14.77 - User: user_1072 - RequestID: qwqoqc3bjhb +2025-06-18T13:58:38.681Z [TRACE] auth-service - PUT /api/v1/users - Status: 403 - Response time: 1534ms - IP: 192.168.235.117 - User: user_1071 - RequestID: 3qys7iersba +2025-06-18T13:58:38.781Z [INFO] notification-service - Operation: order_created - Processing time: 352ms - RequestID: 3ic529glxxx +2025-06-18T13:58:38.881Z [INFO] auth-service - GET /api/v1/inventory - Status: 400 - Response time: 81ms - IP: 192.168.174.114 - User: user_1065 - RequestID: zmv8jd56pj +2025-06-18T13:58:38.981Z [INFO] payment-service - DELETE /api/v1/payments - Status: 200 - Response time: 720ms - IP: 192.168.79.141 - User: user_1091 - RequestID: 5wyoztooifa +2025-06-18T13:58:39.081Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 400 - Response time: 1404ms - IP: 192.168.133.7 - User: user_1018 - RequestID: gin4sqbnzy +2025-06-18T13:58:39.181Z [INFO] payment-service - Database UPDATE on payments - Execution time: 57ms - Rows affected: 75 - RequestID: iedjrpz8j1 +2025-06-18T13:58:39.281Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1928ms - IP: 192.168.240.169 - User: user_1025 - RequestID: 42fu5kd4j2n +2025-06-18T13:58:39.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.28.146 - RequestID: um6t4kdfq4e +2025-06-18T13:58:39.481Z [INFO] order-service - Operation: cache_miss - Processing time: 830ms - RequestID: r3be29dh7rn +2025-06-18T13:58:39.581Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 395ms - Rows affected: 18 - RequestID: kut770r2dxq +2025-06-18T13:58:39.681Z [INFO] notification-service - Auth event: logout - User: user_1050 - IP: 192.168.227.233 - RequestID: kw7c7s28yc +2025-06-18T13:58:39.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1008 - IP: 192.168.32.38 - RequestID: ke292j368r +2025-06-18T13:58:39.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1006 - IP: 192.168.14.77 - RequestID: tv0je14i8u9 +2025-06-18T13:58:39.981Z [TRACE] user-service - POST /api/v1/inventory - Status: 403 - Response time: 54ms - IP: 192.168.33.76 - User: user_1000 - RequestID: ldejadofyz +2025-06-18T13:58:40.081Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1673ms - IP: 192.168.79.143 - User: user_1020 - RequestID: p6ptd9qsq3o +2025-06-18T13:58:40.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1051 - IP: 192.168.235.117 - RequestID: 43a07p0wmqr +2025-06-18T13:58:40.281Z [TRACE] user-service - Database DELETE on sessions - Execution time: 37ms - Rows affected: 55 - RequestID: g3oknk0kgou +2025-06-18T13:58:40.381Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 400 - Response time: 123ms - IP: 192.168.242.165 - User: user_1095 - RequestID: q0qcs8u77k +2025-06-18T13:58:40.481Z [TRACE] auth-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.31.117 - RequestID: btrfgn3zzyv +2025-06-18T13:58:40.581Z [TRACE] payment-service - Auth event: login_failed - User: user_1042 - IP: 192.168.33.76 - RequestID: f0k1w5vi7nu +2025-06-18T13:58:40.681Z [INFO] user-service - Auth event: logout - User: user_1005 - IP: 192.168.229.123 - RequestID: trm2koazaw +2025-06-18T13:58:40.781Z [INFO] inventory-service - Database INSERT on users - Execution time: 179ms - Rows affected: 98 - RequestID: gle67rjhlql +2025-06-18T13:58:40.881Z [TRACE] order-service - Database UPDATE on users - Execution time: 241ms - Rows affected: 5 - RequestID: 56bp1zar8it +2025-06-18T13:58:40.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 342ms - RequestID: sc431yzvc8l +2025-06-18T13:58:41.081Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 331ms - Rows affected: 13 - RequestID: bmdf766jxgo +2025-06-18T13:58:41.181Z [INFO] payment-service - Database INSERT on payments - Execution time: 153ms - Rows affected: 90 - RequestID: 0owvosn17qc +2025-06-18T13:58:41.281Z [INFO] notification-service - DELETE /api/v1/users - Status: 500 - Response time: 1388ms - IP: 192.168.240.169 - User: user_1056 - RequestID: tjj8amygyjk +2025-06-18T13:58:41.381Z [TRACE] payment-service - Database INSERT on payments - Execution time: 388ms - Rows affected: 67 - RequestID: 7x869dhfxrv +2025-06-18T13:58:41.481Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 325ms - Rows affected: 91 - RequestID: s6bg04dql9i +2025-06-18T13:58:41.581Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 359ms - Rows affected: 86 - RequestID: e6arl9jigow +2025-06-18T13:58:41.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 684ms - RequestID: cicxr7emeov +2025-06-18T13:58:41.781Z [DEBUG] payment-service - Database INSERT on products - Execution time: 84ms - Rows affected: 73 - RequestID: auj9jmdu9re +2025-06-18T13:58:41.881Z [INFO] notification-service - Operation: email_sent - Processing time: 399ms - RequestID: diyz5tct6xo +2025-06-18T13:58:41.981Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 85ms - Rows affected: 43 - RequestID: tz6f51d78iq +2025-06-18T13:58:42.081Z [INFO] user-service - Auth event: logout - User: user_1085 - IP: 192.168.36.218 - RequestID: n78be30co0l +2025-06-18T13:58:42.181Z [INFO] notification-service - Operation: notification_queued - Processing time: 218ms - RequestID: 9cjpqhuvbtj +2025-06-18T13:58:42.281Z [TRACE] user-service - POST /api/v1/auth/login - Status: 403 - Response time: 1966ms - IP: 192.168.32.38 - User: user_1002 - RequestID: 3o3df29k3gm +2025-06-18T13:58:42.381Z [DEBUG] user-service - Operation: cache_miss - Processing time: 858ms - RequestID: tjvfqrq9sla +2025-06-18T13:58:42.481Z [INFO] auth-service - Operation: webhook_sent - Processing time: 76ms - RequestID: qun53i4tec +2025-06-18T13:58:42.581Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1059 - IP: 192.168.79.116 - RequestID: ndupt5qrsdd +2025-06-18T13:58:42.681Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 475ms - Rows affected: 22 - RequestID: lhg8ex4pjte +2025-06-18T13:58:42.781Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1015ms - IP: 192.168.158.144 - User: user_1047 - RequestID: uz97m7foqji +2025-06-18T13:58:42.881Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 737ms - RequestID: 6h20yc61y5s +2025-06-18T13:58:42.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1004 - IP: 192.168.79.141 - RequestID: j3spj52v938 +2025-06-18T13:58:43.081Z [INFO] order-service - Auth event: login_success - User: user_1066 - IP: 192.168.33.76 - RequestID: fwywvn1f7i8 +2025-06-18T13:58:43.181Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 494ms - Rows affected: 92 - RequestID: f1405xax7ni +2025-06-18T13:58:43.281Z [INFO] payment-service - Auth event: login_success - User: user_1005 - IP: 192.168.113.218 - RequestID: whskmod182 +2025-06-18T13:58:43.381Z [INFO] user-service - Database UPDATE on products - Execution time: 267ms - Rows affected: 25 - RequestID: gmakltvbqjm +2025-06-18T13:58:43.481Z [INFO] auth-service - PATCH /api/v1/payments - Status: 201 - Response time: 381ms - IP: 192.168.194.41 - User: user_1054 - RequestID: dad033986bj +2025-06-18T13:58:43.581Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 928ms - IP: 192.168.10.184 - User: user_1097 - RequestID: 7z81safl3lu +2025-06-18T13:58:43.681Z [TRACE] payment-service - Operation: email_sent - Processing time: 957ms - RequestID: k3p1omfw5ip +2025-06-18T13:58:43.781Z [TRACE] order-service - Database INSERT on users - Execution time: 153ms - Rows affected: 99 - RequestID: 3qkejpig5xb +2025-06-18T13:58:43.881Z [DEBUG] user-service - Operation: payment_processed - Processing time: 818ms - RequestID: lsjexqeo08n +2025-06-18T13:58:43.981Z [INFO] auth-service - Operation: payment_processed - Processing time: 807ms - RequestID: f8nq9imb5nf +2025-06-18T13:58:44.081Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 1047ms - RequestID: wwdchn01wl8 +2025-06-18T13:58:44.181Z [TRACE] order-service - Database INSERT on products - Execution time: 476ms - Rows affected: 48 - RequestID: 1s8y5y5hu3y +2025-06-18T13:58:44.281Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 957ms - RequestID: wn2uxjdu4e +2025-06-18T13:58:44.381Z [INFO] auth-service - Auth event: login_success - User: user_1086 - IP: 192.168.187.199 - RequestID: g87quki7hy6 +2025-06-18T13:58:44.481Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.235.117 - RequestID: w05071op0xk +2025-06-18T13:58:44.581Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.232.72 - RequestID: l1mqomefi4r +2025-06-18T13:58:44.681Z [INFO] user-service - Database UPDATE on orders - Execution time: 435ms - Rows affected: 78 - RequestID: 6q060rm6x9x +2025-06-18T13:58:44.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.242.165 - RequestID: 9t1j2nj49xl +2025-06-18T13:58:44.881Z [TRACE] notification-service - PUT /api/v1/users - Status: 500 - Response time: 548ms - IP: 192.168.247.134 - User: user_1043 - RequestID: 8ffzn6n149x +2025-06-18T13:58:44.981Z [TRACE] auth-service - Auth event: login_success - User: user_1034 - IP: 192.168.242.165 - RequestID: 3gfcgiyejxj +2025-06-18T13:58:45.081Z [DEBUG] user-service - POST /api/v1/payments - Status: 404 - Response time: 1353ms - IP: 192.168.174.114 - User: user_1080 - RequestID: zinr9ctnpon +2025-06-18T13:58:45.181Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 402ms - Rows affected: 66 - RequestID: kzu96rbr05 +2025-06-18T13:58:45.281Z [TRACE] payment-service - Operation: order_created - Processing time: 607ms - RequestID: i28g9metpr +2025-06-18T13:58:45.381Z [INFO] auth-service - Operation: cache_miss - Processing time: 75ms - RequestID: s5xx3uhjg3m +2025-06-18T13:58:45.481Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 288ms - Rows affected: 29 - RequestID: onzdduh7l0t +2025-06-18T13:58:45.581Z [TRACE] payment-service - Auth event: login_success - User: user_1038 - IP: 192.168.242.165 - RequestID: cl9u0trcnx +2025-06-18T13:58:45.681Z [DEBUG] inventory-service - GET /api/v1/users - Status: 200 - Response time: 1574ms - IP: 192.168.229.123 - User: user_1030 - RequestID: xgvathp3dh7 +2025-06-18T13:58:45.781Z [DEBUG] user-service - Operation: notification_queued - Processing time: 393ms - RequestID: x9jhs4873nc +2025-06-18T13:58:45.881Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 85ms - Rows affected: 12 - RequestID: sg41p52gw1p +2025-06-18T13:58:45.981Z [DEBUG] payment-service - Database SELECT on products - Execution time: 351ms - Rows affected: 74 - RequestID: grq5rvtk62d +2025-06-18T13:58:46.081Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 341ms - Rows affected: 16 - RequestID: e4nvg8wqz76 +2025-06-18T13:58:46.181Z [INFO] user-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.158.144 - RequestID: m1uejrkunin +2025-06-18T13:58:46.281Z [DEBUG] payment-service - POST /api/v1/payments - Status: 404 - Response time: 1207ms - IP: 192.168.229.123 - User: user_1047 - RequestID: z7ukt3r0hq +2025-06-18T13:58:46.381Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 545ms - RequestID: lm7kmqsvf +2025-06-18T13:58:46.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.159.94 - RequestID: 56oguc18wxw +2025-06-18T13:58:46.581Z [DEBUG] inventory-service - Operation: order_created - Processing time: 770ms - RequestID: 2la6n03ko36 +2025-06-18T13:58:46.681Z [INFO] inventory-service - Operation: email_sent - Processing time: 670ms - RequestID: d9vf3bn694 +2025-06-18T13:58:46.781Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 726ms - RequestID: qucwi76apj +2025-06-18T13:58:46.881Z [INFO] payment-service - Operation: payment_processed - Processing time: 314ms - RequestID: bel5uyb6s1s +2025-06-18T13:58:46.981Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1117ms - IP: 192.168.159.94 - User: user_1046 - RequestID: krj0rv9ly8m +2025-06-18T13:58:47.081Z [INFO] order-service - Database UPDATE on orders - Execution time: 436ms - Rows affected: 57 - RequestID: j7m5ljclx9j +2025-06-18T13:58:47.181Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 492ms - IP: 192.168.158.144 - User: user_1044 - RequestID: 2m6f3t4tuqy +2025-06-18T13:58:47.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 258ms - RequestID: atk8mb43327 +2025-06-18T13:58:47.381Z [DEBUG] payment-service - Auth event: password_change - User: user_1000 - IP: 192.168.141.100 - RequestID: 5tux5abvvc9 +2025-06-18T13:58:47.481Z [TRACE] order-service - Operation: inventory_updated - Processing time: 647ms - RequestID: n1odoy1w4a8 +2025-06-18T13:58:47.581Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 388ms - Rows affected: 69 - RequestID: muayodssyx +2025-06-18T13:58:47.681Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 404 - Response time: 570ms - IP: 192.168.97.87 - User: user_1068 - RequestID: 9nl5d4cvtlr +2025-06-18T13:58:47.781Z [TRACE] order-service - Auth event: password_change - User: user_1054 - IP: 192.168.113.218 - RequestID: przb0b4tmxc +2025-06-18T13:58:47.881Z [TRACE] notification-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.104.37 - RequestID: izxk233sdim +2025-06-18T13:58:47.981Z [TRACE] order-service - Operation: inventory_updated - Processing time: 940ms - RequestID: a83hhkf5jus +2025-06-18T13:58:48.081Z [TRACE] user-service - Auth event: login_failed - User: user_1002 - IP: 192.168.31.117 - RequestID: j9xnjs30enm +2025-06-18T13:58:48.181Z [TRACE] notification-service - Operation: email_sent - Processing time: 434ms - RequestID: 94igth10vyu +2025-06-18T13:58:48.281Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 1042ms - RequestID: ij7kf2srgso +2025-06-18T13:58:48.381Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 954ms - IP: 192.168.11.60 - User: user_1005 - RequestID: teon84nvs0j +2025-06-18T13:58:48.481Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 462ms - Rows affected: 18 - RequestID: l6xs7tfwplm +2025-06-18T13:58:48.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.79.143 - RequestID: qw90ja60eh +2025-06-18T13:58:48.681Z [INFO] notification-service - Auth event: login_failed - User: user_1047 - IP: 192.168.141.100 - RequestID: guh07bx485p +2025-06-18T13:58:48.781Z [TRACE] order-service - Database INSERT on products - Execution time: 435ms - Rows affected: 70 - RequestID: oubpmvkqcgg +2025-06-18T13:58:48.881Z [TRACE] user-service - Operation: cache_miss - Processing time: 598ms - RequestID: t5gcigz1elf +2025-06-18T13:58:48.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 337ms - RequestID: ukl4mdfne5q +2025-06-18T13:58:49.081Z [INFO] order-service - Auth event: login_failed - User: user_1043 - IP: 192.168.189.103 - RequestID: x8878ejyjb7 +2025-06-18T13:58:49.181Z [TRACE] user-service - GET /api/v1/inventory - Status: 503 - Response time: 893ms - IP: 192.168.79.116 - User: user_1007 - RequestID: 10p107pykodf +2025-06-18T13:58:49.281Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 373ms - Rows affected: 5 - RequestID: vw9w4am9n1 +2025-06-18T13:58:49.381Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 619ms - IP: 192.168.36.218 - User: user_1061 - RequestID: qdcfn0cq4d +2025-06-18T13:58:49.481Z [INFO] order-service - Auth event: login_failed - User: user_1030 - IP: 192.168.13.72 - RequestID: uucca19mdh +2025-06-18T13:58:49.581Z [TRACE] user-service - Operation: inventory_updated - Processing time: 970ms - RequestID: a256pblgq2s +2025-06-18T13:58:49.681Z [TRACE] inventory-service - Auth event: logout - User: user_1064 - IP: 192.168.181.225 - RequestID: huj41hxvs3 +2025-06-18T13:58:49.781Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 1487ms - IP: 192.168.30.79 - User: user_1016 - RequestID: sfsrwnukfbb +2025-06-18T13:58:49.881Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 401 - Response time: 1496ms - IP: 192.168.33.76 - User: user_1021 - RequestID: 8drogyywqhh +2025-06-18T13:58:49.981Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 349ms - Rows affected: 4 - RequestID: 80qatw5t85u +2025-06-18T13:58:50.081Z [TRACE] user-service - Operation: cache_miss - Processing time: 300ms - RequestID: vcezv7d7k7i +2025-06-18T13:58:50.181Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 490ms - Rows affected: 39 - RequestID: x33k8tl02v +2025-06-18T13:58:50.281Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1995ms - IP: 192.168.235.117 - User: user_1084 - RequestID: 31ilcg2ajm3 +2025-06-18T13:58:50.381Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 462ms - RequestID: lxbjebrb808 +2025-06-18T13:58:50.481Z [DEBUG] user-service - Operation: order_created - Processing time: 658ms - RequestID: nsi01nx8rq +2025-06-18T13:58:50.581Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1756ms - IP: 192.168.194.41 - User: user_1059 - RequestID: 18vbcphzt22 +2025-06-18T13:58:50.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1003 - IP: 192.168.33.76 - RequestID: 49c576nnvjw +2025-06-18T13:58:50.781Z [TRACE] user-service - Operation: payment_processed - Processing time: 641ms - RequestID: h84xnxfwz0u +2025-06-18T13:58:50.881Z [INFO] auth-service - Auth event: login_success - User: user_1093 - IP: 192.168.194.41 - RequestID: ny75t7wn2j +2025-06-18T13:58:50.981Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 500 - Response time: 573ms - IP: 192.168.247.134 - User: user_1072 - RequestID: o53tmlhuk5l +2025-06-18T13:58:51.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.247.134 - RequestID: oxyim6jhrvh +2025-06-18T13:58:51.181Z [INFO] payment-service - Operation: cache_miss - Processing time: 213ms - RequestID: 2oy50cky5ue +2025-06-18T13:58:51.281Z [INFO] user-service - Database DELETE on users - Execution time: 113ms - Rows affected: 72 - RequestID: 7wmi3zdi9up +2025-06-18T13:58:51.381Z [TRACE] payment-service - Auth event: password_change - User: user_1026 - IP: 192.168.13.72 - RequestID: cjf7upkf7b6 +2025-06-18T13:58:51.481Z [INFO] auth-service - Database DELETE on payments - Execution time: 232ms - Rows affected: 69 - RequestID: ra0kskwjqr +2025-06-18T13:58:51.581Z [INFO] user-service - Database SELECT on products - Execution time: 308ms - Rows affected: 89 - RequestID: b8gpnnrzce4 +2025-06-18T13:58:51.681Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1771ms - IP: 192.168.33.76 - User: user_1068 - RequestID: 1ortr6pvoc2 +2025-06-18T13:58:51.781Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 189ms - RequestID: xxbq89w2fv +2025-06-18T13:58:51.881Z [INFO] notification-service - Auth event: logout - User: user_1015 - IP: 192.168.159.94 - RequestID: d4g96a02llr +2025-06-18T13:58:51.981Z [INFO] order-service - Database DELETE on products - Execution time: 86ms - Rows affected: 42 - RequestID: zoa05qlv9vj +2025-06-18T13:58:52.081Z [INFO] auth-service - GET /api/v1/payments - Status: 200 - Response time: 133ms - IP: 192.168.10.184 - User: user_1048 - RequestID: ugtt1s4p2x +2025-06-18T13:58:52.181Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 748ms - RequestID: y9iexev05id +2025-06-18T13:58:52.281Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 665ms - IP: 192.168.31.117 - User: user_1094 - RequestID: c0lkg62kk8 +2025-06-18T13:58:52.381Z [DEBUG] user-service - Operation: notification_queued - Processing time: 572ms - RequestID: cmeriiaoed +2025-06-18T13:58:52.481Z [DEBUG] auth-service - Operation: email_sent - Processing time: 363ms - RequestID: 1e1mtojadm6 +2025-06-18T13:58:52.581Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 917ms - RequestID: t9p3uafo9bm +2025-06-18T13:58:52.681Z [INFO] auth-service - Operation: payment_processed - Processing time: 149ms - RequestID: 2nmp195pwb2 +2025-06-18T13:58:52.781Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 426ms - Rows affected: 95 - RequestID: zs0eeeb30vh +2025-06-18T13:58:52.881Z [TRACE] order-service - Operation: inventory_updated - Processing time: 692ms - RequestID: 6p180kentvg +2025-06-18T13:58:52.981Z [INFO] auth-service - Database INSERT on sessions - Execution time: 310ms - Rows affected: 70 - RequestID: kemk5lqi2yk +2025-06-18T13:58:53.081Z [INFO] inventory-service - Auth event: password_change - User: user_1086 - IP: 192.168.85.229 - RequestID: t73c0fxy2y +2025-06-18T13:58:53.181Z [DEBUG] auth-service - Operation: order_created - Processing time: 781ms - RequestID: eakw6dq8tcl +2025-06-18T13:58:53.281Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 246ms - Rows affected: 11 - RequestID: 2cfizieijin +2025-06-18T13:58:53.381Z [INFO] auth-service - Auth event: login_failed - User: user_1026 - IP: 192.168.14.77 - RequestID: fdrykc3gefp +2025-06-18T13:58:53.481Z [INFO] order-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.28.146 - RequestID: 0zfvqqmnlrpk +2025-06-18T13:58:53.581Z [TRACE] user-service - Operation: notification_queued - Processing time: 230ms - RequestID: jpyqs8oxkuq +2025-06-18T13:58:53.681Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.11.60 - RequestID: pv1kfsve84k +2025-06-18T13:58:53.781Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.104.37 - RequestID: wk089mrcvn9 +2025-06-18T13:58:53.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 444ms - RequestID: icsmm8steg +2025-06-18T13:58:53.981Z [INFO] auth-service - Auth event: logout - User: user_1072 - IP: 192.168.147.171 - RequestID: 4jdavr0cn8y +2025-06-18T13:58:54.081Z [INFO] payment-service - Database INSERT on products - Execution time: 472ms - Rows affected: 63 - RequestID: 900fmjlowhl +2025-06-18T13:58:54.181Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 291ms - RequestID: khfecbe2oi +2025-06-18T13:58:54.281Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 99ms - Rows affected: 16 - RequestID: mf675bdme9 +2025-06-18T13:58:54.381Z [INFO] payment-service - Auth event: logout - User: user_1007 - IP: 192.168.85.229 - RequestID: 0spl1la00w6 +2025-06-18T13:58:54.481Z [TRACE] notification-service - Auth event: password_change - User: user_1039 - IP: 192.168.113.218 - RequestID: 7ul1wowdjfu +2025-06-18T13:58:54.581Z [INFO] payment-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.79.141 - RequestID: lhava6nqjl +2025-06-18T13:58:54.681Z [INFO] order-service - POST /api/v1/users - Status: 201 - Response time: 245ms - IP: 192.168.141.100 - User: user_1023 - RequestID: rf52zicxcl +2025-06-18T13:58:54.781Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 371ms - Rows affected: 15 - RequestID: ggt94g25wrc +2025-06-18T13:58:54.881Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.68.128 - RequestID: ag4ykfdpt5e +2025-06-18T13:58:54.981Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 400 - Response time: 1373ms - IP: 192.168.53.133 - User: user_1065 - RequestID: e4xin67dcx6 +2025-06-18T13:58:55.081Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 353ms - RequestID: rf66prm5u9 +2025-06-18T13:58:55.181Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 283ms - Rows affected: 11 - RequestID: 94r518zuz5l +2025-06-18T13:58:55.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.194.41 - RequestID: h69u2md0dee +2025-06-18T13:58:55.381Z [TRACE] inventory-service - Database DELETE on users - Execution time: 431ms - Rows affected: 41 - RequestID: huylve9itp4 +2025-06-18T13:58:55.481Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 479ms - Rows affected: 55 - RequestID: xl14djn9gym +2025-06-18T13:58:55.581Z [TRACE] order-service - Database UPDATE on products - Execution time: 462ms - Rows affected: 96 - RequestID: vmt2xuc6qxl +2025-06-18T13:58:55.681Z [TRACE] auth-service - GET /api/v1/orders - Status: 400 - Response time: 1495ms - IP: 192.168.138.123 - User: user_1021 - RequestID: cusxstrhrn +2025-06-18T13:58:55.781Z [INFO] payment-service - Database DELETE on orders - Execution time: 34ms - Rows affected: 38 - RequestID: ayjicwcr4bw +2025-06-18T13:58:55.881Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 380ms - Rows affected: 23 - RequestID: if5zugnz39 +2025-06-18T13:58:55.981Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 989ms - RequestID: o3l3ttc9uy9 +2025-06-18T13:58:56.081Z [TRACE] order-service - Database INSERT on products - Execution time: 189ms - Rows affected: 76 - RequestID: ajm0pihr5j +2025-06-18T13:58:56.181Z [TRACE] notification-service - Database SELECT on payments - Execution time: 136ms - Rows affected: 64 - RequestID: xshxwmxi36f +2025-06-18T13:58:56.281Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 711ms - IP: 192.168.14.77 - User: user_1008 - RequestID: eu0o27m1oee +2025-06-18T13:58:56.381Z [INFO] order-service - PUT /api/v1/payments - Status: 401 - Response time: 416ms - IP: 192.168.30.79 - User: user_1045 - RequestID: ds8oynaorr7 +2025-06-18T13:58:56.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 346ms - RequestID: scdocl7ua79 +2025-06-18T13:58:56.581Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 120ms - Rows affected: 96 - RequestID: jc0jgcctcnn +2025-06-18T13:58:56.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 282ms - RequestID: cg4qppb7h8v +2025-06-18T13:58:56.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.144.38 - RequestID: cccjv33eeru +2025-06-18T13:58:56.881Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 638ms - RequestID: qf8rol1qbyk +2025-06-18T13:58:56.981Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 478ms - Rows affected: 15 - RequestID: uh2pmxi4smb +2025-06-18T13:58:57.081Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 487ms - RequestID: zpa0w1ojs3e +2025-06-18T13:58:57.181Z [INFO] user-service - Database DELETE on sessions - Execution time: 368ms - Rows affected: 95 - RequestID: o6s58r8vfj +2025-06-18T13:58:57.281Z [TRACE] order-service - Database INSERT on users - Execution time: 234ms - Rows affected: 26 - RequestID: 6lv1id9dl2r +2025-06-18T13:58:57.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 884ms - RequestID: sgt4e34nluq +2025-06-18T13:58:57.481Z [TRACE] auth-service - POST /api/v1/inventory - Status: 404 - Response time: 268ms - IP: 192.168.113.218 - User: user_1087 - RequestID: 4k9lmdxklpw +2025-06-18T13:58:57.581Z [INFO] auth-service - PUT /api/v1/orders - Status: 200 - Response time: 998ms - IP: 192.168.104.37 - User: user_1013 - RequestID: 24dngurszv3j +2025-06-18T13:58:57.681Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 1796ms - IP: 192.168.227.233 - User: user_1041 - RequestID: 6hky8nfi5g +2025-06-18T13:58:57.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.68.158 - RequestID: 2g7y2v02pse +2025-06-18T13:58:57.881Z [INFO] payment-service - Database INSERT on orders - Execution time: 500ms - Rows affected: 54 - RequestID: u3raoanot59 +2025-06-18T13:58:57.981Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 503 - Response time: 636ms - IP: 192.168.81.206 - User: user_1088 - RequestID: tqk3kz93r1g +2025-06-18T13:58:58.081Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 588ms - RequestID: neyz5m27i29 +2025-06-18T13:58:58.181Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 441ms - Rows affected: 99 - RequestID: wc910arnus +2025-06-18T13:58:58.281Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 401 - Response time: 1056ms - IP: 192.168.141.100 - User: user_1018 - RequestID: fsipbyvsqa +2025-06-18T13:58:58.381Z [TRACE] auth-service - Database INSERT on products - Execution time: 220ms - Rows affected: 2 - RequestID: xnhu2u5li68 +2025-06-18T13:58:58.481Z [TRACE] auth-service - Auth event: login_success - User: user_1036 - IP: 192.168.68.128 - RequestID: dnavjsmmg7e +2025-06-18T13:58:58.581Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 403 - Response time: 92ms - IP: 192.168.32.38 - User: user_1059 - RequestID: pcv5smqqxif +2025-06-18T13:58:58.681Z [TRACE] user-service - Operation: notification_queued - Processing time: 227ms - RequestID: r0xdlc1k7y +2025-06-18T13:58:58.781Z [INFO] notification-service - Database UPDATE on payments - Execution time: 9ms - Rows affected: 73 - RequestID: sp975t55wfe +2025-06-18T13:58:58.881Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 687ms - RequestID: ty2wpnvpnph +2025-06-18T13:58:58.981Z [DEBUG] payment-service - Database DELETE on products - Execution time: 240ms - Rows affected: 74 - RequestID: fx5ywp7zzkq +2025-06-18T13:58:59.081Z [INFO] payment-service - PATCH /api/v1/orders - Status: 401 - Response time: 1492ms - IP: 192.168.33.76 - User: user_1089 - RequestID: lxgkz0neirr +2025-06-18T13:58:59.181Z [INFO] inventory-service - Database DELETE on orders - Execution time: 335ms - Rows affected: 38 - RequestID: j2r0wwfdkc +2025-06-18T13:58:59.281Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 1013ms - RequestID: u4izdwbauin +2025-06-18T13:58:59.381Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 869ms - RequestID: nm2rirxrbwk +2025-06-18T13:58:59.481Z [TRACE] notification-service - Operation: email_sent - Processing time: 435ms - RequestID: mh66q9stoyr +2025-06-18T13:58:59.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.147.171 - RequestID: 0gclh1tz2c +2025-06-18T13:58:59.681Z [INFO] payment-service - Operation: payment_processed - Processing time: 782ms - RequestID: e4xrcsnqlvq +2025-06-18T13:58:59.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1052 - IP: 192.168.227.77 - RequestID: vy6lfmdy6n +2025-06-18T13:58:59.881Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 413ms - Rows affected: 72 - RequestID: g0or0qpaaho +2025-06-18T13:58:59.981Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 433ms - Rows affected: 83 - RequestID: 68tt3byla06 +2025-06-18T13:59:00.081Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 445ms - Rows affected: 50 - RequestID: 6lr6yepkiit +2025-06-18T13:59:00.181Z [INFO] auth-service - GET /api/v1/users - Status: 201 - Response time: 897ms - IP: 192.168.181.225 - User: user_1008 - RequestID: 0ubh5blang7a +2025-06-18T13:59:00.281Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 1785ms - IP: 192.168.14.77 - User: user_1060 - RequestID: 9m665jhi705 +2025-06-18T13:59:00.381Z [TRACE] payment-service - Auth event: logout - User: user_1040 - IP: 192.168.227.233 - RequestID: i5pp77fcrc +2025-06-18T13:59:00.481Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 500 - Response time: 1335ms - IP: 192.168.32.38 - User: user_1068 - RequestID: mti6ywv3bbk +2025-06-18T13:59:00.581Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1089 - IP: 192.168.30.79 - RequestID: fy3v0ekvjw +2025-06-18T13:59:00.681Z [DEBUG] user-service - Auth event: logout - User: user_1095 - IP: 192.168.100.240 - RequestID: cqdo2xhcmns +2025-06-18T13:59:00.781Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 895ms - RequestID: jhmjion6dkh +2025-06-18T13:59:00.881Z [INFO] payment-service - Database INSERT on products - Execution time: 368ms - Rows affected: 44 - RequestID: zu2xaoe8n4 +2025-06-18T13:59:00.981Z [TRACE] auth-service - PUT /api/v1/payments - Status: 200 - Response time: 2005ms - IP: 192.168.79.141 - User: user_1072 - RequestID: mo692zhufw9 +2025-06-18T13:59:01.081Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 404 - Response time: 1906ms - IP: 192.168.227.77 - User: user_1063 - RequestID: ivw91fe6hc +2025-06-18T13:59:01.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 703ms - RequestID: vir19ra4gw9 +2025-06-18T13:59:01.281Z [TRACE] notification-service - Auth event: password_change - User: user_1006 - IP: 192.168.174.114 - RequestID: o6aa2408dtb +2025-06-18T13:59:01.381Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 262ms - Rows affected: 71 - RequestID: sbjwc5p047g +2025-06-18T13:59:01.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.158.144 - RequestID: sw8ceow02sn +2025-06-18T13:59:01.581Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 359ms - Rows affected: 65 - RequestID: ua9iakrdxpc +2025-06-18T13:59:01.681Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 645ms - IP: 192.168.194.41 - User: user_1050 - RequestID: ejnr9446vjl +2025-06-18T13:59:01.781Z [INFO] user-service - Auth event: login_success - User: user_1005 - IP: 192.168.227.233 - RequestID: hd6joae79b +2025-06-18T13:59:01.881Z [INFO] order-service - Operation: inventory_updated - Processing time: 825ms - RequestID: 759oecdlhqq +2025-06-18T13:59:01.981Z [TRACE] user-service - Operation: email_sent - Processing time: 262ms - RequestID: g6zsp6dmh94 +2025-06-18T13:59:02.081Z [TRACE] user-service - GET /api/v1/users - Status: 403 - Response time: 915ms - IP: 192.168.247.134 - User: user_1001 - RequestID: kl7y2yxh5ub +2025-06-18T13:59:02.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1072 - IP: 192.168.187.199 - RequestID: quilqnctbm +2025-06-18T13:59:02.281Z [INFO] notification-service - Auth event: password_change - User: user_1004 - IP: 192.168.247.134 - RequestID: 9fj2a6dywgh +2025-06-18T13:59:02.381Z [INFO] inventory-service - Operation: notification_queued - Processing time: 254ms - RequestID: 3hmnmbs4nti +2025-06-18T13:59:02.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.141.100 - RequestID: ildee29dd4 +2025-06-18T13:59:02.581Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 519ms - IP: 192.168.227.77 - User: user_1061 - RequestID: ciihp3f29u +2025-06-18T13:59:02.681Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1599ms - IP: 192.168.229.123 - User: user_1069 - RequestID: o6bvn4f5oq +2025-06-18T13:59:02.781Z [INFO] inventory-service - Database SELECT on payments - Execution time: 33ms - Rows affected: 76 - RequestID: ny6mb1nxr +2025-06-18T13:59:02.881Z [TRACE] user-service - PUT /api/v1/orders - Status: 403 - Response time: 1191ms - IP: 192.168.113.218 - User: user_1002 - RequestID: i91wpzhrbv +2025-06-18T13:59:02.981Z [TRACE] user-service - Auth event: login_failed - User: user_1067 - IP: 192.168.14.77 - RequestID: gnjer3mjfwm +2025-06-18T13:59:03.081Z [DEBUG] order-service - Auth event: login_success - User: user_1007 - IP: 192.168.133.7 - RequestID: nussl8kzl +2025-06-18T13:59:03.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1012 - IP: 192.168.81.206 - RequestID: ntmicvgderb +2025-06-18T13:59:03.281Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1411ms - IP: 192.168.235.117 - User: user_1003 - RequestID: kyd105cioai +2025-06-18T13:59:03.381Z [INFO] auth-service - DELETE /api/v1/payments - Status: 503 - Response time: 792ms - IP: 192.168.167.32 - User: user_1099 - RequestID: su53g41iiqi +2025-06-18T13:59:03.481Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 31ms - Rows affected: 32 - RequestID: qnqp2okk48 +2025-06-18T13:59:03.581Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 400 - Response time: 455ms - IP: 192.168.235.117 - User: user_1057 - RequestID: dahgfy5xpaf +2025-06-18T13:59:03.681Z [TRACE] user-service - Operation: order_created - Processing time: 849ms - RequestID: tq8e1j5mhm +2025-06-18T13:59:03.781Z [TRACE] user-service - Operation: notification_queued - Processing time: 666ms - RequestID: 1jg0lh3au0y +2025-06-18T13:59:03.881Z [TRACE] user-service - Operation: cache_miss - Processing time: 839ms - RequestID: frlanhhr9gj +2025-06-18T13:59:03.981Z [INFO] user-service - POST /api/v1/inventory - Status: 201 - Response time: 820ms - IP: 192.168.68.158 - User: user_1070 - RequestID: e6bbkjsm2j9 +2025-06-18T13:59:04.081Z [TRACE] notification-service - Database SELECT on products - Execution time: 45ms - Rows affected: 35 - RequestID: 16qi50y6pmw +2025-06-18T13:59:04.181Z [DEBUG] user-service - Auth event: logout - User: user_1014 - IP: 192.168.104.37 - RequestID: ibpie7yy2r +2025-06-18T13:59:04.281Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 67ms - Rows affected: 37 - RequestID: olc6vm2fcd +2025-06-18T13:59:04.381Z [INFO] order-service - GET /api/v1/inventory - Status: 503 - Response time: 779ms - IP: 192.168.100.240 - User: user_1028 - RequestID: a2hlg5q8tlk +2025-06-18T13:59:04.481Z [DEBUG] notification-service - GET /api/v1/users - Status: 403 - Response time: 1415ms - IP: 192.168.11.60 - User: user_1095 - RequestID: oudxrqrxqje +2025-06-18T13:59:04.581Z [TRACE] payment-service - Auth event: logout - User: user_1006 - IP: 192.168.10.184 - RequestID: fggjd6zlxno +2025-06-18T13:59:04.681Z [DEBUG] user-service - PUT /api/v1/users - Status: 500 - Response time: 64ms - IP: 192.168.170.215 - User: user_1000 - RequestID: 9jyrev4jb8w +2025-06-18T13:59:04.781Z [DEBUG] user-service - Operation: cache_miss - Processing time: 646ms - RequestID: kv6kik09nph +2025-06-18T13:59:04.881Z [DEBUG] order-service - Database DELETE on users - Execution time: 372ms - Rows affected: 34 - RequestID: au1iu2hq62i +2025-06-18T13:59:04.981Z [INFO] payment-service - Operation: order_created - Processing time: 526ms - RequestID: qix1s66xmt +2025-06-18T13:59:05.081Z [INFO] payment-service - Database DELETE on users - Execution time: 384ms - Rows affected: 23 - RequestID: mcvpuq08kon +2025-06-18T13:59:05.181Z [INFO] order-service - Operation: webhook_sent - Processing time: 583ms - RequestID: hgtwit5un4a +2025-06-18T13:59:05.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 238ms - RequestID: ey9tq5hzwe9 +2025-06-18T13:59:05.381Z [INFO] auth-service - Database INSERT on users - Execution time: 211ms - Rows affected: 38 - RequestID: 3cntstloegj +2025-06-18T13:59:05.481Z [INFO] order-service - Auth event: logout - User: user_1022 - IP: 192.168.242.165 - RequestID: 72588o1epia +2025-06-18T13:59:05.581Z [TRACE] user-service - Database DELETE on payments - Execution time: 310ms - Rows affected: 73 - RequestID: i3udo7ph2ur +2025-06-18T13:59:05.681Z [INFO] payment-service - Auth event: password_change - User: user_1000 - IP: 192.168.81.206 - RequestID: 7mu204hsras +2025-06-18T13:59:05.781Z [INFO] auth-service - POST /api/v1/orders - Status: 403 - Response time: 567ms - IP: 192.168.167.32 - User: user_1050 - RequestID: m09rgfijs4o +2025-06-18T13:59:05.881Z [INFO] auth-service - Auth event: login_failed - User: user_1021 - IP: 192.168.138.123 - RequestID: h06w30h80at +2025-06-18T13:59:05.981Z [DEBUG] notification-service - Auth event: password_change - User: user_1066 - IP: 192.168.85.229 - RequestID: e5sxs8t082 +2025-06-18T13:59:06.081Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 503 - Response time: 538ms - IP: 192.168.68.158 - User: user_1016 - RequestID: y3svb2w3f5n +2025-06-18T13:59:06.181Z [TRACE] inventory-service - Database DELETE on products - Execution time: 97ms - Rows affected: 42 - RequestID: h5n5pqsjd3 +2025-06-18T13:59:06.281Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 118ms - Rows affected: 83 - RequestID: 4eoizv4pczp +2025-06-18T13:59:06.381Z [TRACE] user-service - PATCH /api/v1/users - Status: 200 - Response time: 1265ms - IP: 192.168.181.225 - User: user_1041 - RequestID: 91h5hv6gthh +2025-06-18T13:59:06.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1013 - IP: 192.168.138.123 - RequestID: gru5al1xg8d +2025-06-18T13:59:06.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1011 - IP: 192.168.44.5 - RequestID: 6rrkeaemtv +2025-06-18T13:59:06.681Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 291ms - Rows affected: 76 - RequestID: jde58l2boyn +2025-06-18T13:59:06.781Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 400 - Response time: 1004ms - IP: 192.168.97.87 - User: user_1076 - RequestID: q6pncm56bug +2025-06-18T13:59:06.881Z [DEBUG] auth-service - Database SELECT on products - Execution time: 282ms - Rows affected: 80 - RequestID: oi7s5q7bup +2025-06-18T13:59:06.981Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 401 - Response time: 327ms - IP: 192.168.36.218 - User: user_1084 - RequestID: qmhckrh7irf +2025-06-18T13:59:07.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.11.60 - RequestID: lcnomigdupk +2025-06-18T13:59:07.181Z [INFO] auth-service - PATCH /api/v1/users - Status: 200 - Response time: 1175ms - IP: 192.168.141.100 - User: user_1024 - RequestID: o1st9rtjj5 +2025-06-18T13:59:07.281Z [DEBUG] order-service - Auth event: login_failed - User: user_1097 - IP: 192.168.68.158 - RequestID: 7bol079enlm +2025-06-18T13:59:07.381Z [INFO] inventory-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.68.158 - RequestID: ogqt22b8peg +2025-06-18T13:59:07.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.144.38 - RequestID: eg4t3ggsjo7 +2025-06-18T13:59:07.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.242.165 - RequestID: 5wv1zk16whi +2025-06-18T13:59:07.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 506ms - RequestID: 5xu1y1y2rbc +2025-06-18T13:59:07.781Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1144ms - IP: 192.168.113.218 - User: user_1096 - RequestID: h4gmihggwk +2025-06-18T13:59:07.881Z [TRACE] user-service - Operation: notification_queued - Processing time: 948ms - RequestID: vubmvu51blo +2025-06-18T13:59:07.981Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 905ms - RequestID: ufu65r4y0ir +2025-06-18T13:59:08.081Z [DEBUG] user-service - Auth event: password_change - User: user_1038 - IP: 192.168.144.38 - RequestID: 56yzqinh5wk +2025-06-18T13:59:08.181Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 403 - Response time: 1801ms - IP: 192.168.158.144 - User: user_1093 - RequestID: l33oftmhuu +2025-06-18T13:59:08.281Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 793ms - RequestID: azwolzr63y8 +2025-06-18T13:59:08.381Z [TRACE] payment-service - Operation: cache_hit - Processing time: 939ms - RequestID: jtnps4et82 +2025-06-18T13:59:08.481Z [TRACE] order-service - GET /api/v1/auth/login - Status: 503 - Response time: 1925ms - IP: 192.168.32.38 - User: user_1091 - RequestID: byde61iqmi +2025-06-18T13:59:08.581Z [INFO] inventory-service - Database SELECT on orders - Execution time: 303ms - Rows affected: 40 - RequestID: fbr4w6dpkzp +2025-06-18T13:59:08.681Z [DEBUG] user-service - Operation: cache_hit - Processing time: 858ms - RequestID: 8lwr3z24dfu +2025-06-18T13:59:08.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.113.218 - RequestID: nmzo90ampmj +2025-06-18T13:59:08.881Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 437ms - RequestID: nwww6iy8our +2025-06-18T13:59:08.981Z [TRACE] order-service - GET /api/v1/users - Status: 201 - Response time: 1530ms - IP: 192.168.81.206 - User: user_1028 - RequestID: 6f6ddfinc0a +2025-06-18T13:59:09.081Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 400 - Response time: 1435ms - IP: 192.168.46.63 - User: user_1072 - RequestID: efc12910dob +2025-06-18T13:59:09.181Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 400 - Response time: 515ms - IP: 192.168.53.133 - User: user_1050 - RequestID: jiaen18am2b +2025-06-18T13:59:09.281Z [DEBUG] user-service - Operation: order_created - Processing time: 559ms - RequestID: uhxep2byja +2025-06-18T13:59:09.381Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 793ms - RequestID: srko0im94ir +2025-06-18T13:59:09.481Z [INFO] user-service - Database DELETE on sessions - Execution time: 212ms - Rows affected: 54 - RequestID: 6beomvut27b +2025-06-18T13:59:09.581Z [INFO] order-service - Auth event: login_success - User: user_1060 - IP: 192.168.167.32 - RequestID: tglxcf6u7o +2025-06-18T13:59:09.681Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.13.72 - RequestID: 0nl8dur9v0s +2025-06-18T13:59:09.781Z [DEBUG] auth-service - Database DELETE on products - Execution time: 141ms - Rows affected: 38 - RequestID: u0k0j8eh51a +2025-06-18T13:59:09.881Z [DEBUG] order-service - Auth event: logout - User: user_1007 - IP: 192.168.141.100 - RequestID: ckej5l5gmml +2025-06-18T13:59:09.981Z [INFO] order-service - Auth event: password_change - User: user_1010 - IP: 192.168.64.33 - RequestID: 48z1z5sjswk +2025-06-18T13:59:10.081Z [INFO] notification-service - Auth event: login_success - User: user_1096 - IP: 192.168.170.215 - RequestID: 0wwaujxil3lq +2025-06-18T13:59:10.181Z [TRACE] payment-service - POST /api/v1/users - Status: 200 - Response time: 972ms - IP: 192.168.81.206 - User: user_1067 - RequestID: qifbjy6cweb +2025-06-18T13:59:10.281Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.100.240 - RequestID: 8idika1w85w +2025-06-18T13:59:10.381Z [TRACE] user-service - GET /api/v1/orders - Status: 500 - Response time: 1528ms - IP: 192.168.32.38 - User: user_1086 - RequestID: n6zgqxh15fl +2025-06-18T13:59:10.481Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1951ms - IP: 192.168.44.5 - User: user_1029 - RequestID: aycmiusvq8l +2025-06-18T13:59:10.581Z [INFO] payment-service - Auth event: login_failed - User: user_1088 - IP: 192.168.36.218 - RequestID: uejdmmnuwt +2025-06-18T13:59:10.681Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 203ms - Rows affected: 45 - RequestID: 9gt1wggy0gq +2025-06-18T13:59:10.781Z [INFO] auth-service - POST /api/v1/auth/login - Status: 403 - Response time: 769ms - IP: 192.168.85.229 - User: user_1012 - RequestID: 229y1jruc8w +2025-06-18T13:59:10.881Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 400 - Response time: 179ms - IP: 192.168.31.117 - User: user_1025 - RequestID: 8q25ux1a015 +2025-06-18T13:59:10.981Z [INFO] auth-service - PUT /api/v1/inventory - Status: 403 - Response time: 474ms - IP: 192.168.104.37 - User: user_1086 - RequestID: izsda47a1lg +2025-06-18T13:59:11.081Z [DEBUG] order-service - Auth event: logout - User: user_1049 - IP: 192.168.68.158 - RequestID: hjxeekaljud +2025-06-18T13:59:11.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.79.143 - RequestID: 47pg61wm9pz +2025-06-18T13:59:11.281Z [INFO] payment-service - Auth event: password_change - User: user_1081 - IP: 192.168.79.141 - RequestID: 5mkakn8nekc +2025-06-18T13:59:11.381Z [DEBUG] notification-service - GET /api/v1/users - Status: 200 - Response time: 1426ms - IP: 192.168.79.143 - User: user_1045 - RequestID: 5c4m4l43sxv +2025-06-18T13:59:11.481Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 419ms - Rows affected: 94 - RequestID: uonw2ol6u +2025-06-18T13:59:11.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.144.38 - RequestID: aq736mg4g7p +2025-06-18T13:59:11.681Z [DEBUG] order-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.159.94 - RequestID: zo8lffctikb +2025-06-18T13:59:11.781Z [DEBUG] user-service - GET /api/v1/orders - Status: 503 - Response time: 763ms - IP: 192.168.229.123 - User: user_1095 - RequestID: vsansva6nl +2025-06-18T13:59:11.881Z [TRACE] order-service - Database SELECT on sessions - Execution time: 338ms - Rows affected: 47 - RequestID: en53k6h8ppg +2025-06-18T13:59:11.981Z [DEBUG] order-service - Operation: payment_processed - Processing time: 155ms - RequestID: 2slnhy2kzfo +2025-06-18T13:59:12.081Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 1206ms - IP: 192.168.158.144 - User: user_1086 - RequestID: g99gj822d58 +2025-06-18T13:59:12.181Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 100ms - Rows affected: 25 - RequestID: yl2wwgculzg +2025-06-18T13:59:12.281Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 243ms - IP: 192.168.235.117 - User: user_1044 - RequestID: u3olsyscfgh +2025-06-18T13:59:12.381Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 418ms - Rows affected: 14 - RequestID: yc29ux5g0kn +2025-06-18T13:59:12.481Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 45ms - IP: 192.168.1.152 - User: user_1084 - RequestID: 6gn116ft52s +2025-06-18T13:59:12.581Z [INFO] auth-service - DELETE /api/v1/orders - Status: 503 - Response time: 247ms - IP: 192.168.97.87 - User: user_1096 - RequestID: d7pkff087ss +2025-06-18T13:59:12.681Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 503 - Response time: 1447ms - IP: 192.168.97.87 - User: user_1020 - RequestID: 4hh002qjlwj +2025-06-18T13:59:12.781Z [DEBUG] user-service - Operation: payment_processed - Processing time: 299ms - RequestID: 5busukp8ag5 +2025-06-18T13:59:12.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.113.218 - RequestID: 9uw5gwgk2s9 +2025-06-18T13:59:12.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 760ms - RequestID: 3l7v9x1716a +2025-06-18T13:59:13.081Z [INFO] auth-service - Database DELETE on products - Execution time: 395ms - Rows affected: 19 - RequestID: qd9aoe2nsm8 +2025-06-18T13:59:13.181Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 162ms - Rows affected: 89 - RequestID: t684gibl7pt +2025-06-18T13:59:13.281Z [TRACE] order-service - Database DELETE on sessions - Execution time: 335ms - Rows affected: 61 - RequestID: v9950bz9ds +2025-06-18T13:59:13.381Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 257ms - Rows affected: 16 - RequestID: lyornpbqym +2025-06-18T13:59:13.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 945ms - RequestID: l6kizxny869 +2025-06-18T13:59:13.581Z [INFO] inventory-service - Operation: email_sent - Processing time: 822ms - RequestID: beg4j113ekg +2025-06-18T13:59:13.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.79.141 - RequestID: icpn5xzqcl9 +2025-06-18T13:59:13.781Z [TRACE] order-service - Operation: webhook_sent - Processing time: 686ms - RequestID: la3uzcg46co +2025-06-18T13:59:13.881Z [TRACE] payment-service - Operation: payment_processed - Processing time: 113ms - RequestID: tmqjy3bvs7 +2025-06-18T13:59:13.981Z [TRACE] payment-service - Database DELETE on orders - Execution time: 413ms - Rows affected: 35 - RequestID: uc0rirs81j +2025-06-18T13:59:14.081Z [TRACE] notification-service - Database DELETE on payments - Execution time: 68ms - Rows affected: 58 - RequestID: k2gkxylj9ne +2025-06-18T13:59:14.181Z [TRACE] payment-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.79.143 - RequestID: 4jja0ywf2lg +2025-06-18T13:59:14.281Z [TRACE] payment-service - Auth event: password_change - User: user_1072 - IP: 192.168.187.199 - RequestID: 1jo947l7yhe +2025-06-18T13:59:14.381Z [INFO] order-service - PATCH /api/v1/users - Status: 201 - Response time: 1685ms - IP: 192.168.13.72 - User: user_1026 - RequestID: yuvyk5bs5of +2025-06-18T13:59:14.481Z [DEBUG] auth-service - Database INSERT on products - Execution time: 193ms - Rows affected: 65 - RequestID: 1a939n82swq +2025-06-18T13:59:14.581Z [INFO] order-service - Database DELETE on payments - Execution time: 37ms - Rows affected: 16 - RequestID: 5p3nc6aqdpq +2025-06-18T13:59:14.681Z [INFO] payment-service - Operation: webhook_sent - Processing time: 745ms - RequestID: jqaas5rg088 +2025-06-18T13:59:14.781Z [TRACE] order-service - Auth event: login_success - User: user_1016 - IP: 192.168.113.218 - RequestID: qc5khyhwah +2025-06-18T13:59:14.881Z [DEBUG] order-service - Auth event: login_failed - User: user_1003 - IP: 192.168.14.77 - RequestID: ynz179j3hti +2025-06-18T13:59:14.981Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 230ms - IP: 192.168.229.123 - User: user_1098 - RequestID: n1qf1c8qel +2025-06-18T13:59:15.081Z [DEBUG] order-service - Auth event: login_success - User: user_1093 - IP: 192.168.170.215 - RequestID: uqsoet233cl +2025-06-18T13:59:15.181Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 503 - Response time: 340ms - IP: 192.168.167.32 - User: user_1072 - RequestID: b1qydmped8 +2025-06-18T13:59:15.281Z [TRACE] order-service - PATCH /api/v1/users - Status: 200 - Response time: 874ms - IP: 192.168.36.218 - User: user_1051 - RequestID: f33qvwmju9w +2025-06-18T13:59:15.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.170.215 - RequestID: dilbhv3cx4r +2025-06-18T13:59:15.481Z [TRACE] user-service - Auth event: password_change - User: user_1094 - IP: 192.168.147.171 - RequestID: r46w0aipvhq +2025-06-18T13:59:15.581Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 401 - Response time: 276ms - IP: 192.168.64.33 - User: user_1027 - RequestID: jsx31qmar0p +2025-06-18T13:59:15.681Z [TRACE] order-service - Operation: email_sent - Processing time: 263ms - RequestID: pfpf2chy5h +2025-06-18T13:59:15.781Z [INFO] user-service - Database SELECT on orders - Execution time: 85ms - Rows affected: 99 - RequestID: 4d4gjcvqwzv +2025-06-18T13:59:15.881Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 503 - Response time: 1146ms - IP: 192.168.194.41 - User: user_1017 - RequestID: en6tamy2dzt +2025-06-18T13:59:15.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1014 - IP: 192.168.14.77 - RequestID: b5fiunyi58a +2025-06-18T13:59:16.081Z [TRACE] order-service - Database DELETE on payments - Execution time: 237ms - Rows affected: 46 - RequestID: 1w94fw0nrxf +2025-06-18T13:59:16.181Z [DEBUG] order-service - Auth event: password_change - User: user_1098 - IP: 192.168.174.114 - RequestID: pnzhymxmt1r +2025-06-18T13:59:16.281Z [TRACE] inventory-service - PUT /api/v1/users - Status: 502 - Response time: 1621ms - IP: 192.168.10.184 - User: user_1034 - RequestID: 45aoq1kmqi2 +2025-06-18T13:59:16.381Z [DEBUG] payment-service - Database SELECT on users - Execution time: 80ms - Rows affected: 57 - RequestID: pm3y6stfvd +2025-06-18T13:59:16.481Z [TRACE] auth-service - Operation: payment_processed - Processing time: 823ms - RequestID: sahfjw0759m +2025-06-18T13:59:16.581Z [INFO] inventory-service - Database DELETE on payments - Execution time: 421ms - Rows affected: 13 - RequestID: zad0sukwbe +2025-06-18T13:59:16.681Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 135ms - RequestID: uz9niz4ca3 +2025-06-18T13:59:16.781Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 413ms - Rows affected: 85 - RequestID: 90k2hb6b0m +2025-06-18T13:59:16.881Z [INFO] notification-service - Operation: cache_miss - Processing time: 151ms - RequestID: 4nfrbn5a41 +2025-06-18T13:59:16.981Z [INFO] auth-service - Auth event: login_failed - User: user_1088 - IP: 192.168.196.226 - RequestID: rew759efrm9 +2025-06-18T13:59:17.081Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 269ms - Rows affected: 76 - RequestID: uwta529lqk +2025-06-18T13:59:17.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1005 - IP: 192.168.144.38 - RequestID: a3dl520uh35 +2025-06-18T13:59:17.281Z [TRACE] auth-service - Database DELETE on payments - Execution time: 179ms - Rows affected: 94 - RequestID: d37nhx4jsgm +2025-06-18T13:59:17.381Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1320ms - IP: 192.168.100.240 - User: user_1070 - RequestID: 6gr8fzsmtaw +2025-06-18T13:59:17.481Z [TRACE] payment-service - Database INSERT on products - Execution time: 345ms - Rows affected: 17 - RequestID: m3slv2771uh +2025-06-18T13:59:17.581Z [TRACE] payment-service - Database INSERT on users - Execution time: 222ms - Rows affected: 45 - RequestID: nukb0jvir8r +2025-06-18T13:59:17.681Z [INFO] auth-service - Operation: inventory_updated - Processing time: 753ms - RequestID: oipd0ghh6bf +2025-06-18T13:59:17.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 957ms - RequestID: rdcji7aualr +2025-06-18T13:59:17.881Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 146ms - Rows affected: 5 - RequestID: 5ds0nu5fce +2025-06-18T13:59:17.981Z [TRACE] auth-service - GET /api/v1/users - Status: 404 - Response time: 477ms - IP: 192.168.104.37 - User: user_1039 - RequestID: 5y0mm1qfd4r +2025-06-18T13:59:18.081Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 403ms - Rows affected: 90 - RequestID: 4zn87gl94ke +2025-06-18T13:59:18.181Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 429ms - Rows affected: 83 - RequestID: 3pcp0vvhg8x +2025-06-18T13:59:18.281Z [DEBUG] user-service - PATCH /api/v1/users - Status: 503 - Response time: 1067ms - IP: 192.168.247.134 - User: user_1052 - RequestID: gl464hobppm +2025-06-18T13:59:18.381Z [TRACE] inventory-service - Auth event: password_change - User: user_1057 - IP: 192.168.64.33 - RequestID: g3y1svq03p +2025-06-18T13:59:18.481Z [TRACE] user-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.189.103 - RequestID: yzjpso6s1r +2025-06-18T13:59:18.581Z [INFO] payment-service - POST /api/v1/inventory - Status: 403 - Response time: 441ms - IP: 192.168.138.123 - User: user_1054 - RequestID: zyd5pn8k1mg +2025-06-18T13:59:18.681Z [DEBUG] payment-service - Operation: email_sent - Processing time: 1010ms - RequestID: o24wk5v7l19 +2025-06-18T13:59:18.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.100.240 - RequestID: dguihmauprh +2025-06-18T13:59:18.881Z [TRACE] payment-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.211.72 - RequestID: d08ymuhchxj +2025-06-18T13:59:18.981Z [INFO] payment-service - Auth event: logout - User: user_1091 - IP: 192.168.46.63 - RequestID: yhwvownbb5 +2025-06-18T13:59:19.081Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 879ms - IP: 192.168.85.229 - User: user_1066 - RequestID: b82ou5ktia +2025-06-18T13:59:19.181Z [DEBUG] user-service - Database DELETE on products - Execution time: 404ms - Rows affected: 6 - RequestID: 6ghd8vljbje +2025-06-18T13:59:19.281Z [TRACE] notification-service - Auth event: logout - User: user_1027 - IP: 192.168.79.143 - RequestID: nwthuzc19dh +2025-06-18T13:59:19.381Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 420ms - Rows affected: 24 - RequestID: u08dptf6pxc +2025-06-18T13:59:19.481Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 207ms - Rows affected: 66 - RequestID: nypmc3zlfha +2025-06-18T13:59:19.581Z [DEBUG] order-service - GET /api/v1/inventory - Status: 400 - Response time: 497ms - IP: 192.168.85.229 - User: user_1064 - RequestID: 5goepz7j41i +2025-06-18T13:59:19.681Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 403 - Response time: 1791ms - IP: 192.168.10.184 - User: user_1082 - RequestID: m29eao8flcr +2025-06-18T13:59:19.781Z [DEBUG] notification-service - Operation: order_created - Processing time: 173ms - RequestID: lvbauvfbmzs +2025-06-18T13:59:19.881Z [TRACE] order-service - PATCH /api/v1/payments - Status: 201 - Response time: 195ms - IP: 192.168.144.38 - User: user_1066 - RequestID: un5iub5dml +2025-06-18T13:59:19.981Z [DEBUG] user-service - Auth event: login_success - User: user_1086 - IP: 192.168.189.103 - RequestID: 5dnlkul2n3d +2025-06-18T13:59:20.081Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 401 - Response time: 1385ms - IP: 192.168.79.116 - User: user_1034 - RequestID: 6655gxvp3xf +2025-06-18T13:59:20.181Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 425ms - IP: 192.168.79.141 - User: user_1082 - RequestID: q4f7itz9qnt +2025-06-18T13:59:20.281Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 401 - Response time: 81ms - IP: 192.168.85.229 - User: user_1074 - RequestID: zx394p4fakn +2025-06-18T13:59:20.381Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 549ms - RequestID: 0d4l7hh7y94c +2025-06-18T13:59:20.481Z [INFO] auth-service - Database INSERT on products - Execution time: 117ms - Rows affected: 68 - RequestID: v4pjr1vogrr +2025-06-18T13:59:20.581Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 235ms - Rows affected: 62 - RequestID: baijpfip5jf +2025-06-18T13:59:20.681Z [INFO] order-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.240.169 - RequestID: tdzm6gshyd +2025-06-18T13:59:20.781Z [TRACE] user-service - Auth event: login_failed - User: user_1007 - IP: 192.168.235.117 - RequestID: ozf003gjavh +2025-06-18T13:59:20.881Z [TRACE] inventory-service - POST /api/v1/orders - Status: 502 - Response time: 1765ms - IP: 192.168.79.116 - User: user_1041 - RequestID: js7xnbkgazj +2025-06-18T13:59:20.981Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 201 - Response time: 915ms - IP: 192.168.28.146 - User: user_1013 - RequestID: x4x399ugl1 +2025-06-18T13:59:21.081Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 561ms - RequestID: r5gyga9vla +2025-06-18T13:59:21.181Z [INFO] inventory-service - Database DELETE on payments - Execution time: 89ms - Rows affected: 78 - RequestID: rmyqfc0x3mq +2025-06-18T13:59:21.281Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 994ms - RequestID: b4yzxjv2xhh +2025-06-18T13:59:21.381Z [INFO] user-service - GET /api/v1/orders - Status: 400 - Response time: 891ms - IP: 192.168.240.169 - User: user_1096 - RequestID: srm1qrvmigt +2025-06-18T13:59:21.481Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 180ms - Rows affected: 12 - RequestID: zx35va4uhp +2025-06-18T13:59:21.581Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 396ms - RequestID: ye217hkqbnp +2025-06-18T13:59:21.681Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 275ms - IP: 192.168.79.141 - User: user_1090 - RequestID: esxflii7nxo +2025-06-18T13:59:21.781Z [INFO] user-service - POST /api/v1/inventory - Status: 404 - Response time: 1153ms - IP: 192.168.53.133 - User: user_1074 - RequestID: hno5goip2bg +2025-06-18T13:59:21.881Z [INFO] auth-service - Database INSERT on orders - Execution time: 435ms - Rows affected: 27 - RequestID: t8l6br2bus +2025-06-18T13:59:21.981Z [INFO] payment-service - Auth event: login_failed - User: user_1078 - IP: 192.168.46.63 - RequestID: ojy5uy0xg8q +2025-06-18T13:59:22.081Z [INFO] payment-service - Operation: order_created - Processing time: 826ms - RequestID: i3joqeldu +2025-06-18T13:59:22.181Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 503 - Response time: 598ms - IP: 192.168.211.72 - User: user_1025 - RequestID: ul6wclrabw +2025-06-18T13:59:22.281Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 704ms - RequestID: hyfdvvunz3n +2025-06-18T13:59:22.381Z [DEBUG] user-service - Operation: cache_hit - Processing time: 665ms - RequestID: bq1wtx7ls2o +2025-06-18T13:59:22.481Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 466ms - Rows affected: 78 - RequestID: je8jo1pevr +2025-06-18T13:59:22.581Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 401 - Response time: 596ms - IP: 192.168.147.171 - User: user_1030 - RequestID: qyd1k8tqui +2025-06-18T13:59:22.681Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 180ms - RequestID: e81hbheh3na +2025-06-18T13:59:22.781Z [INFO] payment-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.64.33 - RequestID: j3m71mxhkmc +2025-06-18T13:59:22.881Z [TRACE] notification-service - Auth event: login_success - User: user_1015 - IP: 192.168.100.240 - RequestID: qpumas9mlab +2025-06-18T13:59:22.981Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1728ms - IP: 192.168.158.144 - User: user_1028 - RequestID: 1vunw89huap +2025-06-18T13:59:23.081Z [TRACE] auth-service - Database INSERT on orders - Execution time: 328ms - Rows affected: 26 - RequestID: 7eltat2orbi +2025-06-18T13:59:23.181Z [DEBUG] user-service - Operation: email_sent - Processing time: 401ms - RequestID: ech0zrw0sf +2025-06-18T13:59:23.281Z [INFO] user-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.81.206 - RequestID: 97khj4jp48 +2025-06-18T13:59:23.381Z [DEBUG] user-service - POST /api/v1/payments - Status: 400 - Response time: 1360ms - IP: 192.168.46.63 - User: user_1066 - RequestID: fj74wdsxwta +2025-06-18T13:59:23.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 740ms - RequestID: 77ude9dqt8x +2025-06-18T13:59:23.581Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 201 - Response time: 383ms - IP: 192.168.97.87 - User: user_1070 - RequestID: qtr7jrswr +2025-06-18T13:59:23.681Z [INFO] user-service - Operation: webhook_sent - Processing time: 543ms - RequestID: zpl15vjdzjc +2025-06-18T13:59:23.781Z [INFO] auth-service - Database DELETE on users - Execution time: 13ms - Rows affected: 42 - RequestID: 9zzchl43rzr +2025-06-18T13:59:23.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 986ms - RequestID: fhbta3o7vq5 +2025-06-18T13:59:23.981Z [DEBUG] notification-service - Operation: order_created - Processing time: 770ms - RequestID: apqdmbgizcp +2025-06-18T13:59:24.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.138.123 - RequestID: rvs4zk9as2j +2025-06-18T13:59:24.181Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 403 - Response time: 197ms - IP: 192.168.229.123 - User: user_1035 - RequestID: 9k86gkhw1yk +2025-06-18T13:59:24.281Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 451ms - RequestID: ag7gf49chb9 +2025-06-18T13:59:24.381Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 442ms - Rows affected: 91 - RequestID: jt0ylkmwc4d +2025-06-18T13:59:24.481Z [DEBUG] notification-service - Database SELECT on products - Execution time: 318ms - Rows affected: 43 - RequestID: zr5yjzpssb9 +2025-06-18T13:59:24.581Z [INFO] user-service - Auth event: login_failed - User: user_1053 - IP: 192.168.189.103 - RequestID: 1v923r6m0ad +2025-06-18T13:59:24.681Z [INFO] payment-service - Auth event: login_success - User: user_1069 - IP: 192.168.32.38 - RequestID: h0bl1sa3zv +2025-06-18T13:59:24.781Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 201 - Response time: 268ms - IP: 192.168.133.7 - User: user_1048 - RequestID: bpm9tmj979p +2025-06-18T13:59:24.881Z [TRACE] auth-service - Auth event: password_change - User: user_1016 - IP: 192.168.100.240 - RequestID: qr84fkxqtvj +2025-06-18T13:59:24.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1035 - IP: 192.168.14.77 - RequestID: 1c8e1i2779z +2025-06-18T13:59:25.081Z [TRACE] order-service - Operation: inventory_updated - Processing time: 750ms - RequestID: nphqr8o2br +2025-06-18T13:59:25.181Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 463ms - RequestID: 9by21qw7nbu +2025-06-18T13:59:25.281Z [DEBUG] order-service - POST /api/v1/orders - Status: 400 - Response time: 2008ms - IP: 192.168.10.184 - User: user_1048 - RequestID: 5gh7tje38pt +2025-06-18T13:59:25.381Z [DEBUG] user-service - Operation: order_created - Processing time: 332ms - RequestID: meq8vmgkrdc +2025-06-18T13:59:25.481Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 261ms - RequestID: ez3j3raq3sl +2025-06-18T13:59:25.581Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 420ms - Rows affected: 61 - RequestID: zvhqk04x7bn +2025-06-18T13:59:25.681Z [INFO] payment-service - GET /api/v1/auth/login - Status: 200 - Response time: 440ms - IP: 192.168.247.134 - User: user_1075 - RequestID: lcnsxe78pce +2025-06-18T13:59:25.781Z [INFO] user-service - PATCH /api/v1/users - Status: 200 - Response time: 1911ms - IP: 192.168.235.117 - User: user_1041 - RequestID: e1cp4v93kxp +2025-06-18T13:59:25.881Z [TRACE] order-service - Operation: webhook_sent - Processing time: 768ms - RequestID: xud1mneq0s +2025-06-18T13:59:25.981Z [DEBUG] user-service - Operation: order_created - Processing time: 814ms - RequestID: v6fovlx8dg +2025-06-18T13:59:26.081Z [TRACE] notification-service - Auth event: login_success - User: user_1006 - IP: 192.168.104.37 - RequestID: bz11iyib6e6 +2025-06-18T13:59:26.181Z [INFO] inventory-service - POST /api/v1/orders - Status: 201 - Response time: 1328ms - IP: 192.168.174.114 - User: user_1034 - RequestID: 97rxa2or3c6 +2025-06-18T13:59:26.281Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 503 - Response time: 132ms - IP: 192.168.141.100 - User: user_1053 - RequestID: mpf1m7hg6xq +2025-06-18T13:59:26.381Z [TRACE] user-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.1.152 - RequestID: 15gbik1becn +2025-06-18T13:59:26.481Z [DEBUG] inventory-service - POST /api/v1/users - Status: 201 - Response time: 1879ms - IP: 192.168.189.103 - User: user_1083 - RequestID: 0hi317wijz3 +2025-06-18T13:59:26.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1079 - IP: 192.168.189.103 - RequestID: ik00h5y22fc +2025-06-18T13:59:26.681Z [TRACE] order-service - Auth event: password_change - User: user_1093 - IP: 192.168.46.63 - RequestID: sadg386yia +2025-06-18T13:59:26.781Z [TRACE] order-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.158.144 - RequestID: krfgaxnb8e +2025-06-18T13:59:26.881Z [DEBUG] user-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.232.72 - RequestID: 2vy4jzrtfml +2025-06-18T13:59:26.981Z [TRACE] inventory-service - POST /api/v1/orders - Status: 201 - Response time: 1438ms - IP: 192.168.247.134 - User: user_1053 - RequestID: 7lugresscvr +2025-06-18T13:59:27.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.1.152 - RequestID: cll7ltgzpav +2025-06-18T13:59:27.181Z [INFO] auth-service - POST /api/v1/orders - Status: 400 - Response time: 1069ms - IP: 192.168.232.72 - User: user_1073 - RequestID: hm3dyj3d5pf +2025-06-18T13:59:27.281Z [DEBUG] inventory-service - Auth event: login_success - User: user_1053 - IP: 192.168.141.100 - RequestID: 7ibmtxubcru +2025-06-18T13:59:27.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 638ms - RequestID: 05wd6zzk4x69 +2025-06-18T13:59:27.481Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 669ms - RequestID: amtvb7fuu7 +2025-06-18T13:59:27.581Z [INFO] payment-service - Auth event: login_success - User: user_1045 - IP: 192.168.227.233 - RequestID: 2v1r2ld6exr +2025-06-18T13:59:27.681Z [INFO] order-service - Operation: order_created - Processing time: 448ms - RequestID: h3c579yb7b6 +2025-06-18T13:59:27.781Z [INFO] auth-service - Database SELECT on orders - Execution time: 442ms - Rows affected: 14 - RequestID: k0dty2yysda +2025-06-18T13:59:27.881Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 93ms - Rows affected: 80 - RequestID: 93krla5n55m +2025-06-18T13:59:27.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1093 - IP: 192.168.33.76 - RequestID: lfta4syg6id +2025-06-18T13:59:28.081Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 287ms - Rows affected: 6 - RequestID: zcecuphw95 +2025-06-18T13:59:28.181Z [TRACE] payment-service - Auth event: password_change - User: user_1091 - IP: 192.168.187.199 - RequestID: zticddq8jcp +2025-06-18T13:59:28.281Z [INFO] inventory-service - Auth event: login_failed - User: user_1032 - IP: 192.168.104.37 - RequestID: pwd65e4ito +2025-06-18T13:59:28.381Z [TRACE] order-service - Database DELETE on products - Execution time: 262ms - Rows affected: 49 - RequestID: 78itpfz0wf +2025-06-18T13:59:28.481Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1303ms - IP: 192.168.28.146 - User: user_1056 - RequestID: gsnamlh2gg6 +2025-06-18T13:59:28.581Z [TRACE] user-service - POST /api/v1/users - Status: 401 - Response time: 1784ms - IP: 192.168.187.199 - User: user_1073 - RequestID: 5wrxy7lr64c +2025-06-18T13:59:28.681Z [TRACE] user-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.194.41 - RequestID: 4xhdm1dyana +2025-06-18T13:59:28.781Z [INFO] user-service - Operation: payment_processed - Processing time: 745ms - RequestID: 3cyk8156kuv +2025-06-18T13:59:28.881Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 372ms - Rows affected: 11 - RequestID: xitygft46ta +2025-06-18T13:59:28.981Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1160ms - IP: 192.168.144.38 - User: user_1067 - RequestID: 6x8afh2rt2d +2025-06-18T13:59:29.081Z [TRACE] notification-service - PATCH /api/v1/users - Status: 200 - Response time: 1315ms - IP: 192.168.159.94 - User: user_1031 - RequestID: 7znm64v09le +2025-06-18T13:59:29.181Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 990ms - RequestID: 69v8m8p1cu +2025-06-18T13:59:29.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.187.199 - RequestID: 0r0nknq1jle +2025-06-18T13:59:29.381Z [TRACE] order-service - PATCH /api/v1/orders - Status: 200 - Response time: 510ms - IP: 192.168.133.7 - User: user_1092 - RequestID: ofvcinymv4n +2025-06-18T13:59:29.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.158.144 - RequestID: mn4ho4b8g4 +2025-06-18T13:59:29.581Z [INFO] user-service - Operation: cache_miss - Processing time: 993ms - RequestID: ntcnjhbjyqa +2025-06-18T13:59:29.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1011 - IP: 192.168.13.72 - RequestID: 1apio39v2i8 +2025-06-18T13:59:29.781Z [INFO] inventory-service - Database UPDATE on users - Execution time: 389ms - Rows affected: 51 - RequestID: cwhta5jbsp +2025-06-18T13:59:29.881Z [INFO] notification-service - Operation: cache_miss - Processing time: 275ms - RequestID: mb8az6m35ro +2025-06-18T13:59:29.981Z [INFO] user-service - Operation: cache_miss - Processing time: 834ms - RequestID: my7g12is7ud +2025-06-18T13:59:30.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.46.63 - RequestID: x3p30wtza0d +2025-06-18T13:59:30.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.113.218 - RequestID: xdo5a5jsmnf +2025-06-18T13:59:30.281Z [TRACE] notification-service - Operation: payment_processed - Processing time: 387ms - RequestID: 47n8wjcyp7g +2025-06-18T13:59:30.381Z [INFO] user-service - GET /api/v1/auth/logout - Status: 201 - Response time: 104ms - IP: 192.168.187.199 - User: user_1024 - RequestID: nwbwqz0shh +2025-06-18T13:59:30.481Z [TRACE] order-service - Operation: email_sent - Processing time: 1003ms - RequestID: 1mqg3cxwpfw +2025-06-18T13:59:30.581Z [TRACE] user-service - Auth event: password_change - User: user_1021 - IP: 192.168.64.33 - RequestID: s6yuft3ird +2025-06-18T13:59:30.681Z [INFO] payment-service - Database UPDATE on users - Execution time: 314ms - Rows affected: 42 - RequestID: shl8hfffzc +2025-06-18T13:59:30.781Z [DEBUG] payment-service - Operation: email_sent - Processing time: 194ms - RequestID: lk2a210tg9l +2025-06-18T13:59:30.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 125ms - RequestID: w8qfjhdfnn +2025-06-18T13:59:30.981Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 246ms - Rows affected: 38 - RequestID: cr1xuvbd8ws +2025-06-18T13:59:31.081Z [TRACE] auth-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.159.94 - RequestID: 8a1cer2vun +2025-06-18T13:59:31.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 678ms - RequestID: 80xggtnt31t +2025-06-18T13:59:31.281Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 303ms - RequestID: eks6pu2h61g +2025-06-18T13:59:31.381Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 451ms - Rows affected: 81 - RequestID: 7wz50k2ygz +2025-06-18T13:59:31.481Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 187ms - Rows affected: 88 - RequestID: 62ckd9spaht +2025-06-18T13:59:31.581Z [TRACE] auth-service - PATCH /api/v1/users - Status: 403 - Response time: 674ms - IP: 192.168.133.7 - User: user_1072 - RequestID: cjxmr5pxs8h +2025-06-18T13:59:31.681Z [INFO] notification-service - PATCH /api/v1/users - Status: 502 - Response time: 1217ms - IP: 192.168.247.134 - User: user_1039 - RequestID: onffglryk1g +2025-06-18T13:59:31.781Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 238ms - Rows affected: 15 - RequestID: kqcwkgwxysh +2025-06-18T13:59:31.881Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 480ms - Rows affected: 16 - RequestID: h6i715d7k2o +2025-06-18T13:59:31.981Z [TRACE] notification-service - Auth event: password_change - User: user_1039 - IP: 192.168.235.117 - RequestID: n99mg713qj +2025-06-18T13:59:32.081Z [DEBUG] notification-service - Operation: order_created - Processing time: 669ms - RequestID: qyt1fjgred +2025-06-18T13:59:32.181Z [TRACE] auth-service - Operation: payment_processed - Processing time: 1021ms - RequestID: 2nwzxqow9jb +2025-06-18T13:59:32.281Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 914ms - RequestID: 8kixg2r2xuo +2025-06-18T13:59:32.381Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 169ms - Rows affected: 5 - RequestID: tcyu7fuxh2 +2025-06-18T13:59:32.481Z [INFO] auth-service - Database INSERT on products - Execution time: 76ms - Rows affected: 93 - RequestID: vtxez3e4518 +2025-06-18T13:59:32.581Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 405ms - Rows affected: 70 - RequestID: afgw0mw75x +2025-06-18T13:59:32.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 1036ms - RequestID: n5uzs2trabp +2025-06-18T13:59:32.781Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 502 - Response time: 1348ms - IP: 192.168.13.72 - User: user_1009 - RequestID: zafenh76uz +2025-06-18T13:59:32.881Z [INFO] auth-service - Auth event: logout - User: user_1064 - IP: 192.168.64.33 - RequestID: z67y9blso48 +2025-06-18T13:59:32.981Z [INFO] order-service - Database UPDATE on sessions - Execution time: 3ms - Rows affected: 43 - RequestID: i59eqcxeu0m +2025-06-18T13:59:33.081Z [TRACE] order-service - Database DELETE on orders - Execution time: 22ms - Rows affected: 45 - RequestID: t0g8uo27rss +2025-06-18T13:59:33.181Z [INFO] notification-service - Auth event: login_failed - User: user_1055 - IP: 192.168.133.7 - RequestID: rdo1101e2vn +2025-06-18T13:59:33.281Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 87ms - RequestID: xpwchpuk2m +2025-06-18T13:59:33.381Z [TRACE] payment-service - Operation: cache_hit - Processing time: 344ms - RequestID: nf910zhkxl +2025-06-18T13:59:33.481Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 130ms - Rows affected: 35 - RequestID: 09kz3ynijx2s +2025-06-18T13:59:33.581Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 300ms - RequestID: cbz5wj33d1g +2025-06-18T13:59:33.681Z [DEBUG] order-service - POST /api/v1/orders - Status: 200 - Response time: 931ms - IP: 192.168.28.146 - User: user_1037 - RequestID: 96mycw5dt1s +2025-06-18T13:59:33.781Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 1003ms - RequestID: hs60qv4st3p +2025-06-18T13:59:33.881Z [DEBUG] user-service - Auth event: login_success - User: user_1001 - IP: 192.168.1.152 - RequestID: 5wjhs37mkkd +2025-06-18T13:59:33.981Z [INFO] user-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.158.144 - RequestID: 7kfrv1x4l58 +2025-06-18T13:59:34.081Z [TRACE] notification-service - Database UPDATE on products - Execution time: 112ms - Rows affected: 79 - RequestID: gwce4c304jg +2025-06-18T13:59:34.181Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 403 - Response time: 840ms - IP: 192.168.229.123 - User: user_1052 - RequestID: xozijlr445p +2025-06-18T13:59:34.281Z [INFO] payment-service - Auth event: login_failed - User: user_1014 - IP: 192.168.1.152 - RequestID: zgdy996oqz +2025-06-18T13:59:34.381Z [TRACE] payment-service - Operation: cache_hit - Processing time: 204ms - RequestID: nu4rrvm5zmh +2025-06-18T13:59:34.481Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 503 - Response time: 817ms - IP: 192.168.235.117 - User: user_1082 - RequestID: 1fb84vngtlc +2025-06-18T13:59:34.581Z [TRACE] auth-service - Operation: order_created - Processing time: 277ms - RequestID: x5xp1ydiio +2025-06-18T13:59:34.681Z [INFO] notification-service - Database INSERT on payments - Execution time: 360ms - Rows affected: 5 - RequestID: yv4o2l2gvwc +2025-06-18T13:59:34.781Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 312ms - Rows affected: 97 - RequestID: pkqc54o447 +2025-06-18T13:59:34.881Z [INFO] payment-service - POST /api/v1/payments - Status: 500 - Response time: 1444ms - IP: 192.168.85.229 - User: user_1011 - RequestID: tybtbw4cbv +2025-06-18T13:59:34.981Z [DEBUG] inventory-service - Auth event: login_success - User: user_1093 - IP: 192.168.104.37 - RequestID: sfiehl9dthg +2025-06-18T13:59:35.081Z [INFO] auth-service - Operation: payment_processed - Processing time: 288ms - RequestID: qc63hav8we +2025-06-18T13:59:35.181Z [INFO] auth-service - PATCH /api/v1/users - Status: 201 - Response time: 1538ms - IP: 192.168.170.215 - User: user_1090 - RequestID: sbewfg4hc2b +2025-06-18T13:59:35.281Z [DEBUG] order-service - Auth event: login_failed - User: user_1038 - IP: 192.168.97.87 - RequestID: m9jm5wu5l9 +2025-06-18T13:59:35.381Z [INFO] user-service - Auth event: logout - User: user_1051 - IP: 192.168.170.215 - RequestID: ddtwpsyx55m +2025-06-18T13:59:35.481Z [TRACE] user-service - PATCH /api/v1/payments - Status: 503 - Response time: 853ms - IP: 192.168.144.38 - User: user_1092 - RequestID: 6n1de2i412s +2025-06-18T13:59:35.581Z [INFO] notification-service - Auth event: password_change - User: user_1052 - IP: 192.168.227.233 - RequestID: hx44iguru9o +2025-06-18T13:59:35.681Z [TRACE] order-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.211.72 - RequestID: rx3pihhfxt +2025-06-18T13:59:35.781Z [INFO] auth-service - Database UPDATE on users - Execution time: 298ms - Rows affected: 8 - RequestID: atefahensgc +2025-06-18T13:59:35.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 115ms - RequestID: fbeb7d4o5p +2025-06-18T13:59:35.981Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1765ms - IP: 192.168.147.171 - User: user_1007 - RequestID: trwtxr7567 +2025-06-18T13:59:36.081Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1072ms - IP: 192.168.53.133 - User: user_1028 - RequestID: b1pzroct0zc +2025-06-18T13:59:36.181Z [INFO] user-service - Auth event: login_success - User: user_1061 - IP: 192.168.28.146 - RequestID: 86ot18iv4db +2025-06-18T13:59:36.281Z [TRACE] order-service - Operation: order_created - Processing time: 501ms - RequestID: 4j2gt9gbfgr +2025-06-18T13:59:36.381Z [TRACE] inventory-service - Auth event: logout - User: user_1048 - IP: 192.168.141.100 - RequestID: nrv4eh160q +2025-06-18T13:59:36.481Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 848ms - IP: 192.168.30.79 - User: user_1075 - RequestID: h4osmyiaa3a +2025-06-18T13:59:36.581Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 239ms - RequestID: zv9jzjgkxl +2025-06-18T13:59:36.681Z [TRACE] auth-service - Operation: cache_miss - Processing time: 488ms - RequestID: qrfbrgxoow +2025-06-18T13:59:36.781Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 108ms - Rows affected: 40 - RequestID: iclzlb31pug +2025-06-18T13:59:36.881Z [INFO] order-service - PATCH /api/v1/users - Status: 201 - Response time: 1104ms - IP: 192.168.36.218 - User: user_1049 - RequestID: l5ukw292ita +2025-06-18T13:59:36.981Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 99ms - IP: 192.168.13.72 - User: user_1054 - RequestID: m9fhvs5g0v +2025-06-18T13:59:37.081Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 344ms - Rows affected: 96 - RequestID: 0v64d7mrf49p +2025-06-18T13:59:37.181Z [TRACE] auth-service - Auth event: logout - User: user_1022 - IP: 192.168.36.218 - RequestID: 1fxki52tc62 +2025-06-18T13:59:37.281Z [TRACE] notification-service - Auth event: login_success - User: user_1076 - IP: 192.168.97.87 - RequestID: grlskndjj7 +2025-06-18T13:59:37.381Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1043ms - IP: 192.168.44.5 - User: user_1045 - RequestID: 0llp32gh89nh +2025-06-18T13:59:37.481Z [INFO] order-service - Database INSERT on sessions - Execution time: 329ms - Rows affected: 74 - RequestID: qvpw1d3vg1r +2025-06-18T13:59:37.581Z [TRACE] payment-service - Database DELETE on payments - Execution time: 412ms - Rows affected: 47 - RequestID: fur4ueem8l +2025-06-18T13:59:37.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1038 - IP: 192.168.227.233 - RequestID: nhq9rxkxmy +2025-06-18T13:59:37.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 414ms - RequestID: nf62dei32e +2025-06-18T13:59:37.881Z [INFO] auth-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.79.143 - RequestID: iou2uurrf6a +2025-06-18T13:59:37.981Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 426ms - Rows affected: 16 - RequestID: 0x8v3auikkji +2025-06-18T13:59:38.081Z [INFO] notification-service - Operation: inventory_updated - Processing time: 250ms - RequestID: md3jqeh8yr +2025-06-18T13:59:38.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 860ms - RequestID: zwygjm8im8o +2025-06-18T13:59:38.281Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 53ms - Rows affected: 94 - RequestID: q284raaqfmj +2025-06-18T13:59:38.381Z [TRACE] order-service - Auth event: password_change - User: user_1085 - IP: 192.168.1.152 - RequestID: hn938p1l29i +2025-06-18T13:59:38.481Z [INFO] user-service - Auth event: logout - User: user_1033 - IP: 192.168.113.218 - RequestID: rb40dmkhsi +2025-06-18T13:59:38.581Z [INFO] payment-service - Auth event: password_change - User: user_1047 - IP: 192.168.13.72 - RequestID: 6w9fieei1my +2025-06-18T13:59:38.681Z [INFO] payment-service - PATCH /api/v1/users - Status: 404 - Response time: 1878ms - IP: 192.168.33.76 - User: user_1086 - RequestID: hnm6b5njqec +2025-06-18T13:59:38.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 682ms - RequestID: 2wl83azd0sh +2025-06-18T13:59:38.881Z [TRACE] payment-service - Database SELECT on users - Execution time: 87ms - Rows affected: 19 - RequestID: eh8q8m5447d +2025-06-18T13:59:38.981Z [DEBUG] order-service - Database DELETE on orders - Execution time: 496ms - Rows affected: 71 - RequestID: cjgntut4qdc +2025-06-18T13:59:39.081Z [TRACE] payment-service - GET /api/v1/users - Status: 403 - Response time: 828ms - IP: 192.168.32.38 - User: user_1007 - RequestID: 2t2jgo3dprt +2025-06-18T13:59:39.181Z [DEBUG] order-service - GET /api/v1/orders - Status: 200 - Response time: 761ms - IP: 192.168.235.117 - User: user_1009 - RequestID: i1lrur2eddf +2025-06-18T13:59:39.281Z [TRACE] order-service - POST /api/v1/orders - Status: 503 - Response time: 138ms - IP: 192.168.194.41 - User: user_1073 - RequestID: pt82todgwuf +2025-06-18T13:59:39.381Z [TRACE] user-service - Operation: cache_miss - Processing time: 377ms - RequestID: 04wxum7mvvsd +2025-06-18T13:59:39.481Z [TRACE] user-service - GET /api/v1/payments - Status: 503 - Response time: 261ms - IP: 192.168.235.117 - User: user_1042 - RequestID: 3svb5zubh5c +2025-06-18T13:59:39.581Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 729ms - RequestID: zvnttve4xo +2025-06-18T13:59:39.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 282ms - RequestID: xbe9scyh4bj +2025-06-18T13:59:39.781Z [INFO] user-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.64.33 - RequestID: 0jq1blrmw81s +2025-06-18T13:59:39.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1025 - IP: 192.168.10.184 - RequestID: 2f7kbpe7y2x +2025-06-18T13:59:39.981Z [TRACE] auth-service - Database SELECT on users - Execution time: 272ms - Rows affected: 66 - RequestID: fqt38ly6rw8 +2025-06-18T13:59:40.081Z [INFO] user-service - Operation: order_created - Processing time: 978ms - RequestID: 22c0pdskacti +2025-06-18T13:59:40.181Z [INFO] payment-service - Operation: cache_miss - Processing time: 833ms - RequestID: vgd9bmz2q1 +2025-06-18T13:59:40.281Z [INFO] order-service - Auth event: login_failed - User: user_1087 - IP: 192.168.46.63 - RequestID: fa95ig9u5tf +2025-06-18T13:59:40.381Z [INFO] order-service - Operation: email_sent - Processing time: 992ms - RequestID: gxg1u7a8qoo +2025-06-18T13:59:40.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1030 - IP: 192.168.32.38 - RequestID: htcvkbq9v6n +2025-06-18T13:59:40.581Z [TRACE] order-service - Database SELECT on products - Execution time: 361ms - Rows affected: 20 - RequestID: z6w8690y6p +2025-06-18T13:59:40.681Z [INFO] user-service - Operation: inventory_updated - Processing time: 497ms - RequestID: 702i2d877c4 +2025-06-18T13:59:40.781Z [TRACE] order-service - Database DELETE on products - Execution time: 124ms - Rows affected: 28 - RequestID: qwxqp9km3gb +2025-06-18T13:59:40.881Z [DEBUG] user-service - POST /api/v1/users - Status: 400 - Response time: 1727ms - IP: 192.168.11.60 - User: user_1063 - RequestID: wn0g2ymoma +2025-06-18T13:59:40.981Z [INFO] user-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1097ms - IP: 192.168.11.60 - User: user_1015 - RequestID: 5cskai6ruqf +2025-06-18T13:59:41.081Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 239ms - IP: 192.168.196.226 - User: user_1095 - RequestID: gdegiorgre7 +2025-06-18T13:59:41.181Z [INFO] order-service - Database SELECT on users - Execution time: 142ms - Rows affected: 54 - RequestID: uwewiz7si3 +2025-06-18T13:59:41.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1022 - IP: 192.168.97.87 - RequestID: f1cxjakfxd7 +2025-06-18T13:59:41.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.79.116 - RequestID: i7v2bu8kjah +2025-06-18T13:59:41.481Z [TRACE] order-service - Operation: webhook_sent - Processing time: 600ms - RequestID: kbbvdiz4tf +2025-06-18T13:59:41.581Z [DEBUG] payment-service - POST /api/v1/orders - Status: 403 - Response time: 1533ms - IP: 192.168.97.87 - User: user_1071 - RequestID: 0ec0x9x9ux1t +2025-06-18T13:59:41.681Z [INFO] order-service - Database INSERT on users - Execution time: 240ms - Rows affected: 43 - RequestID: 5nrsz25ns9v +2025-06-18T13:59:41.781Z [INFO] order-service - Operation: order_created - Processing time: 399ms - RequestID: 2v7klmd7n7d +2025-06-18T13:59:41.881Z [DEBUG] order-service - Auth event: password_change - User: user_1080 - IP: 192.168.159.94 - RequestID: jy19w2rkkc +2025-06-18T13:59:41.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1015 - IP: 192.168.189.103 - RequestID: xfgc6gpr0mm +2025-06-18T13:59:42.081Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 64ms - Rows affected: 77 - RequestID: c8n5bb4k35 +2025-06-18T13:59:42.181Z [TRACE] payment-service - Database INSERT on products - Execution time: 111ms - Rows affected: 25 - RequestID: putl7kztu6 +2025-06-18T13:59:42.281Z [TRACE] notification-service - Database INSERT on orders - Execution time: 362ms - Rows affected: 75 - RequestID: h99lkfw9c7u +2025-06-18T13:59:42.381Z [TRACE] auth-service - Operation: cache_miss - Processing time: 243ms - RequestID: xv9t2t59f4 +2025-06-18T13:59:42.481Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 100ms - Rows affected: 35 - RequestID: 3k33a887tvg +2025-06-18T13:59:42.581Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1907ms - IP: 192.168.235.117 - User: user_1019 - RequestID: 0o2yjfefqk9 +2025-06-18T13:59:42.681Z [TRACE] auth-service - Database SELECT on payments - Execution time: 394ms - Rows affected: 34 - RequestID: u357b5nz9m +2025-06-18T13:59:42.781Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 13ms - Rows affected: 60 - RequestID: yel7hh3mpf9 +2025-06-18T13:59:42.881Z [TRACE] auth-service - Database INSERT on payments - Execution time: 305ms - Rows affected: 73 - RequestID: qxppjp7fetr +2025-06-18T13:59:42.981Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 340ms - Rows affected: 88 - RequestID: frgx0vjswnt +2025-06-18T13:59:43.081Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 846ms - RequestID: sw56vjhjgqg +2025-06-18T13:59:43.181Z [TRACE] order-service - DELETE /api/v1/users - Status: 404 - Response time: 1401ms - IP: 192.168.181.225 - User: user_1005 - RequestID: 85so3nl22z8 +2025-06-18T13:59:43.281Z [TRACE] user-service - Operation: webhook_sent - Processing time: 604ms - RequestID: 4oqjezyh4me +2025-06-18T13:59:43.381Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 501ms - RequestID: ogysst2a3z +2025-06-18T13:59:43.481Z [INFO] user-service - Auth event: logout - User: user_1003 - IP: 192.168.13.72 - RequestID: 1jffi5kzrxi +2025-06-18T13:59:43.581Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 316ms - IP: 192.168.10.184 - User: user_1019 - RequestID: 52b4aupwddi +2025-06-18T13:59:43.681Z [INFO] inventory-service - Auth event: logout - User: user_1056 - IP: 192.168.174.114 - RequestID: gojsdlm886w +2025-06-18T13:59:43.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.104.37 - RequestID: k6ayztuln +2025-06-18T13:59:43.881Z [DEBUG] order-service - GET /api/v1/orders - Status: 500 - Response time: 1708ms - IP: 192.168.242.165 - User: user_1021 - RequestID: fmyut8xabsb +2025-06-18T13:59:43.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1086 - IP: 192.168.189.103 - RequestID: xt5fxl7tpt +2025-06-18T13:59:44.081Z [DEBUG] user-service - Operation: cache_hit - Processing time: 880ms - RequestID: 7he3da6i4ux +2025-06-18T13:59:44.181Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 309ms - Rows affected: 98 - RequestID: i54qp4oi97b +2025-06-18T13:59:44.281Z [TRACE] user-service - Operation: order_created - Processing time: 375ms - RequestID: j6jlh8cojer +2025-06-18T13:59:44.381Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 137ms - Rows affected: 84 - RequestID: a4kv8qtqhej +2025-06-18T13:59:44.481Z [INFO] notification-service - Database UPDATE on products - Execution time: 496ms - Rows affected: 10 - RequestID: 9sfp5mza1l9 +2025-06-18T13:59:44.581Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 288ms - Rows affected: 76 - RequestID: 5kkyv1sax4s +2025-06-18T13:59:44.681Z [INFO] notification-service - PATCH /api/v1/payments - Status: 502 - Response time: 119ms - IP: 192.168.227.233 - User: user_1038 - RequestID: yh1jx7hu3m +2025-06-18T13:59:44.781Z [INFO] user-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.235.117 - RequestID: 3r2vop8zy3v +2025-06-18T13:59:44.881Z [TRACE] order-service - Auth event: password_change - User: user_1023 - IP: 192.168.235.117 - RequestID: qb8ckdhm9gf +2025-06-18T13:59:44.981Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 432ms - RequestID: fo2nx0ksgy5 +2025-06-18T13:59:45.081Z [INFO] auth-service - Database INSERT on sessions - Execution time: 455ms - Rows affected: 90 - RequestID: odir91zgt8m +2025-06-18T13:59:45.181Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 201 - Response time: 814ms - IP: 192.168.194.41 - User: user_1065 - RequestID: ddfwh8nlwef +2025-06-18T13:59:45.281Z [INFO] payment-service - Auth event: logout - User: user_1090 - IP: 192.168.196.226 - RequestID: h4nvrdw34oc +2025-06-18T13:59:45.381Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 145ms - RequestID: ws1gbu7syl +2025-06-18T13:59:45.481Z [INFO] payment-service - PATCH /api/v1/payments - Status: 500 - Response time: 73ms - IP: 192.168.36.218 - User: user_1004 - RequestID: 3rf16o17jgb +2025-06-18T13:59:45.581Z [TRACE] order-service - Auth event: logout - User: user_1061 - IP: 192.168.240.169 - RequestID: jnlin9fsp4 +2025-06-18T13:59:45.681Z [DEBUG] order-service - GET /api/v1/inventory - Status: 503 - Response time: 492ms - IP: 192.168.13.72 - User: user_1028 - RequestID: 9dzaihtziz +2025-06-18T13:59:45.781Z [DEBUG] inventory-service - Operation: order_created - Processing time: 229ms - RequestID: 7vq6n6bvaxp +2025-06-18T13:59:45.881Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.44.5 - RequestID: 7ip3bo5zusk +2025-06-18T13:59:45.981Z [INFO] auth-service - POST /api/v1/auth/login - Status: 200 - Response time: 416ms - IP: 192.168.53.133 - User: user_1080 - RequestID: j0qb13x9fqi +2025-06-18T13:59:46.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.64.33 - RequestID: 26nyp4nm2vk +2025-06-18T13:59:46.181Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 247ms - Rows affected: 39 - RequestID: b7rn1q6owp +2025-06-18T13:59:46.281Z [TRACE] user-service - POST /api/v1/users - Status: 503 - Response time: 167ms - IP: 192.168.46.63 - User: user_1008 - RequestID: qjtdycpm2s +2025-06-18T13:59:46.381Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 404 - Response time: 1492ms - IP: 192.168.68.128 - User: user_1055 - RequestID: zmfjf2d291 +2025-06-18T13:59:46.481Z [TRACE] payment-service - Operation: cache_miss - Processing time: 176ms - RequestID: ywy6t2w6gn +2025-06-18T13:59:46.581Z [TRACE] payment-service - Operation: order_created - Processing time: 443ms - RequestID: k3cr720fmxd +2025-06-18T13:59:46.681Z [INFO] inventory-service - Operation: cache_hit - Processing time: 91ms - RequestID: gatycnxb1xd +2025-06-18T13:59:46.781Z [DEBUG] user-service - Operation: notification_queued - Processing time: 445ms - RequestID: 9rfy4k4rk3t +2025-06-18T13:59:46.881Z [TRACE] user-service - Operation: cache_hit - Processing time: 423ms - RequestID: ihzlkbga90j +2025-06-18T13:59:46.981Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 180ms - Rows affected: 21 - RequestID: iptv79myh3b +2025-06-18T13:59:47.081Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 500 - Response time: 583ms - IP: 192.168.181.225 - User: user_1019 - RequestID: zvbvdr44pp +2025-06-18T13:59:47.181Z [INFO] notification-service - Auth event: logout - User: user_1072 - IP: 192.168.232.72 - RequestID: rmzpmkcvjn +2025-06-18T13:59:47.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 210ms - RequestID: li3v8gwqw6l +2025-06-18T13:59:47.381Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 423ms - RequestID: c7qvc0yupom +2025-06-18T13:59:47.481Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 401 - Response time: 45ms - IP: 192.168.64.33 - User: user_1018 - RequestID: 74eu57l13dp +2025-06-18T13:59:47.581Z [DEBUG] inventory-service - Operation: order_created - Processing time: 123ms - RequestID: 8fv944302dx +2025-06-18T13:59:47.681Z [TRACE] auth-service - Operation: notification_queued - Processing time: 660ms - RequestID: ndwm28lsg8 +2025-06-18T13:59:47.781Z [DEBUG] user-service - Operation: notification_queued - Processing time: 943ms - RequestID: vv9vlzm6ewh +2025-06-18T13:59:47.881Z [TRACE] payment-service - Database INSERT on users - Execution time: 198ms - Rows affected: 98 - RequestID: t8pddp720fp +2025-06-18T13:59:47.981Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 1026ms - RequestID: kz3ms6zs64 +2025-06-18T13:59:48.081Z [INFO] inventory-service - Auth event: password_change - User: user_1080 - IP: 192.168.174.114 - RequestID: ecncprh468g +2025-06-18T13:59:48.181Z [DEBUG] user-service - Database DELETE on products - Execution time: 73ms - Rows affected: 10 - RequestID: 2vvr2rpk0p6 +2025-06-18T13:59:48.281Z [INFO] payment-service - Operation: payment_processed - Processing time: 218ms - RequestID: kthxct9edv +2025-06-18T13:59:48.381Z [INFO] notification-service - Operation: cache_miss - Processing time: 740ms - RequestID: 0ywnkluyorno +2025-06-18T13:59:48.481Z [INFO] user-service - Database SELECT on sessions - Execution time: 40ms - Rows affected: 57 - RequestID: 1n1qlg25daah +2025-06-18T13:59:48.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.211.72 - RequestID: huqhlr7fubg +2025-06-18T13:59:48.681Z [DEBUG] notification-service - Auth event: logout - User: user_1035 - IP: 192.168.247.134 - RequestID: i23cf2j35r +2025-06-18T13:59:48.781Z [INFO] notification-service - DELETE /api/v1/orders - Status: 502 - Response time: 887ms - IP: 192.168.211.72 - User: user_1040 - RequestID: emu8dxvtkkh +2025-06-18T13:59:48.881Z [TRACE] notification-service - Operation: email_sent - Processing time: 794ms - RequestID: elrllorate +2025-06-18T13:59:48.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.79.143 - RequestID: i9q94fi4vu +2025-06-18T13:59:49.081Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 967ms - IP: 192.168.79.116 - User: user_1034 - RequestID: kx3rz4gyh1s +2025-06-18T13:59:49.181Z [TRACE] user-service - PUT /api/v1/payments - Status: 503 - Response time: 165ms - IP: 192.168.36.218 - User: user_1004 - RequestID: qlugst8mjxa +2025-06-18T13:59:49.281Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 375ms - Rows affected: 64 - RequestID: j7mse7u0jn +2025-06-18T13:59:49.381Z [DEBUG] user-service - Database DELETE on orders - Execution time: 306ms - Rows affected: 49 - RequestID: a9vk5tnjsgu +2025-06-18T13:59:49.481Z [DEBUG] user-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.174.114 - RequestID: hmv7u9jjyj +2025-06-18T13:59:49.581Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 98ms - RequestID: gqpk6x4v5or +2025-06-18T13:59:49.681Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 172ms - Rows affected: 87 - RequestID: 01ju9itlr1rk +2025-06-18T13:59:49.781Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1116ms - IP: 192.168.174.114 - User: user_1027 - RequestID: zlar9ki1gei +2025-06-18T13:59:49.881Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 400 - Response time: 1526ms - IP: 192.168.46.63 - User: user_1094 - RequestID: 38km76986qc +2025-06-18T13:59:49.981Z [TRACE] notification-service - Operation: cache_hit - Processing time: 742ms - RequestID: 5cckl70tdcr +2025-06-18T13:59:50.081Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1964ms - IP: 192.168.235.117 - User: user_1015 - RequestID: u96fxa1s959 +2025-06-18T13:59:50.181Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 288ms - Rows affected: 67 - RequestID: 3uyn3lqjdk6 +2025-06-18T13:59:50.281Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1910ms - IP: 192.168.97.87 - User: user_1064 - RequestID: 26epl6v87as +2025-06-18T13:59:50.381Z [DEBUG] user-service - Operation: notification_queued - Processing time: 653ms - RequestID: jaxess1mzuc +2025-06-18T13:59:50.481Z [TRACE] notification-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.1.152 - RequestID: maia6yk6evo +2025-06-18T13:59:50.581Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 401 - Response time: 1138ms - IP: 192.168.79.141 - User: user_1073 - RequestID: e0a2rwvr7xk +2025-06-18T13:59:50.681Z [TRACE] user-service - PATCH /api/v1/payments - Status: 400 - Response time: 1749ms - IP: 192.168.10.184 - User: user_1079 - RequestID: clja57kz257 +2025-06-18T13:59:50.781Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1258ms - IP: 192.168.97.87 - User: user_1004 - RequestID: iavibe4uytq +2025-06-18T13:59:50.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1030 - IP: 192.168.235.117 - RequestID: lx9rff8qjj +2025-06-18T13:59:50.981Z [TRACE] notification-service - Database SELECT on orders - Execution time: 34ms - Rows affected: 9 - RequestID: yfrgznn8l1 +2025-06-18T13:59:51.081Z [TRACE] user-service - Operation: cache_miss - Processing time: 377ms - RequestID: glhftn2irc +2025-06-18T13:59:51.181Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1414ms - IP: 192.168.189.103 - User: user_1055 - RequestID: olp23lipnyc +2025-06-18T13:59:51.281Z [DEBUG] auth-service - Database SELECT on users - Execution time: 498ms - Rows affected: 10 - RequestID: weyc8pziwo +2025-06-18T13:59:51.381Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 792ms - IP: 192.168.11.60 - User: user_1081 - RequestID: 9uswh8tr43f +2025-06-18T13:59:51.481Z [TRACE] auth-service - Operation: cache_miss - Processing time: 116ms - RequestID: o6nfy7g24 +2025-06-18T13:59:51.581Z [INFO] notification-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.194.41 - RequestID: lt58jmqwex +2025-06-18T13:59:51.681Z [TRACE] auth-service - POST /api/v1/users - Status: 403 - Response time: 347ms - IP: 192.168.79.143 - User: user_1065 - RequestID: wkfz7jzr3c +2025-06-18T13:59:51.781Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 500 - Response time: 2002ms - IP: 192.168.79.143 - User: user_1034 - RequestID: 0cy4kuj2xrx +2025-06-18T13:59:51.881Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 34ms - Rows affected: 74 - RequestID: 6x3cwlccy68 +2025-06-18T13:59:51.981Z [INFO] payment-service - Operation: order_created - Processing time: 315ms - RequestID: o160zx39mek +2025-06-18T13:59:52.081Z [INFO] payment-service - Auth event: login_failed - User: user_1014 - IP: 192.168.79.141 - RequestID: bj0pnc0lpj +2025-06-18T13:59:52.181Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 404 - Response time: 1417ms - IP: 192.168.227.77 - User: user_1074 - RequestID: vsspwa0flg +2025-06-18T13:59:52.281Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 910ms - RequestID: hbhbnycab6 +2025-06-18T13:59:52.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.227.233 - RequestID: 37knwemlcp3 +2025-06-18T13:59:52.481Z [INFO] inventory-service - PUT /api/v1/users - Status: 201 - Response time: 1424ms - IP: 192.168.170.215 - User: user_1064 - RequestID: wynodrspyuk +2025-06-18T13:59:52.581Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 39ms - Rows affected: 6 - RequestID: lvklbeiuyg +2025-06-18T13:59:52.681Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 472ms - RequestID: 1yoyw2oa9ov +2025-06-18T13:59:52.781Z [TRACE] notification-service - GET /api/v1/users - Status: 400 - Response time: 1838ms - IP: 192.168.232.72 - User: user_1056 - RequestID: bhijxfeplv +2025-06-18T13:59:52.881Z [INFO] payment-service - Database INSERT on orders - Execution time: 277ms - Rows affected: 31 - RequestID: 8j9isokxsk4 +2025-06-18T13:59:52.981Z [TRACE] payment-service - PUT /api/v1/orders - Status: 401 - Response time: 1036ms - IP: 192.168.227.233 - User: user_1075 - RequestID: wib7qr9lj1 +2025-06-18T13:59:53.081Z [INFO] auth-service - Operation: order_created - Processing time: 572ms - RequestID: wxg2buncb68 +2025-06-18T13:59:53.181Z [TRACE] payment-service - Operation: cache_miss - Processing time: 434ms - RequestID: mb7tc3qk3os +2025-06-18T13:59:53.281Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 358ms - Rows affected: 18 - RequestID: l521717ti9 +2025-06-18T13:59:53.381Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 502 - Response time: 253ms - IP: 192.168.211.72 - User: user_1012 - RequestID: yvgsff37ija +2025-06-18T13:59:53.481Z [TRACE] user-service - DELETE /api/v1/orders - Status: 500 - Response time: 271ms - IP: 192.168.79.143 - User: user_1090 - RequestID: 8lu1h1n8ys3 +2025-06-18T13:59:53.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1044 - IP: 192.168.211.72 - RequestID: rv4geqwoei +2025-06-18T13:59:53.681Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 893ms - IP: 192.168.13.72 - User: user_1048 - RequestID: f2ivee34sb8 +2025-06-18T13:59:53.781Z [INFO] payment-service - PATCH /api/v1/orders - Status: 404 - Response time: 604ms - IP: 192.168.31.117 - User: user_1087 - RequestID: ljwqrh4w4u +2025-06-18T13:59:53.881Z [DEBUG] payment-service - Database SELECT on products - Execution time: 174ms - Rows affected: 23 - RequestID: 5h4d6c1x3xy +2025-06-18T13:59:53.981Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 621ms - RequestID: iegvz32omgn +2025-06-18T13:59:54.081Z [TRACE] notification-service - Operation: cache_hit - Processing time: 349ms - RequestID: qjyridgwpa +2025-06-18T13:59:54.181Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 894ms - IP: 192.168.227.233 - User: user_1000 - RequestID: i3vdv1qs2e +2025-06-18T13:59:54.281Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1288ms - IP: 192.168.240.169 - User: user_1012 - RequestID: 0tpm766yth1 +2025-06-18T13:59:54.381Z [INFO] auth-service - Operation: order_created - Processing time: 1023ms - RequestID: wshtohchi5 +2025-06-18T13:59:54.481Z [DEBUG] auth-service - Operation: order_created - Processing time: 675ms - RequestID: przyq2pc6ai +2025-06-18T13:59:54.581Z [TRACE] notification-service - Auth event: login_success - User: user_1059 - IP: 192.168.196.226 - RequestID: 2az2c17alr2 +2025-06-18T13:59:54.681Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1223ms - IP: 192.168.144.38 - User: user_1042 - RequestID: q8tsn1ge8ub +2025-06-18T13:59:54.781Z [DEBUG] order-service - Auth event: password_change - User: user_1001 - IP: 192.168.81.206 - RequestID: vy13210gyh +2025-06-18T13:59:54.881Z [DEBUG] notification-service - Auth event: login_failed - User: user_1085 - IP: 192.168.79.143 - RequestID: 0uyzzd5xcoam +2025-06-18T13:59:54.981Z [INFO] auth-service - Database SELECT on payments - Execution time: 469ms - Rows affected: 42 - RequestID: zj7p1vhj21 +2025-06-18T13:59:55.081Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 500 - Response time: 976ms - IP: 192.168.141.100 - User: user_1086 - RequestID: cilr4bik5m6 +2025-06-18T13:59:55.181Z [INFO] order-service - Database INSERT on payments - Execution time: 377ms - Rows affected: 81 - RequestID: 4wyj845kz64 +2025-06-18T13:59:55.281Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 149ms - Rows affected: 86 - RequestID: 71b8tcw8ngq +2025-06-18T13:59:55.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 65ms - RequestID: 2wf2byopttq +2025-06-18T13:59:55.481Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 284ms - IP: 192.168.211.72 - User: user_1032 - RequestID: zsmon7fkjf +2025-06-18T13:59:55.581Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 102ms - RequestID: 4rzo5ezdc6g +2025-06-18T13:59:55.681Z [INFO] payment-service - GET /api/v1/users - Status: 400 - Response time: 1367ms - IP: 192.168.227.77 - User: user_1060 - RequestID: 47jum6mg74i +2025-06-18T13:59:55.781Z [TRACE] notification-service - Operation: cache_hit - Processing time: 923ms - RequestID: sabvb0d3r6b +2025-06-18T13:59:55.881Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 387ms - RequestID: 2mndjru0aqh +2025-06-18T13:59:55.981Z [INFO] order-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.36.218 - RequestID: qpila5gkymn +2025-06-18T13:59:56.081Z [DEBUG] payment-service - Auth event: logout - User: user_1059 - IP: 192.168.11.60 - RequestID: mw8ihfmn4uh +2025-06-18T13:59:56.181Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 219ms - Rows affected: 42 - RequestID: z4xshsxbd9 +2025-06-18T13:59:56.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1036 - IP: 192.168.174.114 - RequestID: lqt7hxitkv +2025-06-18T13:59:56.381Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 235ms - RequestID: yv49nmd6zy +2025-06-18T13:59:56.481Z [INFO] order-service - Database DELETE on orders - Execution time: 291ms - Rows affected: 31 - RequestID: bf6reqh9qp8 +2025-06-18T13:59:56.581Z [TRACE] auth-service - Auth event: password_change - User: user_1011 - IP: 192.168.68.158 - RequestID: 66ivtsd9b9t +2025-06-18T13:59:56.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 100ms - RequestID: m0yg7v2knqa +2025-06-18T13:59:56.781Z [TRACE] auth-service - Auth event: logout - User: user_1032 - IP: 192.168.232.72 - RequestID: vb6tbj1r29i +2025-06-18T13:59:56.881Z [DEBUG] user-service - Database UPDATE on users - Execution time: 84ms - Rows affected: 0 - RequestID: cb3j9uqu9l +2025-06-18T13:59:56.981Z [INFO] order-service - PUT /api/v1/orders - Status: 400 - Response time: 620ms - IP: 192.168.240.169 - User: user_1071 - RequestID: wy59obqztv +2025-06-18T13:59:57.081Z [TRACE] notification-service - Operation: order_created - Processing time: 70ms - RequestID: vv1qu597bmf +2025-06-18T13:59:57.181Z [INFO] inventory-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.194.41 - RequestID: m4d8yjr1ydh +2025-06-18T13:59:57.281Z [TRACE] payment-service - Operation: order_created - Processing time: 1023ms - RequestID: aqserh3smes +2025-06-18T13:59:57.381Z [INFO] payment-service - Operation: webhook_sent - Processing time: 1026ms - RequestID: 469rbm1mo59 +2025-06-18T13:59:57.481Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 373ms - Rows affected: 69 - RequestID: pqlpbjfz9f +2025-06-18T13:59:57.581Z [INFO] notification-service - Database UPDATE on products - Execution time: 473ms - Rows affected: 73 - RequestID: vohfop9lti9 +2025-06-18T13:59:57.681Z [INFO] inventory-service - Operation: cache_miss - Processing time: 659ms - RequestID: 7eebzcu2usy +2025-06-18T13:59:57.781Z [DEBUG] user-service - PUT /api/v1/orders - Status: 400 - Response time: 1184ms - IP: 192.168.31.117 - User: user_1074 - RequestID: v8rrmtsaj6e +2025-06-18T13:59:57.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1049 - IP: 192.168.227.233 - RequestID: w4z7vwuzdb +2025-06-18T13:59:57.981Z [TRACE] user-service - Database UPDATE on users - Execution time: 15ms - Rows affected: 31 - RequestID: fxppqcyumy4 +2025-06-18T13:59:58.081Z [TRACE] order-service - Auth event: login_failed - User: user_1038 - IP: 192.168.81.206 - RequestID: l361vklnfdf +2025-06-18T13:59:58.181Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 1032ms - RequestID: aczmuq00i8t +2025-06-18T13:59:58.281Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 698ms - RequestID: gkn41y99ow9 +2025-06-18T13:59:58.381Z [INFO] user-service - Operation: notification_queued - Processing time: 140ms - RequestID: 988b3j8du5i +2025-06-18T13:59:58.481Z [INFO] user-service - PATCH /api/v1/users - Status: 500 - Response time: 700ms - IP: 192.168.79.141 - User: user_1005 - RequestID: skyp79kd8jd +2025-06-18T13:59:58.581Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 201 - Response time: 655ms - IP: 192.168.194.41 - User: user_1022 - RequestID: lo9wvv8ai4 +2025-06-18T13:59:58.681Z [INFO] user-service - PUT /api/v1/orders - Status: 200 - Response time: 962ms - IP: 192.168.211.72 - User: user_1056 - RequestID: 7oudqmd17ar +2025-06-18T13:59:58.781Z [TRACE] user-service - GET /api/v1/payments - Status: 503 - Response time: 696ms - IP: 192.168.97.87 - User: user_1094 - RequestID: ytdmje0c4ip +2025-06-18T13:59:58.881Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 402ms - Rows affected: 9 - RequestID: ryegtc6c0pc +2025-06-18T13:59:58.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.138.123 - RequestID: mrctzqko5ek +2025-06-18T13:59:59.081Z [DEBUG] payment-service - Auth event: logout - User: user_1029 - IP: 192.168.44.5 - RequestID: 1kdktd55qwf +2025-06-18T13:59:59.181Z [INFO] order-service - Auth event: login_success - User: user_1030 - IP: 192.168.187.199 - RequestID: neflu1r0e9l +2025-06-18T13:59:59.281Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 404ms - Rows affected: 84 - RequestID: n8jqg2w2jfa +2025-06-18T13:59:59.381Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.46.63 - RequestID: pexxmn698 +2025-06-18T13:59:59.481Z [INFO] order-service - DELETE /api/v1/inventory - Status: 400 - Response time: 111ms - IP: 192.168.158.144 - User: user_1069 - RequestID: ezgqwk80xw +2025-06-18T13:59:59.581Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 9ms - Rows affected: 13 - RequestID: 7oh2gf90s95 +2025-06-18T13:59:59.681Z [TRACE] notification-service - Operation: order_created - Processing time: 303ms - RequestID: wl334lg0v8e +2025-06-18T13:59:59.781Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 201 - Response time: 1282ms - IP: 192.168.64.33 - User: user_1061 - RequestID: r3gebbobmxm +2025-06-18T13:59:59.881Z [DEBUG] order-service - Auth event: logout - User: user_1043 - IP: 192.168.242.165 - RequestID: l5hv891r1aq +2025-06-18T13:59:59.981Z [DEBUG] auth-service - Auth event: logout - User: user_1081 - IP: 192.168.232.72 - RequestID: 95q57up7xh +2025-06-18T14:00:00.081Z [INFO] inventory-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.79.116 - RequestID: a16j3cq3qxw +2025-06-18T14:00:00.181Z [INFO] inventory-service - Database SELECT on payments - Execution time: 237ms - Rows affected: 70 - RequestID: 565c30mkw7a +2025-06-18T14:00:00.281Z [INFO] payment-service - Database SELECT on sessions - Execution time: 425ms - Rows affected: 11 - RequestID: hg1eunzn5fp +2025-06-18T14:00:00.381Z [DEBUG] order-service - Operation: payment_processed - Processing time: 154ms - RequestID: 2txlt1r616u +2025-06-18T14:00:00.481Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 200 - Response time: 479ms - IP: 192.168.68.158 - User: user_1077 - RequestID: 9aw9jt5itxk +2025-06-18T14:00:00.581Z [INFO] order-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.242.165 - RequestID: h4ncj93q3b4 +2025-06-18T14:00:00.681Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 420ms - Rows affected: 61 - RequestID: t2swibi1lr +2025-06-18T14:00:00.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1088 - IP: 192.168.11.60 - RequestID: vlvqymavd2d +2025-06-18T14:00:00.881Z [INFO] payment-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.44.5 - RequestID: sob3aqyc278 +2025-06-18T14:00:00.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.68.128 - RequestID: pl17unag3gq +2025-06-18T14:00:01.081Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 575ms - IP: 192.168.32.38 - User: user_1024 - RequestID: 1ulm0c51h41h +2025-06-18T14:00:01.181Z [TRACE] auth-service - GET /api/v1/inventory - Status: 500 - Response time: 731ms - IP: 192.168.187.199 - User: user_1013 - RequestID: cctaxyknuqs +2025-06-18T14:00:01.281Z [INFO] user-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.11.60 - RequestID: l7jdeqzpyja +2025-06-18T14:00:01.381Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 414ms - RequestID: 8xu5x09vv3h +2025-06-18T14:00:01.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 381ms - RequestID: 5id3qlakj +2025-06-18T14:00:01.581Z [INFO] inventory-service - DELETE /api/v1/users - Status: 500 - Response time: 86ms - IP: 192.168.33.76 - User: user_1049 - RequestID: blhn7ztk06r +2025-06-18T14:00:01.681Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 500 - Response time: 1956ms - IP: 192.168.30.79 - User: user_1016 - RequestID: rj1rtiob86 +2025-06-18T14:00:01.781Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1180ms - IP: 192.168.227.233 - User: user_1026 - RequestID: 5mib7mkghfj +2025-06-18T14:00:01.881Z [DEBUG] user-service - Auth event: password_change - User: user_1069 - IP: 192.168.68.158 - RequestID: 2rzff8cea3 +2025-06-18T14:00:01.981Z [TRACE] user-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.64.33 - RequestID: muot82cvyql +2025-06-18T14:00:02.081Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 198ms - Rows affected: 94 - RequestID: pwjq0qjwhcp +2025-06-18T14:00:02.181Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 221ms - Rows affected: 58 - RequestID: hdxh4s6tnw +2025-06-18T14:00:02.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1007 - IP: 192.168.97.87 - RequestID: 4dn016344yj +2025-06-18T14:00:02.381Z [INFO] user-service - Operation: inventory_updated - Processing time: 770ms - RequestID: ag31cl7awtf +2025-06-18T14:00:02.481Z [TRACE] auth-service - Database DELETE on orders - Execution time: 164ms - Rows affected: 2 - RequestID: sfnhjr9gke8 +2025-06-18T14:00:02.581Z [INFO] notification-service - Database DELETE on orders - Execution time: 212ms - Rows affected: 27 - RequestID: a60advgke6u +2025-06-18T14:00:02.681Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 110ms - Rows affected: 34 - RequestID: bhvz31zhuo +2025-06-18T14:00:02.781Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 99ms - Rows affected: 11 - RequestID: zuukoxeatj +2025-06-18T14:00:02.881Z [DEBUG] user-service - Operation: cache_miss - Processing time: 676ms - RequestID: dm0og1551d +2025-06-18T14:00:02.981Z [INFO] inventory-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.181.225 - RequestID: 0ulnh67bgmeg +2025-06-18T14:00:03.081Z [INFO] payment-service - Operation: notification_queued - Processing time: 599ms - RequestID: pbsxkcdawum +2025-06-18T14:00:03.181Z [INFO] user-service - POST /api/v1/auth/logout - Status: 502 - Response time: 525ms - IP: 192.168.189.103 - User: user_1013 - RequestID: f9ishjln09 +2025-06-18T14:00:03.281Z [DEBUG] user-service - Operation: notification_queued - Processing time: 992ms - RequestID: qgnnnac01y +2025-06-18T14:00:03.381Z [INFO] inventory-service - Database DELETE on payments - Execution time: 310ms - Rows affected: 45 - RequestID: cu0kaeikjl +2025-06-18T14:00:03.481Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 200 - Response time: 1563ms - IP: 192.168.79.143 - User: user_1063 - RequestID: br5mkc7udds +2025-06-18T14:00:03.581Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 201 - Response time: 229ms - IP: 192.168.247.134 - User: user_1024 - RequestID: pddqtb71r9 +2025-06-18T14:00:03.681Z [DEBUG] order-service - Auth event: logout - User: user_1035 - IP: 192.168.187.199 - RequestID: zp810zzsy0r +2025-06-18T14:00:03.781Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 93ms - Rows affected: 92 - RequestID: 0whr00mw4a7a +2025-06-18T14:00:03.881Z [DEBUG] user-service - Database DELETE on products - Execution time: 208ms - Rows affected: 16 - RequestID: 5lrj8e4p2ut +2025-06-18T14:00:03.981Z [INFO] user-service - Operation: inventory_updated - Processing time: 966ms - RequestID: baw2m9ontk6 +2025-06-18T14:00:04.081Z [TRACE] auth-service - Operation: cache_hit - Processing time: 575ms - RequestID: vfls3yfec6 +2025-06-18T14:00:04.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.158.144 - RequestID: ujnoku1fzx +2025-06-18T14:00:04.281Z [INFO] inventory-service - Operation: payment_processed - Processing time: 80ms - RequestID: cycr3k9uzrf +2025-06-18T14:00:04.381Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 201 - Response time: 1995ms - IP: 192.168.159.94 - User: user_1077 - RequestID: 7owk5vmu95i +2025-06-18T14:00:04.481Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 400 - Response time: 1703ms - IP: 192.168.174.114 - User: user_1037 - RequestID: xiqxrs2fv6 +2025-06-18T14:00:04.581Z [TRACE] order-service - Operation: webhook_sent - Processing time: 1022ms - RequestID: 22zi1x0m697 +2025-06-18T14:00:04.681Z [TRACE] inventory-service - Auth event: logout - User: user_1079 - IP: 192.168.10.184 - RequestID: 8cm69mu5ny +2025-06-18T14:00:04.781Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 953ms - RequestID: psl67bcby8r +2025-06-18T14:00:04.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1048 - IP: 192.168.68.128 - RequestID: tvia8g1qe1q +2025-06-18T14:00:04.981Z [DEBUG] order-service - PUT /api/v1/users - Status: 503 - Response time: 1453ms - IP: 192.168.13.72 - User: user_1062 - RequestID: 1lc37gkfg1jh +2025-06-18T14:00:05.081Z [INFO] notification-service - Operation: webhook_sent - Processing time: 490ms - RequestID: lk3fohe7vc8 +2025-06-18T14:00:05.181Z [DEBUG] user-service - Operation: order_created - Processing time: 142ms - RequestID: 8xvrbppzrmj +2025-06-18T14:00:05.281Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 389ms - RequestID: mpt72qrc0aj +2025-06-18T14:00:05.381Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 201 - Response time: 32ms - IP: 192.168.138.123 - User: user_1088 - RequestID: e2z1eooigoq +2025-06-18T14:00:05.481Z [TRACE] user-service - Operation: notification_queued - Processing time: 65ms - RequestID: q4w1svr28ml +2025-06-18T14:00:05.581Z [INFO] auth-service - Operation: payment_processed - Processing time: 399ms - RequestID: xj0b1urnaon +2025-06-18T14:00:05.681Z [TRACE] notification-service - GET /api/v1/auth/login - Status: 201 - Response time: 1776ms - IP: 192.168.133.7 - User: user_1092 - RequestID: v0sl0u6p7qc +2025-06-18T14:00:05.781Z [INFO] notification-service - Auth event: login_success - User: user_1076 - IP: 192.168.211.72 - RequestID: birhs0ufgq4 +2025-06-18T14:00:05.881Z [TRACE] auth-service - GET /api/v1/users - Status: 503 - Response time: 695ms - IP: 192.168.141.100 - User: user_1090 - RequestID: smup8qk6bf +2025-06-18T14:00:05.981Z [TRACE] notification-service - Operation: notification_queued - Processing time: 842ms - RequestID: c4t2y4c6b4m +2025-06-18T14:00:06.081Z [INFO] user-service - POST /api/v1/inventory - Status: 502 - Response time: 554ms - IP: 192.168.10.184 - User: user_1087 - RequestID: 6wp24xz1c2a +2025-06-18T14:00:06.181Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1095ms - IP: 192.168.79.116 - User: user_1054 - RequestID: jtjvww5cvtk +2025-06-18T14:00:06.281Z [TRACE] auth-service - GET /api/v1/users - Status: 404 - Response time: 675ms - IP: 192.168.53.133 - User: user_1084 - RequestID: bcm5slot83e +2025-06-18T14:00:06.381Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 387ms - Rows affected: 15 - RequestID: 5tjg4ckwdz +2025-06-18T14:00:06.481Z [INFO] auth-service - Database SELECT on users - Execution time: 1ms - Rows affected: 45 - RequestID: 2muic98aqes +2025-06-18T14:00:06.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.53.133 - RequestID: px9urgzyh9e +2025-06-18T14:00:06.681Z [DEBUG] user-service - Operation: notification_queued - Processing time: 341ms - RequestID: 9ox64d3xdbm +2025-06-18T14:00:06.781Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1234ms - IP: 192.168.138.123 - User: user_1063 - RequestID: m99bfvg81dr +2025-06-18T14:00:06.881Z [INFO] inventory-service - Auth event: logout - User: user_1077 - IP: 192.168.31.117 - RequestID: namd2hq0x8r +2025-06-18T14:00:06.981Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 411ms - IP: 192.168.158.144 - User: user_1078 - RequestID: xkcdett2vtb +2025-06-18T14:00:07.081Z [TRACE] order-service - POST /api/v1/auth/login - Status: 500 - Response time: 168ms - IP: 192.168.232.72 - User: user_1029 - RequestID: t36hgyeao9 +2025-06-18T14:00:07.181Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 823ms - RequestID: twhqfqqaybp +2025-06-18T14:00:07.281Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1738ms - IP: 192.168.79.141 - User: user_1094 - RequestID: r6cjpf9ldyh +2025-06-18T14:00:07.381Z [INFO] auth-service - Auth event: logout - User: user_1056 - IP: 192.168.138.123 - RequestID: j3x9akizsyb +2025-06-18T14:00:07.481Z [TRACE] auth-service - Auth event: login_failed - User: user_1098 - IP: 192.168.79.141 - RequestID: a9ijvpslbv +2025-06-18T14:00:07.581Z [INFO] order-service - PUT /api/v1/payments - Status: 403 - Response time: 1487ms - IP: 192.168.14.77 - User: user_1072 - RequestID: klfp0of97i +2025-06-18T14:00:07.681Z [DEBUG] user-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.242.165 - RequestID: fs2v3umdmwd +2025-06-18T14:00:07.781Z [INFO] notification-service - PATCH /api/v1/users - Status: 404 - Response time: 1615ms - IP: 192.168.133.7 - User: user_1051 - RequestID: aefrxa4287h +2025-06-18T14:00:07.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.196.226 - RequestID: 7yp9xnh4tz3 +2025-06-18T14:00:07.981Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 40ms - Rows affected: 28 - RequestID: z0gc4je2sp +2025-06-18T14:00:08.081Z [INFO] payment-service - Auth event: login_success - User: user_1097 - IP: 192.168.194.41 - RequestID: w1awqaq9eb +2025-06-18T14:00:08.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 778ms - RequestID: kmpeconii1 +2025-06-18T14:00:08.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 450ms - RequestID: bdem0minbcq +2025-06-18T14:00:08.381Z [TRACE] order-service - Operation: payment_processed - Processing time: 269ms - RequestID: 5c8iovif8f9 +2025-06-18T14:00:08.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1040 - IP: 192.168.100.240 - RequestID: r9xv3cqwibm +2025-06-18T14:00:08.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.53.133 - RequestID: rr9u84qmlt +2025-06-18T14:00:08.681Z [INFO] auth-service - Database SELECT on users - Execution time: 205ms - Rows affected: 94 - RequestID: 4972dmn438 +2025-06-18T14:00:08.781Z [DEBUG] user-service - GET /api/v1/users - Status: 401 - Response time: 712ms - IP: 192.168.227.233 - User: user_1044 - RequestID: e6yv23vbwm +2025-06-18T14:00:08.881Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 401 - Response time: 1823ms - IP: 192.168.97.87 - User: user_1005 - RequestID: vm5cpl3g6le +2025-06-18T14:00:08.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.196.226 - RequestID: ww6bblguom +2025-06-18T14:00:09.081Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 122ms - Rows affected: 48 - RequestID: bdskbaj2wph +2025-06-18T14:00:09.181Z [INFO] payment-service - Operation: email_sent - Processing time: 624ms - RequestID: zf3sspgow1 +2025-06-18T14:00:09.281Z [INFO] user-service - GET /api/v1/auth/logout - Status: 400 - Response time: 436ms - IP: 192.168.46.63 - User: user_1070 - RequestID: 9k6jz6sgz4l +2025-06-18T14:00:09.381Z [INFO] inventory-service - Operation: cache_miss - Processing time: 1046ms - RequestID: 139dkv4ucc3l +2025-06-18T14:00:09.481Z [TRACE] payment-service - Auth event: login_success - User: user_1027 - IP: 192.168.227.233 - RequestID: 822y5gogpkk +2025-06-18T14:00:09.581Z [INFO] payment-service - Operation: cache_hit - Processing time: 518ms - RequestID: mnwiqx5j3z +2025-06-18T14:00:09.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1002 - IP: 192.168.85.229 - RequestID: 9bwueqzum2w +2025-06-18T14:00:09.781Z [TRACE] inventory-service - Database SELECT on products - Execution time: 8ms - Rows affected: 34 - RequestID: 4e8ebis8pcr +2025-06-18T14:00:09.881Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1527ms - IP: 192.168.36.218 - User: user_1007 - RequestID: wqve9245ceg +2025-06-18T14:00:09.981Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 370ms - Rows affected: 74 - RequestID: 670t63tawv +2025-06-18T14:00:10.081Z [INFO] user-service - Auth event: password_change - User: user_1048 - IP: 192.168.33.76 - RequestID: upp6rpn8uz +2025-06-18T14:00:10.181Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1953ms - IP: 192.168.10.184 - User: user_1000 - RequestID: dhh59j1bnht +2025-06-18T14:00:10.281Z [TRACE] order-service - Auth event: password_change - User: user_1091 - IP: 192.168.187.199 - RequestID: 958q3v8g9aj +2025-06-18T14:00:10.381Z [INFO] order-service - Auth event: login_failed - User: user_1007 - IP: 192.168.53.133 - RequestID: g5bewv6j5w +2025-06-18T14:00:10.481Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 400 - Response time: 363ms - IP: 192.168.229.123 - User: user_1088 - RequestID: 05sq8380vtvd +2025-06-18T14:00:10.581Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 89ms - Rows affected: 4 - RequestID: r6vjxscsrb +2025-06-18T14:00:10.681Z [INFO] inventory-service - Database INSERT on users - Execution time: 340ms - Rows affected: 37 - RequestID: ir5rwxsuj8 +2025-06-18T14:00:10.781Z [TRACE] auth-service - Database DELETE on products - Execution time: 340ms - Rows affected: 35 - RequestID: kbxickjkuoj +2025-06-18T14:00:10.881Z [DEBUG] order-service - GET /api/v1/users - Status: 503 - Response time: 1507ms - IP: 192.168.1.152 - User: user_1026 - RequestID: yv1oy2nqnm +2025-06-18T14:00:10.981Z [INFO] inventory-service - Operation: payment_processed - Processing time: 443ms - RequestID: rx75lf6hrl +2025-06-18T14:00:11.081Z [INFO] auth-service - Operation: cache_hit - Processing time: 787ms - RequestID: uolcsopmojs +2025-06-18T14:00:11.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.167.32 - RequestID: vddv3f5jpnl +2025-06-18T14:00:11.281Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 734ms - RequestID: vnta71g79wl +2025-06-18T14:00:11.381Z [INFO] auth-service - Database INSERT on payments - Execution time: 277ms - Rows affected: 69 - RequestID: gqmcjarddyb +2025-06-18T14:00:11.481Z [INFO] payment-service - Operation: cache_miss - Processing time: 595ms - RequestID: yem43b9djb9 +2025-06-18T14:00:11.581Z [DEBUG] order-service - Database DELETE on products - Execution time: 416ms - Rows affected: 53 - RequestID: 1lrzujwows8 +2025-06-18T14:00:11.681Z [INFO] order-service - Auth event: login_success - User: user_1011 - IP: 192.168.33.76 - RequestID: 64nmpqes51g +2025-06-18T14:00:11.781Z [TRACE] payment-service - POST /api/v1/orders - Status: 403 - Response time: 615ms - IP: 192.168.159.94 - User: user_1056 - RequestID: dlzuf87rh7w +2025-06-18T14:00:11.881Z [INFO] order-service - DELETE /api/v1/payments - Status: 403 - Response time: 1266ms - IP: 192.168.81.206 - User: user_1030 - RequestID: 637qmeeuet6 +2025-06-18T14:00:11.981Z [INFO] notification-service - Auth event: login_success - User: user_1049 - IP: 192.168.11.60 - RequestID: 8rqmp3850wr +2025-06-18T14:00:12.081Z [INFO] auth-service - Operation: inventory_updated - Processing time: 396ms - RequestID: jxuezuxu3a +2025-06-18T14:00:12.181Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 400 - Response time: 861ms - IP: 192.168.158.144 - User: user_1073 - RequestID: li8dkg6c2d +2025-06-18T14:00:12.281Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 366ms - IP: 192.168.211.72 - User: user_1080 - RequestID: 7yntjj4o0j +2025-06-18T14:00:12.381Z [TRACE] order-service - Operation: payment_processed - Processing time: 625ms - RequestID: g9v06z1iuo9 +2025-06-18T14:00:12.481Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 248ms - Rows affected: 95 - RequestID: zhbiv8o0jt +2025-06-18T14:00:12.581Z [INFO] notification-service - Auth event: login_failed - User: user_1032 - IP: 192.168.242.165 - RequestID: faqocuj41vf +2025-06-18T14:00:12.681Z [DEBUG] user-service - Database INSERT on orders - Execution time: 197ms - Rows affected: 35 - RequestID: 6t5xdd6s34t +2025-06-18T14:00:12.781Z [TRACE] inventory-service - Auth event: logout - User: user_1064 - IP: 192.168.104.37 - RequestID: c8udfpp7j8p +2025-06-18T14:00:12.881Z [INFO] auth-service - GET /api/v1/inventory - Status: 400 - Response time: 730ms - IP: 192.168.240.169 - User: user_1038 - RequestID: f3ons5etc2m +2025-06-18T14:00:12.981Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 361ms - Rows affected: 85 - RequestID: 682zu6drv95 +2025-06-18T14:00:13.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 545ms - RequestID: m3j3zk4l0lq +2025-06-18T14:00:13.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 217ms - RequestID: ualk8xaufyd +2025-06-18T14:00:13.281Z [INFO] inventory-service - Operation: payment_processed - Processing time: 297ms - RequestID: 4sku95xwpig +2025-06-18T14:00:13.381Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 307ms - Rows affected: 71 - RequestID: sr8qj4wa2je +2025-06-18T14:00:13.481Z [TRACE] order-service - Operation: cache_miss - Processing time: 720ms - RequestID: pp3lsu3cugi +2025-06-18T14:00:13.581Z [INFO] payment-service - Auth event: login_failed - User: user_1046 - IP: 192.168.113.218 - RequestID: xg401sz3bs +2025-06-18T14:00:13.681Z [INFO] inventory-service - Operation: order_created - Processing time: 1047ms - RequestID: t3yl8qzzqj +2025-06-18T14:00:13.781Z [INFO] notification-service - Database INSERT on products - Execution time: 307ms - Rows affected: 31 - RequestID: fjfr98g9ywj +2025-06-18T14:00:13.881Z [INFO] notification-service - Auth event: login_success - User: user_1089 - IP: 192.168.28.146 - RequestID: id54g51moi +2025-06-18T14:00:13.981Z [TRACE] notification-service - Auth event: login_success - User: user_1045 - IP: 192.168.33.76 - RequestID: rv900ez3xin +2025-06-18T14:00:14.081Z [INFO] auth-service - Database INSERT on products - Execution time: 484ms - Rows affected: 58 - RequestID: k5gv69uu58g +2025-06-18T14:00:14.181Z [INFO] payment-service - GET /api/v1/orders - Status: 403 - Response time: 1071ms - IP: 192.168.46.63 - User: user_1018 - RequestID: qbqznywwu7p +2025-06-18T14:00:14.281Z [INFO] notification-service - Operation: order_created - Processing time: 1045ms - RequestID: 77xiwfqzp92 +2025-06-18T14:00:14.381Z [INFO] auth-service - Auth event: login_success - User: user_1026 - IP: 192.168.32.38 - RequestID: l1aaghzoc3 +2025-06-18T14:00:14.481Z [TRACE] order-service - Database SELECT on payments - Execution time: 378ms - Rows affected: 90 - RequestID: ndrsrjgqpsp +2025-06-18T14:00:14.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.187.199 - RequestID: hcwpuj1vac +2025-06-18T14:00:14.681Z [DEBUG] user-service - Auth event: login_failed - User: user_1095 - IP: 192.168.13.72 - RequestID: 9kubtqjkan +2025-06-18T14:00:14.781Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 16ms - Rows affected: 11 - RequestID: hzn8nvfn2z7 +2025-06-18T14:00:14.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 57ms - RequestID: yck4n5ldyk +2025-06-18T14:00:14.981Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 197ms - Rows affected: 19 - RequestID: 7at1rf2sglw +2025-06-18T14:00:15.081Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 57ms - Rows affected: 30 - RequestID: bua4llyi0jp +2025-06-18T14:00:15.181Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 404ms - Rows affected: 63 - RequestID: paka5mkn7t8 +2025-06-18T14:00:15.281Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 771ms - RequestID: ccnepmrrlk5 +2025-06-18T14:00:15.381Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 256ms - Rows affected: 37 - RequestID: zc5ouj6w76 +2025-06-18T14:00:15.481Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 502 - Response time: 714ms - IP: 192.168.1.152 - User: user_1076 - RequestID: zhtl1jakbnc +2025-06-18T14:00:15.581Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 200 - Response time: 426ms - IP: 192.168.211.72 - User: user_1089 - RequestID: uwiua3342ob +2025-06-18T14:00:15.681Z [INFO] notification-service - Database DELETE on orders - Execution time: 453ms - Rows affected: 82 - RequestID: z7bc61nnrtg +2025-06-18T14:00:15.781Z [INFO] auth-service - POST /api/v1/auth/login - Status: 201 - Response time: 1703ms - IP: 192.168.33.76 - User: user_1051 - RequestID: 5ib0crm987v +2025-06-18T14:00:15.881Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 403 - Response time: 198ms - IP: 192.168.189.103 - User: user_1044 - RequestID: h6aw37obuj4 +2025-06-18T14:00:15.981Z [INFO] auth-service - GET /api/v1/inventory - Status: 401 - Response time: 1485ms - IP: 192.168.44.5 - User: user_1067 - RequestID: jluyw4j99y +2025-06-18T14:00:16.081Z [TRACE] order-service - GET /api/v1/orders - Status: 500 - Response time: 131ms - IP: 192.168.227.77 - User: user_1029 - RequestID: 21344giirvt +2025-06-18T14:00:16.181Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 201 - Response time: 1581ms - IP: 192.168.31.117 - User: user_1098 - RequestID: 2sc9lv5u6ov +2025-06-18T14:00:16.281Z [DEBUG] order-service - Operation: payment_processed - Processing time: 341ms - RequestID: ek9p8k24zu +2025-06-18T14:00:16.381Z [INFO] auth-service - Database SELECT on payments - Execution time: 493ms - Rows affected: 94 - RequestID: wx60k3wx27g +2025-06-18T14:00:16.481Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 425ms - Rows affected: 98 - RequestID: 2x9bjpopyr +2025-06-18T14:00:16.581Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 403 - Response time: 314ms - IP: 192.168.240.169 - User: user_1085 - RequestID: vo5ufejnu0q +2025-06-18T14:00:16.681Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1555ms - IP: 192.168.240.169 - User: user_1067 - RequestID: mu6hc0gw79d +2025-06-18T14:00:16.781Z [TRACE] user-service - Auth event: password_change - User: user_1065 - IP: 192.168.167.32 - RequestID: 74nqb0112i6 +2025-06-18T14:00:16.881Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 401 - Response time: 114ms - IP: 192.168.36.218 - User: user_1049 - RequestID: qfozgisv5x +2025-06-18T14:00:16.981Z [DEBUG] user-service - Auth event: password_change - User: user_1060 - IP: 192.168.235.117 - RequestID: d2pzj3n1av5 +2025-06-18T14:00:17.081Z [INFO] order-service - PUT /api/v1/payments - Status: 403 - Response time: 312ms - IP: 192.168.167.32 - User: user_1015 - RequestID: yourierq44d +2025-06-18T14:00:17.181Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 349ms - Rows affected: 94 - RequestID: tpgn8ygp4mj +2025-06-18T14:00:17.281Z [INFO] auth-service - Database UPDATE on orders - Execution time: 181ms - Rows affected: 15 - RequestID: nd9tpphzhhf +2025-06-18T14:00:17.381Z [INFO] payment-service - GET /api/v1/users - Status: 401 - Response time: 1370ms - IP: 192.168.187.199 - User: user_1080 - RequestID: htmghi03d2 +2025-06-18T14:00:17.481Z [INFO] payment-service - Operation: inventory_updated - Processing time: 415ms - RequestID: 3t6a65i7yn8 +2025-06-18T14:00:17.581Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.247.134 - RequestID: vxx8mumhvyb +2025-06-18T14:00:17.681Z [DEBUG] payment-service - Auth event: login_success - User: user_1087 - IP: 192.168.79.116 - RequestID: z9esjvrvfud +2025-06-18T14:00:17.781Z [INFO] user-service - Auth event: login_failed - User: user_1046 - IP: 192.168.227.233 - RequestID: j021tessoc9 +2025-06-18T14:00:17.881Z [TRACE] notification-service - POST /api/v1/orders - Status: 502 - Response time: 1679ms - IP: 192.168.227.233 - User: user_1071 - RequestID: xm4hu5n3ltr +2025-06-18T14:00:17.981Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 351ms - RequestID: pr98yysvk4 +2025-06-18T14:00:18.081Z [INFO] user-service - Auth event: password_change - User: user_1041 - IP: 192.168.30.79 - RequestID: c8x4xhi7j3j +2025-06-18T14:00:18.181Z [DEBUG] auth-service - Auth event: logout - User: user_1032 - IP: 192.168.36.218 - RequestID: exsky6n9ex9 +2025-06-18T14:00:18.281Z [INFO] user-service - Database UPDATE on products - Execution time: 127ms - Rows affected: 49 - RequestID: 6wm80vtm3th +2025-06-18T14:00:18.381Z [INFO] order-service - GET /api/v1/auth/login - Status: 503 - Response time: 580ms - IP: 192.168.229.123 - User: user_1051 - RequestID: untckauju4c +2025-06-18T14:00:18.481Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1599ms - IP: 192.168.79.143 - User: user_1029 - RequestID: d64xie9yh98 +2025-06-18T14:00:18.581Z [TRACE] user-service - Database SELECT on products - Execution time: 279ms - Rows affected: 38 - RequestID: 205ddof2lcv +2025-06-18T14:00:18.681Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 142ms - Rows affected: 48 - RequestID: l0o8m2x0b2c +2025-06-18T14:00:18.781Z [INFO] user-service - Auth event: login_failed - User: user_1098 - IP: 192.168.232.72 - RequestID: busywktgwfg +2025-06-18T14:00:18.881Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 502 - Response time: 1819ms - IP: 192.168.68.128 - User: user_1012 - RequestID: i17kkgzzlq +2025-06-18T14:00:18.981Z [TRACE] order-service - Database INSERT on payments - Execution time: 436ms - Rows affected: 35 - RequestID: oq8iuz365y +2025-06-18T14:00:19.081Z [TRACE] order-service - Auth event: login_failed - User: user_1028 - IP: 192.168.85.229 - RequestID: vhl1sjhnq9f +2025-06-18T14:00:19.181Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 755ms - RequestID: yprs2rhnx0k +2025-06-18T14:00:19.281Z [TRACE] user-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.133.7 - RequestID: 8ocu5t6a919 +2025-06-18T14:00:19.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1090 - IP: 192.168.44.5 - RequestID: tjf0b7ap61i +2025-06-18T14:00:19.481Z [INFO] inventory-service - Auth event: login_failed - User: user_1061 - IP: 192.168.133.7 - RequestID: jqn11hfmif +2025-06-18T14:00:19.581Z [INFO] inventory-service - PUT /api/v1/users - Status: 502 - Response time: 1703ms - IP: 192.168.11.60 - User: user_1020 - RequestID: 6le3jauq7gi +2025-06-18T14:00:19.681Z [TRACE] order-service - Operation: payment_processed - Processing time: 754ms - RequestID: mufxw59d3fa +2025-06-18T14:00:19.781Z [TRACE] order-service - Operation: cache_hit - Processing time: 210ms - RequestID: 3kbrglt5pc +2025-06-18T14:00:19.881Z [TRACE] order-service - DELETE /api/v1/users - Status: 404 - Response time: 1682ms - IP: 192.168.32.38 - User: user_1020 - RequestID: yz4unomery +2025-06-18T14:00:19.981Z [INFO] user-service - Database INSERT on users - Execution time: 67ms - Rows affected: 9 - RequestID: 5mzhry3tdrb +2025-06-18T14:00:20.081Z [TRACE] auth-service - POST /api/v1/orders - Status: 500 - Response time: 1216ms - IP: 192.168.227.233 - User: user_1000 - RequestID: p9eoryowl6 +2025-06-18T14:00:20.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 319ms - RequestID: jazv64x8ph8 +2025-06-18T14:00:20.281Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 819ms - RequestID: xt06oy3w51a +2025-06-18T14:00:20.381Z [INFO] notification-service - Database DELETE on users - Execution time: 213ms - Rows affected: 20 - RequestID: oraf1la1e0n +2025-06-18T14:00:20.481Z [DEBUG] order-service - Database SELECT on orders - Execution time: 339ms - Rows affected: 33 - RequestID: 3w88j15zrvv +2025-06-18T14:00:20.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.79.116 - RequestID: 7vocriyahjj +2025-06-18T14:00:20.681Z [TRACE] notification-service - POST /api/v1/orders - Status: 502 - Response time: 1594ms - IP: 192.168.232.72 - User: user_1074 - RequestID: 245fyk6u42a +2025-06-18T14:00:20.781Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 503 - Response time: 1551ms - IP: 192.168.104.37 - User: user_1088 - RequestID: kjyqdx3zjxg +2025-06-18T14:00:20.881Z [TRACE] order-service - Auth event: login_success - User: user_1044 - IP: 192.168.147.171 - RequestID: wgunajh9hw +2025-06-18T14:00:20.981Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 6ms - Rows affected: 87 - RequestID: hi7bk037xfa +2025-06-18T14:00:21.081Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 164ms - Rows affected: 50 - RequestID: y4xiqts9t5p +2025-06-18T14:00:21.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.247.134 - RequestID: otpur1r3gla +2025-06-18T14:00:21.281Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 292ms - RequestID: 0hfq5jut62q +2025-06-18T14:00:21.381Z [INFO] user-service - PATCH /api/v1/payments - Status: 403 - Response time: 1129ms - IP: 192.168.104.37 - User: user_1053 - RequestID: qufjef9sfa +2025-06-18T14:00:21.481Z [DEBUG] notification-service - Auth event: login_failed - User: user_1071 - IP: 192.168.242.165 - RequestID: 1hytf22vgmn +2025-06-18T14:00:21.581Z [INFO] inventory-service - Database SELECT on orders - Execution time: 41ms - Rows affected: 28 - RequestID: z4sx3b626w +2025-06-18T14:00:21.681Z [TRACE] inventory-service - Auth event: password_change - User: user_1056 - IP: 192.168.85.229 - RequestID: dm1limchez5 +2025-06-18T14:00:21.781Z [INFO] inventory-service - Auth event: login_success - User: user_1083 - IP: 192.168.181.225 - RequestID: wyi7fbg79 +2025-06-18T14:00:21.881Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.28.146 - RequestID: g4wor6loi86 +2025-06-18T14:00:21.981Z [DEBUG] user-service - Database INSERT on users - Execution time: 450ms - Rows affected: 11 - RequestID: hqbwzwlwchn +2025-06-18T14:00:22.081Z [INFO] notification-service - Database INSERT on orders - Execution time: 424ms - Rows affected: 73 - RequestID: h1yt5t6c00a +2025-06-18T14:00:22.181Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 503 - Response time: 1590ms - IP: 192.168.81.206 - User: user_1053 - RequestID: 7t188b67a0q +2025-06-18T14:00:22.281Z [DEBUG] notification-service - PUT /api/v1/users - Status: 201 - Response time: 1415ms - IP: 192.168.235.117 - User: user_1045 - RequestID: 806jwcv2ra9 +2025-06-18T14:00:22.381Z [TRACE] notification-service - Auth event: login_success - User: user_1019 - IP: 192.168.229.123 - RequestID: hx8il4lmmzf +2025-06-18T14:00:22.481Z [DEBUG] user-service - Database SELECT on orders - Execution time: 17ms - Rows affected: 89 - RequestID: 4kksl6c5mlm +2025-06-18T14:00:22.581Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 404 - Response time: 1222ms - IP: 192.168.159.94 - User: user_1061 - RequestID: 5smse2sctzv +2025-06-18T14:00:22.681Z [INFO] notification-service - Operation: email_sent - Processing time: 738ms - RequestID: 8ib2n7r6gt8 +2025-06-18T14:00:22.781Z [TRACE] payment-service - Auth event: login_success - User: user_1046 - IP: 192.168.64.33 - RequestID: 6tsg9nxvv9y +2025-06-18T14:00:22.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1056 - IP: 192.168.174.114 - RequestID: p6rrmrli6x +2025-06-18T14:00:22.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.104.37 - RequestID: ezpu011h03 +2025-06-18T14:00:23.081Z [DEBUG] order-service - Auth event: logout - User: user_1076 - IP: 192.168.133.7 - RequestID: d42pimoza0s +2025-06-18T14:00:23.181Z [INFO] inventory-service - Operation: payment_processed - Processing time: 247ms - RequestID: 26dl37mai7y +2025-06-18T14:00:23.281Z [INFO] inventory-service - POST /api/v1/orders - Status: 400 - Response time: 813ms - IP: 192.168.229.123 - User: user_1026 - RequestID: l3u3r37swz +2025-06-18T14:00:23.381Z [INFO] inventory-service - Operation: notification_queued - Processing time: 678ms - RequestID: 327kfsrqwqo +2025-06-18T14:00:23.481Z [INFO] auth-service - Auth event: login_success - User: user_1047 - IP: 192.168.28.146 - RequestID: pjqoq8uduq8 +2025-06-18T14:00:23.581Z [INFO] notification-service - Database INSERT on payments - Execution time: 167ms - Rows affected: 80 - RequestID: daixzjwxt76 +2025-06-18T14:00:23.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 83ms - RequestID: yo1sxpvb3y +2025-06-18T14:00:23.781Z [TRACE] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 361ms - IP: 192.168.31.117 - User: user_1016 - RequestID: xy8ebrf1wur +2025-06-18T14:00:23.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 431ms - RequestID: 1fieth4vmhkj +2025-06-18T14:00:23.981Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 149ms - Rows affected: 96 - RequestID: u10n5p6jsz8 +2025-06-18T14:00:24.081Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 200 - Response time: 1201ms - IP: 192.168.1.152 - User: user_1086 - RequestID: wgqi4tno88 +2025-06-18T14:00:24.181Z [INFO] notification-service - Database SELECT on payments - Execution time: 22ms - Rows affected: 30 - RequestID: 8xzotcdj21p +2025-06-18T14:00:24.281Z [INFO] order-service - Database DELETE on payments - Execution time: 200ms - Rows affected: 84 - RequestID: st74babjpw +2025-06-18T14:00:24.381Z [INFO] order-service - DELETE /api/v1/orders - Status: 200 - Response time: 163ms - IP: 192.168.113.218 - User: user_1007 - RequestID: okp981pu8y +2025-06-18T14:00:24.481Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 489ms - IP: 192.168.46.63 - User: user_1045 - RequestID: z43devf4w7 +2025-06-18T14:00:24.581Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1133ms - IP: 192.168.31.117 - User: user_1088 - RequestID: z1aua7oxb9 +2025-06-18T14:00:24.681Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 338ms - Rows affected: 41 - RequestID: hh8rvni8hlm +2025-06-18T14:00:24.781Z [INFO] payment-service - Database SELECT on users - Execution time: 19ms - Rows affected: 78 - RequestID: eyiozkd7qqq +2025-06-18T14:00:24.881Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.64.33 - RequestID: hvewmux5x6t +2025-06-18T14:00:24.981Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 212ms - Rows affected: 47 - RequestID: 3dgf8fjfzqq +2025-06-18T14:00:25.081Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 337ms - Rows affected: 20 - RequestID: pftps1sgrr +2025-06-18T14:00:25.181Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 843ms - RequestID: x74jhqi8at +2025-06-18T14:00:25.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 364ms - RequestID: ls4d9no6kh +2025-06-18T14:00:25.381Z [TRACE] inventory-service - Operation: order_created - Processing time: 534ms - RequestID: 7jzzm3i6hn4 +2025-06-18T14:00:25.481Z [INFO] auth-service - GET /api/v1/users - Status: 201 - Response time: 1379ms - IP: 192.168.141.100 - User: user_1078 - RequestID: haslk9nguo +2025-06-18T14:00:25.581Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 72ms - Rows affected: 91 - RequestID: k2oxo9d6qze +2025-06-18T14:00:25.681Z [DEBUG] auth-service - Operation: email_sent - Processing time: 59ms - RequestID: nj0wbl6px +2025-06-18T14:00:25.781Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 54ms - RequestID: mxo7ah9kh7h +2025-06-18T14:00:25.881Z [TRACE] order-service - Database INSERT on products - Execution time: 230ms - Rows affected: 24 - RequestID: faawgrvco96 +2025-06-18T14:00:25.981Z [TRACE] notification-service - Auth event: password_change - User: user_1077 - IP: 192.168.97.87 - RequestID: k3zpexukgt +2025-06-18T14:00:26.081Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1119ms - IP: 192.168.232.72 - User: user_1033 - RequestID: 2zxf2yrx3l4 +2025-06-18T14:00:26.181Z [INFO] notification-service - Database SELECT on products - Execution time: 115ms - Rows affected: 1 - RequestID: 04c03vhfuktm +2025-06-18T14:00:26.281Z [TRACE] auth-service - GET /api/v1/inventory - Status: 502 - Response time: 432ms - IP: 192.168.30.79 - User: user_1034 - RequestID: zm60tb6d9ns +2025-06-18T14:00:26.381Z [TRACE] user-service - Operation: cache_hit - Processing time: 61ms - RequestID: 385gi8abt3n +2025-06-18T14:00:26.481Z [TRACE] auth-service - Auth event: logout - User: user_1082 - IP: 192.168.181.225 - RequestID: 8necrel3c2n +2025-06-18T14:00:26.581Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 307ms - RequestID: jqdfy4b8yua +2025-06-18T14:00:26.681Z [INFO] auth-service - PATCH /api/v1/users - Status: 403 - Response time: 476ms - IP: 192.168.227.77 - User: user_1035 - RequestID: hkprbmm79bl +2025-06-18T14:00:26.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 1036ms - RequestID: c68z4f5or1o +2025-06-18T14:00:26.881Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 45ms - Rows affected: 23 - RequestID: uihs7wylnqd +2025-06-18T14:00:26.981Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 206ms - Rows affected: 12 - RequestID: qws060x55fr +2025-06-18T14:00:27.081Z [DEBUG] auth-service - Database INSERT on users - Execution time: 228ms - Rows affected: 3 - RequestID: rlz7szm6gsd +2025-06-18T14:00:27.181Z [INFO] auth-service - Database SELECT on users - Execution time: 424ms - Rows affected: 82 - RequestID: kc05iceeo09 +2025-06-18T14:00:27.281Z [DEBUG] order-service - Auth event: password_change - User: user_1002 - IP: 192.168.46.63 - RequestID: uat18qky2hr +2025-06-18T14:00:27.381Z [INFO] notification-service - Auth event: password_change - User: user_1069 - IP: 192.168.81.206 - RequestID: q6oojx4l0kb +2025-06-18T14:00:27.481Z [INFO] notification-service - Database INSERT on products - Execution time: 486ms - Rows affected: 24 - RequestID: fpngcxcb93d +2025-06-18T14:00:27.581Z [TRACE] order-service - Operation: inventory_updated - Processing time: 899ms - RequestID: zm7pycm4k79 +2025-06-18T14:00:27.681Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1672ms - IP: 192.168.159.94 - User: user_1037 - RequestID: krqdj33f7lo +2025-06-18T14:00:27.781Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 152ms - Rows affected: 81 - RequestID: enb9bkw6848 +2025-06-18T14:00:27.881Z [INFO] auth-service - PATCH /api/v1/payments - Status: 400 - Response time: 242ms - IP: 192.168.235.117 - User: user_1087 - RequestID: h8niijgpjeb +2025-06-18T14:00:27.981Z [INFO] user-service - Database SELECT on orders - Execution time: 139ms - Rows affected: 88 - RequestID: uz3cgppgss +2025-06-18T14:00:28.081Z [TRACE] payment-service - Auth event: login_success - User: user_1062 - IP: 192.168.194.41 - RequestID: t89yqr0mlm +2025-06-18T14:00:28.181Z [INFO] auth-service - Database UPDATE on orders - Execution time: 5ms - Rows affected: 55 - RequestID: wmc447sf8w +2025-06-18T14:00:28.281Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 270ms - Rows affected: 62 - RequestID: qub2ix057bg +2025-06-18T14:00:28.381Z [TRACE] payment-service - PATCH /api/v1/users - Status: 201 - Response time: 972ms - IP: 192.168.85.229 - User: user_1090 - RequestID: 3nid6dxst5f +2025-06-18T14:00:28.481Z [TRACE] user-service - Database SELECT on users - Execution time: 77ms - Rows affected: 22 - RequestID: 0bynlxubchst +2025-06-18T14:00:28.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 1003ms - RequestID: p9fzjqe8sx8 +2025-06-18T14:00:28.681Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 470ms - Rows affected: 3 - RequestID: 9gktkcrmyh +2025-06-18T14:00:28.781Z [DEBUG] payment-service - Database SELECT on users - Execution time: 430ms - Rows affected: 61 - RequestID: 674kzw2ebbp +2025-06-18T14:00:28.881Z [TRACE] auth-service - Operation: cache_miss - Processing time: 633ms - RequestID: l8vg8ln41e +2025-06-18T14:00:28.981Z [TRACE] notification-service - Auth event: login_success - User: user_1005 - IP: 192.168.235.117 - RequestID: n3okfbp5evd +2025-06-18T14:00:29.081Z [DEBUG] inventory-service - Auth event: logout - User: user_1006 - IP: 192.168.79.143 - RequestID: jx9t39xt55o +2025-06-18T14:00:29.181Z [TRACE] user-service - GET /api/v1/payments - Status: 403 - Response time: 1249ms - IP: 192.168.44.5 - User: user_1062 - RequestID: sahg76suzf +2025-06-18T14:00:29.281Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1615ms - IP: 192.168.30.79 - User: user_1019 - RequestID: rn2fvb2t1pd +2025-06-18T14:00:29.381Z [DEBUG] user-service - Auth event: logout - User: user_1035 - IP: 192.168.1.152 - RequestID: wu8y9aa1rbn +2025-06-18T14:00:29.481Z [DEBUG] auth-service - Auth event: password_change - User: user_1070 - IP: 192.168.247.134 - RequestID: apwd3d35hh4 +2025-06-18T14:00:29.581Z [TRACE] payment-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.196.226 - RequestID: li6rx6p55r +2025-06-18T14:00:29.681Z [TRACE] notification-service - POST /api/v1/inventory - Status: 201 - Response time: 1141ms - IP: 192.168.85.229 - User: user_1005 - RequestID: o469y180k6 +2025-06-18T14:00:29.781Z [TRACE] auth-service - Auth event: login_success - User: user_1092 - IP: 192.168.79.116 - RequestID: en5sp8ifrp5 +2025-06-18T14:00:29.881Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 600ms - RequestID: n6aalgs7j1 +2025-06-18T14:00:29.981Z [INFO] notification-service - Database DELETE on payments - Execution time: 221ms - Rows affected: 65 - RequestID: 78pquu8etj6 +2025-06-18T14:00:30.081Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 939ms - RequestID: y4njdk67sjr +2025-06-18T14:00:30.181Z [DEBUG] user-service - GET /api/v1/payments - Status: 403 - Response time: 1885ms - IP: 192.168.189.103 - User: user_1028 - RequestID: bc0kbds9etk +2025-06-18T14:00:30.281Z [INFO] user-service - Operation: cache_miss - Processing time: 609ms - RequestID: 1u4xro4q5nb +2025-06-18T14:00:30.381Z [INFO] notification-service - Database INSERT on orders - Execution time: 205ms - Rows affected: 69 - RequestID: a0xoirtovrf +2025-06-18T14:00:30.481Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1845ms - IP: 192.168.187.199 - User: user_1039 - RequestID: tllx2w7dl9 +2025-06-18T14:00:30.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.44.5 - RequestID: ohhi3nqpds +2025-06-18T14:00:30.681Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 235ms - Rows affected: 65 - RequestID: bsylgp1g68m +2025-06-18T14:00:30.781Z [TRACE] notification-service - Database DELETE on payments - Execution time: 151ms - Rows affected: 23 - RequestID: h9bmur6f9zo +2025-06-18T14:00:30.881Z [TRACE] user-service - Auth event: login_success - User: user_1015 - IP: 192.168.211.72 - RequestID: s4x99jfn26d +2025-06-18T14:00:30.981Z [DEBUG] user-service - Auth event: logout - User: user_1052 - IP: 192.168.79.116 - RequestID: lgljzx7vcwn +2025-06-18T14:00:31.081Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 500 - Response time: 426ms - IP: 192.168.227.233 - User: user_1051 - RequestID: 1pjyfljw0em +2025-06-18T14:00:31.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.32.38 - RequestID: dwu8khoxi1e +2025-06-18T14:00:31.281Z [TRACE] user-service - PUT /api/v1/users - Status: 403 - Response time: 1220ms - IP: 192.168.64.33 - User: user_1013 - RequestID: wxzt2vqr28m +2025-06-18T14:00:31.381Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 249ms - Rows affected: 9 - RequestID: qbsnkqg698r +2025-06-18T14:00:31.481Z [DEBUG] inventory-service - Operation: order_created - Processing time: 467ms - RequestID: kg34ie34ugc +2025-06-18T14:00:31.581Z [INFO] order-service - POST /api/v1/payments - Status: 401 - Response time: 724ms - IP: 192.168.229.123 - User: user_1052 - RequestID: fil5upeepa4 +2025-06-18T14:00:31.681Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 489ms - Rows affected: 96 - RequestID: hvty4x04ta5 +2025-06-18T14:00:31.781Z [TRACE] order-service - Operation: notification_queued - Processing time: 885ms - RequestID: cdqxnez6so +2025-06-18T14:00:31.881Z [DEBUG] order-service - POST /api/v1/payments - Status: 502 - Response time: 115ms - IP: 192.168.32.38 - User: user_1043 - RequestID: aivyck026wd +2025-06-18T14:00:31.981Z [INFO] user-service - POST /api/v1/auth/login - Status: 200 - Response time: 431ms - IP: 192.168.232.72 - User: user_1087 - RequestID: hrcef2o7ood +2025-06-18T14:00:32.081Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 367ms - IP: 192.168.133.7 - User: user_1050 - RequestID: i7ifmrvwj +2025-06-18T14:00:32.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.167.32 - RequestID: ftei7qi5tu +2025-06-18T14:00:32.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 994ms - RequestID: 18lh8jbp10f +2025-06-18T14:00:32.381Z [INFO] auth-service - Database SELECT on payments - Execution time: 176ms - Rows affected: 7 - RequestID: b0de2bnulq +2025-06-18T14:00:32.481Z [INFO] payment-service - Auth event: login_success - User: user_1089 - IP: 192.168.31.117 - RequestID: 52508kcqqr2 +2025-06-18T14:00:32.581Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 220ms - Rows affected: 98 - RequestID: 0x7o39odtow +2025-06-18T14:00:32.681Z [DEBUG] user-service - Auth event: logout - User: user_1030 - IP: 192.168.100.240 - RequestID: 0ldpkz31uesc +2025-06-18T14:00:32.781Z [DEBUG] user-service - Operation: payment_processed - Processing time: 980ms - RequestID: qr80a1t0jh +2025-06-18T14:00:32.881Z [INFO] order-service - Operation: cache_hit - Processing time: 472ms - RequestID: y17fdw83gel +2025-06-18T14:00:32.981Z [INFO] notification-service - Auth event: login_failed - User: user_1023 - IP: 192.168.33.76 - RequestID: 8fzkjdcf15b +2025-06-18T14:00:33.081Z [INFO] payment-service - Database INSERT on orders - Execution time: 236ms - Rows affected: 37 - RequestID: poubf4jekjf +2025-06-18T14:00:33.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1025 - IP: 192.168.247.134 - RequestID: 9ggbeu9t2ja +2025-06-18T14:00:33.281Z [TRACE] order-service - Database DELETE on products - Execution time: 95ms - Rows affected: 10 - RequestID: ekecy1hjfyp +2025-06-18T14:00:33.381Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 400ms - Rows affected: 54 - RequestID: ept5r4wvdrp +2025-06-18T14:00:33.481Z [INFO] payment-service - Auth event: login_failed - User: user_1049 - IP: 192.168.32.38 - RequestID: ah4r3x2km7l +2025-06-18T14:00:33.581Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 352ms - Rows affected: 85 - RequestID: bu67nn10agf +2025-06-18T14:00:33.681Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 198ms - Rows affected: 75 - RequestID: noikchunvf +2025-06-18T14:00:33.781Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 289ms - RequestID: r77mfuueqnk +2025-06-18T14:00:33.881Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 401 - Response time: 869ms - IP: 192.168.133.7 - User: user_1097 - RequestID: 1t3egnozg6g +2025-06-18T14:00:33.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.13.72 - RequestID: e2x218pwy5m +2025-06-18T14:00:34.081Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 458ms - Rows affected: 49 - RequestID: sdp3zvgeg7l +2025-06-18T14:00:34.181Z [TRACE] order-service - Database UPDATE on payments - Execution time: 2ms - Rows affected: 60 - RequestID: l2jaalj6p6k +2025-06-18T14:00:34.281Z [TRACE] order-service - Operation: email_sent - Processing time: 936ms - RequestID: ws6f19gyky +2025-06-18T14:00:34.381Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1693ms - IP: 192.168.229.123 - User: user_1085 - RequestID: 3e1jc6h3cn8 +2025-06-18T14:00:34.481Z [INFO] order-service - Auth event: login_success - User: user_1014 - IP: 192.168.189.103 - RequestID: ucoqon4pql +2025-06-18T14:00:34.581Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 401 - Response time: 23ms - IP: 192.168.138.123 - User: user_1090 - RequestID: fe9me8vkvf +2025-06-18T14:00:34.681Z [INFO] notification-service - Database INSERT on sessions - Execution time: 40ms - Rows affected: 45 - RequestID: bqdpskyhm6k +2025-06-18T14:00:34.781Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 274ms - RequestID: 4zas9gbtitf +2025-06-18T14:00:34.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1051 - IP: 192.168.100.240 - RequestID: pmqqmc6pbcl +2025-06-18T14:00:34.981Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 613ms - IP: 192.168.174.114 - User: user_1077 - RequestID: n3ny5ncbxy +2025-06-18T14:00:35.081Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 200 - Response time: 694ms - IP: 192.168.170.215 - User: user_1085 - RequestID: 6ypn13z5pof +2025-06-18T14:00:35.181Z [TRACE] order-service - GET /api/v1/auth/login - Status: 403 - Response time: 102ms - IP: 192.168.133.7 - User: user_1059 - RequestID: mkn07nu9g1n +2025-06-18T14:00:35.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1005 - IP: 192.168.141.100 - RequestID: pzjo30cfkc9 +2025-06-18T14:00:35.381Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 401 - Response time: 96ms - IP: 192.168.133.7 - User: user_1031 - RequestID: 4qnb4d6l8cp +2025-06-18T14:00:35.481Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 103ms - Rows affected: 59 - RequestID: w1b60tw43qs +2025-06-18T14:00:35.581Z [DEBUG] notification-service - Operation: order_created - Processing time: 661ms - RequestID: vll3azqfoil +2025-06-18T14:00:35.681Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.227.77 - RequestID: iloogv1oiw +2025-06-18T14:00:35.781Z [INFO] order-service - Operation: cache_hit - Processing time: 857ms - RequestID: gb89vv8aty6 +2025-06-18T14:00:35.881Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 491ms - Rows affected: 7 - RequestID: zmozayogs2a +2025-06-18T14:00:35.981Z [INFO] user-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.100.240 - RequestID: cq0a4p3g7uu +2025-06-18T14:00:36.081Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 6ms - Rows affected: 49 - RequestID: t1yvltmq32p +2025-06-18T14:00:36.181Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 218ms - Rows affected: 39 - RequestID: nednhugdhxj +2025-06-18T14:00:36.281Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1688ms - IP: 192.168.46.63 - User: user_1031 - RequestID: 0oa51tsb427 +2025-06-18T14:00:36.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1027 - IP: 192.168.196.226 - RequestID: 3c98g2cwtgx +2025-06-18T14:00:36.481Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 256ms - RequestID: sogq43mwx4l +2025-06-18T14:00:36.581Z [DEBUG] user-service - Database SELECT on users - Execution time: 359ms - Rows affected: 16 - RequestID: r05f3bkkfy +2025-06-18T14:00:36.681Z [INFO] user-service - Auth event: logout - User: user_1098 - IP: 192.168.141.100 - RequestID: o970ybanhe9 +2025-06-18T14:00:36.781Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 369ms - Rows affected: 19 - RequestID: bti1q7w2lfk +2025-06-18T14:00:36.881Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1702ms - IP: 192.168.32.38 - User: user_1024 - RequestID: j93ajudfd9 +2025-06-18T14:00:36.981Z [DEBUG] user-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.141.100 - RequestID: njdwtxvrmyi +2025-06-18T14:00:37.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.232.72 - RequestID: pzva2p47gs9 +2025-06-18T14:00:37.181Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 502 - Response time: 1332ms - IP: 192.168.28.146 - User: user_1098 - RequestID: gxdma4mxogf +2025-06-18T14:00:37.281Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 399ms - Rows affected: 25 - RequestID: 5621d9zgce +2025-06-18T14:00:37.381Z [DEBUG] payment-service - GET /api/v1/users - Status: 201 - Response time: 2009ms - IP: 192.168.100.240 - User: user_1008 - RequestID: 84ub3pfgmrf +2025-06-18T14:00:37.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.11.60 - RequestID: 6zqwhmhcf0j +2025-06-18T14:00:37.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 370ms - RequestID: ns0tiznn5s +2025-06-18T14:00:37.681Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 346ms - Rows affected: 89 - RequestID: 9kx5nzbqhyl +2025-06-18T14:00:37.781Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 152ms - Rows affected: 43 - RequestID: 4vl6rql5ign +2025-06-18T14:00:37.881Z [INFO] auth-service - PATCH /api/v1/users - Status: 404 - Response time: 608ms - IP: 192.168.79.116 - User: user_1024 - RequestID: w3dvnd18ur +2025-06-18T14:00:37.981Z [INFO] user-service - PUT /api/v1/inventory - Status: 403 - Response time: 1653ms - IP: 192.168.167.32 - User: user_1081 - RequestID: dfuevl3771l +2025-06-18T14:00:38.081Z [INFO] user-service - Operation: webhook_sent - Processing time: 279ms - RequestID: 3ix6epmstf9 +2025-06-18T14:00:38.181Z [DEBUG] order-service - Database UPDATE on products - Execution time: 166ms - Rows affected: 55 - RequestID: 8jbta11ulrh +2025-06-18T14:00:38.281Z [TRACE] order-service - Operation: notification_queued - Processing time: 887ms - RequestID: ug1hnwisg7j +2025-06-18T14:00:38.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 363ms - RequestID: aqn0sb012ll +2025-06-18T14:00:38.481Z [DEBUG] auth-service - Auth event: logout - User: user_1031 - IP: 192.168.181.225 - RequestID: 58m0ynayb48 +2025-06-18T14:00:38.581Z [TRACE] payment-service - Database DELETE on users - Execution time: 212ms - Rows affected: 19 - RequestID: nbnma4mvic +2025-06-18T14:00:38.681Z [TRACE] payment-service - Operation: payment_processed - Processing time: 609ms - RequestID: ioujjkcej9 +2025-06-18T14:00:38.781Z [TRACE] inventory-service - Auth event: logout - User: user_1057 - IP: 192.168.31.117 - RequestID: 6f8sniu0ek +2025-06-18T14:00:38.881Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 502 - Response time: 1513ms - IP: 192.168.28.146 - User: user_1026 - RequestID: zpq0kfyfi3 +2025-06-18T14:00:38.981Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 502 - Response time: 1917ms - IP: 192.168.13.72 - User: user_1023 - RequestID: 0rpsujajrk0a +2025-06-18T14:00:39.081Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1886ms - IP: 192.168.11.60 - User: user_1068 - RequestID: 7j88i1w9aa6 +2025-06-18T14:00:39.181Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 201 - Response time: 1882ms - IP: 192.168.53.133 - User: user_1071 - RequestID: 3bw2u28n9ab +2025-06-18T14:00:39.281Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1284ms - IP: 192.168.44.5 - User: user_1036 - RequestID: hhgtaftjbgb +2025-06-18T14:00:39.381Z [DEBUG] payment-service - Auth event: login_success - User: user_1092 - IP: 192.168.46.63 - RequestID: p0gao2ozjol +2025-06-18T14:00:39.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.79.116 - RequestID: p3bcyluplfo +2025-06-18T14:00:39.581Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 31ms - Rows affected: 90 - RequestID: s91cg15cxxr +2025-06-18T14:00:39.681Z [DEBUG] user-service - Auth event: logout - User: user_1060 - IP: 192.168.159.94 - RequestID: 98yd6y5jqom +2025-06-18T14:00:39.781Z [TRACE] notification-service - Database DELETE on orders - Execution time: 176ms - Rows affected: 8 - RequestID: gqa2uechp7f +2025-06-18T14:00:39.881Z [INFO] order-service - Database SELECT on payments - Execution time: 27ms - Rows affected: 89 - RequestID: ahqib4sr95 +2025-06-18T14:00:39.981Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 293ms - IP: 192.168.81.206 - User: user_1035 - RequestID: uam6rnnvgjb +2025-06-18T14:00:40.081Z [INFO] order-service - Database DELETE on products - Execution time: 43ms - Rows affected: 32 - RequestID: c6mvr6cnruv +2025-06-18T14:00:40.181Z [TRACE] notification-service - Operation: notification_queued - Processing time: 935ms - RequestID: vfm8bdvd74k +2025-06-18T14:00:40.281Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1507ms - IP: 192.168.196.226 - User: user_1094 - RequestID: ydrbucii4sd +2025-06-18T14:00:40.381Z [DEBUG] order-service - Database DELETE on users - Execution time: 43ms - Rows affected: 11 - RequestID: sp74t0z6mc +2025-06-18T14:00:40.481Z [TRACE] order-service - Auth event: password_change - User: user_1075 - IP: 192.168.187.199 - RequestID: bnd0lcjri7t +2025-06-18T14:00:40.581Z [INFO] notification-service - Auth event: password_change - User: user_1093 - IP: 192.168.79.116 - RequestID: l6m7l2y4yw +2025-06-18T14:00:40.681Z [DEBUG] user-service - GET /api/v1/users - Status: 502 - Response time: 1418ms - IP: 192.168.227.233 - User: user_1035 - RequestID: u6bn12u129d +2025-06-18T14:00:40.781Z [TRACE] user-service - Database DELETE on orders - Execution time: 382ms - Rows affected: 53 - RequestID: 52jneseg3zi +2025-06-18T14:00:40.881Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1903ms - IP: 192.168.227.233 - User: user_1019 - RequestID: lxxybkb4pyb +2025-06-18T14:00:40.981Z [INFO] payment-service - Operation: payment_processed - Processing time: 628ms - RequestID: cl8zxn5u1lb +2025-06-18T14:00:41.081Z [DEBUG] payment-service - Auth event: password_change - User: user_1008 - IP: 192.168.242.165 - RequestID: a8h99ylehk5 +2025-06-18T14:00:41.181Z [TRACE] payment-service - Operation: email_sent - Processing time: 880ms - RequestID: awuu8lneycs +2025-06-18T14:00:41.281Z [INFO] auth-service - Database UPDATE on payments - Execution time: 22ms - Rows affected: 63 - RequestID: ullc6qbq2p +2025-06-18T14:00:41.381Z [INFO] user-service - DELETE /api/v1/payments - Status: 500 - Response time: 1922ms - IP: 192.168.187.199 - User: user_1075 - RequestID: lo12dqyrglp +2025-06-18T14:00:41.481Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 366ms - IP: 192.168.85.229 - User: user_1090 - RequestID: p3s4wenurbb +2025-06-18T14:00:41.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 229ms - RequestID: lyz37fqtgxq +2025-06-18T14:00:41.681Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 801ms - RequestID: l9jxvotfa28 +2025-06-18T14:00:41.781Z [TRACE] notification-service - POST /api/v1/payments - Status: 403 - Response time: 763ms - IP: 192.168.33.76 - User: user_1001 - RequestID: da7nik0tx3 +2025-06-18T14:00:41.881Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 403 - Response time: 1764ms - IP: 192.168.141.100 - User: user_1010 - RequestID: 3iptzh7a2s9 +2025-06-18T14:00:41.981Z [INFO] notification-service - Database SELECT on payments - Execution time: 18ms - Rows affected: 70 - RequestID: c1aabx0f8yo +2025-06-18T14:00:42.081Z [INFO] order-service - Operation: order_created - Processing time: 533ms - RequestID: xd54sl8b0e +2025-06-18T14:00:42.181Z [DEBUG] payment-service - Auth event: login_success - User: user_1082 - IP: 192.168.14.77 - RequestID: 2gclc0ieg6p +2025-06-18T14:00:42.281Z [DEBUG] order-service - Database DELETE on users - Execution time: 364ms - Rows affected: 39 - RequestID: l49bfh2khhs +2025-06-18T14:00:42.381Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 403 - Response time: 22ms - IP: 192.168.28.146 - User: user_1089 - RequestID: wzjzi9rm6w +2025-06-18T14:00:42.481Z [DEBUG] auth-service - Auth event: password_change - User: user_1070 - IP: 192.168.227.233 - RequestID: fkxnxaxoyni +2025-06-18T14:00:42.581Z [TRACE] user-service - Operation: order_created - Processing time: 382ms - RequestID: 7mfnnyoxso5 +2025-06-18T14:00:42.681Z [TRACE] payment-service - Auth event: logout - User: user_1090 - IP: 192.168.13.72 - RequestID: 5aewh8kcwhw +2025-06-18T14:00:42.781Z [TRACE] order-service - DELETE /api/v1/payments - Status: 201 - Response time: 1722ms - IP: 192.168.229.123 - User: user_1064 - RequestID: vs7yn9v2obk +2025-06-18T14:00:42.881Z [INFO] auth-service - Database SELECT on users - Execution time: 408ms - Rows affected: 40 - RequestID: kqep699036d +2025-06-18T14:00:42.981Z [TRACE] notification-service - Auth event: logout - User: user_1074 - IP: 192.168.229.123 - RequestID: 2y6v1sz3lri +2025-06-18T14:00:43.081Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 347ms - Rows affected: 79 - RequestID: irdcmdxu86l +2025-06-18T14:00:43.181Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 905ms - RequestID: 125vnb2j5gj +2025-06-18T14:00:43.281Z [DEBUG] notification-service - Auth event: logout - User: user_1069 - IP: 192.168.227.233 - RequestID: 0gamii6542r +2025-06-18T14:00:43.381Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 444ms - RequestID: jlqli2b7lyn +2025-06-18T14:00:43.481Z [INFO] payment-service - PATCH /api/v1/payments - Status: 200 - Response time: 1881ms - IP: 192.168.97.87 - User: user_1033 - RequestID: hkuwhrrzanw +2025-06-18T14:00:43.581Z [TRACE] notification-service - Auth event: login_success - User: user_1089 - IP: 192.168.36.218 - RequestID: akfozcmg3xb +2025-06-18T14:00:43.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.189.103 - RequestID: vmifwqfhpom +2025-06-18T14:00:43.781Z [INFO] inventory-service - Database UPDATE on products - Execution time: 156ms - Rows affected: 5 - RequestID: 1jzp01p2r47 +2025-06-18T14:00:43.881Z [INFO] order-service - GET /api/v1/payments - Status: 404 - Response time: 1545ms - IP: 192.168.68.158 - User: user_1093 - RequestID: 2c3fnif3cer +2025-06-18T14:00:43.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 717ms - RequestID: isbcwvd5is +2025-06-18T14:00:44.081Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 93ms - Rows affected: 39 - RequestID: 8q3nganzcyo +2025-06-18T14:00:44.181Z [INFO] auth-service - Operation: notification_queued - Processing time: 479ms - RequestID: oh73z3ezn2 +2025-06-18T14:00:44.281Z [INFO] payment-service - Operation: cache_miss - Processing time: 780ms - RequestID: oydlk0ak5qq +2025-06-18T14:00:44.381Z [TRACE] order-service - Operation: order_created - Processing time: 200ms - RequestID: 6vavicgr06 +2025-06-18T14:00:44.481Z [DEBUG] order-service - Operation: order_created - Processing time: 711ms - RequestID: z872c9cbmcb +2025-06-18T14:00:44.581Z [INFO] inventory-service - Operation: payment_processed - Processing time: 914ms - RequestID: kgrrnfglttm +2025-06-18T14:00:44.681Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 53ms - Rows affected: 34 - RequestID: 4bk8zoq3o0n +2025-06-18T14:00:44.781Z [INFO] auth-service - Auth event: login_success - User: user_1005 - IP: 192.168.31.117 - RequestID: 55wkr0n7hpv +2025-06-18T14:00:44.881Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 306ms - Rows affected: 43 - RequestID: 4tuda6tx2w9 +2025-06-18T14:00:44.981Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1501ms - IP: 192.168.68.158 - User: user_1041 - RequestID: yfr2ch67xbl +2025-06-18T14:00:45.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 819ms - RequestID: 7k7cr2al72t +2025-06-18T14:00:45.181Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 199ms - RequestID: ni3ces60yzp +2025-06-18T14:00:45.281Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1625ms - IP: 192.168.1.152 - User: user_1028 - RequestID: z8z93w1phh +2025-06-18T14:00:45.381Z [TRACE] notification-service - Database INSERT on products - Execution time: 427ms - Rows affected: 84 - RequestID: mqmpy5q2tcg +2025-06-18T14:00:45.481Z [DEBUG] user-service - POST /api/v1/users - Status: 400 - Response time: 1608ms - IP: 192.168.30.79 - User: user_1075 - RequestID: vdigiz63ebp +2025-06-18T14:00:45.581Z [TRACE] auth-service - Operation: payment_processed - Processing time: 238ms - RequestID: bc5pqkbxrt6 +2025-06-18T14:00:45.681Z [DEBUG] auth-service - Database INSERT on users - Execution time: 453ms - Rows affected: 99 - RequestID: vbfujcco98f +2025-06-18T14:00:45.781Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1268ms - IP: 192.168.33.76 - User: user_1045 - RequestID: eppb4ra4jad +2025-06-18T14:00:45.881Z [INFO] auth-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.174.114 - RequestID: 8vacc3jyere +2025-06-18T14:00:45.981Z [TRACE] order-service - Auth event: login_success - User: user_1078 - IP: 192.168.79.143 - RequestID: osrahcfgxii +2025-06-18T14:00:46.081Z [INFO] inventory-service - Operation: payment_processed - Processing time: 590ms - RequestID: la3oho9sdx +2025-06-18T14:00:46.181Z [TRACE] notification-service - GET /api/v1/payments - Status: 404 - Response time: 694ms - IP: 192.168.167.32 - User: user_1000 - RequestID: 7g6oeydscdu +2025-06-18T14:00:46.281Z [TRACE] auth-service - Database UPDATE on users - Execution time: 409ms - Rows affected: 99 - RequestID: zrtg8wy2syi +2025-06-18T14:00:46.381Z [INFO] user-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.181.225 - RequestID: il8zfn4m2uj +2025-06-18T14:00:46.481Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 401 - Response time: 82ms - IP: 192.168.158.144 - User: user_1008 - RequestID: d5t8esupw4q +2025-06-18T14:00:46.581Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 699ms - IP: 192.168.14.77 - User: user_1072 - RequestID: ki3qmow7i8s +2025-06-18T14:00:46.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.227.77 - RequestID: 73kur68w36t +2025-06-18T14:00:46.781Z [TRACE] payment-service - Database DELETE on orders - Execution time: 403ms - Rows affected: 37 - RequestID: zwq3mt1jle +2025-06-18T14:00:46.881Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 502 - Response time: 2008ms - IP: 192.168.133.7 - User: user_1007 - RequestID: dinxo8ayzrp +2025-06-18T14:00:46.981Z [INFO] notification-service - Operation: inventory_updated - Processing time: 858ms - RequestID: tjrcekbaxcb +2025-06-18T14:00:47.081Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 573ms - RequestID: j8uwn0wy3x +2025-06-18T14:00:47.181Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 674ms - RequestID: w7zh0icjrn +2025-06-18T14:00:47.281Z [INFO] auth-service - Operation: order_created - Processing time: 880ms - RequestID: rpnch9k171e +2025-06-18T14:00:47.381Z [DEBUG] user-service - Operation: cache_hit - Processing time: 165ms - RequestID: dpr586021x +2025-06-18T14:00:47.481Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 268ms - Rows affected: 17 - RequestID: yaiqz1hf5ga +2025-06-18T14:00:47.581Z [DEBUG] notification-service - GET /api/v1/payments - Status: 403 - Response time: 969ms - IP: 192.168.79.143 - User: user_1030 - RequestID: ym0slqd0ft +2025-06-18T14:00:47.681Z [DEBUG] auth-service - Operation: email_sent - Processing time: 543ms - RequestID: tun7kl92se +2025-06-18T14:00:47.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 161ms - RequestID: ya6m5oztkos +2025-06-18T14:00:47.881Z [DEBUG] user-service - Operation: payment_processed - Processing time: 567ms - RequestID: cpke88ov5sk +2025-06-18T14:00:47.981Z [TRACE] payment-service - Database INSERT on products - Execution time: 281ms - Rows affected: 55 - RequestID: yhjrw3yhd1g +2025-06-18T14:00:48.081Z [INFO] payment-service - Operation: payment_processed - Processing time: 421ms - RequestID: ef4u34ctdtj +2025-06-18T14:00:48.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 232ms - RequestID: teicxiu2dhl +2025-06-18T14:00:48.281Z [DEBUG] order-service - Operation: order_created - Processing time: 651ms - RequestID: 21wvt0f9tnn +2025-06-18T14:00:48.381Z [DEBUG] user-service - Database DELETE on orders - Execution time: 466ms - Rows affected: 82 - RequestID: 1w9lnpf0ox +2025-06-18T14:00:48.481Z [DEBUG] auth-service - Operation: order_created - Processing time: 489ms - RequestID: ykx6mz18wub +2025-06-18T14:00:48.581Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 451ms - RequestID: 5xdz2qw5vq +2025-06-18T14:00:48.681Z [DEBUG] order-service - Auth event: login_success - User: user_1091 - IP: 192.168.211.72 - RequestID: cq0j6dw47qo +2025-06-18T14:00:48.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.31.117 - RequestID: bihiewxpbmi +2025-06-18T14:00:48.881Z [TRACE] auth-service - Database DELETE on payments - Execution time: 467ms - Rows affected: 52 - RequestID: 7sya12h1h9s +2025-06-18T14:00:48.981Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 13ms - Rows affected: 56 - RequestID: 97j9antlcn +2025-06-18T14:00:49.081Z [INFO] user-service - Auth event: login_failed - User: user_1091 - IP: 192.168.211.72 - RequestID: tm6q72rknv +2025-06-18T14:00:49.181Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 543ms - RequestID: 83o1qopzdv5 +2025-06-18T14:00:49.281Z [TRACE] auth-service - Database INSERT on orders - Execution time: 480ms - Rows affected: 63 - RequestID: hprjzi8cdjv +2025-06-18T14:00:49.381Z [INFO] notification-service - DELETE /api/v1/users - Status: 503 - Response time: 373ms - IP: 192.168.229.123 - User: user_1012 - RequestID: pag9wpdbalm +2025-06-18T14:00:49.481Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 400 - Response time: 668ms - IP: 192.168.113.218 - User: user_1064 - RequestID: w3oasknarug +2025-06-18T14:00:49.581Z [INFO] user-service - Operation: notification_queued - Processing time: 959ms - RequestID: hpsaqpp9zp8 +2025-06-18T14:00:49.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1027 - IP: 192.168.85.229 - RequestID: 54ajsvsmgiq +2025-06-18T14:00:49.781Z [INFO] inventory-service - Auth event: logout - User: user_1053 - IP: 192.168.227.233 - RequestID: dz4qe2lmxtf +2025-06-18T14:00:49.881Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 404 - Response time: 194ms - IP: 192.168.170.215 - User: user_1007 - RequestID: neg0mqswj2d +2025-06-18T14:00:49.981Z [DEBUG] notification-service - Operation: order_created - Processing time: 360ms - RequestID: ntngm6lk0y9 +2025-06-18T14:00:50.081Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1005ms - IP: 192.168.141.100 - User: user_1075 - RequestID: cnhph7i591v +2025-06-18T14:00:50.181Z [INFO] user-service - Database UPDATE on payments - Execution time: 248ms - Rows affected: 35 - RequestID: yb5mm8kl9lq +2025-06-18T14:00:50.281Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 231ms - Rows affected: 92 - RequestID: 51y9h841m5i +2025-06-18T14:00:50.381Z [INFO] payment-service - DELETE /api/v1/orders - Status: 403 - Response time: 1952ms - IP: 192.168.1.152 - User: user_1052 - RequestID: hm5sryb6vna +2025-06-18T14:00:50.481Z [TRACE] inventory-service - GET /api/v1/payments - Status: 404 - Response time: 1768ms - IP: 192.168.133.7 - User: user_1032 - RequestID: abg2k5i72c +2025-06-18T14:00:50.581Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 433ms - Rows affected: 55 - RequestID: ndbu39hdk8e +2025-06-18T14:00:50.681Z [TRACE] user-service - Auth event: login_success - User: user_1046 - IP: 192.168.227.233 - RequestID: 78puh2seqmm +2025-06-18T14:00:50.781Z [TRACE] order-service - Operation: cache_miss - Processing time: 273ms - RequestID: gd8i5mskgc +2025-06-18T14:00:50.881Z [TRACE] notification-service - POST /api/v1/payments - Status: 404 - Response time: 1031ms - IP: 192.168.211.72 - User: user_1021 - RequestID: dd8b2hwftck +2025-06-18T14:00:50.981Z [INFO] payment-service - Database DELETE on products - Execution time: 412ms - Rows affected: 26 - RequestID: kaod23u8egk +2025-06-18T14:00:51.081Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 988ms - RequestID: l7z9t00e9pg +2025-06-18T14:00:51.181Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 316ms - Rows affected: 71 - RequestID: dftb5u7mo6r +2025-06-18T14:00:51.281Z [DEBUG] user-service - Auth event: login_failed - User: user_1039 - IP: 192.168.227.77 - RequestID: 8rohgvhdlq8 +2025-06-18T14:00:51.381Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 276ms - Rows affected: 55 - RequestID: kn4vdy298d +2025-06-18T14:00:51.481Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 898ms - RequestID: 97raaiujaz +2025-06-18T14:00:51.581Z [INFO] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 323ms - IP: 192.168.232.72 - User: user_1060 - RequestID: 4tgeqm76t9d +2025-06-18T14:00:51.681Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1891ms - IP: 192.168.147.171 - User: user_1095 - RequestID: zjeu2auefu +2025-06-18T14:00:51.781Z [DEBUG] user-service - Database SELECT on orders - Execution time: 257ms - Rows affected: 63 - RequestID: ij676x6zx5g +2025-06-18T14:00:51.881Z [INFO] payment-service - Operation: email_sent - Processing time: 1039ms - RequestID: 71d3ksma40p +2025-06-18T14:00:51.981Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 387ms - Rows affected: 73 - RequestID: aynh1bwkkt +2025-06-18T14:00:52.081Z [INFO] inventory-service - Database DELETE on payments - Execution time: 135ms - Rows affected: 10 - RequestID: 5l2yae7cvgr +2025-06-18T14:00:52.181Z [DEBUG] order-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.242.165 - RequestID: b0xqo0evu3p +2025-06-18T14:00:52.281Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1459ms - IP: 192.168.81.206 - User: user_1047 - RequestID: llj29ln1h0c +2025-06-18T14:00:52.381Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1772ms - IP: 192.168.194.41 - User: user_1001 - RequestID: r1xr6inac +2025-06-18T14:00:52.481Z [TRACE] auth-service - Auth event: password_change - User: user_1019 - IP: 192.168.85.229 - RequestID: 07h2x5mc0e8l +2025-06-18T14:00:52.581Z [INFO] order-service - Operation: cache_hit - Processing time: 228ms - RequestID: 03ou5gki143u +2025-06-18T14:00:52.681Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 172ms - Rows affected: 58 - RequestID: 4cu1exn720u +2025-06-18T14:00:52.781Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 230ms - Rows affected: 37 - RequestID: mekeaeads1 +2025-06-18T14:00:52.881Z [INFO] auth-service - Auth event: password_change - User: user_1068 - IP: 192.168.141.100 - RequestID: e2sh9fzn14e +2025-06-18T14:00:52.981Z [INFO] inventory-service - GET /api/v1/inventory - Status: 401 - Response time: 529ms - IP: 192.168.113.218 - User: user_1003 - RequestID: aggk9nnew8l +2025-06-18T14:00:53.081Z [DEBUG] order-service - Database DELETE on users - Execution time: 458ms - Rows affected: 3 - RequestID: i1op79pjg9g +2025-06-18T14:00:53.181Z [DEBUG] inventory-service - Auth event: password_change - User: user_1098 - IP: 192.168.104.37 - RequestID: 439an04k26l +2025-06-18T14:00:53.281Z [INFO] inventory-service - Operation: cache_miss - Processing time: 206ms - RequestID: lhwsns64x7 +2025-06-18T14:00:53.381Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 98ms - RequestID: mck1jn2ebyj +2025-06-18T14:00:53.481Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 400 - Response time: 687ms - IP: 192.168.32.38 - User: user_1036 - RequestID: mh4x6yglvm +2025-06-18T14:00:53.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.31.117 - RequestID: dc34yx4ebqp +2025-06-18T14:00:53.681Z [INFO] order-service - Database UPDATE on users - Execution time: 217ms - Rows affected: 97 - RequestID: gjnh9jlwa48 +2025-06-18T14:00:53.781Z [TRACE] notification-service - Database DELETE on orders - Execution time: 454ms - Rows affected: 20 - RequestID: yh0wtpcupqi +2025-06-18T14:00:53.881Z [INFO] auth-service - Auth event: login_success - User: user_1090 - IP: 192.168.181.225 - RequestID: 8kgnib4b8vl +2025-06-18T14:00:53.981Z [INFO] order-service - Database DELETE on orders - Execution time: 207ms - Rows affected: 39 - RequestID: y6afmrjiw8 +2025-06-18T14:00:54.081Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 255ms - RequestID: u4ru7pr1do +2025-06-18T14:00:54.181Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 403 - Response time: 756ms - IP: 192.168.138.123 - User: user_1033 - RequestID: tglclmik44 +2025-06-18T14:00:54.281Z [DEBUG] order-service - Auth event: password_change - User: user_1070 - IP: 192.168.170.215 - RequestID: h24oe3ncf2 +2025-06-18T14:00:54.381Z [INFO] notification-service - Auth event: logout - User: user_1020 - IP: 192.168.174.114 - RequestID: bo5lo8wxr0n +2025-06-18T14:00:54.481Z [TRACE] user-service - Database DELETE on products - Execution time: 230ms - Rows affected: 0 - RequestID: ev8r3fcqouj +2025-06-18T14:00:54.581Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 288ms - Rows affected: 1 - RequestID: lc7ay9uz16k +2025-06-18T14:00:54.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.13.72 - RequestID: 4in5k5xotfa +2025-06-18T14:00:54.781Z [INFO] inventory-service - Operation: email_sent - Processing time: 342ms - RequestID: mh2svymvifl +2025-06-18T14:00:54.881Z [INFO] notification-service - Database DELETE on users - Execution time: 438ms - Rows affected: 85 - RequestID: vix05vm2y9e +2025-06-18T14:00:54.981Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 200 - Response time: 984ms - IP: 192.168.181.225 - User: user_1051 - RequestID: m4y1c3dogde +2025-06-18T14:00:55.081Z [INFO] auth-service - Operation: inventory_updated - Processing time: 850ms - RequestID: nbn3g2fyjmc +2025-06-18T14:00:55.181Z [INFO] order-service - Operation: notification_queued - Processing time: 869ms - RequestID: 2vzs5eevqpg +2025-06-18T14:00:55.281Z [INFO] payment-service - Database DELETE on payments - Execution time: 465ms - Rows affected: 88 - RequestID: 7r3ll4ophdv +2025-06-18T14:00:55.381Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.64.33 - RequestID: b9up2vhu55q +2025-06-18T14:00:55.481Z [DEBUG] order-service - Operation: order_created - Processing time: 230ms - RequestID: 1kzkh1lcxmj +2025-06-18T14:00:55.581Z [TRACE] notification-service - POST /api/v1/inventory - Status: 400 - Response time: 326ms - IP: 192.168.229.123 - User: user_1061 - RequestID: ddyy62slktw +2025-06-18T14:00:55.681Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1093ms - IP: 192.168.235.117 - User: user_1084 - RequestID: 7ox3ea2y0eq +2025-06-18T14:00:55.781Z [INFO] order-service - DELETE /api/v1/orders - Status: 502 - Response time: 1695ms - IP: 192.168.100.240 - User: user_1068 - RequestID: owgv7gy3jrs +2025-06-18T14:00:55.881Z [DEBUG] auth-service - Auth event: login_failed - User: user_1010 - IP: 192.168.13.72 - RequestID: x4fsr6w08u +2025-06-18T14:00:55.981Z [INFO] auth-service - DELETE /api/v1/orders - Status: 201 - Response time: 1616ms - IP: 192.168.32.38 - User: user_1000 - RequestID: 9xun6eyhef +2025-06-18T14:00:56.081Z [INFO] order-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.28.146 - RequestID: fknhvb7gg9 +2025-06-18T14:00:56.181Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 400 - Response time: 1448ms - IP: 192.168.44.5 - User: user_1030 - RequestID: 1vl8kxntjif +2025-06-18T14:00:56.281Z [INFO] inventory-service - POST /api/v1/inventory - Status: 200 - Response time: 262ms - IP: 192.168.242.165 - User: user_1073 - RequestID: mba3m5yu80m +2025-06-18T14:00:56.381Z [INFO] order-service - Database SELECT on users - Execution time: 284ms - Rows affected: 67 - RequestID: 4arhyapfz9r +2025-06-18T14:00:56.481Z [TRACE] user-service - PATCH /api/v1/orders - Status: 500 - Response time: 282ms - IP: 192.168.14.77 - User: user_1005 - RequestID: al7ekied3ek +2025-06-18T14:00:56.581Z [TRACE] user-service - Auth event: password_change - User: user_1096 - IP: 192.168.79.141 - RequestID: wkzpngmx54 +2025-06-18T14:00:56.681Z [INFO] user-service - Database INSERT on users - Execution time: 155ms - Rows affected: 40 - RequestID: grem3xlygbj +2025-06-18T14:00:56.781Z [INFO] inventory-service - Auth event: login_failed - User: user_1087 - IP: 192.168.181.225 - RequestID: 8o3mz3crssj +2025-06-18T14:00:56.881Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 893ms - RequestID: sb6pvescnk9 +2025-06-18T14:00:56.981Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 510ms - RequestID: ni9u4sgeg5g +2025-06-18T14:00:57.081Z [INFO] order-service - PUT /api/v1/users - Status: 400 - Response time: 135ms - IP: 192.168.44.5 - User: user_1093 - RequestID: eq09w7501a +2025-06-18T14:00:57.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1072 - IP: 192.168.240.169 - RequestID: 60bd26ds7xb +2025-06-18T14:00:57.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.144.38 - RequestID: bsc9zktieio +2025-06-18T14:00:57.381Z [TRACE] auth-service - Operation: email_sent - Processing time: 138ms - RequestID: 4724e6d4gxb +2025-06-18T14:00:57.481Z [INFO] auth-service - GET /api/v1/users - Status: 404 - Response time: 1989ms - IP: 192.168.174.114 - User: user_1092 - RequestID: 0tbix0r58jm +2025-06-18T14:00:57.581Z [INFO] payment-service - Auth event: login_failed - User: user_1075 - IP: 192.168.97.87 - RequestID: v3rjjaaxh3e +2025-06-18T14:00:57.681Z [TRACE] payment-service - Auth event: password_change - User: user_1032 - IP: 192.168.79.141 - RequestID: 69bfge4ars9 +2025-06-18T14:00:57.781Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 403 - Response time: 1715ms - IP: 192.168.97.87 - User: user_1062 - RequestID: ir6r77abxgn +2025-06-18T14:00:57.881Z [INFO] order-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1269ms - IP: 192.168.1.152 - User: user_1029 - RequestID: g1fyuawr5wi +2025-06-18T14:00:57.981Z [INFO] user-service - POST /api/v1/auth/login - Status: 500 - Response time: 1174ms - IP: 192.168.10.184 - User: user_1056 - RequestID: dobxwk62z6 +2025-06-18T14:00:58.081Z [INFO] notification-service - Operation: cache_miss - Processing time: 717ms - RequestID: swloyxegmq +2025-06-18T14:00:58.181Z [INFO] notification-service - Operation: payment_processed - Processing time: 422ms - RequestID: zw28nr1go7 +2025-06-18T14:00:58.281Z [TRACE] order-service - Auth event: login_success - User: user_1048 - IP: 192.168.32.38 - RequestID: 4w6w8auv0ee +2025-06-18T14:00:58.381Z [INFO] user-service - Operation: email_sent - Processing time: 604ms - RequestID: 2i27qski009 +2025-06-18T14:00:58.481Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 475ms - Rows affected: 51 - RequestID: uldgol06qh +2025-06-18T14:00:58.581Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 201ms - Rows affected: 21 - RequestID: gql9wzjs2p5 +2025-06-18T14:00:58.681Z [TRACE] user-service - Operation: inventory_updated - Processing time: 518ms - RequestID: h55xata1dju +2025-06-18T14:00:58.781Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 746ms - RequestID: e0zr6v8e6o5 +2025-06-18T14:00:58.881Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.196.226 - RequestID: 64l6ieuuw2 +2025-06-18T14:00:58.981Z [DEBUG] order-service - PUT /api/v1/orders - Status: 200 - Response time: 1725ms - IP: 192.168.196.226 - User: user_1091 - RequestID: gxhrksaezpp +2025-06-18T14:00:59.081Z [DEBUG] inventory-service - Auth event: logout - User: user_1072 - IP: 192.168.33.76 - RequestID: eur5cxhhsll +2025-06-18T14:00:59.181Z [TRACE] payment-service - Auth event: logout - User: user_1040 - IP: 192.168.240.169 - RequestID: 95kfpxdxnwu +2025-06-18T14:00:59.281Z [INFO] user-service - Operation: cache_miss - Processing time: 1016ms - RequestID: 0nc9t2h38bj +2025-06-18T14:00:59.381Z [INFO] payment-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.247.134 - RequestID: golxd063i9o +2025-06-18T14:00:59.481Z [INFO] inventory-service - Database SELECT on users - Execution time: 108ms - Rows affected: 10 - RequestID: linfy7gaza +2025-06-18T14:00:59.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.53.133 - RequestID: ngg8398stk +2025-06-18T14:00:59.681Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 683ms - RequestID: h0wd18w7r9w +2025-06-18T14:00:59.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1069 - IP: 192.168.158.144 - RequestID: 91yy9tzz5an +2025-06-18T14:00:59.881Z [TRACE] user-service - Operation: order_created - Processing time: 54ms - RequestID: 1cqbf25npi9 +2025-06-18T14:00:59.981Z [INFO] inventory-service - Auth event: login_success - User: user_1066 - IP: 192.168.138.123 - RequestID: 9wizohtyxb9 +2025-06-18T14:01:00.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.46.63 - RequestID: qltysdk6ffb +2025-06-18T14:01:00.181Z [TRACE] payment-service - Operation: order_created - Processing time: 83ms - RequestID: 6j0pv6lcpu5 +2025-06-18T14:01:00.281Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 667ms - RequestID: 97hp5x9rub7 +2025-06-18T14:01:00.381Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1953ms - IP: 192.168.32.38 - User: user_1087 - RequestID: uieaa8boa4 +2025-06-18T14:01:00.481Z [TRACE] notification-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.36.218 - RequestID: 4huw17jexmu +2025-06-18T14:01:00.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 868ms - RequestID: puov725sap +2025-06-18T14:01:00.681Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 482ms - Rows affected: 45 - RequestID: 59v04ycdjaq +2025-06-18T14:01:00.781Z [DEBUG] order-service - Database INSERT on orders - Execution time: 85ms - Rows affected: 24 - RequestID: 7bhcidm7m8h +2025-06-18T14:01:00.881Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 485ms - RequestID: ivpgl5wvrm +2025-06-18T14:01:00.981Z [DEBUG] user-service - Auth event: login_success - User: user_1000 - IP: 192.168.33.76 - RequestID: 5glbg8v9mx6 +2025-06-18T14:01:01.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 792ms - RequestID: l291hx6qsdc +2025-06-18T14:01:01.181Z [TRACE] order-service - Auth event: login_failed - User: user_1070 - IP: 192.168.79.116 - RequestID: y39d8y23l3 +2025-06-18T14:01:01.281Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 169ms - RequestID: 11qk18mdgpbk +2025-06-18T14:01:01.381Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 463ms - RequestID: x4unc6knnk8 +2025-06-18T14:01:01.481Z [TRACE] payment-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.174.114 - RequestID: t2r9p0v71eb +2025-06-18T14:01:01.581Z [DEBUG] payment-service - Auth event: login_failed - User: user_1092 - IP: 192.168.159.94 - RequestID: 2c6quz14yct +2025-06-18T14:01:01.681Z [INFO] inventory-service - Auth event: password_change - User: user_1079 - IP: 192.168.104.37 - RequestID: k0ztxcle3o +2025-06-18T14:01:01.781Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1823ms - IP: 192.168.14.77 - User: user_1094 - RequestID: 8vxzq0kz4ju +2025-06-18T14:01:01.881Z [TRACE] notification-service - Operation: order_created - Processing time: 785ms - RequestID: pqrvvsy3j9 +2025-06-18T14:01:01.981Z [INFO] order-service - POST /api/v1/inventory - Status: 403 - Response time: 120ms - IP: 192.168.181.225 - User: user_1049 - RequestID: 6puyub8a9av +2025-06-18T14:01:02.081Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 404 - Response time: 730ms - IP: 192.168.174.114 - User: user_1042 - RequestID: p277tufsjpd +2025-06-18T14:01:02.181Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 203ms - RequestID: md2ed4qgknn +2025-06-18T14:01:02.281Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 52ms - RequestID: 0vbesm02tsrs +2025-06-18T14:01:02.381Z [DEBUG] order-service - Operation: payment_processed - Processing time: 455ms - RequestID: a3t3b9yp6nu +2025-06-18T14:01:02.481Z [INFO] notification-service - Database SELECT on sessions - Execution time: 306ms - Rows affected: 50 - RequestID: b1nxgisa75s +2025-06-18T14:01:02.581Z [TRACE] order-service - Auth event: password_change - User: user_1045 - IP: 192.168.138.123 - RequestID: gx33suy7e1d +2025-06-18T14:01:02.681Z [TRACE] notification-service - Operation: cache_miss - Processing time: 57ms - RequestID: 7d37bivkeyu +2025-06-18T14:01:02.781Z [TRACE] order-service - Auth event: password_change - User: user_1033 - IP: 192.168.187.199 - RequestID: o5uj2ck84r +2025-06-18T14:01:02.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 57ms - RequestID: zef642x1so +2025-06-18T14:01:02.981Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 500 - Response time: 1560ms - IP: 192.168.79.116 - User: user_1012 - RequestID: vnvexki6sc +2025-06-18T14:01:03.081Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 266ms - RequestID: xpx6f1nj2ir +2025-06-18T14:01:03.181Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 79ms - Rows affected: 32 - RequestID: bdnu5pms94 +2025-06-18T14:01:03.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 302ms - RequestID: qp74gqxp8on +2025-06-18T14:01:03.381Z [TRACE] user-service - Database SELECT on products - Execution time: 206ms - Rows affected: 35 - RequestID: wcr4rsx4z3c +2025-06-18T14:01:03.481Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 502 - Response time: 1907ms - IP: 192.168.194.41 - User: user_1098 - RequestID: feio18mv9yw +2025-06-18T14:01:03.581Z [INFO] order-service - Operation: notification_queued - Processing time: 560ms - RequestID: ske9ggfhaq +2025-06-18T14:01:03.681Z [INFO] inventory-service - Operation: email_sent - Processing time: 877ms - RequestID: gnftq2did8v +2025-06-18T14:01:03.781Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 120ms - Rows affected: 99 - RequestID: 5805ch1286u +2025-06-18T14:01:03.881Z [INFO] payment-service - GET /api/v1/payments - Status: 500 - Response time: 629ms - IP: 192.168.1.152 - User: user_1074 - RequestID: zd8xujecqjf +2025-06-18T14:01:03.981Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 218ms - RequestID: 1nxvq652mch +2025-06-18T14:01:04.081Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1329ms - IP: 192.168.11.60 - User: user_1048 - RequestID: 6qbhhenn3t +2025-06-18T14:01:04.181Z [INFO] inventory-service - Auth event: logout - User: user_1008 - IP: 192.168.247.134 - RequestID: 01cupew25a0k +2025-06-18T14:01:04.281Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 22ms - Rows affected: 69 - RequestID: 2yfd80seqwj +2025-06-18T14:01:04.381Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 403 - Response time: 706ms - IP: 192.168.227.233 - User: user_1060 - RequestID: 4t6kcqds88 +2025-06-18T14:01:04.481Z [TRACE] user-service - Operation: webhook_sent - Processing time: 513ms - RequestID: 9rzenp5l8p9 +2025-06-18T14:01:04.581Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 624ms - RequestID: bipml1kdjrn +2025-06-18T14:01:04.681Z [TRACE] auth-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.232.72 - RequestID: p1qfjqb5ttp +2025-06-18T14:01:04.781Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1483ms - IP: 192.168.232.72 - User: user_1094 - RequestID: hd5e20hs8w9 +2025-06-18T14:01:04.881Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 400 - Response time: 1862ms - IP: 192.168.189.103 - User: user_1091 - RequestID: ckwummepqvn +2025-06-18T14:01:04.981Z [TRACE] payment-service - Auth event: login_success - User: user_1042 - IP: 192.168.79.143 - RequestID: ksg42whplxj +2025-06-18T14:01:05.081Z [INFO] auth-service - Database DELETE on payments - Execution time: 246ms - Rows affected: 75 - RequestID: 9rpz6snqxz +2025-06-18T14:01:05.181Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 327ms - Rows affected: 27 - RequestID: sutn58liadp +2025-06-18T14:01:05.281Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 502 - Response time: 1784ms - IP: 192.168.227.77 - User: user_1064 - RequestID: rgbw6goo8v +2025-06-18T14:01:05.381Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 390ms - RequestID: u4oka3gprif +2025-06-18T14:01:05.481Z [INFO] order-service - Operation: cache_hit - Processing time: 356ms - RequestID: lk7s9rmkejc +2025-06-18T14:01:05.581Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 290ms - Rows affected: 67 - RequestID: 23x0t3q2uwg +2025-06-18T14:01:05.681Z [INFO] auth-service - DELETE /api/v1/users - Status: 500 - Response time: 1122ms - IP: 192.168.170.215 - User: user_1013 - RequestID: tyjiiey41g8 +2025-06-18T14:01:05.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1020 - IP: 192.168.68.128 - RequestID: w21bhfufb3p +2025-06-18T14:01:05.881Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 77ms - Rows affected: 2 - RequestID: 14z9yqysggq +2025-06-18T14:01:05.981Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 298ms - Rows affected: 63 - RequestID: d8rk1uim2hi +2025-06-18T14:01:06.081Z [INFO] user-service - Database SELECT on payments - Execution time: 156ms - Rows affected: 44 - RequestID: u4yfuk26fa8 +2025-06-18T14:01:06.181Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 242ms - RequestID: q12swkn8bt +2025-06-18T14:01:06.281Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 880ms - IP: 192.168.28.146 - User: user_1052 - RequestID: 1vc710vlpvw +2025-06-18T14:01:06.381Z [TRACE] user-service - PUT /api/v1/inventory - Status: 200 - Response time: 1946ms - IP: 192.168.13.72 - User: user_1072 - RequestID: e1p2pn6c0vb +2025-06-18T14:01:06.481Z [DEBUG] user-service - Database SELECT on users - Execution time: 71ms - Rows affected: 72 - RequestID: 0mhv0botqtmo +2025-06-18T14:01:06.581Z [INFO] notification-service - Operation: email_sent - Processing time: 223ms - RequestID: ky7fqn3crv +2025-06-18T14:01:06.681Z [DEBUG] notification-service - Auth event: logout - User: user_1054 - IP: 192.168.104.37 - RequestID: ahfor8htmp7 +2025-06-18T14:01:06.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 121ms - RequestID: w6oebr1v36l +2025-06-18T14:01:06.881Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 234ms - Rows affected: 49 - RequestID: xuqyodka1j +2025-06-18T14:01:06.981Z [TRACE] user-service - POST /api/v1/users - Status: 503 - Response time: 1803ms - IP: 192.168.79.143 - User: user_1019 - RequestID: rn11dl9bndj +2025-06-18T14:01:07.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.11.60 - RequestID: 6a7wqsipu0t +2025-06-18T14:01:07.181Z [TRACE] inventory-service - Auth event: login_failed - User: user_1059 - IP: 192.168.229.123 - RequestID: 07w9zoyh3zel +2025-06-18T14:01:07.281Z [INFO] user-service - Operation: inventory_updated - Processing time: 616ms - RequestID: g4cz6p1nyy +2025-06-18T14:01:07.381Z [DEBUG] auth-service - Auth event: logout - User: user_1085 - IP: 192.168.174.114 - RequestID: e5zgoggi5hh +2025-06-18T14:01:07.481Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 227ms - Rows affected: 74 - RequestID: 3w01dbx00tb +2025-06-18T14:01:07.581Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 296ms - Rows affected: 0 - RequestID: i1yi0wt350t +2025-06-18T14:01:07.681Z [INFO] payment-service - POST /api/v1/orders - Status: 400 - Response time: 148ms - IP: 192.168.133.7 - User: user_1093 - RequestID: kdsxt6wlr4 +2025-06-18T14:01:07.781Z [INFO] order-service - Operation: cache_hit - Processing time: 431ms - RequestID: yexttw33s0n +2025-06-18T14:01:07.881Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 400 - Response time: 1900ms - IP: 192.168.194.41 - User: user_1027 - RequestID: ev8kr32kqt +2025-06-18T14:01:07.981Z [TRACE] auth-service - Auth event: logout - User: user_1063 - IP: 192.168.232.72 - RequestID: nayum6p6ivm +2025-06-18T14:01:08.081Z [INFO] notification-service - Operation: notification_queued - Processing time: 574ms - RequestID: b77f43z3t0n +2025-06-18T14:01:08.181Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 54ms - Rows affected: 58 - RequestID: bzemug20t8w +2025-06-18T14:01:08.281Z [INFO] inventory-service - Database SELECT on orders - Execution time: 214ms - Rows affected: 73 - RequestID: km8nfs1e05p +2025-06-18T14:01:08.381Z [INFO] payment-service - Auth event: login_failed - User: user_1001 - IP: 192.168.28.146 - RequestID: ujpiniv6wq +2025-06-18T14:01:08.481Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 24ms - Rows affected: 27 - RequestID: h7s1o067irl +2025-06-18T14:01:08.581Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 103ms - Rows affected: 88 - RequestID: cz0sgnrjdnb +2025-06-18T14:01:08.681Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 704ms - RequestID: y7y7i7nl258 +2025-06-18T14:01:08.781Z [TRACE] user-service - GET /api/v1/auth/login - Status: 400 - Response time: 681ms - IP: 192.168.44.5 - User: user_1005 - RequestID: ah73vudtws +2025-06-18T14:01:08.881Z [INFO] order-service - Operation: webhook_sent - Processing time: 1009ms - RequestID: fj3de7vxtw +2025-06-18T14:01:08.981Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 78ms - Rows affected: 43 - RequestID: i3yau33zm9i +2025-06-18T14:01:09.081Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 118ms - RequestID: 4op1qfctzk +2025-06-18T14:01:09.181Z [INFO] order-service - Auth event: password_change - User: user_1019 - IP: 192.168.36.218 - RequestID: q5gf6o9tnhe +2025-06-18T14:01:09.281Z [INFO] order-service - Auth event: logout - User: user_1077 - IP: 192.168.138.123 - RequestID: g0t04dp4ztj +2025-06-18T14:01:09.381Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 500 - Response time: 350ms - IP: 192.168.159.94 - User: user_1050 - RequestID: axgufcbnim4 +2025-06-18T14:01:09.481Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 454ms - Rows affected: 22 - RequestID: z45ms8wbr0m +2025-06-18T14:01:09.581Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 492ms - Rows affected: 14 - RequestID: a0b1no8uan4 +2025-06-18T14:01:09.681Z [INFO] notification-service - Operation: cache_miss - Processing time: 995ms - RequestID: 8wx2t0hvgbw +2025-06-18T14:01:09.781Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 404 - Response time: 443ms - IP: 192.168.138.123 - User: user_1047 - RequestID: klifb6gbzvk +2025-06-18T14:01:09.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.144.38 - RequestID: mri7zugtcv +2025-06-18T14:01:09.981Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 724ms - RequestID: mrep2p4dgc +2025-06-18T14:01:10.081Z [DEBUG] user-service - Auth event: login_success - User: user_1054 - IP: 192.168.170.215 - RequestID: c2t3jjnq7te +2025-06-18T14:01:10.181Z [DEBUG] order-service - PUT /api/v1/payments - Status: 500 - Response time: 1873ms - IP: 192.168.28.146 - User: user_1004 - RequestID: hnhjlmsn3wf +2025-06-18T14:01:10.281Z [TRACE] user-service - PUT /api/v1/inventory - Status: 503 - Response time: 1052ms - IP: 192.168.31.117 - User: user_1005 - RequestID: mw2wn7ehrw +2025-06-18T14:01:10.381Z [DEBUG] user-service - Database DELETE on users - Execution time: 235ms - Rows affected: 9 - RequestID: wiqmsxo3g5 +2025-06-18T14:01:10.481Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 33ms - Rows affected: 15 - RequestID: iyrode4j748 +2025-06-18T14:01:10.581Z [INFO] order-service - Operation: payment_processed - Processing time: 310ms - RequestID: 4yuoqsc370t +2025-06-18T14:01:10.681Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 500 - Response time: 721ms - IP: 192.168.229.123 - User: user_1070 - RequestID: 29iyliuz4r6 +2025-06-18T14:01:10.781Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 401 - Response time: 755ms - IP: 192.168.53.133 - User: user_1050 - RequestID: z5jimq7lgoc +2025-06-18T14:01:10.881Z [TRACE] payment-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.11.60 - RequestID: se9uabbklq +2025-06-18T14:01:10.981Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 899ms - RequestID: 6eptarac7hm +2025-06-18T14:01:11.081Z [INFO] auth-service - Database DELETE on sessions - Execution time: 112ms - Rows affected: 1 - RequestID: bdaycw366hj +2025-06-18T14:01:11.181Z [TRACE] user-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.133.7 - RequestID: 00ves5bo8mmk +2025-06-18T14:01:11.281Z [DEBUG] order-service - Auth event: login_success - User: user_1041 - IP: 192.168.85.229 - RequestID: jqdi853r4dc +2025-06-18T14:01:11.381Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 597ms - IP: 192.168.31.117 - User: user_1022 - RequestID: 493lt33mvys +2025-06-18T14:01:11.481Z [DEBUG] user-service - Auth event: password_change - User: user_1074 - IP: 192.168.79.116 - RequestID: mwvhonhj6r +2025-06-18T14:01:11.581Z [INFO] notification-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.46.63 - RequestID: xofbwqqcv0l +2025-06-18T14:01:11.681Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 200ms - Rows affected: 40 - RequestID: 3uaume2gfdi +2025-06-18T14:01:11.781Z [TRACE] user-service - Auth event: password_change - User: user_1011 - IP: 192.168.229.123 - RequestID: ss9bctbucoc +2025-06-18T14:01:11.881Z [INFO] notification-service - Operation: email_sent - Processing time: 499ms - RequestID: ttnm2gmrsl +2025-06-18T14:01:11.981Z [INFO] user-service - Operation: payment_processed - Processing time: 713ms - RequestID: ve6b4jhuin9 +2025-06-18T14:01:12.081Z [TRACE] payment-service - PUT /api/v1/payments - Status: 201 - Response time: 492ms - IP: 192.168.240.169 - User: user_1094 - RequestID: tkilbzgwgea +2025-06-18T14:01:12.181Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 187ms - Rows affected: 36 - RequestID: 0tz4dar7bpxe +2025-06-18T14:01:12.281Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 204ms - RequestID: rk4wywen78 +2025-06-18T14:01:12.381Z [TRACE] payment-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.30.79 - RequestID: hql97svyvk9 +2025-06-18T14:01:12.481Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 649ms - RequestID: 869oye5goo7 +2025-06-18T14:01:12.581Z [INFO] user-service - Database UPDATE on users - Execution time: 227ms - Rows affected: 67 - RequestID: xa1gq5mtztj +2025-06-18T14:01:12.681Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 246ms - Rows affected: 86 - RequestID: kuk4q3k4rv +2025-06-18T14:01:12.781Z [INFO] auth-service - Operation: email_sent - Processing time: 215ms - RequestID: voy1qs2a3hh +2025-06-18T14:01:12.881Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 803ms - RequestID: rf6e2277nq +2025-06-18T14:01:12.981Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 500 - Response time: 1268ms - IP: 192.168.97.87 - User: user_1024 - RequestID: 1s43ogc6wq5 +2025-06-18T14:01:13.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.144.38 - RequestID: pum4ew50eog +2025-06-18T14:01:13.181Z [DEBUG] order-service - GET /api/v1/orders - Status: 404 - Response time: 1763ms - IP: 192.168.170.215 - User: user_1038 - RequestID: xak2q76xy7g +2025-06-18T14:01:13.281Z [DEBUG] auth-service - PUT /api/v1/users - Status: 403 - Response time: 107ms - IP: 192.168.170.215 - User: user_1015 - RequestID: 5ipidz8roda +2025-06-18T14:01:13.381Z [DEBUG] payment-service - Operation: email_sent - Processing time: 588ms - RequestID: aq55jilkqan +2025-06-18T14:01:13.481Z [DEBUG] user-service - Database DELETE on products - Execution time: 160ms - Rows affected: 9 - RequestID: dsi57i9skil +2025-06-18T14:01:13.581Z [INFO] user-service - Operation: email_sent - Processing time: 972ms - RequestID: 1cpbntipyyl +2025-06-18T14:01:13.681Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.133.7 - RequestID: m59tfng0u5c +2025-06-18T14:01:13.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.79.116 - RequestID: 1d3yr6xse7q +2025-06-18T14:01:13.881Z [DEBUG] order-service - Operation: payment_processed - Processing time: 431ms - RequestID: vzh2xystvjd +2025-06-18T14:01:13.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.187.199 - RequestID: ghklg4926it +2025-06-18T14:01:14.081Z [TRACE] auth-service - PUT /api/v1/orders - Status: 200 - Response time: 1534ms - IP: 192.168.11.60 - User: user_1006 - RequestID: 7u4rd2lelh +2025-06-18T14:01:14.181Z [DEBUG] order-service - Operation: payment_processed - Processing time: 965ms - RequestID: jlge4d94keq +2025-06-18T14:01:14.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.46.63 - RequestID: od0yp0tkhf +2025-06-18T14:01:14.381Z [INFO] auth-service - Operation: cache_hit - Processing time: 584ms - RequestID: 9qw7kruevx +2025-06-18T14:01:14.481Z [TRACE] auth-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.28.146 - RequestID: 1dtykgmbhmi +2025-06-18T14:01:14.581Z [TRACE] notification-service - Auth event: login_success - User: user_1011 - IP: 192.168.144.38 - RequestID: 9nvxs03h75 +2025-06-18T14:01:14.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.11.60 - RequestID: 4ncyuig761a +2025-06-18T14:01:14.781Z [INFO] inventory-service - Operation: payment_processed - Processing time: 641ms - RequestID: kvcoht13ak +2025-06-18T14:01:14.881Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 451ms - Rows affected: 66 - RequestID: 4ff6y545vmx +2025-06-18T14:01:14.981Z [DEBUG] auth-service - Database SELECT on users - Execution time: 322ms - Rows affected: 9 - RequestID: ji4foyqcw9h +2025-06-18T14:01:15.081Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 652ms - RequestID: w0cs2k5edf +2025-06-18T14:01:15.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 435ms - RequestID: ab7r9g6r93b +2025-06-18T14:01:15.281Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 403 - Response time: 640ms - IP: 192.168.133.7 - User: user_1043 - RequestID: 0mh24hup40n +2025-06-18T14:01:15.381Z [INFO] user-service - Operation: webhook_sent - Processing time: 126ms - RequestID: urw1dxi2qg +2025-06-18T14:01:15.481Z [INFO] order-service - Auth event: password_change - User: user_1058 - IP: 192.168.242.165 - RequestID: asjjxbaai +2025-06-18T14:01:15.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1098 - IP: 192.168.113.218 - RequestID: cvzpc9y073w +2025-06-18T14:01:15.681Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 239ms - Rows affected: 41 - RequestID: b2msmccy1za +2025-06-18T14:01:15.781Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 471ms - Rows affected: 61 - RequestID: 1lqmdymtb71 +2025-06-18T14:01:15.881Z [INFO] auth-service - Operation: email_sent - Processing time: 125ms - RequestID: ik66npng6 +2025-06-18T14:01:15.981Z [INFO] inventory-service - Operation: order_created - Processing time: 221ms - RequestID: o2wcf8uovwh +2025-06-18T14:01:16.081Z [INFO] inventory-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.104.37 - RequestID: at9646ouoz +2025-06-18T14:01:16.181Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 269ms - Rows affected: 88 - RequestID: 4zffp2jayuh +2025-06-18T14:01:16.281Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.46.63 - RequestID: t7zfcpq7lsp +2025-06-18T14:01:16.381Z [TRACE] user-service - Operation: inventory_updated - Processing time: 894ms - RequestID: t5jbkhxiuu +2025-06-18T14:01:16.481Z [INFO] order-service - Database DELETE on sessions - Execution time: 253ms - Rows affected: 48 - RequestID: ucpi3pldsa +2025-06-18T14:01:16.581Z [INFO] order-service - PUT /api/v1/payments - Status: 404 - Response time: 1134ms - IP: 192.168.187.199 - User: user_1012 - RequestID: 1rps2hlfjjwi +2025-06-18T14:01:16.681Z [TRACE] auth-service - Auth event: password_change - User: user_1078 - IP: 192.168.13.72 - RequestID: hg6fyz9knrd +2025-06-18T14:01:16.781Z [INFO] payment-service - POST /api/v1/users - Status: 401 - Response time: 1240ms - IP: 192.168.30.79 - User: user_1010 - RequestID: 97dqgj2ffcf +2025-06-18T14:01:16.881Z [INFO] order-service - Database DELETE on payments - Execution time: 289ms - Rows affected: 11 - RequestID: jw0h2tvbwwd +2025-06-18T14:01:16.981Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1619ms - IP: 192.168.247.134 - User: user_1076 - RequestID: 6h165b13nye +2025-06-18T14:01:17.081Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 59ms - RequestID: skf37q7a97 +2025-06-18T14:01:17.181Z [TRACE] order-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.167.32 - RequestID: h1022wv4j7 +2025-06-18T14:01:17.281Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 373ms - Rows affected: 2 - RequestID: 12awud8ggrj9 +2025-06-18T14:01:17.381Z [DEBUG] user-service - Operation: order_created - Processing time: 451ms - RequestID: bem6i12couu +2025-06-18T14:01:17.481Z [TRACE] order-service - Auth event: login_success - User: user_1082 - IP: 192.168.147.171 - RequestID: zkpjcykje7b +2025-06-18T14:01:17.581Z [TRACE] inventory-service - POST /api/v1/users - Status: 503 - Response time: 1599ms - IP: 192.168.211.72 - User: user_1020 - RequestID: gptypysrl4 +2025-06-18T14:01:17.681Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1975ms - IP: 192.168.68.128 - User: user_1083 - RequestID: 8gi92gpuf4u +2025-06-18T14:01:17.781Z [TRACE] user-service - Auth event: login_success - User: user_1064 - IP: 192.168.133.7 - RequestID: lifxwidwwep +2025-06-18T14:01:17.881Z [TRACE] auth-service - Auth event: password_change - User: user_1012 - IP: 192.168.229.123 - RequestID: dwfonagwblo +2025-06-18T14:01:17.981Z [INFO] order-service - Operation: email_sent - Processing time: 936ms - RequestID: 572gqbfu2uf +2025-06-18T14:01:18.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1016 - IP: 192.168.97.87 - RequestID: b8jde93xnbg +2025-06-18T14:01:18.181Z [INFO] auth-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.174.114 - RequestID: r9ms8k2qmof +2025-06-18T14:01:18.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.229.123 - RequestID: smt6nz4ou2 +2025-06-18T14:01:18.381Z [TRACE] inventory-service - Auth event: password_change - User: user_1034 - IP: 192.168.36.218 - RequestID: pdvbsck1bi9 +2025-06-18T14:01:18.481Z [INFO] notification-service - Auth event: password_change - User: user_1029 - IP: 192.168.30.79 - RequestID: 48erjnpprre +2025-06-18T14:01:18.581Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 143ms - Rows affected: 23 - RequestID: hthd72e2wn +2025-06-18T14:01:18.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 737ms - RequestID: 346gg4ur60o +2025-06-18T14:01:18.781Z [DEBUG] user-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.64.33 - RequestID: ag0vd240hv6 +2025-06-18T14:01:18.881Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 400 - Response time: 678ms - IP: 192.168.167.32 - User: user_1072 - RequestID: vh52ee0svl8 +2025-06-18T14:01:18.981Z [DEBUG] order-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.211.72 - RequestID: kz9w3pwlknd +2025-06-18T14:01:19.081Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 401 - Response time: 649ms - IP: 192.168.113.218 - User: user_1008 - RequestID: xwho6frrwd +2025-06-18T14:01:19.181Z [DEBUG] user-service - Operation: payment_processed - Processing time: 555ms - RequestID: njuwegu4rds +2025-06-18T14:01:19.281Z [TRACE] order-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.235.117 - RequestID: vbqwzrduhve +2025-06-18T14:01:19.381Z [DEBUG] notification-service - Auth event: login_success - User: user_1009 - IP: 192.168.79.141 - RequestID: kjxl69e6l9 +2025-06-18T14:01:19.481Z [INFO] notification-service - Operation: email_sent - Processing time: 665ms - RequestID: mlkqui01ev +2025-06-18T14:01:19.581Z [DEBUG] order-service - Database INSERT on orders - Execution time: 106ms - Rows affected: 88 - RequestID: jtsppd841qo +2025-06-18T14:01:19.681Z [DEBUG] order-service - Auth event: password_change - User: user_1052 - IP: 192.168.240.169 - RequestID: s2xtvanmje +2025-06-18T14:01:19.781Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 329ms - Rows affected: 42 - RequestID: spxc7ieoekk +2025-06-18T14:01:19.881Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 502 - Response time: 1745ms - IP: 192.168.100.240 - User: user_1019 - RequestID: nee8seytwh +2025-06-18T14:01:19.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.81.206 - RequestID: o67qv2kx5y +2025-06-18T14:01:20.081Z [TRACE] notification-service - Database DELETE on users - Execution time: 87ms - Rows affected: 53 - RequestID: 9isoyyipmyi +2025-06-18T14:01:20.181Z [INFO] payment-service - GET /api/v1/orders - Status: 502 - Response time: 1685ms - IP: 192.168.85.229 - User: user_1022 - RequestID: 2y6tgdn79ql +2025-06-18T14:01:20.281Z [TRACE] user-service - Operation: payment_processed - Processing time: 55ms - RequestID: y3aquu192ag +2025-06-18T14:01:20.381Z [TRACE] user-service - Database DELETE on products - Execution time: 281ms - Rows affected: 38 - RequestID: sisnp4yprt +2025-06-18T14:01:20.481Z [INFO] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 1808ms - IP: 192.168.1.152 - User: user_1042 - RequestID: fvmc836cn2 +2025-06-18T14:01:20.581Z [DEBUG] user-service - Auth event: password_change - User: user_1001 - IP: 192.168.85.229 - RequestID: 2lyfpjfajmr +2025-06-18T14:01:20.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.36.218 - RequestID: nrq5lcf4knb +2025-06-18T14:01:20.781Z [DEBUG] notification-service - Auth event: logout - User: user_1021 - IP: 192.168.181.225 - RequestID: protubzuzmh +2025-06-18T14:01:20.881Z [DEBUG] user-service - Database SELECT on users - Execution time: 3ms - Rows affected: 40 - RequestID: rfw8k3ieth +2025-06-18T14:01:20.981Z [INFO] order-service - Auth event: logout - User: user_1075 - IP: 192.168.46.63 - RequestID: 2yogwq2rg7g +2025-06-18T14:01:21.081Z [TRACE] inventory-service - Operation: order_created - Processing time: 635ms - RequestID: 4cda9egak35 +2025-06-18T14:01:21.181Z [TRACE] notification-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.133.7 - RequestID: v01aqkltzc +2025-06-18T14:01:21.281Z [INFO] order-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.147.171 - RequestID: lfuj19ljr9 +2025-06-18T14:01:21.381Z [INFO] user-service - Operation: inventory_updated - Processing time: 582ms - RequestID: 45w2dhdamh2 +2025-06-18T14:01:21.481Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1376ms - IP: 192.168.36.218 - User: user_1085 - RequestID: leturzu2izk +2025-06-18T14:01:21.581Z [TRACE] user-service - Operation: notification_queued - Processing time: 1013ms - RequestID: 9bni6yep3ju +2025-06-18T14:01:21.681Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 503 - Response time: 1702ms - IP: 192.168.11.60 - User: user_1010 - RequestID: 7yd4nozja36 +2025-06-18T14:01:21.781Z [TRACE] payment-service - Database INSERT on orders - Execution time: 442ms - Rows affected: 79 - RequestID: 6uz3zgj7y1p +2025-06-18T14:01:21.881Z [INFO] payment-service - Auth event: login_success - User: user_1014 - IP: 192.168.11.60 - RequestID: haltoxv9fjb +2025-06-18T14:01:21.981Z [TRACE] order-service - Operation: order_created - Processing time: 221ms - RequestID: yx62rkg7ys +2025-06-18T14:01:22.081Z [INFO] notification-service - Database INSERT on users - Execution time: 312ms - Rows affected: 32 - RequestID: q7vd6h9d8al +2025-06-18T14:01:22.181Z [DEBUG] inventory-service - Auth event: password_change - User: user_1032 - IP: 192.168.44.5 - RequestID: znaln7v5teh +2025-06-18T14:01:22.281Z [INFO] user-service - Database UPDATE on orders - Execution time: 326ms - Rows affected: 18 - RequestID: qzfxgoyqha +2025-06-18T14:01:22.381Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 404 - Response time: 10ms - IP: 192.168.227.77 - User: user_1096 - RequestID: poep41ydx29 +2025-06-18T14:01:22.481Z [INFO] user-service - GET /api/v1/inventory - Status: 400 - Response time: 541ms - IP: 192.168.187.199 - User: user_1096 - RequestID: 32kz2omv6ka +2025-06-18T14:01:22.581Z [DEBUG] auth-service - Database DELETE on users - Execution time: 255ms - Rows affected: 23 - RequestID: gs7nlmexczs +2025-06-18T14:01:22.681Z [TRACE] user-service - Operation: order_created - Processing time: 634ms - RequestID: x4upv2tt9i +2025-06-18T14:01:22.781Z [INFO] user-service - Operation: webhook_sent - Processing time: 517ms - RequestID: qi48ezdm63l +2025-06-18T14:01:22.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 981ms - RequestID: 6a8dzxrl5wp +2025-06-18T14:01:22.981Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 200 - Response time: 577ms - IP: 192.168.79.143 - User: user_1018 - RequestID: m9me6a6xge +2025-06-18T14:01:23.081Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 226ms - RequestID: n23kil9zn2 +2025-06-18T14:01:23.181Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 233ms - RequestID: lhrf649mpzg +2025-06-18T14:01:23.281Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 525ms - IP: 192.168.30.79 - User: user_1040 - RequestID: 3ltj229ty9l +2025-06-18T14:01:23.381Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 428ms - Rows affected: 54 - RequestID: o5nxqmtonaj +2025-06-18T14:01:23.481Z [INFO] auth-service - DELETE /api/v1/orders - Status: 503 - Response time: 319ms - IP: 192.168.138.123 - User: user_1002 - RequestID: 5iajao69gu4 +2025-06-18T14:01:23.581Z [INFO] user-service - Database DELETE on users - Execution time: 228ms - Rows affected: 66 - RequestID: n3tzvzswa3m +2025-06-18T14:01:23.681Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 348ms - Rows affected: 55 - RequestID: jxq0dnlucv +2025-06-18T14:01:23.781Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1209ms - IP: 192.168.141.100 - User: user_1089 - RequestID: 69bh256psdc +2025-06-18T14:01:23.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1005 - IP: 192.168.31.117 - RequestID: vdrcprabqlf +2025-06-18T14:01:23.981Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 279ms - Rows affected: 52 - RequestID: 82bwgfalpwj +2025-06-18T14:01:24.081Z [TRACE] auth-service - Auth event: logout - User: user_1024 - IP: 192.168.181.225 - RequestID: iqctz936jrl +2025-06-18T14:01:24.181Z [INFO] payment-service - Database DELETE on sessions - Execution time: 364ms - Rows affected: 65 - RequestID: j41y35m3eo +2025-06-18T14:01:24.281Z [TRACE] order-service - Auth event: logout - User: user_1034 - IP: 192.168.79.141 - RequestID: 6apzp5b8fzb +2025-06-18T14:01:24.381Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 267ms - IP: 192.168.10.184 - User: user_1029 - RequestID: lw7s175ss7d +2025-06-18T14:01:24.481Z [TRACE] notification-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.36.218 - RequestID: bpo61273hyl +2025-06-18T14:01:24.581Z [TRACE] user-service - Database DELETE on products - Execution time: 281ms - Rows affected: 23 - RequestID: toxaiba1cn +2025-06-18T14:01:24.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 320ms - RequestID: z9o5ov8idsf +2025-06-18T14:01:24.781Z [INFO] order-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.235.117 - RequestID: y3m3alp2by +2025-06-18T14:01:24.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1086 - IP: 192.168.53.133 - RequestID: nv052ecntf +2025-06-18T14:01:24.981Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 502 - Response time: 1674ms - IP: 192.168.64.33 - User: user_1004 - RequestID: 6tj3y4ctaxc +2025-06-18T14:01:25.081Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 502 - Response time: 498ms - IP: 192.168.247.134 - User: user_1001 - RequestID: k2ft0pxlwr +2025-06-18T14:01:25.181Z [INFO] auth-service - Operation: cache_hit - Processing time: 980ms - RequestID: 5jcb8kppgiq +2025-06-18T14:01:25.281Z [TRACE] auth-service - Auth event: login_success - User: user_1013 - IP: 192.168.229.123 - RequestID: 1ckak60b1n +2025-06-18T14:01:25.381Z [TRACE] auth-service - GET /api/v1/users - Status: 401 - Response time: 205ms - IP: 192.168.227.77 - User: user_1019 - RequestID: 62uovyfeoqg +2025-06-18T14:01:25.481Z [INFO] inventory-service - Auth event: logout - User: user_1048 - IP: 192.168.79.116 - RequestID: 9icangdw7fr +2025-06-18T14:01:25.581Z [TRACE] payment-service - PATCH /api/v1/users - Status: 404 - Response time: 1629ms - IP: 192.168.85.229 - User: user_1019 - RequestID: jp7133btij +2025-06-18T14:01:25.681Z [TRACE] payment-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.68.128 - RequestID: z9dlx7gns3 +2025-06-18T14:01:25.781Z [INFO] payment-service - Operation: inventory_updated - Processing time: 636ms - RequestID: r30xbxlxu0k +2025-06-18T14:01:25.881Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 335ms - Rows affected: 72 - RequestID: o7fbzgsvtha +2025-06-18T14:01:25.981Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 1028ms - IP: 192.168.144.38 - User: user_1085 - RequestID: ydabkxwgw3h +2025-06-18T14:01:26.081Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 321ms - Rows affected: 64 - RequestID: mrvouu6136 +2025-06-18T14:01:26.181Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 929ms - RequestID: b5jjc6diale +2025-06-18T14:01:26.281Z [DEBUG] order-service - Auth event: login_success - User: user_1013 - IP: 192.168.133.7 - RequestID: lafl03gbxt +2025-06-18T14:01:26.381Z [DEBUG] user-service - Database UPDATE on products - Execution time: 157ms - Rows affected: 74 - RequestID: 7ku10j55o8l +2025-06-18T14:01:26.481Z [TRACE] order-service - GET /api/v1/orders - Status: 503 - Response time: 134ms - IP: 192.168.36.218 - User: user_1089 - RequestID: 2k5hdbirwhf +2025-06-18T14:01:26.581Z [TRACE] order-service - Database INSERT on sessions - Execution time: 305ms - Rows affected: 37 - RequestID: ulacwyvmb2g +2025-06-18T14:01:26.681Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 403 - Response time: 290ms - IP: 192.168.28.146 - User: user_1067 - RequestID: wf5abho3bfa +2025-06-18T14:01:26.781Z [INFO] notification-service - Auth event: logout - User: user_1041 - IP: 192.168.97.87 - RequestID: 36hbwey8ubg +2025-06-18T14:01:26.881Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 403 - Response time: 667ms - IP: 192.168.30.79 - User: user_1092 - RequestID: 0shfjmi03eq +2025-06-18T14:01:26.981Z [TRACE] notification-service - Auth event: logout - User: user_1060 - IP: 192.168.133.7 - RequestID: 9i9jq5pam3u +2025-06-18T14:01:27.081Z [DEBUG] order-service - Operation: cache_miss - Processing time: 519ms - RequestID: o5lw9zb4ip +2025-06-18T14:01:27.181Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 314ms - Rows affected: 31 - RequestID: 5vsh2cgnpq9 +2025-06-18T14:01:27.281Z [INFO] notification-service - PATCH /api/v1/users - Status: 401 - Response time: 493ms - IP: 192.168.189.103 - User: user_1037 - RequestID: zjuvnisgbvl +2025-06-18T14:01:27.381Z [DEBUG] order-service - Database INSERT on orders - Execution time: 403ms - Rows affected: 65 - RequestID: x44sl80t9ss +2025-06-18T14:01:27.481Z [INFO] inventory-service - Database DELETE on products - Execution time: 192ms - Rows affected: 76 - RequestID: h6qncnyagsg +2025-06-18T14:01:27.581Z [DEBUG] order-service - Operation: email_sent - Processing time: 350ms - RequestID: q3i4cv2bdys +2025-06-18T14:01:27.681Z [INFO] notification-service - Database SELECT on sessions - Execution time: 495ms - Rows affected: 90 - RequestID: vnqfes9e2ds +2025-06-18T14:01:27.781Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1084ms - IP: 192.168.159.94 - User: user_1005 - RequestID: rd8gwvn5dik +2025-06-18T14:01:27.881Z [INFO] notification-service - GET /api/v1/inventory - Status: 503 - Response time: 1059ms - IP: 192.168.44.5 - User: user_1065 - RequestID: 1rrojk3ze25 +2025-06-18T14:01:27.981Z [TRACE] auth-service - Auth event: logout - User: user_1053 - IP: 192.168.113.218 - RequestID: crktwlz9xv +2025-06-18T14:01:28.081Z [TRACE] order-service - Operation: payment_processed - Processing time: 721ms - RequestID: ropi21lwbqb +2025-06-18T14:01:28.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 819ms - RequestID: 0voeyga5742h +2025-06-18T14:01:28.281Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 703ms - IP: 192.168.174.114 - User: user_1027 - RequestID: ni54x1wpy5 +2025-06-18T14:01:28.381Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 1007ms - RequestID: lt6bg8es9sn +2025-06-18T14:01:28.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1033 - IP: 192.168.36.218 - RequestID: uxzo92b8ry +2025-06-18T14:01:28.581Z [INFO] notification-service - Operation: cache_miss - Processing time: 932ms - RequestID: wao77d4ex8i +2025-06-18T14:01:28.681Z [DEBUG] order-service - GET /api/v1/users - Status: 500 - Response time: 598ms - IP: 192.168.11.60 - User: user_1062 - RequestID: ml0c2v35ng +2025-06-18T14:01:28.781Z [TRACE] inventory-service - GET /api/v1/users - Status: 401 - Response time: 551ms - IP: 192.168.36.218 - User: user_1077 - RequestID: bsdnxs1i35a +2025-06-18T14:01:28.881Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1170ms - IP: 192.168.242.165 - User: user_1073 - RequestID: dabmlsfka6i +2025-06-18T14:01:28.981Z [DEBUG] payment-service - Database SELECT on users - Execution time: 334ms - Rows affected: 25 - RequestID: 9cumvv618ys +2025-06-18T14:01:29.081Z [TRACE] order-service - Database SELECT on products - Execution time: 373ms - Rows affected: 21 - RequestID: udw73hqaus +2025-06-18T14:01:29.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1086 - IP: 192.168.147.171 - RequestID: x0n2u0glq17 +2025-06-18T14:01:29.281Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 902ms - RequestID: 3451lbalij3 +2025-06-18T14:01:29.381Z [INFO] notification-service - Auth event: password_change - User: user_1029 - IP: 192.168.229.123 - RequestID: 3up83s2gyau +2025-06-18T14:01:29.481Z [DEBUG] auth-service - Auth event: login_success - User: user_1058 - IP: 192.168.79.143 - RequestID: ysp3tcoxta +2025-06-18T14:01:29.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.240.169 - RequestID: qw6phf7tmo +2025-06-18T14:01:29.681Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 372ms - RequestID: gxoifk42a9 +2025-06-18T14:01:29.781Z [TRACE] inventory-service - Database SELECT on products - Execution time: 368ms - Rows affected: 25 - RequestID: ozpxivsd8c +2025-06-18T14:01:29.881Z [TRACE] order-service - Auth event: login_success - User: user_1059 - IP: 192.168.33.76 - RequestID: p9g1qe1w1c +2025-06-18T14:01:29.981Z [INFO] inventory-service - Database UPDATE on users - Execution time: 33ms - Rows affected: 23 - RequestID: ig2sx70oim +2025-06-18T14:01:30.081Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 200 - Response time: 370ms - IP: 192.168.79.141 - User: user_1009 - RequestID: czbuboryrd +2025-06-18T14:01:30.181Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 426ms - Rows affected: 75 - RequestID: 1vo48wl9azw +2025-06-18T14:01:30.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1029 - IP: 192.168.104.37 - RequestID: eye3ppvfm1 +2025-06-18T14:01:30.381Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 165ms - Rows affected: 16 - RequestID: snh9uhbsf1f +2025-06-18T14:01:30.481Z [TRACE] payment-service - Database SELECT on users - Execution time: 197ms - Rows affected: 36 - RequestID: t7ff6ul8zpm +2025-06-18T14:01:30.581Z [TRACE] user-service - Operation: order_created - Processing time: 906ms - RequestID: 1wrvfiwfnwa +2025-06-18T14:01:30.681Z [INFO] inventory-service - Auth event: logout - User: user_1070 - IP: 192.168.158.144 - RequestID: 96dv9m7ub05 +2025-06-18T14:01:30.781Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 403 - Response time: 50ms - IP: 192.168.100.240 - User: user_1055 - RequestID: sefklfj2xxg +2025-06-18T14:01:30.881Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1619ms - IP: 192.168.133.7 - User: user_1097 - RequestID: lqpyalrxml9 +2025-06-18T14:01:30.981Z [TRACE] payment-service - Operation: email_sent - Processing time: 678ms - RequestID: qh4ygafqzq +2025-06-18T14:01:31.081Z [DEBUG] payment-service - PUT /api/v1/users - Status: 400 - Response time: 621ms - IP: 192.168.32.38 - User: user_1090 - RequestID: 6y0nm29nf4p +2025-06-18T14:01:31.181Z [INFO] payment-service - Auth event: login_failed - User: user_1097 - IP: 192.168.79.116 - RequestID: mhxzhfnrjan +2025-06-18T14:01:31.281Z [TRACE] inventory-service - Database SELECT on users - Execution time: 142ms - Rows affected: 22 - RequestID: 8hygpsm60kw +2025-06-18T14:01:31.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.97.87 - RequestID: 75va7pv1rva +2025-06-18T14:01:31.481Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 221ms - Rows affected: 57 - RequestID: 7rkr9v1irvr +2025-06-18T14:01:31.581Z [INFO] notification-service - Operation: inventory_updated - Processing time: 689ms - RequestID: 1g252i996jx +2025-06-18T14:01:31.681Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 674ms - IP: 192.168.64.33 - User: user_1088 - RequestID: 8p10xrph92k +2025-06-18T14:01:31.781Z [TRACE] notification-service - Auth event: password_change - User: user_1066 - IP: 192.168.85.229 - RequestID: bnmv279nzje +2025-06-18T14:01:31.881Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1857ms - IP: 192.168.64.33 - User: user_1012 - RequestID: epfn2qahtnq +2025-06-18T14:01:31.981Z [TRACE] inventory-service - Operation: order_created - Processing time: 483ms - RequestID: ucfqbps1hmh +2025-06-18T14:01:32.081Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 377ms - Rows affected: 4 - RequestID: ejlq6q5fbw8 +2025-06-18T14:01:32.181Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 323ms - Rows affected: 12 - RequestID: dyexfhql5cm +2025-06-18T14:01:32.281Z [DEBUG] payment-service - Operation: email_sent - Processing time: 717ms - RequestID: hkcxekbudr +2025-06-18T14:01:32.381Z [INFO] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 1230ms - IP: 192.168.187.199 - User: user_1090 - RequestID: tktr6tpp0ak +2025-06-18T14:01:32.481Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 200 - Response time: 1971ms - IP: 192.168.31.117 - User: user_1029 - RequestID: y2uwkxa3b7 +2025-06-18T14:01:32.581Z [TRACE] notification-service - Database INSERT on orders - Execution time: 196ms - Rows affected: 31 - RequestID: 027nv0fifr21 +2025-06-18T14:01:32.681Z [INFO] notification-service - POST /api/v1/users - Status: 401 - Response time: 369ms - IP: 192.168.144.38 - User: user_1031 - RequestID: rxhjs2homd8 +2025-06-18T14:01:32.781Z [INFO] user-service - Operation: order_created - Processing time: 843ms - RequestID: kjrmpgw1zd +2025-06-18T14:01:32.881Z [DEBUG] user-service - Auth event: password_change - User: user_1062 - IP: 192.168.242.165 - RequestID: s8tsb8oklq +2025-06-18T14:01:32.981Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 468ms - Rows affected: 50 - RequestID: 9x5n1k5p4t6 +2025-06-18T14:01:33.081Z [INFO] payment-service - Auth event: login_failed - User: user_1071 - IP: 192.168.240.169 - RequestID: 3tt1uekbcyu +2025-06-18T14:01:33.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 801ms - RequestID: cngb76szkga +2025-06-18T14:01:33.281Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 371ms - Rows affected: 89 - RequestID: 741qa263n6j +2025-06-18T14:01:33.381Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 569ms - RequestID: 1gpqxmsmj5v +2025-06-18T14:01:33.481Z [INFO] auth-service - Auth event: logout - User: user_1091 - IP: 192.168.28.146 - RequestID: c8ixyd0j2yh +2025-06-18T14:01:33.581Z [DEBUG] inventory-service - Auth event: password_change - User: user_1082 - IP: 192.168.187.199 - RequestID: q6zaz5e4lk +2025-06-18T14:01:33.681Z [INFO] payment-service - Operation: cache_miss - Processing time: 348ms - RequestID: qfmxj3cvela +2025-06-18T14:01:33.781Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 323ms - Rows affected: 42 - RequestID: xubrfxe15gj +2025-06-18T14:01:33.881Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 201 - Response time: 1583ms - IP: 192.168.187.199 - User: user_1086 - RequestID: l2il0z4k6dq +2025-06-18T14:01:33.981Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.194.41 - RequestID: 82gcz1i297a +2025-06-18T14:01:34.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 365ms - RequestID: bsqaskqsnn +2025-06-18T14:01:34.181Z [INFO] auth-service - Auth event: password_change - User: user_1034 - IP: 192.168.141.100 - RequestID: f3bytcf8sym +2025-06-18T14:01:34.281Z [DEBUG] auth-service - Auth event: login_success - User: user_1080 - IP: 192.168.28.146 - RequestID: 0vmy47400j2s +2025-06-18T14:01:34.381Z [INFO] auth-service - PATCH /api/v1/users - Status: 201 - Response time: 73ms - IP: 192.168.13.72 - User: user_1050 - RequestID: g4iizcjm308 +2025-06-18T14:01:34.481Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.159.94 - RequestID: a5swv2lhco +2025-06-18T14:01:34.581Z [DEBUG] order-service - Auth event: login_failed - User: user_1016 - IP: 192.168.187.199 - RequestID: yrjs0r62chl +2025-06-18T14:01:34.681Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.235.117 - RequestID: zgmbfkkurkd +2025-06-18T14:01:34.781Z [TRACE] auth-service - POST /api/v1/payments - Status: 502 - Response time: 480ms - IP: 192.168.31.117 - User: user_1074 - RequestID: izliv5kc6qm +2025-06-18T14:01:34.881Z [DEBUG] user-service - Database INSERT on users - Execution time: 10ms - Rows affected: 63 - RequestID: 5dy7pawvos8 +2025-06-18T14:01:34.981Z [TRACE] notification-service - Operation: email_sent - Processing time: 418ms - RequestID: 82hlgace5sc +2025-06-18T14:01:35.081Z [INFO] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 1134ms - IP: 192.168.13.72 - User: user_1018 - RequestID: j2fkidqgqn7 +2025-06-18T14:01:35.181Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 403 - Response time: 1972ms - IP: 192.168.36.218 - User: user_1015 - RequestID: zt7s69kj3m +2025-06-18T14:01:35.281Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 201 - Response time: 1481ms - IP: 192.168.167.32 - User: user_1042 - RequestID: otwyqbxvi8a +2025-06-18T14:01:35.381Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 1011ms - RequestID: h2m24cfhk26 +2025-06-18T14:01:35.481Z [DEBUG] auth-service - Database SELECT on users - Execution time: 356ms - Rows affected: 36 - RequestID: bqbrr26rlf +2025-06-18T14:01:35.581Z [DEBUG] auth-service - Auth event: logout - User: user_1035 - IP: 192.168.68.128 - RequestID: etht97en4zb +2025-06-18T14:01:35.681Z [INFO] order-service - Operation: order_created - Processing time: 782ms - RequestID: 889d0v3oa6 +2025-06-18T14:01:35.781Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 499ms - Rows affected: 76 - RequestID: 1g8kadhyru9 +2025-06-18T14:01:35.881Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 710ms - RequestID: ezi63ld66f +2025-06-18T14:01:35.981Z [TRACE] payment-service - POST /api/v1/orders - Status: 400 - Response time: 713ms - IP: 192.168.46.63 - User: user_1075 - RequestID: wdhjpfrt2vn +2025-06-18T14:01:36.081Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 400 - Response time: 1512ms - IP: 192.168.79.143 - User: user_1019 - RequestID: bizi45u0ila +2025-06-18T14:01:36.181Z [TRACE] auth-service - Operation: order_created - Processing time: 394ms - RequestID: uazumcpb3cn +2025-06-18T14:01:36.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.138.123 - RequestID: dnxa85gv0ai +2025-06-18T14:01:36.381Z [INFO] auth-service - Auth event: login_failed - User: user_1036 - IP: 192.168.10.184 - RequestID: o2limvid78j +2025-06-18T14:01:36.481Z [INFO] user-service - GET /api/v1/payments - Status: 404 - Response time: 256ms - IP: 192.168.28.146 - User: user_1094 - RequestID: xjjhvjjbc8o +2025-06-18T14:01:36.581Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1773ms - IP: 192.168.46.63 - User: user_1065 - RequestID: vlrtro4h0uc +2025-06-18T14:01:36.681Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 395ms - RequestID: 5lt6ddm88b +2025-06-18T14:01:36.781Z [TRACE] user-service - Auth event: login_failed - User: user_1032 - IP: 192.168.31.117 - RequestID: e72ug6shyp +2025-06-18T14:01:36.881Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 200 - Response time: 884ms - IP: 192.168.11.60 - User: user_1054 - RequestID: i2bag9madt8 +2025-06-18T14:01:36.981Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1596ms - IP: 192.168.97.87 - User: user_1032 - RequestID: l4kcku59g7 +2025-06-18T14:01:37.081Z [INFO] order-service - Operation: notification_queued - Processing time: 98ms - RequestID: 0gfccxl71eel +2025-06-18T14:01:37.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.14.77 - RequestID: l6nh5x4pus8 +2025-06-18T14:01:37.281Z [INFO] auth-service - Auth event: login_success - User: user_1081 - IP: 192.168.232.72 - RequestID: w5myxkcfeii +2025-06-18T14:01:37.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.240.169 - RequestID: dh6lzppb9id +2025-06-18T14:01:37.481Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 503 - Response time: 1578ms - IP: 192.168.28.146 - User: user_1027 - RequestID: o4ugaf6dw5d +2025-06-18T14:01:37.581Z [INFO] notification-service - Database DELETE on users - Execution time: 195ms - Rows affected: 66 - RequestID: w5i6mohqtfg +2025-06-18T14:01:37.681Z [INFO] payment-service - DELETE /api/v1/users - Status: 404 - Response time: 1498ms - IP: 192.168.167.32 - User: user_1029 - RequestID: pn7nh53x0ls +2025-06-18T14:01:37.781Z [INFO] auth-service - Auth event: password_change - User: user_1001 - IP: 192.168.158.144 - RequestID: d79czdy5xiw +2025-06-18T14:01:37.881Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 770ms - RequestID: o9bey8jiurm +2025-06-18T14:01:37.981Z [INFO] payment-service - Database UPDATE on payments - Execution time: 344ms - Rows affected: 34 - RequestID: krz8xkau6xp +2025-06-18T14:01:38.081Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 1037ms - RequestID: 1ax61ajfoka +2025-06-18T14:01:38.181Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 201 - Response time: 517ms - IP: 192.168.79.143 - User: user_1042 - RequestID: ret43l8mq3l +2025-06-18T14:01:38.281Z [DEBUG] payment-service - GET /api/v1/orders - Status: 500 - Response time: 400ms - IP: 192.168.1.152 - User: user_1033 - RequestID: jkx3hm9in8 +2025-06-18T14:01:38.381Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 376ms - Rows affected: 42 - RequestID: wltqaexhdrn +2025-06-18T14:01:38.481Z [TRACE] user-service - Operation: cache_miss - Processing time: 500ms - RequestID: iuvy176p6r +2025-06-18T14:01:38.581Z [TRACE] notification-service - Database SELECT on products - Execution time: 291ms - Rows affected: 37 - RequestID: 2a3pval7d0f +2025-06-18T14:01:38.681Z [INFO] auth-service - Database UPDATE on users - Execution time: 20ms - Rows affected: 74 - RequestID: n74cmrcjvk +2025-06-18T14:01:38.781Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 233ms - Rows affected: 5 - RequestID: um9j9hk0i9d +2025-06-18T14:01:38.881Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 171ms - Rows affected: 48 - RequestID: bnx3gsc6e67 +2025-06-18T14:01:38.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1002 - IP: 192.168.44.5 - RequestID: v1w60wablc +2025-06-18T14:01:39.081Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 133ms - Rows affected: 13 - RequestID: 0141onksdefx +2025-06-18T14:01:39.181Z [INFO] user-service - Database INSERT on orders - Execution time: 210ms - Rows affected: 83 - RequestID: afu50yzg86j +2025-06-18T14:01:39.281Z [INFO] auth-service - Database UPDATE on products - Execution time: 267ms - Rows affected: 30 - RequestID: ry4wupx477 +2025-06-18T14:01:39.381Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 569ms - IP: 192.168.79.143 - User: user_1039 - RequestID: ridpnl2j7f9 +2025-06-18T14:01:39.481Z [DEBUG] user-service - Auth event: login_failed - User: user_1074 - IP: 192.168.227.233 - RequestID: fguubrm1eom +2025-06-18T14:01:39.581Z [INFO] payment-service - Operation: notification_queued - Processing time: 855ms - RequestID: miiyq08ljrg +2025-06-18T14:01:39.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1075 - IP: 192.168.13.72 - RequestID: e7pgzun4iwh +2025-06-18T14:01:39.781Z [INFO] auth-service - Database SELECT on payments - Execution time: 144ms - Rows affected: 6 - RequestID: mogq7pzffg +2025-06-18T14:01:39.881Z [INFO] payment-service - Database DELETE on users - Execution time: 49ms - Rows affected: 98 - RequestID: 98r99d8plql +2025-06-18T14:01:39.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1085 - IP: 192.168.187.199 - RequestID: j69q1y1edbi +2025-06-18T14:01:40.081Z [TRACE] payment-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.181.225 - RequestID: hjflpbx3v57 +2025-06-18T14:01:40.181Z [DEBUG] order-service - Database DELETE on users - Execution time: 307ms - Rows affected: 66 - RequestID: 15uokxukkwu +2025-06-18T14:01:40.281Z [DEBUG] notification-service - Operation: email_sent - Processing time: 997ms - RequestID: 563qqzz38ri +2025-06-18T14:01:40.381Z [INFO] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 854ms - IP: 192.168.44.5 - User: user_1008 - RequestID: kx71ytnfe9o +2025-06-18T14:01:40.481Z [INFO] auth-service - Operation: order_created - Processing time: 479ms - RequestID: m7622gitjv +2025-06-18T14:01:40.581Z [TRACE] auth-service - Operation: payment_processed - Processing time: 746ms - RequestID: wuzvmenly7p +2025-06-18T14:01:40.681Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 38ms - Rows affected: 77 - RequestID: p0w8815f21 +2025-06-18T14:01:40.781Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 75ms - Rows affected: 34 - RequestID: yg6vn0uyklo +2025-06-18T14:01:40.881Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 406ms - RequestID: 4h72ykjklaw +2025-06-18T14:01:40.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.64.33 - RequestID: 7wqagi4i0ah +2025-06-18T14:01:41.081Z [TRACE] order-service - Database INSERT on products - Execution time: 374ms - Rows affected: 90 - RequestID: gfunyb5xrc6 +2025-06-18T14:01:41.181Z [INFO] payment-service - Operation: cache_miss - Processing time: 942ms - RequestID: jqva23lshqa +2025-06-18T14:01:41.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.97.87 - RequestID: ij0krmtiee +2025-06-18T14:01:41.381Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 502 - Response time: 590ms - IP: 192.168.144.38 - User: user_1027 - RequestID: mb5e697mxzq +2025-06-18T14:01:41.481Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 487ms - IP: 192.168.1.152 - User: user_1072 - RequestID: j46gyqxed78 +2025-06-18T14:01:41.581Z [DEBUG] order-service - Database DELETE on orders - Execution time: 18ms - Rows affected: 90 - RequestID: 64yp8kun9r6 +2025-06-18T14:01:41.681Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 696ms - IP: 192.168.32.38 - User: user_1020 - RequestID: ekc36yna526 +2025-06-18T14:01:41.781Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 648ms - RequestID: bq3rv83sfhc +2025-06-18T14:01:41.881Z [INFO] user-service - PUT /api/v1/orders - Status: 400 - Response time: 516ms - IP: 192.168.167.32 - User: user_1034 - RequestID: dnhetn5ll +2025-06-18T14:01:41.981Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 996ms - RequestID: 8nfe57ucgwk +2025-06-18T14:01:42.081Z [DEBUG] order-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.227.233 - RequestID: wcy692ej7qg +2025-06-18T14:01:42.181Z [TRACE] user-service - Operation: webhook_sent - Processing time: 672ms - RequestID: 8kloubvjigm +2025-06-18T14:01:42.281Z [TRACE] auth-service - Database DELETE on products - Execution time: 71ms - Rows affected: 19 - RequestID: yk5fhfyiesh +2025-06-18T14:01:42.381Z [TRACE] user-service - Operation: notification_queued - Processing time: 190ms - RequestID: kg0e3x1rjar +2025-06-18T14:01:42.481Z [DEBUG] payment-service - Operation: order_created - Processing time: 793ms - RequestID: 9kjsoz6dktd +2025-06-18T14:01:42.581Z [INFO] notification-service - Operation: inventory_updated - Processing time: 877ms - RequestID: mm2v1ovlao +2025-06-18T14:01:42.681Z [INFO] inventory-service - Database DELETE on users - Execution time: 431ms - Rows affected: 20 - RequestID: 953qf9ko5ce +2025-06-18T14:01:42.781Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 301ms - Rows affected: 39 - RequestID: ipsyqxwxkk9 +2025-06-18T14:01:42.881Z [INFO] order-service - Auth event: logout - User: user_1055 - IP: 192.168.232.72 - RequestID: xtizzm1z4je +2025-06-18T14:01:42.981Z [TRACE] user-service - Operation: email_sent - Processing time: 729ms - RequestID: djviux6r0d +2025-06-18T14:01:43.081Z [DEBUG] order-service - Database SELECT on products - Execution time: 24ms - Rows affected: 13 - RequestID: mp6pu79h2ma +2025-06-18T14:01:43.181Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 500 - Response time: 392ms - IP: 192.168.79.141 - User: user_1095 - RequestID: 3xgiw5y1k5o +2025-06-18T14:01:43.281Z [INFO] auth-service - Auth event: login_failed - User: user_1065 - IP: 192.168.68.128 - RequestID: yfjjsxcmfo +2025-06-18T14:01:43.381Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 401 - Response time: 407ms - IP: 192.168.189.103 - User: user_1083 - RequestID: wa3oe7g1op +2025-06-18T14:01:43.481Z [TRACE] order-service - Operation: webhook_sent - Processing time: 356ms - RequestID: glqsrszjp7c +2025-06-18T14:01:43.581Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 488ms - Rows affected: 22 - RequestID: i00qfxu41vl +2025-06-18T14:01:43.681Z [INFO] order-service - Operation: cache_miss - Processing time: 433ms - RequestID: e8fs07zlfp +2025-06-18T14:01:43.781Z [TRACE] inventory-service - POST /api/v1/payments - Status: 502 - Response time: 1930ms - IP: 192.168.85.229 - User: user_1003 - RequestID: xbj9i5ricy +2025-06-18T14:01:43.881Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1512ms - IP: 192.168.100.240 - User: user_1096 - RequestID: qbu2m1h7kmr +2025-06-18T14:01:43.981Z [DEBUG] notification-service - Database INSERT on users - Execution time: 159ms - Rows affected: 52 - RequestID: 6oancb38pm +2025-06-18T14:01:44.081Z [INFO] payment-service - POST /api/v1/users - Status: 500 - Response time: 1534ms - IP: 192.168.174.114 - User: user_1011 - RequestID: 1frv4pkc9p7 +2025-06-18T14:01:44.181Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 404 - Response time: 807ms - IP: 192.168.79.116 - User: user_1057 - RequestID: l0pjbbzz04e +2025-06-18T14:01:44.281Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 404 - Response time: 1820ms - IP: 192.168.181.225 - User: user_1075 - RequestID: ijyvd46vl49 +2025-06-18T14:01:44.381Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1912ms - IP: 192.168.232.72 - User: user_1063 - RequestID: qfbya0yd1an +2025-06-18T14:01:44.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 1026ms - RequestID: mjgbszj0hde +2025-06-18T14:01:44.581Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 155ms - RequestID: ypx31iigtd7 +2025-06-18T14:01:44.681Z [INFO] payment-service - Operation: cache_hit - Processing time: 841ms - RequestID: 282n50hu37p +2025-06-18T14:01:44.781Z [INFO] notification-service - Operation: order_created - Processing time: 92ms - RequestID: hcmkl7h44nd +2025-06-18T14:01:44.881Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 149ms - IP: 192.168.141.100 - User: user_1014 - RequestID: gohwi25066 +2025-06-18T14:01:44.981Z [TRACE] payment-service - Database INSERT on payments - Execution time: 309ms - Rows affected: 81 - RequestID: uacypa0tn6n +2025-06-18T14:01:45.081Z [INFO] user-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.14.77 - RequestID: geji2cs4n77 +2025-06-18T14:01:45.181Z [INFO] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 1669ms - IP: 192.168.227.77 - User: user_1075 - RequestID: 3d101fmgie8 +2025-06-18T14:01:45.281Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 134ms - Rows affected: 21 - RequestID: cs1p4jor89a +2025-06-18T14:01:45.381Z [TRACE] order-service - Operation: email_sent - Processing time: 976ms - RequestID: 7vwen73djg +2025-06-18T14:01:45.481Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 154ms - Rows affected: 83 - RequestID: fq5ku1gzijt +2025-06-18T14:01:45.581Z [INFO] user-service - Operation: cache_miss - Processing time: 973ms - RequestID: hg51g34ep4 +2025-06-18T14:01:45.681Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1014ms - RequestID: i1zupm4pv2a +2025-06-18T14:01:45.781Z [INFO] payment-service - Operation: order_created - Processing time: 851ms - RequestID: mklt6ttxbuq +2025-06-18T14:01:45.881Z [INFO] order-service - Operation: cache_miss - Processing time: 503ms - RequestID: srppfb5myfq +2025-06-18T14:01:45.981Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 248ms - Rows affected: 50 - RequestID: 3eazkjraz8r +2025-06-18T14:01:46.081Z [DEBUG] payment-service - Auth event: login_success - User: user_1087 - IP: 192.168.229.123 - RequestID: b34zupdkhvb +2025-06-18T14:01:46.181Z [TRACE] payment-service - Auth event: logout - User: user_1086 - IP: 192.168.10.184 - RequestID: n37ya1ltfn8 +2025-06-18T14:01:46.281Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 61ms - Rows affected: 63 - RequestID: c7iskrwbpuv +2025-06-18T14:01:46.381Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 184ms - RequestID: chsjm11v0b +2025-06-18T14:01:46.481Z [TRACE] payment-service - Auth event: password_change - User: user_1031 - IP: 192.168.158.144 - RequestID: wr0gngh3zt +2025-06-18T14:01:46.581Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 248ms - Rows affected: 53 - RequestID: w2aiwjx2lu +2025-06-18T14:01:46.681Z [INFO] auth-service - Auth event: login_success - User: user_1053 - IP: 192.168.227.77 - RequestID: 9rrcmoi2g2 +2025-06-18T14:01:46.781Z [DEBUG] user-service - Auth event: login_success - User: user_1061 - IP: 192.168.14.77 - RequestID: jr4i9oydzjc +2025-06-18T14:01:46.881Z [TRACE] auth-service - Database UPDATE on users - Execution time: 325ms - Rows affected: 34 - RequestID: zfmpu5updq +2025-06-18T14:01:46.981Z [TRACE] auth-service - PATCH /api/v1/users - Status: 403 - Response time: 544ms - IP: 192.168.194.41 - User: user_1052 - RequestID: j64wi103slc +2025-06-18T14:01:47.081Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 197ms - RequestID: 8l213jt5vqq +2025-06-18T14:01:47.181Z [TRACE] inventory-service - Auth event: login_success - User: user_1022 - IP: 192.168.138.123 - RequestID: 7lqxsxfy7wp +2025-06-18T14:01:47.281Z [INFO] user-service - Auth event: password_change - User: user_1012 - IP: 192.168.79.141 - RequestID: kpxzc43v548 +2025-06-18T14:01:47.381Z [INFO] payment-service - Database INSERT on users - Execution time: 407ms - Rows affected: 21 - RequestID: 1cpc2alm3kx +2025-06-18T14:01:47.481Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 74ms - Rows affected: 64 - RequestID: 39r6rxk1dxc +2025-06-18T14:01:47.581Z [TRACE] user-service - Auth event: login_success - User: user_1064 - IP: 192.168.158.144 - RequestID: qvy8bi1pw6 +2025-06-18T14:01:47.681Z [INFO] notification-service - Database DELETE on users - Execution time: 12ms - Rows affected: 77 - RequestID: ar38q7u6p4 +2025-06-18T14:01:47.781Z [INFO] payment-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.235.117 - RequestID: zbn0iqthgm +2025-06-18T14:01:47.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.104.37 - RequestID: v2m7lqcr80e +2025-06-18T14:01:47.981Z [TRACE] auth-service - Operation: order_created - Processing time: 259ms - RequestID: st5fgfjtorl +2025-06-18T14:01:48.081Z [TRACE] user-service - Database INSERT on orders - Execution time: 35ms - Rows affected: 89 - RequestID: 4foum57a8q5 +2025-06-18T14:01:48.181Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 198ms - Rows affected: 21 - RequestID: ndi03eynl48 +2025-06-18T14:01:48.281Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 337ms - Rows affected: 98 - RequestID: e6uughoqt0g +2025-06-18T14:01:48.381Z [INFO] auth-service - Database INSERT on sessions - Execution time: 305ms - Rows affected: 8 - RequestID: f04kqx5pqlb +2025-06-18T14:01:48.481Z [TRACE] notification-service - Database DELETE on payments - Execution time: 374ms - Rows affected: 17 - RequestID: 049c9dqc37s9 +2025-06-18T14:01:48.581Z [TRACE] auth-service - Operation: order_created - Processing time: 769ms - RequestID: 1ivdd5uwmv8 +2025-06-18T14:01:48.681Z [TRACE] auth-service - Operation: payment_processed - Processing time: 762ms - RequestID: akz1q1vyz8 +2025-06-18T14:01:48.781Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 15ms - IP: 192.168.97.87 - User: user_1067 - RequestID: 45n24d7oyd1 +2025-06-18T14:01:48.881Z [TRACE] auth-service - Database INSERT on products - Execution time: 113ms - Rows affected: 97 - RequestID: 2nwlcbbjug7 +2025-06-18T14:01:48.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.113.218 - RequestID: s5t9lnjlys +2025-06-18T14:01:49.081Z [DEBUG] payment-service - PUT /api/v1/users - Status: 201 - Response time: 1910ms - IP: 192.168.194.41 - User: user_1045 - RequestID: ur9ncbhnyn +2025-06-18T14:01:49.181Z [INFO] payment-service - PUT /api/v1/orders - Status: 404 - Response time: 281ms - IP: 192.168.33.76 - User: user_1070 - RequestID: ywrbcdnn6ii +2025-06-18T14:01:49.281Z [TRACE] notification-service - Auth event: logout - User: user_1046 - IP: 192.168.30.79 - RequestID: a5qetqf479t +2025-06-18T14:01:49.381Z [INFO] user-service - Auth event: password_change - User: user_1023 - IP: 192.168.36.218 - RequestID: qcir93r14e +2025-06-18T14:01:49.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 271ms - RequestID: drd1hibv1gl +2025-06-18T14:01:49.581Z [TRACE] notification-service - Operation: cache_hit - Processing time: 242ms - RequestID: 6mhla86wvx +2025-06-18T14:01:49.681Z [INFO] auth-service - Operation: cache_hit - Processing time: 132ms - RequestID: ts57yp5mhrr +2025-06-18T14:01:49.781Z [INFO] order-service - PUT /api/v1/payments - Status: 200 - Response time: 211ms - IP: 192.168.1.152 - User: user_1065 - RequestID: 04emli644vzp +2025-06-18T14:01:49.881Z [INFO] user-service - Database SELECT on products - Execution time: 78ms - Rows affected: 88 - RequestID: cirxz4cbr4 +2025-06-18T14:01:49.981Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 200 - Response time: 1789ms - IP: 192.168.194.41 - User: user_1023 - RequestID: 3oesq2jo32y +2025-06-18T14:01:50.081Z [INFO] inventory-service - Auth event: login_success - User: user_1078 - IP: 192.168.13.72 - RequestID: o7tbyjdvol +2025-06-18T14:01:50.181Z [INFO] order-service - Operation: inventory_updated - Processing time: 349ms - RequestID: fg29edro7h +2025-06-18T14:01:50.281Z [INFO] user-service - Auth event: password_change - User: user_1051 - IP: 192.168.133.7 - RequestID: so6m679rir +2025-06-18T14:01:50.381Z [INFO] payment-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.100.240 - RequestID: dly0mz34h1u +2025-06-18T14:01:50.481Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 712ms - IP: 192.168.68.158 - User: user_1094 - RequestID: ilgyldfsxjo +2025-06-18T14:01:50.581Z [TRACE] notification-service - POST /api/v1/inventory - Status: 201 - Response time: 1164ms - IP: 192.168.79.116 - User: user_1029 - RequestID: ve2yulczfxi +2025-06-18T14:01:50.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.1.152 - RequestID: yxtes4l7n7d +2025-06-18T14:01:50.781Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 503 - Response time: 384ms - IP: 192.168.167.32 - User: user_1012 - RequestID: 8yb6fdlfun +2025-06-18T14:01:50.881Z [INFO] payment-service - Database INSERT on sessions - Execution time: 12ms - Rows affected: 80 - RequestID: s3301q8vtij +2025-06-18T14:01:50.981Z [TRACE] order-service - PUT /api/v1/users - Status: 500 - Response time: 426ms - IP: 192.168.79.116 - User: user_1090 - RequestID: 6b05hdxxcdq +2025-06-18T14:01:51.081Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 394ms - Rows affected: 9 - RequestID: ml43d7nyphr +2025-06-18T14:01:51.181Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 200 - Response time: 1339ms - IP: 192.168.138.123 - User: user_1058 - RequestID: gwrq4cw0y0g +2025-06-18T14:01:51.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.97.87 - RequestID: a01lw9swxdp +2025-06-18T14:01:51.381Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 511ms - IP: 192.168.240.169 - User: user_1082 - RequestID: pe8dmzqpeak +2025-06-18T14:01:51.481Z [INFO] user-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.31.117 - RequestID: 5bpthpceqxp +2025-06-18T14:01:51.581Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 277ms - Rows affected: 32 - RequestID: vbwlp2n6mb +2025-06-18T14:01:51.681Z [INFO] notification-service - Database INSERT on products - Execution time: 8ms - Rows affected: 73 - RequestID: mluhmiho7qa +2025-06-18T14:01:51.781Z [INFO] inventory-service - Operation: cache_hit - Processing time: 524ms - RequestID: qp6km3gtmlm +2025-06-18T14:01:51.881Z [INFO] payment-service - Operation: order_created - Processing time: 951ms - RequestID: bt7lsklgwqa +2025-06-18T14:01:51.981Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 456ms - Rows affected: 93 - RequestID: 9r7995qpb9w +2025-06-18T14:01:52.081Z [INFO] inventory-service - Auth event: login_failed - User: user_1095 - IP: 192.168.44.5 - RequestID: 6gw87nsxkkr +2025-06-18T14:01:52.181Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 407ms - Rows affected: 13 - RequestID: y4ekvynzlk +2025-06-18T14:01:52.281Z [TRACE] user-service - PUT /api/v1/inventory - Status: 403 - Response time: 1512ms - IP: 192.168.100.240 - User: user_1066 - RequestID: f6yb1es04us +2025-06-18T14:01:52.381Z [TRACE] user-service - Database UPDATE on orders - Execution time: 29ms - Rows affected: 11 - RequestID: 8xofzxzwn0f +2025-06-18T14:01:52.481Z [TRACE] notification-service - Operation: notification_queued - Processing time: 804ms - RequestID: h7yjhtoluim +2025-06-18T14:01:52.581Z [TRACE] payment-service - Operation: cache_miss - Processing time: 742ms - RequestID: 49dh5wl7u0f +2025-06-18T14:01:52.681Z [INFO] order-service - POST /api/v1/auth/login - Status: 400 - Response time: 1126ms - IP: 192.168.141.100 - User: user_1049 - RequestID: 9ltb8xw7bre +2025-06-18T14:01:52.781Z [TRACE] notification-service - Database UPDATE on products - Execution time: 372ms - Rows affected: 38 - RequestID: 36tqut4aydn +2025-06-18T14:01:52.881Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 142ms - Rows affected: 36 - RequestID: vgay0zxw4d9 +2025-06-18T14:01:52.981Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 500 - Response time: 1149ms - IP: 192.168.10.184 - User: user_1007 - RequestID: 9tglkj8tqo +2025-06-18T14:01:53.081Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 108ms - Rows affected: 41 - RequestID: z4f3wy0xijc +2025-06-18T14:01:53.181Z [TRACE] order-service - Operation: webhook_sent - Processing time: 933ms - RequestID: 2p0i2chbv5z +2025-06-18T14:01:53.281Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 59ms - Rows affected: 41 - RequestID: sukivxbqyp +2025-06-18T14:01:53.381Z [INFO] inventory-service - Operation: cache_miss - Processing time: 582ms - RequestID: lfm0qaogxch +2025-06-18T14:01:53.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.79.141 - RequestID: h5moy4ru84o +2025-06-18T14:01:53.581Z [INFO] payment-service - Operation: cache_miss - Processing time: 196ms - RequestID: n0fx4d8xl3 +2025-06-18T14:01:53.681Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 374ms - Rows affected: 46 - RequestID: 4iejd6s7s5x +2025-06-18T14:01:53.781Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1019ms - IP: 192.168.81.206 - User: user_1038 - RequestID: 3gy4u90yciu +2025-06-18T14:01:53.881Z [TRACE] user-service - Operation: cache_miss - Processing time: 235ms - RequestID: ezq731fcjgg +2025-06-18T14:01:53.981Z [INFO] auth-service - Operation: email_sent - Processing time: 854ms - RequestID: 6xujneoog42 +2025-06-18T14:01:54.081Z [TRACE] auth-service - POST /api/v1/orders - Status: 400 - Response time: 778ms - IP: 192.168.227.233 - User: user_1019 - RequestID: qh7tt00xn6o +2025-06-18T14:01:54.181Z [DEBUG] payment-service - Auth event: password_change - User: user_1056 - IP: 192.168.33.76 - RequestID: j37sn1gus0j +2025-06-18T14:01:54.281Z [INFO] inventory-service - GET /api/v1/orders - Status: 503 - Response time: 613ms - IP: 192.168.247.134 - User: user_1049 - RequestID: jyn8cbtx9zn +2025-06-18T14:01:54.381Z [INFO] auth-service - PATCH /api/v1/orders - Status: 500 - Response time: 419ms - IP: 192.168.36.218 - User: user_1003 - RequestID: afge0yxviv6 +2025-06-18T14:01:54.481Z [INFO] order-service - Database SELECT on users - Execution time: 204ms - Rows affected: 33 - RequestID: 51ec2smrupo +2025-06-18T14:01:54.581Z [TRACE] notification-service - Auth event: login_failed - User: user_1067 - IP: 192.168.242.165 - RequestID: oq7tyzn0u9 +2025-06-18T14:01:54.681Z [INFO] inventory-service - Auth event: logout - User: user_1065 - IP: 192.168.227.233 - RequestID: coucpd0267v +2025-06-18T14:01:54.781Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 400 - Response time: 1374ms - IP: 192.168.85.229 - User: user_1006 - RequestID: 7p1tug5ld3 +2025-06-18T14:01:54.881Z [INFO] payment-service - Operation: email_sent - Processing time: 967ms - RequestID: nhjh44rp3vd +2025-06-18T14:01:54.981Z [INFO] order-service - Operation: cache_hit - Processing time: 889ms - RequestID: 9vcdxg3bib4 +2025-06-18T14:01:55.081Z [INFO] payment-service - PATCH /api/v1/payments - Status: 503 - Response time: 1413ms - IP: 192.168.13.72 - User: user_1011 - RequestID: zobsuefhl7 +2025-06-18T14:01:55.181Z [INFO] payment-service - Auth event: password_change - User: user_1049 - IP: 192.168.64.33 - RequestID: psj20vlclm +2025-06-18T14:01:55.281Z [INFO] inventory-service - Operation: cache_hit - Processing time: 967ms - RequestID: yqgopxy4y8h +2025-06-18T14:01:55.381Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 482ms - IP: 192.168.144.38 - User: user_1085 - RequestID: 38ktuz4660n +2025-06-18T14:01:55.481Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 107ms - Rows affected: 17 - RequestID: wj4x92zmljp +2025-06-18T14:01:55.581Z [INFO] notification-service - Auth event: login_success - User: user_1063 - IP: 192.168.32.38 - RequestID: xthva3weghq +2025-06-18T14:01:55.681Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 335ms - Rows affected: 36 - RequestID: js8e43kgka8 +2025-06-18T14:01:55.781Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 10ms - Rows affected: 98 - RequestID: ttemofeza7h +2025-06-18T14:01:55.881Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 200 - Response time: 876ms - IP: 192.168.181.225 - User: user_1020 - RequestID: 283c2dxbkrzi +2025-06-18T14:01:55.981Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1679ms - IP: 192.168.11.60 - User: user_1003 - RequestID: moer7cw7s88 +2025-06-18T14:01:56.081Z [INFO] payment-service - Database UPDATE on payments - Execution time: 414ms - Rows affected: 50 - RequestID: 8gqxyegqau8 +2025-06-18T14:01:56.181Z [INFO] notification-service - Database UPDATE on products - Execution time: 60ms - Rows affected: 62 - RequestID: eymy91oupc +2025-06-18T14:01:56.281Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 953ms - RequestID: 4ievc0cyx86 +2025-06-18T14:01:56.381Z [TRACE] notification-service - Operation: cache_hit - Processing time: 850ms - RequestID: mb624mvp8e +2025-06-18T14:01:56.481Z [INFO] notification-service - Auth event: login_failed - User: user_1099 - IP: 192.168.144.38 - RequestID: sxro03sq41 +2025-06-18T14:01:56.581Z [DEBUG] order-service - Auth event: login_success - User: user_1088 - IP: 192.168.170.215 - RequestID: zjjaceqhzg +2025-06-18T14:01:56.681Z [INFO] user-service - PATCH /api/v1/orders - Status: 404 - Response time: 1884ms - IP: 192.168.242.165 - User: user_1023 - RequestID: 5le2t9vmyhm +2025-06-18T14:01:56.781Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 200 - Response time: 975ms - IP: 192.168.247.134 - User: user_1031 - RequestID: isrf7tkcfzh +2025-06-18T14:01:56.881Z [TRACE] auth-service - PUT /api/v1/users - Status: 500 - Response time: 622ms - IP: 192.168.68.158 - User: user_1079 - RequestID: zeeeg7x0zta +2025-06-18T14:01:56.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.10.184 - RequestID: fy628q8nvxa +2025-06-18T14:01:57.081Z [TRACE] auth-service - Auth event: login_failed - User: user_1068 - IP: 192.168.28.146 - RequestID: mb6epv7rjmg +2025-06-18T14:01:57.181Z [INFO] order-service - Auth event: login_failed - User: user_1014 - IP: 192.168.13.72 - RequestID: 5swrorr1s9 +2025-06-18T14:01:57.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 260ms - RequestID: 7kuw97m1wyq +2025-06-18T14:01:57.381Z [TRACE] payment-service - Auth event: login_success - User: user_1065 - IP: 192.168.79.143 - RequestID: e58mhs5ek04 +2025-06-18T14:01:57.481Z [TRACE] auth-service - PATCH /api/v1/users - Status: 404 - Response time: 1051ms - IP: 192.168.174.114 - User: user_1045 - RequestID: 2n5ynhhpwpa +2025-06-18T14:01:57.581Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 244ms - Rows affected: 77 - RequestID: y0ov0is6bs +2025-06-18T14:01:57.681Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 956ms - RequestID: lxw3bpcutos +2025-06-18T14:01:57.781Z [INFO] order-service - PATCH /api/v1/inventory - Status: 201 - Response time: 48ms - IP: 192.168.240.169 - User: user_1091 - RequestID: lmkua87g3w9 +2025-06-18T14:01:57.881Z [INFO] user-service - Database INSERT on orders - Execution time: 399ms - Rows affected: 18 - RequestID: 9a4i8zbhp7t +2025-06-18T14:01:57.981Z [TRACE] order-service - Operation: inventory_updated - Processing time: 890ms - RequestID: 98y44kded5q +2025-06-18T14:01:58.081Z [INFO] order-service - Database DELETE on users - Execution time: 23ms - Rows affected: 50 - RequestID: ax9m8lb5ukq +2025-06-18T14:01:58.181Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 375ms - Rows affected: 56 - RequestID: 6elxo1qybtk +2025-06-18T14:01:58.281Z [DEBUG] notification-service - Operation: email_sent - Processing time: 738ms - RequestID: 456dbg7yn3v +2025-06-18T14:01:58.381Z [TRACE] inventory-service - POST /api/v1/orders - Status: 401 - Response time: 947ms - IP: 192.168.13.72 - User: user_1051 - RequestID: apuno9jzds8 +2025-06-18T14:01:58.481Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 502 - Response time: 1284ms - IP: 192.168.170.215 - User: user_1021 - RequestID: hspmjjueqpk +2025-06-18T14:01:58.581Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 255ms - RequestID: nxaz8dnzs6 +2025-06-18T14:01:58.681Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 514ms - RequestID: x4azbhbnvm +2025-06-18T14:01:58.781Z [DEBUG] user-service - Database SELECT on users - Execution time: 84ms - Rows affected: 77 - RequestID: hqu5yxg2lqt +2025-06-18T14:01:58.881Z [TRACE] auth-service - Database UPDATE on users - Execution time: 266ms - Rows affected: 37 - RequestID: a41hw7zjoou +2025-06-18T14:01:58.981Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 162ms - Rows affected: 1 - RequestID: 3bs2evtnq9r +2025-06-18T14:01:59.081Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 401 - Response time: 1217ms - IP: 192.168.147.171 - User: user_1094 - RequestID: 29fn5ral7xc +2025-06-18T14:01:59.181Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 305ms - RequestID: 210quallyqk +2025-06-18T14:01:59.281Z [DEBUG] user-service - Operation: payment_processed - Processing time: 196ms - RequestID: h3wdy89xo4 +2025-06-18T14:01:59.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 647ms - RequestID: kgnrly86ke +2025-06-18T14:01:59.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1067 - IP: 192.168.68.128 - RequestID: 8dipstf04ej +2025-06-18T14:01:59.581Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 476ms - Rows affected: 97 - RequestID: n1dlikc0p +2025-06-18T14:01:59.681Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 453ms - RequestID: xexc9r4ao4 +2025-06-18T14:01:59.781Z [INFO] inventory-service - Database DELETE on users - Execution time: 257ms - Rows affected: 52 - RequestID: 4frffj2vnue +2025-06-18T14:01:59.881Z [TRACE] user-service - Database DELETE on orders - Execution time: 189ms - Rows affected: 51 - RequestID: 0l4u0e0cvhr +2025-06-18T14:01:59.981Z [TRACE] payment-service - Database SELECT on products - Execution time: 172ms - Rows affected: 2 - RequestID: a9eb2y22e7v +2025-06-18T14:02:00.081Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1403ms - IP: 192.168.159.94 - User: user_1097 - RequestID: 2tzxd386o98 +2025-06-18T14:02:00.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.104.37 - RequestID: o6ogsd9wau +2025-06-18T14:02:00.281Z [INFO] payment-service - PATCH /api/v1/users - Status: 200 - Response time: 884ms - IP: 192.168.240.169 - User: user_1004 - RequestID: ik4j5scufle +2025-06-18T14:02:00.381Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 121ms - Rows affected: 35 - RequestID: ddedmsaduiv +2025-06-18T14:02:00.481Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 375ms - Rows affected: 29 - RequestID: jnux2jowxud +2025-06-18T14:02:00.581Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 167ms - RequestID: si6tkx51kz +2025-06-18T14:02:00.681Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1298ms - IP: 192.168.30.79 - User: user_1051 - RequestID: pbtsc73sq7 +2025-06-18T14:02:00.781Z [TRACE] notification-service - Auth event: login_failed - User: user_1039 - IP: 192.168.235.117 - RequestID: tttw5ocserd +2025-06-18T14:02:00.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.167.32 - RequestID: 5d5tsa4y3v +2025-06-18T14:02:00.981Z [DEBUG] user-service - Auth event: login_failed - User: user_1063 - IP: 192.168.167.32 - RequestID: qbh3kg3n3e +2025-06-18T14:02:01.081Z [DEBUG] order-service - Auth event: logout - User: user_1028 - IP: 192.168.242.165 - RequestID: 3cc9vxlcl34 +2025-06-18T14:02:01.181Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 401 - Response time: 696ms - IP: 192.168.64.33 - User: user_1020 - RequestID: ut5db9kqxdi +2025-06-18T14:02:01.281Z [INFO] inventory-service - Auth event: login_failed - User: user_1084 - IP: 192.168.232.72 - RequestID: iljirmgc6b +2025-06-18T14:02:01.381Z [INFO] order-service - PUT /api/v1/payments - Status: 400 - Response time: 215ms - IP: 192.168.53.133 - User: user_1049 - RequestID: l040b0y65d +2025-06-18T14:02:01.481Z [TRACE] auth-service - Auth event: password_change - User: user_1050 - IP: 192.168.28.146 - RequestID: s3xx0fq1zhl +2025-06-18T14:02:01.581Z [DEBUG] notification-service - Auth event: logout - User: user_1060 - IP: 192.168.32.38 - RequestID: m6vspuo5yc +2025-06-18T14:02:01.681Z [TRACE] auth-service - Operation: payment_processed - Processing time: 854ms - RequestID: nfoihyjc96 +2025-06-18T14:02:01.781Z [DEBUG] order-service - Operation: cache_miss - Processing time: 617ms - RequestID: abayaj70pzf +2025-06-18T14:02:01.881Z [INFO] order-service - Database UPDATE on orders - Execution time: 216ms - Rows affected: 42 - RequestID: wxj274n1xg +2025-06-18T14:02:01.981Z [TRACE] order-service - Database INSERT on sessions - Execution time: 167ms - Rows affected: 11 - RequestID: soz1nuyc8o +2025-06-18T14:02:02.081Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 450ms - Rows affected: 46 - RequestID: cq7v6o59olg +2025-06-18T14:02:02.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1089 - IP: 192.168.44.5 - RequestID: vng3508avg +2025-06-18T14:02:02.281Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 775ms - RequestID: cdefatviv7l +2025-06-18T14:02:02.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 621ms - RequestID: bcdyocguktl +2025-06-18T14:02:02.481Z [TRACE] order-service - Operation: webhook_sent - Processing time: 539ms - RequestID: cxl3eanjar9 +2025-06-18T14:02:02.581Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 500 - Response time: 1155ms - IP: 192.168.11.60 - User: user_1033 - RequestID: wi202l9u1pn +2025-06-18T14:02:02.681Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 945ms - RequestID: dkw1ieidbxd +2025-06-18T14:02:02.781Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 332ms - RequestID: 0srb1t7q138 +2025-06-18T14:02:02.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1026 - IP: 192.168.247.134 - RequestID: dq0dj5q3r8j +2025-06-18T14:02:02.981Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 200 - Response time: 561ms - IP: 192.168.138.123 - User: user_1002 - RequestID: rizky48jaim +2025-06-18T14:02:03.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.167.32 - RequestID: vt7ddj0z6tk +2025-06-18T14:02:03.181Z [INFO] user-service - DELETE /api/v1/inventory - Status: 201 - Response time: 467ms - IP: 192.168.133.7 - User: user_1028 - RequestID: kdxdjk8c91d +2025-06-18T14:02:03.281Z [INFO] notification-service - Database SELECT on sessions - Execution time: 429ms - Rows affected: 79 - RequestID: x555oxlnay +2025-06-18T14:02:03.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1077 - IP: 192.168.28.146 - RequestID: 7uhp2q53um +2025-06-18T14:02:03.481Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 28ms - Rows affected: 70 - RequestID: b507pvq6av6 +2025-06-18T14:02:03.581Z [TRACE] order-service - PATCH /api/v1/payments - Status: 401 - Response time: 369ms - IP: 192.168.97.87 - User: user_1073 - RequestID: 91xo8knmgch +2025-06-18T14:02:03.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 911ms - RequestID: 2ilb1zd16fm +2025-06-18T14:02:03.781Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 397ms - Rows affected: 91 - RequestID: vozqathomhn +2025-06-18T14:02:03.881Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 200 - Response time: 237ms - IP: 192.168.64.33 - User: user_1065 - RequestID: ne5ptan0j9 +2025-06-18T14:02:03.981Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 403 - Response time: 179ms - IP: 192.168.138.123 - User: user_1033 - RequestID: t5gpv6mijfl +2025-06-18T14:02:04.081Z [TRACE] notification-service - Database DELETE on orders - Execution time: 289ms - Rows affected: 18 - RequestID: tq13fziv8y +2025-06-18T14:02:04.181Z [TRACE] order-service - Operation: cache_miss - Processing time: 137ms - RequestID: 5oh3xu3pol +2025-06-18T14:02:04.281Z [DEBUG] order-service - Auth event: login_success - User: user_1044 - IP: 192.168.104.37 - RequestID: boozhly57g6 +2025-06-18T14:02:04.381Z [INFO] notification-service - Operation: order_created - Processing time: 1044ms - RequestID: y0jsepnylx +2025-06-18T14:02:04.481Z [TRACE] auth-service - Operation: cache_hit - Processing time: 468ms - RequestID: sgkeg88l1rk +2025-06-18T14:02:04.581Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 687ms - RequestID: ctolg2kg8m7 +2025-06-18T14:02:04.681Z [DEBUG] auth-service - Operation: email_sent - Processing time: 591ms - RequestID: u99f4dsx4ri +2025-06-18T14:02:04.781Z [INFO] notification-service - Database INSERT on orders - Execution time: 335ms - Rows affected: 24 - RequestID: rfylbztyb5n +2025-06-18T14:02:04.881Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 474ms - Rows affected: 72 - RequestID: 7gryixm4gl +2025-06-18T14:02:04.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.81.206 - RequestID: 0ndkcq0gtmf +2025-06-18T14:02:05.081Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 502 - Response time: 1211ms - IP: 192.168.159.94 - User: user_1013 - RequestID: 51q9idrvoah +2025-06-18T14:02:05.181Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1944ms - IP: 192.168.133.7 - User: user_1029 - RequestID: 9c4d6pnu44u +2025-06-18T14:02:05.281Z [DEBUG] inventory-service - Auth event: login_success - User: user_1068 - IP: 192.168.232.72 - RequestID: wl3affijd0b +2025-06-18T14:02:05.381Z [DEBUG] auth-service - Auth event: login_failed - User: user_1088 - IP: 192.168.81.206 - RequestID: 5v2av31h1it +2025-06-18T14:02:05.481Z [TRACE] inventory-service - GET /api/v1/users - Status: 400 - Response time: 1113ms - IP: 192.168.189.103 - User: user_1017 - RequestID: 6viouvudvk4 +2025-06-18T14:02:05.581Z [INFO] order-service - Operation: notification_queued - Processing time: 107ms - RequestID: vgwc1s0uet9 +2025-06-18T14:02:05.681Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 166ms - Rows affected: 81 - RequestID: e9qxt6eltn7 +2025-06-18T14:02:05.781Z [TRACE] user-service - PATCH /api/v1/orders - Status: 403 - Response time: 1276ms - IP: 192.168.30.79 - User: user_1073 - RequestID: fxnbb6650ys +2025-06-18T14:02:05.881Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.36.218 - RequestID: i65f24e8bw +2025-06-18T14:02:05.981Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 505ms - RequestID: pnxk1lcrd8f +2025-06-18T14:02:06.081Z [TRACE] order-service - POST /api/v1/users - Status: 404 - Response time: 961ms - IP: 192.168.113.218 - User: user_1081 - RequestID: 56x2a2qyucw +2025-06-18T14:02:06.181Z [DEBUG] user-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.64.33 - RequestID: 84z7ck0ova +2025-06-18T14:02:06.281Z [TRACE] user-service - DELETE /api/v1/users - Status: 500 - Response time: 521ms - IP: 192.168.235.117 - User: user_1074 - RequestID: 0rsgq5qhkn6j +2025-06-18T14:02:06.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 1027ms - RequestID: dey319lslx5 +2025-06-18T14:02:06.481Z [TRACE] inventory-service - Auth event: logout - User: user_1052 - IP: 192.168.167.32 - RequestID: uk2zre1hzms +2025-06-18T14:02:06.581Z [INFO] notification-service - Database INSERT on products - Execution time: 440ms - Rows affected: 89 - RequestID: v2jqu19myz9 +2025-06-18T14:02:06.681Z [DEBUG] notification-service - Operation: order_created - Processing time: 459ms - RequestID: rjxuwb0sqb +2025-06-18T14:02:06.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1089 - IP: 192.168.247.134 - RequestID: okha9bu79h +2025-06-18T14:02:06.881Z [INFO] user-service - POST /api/v1/inventory - Status: 500 - Response time: 1575ms - IP: 192.168.1.152 - User: user_1099 - RequestID: 88vqkz3eigl +2025-06-18T14:02:06.981Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1370ms - IP: 192.168.53.133 - User: user_1052 - RequestID: xcyuqk7td1r +2025-06-18T14:02:07.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.181.225 - RequestID: mpqv4qdi63d +2025-06-18T14:02:07.181Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 268ms - IP: 192.168.174.114 - User: user_1048 - RequestID: pcaq49715pe +2025-06-18T14:02:07.281Z [INFO] auth-service - Database SELECT on products - Execution time: 377ms - Rows affected: 68 - RequestID: 0jtcsdw2lkdf +2025-06-18T14:02:07.381Z [DEBUG] auth-service - Auth event: logout - User: user_1003 - IP: 192.168.36.218 - RequestID: yr9n4ecfnz +2025-06-18T14:02:07.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 1026ms - RequestID: oh2yfvwu6p +2025-06-18T14:02:07.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1048 - IP: 192.168.211.72 - RequestID: flhay7q1xwn +2025-06-18T14:02:07.681Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 401 - Response time: 1653ms - IP: 192.168.30.79 - User: user_1050 - RequestID: kvlntb2dlpk +2025-06-18T14:02:07.781Z [INFO] inventory-service - Database DELETE on payments - Execution time: 401ms - Rows affected: 26 - RequestID: ebatcrqv9q6 +2025-06-18T14:02:07.881Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 365ms - Rows affected: 29 - RequestID: 6lb55jxnr22 +2025-06-18T14:02:07.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.133.7 - RequestID: 63elpgzhd7t +2025-06-18T14:02:08.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.13.72 - RequestID: kcicyeldnhi +2025-06-18T14:02:08.181Z [INFO] notification-service - Database SELECT on users - Execution time: 318ms - Rows affected: 78 - RequestID: yy3sta2kfhk +2025-06-18T14:02:08.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.240.169 - RequestID: 3tvfl144yxl +2025-06-18T14:02:08.381Z [TRACE] order-service - Auth event: logout - User: user_1089 - IP: 192.168.235.117 - RequestID: u57b0fqh0n +2025-06-18T14:02:08.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 734ms - RequestID: uevd10qscs8 +2025-06-18T14:02:08.581Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1415ms - IP: 192.168.235.117 - User: user_1099 - RequestID: tt7c1nsapn +2025-06-18T14:02:08.681Z [INFO] auth-service - Operation: order_created - Processing time: 713ms - RequestID: l14pnf41bn +2025-06-18T14:02:08.781Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 496ms - IP: 192.168.36.218 - User: user_1072 - RequestID: iwt08pzpkmh +2025-06-18T14:02:08.881Z [DEBUG] auth-service - Database DELETE on products - Execution time: 27ms - Rows affected: 2 - RequestID: e41puocufqu +2025-06-18T14:02:08.981Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 243ms - RequestID: cucy98xbpew +2025-06-18T14:02:09.081Z [INFO] order-service - Operation: cache_hit - Processing time: 263ms - RequestID: t571oxozev +2025-06-18T14:02:09.181Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 502 - Response time: 755ms - IP: 192.168.242.165 - User: user_1090 - RequestID: gsbu1ux7cl +2025-06-18T14:02:09.281Z [DEBUG] notification-service - Auth event: login_failed - User: user_1075 - IP: 192.168.240.169 - RequestID: 51pcas5vuq8 +2025-06-18T14:02:09.381Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 365ms - Rows affected: 90 - RequestID: ren2sgsm1q +2025-06-18T14:02:09.481Z [INFO] user-service - Database UPDATE on sessions - Execution time: 108ms - Rows affected: 39 - RequestID: bwsdelminfu +2025-06-18T14:02:09.581Z [INFO] payment-service - Operation: inventory_updated - Processing time: 357ms - RequestID: jko50i84fk +2025-06-18T14:02:09.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.11.60 - RequestID: pomxp6kemhl +2025-06-18T14:02:09.781Z [DEBUG] payment-service - Operation: order_created - Processing time: 335ms - RequestID: a3b0ed7ielf +2025-06-18T14:02:09.881Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 424ms - Rows affected: 4 - RequestID: kv8r632t0k +2025-06-18T14:02:09.981Z [INFO] inventory-service - POST /api/v1/inventory - Status: 401 - Response time: 1663ms - IP: 192.168.227.77 - User: user_1020 - RequestID: bmb5fb3hwge +2025-06-18T14:02:10.081Z [INFO] auth-service - Auth event: login_success - User: user_1008 - IP: 192.168.187.199 - RequestID: l44dd9kkvk +2025-06-18T14:02:10.181Z [INFO] inventory-service - PUT /api/v1/payments - Status: 502 - Response time: 390ms - IP: 192.168.1.152 - User: user_1034 - RequestID: z9sgqsjiabr +2025-06-18T14:02:10.281Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 95ms - RequestID: d063pduv1an +2025-06-18T14:02:10.381Z [INFO] auth-service - GET /api/v1/payments - Status: 201 - Response time: 85ms - IP: 192.168.31.117 - User: user_1051 - RequestID: qw8aofkjq5 +2025-06-18T14:02:10.481Z [TRACE] order-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.242.165 - RequestID: jw1sg41f5u +2025-06-18T14:02:10.581Z [INFO] user-service - Operation: payment_processed - Processing time: 635ms - RequestID: 5z6vkwvok0r +2025-06-18T14:02:10.681Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 461ms - Rows affected: 46 - RequestID: xokqmfrpf6 +2025-06-18T14:02:10.781Z [INFO] auth-service - Operation: webhook_sent - Processing time: 182ms - RequestID: gck0lo9q8ne +2025-06-18T14:02:10.881Z [TRACE] order-service - Auth event: login_failed - User: user_1082 - IP: 192.168.158.144 - RequestID: pt6al3j9nko +2025-06-18T14:02:10.981Z [TRACE] order-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.68.158 - RequestID: 4cv5csk50wl +2025-06-18T14:02:11.081Z [TRACE] payment-service - Database DELETE on orders - Execution time: 14ms - Rows affected: 3 - RequestID: hox03qii1qn +2025-06-18T14:02:11.181Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 503 - Response time: 645ms - IP: 192.168.227.77 - User: user_1095 - RequestID: tgh0ucrdsbo +2025-06-18T14:02:11.281Z [DEBUG] order-service - GET /api/v1/inventory - Status: 401 - Response time: 252ms - IP: 192.168.79.143 - User: user_1033 - RequestID: 6yha3d7798m +2025-06-18T14:02:11.381Z [TRACE] auth-service - Auth event: logout - User: user_1067 - IP: 192.168.138.123 - RequestID: or7ml3u8vam +2025-06-18T14:02:11.481Z [INFO] user-service - GET /api/v1/payments - Status: 401 - Response time: 1562ms - IP: 192.168.68.128 - User: user_1004 - RequestID: 0j9vgwpj86kr +2025-06-18T14:02:11.581Z [INFO] payment-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.159.94 - RequestID: coqmmzqoz4 +2025-06-18T14:02:11.681Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 471ms - Rows affected: 60 - RequestID: lo3jp8c19m +2025-06-18T14:02:11.781Z [INFO] notification-service - Database SELECT on products - Execution time: 60ms - Rows affected: 46 - RequestID: jmhnhypfggn +2025-06-18T14:02:11.881Z [INFO] auth-service - Auth event: logout - User: user_1080 - IP: 192.168.189.103 - RequestID: d6dq3idedz +2025-06-18T14:02:11.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.235.117 - RequestID: lazx46eu4sq +2025-06-18T14:02:12.081Z [DEBUG] user-service - Auth event: logout - User: user_1049 - IP: 192.168.36.218 - RequestID: oajujz04sr +2025-06-18T14:02:12.181Z [DEBUG] payment-service - Auth event: logout - User: user_1031 - IP: 192.168.30.79 - RequestID: kqeo4lw05sd +2025-06-18T14:02:12.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.97.87 - RequestID: xjct8ezdx0f +2025-06-18T14:02:12.381Z [INFO] inventory-service - Auth event: login_failed - User: user_1001 - IP: 192.168.113.218 - RequestID: ujf4bn5ol6g +2025-06-18T14:02:12.481Z [TRACE] user-service - Auth event: password_change - User: user_1051 - IP: 192.168.68.128 - RequestID: 6qr6lnvpw8e +2025-06-18T14:02:12.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.189.103 - RequestID: 6j5u8z02wee +2025-06-18T14:02:12.681Z [TRACE] notification-service - Auth event: logout - User: user_1072 - IP: 192.168.64.33 - RequestID: kwpjl40dkvn +2025-06-18T14:02:12.781Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 339ms - IP: 192.168.141.100 - User: user_1059 - RequestID: vxlwjgsdnlq +2025-06-18T14:02:12.881Z [TRACE] order-service - POST /api/v1/inventory - Status: 404 - Response time: 282ms - IP: 192.168.158.144 - User: user_1088 - RequestID: enuqe8rswr8 +2025-06-18T14:02:12.981Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1543ms - IP: 192.168.1.152 - User: user_1049 - RequestID: 2b3srd7vnf2 +2025-06-18T14:02:13.081Z [DEBUG] user-service - Auth event: login_success - User: user_1074 - IP: 192.168.79.141 - RequestID: xnxsbsjt3y +2025-06-18T14:02:13.181Z [INFO] auth-service - Database DELETE on users - Execution time: 323ms - Rows affected: 24 - RequestID: qe9rqs44by9 +2025-06-18T14:02:13.281Z [TRACE] order-service - Operation: order_created - Processing time: 265ms - RequestID: x17jswfcy6i +2025-06-18T14:02:13.381Z [TRACE] order-service - Database UPDATE on payments - Execution time: 149ms - Rows affected: 88 - RequestID: f7tg19m3r4h +2025-06-18T14:02:13.481Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 401 - Response time: 472ms - IP: 192.168.68.128 - User: user_1085 - RequestID: p1yrynohs8h +2025-06-18T14:02:13.581Z [TRACE] auth-service - Database DELETE on payments - Execution time: 187ms - Rows affected: 2 - RequestID: 1z893vuijj5 +2025-06-18T14:02:13.681Z [INFO] inventory-service - Auth event: login_success - User: user_1062 - IP: 192.168.44.5 - RequestID: i7yjhvb93v +2025-06-18T14:02:13.781Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1248ms - IP: 192.168.189.103 - User: user_1093 - RequestID: 43hvjhfs4sx +2025-06-18T14:02:13.881Z [INFO] inventory-service - GET /api/v1/inventory - Status: 403 - Response time: 528ms - IP: 192.168.141.100 - User: user_1070 - RequestID: akj3c0nve37 +2025-06-18T14:02:13.981Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 627ms - RequestID: q2bjw3mhe7j +2025-06-18T14:02:14.081Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 500 - Response time: 839ms - IP: 192.168.30.79 - User: user_1050 - RequestID: jj1kpe8sgjn +2025-06-18T14:02:14.181Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 995ms - RequestID: 9ef4lpne0dq +2025-06-18T14:02:14.281Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 149ms - Rows affected: 22 - RequestID: qzz3mc58y4 +2025-06-18T14:02:14.381Z [INFO] payment-service - DELETE /api/v1/orders - Status: 200 - Response time: 25ms - IP: 192.168.14.77 - User: user_1030 - RequestID: be4qjr5pfj +2025-06-18T14:02:14.481Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 493ms - Rows affected: 48 - RequestID: ri6hkrs11zc +2025-06-18T14:02:14.581Z [INFO] user-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1688ms - IP: 192.168.240.169 - User: user_1086 - RequestID: 4c0a8xjagm +2025-06-18T14:02:14.681Z [DEBUG] order-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.158.144 - RequestID: o5mp2pw8nvb +2025-06-18T14:02:14.781Z [TRACE] payment-service - Database INSERT on products - Execution time: 182ms - Rows affected: 20 - RequestID: i45gb3r0fyq +2025-06-18T14:02:14.881Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 755ms - RequestID: s0ktoh6nznn +2025-06-18T14:02:14.981Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 488ms - RequestID: ncz4breouqi +2025-06-18T14:02:15.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.68.128 - RequestID: t4fv4brwpab +2025-06-18T14:02:15.181Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 52ms - IP: 192.168.141.100 - User: user_1046 - RequestID: 5ibtnu1ckbg +2025-06-18T14:02:15.281Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 100ms - Rows affected: 99 - RequestID: g8y2qjrhmya +2025-06-18T14:02:15.381Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 842ms - RequestID: 1fzf2vd6elo +2025-06-18T14:02:15.481Z [INFO] auth-service - Operation: order_created - Processing time: 663ms - RequestID: m72xr9hdc0o +2025-06-18T14:02:15.581Z [INFO] user-service - Auth event: login_failed - User: user_1002 - IP: 192.168.227.77 - RequestID: gxxr863c1o +2025-06-18T14:02:15.681Z [INFO] payment-service - Database INSERT on payments - Execution time: 440ms - Rows affected: 74 - RequestID: 885srytaeba +2025-06-18T14:02:15.781Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1981ms - IP: 192.168.79.116 - User: user_1062 - RequestID: sb93uyhwj9 +2025-06-18T14:02:15.881Z [INFO] auth-service - Auth event: password_change - User: user_1038 - IP: 192.168.1.152 - RequestID: jt8bogzg61j +2025-06-18T14:02:15.981Z [INFO] user-service - DELETE /api/v1/inventory - Status: 404 - Response time: 259ms - IP: 192.168.79.143 - User: user_1031 - RequestID: caf1cud3nyb +2025-06-18T14:02:16.081Z [TRACE] notification-service - Operation: notification_queued - Processing time: 154ms - RequestID: 1qpa1yxrok1 +2025-06-18T14:02:16.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1038 - IP: 192.168.229.123 - RequestID: unq7fufl0jo +2025-06-18T14:02:16.281Z [INFO] inventory-service - Operation: order_created - Processing time: 299ms - RequestID: im1vfy26ptl +2025-06-18T14:02:16.381Z [INFO] inventory-service - GET /api/v1/payments - Status: 404 - Response time: 1297ms - IP: 192.168.247.134 - User: user_1068 - RequestID: cuo1uce09jc +2025-06-18T14:02:16.481Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 541ms - RequestID: lmknt23lthb +2025-06-18T14:02:16.581Z [TRACE] payment-service - Database DELETE on users - Execution time: 32ms - Rows affected: 65 - RequestID: p8lccfv9jo +2025-06-18T14:02:16.681Z [DEBUG] auth-service - Database SELECT on users - Execution time: 177ms - Rows affected: 68 - RequestID: 6ue9363a76l +2025-06-18T14:02:16.781Z [INFO] notification-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.138.123 - RequestID: c809jm73cyd +2025-06-18T14:02:16.881Z [TRACE] notification-service - Database DELETE on orders - Execution time: 456ms - Rows affected: 75 - RequestID: wonojog2vkq +2025-06-18T14:02:16.981Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 431ms - Rows affected: 66 - RequestID: fxtgylnsfiu +2025-06-18T14:02:17.081Z [INFO] auth-service - Auth event: login_success - User: user_1065 - IP: 192.168.113.218 - RequestID: 4qgdeoutu4p +2025-06-18T14:02:17.181Z [INFO] auth-service - PATCH /api/v1/payments - Status: 201 - Response time: 542ms - IP: 192.168.167.32 - User: user_1090 - RequestID: ytdumt3gafm +2025-06-18T14:02:17.281Z [TRACE] auth-service - Database DELETE on users - Execution time: 373ms - Rows affected: 18 - RequestID: bprd0npxgva +2025-06-18T14:02:17.381Z [INFO] auth-service - DELETE /api/v1/orders - Status: 200 - Response time: 1066ms - IP: 192.168.133.7 - User: user_1021 - RequestID: wgq95uzhhh7 +2025-06-18T14:02:17.481Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 605ms - IP: 192.168.167.32 - User: user_1087 - RequestID: 3k461m3k3de +2025-06-18T14:02:17.581Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 503 - Response time: 346ms - IP: 192.168.14.77 - User: user_1056 - RequestID: 3ftob58h2hs +2025-06-18T14:02:17.681Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 403ms - Rows affected: 41 - RequestID: mwjy7eaehd +2025-06-18T14:02:17.781Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 503 - Response time: 789ms - IP: 192.168.104.37 - User: user_1010 - RequestID: 02bq8o0texmu +2025-06-18T14:02:17.881Z [INFO] notification-service - Auth event: login_success - User: user_1004 - IP: 192.168.194.41 - RequestID: 01a5n18ouuke +2025-06-18T14:02:17.981Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 386ms - Rows affected: 41 - RequestID: 2f7rtnh6a1 +2025-06-18T14:02:18.081Z [TRACE] inventory-service - POST /api/v1/users - Status: 404 - Response time: 1133ms - IP: 192.168.189.103 - User: user_1056 - RequestID: 80c8i0khdkf +2025-06-18T14:02:18.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.79.143 - RequestID: 2owwl2fldjv +2025-06-18T14:02:18.281Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 404 - Response time: 180ms - IP: 192.168.79.116 - User: user_1086 - RequestID: pwex0fffrr +2025-06-18T14:02:18.381Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1451ms - IP: 192.168.242.165 - User: user_1025 - RequestID: j8wh472noeb +2025-06-18T14:02:18.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.174.114 - RequestID: jivnmttocr +2025-06-18T14:02:18.581Z [DEBUG] notification-service - Auth event: logout - User: user_1020 - IP: 192.168.81.206 - RequestID: zxm118sbp2q +2025-06-18T14:02:18.681Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1868ms - IP: 192.168.33.76 - User: user_1024 - RequestID: 6lw3cjz9wlm +2025-06-18T14:02:18.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1067 - IP: 192.168.104.37 - RequestID: 42x91ycimal +2025-06-18T14:02:18.881Z [INFO] user-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1446ms - IP: 192.168.79.143 - User: user_1067 - RequestID: b4ute07gw3k +2025-06-18T14:02:18.981Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 8ms - Rows affected: 33 - RequestID: g7i08k6ipb +2025-06-18T14:02:19.081Z [TRACE] notification-service - Database DELETE on products - Execution time: 383ms - Rows affected: 2 - RequestID: lyidu1ddg9k +2025-06-18T14:02:19.181Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 401 - Response time: 1799ms - IP: 192.168.14.77 - User: user_1082 - RequestID: ycgu7gi202m +2025-06-18T14:02:19.281Z [INFO] payment-service - Operation: notification_queued - Processing time: 792ms - RequestID: wnyhom7b2t +2025-06-18T14:02:19.381Z [INFO] auth-service - GET /api/v1/users - Status: 200 - Response time: 263ms - IP: 192.168.227.77 - User: user_1066 - RequestID: ac78bm10qs +2025-06-18T14:02:19.481Z [TRACE] user-service - PUT /api/v1/orders - Status: 404 - Response time: 503ms - IP: 192.168.44.5 - User: user_1072 - RequestID: 8tetpret4gg +2025-06-18T14:02:19.581Z [INFO] auth-service - Database SELECT on sessions - Execution time: 314ms - Rows affected: 50 - RequestID: tr2n635bwyj +2025-06-18T14:02:19.681Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 430ms - Rows affected: 94 - RequestID: y6eg2hszf2d +2025-06-18T14:02:19.781Z [DEBUG] user-service - POST /api/v1/orders - Status: 404 - Response time: 126ms - IP: 192.168.64.33 - User: user_1057 - RequestID: mjm9o8u5d7 +2025-06-18T14:02:19.881Z [TRACE] order-service - PATCH /api/v1/payments - Status: 502 - Response time: 693ms - IP: 192.168.174.114 - User: user_1024 - RequestID: cllxbyzgalq +2025-06-18T14:02:19.981Z [INFO] payment-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.138.123 - RequestID: ag7rjszbpew +2025-06-18T14:02:20.081Z [TRACE] order-service - Database DELETE on users - Execution time: 113ms - Rows affected: 41 - RequestID: za71uymzwyo +2025-06-18T14:02:20.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1000 - IP: 192.168.68.128 - RequestID: m6xi8plmi8a +2025-06-18T14:02:20.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.170.215 - RequestID: 9d2zgl9qur +2025-06-18T14:02:20.381Z [TRACE] payment-service - Operation: cache_hit - Processing time: 416ms - RequestID: u47lvoooka +2025-06-18T14:02:20.481Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 449ms - Rows affected: 21 - RequestID: hoif5lgx77l +2025-06-18T14:02:20.581Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 363ms - Rows affected: 65 - RequestID: 8lsetyu9ds2 +2025-06-18T14:02:20.681Z [INFO] inventory-service - Database DELETE on products - Execution time: 170ms - Rows affected: 90 - RequestID: 0s3yg1nxdu5p +2025-06-18T14:02:20.781Z [DEBUG] payment-service - Operation: order_created - Processing time: 351ms - RequestID: f3g9n4bcv79 +2025-06-18T14:02:20.881Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1370ms - IP: 192.168.240.169 - User: user_1089 - RequestID: 8gpsoh68bon +2025-06-18T14:02:20.981Z [DEBUG] user-service - Database SELECT on users - Execution time: 446ms - Rows affected: 80 - RequestID: 3cx6sw6auu2 +2025-06-18T14:02:21.081Z [INFO] order-service - Database UPDATE on sessions - Execution time: 478ms - Rows affected: 87 - RequestID: u9mfevhkfpm +2025-06-18T14:02:21.181Z [TRACE] notification-service - Database INSERT on users - Execution time: 295ms - Rows affected: 49 - RequestID: hxr9l8bwu +2025-06-18T14:02:21.281Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1232ms - IP: 192.168.147.171 - User: user_1056 - RequestID: ejv0khrh7l +2025-06-18T14:02:21.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1049 - IP: 192.168.187.199 - RequestID: 3g8r9zjfwa1 +2025-06-18T14:02:21.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 980ms - RequestID: xrrq8q64ay +2025-06-18T14:02:21.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 735ms - RequestID: en8z2wzlx6 +2025-06-18T14:02:21.681Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 633ms - IP: 192.168.159.94 - User: user_1004 - RequestID: y4gjj29213p +2025-06-18T14:02:21.781Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 912ms - RequestID: 3yar5tto8hs +2025-06-18T14:02:21.881Z [DEBUG] user-service - Auth event: login_success - User: user_1021 - IP: 192.168.147.171 - RequestID: vgzl42uz79i +2025-06-18T14:02:21.981Z [TRACE] order-service - Auth event: login_success - User: user_1066 - IP: 192.168.44.5 - RequestID: q6b6rxhfshj +2025-06-18T14:02:22.081Z [TRACE] order-service - PUT /api/v1/users - Status: 403 - Response time: 477ms - IP: 192.168.170.215 - User: user_1033 - RequestID: 8qipflpd4lb +2025-06-18T14:02:22.181Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 403 - Response time: 666ms - IP: 192.168.211.72 - User: user_1016 - RequestID: 1e97cadk1kf +2025-06-18T14:02:22.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1084 - IP: 192.168.85.229 - RequestID: 0dhje6sdyxl +2025-06-18T14:02:22.381Z [DEBUG] order-service - Operation: cache_miss - Processing time: 1016ms - RequestID: egf3ulv6r8a +2025-06-18T14:02:22.481Z [TRACE] auth-service - Auth event: password_change - User: user_1068 - IP: 192.168.247.134 - RequestID: 8ft3n87tiju +2025-06-18T14:02:22.581Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1171ms - IP: 192.168.97.87 - User: user_1065 - RequestID: w625bgiy4lm +2025-06-18T14:02:22.681Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 503 - Response time: 280ms - IP: 192.168.28.146 - User: user_1005 - RequestID: ady89r8zmke +2025-06-18T14:02:22.781Z [INFO] notification-service - Database INSERT on products - Execution time: 442ms - Rows affected: 42 - RequestID: fewm8n5dupg +2025-06-18T14:02:22.881Z [INFO] notification-service - PATCH /api/v1/users - Status: 502 - Response time: 101ms - IP: 192.168.13.72 - User: user_1072 - RequestID: cft9ioo6lbw +2025-06-18T14:02:22.981Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 498ms - Rows affected: 84 - RequestID: fry4ibpnkqp +2025-06-18T14:02:23.081Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1899ms - IP: 192.168.227.77 - User: user_1053 - RequestID: flas2b1ffw6 +2025-06-18T14:02:23.181Z [INFO] payment-service - Auth event: login_failed - User: user_1039 - IP: 192.168.68.158 - RequestID: 1tir7y3avar +2025-06-18T14:02:23.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.242.165 - RequestID: f0zyq0swp3p +2025-06-18T14:02:23.381Z [INFO] user-service - Database SELECT on payments - Execution time: 419ms - Rows affected: 53 - RequestID: 4fqub1smadv +2025-06-18T14:02:23.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.235.117 - RequestID: fs684dyxm6q +2025-06-18T14:02:23.581Z [INFO] user-service - DELETE /api/v1/users - Status: 502 - Response time: 984ms - IP: 192.168.104.37 - User: user_1080 - RequestID: o8pkmx8esgk +2025-06-18T14:02:23.681Z [TRACE] payment-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.144.38 - RequestID: sn90gk4p81o +2025-06-18T14:02:23.781Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1771ms - IP: 192.168.79.143 - User: user_1079 - RequestID: j42hfrrihzo +2025-06-18T14:02:23.881Z [DEBUG] order-service - POST /api/v1/users - Status: 200 - Response time: 1080ms - IP: 192.168.81.206 - User: user_1023 - RequestID: tdk2n60gu9p +2025-06-18T14:02:23.981Z [INFO] notification-service - Database INSERT on products - Execution time: 233ms - Rows affected: 40 - RequestID: eab8qbob7v9 +2025-06-18T14:02:24.081Z [INFO] user-service - GET /api/v1/inventory - Status: 400 - Response time: 1290ms - IP: 192.168.44.5 - User: user_1093 - RequestID: l2uojfkfjzm +2025-06-18T14:02:24.181Z [INFO] notification-service - Auth event: login_success - User: user_1092 - IP: 192.168.68.128 - RequestID: t95pnbfyx88 +2025-06-18T14:02:24.281Z [TRACE] auth-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.44.5 - RequestID: bks0erzzef +2025-06-18T14:02:24.381Z [TRACE] order-service - Operation: order_created - Processing time: 772ms - RequestID: 9tdpj1h5z1 +2025-06-18T14:02:24.481Z [INFO] order-service - Auth event: login_success - User: user_1003 - IP: 192.168.227.233 - RequestID: 3i55abvnfc +2025-06-18T14:02:24.581Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 224ms - Rows affected: 40 - RequestID: rxmt4yvebn +2025-06-18T14:02:24.681Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 401 - Response time: 1772ms - IP: 192.168.181.225 - User: user_1067 - RequestID: qy6lm6oukkf +2025-06-18T14:02:24.781Z [TRACE] notification-service - Operation: cache_miss - Processing time: 555ms - RequestID: sy4q2gvyefa +2025-06-18T14:02:24.881Z [INFO] inventory-service - Database UPDATE on users - Execution time: 478ms - Rows affected: 74 - RequestID: 005mmlxe427l6 +2025-06-18T14:02:24.981Z [INFO] user-service - PATCH /api/v1/users - Status: 400 - Response time: 1554ms - IP: 192.168.158.144 - User: user_1057 - RequestID: a0jq40o82mw +2025-06-18T14:02:25.081Z [TRACE] order-service - Database SELECT on sessions - Execution time: 7ms - Rows affected: 76 - RequestID: 2oq72hunx0d +2025-06-18T14:02:25.181Z [INFO] auth-service - Auth event: login_success - User: user_1044 - IP: 192.168.31.117 - RequestID: ghklwjq8yqf +2025-06-18T14:02:25.281Z [TRACE] payment-service - Auth event: login_failed - User: user_1063 - IP: 192.168.33.76 - RequestID: sywtr18nk3m +2025-06-18T14:02:25.381Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.31.117 - RequestID: ly7ml6jt3h +2025-06-18T14:02:25.481Z [DEBUG] order-service - Auth event: password_change - User: user_1071 - IP: 192.168.189.103 - RequestID: 01oau1rapzr3 +2025-06-18T14:02:25.581Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 200 - Response time: 811ms - IP: 192.168.53.133 - User: user_1014 - RequestID: qgtqtzxyug +2025-06-18T14:02:25.681Z [TRACE] order-service - PUT /api/v1/orders - Status: 201 - Response time: 668ms - IP: 192.168.247.134 - User: user_1040 - RequestID: rttfb5r1g67 +2025-06-18T14:02:25.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 713ms - RequestID: shib3quhvl +2025-06-18T14:02:25.881Z [INFO] user-service - Auth event: logout - User: user_1099 - IP: 192.168.10.184 - RequestID: q4qq2dkif7 +2025-06-18T14:02:25.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 807ms - RequestID: q6zqd23kbz +2025-06-18T14:02:26.081Z [INFO] user-service - Auth event: login_success - User: user_1054 - IP: 192.168.147.171 - RequestID: 5bzqnef366f +2025-06-18T14:02:26.181Z [INFO] user-service - Auth event: password_change - User: user_1052 - IP: 192.168.138.123 - RequestID: hddwrugrpn4 +2025-06-18T14:02:26.281Z [INFO] payment-service - Database INSERT on payments - Execution time: 443ms - Rows affected: 13 - RequestID: 84wmmksr1o3 +2025-06-18T14:02:26.381Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 371ms - Rows affected: 0 - RequestID: dceytxa28d +2025-06-18T14:02:26.481Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 90ms - IP: 192.168.189.103 - User: user_1049 - RequestID: ya5vlc4qx4t +2025-06-18T14:02:26.581Z [INFO] auth-service - Database SELECT on products - Execution time: 458ms - Rows affected: 10 - RequestID: qv6bpilyh8 +2025-06-18T14:02:26.681Z [INFO] notification-service - Auth event: login_failed - User: user_1080 - IP: 192.168.147.171 - RequestID: idw2cy5rwy +2025-06-18T14:02:26.781Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 400 - Response time: 971ms - IP: 192.168.100.240 - User: user_1077 - RequestID: c5wcfrts5s9 +2025-06-18T14:02:26.881Z [TRACE] user-service - GET /api/v1/users - Status: 201 - Response time: 767ms - IP: 192.168.229.123 - User: user_1089 - RequestID: p0ekstmt7fs +2025-06-18T14:02:26.981Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 401 - Response time: 493ms - IP: 192.168.32.38 - User: user_1033 - RequestID: hn3yngh9bl +2025-06-18T14:02:27.081Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1835ms - IP: 192.168.10.184 - User: user_1071 - RequestID: r2aprmiloe +2025-06-18T14:02:27.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1056 - IP: 192.168.64.33 - RequestID: o7bywkj8de +2025-06-18T14:02:27.281Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 496ms - Rows affected: 82 - RequestID: 47lxqp8wj3t +2025-06-18T14:02:27.381Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 202ms - RequestID: la3svpz017 +2025-06-18T14:02:27.481Z [INFO] user-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.170.215 - RequestID: 6zh1tvml1u7 +2025-06-18T14:02:27.581Z [INFO] order-service - Auth event: login_failed - User: user_1074 - IP: 192.168.167.32 - RequestID: pw0btx2h0fe +2025-06-18T14:02:27.681Z [DEBUG] order-service - Operation: order_created - Processing time: 725ms - RequestID: a5n6qhzks0n +2025-06-18T14:02:27.781Z [INFO] payment-service - GET /api/v1/orders - Status: 403 - Response time: 1016ms - IP: 192.168.194.41 - User: user_1062 - RequestID: e6x01kvndv5 +2025-06-18T14:02:27.881Z [TRACE] inventory-service - Operation: order_created - Processing time: 864ms - RequestID: 4qg00i7ns4 +2025-06-18T14:02:27.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1033 - IP: 192.168.1.152 - RequestID: zv9pds4aib +2025-06-18T14:02:28.081Z [INFO] user-service - Auth event: logout - User: user_1027 - IP: 192.168.211.72 - RequestID: o2n2kbah05 +2025-06-18T14:02:28.181Z [TRACE] user-service - Database DELETE on users - Execution time: 437ms - Rows affected: 11 - RequestID: 8axe455ghm4 +2025-06-18T14:02:28.281Z [INFO] auth-service - Auth event: login_success - User: user_1008 - IP: 192.168.159.94 - RequestID: 8h2nr4jg16w +2025-06-18T14:02:28.381Z [INFO] auth-service - DELETE /api/v1/users - Status: 200 - Response time: 865ms - IP: 192.168.227.77 - User: user_1056 - RequestID: t5c1f0dat +2025-06-18T14:02:28.481Z [TRACE] auth-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.1.152 - RequestID: bv539l1e3w6 +2025-06-18T14:02:28.581Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 570ms - RequestID: 4a1xybuxep7 +2025-06-18T14:02:28.681Z [TRACE] order-service - Auth event: logout - User: user_1096 - IP: 192.168.68.158 - RequestID: 32ue480jblo +2025-06-18T14:02:28.781Z [INFO] order-service - Auth event: login_success - User: user_1056 - IP: 192.168.97.87 - RequestID: hhpm7hjg666 +2025-06-18T14:02:28.881Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 398ms - Rows affected: 28 - RequestID: wnu189fwamh +2025-06-18T14:02:28.981Z [INFO] notification-service - DELETE /api/v1/orders - Status: 503 - Response time: 1059ms - IP: 192.168.240.169 - User: user_1050 - RequestID: hhdopemtwd7 +2025-06-18T14:02:29.081Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 220ms - RequestID: matzupjexd8 +2025-06-18T14:02:29.181Z [INFO] order-service - PATCH /api/v1/orders - Status: 400 - Response time: 904ms - IP: 192.168.53.133 - User: user_1029 - RequestID: mfn5gbmqpqf +2025-06-18T14:02:29.281Z [INFO] notification-service - Operation: payment_processed - Processing time: 446ms - RequestID: 4pdly5mpzrm +2025-06-18T14:02:29.381Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 407ms - Rows affected: 29 - RequestID: fd6fik8bg0i +2025-06-18T14:02:29.481Z [TRACE] payment-service - Operation: cache_miss - Processing time: 496ms - RequestID: m5bihk61cx +2025-06-18T14:02:29.581Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 397ms - Rows affected: 3 - RequestID: qby1r7atzfj +2025-06-18T14:02:29.681Z [TRACE] auth-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.147.171 - RequestID: d3u9mn0jk2l +2025-06-18T14:02:29.781Z [TRACE] inventory-service - Database INSERT on users - Execution time: 101ms - Rows affected: 76 - RequestID: qm9anrtz50c +2025-06-18T14:02:29.881Z [INFO] payment-service - Operation: order_created - Processing time: 979ms - RequestID: vqrhx3kppqf +2025-06-18T14:02:29.981Z [INFO] order-service - Database DELETE on payments - Execution time: 16ms - Rows affected: 12 - RequestID: bf5167hwf97 +2025-06-18T14:02:30.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.68.128 - RequestID: 9npe1i66sr +2025-06-18T14:02:30.181Z [INFO] payment-service - Auth event: login_failed - User: user_1010 - IP: 192.168.36.218 - RequestID: 8z0q7zi8qzk +2025-06-18T14:02:30.281Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1659ms - IP: 192.168.81.206 - User: user_1060 - RequestID: u6jtxyku6tb +2025-06-18T14:02:30.381Z [TRACE] auth-service - Database INSERT on users - Execution time: 220ms - Rows affected: 78 - RequestID: s4yxphxrb3 +2025-06-18T14:02:30.481Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 403 - Response time: 1851ms - IP: 192.168.133.7 - User: user_1005 - RequestID: z58yvy4o0a +2025-06-18T14:02:30.581Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 404 - Response time: 31ms - IP: 192.168.32.38 - User: user_1044 - RequestID: 0w873s8yqunb +2025-06-18T14:02:30.681Z [INFO] auth-service - Auth event: password_change - User: user_1009 - IP: 192.168.170.215 - RequestID: w3wuekz0vgo +2025-06-18T14:02:30.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.53.133 - RequestID: 3u40fiua2qc +2025-06-18T14:02:30.881Z [INFO] auth-service - Auth event: password_change - User: user_1098 - IP: 192.168.85.229 - RequestID: 73ywk3sx992 +2025-06-18T14:02:30.981Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 532ms - RequestID: 7leijqpzj73 +2025-06-18T14:02:31.081Z [INFO] notification-service - Database SELECT on sessions - Execution time: 313ms - Rows affected: 1 - RequestID: 1sp0hqje9fw +2025-06-18T14:02:31.181Z [INFO] payment-service - PATCH /api/v1/payments - Status: 502 - Response time: 146ms - IP: 192.168.227.77 - User: user_1084 - RequestID: ojnjriuos3n +2025-06-18T14:02:31.281Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 137ms - Rows affected: 8 - RequestID: odm4ym378wq +2025-06-18T14:02:31.381Z [INFO] auth-service - Operation: cache_miss - Processing time: 191ms - RequestID: mg2jjhm9dvr +2025-06-18T14:02:31.481Z [TRACE] user-service - Auth event: logout - User: user_1015 - IP: 192.168.141.100 - RequestID: xuc1k2l4pzi +2025-06-18T14:02:31.581Z [DEBUG] order-service - Auth event: logout - User: user_1082 - IP: 192.168.187.199 - RequestID: euj1mjplfvw +2025-06-18T14:02:31.681Z [INFO] order-service - Auth event: login_failed - User: user_1052 - IP: 192.168.68.158 - RequestID: 7919wlnlwlw +2025-06-18T14:02:31.781Z [INFO] order-service - POST /api/v1/inventory - Status: 201 - Response time: 813ms - IP: 192.168.113.218 - User: user_1064 - RequestID: 35r6lgn5nug +2025-06-18T14:02:31.881Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 400 - Response time: 1696ms - IP: 192.168.97.87 - User: user_1028 - RequestID: hizv6i03h4 +2025-06-18T14:02:31.981Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 403 - Response time: 308ms - IP: 192.168.144.38 - User: user_1056 - RequestID: ufmbmm3f9q8 +2025-06-18T14:02:32.081Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 934ms - RequestID: 6zdl0amq2m +2025-06-18T14:02:32.181Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 127ms - RequestID: wgvq1ayd7cp +2025-06-18T14:02:32.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.79.116 - RequestID: sspwefg5qu +2025-06-18T14:02:32.381Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1597ms - IP: 192.168.196.226 - User: user_1045 - RequestID: 0i6osldgwt8 +2025-06-18T14:02:32.481Z [DEBUG] notification-service - Database DELETE on products - Execution time: 80ms - Rows affected: 81 - RequestID: r6wlsdwa07m +2025-06-18T14:02:32.581Z [INFO] order-service - Operation: email_sent - Processing time: 968ms - RequestID: s9kv1qaveuh +2025-06-18T14:02:32.681Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 277ms - Rows affected: 67 - RequestID: mfyh5nu82sb +2025-06-18T14:02:32.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.194.41 - RequestID: d5alidriul +2025-06-18T14:02:32.881Z [TRACE] order-service - Operation: webhook_sent - Processing time: 1041ms - RequestID: 2styo10257x +2025-06-18T14:02:32.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.30.79 - RequestID: 3q3d0b6wkec +2025-06-18T14:02:33.081Z [TRACE] auth-service - Operation: notification_queued - Processing time: 832ms - RequestID: ntebatczxoa +2025-06-18T14:02:33.181Z [INFO] auth-service - Operation: notification_queued - Processing time: 876ms - RequestID: bca0236sea +2025-06-18T14:02:33.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.229.123 - RequestID: yutuquj20qe +2025-06-18T14:02:33.381Z [TRACE] order-service - Auth event: login_failed - User: user_1037 - IP: 192.168.14.77 - RequestID: 1jzn47tdb0u +2025-06-18T14:02:33.481Z [DEBUG] notification-service - Database DELETE on users - Execution time: 382ms - Rows affected: 77 - RequestID: c3weioaim2 +2025-06-18T14:02:33.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 398ms - RequestID: 89x2zj5ro87 +2025-06-18T14:02:33.681Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 262ms - RequestID: v4uj1qz16u +2025-06-18T14:02:33.781Z [TRACE] notification-service - Auth event: password_change - User: user_1076 - IP: 192.168.10.184 - RequestID: gfyrkmq22 +2025-06-18T14:02:33.881Z [INFO] order-service - Operation: order_created - Processing time: 479ms - RequestID: vuekyvu641m +2025-06-18T14:02:33.981Z [TRACE] auth-service - GET /api/v1/orders - Status: 404 - Response time: 1657ms - IP: 192.168.64.33 - User: user_1094 - RequestID: elx7oqyihud +2025-06-18T14:02:34.081Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 200 - Response time: 536ms - IP: 192.168.235.117 - User: user_1026 - RequestID: kdxfornvm9 +2025-06-18T14:02:34.181Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 30ms - Rows affected: 83 - RequestID: 829x78g4n6h +2025-06-18T14:02:34.281Z [TRACE] auth-service - Database UPDATE on products - Execution time: 331ms - Rows affected: 45 - RequestID: 07w59hd06ien +2025-06-18T14:02:34.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.33.76 - RequestID: ehlk4zi9yr +2025-06-18T14:02:34.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.194.41 - RequestID: 23u4dfh257i +2025-06-18T14:02:34.581Z [TRACE] inventory-service - Auth event: logout - User: user_1010 - IP: 192.168.144.38 - RequestID: vbj4oi3kn7o +2025-06-18T14:02:34.681Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1785ms - IP: 192.168.232.72 - User: user_1099 - RequestID: 2wznbs6yjxd +2025-06-18T14:02:34.781Z [DEBUG] order-service - Auth event: password_change - User: user_1017 - IP: 192.168.147.171 - RequestID: 7vogtnj2vk2 +2025-06-18T14:02:34.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 891ms - RequestID: yesadk9yw3k +2025-06-18T14:02:34.981Z [INFO] user-service - POST /api/v1/auth/login - Status: 200 - Response time: 1704ms - IP: 192.168.13.72 - User: user_1022 - RequestID: bf2c4wfqaq6 +2025-06-18T14:02:35.081Z [INFO] inventory-service - Auth event: password_change - User: user_1084 - IP: 192.168.138.123 - RequestID: 64f570igtcx +2025-06-18T14:02:35.181Z [DEBUG] order-service - Auth event: password_change - User: user_1079 - IP: 192.168.64.33 - RequestID: a4i69p0l0e +2025-06-18T14:02:35.281Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 632ms - RequestID: 4x3ff8nb81u +2025-06-18T14:02:35.381Z [INFO] user-service - Database INSERT on sessions - Execution time: 131ms - Rows affected: 64 - RequestID: p2u932cbi9a +2025-06-18T14:02:35.481Z [INFO] order-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.144.38 - RequestID: 3c84nflwbfu +2025-06-18T14:02:35.581Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 35ms - Rows affected: 39 - RequestID: ri2uff4h3yd +2025-06-18T14:02:35.681Z [INFO] order-service - Operation: notification_queued - Processing time: 591ms - RequestID: euz3dju8sv9 +2025-06-18T14:02:35.781Z [INFO] notification-service - Database INSERT on users - Execution time: 45ms - Rows affected: 70 - RequestID: 49jc0pshyhb +2025-06-18T14:02:35.881Z [TRACE] inventory-service - Auth event: login_success - User: user_1089 - IP: 192.168.196.226 - RequestID: 5pig9bn8kkp +2025-06-18T14:02:35.981Z [TRACE] order-service - PUT /api/v1/inventory - Status: 404 - Response time: 1338ms - IP: 192.168.211.72 - User: user_1052 - RequestID: jf4gh97qg +2025-06-18T14:02:36.081Z [TRACE] auth-service - POST /api/v1/payments - Status: 201 - Response time: 731ms - IP: 192.168.133.7 - User: user_1023 - RequestID: ohuw0chgw7 +2025-06-18T14:02:36.181Z [INFO] payment-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.174.114 - RequestID: iqisp7mk92 +2025-06-18T14:02:36.281Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 142ms - Rows affected: 2 - RequestID: qgmd4uzt1zm +2025-06-18T14:02:36.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 890ms - RequestID: cb2ix9017pp +2025-06-18T14:02:36.481Z [TRACE] order-service - PUT /api/v1/inventory - Status: 403 - Response time: 638ms - IP: 192.168.113.218 - User: user_1079 - RequestID: bqovqkqpmgp +2025-06-18T14:02:36.581Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 500 - Response time: 502ms - IP: 192.168.147.171 - User: user_1082 - RequestID: drzbexz3sld +2025-06-18T14:02:36.681Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 501ms - RequestID: r14m6pdjaed +2025-06-18T14:02:36.781Z [INFO] user-service - Auth event: login_failed - User: user_1026 - IP: 192.168.133.7 - RequestID: m220hdb5dhj +2025-06-18T14:02:36.881Z [INFO] order-service - Database INSERT on users - Execution time: 40ms - Rows affected: 86 - RequestID: qskqsnn08s +2025-06-18T14:02:36.981Z [TRACE] user-service - Auth event: login_failed - User: user_1036 - IP: 192.168.138.123 - RequestID: 84kkmd1o99y +2025-06-18T14:02:37.081Z [DEBUG] user-service - Database DELETE on payments - Execution time: 443ms - Rows affected: 55 - RequestID: tonda7s6lr +2025-06-18T14:02:37.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 839ms - RequestID: kk26htv8qvr +2025-06-18T14:02:37.281Z [DEBUG] notification-service - Operation: order_created - Processing time: 91ms - RequestID: rhg5n6kstb +2025-06-18T14:02:37.381Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 222ms - RequestID: 3golxbfqjxa +2025-06-18T14:02:37.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1040 - IP: 192.168.187.199 - RequestID: gpyrtarp7o9 +2025-06-18T14:02:37.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.138.123 - RequestID: vewid32k42 +2025-06-18T14:02:37.681Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 503 - Response time: 710ms - IP: 192.168.167.32 - User: user_1054 - RequestID: n82win0mpyn +2025-06-18T14:02:37.781Z [TRACE] payment-service - Auth event: login_success - User: user_1019 - IP: 192.168.194.41 - RequestID: zs1pp0r07kh +2025-06-18T14:02:37.881Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 114ms - Rows affected: 2 - RequestID: fx3meval1ol +2025-06-18T14:02:37.981Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1794ms - IP: 192.168.229.123 - User: user_1031 - RequestID: 3rr53sby7t3 +2025-06-18T14:02:38.081Z [TRACE] order-service - Auth event: login_failed - User: user_1067 - IP: 192.168.14.77 - RequestID: fgy2cduvm5b +2025-06-18T14:02:38.181Z [TRACE] auth-service - PUT /api/v1/users - Status: 400 - Response time: 331ms - IP: 192.168.33.76 - User: user_1070 - RequestID: e1ilo147h97 +2025-06-18T14:02:38.281Z [TRACE] inventory-service - Database INSERT on products - Execution time: 165ms - Rows affected: 91 - RequestID: ifergcbpzap +2025-06-18T14:02:38.381Z [INFO] order-service - PATCH /api/v1/payments - Status: 201 - Response time: 485ms - IP: 192.168.235.117 - User: user_1019 - RequestID: 7g1rpqsult +2025-06-18T14:02:38.481Z [DEBUG] order-service - PUT /api/v1/payments - Status: 201 - Response time: 1276ms - IP: 192.168.30.79 - User: user_1083 - RequestID: ni2ved06xh +2025-06-18T14:02:38.581Z [INFO] payment-service - Database DELETE on products - Execution time: 27ms - Rows affected: 59 - RequestID: a6shsc6uvnk +2025-06-18T14:02:38.681Z [TRACE] inventory-service - Operation: order_created - Processing time: 1017ms - RequestID: 174owo85mwf +2025-06-18T14:02:38.781Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1016ms - IP: 192.168.30.79 - User: user_1056 - RequestID: 641cqfvywzi +2025-06-18T14:02:38.881Z [TRACE] notification-service - Auth event: logout - User: user_1010 - IP: 192.168.13.72 - RequestID: l21terc4i2 +2025-06-18T14:02:38.981Z [TRACE] notification-service - PUT /api/v1/payments - Status: 500 - Response time: 1746ms - IP: 192.168.79.141 - User: user_1003 - RequestID: vdv6vcftpqa +2025-06-18T14:02:39.081Z [INFO] notification-service - Database INSERT on users - Execution time: 129ms - Rows affected: 81 - RequestID: x46ho6o2dv +2025-06-18T14:02:39.181Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1083 - IP: 192.168.14.77 - RequestID: 79bms0jlsgj +2025-06-18T14:02:39.281Z [TRACE] payment-service - Database SELECT on products - Execution time: 151ms - Rows affected: 36 - RequestID: 0brex1oaz62 +2025-06-18T14:02:39.381Z [TRACE] auth-service - Operation: cache_miss - Processing time: 656ms - RequestID: iu2u0bsqrm +2025-06-18T14:02:39.481Z [INFO] user-service - POST /api/v1/inventory - Status: 400 - Response time: 1771ms - IP: 192.168.68.128 - User: user_1089 - RequestID: yhio2f4n05 +2025-06-18T14:02:39.581Z [INFO] order-service - Auth event: login_failed - User: user_1055 - IP: 192.168.189.103 - RequestID: 73ouhhd6hv6 +2025-06-18T14:02:39.681Z [INFO] user-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.133.7 - RequestID: s99li8o1fwe +2025-06-18T14:02:39.781Z [INFO] inventory-service - Auth event: login_success - User: user_1099 - IP: 192.168.159.94 - RequestID: ouytv2ymb0b +2025-06-18T14:02:39.881Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 440ms - Rows affected: 60 - RequestID: iwpubznli3r +2025-06-18T14:02:39.981Z [TRACE] notification-service - Auth event: password_change - User: user_1080 - IP: 192.168.28.146 - RequestID: 8d8kqgx497 +2025-06-18T14:02:40.081Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 165ms - Rows affected: 12 - RequestID: 0k628hfd1sx +2025-06-18T14:02:40.181Z [TRACE] order-service - Operation: cache_miss - Processing time: 756ms - RequestID: w0trf7d86v +2025-06-18T14:02:40.281Z [TRACE] payment-service - Auth event: password_change - User: user_1022 - IP: 192.168.133.7 - RequestID: ox7lpqnmw9 +2025-06-18T14:02:40.381Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 331ms - Rows affected: 11 - RequestID: 5ia8negu4al +2025-06-18T14:02:40.481Z [INFO] payment-service - Operation: cache_miss - Processing time: 695ms - RequestID: xy4hy6awb5 +2025-06-18T14:02:40.581Z [INFO] order-service - Database DELETE on orders - Execution time: 326ms - Rows affected: 58 - RequestID: qmx8pdmzzy +2025-06-18T14:02:40.681Z [TRACE] user-service - Database SELECT on orders - Execution time: 287ms - Rows affected: 26 - RequestID: k66fj42snwa +2025-06-18T14:02:40.781Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 501ms - IP: 192.168.194.41 - User: user_1065 - RequestID: ad1glfmj7o6 +2025-06-18T14:02:40.881Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 667ms - RequestID: id3wkibt9i +2025-06-18T14:02:40.981Z [TRACE] auth-service - Auth event: password_change - User: user_1083 - IP: 192.168.53.133 - RequestID: wiisl2yzjx +2025-06-18T14:02:41.081Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1000ms - IP: 192.168.147.171 - User: user_1026 - RequestID: md9bn4tnrvp +2025-06-18T14:02:41.181Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 121ms - RequestID: p9wrxvp9yr +2025-06-18T14:02:41.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1099 - IP: 192.168.44.5 - RequestID: tip8av2bxn +2025-06-18T14:02:41.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1088 - IP: 192.168.159.94 - RequestID: ukwf5qiu73 +2025-06-18T14:02:41.481Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 55ms - Rows affected: 66 - RequestID: i2oj8pgxxn +2025-06-18T14:02:41.581Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 1047ms - RequestID: 02ppwm82hd8u +2025-06-18T14:02:41.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 131ms - RequestID: do9fm5swy67 +2025-06-18T14:02:41.781Z [TRACE] notification-service - Auth event: logout - User: user_1024 - IP: 192.168.97.87 - RequestID: eie4oyaozqj +2025-06-18T14:02:41.881Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 403 - Response time: 1325ms - IP: 192.168.247.134 - User: user_1036 - RequestID: 6gfjxrbft37 +2025-06-18T14:02:41.981Z [INFO] payment-service - Database DELETE on orders - Execution time: 295ms - Rows affected: 13 - RequestID: s7088jtcya +2025-06-18T14:02:42.081Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 227ms - Rows affected: 37 - RequestID: 73xlbizdu82 +2025-06-18T14:02:42.181Z [TRACE] notification-service - Database INSERT on products - Execution time: 466ms - Rows affected: 77 - RequestID: 95y86zo7257 +2025-06-18T14:02:42.281Z [INFO] order-service - Operation: payment_processed - Processing time: 747ms - RequestID: 7upke58pkcx +2025-06-18T14:02:42.381Z [INFO] notification-service - POST /api/v1/payments - Status: 500 - Response time: 1194ms - IP: 192.168.211.72 - User: user_1022 - RequestID: in0fizvfw5 +2025-06-18T14:02:42.481Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 167ms - Rows affected: 77 - RequestID: nlv702202rj +2025-06-18T14:02:42.581Z [TRACE] payment-service - Database UPDATE on users - Execution time: 55ms - Rows affected: 16 - RequestID: yn612q01mqf +2025-06-18T14:02:42.681Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 565ms - RequestID: rmnfn4onsj +2025-06-18T14:02:42.781Z [INFO] auth-service - Database INSERT on payments - Execution time: 29ms - Rows affected: 63 - RequestID: ph15ywfi2xn +2025-06-18T14:02:42.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1052 - IP: 192.168.64.33 - RequestID: 0zibpg4hh5b +2025-06-18T14:02:42.981Z [TRACE] payment-service - Database DELETE on users - Execution time: 314ms - Rows affected: 89 - RequestID: 5rr20o6uv4q +2025-06-18T14:02:43.081Z [INFO] user-service - Database UPDATE on sessions - Execution time: 54ms - Rows affected: 85 - RequestID: tlritp0goyc +2025-06-18T14:02:43.181Z [TRACE] order-service - Database INSERT on orders - Execution time: 193ms - Rows affected: 9 - RequestID: 6fwj2nu5089 +2025-06-18T14:02:43.281Z [TRACE] notification-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.31.117 - RequestID: syh8tgt7ovi +2025-06-18T14:02:43.381Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.133.7 - RequestID: my23akf1ixe +2025-06-18T14:02:43.481Z [TRACE] notification-service - Database UPDATE on users - Execution time: 94ms - Rows affected: 61 - RequestID: rve7zve4wgr +2025-06-18T14:02:43.581Z [INFO] order-service - Operation: email_sent - Processing time: 486ms - RequestID: kjca68q3cza +2025-06-18T14:02:43.681Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 362ms - Rows affected: 57 - RequestID: f2z6wpzrp1f +2025-06-18T14:02:43.781Z [TRACE] notification-service - POST /api/v1/users - Status: 201 - Response time: 1054ms - IP: 192.168.46.63 - User: user_1035 - RequestID: t3lno9x8dgn +2025-06-18T14:02:43.881Z [TRACE] notification-service - Operation: email_sent - Processing time: 864ms - RequestID: alncd3g69qu +2025-06-18T14:02:43.981Z [INFO] notification-service - GET /api/v1/inventory - Status: 403 - Response time: 1575ms - IP: 192.168.33.76 - User: user_1095 - RequestID: bjlpobrfiqs +2025-06-18T14:02:44.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.100.240 - RequestID: my9z6iwogh +2025-06-18T14:02:44.181Z [INFO] notification-service - Auth event: logout - User: user_1098 - IP: 192.168.144.38 - RequestID: 205ngkhaeix +2025-06-18T14:02:44.281Z [INFO] auth-service - PUT /api/v1/users - Status: 401 - Response time: 610ms - IP: 192.168.31.117 - User: user_1090 - RequestID: 4icmy2vma6 +2025-06-18T14:02:44.381Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1221ms - IP: 192.168.240.169 - User: user_1016 - RequestID: ponpvzsrrp +2025-06-18T14:02:44.481Z [DEBUG] auth-service - Auth event: login_failed - User: user_1007 - IP: 192.168.138.123 - RequestID: zm86lingx3q +2025-06-18T14:02:44.581Z [INFO] inventory-service - Operation: cache_hit - Processing time: 761ms - RequestID: x2sbumc95gg +2025-06-18T14:02:44.681Z [DEBUG] notification-service - POST /api/v1/users - Status: 401 - Response time: 1239ms - IP: 192.168.133.7 - User: user_1034 - RequestID: udmsiw8mmxg +2025-06-18T14:02:44.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.240.169 - RequestID: wwb3mud5xf8 +2025-06-18T14:02:44.881Z [INFO] order-service - Database SELECT on users - Execution time: 274ms - Rows affected: 61 - RequestID: bkptoo3csfj +2025-06-18T14:02:44.981Z [DEBUG] order-service - Database DELETE on users - Execution time: 444ms - Rows affected: 72 - RequestID: 6l6f3sj3x2r +2025-06-18T14:02:45.081Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 403 - Response time: 492ms - IP: 192.168.227.77 - User: user_1034 - RequestID: u8ctg4uzhg +2025-06-18T14:02:45.181Z [INFO] notification-service - Operation: email_sent - Processing time: 996ms - RequestID: lemiap2pq6 +2025-06-18T14:02:45.281Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 177ms - Rows affected: 98 - RequestID: fwnaaykouub +2025-06-18T14:02:45.381Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 404 - Response time: 890ms - IP: 192.168.211.72 - User: user_1031 - RequestID: plyanephzi +2025-06-18T14:02:45.481Z [INFO] inventory-service - Auth event: logout - User: user_1048 - IP: 192.168.53.133 - RequestID: ef4n81x9u57 +2025-06-18T14:02:45.581Z [INFO] notification-service - Database INSERT on sessions - Execution time: 200ms - Rows affected: 38 - RequestID: r5bgsmm91vp +2025-06-18T14:02:45.681Z [INFO] order-service - Database DELETE on orders - Execution time: 367ms - Rows affected: 34 - RequestID: oh7couxjpm +2025-06-18T14:02:45.781Z [INFO] notification-service - Operation: order_created - Processing time: 230ms - RequestID: zw7qwq24bw +2025-06-18T14:02:45.881Z [DEBUG] auth-service - Auth event: login_failed - User: user_1010 - IP: 192.168.11.60 - RequestID: hyh5sgu6vs +2025-06-18T14:02:45.981Z [TRACE] user-service - Auth event: logout - User: user_1075 - IP: 192.168.211.72 - RequestID: k2tsch5zhvm +2025-06-18T14:02:46.081Z [TRACE] order-service - Auth event: login_success - User: user_1024 - IP: 192.168.36.218 - RequestID: idj9qxb7w4 +2025-06-18T14:02:46.181Z [TRACE] order-service - Operation: webhook_sent - Processing time: 536ms - RequestID: imbwmhw9i6q +2025-06-18T14:02:46.281Z [INFO] order-service - Operation: cache_miss - Processing time: 98ms - RequestID: ixhby0t19a +2025-06-18T14:02:46.381Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 620ms - RequestID: id64xpmwbwj +2025-06-18T14:02:46.481Z [TRACE] user-service - Operation: notification_queued - Processing time: 490ms - RequestID: juzdyfpfavs +2025-06-18T14:02:46.581Z [INFO] notification-service - PUT /api/v1/payments - Status: 401 - Response time: 413ms - IP: 192.168.85.229 - User: user_1095 - RequestID: 4hcvlgtfaqe +2025-06-18T14:02:46.681Z [INFO] user-service - PATCH /api/v1/users - Status: 401 - Response time: 1648ms - IP: 192.168.133.7 - User: user_1043 - RequestID: nfoz0w033ee +2025-06-18T14:02:46.781Z [TRACE] order-service - Operation: cache_hit - Processing time: 86ms - RequestID: uajnl8njtk +2025-06-18T14:02:46.881Z [DEBUG] order-service - GET /api/v1/inventory - Status: 201 - Response time: 1150ms - IP: 192.168.28.146 - User: user_1038 - RequestID: ogno6i4q86 +2025-06-18T14:02:46.981Z [TRACE] notification-service - Database SELECT on orders - Execution time: 269ms - Rows affected: 47 - RequestID: e7cg4k5wdjq +2025-06-18T14:02:47.081Z [INFO] notification-service - Operation: webhook_sent - Processing time: 296ms - RequestID: b4irkuy4ima +2025-06-18T14:02:47.181Z [TRACE] payment-service - Database DELETE on payments - Execution time: 322ms - Rows affected: 51 - RequestID: fkiwao3gfmv +2025-06-18T14:02:47.281Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 502 - Response time: 1577ms - IP: 192.168.36.218 - User: user_1080 - RequestID: wlovjyai94g +2025-06-18T14:02:47.381Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 200 - Response time: 927ms - IP: 192.168.159.94 - User: user_1071 - RequestID: 1zwlpvy5gtl +2025-06-18T14:02:47.481Z [INFO] auth-service - Operation: email_sent - Processing time: 314ms - RequestID: ec1st8onr1 +2025-06-18T14:02:47.581Z [DEBUG] order-service - Auth event: logout - User: user_1031 - IP: 192.168.247.134 - RequestID: ews6rh6o9vj +2025-06-18T14:02:47.681Z [INFO] payment-service - Auth event: login_success - User: user_1040 - IP: 192.168.240.169 - RequestID: salkv2vvejs +2025-06-18T14:02:47.781Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 205ms - Rows affected: 60 - RequestID: 2j8a5ctwe5n +2025-06-18T14:02:47.881Z [INFO] payment-service - PUT /api/v1/inventory - Status: 400 - Response time: 1848ms - IP: 192.168.113.218 - User: user_1077 - RequestID: okvs1y04bwi +2025-06-18T14:02:47.981Z [INFO] order-service - PATCH /api/v1/users - Status: 403 - Response time: 1970ms - IP: 192.168.147.171 - User: user_1044 - RequestID: ugpvdt7ho3t +2025-06-18T14:02:48.081Z [INFO] user-service - PUT /api/v1/users - Status: 500 - Response time: 1235ms - IP: 192.168.104.37 - User: user_1053 - RequestID: hvkfq4k9d9l +2025-06-18T14:02:48.181Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 396ms - Rows affected: 23 - RequestID: ttxszjhz1 +2025-06-18T14:02:48.281Z [TRACE] user-service - Operation: payment_processed - Processing time: 544ms - RequestID: 4zofza3emd7 +2025-06-18T14:02:48.381Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 451ms - Rows affected: 90 - RequestID: 6ai8f3sqyml +2025-06-18T14:02:48.481Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 201 - Response time: 1170ms - IP: 192.168.159.94 - User: user_1079 - RequestID: oaxpcax07bl +2025-06-18T14:02:48.581Z [INFO] order-service - Database INSERT on sessions - Execution time: 159ms - Rows affected: 40 - RequestID: s01zpp1mkt +2025-06-18T14:02:48.681Z [INFO] notification-service - Operation: webhook_sent - Processing time: 232ms - RequestID: 6vagfhttvkw +2025-06-18T14:02:48.781Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 410ms - IP: 192.168.133.7 - User: user_1057 - RequestID: o3temxbslnc +2025-06-18T14:02:48.881Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 402ms - RequestID: jtgtu0g9ku +2025-06-18T14:02:48.981Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 401 - Response time: 15ms - IP: 192.168.174.114 - User: user_1050 - RequestID: pxcvg27ftp +2025-06-18T14:02:49.081Z [TRACE] notification-service - Operation: notification_queued - Processing time: 763ms - RequestID: vaqhj85uon +2025-06-18T14:02:49.181Z [DEBUG] user-service - Database INSERT on users - Execution time: 158ms - Rows affected: 98 - RequestID: mtgyv87cm4 +2025-06-18T14:02:49.281Z [TRACE] order-service - Auth event: login_failed - User: user_1050 - IP: 192.168.138.123 - RequestID: 4tlynzhoy45 +2025-06-18T14:02:49.381Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1306ms - IP: 192.168.232.72 - User: user_1042 - RequestID: 7cglcg8crrm +2025-06-18T14:02:49.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.174.114 - RequestID: y8c9z1h3ko +2025-06-18T14:02:49.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1034 - IP: 192.168.133.7 - RequestID: qhjre5dg15 +2025-06-18T14:02:49.681Z [INFO] order-service - GET /api/v1/inventory - Status: 201 - Response time: 1621ms - IP: 192.168.11.60 - User: user_1004 - RequestID: 60a2x7ac3rq +2025-06-18T14:02:49.781Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 592ms - IP: 192.168.14.77 - User: user_1045 - RequestID: kc40kt7gntn +2025-06-18T14:02:49.881Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 391ms - RequestID: pc8fryy36uq +2025-06-18T14:02:49.981Z [INFO] notification-service - Auth event: password_change - User: user_1081 - IP: 192.168.229.123 - RequestID: vmsm928mvd +2025-06-18T14:02:50.081Z [INFO] payment-service - PATCH /api/v1/users - Status: 200 - Response time: 154ms - IP: 192.168.235.117 - User: user_1038 - RequestID: rogh3lmj9nh +2025-06-18T14:02:50.181Z [INFO] order-service - Auth event: logout - User: user_1045 - IP: 192.168.242.165 - RequestID: pf00jb9e72l +2025-06-18T14:02:50.281Z [TRACE] payment-service - Database DELETE on products - Execution time: 169ms - Rows affected: 38 - RequestID: i1cmzipygzl +2025-06-18T14:02:50.381Z [INFO] user-service - Operation: notification_queued - Processing time: 458ms - RequestID: h1zpy9an4ms +2025-06-18T14:02:50.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 443ms - RequestID: j54jlluw3u +2025-06-18T14:02:50.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.31.117 - RequestID: ax0b70b0s7g +2025-06-18T14:02:50.681Z [TRACE] order-service - GET /api/v1/payments - Status: 400 - Response time: 1709ms - IP: 192.168.158.144 - User: user_1067 - RequestID: osg93htdrok +2025-06-18T14:02:50.781Z [INFO] order-service - Operation: notification_queued - Processing time: 198ms - RequestID: ug3ynuypjl +2025-06-18T14:02:50.881Z [TRACE] inventory-service - Operation: order_created - Processing time: 967ms - RequestID: w0ei8oqfi8a +2025-06-18T14:02:50.981Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 500 - Response time: 1089ms - IP: 192.168.138.123 - User: user_1045 - RequestID: vjxxwtsqeci +2025-06-18T14:02:51.081Z [TRACE] order-service - Operation: email_sent - Processing time: 628ms - RequestID: tkcfpclpbg +2025-06-18T14:02:51.181Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 783ms - RequestID: 0q0yo89xb3xe +2025-06-18T14:02:51.281Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 503 - Response time: 563ms - IP: 192.168.85.229 - User: user_1065 - RequestID: qv0yz15egdh +2025-06-18T14:02:51.381Z [TRACE] user-service - Database DELETE on products - Execution time: 59ms - Rows affected: 37 - RequestID: hu0cy9knkbm +2025-06-18T14:02:51.481Z [DEBUG] order-service - Operation: notification_queued - Processing time: 617ms - RequestID: j222bsth36f +2025-06-18T14:02:51.581Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1292ms - IP: 192.168.159.94 - User: user_1032 - RequestID: r895wq2qd4b +2025-06-18T14:02:51.681Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 232ms - IP: 192.168.242.165 - User: user_1036 - RequestID: r80c12kto4 +2025-06-18T14:02:51.781Z [INFO] order-service - Operation: email_sent - Processing time: 621ms - RequestID: wvera49csin +2025-06-18T14:02:51.881Z [TRACE] payment-service - Database DELETE on payments - Execution time: 411ms - Rows affected: 81 - RequestID: pc17ymu34i +2025-06-18T14:02:51.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.147.171 - RequestID: f3tzunwbbcb +2025-06-18T14:02:52.081Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 209ms - Rows affected: 2 - RequestID: m0xeq32nc59 +2025-06-18T14:02:52.181Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 164ms - Rows affected: 53 - RequestID: tg6gdaxkoa +2025-06-18T14:02:52.281Z [TRACE] notification-service - Auth event: password_change - User: user_1044 - IP: 192.168.14.77 - RequestID: d2skdrx4gy +2025-06-18T14:02:52.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.144.38 - RequestID: 3ksur1ayxfx +2025-06-18T14:02:52.481Z [INFO] auth-service - Auth event: password_change - User: user_1091 - IP: 192.168.11.60 - RequestID: 7ugnhj1e0yg +2025-06-18T14:02:52.581Z [DEBUG] user-service - Auth event: login_success - User: user_1095 - IP: 192.168.68.128 - RequestID: zt666km2gas +2025-06-18T14:02:52.681Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 80ms - Rows affected: 80 - RequestID: 9r830vkeg6r +2025-06-18T14:02:52.781Z [INFO] notification-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.46.63 - RequestID: wco7pfjmzlc +2025-06-18T14:02:52.881Z [TRACE] order-service - Database DELETE on sessions - Execution time: 496ms - Rows affected: 44 - RequestID: 565fs5qea4x +2025-06-18T14:02:52.981Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1490ms - IP: 192.168.211.72 - User: user_1039 - RequestID: 3pj9661fv8h +2025-06-18T14:02:53.081Z [DEBUG] auth-service - Auth event: logout - User: user_1019 - IP: 192.168.104.37 - RequestID: hx0zv7owza8 +2025-06-18T14:02:53.181Z [INFO] notification-service - Database DELETE on orders - Execution time: 79ms - Rows affected: 86 - RequestID: 4vcdgs2ft +2025-06-18T14:02:53.281Z [TRACE] user-service - Auth event: login_failed - User: user_1020 - IP: 192.168.31.117 - RequestID: 66mjqvvc8zy +2025-06-18T14:02:53.381Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 350ms - Rows affected: 0 - RequestID: rhu63olcsfj +2025-06-18T14:02:53.481Z [INFO] notification-service - Database UPDATE on orders - Execution time: 364ms - Rows affected: 98 - RequestID: 0z5jym5gjrq +2025-06-18T14:02:53.581Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 360ms - Rows affected: 53 - RequestID: 028tg0thggvf +2025-06-18T14:02:53.681Z [INFO] notification-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.13.72 - RequestID: fs160tal9hf +2025-06-18T14:02:53.781Z [INFO] user-service - Database SELECT on payments - Execution time: 87ms - Rows affected: 29 - RequestID: 5oelfyo4tei +2025-06-18T14:02:53.881Z [INFO] user-service - Database DELETE on sessions - Execution time: 495ms - Rows affected: 86 - RequestID: i57rrdksb1s +2025-06-18T14:02:53.981Z [TRACE] order-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.133.7 - RequestID: a6clbb1bwc +2025-06-18T14:02:54.081Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 1672ms - IP: 192.168.159.94 - User: user_1066 - RequestID: db1lc11vmrh +2025-06-18T14:02:54.181Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 502 - Response time: 584ms - IP: 192.168.170.215 - User: user_1091 - RequestID: sy9z7ehrw9f +2025-06-18T14:02:54.281Z [DEBUG] auth-service - Auth event: login_failed - User: user_1009 - IP: 192.168.79.116 - RequestID: sm4tisvkb39 +2025-06-18T14:02:54.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.189.103 - RequestID: 42mie7mnrm8 +2025-06-18T14:02:54.481Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 502 - Response time: 44ms - IP: 192.168.97.87 - User: user_1011 - RequestID: q55f2b5iyeq +2025-06-18T14:02:54.581Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 128ms - Rows affected: 15 - RequestID: pgmgg7460m9 +2025-06-18T14:02:54.681Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 27ms - Rows affected: 23 - RequestID: 2iuiuas6g6t +2025-06-18T14:02:54.781Z [TRACE] inventory-service - Database INSERT on users - Execution time: 28ms - Rows affected: 57 - RequestID: 90zuvusimav +2025-06-18T14:02:54.881Z [TRACE] notification-service - Auth event: logout - User: user_1074 - IP: 192.168.53.133 - RequestID: ayev6qn3inc +2025-06-18T14:02:54.981Z [INFO] order-service - Auth event: login_success - User: user_1040 - IP: 192.168.68.128 - RequestID: 1ex6yojjb3y +2025-06-18T14:02:55.081Z [INFO] inventory-service - Database INSERT on products - Execution time: 335ms - Rows affected: 2 - RequestID: oq6fupjhkg +2025-06-18T14:02:55.181Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 111ms - RequestID: qi65nc0i5ij +2025-06-18T14:02:55.281Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 200 - Response time: 1959ms - IP: 192.168.46.63 - User: user_1053 - RequestID: 426afi2voru +2025-06-18T14:02:55.381Z [INFO] notification-service - Database SELECT on users - Execution time: 222ms - Rows affected: 17 - RequestID: l0rt14790h +2025-06-18T14:02:55.481Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 990ms - RequestID: lilfvmdpk1f +2025-06-18T14:02:55.581Z [INFO] user-service - Auth event: logout - User: user_1047 - IP: 192.168.32.38 - RequestID: ngk7nx0dhr +2025-06-18T14:02:55.681Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1554ms - IP: 192.168.64.33 - User: user_1089 - RequestID: 4vv0lpbdm5e +2025-06-18T14:02:55.781Z [INFO] order-service - Database INSERT on orders - Execution time: 59ms - Rows affected: 3 - RequestID: 1z7y3czxv1k +2025-06-18T14:02:55.881Z [TRACE] notification-service - Auth event: login_success - User: user_1069 - IP: 192.168.211.72 - RequestID: swuw1tl5lb +2025-06-18T14:02:55.981Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 150ms - Rows affected: 10 - RequestID: qjs9op2y0m +2025-06-18T14:02:56.081Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 34ms - Rows affected: 63 - RequestID: lrb1ytqism +2025-06-18T14:02:56.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.33.76 - RequestID: 2hexr0tl55n +2025-06-18T14:02:56.281Z [TRACE] order-service - DELETE /api/v1/users - Status: 401 - Response time: 1147ms - IP: 192.168.100.240 - User: user_1072 - RequestID: xab8qxwgzq +2025-06-18T14:02:56.381Z [TRACE] notification-service - Operation: notification_queued - Processing time: 708ms - RequestID: yi0f9y8t22c +2025-06-18T14:02:56.481Z [INFO] user-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.242.165 - RequestID: vfjqys0ag6 +2025-06-18T14:02:56.581Z [INFO] notification-service - Database UPDATE on orders - Execution time: 100ms - Rows affected: 25 - RequestID: 4ip3iw1at2s +2025-06-18T14:02:56.681Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 443ms - Rows affected: 73 - RequestID: 8acikx1tu54 +2025-06-18T14:02:56.781Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1352ms - IP: 192.168.97.87 - User: user_1075 - RequestID: 8xb7f2e2b3y +2025-06-18T14:02:56.881Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 351ms - RequestID: 82hogv67r9k +2025-06-18T14:02:56.981Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 124ms - Rows affected: 4 - RequestID: kyzqstv1v4p +2025-06-18T14:02:57.081Z [TRACE] notification-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.1.152 - RequestID: 6ukyv4vj1r4 +2025-06-18T14:02:57.181Z [TRACE] order-service - Database DELETE on products - Execution time: 207ms - Rows affected: 14 - RequestID: a8nyx0ygzg5 +2025-06-18T14:02:57.281Z [INFO] order-service - Database INSERT on payments - Execution time: 426ms - Rows affected: 14 - RequestID: ib0aq9vf7xn +2025-06-18T14:02:57.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1065 - IP: 192.168.85.229 - RequestID: b9mp0efk1e5 +2025-06-18T14:02:57.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.247.134 - RequestID: e7ce44z5cx7 +2025-06-18T14:02:57.581Z [DEBUG] order-service - Database UPDATE on products - Execution time: 182ms - Rows affected: 44 - RequestID: qk71jtoyv1i +2025-06-18T14:02:57.681Z [TRACE] user-service - Operation: payment_processed - Processing time: 471ms - RequestID: 68klt05sips +2025-06-18T14:02:57.781Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 483ms - Rows affected: 90 - RequestID: po3bu7kaao8 +2025-06-18T14:02:57.881Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 219ms - RequestID: s1buslxnqsp +2025-06-18T14:02:57.981Z [DEBUG] user-service - Operation: order_created - Processing time: 152ms - RequestID: qdc66fr6bcn +2025-06-18T14:02:58.081Z [INFO] payment-service - Operation: notification_queued - Processing time: 159ms - RequestID: 372ou3cbzd5 +2025-06-18T14:02:58.181Z [INFO] payment-service - Auth event: login_failed - User: user_1036 - IP: 192.168.170.215 - RequestID: 24uvtrwqmus +2025-06-18T14:02:58.281Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 200 - Response time: 417ms - IP: 192.168.14.77 - User: user_1065 - RequestID: 2w7qf6dxr5h +2025-06-18T14:02:58.381Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 524ms - RequestID: jgrg1dtfiwj +2025-06-18T14:02:58.481Z [INFO] user-service - Operation: order_created - Processing time: 765ms - RequestID: sp5tqzv2cej +2025-06-18T14:02:58.581Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 200 - Response time: 402ms - IP: 192.168.28.146 - User: user_1019 - RequestID: jz8v5zv9uoj +2025-06-18T14:02:58.681Z [DEBUG] user-service - Auth event: login_failed - User: user_1068 - IP: 192.168.170.215 - RequestID: hrwqqc5yjgm +2025-06-18T14:02:58.781Z [TRACE] auth-service - Auth event: login_success - User: user_1053 - IP: 192.168.13.72 - RequestID: hnz2r7w2f4 +2025-06-18T14:02:58.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1099 - IP: 192.168.28.146 - RequestID: xh0iqcz1kos +2025-06-18T14:02:58.981Z [TRACE] auth-service - POST /api/v1/orders - Status: 201 - Response time: 1409ms - IP: 192.168.64.33 - User: user_1030 - RequestID: u30137mczea +2025-06-18T14:02:59.081Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 102ms - RequestID: up9j3hy0tn +2025-06-18T14:02:59.181Z [DEBUG] user-service - Auth event: password_change - User: user_1001 - IP: 192.168.158.144 - RequestID: ek0j00vk3c +2025-06-18T14:02:59.281Z [INFO] payment-service - PUT /api/v1/users - Status: 200 - Response time: 1643ms - IP: 192.168.30.79 - User: user_1056 - RequestID: h15nxajisw +2025-06-18T14:02:59.381Z [TRACE] notification-service - Auth event: login_success - User: user_1062 - IP: 192.168.141.100 - RequestID: lhyj89yit8 +2025-06-18T14:02:59.481Z [INFO] order-service - Operation: email_sent - Processing time: 649ms - RequestID: 0tbkyrj5xq4f +2025-06-18T14:02:59.581Z [TRACE] user-service - Database SELECT on products - Execution time: 430ms - Rows affected: 44 - RequestID: 0sssms8t0wbo +2025-06-18T14:02:59.681Z [INFO] auth-service - Database DELETE on orders - Execution time: 13ms - Rows affected: 66 - RequestID: 88ru7fk3tnd +2025-06-18T14:02:59.781Z [TRACE] notification-service - PUT /api/v1/users - Status: 401 - Response time: 1305ms - IP: 192.168.232.72 - User: user_1028 - RequestID: xjava4lisu +2025-06-18T14:02:59.881Z [TRACE] payment-service - Database DELETE on orders - Execution time: 5ms - Rows affected: 71 - RequestID: g5ifl1qmd7j +2025-06-18T14:02:59.981Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 399ms - Rows affected: 15 - RequestID: lc3ozm622l +2025-06-18T14:03:00.081Z [INFO] auth-service - Database SELECT on orders - Execution time: 272ms - Rows affected: 62 - RequestID: ermtwx5z04d +2025-06-18T14:03:00.181Z [TRACE] payment-service - Database INSERT on payments - Execution time: 275ms - Rows affected: 77 - RequestID: zplw377032 +2025-06-18T14:03:00.281Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 623ms - RequestID: 27kg6r0ojui +2025-06-18T14:03:00.381Z [DEBUG] notification-service - POST /api/v1/payments - Status: 201 - Response time: 180ms - IP: 192.168.167.32 - User: user_1005 - RequestID: yj0vob3ezti +2025-06-18T14:03:00.481Z [TRACE] payment-service - Operation: cache_miss - Processing time: 202ms - RequestID: 2tp3ehl322e +2025-06-18T14:03:00.581Z [TRACE] user-service - Operation: cache_hit - Processing time: 507ms - RequestID: 7q2dg2ceaj2 +2025-06-18T14:03:00.681Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 103ms - Rows affected: 36 - RequestID: zn5eh9mf8ph +2025-06-18T14:03:00.781Z [INFO] user-service - Operation: email_sent - Processing time: 936ms - RequestID: l7pf39qagi +2025-06-18T14:03:00.881Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 912ms - RequestID: xwmoeotbgnm +2025-06-18T14:03:00.981Z [TRACE] notification-service - Operation: order_created - Processing time: 896ms - RequestID: 3puxif5m7t7 +2025-06-18T14:03:01.081Z [TRACE] user-service - DELETE /api/v1/payments - Status: 201 - Response time: 1208ms - IP: 192.168.68.128 - User: user_1041 - RequestID: 3a6fhi4t1p +2025-06-18T14:03:01.181Z [DEBUG] user-service - Operation: cache_hit - Processing time: 791ms - RequestID: 38lml3e7muu +2025-06-18T14:03:01.281Z [INFO] user-service - Operation: order_created - Processing time: 818ms - RequestID: nc9kkv4lul +2025-06-18T14:03:01.381Z [INFO] auth-service - Operation: order_created - Processing time: 156ms - RequestID: azs5zhqercp +2025-06-18T14:03:01.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 1000ms - RequestID: x7tuznp2wss +2025-06-18T14:03:01.581Z [TRACE] payment-service - Auth event: login_success - User: user_1042 - IP: 192.168.181.225 - RequestID: oq5q0a9b7t +2025-06-18T14:03:01.681Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 256ms - Rows affected: 86 - RequestID: f0b0cso01s +2025-06-18T14:03:01.781Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 33ms - Rows affected: 61 - RequestID: 6hi4r2knrwo +2025-06-18T14:03:01.881Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 197ms - Rows affected: 0 - RequestID: hzh63tidrio +2025-06-18T14:03:01.981Z [TRACE] user-service - Database DELETE on payments - Execution time: 148ms - Rows affected: 22 - RequestID: gcdh83nsmsp +2025-06-18T14:03:02.081Z [TRACE] payment-service - Operation: cache_hit - Processing time: 216ms - RequestID: 5oj9oti98j +2025-06-18T14:03:02.181Z [TRACE] user-service - Operation: notification_queued - Processing time: 171ms - RequestID: 16b5mwkspjh +2025-06-18T14:03:02.281Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 194ms - Rows affected: 2 - RequestID: qfbkj3a9npe +2025-06-18T14:03:02.381Z [DEBUG] payment-service - Database DELETE on users - Execution time: 449ms - Rows affected: 34 - RequestID: v93oz7vgww +2025-06-18T14:03:02.481Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 130ms - Rows affected: 68 - RequestID: ak58msd02ri +2025-06-18T14:03:02.581Z [DEBUG] user-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.33.76 - RequestID: 74dz6t6a05s +2025-06-18T14:03:02.681Z [INFO] user-service - Auth event: logout - User: user_1083 - IP: 192.168.211.72 - RequestID: f9vy8sidyp +2025-06-18T14:03:02.781Z [DEBUG] order-service - PUT /api/v1/payments - Status: 400 - Response time: 800ms - IP: 192.168.181.225 - User: user_1043 - RequestID: lvughmgdvr +2025-06-18T14:03:02.881Z [TRACE] payment-service - Operation: order_created - Processing time: 596ms - RequestID: 02wg67t1qur6 +2025-06-18T14:03:02.981Z [INFO] payment-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.247.134 - RequestID: dntck7fym1 +2025-06-18T14:03:03.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 996ms - RequestID: jjslb1rd94 +2025-06-18T14:03:03.181Z [DEBUG] payment-service - Auth event: password_change - User: user_1037 - IP: 192.168.196.226 - RequestID: qnnzoa1hp6 +2025-06-18T14:03:03.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.229.123 - RequestID: vj3cxqmfc2 +2025-06-18T14:03:03.381Z [INFO] user-service - Database DELETE on sessions - Execution time: 35ms - Rows affected: 59 - RequestID: 9yahkd4ccmd +2025-06-18T14:03:03.481Z [TRACE] auth-service - Operation: cache_miss - Processing time: 1011ms - RequestID: 9xsxbup0yrw +2025-06-18T14:03:03.581Z [TRACE] notification-service - Auth event: password_change - User: user_1048 - IP: 192.168.104.37 - RequestID: gtt6r9fza0w +2025-06-18T14:03:03.681Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 241ms - Rows affected: 55 - RequestID: 7sl1j4ey126 +2025-06-18T14:03:03.781Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 230ms - RequestID: 8yoyto04zoq +2025-06-18T14:03:03.881Z [DEBUG] user-service - Database INSERT on users - Execution time: 267ms - Rows affected: 19 - RequestID: fyc5ys028ru +2025-06-18T14:03:03.981Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 502 - Response time: 849ms - IP: 192.168.240.169 - User: user_1006 - RequestID: b85okzy3k5a +2025-06-18T14:03:04.081Z [INFO] auth-service - Database UPDATE on orders - Execution time: 287ms - Rows affected: 42 - RequestID: h5da9tm7y8 +2025-06-18T14:03:04.181Z [DEBUG] user-service - Operation: cache_hit - Processing time: 731ms - RequestID: 9fs5ra410cg +2025-06-18T14:03:04.281Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 214ms - Rows affected: 88 - RequestID: q9fm4nwx4s +2025-06-18T14:03:04.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.104.37 - RequestID: 8rsemrrap8b +2025-06-18T14:03:04.481Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 665ms - RequestID: 8x2n0o5avr7 +2025-06-18T14:03:04.581Z [INFO] payment-service - POST /api/v1/users - Status: 404 - Response time: 1757ms - IP: 192.168.53.133 - User: user_1050 - RequestID: trk39g7gde +2025-06-18T14:03:04.681Z [TRACE] user-service - PUT /api/v1/inventory - Status: 401 - Response time: 1794ms - IP: 192.168.247.134 - User: user_1063 - RequestID: lkdcph3p4qa +2025-06-18T14:03:04.781Z [INFO] user-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1605ms - IP: 192.168.100.240 - User: user_1021 - RequestID: 7ivb6tdph1 +2025-06-18T14:03:04.881Z [TRACE] order-service - Database DELETE on sessions - Execution time: 196ms - Rows affected: 12 - RequestID: 0sxs56u5jh8 +2025-06-18T14:03:04.981Z [INFO] user-service - Auth event: logout - User: user_1035 - IP: 192.168.28.146 - RequestID: orv1kcy5pjp +2025-06-18T14:03:05.081Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 483ms - Rows affected: 32 - RequestID: rsfs0effjbc +2025-06-18T14:03:05.181Z [INFO] auth-service - Database SELECT on orders - Execution time: 253ms - Rows affected: 77 - RequestID: gan5zv0tr3f +2025-06-18T14:03:05.281Z [INFO] payment-service - Database SELECT on sessions - Execution time: 248ms - Rows affected: 47 - RequestID: 1scp49jp9hy +2025-06-18T14:03:05.381Z [DEBUG] order-service - Database UPDATE on users - Execution time: 497ms - Rows affected: 82 - RequestID: p3ti8zsfxbd +2025-06-18T14:03:05.481Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 670ms - IP: 192.168.147.171 - User: user_1089 - RequestID: c12l8mjikog +2025-06-18T14:03:05.581Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 206ms - RequestID: z7ezjm12hq +2025-06-18T14:03:05.681Z [TRACE] user-service - Database SELECT on users - Execution time: 218ms - Rows affected: 55 - RequestID: btfk6tj5cr5 +2025-06-18T14:03:05.781Z [INFO] inventory-service - Database UPDATE on products - Execution time: 148ms - Rows affected: 34 - RequestID: cyvxncb9qgu +2025-06-18T14:03:05.881Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1985ms - IP: 192.168.170.215 - User: user_1093 - RequestID: zlncvy1owsl +2025-06-18T14:03:05.981Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 464ms - Rows affected: 43 - RequestID: nc4j1tf0p5e +2025-06-18T14:03:06.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.141.100 - RequestID: j8qcf8qo18l +2025-06-18T14:03:06.181Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 62ms - Rows affected: 78 - RequestID: xpcb9znbm7 +2025-06-18T14:03:06.281Z [TRACE] payment-service - Database DELETE on payments - Execution time: 415ms - Rows affected: 82 - RequestID: 1zym4jke8q1 +2025-06-18T14:03:06.381Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 214ms - Rows affected: 10 - RequestID: 0mfhfzt856gm +2025-06-18T14:03:06.481Z [INFO] notification-service - Auth event: password_change - User: user_1078 - IP: 192.168.104.37 - RequestID: yamfixek9zl +2025-06-18T14:03:06.581Z [TRACE] payment-service - PUT /api/v1/orders - Status: 403 - Response time: 1536ms - IP: 192.168.31.117 - User: user_1050 - RequestID: e6inexjvm9i +2025-06-18T14:03:06.681Z [INFO] user-service - Auth event: login_failed - User: user_1038 - IP: 192.168.33.76 - RequestID: 0b1gtiphbaks +2025-06-18T14:03:06.781Z [INFO] order-service - GET /api/v1/users - Status: 500 - Response time: 1411ms - IP: 192.168.13.72 - User: user_1015 - RequestID: jnbmd4hx3ek +2025-06-18T14:03:06.881Z [INFO] inventory-service - Operation: cache_miss - Processing time: 740ms - RequestID: 1aqsbl773va +2025-06-18T14:03:06.981Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 1024ms - IP: 192.168.79.143 - User: user_1075 - RequestID: kwwyxdqcvz +2025-06-18T14:03:07.081Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 163ms - IP: 192.168.211.72 - User: user_1046 - RequestID: wll4gvacies +2025-06-18T14:03:07.181Z [DEBUG] auth-service - Operation: order_created - Processing time: 457ms - RequestID: 0ehlar5k30kf +2025-06-18T14:03:07.281Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 201 - Response time: 514ms - IP: 192.168.113.218 - User: user_1038 - RequestID: jvrqivj5y5a +2025-06-18T14:03:07.381Z [INFO] user-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1246ms - IP: 192.168.147.171 - User: user_1064 - RequestID: zpdg9gjwh4o +2025-06-18T14:03:07.481Z [INFO] auth-service - Operation: inventory_updated - Processing time: 823ms - RequestID: cvwn79vfbd +2025-06-18T14:03:07.581Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 336ms - RequestID: a4pv2thhjg7 +2025-06-18T14:03:07.681Z [TRACE] auth-service - Database SELECT on payments - Execution time: 273ms - Rows affected: 24 - RequestID: l7rli07j2vk +2025-06-18T14:03:07.781Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 401 - Response time: 1794ms - IP: 192.168.189.103 - User: user_1031 - RequestID: 57dlpc4rdvp +2025-06-18T14:03:07.881Z [TRACE] user-service - POST /api/v1/auth/login - Status: 400 - Response time: 1533ms - IP: 192.168.174.114 - User: user_1098 - RequestID: at4nj5mrm6b +2025-06-18T14:03:07.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 208ms - RequestID: mey53321o8 +2025-06-18T14:03:08.081Z [TRACE] order-service - Auth event: login_failed - User: user_1017 - IP: 192.168.138.123 - RequestID: 281wu9xogz +2025-06-18T14:03:08.181Z [INFO] notification-service - Operation: order_created - Processing time: 961ms - RequestID: s8l1259nvt8 +2025-06-18T14:03:08.281Z [INFO] auth-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.46.63 - RequestID: d0ddu5tu6io +2025-06-18T14:03:08.381Z [INFO] notification-service - Database SELECT on users - Execution time: 306ms - Rows affected: 96 - RequestID: 7w53sain2w4 +2025-06-18T14:03:08.481Z [INFO] inventory-service - Database DELETE on orders - Execution time: 295ms - Rows affected: 19 - RequestID: bmggdh344jb +2025-06-18T14:03:08.581Z [INFO] order-service - Operation: cache_miss - Processing time: 812ms - RequestID: du195tpt2lw +2025-06-18T14:03:08.681Z [INFO] user-service - Operation: order_created - Processing time: 84ms - RequestID: 6dbluhvt7r6 +2025-06-18T14:03:08.781Z [INFO] payment-service - Auth event: login_success - User: user_1031 - IP: 192.168.46.63 - RequestID: xbztks02i3f +2025-06-18T14:03:08.881Z [INFO] payment-service - DELETE /api/v1/users - Status: 502 - Response time: 1289ms - IP: 192.168.11.60 - User: user_1085 - RequestID: atv4h9zvktc +2025-06-18T14:03:08.981Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 462ms - Rows affected: 53 - RequestID: ujvu6idux5d +2025-06-18T14:03:09.081Z [TRACE] auth-service - PUT /api/v1/users - Status: 502 - Response time: 776ms - IP: 192.168.46.63 - User: user_1047 - RequestID: wto030l4r7 +2025-06-18T14:03:09.181Z [TRACE] user-service - Database SELECT on payments - Execution time: 197ms - Rows affected: 24 - RequestID: qmizdd7hy1g +2025-06-18T14:03:09.281Z [DEBUG] payment-service - POST /api/v1/payments - Status: 200 - Response time: 1335ms - IP: 192.168.46.63 - User: user_1088 - RequestID: diumrenp1fi +2025-06-18T14:03:09.381Z [TRACE] auth-service - Database INSERT on payments - Execution time: 152ms - Rows affected: 9 - RequestID: h1qlnxo3rfm +2025-06-18T14:03:09.481Z [TRACE] order-service - Operation: cache_hit - Processing time: 550ms - RequestID: 00tn3ata5yf9 +2025-06-18T14:03:09.581Z [TRACE] user-service - Auth event: logout - User: user_1050 - IP: 192.168.159.94 - RequestID: fwvvpe8eope +2025-06-18T14:03:09.681Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 39ms - IP: 192.168.36.218 - User: user_1049 - RequestID: zbttppxmzhl +2025-06-18T14:03:09.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.81.206 - RequestID: psqxfv7fz9j +2025-06-18T14:03:09.881Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 401 - Response time: 884ms - IP: 192.168.30.79 - User: user_1004 - RequestID: 2qxdc40ny3t +2025-06-18T14:03:09.981Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1779ms - IP: 192.168.28.146 - User: user_1046 - RequestID: ngnapp5sfti +2025-06-18T14:03:10.081Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 503 - Response time: 1743ms - IP: 192.168.138.123 - User: user_1033 - RequestID: mh7regms6up +2025-06-18T14:03:10.181Z [INFO] payment-service - Auth event: login_failed - User: user_1083 - IP: 192.168.194.41 - RequestID: 1scaxw9hrw +2025-06-18T14:03:10.281Z [TRACE] user-service - POST /api/v1/payments - Status: 404 - Response time: 1613ms - IP: 192.168.30.79 - User: user_1053 - RequestID: iw4783486k +2025-06-18T14:03:10.381Z [DEBUG] order-service - Auth event: password_change - User: user_1013 - IP: 192.168.159.94 - RequestID: vbossy7toah +2025-06-18T14:03:10.481Z [DEBUG] user-service - Operation: cache_miss - Processing time: 473ms - RequestID: kwz46lprrqn +2025-06-18T14:03:10.581Z [TRACE] auth-service - Auth event: login_success - User: user_1082 - IP: 192.168.36.218 - RequestID: lbkovethch9 +2025-06-18T14:03:10.681Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 500 - Response time: 636ms - IP: 192.168.196.226 - User: user_1037 - RequestID: vsn0ntpah7 +2025-06-18T14:03:10.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.138.123 - RequestID: 9jz8ubvdewq +2025-06-18T14:03:10.881Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 156ms - Rows affected: 64 - RequestID: czf8wt65sqg +2025-06-18T14:03:10.981Z [TRACE] inventory-service - Database SELECT on users - Execution time: 470ms - Rows affected: 64 - RequestID: x0ljkkdjp5q +2025-06-18T14:03:11.081Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 503 - Response time: 266ms - IP: 192.168.167.32 - User: user_1000 - RequestID: wz05890anc +2025-06-18T14:03:11.181Z [INFO] order-service - Auth event: password_change - User: user_1003 - IP: 192.168.79.141 - RequestID: i24c5grjrb +2025-06-18T14:03:11.281Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 564ms - IP: 192.168.147.171 - User: user_1042 - RequestID: svb84bvp41 +2025-06-18T14:03:11.381Z [TRACE] inventory-service - Database DELETE on products - Execution time: 160ms - Rows affected: 67 - RequestID: jcdi3874ed +2025-06-18T14:03:11.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.30.79 - RequestID: cu4rxquxpdf +2025-06-18T14:03:11.581Z [TRACE] auth-service - Operation: email_sent - Processing time: 184ms - RequestID: cahx4ja7dds +2025-06-18T14:03:11.681Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 178ms - Rows affected: 10 - RequestID: b0ukiacuipp +2025-06-18T14:03:11.781Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 663ms - RequestID: a2y5rjtc67j +2025-06-18T14:03:11.881Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 103ms - Rows affected: 40 - RequestID: p598oa9mxjg +2025-06-18T14:03:11.981Z [DEBUG] order-service - Auth event: logout - User: user_1050 - IP: 192.168.189.103 - RequestID: feg5pddziac +2025-06-18T14:03:12.081Z [TRACE] payment-service - POST /api/v1/orders - Status: 403 - Response time: 436ms - IP: 192.168.138.123 - User: user_1031 - RequestID: l4fmtffgoz +2025-06-18T14:03:12.181Z [DEBUG] payment-service - Operation: email_sent - Processing time: 522ms - RequestID: 17ain96h0br +2025-06-18T14:03:12.281Z [TRACE] payment-service - DELETE /api/v1/users - Status: 200 - Response time: 21ms - IP: 192.168.189.103 - User: user_1067 - RequestID: ezkyfwnke0t +2025-06-18T14:03:12.381Z [INFO] auth-service - Database INSERT on payments - Execution time: 110ms - Rows affected: 63 - RequestID: 0nofmz6wxryk +2025-06-18T14:03:12.481Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 465ms - RequestID: p9vck5yhazm +2025-06-18T14:03:12.581Z [DEBUG] notification-service - POST /api/v1/payments - Status: 201 - Response time: 837ms - IP: 192.168.240.169 - User: user_1058 - RequestID: oinytrx5x7r +2025-06-18T14:03:12.681Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 481ms - Rows affected: 35 - RequestID: rx9hyedth5f +2025-06-18T14:03:12.781Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 399ms - Rows affected: 29 - RequestID: 69qvpd9nrlr +2025-06-18T14:03:12.881Z [INFO] order-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.104.37 - RequestID: c66io88sb5i +2025-06-18T14:03:12.981Z [DEBUG] user-service - Auth event: logout - User: user_1056 - IP: 192.168.10.184 - RequestID: kmxsxn964q +2025-06-18T14:03:13.081Z [INFO] notification-service - Operation: order_created - Processing time: 711ms - RequestID: bct7aj5imk8 +2025-06-18T14:03:13.181Z [INFO] auth-service - Database INSERT on products - Execution time: 279ms - Rows affected: 50 - RequestID: nk6pjh0y08n +2025-06-18T14:03:13.281Z [TRACE] auth-service - PATCH /api/v1/users - Status: 500 - Response time: 339ms - IP: 192.168.170.215 - User: user_1003 - RequestID: ikvkrzf6a0k +2025-06-18T14:03:13.381Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1002 - IP: 192.168.144.38 - RequestID: 424f1uk2nkn +2025-06-18T14:03:13.481Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 497ms - IP: 192.168.97.87 - User: user_1007 - RequestID: 0rrxgnclr5xe +2025-06-18T14:03:13.581Z [TRACE] payment-service - PUT /api/v1/payments - Status: 401 - Response time: 1540ms - IP: 192.168.64.33 - User: user_1076 - RequestID: w83m0jwblh +2025-06-18T14:03:13.681Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 550ms - RequestID: kgh6jgywghm +2025-06-18T14:03:13.781Z [TRACE] order-service - Database UPDATE on users - Execution time: 395ms - Rows affected: 22 - RequestID: wxr5dzsz0x +2025-06-18T14:03:13.881Z [INFO] inventory-service - Operation: cache_hit - Processing time: 672ms - RequestID: tmp7fogpqr +2025-06-18T14:03:13.981Z [INFO] auth-service - Operation: order_created - Processing time: 62ms - RequestID: oftn1p74o4b +2025-06-18T14:03:14.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 996ms - RequestID: x5yumbjmuxe +2025-06-18T14:03:14.181Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 384ms - IP: 192.168.138.123 - User: user_1077 - RequestID: dt1iygu8x3m +2025-06-18T14:03:14.281Z [TRACE] inventory-service - Auth event: logout - User: user_1088 - IP: 192.168.113.218 - RequestID: 26bqks7ik3fh +2025-06-18T14:03:14.381Z [INFO] order-service - Database SELECT on products - Execution time: 156ms - Rows affected: 86 - RequestID: 25r1z9z3v2p +2025-06-18T14:03:14.481Z [INFO] order-service - Auth event: login_success - User: user_1075 - IP: 192.168.44.5 - RequestID: hnbvo428i56 +2025-06-18T14:03:14.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 980ms - RequestID: mze1u615rj +2025-06-18T14:03:14.681Z [INFO] order-service - Operation: order_created - Processing time: 73ms - RequestID: 20mxhlmpmfu +2025-06-18T14:03:14.781Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 327ms - Rows affected: 63 - RequestID: 7915m4mnh82 +2025-06-18T14:03:14.881Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1233ms - IP: 192.168.53.133 - User: user_1005 - RequestID: m6ssc4mict +2025-06-18T14:03:14.981Z [DEBUG] notification-service - Operation: email_sent - Processing time: 724ms - RequestID: ii81319wtp +2025-06-18T14:03:15.081Z [TRACE] order-service - Operation: order_created - Processing time: 1016ms - RequestID: h6nepw5jez +2025-06-18T14:03:15.181Z [DEBUG] order-service - Database INSERT on products - Execution time: 106ms - Rows affected: 24 - RequestID: rjy04mncj3s +2025-06-18T14:03:15.281Z [DEBUG] inventory-service - GET /api/v1/users - Status: 404 - Response time: 555ms - IP: 192.168.30.79 - User: user_1076 - RequestID: s41hwqkyw7 +2025-06-18T14:03:15.381Z [INFO] payment-service - Database INSERT on sessions - Execution time: 147ms - Rows affected: 13 - RequestID: 0gppuinxlf +2025-06-18T14:03:15.481Z [DEBUG] notification-service - Operation: order_created - Processing time: 679ms - RequestID: ca56j804w07 +2025-06-18T14:03:15.581Z [DEBUG] user-service - POST /api/v1/orders - Status: 503 - Response time: 1222ms - IP: 192.168.32.38 - User: user_1048 - RequestID: o82ntnzq4ka +2025-06-18T14:03:15.681Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 381ms - Rows affected: 90 - RequestID: 29tgxedo8dj +2025-06-18T14:03:15.781Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 1609ms - IP: 192.168.211.72 - User: user_1026 - RequestID: 4ywo7zfc0ar +2025-06-18T14:03:15.881Z [DEBUG] auth-service - Operation: order_created - Processing time: 132ms - RequestID: i7506umpwda +2025-06-18T14:03:15.981Z [TRACE] user-service - Auth event: logout - User: user_1065 - IP: 192.168.133.7 - RequestID: ebh92hvuwvf +2025-06-18T14:03:16.081Z [TRACE] user-service - Operation: cache_hit - Processing time: 568ms - RequestID: ipjz7fnu5o +2025-06-18T14:03:16.181Z [TRACE] payment-service - Operation: email_sent - Processing time: 189ms - RequestID: pgoltzuxtt +2025-06-18T14:03:16.281Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 17ms - Rows affected: 59 - RequestID: 06gdz1umh4j3 +2025-06-18T14:03:16.381Z [INFO] notification-service - Operation: email_sent - Processing time: 586ms - RequestID: tftwheb4mgs +2025-06-18T14:03:16.481Z [DEBUG] user-service - Operation: cache_miss - Processing time: 586ms - RequestID: ijljrrutnbh +2025-06-18T14:03:16.581Z [TRACE] payment-service - Operation: payment_processed - Processing time: 955ms - RequestID: grvr8c9z23l +2025-06-18T14:03:16.681Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 503 - Response time: 421ms - IP: 192.168.100.240 - User: user_1052 - RequestID: 3ww16yae2jj +2025-06-18T14:03:16.781Z [TRACE] notification-service - Auth event: login_failed - User: user_1027 - IP: 192.168.144.38 - RequestID: d9hsyuydkja +2025-06-18T14:03:16.881Z [INFO] payment-service - Operation: order_created - Processing time: 585ms - RequestID: xfs04lmg71b +2025-06-18T14:03:16.981Z [DEBUG] notification-service - Database DELETE on products - Execution time: 120ms - Rows affected: 2 - RequestID: 2o5n1g6lwn2 +2025-06-18T14:03:17.081Z [TRACE] payment-service - Operation: order_created - Processing time: 77ms - RequestID: gm50wi0xvv7 +2025-06-18T14:03:17.181Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 878ms - IP: 192.168.227.233 - User: user_1018 - RequestID: 8auhc42oiy6 +2025-06-18T14:03:17.281Z [INFO] user-service - Auth event: login_success - User: user_1058 - IP: 192.168.100.240 - RequestID: ri72pq8svg +2025-06-18T14:03:17.381Z [INFO] order-service - Operation: webhook_sent - Processing time: 680ms - RequestID: on9fy9f3m3 +2025-06-18T14:03:17.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.85.229 - RequestID: wkk6995uufj +2025-06-18T14:03:17.581Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 401 - Response time: 387ms - IP: 192.168.194.41 - User: user_1071 - RequestID: 5q71d8gp7k5 +2025-06-18T14:03:17.681Z [DEBUG] payment-service - Auth event: login_success - User: user_1064 - IP: 192.168.147.171 - RequestID: beluv19mizm +2025-06-18T14:03:17.781Z [INFO] user-service - Operation: webhook_sent - Processing time: 433ms - RequestID: mj0n241jx8d +2025-06-18T14:03:17.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.133.7 - RequestID: byv3jljj0a8 +2025-06-18T14:03:17.981Z [TRACE] user-service - GET /api/v1/users - Status: 200 - Response time: 1118ms - IP: 192.168.240.169 - User: user_1070 - RequestID: 2hb5qn0tbk4 +2025-06-18T14:03:18.081Z [TRACE] payment-service - Auth event: logout - User: user_1052 - IP: 192.168.159.94 - RequestID: wp8l3msghaj +2025-06-18T14:03:18.181Z [DEBUG] notification-service - POST /api/v1/orders - Status: 502 - Response time: 961ms - IP: 192.168.36.218 - User: user_1000 - RequestID: mx3z9yto9nl +2025-06-18T14:03:18.281Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 500ms - Rows affected: 20 - RequestID: uoxms60el7n +2025-06-18T14:03:18.381Z [DEBUG] order-service - Auth event: login_success - User: user_1072 - IP: 192.168.11.60 - RequestID: m393xmhy6g +2025-06-18T14:03:18.481Z [TRACE] auth-service - GET /api/v1/payments - Status: 502 - Response time: 640ms - IP: 192.168.30.79 - User: user_1008 - RequestID: 2ygeeb7b23p +2025-06-18T14:03:18.581Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.240.169 - RequestID: 1aqcrpvqcvg +2025-06-18T14:03:18.681Z [TRACE] payment-service - Operation: cache_miss - Processing time: 72ms - RequestID: 1261xds87fma +2025-06-18T14:03:18.781Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 391ms - Rows affected: 98 - RequestID: s7b4f6a6vk +2025-06-18T14:03:18.881Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 799ms - RequestID: cy2mune0188 +2025-06-18T14:03:18.981Z [INFO] notification-service - Database UPDATE on products - Execution time: 487ms - Rows affected: 11 - RequestID: ji2c3aa84e +2025-06-18T14:03:19.081Z [DEBUG] payment-service - Database SELECT on products - Execution time: 412ms - Rows affected: 15 - RequestID: 9oglad3hmv5 +2025-06-18T14:03:19.181Z [TRACE] order-service - POST /api/v1/auth/login - Status: 503 - Response time: 586ms - IP: 192.168.196.226 - User: user_1015 - RequestID: x8nuji4il4k +2025-06-18T14:03:19.281Z [TRACE] notification-service - Auth event: login_failed - User: user_1059 - IP: 192.168.211.72 - RequestID: o091ncgbfyn +2025-06-18T14:03:19.381Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 164ms - Rows affected: 67 - RequestID: kyacctmz0vp +2025-06-18T14:03:19.481Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 177ms - RequestID: gzw0w58jn1l +2025-06-18T14:03:19.581Z [TRACE] user-service - Database DELETE on orders - Execution time: 53ms - Rows affected: 87 - RequestID: sjcjyuszetq +2025-06-18T14:03:19.681Z [DEBUG] auth-service - POST /api/v1/orders - Status: 502 - Response time: 89ms - IP: 192.168.44.5 - User: user_1082 - RequestID: r6cm4ucmqg +2025-06-18T14:03:19.781Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 910ms - RequestID: d1u7yrfsies +2025-06-18T14:03:19.881Z [DEBUG] user-service - Auth event: password_change - User: user_1010 - IP: 192.168.141.100 - RequestID: jw2kgn14wab +2025-06-18T14:03:19.981Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 404 - Response time: 873ms - IP: 192.168.31.117 - User: user_1004 - RequestID: d35g2g15mb +2025-06-18T14:03:20.081Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 404 - Response time: 153ms - IP: 192.168.10.184 - User: user_1034 - RequestID: cd8mzgyx315 +2025-06-18T14:03:20.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1080 - IP: 192.168.227.233 - RequestID: flun3ni813r +2025-06-18T14:03:20.281Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1034ms - IP: 192.168.235.117 - User: user_1004 - RequestID: yxt39eiolcs +2025-06-18T14:03:20.381Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1505ms - IP: 192.168.227.233 - User: user_1016 - RequestID: zoibhut77c +2025-06-18T14:03:20.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 108ms - RequestID: 0j6861mg58f4 +2025-06-18T14:03:20.581Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 503 - Response time: 1678ms - IP: 192.168.187.199 - User: user_1061 - RequestID: 7bzr7tt0cnj +2025-06-18T14:03:20.681Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 404 - Response time: 602ms - IP: 192.168.147.171 - User: user_1093 - RequestID: ijxljyov1ah +2025-06-18T14:03:20.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.64.33 - RequestID: 53l9mf79qeg +2025-06-18T14:03:20.881Z [TRACE] order-service - Operation: webhook_sent - Processing time: 1039ms - RequestID: bvimydf7evr +2025-06-18T14:03:20.981Z [TRACE] user-service - Operation: webhook_sent - Processing time: 586ms - RequestID: q8vyz2pxoin +2025-06-18T14:03:21.081Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1722ms - IP: 192.168.187.199 - User: user_1026 - RequestID: xtkxfng00m +2025-06-18T14:03:21.181Z [INFO] inventory-service - Operation: payment_processed - Processing time: 153ms - RequestID: kfoxe9ygubq +2025-06-18T14:03:21.281Z [TRACE] inventory-service - Database SELECT on users - Execution time: 404ms - Rows affected: 28 - RequestID: zdsth6lke5l +2025-06-18T14:03:21.381Z [INFO] user-service - Database DELETE on payments - Execution time: 140ms - Rows affected: 47 - RequestID: y34p9jfeee +2025-06-18T14:03:21.481Z [TRACE] auth-service - GET /api/v1/orders - Status: 404 - Response time: 176ms - IP: 192.168.100.240 - User: user_1086 - RequestID: 510le1ybjut +2025-06-18T14:03:21.581Z [INFO] notification-service - Operation: email_sent - Processing time: 505ms - RequestID: gylpox3bew +2025-06-18T14:03:21.681Z [TRACE] order-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.81.206 - RequestID: iq37bsdej9q +2025-06-18T14:03:21.781Z [TRACE] notification-service - Database DELETE on orders - Execution time: 430ms - Rows affected: 82 - RequestID: 3brdq57n0kf +2025-06-18T14:03:21.881Z [TRACE] order-service - Operation: notification_queued - Processing time: 917ms - RequestID: kk7wr75obpe +2025-06-18T14:03:21.981Z [INFO] order-service - PATCH /api/v1/inventory - Status: 201 - Response time: 474ms - IP: 192.168.13.72 - User: user_1083 - RequestID: 2f8jukpy6g9 +2025-06-18T14:03:22.081Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1808ms - IP: 192.168.36.218 - User: user_1085 - RequestID: r0c8t0hrjh +2025-06-18T14:03:22.181Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 488ms - Rows affected: 56 - RequestID: xy2xgvsbvfa +2025-06-18T14:03:22.281Z [TRACE] order-service - PATCH /api/v1/orders - Status: 401 - Response time: 1194ms - IP: 192.168.32.38 - User: user_1088 - RequestID: yydcj0pqj09 +2025-06-18T14:03:22.381Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 467ms - Rows affected: 20 - RequestID: ng820haqrd +2025-06-18T14:03:22.481Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1388ms - IP: 192.168.196.226 - User: user_1022 - RequestID: 9cvfb2wykx +2025-06-18T14:03:22.581Z [INFO] order-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.174.114 - RequestID: 9g64zrbntwo +2025-06-18T14:03:22.681Z [INFO] auth-service - Auth event: login_success - User: user_1047 - IP: 192.168.227.77 - RequestID: hbdbf46cuu7 +2025-06-18T14:03:22.781Z [INFO] auth-service - POST /api/v1/orders - Status: 503 - Response time: 1356ms - IP: 192.168.46.63 - User: user_1043 - RequestID: jpdkuvd6slq +2025-06-18T14:03:22.881Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 657ms - RequestID: 24f3h6ujm76 +2025-06-18T14:03:22.981Z [INFO] notification-service - GET /api/v1/users - Status: 400 - Response time: 500ms - IP: 192.168.227.77 - User: user_1094 - RequestID: ue2np2n379i +2025-06-18T14:03:23.081Z [DEBUG] order-service - GET /api/v1/inventory - Status: 404 - Response time: 1105ms - IP: 192.168.28.146 - User: user_1072 - RequestID: z58zuvf5tuf +2025-06-18T14:03:23.181Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 134ms - Rows affected: 77 - RequestID: 6g4zplb5i2q +2025-06-18T14:03:23.281Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 18ms - Rows affected: 33 - RequestID: tfwhihuvfwh +2025-06-18T14:03:23.381Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 335ms - RequestID: 9a4li5dsi5 +2025-06-18T14:03:23.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.1.152 - RequestID: kgp7kfysn2 +2025-06-18T14:03:23.581Z [TRACE] user-service - Auth event: logout - User: user_1057 - IP: 192.168.81.206 - RequestID: pxrjqahq0l +2025-06-18T14:03:23.681Z [DEBUG] auth-service - Operation: email_sent - Processing time: 144ms - RequestID: d3r8y9xhf79 +2025-06-18T14:03:23.781Z [INFO] order-service - GET /api/v1/inventory - Status: 503 - Response time: 1392ms - IP: 192.168.196.226 - User: user_1032 - RequestID: j2r9ab0xjt +2025-06-18T14:03:23.881Z [INFO] order-service - PUT /api/v1/inventory - Status: 502 - Response time: 1741ms - IP: 192.168.33.76 - User: user_1079 - RequestID: xnhg2hvdnuj +2025-06-18T14:03:23.981Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 201 - Response time: 2000ms - IP: 192.168.36.218 - User: user_1017 - RequestID: iznk659fw4d +2025-06-18T14:03:24.081Z [TRACE] payment-service - Auth event: password_change - User: user_1084 - IP: 192.168.235.117 - RequestID: a23b9ua2i65 +2025-06-18T14:03:24.181Z [INFO] notification-service - Database INSERT on payments - Execution time: 180ms - Rows affected: 84 - RequestID: fzvp3hfian8 +2025-06-18T14:03:24.281Z [INFO] order-service - Operation: cache_miss - Processing time: 128ms - RequestID: y222kfk4bx +2025-06-18T14:03:24.381Z [DEBUG] notification-service - GET /api/v1/orders - Status: 404 - Response time: 1127ms - IP: 192.168.13.72 - User: user_1074 - RequestID: 7n523lkhqeg +2025-06-18T14:03:24.481Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1094ms - IP: 192.168.53.133 - User: user_1057 - RequestID: iwl1ix7qtwa +2025-06-18T14:03:24.581Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1335ms - IP: 192.168.167.32 - User: user_1027 - RequestID: em1imqz3fqa +2025-06-18T14:03:24.681Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 658ms - RequestID: u8u9iur35zs +2025-06-18T14:03:24.781Z [DEBUG] payment-service - GET /api/v1/users - Status: 201 - Response time: 1876ms - IP: 192.168.194.41 - User: user_1088 - RequestID: r96vl41rwx +2025-06-18T14:03:24.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 286ms - RequestID: bq2jns37g9 +2025-06-18T14:03:24.981Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 450ms - Rows affected: 46 - RequestID: v0c5x4clnnk +2025-06-18T14:03:25.081Z [DEBUG] user-service - Auth event: logout - User: user_1039 - IP: 192.168.68.128 - RequestID: ly89rkx43yl +2025-06-18T14:03:25.181Z [INFO] notification-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.232.72 - RequestID: 138qpu5cxsyj +2025-06-18T14:03:25.281Z [INFO] payment-service - Auth event: logout - User: user_1006 - IP: 192.168.240.169 - RequestID: vwnpco3v8l +2025-06-18T14:03:25.381Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 250ms - Rows affected: 59 - RequestID: 6zxdbdbd9q3 +2025-06-18T14:03:25.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.13.72 - RequestID: ik6a3waflxg +2025-06-18T14:03:25.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 305ms - RequestID: 2q84vometuk +2025-06-18T14:03:25.681Z [INFO] auth-service - Database INSERT on orders - Execution time: 44ms - Rows affected: 68 - RequestID: ia4zjm5smc +2025-06-18T14:03:25.781Z [DEBUG] user-service - Database INSERT on orders - Execution time: 370ms - Rows affected: 60 - RequestID: s4mg43zchb8 +2025-06-18T14:03:25.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.97.87 - RequestID: s2eayfortnn +2025-06-18T14:03:25.981Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 400 - Response time: 93ms - IP: 192.168.167.32 - User: user_1017 - RequestID: dhcmbwv41xd +2025-06-18T14:03:26.081Z [TRACE] inventory-service - Auth event: login_success - User: user_1002 - IP: 192.168.10.184 - RequestID: q2zfw2bo7bq +2025-06-18T14:03:26.181Z [INFO] payment-service - POST /api/v1/inventory - Status: 200 - Response time: 1014ms - IP: 192.168.194.41 - User: user_1015 - RequestID: sckw6wf9s8g +2025-06-18T14:03:26.281Z [TRACE] payment-service - PUT /api/v1/users - Status: 503 - Response time: 1888ms - IP: 192.168.64.33 - User: user_1045 - RequestID: zhusrrpjetc +2025-06-18T14:03:26.381Z [DEBUG] payment-service - Auth event: logout - User: user_1001 - IP: 192.168.36.218 - RequestID: xtnfgctp9c +2025-06-18T14:03:26.481Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 161ms - Rows affected: 38 - RequestID: 8fs8r56vzce +2025-06-18T14:03:26.581Z [INFO] payment-service - Auth event: login_failed - User: user_1005 - IP: 192.168.113.218 - RequestID: plzsvgesq2r +2025-06-18T14:03:26.681Z [TRACE] order-service - Database INSERT on payments - Execution time: 122ms - Rows affected: 79 - RequestID: zapik3fx78 +2025-06-18T14:03:26.781Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 111ms - RequestID: ckj4icjmg55 +2025-06-18T14:03:26.881Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 105ms - Rows affected: 49 - RequestID: ff3j8wwm3zq +2025-06-18T14:03:26.981Z [TRACE] auth-service - Auth event: login_success - User: user_1002 - IP: 192.168.235.117 - RequestID: 0d9ab6e2gp4u +2025-06-18T14:03:27.081Z [INFO] inventory-service - Operation: order_created - Processing time: 553ms - RequestID: kgklxj5cv4g +2025-06-18T14:03:27.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1007 - IP: 192.168.31.117 - RequestID: m5osbqq3qe +2025-06-18T14:03:27.281Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 839ms - RequestID: 47bc9lii4m2 +2025-06-18T14:03:27.381Z [DEBUG] notification-service - Auth event: login_success - User: user_1018 - IP: 192.168.85.229 - RequestID: 62px61oqbnb +2025-06-18T14:03:27.481Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 441ms - IP: 192.168.189.103 - User: user_1025 - RequestID: 9tv42a19k46 +2025-06-18T14:03:27.581Z [DEBUG] order-service - Auth event: logout - User: user_1063 - IP: 192.168.64.33 - RequestID: qfyyetefng +2025-06-18T14:03:27.681Z [DEBUG] user-service - Database UPDATE on users - Execution time: 256ms - Rows affected: 28 - RequestID: nwap9wztbk +2025-06-18T14:03:27.781Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 56ms - Rows affected: 63 - RequestID: lk8w9rfi9g +2025-06-18T14:03:27.881Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1817ms - IP: 192.168.247.134 - User: user_1034 - RequestID: 1uux8bvmj3wj +2025-06-18T14:03:27.981Z [DEBUG] inventory-service - Operation: order_created - Processing time: 929ms - RequestID: euuzdsbpvoj +2025-06-18T14:03:28.081Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 77ms - Rows affected: 58 - RequestID: wua2ol91yxg +2025-06-18T14:03:28.181Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1993ms - IP: 192.168.14.77 - User: user_1047 - RequestID: bjzncwizmiv +2025-06-18T14:03:28.281Z [DEBUG] order-service - Auth event: password_change - User: user_1068 - IP: 192.168.211.72 - RequestID: hup6azz6n7h +2025-06-18T14:03:28.381Z [INFO] user-service - DELETE /api/v1/payments - Status: 400 - Response time: 1550ms - IP: 192.168.247.134 - User: user_1020 - RequestID: 840hv8qju4p +2025-06-18T14:03:28.481Z [TRACE] user-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.28.146 - RequestID: yttmcze2bf +2025-06-18T14:03:28.581Z [DEBUG] order-service - Database UPDATE on products - Execution time: 472ms - Rows affected: 7 - RequestID: 3ftyfdfb3s8 +2025-06-18T14:03:28.681Z [TRACE] payment-service - Operation: order_created - Processing time: 553ms - RequestID: e3bqr8ggj4 +2025-06-18T14:03:28.781Z [INFO] payment-service - Auth event: login_failed - User: user_1035 - IP: 192.168.30.79 - RequestID: fvtw2jll3ea +2025-06-18T14:03:28.881Z [INFO] user-service - Database DELETE on products - Execution time: 147ms - Rows affected: 89 - RequestID: seywg1bcmn +2025-06-18T14:03:28.981Z [INFO] inventory-service - Operation: order_created - Processing time: 805ms - RequestID: 39hw2mayol1 +2025-06-18T14:03:29.081Z [TRACE] order-service - POST /api/v1/orders - Status: 200 - Response time: 866ms - IP: 192.168.85.229 - User: user_1038 - RequestID: m7ul9u7ik8q +2025-06-18T14:03:29.181Z [INFO] auth-service - POST /api/v1/inventory - Status: 201 - Response time: 1077ms - IP: 192.168.10.184 - User: user_1007 - RequestID: 8c8taluynzp +2025-06-18T14:03:29.281Z [DEBUG] order-service - Database SELECT on products - Execution time: 248ms - Rows affected: 46 - RequestID: ecz7s3o1asf +2025-06-18T14:03:29.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1037 - IP: 192.168.196.226 - RequestID: m9m8x54ph7c +2025-06-18T14:03:29.481Z [INFO] auth-service - POST /api/v1/inventory - Status: 503 - Response time: 581ms - IP: 192.168.14.77 - User: user_1064 - RequestID: ae2s96e3pqm +2025-06-18T14:03:29.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.232.72 - RequestID: 1va5tncjlt +2025-06-18T14:03:29.681Z [TRACE] auth-service - Operation: order_created - Processing time: 520ms - RequestID: ra4jtwdqfzo +2025-06-18T14:03:29.781Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 73ms - RequestID: hsumnf2sefh +2025-06-18T14:03:29.881Z [INFO] payment-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.10.184 - RequestID: owvrkfmw9u +2025-06-18T14:03:29.981Z [INFO] notification-service - DELETE /api/v1/users - Status: 401 - Response time: 681ms - IP: 192.168.235.117 - User: user_1098 - RequestID: wmx5mmlnv38 +2025-06-18T14:03:30.081Z [TRACE] auth-service - Operation: payment_processed - Processing time: 398ms - RequestID: vyd8k2qsx4 +2025-06-18T14:03:30.181Z [TRACE] user-service - Operation: email_sent - Processing time: 350ms - RequestID: ajt5wyddqpq +2025-06-18T14:03:30.281Z [TRACE] auth-service - Operation: order_created - Processing time: 1004ms - RequestID: 4l5idrnvei7 +2025-06-18T14:03:30.381Z [INFO] payment-service - Database UPDATE on users - Execution time: 250ms - Rows affected: 14 - RequestID: wwsor9w582m +2025-06-18T14:03:30.481Z [TRACE] inventory-service - Operation: email_sent - Processing time: 854ms - RequestID: fnvsq3h7ikv +2025-06-18T14:03:30.581Z [DEBUG] payment-service - Operation: order_created - Processing time: 219ms - RequestID: 44m98cvbhir +2025-06-18T14:03:30.681Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 489ms - Rows affected: 59 - RequestID: uhsskwdxaqm +2025-06-18T14:03:30.781Z [TRACE] notification-service - POST /api/v1/inventory - Status: 401 - Response time: 1821ms - IP: 192.168.10.184 - User: user_1093 - RequestID: j8p7o7idu3h +2025-06-18T14:03:30.881Z [INFO] inventory-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.1.152 - RequestID: cpzwg8l69dw +2025-06-18T14:03:30.981Z [INFO] auth-service - Auth event: login_success - User: user_1040 - IP: 192.168.141.100 - RequestID: cjdjv7sozqt +2025-06-18T14:03:31.081Z [TRACE] notification-service - Auth event: login_failed - User: user_1026 - IP: 192.168.31.117 - RequestID: xqxj04z6hgf +2025-06-18T14:03:31.181Z [TRACE] auth-service - Operation: notification_queued - Processing time: 479ms - RequestID: t2pl87jjeh +2025-06-18T14:03:31.281Z [DEBUG] order-service - Database DELETE on users - Execution time: 35ms - Rows affected: 20 - RequestID: xz9sx5fn5fk +2025-06-18T14:03:31.381Z [INFO] user-service - Operation: payment_processed - Processing time: 691ms - RequestID: 1s8t50rmua8 +2025-06-18T14:03:31.481Z [TRACE] order-service - Auth event: logout - User: user_1056 - IP: 192.168.68.128 - RequestID: t03e35h47p +2025-06-18T14:03:31.581Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 957ms - RequestID: rb2o2ecggh +2025-06-18T14:03:31.681Z [TRACE] auth-service - Operation: payment_processed - Processing time: 786ms - RequestID: 6gugy6n0uxe +2025-06-18T14:03:31.781Z [DEBUG] order-service - Auth event: login_success - User: user_1029 - IP: 192.168.31.117 - RequestID: lkn3b1jzj3g +2025-06-18T14:03:31.881Z [TRACE] notification-service - Database INSERT on payments - Execution time: 326ms - Rows affected: 1 - RequestID: mw279n4sorf +2025-06-18T14:03:31.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 222ms - RequestID: wlwev86xxl +2025-06-18T14:03:32.081Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 500ms - Rows affected: 36 - RequestID: xkgoalquva +2025-06-18T14:03:32.181Z [DEBUG] order-service - Auth event: password_change - User: user_1001 - IP: 192.168.32.38 - RequestID: slc76epca3 +2025-06-18T14:03:32.281Z [INFO] auth-service - Operation: cache_miss - Processing time: 562ms - RequestID: q6jausbhe8 +2025-06-18T14:03:32.381Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1635ms - IP: 192.168.79.143 - User: user_1032 - RequestID: xdwxayrq3f +2025-06-18T14:03:32.481Z [TRACE] inventory-service - Auth event: password_change - User: user_1091 - IP: 192.168.167.32 - RequestID: ia9jr91on6 +2025-06-18T14:03:32.581Z [INFO] notification-service - Auth event: login_success - User: user_1032 - IP: 192.168.97.87 - RequestID: t44iqze1ax +2025-06-18T14:03:32.681Z [INFO] auth-service - Operation: payment_processed - Processing time: 764ms - RequestID: iiwt5qv1gm +2025-06-18T14:03:32.781Z [TRACE] notification-service - Auth event: password_change - User: user_1095 - IP: 192.168.10.184 - RequestID: fuh3kk5smlr +2025-06-18T14:03:32.881Z [DEBUG] user-service - Database SELECT on payments - Execution time: 393ms - Rows affected: 12 - RequestID: 1zt2c3okne4 +2025-06-18T14:03:32.981Z [INFO] order-service - Database INSERT on sessions - Execution time: 115ms - Rows affected: 73 - RequestID: rmhcc57ehll +2025-06-18T14:03:33.081Z [TRACE] auth-service - Database INSERT on products - Execution time: 378ms - Rows affected: 42 - RequestID: 7hpst78h00d +2025-06-18T14:03:33.181Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 401 - Response time: 197ms - IP: 192.168.104.37 - User: user_1036 - RequestID: xks5n9gy6wi +2025-06-18T14:03:33.281Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 933ms - RequestID: xnqoz5lzgki +2025-06-18T14:03:33.381Z [INFO] order-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.14.77 - RequestID: xznmx1lpri +2025-06-18T14:03:33.481Z [INFO] user-service - Auth event: login_success - User: user_1082 - IP: 192.168.194.41 - RequestID: 7wvq9w8ha1g +2025-06-18T14:03:33.581Z [INFO] payment-service - Auth event: login_failed - User: user_1088 - IP: 192.168.227.233 - RequestID: ee8ey46zg98 +2025-06-18T14:03:33.681Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 191ms - Rows affected: 63 - RequestID: 7haa909aa7n +2025-06-18T14:03:33.781Z [DEBUG] payment-service - Auth event: login_failed - User: user_1016 - IP: 192.168.44.5 - RequestID: j7unei0fva +2025-06-18T14:03:33.881Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 399ms - IP: 192.168.68.158 - User: user_1075 - RequestID: 9mdndlie0lg +2025-06-18T14:03:33.981Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 423ms - RequestID: 0r400qvuvv6a +2025-06-18T14:03:34.081Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 74ms - Rows affected: 48 - RequestID: pwvpb0dgelo +2025-06-18T14:03:34.181Z [INFO] user-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1910ms - IP: 192.168.14.77 - User: user_1042 - RequestID: p97t03pnyce +2025-06-18T14:03:34.281Z [TRACE] auth-service - Auth event: password_change - User: user_1015 - IP: 192.168.174.114 - RequestID: 0navm32c87tg +2025-06-18T14:03:34.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1027 - IP: 192.168.159.94 - RequestID: h3x9q9r5s4p +2025-06-18T14:03:34.481Z [DEBUG] user-service - Database SELECT on payments - Execution time: 292ms - Rows affected: 86 - RequestID: nkdqscm6am +2025-06-18T14:03:34.581Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 201 - Response time: 1698ms - IP: 192.168.174.114 - User: user_1071 - RequestID: c1pku4m1fzh +2025-06-18T14:03:34.681Z [TRACE] user-service - Operation: order_created - Processing time: 415ms - RequestID: u7ea486duqh +2025-06-18T14:03:34.781Z [TRACE] payment-service - Auth event: logout - User: user_1042 - IP: 192.168.167.32 - RequestID: 44o7pb8lkzx +2025-06-18T14:03:34.881Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 197ms - RequestID: rukkyy4qrb +2025-06-18T14:03:34.981Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 190ms - Rows affected: 84 - RequestID: jo8na1orpcb +2025-06-18T14:03:35.081Z [INFO] notification-service - GET /api/v1/payments - Status: 503 - Response time: 819ms - IP: 192.168.189.103 - User: user_1070 - RequestID: 2jlinqsxgw6 +2025-06-18T14:03:35.181Z [DEBUG] order-service - Operation: notification_queued - Processing time: 989ms - RequestID: d5grxsk6b1 +2025-06-18T14:03:35.281Z [DEBUG] auth-service - Auth event: logout - User: user_1024 - IP: 192.168.10.184 - RequestID: zfdykkljfas +2025-06-18T14:03:35.381Z [TRACE] order-service - PATCH /api/v1/payments - Status: 500 - Response time: 346ms - IP: 192.168.232.72 - User: user_1039 - RequestID: 3mfbwc6gfmu +2025-06-18T14:03:35.481Z [INFO] inventory-service - Database SELECT on products - Execution time: 242ms - Rows affected: 59 - RequestID: jyvro417qp +2025-06-18T14:03:35.581Z [TRACE] user-service - GET /api/v1/auth/login - Status: 200 - Response time: 289ms - IP: 192.168.44.5 - User: user_1073 - RequestID: jx0mcsv937b +2025-06-18T14:03:35.681Z [TRACE] payment-service - POST /api/v1/users - Status: 401 - Response time: 1146ms - IP: 192.168.30.79 - User: user_1011 - RequestID: gt3o1la37 +2025-06-18T14:03:35.781Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 120ms - Rows affected: 98 - RequestID: bev11e6mo2k +2025-06-18T14:03:35.881Z [TRACE] inventory-service - Auth event: login_success - User: user_1044 - IP: 192.168.79.116 - RequestID: 3tm4fsiq39c +2025-06-18T14:03:35.981Z [TRACE] user-service - Database INSERT on products - Execution time: 398ms - Rows affected: 81 - RequestID: j46pn0uq8c +2025-06-18T14:03:36.081Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 665ms - RequestID: hxsd6lpjyh +2025-06-18T14:03:36.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 530ms - RequestID: quc08lgv6ym +2025-06-18T14:03:36.281Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1378ms - IP: 192.168.85.229 - User: user_1042 - RequestID: l95fq6700l8 +2025-06-18T14:03:36.381Z [TRACE] inventory-service - Auth event: logout - User: user_1067 - IP: 192.168.68.128 - RequestID: t3842oi8wh +2025-06-18T14:03:36.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.247.134 - RequestID: hg6wm8g828 +2025-06-18T14:03:36.581Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.133.7 - RequestID: utamb85zupm +2025-06-18T14:03:36.681Z [INFO] notification-service - Database DELETE on payments - Execution time: 208ms - Rows affected: 90 - RequestID: j7olqafke9q +2025-06-18T14:03:36.781Z [DEBUG] inventory-service - Auth event: logout - User: user_1020 - IP: 192.168.97.87 - RequestID: bwpzgt2ilcl +2025-06-18T14:03:36.881Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 502 - Response time: 57ms - IP: 192.168.13.72 - User: user_1054 - RequestID: ej751p67h0q +2025-06-18T14:03:36.981Z [INFO] order-service - Database UPDATE on payments - Execution time: 33ms - Rows affected: 99 - RequestID: 227t7h4gi9r +2025-06-18T14:03:37.081Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 1383ms - IP: 192.168.232.72 - User: user_1072 - RequestID: v2cgs0agabh +2025-06-18T14:03:37.181Z [TRACE] payment-service - Auth event: password_change - User: user_1006 - IP: 192.168.30.79 - RequestID: yqbqpn0pl0d +2025-06-18T14:03:37.281Z [INFO] order-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1535ms - IP: 192.168.138.123 - User: user_1047 - RequestID: zcf1e5madw +2025-06-18T14:03:37.381Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1854ms - IP: 192.168.174.114 - User: user_1064 - RequestID: sbg5fpsjo7 +2025-06-18T14:03:37.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 315ms - RequestID: n91rgiqym5 +2025-06-18T14:03:37.581Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1226ms - IP: 192.168.79.141 - User: user_1000 - RequestID: unlxp5asq2d +2025-06-18T14:03:37.681Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 197ms - Rows affected: 60 - RequestID: t66yl3czqyo +2025-06-18T14:03:37.781Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.64.33 - RequestID: 0cw8rr5k68i +2025-06-18T14:03:37.881Z [INFO] user-service - Database SELECT on users - Execution time: 98ms - Rows affected: 8 - RequestID: zb38j4d59ki +2025-06-18T14:03:37.981Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 485ms - RequestID: o0ll4l2kym +2025-06-18T14:03:38.081Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 315ms - Rows affected: 13 - RequestID: rdc0zbyifbi +2025-06-18T14:03:38.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1042 - IP: 192.168.229.123 - RequestID: 551r0kpwze6 +2025-06-18T14:03:38.281Z [INFO] payment-service - Auth event: logout - User: user_1028 - IP: 192.168.167.32 - RequestID: wbtljop24ya +2025-06-18T14:03:38.381Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 458ms - Rows affected: 34 - RequestID: vf4uz729qr +2025-06-18T14:03:38.481Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 240ms - Rows affected: 83 - RequestID: 68tm0fd8l9u +2025-06-18T14:03:38.581Z [TRACE] payment-service - Auth event: password_change - User: user_1054 - IP: 192.168.100.240 - RequestID: 7rzmrp44wnh +2025-06-18T14:03:38.681Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.147.171 - RequestID: 0uu7lbf05wj +2025-06-18T14:03:38.781Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1942ms - IP: 192.168.53.133 - User: user_1056 - RequestID: neewqyg2gto +2025-06-18T14:03:38.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 961ms - RequestID: dch7wo112y +2025-06-18T14:03:38.981Z [TRACE] payment-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.31.117 - RequestID: ebg66y5jo7q +2025-06-18T14:03:39.081Z [TRACE] user-service - Database SELECT on payments - Execution time: 297ms - Rows affected: 38 - RequestID: pa0xudj4kw8 +2025-06-18T14:03:39.181Z [INFO] user-service - Database DELETE on products - Execution time: 194ms - Rows affected: 78 - RequestID: ubnk9sllhc9 +2025-06-18T14:03:39.281Z [INFO] inventory-service - PUT /api/v1/payments - Status: 502 - Response time: 1063ms - IP: 192.168.33.76 - User: user_1029 - RequestID: 9nchmnp1ka +2025-06-18T14:03:39.381Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 502 - Response time: 183ms - IP: 192.168.227.233 - User: user_1085 - RequestID: 7baki72i2d +2025-06-18T14:03:39.481Z [TRACE] user-service - Database UPDATE on payments - Execution time: 399ms - Rows affected: 75 - RequestID: gp46dc6rejn +2025-06-18T14:03:39.581Z [TRACE] user-service - Operation: notification_queued - Processing time: 205ms - RequestID: 9mif7y4twc8 +2025-06-18T14:03:39.681Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 1010ms - RequestID: lp3xa6wjoz +2025-06-18T14:03:39.781Z [TRACE] order-service - Auth event: logout - User: user_1027 - IP: 192.168.64.33 - RequestID: i5paphchcz +2025-06-18T14:03:39.881Z [TRACE] user-service - Auth event: login_failed - User: user_1006 - IP: 192.168.158.144 - RequestID: qe3xo60os9o +2025-06-18T14:03:39.981Z [TRACE] order-service - Auth event: login_success - User: user_1088 - IP: 192.168.53.133 - RequestID: by49r9k8sr +2025-06-18T14:03:40.081Z [TRACE] user-service - Auth event: logout - User: user_1035 - IP: 192.168.133.7 - RequestID: xfwmshwr55 +2025-06-18T14:03:40.181Z [TRACE] auth-service - Database UPDATE on products - Execution time: 117ms - Rows affected: 21 - RequestID: h0gf6jf35gg +2025-06-18T14:03:40.281Z [INFO] order-service - GET /api/v1/orders - Status: 400 - Response time: 1827ms - IP: 192.168.32.38 - User: user_1064 - RequestID: cuzw326uugf +2025-06-18T14:03:40.381Z [TRACE] payment-service - Auth event: logout - User: user_1076 - IP: 192.168.113.218 - RequestID: hgb6jm22y2r +2025-06-18T14:03:40.481Z [INFO] order-service - Database DELETE on payments - Execution time: 117ms - Rows affected: 56 - RequestID: lpjmnfqieop +2025-06-18T14:03:40.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.79.116 - RequestID: zrftvfv3o6e +2025-06-18T14:03:40.681Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 424ms - Rows affected: 90 - RequestID: f6tc0xan7sb +2025-06-18T14:03:40.781Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 357ms - Rows affected: 15 - RequestID: min2a9nxego +2025-06-18T14:03:40.881Z [TRACE] payment-service - Auth event: password_change - User: user_1089 - IP: 192.168.235.117 - RequestID: gp8q0hnur0c +2025-06-18T14:03:40.981Z [INFO] auth-service - Database SELECT on products - Execution time: 273ms - Rows affected: 26 - RequestID: 55mi55zst3q +2025-06-18T14:03:41.081Z [DEBUG] user-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.229.123 - RequestID: 8t0y33irpyo +2025-06-18T14:03:41.181Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 1229ms - IP: 192.168.36.218 - User: user_1075 - RequestID: yv85zh4xkx +2025-06-18T14:03:41.281Z [INFO] inventory-service - PUT /api/v1/payments - Status: 503 - Response time: 1875ms - IP: 192.168.79.143 - User: user_1052 - RequestID: d7xx7megtvh +2025-06-18T14:03:41.381Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 403 - Response time: 1479ms - IP: 192.168.235.117 - User: user_1011 - RequestID: o0x480702fa +2025-06-18T14:03:41.481Z [INFO] notification-service - Auth event: logout - User: user_1004 - IP: 192.168.36.218 - RequestID: elbmtdqs4km +2025-06-18T14:03:41.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.159.94 - RequestID: swagwoklwzq +2025-06-18T14:03:41.681Z [INFO] order-service - Auth event: login_failed - User: user_1024 - IP: 192.168.10.184 - RequestID: jposezmes1r +2025-06-18T14:03:41.781Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 1043ms - RequestID: 8hurtkfdw7 +2025-06-18T14:03:41.881Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.167.32 - RequestID: l5dz5u3bl1t +2025-06-18T14:03:41.981Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 223ms - Rows affected: 93 - RequestID: 5mkenleera +2025-06-18T14:03:42.081Z [INFO] order-service - Operation: notification_queued - Processing time: 428ms - RequestID: choe9pvdab5 +2025-06-18T14:03:42.181Z [INFO] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 980ms - IP: 192.168.211.72 - User: user_1025 - RequestID: 22go9871jg2j +2025-06-18T14:03:42.281Z [INFO] payment-service - Operation: cache_hit - Processing time: 467ms - RequestID: rpc85oj9e1b +2025-06-18T14:03:42.381Z [INFO] order-service - Operation: cache_hit - Processing time: 537ms - RequestID: d0w7rgv5jmf +2025-06-18T14:03:42.481Z [TRACE] inventory-service - Auth event: login_failed - User: user_1071 - IP: 192.168.68.158 - RequestID: 4rbuotne2x4 +2025-06-18T14:03:42.581Z [INFO] notification-service - Auth event: login_success - User: user_1006 - IP: 192.168.33.76 - RequestID: grbde0zmlvr +2025-06-18T14:03:42.681Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 402ms - Rows affected: 81 - RequestID: njhc7h6gcke +2025-06-18T14:03:42.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1099 - IP: 192.168.32.38 - RequestID: bi6k8la9thc +2025-06-18T14:03:42.881Z [TRACE] payment-service - Auth event: login_failed - User: user_1003 - IP: 192.168.189.103 - RequestID: r7xw9qnahu +2025-06-18T14:03:42.981Z [TRACE] user-service - Auth event: logout - User: user_1043 - IP: 192.168.194.41 - RequestID: mivzrgkse1p +2025-06-18T14:03:43.081Z [TRACE] payment-service - POST /api/v1/users - Status: 503 - Response time: 366ms - IP: 192.168.1.152 - User: user_1036 - RequestID: 8x3ji0h7k44 +2025-06-18T14:03:43.181Z [INFO] user-service - Operation: webhook_sent - Processing time: 342ms - RequestID: qm7nsbu6kfk +2025-06-18T14:03:43.281Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 186ms - Rows affected: 49 - RequestID: 3j13awm8x5g +2025-06-18T14:03:43.381Z [DEBUG] notification-service - Operation: email_sent - Processing time: 483ms - RequestID: r3dle0tbqq +2025-06-18T14:03:43.481Z [DEBUG] order-service - Database INSERT on users - Execution time: 225ms - Rows affected: 23 - RequestID: ldp8zp925m +2025-06-18T14:03:43.581Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 400 - Response time: 585ms - IP: 192.168.170.215 - User: user_1038 - RequestID: xc473yhif08 +2025-06-18T14:03:43.681Z [TRACE] payment-service - Database DELETE on users - Execution time: 365ms - Rows affected: 79 - RequestID: h1obtp0vdzd +2025-06-18T14:03:43.781Z [INFO] payment-service - Auth event: login_success - User: user_1097 - IP: 192.168.79.141 - RequestID: 4zi0o40mrhw +2025-06-18T14:03:43.881Z [INFO] notification-service - Operation: inventory_updated - Processing time: 429ms - RequestID: kfodksltbpl +2025-06-18T14:03:43.981Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 503 - Response time: 520ms - IP: 192.168.68.158 - User: user_1085 - RequestID: 50tmd4kg6t9 +2025-06-18T14:03:44.081Z [TRACE] payment-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.189.103 - RequestID: wucujuqyti +2025-06-18T14:03:44.181Z [INFO] notification-service - Database SELECT on orders - Execution time: 63ms - Rows affected: 82 - RequestID: 5lmqn3q3k4a +2025-06-18T14:03:44.281Z [DEBUG] order-service - Auth event: login_success - User: user_1087 - IP: 192.168.44.5 - RequestID: zptla4pl1i +2025-06-18T14:03:44.381Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 200 - Response time: 955ms - IP: 192.168.64.33 - User: user_1016 - RequestID: 93gmewpwyfr +2025-06-18T14:03:44.481Z [INFO] payment-service - Auth event: login_failed - User: user_1059 - IP: 192.168.227.77 - RequestID: hn40koxa60t +2025-06-18T14:03:44.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 831ms - RequestID: zydbc56e408 +2025-06-18T14:03:44.681Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 1861ms - IP: 192.168.181.225 - User: user_1083 - RequestID: 25qpel0816u +2025-06-18T14:03:44.781Z [INFO] order-service - Operation: cache_miss - Processing time: 360ms - RequestID: c56fl7dfry8 +2025-06-18T14:03:44.881Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 16ms - Rows affected: 96 - RequestID: 718cntf6vom +2025-06-18T14:03:44.981Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1945ms - IP: 192.168.247.134 - User: user_1050 - RequestID: 3nhav584kns +2025-06-18T14:03:45.081Z [DEBUG] user-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.227.77 - RequestID: 4qrdp36hgul +2025-06-18T14:03:45.181Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 400 - Response time: 595ms - IP: 192.168.68.128 - User: user_1022 - RequestID: ov2sqgavs7e +2025-06-18T14:03:45.281Z [TRACE] payment-service - Auth event: login_success - User: user_1086 - IP: 192.168.13.72 - RequestID: on6f87uyr1d +2025-06-18T14:03:45.381Z [INFO] payment-service - Auth event: password_change - User: user_1015 - IP: 192.168.232.72 - RequestID: ywi00i18guc +2025-06-18T14:03:45.481Z [TRACE] inventory-service - Operation: order_created - Processing time: 808ms - RequestID: cfov8d2nqhw +2025-06-18T14:03:45.581Z [DEBUG] order-service - POST /api/v1/users - Status: 404 - Response time: 2001ms - IP: 192.168.240.169 - User: user_1088 - RequestID: gtrlq8oy24 +2025-06-18T14:03:45.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1029 - IP: 192.168.68.158 - RequestID: pudx2vxhra9 +2025-06-18T14:03:45.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 1046ms - RequestID: wgckyfu0f6 +2025-06-18T14:03:45.881Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 988ms - IP: 192.168.227.77 - User: user_1079 - RequestID: 75dg2zbqvvc +2025-06-18T14:03:45.981Z [DEBUG] notification-service - Database SELECT on products - Execution time: 318ms - Rows affected: 64 - RequestID: u05hl2xrmd +2025-06-18T14:03:46.081Z [TRACE] order-service - Database UPDATE on users - Execution time: 144ms - Rows affected: 38 - RequestID: xcuqir8kqic +2025-06-18T14:03:46.181Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 45ms - Rows affected: 21 - RequestID: 0rms432snjji +2025-06-18T14:03:46.281Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 1ms - Rows affected: 47 - RequestID: u1rwmi9biwl +2025-06-18T14:03:46.381Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 816ms - IP: 192.168.247.134 - User: user_1006 - RequestID: 4gngf43rk55 +2025-06-18T14:03:46.481Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1604ms - IP: 192.168.30.79 - User: user_1083 - RequestID: wzr2r0vd1rs +2025-06-18T14:03:46.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 388ms - RequestID: vuyxtib6dcn +2025-06-18T14:03:46.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.31.117 - RequestID: aqh5w9x2sbb +2025-06-18T14:03:46.781Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 292ms - IP: 192.168.133.7 - User: user_1075 - RequestID: afq9g32m5dn +2025-06-18T14:03:46.881Z [TRACE] user-service - Operation: webhook_sent - Processing time: 431ms - RequestID: e4hgyzgq0a +2025-06-18T14:03:46.981Z [TRACE] notification-service - Database DELETE on products - Execution time: 67ms - Rows affected: 74 - RequestID: 8q5ku0zpbfq +2025-06-18T14:03:47.081Z [INFO] user-service - Operation: email_sent - Processing time: 369ms - RequestID: 3rbnoday8a2 +2025-06-18T14:03:47.181Z [DEBUG] user-service - Operation: email_sent - Processing time: 350ms - RequestID: 5k7gk3trj2 +2025-06-18T14:03:47.281Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1207ms - IP: 192.168.211.72 - User: user_1070 - RequestID: m3vm5posu4d +2025-06-18T14:03:47.381Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 544ms - RequestID: mflmyhoize +2025-06-18T14:03:47.481Z [TRACE] inventory-service - Auth event: login_success - User: user_1009 - IP: 192.168.36.218 - RequestID: g49uwdt77sl +2025-06-18T14:03:47.581Z [INFO] user-service - PUT /api/v1/orders - Status: 200 - Response time: 1064ms - IP: 192.168.187.199 - User: user_1090 - RequestID: urwcdjkaj2a +2025-06-18T14:03:47.681Z [DEBUG] user-service - Auth event: login_failed - User: user_1021 - IP: 192.168.147.171 - RequestID: hc16icsp9rk +2025-06-18T14:03:47.781Z [DEBUG] inventory-service - Operation: order_created - Processing time: 279ms - RequestID: z1g4ubs9s7 +2025-06-18T14:03:47.881Z [TRACE] payment-service - POST /api/v1/users - Status: 201 - Response time: 1626ms - IP: 192.168.79.116 - User: user_1028 - RequestID: 5yb3fyo4zfy +2025-06-18T14:03:47.981Z [INFO] notification-service - Operation: cache_hit - Processing time: 63ms - RequestID: y7t016b4od +2025-06-18T14:03:48.081Z [INFO] auth-service - Database DELETE on orders - Execution time: 431ms - Rows affected: 91 - RequestID: dad8xo4ponk +2025-06-18T14:03:48.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 767ms - RequestID: 0kp4yvnlqwm +2025-06-18T14:03:48.281Z [INFO] inventory-service - GET /api/v1/users - Status: 500 - Response time: 1066ms - IP: 192.168.189.103 - User: user_1099 - RequestID: jq68wloeogn +2025-06-18T14:03:48.381Z [DEBUG] user-service - Auth event: login_success - User: user_1051 - IP: 192.168.141.100 - RequestID: y9td6chr0yp +2025-06-18T14:03:48.481Z [TRACE] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 376ms - IP: 192.168.79.141 - User: user_1096 - RequestID: s4juph3xgpm +2025-06-18T14:03:48.581Z [TRACE] notification-service - Operation: email_sent - Processing time: 566ms - RequestID: 73p9fru75po +2025-06-18T14:03:48.681Z [DEBUG] user-service - Operation: cache_miss - Processing time: 584ms - RequestID: 2jkiighcfov +2025-06-18T14:03:48.781Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 335ms - Rows affected: 4 - RequestID: 8m66t03w0uf +2025-06-18T14:03:48.881Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 295ms - Rows affected: 88 - RequestID: t2uzuq5281g +2025-06-18T14:03:48.981Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 364ms - IP: 192.168.64.33 - User: user_1043 - RequestID: 5dxexgn5f4s +2025-06-18T14:03:49.081Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 142ms - Rows affected: 85 - RequestID: s4pnlhbynja +2025-06-18T14:03:49.181Z [INFO] auth-service - Operation: inventory_updated - Processing time: 595ms - RequestID: 53bal9tac08 +2025-06-18T14:03:49.281Z [INFO] auth-service - Auth event: password_change - User: user_1009 - IP: 192.168.1.152 - RequestID: jpw9lc5vg1f +2025-06-18T14:03:49.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1019 - IP: 192.168.14.77 - RequestID: exy75dzrlzs +2025-06-18T14:03:49.481Z [TRACE] user-service - Auth event: password_change - User: user_1088 - IP: 192.168.170.215 - RequestID: sdowis1zj7 +2025-06-18T14:03:49.581Z [TRACE] auth-service - Auth event: logout - User: user_1072 - IP: 192.168.81.206 - RequestID: v2ukurx1wfi +2025-06-18T14:03:49.681Z [DEBUG] order-service - Database UPDATE on products - Execution time: 14ms - Rows affected: 44 - RequestID: r6osqhd9use +2025-06-18T14:03:49.781Z [INFO] user-service - Database UPDATE on orders - Execution time: 88ms - Rows affected: 44 - RequestID: z5h16e1pk4n +2025-06-18T14:03:49.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1073 - IP: 192.168.232.72 - RequestID: anakgm2phzt +2025-06-18T14:03:49.981Z [DEBUG] user-service - Auth event: logout - User: user_1016 - IP: 192.168.33.76 - RequestID: y7t3q3mtfh8 +2025-06-18T14:03:50.081Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 403 - Response time: 1695ms - IP: 192.168.68.128 - User: user_1059 - RequestID: rb73wcirbbe +2025-06-18T14:03:50.181Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 201 - Response time: 1934ms - IP: 192.168.229.123 - User: user_1017 - RequestID: 6k5xsu11er8 +2025-06-18T14:03:50.281Z [TRACE] order-service - Operation: email_sent - Processing time: 620ms - RequestID: h81rl7scnbu +2025-06-18T14:03:50.381Z [INFO] notification-service - Auth event: password_change - User: user_1008 - IP: 192.168.33.76 - RequestID: r8egaxcliir +2025-06-18T14:03:50.481Z [TRACE] auth-service - Operation: notification_queued - Processing time: 609ms - RequestID: y14hamk22j +2025-06-18T14:03:50.581Z [INFO] user-service - Operation: order_created - Processing time: 125ms - RequestID: ukgljsvnm1k +2025-06-18T14:03:50.681Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 483ms - RequestID: n3p9y3e53bn +2025-06-18T14:03:50.781Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 401 - Response time: 1531ms - IP: 192.168.227.233 - User: user_1074 - RequestID: qeqr2eepvoc +2025-06-18T14:03:50.881Z [DEBUG] user-service - Database INSERT on orders - Execution time: 483ms - Rows affected: 34 - RequestID: x3gkcflaakr +2025-06-18T14:03:50.981Z [DEBUG] order-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.247.134 - RequestID: dwxlrq4dm5t +2025-06-18T14:03:51.081Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 214ms - Rows affected: 5 - RequestID: 9vp45eg1yl +2025-06-18T14:03:51.181Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 472ms - Rows affected: 77 - RequestID: acr17wnjcai +2025-06-18T14:03:51.281Z [INFO] user-service - Database DELETE on payments - Execution time: 127ms - Rows affected: 0 - RequestID: hdul41n1n5n +2025-06-18T14:03:51.381Z [TRACE] notification-service - Auth event: login_success - User: user_1005 - IP: 192.168.144.38 - RequestID: oybi8b2ym2k +2025-06-18T14:03:51.481Z [TRACE] auth-service - PUT /api/v1/orders - Status: 400 - Response time: 1398ms - IP: 192.168.144.38 - User: user_1060 - RequestID: w8fupt3216m +2025-06-18T14:03:51.581Z [INFO] user-service - Operation: email_sent - Processing time: 710ms - RequestID: ctohgvn95pb +2025-06-18T14:03:51.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.147.171 - RequestID: lljnjuehaf +2025-06-18T14:03:51.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 506ms - RequestID: qlx4xkya3g +2025-06-18T14:03:51.881Z [INFO] user-service - Operation: notification_queued - Processing time: 114ms - RequestID: 5xdyjw0nobp +2025-06-18T14:03:51.981Z [INFO] notification-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.144.38 - RequestID: n0xfxfbrofg +2025-06-18T14:03:52.081Z [TRACE] user-service - Operation: payment_processed - Processing time: 867ms - RequestID: mpep26zmcsg +2025-06-18T14:03:52.181Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 258ms - Rows affected: 41 - RequestID: ekl8ev3c7x8 +2025-06-18T14:03:52.281Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 234ms - Rows affected: 64 - RequestID: fp3t3aatf3 +2025-06-18T14:03:52.381Z [INFO] auth-service - Auth event: logout - User: user_1044 - IP: 192.168.232.72 - RequestID: m7p9b807wd +2025-06-18T14:03:52.481Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.28.146 - RequestID: bnh7belf2dn +2025-06-18T14:03:52.581Z [INFO] notification-service - Auth event: password_change - User: user_1025 - IP: 192.168.79.141 - RequestID: ccwdigvln8g +2025-06-18T14:03:52.681Z [INFO] notification-service - Database INSERT on sessions - Execution time: 390ms - Rows affected: 66 - RequestID: wuoi8bd8onf +2025-06-18T14:03:52.781Z [DEBUG] notification-service - Auth event: password_change - User: user_1039 - IP: 192.168.11.60 - RequestID: 1hxqbxee4pm +2025-06-18T14:03:52.881Z [INFO] user-service - Operation: cache_miss - Processing time: 194ms - RequestID: km6busgtl +2025-06-18T14:03:52.981Z [TRACE] order-service - PATCH /api/v1/users - Status: 401 - Response time: 1510ms - IP: 192.168.79.143 - User: user_1074 - RequestID: tnt4n8iaisq +2025-06-18T14:03:53.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 860ms - RequestID: eknslar6adr +2025-06-18T14:03:53.181Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 62ms - Rows affected: 74 - RequestID: kx7iirs2qn +2025-06-18T14:03:53.281Z [TRACE] notification-service - Database INSERT on users - Execution time: 460ms - Rows affected: 8 - RequestID: j0rqh1oevmi +2025-06-18T14:03:53.381Z [TRACE] order-service - Operation: cache_hit - Processing time: 793ms - RequestID: 1hq2ss56rq5 +2025-06-18T14:03:53.481Z [TRACE] notification-service - Database INSERT on products - Execution time: 223ms - Rows affected: 78 - RequestID: iveincide +2025-06-18T14:03:53.581Z [DEBUG] user-service - Operation: order_created - Processing time: 164ms - RequestID: kys7xlshwic +2025-06-18T14:03:53.681Z [INFO] payment-service - Database INSERT on users - Execution time: 427ms - Rows affected: 16 - RequestID: 41c2agcw2mu +2025-06-18T14:03:53.781Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 324ms - IP: 192.168.227.77 - User: user_1014 - RequestID: 5t40xjs33ir +2025-06-18T14:03:53.881Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 2ms - Rows affected: 82 - RequestID: 53y9jxmnf0h +2025-06-18T14:03:53.981Z [TRACE] order-service - Database DELETE on orders - Execution time: 469ms - Rows affected: 18 - RequestID: 2fpy8oool7c +2025-06-18T14:03:54.081Z [INFO] inventory-service - PATCH /api/v1/users - Status: 401 - Response time: 21ms - IP: 192.168.174.114 - User: user_1040 - RequestID: z2gk8j2o8v +2025-06-18T14:03:54.181Z [INFO] inventory-service - POST /api/v1/inventory - Status: 503 - Response time: 1811ms - IP: 192.168.138.123 - User: user_1099 - RequestID: 7frl6wd1cq2 +2025-06-18T14:03:54.281Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 424ms - Rows affected: 98 - RequestID: dw2cppcms2h +2025-06-18T14:03:54.381Z [INFO] order-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.167.32 - RequestID: fakqs9l2is9 +2025-06-18T14:03:54.481Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 262ms - Rows affected: 29 - RequestID: ugzov42foj +2025-06-18T14:03:54.581Z [INFO] payment-service - Auth event: password_change - User: user_1018 - IP: 192.168.113.218 - RequestID: 8cnhqrpnv2n +2025-06-18T14:03:54.681Z [TRACE] notification-service - Database INSERT on payments - Execution time: 458ms - Rows affected: 84 - RequestID: pxrm8vrdegq +2025-06-18T14:03:54.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.174.114 - RequestID: 2wb5tr4jrmu +2025-06-18T14:03:54.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.194.41 - RequestID: xkg0sy84t3 +2025-06-18T14:03:54.981Z [INFO] user-service - Operation: notification_queued - Processing time: 555ms - RequestID: je3umqvejj +2025-06-18T14:03:55.081Z [TRACE] payment-service - PUT /api/v1/payments - Status: 404 - Response time: 966ms - IP: 192.168.79.143 - User: user_1098 - RequestID: n154n731yg +2025-06-18T14:03:55.181Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 200 - Response time: 660ms - IP: 192.168.46.63 - User: user_1050 - RequestID: u1ykxgoj60i +2025-06-18T14:03:55.281Z [TRACE] auth-service - Operation: email_sent - Processing time: 437ms - RequestID: ai9l18bkguq +2025-06-18T14:03:55.381Z [INFO] order-service - Operation: cache_hit - Processing time: 364ms - RequestID: 49gd9952lfc +2025-06-18T14:03:55.481Z [TRACE] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 1394ms - IP: 192.168.181.225 - User: user_1001 - RequestID: 0g6u58jegc7b +2025-06-18T14:03:55.581Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 233ms - Rows affected: 19 - RequestID: z87tozl07md +2025-06-18T14:03:55.681Z [INFO] auth-service - Operation: webhook_sent - Processing time: 94ms - RequestID: ame4rfu22gq +2025-06-18T14:03:55.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1090 - IP: 192.168.13.72 - RequestID: 0qchwkdn3jc +2025-06-18T14:03:55.881Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 107ms - Rows affected: 48 - RequestID: 92z5gk7k9v7 +2025-06-18T14:03:55.981Z [DEBUG] notification-service - GET /api/v1/payments - Status: 201 - Response time: 778ms - IP: 192.168.189.103 - User: user_1043 - RequestID: ioadwfngqn +2025-06-18T14:03:56.081Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 471ms - IP: 192.168.187.199 - User: user_1074 - RequestID: 7q2la3nu2yo +2025-06-18T14:03:56.181Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 35ms - Rows affected: 41 - RequestID: 21hlk7q4j9k +2025-06-18T14:03:56.281Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 273ms - Rows affected: 27 - RequestID: 8uarnhg0ho8 +2025-06-18T14:03:56.381Z [TRACE] inventory-service - POST /api/v1/users - Status: 502 - Response time: 103ms - IP: 192.168.240.169 - User: user_1033 - RequestID: ewufyljb0vl +2025-06-18T14:03:56.481Z [INFO] user-service - Operation: cache_miss - Processing time: 360ms - RequestID: 5xydkufabr6 +2025-06-18T14:03:56.581Z [TRACE] user-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.181.225 - RequestID: 855ovgc2hxn +2025-06-18T14:03:56.681Z [TRACE] inventory-service - Auth event: login_success - User: user_1098 - IP: 192.168.159.94 - RequestID: fah1beqcxkf +2025-06-18T14:03:56.781Z [INFO] payment-service - Operation: webhook_sent - Processing time: 176ms - RequestID: fgglu86s9av +2025-06-18T14:03:56.881Z [TRACE] user-service - PUT /api/v1/inventory - Status: 404 - Response time: 29ms - IP: 192.168.33.76 - User: user_1013 - RequestID: t736uqhh4ro +2025-06-18T14:03:56.981Z [DEBUG] order-service - Operation: order_created - Processing time: 818ms - RequestID: 5el02493vsh +2025-06-18T14:03:57.081Z [TRACE] order-service - Database DELETE on orders - Execution time: 164ms - Rows affected: 26 - RequestID: qf41g3g90gk +2025-06-18T14:03:57.181Z [INFO] user-service - Auth event: login_success - User: user_1023 - IP: 192.168.68.158 - RequestID: zqoki6aws79 +2025-06-18T14:03:57.281Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 176ms - Rows affected: 6 - RequestID: lw9uyelo75 +2025-06-18T14:03:57.381Z [INFO] payment-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.174.114 - RequestID: 0af8b6qn6cd +2025-06-18T14:03:57.481Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.247.134 - RequestID: jj2ra23vujb +2025-06-18T14:03:57.581Z [INFO] auth-service - Operation: cache_miss - Processing time: 669ms - RequestID: 2ofk6skhi2c +2025-06-18T14:03:57.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.133.7 - RequestID: s1lhi3cnzf +2025-06-18T14:03:57.781Z [INFO] auth-service - PUT /api/v1/users - Status: 503 - Response time: 1446ms - IP: 192.168.33.76 - User: user_1097 - RequestID: hukwy0vysf +2025-06-18T14:03:57.881Z [INFO] user-service - Database INSERT on products - Execution time: 339ms - Rows affected: 69 - RequestID: doe81oxodgl +2025-06-18T14:03:57.981Z [TRACE] user-service - Operation: order_created - Processing time: 858ms - RequestID: g92dz0co94 +2025-06-18T14:03:58.081Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 998ms - RequestID: x15cqq2eucg +2025-06-18T14:03:58.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.194.41 - RequestID: u4p02q1lb3c +2025-06-18T14:03:58.281Z [TRACE] user-service - PUT /api/v1/orders - Status: 201 - Response time: 308ms - IP: 192.168.68.158 - User: user_1020 - RequestID: 7gudbrzhhvp +2025-06-18T14:03:58.381Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 788ms - RequestID: 98byeshovvr +2025-06-18T14:03:58.481Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 502 - Response time: 1726ms - IP: 192.168.159.94 - User: user_1051 - RequestID: g1d2hrdw2kf +2025-06-18T14:03:58.581Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 755ms - RequestID: wb5zsz60ee +2025-06-18T14:03:58.681Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 403 - Response time: 173ms - IP: 192.168.81.206 - User: user_1023 - RequestID: zahuw2ro0o +2025-06-18T14:03:58.781Z [DEBUG] order-service - POST /api/v1/payments - Status: 201 - Response time: 1247ms - IP: 192.168.187.199 - User: user_1062 - RequestID: 3pz9vyw3ozl +2025-06-18T14:03:58.881Z [TRACE] order-service - Auth event: login_success - User: user_1004 - IP: 192.168.242.165 - RequestID: pn6y8rcwgvt +2025-06-18T14:03:58.981Z [INFO] payment-service - Operation: email_sent - Processing time: 644ms - RequestID: eoptj2b7ox7 +2025-06-18T14:03:59.081Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 202ms - Rows affected: 50 - RequestID: ud5r6bnufn +2025-06-18T14:03:59.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1089 - IP: 192.168.36.218 - RequestID: 76scr9dsgd3 +2025-06-18T14:03:59.281Z [TRACE] user-service - Database SELECT on products - Execution time: 440ms - Rows affected: 5 - RequestID: 9clvzo6ea85 +2025-06-18T14:03:59.381Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 1025ms - RequestID: 3q9c1ube9fb +2025-06-18T14:03:59.481Z [DEBUG] user-service - Database DELETE on orders - Execution time: 206ms - Rows affected: 62 - RequestID: t52jr6v76sb +2025-06-18T14:03:59.581Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 401 - Response time: 1058ms - IP: 192.168.11.60 - User: user_1004 - RequestID: fr7oa9y1o0g +2025-06-18T14:03:59.681Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 153ms - Rows affected: 68 - RequestID: 68eo801ahsc +2025-06-18T14:03:59.781Z [INFO] inventory-service - Operation: email_sent - Processing time: 796ms - RequestID: eqectww6dcl +2025-06-18T14:03:59.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.44.5 - RequestID: 1si0dudmxyb +2025-06-18T14:03:59.981Z [TRACE] order-service - Operation: notification_queued - Processing time: 261ms - RequestID: 40p7js8ri8r +2025-06-18T14:04:00.081Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 401 - Response time: 177ms - IP: 192.168.189.103 - User: user_1000 - RequestID: 6fnuc9xvbxb +2025-06-18T14:04:00.181Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1227ms - IP: 192.168.14.77 - User: user_1065 - RequestID: hvuvt3s04ol +2025-06-18T14:04:00.281Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.97.87 - RequestID: sieiwlo4ppr +2025-06-18T14:04:00.381Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1545ms - IP: 192.168.64.33 - User: user_1066 - RequestID: ew8z3ylg0ra +2025-06-18T14:04:00.481Z [TRACE] payment-service - Auth event: login_success - User: user_1017 - IP: 192.168.28.146 - RequestID: e7thc7oublu +2025-06-18T14:04:00.581Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 38ms - Rows affected: 75 - RequestID: ve7fsqxuanb +2025-06-18T14:04:00.681Z [INFO] notification-service - Auth event: login_success - User: user_1070 - IP: 192.168.141.100 - RequestID: 0ggzmbapp2h6 +2025-06-18T14:04:00.781Z [INFO] inventory-service - Database DELETE on orders - Execution time: 133ms - Rows affected: 96 - RequestID: gltf1nh07vi +2025-06-18T14:04:00.881Z [INFO] auth-service - Operation: email_sent - Processing time: 647ms - RequestID: 3bp2d5k7jla +2025-06-18T14:04:00.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.174.114 - RequestID: h8zkv533idb +2025-06-18T14:04:01.081Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 17ms - IP: 192.168.247.134 - User: user_1028 - RequestID: nn4xasp6q4 +2025-06-18T14:04:01.181Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 266ms - Rows affected: 34 - RequestID: skxmov3clln +2025-06-18T14:04:01.281Z [DEBUG] order-service - Operation: notification_queued - Processing time: 752ms - RequestID: 9ssi09rnawo +2025-06-18T14:04:01.381Z [TRACE] order-service - Auth event: password_change - User: user_1019 - IP: 192.168.104.37 - RequestID: mnxhz13hye +2025-06-18T14:04:01.481Z [INFO] order-service - Auth event: password_change - User: user_1057 - IP: 192.168.187.199 - RequestID: g7rh2aswuh6 +2025-06-18T14:04:01.581Z [INFO] auth-service - Database UPDATE on orders - Execution time: 393ms - Rows affected: 30 - RequestID: ei7pehmrmeh +2025-06-18T14:04:01.681Z [INFO] notification-service - Auth event: login_success - User: user_1080 - IP: 192.168.68.128 - RequestID: w5xyvmvbpdc +2025-06-18T14:04:01.781Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 6ms - Rows affected: 40 - RequestID: xfucucpj5j8 +2025-06-18T14:04:01.881Z [TRACE] order-service - Auth event: login_failed - User: user_1029 - IP: 192.168.13.72 - RequestID: tl9z23fy7nq +2025-06-18T14:04:01.981Z [TRACE] payment-service - Operation: payment_processed - Processing time: 692ms - RequestID: rgdrehbd6rn +2025-06-18T14:04:02.081Z [TRACE] order-service - Database UPDATE on orders - Execution time: 62ms - Rows affected: 96 - RequestID: dith0r1pa5h +2025-06-18T14:04:02.181Z [INFO] user-service - PATCH /api/v1/orders - Status: 200 - Response time: 1593ms - IP: 192.168.235.117 - User: user_1074 - RequestID: zmv9r6d2dcf +2025-06-18T14:04:02.281Z [INFO] order-service - Operation: order_created - Processing time: 375ms - RequestID: i1v24mhfgq +2025-06-18T14:04:02.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.196.226 - RequestID: j4pozuxnchp +2025-06-18T14:04:02.481Z [TRACE] payment-service - PUT /api/v1/orders - Status: 403 - Response time: 2005ms - IP: 192.168.10.184 - User: user_1087 - RequestID: pr3fril7dcp +2025-06-18T14:04:02.581Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 383ms - RequestID: gyelnji94vc +2025-06-18T14:04:02.681Z [INFO] notification-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.68.158 - RequestID: 6rx3amhsku8 +2025-06-18T14:04:02.781Z [DEBUG] user-service - Database DELETE on orders - Execution time: 270ms - Rows affected: 21 - RequestID: r6fswdvo6x +2025-06-18T14:04:02.881Z [TRACE] notification-service - Operation: cache_miss - Processing time: 68ms - RequestID: mloa2l5u7ti +2025-06-18T14:04:02.981Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.44.5 - RequestID: 5o2ulb203vn +2025-06-18T14:04:03.081Z [TRACE] inventory-service - Auth event: logout - User: user_1063 - IP: 192.168.44.5 - RequestID: e2xeer8roz6 +2025-06-18T14:04:03.181Z [TRACE] notification-service - Operation: notification_queued - Processing time: 226ms - RequestID: 5qdhcze5zw +2025-06-18T14:04:03.281Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 102ms - Rows affected: 60 - RequestID: to8zs11x8ao +2025-06-18T14:04:03.381Z [DEBUG] user-service - POST /api/v1/users - Status: 200 - Response time: 480ms - IP: 192.168.1.152 - User: user_1095 - RequestID: 8ykznug0odi +2025-06-18T14:04:03.481Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1379ms - IP: 192.168.227.77 - User: user_1050 - RequestID: 5cqasgssweq +2025-06-18T14:04:03.581Z [DEBUG] user-service - Operation: email_sent - Processing time: 676ms - RequestID: xhd0d0cgvcs +2025-06-18T14:04:03.681Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 266ms - RequestID: tw21etv2wbk +2025-06-18T14:04:03.781Z [DEBUG] payment-service - Database INSERT on products - Execution time: 78ms - Rows affected: 77 - RequestID: 85kmh64393c +2025-06-18T14:04:03.881Z [TRACE] user-service - Database UPDATE on orders - Execution time: 430ms - Rows affected: 24 - RequestID: s8fmcyl1ofn +2025-06-18T14:04:03.981Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 401 - Response time: 482ms - IP: 192.168.194.41 - User: user_1011 - RequestID: f4pzi6ov30d +2025-06-18T14:04:04.081Z [INFO] user-service - Operation: order_created - Processing time: 395ms - RequestID: flrg5tm4qlo +2025-06-18T14:04:04.181Z [DEBUG] order-service - Database INSERT on users - Execution time: 212ms - Rows affected: 41 - RequestID: z4bdho6wzq +2025-06-18T14:04:04.281Z [DEBUG] inventory-service - Auth event: login_success - User: user_1073 - IP: 192.168.36.218 - RequestID: bba758nrhjb +2025-06-18T14:04:04.381Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 160ms - RequestID: cb6kcylt3ee +2025-06-18T14:04:04.481Z [TRACE] notification-service - Operation: order_created - Processing time: 210ms - RequestID: 8yojp1gaq4e +2025-06-18T14:04:04.581Z [DEBUG] auth-service - POST /api/v1/users - Status: 200 - Response time: 1830ms - IP: 192.168.36.218 - User: user_1098 - RequestID: ng57chwar +2025-06-18T14:04:04.681Z [INFO] notification-service - DELETE /api/v1/payments - Status: 201 - Response time: 1986ms - IP: 192.168.196.226 - User: user_1075 - RequestID: ljbu7nyb3ni +2025-06-18T14:04:04.781Z [INFO] order-service - GET /api/v1/users - Status: 200 - Response time: 21ms - IP: 192.168.170.215 - User: user_1081 - RequestID: 77sbpqjp4gh +2025-06-18T14:04:04.881Z [TRACE] payment-service - Database SELECT on users - Execution time: 489ms - Rows affected: 90 - RequestID: z2ibc1mxsz +2025-06-18T14:04:04.981Z [TRACE] user-service - Database DELETE on users - Execution time: 247ms - Rows affected: 62 - RequestID: ga6h86s74ul +2025-06-18T14:04:05.081Z [INFO] auth-service - Auth event: password_change - User: user_1056 - IP: 192.168.174.114 - RequestID: z5pq37c9bxn +2025-06-18T14:04:05.181Z [INFO] user-service - Database SELECT on orders - Execution time: 279ms - Rows affected: 98 - RequestID: y7b3xvfp8bi +2025-06-18T14:04:05.281Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 447ms - RequestID: e33bu4cl73b +2025-06-18T14:04:05.381Z [DEBUG] order-service - Operation: email_sent - Processing time: 1042ms - RequestID: 8a0szo9nq1n +2025-06-18T14:04:05.481Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 401 - Response time: 1645ms - IP: 192.168.44.5 - User: user_1012 - RequestID: jwgna63mhu +2025-06-18T14:04:05.581Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 401 - Response time: 1850ms - IP: 192.168.141.100 - User: user_1076 - RequestID: rkcj8nkr7tq +2025-06-18T14:04:05.681Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 205ms - Rows affected: 68 - RequestID: jme7ck3s54n +2025-06-18T14:04:05.781Z [TRACE] notification-service - Operation: cache_miss - Processing time: 421ms - RequestID: 8b88mjmx3xb +2025-06-18T14:04:05.881Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1349ms - IP: 192.168.46.63 - User: user_1029 - RequestID: 5js4xhaqij3 +2025-06-18T14:04:05.981Z [TRACE] notification-service - Auth event: logout - User: user_1011 - IP: 192.168.147.171 - RequestID: pf947r7uw5 +2025-06-18T14:04:06.081Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 500 - Response time: 638ms - IP: 192.168.138.123 - User: user_1024 - RequestID: 2htolu4dgod +2025-06-18T14:04:06.181Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 503 - Response time: 1236ms - IP: 192.168.196.226 - User: user_1066 - RequestID: 8wipzen2ilo +2025-06-18T14:04:06.281Z [DEBUG] payment-service - Auth event: password_change - User: user_1007 - IP: 192.168.232.72 - RequestID: pusu3u2fqwo +2025-06-18T14:04:06.381Z [DEBUG] auth-service - Database SELECT on products - Execution time: 243ms - Rows affected: 20 - RequestID: v7gmxsouh1 +2025-06-18T14:04:06.481Z [INFO] notification-service - Operation: inventory_updated - Processing time: 541ms - RequestID: 2y0mip5tgt7 +2025-06-18T14:04:06.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 1015ms - RequestID: f45bdvj05xm +2025-06-18T14:04:06.681Z [TRACE] order-service - Auth event: login_failed - User: user_1034 - IP: 192.168.53.133 - RequestID: xvyodx6tcfc +2025-06-18T14:04:06.781Z [INFO] notification-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.232.72 - RequestID: 80fxj7iwalq +2025-06-18T14:04:06.881Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 96ms - Rows affected: 29 - RequestID: 3fvhucmxben +2025-06-18T14:04:06.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1053 - IP: 192.168.79.141 - RequestID: vbq4rjjy6s +2025-06-18T14:04:07.081Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.1.152 - RequestID: ly9buh0opg7 +2025-06-18T14:04:07.181Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 216ms - Rows affected: 30 - RequestID: ctc2rwzbosi +2025-06-18T14:04:07.281Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 332ms - Rows affected: 88 - RequestID: 6eixjz9eh5 +2025-06-18T14:04:07.381Z [INFO] notification-service - Auth event: login_success - User: user_1045 - IP: 192.168.113.218 - RequestID: tflmw07lbd +2025-06-18T14:04:07.481Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 342ms - Rows affected: 76 - RequestID: 8bkg709jdk7 +2025-06-18T14:04:07.581Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 671ms - IP: 192.168.33.76 - User: user_1095 - RequestID: 3c2smblc91d +2025-06-18T14:04:07.681Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 105ms - RequestID: k8j8ur3jrkn +2025-06-18T14:04:07.781Z [INFO] user-service - Auth event: logout - User: user_1038 - IP: 192.168.242.165 - RequestID: mnphikzyceo +2025-06-18T14:04:07.881Z [TRACE] user-service - PATCH /api/v1/payments - Status: 404 - Response time: 1849ms - IP: 192.168.53.133 - User: user_1043 - RequestID: 01rsrihu38rc +2025-06-18T14:04:07.981Z [INFO] user-service - Operation: order_created - Processing time: 837ms - RequestID: 27n2i427zl6 +2025-06-18T14:04:08.081Z [DEBUG] user-service - PUT /api/v1/orders - Status: 401 - Response time: 1997ms - IP: 192.168.85.229 - User: user_1076 - RequestID: vab0dlbru1 +2025-06-18T14:04:08.181Z [DEBUG] user-service - Operation: email_sent - Processing time: 414ms - RequestID: paj2m3sbun +2025-06-18T14:04:08.281Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 938ms - RequestID: 5w8c8eextam +2025-06-18T14:04:08.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1030 - IP: 192.168.104.37 - RequestID: 8v90rrekwu2 +2025-06-18T14:04:08.481Z [TRACE] inventory-service - Auth event: password_change - User: user_1098 - IP: 192.168.211.72 - RequestID: ksoniq67xj +2025-06-18T14:04:08.581Z [DEBUG] user-service - Database SELECT on products - Execution time: 200ms - Rows affected: 60 - RequestID: 4li0lmq04ml +2025-06-18T14:04:08.681Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 419ms - Rows affected: 99 - RequestID: 46zrorf7azh +2025-06-18T14:04:08.781Z [INFO] inventory-service - Auth event: logout - User: user_1084 - IP: 192.168.1.152 - RequestID: w1yoh56dg78 +2025-06-18T14:04:08.881Z [TRACE] user-service - Database SELECT on products - Execution time: 328ms - Rows affected: 10 - RequestID: j3d9zix8qq +2025-06-18T14:04:08.981Z [TRACE] notification-service - Operation: notification_queued - Processing time: 235ms - RequestID: 588fmpi5tm +2025-06-18T14:04:09.081Z [TRACE] auth-service - Operation: cache_miss - Processing time: 687ms - RequestID: 5fpw90odv2v +2025-06-18T14:04:09.181Z [DEBUG] user-service - Auth event: logout - User: user_1074 - IP: 192.168.1.152 - RequestID: jca67xkqjdn +2025-06-18T14:04:09.281Z [INFO] notification-service - Operation: inventory_updated - Processing time: 674ms - RequestID: vocbxh6p9ck +2025-06-18T14:04:09.381Z [DEBUG] user-service - Operation: cache_hit - Processing time: 438ms - RequestID: gtou6kyryx +2025-06-18T14:04:09.481Z [DEBUG] user-service - Database INSERT on orders - Execution time: 486ms - Rows affected: 95 - RequestID: h1qr5yddlzc +2025-06-18T14:04:09.581Z [INFO] user-service - Auth event: login_success - User: user_1045 - IP: 192.168.170.215 - RequestID: 51tgdxu3gom +2025-06-18T14:04:09.681Z [INFO] inventory-service - GET /api/v1/orders - Status: 404 - Response time: 1259ms - IP: 192.168.64.33 - User: user_1035 - RequestID: 3az2p5ucoe2 +2025-06-18T14:04:09.781Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 400 - Response time: 1230ms - IP: 192.168.85.229 - User: user_1081 - RequestID: 1n01ntbfh5b +2025-06-18T14:04:09.881Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 403 - Response time: 653ms - IP: 192.168.100.240 - User: user_1090 - RequestID: p8zaz7tjlmc +2025-06-18T14:04:09.981Z [TRACE] auth-service - Database DELETE on products - Execution time: 27ms - Rows affected: 94 - RequestID: xq8wceo0gwj +2025-06-18T14:04:10.081Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1664ms - IP: 192.168.235.117 - User: user_1039 - RequestID: pyowellytg +2025-06-18T14:04:10.181Z [INFO] notification-service - Database DELETE on products - Execution time: 347ms - Rows affected: 17 - RequestID: xu08uotqccf +2025-06-18T14:04:10.281Z [INFO] user-service - Database DELETE on products - Execution time: 480ms - Rows affected: 11 - RequestID: 8x7sdsnzau2 +2025-06-18T14:04:10.381Z [DEBUG] payment-service - Database DELETE on users - Execution time: 415ms - Rows affected: 55 - RequestID: fpeyz2facj +2025-06-18T14:04:10.481Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 367ms - RequestID: lmnd5cn626e +2025-06-18T14:04:10.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.32.38 - RequestID: j8sr061yuj +2025-06-18T14:04:10.681Z [INFO] auth-service - Database UPDATE on users - Execution time: 83ms - Rows affected: 14 - RequestID: lxnv7yghn0p +2025-06-18T14:04:10.781Z [TRACE] notification-service - PUT /api/v1/orders - Status: 200 - Response time: 819ms - IP: 192.168.11.60 - User: user_1059 - RequestID: l0jh19okwf +2025-06-18T14:04:10.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.235.117 - RequestID: qhie08xgbbl +2025-06-18T14:04:10.981Z [TRACE] user-service - Auth event: login_success - User: user_1024 - IP: 192.168.144.38 - RequestID: szfe2lb9wdn +2025-06-18T14:04:11.081Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 194ms - Rows affected: 48 - RequestID: m73fsk1jik +2025-06-18T14:04:11.181Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 818ms - RequestID: 2splbjbmply +2025-06-18T14:04:11.281Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 500 - Response time: 721ms - IP: 192.168.235.117 - User: user_1056 - RequestID: 61fwgijrj0y +2025-06-18T14:04:11.381Z [INFO] inventory-service - Database UPDATE on users - Execution time: 69ms - Rows affected: 9 - RequestID: 3y514io48gi +2025-06-18T14:04:11.481Z [INFO] auth-service - POST /api/v1/auth/login - Status: 401 - Response time: 1530ms - IP: 192.168.211.72 - User: user_1031 - RequestID: tehpxh4tuol +2025-06-18T14:04:11.581Z [INFO] order-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.170.215 - RequestID: 7iqzxtdl1te +2025-06-18T14:04:11.681Z [INFO] user-service - Operation: cache_hit - Processing time: 875ms - RequestID: q8yytdkbhza +2025-06-18T14:04:11.781Z [TRACE] user-service - Database DELETE on users - Execution time: 240ms - Rows affected: 29 - RequestID: uwyf96vei0g +2025-06-18T14:04:11.881Z [INFO] order-service - Operation: email_sent - Processing time: 316ms - RequestID: dfirda6x7wh +2025-06-18T14:04:11.981Z [INFO] user-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.147.171 - RequestID: ox0h4mntlf8 +2025-06-18T14:04:12.081Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 201 - Response time: 1780ms - IP: 192.168.147.171 - User: user_1068 - RequestID: y3eqez5dnb +2025-06-18T14:04:12.181Z [TRACE] order-service - POST /api/v1/payments - Status: 503 - Response time: 251ms - IP: 192.168.167.32 - User: user_1051 - RequestID: nxpyliplqu8 +2025-06-18T14:04:12.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1092 - IP: 192.168.138.123 - RequestID: zdm18suhg4 +2025-06-18T14:04:12.381Z [DEBUG] user-service - PUT /api/v1/orders - Status: 401 - Response time: 605ms - IP: 192.168.85.229 - User: user_1005 - RequestID: hwu1bttgx7 +2025-06-18T14:04:12.481Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 338ms - Rows affected: 82 - RequestID: wjbvgcdrau +2025-06-18T14:04:12.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.1.152 - RequestID: g7nk5ucizst +2025-06-18T14:04:12.681Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1609ms - IP: 192.168.28.146 - User: user_1091 - RequestID: 770q90dw1k +2025-06-18T14:04:12.781Z [INFO] payment-service - Auth event: logout - User: user_1001 - IP: 192.168.32.38 - RequestID: asbi0uzpu2p +2025-06-18T14:04:12.881Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.44.5 - RequestID: g05yht4t0bq +2025-06-18T14:04:12.981Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 774ms - IP: 192.168.167.32 - User: user_1036 - RequestID: ble8h074p8w +2025-06-18T14:04:13.081Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 793ms - RequestID: wnks3hf9o9 +2025-06-18T14:04:13.181Z [INFO] order-service - Database INSERT on users - Execution time: 443ms - Rows affected: 6 - RequestID: dviv4dzgif7 +2025-06-18T14:04:13.281Z [INFO] payment-service - Auth event: logout - User: user_1018 - IP: 192.168.227.77 - RequestID: c4hkbkplvas +2025-06-18T14:04:13.381Z [INFO] order-service - POST /api/v1/auth/logout - Status: 400 - Response time: 420ms - IP: 192.168.141.100 - User: user_1037 - RequestID: tbe9dzv9a6o +2025-06-18T14:04:13.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1017 - IP: 192.168.247.134 - RequestID: mgwm1q28q9 +2025-06-18T14:04:13.581Z [TRACE] user-service - PATCH /api/v1/users - Status: 400 - Response time: 712ms - IP: 192.168.81.206 - User: user_1076 - RequestID: vp8p7blag3 +2025-06-18T14:04:13.681Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.113.218 - RequestID: ofsnj9zn75 +2025-06-18T14:04:13.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.196.226 - RequestID: dthto71c7un +2025-06-18T14:04:13.881Z [INFO] user-service - Database SELECT on products - Execution time: 11ms - Rows affected: 10 - RequestID: 7ovsrdr22d +2025-06-18T14:04:13.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 607ms - RequestID: bcibk1weqoc +2025-06-18T14:04:14.081Z [INFO] order-service - Operation: order_created - Processing time: 201ms - RequestID: rh92fwncgvd +2025-06-18T14:04:14.181Z [INFO] order-service - Auth event: logout - User: user_1001 - IP: 192.168.68.128 - RequestID: pi93478hr9t +2025-06-18T14:04:14.281Z [DEBUG] order-service - Auth event: login_failed - User: user_1089 - IP: 192.168.1.152 - RequestID: yc9vhw2m56 +2025-06-18T14:04:14.381Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 841ms - RequestID: qlxcxmyeq2j +2025-06-18T14:04:14.481Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1891ms - IP: 192.168.64.33 - User: user_1039 - RequestID: c14oo9fl4pt +2025-06-18T14:04:14.581Z [TRACE] user-service - Auth event: logout - User: user_1048 - IP: 192.168.144.38 - RequestID: 4tx5ctrv3ge +2025-06-18T14:04:14.681Z [TRACE] inventory-service - Database DELETE on products - Execution time: 358ms - Rows affected: 25 - RequestID: 9qykv6yamis +2025-06-18T14:04:14.781Z [INFO] inventory-service - Auth event: login_failed - User: user_1026 - IP: 192.168.174.114 - RequestID: 9zzl698ix9 +2025-06-18T14:04:14.881Z [DEBUG] payment-service - Auth event: login_failed - User: user_1000 - IP: 192.168.138.123 - RequestID: 6mxv7v9xm2w +2025-06-18T14:04:14.981Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 404 - Response time: 1649ms - IP: 192.168.79.116 - User: user_1056 - RequestID: w8uhy1sxzfe +2025-06-18T14:04:15.081Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 335ms - Rows affected: 69 - RequestID: 38pvkh6l6sw +2025-06-18T14:04:15.181Z [INFO] auth-service - PATCH /api/v1/orders - Status: 403 - Response time: 82ms - IP: 192.168.85.229 - User: user_1032 - RequestID: bioh8nhvlya +2025-06-18T14:04:15.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 600ms - RequestID: uyxvjhk1dy +2025-06-18T14:04:15.381Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 502 - Response time: 617ms - IP: 192.168.232.72 - User: user_1062 - RequestID: 3c9oc2ublss +2025-06-18T14:04:15.481Z [TRACE] payment-service - Operation: cache_miss - Processing time: 978ms - RequestID: we2t6iu94c +2025-06-18T14:04:15.581Z [TRACE] auth-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.10.184 - RequestID: 1lsx2lz53bw +2025-06-18T14:04:15.681Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 256ms - Rows affected: 50 - RequestID: 2iljxcnble3 +2025-06-18T14:04:15.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.36.218 - RequestID: 2kax36ydt98 +2025-06-18T14:04:15.881Z [TRACE] user-service - Operation: webhook_sent - Processing time: 367ms - RequestID: ss4bd4o4s8p +2025-06-18T14:04:15.981Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 713ms - RequestID: 5z4qegx3thb +2025-06-18T14:04:16.081Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 472ms - IP: 192.168.235.117 - User: user_1006 - RequestID: xwimj3v30vj +2025-06-18T14:04:16.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1059 - IP: 192.168.235.117 - RequestID: krm0ck523oh +2025-06-18T14:04:16.281Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 476ms - RequestID: l28escqfftl +2025-06-18T14:04:16.381Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 284ms - RequestID: m5et8hzcnz +2025-06-18T14:04:16.481Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 404 - Response time: 1980ms - IP: 192.168.144.38 - User: user_1094 - RequestID: menbnx6hq6k +2025-06-18T14:04:16.581Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 404 - Response time: 700ms - IP: 192.168.36.218 - User: user_1044 - RequestID: mukszp6z1np +2025-06-18T14:04:16.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1098 - IP: 192.168.138.123 - RequestID: anpbuu2b4em +2025-06-18T14:04:16.781Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 598ms - IP: 192.168.174.114 - User: user_1061 - RequestID: m2nvh9auwif +2025-06-18T14:04:16.881Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 1174ms - IP: 192.168.240.169 - User: user_1046 - RequestID: yeg431yukp +2025-06-18T14:04:16.981Z [INFO] order-service - Operation: notification_queued - Processing time: 844ms - RequestID: jghkqnyd4ad +2025-06-18T14:04:17.081Z [INFO] inventory-service - Operation: email_sent - Processing time: 979ms - RequestID: 7jblifuiual +2025-06-18T14:04:17.181Z [INFO] user-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.211.72 - RequestID: 8hyf92a9c67 +2025-06-18T14:04:17.281Z [INFO] user-service - Auth event: login_success - User: user_1015 - IP: 192.168.97.87 - RequestID: 4di98hsxovn +2025-06-18T14:04:17.381Z [INFO] user-service - Auth event: logout - User: user_1025 - IP: 192.168.1.152 - RequestID: 40imuwkr11 +2025-06-18T14:04:17.481Z [TRACE] notification-service - Database INSERT on orders - Execution time: 192ms - Rows affected: 21 - RequestID: fpp4dg923hk +2025-06-18T14:04:17.581Z [TRACE] auth-service - Auth event: logout - User: user_1034 - IP: 192.168.196.226 - RequestID: 32ztu6n5kmg +2025-06-18T14:04:17.681Z [INFO] inventory-service - Database INSERT on payments - Execution time: 61ms - Rows affected: 28 - RequestID: ws2tg7uuczo +2025-06-18T14:04:17.781Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 466ms - Rows affected: 23 - RequestID: eduvsekad35 +2025-06-18T14:04:17.881Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 401ms - Rows affected: 34 - RequestID: y1jt0ys1sg +2025-06-18T14:04:17.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.10.184 - RequestID: 2nxos7tew +2025-06-18T14:04:18.081Z [TRACE] user-service - Operation: cache_hit - Processing time: 533ms - RequestID: 7dgjjl6rsk +2025-06-18T14:04:18.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 434ms - RequestID: 1q472wlcbpd +2025-06-18T14:04:18.281Z [TRACE] payment-service - Operation: email_sent - Processing time: 117ms - RequestID: 86j4nw3kn9w +2025-06-18T14:04:18.381Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 401 - Response time: 457ms - IP: 192.168.227.77 - User: user_1058 - RequestID: pcjk5kjn37 +2025-06-18T14:04:18.481Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1874ms - IP: 192.168.32.38 - User: user_1085 - RequestID: 4y92lpy0yal +2025-06-18T14:04:18.581Z [DEBUG] order-service - Operation: notification_queued - Processing time: 104ms - RequestID: p3ot7tjekba +2025-06-18T14:04:18.681Z [TRACE] user-service - Auth event: login_failed - User: user_1030 - IP: 192.168.247.134 - RequestID: 4t63h20kg7i +2025-06-18T14:04:18.781Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 182ms - RequestID: 6zkjmn9baip +2025-06-18T14:04:18.881Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 417ms - RequestID: oe3ggfavxvk +2025-06-18T14:04:18.981Z [DEBUG] user-service - Operation: notification_queued - Processing time: 656ms - RequestID: 2olx4f9pauj +2025-06-18T14:04:19.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1014 - IP: 192.168.242.165 - RequestID: ttlcz9cmnya +2025-06-18T14:04:19.181Z [TRACE] auth-service - Database UPDATE on users - Execution time: 190ms - Rows affected: 24 - RequestID: 3e7em59iftk +2025-06-18T14:04:19.281Z [TRACE] payment-service - Operation: payment_processed - Processing time: 598ms - RequestID: xz0e06vf8rq +2025-06-18T14:04:19.381Z [INFO] user-service - Operation: inventory_updated - Processing time: 181ms - RequestID: h4g1itbcbcs +2025-06-18T14:04:19.481Z [DEBUG] inventory-service - Operation: order_created - Processing time: 408ms - RequestID: u943rjgn9d +2025-06-18T14:04:19.581Z [DEBUG] user-service - PUT /api/v1/payments - Status: 502 - Response time: 1444ms - IP: 192.168.158.144 - User: user_1054 - RequestID: cc1mfd0kt7u +2025-06-18T14:04:19.681Z [INFO] order-service - POST /api/v1/inventory - Status: 503 - Response time: 253ms - IP: 192.168.53.133 - User: user_1074 - RequestID: vqnfgbz8kdi +2025-06-18T14:04:19.781Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 898ms - RequestID: 1lnh8voqq3w +2025-06-18T14:04:19.881Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1641ms - IP: 192.168.64.33 - User: user_1016 - RequestID: kb5nuh9sc9r +2025-06-18T14:04:19.981Z [TRACE] user-service - Auth event: login_failed - User: user_1022 - IP: 192.168.33.76 - RequestID: he8j47ilpn +2025-06-18T14:04:20.081Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 284ms - RequestID: gzg8or4adh7 +2025-06-18T14:04:20.181Z [TRACE] user-service - DELETE /api/v1/users - Status: 200 - Response time: 197ms - IP: 192.168.227.233 - User: user_1035 - RequestID: yjt2bjf0w9m +2025-06-18T14:04:20.281Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 712ms - RequestID: irnl2drzsfg +2025-06-18T14:04:20.381Z [INFO] order-service - Database UPDATE on products - Execution time: 392ms - Rows affected: 81 - RequestID: xb6wrsi0taa +2025-06-18T14:04:20.481Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 502 - Response time: 394ms - IP: 192.168.240.169 - User: user_1072 - RequestID: rt6nq6x3zh9 +2025-06-18T14:04:20.581Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 403 - Response time: 1985ms - IP: 192.168.227.233 - User: user_1089 - RequestID: zvosvav6zg +2025-06-18T14:04:20.681Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 472ms - Rows affected: 12 - RequestID: 3o8c4a0yimd +2025-06-18T14:04:20.781Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 400 - Response time: 187ms - IP: 192.168.227.233 - User: user_1059 - RequestID: fxxy6y2wq69 +2025-06-18T14:04:20.881Z [TRACE] order-service - Operation: email_sent - Processing time: 717ms - RequestID: xfkdmd5zes +2025-06-18T14:04:20.981Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 214ms - RequestID: lmazj5a151c +2025-06-18T14:04:21.081Z [TRACE] user-service - Operation: notification_queued - Processing time: 219ms - RequestID: ukt8chy9k1 +2025-06-18T14:04:21.181Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 173ms - Rows affected: 32 - RequestID: voxso64255 +2025-06-18T14:04:21.281Z [TRACE] payment-service - POST /api/v1/users - Status: 502 - Response time: 109ms - IP: 192.168.144.38 - User: user_1089 - RequestID: xnqxwcpwu0j +2025-06-18T14:04:21.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1047 - IP: 192.168.53.133 - RequestID: y6q5iaivqvr +2025-06-18T14:04:21.481Z [INFO] notification-service - Auth event: logout - User: user_1014 - IP: 192.168.138.123 - RequestID: mhpyftdyej +2025-06-18T14:04:21.581Z [TRACE] payment-service - Operation: payment_processed - Processing time: 676ms - RequestID: x1lzygy3qlm +2025-06-18T14:04:21.681Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 317ms - RequestID: c5nfqoqejif +2025-06-18T14:04:21.781Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 403 - Response time: 1100ms - IP: 192.168.31.117 - User: user_1090 - RequestID: gkwnd43rv96 +2025-06-18T14:04:21.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.229.123 - RequestID: yzd12k4ggh +2025-06-18T14:04:21.981Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 210ms - Rows affected: 95 - RequestID: 31e0krkjltn +2025-06-18T14:04:22.081Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1263ms - IP: 192.168.11.60 - User: user_1086 - RequestID: x6wxumpxz7c +2025-06-18T14:04:22.181Z [INFO] payment-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.189.103 - RequestID: l4yzxlyxu6n +2025-06-18T14:04:22.281Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 444ms - RequestID: zg4bzjxc3tq +2025-06-18T14:04:22.381Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 502 - Response time: 1660ms - IP: 192.168.31.117 - User: user_1014 - RequestID: m9vozd9jnfl +2025-06-18T14:04:22.481Z [INFO] user-service - POST /api/v1/orders - Status: 200 - Response time: 1030ms - IP: 192.168.211.72 - User: user_1008 - RequestID: z113sqlu6ll +2025-06-18T14:04:22.581Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 802ms - RequestID: ojqgdqdmquc +2025-06-18T14:04:22.681Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 499ms - Rows affected: 20 - RequestID: 40d1sgs1ery +2025-06-18T14:04:22.781Z [TRACE] payment-service - Database INSERT on users - Execution time: 357ms - Rows affected: 74 - RequestID: g5spdi5cf1c +2025-06-18T14:04:22.881Z [INFO] inventory-service - POST /api/v1/payments - Status: 404 - Response time: 164ms - IP: 192.168.79.143 - User: user_1021 - RequestID: p658jzb2jx +2025-06-18T14:04:22.981Z [TRACE] user-service - Database INSERT on orders - Execution time: 270ms - Rows affected: 88 - RequestID: u3epoiah67 +2025-06-18T14:04:23.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.211.72 - RequestID: ftmkz6ob9z5 +2025-06-18T14:04:23.181Z [INFO] auth-service - Operation: cache_hit - Processing time: 679ms - RequestID: btf4qryn014 +2025-06-18T14:04:23.281Z [INFO] payment-service - Operation: notification_queued - Processing time: 275ms - RequestID: frodedby7og +2025-06-18T14:04:23.381Z [INFO] notification-service - Operation: cache_miss - Processing time: 289ms - RequestID: jcw9pvokmfp +2025-06-18T14:04:23.481Z [DEBUG] user-service - Database DELETE on users - Execution time: 213ms - Rows affected: 39 - RequestID: la0yt96q05b +2025-06-18T14:04:23.581Z [INFO] order-service - Operation: payment_processed - Processing time: 1004ms - RequestID: 0hd2awi5spqj +2025-06-18T14:04:23.681Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1861ms - IP: 192.168.174.114 - User: user_1091 - RequestID: l575xjz77qd +2025-06-18T14:04:23.781Z [TRACE] order-service - Operation: cache_hit - Processing time: 639ms - RequestID: a2za2chskog +2025-06-18T14:04:23.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1063 - IP: 192.168.227.77 - RequestID: wdc7757xh68 +2025-06-18T14:04:23.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1029 - IP: 192.168.100.240 - RequestID: boiv5wsdlmf +2025-06-18T14:04:24.081Z [TRACE] order-service - Database UPDATE on users - Execution time: 371ms - Rows affected: 8 - RequestID: 7p41qlvez4t +2025-06-18T14:04:24.181Z [DEBUG] order-service - Auth event: logout - User: user_1031 - IP: 192.168.81.206 - RequestID: 1n1bq7456hyh +2025-06-18T14:04:24.281Z [TRACE] order-service - Database UPDATE on products - Execution time: 444ms - Rows affected: 28 - RequestID: dcf24eaizco +2025-06-18T14:04:24.381Z [DEBUG] user-service - Auth event: logout - User: user_1030 - IP: 192.168.232.72 - RequestID: p9dr2yx82v +2025-06-18T14:04:24.481Z [INFO] order-service - GET /api/v1/auth/login - Status: 503 - Response time: 398ms - IP: 192.168.227.77 - User: user_1009 - RequestID: 105bxv3jqm +2025-06-18T14:04:24.581Z [INFO] user-service - Operation: cache_hit - Processing time: 486ms - RequestID: 7snzac6vkgy +2025-06-18T14:04:24.681Z [DEBUG] notification-service - Operation: email_sent - Processing time: 364ms - RequestID: op7xrb6yg0r +2025-06-18T14:04:24.781Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 201 - Response time: 427ms - IP: 192.168.138.123 - User: user_1055 - RequestID: ot21kn9441j +2025-06-18T14:04:24.881Z [TRACE] payment-service - Database DELETE on orders - Execution time: 411ms - Rows affected: 53 - RequestID: rk7eqyuf51 +2025-06-18T14:04:24.981Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 165ms - Rows affected: 66 - RequestID: 4qzyisw4ca9 +2025-06-18T14:04:25.081Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 68ms - Rows affected: 77 - RequestID: rixyfmmccqq +2025-06-18T14:04:25.181Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 636ms - RequestID: 0cchjgwptj7s +2025-06-18T14:04:25.281Z [DEBUG] order-service - PUT /api/v1/orders - Status: 403 - Response time: 1271ms - IP: 192.168.181.225 - User: user_1001 - RequestID: 6mwtm8yl759 +2025-06-18T14:04:25.381Z [TRACE] auth-service - PUT /api/v1/users - Status: 201 - Response time: 1949ms - IP: 192.168.68.128 - User: user_1032 - RequestID: 47fd38vptm1 +2025-06-18T14:04:25.481Z [INFO] payment-service - GET /api/v1/orders - Status: 503 - Response time: 1419ms - IP: 192.168.147.171 - User: user_1074 - RequestID: um0z68mlsf +2025-06-18T14:04:25.581Z [TRACE] notification-service - Database SELECT on products - Execution time: 79ms - Rows affected: 16 - RequestID: u1q96dyno9 +2025-06-18T14:04:25.681Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 200 - Response time: 937ms - IP: 192.168.46.63 - User: user_1011 - RequestID: 8vdnayt5q8g +2025-06-18T14:04:25.781Z [INFO] auth-service - Database UPDATE on payments - Execution time: 474ms - Rows affected: 96 - RequestID: c5a8a3j8k0r +2025-06-18T14:04:25.881Z [DEBUG] auth-service - Auth event: login_failed - User: user_1091 - IP: 192.168.85.229 - RequestID: fg8kv0c98yo +2025-06-18T14:04:25.981Z [INFO] payment-service - DELETE /api/v1/users - Status: 503 - Response time: 432ms - IP: 192.168.242.165 - User: user_1029 - RequestID: fu1khgakg0s +2025-06-18T14:04:26.081Z [DEBUG] payment-service - Auth event: login_failed - User: user_1027 - IP: 192.168.159.94 - RequestID: 3vi7xpqy8x3 +2025-06-18T14:04:26.181Z [INFO] notification-service - Database INSERT on orders - Execution time: 365ms - Rows affected: 95 - RequestID: gqhnl1zbrj9 +2025-06-18T14:04:26.281Z [DEBUG] auth-service - Auth event: login_success - User: user_1078 - IP: 192.168.97.87 - RequestID: bd9sd00b4uk +2025-06-18T14:04:26.381Z [INFO] inventory-service - Database UPDATE on products - Execution time: 135ms - Rows affected: 43 - RequestID: 92qkjulsvij +2025-06-18T14:04:26.481Z [DEBUG] order-service - POST /api/v1/payments - Status: 404 - Response time: 1206ms - IP: 192.168.240.169 - User: user_1053 - RequestID: wvjvubzy62n +2025-06-18T14:04:26.581Z [DEBUG] user-service - Auth event: logout - User: user_1033 - IP: 192.168.194.41 - RequestID: ezicsanov6v +2025-06-18T14:04:26.681Z [INFO] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 473ms - IP: 192.168.32.38 - User: user_1058 - RequestID: gkt6w7uhupq +2025-06-18T14:04:26.781Z [DEBUG] auth-service - Operation: email_sent - Processing time: 687ms - RequestID: onx240ij36 +2025-06-18T14:04:26.881Z [TRACE] notification-service - Operation: notification_queued - Processing time: 410ms - RequestID: k2l7eig9dm +2025-06-18T14:04:26.981Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 314ms - Rows affected: 38 - RequestID: ayynceg3nja +2025-06-18T14:04:27.081Z [INFO] user-service - Operation: payment_processed - Processing time: 985ms - RequestID: 9xozvkbh8sh +2025-06-18T14:04:27.181Z [TRACE] order-service - Database INSERT on products - Execution time: 22ms - Rows affected: 93 - RequestID: rfy620lrsx +2025-06-18T14:04:27.281Z [DEBUG] notification-service - Operation: email_sent - Processing time: 948ms - RequestID: pllm53wur7n +2025-06-18T14:04:27.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.97.87 - RequestID: y006aqxsfks +2025-06-18T14:04:27.481Z [INFO] payment-service - DELETE /api/v1/orders - Status: 201 - Response time: 1372ms - IP: 192.168.85.229 - User: user_1007 - RequestID: pzu0aydtjph +2025-06-18T14:04:27.581Z [INFO] auth-service - Auth event: login_success - User: user_1066 - IP: 192.168.242.165 - RequestID: f5vot75ryun +2025-06-18T14:04:27.681Z [INFO] inventory-service - Operation: cache_miss - Processing time: 915ms - RequestID: b77lwtrgqzl +2025-06-18T14:04:27.781Z [DEBUG] auth-service - PUT /api/v1/users - Status: 500 - Response time: 291ms - IP: 192.168.68.128 - User: user_1005 - RequestID: vetptirhbhn +2025-06-18T14:04:27.881Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 417ms - Rows affected: 6 - RequestID: pymjxs8de4o +2025-06-18T14:04:27.981Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.141.100 - RequestID: fw03760gg15 +2025-06-18T14:04:28.081Z [INFO] user-service - Database DELETE on users - Execution time: 265ms - Rows affected: 18 - RequestID: 43q2yr0ewwh +2025-06-18T14:04:28.181Z [DEBUG] notification-service - POST /api/v1/orders - Status: 400 - Response time: 1494ms - IP: 192.168.189.103 - User: user_1024 - RequestID: c6day3zvsd +2025-06-18T14:04:28.281Z [INFO] inventory-service - Database INSERT on payments - Execution time: 152ms - Rows affected: 11 - RequestID: ked14byenal +2025-06-18T14:04:28.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.31.117 - RequestID: ozhtxvrzuya +2025-06-18T14:04:28.481Z [INFO] order-service - Database UPDATE on orders - Execution time: 211ms - Rows affected: 71 - RequestID: t9wgeyxacl +2025-06-18T14:04:28.581Z [TRACE] user-service - Operation: cache_hit - Processing time: 315ms - RequestID: z28vcgxs5d +2025-06-18T14:04:28.681Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 432ms - Rows affected: 24 - RequestID: 7mrswzg5bdq +2025-06-18T14:04:28.781Z [INFO] inventory-service - PATCH /api/v1/users - Status: 502 - Response time: 480ms - IP: 192.168.97.87 - User: user_1003 - RequestID: b7zffubv186 +2025-06-18T14:04:28.881Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 201 - Response time: 438ms - IP: 192.168.30.79 - User: user_1014 - RequestID: y434hi5gc6i +2025-06-18T14:04:28.981Z [DEBUG] order-service - Auth event: password_change - User: user_1052 - IP: 192.168.33.76 - RequestID: k7dxxlvaolk +2025-06-18T14:04:29.081Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 117ms - Rows affected: 34 - RequestID: u27evre741r +2025-06-18T14:04:29.181Z [INFO] user-service - Auth event: login_failed - User: user_1016 - IP: 192.168.138.123 - RequestID: p6857omgkqo +2025-06-18T14:04:29.281Z [TRACE] payment-service - Database SELECT on users - Execution time: 478ms - Rows affected: 42 - RequestID: gx6lztdel9 +2025-06-18T14:04:29.381Z [TRACE] order-service - Operation: notification_queued - Processing time: 1026ms - RequestID: r65qjcf6hna +2025-06-18T14:04:29.481Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 673ms - IP: 192.168.1.152 - User: user_1004 - RequestID: 0r8ny2pbeevr +2025-06-18T14:04:29.581Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 1045ms - RequestID: ag4n93ldkn +2025-06-18T14:04:29.681Z [TRACE] payment-service - Operation: payment_processed - Processing time: 702ms - RequestID: zn9mn6mpl5 +2025-06-18T14:04:29.781Z [DEBUG] order-service - Auth event: login_failed - User: user_1009 - IP: 192.168.53.133 - RequestID: io291z2hqi +2025-06-18T14:04:29.881Z [INFO] order-service - Operation: webhook_sent - Processing time: 356ms - RequestID: 2yytayi0v6x +2025-06-18T14:04:29.981Z [TRACE] payment-service - Operation: cache_hit - Processing time: 271ms - RequestID: nqptkkeq79p +2025-06-18T14:04:30.081Z [INFO] inventory-service - Auth event: password_change - User: user_1091 - IP: 192.168.97.87 - RequestID: d6hbbfixovb +2025-06-18T14:04:30.181Z [DEBUG] inventory-service - Operation: order_created - Processing time: 811ms - RequestID: o2zhahza0z +2025-06-18T14:04:30.281Z [INFO] inventory-service - Auth event: login_failed - User: user_1067 - IP: 192.168.227.233 - RequestID: pvoy48hyiz +2025-06-18T14:04:30.381Z [INFO] inventory-service - Database DELETE on users - Execution time: 447ms - Rows affected: 67 - RequestID: 2g6oodkzi48 +2025-06-18T14:04:30.481Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 165ms - Rows affected: 93 - RequestID: zi7y2zn6v7 +2025-06-18T14:04:30.581Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 404 - Response time: 551ms - IP: 192.168.181.225 - User: user_1054 - RequestID: eqw1deflpr4 +2025-06-18T14:04:30.681Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 442ms - Rows affected: 37 - RequestID: twszheklnni +2025-06-18T14:04:30.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 558ms - RequestID: 0v6phxlud6q9 +2025-06-18T14:04:30.881Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 492ms - Rows affected: 94 - RequestID: 5nibpuluig +2025-06-18T14:04:30.981Z [DEBUG] order-service - Auth event: password_change - User: user_1062 - IP: 192.168.28.146 - RequestID: 5nqee6ks2jv +2025-06-18T14:04:31.081Z [DEBUG] order-service - POST /api/v1/payments - Status: 401 - Response time: 1603ms - IP: 192.168.227.233 - User: user_1031 - RequestID: n7nmynan1bf +2025-06-18T14:04:31.181Z [TRACE] notification-service - Operation: email_sent - Processing time: 849ms - RequestID: k57vdwo4wj +2025-06-18T14:04:31.281Z [INFO] notification-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.31.117 - RequestID: ndcg3kb5jkk +2025-06-18T14:04:31.381Z [TRACE] order-service - Operation: notification_queued - Processing time: 213ms - RequestID: g8nko7wx6j +2025-06-18T14:04:31.481Z [TRACE] payment-service - Database DELETE on payments - Execution time: 54ms - Rows affected: 70 - RequestID: nxrchre5vcd +2025-06-18T14:04:31.581Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 204ms - Rows affected: 37 - RequestID: fejviw8uer +2025-06-18T14:04:31.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.247.134 - RequestID: i5zdwxnblof +2025-06-18T14:04:31.781Z [INFO] notification-service - Auth event: password_change - User: user_1054 - IP: 192.168.133.7 - RequestID: otbooryvauj +2025-06-18T14:04:31.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1070 - IP: 192.168.144.38 - RequestID: v13h399wcoc +2025-06-18T14:04:31.981Z [INFO] user-service - Auth event: logout - User: user_1038 - IP: 192.168.133.7 - RequestID: 4k5x18pvlme +2025-06-18T14:04:32.081Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 497ms - Rows affected: 59 - RequestID: x052zp2i98n +2025-06-18T14:04:32.181Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1889ms - IP: 192.168.28.146 - User: user_1036 - RequestID: qv9zklz6bxd +2025-06-18T14:04:32.281Z [DEBUG] user-service - Database INSERT on products - Execution time: 342ms - Rows affected: 69 - RequestID: gq86g28isi +2025-06-18T14:04:32.381Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 143ms - IP: 192.168.167.32 - User: user_1062 - RequestID: 6pnm39gdzhy +2025-06-18T14:04:32.481Z [TRACE] auth-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.242.165 - RequestID: mob89t81g7 +2025-06-18T14:04:32.581Z [TRACE] user-service - Operation: cache_hit - Processing time: 682ms - RequestID: dpbmw6ia5uc +2025-06-18T14:04:32.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 505ms - RequestID: bgqwz2csbuj +2025-06-18T14:04:32.781Z [DEBUG] order-service - Database DELETE on payments - Execution time: 8ms - Rows affected: 95 - RequestID: t42fzv78sdf +2025-06-18T14:04:32.881Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 308ms - Rows affected: 80 - RequestID: 42emt8ifqu9 +2025-06-18T14:04:32.981Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 284ms - RequestID: hy6w10hpc7f +2025-06-18T14:04:33.081Z [TRACE] order-service - Operation: order_created - Processing time: 310ms - RequestID: crtgk2ot7k +2025-06-18T14:04:33.181Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 13ms - Rows affected: 3 - RequestID: p3jgn8aofmm +2025-06-18T14:04:33.281Z [INFO] notification-service - Operation: order_created - Processing time: 915ms - RequestID: nrwy6fk9ys +2025-06-18T14:04:33.381Z [TRACE] order-service - POST /api/v1/users - Status: 404 - Response time: 1341ms - IP: 192.168.1.152 - User: user_1074 - RequestID: wp4vsg3a2bh +2025-06-18T14:04:33.481Z [TRACE] payment-service - GET /api/v1/orders - Status: 200 - Response time: 175ms - IP: 192.168.53.133 - User: user_1054 - RequestID: lcbc3lpivra +2025-06-18T14:04:33.581Z [DEBUG] user-service - Operation: cache_hit - Processing time: 752ms - RequestID: p6k8yjahihe +2025-06-18T14:04:33.681Z [TRACE] inventory-service - Auth event: password_change - User: user_1067 - IP: 192.168.227.233 - RequestID: 52gp7ldv4ks +2025-06-18T14:04:33.781Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 137ms - RequestID: idltpca6j6c +2025-06-18T14:04:33.881Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 383ms - RequestID: ograh00252 +2025-06-18T14:04:33.981Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 932ms - RequestID: troh0arv9q +2025-06-18T14:04:34.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 321ms - RequestID: ftzf10zrnsa +2025-06-18T14:04:34.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 463ms - RequestID: uwwdhsrpm5 +2025-06-18T14:04:34.281Z [TRACE] payment-service - Auth event: password_change - User: user_1008 - IP: 192.168.211.72 - RequestID: hu0jlvyaivr +2025-06-18T14:04:34.381Z [INFO] payment-service - Operation: inventory_updated - Processing time: 839ms - RequestID: bz12vyzbnvl +2025-06-18T14:04:34.481Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 157ms - RequestID: gcsuk1wmv5 +2025-06-18T14:04:34.581Z [DEBUG] order-service - Auth event: password_change - User: user_1084 - IP: 192.168.79.143 - RequestID: 1j33rkogpq4 +2025-06-18T14:04:34.681Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 400 - Response time: 773ms - IP: 192.168.68.128 - User: user_1040 - RequestID: ogv4ox0cpi +2025-06-18T14:04:34.781Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 881ms - RequestID: dfipa5gn1mm +2025-06-18T14:04:34.881Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 641ms - RequestID: 0bz0s7yk4gb +2025-06-18T14:04:34.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 527ms - RequestID: m50dy2q7bus +2025-06-18T14:04:35.081Z [TRACE] payment-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.79.141 - RequestID: 4mkcdq7l35c +2025-06-18T14:04:35.181Z [INFO] payment-service - Database SELECT on products - Execution time: 243ms - Rows affected: 42 - RequestID: okcav2ua8x +2025-06-18T14:04:35.281Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 240ms - Rows affected: 71 - RequestID: b0enhnkiuv +2025-06-18T14:04:35.381Z [TRACE] auth-service - Operation: payment_processed - Processing time: 635ms - RequestID: swdzlmerwvm +2025-06-18T14:04:35.481Z [TRACE] user-service - Database SELECT on products - Execution time: 463ms - Rows affected: 54 - RequestID: gkssv43655c +2025-06-18T14:04:35.581Z [INFO] notification-service - Operation: order_created - Processing time: 381ms - RequestID: hxin9u3y639 +2025-06-18T14:04:35.681Z [DEBUG] order-service - Operation: order_created - Processing time: 877ms - RequestID: erf09ks9lu +2025-06-18T14:04:35.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.196.226 - RequestID: jgs0smpc3sd +2025-06-18T14:04:35.881Z [INFO] inventory-service - Auth event: password_change - User: user_1042 - IP: 192.168.68.158 - RequestID: hf0ahakty7d +2025-06-18T14:04:35.981Z [INFO] notification-service - Auth event: login_failed - User: user_1066 - IP: 192.168.232.72 - RequestID: e1i9mlapyq +2025-06-18T14:04:36.081Z [INFO] notification-service - GET /api/v1/inventory - Status: 401 - Response time: 945ms - IP: 192.168.113.218 - User: user_1031 - RequestID: u0pppyellj7 +2025-06-18T14:04:36.181Z [INFO] notification-service - Auth event: login_success - User: user_1068 - IP: 192.168.189.103 - RequestID: 47icghb4ntf +2025-06-18T14:04:36.281Z [INFO] user-service - PUT /api/v1/payments - Status: 200 - Response time: 476ms - IP: 192.168.227.233 - User: user_1046 - RequestID: 2wz293s6mtf +2025-06-18T14:04:36.381Z [INFO] inventory-service - GET /api/v1/payments - Status: 400 - Response time: 1491ms - IP: 192.168.138.123 - User: user_1077 - RequestID: ij63879ohx +2025-06-18T14:04:36.481Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 400 - Response time: 259ms - IP: 192.168.211.72 - User: user_1092 - RequestID: lmwkqjnjem +2025-06-18T14:04:36.581Z [DEBUG] user-service - GET /api/v1/orders - Status: 400 - Response time: 551ms - IP: 192.168.158.144 - User: user_1032 - RequestID: aohosriu7kn +2025-06-18T14:04:36.681Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 39ms - Rows affected: 85 - RequestID: 915hn6d24kp +2025-06-18T14:04:36.781Z [TRACE] inventory-service - Operation: email_sent - Processing time: 306ms - RequestID: p0xznxjgzcg +2025-06-18T14:04:36.881Z [INFO] auth-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.194.41 - RequestID: mywn8rb637b +2025-06-18T14:04:36.981Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 503 - Response time: 1734ms - IP: 192.168.36.218 - User: user_1008 - RequestID: do3kc0uaudc +2025-06-18T14:04:37.081Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 762ms - RequestID: wjkksyb77b +2025-06-18T14:04:37.181Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 75ms - Rows affected: 39 - RequestID: q7a0ngxh9s +2025-06-18T14:04:37.281Z [TRACE] order-service - POST /api/v1/payments - Status: 201 - Response time: 1964ms - IP: 192.168.10.184 - User: user_1041 - RequestID: 5ynsmryrmyi +2025-06-18T14:04:37.381Z [TRACE] user-service - DELETE /api/v1/users - Status: 502 - Response time: 545ms - IP: 192.168.79.141 - User: user_1093 - RequestID: mr59rz7wsjc +2025-06-18T14:04:37.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1010 - IP: 192.168.44.5 - RequestID: cvipnbqmy9a +2025-06-18T14:04:37.581Z [TRACE] payment-service - Auth event: logout - User: user_1067 - IP: 192.168.167.32 - RequestID: 8pf63w4oibv +2025-06-18T14:04:37.681Z [DEBUG] auth-service - Auth event: password_change - User: user_1083 - IP: 192.168.68.128 - RequestID: vcjqk1r1pc +2025-06-18T14:04:37.781Z [DEBUG] order-service - PUT /api/v1/users - Status: 400 - Response time: 1006ms - IP: 192.168.81.206 - User: user_1005 - RequestID: 661cjw8tnfk +2025-06-18T14:04:37.881Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 496ms - Rows affected: 84 - RequestID: icsrb48oyib +2025-06-18T14:04:37.981Z [DEBUG] notification-service - PUT /api/v1/users - Status: 200 - Response time: 11ms - IP: 192.168.229.123 - User: user_1059 - RequestID: zkgoehewylm +2025-06-18T14:04:38.081Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 503 - Response time: 955ms - IP: 192.168.211.72 - User: user_1092 - RequestID: 0ugpbx0fm86 +2025-06-18T14:04:38.181Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 488ms - Rows affected: 71 - RequestID: 2evbkcvc93u +2025-06-18T14:04:38.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 557ms - RequestID: dic8nfgqor5 +2025-06-18T14:04:38.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1037 - IP: 192.168.229.123 - RequestID: 4zmnggjg4cv +2025-06-18T14:04:38.481Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1606ms - IP: 192.168.174.114 - User: user_1023 - RequestID: 612a2fw0q76 +2025-06-18T14:04:38.581Z [DEBUG] payment-service - Auth event: password_change - User: user_1043 - IP: 192.168.181.225 - RequestID: dc4a33lys59 +2025-06-18T14:04:38.681Z [DEBUG] notification-service - Auth event: login_success - User: user_1038 - IP: 192.168.36.218 - RequestID: wgs2yaw29m +2025-06-18T14:04:38.781Z [INFO] auth-service - Auth event: login_success - User: user_1047 - IP: 192.168.147.171 - RequestID: bl9fe3i4p8 +2025-06-18T14:04:38.881Z [TRACE] user-service - Database UPDATE on users - Execution time: 445ms - Rows affected: 59 - RequestID: 49iue1ieeg4 +2025-06-18T14:04:38.981Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 157ms - RequestID: n0jzxah0qy +2025-06-18T14:04:39.081Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 200 - Response time: 152ms - IP: 192.168.189.103 - User: user_1055 - RequestID: qg6ml0e03h +2025-06-18T14:04:39.181Z [TRACE] user-service - Operation: inventory_updated - Processing time: 94ms - RequestID: rvehdwt781r +2025-06-18T14:04:39.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1051 - IP: 192.168.44.5 - RequestID: 0wtb70x8cib +2025-06-18T14:04:39.381Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 502 - Response time: 261ms - IP: 192.168.242.165 - User: user_1087 - RequestID: mhksiutpeyh +2025-06-18T14:04:39.481Z [INFO] order-service - Auth event: login_failed - User: user_1051 - IP: 192.168.147.171 - RequestID: qicwnffojm +2025-06-18T14:04:39.581Z [TRACE] order-service - Database DELETE on payments - Execution time: 432ms - Rows affected: 10 - RequestID: jeapvwnvdgi +2025-06-18T14:04:39.681Z [INFO] inventory-service - Auth event: logout - User: user_1033 - IP: 192.168.28.146 - RequestID: wcdghutkipf +2025-06-18T14:04:39.781Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1911ms - IP: 192.168.240.169 - User: user_1074 - RequestID: mpdfmihehp +2025-06-18T14:04:39.881Z [INFO] order-service - Auth event: password_change - User: user_1082 - IP: 192.168.1.152 - RequestID: jqkdq53g5o +2025-06-18T14:04:39.981Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 503 - Response time: 741ms - IP: 192.168.97.87 - User: user_1025 - RequestID: m1v1ad977or +2025-06-18T14:04:40.081Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 230ms - Rows affected: 51 - RequestID: 8p2ztl0i0fw +2025-06-18T14:04:40.181Z [TRACE] payment-service - Database UPDATE on products - Execution time: 474ms - Rows affected: 30 - RequestID: 9mlu85zphjw +2025-06-18T14:04:40.281Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 301ms - Rows affected: 33 - RequestID: r0zge5b3hi +2025-06-18T14:04:40.381Z [DEBUG] payment-service - Database INSERT on users - Execution time: 385ms - Rows affected: 69 - RequestID: 3bh0uhkzkkv +2025-06-18T14:04:40.481Z [DEBUG] user-service - Operation: cache_hit - Processing time: 222ms - RequestID: h4d0hj7wk1t +2025-06-18T14:04:40.581Z [TRACE] user-service - Operation: order_created - Processing time: 439ms - RequestID: c3a9e06ob +2025-06-18T14:04:40.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 961ms - RequestID: f178zujzhw +2025-06-18T14:04:40.781Z [INFO] payment-service - Database DELETE on orders - Execution time: 124ms - Rows affected: 69 - RequestID: vy7w25i4go9 +2025-06-18T14:04:40.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1016 - IP: 192.168.113.218 - RequestID: pt8fpr02ki9 +2025-06-18T14:04:40.981Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1553ms - IP: 192.168.113.218 - User: user_1064 - RequestID: c4wfdj0wzbj +2025-06-18T14:04:41.081Z [DEBUG] user-service - Operation: cache_miss - Processing time: 537ms - RequestID: hzp10u9f8q7 +2025-06-18T14:04:41.181Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 403 - Response time: 1515ms - IP: 192.168.167.32 - User: user_1001 - RequestID: sq8ghay5ds +2025-06-18T14:04:41.281Z [INFO] notification-service - Operation: cache_hit - Processing time: 276ms - RequestID: mn0atbs9tnp +2025-06-18T14:04:41.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.30.79 - RequestID: j2xgpv6q7vr +2025-06-18T14:04:41.481Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 86ms - Rows affected: 9 - RequestID: 82vxel0zsqj +2025-06-18T14:04:41.581Z [TRACE] user-service - Auth event: login_failed - User: user_1099 - IP: 192.168.158.144 - RequestID: yssw4v75si +2025-06-18T14:04:41.681Z [INFO] payment-service - Operation: webhook_sent - Processing time: 770ms - RequestID: lxy7nk66pxj +2025-06-18T14:04:41.781Z [TRACE] payment-service - GET /api/v1/orders - Status: 403 - Response time: 42ms - IP: 192.168.196.226 - User: user_1046 - RequestID: 0m3wfdwkmb2b +2025-06-18T14:04:41.881Z [INFO] user-service - Operation: webhook_sent - Processing time: 650ms - RequestID: ai8zq6i1r3c +2025-06-18T14:04:41.981Z [TRACE] order-service - Database INSERT on sessions - Execution time: 70ms - Rows affected: 55 - RequestID: ubg7qi2fhoc +2025-06-18T14:04:42.081Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 39ms - Rows affected: 34 - RequestID: xsscim0lkub +2025-06-18T14:04:42.181Z [TRACE] order-service - Auth event: login_success - User: user_1072 - IP: 192.168.79.143 - RequestID: td61h3hsyh +2025-06-18T14:04:42.281Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.227.77 - RequestID: 9mj4s4q3e07 +2025-06-18T14:04:42.381Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 297ms - Rows affected: 38 - RequestID: j7aad46j7aj +2025-06-18T14:04:42.481Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 1038ms - RequestID: bbgegu50f8a +2025-06-18T14:04:42.581Z [TRACE] notification-service - Operation: payment_processed - Processing time: 955ms - RequestID: ii0m3fy7u1 +2025-06-18T14:04:42.681Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 251ms - Rows affected: 28 - RequestID: 8529d0m9qnd +2025-06-18T14:04:42.781Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 193ms - Rows affected: 47 - RequestID: dv63tvf8bo +2025-06-18T14:04:42.881Z [DEBUG] order-service - POST /api/v1/payments - Status: 401 - Response time: 1823ms - IP: 192.168.144.38 - User: user_1047 - RequestID: kjpbwhapx6 +2025-06-18T14:04:42.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.189.103 - RequestID: hj926rlicqs +2025-06-18T14:04:43.081Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1978ms - IP: 192.168.81.206 - User: user_1097 - RequestID: jk36a74j9o9 +2025-06-18T14:04:43.181Z [DEBUG] order-service - GET /api/v1/payments - Status: 200 - Response time: 1569ms - IP: 192.168.147.171 - User: user_1085 - RequestID: km3ag361vde +2025-06-18T14:04:43.281Z [INFO] order-service - Operation: email_sent - Processing time: 526ms - RequestID: 858xdpoppd5 +2025-06-18T14:04:43.381Z [INFO] payment-service - Operation: order_created - Processing time: 387ms - RequestID: fyv8xb39amp +2025-06-18T14:04:43.481Z [TRACE] notification-service - Database SELECT on products - Execution time: 118ms - Rows affected: 83 - RequestID: tj6a0vrqfz +2025-06-18T14:04:43.581Z [TRACE] user-service - POST /api/v1/users - Status: 200 - Response time: 352ms - IP: 192.168.242.165 - User: user_1017 - RequestID: kbtss8l7bl +2025-06-18T14:04:43.681Z [INFO] order-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.113.218 - RequestID: 0g9mr2zwtq3l +2025-06-18T14:04:43.781Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 444ms - Rows affected: 17 - RequestID: 5ir32kaw9c +2025-06-18T14:04:43.881Z [INFO] auth-service - Auth event: login_failed - User: user_1062 - IP: 192.168.242.165 - RequestID: 9o2uamk2qiv +2025-06-18T14:04:43.981Z [TRACE] user-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.141.100 - RequestID: axu014hjm5a +2025-06-18T14:04:44.081Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 517ms - IP: 192.168.235.117 - User: user_1038 - RequestID: jpk9dvthgh +2025-06-18T14:04:44.181Z [INFO] auth-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.13.72 - RequestID: rvy4h4zbg4o +2025-06-18T14:04:44.281Z [TRACE] payment-service - Auth event: logout - User: user_1049 - IP: 192.168.187.199 - RequestID: uacuh9574tl +2025-06-18T14:04:44.381Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1608ms - IP: 192.168.68.158 - User: user_1076 - RequestID: twfk5j09gt +2025-06-18T14:04:44.481Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1125ms - IP: 192.168.147.171 - User: user_1074 - RequestID: 9jjfic4l1dc +2025-06-18T14:04:44.581Z [TRACE] notification-service - Database SELECT on products - Execution time: 303ms - Rows affected: 14 - RequestID: llq37oioxnl +2025-06-18T14:04:44.681Z [TRACE] notification-service - Operation: notification_queued - Processing time: 752ms - RequestID: ro76op08kco +2025-06-18T14:04:44.781Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 164ms - Rows affected: 78 - RequestID: fxylftgzosq +2025-06-18T14:04:44.881Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 401 - Response time: 142ms - IP: 192.168.11.60 - User: user_1086 - RequestID: 42vp58quu6o +2025-06-18T14:04:44.981Z [INFO] payment-service - POST /api/v1/auth/login - Status: 502 - Response time: 1535ms - IP: 192.168.36.218 - User: user_1059 - RequestID: lirzgvhjr8f +2025-06-18T14:04:45.081Z [INFO] user-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.170.215 - RequestID: 32ree7ec3i7 +2025-06-18T14:04:45.181Z [INFO] user-service - POST /api/v1/orders - Status: 201 - Response time: 943ms - IP: 192.168.240.169 - User: user_1021 - RequestID: pf9g8mxh4o +2025-06-18T14:04:45.281Z [INFO] order-service - GET /api/v1/users - Status: 401 - Response time: 1540ms - IP: 192.168.167.32 - User: user_1049 - RequestID: 8shw5ujrk3b +2025-06-18T14:04:45.381Z [TRACE] payment-service - Auth event: login_success - User: user_1022 - IP: 192.168.13.72 - RequestID: q8atl8oa1s +2025-06-18T14:04:45.481Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 935ms - RequestID: awmlc5t1d8o +2025-06-18T14:04:45.581Z [INFO] order-service - Database UPDATE on payments - Execution time: 223ms - Rows affected: 56 - RequestID: 3a9zfscuspr +2025-06-18T14:04:45.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.79.143 - RequestID: 3fzvdb8inzx +2025-06-18T14:04:45.781Z [DEBUG] order-service - POST /api/v1/payments - Status: 500 - Response time: 1618ms - IP: 192.168.242.165 - User: user_1007 - RequestID: oa1yx7m9hes +2025-06-18T14:04:45.881Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 574ms - RequestID: zdzmvvxze +2025-06-18T14:04:45.981Z [TRACE] notification-service - Operation: email_sent - Processing time: 929ms - RequestID: h53m46d31k +2025-06-18T14:04:46.081Z [DEBUG] user-service - Database DELETE on payments - Execution time: 81ms - Rows affected: 78 - RequestID: xx5pp7yirc9 +2025-06-18T14:04:46.181Z [TRACE] notification-service - Database DELETE on users - Execution time: 53ms - Rows affected: 78 - RequestID: el40tlfj7ar +2025-06-18T14:04:46.281Z [INFO] notification-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.14.77 - RequestID: cndfjlxbzqi +2025-06-18T14:04:46.381Z [INFO] user-service - Operation: payment_processed - Processing time: 339ms - RequestID: y77evm8opg9 +2025-06-18T14:04:46.481Z [TRACE] user-service - Operation: cache_hit - Processing time: 329ms - RequestID: 587ng78axpb +2025-06-18T14:04:46.581Z [DEBUG] user-service - Operation: cache_hit - Processing time: 54ms - RequestID: arunyhotsap +2025-06-18T14:04:46.681Z [TRACE] auth-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.147.171 - RequestID: h0hf6yjyppc +2025-06-18T14:04:46.781Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 814ms - RequestID: 3ph4xll9e18 +2025-06-18T14:04:46.881Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 76ms - Rows affected: 98 - RequestID: ge1ketxnql +2025-06-18T14:04:46.981Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 200 - Response time: 661ms - IP: 192.168.170.215 - User: user_1074 - RequestID: r6oo3ootrun +2025-06-18T14:04:47.081Z [INFO] inventory-service - Operation: cache_miss - Processing time: 636ms - RequestID: xo3xkpomjrl +2025-06-18T14:04:47.181Z [DEBUG] order-service - GET /api/v1/users - Status: 403 - Response time: 1176ms - IP: 192.168.189.103 - User: user_1054 - RequestID: d1ss7x3w2r4 +2025-06-18T14:04:47.281Z [INFO] notification-service - Operation: webhook_sent - Processing time: 907ms - RequestID: mdjtdmsokmo +2025-06-18T14:04:47.381Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1823ms - IP: 192.168.189.103 - User: user_1084 - RequestID: 6euf3rdoee6 +2025-06-18T14:04:47.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 369ms - RequestID: sh5nouza5zq +2025-06-18T14:04:47.581Z [INFO] payment-service - POST /api/v1/auth/login - Status: 404 - Response time: 1290ms - IP: 192.168.33.76 - User: user_1032 - RequestID: d9utxemr3mw +2025-06-18T14:04:47.681Z [INFO] notification-service - Operation: payment_processed - Processing time: 185ms - RequestID: 993h8dazxvt +2025-06-18T14:04:47.781Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 342ms - Rows affected: 9 - RequestID: ww0iwy9q4s +2025-06-18T14:04:47.881Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 336ms - RequestID: h55bp53jt6 +2025-06-18T14:04:47.981Z [INFO] order-service - PUT /api/v1/payments - Status: 502 - Response time: 159ms - IP: 192.168.240.169 - User: user_1003 - RequestID: 2sjn3o8g4iw +2025-06-18T14:04:48.081Z [INFO] inventory-service - Database SELECT on payments - Execution time: 434ms - Rows affected: 28 - RequestID: z8inne30a6h +2025-06-18T14:04:48.181Z [INFO] inventory-service - Database DELETE on orders - Execution time: 291ms - Rows affected: 49 - RequestID: d1j09tzexvg +2025-06-18T14:04:48.281Z [DEBUG] payment-service - Database INSERT on users - Execution time: 152ms - Rows affected: 33 - RequestID: ejl7u0l8tks +2025-06-18T14:04:48.381Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 91ms - Rows affected: 55 - RequestID: ur77ni6gd4h +2025-06-18T14:04:48.481Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1424ms - IP: 192.168.196.226 - User: user_1094 - RequestID: ba6z1nhjh1n +2025-06-18T14:04:48.581Z [TRACE] notification-service - Operation: email_sent - Processing time: 960ms - RequestID: 2r5zevm7c3n +2025-06-18T14:04:48.681Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 376ms - RequestID: 9fp0hxima4s +2025-06-18T14:04:48.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.1.152 - RequestID: fcy6mik8szu +2025-06-18T14:04:48.881Z [INFO] order-service - Operation: webhook_sent - Processing time: 299ms - RequestID: c4c5zeouxo5 +2025-06-18T14:04:48.981Z [INFO] order-service - Database SELECT on sessions - Execution time: 438ms - Rows affected: 49 - RequestID: g5f1egyett7 +2025-06-18T14:04:49.081Z [INFO] user-service - POST /api/v1/users - Status: 404 - Response time: 1799ms - IP: 192.168.1.152 - User: user_1018 - RequestID: 5z5lixyvgj6 +2025-06-18T14:04:49.181Z [INFO] auth-service - Operation: email_sent - Processing time: 762ms - RequestID: ng6xpk3ya9p +2025-06-18T14:04:49.281Z [INFO] notification-service - DELETE /api/v1/payments - Status: 400 - Response time: 924ms - IP: 192.168.187.199 - User: user_1083 - RequestID: hxjmcb49sbs +2025-06-18T14:04:49.381Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 992ms - RequestID: mf9pxdkh0lj +2025-06-18T14:04:49.481Z [TRACE] notification-service - Database INSERT on products - Execution time: 189ms - Rows affected: 88 - RequestID: 1p5unfas7tw +2025-06-18T14:04:49.581Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1019 - IP: 192.168.242.165 - RequestID: cjyqrswvphi +2025-06-18T14:04:49.681Z [TRACE] notification-service - Auth event: logout - User: user_1006 - IP: 192.168.33.76 - RequestID: 96csdv8u3p7 +2025-06-18T14:04:49.781Z [INFO] payment-service - GET /api/v1/auth/login - Status: 500 - Response time: 985ms - IP: 192.168.13.72 - User: user_1027 - RequestID: qgy6jme3fu +2025-06-18T14:04:49.881Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1139ms - IP: 192.168.211.72 - User: user_1056 - RequestID: a2z54w2gmwc +2025-06-18T14:04:49.981Z [DEBUG] auth-service - POST /api/v1/users - Status: 503 - Response time: 1382ms - IP: 192.168.53.133 - User: user_1007 - RequestID: 5fn2giwqy1f +2025-06-18T14:04:50.081Z [TRACE] inventory-service - Operation: email_sent - Processing time: 763ms - RequestID: 92uel8qlu84 +2025-06-18T14:04:50.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 592ms - RequestID: folfjl2at0q +2025-06-18T14:04:50.281Z [INFO] payment-service - Operation: cache_hit - Processing time: 540ms - RequestID: 5gdsx5xpsy +2025-06-18T14:04:50.381Z [DEBUG] user-service - GET /api/v1/users - Status: 404 - Response time: 195ms - IP: 192.168.158.144 - User: user_1010 - RequestID: 87hjydmyt34 +2025-06-18T14:04:50.481Z [TRACE] order-service - Database UPDATE on users - Execution time: 401ms - Rows affected: 6 - RequestID: 2oshs495l4t +2025-06-18T14:04:50.581Z [DEBUG] payment-service - Auth event: login_success - User: user_1042 - IP: 192.168.113.218 - RequestID: cisq9wwegpp +2025-06-18T14:04:50.681Z [TRACE] order-service - Operation: cache_miss - Processing time: 466ms - RequestID: ph3vizy9bw +2025-06-18T14:04:50.781Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 1037ms - RequestID: dri1ejp2s3h +2025-06-18T14:04:50.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 923ms - RequestID: hkgeufr7tjh +2025-06-18T14:04:50.981Z [INFO] payment-service - DELETE /api/v1/orders - Status: 200 - Response time: 1524ms - IP: 192.168.144.38 - User: user_1053 - RequestID: uidgunqq7hf +2025-06-18T14:04:51.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.170.215 - RequestID: b8vn8ipt2hl +2025-06-18T14:04:51.181Z [TRACE] user-service - PUT /api/v1/payments - Status: 500 - Response time: 847ms - IP: 192.168.167.32 - User: user_1039 - RequestID: c68nbdem0wa +2025-06-18T14:04:51.281Z [INFO] inventory-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.79.116 - RequestID: xkmahwlzlja +2025-06-18T14:04:51.381Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 1784ms - IP: 192.168.196.226 - User: user_1025 - RequestID: hvb24d77rbk +2025-06-18T14:04:51.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.64.33 - RequestID: hqtj44ypbdb +2025-06-18T14:04:51.581Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.174.114 - RequestID: jmb5glbh57 +2025-06-18T14:04:51.681Z [INFO] user-service - Auth event: logout - User: user_1080 - IP: 192.168.97.87 - RequestID: gtdtxoj8vnu +2025-06-18T14:04:51.781Z [DEBUG] order-service - Database SELECT on products - Execution time: 338ms - Rows affected: 34 - RequestID: vj5pjezvgj +2025-06-18T14:04:51.881Z [INFO] notification-service - Database SELECT on products - Execution time: 84ms - Rows affected: 64 - RequestID: hsprai64x8k +2025-06-18T14:04:51.981Z [INFO] notification-service - Database SELECT on orders - Execution time: 382ms - Rows affected: 54 - RequestID: 3jmr53p2ax5 +2025-06-18T14:04:52.081Z [TRACE] user-service - Database SELECT on payments - Execution time: 303ms - Rows affected: 29 - RequestID: igd3td9m3j +2025-06-18T14:04:52.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 915ms - RequestID: qa014c7emg +2025-06-18T14:04:52.281Z [TRACE] inventory-service - POST /api/v1/payments - Status: 200 - Response time: 1975ms - IP: 192.168.79.143 - User: user_1030 - RequestID: p3p9badstxd +2025-06-18T14:04:52.381Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.97.87 - RequestID: 1zfcou0y561 +2025-06-18T14:04:52.481Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 956ms - RequestID: 66iwq5e61f +2025-06-18T14:04:52.581Z [INFO] payment-service - Operation: payment_processed - Processing time: 188ms - RequestID: 66ryx78e8c7 +2025-06-18T14:04:52.681Z [INFO] order-service - Operation: email_sent - Processing time: 658ms - RequestID: aiqrycchocc +2025-06-18T14:04:52.781Z [TRACE] auth-service - Database INSERT on users - Execution time: 246ms - Rows affected: 72 - RequestID: twl8hgbzctj +2025-06-18T14:04:52.881Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 87ms - Rows affected: 6 - RequestID: ivfbjp4ven +2025-06-18T14:04:52.981Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 401 - Response time: 1467ms - IP: 192.168.174.114 - User: user_1020 - RequestID: pycxnnfcp8l +2025-06-18T14:04:53.081Z [DEBUG] payment-service - Auth event: password_change - User: user_1077 - IP: 192.168.97.87 - RequestID: d585stqdn1k +2025-06-18T14:04:53.181Z [DEBUG] auth-service - GET /api/v1/users - Status: 401 - Response time: 1850ms - IP: 192.168.229.123 - User: user_1058 - RequestID: 79q9grxwcg3 +2025-06-18T14:04:53.281Z [INFO] notification-service - Operation: notification_queued - Processing time: 679ms - RequestID: ddce44ckqx8 +2025-06-18T14:04:53.381Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1416ms - IP: 192.168.141.100 - User: user_1065 - RequestID: rp2beyz3jz +2025-06-18T14:04:53.481Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 321ms - Rows affected: 96 - RequestID: ub8dl40kl49 +2025-06-18T14:04:53.581Z [INFO] payment-service - Database INSERT on orders - Execution time: 204ms - Rows affected: 13 - RequestID: 5hdwtdt4smo +2025-06-18T14:04:53.681Z [DEBUG] auth-service - GET /api/v1/users - Status: 201 - Response time: 1539ms - IP: 192.168.227.233 - User: user_1082 - RequestID: 2tnqq0xsp84 +2025-06-18T14:04:53.781Z [TRACE] order-service - Operation: cache_miss - Processing time: 932ms - RequestID: cdh00ay8txr +2025-06-18T14:04:53.881Z [INFO] notification-service - Auth event: password_change - User: user_1077 - IP: 192.168.85.229 - RequestID: khsjr0q6jbq +2025-06-18T14:04:53.981Z [INFO] user-service - Auth event: logout - User: user_1097 - IP: 192.168.159.94 - RequestID: 1oa7zjsdubo +2025-06-18T14:04:54.081Z [INFO] order-service - POST /api/v1/auth/logout - Status: 502 - Response time: 250ms - IP: 192.168.227.233 - User: user_1081 - RequestID: 7np03qz25vw +2025-06-18T14:04:54.181Z [TRACE] notification-service - Operation: cache_hit - Processing time: 384ms - RequestID: 7qp8gmuyo7q +2025-06-18T14:04:54.281Z [TRACE] user-service - Operation: payment_processed - Processing time: 762ms - RequestID: lx2f9p6i1k +2025-06-18T14:04:54.381Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 417ms - Rows affected: 76 - RequestID: 5dsev4c9jfm +2025-06-18T14:04:54.481Z [INFO] auth-service - Operation: cache_hit - Processing time: 777ms - RequestID: w3ddln8gex +2025-06-18T14:04:54.581Z [INFO] inventory-service - Auth event: login_success - User: user_1010 - IP: 192.168.68.128 - RequestID: yz0dk2o12u +2025-06-18T14:04:54.681Z [DEBUG] order-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.32.38 - RequestID: 6rg3t65s7xd +2025-06-18T14:04:54.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.1.152 - RequestID: 1k643q9rrs3 +2025-06-18T14:04:54.881Z [DEBUG] order-service - Auth event: login_success - User: user_1058 - IP: 192.168.85.229 - RequestID: m25nyg0kfy +2025-06-18T14:04:54.981Z [INFO] user-service - DELETE /api/v1/orders - Status: 401 - Response time: 221ms - IP: 192.168.147.171 - User: user_1035 - RequestID: 7n66wfmccir +2025-06-18T14:04:55.081Z [INFO] auth-service - Auth event: login_success - User: user_1040 - IP: 192.168.64.33 - RequestID: 90eho6q9lvr +2025-06-18T14:04:55.181Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 608ms - RequestID: mbxs2isds5m +2025-06-18T14:04:55.281Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 40ms - Rows affected: 31 - RequestID: 33hd28djvva +2025-06-18T14:04:55.381Z [INFO] inventory-service - Operation: cache_miss - Processing time: 726ms - RequestID: ux2delwegt +2025-06-18T14:04:55.481Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 342ms - Rows affected: 82 - RequestID: dtxx22bp3fb +2025-06-18T14:04:55.581Z [INFO] order-service - Database INSERT on payments - Execution time: 77ms - Rows affected: 8 - RequestID: zjlc2jh90zq +2025-06-18T14:04:55.681Z [TRACE] user-service - GET /api/v1/orders - Status: 500 - Response time: 965ms - IP: 192.168.232.72 - User: user_1057 - RequestID: ztbmnxilhgi +2025-06-18T14:04:55.781Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 126ms - Rows affected: 83 - RequestID: 5kqcf0c3wqb +2025-06-18T14:04:55.881Z [TRACE] user-service - DELETE /api/v1/users - Status: 400 - Response time: 27ms - IP: 192.168.68.158 - User: user_1094 - RequestID: fnrzg81g9e8 +2025-06-18T14:04:55.981Z [INFO] user-service - Database UPDATE on sessions - Execution time: 476ms - Rows affected: 78 - RequestID: 08okdsq9yg9 +2025-06-18T14:04:56.081Z [DEBUG] payment-service - POST /api/v1/orders - Status: 503 - Response time: 454ms - IP: 192.168.242.165 - User: user_1029 - RequestID: woqa92hsrb +2025-06-18T14:04:56.181Z [INFO] inventory-service - Database INSERT on users - Execution time: 241ms - Rows affected: 82 - RequestID: 3zfrusilfhm +2025-06-18T14:04:56.281Z [DEBUG] auth-service - Operation: email_sent - Processing time: 994ms - RequestID: e2xsg9yohrm +2025-06-18T14:04:56.381Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 403 - Response time: 1456ms - IP: 192.168.235.117 - User: user_1007 - RequestID: ayfsx8pji9o +2025-06-18T14:04:56.481Z [TRACE] inventory-service - Auth event: logout - User: user_1041 - IP: 192.168.147.171 - RequestID: a8rigxttgg7 +2025-06-18T14:04:56.581Z [INFO] inventory-service - Database INSERT on products - Execution time: 354ms - Rows affected: 43 - RequestID: ot8bxjweaqb +2025-06-18T14:04:56.681Z [TRACE] auth-service - Database INSERT on payments - Execution time: 318ms - Rows affected: 43 - RequestID: 2psfgxmxwt7 +2025-06-18T14:04:56.781Z [DEBUG] order-service - Auth event: password_change - User: user_1064 - IP: 192.168.187.199 - RequestID: 01ezoqzxsanb +2025-06-18T14:04:56.881Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 183ms - Rows affected: 65 - RequestID: ymoy4v6698o +2025-06-18T14:04:56.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 462ms - RequestID: bygi70a31zf +2025-06-18T14:04:57.081Z [INFO] order-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.64.33 - RequestID: hi8c6sux0v9 +2025-06-18T14:04:57.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 94ms - RequestID: vu2ld4fyyd +2025-06-18T14:04:57.281Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 201 - Response time: 1643ms - IP: 192.168.141.100 - User: user_1001 - RequestID: mgjwinopshp +2025-06-18T14:04:57.381Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 143ms - RequestID: zqu72t9gd5i +2025-06-18T14:04:57.481Z [INFO] notification-service - Auth event: login_failed - User: user_1001 - IP: 192.168.133.7 - RequestID: 2idjmuxq9vy +2025-06-18T14:04:57.581Z [TRACE] auth-service - PUT /api/v1/payments - Status: 502 - Response time: 307ms - IP: 192.168.104.37 - User: user_1033 - RequestID: 3ypg5q19dbb +2025-06-18T14:04:57.681Z [DEBUG] notification-service - Operation: order_created - Processing time: 163ms - RequestID: qvqa419bowj +2025-06-18T14:04:57.781Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 759ms - IP: 192.168.64.33 - User: user_1051 - RequestID: pg14xe2ng9o +2025-06-18T14:04:57.881Z [DEBUG] user-service - Auth event: password_change - User: user_1075 - IP: 192.168.79.143 - RequestID: 54i4lvxdg93 +2025-06-18T14:04:57.981Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 540ms - IP: 192.168.138.123 - User: user_1024 - RequestID: j07amo7r2b +2025-06-18T14:04:58.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.232.72 - RequestID: d4morv1lfr +2025-06-18T14:04:58.181Z [INFO] notification-service - Operation: notification_queued - Processing time: 291ms - RequestID: ygx346b3v0f +2025-06-18T14:04:58.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.1.152 - RequestID: 3eap7n17ap +2025-06-18T14:04:58.381Z [TRACE] notification-service - Database INSERT on orders - Execution time: 121ms - Rows affected: 98 - RequestID: 426vx6vlt5z +2025-06-18T14:04:58.481Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 402ms - RequestID: cjmauzxmzcm +2025-06-18T14:04:58.581Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1961ms - IP: 192.168.235.117 - User: user_1010 - RequestID: sdntkjs84id +2025-06-18T14:04:58.681Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 79ms - Rows affected: 5 - RequestID: al2dqf2iyoa +2025-06-18T14:04:58.781Z [INFO] user-service - Database SELECT on products - Execution time: 87ms - Rows affected: 37 - RequestID: p76rnoujjxl +2025-06-18T14:04:58.881Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 447ms - Rows affected: 63 - RequestID: w6ae2iwzhyg +2025-06-18T14:04:58.981Z [INFO] order-service - PATCH /api/v1/users - Status: 503 - Response time: 1891ms - IP: 192.168.133.7 - User: user_1012 - RequestID: 704w55tcpww +2025-06-18T14:04:59.081Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 382ms - Rows affected: 2 - RequestID: yao0jviuose +2025-06-18T14:04:59.181Z [DEBUG] payment-service - Database SELECT on users - Execution time: 269ms - Rows affected: 57 - RequestID: uuh18xpiv2g +2025-06-18T14:04:59.281Z [INFO] order-service - Database UPDATE on users - Execution time: 365ms - Rows affected: 8 - RequestID: 9mz5d9dr92s +2025-06-18T14:04:59.381Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 364ms - Rows affected: 41 - RequestID: 5a7dl3bqlh5 +2025-06-18T14:04:59.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.33.76 - RequestID: k2wfjvaxnee +2025-06-18T14:04:59.581Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 302ms - Rows affected: 0 - RequestID: 91hz679qcl +2025-06-18T14:04:59.681Z [TRACE] order-service - Database SELECT on users - Execution time: 482ms - Rows affected: 40 - RequestID: kooyhvsftn +2025-06-18T14:04:59.781Z [INFO] order-service - Operation: email_sent - Processing time: 673ms - RequestID: 0jckzgc2v9h8 +2025-06-18T14:04:59.881Z [INFO] order-service - Operation: email_sent - Processing time: 407ms - RequestID: 550o6lkezfh +2025-06-18T14:04:59.981Z [INFO] payment-service - Operation: email_sent - Processing time: 129ms - RequestID: opqyvt931ik +2025-06-18T14:05:00.081Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 129ms - Rows affected: 1 - RequestID: 38fbk2orpr4 +2025-06-18T14:05:00.181Z [INFO] user-service - Database INSERT on users - Execution time: 192ms - Rows affected: 69 - RequestID: l50t76iam5n +2025-06-18T14:05:00.281Z [INFO] order-service - Operation: webhook_sent - Processing time: 469ms - RequestID: 3w6eeilghr8 +2025-06-18T14:05:00.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.79.143 - RequestID: 70dvrdscfud +2025-06-18T14:05:00.481Z [DEBUG] user-service - Database UPDATE on products - Execution time: 16ms - Rows affected: 68 - RequestID: 3zmc2rsft66 +2025-06-18T14:05:00.581Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 155ms - Rows affected: 21 - RequestID: jwp3gnnhsw +2025-06-18T14:05:00.681Z [INFO] order-service - Auth event: login_success - User: user_1094 - IP: 192.168.31.117 - RequestID: 74u84uy78ik +2025-06-18T14:05:00.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.1.152 - RequestID: 276e36y1ojl +2025-06-18T14:05:00.881Z [INFO] order-service - DELETE /api/v1/orders - Status: 502 - Response time: 1407ms - IP: 192.168.194.41 - User: user_1006 - RequestID: it7uijkgcfn +2025-06-18T14:05:00.981Z [INFO] inventory-service - Database INSERT on products - Execution time: 346ms - Rows affected: 53 - RequestID: fwn3dep3x85 +2025-06-18T14:05:01.081Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 381ms - Rows affected: 33 - RequestID: gjtg5x4oydo +2025-06-18T14:05:01.181Z [TRACE] auth-service - Operation: notification_queued - Processing time: 934ms - RequestID: u0oco5ez5x +2025-06-18T14:05:01.281Z [INFO] notification-service - Database DELETE on sessions - Execution time: 12ms - Rows affected: 61 - RequestID: zgncdvz1i4o +2025-06-18T14:05:01.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 258ms - RequestID: f6v8g53ljlf +2025-06-18T14:05:01.481Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 102ms - Rows affected: 97 - RequestID: s3h1uk5sf9j +2025-06-18T14:05:01.581Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 322ms - Rows affected: 70 - RequestID: e62vcmm8uyt +2025-06-18T14:05:01.681Z [TRACE] auth-service - Operation: notification_queued - Processing time: 412ms - RequestID: bi2qegkl6ol +2025-06-18T14:05:01.781Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 94ms - Rows affected: 63 - RequestID: ihxm16nyll +2025-06-18T14:05:01.881Z [INFO] notification-service - Operation: webhook_sent - Processing time: 1037ms - RequestID: ta6a4iodag +2025-06-18T14:05:01.981Z [DEBUG] user-service - Database UPDATE on products - Execution time: 15ms - Rows affected: 97 - RequestID: gzhll9b6wx +2025-06-18T14:05:02.081Z [INFO] order-service - Database UPDATE on orders - Execution time: 93ms - Rows affected: 6 - RequestID: 21f3v1jh5bo +2025-06-18T14:05:02.181Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 400 - Response time: 1504ms - IP: 192.168.104.37 - User: user_1052 - RequestID: 9ltes5hk88q +2025-06-18T14:05:02.281Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 194ms - Rows affected: 65 - RequestID: 47yyausnwdq +2025-06-18T14:05:02.381Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 280ms - RequestID: jdi0qvrxyr +2025-06-18T14:05:02.481Z [DEBUG] user-service - Operation: notification_queued - Processing time: 842ms - RequestID: a5ntb316ycb +2025-06-18T14:05:02.581Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1007ms - IP: 192.168.104.37 - User: user_1050 - RequestID: q9s0an580g +2025-06-18T14:05:02.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 840ms - RequestID: gv89qbq2o7r +2025-06-18T14:05:02.781Z [TRACE] order-service - PUT /api/v1/orders - Status: 404 - Response time: 1045ms - IP: 192.168.196.226 - User: user_1043 - RequestID: rz1wc9am6n +2025-06-18T14:05:02.881Z [INFO] user-service - Auth event: password_change - User: user_1011 - IP: 192.168.28.146 - RequestID: zwfrkyo1409 +2025-06-18T14:05:02.981Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 502 - Response time: 931ms - IP: 192.168.227.233 - User: user_1084 - RequestID: 3y322u1kyig +2025-06-18T14:05:03.081Z [INFO] user-service - POST /api/v1/orders - Status: 400 - Response time: 499ms - IP: 192.168.79.141 - User: user_1006 - RequestID: fl66k7wajw5 +2025-06-18T14:05:03.181Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 393ms - Rows affected: 48 - RequestID: afw4o3slpum +2025-06-18T14:05:03.281Z [INFO] order-service - Auth event: password_change - User: user_1052 - IP: 192.168.31.117 - RequestID: el4ljztn7ce +2025-06-18T14:05:03.381Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 490ms - Rows affected: 37 - RequestID: ikvx5w3f7bf +2025-06-18T14:05:03.481Z [INFO] order-service - Operation: webhook_sent - Processing time: 800ms - RequestID: nq4ody6y47 +2025-06-18T14:05:03.581Z [TRACE] user-service - Operation: payment_processed - Processing time: 759ms - RequestID: x8ksjkehew +2025-06-18T14:05:03.681Z [DEBUG] inventory-service - Auth event: logout - User: user_1002 - IP: 192.168.79.141 - RequestID: 62ati2uidm +2025-06-18T14:05:03.781Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 619ms - RequestID: 0ahn30ycuyg9 +2025-06-18T14:05:03.881Z [DEBUG] order-service - Auth event: login_failed - User: user_1008 - IP: 192.168.227.77 - RequestID: 1tbthtoklok +2025-06-18T14:05:03.981Z [INFO] payment-service - Operation: order_created - Processing time: 829ms - RequestID: l8qhkf728n +2025-06-18T14:05:04.081Z [TRACE] order-service - Auth event: logout - User: user_1029 - IP: 192.168.159.94 - RequestID: ow6kj6l7iv +2025-06-18T14:05:04.181Z [TRACE] order-service - Database SELECT on payments - Execution time: 375ms - Rows affected: 32 - RequestID: au747q1mdxi +2025-06-18T14:05:04.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 349ms - RequestID: sfn0nypht2o +2025-06-18T14:05:04.381Z [INFO] auth-service - Database INSERT on users - Execution time: 333ms - Rows affected: 75 - RequestID: 4dcyvrloj8b +2025-06-18T14:05:04.481Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 903ms - RequestID: agc3qrbi8cc +2025-06-18T14:05:04.581Z [INFO] payment-service - Operation: inventory_updated - Processing time: 770ms - RequestID: fmptscb6b6w +2025-06-18T14:05:04.681Z [DEBUG] order-service - Database SELECT on products - Execution time: 244ms - Rows affected: 79 - RequestID: mevkxq2lx68 +2025-06-18T14:05:04.781Z [TRACE] notification-service - Database DELETE on payments - Execution time: 109ms - Rows affected: 62 - RequestID: ienyxwwbqi +2025-06-18T14:05:04.881Z [TRACE] payment-service - Database UPDATE on users - Execution time: 55ms - Rows affected: 73 - RequestID: 4pwa4uj8se2 +2025-06-18T14:05:04.981Z [DEBUG] order-service - Database DELETE on users - Execution time: 488ms - Rows affected: 42 - RequestID: 2jlfc2st1i +2025-06-18T14:05:05.081Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 116ms - Rows affected: 33 - RequestID: e050p24n0o +2025-06-18T14:05:05.181Z [INFO] payment-service - DELETE /api/v1/users - Status: 403 - Response time: 1135ms - IP: 192.168.113.218 - User: user_1049 - RequestID: tvhqfmb3y7g +2025-06-18T14:05:05.281Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 268ms - Rows affected: 71 - RequestID: 2rdnlvcaw8c +2025-06-18T14:05:05.381Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 739ms - RequestID: f7vcacl6iy5 +2025-06-18T14:05:05.481Z [INFO] user-service - Database UPDATE on products - Execution time: 421ms - Rows affected: 43 - RequestID: roeq0cnqykb +2025-06-18T14:05:05.581Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 186ms - RequestID: yrxb46v6gmm +2025-06-18T14:05:05.681Z [DEBUG] order-service - Auth event: password_change - User: user_1019 - IP: 192.168.141.100 - RequestID: aze9trd4hws +2025-06-18T14:05:05.781Z [TRACE] user-service - DELETE /api/v1/payments - Status: 401 - Response time: 1221ms - IP: 192.168.32.38 - User: user_1069 - RequestID: 0z41wu837i59 +2025-06-18T14:05:05.881Z [TRACE] auth-service - Operation: cache_miss - Processing time: 210ms - RequestID: zxt5nruavvn +2025-06-18T14:05:05.981Z [DEBUG] payment-service - Auth event: login_failed - User: user_1060 - IP: 192.168.227.233 - RequestID: s9wmpxjzxxk +2025-06-18T14:05:06.081Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.170.215 - RequestID: os2xxclq2y +2025-06-18T14:05:06.181Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 522ms - RequestID: di9x5c0cuyt +2025-06-18T14:05:06.281Z [INFO] user-service - Auth event: logout - User: user_1025 - IP: 192.168.227.233 - RequestID: 9efc3z2h1o +2025-06-18T14:05:06.381Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 452ms - Rows affected: 48 - RequestID: vf4ofnv42ib +2025-06-18T14:05:06.481Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 403 - Response time: 391ms - IP: 192.168.97.87 - User: user_1015 - RequestID: rm70rngdlvr +2025-06-18T14:05:06.581Z [TRACE] auth-service - Database UPDATE on users - Execution time: 105ms - Rows affected: 44 - RequestID: txhu8wi0eem +2025-06-18T14:05:06.681Z [INFO] notification-service - GET /api/v1/auth/login - Status: 404 - Response time: 1184ms - IP: 192.168.31.117 - User: user_1078 - RequestID: 1hua9mfmk5o +2025-06-18T14:05:06.781Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 216ms - RequestID: xx4sz1p5am +2025-06-18T14:05:06.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 497ms - RequestID: jswov0emkds +2025-06-18T14:05:06.981Z [INFO] notification-service - Auth event: password_change - User: user_1055 - IP: 192.168.97.87 - RequestID: kps2lenddwl +2025-06-18T14:05:07.081Z [TRACE] payment-service - Operation: cache_hit - Processing time: 275ms - RequestID: 0ahp40oxx0rk +2025-06-18T14:05:07.181Z [TRACE] order-service - GET /api/v1/auth/login - Status: 503 - Response time: 2007ms - IP: 192.168.44.5 - User: user_1073 - RequestID: gcrc7onim6 +2025-06-18T14:05:07.281Z [INFO] order-service - Operation: cache_hit - Processing time: 635ms - RequestID: r23hk6q2hw +2025-06-18T14:05:07.381Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 200 - Response time: 84ms - IP: 192.168.81.206 - User: user_1081 - RequestID: j5t1bgzqlze +2025-06-18T14:05:07.481Z [INFO] inventory-service - Database SELECT on users - Execution time: 431ms - Rows affected: 51 - RequestID: 5m81zh96dwh +2025-06-18T14:05:07.581Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1728ms - IP: 192.168.133.7 - User: user_1020 - RequestID: idn6kn3s7kl +2025-06-18T14:05:07.681Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 912ms - IP: 192.168.159.94 - User: user_1068 - RequestID: 526s73oyrz5 +2025-06-18T14:05:07.781Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 400 - Response time: 917ms - IP: 192.168.100.240 - User: user_1043 - RequestID: wvew7m0agm8 +2025-06-18T14:05:07.881Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 503 - Response time: 1640ms - IP: 192.168.227.233 - User: user_1008 - RequestID: tw9khay2ho +2025-06-18T14:05:07.981Z [INFO] payment-service - Operation: payment_processed - Processing time: 65ms - RequestID: tiukkwxj06c +2025-06-18T14:05:08.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.113.218 - RequestID: 0hpkizowwxxk +2025-06-18T14:05:08.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1051 - IP: 192.168.158.144 - RequestID: fch5ugzp7z5 +2025-06-18T14:05:08.281Z [INFO] auth-service - Auth event: password_change - User: user_1032 - IP: 192.168.187.199 - RequestID: uwj86alq3cg +2025-06-18T14:05:08.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1070 - IP: 192.168.113.218 - RequestID: 4mudmkihadi +2025-06-18T14:05:08.481Z [INFO] payment-service - Operation: payment_processed - Processing time: 895ms - RequestID: lgl4ae6tg9d +2025-06-18T14:05:08.581Z [TRACE] notification-service - Operation: order_created - Processing time: 512ms - RequestID: lgtvtcdhs3 +2025-06-18T14:05:08.681Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 502 - Response time: 506ms - IP: 192.168.211.72 - User: user_1028 - RequestID: 6schcjnr7bp +2025-06-18T14:05:08.781Z [TRACE] order-service - Operation: webhook_sent - Processing time: 1030ms - RequestID: hws1j1006q +2025-06-18T14:05:08.881Z [INFO] user-service - Database DELETE on products - Execution time: 143ms - Rows affected: 60 - RequestID: rb32slngtsr +2025-06-18T14:05:08.981Z [TRACE] order-service - Operation: cache_hit - Processing time: 254ms - RequestID: ek9mnoifevj +2025-06-18T14:05:09.081Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 200 - Response time: 1975ms - IP: 192.168.170.215 - User: user_1023 - RequestID: 30b5vu24v7p +2025-06-18T14:05:09.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 70ms - RequestID: ci9grhs3e3q +2025-06-18T14:05:09.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 600ms - RequestID: hbeuaasxhcl +2025-06-18T14:05:09.381Z [TRACE] inventory-service - Operation: order_created - Processing time: 817ms - RequestID: dp0f2h8bwzm +2025-06-18T14:05:09.481Z [DEBUG] user-service - Operation: cache_hit - Processing time: 395ms - RequestID: s5obik8co3r +2025-06-18T14:05:09.581Z [INFO] user-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.247.134 - RequestID: v6gv44yfuqp +2025-06-18T14:05:09.681Z [INFO] order-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.10.184 - RequestID: y01e32gg9nr +2025-06-18T14:05:09.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 725ms - RequestID: qlmvdoue8hm +2025-06-18T14:05:09.881Z [INFO] payment-service - Auth event: password_change - User: user_1026 - IP: 192.168.227.233 - RequestID: tlkb2zztpu +2025-06-18T14:05:09.981Z [INFO] order-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.113.218 - RequestID: 7vxqy7yc0ov +2025-06-18T14:05:10.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.11.60 - RequestID: nzsx5etlg +2025-06-18T14:05:10.181Z [INFO] payment-service - GET /api/v1/users - Status: 500 - Response time: 1682ms - IP: 192.168.133.7 - User: user_1092 - RequestID: hsseoban6vj +2025-06-18T14:05:10.281Z [TRACE] inventory-service - Database SELECT on users - Execution time: 445ms - Rows affected: 83 - RequestID: ub3vux1i669 +2025-06-18T14:05:10.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 923ms - RequestID: 2sktip2fwhk +2025-06-18T14:05:10.481Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 502 - Response time: 1585ms - IP: 192.168.229.123 - User: user_1054 - RequestID: p7xfzlt247k +2025-06-18T14:05:10.581Z [INFO] order-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1564ms - IP: 192.168.247.134 - User: user_1033 - RequestID: wee2l7vod0k +2025-06-18T14:05:10.681Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 273ms - Rows affected: 43 - RequestID: wwepc26okpf +2025-06-18T14:05:10.781Z [TRACE] payment-service - Operation: cache_miss - Processing time: 123ms - RequestID: klt3ziwugt +2025-06-18T14:05:10.881Z [TRACE] payment-service - Database INSERT on orders - Execution time: 371ms - Rows affected: 99 - RequestID: ri2h85mi66i +2025-06-18T14:05:10.981Z [INFO] notification-service - POST /api/v1/orders - Status: 200 - Response time: 268ms - IP: 192.168.227.77 - User: user_1059 - RequestID: sg6sifcwm6f +2025-06-18T14:05:11.081Z [INFO] order-service - Database UPDATE on sessions - Execution time: 287ms - Rows affected: 87 - RequestID: kvkrmgryk6 +2025-06-18T14:05:11.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.104.37 - RequestID: 7i817icxa1w +2025-06-18T14:05:11.281Z [TRACE] inventory-service - Database SELECT on users - Execution time: 190ms - Rows affected: 92 - RequestID: p0xige6e4er +2025-06-18T14:05:11.381Z [TRACE] order-service - DELETE /api/v1/payments - Status: 200 - Response time: 293ms - IP: 192.168.232.72 - User: user_1042 - RequestID: k4oyv7dt3nm +2025-06-18T14:05:11.481Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 401 - Response time: 177ms - IP: 192.168.147.171 - User: user_1020 - RequestID: dbyth8hxrr7 +2025-06-18T14:05:11.581Z [INFO] payment-service - Operation: email_sent - Processing time: 703ms - RequestID: dgpyra6o3p4 +2025-06-18T14:05:11.681Z [INFO] auth-service - Database SELECT on payments - Execution time: 427ms - Rows affected: 40 - RequestID: k25dbqc691f +2025-06-18T14:05:11.781Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 335ms - Rows affected: 77 - RequestID: kj45ewq01lc +2025-06-18T14:05:11.881Z [DEBUG] user-service - Auth event: login_success - User: user_1088 - IP: 192.168.28.146 - RequestID: rvkloi5sku +2025-06-18T14:05:11.981Z [INFO] auth-service - Auth event: login_success - User: user_1045 - IP: 192.168.159.94 - RequestID: 6ybipd6to3y +2025-06-18T14:05:12.081Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 436ms - Rows affected: 90 - RequestID: i5tt5fawcxp +2025-06-18T14:05:12.181Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 73ms - Rows affected: 56 - RequestID: 68dj4qtb1ng +2025-06-18T14:05:12.281Z [TRACE] payment-service - PUT /api/v1/payments - Status: 404 - Response time: 421ms - IP: 192.168.30.79 - User: user_1070 - RequestID: e7b06ddxi76 +2025-06-18T14:05:12.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 827ms - RequestID: mja0syieynj +2025-06-18T14:05:12.481Z [INFO] auth-service - Operation: email_sent - Processing time: 822ms - RequestID: 3wqk54ecyph +2025-06-18T14:05:12.581Z [DEBUG] user-service - PUT /api/v1/users - Status: 404 - Response time: 1234ms - IP: 192.168.240.169 - User: user_1061 - RequestID: cv2w4eva7mk +2025-06-18T14:05:12.681Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 725ms - RequestID: q9659qq2419 +2025-06-18T14:05:12.781Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 92ms - Rows affected: 11 - RequestID: u4q7nqp3rva +2025-06-18T14:05:12.881Z [TRACE] notification-service - Operation: payment_processed - Processing time: 97ms - RequestID: kc78s939ci +2025-06-18T14:05:12.981Z [INFO] notification-service - Database UPDATE on payments - Execution time: 443ms - Rows affected: 90 - RequestID: gh83wp9f9 +2025-06-18T14:05:13.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1015 - IP: 192.168.181.225 - RequestID: 5h3trxywyam +2025-06-18T14:05:13.181Z [DEBUG] auth-service - Auth event: login_failed - User: user_1066 - IP: 192.168.147.171 - RequestID: now3t50raxg +2025-06-18T14:05:13.281Z [INFO] order-service - Operation: cache_miss - Processing time: 334ms - RequestID: 886rhgdu9h7 +2025-06-18T14:05:13.381Z [TRACE] inventory-service - Auth event: password_change - User: user_1050 - IP: 192.168.79.141 - RequestID: xwu649158hq +2025-06-18T14:05:13.481Z [DEBUG] payment-service - Operation: email_sent - Processing time: 1048ms - RequestID: 9cyc2cu02rl +2025-06-18T14:05:13.581Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 48ms - Rows affected: 51 - RequestID: 49v1ip1oxny +2025-06-18T14:05:13.681Z [TRACE] inventory-service - POST /api/v1/orders - Status: 401 - Response time: 887ms - IP: 192.168.181.225 - User: user_1052 - RequestID: rphjrcvk58m +2025-06-18T14:05:13.781Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 1041ms - RequestID: ui6htm6jq3 +2025-06-18T14:05:13.881Z [INFO] order-service - Operation: order_created - Processing time: 72ms - RequestID: 8c2vcskyo67 +2025-06-18T14:05:13.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 888ms - RequestID: ttm5u2fl2u +2025-06-18T14:05:14.081Z [INFO] notification-service - Operation: payment_processed - Processing time: 1031ms - RequestID: 7gchn3w9yi +2025-06-18T14:05:14.181Z [DEBUG] order-service - Database DELETE on orders - Execution time: 401ms - Rows affected: 22 - RequestID: vk9u3y1yv6l +2025-06-18T14:05:14.281Z [INFO] auth-service - DELETE /api/v1/users - Status: 403 - Response time: 397ms - IP: 192.168.11.60 - User: user_1091 - RequestID: 1kcnsi3g03w +2025-06-18T14:05:14.381Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 954ms - RequestID: 10shnpyaw1sc +2025-06-18T14:05:14.481Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 1021ms - RequestID: klyl8bqdkd +2025-06-18T14:05:14.581Z [TRACE] payment-service - Operation: payment_processed - Processing time: 515ms - RequestID: eda29c8tdra +2025-06-18T14:05:14.681Z [DEBUG] user-service - Database SELECT on payments - Execution time: 102ms - Rows affected: 88 - RequestID: zfn0hb4o0tn +2025-06-18T14:05:14.781Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 74ms - Rows affected: 24 - RequestID: 09vrsh0b5sar +2025-06-18T14:05:14.881Z [TRACE] inventory-service - GET /api/v1/users - Status: 200 - Response time: 1178ms - IP: 192.168.227.233 - User: user_1013 - RequestID: rqebcgt7ze +2025-06-18T14:05:14.981Z [INFO] payment-service - Operation: cache_miss - Processing time: 661ms - RequestID: tsf64fur2g +2025-06-18T14:05:15.081Z [INFO] inventory-service - Operation: payment_processed - Processing time: 606ms - RequestID: dczqgbu3v1g +2025-06-18T14:05:15.181Z [DEBUG] auth-service - Database SELECT on users - Execution time: 15ms - Rows affected: 12 - RequestID: zhoypnyj5r9 +2025-06-18T14:05:15.281Z [INFO] auth-service - Database INSERT on sessions - Execution time: 68ms - Rows affected: 11 - RequestID: 1jjyu4tl99z +2025-06-18T14:05:15.381Z [TRACE] order-service - DELETE /api/v1/payments - Status: 404 - Response time: 1091ms - IP: 192.168.167.32 - User: user_1013 - RequestID: hr1kxayblof +2025-06-18T14:05:15.481Z [INFO] order-service - Database INSERT on orders - Execution time: 391ms - Rows affected: 13 - RequestID: 4n2j4kdl6nh +2025-06-18T14:05:15.581Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 224ms - RequestID: p2dv1zog2ob +2025-06-18T14:05:15.681Z [DEBUG] user-service - Auth event: login_success - User: user_1002 - IP: 192.168.81.206 - RequestID: ehj9ep3ng1e +2025-06-18T14:05:15.781Z [TRACE] order-service - Operation: cache_hit - Processing time: 618ms - RequestID: f5y5gyvutpu +2025-06-18T14:05:15.881Z [INFO] payment-service - Operation: payment_processed - Processing time: 642ms - RequestID: daon4bk2tgt +2025-06-18T14:05:15.981Z [TRACE] user-service - POST /api/v1/auth/login - Status: 502 - Response time: 572ms - IP: 192.168.28.146 - User: user_1016 - RequestID: 3yxzoynh19l +2025-06-18T14:05:16.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.138.123 - RequestID: zl6111cb1e +2025-06-18T14:05:16.181Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 67ms - Rows affected: 43 - RequestID: m2g6o4hoqt +2025-06-18T14:05:16.281Z [TRACE] auth-service - Operation: notification_queued - Processing time: 587ms - RequestID: iztcn3je6ei +2025-06-18T14:05:16.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.147.171 - RequestID: tpd5v5bgxgq +2025-06-18T14:05:16.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.187.199 - RequestID: snorlfe6u1n +2025-06-18T14:05:16.581Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 890ms - RequestID: qp5ba3ng3r +2025-06-18T14:05:16.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 304ms - RequestID: sydiqqzc5p +2025-06-18T14:05:16.781Z [DEBUG] order-service - Database DELETE on products - Execution time: 191ms - Rows affected: 9 - RequestID: kirvdtk11h +2025-06-18T14:05:16.881Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 220ms - Rows affected: 42 - RequestID: a9n5ehi36hw +2025-06-18T14:05:16.981Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 8ms - Rows affected: 67 - RequestID: 2h6glg9wgo5 +2025-06-18T14:05:17.081Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 478ms - IP: 192.168.1.152 - User: user_1048 - RequestID: 5k0dasi0eax +2025-06-18T14:05:17.181Z [TRACE] order-service - Operation: cache_hit - Processing time: 572ms - RequestID: iu5vvv6x36k +2025-06-18T14:05:17.281Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 401 - Response time: 387ms - IP: 192.168.196.226 - User: user_1005 - RequestID: i97sr7ns1j +2025-06-18T14:05:17.381Z [TRACE] user-service - Database UPDATE on orders - Execution time: 391ms - Rows affected: 39 - RequestID: bhxzt664utn +2025-06-18T14:05:17.481Z [INFO] order-service - Database UPDATE on sessions - Execution time: 175ms - Rows affected: 96 - RequestID: tb33y0ly5r7 +2025-06-18T14:05:17.581Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 401 - Response time: 158ms - IP: 192.168.194.41 - User: user_1080 - RequestID: e060hp81pk +2025-06-18T14:05:17.681Z [TRACE] notification-service - GET /api/v1/orders - Status: 503 - Response time: 587ms - IP: 192.168.13.72 - User: user_1033 - RequestID: u7qv6prxfnd +2025-06-18T14:05:17.781Z [TRACE] user-service - Operation: email_sent - Processing time: 357ms - RequestID: 55d0oleft2y +2025-06-18T14:05:17.881Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 502 - Response time: 600ms - IP: 192.168.227.233 - User: user_1033 - RequestID: 66cvqjxpgww +2025-06-18T14:05:17.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1072 - IP: 192.168.14.77 - RequestID: 9y38s44en84 +2025-06-18T14:05:18.081Z [TRACE] order-service - Operation: payment_processed - Processing time: 876ms - RequestID: 6w45a57ghnt +2025-06-18T14:05:18.181Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 64ms - Rows affected: 15 - RequestID: saoiuuupeb +2025-06-18T14:05:18.281Z [TRACE] payment-service - Operation: cache_miss - Processing time: 869ms - RequestID: nzbmcn90ir8 +2025-06-18T14:05:18.381Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 400 - Response time: 592ms - IP: 192.168.170.215 - User: user_1097 - RequestID: h6dg4jp5zxe +2025-06-18T14:05:18.481Z [TRACE] payment-service - Operation: cache_hit - Processing time: 122ms - RequestID: 0906i98jufan +2025-06-18T14:05:18.581Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 63ms - Rows affected: 80 - RequestID: qelv34z6nb +2025-06-18T14:05:18.681Z [INFO] inventory-service - Database SELECT on orders - Execution time: 25ms - Rows affected: 30 - RequestID: 0mpns4z2laz +2025-06-18T14:05:18.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1097 - IP: 192.168.100.240 - RequestID: brapfwrpy8u +2025-06-18T14:05:18.881Z [INFO] order-service - Database SELECT on products - Execution time: 24ms - Rows affected: 44 - RequestID: 8y67iuonmtc +2025-06-18T14:05:18.981Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 200 - Response time: 66ms - IP: 192.168.100.240 - User: user_1099 - RequestID: s99l8hedar +2025-06-18T14:05:19.081Z [INFO] notification-service - PATCH /api/v1/users - Status: 400 - Response time: 207ms - IP: 192.168.28.146 - User: user_1085 - RequestID: meew0v1lcml +2025-06-18T14:05:19.181Z [TRACE] inventory-service - GET /api/v1/orders - Status: 201 - Response time: 758ms - IP: 192.168.32.38 - User: user_1085 - RequestID: 3dibv6e0nr8 +2025-06-18T14:05:19.281Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 193ms - Rows affected: 31 - RequestID: jwxfrjytybf +2025-06-18T14:05:19.381Z [DEBUG] user-service - Operation: cache_hit - Processing time: 230ms - RequestID: rbm2gj3rewk +2025-06-18T14:05:19.481Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 502 - Response time: 1274ms - IP: 192.168.30.79 - User: user_1018 - RequestID: uriajklun9 +2025-06-18T14:05:19.581Z [DEBUG] order-service - Database UPDATE on users - Execution time: 339ms - Rows affected: 53 - RequestID: 65ir8fqtm29 +2025-06-18T14:05:19.681Z [INFO] user-service - Database INSERT on sessions - Execution time: 219ms - Rows affected: 49 - RequestID: xt3bk72v4ff +2025-06-18T14:05:19.781Z [INFO] inventory-service - POST /api/v1/payments - Status: 201 - Response time: 1213ms - IP: 192.168.36.218 - User: user_1080 - RequestID: a1set848ctm +2025-06-18T14:05:19.881Z [TRACE] user-service - Auth event: logout - User: user_1063 - IP: 192.168.68.158 - RequestID: 380xx1vxmo +2025-06-18T14:05:19.981Z [INFO] user-service - Operation: email_sent - Processing time: 360ms - RequestID: 9oifpc0waum +2025-06-18T14:05:20.081Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 771ms - IP: 192.168.174.114 - User: user_1094 - RequestID: brtj0xjfkbf +2025-06-18T14:05:20.181Z [INFO] order-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.104.37 - RequestID: mxu2zmxefjb +2025-06-18T14:05:20.281Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 400 - Response time: 1890ms - IP: 192.168.1.152 - User: user_1091 - RequestID: 632suym1h4i +2025-06-18T14:05:20.381Z [INFO] order-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.194.41 - RequestID: 0l32dllf2gi +2025-06-18T14:05:20.481Z [TRACE] payment-service - Operation: cache_hit - Processing time: 900ms - RequestID: tx3vxjxu64f +2025-06-18T14:05:20.581Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 401 - Response time: 785ms - IP: 192.168.227.233 - User: user_1094 - RequestID: 160tsr0ti8r +2025-06-18T14:05:20.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.28.146 - RequestID: iqdah7w6mz +2025-06-18T14:05:20.781Z [TRACE] payment-service - POST /api/v1/users - Status: 503 - Response time: 1039ms - IP: 192.168.141.100 - User: user_1018 - RequestID: rlzy7ga6u9 +2025-06-18T14:05:20.881Z [TRACE] inventory-service - Auth event: logout - User: user_1000 - IP: 192.168.138.123 - RequestID: 39yt2hesn6 +2025-06-18T14:05:20.981Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 397ms - Rows affected: 92 - RequestID: 312evjdcedw +2025-06-18T14:05:21.081Z [TRACE] notification-service - Auth event: login_failed - User: user_1051 - IP: 192.168.53.133 - RequestID: oxxjoeduz0e +2025-06-18T14:05:21.181Z [INFO] auth-service - Operation: webhook_sent - Processing time: 958ms - RequestID: a6oi8qbi6rl +2025-06-18T14:05:21.281Z [INFO] notification-service - Database UPDATE on payments - Execution time: 109ms - Rows affected: 41 - RequestID: o2y8xsc9uhq +2025-06-18T14:05:21.381Z [DEBUG] payment-service - Operation: order_created - Processing time: 1009ms - RequestID: 8wbb1s038cs +2025-06-18T14:05:21.481Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 66ms - IP: 192.168.30.79 - User: user_1057 - RequestID: j0iiq6a90ae +2025-06-18T14:05:21.581Z [INFO] auth-service - Auth event: login_success - User: user_1054 - IP: 192.168.11.60 - RequestID: 7xaem5761yh +2025-06-18T14:05:21.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.247.134 - RequestID: wenth2fazvi +2025-06-18T14:05:21.781Z [DEBUG] user-service - Database INSERT on payments - Execution time: 113ms - Rows affected: 64 - RequestID: pv9nog83p9 +2025-06-18T14:05:21.881Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.68.128 - RequestID: 3t4awkma7mq +2025-06-18T14:05:21.981Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 241ms - IP: 192.168.11.60 - User: user_1018 - RequestID: rnh5qbnaza +2025-06-18T14:05:22.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 326ms - RequestID: bqfwr8krp3q +2025-06-18T14:05:22.181Z [TRACE] notification-service - Operation: cache_miss - Processing time: 222ms - RequestID: m32i48v3jxh +2025-06-18T14:05:22.281Z [TRACE] order-service - Operation: email_sent - Processing time: 164ms - RequestID: x7hw15tuign +2025-06-18T14:05:22.381Z [DEBUG] user-service - Database INSERT on users - Execution time: 103ms - Rows affected: 92 - RequestID: vw92sug25u +2025-06-18T14:05:22.481Z [DEBUG] user-service - Operation: notification_queued - Processing time: 163ms - RequestID: zzwr8lqcr9 +2025-06-18T14:05:22.581Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 404 - Response time: 906ms - IP: 192.168.235.117 - User: user_1084 - RequestID: m6b6ruvb2ue +2025-06-18T14:05:22.681Z [INFO] inventory-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.32.38 - RequestID: 2mqwog6x0vr +2025-06-18T14:05:22.781Z [INFO] auth-service - Database SELECT on users - Execution time: 392ms - Rows affected: 89 - RequestID: x9vach608x +2025-06-18T14:05:22.881Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 428ms - Rows affected: 8 - RequestID: fbonj9flwrd +2025-06-18T14:05:22.981Z [INFO] inventory-service - Operation: order_created - Processing time: 634ms - RequestID: qyoywkb1c9 +2025-06-18T14:05:23.081Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 400 - Response time: 908ms - IP: 192.168.189.103 - User: user_1056 - RequestID: y9jz82bfvnr +2025-06-18T14:05:23.181Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 25ms - Rows affected: 79 - RequestID: pm2p4eoqt8 +2025-06-18T14:05:23.281Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 246ms - RequestID: n64my0wwthm +2025-06-18T14:05:23.381Z [INFO] user-service - Operation: cache_miss - Processing time: 973ms - RequestID: bguyx1ao2ja +2025-06-18T14:05:23.481Z [TRACE] payment-service - Database SELECT on payments - Execution time: 381ms - Rows affected: 82 - RequestID: vywizkj8zjm +2025-06-18T14:05:23.581Z [INFO] notification-service - PUT /api/v1/payments - Status: 503 - Response time: 1392ms - IP: 192.168.141.100 - User: user_1006 - RequestID: iumzgfypot +2025-06-18T14:05:23.681Z [TRACE] user-service - PATCH /api/v1/payments - Status: 403 - Response time: 208ms - IP: 192.168.11.60 - User: user_1033 - RequestID: 5vbz2fhvzae +2025-06-18T14:05:23.781Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 813ms - RequestID: o0bgdvjsg7p +2025-06-18T14:05:23.881Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 321ms - Rows affected: 66 - RequestID: rc8vpcz2qmb +2025-06-18T14:05:23.981Z [TRACE] auth-service - Database DELETE on payments - Execution time: 308ms - Rows affected: 40 - RequestID: k0a5puva3ni +2025-06-18T14:05:24.081Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 482ms - Rows affected: 48 - RequestID: mfikhmbim6c +2025-06-18T14:05:24.181Z [DEBUG] user-service - Operation: cache_hit - Processing time: 952ms - RequestID: rt5ztz64x9 +2025-06-18T14:05:24.281Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 789ms - RequestID: pv9wxe01ws +2025-06-18T14:05:24.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 89ms - RequestID: c7lfcvbit +2025-06-18T14:05:24.481Z [TRACE] auth-service - Auth event: logout - User: user_1016 - IP: 192.168.242.165 - RequestID: zrysvscddne +2025-06-18T14:05:24.581Z [TRACE] order-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.227.77 - RequestID: 37y1j2sa9do +2025-06-18T14:05:24.681Z [TRACE] notification-service - Operation: notification_queued - Processing time: 742ms - RequestID: 6crtnhf8gl +2025-06-18T14:05:24.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.79.116 - RequestID: mdhmiyhsl98 +2025-06-18T14:05:24.881Z [DEBUG] user-service - POST /api/v1/inventory - Status: 200 - Response time: 1245ms - IP: 192.168.81.206 - User: user_1077 - RequestID: 50myjom1obj +2025-06-18T14:05:24.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.46.63 - RequestID: 4l4ffxkabiw +2025-06-18T14:05:25.081Z [INFO] order-service - Operation: notification_queued - Processing time: 233ms - RequestID: cgp3nd5jok6 +2025-06-18T14:05:25.181Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 990ms - IP: 192.168.158.144 - User: user_1025 - RequestID: djehpeav9n5 +2025-06-18T14:05:25.281Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 348ms - Rows affected: 65 - RequestID: st3xrsm2zhg +2025-06-18T14:05:25.381Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1117ms - IP: 192.168.232.72 - User: user_1070 - RequestID: 35ndlamhw88 +2025-06-18T14:05:25.481Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 86ms - Rows affected: 71 - RequestID: dqr7ejg66df +2025-06-18T14:05:25.581Z [TRACE] order-service - POST /api/v1/inventory - Status: 403 - Response time: 1290ms - IP: 192.168.104.37 - User: user_1064 - RequestID: wbgtffyb27r +2025-06-18T14:05:25.681Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 395ms - Rows affected: 56 - RequestID: k54ylxsa8 +2025-06-18T14:05:25.781Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1126ms - IP: 192.168.174.114 - User: user_1046 - RequestID: grfyj44u7l8 +2025-06-18T14:05:25.881Z [TRACE] notification-service - Operation: notification_queued - Processing time: 860ms - RequestID: mthxjsg3rqg +2025-06-18T14:05:25.981Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 922ms - IP: 192.168.85.229 - User: user_1034 - RequestID: xh9lrchcq6 +2025-06-18T14:05:26.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 1044ms - RequestID: xybaxuhwj7 +2025-06-18T14:05:26.181Z [INFO] auth-service - Auth event: login_failed - User: user_1071 - IP: 192.168.46.63 - RequestID: u89qju4v46 +2025-06-18T14:05:26.281Z [INFO] auth-service - Database DELETE on orders - Execution time: 175ms - Rows affected: 85 - RequestID: 34aum6df9dt +2025-06-18T14:05:26.381Z [DEBUG] notification-service - Auth event: logout - User: user_1006 - IP: 192.168.81.206 - RequestID: dvelsmmy3x4 +2025-06-18T14:05:26.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 581ms - RequestID: bu24sfj0ocb +2025-06-18T14:05:26.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 274ms - RequestID: zoxzw07x0pm +2025-06-18T14:05:26.681Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 379ms - Rows affected: 58 - RequestID: mkcozn1kw9 +2025-06-18T14:05:26.781Z [INFO] auth-service - Database DELETE on orders - Execution time: 499ms - Rows affected: 90 - RequestID: cy4qfnkzc4i +2025-06-18T14:05:26.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1032 - IP: 192.168.14.77 - RequestID: zc7koz23b3o +2025-06-18T14:05:26.981Z [TRACE] order-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.97.87 - RequestID: dstla8x1iif +2025-06-18T14:05:27.081Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1861ms - IP: 192.168.242.165 - User: user_1063 - RequestID: gyo8e873mt +2025-06-18T14:05:27.181Z [INFO] user-service - Database INSERT on sessions - Execution time: 277ms - Rows affected: 65 - RequestID: 3yrthwdimx5 +2025-06-18T14:05:27.281Z [INFO] inventory-service - Auth event: logout - User: user_1091 - IP: 192.168.133.7 - RequestID: k8qqi9o85mb +2025-06-18T14:05:27.381Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 503 - Response time: 864ms - IP: 192.168.211.72 - User: user_1094 - RequestID: vg9m6ye4lgf +2025-06-18T14:05:27.481Z [TRACE] inventory-service - Auth event: password_change - User: user_1068 - IP: 192.168.79.116 - RequestID: 6lfnap6et3f +2025-06-18T14:05:27.581Z [TRACE] payment-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.227.77 - RequestID: yqmhcnogzv +2025-06-18T14:05:27.681Z [DEBUG] auth-service - GET /api/v1/users - Status: 201 - Response time: 216ms - IP: 192.168.64.33 - User: user_1077 - RequestID: gxoojm6s037 +2025-06-18T14:05:27.781Z [INFO] inventory-service - Database INSERT on users - Execution time: 290ms - Rows affected: 50 - RequestID: d7weff18hw5 +2025-06-18T14:05:27.881Z [INFO] order-service - Database INSERT on users - Execution time: 357ms - Rows affected: 57 - RequestID: cc9zzqfa7l7 +2025-06-18T14:05:27.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.79.141 - RequestID: cwti3pfzk7h +2025-06-18T14:05:28.081Z [TRACE] user-service - Database DELETE on users - Execution time: 376ms - Rows affected: 44 - RequestID: 73n374gr2aj +2025-06-18T14:05:28.181Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1573ms - IP: 192.168.68.158 - User: user_1056 - RequestID: tl7tuwcu9of +2025-06-18T14:05:28.281Z [INFO] auth-service - DELETE /api/v1/payments - Status: 401 - Response time: 1592ms - IP: 192.168.147.171 - User: user_1074 - RequestID: jsiz21h5czq +2025-06-18T14:05:28.381Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 403 - Response time: 1500ms - IP: 192.168.28.146 - User: user_1007 - RequestID: zikfypojg8 +2025-06-18T14:05:28.481Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1024ms - IP: 192.168.85.229 - User: user_1064 - RequestID: rm25h8qlohn +2025-06-18T14:05:28.581Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1320ms - IP: 192.168.227.77 - User: user_1053 - RequestID: yqyygpe6ly +2025-06-18T14:05:28.681Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 93ms - Rows affected: 4 - RequestID: 04tsq9n7whha +2025-06-18T14:05:28.781Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 955ms - RequestID: q5pzosc83tg +2025-06-18T14:05:28.881Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 344ms - Rows affected: 83 - RequestID: re1zkt4b1f +2025-06-18T14:05:28.981Z [INFO] order-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.133.7 - RequestID: 9uhp57qz2zk +2025-06-18T14:05:29.081Z [TRACE] auth-service - Auth event: logout - User: user_1048 - IP: 192.168.247.134 - RequestID: fitfrwnedjh +2025-06-18T14:05:29.181Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 400 - Response time: 126ms - IP: 192.168.187.199 - User: user_1018 - RequestID: ldhopmu1ol8 +2025-06-18T14:05:29.281Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 120ms - Rows affected: 22 - RequestID: ck0xi6gygdp +2025-06-18T14:05:29.381Z [DEBUG] inventory-service - Operation: order_created - Processing time: 588ms - RequestID: 60he1ipmha6 +2025-06-18T14:05:29.481Z [INFO] inventory-service - PUT /api/v1/users - Status: 400 - Response time: 359ms - IP: 192.168.158.144 - User: user_1059 - RequestID: 1zvq89893qj +2025-06-18T14:05:29.581Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 500 - Response time: 1490ms - IP: 192.168.235.117 - User: user_1094 - RequestID: a62d50fcpo +2025-06-18T14:05:29.681Z [INFO] inventory-service - Auth event: logout - User: user_1028 - IP: 192.168.242.165 - RequestID: 296ntso1n0k +2025-06-18T14:05:29.781Z [DEBUG] order-service - Operation: email_sent - Processing time: 325ms - RequestID: dhqauuxl7f8 +2025-06-18T14:05:29.881Z [DEBUG] user-service - POST /api/v1/orders - Status: 400 - Response time: 24ms - IP: 192.168.227.233 - User: user_1089 - RequestID: 51691udszid +2025-06-18T14:05:29.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1053 - IP: 192.168.240.169 - RequestID: smv4ddvl9ui +2025-06-18T14:05:30.081Z [DEBUG] order-service - Database SELECT on payments - Execution time: 435ms - Rows affected: 93 - RequestID: x1zjo17vn8 +2025-06-18T14:05:30.181Z [INFO] notification-service - Operation: inventory_updated - Processing time: 455ms - RequestID: ziv5ra7dq8 +2025-06-18T14:05:30.281Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 502 - Response time: 411ms - IP: 192.168.194.41 - User: user_1067 - RequestID: 1ucjrg1vn64 +2025-06-18T14:05:30.381Z [INFO] order-service - Database SELECT on sessions - Execution time: 464ms - Rows affected: 93 - RequestID: zkinkx40uf +2025-06-18T14:05:30.481Z [INFO] order-service - Operation: webhook_sent - Processing time: 464ms - RequestID: ty1cv3fujh9 +2025-06-18T14:05:30.581Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 285ms - Rows affected: 51 - RequestID: h409re6ucl9 +2025-06-18T14:05:30.681Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 184ms - IP: 192.168.227.77 - User: user_1033 - RequestID: zlzhylq3l8 +2025-06-18T14:05:30.781Z [TRACE] notification-service - Operation: email_sent - Processing time: 634ms - RequestID: 17ta36jylsg +2025-06-18T14:05:30.881Z [TRACE] order-service - Operation: webhook_sent - Processing time: 937ms - RequestID: ew54xu2pe8 +2025-06-18T14:05:30.981Z [INFO] notification-service - Operation: notification_queued - Processing time: 762ms - RequestID: 8bb8v45r1a4 +2025-06-18T14:05:31.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.64.33 - RequestID: xtdx3wojea +2025-06-18T14:05:31.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.189.103 - RequestID: 8w1qltaulnc +2025-06-18T14:05:31.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 391ms - RequestID: qnw1ma05tw8 +2025-06-18T14:05:31.381Z [INFO] order-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.170.215 - RequestID: fytx708p6w +2025-06-18T14:05:31.481Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 702ms - RequestID: ps3j9isx7r +2025-06-18T14:05:31.581Z [TRACE] order-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.79.116 - RequestID: jlj52xckczc +2025-06-18T14:05:31.681Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 114ms - RequestID: ra5dfxz5pq +2025-06-18T14:05:31.781Z [DEBUG] user-service - Operation: payment_processed - Processing time: 588ms - RequestID: rx7d0tfq0yl +2025-06-18T14:05:31.881Z [TRACE] order-service - DELETE /api/v1/users - Status: 404 - Response time: 1841ms - IP: 192.168.144.38 - User: user_1018 - RequestID: 94rmv7fxvzv +2025-06-18T14:05:31.981Z [DEBUG] user-service - Auth event: logout - User: user_1006 - IP: 192.168.46.63 - RequestID: cx1n8irzym5 +2025-06-18T14:05:32.081Z [TRACE] payment-service - Auth event: logout - User: user_1019 - IP: 192.168.104.37 - RequestID: 01x7jsd4621a +2025-06-18T14:05:32.181Z [TRACE] inventory-service - Operation: email_sent - Processing time: 375ms - RequestID: c513wrszyqf +2025-06-18T14:05:32.281Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 322ms - Rows affected: 59 - RequestID: kcjz5awzctq +2025-06-18T14:05:32.381Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 815ms - RequestID: ykka6wnzdwh +2025-06-18T14:05:32.481Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 1013ms - RequestID: rj8sp5x7jjl +2025-06-18T14:05:32.581Z [INFO] auth-service - Database DELETE on products - Execution time: 374ms - Rows affected: 86 - RequestID: mb1pjwdf5n +2025-06-18T14:05:32.681Z [INFO] notification-service - Auth event: logout - User: user_1088 - IP: 192.168.53.133 - RequestID: 80f9cz7v9kp +2025-06-18T14:05:32.781Z [TRACE] payment-service - Auth event: password_change - User: user_1027 - IP: 192.168.170.215 - RequestID: 9qnac3baqg +2025-06-18T14:05:32.881Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1464ms - IP: 192.168.174.114 - User: user_1035 - RequestID: 80ikl8dqwm +2025-06-18T14:05:32.981Z [INFO] notification-service - Auth event: password_change - User: user_1071 - IP: 192.168.28.146 - RequestID: g3sj8kwe6y +2025-06-18T14:05:33.081Z [INFO] inventory-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.159.94 - RequestID: nb4i9oz51j +2025-06-18T14:05:33.181Z [TRACE] auth-service - POST /api/v1/orders - Status: 500 - Response time: 400ms - IP: 192.168.227.233 - User: user_1099 - RequestID: 2gjgixtk65r +2025-06-18T14:05:33.281Z [INFO] order-service - GET /api/v1/auth/logout - Status: 503 - Response time: 945ms - IP: 192.168.235.117 - User: user_1041 - RequestID: u1c9inltd5b +2025-06-18T14:05:33.381Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 200 - Response time: 36ms - IP: 192.168.189.103 - User: user_1056 - RequestID: w4gr0kgtg0h +2025-06-18T14:05:33.481Z [TRACE] notification-service - Auth event: logout - User: user_1041 - IP: 192.168.97.87 - RequestID: aw814imagpd +2025-06-18T14:05:33.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 578ms - RequestID: bzjure0zq97 +2025-06-18T14:05:33.681Z [TRACE] order-service - DELETE /api/v1/users - Status: 401 - Response time: 1698ms - IP: 192.168.247.134 - User: user_1010 - RequestID: j5ifg1ld7cl +2025-06-18T14:05:33.781Z [DEBUG] order-service - Operation: cache_miss - Processing time: 211ms - RequestID: vdvy178tvdq +2025-06-18T14:05:33.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 448ms - RequestID: wsl8rh5uzhg +2025-06-18T14:05:33.981Z [DEBUG] notification-service - Database DELETE on users - Execution time: 336ms - Rows affected: 80 - RequestID: osm5xg9w7ge +2025-06-18T14:05:34.081Z [INFO] inventory-service - Auth event: password_change - User: user_1044 - IP: 192.168.211.72 - RequestID: 3tzivml0y5h +2025-06-18T14:05:34.181Z [INFO] inventory-service - Operation: payment_processed - Processing time: 881ms - RequestID: ju00p5adzwr +2025-06-18T14:05:34.281Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 743ms - RequestID: nzubi6fnvjj +2025-06-18T14:05:34.381Z [TRACE] user-service - Database DELETE on orders - Execution time: 137ms - Rows affected: 75 - RequestID: ec824lsvn3g +2025-06-18T14:05:34.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.32.38 - RequestID: 7kizkx31lzr +2025-06-18T14:05:34.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.53.133 - RequestID: 00kj3dujltuh +2025-06-18T14:05:34.681Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 148ms - Rows affected: 94 - RequestID: 2c9n6i8p0vw +2025-06-18T14:05:34.781Z [INFO] notification-service - POST /api/v1/auth/login - Status: 400 - Response time: 451ms - IP: 192.168.211.72 - User: user_1062 - RequestID: cst8rjlzp1f +2025-06-18T14:05:34.881Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 400 - Response time: 1329ms - IP: 192.168.247.134 - User: user_1025 - RequestID: 6fdp63eyikn +2025-06-18T14:05:34.981Z [DEBUG] inventory-service - Auth event: password_change - User: user_1020 - IP: 192.168.144.38 - RequestID: emgtcxl7x7i +2025-06-18T14:05:35.081Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 50ms - RequestID: rdnd9td8n +2025-06-18T14:05:35.181Z [INFO] notification-service - Operation: notification_queued - Processing time: 137ms - RequestID: rhgae8a36gr +2025-06-18T14:05:35.281Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 403 - Response time: 1450ms - IP: 192.168.158.144 - User: user_1076 - RequestID: fjgjzr3c8cr +2025-06-18T14:05:35.381Z [INFO] auth-service - Database INSERT on orders - Execution time: 38ms - Rows affected: 5 - RequestID: 0512zqvxlmm +2025-06-18T14:05:35.481Z [TRACE] user-service - Operation: notification_queued - Processing time: 677ms - RequestID: 7u6366ioowm +2025-06-18T14:05:35.581Z [INFO] user-service - DELETE /api/v1/inventory - Status: 503 - Response time: 408ms - IP: 192.168.174.114 - User: user_1035 - RequestID: qwgpeui35nh +2025-06-18T14:05:35.681Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 543ms - IP: 192.168.11.60 - User: user_1042 - RequestID: i8h042sqqx +2025-06-18T14:05:35.781Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1149ms - IP: 192.168.229.123 - User: user_1059 - RequestID: flmdkh4bo0q +2025-06-18T14:05:35.881Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 500 - Response time: 707ms - IP: 192.168.133.7 - User: user_1088 - RequestID: evqzvr0c04c +2025-06-18T14:05:35.981Z [INFO] inventory-service - PUT /api/v1/orders - Status: 503 - Response time: 1383ms - IP: 192.168.68.158 - User: user_1007 - RequestID: 8skl2cdu5q8 +2025-06-18T14:05:36.081Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 496ms - Rows affected: 49 - RequestID: b7sihs3qsce +2025-06-18T14:05:36.181Z [INFO] user-service - Database UPDATE on users - Execution time: 455ms - Rows affected: 58 - RequestID: mn5j8tphdyn +2025-06-18T14:05:36.281Z [INFO] auth-service - Auth event: login_failed - User: user_1079 - IP: 192.168.242.165 - RequestID: 9xk4glcgd9 +2025-06-18T14:05:36.381Z [INFO] order-service - Operation: cache_hit - Processing time: 247ms - RequestID: ug2f2h9ni +2025-06-18T14:05:36.481Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 503 - Response time: 1673ms - IP: 192.168.11.60 - User: user_1055 - RequestID: 1h9vu2khzlm +2025-06-18T14:05:36.581Z [INFO] user-service - Auth event: password_change - User: user_1037 - IP: 192.168.11.60 - RequestID: xkfbyi6wmeg +2025-06-18T14:05:36.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1086 - IP: 192.168.187.199 - RequestID: 4lmgquj9n1h +2025-06-18T14:05:36.781Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 401ms - Rows affected: 5 - RequestID: lmyub3c8s0g +2025-06-18T14:05:36.881Z [INFO] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1975ms - IP: 192.168.158.144 - User: user_1083 - RequestID: ovzj9ktydf +2025-06-18T14:05:36.981Z [TRACE] notification-service - Database UPDATE on users - Execution time: 360ms - Rows affected: 26 - RequestID: qs2scw7y3mj +2025-06-18T14:05:37.081Z [INFO] notification-service - Operation: inventory_updated - Processing time: 470ms - RequestID: 3wp7v15y2of +2025-06-18T14:05:37.181Z [TRACE] payment-service - Operation: payment_processed - Processing time: 833ms - RequestID: nrxfs35bxni +2025-06-18T14:05:37.281Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 401 - Response time: 1032ms - IP: 192.168.227.233 - User: user_1006 - RequestID: dxyvrw38j6k +2025-06-18T14:05:37.381Z [TRACE] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 761ms - IP: 192.168.11.60 - User: user_1058 - RequestID: 7327qojfqud +2025-06-18T14:05:37.481Z [INFO] user-service - Auth event: password_change - User: user_1055 - IP: 192.168.28.146 - RequestID: 4lwy77196to +2025-06-18T14:05:37.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 687ms - RequestID: avi1wgbrhrr +2025-06-18T14:05:37.681Z [DEBUG] auth-service - Auth event: logout - User: user_1029 - IP: 192.168.46.63 - RequestID: 9d2qqg7imu +2025-06-18T14:05:37.781Z [INFO] payment-service - Operation: order_created - Processing time: 68ms - RequestID: iiv833lbwa +2025-06-18T14:05:37.881Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 503 - Response time: 559ms - IP: 192.168.181.225 - User: user_1086 - RequestID: 2gg6oj0tlbp +2025-06-18T14:05:37.981Z [TRACE] notification-service - Operation: payment_processed - Processing time: 524ms - RequestID: 82ge6apse59 +2025-06-18T14:05:38.081Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 892ms - IP: 192.168.144.38 - User: user_1019 - RequestID: v89dlk0sm7f +2025-06-18T14:05:38.181Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 192ms - Rows affected: 52 - RequestID: kt9rn3anam8 +2025-06-18T14:05:38.281Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.81.206 - RequestID: g3hdaeyy2t +2025-06-18T14:05:38.381Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 315ms - Rows affected: 94 - RequestID: xjkpsxpuuyp +2025-06-18T14:05:38.481Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 855ms - RequestID: ov085sdyj8m +2025-06-18T14:05:38.581Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.194.41 - RequestID: 38b2wpnw8eq +2025-06-18T14:05:38.681Z [DEBUG] inventory-service - Auth event: login_success - User: user_1056 - IP: 192.168.232.72 - RequestID: ujppoam937 +2025-06-18T14:05:38.781Z [INFO] auth-service - Auth event: password_change - User: user_1088 - IP: 192.168.68.128 - RequestID: o5vrbwwjlm +2025-06-18T14:05:38.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1047 - IP: 192.168.247.134 - RequestID: 1wj48san9w2 +2025-06-18T14:05:38.981Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 53ms - RequestID: vs59hp7c1vd +2025-06-18T14:05:39.081Z [INFO] inventory-service - Auth event: login_success - User: user_1009 - IP: 192.168.31.117 - RequestID: 48hwog0su34 +2025-06-18T14:05:39.181Z [INFO] user-service - Database UPDATE on payments - Execution time: 439ms - Rows affected: 9 - RequestID: ehwpcq4q2kh +2025-06-18T14:05:39.281Z [TRACE] inventory-service - Auth event: login_success - User: user_1094 - IP: 192.168.113.218 - RequestID: 7x051zmewqx +2025-06-18T14:05:39.381Z [TRACE] payment-service - Operation: email_sent - Processing time: 565ms - RequestID: 6p58lfkvbgj +2025-06-18T14:05:39.481Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 200 - Response time: 409ms - IP: 192.168.235.117 - User: user_1009 - RequestID: 3j4koo7v4g +2025-06-18T14:05:39.581Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 441ms - Rows affected: 35 - RequestID: j560u764l4p +2025-06-18T14:05:39.681Z [DEBUG] auth-service - Operation: email_sent - Processing time: 960ms - RequestID: t4mbj3gqll +2025-06-18T14:05:39.781Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 110ms - Rows affected: 84 - RequestID: 98bawff65ru +2025-06-18T14:05:39.881Z [INFO] inventory-service - Operation: cache_hit - Processing time: 669ms - RequestID: 9kstda3c0mp +2025-06-18T14:05:39.981Z [INFO] notification-service - Database UPDATE on users - Execution time: 404ms - Rows affected: 8 - RequestID: qw18ht9f38r +2025-06-18T14:05:40.081Z [INFO] notification-service - Auth event: login_success - User: user_1070 - IP: 192.168.100.240 - RequestID: ieeicdpnsdn +2025-06-18T14:05:40.181Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 467ms - Rows affected: 85 - RequestID: tbwcm6zp84 +2025-06-18T14:05:40.281Z [TRACE] payment-service - GET /api/v1/inventory - Status: 400 - Response time: 440ms - IP: 192.168.194.41 - User: user_1071 - RequestID: e5xbxccqpyg +2025-06-18T14:05:40.381Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1042ms - IP: 192.168.181.225 - User: user_1075 - RequestID: w5u7y5d0ht +2025-06-18T14:05:40.481Z [INFO] payment-service - Database SELECT on products - Execution time: 413ms - Rows affected: 18 - RequestID: vkcc5we1tfb +2025-06-18T14:05:40.581Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1902ms - IP: 192.168.97.87 - User: user_1012 - RequestID: qtc3a1kqb8k +2025-06-18T14:05:40.681Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 71ms - Rows affected: 13 - RequestID: g2s5jff67e +2025-06-18T14:05:40.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.28.146 - RequestID: 5rmpah7lnte +2025-06-18T14:05:40.881Z [INFO] notification-service - Operation: payment_processed - Processing time: 365ms - RequestID: jnp8bmjsrra +2025-06-18T14:05:40.981Z [TRACE] order-service - POST /api/v1/payments - Status: 503 - Response time: 1759ms - IP: 192.168.247.134 - User: user_1058 - RequestID: iwfdsjabjzp +2025-06-18T14:05:41.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.242.165 - RequestID: w4g5k4lmqnf +2025-06-18T14:05:41.181Z [DEBUG] user-service - Operation: order_created - Processing time: 858ms - RequestID: q0o8xu3f9d +2025-06-18T14:05:41.281Z [DEBUG] auth-service - Database SELECT on products - Execution time: 241ms - Rows affected: 53 - RequestID: knud40rihkn +2025-06-18T14:05:41.381Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 946ms - IP: 192.168.104.37 - User: user_1092 - RequestID: 62lmgtgb054 +2025-06-18T14:05:41.481Z [INFO] inventory-service - GET /api/v1/users - Status: 503 - Response time: 927ms - IP: 192.168.79.116 - User: user_1046 - RequestID: apy1pvw3cd +2025-06-18T14:05:41.581Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 235ms - Rows affected: 60 - RequestID: ju2cdri0f0j +2025-06-18T14:05:41.681Z [DEBUG] order-service - GET /api/v1/payments - Status: 503 - Response time: 1495ms - IP: 192.168.235.117 - User: user_1049 - RequestID: 67uq764624q +2025-06-18T14:05:41.781Z [DEBUG] user-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.28.146 - RequestID: 8m48f4g4p15 +2025-06-18T14:05:41.881Z [TRACE] auth-service - Operation: cache_hit - Processing time: 769ms - RequestID: btitxkg8j9m +2025-06-18T14:05:41.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.14.77 - RequestID: bfce1344d2f +2025-06-18T14:05:42.081Z [DEBUG] order-service - GET /api/v1/inventory - Status: 404 - Response time: 1437ms - IP: 192.168.147.171 - User: user_1007 - RequestID: cw4iyrae9b +2025-06-18T14:05:42.181Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 464ms - Rows affected: 68 - RequestID: fq7vue48dxm +2025-06-18T14:05:42.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 346ms - RequestID: fi033s6szpv +2025-06-18T14:05:42.381Z [INFO] notification-service - Auth event: password_change - User: user_1028 - IP: 192.168.232.72 - RequestID: xmolau8icdf +2025-06-18T14:05:42.481Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1510ms - IP: 192.168.170.215 - User: user_1023 - RequestID: 5hvnk62x5tj +2025-06-18T14:05:42.581Z [INFO] notification-service - Auth event: login_success - User: user_1039 - IP: 192.168.79.116 - RequestID: v7wb4e46et +2025-06-18T14:05:42.681Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 468ms - Rows affected: 17 - RequestID: a41msocy3eq +2025-06-18T14:05:42.781Z [INFO] auth-service - GET /api/v1/orders - Status: 403 - Response time: 455ms - IP: 192.168.68.128 - User: user_1061 - RequestID: enmebgbq3rw +2025-06-18T14:05:42.881Z [TRACE] payment-service - Database DELETE on orders - Execution time: 231ms - Rows affected: 51 - RequestID: dwiusx7zyq +2025-06-18T14:05:42.981Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 267ms - Rows affected: 13 - RequestID: l06e57m1uoj +2025-06-18T14:05:43.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 693ms - RequestID: steq50omoxc +2025-06-18T14:05:43.181Z [TRACE] user-service - Auth event: login_success - User: user_1021 - IP: 192.168.79.141 - RequestID: g160fuubotu +2025-06-18T14:05:43.281Z [INFO] auth-service - Operation: cache_miss - Processing time: 146ms - RequestID: vi5azd28pdm +2025-06-18T14:05:43.381Z [DEBUG] order-service - Database SELECT on users - Execution time: 450ms - Rows affected: 86 - RequestID: n9rfq1pg7c +2025-06-18T14:05:43.481Z [TRACE] order-service - GET /api/v1/payments - Status: 404 - Response time: 610ms - IP: 192.168.1.152 - User: user_1043 - RequestID: iu1dw5rrdas +2025-06-18T14:05:43.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1036 - IP: 192.168.33.76 - RequestID: 88rmpi6z2kq +2025-06-18T14:05:43.681Z [INFO] payment-service - Database SELECT on products - Execution time: 427ms - Rows affected: 6 - RequestID: ui2ltcnkviq +2025-06-18T14:05:43.781Z [INFO] inventory-service - Database SELECT on orders - Execution time: 231ms - Rows affected: 4 - RequestID: iujjunpspr +2025-06-18T14:05:43.881Z [INFO] user-service - PUT /api/v1/auth/login - Status: 400 - Response time: 787ms - IP: 192.168.227.77 - User: user_1011 - RequestID: agk8o75leyv +2025-06-18T14:05:43.981Z [TRACE] notification-service - Database DELETE on orders - Execution time: 440ms - Rows affected: 11 - RequestID: 6kgbabk2cmf +2025-06-18T14:05:44.081Z [INFO] user-service - GET /api/v1/users - Status: 503 - Response time: 818ms - IP: 192.168.97.87 - User: user_1002 - RequestID: nai9esynxm +2025-06-18T14:05:44.181Z [TRACE] user-service - Database SELECT on users - Execution time: 269ms - Rows affected: 72 - RequestID: am6pzo31zhu +2025-06-18T14:05:44.281Z [TRACE] auth-service - Auth event: logout - User: user_1067 - IP: 192.168.1.152 - RequestID: ycq3d592x7s +2025-06-18T14:05:44.381Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 113ms - Rows affected: 46 - RequestID: sm7yvvebe1 +2025-06-18T14:05:44.481Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 438ms - Rows affected: 29 - RequestID: cnc3olhsvw9 +2025-06-18T14:05:44.581Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 404 - Response time: 677ms - IP: 192.168.33.76 - User: user_1022 - RequestID: 96n3mixs3oc +2025-06-18T14:05:44.681Z [DEBUG] order-service - Database INSERT on orders - Execution time: 189ms - Rows affected: 6 - RequestID: krg7nkjc6pq +2025-06-18T14:05:44.781Z [INFO] auth-service - Database DELETE on orders - Execution time: 408ms - Rows affected: 45 - RequestID: l686o9vjcmg +2025-06-18T14:05:44.881Z [TRACE] user-service - Operation: email_sent - Processing time: 1033ms - RequestID: 2kqapfuvsit +2025-06-18T14:05:44.981Z [INFO] inventory-service - Operation: payment_processed - Processing time: 535ms - RequestID: vnrlb4gay1 +2025-06-18T14:05:45.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.229.123 - RequestID: r7upom8eu4 +2025-06-18T14:05:45.181Z [DEBUG] notification-service - POST /api/v1/users - Status: 403 - Response time: 1987ms - IP: 192.168.79.143 - User: user_1098 - RequestID: 140nsurdgaw +2025-06-18T14:05:45.281Z [DEBUG] notification-service - GET /api/v1/payments - Status: 400 - Response time: 1159ms - IP: 192.168.64.33 - User: user_1070 - RequestID: 07nqhca3s1ku +2025-06-18T14:05:45.381Z [DEBUG] notification-service - Auth event: login_success - User: user_1043 - IP: 192.168.53.133 - RequestID: zhctp0xbng +2025-06-18T14:05:45.481Z [TRACE] payment-service - Operation: email_sent - Processing time: 831ms - RequestID: g05m46lw3ss +2025-06-18T14:05:45.581Z [INFO] auth-service - Database DELETE on users - Execution time: 423ms - Rows affected: 62 - RequestID: hmukv67wjbj +2025-06-18T14:05:45.681Z [INFO] user-service - Database DELETE on orders - Execution time: 72ms - Rows affected: 36 - RequestID: a1lcr20o61 +2025-06-18T14:05:45.781Z [TRACE] user-service - Auth event: logout - User: user_1054 - IP: 192.168.229.123 - RequestID: q96keymd74 +2025-06-18T14:05:45.881Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 431ms - RequestID: btmktpetn65 +2025-06-18T14:05:45.981Z [TRACE] payment-service - DELETE /api/v1/users - Status: 400 - Response time: 522ms - IP: 192.168.147.171 - User: user_1050 - RequestID: th23uuunet +2025-06-18T14:05:46.081Z [INFO] user-service - POST /api/v1/auth/login - Status: 403 - Response time: 641ms - IP: 192.168.144.38 - User: user_1091 - RequestID: be9dd93koo +2025-06-18T14:05:46.181Z [INFO] payment-service - Auth event: login_success - User: user_1009 - IP: 192.168.138.123 - RequestID: wi1qw29p2sb +2025-06-18T14:05:46.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 186ms - RequestID: odz9thy36k +2025-06-18T14:05:46.381Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 404 - Response time: 1494ms - IP: 192.168.227.233 - User: user_1001 - RequestID: iciapm6hhr +2025-06-18T14:05:46.481Z [TRACE] payment-service - Operation: payment_processed - Processing time: 97ms - RequestID: dc8cvzjhs3v +2025-06-18T14:05:46.581Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 404 - Response time: 1931ms - IP: 192.168.113.218 - User: user_1032 - RequestID: g5od9tb8vbt +2025-06-18T14:05:46.681Z [INFO] notification-service - GET /api/v1/auth/login - Status: 500 - Response time: 286ms - IP: 192.168.31.117 - User: user_1064 - RequestID: x75mnc3xvzp +2025-06-18T14:05:46.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1019 - IP: 192.168.28.146 - RequestID: zsa6xugfkk +2025-06-18T14:05:46.881Z [TRACE] user-service - Operation: email_sent - Processing time: 995ms - RequestID: lyqjvrmagrg +2025-06-18T14:05:46.981Z [INFO] payment-service - Auth event: login_failed - User: user_1077 - IP: 192.168.33.76 - RequestID: 9ihqq21aess +2025-06-18T14:05:47.081Z [INFO] auth-service - Database SELECT on products - Execution time: 484ms - Rows affected: 48 - RequestID: r4ttt8r8cq +2025-06-18T14:05:47.181Z [DEBUG] user-service - Auth event: password_change - User: user_1025 - IP: 192.168.81.206 - RequestID: 0fod6rnwml2 +2025-06-18T14:05:47.281Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 503 - Response time: 1223ms - IP: 192.168.81.206 - User: user_1062 - RequestID: evasspuzvj +2025-06-18T14:05:47.381Z [INFO] payment-service - POST /api/v1/auth/login - Status: 200 - Response time: 1534ms - IP: 192.168.1.152 - User: user_1024 - RequestID: 1ngr0s0gvoo +2025-06-18T14:05:47.481Z [INFO] user-service - Operation: notification_queued - Processing time: 378ms - RequestID: h36sqfw1ye7 +2025-06-18T14:05:47.581Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 279ms - IP: 192.168.174.114 - User: user_1061 - RequestID: t8gq9gc3z2s +2025-06-18T14:05:47.681Z [TRACE] user-service - GET /api/v1/users - Status: 403 - Response time: 1992ms - IP: 192.168.28.146 - User: user_1076 - RequestID: lyq48e9hnv +2025-06-18T14:05:47.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1091 - IP: 192.168.232.72 - RequestID: p0s6jz0zlmg +2025-06-18T14:05:47.881Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 424ms - Rows affected: 42 - RequestID: xd5yxmiyg1 +2025-06-18T14:05:47.981Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1841ms - IP: 192.168.174.114 - User: user_1066 - RequestID: oxzoo31hzi +2025-06-18T14:05:48.081Z [INFO] inventory-service - Auth event: logout - User: user_1012 - IP: 192.168.159.94 - RequestID: gslkxuktn6p +2025-06-18T14:05:48.181Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 281ms - Rows affected: 26 - RequestID: pn2eccnqklp +2025-06-18T14:05:48.281Z [INFO] user-service - Operation: inventory_updated - Processing time: 70ms - RequestID: ydh21bhvdqj +2025-06-18T14:05:48.381Z [TRACE] user-service - Operation: cache_hit - Processing time: 240ms - RequestID: 04ryyxhox1e3 +2025-06-18T14:05:48.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.196.226 - RequestID: o0gb11cq84 +2025-06-18T14:05:48.581Z [TRACE] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 519ms - IP: 192.168.1.152 - User: user_1013 - RequestID: zv0rbyp3br +2025-06-18T14:05:48.681Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 505ms - RequestID: 0he7oqq3ob4w +2025-06-18T14:05:48.781Z [INFO] order-service - Auth event: password_change - User: user_1037 - IP: 192.168.13.72 - RequestID: q560rzbftxb +2025-06-18T14:05:48.881Z [DEBUG] user-service - Auth event: login_success - User: user_1068 - IP: 192.168.31.117 - RequestID: cvpmwve6bc +2025-06-18T14:05:48.981Z [INFO] auth-service - Operation: payment_processed - Processing time: 107ms - RequestID: if5o9uwogpo +2025-06-18T14:05:49.081Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 943ms - RequestID: yuj7xcwdup +2025-06-18T14:05:49.181Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 503 - Response time: 932ms - IP: 192.168.211.72 - User: user_1043 - RequestID: ximxnl84is +2025-06-18T14:05:49.281Z [TRACE] auth-service - Operation: order_created - Processing time: 788ms - RequestID: hkuzz41tba +2025-06-18T14:05:49.381Z [TRACE] payment-service - Database INSERT on orders - Execution time: 236ms - Rows affected: 27 - RequestID: flc7vth432d +2025-06-18T14:05:49.481Z [TRACE] payment-service - Auth event: logout - User: user_1052 - IP: 192.168.159.94 - RequestID: w8xvu6440n +2025-06-18T14:05:49.581Z [TRACE] payment-service - PUT /api/v1/orders - Status: 404 - Response time: 699ms - IP: 192.168.227.233 - User: user_1050 - RequestID: a6yj4ksg3p +2025-06-18T14:05:49.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 773ms - RequestID: a5qzrc37r3k +2025-06-18T14:05:49.781Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 217ms - Rows affected: 64 - RequestID: wx1gwshc9q +2025-06-18T14:05:49.881Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 503 - Response time: 639ms - IP: 192.168.196.226 - User: user_1002 - RequestID: c6uaz7fmt87 +2025-06-18T14:05:49.981Z [INFO] order-service - Operation: cache_miss - Processing time: 239ms - RequestID: xvykimpozgr +2025-06-18T14:05:50.081Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1495ms - IP: 192.168.14.77 - User: user_1071 - RequestID: h1x8xixx7u +2025-06-18T14:05:50.181Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 420ms - RequestID: kj3cwckjho +2025-06-18T14:05:50.281Z [INFO] user-service - PATCH /api/v1/payments - Status: 404 - Response time: 1628ms - IP: 192.168.211.72 - User: user_1057 - RequestID: gt7iphp4666 +2025-06-18T14:05:50.381Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 318ms - Rows affected: 50 - RequestID: 74ogxnc7jda +2025-06-18T14:05:50.481Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 136ms - IP: 192.168.68.158 - User: user_1040 - RequestID: 7prcja01tkl +2025-06-18T14:05:50.581Z [INFO] notification-service - Database INSERT on users - Execution time: 447ms - Rows affected: 29 - RequestID: p8jzv7ardu +2025-06-18T14:05:50.681Z [INFO] notification-service - Operation: cache_miss - Processing time: 237ms - RequestID: jgwv18hggiq +2025-06-18T14:05:50.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.32.38 - RequestID: bk9208ha7rf +2025-06-18T14:05:50.881Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 503 - Response time: 802ms - IP: 192.168.141.100 - User: user_1062 - RequestID: ve54jw5cl6 +2025-06-18T14:05:50.981Z [INFO] inventory-service - POST /api/v1/payments - Status: 400 - Response time: 1671ms - IP: 192.168.235.117 - User: user_1043 - RequestID: vp3adgfveth +2025-06-18T14:05:51.081Z [DEBUG] payment-service - POST /api/v1/orders - Status: 400 - Response time: 556ms - IP: 192.168.187.199 - User: user_1016 - RequestID: iyo4yrquwj +2025-06-18T14:05:51.181Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 53ms - RequestID: aqs3fwp0qa4 +2025-06-18T14:05:51.281Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 249ms - IP: 192.168.113.218 - User: user_1075 - RequestID: 9ucn8xqmu4r +2025-06-18T14:05:51.381Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1184ms - IP: 192.168.147.171 - User: user_1053 - RequestID: 7j3h7uz7d3s +2025-06-18T14:05:51.481Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 610ms - RequestID: pgm5iiil87c +2025-06-18T14:05:51.581Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 139ms - Rows affected: 56 - RequestID: 40p1j8lkh2g +2025-06-18T14:05:51.681Z [INFO] notification-service - Operation: inventory_updated - Processing time: 283ms - RequestID: 7iz5vqvhm6 +2025-06-18T14:05:51.781Z [INFO] notification-service - Operation: inventory_updated - Processing time: 439ms - RequestID: j943kl2m6k +2025-06-18T14:05:51.881Z [TRACE] user-service - Operation: webhook_sent - Processing time: 931ms - RequestID: g5dd7sw1gpq +2025-06-18T14:05:51.981Z [TRACE] notification-service - Database DELETE on orders - Execution time: 402ms - Rows affected: 2 - RequestID: i8wtl20h34 +2025-06-18T14:05:52.081Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 315ms - Rows affected: 80 - RequestID: 9eglayh9hyq +2025-06-18T14:05:52.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 449ms - RequestID: rj4hb3wdhye +2025-06-18T14:05:52.281Z [INFO] auth-service - POST /api/v1/inventory - Status: 201 - Response time: 995ms - IP: 192.168.138.123 - User: user_1066 - RequestID: i61r6ez62b +2025-06-18T14:05:52.381Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1849ms - IP: 192.168.33.76 - User: user_1001 - RequestID: gumu4jscpx +2025-06-18T14:05:52.481Z [DEBUG] notification-service - Auth event: logout - User: user_1013 - IP: 192.168.81.206 - RequestID: ouym053t8n +2025-06-18T14:05:52.581Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 143ms - Rows affected: 38 - RequestID: lt9jdba216 +2025-06-18T14:05:52.681Z [TRACE] auth-service - POST /api/v1/orders - Status: 400 - Response time: 928ms - IP: 192.168.196.226 - User: user_1066 - RequestID: e5ofmuv4eu +2025-06-18T14:05:52.781Z [INFO] order-service - Operation: email_sent - Processing time: 899ms - RequestID: r3s36mr8a +2025-06-18T14:05:52.881Z [INFO] user-service - Operation: webhook_sent - Processing time: 330ms - RequestID: ytunypilgv +2025-06-18T14:05:52.981Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 925ms - RequestID: aze1of9ivmf +2025-06-18T14:05:53.081Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1124ms - IP: 192.168.97.87 - User: user_1051 - RequestID: gzegpcou9b +2025-06-18T14:05:53.181Z [TRACE] user-service - Database UPDATE on users - Execution time: 420ms - Rows affected: 96 - RequestID: e4c776qef84 +2025-06-18T14:05:53.281Z [DEBUG] order-service - Operation: payment_processed - Processing time: 1044ms - RequestID: pvju63lk0m9 +2025-06-18T14:05:53.381Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 350ms - Rows affected: 80 - RequestID: y9hvyt7jjrp +2025-06-18T14:05:53.481Z [DEBUG] user-service - POST /api/v1/orders - Status: 401 - Response time: 622ms - IP: 192.168.1.152 - User: user_1056 - RequestID: dmxni3aybfg +2025-06-18T14:05:53.581Z [INFO] order-service - Auth event: logout - User: user_1023 - IP: 192.168.79.141 - RequestID: wq464r0ledj +2025-06-18T14:05:53.681Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 465ms - Rows affected: 73 - RequestID: gsliaincsij +2025-06-18T14:05:53.781Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.242.165 - RequestID: 74gy78ikzwc +2025-06-18T14:05:53.881Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1964ms - IP: 192.168.104.37 - User: user_1091 - RequestID: 7pnx3ykjft9 +2025-06-18T14:05:53.981Z [INFO] auth-service - Operation: cache_hit - Processing time: 698ms - RequestID: d801ud16p6p +2025-06-18T14:05:54.081Z [DEBUG] user-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.33.76 - RequestID: bq49oj8eafj +2025-06-18T14:05:54.181Z [TRACE] user-service - Operation: payment_processed - Processing time: 849ms - RequestID: 6nfr6lz618l +2025-06-18T14:05:54.281Z [INFO] inventory-service - Auth event: login_failed - User: user_1005 - IP: 192.168.1.152 - RequestID: 7wqzrioqdhl +2025-06-18T14:05:54.381Z [INFO] user-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.46.63 - RequestID: vz5tahwewb +2025-06-18T14:05:54.481Z [INFO] user-service - Database SELECT on users - Execution time: 82ms - Rows affected: 53 - RequestID: ahx3a0wjmag +2025-06-18T14:05:54.581Z [INFO] auth-service - Database INSERT on products - Execution time: 309ms - Rows affected: 14 - RequestID: 4ia91z0dsa7 +2025-06-18T14:05:54.681Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 574ms - RequestID: ffdyn6wvmvo +2025-06-18T14:05:54.781Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 984ms - IP: 192.168.97.87 - User: user_1037 - RequestID: bzqdw3w6eua +2025-06-18T14:05:54.881Z [INFO] auth-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.30.79 - RequestID: 811yr7x7aj +2025-06-18T14:05:54.981Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 472ms - Rows affected: 43 - RequestID: 9a218vkf5wp +2025-06-18T14:05:55.081Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 399ms - Rows affected: 75 - RequestID: isnf59tjzs +2025-06-18T14:05:55.181Z [INFO] order-service - PUT /api/v1/orders - Status: 404 - Response time: 354ms - IP: 192.168.53.133 - User: user_1037 - RequestID: jmaenba9th +2025-06-18T14:05:55.281Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 83ms - Rows affected: 3 - RequestID: 22dhkpvjs4z +2025-06-18T14:05:55.381Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1317ms - IP: 192.168.158.144 - User: user_1070 - RequestID: 8xlnvjfk0x6 +2025-06-18T14:05:55.481Z [DEBUG] inventory-service - Operation: order_created - Processing time: 268ms - RequestID: opr1bfu4nnc +2025-06-18T14:05:55.581Z [INFO] notification-service - GET /api/v1/users - Status: 503 - Response time: 210ms - IP: 192.168.81.206 - User: user_1062 - RequestID: 35vvu68u7n8 +2025-06-18T14:05:55.681Z [INFO] inventory-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.85.229 - RequestID: ruuvlovfsi +2025-06-18T14:05:55.781Z [DEBUG] user-service - Auth event: login_failed - User: user_1093 - IP: 192.168.44.5 - RequestID: 1b6a3zhobfs +2025-06-18T14:05:55.881Z [DEBUG] payment-service - Operation: email_sent - Processing time: 908ms - RequestID: bope7iyaxec +2025-06-18T14:05:55.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.181.225 - RequestID: cotvfchzrpu +2025-06-18T14:05:56.081Z [INFO] payment-service - Operation: payment_processed - Processing time: 63ms - RequestID: cy6egclxvzd +2025-06-18T14:05:56.181Z [INFO] user-service - DELETE /api/v1/users - Status: 404 - Response time: 1577ms - IP: 192.168.64.33 - User: user_1066 - RequestID: j4qlgfquiw +2025-06-18T14:05:56.281Z [INFO] payment-service - PATCH /api/v1/users - Status: 201 - Response time: 1565ms - IP: 192.168.79.116 - User: user_1039 - RequestID: t8tija81pab +2025-06-18T14:05:56.381Z [DEBUG] payment-service - Auth event: password_change - User: user_1085 - IP: 192.168.81.206 - RequestID: t918emujnn +2025-06-18T14:05:56.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.31.117 - RequestID: virr47uwou8 +2025-06-18T14:05:56.581Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 392ms - Rows affected: 36 - RequestID: 3v51imd3j8 +2025-06-18T14:05:56.681Z [INFO] user-service - Operation: webhook_sent - Processing time: 854ms - RequestID: ryampwn49n +2025-06-18T14:05:56.781Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 51ms - Rows affected: 54 - RequestID: rwze8xajxua +2025-06-18T14:05:56.881Z [INFO] payment-service - Auth event: logout - User: user_1072 - IP: 192.168.229.123 - RequestID: z1or7d3ex4j +2025-06-18T14:05:56.981Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 483ms - Rows affected: 14 - RequestID: jv11w40ggij +2025-06-18T14:05:57.081Z [INFO] user-service - PATCH /api/v1/users - Status: 200 - Response time: 1171ms - IP: 192.168.138.123 - User: user_1066 - RequestID: oxgb73cnpms +2025-06-18T14:05:57.181Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 25ms - Rows affected: 99 - RequestID: wclr1s148g8 +2025-06-18T14:05:57.281Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 145ms - Rows affected: 4 - RequestID: yr8mmyr7e6l +2025-06-18T14:05:57.381Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 60ms - RequestID: p4piemvhr4a +2025-06-18T14:05:57.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.85.229 - RequestID: 1bh1zhw4i97 +2025-06-18T14:05:57.581Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 314ms - RequestID: ybp1ejmohx +2025-06-18T14:05:57.681Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1863ms - IP: 192.168.10.184 - User: user_1023 - RequestID: qyxvjbb3qn +2025-06-18T14:05:57.781Z [DEBUG] payment-service - Auth event: login_failed - User: user_1059 - IP: 192.168.68.158 - RequestID: 0m1xlj12hnjp +2025-06-18T14:05:57.881Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 471ms - RequestID: xmfon65s47i +2025-06-18T14:05:57.981Z [TRACE] payment-service - POST /api/v1/payments - Status: 503 - Response time: 1353ms - IP: 192.168.133.7 - User: user_1044 - RequestID: 563kyur603q +2025-06-18T14:05:58.081Z [TRACE] order-service - Operation: email_sent - Processing time: 296ms - RequestID: kjv28g61ly +2025-06-18T14:05:58.181Z [INFO] user-service - Operation: webhook_sent - Processing time: 648ms - RequestID: 4fv9orxa3jf +2025-06-18T14:05:58.281Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1614ms - IP: 192.168.133.7 - User: user_1075 - RequestID: 9otjxu6k0i5 +2025-06-18T14:05:58.381Z [DEBUG] auth-service - Database SELECT on users - Execution time: 72ms - Rows affected: 46 - RequestID: eaymcj3amot +2025-06-18T14:05:58.481Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 404 - Response time: 888ms - IP: 192.168.85.229 - User: user_1006 - RequestID: t90b7nf54g +2025-06-18T14:05:58.581Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 475ms - Rows affected: 13 - RequestID: 5l0c4wr5tme +2025-06-18T14:05:58.681Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1105ms - IP: 192.168.14.77 - User: user_1019 - RequestID: 6ojzfgqlgev +2025-06-18T14:05:58.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.13.72 - RequestID: npdzod7y5xj +2025-06-18T14:05:58.881Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 54ms - Rows affected: 67 - RequestID: t061yyxedkc +2025-06-18T14:05:58.981Z [TRACE] auth-service - Auth event: logout - User: user_1089 - IP: 192.168.32.38 - RequestID: viughpb5x7 +2025-06-18T14:05:59.081Z [INFO] notification-service - PATCH /api/v1/users - Status: 200 - Response time: 62ms - IP: 192.168.232.72 - User: user_1057 - RequestID: qrzgy4iaax +2025-06-18T14:05:59.181Z [TRACE] order-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.187.199 - RequestID: rlxnyucfaoe +2025-06-18T14:05:59.281Z [DEBUG] order-service - Database DELETE on users - Execution time: 158ms - Rows affected: 21 - RequestID: f7wfm17h7df +2025-06-18T14:05:59.381Z [DEBUG] payment-service - Operation: order_created - Processing time: 89ms - RequestID: 6r9kldpsme8 +2025-06-18T14:05:59.481Z [DEBUG] inventory-service - Auth event: login_success - User: user_1007 - IP: 192.168.81.206 - RequestID: au7ydpoji4k +2025-06-18T14:05:59.581Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 875ms - RequestID: vopaxq872c +2025-06-18T14:05:59.681Z [INFO] auth-service - Auth event: password_change - User: user_1082 - IP: 192.168.144.38 - RequestID: 9cv0nkk823 +2025-06-18T14:05:59.781Z [TRACE] payment-service - Database SELECT on payments - Execution time: 172ms - Rows affected: 34 - RequestID: uagg8qgr45 +2025-06-18T14:05:59.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 599ms - RequestID: 78lfadcx04m +2025-06-18T14:05:59.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.138.123 - RequestID: 3arxc8vufng +2025-06-18T14:06:00.081Z [TRACE] auth-service - Operation: email_sent - Processing time: 642ms - RequestID: 4njt2bee734 +2025-06-18T14:06:00.181Z [INFO] auth-service - POST /api/v1/inventory - Status: 503 - Response time: 705ms - IP: 192.168.141.100 - User: user_1029 - RequestID: jypkxwfc7mf +2025-06-18T14:06:00.281Z [DEBUG] user-service - Auth event: login_failed - User: user_1047 - IP: 192.168.247.134 - RequestID: cbvobwyfetv +2025-06-18T14:06:00.381Z [INFO] inventory-service - Operation: cache_hit - Processing time: 483ms - RequestID: yesyu7knxf +2025-06-18T14:06:00.481Z [TRACE] user-service - Auth event: password_change - User: user_1070 - IP: 192.168.81.206 - RequestID: hw6nbqrxe4t +2025-06-18T14:06:00.581Z [TRACE] payment-service - POST /api/v1/payments - Status: 200 - Response time: 173ms - IP: 192.168.10.184 - User: user_1094 - RequestID: i44luufjld +2025-06-18T14:06:00.681Z [INFO] user-service - POST /api/v1/users - Status: 200 - Response time: 1954ms - IP: 192.168.144.38 - User: user_1014 - RequestID: mehkkvm6ovc +2025-06-18T14:06:00.781Z [TRACE] auth-service - Database SELECT on products - Execution time: 198ms - Rows affected: 10 - RequestID: dqfh98s5zzk +2025-06-18T14:06:00.881Z [INFO] payment-service - Database DELETE on sessions - Execution time: 486ms - Rows affected: 6 - RequestID: awkyh6l86lg +2025-06-18T14:06:00.981Z [INFO] user-service - Database DELETE on sessions - Execution time: 208ms - Rows affected: 38 - RequestID: cv69re4fhn9 +2025-06-18T14:06:01.081Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1002ms - IP: 192.168.1.152 - User: user_1039 - RequestID: bjt3bd82ppn +2025-06-18T14:06:01.181Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1940ms - IP: 192.168.159.94 - User: user_1084 - RequestID: 12ykphgscz0g +2025-06-18T14:06:01.281Z [INFO] order-service - Database DELETE on sessions - Execution time: 160ms - Rows affected: 97 - RequestID: 2ii8tuhtljo +2025-06-18T14:06:01.381Z [INFO] order-service - Operation: webhook_sent - Processing time: 264ms - RequestID: iwhv3xb6ie +2025-06-18T14:06:01.481Z [INFO] inventory-service - Database INSERT on users - Execution time: 75ms - Rows affected: 50 - RequestID: exe6bez6ads +2025-06-18T14:06:01.581Z [TRACE] auth-service - GET /api/v1/users - Status: 200 - Response time: 1573ms - IP: 192.168.31.117 - User: user_1069 - RequestID: 8amv3k4rudm +2025-06-18T14:06:01.681Z [INFO] auth-service - Operation: cache_hit - Processing time: 122ms - RequestID: e9yijdr86w +2025-06-18T14:06:01.781Z [TRACE] inventory-service - Database INSERT on products - Execution time: 29ms - Rows affected: 70 - RequestID: ooyxd1janc +2025-06-18T14:06:01.881Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 1042ms - RequestID: e9j5flj6q1k +2025-06-18T14:06:01.981Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 96ms - Rows affected: 80 - RequestID: 75f3ly8mw +2025-06-18T14:06:02.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.247.134 - RequestID: 4f52eqfbxfl +2025-06-18T14:06:02.181Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 267ms - RequestID: v4jv7uev57 +2025-06-18T14:06:02.281Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 403 - Response time: 80ms - IP: 192.168.64.33 - User: user_1036 - RequestID: wwkdy43cfj +2025-06-18T14:06:02.381Z [TRACE] payment-service - Operation: email_sent - Processing time: 979ms - RequestID: 8clx4qyglo8 +2025-06-18T14:06:02.481Z [DEBUG] order-service - Auth event: login_failed - User: user_1083 - IP: 192.168.227.77 - RequestID: w6g8wjrnixf +2025-06-18T14:06:02.581Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 500 - Response time: 637ms - IP: 192.168.13.72 - User: user_1074 - RequestID: sely9ik0fmd +2025-06-18T14:06:02.681Z [INFO] payment-service - Database INSERT on orders - Execution time: 478ms - Rows affected: 66 - RequestID: l4b4b9iwu3 +2025-06-18T14:06:02.781Z [INFO] notification-service - Operation: order_created - Processing time: 884ms - RequestID: gvqfgzn338w +2025-06-18T14:06:02.881Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.159.94 - RequestID: ztwjpo2qkqk +2025-06-18T14:06:02.981Z [INFO] inventory-service - PUT /api/v1/payments - Status: 200 - Response time: 493ms - IP: 192.168.33.76 - User: user_1035 - RequestID: hh7e8hy0ujv +2025-06-18T14:06:03.081Z [DEBUG] payment-service - Auth event: login_success - User: user_1001 - IP: 192.168.10.184 - RequestID: dancl3q071d +2025-06-18T14:06:03.181Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 405ms - Rows affected: 29 - RequestID: 80gs4lmt8lj +2025-06-18T14:06:03.281Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 502 - Response time: 948ms - IP: 192.168.36.218 - User: user_1033 - RequestID: zhw006b9iv +2025-06-18T14:06:03.381Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 403 - Response time: 417ms - IP: 192.168.30.79 - User: user_1011 - RequestID: 7uin22p8rn8 +2025-06-18T14:06:03.481Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 56ms - RequestID: 66q40z6zae +2025-06-18T14:06:03.581Z [INFO] payment-service - Operation: cache_miss - Processing time: 293ms - RequestID: sf5ek1r19 +2025-06-18T14:06:03.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.97.87 - RequestID: l9tvtid62a +2025-06-18T14:06:03.781Z [INFO] order-service - Database SELECT on users - Execution time: 309ms - Rows affected: 32 - RequestID: 2mbwl7h53lz +2025-06-18T14:06:03.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1091 - IP: 192.168.147.171 - RequestID: pnul4a9ffo +2025-06-18T14:06:03.981Z [DEBUG] user-service - Auth event: login_success - User: user_1082 - IP: 192.168.79.116 - RequestID: gkvjstb2jx +2025-06-18T14:06:04.081Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1787ms - IP: 192.168.36.218 - User: user_1021 - RequestID: v5x9673nrxn +2025-06-18T14:06:04.181Z [TRACE] inventory-service - Operation: email_sent - Processing time: 637ms - RequestID: dithel8sthe +2025-06-18T14:06:04.281Z [INFO] notification-service - PUT /api/v1/users - Status: 201 - Response time: 1800ms - IP: 192.168.79.141 - User: user_1091 - RequestID: f31rin27fl +2025-06-18T14:06:04.381Z [TRACE] order-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.181.225 - RequestID: 0p8id7125yf +2025-06-18T14:06:04.481Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.159.94 - RequestID: j77nvi95b2b +2025-06-18T14:06:04.581Z [INFO] notification-service - Auth event: logout - User: user_1024 - IP: 192.168.174.114 - RequestID: cd9nlwbjw8 +2025-06-18T14:06:04.681Z [INFO] auth-service - Database DELETE on orders - Execution time: 259ms - Rows affected: 5 - RequestID: qfzrgv2k8xf +2025-06-18T14:06:04.781Z [DEBUG] payment-service - Auth event: login_failed - User: user_1096 - IP: 192.168.240.169 - RequestID: zs3koe98h0k +2025-06-18T14:06:04.881Z [TRACE] auth-service - Operation: notification_queued - Processing time: 153ms - RequestID: hw1t57u718k +2025-06-18T14:06:04.981Z [TRACE] order-service - DELETE /api/v1/orders - Status: 502 - Response time: 1056ms - IP: 192.168.211.72 - User: user_1004 - RequestID: jyy19ps6ryo +2025-06-18T14:06:05.081Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 461ms - Rows affected: 40 - RequestID: eb3srsvzz0d +2025-06-18T14:06:05.181Z [DEBUG] user-service - Database SELECT on users - Execution time: 120ms - Rows affected: 89 - RequestID: 4nbyxkqc41d +2025-06-18T14:06:05.281Z [DEBUG] auth-service - Operation: email_sent - Processing time: 772ms - RequestID: k3s1k57n6co +2025-06-18T14:06:05.381Z [DEBUG] user-service - Operation: cache_miss - Processing time: 769ms - RequestID: 0plhnay2vuj9 +2025-06-18T14:06:05.481Z [TRACE] payment-service - Operation: payment_processed - Processing time: 972ms - RequestID: xzki5t0erd +2025-06-18T14:06:05.581Z [TRACE] notification-service - Database DELETE on users - Execution time: 295ms - Rows affected: 75 - RequestID: 3gxs1xlbzie +2025-06-18T14:06:05.681Z [INFO] auth-service - Database DELETE on orders - Execution time: 44ms - Rows affected: 22 - RequestID: 4i9yozwq4rb +2025-06-18T14:06:05.781Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 161ms - RequestID: p2wg575kkm +2025-06-18T14:06:05.881Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 170ms - Rows affected: 23 - RequestID: npkhw7uz9c8 +2025-06-18T14:06:05.981Z [INFO] notification-service - Auth event: login_success - User: user_1087 - IP: 192.168.235.117 - RequestID: 4brs1qea7gx +2025-06-18T14:06:06.081Z [TRACE] notification-service - Operation: cache_hit - Processing time: 896ms - RequestID: 4q55bx9oo8u +2025-06-18T14:06:06.181Z [TRACE] user-service - Auth event: logout - User: user_1045 - IP: 192.168.46.63 - RequestID: wpa9cxgvavj +2025-06-18T14:06:06.281Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 401 - Response time: 881ms - IP: 192.168.28.146 - User: user_1012 - RequestID: t5szc3ne2n +2025-06-18T14:06:06.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1088 - IP: 192.168.229.123 - RequestID: z8mmqk5guob +2025-06-18T14:06:06.481Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 200 - Response time: 666ms - IP: 192.168.196.226 - User: user_1076 - RequestID: eh2eaomyz24 +2025-06-18T14:06:06.581Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1601ms - IP: 192.168.247.134 - User: user_1072 - RequestID: fj3zozk6dfv +2025-06-18T14:06:06.681Z [INFO] inventory-service - Operation: order_created - Processing time: 233ms - RequestID: hi0la1zaph +2025-06-18T14:06:06.781Z [INFO] notification-service - Database INSERT on products - Execution time: 155ms - Rows affected: 94 - RequestID: 2m3uy2ym9wu +2025-06-18T14:06:06.881Z [TRACE] notification-service - Database INSERT on products - Execution time: 98ms - Rows affected: 61 - RequestID: bsaa0os5ay +2025-06-18T14:06:06.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.159.94 - RequestID: 1kef7gsaodrj +2025-06-18T14:06:07.081Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 280ms - Rows affected: 24 - RequestID: 3h6ifeju9sx +2025-06-18T14:06:07.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 195ms - RequestID: rk0u16gkc9l +2025-06-18T14:06:07.281Z [INFO] notification-service - Database SELECT on products - Execution time: 488ms - Rows affected: 65 - RequestID: hr1q10lys9 +2025-06-18T14:06:07.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.113.218 - RequestID: aca19pkpdk +2025-06-18T14:06:07.481Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1999ms - IP: 192.168.104.37 - User: user_1033 - RequestID: 2yftmcoq6db +2025-06-18T14:06:07.581Z [INFO] payment-service - Operation: order_created - Processing time: 119ms - RequestID: nfm5b7rq3f +2025-06-18T14:06:07.681Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 472ms - IP: 192.168.1.152 - User: user_1002 - RequestID: 43w64gdx6l5 +2025-06-18T14:06:07.781Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1056 - IP: 192.168.13.72 - RequestID: 8coulfjottm +2025-06-18T14:06:07.881Z [TRACE] notification-service - GET /api/v1/auth/login - Status: 403 - Response time: 388ms - IP: 192.168.170.215 - User: user_1032 - RequestID: c6qbkmqjxdt +2025-06-18T14:06:07.981Z [TRACE] auth-service - Operation: cache_hit - Processing time: 722ms - RequestID: tfumf3t00n +2025-06-18T14:06:08.081Z [TRACE] inventory-service - Operation: email_sent - Processing time: 325ms - RequestID: lzzyep7nbad +2025-06-18T14:06:08.181Z [INFO] payment-service - Database DELETE on payments - Execution time: 424ms - Rows affected: 96 - RequestID: fafv0goyry +2025-06-18T14:06:08.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.79.143 - RequestID: vm7rwp97kyc +2025-06-18T14:06:08.381Z [INFO] notification-service - Auth event: password_change - User: user_1026 - IP: 192.168.79.116 - RequestID: n3andq38o4s +2025-06-18T14:06:08.481Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 503 - Response time: 595ms - IP: 192.168.144.38 - User: user_1021 - RequestID: a7st6jw3yxm +2025-06-18T14:06:08.581Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1419ms - IP: 192.168.10.184 - User: user_1028 - RequestID: v1xajrng84i +2025-06-18T14:06:08.681Z [INFO] payment-service - Auth event: login_success - User: user_1072 - IP: 192.168.242.165 - RequestID: ui7lmcki1c8 +2025-06-18T14:06:08.781Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 44ms - Rows affected: 39 - RequestID: zpved6qu46l +2025-06-18T14:06:08.881Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 403 - Response time: 786ms - IP: 192.168.32.38 - User: user_1071 - RequestID: 2otmkas4822 +2025-06-18T14:06:08.981Z [TRACE] user-service - Database INSERT on payments - Execution time: 19ms - Rows affected: 5 - RequestID: 18grx19ur6r +2025-06-18T14:06:09.081Z [INFO] order-service - Database SELECT on users - Execution time: 131ms - Rows affected: 18 - RequestID: h1jokoncnk +2025-06-18T14:06:09.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1082 - IP: 192.168.46.63 - RequestID: dxstta8yw7j +2025-06-18T14:06:09.281Z [DEBUG] notification-service - Auth event: logout - User: user_1035 - IP: 192.168.104.37 - RequestID: o1hlcxampw7 +2025-06-18T14:06:09.381Z [INFO] payment-service - Operation: cache_hit - Processing time: 166ms - RequestID: 7onb8suzto2 +2025-06-18T14:06:09.481Z [INFO] order-service - Database INSERT on sessions - Execution time: 172ms - Rows affected: 45 - RequestID: 6sdum60u6j +2025-06-18T14:06:09.581Z [TRACE] order-service - Operation: inventory_updated - Processing time: 55ms - RequestID: 62s1hbbfpqw +2025-06-18T14:06:09.681Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1184ms - IP: 192.168.232.72 - User: user_1022 - RequestID: zqhdopyp1a +2025-06-18T14:06:09.781Z [INFO] user-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.235.117 - RequestID: eorjpxfwfdr +2025-06-18T14:06:09.881Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1737ms - IP: 192.168.232.72 - User: user_1009 - RequestID: gx8mr753wm +2025-06-18T14:06:09.981Z [INFO] auth-service - Auth event: login_success - User: user_1051 - IP: 192.168.36.218 - RequestID: 4q7enje0ll7 +2025-06-18T14:06:10.081Z [INFO] auth-service - Operation: payment_processed - Processing time: 926ms - RequestID: 6ghwlvl03wq +2025-06-18T14:06:10.181Z [INFO] user-service - PUT /api/v1/users - Status: 201 - Response time: 1715ms - IP: 192.168.247.134 - User: user_1079 - RequestID: 8pxbppomjvh +2025-06-18T14:06:10.281Z [INFO] notification-service - Operation: email_sent - Processing time: 141ms - RequestID: h9syn0250cu +2025-06-18T14:06:10.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 1026ms - RequestID: o5pchrtnulr +2025-06-18T14:06:10.481Z [INFO] payment-service - Operation: payment_processed - Processing time: 715ms - RequestID: 1fycku6guqs +2025-06-18T14:06:10.581Z [INFO] order-service - Operation: cache_hit - Processing time: 845ms - RequestID: lc8mkjlzto +2025-06-18T14:06:10.681Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 400 - Response time: 775ms - IP: 192.168.138.123 - User: user_1096 - RequestID: 1h5li9gxhux +2025-06-18T14:06:10.781Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 413ms - RequestID: vv06m2vj3m +2025-06-18T14:06:10.881Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 952ms - RequestID: cmcidpsbae +2025-06-18T14:06:10.981Z [INFO] notification-service - Auth event: login_success - User: user_1060 - IP: 192.168.33.76 - RequestID: 60888f2owwb +2025-06-18T14:06:11.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.53.133 - RequestID: qfdutna84sb +2025-06-18T14:06:11.181Z [DEBUG] notification-service - Auth event: logout - User: user_1030 - IP: 192.168.79.141 - RequestID: 9lu13cx4a55 +2025-06-18T14:06:11.281Z [INFO] inventory-service - PUT /api/v1/payments - Status: 502 - Response time: 1448ms - IP: 192.168.68.128 - User: user_1073 - RequestID: qljahhhmgx9 +2025-06-18T14:06:11.381Z [TRACE] auth-service - Auth event: login_success - User: user_1026 - IP: 192.168.235.117 - RequestID: vtalbam4cp +2025-06-18T14:06:11.481Z [INFO] notification-service - Operation: email_sent - Processing time: 248ms - RequestID: zbs2evd8lym +2025-06-18T14:06:11.581Z [INFO] notification-service - Operation: notification_queued - Processing time: 455ms - RequestID: 4elh7jg50l7 +2025-06-18T14:06:11.681Z [INFO] order-service - POST /api/v1/payments - Status: 400 - Response time: 1957ms - IP: 192.168.196.226 - User: user_1090 - RequestID: yz31wsq4f7 +2025-06-18T14:06:11.781Z [DEBUG] auth-service - POST /api/v1/payments - Status: 503 - Response time: 89ms - IP: 192.168.196.226 - User: user_1029 - RequestID: w3czr4qc5ih +2025-06-18T14:06:11.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 609ms - RequestID: icleoyfdfg +2025-06-18T14:06:11.981Z [TRACE] order-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.11.60 - RequestID: 64byj3wf2h8 +2025-06-18T14:06:12.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.64.33 - RequestID: ishstphmhm +2025-06-18T14:06:12.181Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.240.169 - RequestID: ce0g5bynbc5 +2025-06-18T14:06:12.281Z [INFO] auth-service - PUT /api/v1/payments - Status: 201 - Response time: 1816ms - IP: 192.168.32.38 - User: user_1093 - RequestID: mzoul6tw75k +2025-06-18T14:06:12.381Z [INFO] user-service - Auth event: password_change - User: user_1055 - IP: 192.168.240.169 - RequestID: ka7qqpsffra +2025-06-18T14:06:12.481Z [TRACE] notification-service - Auth event: password_change - User: user_1000 - IP: 192.168.235.117 - RequestID: m59ainfzzy +2025-06-18T14:06:12.581Z [INFO] order-service - Operation: webhook_sent - Processing time: 880ms - RequestID: 369pcpyfjv4 +2025-06-18T14:06:12.681Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1502ms - IP: 192.168.53.133 - User: user_1086 - RequestID: 118k2jx1rymd +2025-06-18T14:06:12.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.79.141 - RequestID: wrhgjgpsec +2025-06-18T14:06:12.881Z [TRACE] payment-service - Operation: order_created - Processing time: 161ms - RequestID: gf3os27w5wf +2025-06-18T14:06:12.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1035 - IP: 192.168.104.37 - RequestID: bpi4hu5n006 +2025-06-18T14:06:13.081Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1268ms - IP: 192.168.189.103 - User: user_1064 - RequestID: ge7amuljdfc +2025-06-18T14:06:13.181Z [TRACE] user-service - Database DELETE on sessions - Execution time: 52ms - Rows affected: 12 - RequestID: qi9eh7a884 +2025-06-18T14:06:13.281Z [DEBUG] auth-service - POST /api/v1/orders - Status: 404 - Response time: 644ms - IP: 192.168.187.199 - User: user_1084 - RequestID: 3tgkmphl8mi +2025-06-18T14:06:13.381Z [TRACE] user-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.46.63 - RequestID: dg8xeosiyhe +2025-06-18T14:06:13.481Z [DEBUG] user-service - Operation: notification_queued - Processing time: 456ms - RequestID: 78uk604pcgp +2025-06-18T14:06:13.581Z [TRACE] order-service - Auth event: login_success - User: user_1039 - IP: 192.168.141.100 - RequestID: e244lvnci3 +2025-06-18T14:06:13.681Z [TRACE] user-service - Database DELETE on sessions - Execution time: 301ms - Rows affected: 2 - RequestID: dujgngydis +2025-06-18T14:06:13.781Z [DEBUG] order-service - Operation: payment_processed - Processing time: 507ms - RequestID: 4r6797oxtej +2025-06-18T14:06:13.881Z [TRACE] auth-service - Operation: cache_hit - Processing time: 173ms - RequestID: 30k2203laav +2025-06-18T14:06:13.981Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 646ms - RequestID: fqogsxxki8n +2025-06-18T14:06:14.081Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 122ms - Rows affected: 42 - RequestID: s07cu91j7g +2025-06-18T14:06:14.181Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 867ms - RequestID: 5qya55vvlww +2025-06-18T14:06:14.281Z [TRACE] inventory-service - Auth event: logout - User: user_1012 - IP: 192.168.141.100 - RequestID: qobzp0ikqa +2025-06-18T14:06:14.381Z [INFO] payment-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.242.165 - RequestID: 91bvrsjs6tj +2025-06-18T14:06:14.481Z [TRACE] auth-service - Database INSERT on orders - Execution time: 286ms - Rows affected: 5 - RequestID: qum5crdekw +2025-06-18T14:06:14.581Z [INFO] inventory-service - Database DELETE on products - Execution time: 491ms - Rows affected: 70 - RequestID: 6tkfwo6ijaw +2025-06-18T14:06:14.681Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 117ms - Rows affected: 87 - RequestID: cv6z80v25yj +2025-06-18T14:06:14.781Z [INFO] payment-service - Auth event: login_failed - User: user_1099 - IP: 192.168.159.94 - RequestID: 170prcejt3u +2025-06-18T14:06:14.881Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.194.41 - RequestID: ylbh4bpm26j +2025-06-18T14:06:14.981Z [TRACE] payment-service - Operation: notification_queued - Processing time: 319ms - RequestID: iqzfgawp3nn +2025-06-18T14:06:15.081Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 401 - Response time: 1571ms - IP: 192.168.44.5 - User: user_1025 - RequestID: dcqt3co80ic +2025-06-18T14:06:15.181Z [INFO] payment-service - Database DELETE on orders - Execution time: 98ms - Rows affected: 57 - RequestID: f2h6zm2d3ih +2025-06-18T14:06:15.281Z [INFO] inventory-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.44.5 - RequestID: ruqdkq6oj8b +2025-06-18T14:06:15.381Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 502 - Response time: 1198ms - IP: 192.168.189.103 - User: user_1095 - RequestID: xi11pwljqib +2025-06-18T14:06:15.481Z [TRACE] auth-service - Database DELETE on products - Execution time: 95ms - Rows affected: 35 - RequestID: z3eey652cj +2025-06-18T14:06:15.581Z [INFO] inventory-service - POST /api/v1/payments - Status: 500 - Response time: 1948ms - IP: 192.168.79.141 - User: user_1053 - RequestID: 7h8jxan98d6 +2025-06-18T14:06:15.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.11.60 - RequestID: rtfy850wbo +2025-06-18T14:06:15.781Z [INFO] auth-service - Auth event: login_success - User: user_1083 - IP: 192.168.33.76 - RequestID: 7zz3dg2fd7s +2025-06-18T14:06:15.881Z [INFO] notification-service - PATCH /api/v1/payments - Status: 500 - Response time: 1558ms - IP: 192.168.100.240 - User: user_1087 - RequestID: c10yhmliagw +2025-06-18T14:06:15.981Z [INFO] order-service - GET /api/v1/users - Status: 404 - Response time: 1182ms - IP: 192.168.79.141 - User: user_1026 - RequestID: lbmvw4xpi9b +2025-06-18T14:06:16.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.44.5 - RequestID: ui2mj7pxpuj +2025-06-18T14:06:16.181Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 201ms - Rows affected: 89 - RequestID: 280za3p22v9 +2025-06-18T14:06:16.281Z [TRACE] order-service - Operation: notification_queued - Processing time: 508ms - RequestID: zwsy2zki1i +2025-06-18T14:06:16.381Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 159ms - Rows affected: 63 - RequestID: asf81riuqtl +2025-06-18T14:06:16.481Z [TRACE] user-service - Auth event: login_success - User: user_1048 - IP: 192.168.133.7 - RequestID: hz3hzqk0fye +2025-06-18T14:06:16.581Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 658ms - IP: 192.168.247.134 - User: user_1062 - RequestID: ur32gif5xh +2025-06-18T14:06:16.681Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 122ms - RequestID: crg9hcpze9v +2025-06-18T14:06:16.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.36.218 - RequestID: owvdhzp8myc +2025-06-18T14:06:16.881Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1669ms - IP: 192.168.235.117 - User: user_1015 - RequestID: 5go03o80rh5 +2025-06-18T14:06:16.981Z [INFO] notification-service - Database INSERT on orders - Execution time: 206ms - Rows affected: 69 - RequestID: n7uxo34vqv7 +2025-06-18T14:06:17.081Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 500 - Response time: 460ms - IP: 192.168.68.128 - User: user_1084 - RequestID: 964dkd4vn1 +2025-06-18T14:06:17.181Z [TRACE] payment-service - Operation: cache_miss - Processing time: 521ms - RequestID: i934a84v8vi +2025-06-18T14:06:17.281Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 687ms - RequestID: hqi0fb4bg79 +2025-06-18T14:06:17.381Z [INFO] order-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.46.63 - RequestID: jzdtkurkmes +2025-06-18T14:06:17.481Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 250ms - RequestID: qv6fn5fd0i +2025-06-18T14:06:17.581Z [INFO] payment-service - Operation: payment_processed - Processing time: 59ms - RequestID: 80stmu9jxvl +2025-06-18T14:06:17.681Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 401 - Response time: 437ms - IP: 192.168.28.146 - User: user_1060 - RequestID: jj7x9634and +2025-06-18T14:06:17.781Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 502 - Response time: 1221ms - IP: 192.168.158.144 - User: user_1002 - RequestID: zmmzztpufj +2025-06-18T14:06:17.881Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 401 - Response time: 2003ms - IP: 192.168.68.158 - User: user_1075 - RequestID: uz3ua37mlg +2025-06-18T14:06:17.981Z [TRACE] inventory-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 142ms - IP: 192.168.133.7 - User: user_1011 - RequestID: 36is7stjia5 +2025-06-18T14:06:18.081Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 406ms - Rows affected: 87 - RequestID: 7ibdg0ln9sm +2025-06-18T14:06:18.181Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 490ms - Rows affected: 44 - RequestID: tzs7rd9oqqp +2025-06-18T14:06:18.281Z [INFO] inventory-service - POST /api/v1/orders - Status: 503 - Response time: 1472ms - IP: 192.168.187.199 - User: user_1021 - RequestID: bdppulyq5ar +2025-06-18T14:06:18.381Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 345ms - Rows affected: 25 - RequestID: ru5ukmbp3xi +2025-06-18T14:06:18.481Z [INFO] auth-service - Database SELECT on payments - Execution time: 78ms - Rows affected: 37 - RequestID: f9j74ilpjqs +2025-06-18T14:06:18.581Z [INFO] inventory-service - Auth event: logout - User: user_1020 - IP: 192.168.147.171 - RequestID: dsevj1caixu +2025-06-18T14:06:18.681Z [TRACE] notification-service - Database DELETE on orders - Execution time: 469ms - Rows affected: 45 - RequestID: eap2ero4jb9 +2025-06-18T14:06:18.781Z [INFO] user-service - GET /api/v1/payments - Status: 201 - Response time: 718ms - IP: 192.168.32.38 - User: user_1073 - RequestID: pqph3m8e289 +2025-06-18T14:06:18.881Z [TRACE] notification-service - Operation: cache_miss - Processing time: 143ms - RequestID: 15b579wc63ph +2025-06-18T14:06:18.981Z [INFO] user-service - GET /api/v1/auth/login - Status: 403 - Response time: 1347ms - IP: 192.168.85.229 - User: user_1060 - RequestID: 9em5nh2wg6 +2025-06-18T14:06:19.081Z [TRACE] user-service - Auth event: login_failed - User: user_1028 - IP: 192.168.46.63 - RequestID: 2e6ianni5b +2025-06-18T14:06:19.181Z [INFO] inventory-service - Operation: payment_processed - Processing time: 59ms - RequestID: 7ymt38txh6d +2025-06-18T14:06:19.281Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 409ms - Rows affected: 83 - RequestID: cpipa9016yo +2025-06-18T14:06:19.381Z [DEBUG] order-service - Operation: notification_queued - Processing time: 971ms - RequestID: r3tdkz501hd +2025-06-18T14:06:19.481Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 500 - Response time: 964ms - IP: 192.168.11.60 - User: user_1024 - RequestID: d2tz6dwv2d +2025-06-18T14:06:19.581Z [TRACE] auth-service - Operation: cache_hit - Processing time: 877ms - RequestID: e3ityx0f0w +2025-06-18T14:06:19.681Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1227ms - IP: 192.168.235.117 - User: user_1036 - RequestID: 9xvhnbiwvow +2025-06-18T14:06:19.781Z [TRACE] inventory-service - Auth event: logout - User: user_1088 - IP: 192.168.141.100 - RequestID: sl800ekl4n +2025-06-18T14:06:19.881Z [INFO] payment-service - Auth event: logout - User: user_1091 - IP: 192.168.32.38 - RequestID: y92xxk9tcvi +2025-06-18T14:06:19.981Z [INFO] inventory-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.144.38 - RequestID: 65hi2ihtjos +2025-06-18T14:06:20.081Z [TRACE] auth-service - Database UPDATE on products - Execution time: 337ms - Rows affected: 22 - RequestID: b3jzenbcsds +2025-06-18T14:06:20.181Z [INFO] user-service - Operation: notification_queued - Processing time: 830ms - RequestID: ysw6x8dpfiq +2025-06-18T14:06:20.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 729ms - RequestID: u2tikilvnzd +2025-06-18T14:06:20.381Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 404 - Response time: 745ms - IP: 192.168.159.94 - User: user_1060 - RequestID: yrlu2ruwkc +2025-06-18T14:06:20.481Z [INFO] order-service - POST /api/v1/auth/login - Status: 200 - Response time: 467ms - IP: 192.168.187.199 - User: user_1058 - RequestID: d0qnbwagi9l +2025-06-18T14:06:20.581Z [INFO] inventory-service - Operation: notification_queued - Processing time: 95ms - RequestID: wfkdbda7buo +2025-06-18T14:06:20.681Z [INFO] notification-service - Database DELETE on orders - Execution time: 462ms - Rows affected: 7 - RequestID: 1027ah91dfv +2025-06-18T14:06:20.781Z [INFO] auth-service - Auth event: login_failed - User: user_1080 - IP: 192.168.235.117 - RequestID: 8l5w4ylqork +2025-06-18T14:06:20.881Z [INFO] auth-service - Operation: order_created - Processing time: 128ms - RequestID: tm0xxwxzism +2025-06-18T14:06:20.981Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 315ms - Rows affected: 67 - RequestID: q297sx8fgfo +2025-06-18T14:06:21.081Z [INFO] auth-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.227.233 - RequestID: cwm75f5rd1v +2025-06-18T14:06:21.181Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 502 - Response time: 838ms - IP: 192.168.14.77 - User: user_1093 - RequestID: 9jfyr56bjsk +2025-06-18T14:06:21.281Z [INFO] payment-service - Database SELECT on users - Execution time: 85ms - Rows affected: 96 - RequestID: 2qgzzto3yph +2025-06-18T14:06:21.381Z [DEBUG] notification-service - Auth event: login_failed - User: user_1041 - IP: 192.168.1.152 - RequestID: 5y0oay79d96 +2025-06-18T14:06:21.481Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 228ms - Rows affected: 58 - RequestID: im6aam1rpe +2025-06-18T14:06:21.581Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 809ms - IP: 192.168.30.79 - User: user_1078 - RequestID: kx2nfbbnyxk +2025-06-18T14:06:21.681Z [TRACE] order-service - DELETE /api/v1/orders - Status: 503 - Response time: 1113ms - IP: 192.168.31.117 - User: user_1015 - RequestID: svrjrywzng +2025-06-18T14:06:21.781Z [INFO] inventory-service - Auth event: login_failed - User: user_1002 - IP: 192.168.235.117 - RequestID: m2gapg1r62 +2025-06-18T14:06:21.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 801ms - RequestID: kvykjr2ez5 +2025-06-18T14:06:21.981Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 202ms - Rows affected: 12 - RequestID: 1gempp8cx3q +2025-06-18T14:06:22.081Z [INFO] user-service - Operation: email_sent - Processing time: 143ms - RequestID: nt89m8qn9f +2025-06-18T14:06:22.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.189.103 - RequestID: o5j8gfci00f +2025-06-18T14:06:22.281Z [DEBUG] auth-service - Auth event: password_change - User: user_1080 - IP: 192.168.104.37 - RequestID: 4tb4lno4mx +2025-06-18T14:06:22.381Z [TRACE] payment-service - Database DELETE on orders - Execution time: 428ms - Rows affected: 33 - RequestID: espx7aegleu +2025-06-18T14:06:22.481Z [INFO] inventory-service - Database SELECT on orders - Execution time: 255ms - Rows affected: 11 - RequestID: ehx19d3wbk +2025-06-18T14:06:22.581Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 345ms - Rows affected: 8 - RequestID: e1ssa82rzor +2025-06-18T14:06:22.681Z [DEBUG] user-service - Operation: order_created - Processing time: 271ms - RequestID: i2ubi85wi2k +2025-06-18T14:06:22.781Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 104ms - Rows affected: 67 - RequestID: 5lxl018jsor +2025-06-18T14:06:22.881Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 470ms - RequestID: r7fseltxp7 +2025-06-18T14:06:22.981Z [TRACE] order-service - Auth event: login_success - User: user_1010 - IP: 192.168.227.233 - RequestID: fuc0olsz594 +2025-06-18T14:06:23.081Z [TRACE] inventory-service - Auth event: logout - User: user_1006 - IP: 192.168.10.184 - RequestID: q3mkn5j9oq +2025-06-18T14:06:23.181Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 394ms - Rows affected: 84 - RequestID: 00cn5610i4zcd +2025-06-18T14:06:23.281Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 117ms - IP: 192.168.138.123 - User: user_1057 - RequestID: o0etha5xeo +2025-06-18T14:06:23.381Z [TRACE] order-service - Operation: order_created - Processing time: 520ms - RequestID: pegsoi7reb +2025-06-18T14:06:23.481Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 1015ms - RequestID: ce9p87tb2yf +2025-06-18T14:06:23.581Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1938ms - IP: 192.168.97.87 - User: user_1046 - RequestID: tey8tsh1huh +2025-06-18T14:06:23.681Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1881ms - IP: 192.168.33.76 - User: user_1076 - RequestID: qd1puudjm5 +2025-06-18T14:06:23.781Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 404 - Response time: 40ms - IP: 192.168.167.32 - User: user_1011 - RequestID: lkwlre82l1r +2025-06-18T14:06:23.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.13.72 - RequestID: 3nd26a7ttn5 +2025-06-18T14:06:23.981Z [INFO] auth-service - Auth event: login_success - User: user_1045 - IP: 192.168.46.63 - RequestID: nadgmmqn5z +2025-06-18T14:06:24.081Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 819ms - RequestID: 45gvhdkfrya +2025-06-18T14:06:24.181Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 524ms - RequestID: rjg9gjtyhch +2025-06-18T14:06:24.281Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 389ms - RequestID: oxdgnfxte3 +2025-06-18T14:06:24.381Z [INFO] payment-service - Operation: order_created - Processing time: 1034ms - RequestID: mrxh3op0rl +2025-06-18T14:06:24.481Z [TRACE] payment-service - Auth event: login_failed - User: user_1044 - IP: 192.168.194.41 - RequestID: tz523vhxdi +2025-06-18T14:06:24.581Z [DEBUG] notification-service - GET /api/v1/orders - Status: 503 - Response time: 187ms - IP: 192.168.235.117 - User: user_1069 - RequestID: ogxvpv69ly +2025-06-18T14:06:24.681Z [DEBUG] order-service - PUT /api/v1/users - Status: 403 - Response time: 545ms - IP: 192.168.79.141 - User: user_1054 - RequestID: m71rooxwxnq +2025-06-18T14:06:24.781Z [TRACE] user-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.64.33 - RequestID: okai0s0po5q +2025-06-18T14:06:24.881Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 70ms - Rows affected: 25 - RequestID: pnd2kqhzmd +2025-06-18T14:06:24.981Z [INFO] user-service - Database DELETE on sessions - Execution time: 135ms - Rows affected: 59 - RequestID: vs2w35ncyf +2025-06-18T14:06:25.081Z [DEBUG] user-service - Database INSERT on orders - Execution time: 416ms - Rows affected: 8 - RequestID: h12w0zc99qk +2025-06-18T14:06:25.181Z [INFO] inventory-service - Operation: payment_processed - Processing time: 982ms - RequestID: 038opa2rbeq7 +2025-06-18T14:06:25.281Z [INFO] user-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.30.79 - RequestID: 2rmjw3lahd +2025-06-18T14:06:25.381Z [DEBUG] user-service - POST /api/v1/users - Status: 502 - Response time: 724ms - IP: 192.168.229.123 - User: user_1083 - RequestID: 9y10evyqzz +2025-06-18T14:06:25.481Z [DEBUG] user-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.247.134 - RequestID: 2i5icmrfgwe +2025-06-18T14:06:25.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.10.184 - RequestID: 8cxzukijrul +2025-06-18T14:06:25.681Z [TRACE] order-service - POST /api/v1/inventory - Status: 200 - Response time: 1276ms - IP: 192.168.147.171 - User: user_1075 - RequestID: 0jzy4n5g3bxi +2025-06-18T14:06:25.781Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 312ms - Rows affected: 78 - RequestID: hzw83hur5w6 +2025-06-18T14:06:25.881Z [TRACE] order-service - Database DELETE on orders - Execution time: 450ms - Rows affected: 21 - RequestID: d392g55uob +2025-06-18T14:06:25.981Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 201 - Response time: 685ms - IP: 192.168.187.199 - User: user_1088 - RequestID: 2bn9qlr0gm5 +2025-06-18T14:06:26.081Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 662ms - RequestID: rheprepzw09 +2025-06-18T14:06:26.181Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 142ms - Rows affected: 6 - RequestID: d1dls8yiwjj +2025-06-18T14:06:26.281Z [INFO] order-service - Operation: webhook_sent - Processing time: 437ms - RequestID: 5etqano9bmv +2025-06-18T14:06:26.381Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 581ms - RequestID: jypn6qdwwmb +2025-06-18T14:06:26.481Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 223ms - Rows affected: 27 - RequestID: 55tmif4fqz3 +2025-06-18T14:06:26.581Z [INFO] inventory-service - Auth event: login_success - User: user_1085 - IP: 192.168.240.169 - RequestID: fmfs47ci74u +2025-06-18T14:06:26.681Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 500 - Response time: 129ms - IP: 192.168.31.117 - User: user_1079 - RequestID: juj8laki3dp +2025-06-18T14:06:26.781Z [INFO] notification-service - Database UPDATE on payments - Execution time: 288ms - Rows affected: 34 - RequestID: mvmvho36ysn +2025-06-18T14:06:26.881Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 454ms - RequestID: 0hvjth0ztq15 +2025-06-18T14:06:26.981Z [INFO] inventory-service - Operation: email_sent - Processing time: 673ms - RequestID: z75k8hrdsrb +2025-06-18T14:06:27.081Z [INFO] auth-service - Database SELECT on users - Execution time: 288ms - Rows affected: 83 - RequestID: lgpz148b42 +2025-06-18T14:06:27.181Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1835ms - IP: 192.168.104.37 - User: user_1071 - RequestID: io5c8wfrr4 +2025-06-18T14:06:27.281Z [INFO] auth-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.79.116 - RequestID: fyocokbnzq +2025-06-18T14:06:27.381Z [INFO] user-service - Database UPDATE on sessions - Execution time: 488ms - Rows affected: 78 - RequestID: m73kgmtjj4j +2025-06-18T14:06:27.481Z [DEBUG] auth-service - Auth event: logout - User: user_1098 - IP: 192.168.10.184 - RequestID: n306oiyu9a +2025-06-18T14:06:27.581Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 282ms - Rows affected: 12 - RequestID: taiss4vgbr +2025-06-18T14:06:27.681Z [INFO] notification-service - Auth event: login_failed - User: user_1021 - IP: 192.168.97.87 - RequestID: btjlc4j6jxd +2025-06-18T14:06:27.781Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 176ms - Rows affected: 74 - RequestID: j7f5fob0hxr +2025-06-18T14:06:27.881Z [TRACE] order-service - Operation: notification_queued - Processing time: 409ms - RequestID: 2bq8mqa6fxr +2025-06-18T14:06:27.981Z [INFO] user-service - Database INSERT on payments - Execution time: 320ms - Rows affected: 14 - RequestID: yzru5pzct9 +2025-06-18T14:06:28.081Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 346ms - Rows affected: 77 - RequestID: 8mep9uecf5r +2025-06-18T14:06:28.181Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 250ms - IP: 192.168.138.123 - User: user_1036 - RequestID: 5tm47owisa +2025-06-18T14:06:28.281Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 281ms - Rows affected: 20 - RequestID: 2uk27ybuxp +2025-06-18T14:06:28.381Z [DEBUG] user-service - Operation: cache_miss - Processing time: 628ms - RequestID: 7na8ehoj3gx +2025-06-18T14:06:28.481Z [TRACE] auth-service - Database SELECT on payments - Execution time: 128ms - Rows affected: 28 - RequestID: 0q5v5aw6nxi +2025-06-18T14:06:28.581Z [INFO] user-service - Database DELETE on sessions - Execution time: 420ms - Rows affected: 86 - RequestID: cbt10lqqdaf +2025-06-18T14:06:28.681Z [DEBUG] order-service - Auth event: logout - User: user_1017 - IP: 192.168.100.240 - RequestID: hrhyhuf5g6g +2025-06-18T14:06:28.781Z [DEBUG] notification-service - Database SELECT on products - Execution time: 355ms - Rows affected: 90 - RequestID: va8xy1oixxc +2025-06-18T14:06:28.881Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 201 - Response time: 2001ms - IP: 192.168.97.87 - User: user_1084 - RequestID: fttn52yzyfh +2025-06-18T14:06:28.981Z [INFO] user-service - Operation: cache_miss - Processing time: 624ms - RequestID: zya819ixb5 +2025-06-18T14:06:29.081Z [TRACE] payment-service - Operation: payment_processed - Processing time: 1042ms - RequestID: 6jsyfqavl9y +2025-06-18T14:06:29.181Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1782ms - IP: 192.168.144.38 - User: user_1070 - RequestID: avqzhifnuvr +2025-06-18T14:06:29.281Z [INFO] notification-service - PUT /api/v1/payments - Status: 400 - Response time: 815ms - IP: 192.168.189.103 - User: user_1062 - RequestID: 2bm3merpbnp +2025-06-18T14:06:29.381Z [INFO] auth-service - POST /api/v1/orders - Status: 404 - Response time: 1890ms - IP: 192.168.247.134 - User: user_1093 - RequestID: mgoxmsn4zh9 +2025-06-18T14:06:29.481Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 197ms - Rows affected: 43 - RequestID: vs8rqps5nod +2025-06-18T14:06:29.581Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1049ms - IP: 192.168.189.103 - User: user_1077 - RequestID: 66ss82eo98j +2025-06-18T14:06:29.681Z [TRACE] order-service - Database DELETE on payments - Execution time: 314ms - Rows affected: 75 - RequestID: perpwiaq0ln +2025-06-18T14:06:29.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.141.100 - RequestID: knlxi80dlhd +2025-06-18T14:06:29.881Z [DEBUG] user-service - Database DELETE on products - Execution time: 351ms - Rows affected: 66 - RequestID: vcced2dcj1 +2025-06-18T14:06:29.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.68.128 - RequestID: u9y90mpyqc9 +2025-06-18T14:06:30.081Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 970ms - RequestID: uwc7dcecuib +2025-06-18T14:06:30.181Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 500ms - Rows affected: 90 - RequestID: r1vi3rohm6 +2025-06-18T14:06:30.281Z [TRACE] notification-service - Operation: cache_miss - Processing time: 965ms - RequestID: w5nybm4t9cc +2025-06-18T14:06:30.381Z [TRACE] notification-service - Operation: cache_miss - Processing time: 491ms - RequestID: hwjylkewsy +2025-06-18T14:06:30.481Z [INFO] user-service - Operation: payment_processed - Processing time: 222ms - RequestID: eusz5j2f04 +2025-06-18T14:06:30.581Z [INFO] payment-service - POST /api/v1/payments - Status: 403 - Response time: 476ms - IP: 192.168.1.152 - User: user_1021 - RequestID: muoiwgfwetq +2025-06-18T14:06:30.681Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 221ms - IP: 192.168.247.134 - User: user_1010 - RequestID: aw5obymvch8 +2025-06-18T14:06:30.781Z [TRACE] payment-service - Operation: cache_hit - Processing time: 929ms - RequestID: 1iwdk2m2hc4 +2025-06-18T14:06:30.881Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 462ms - IP: 192.168.44.5 - User: user_1056 - RequestID: sz5fhwee55q +2025-06-18T14:06:30.981Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1875ms - IP: 192.168.68.128 - User: user_1018 - RequestID: 66fubvtpe1g +2025-06-18T14:06:31.081Z [INFO] notification-service - POST /api/v1/orders - Status: 200 - Response time: 830ms - IP: 192.168.167.32 - User: user_1016 - RequestID: na1nuuu7jy +2025-06-18T14:06:31.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.141.100 - RequestID: t0ssso1txpo +2025-06-18T14:06:31.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1016 - IP: 192.168.32.38 - RequestID: akl66tar6lh +2025-06-18T14:06:31.381Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 2ms - Rows affected: 7 - RequestID: b4e1k0k4z9 +2025-06-18T14:06:31.481Z [TRACE] inventory-service - Auth event: password_change - User: user_1050 - IP: 192.168.100.240 - RequestID: aykxzz4xrqf +2025-06-18T14:06:31.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 346ms - RequestID: 5vytxc3un1 +2025-06-18T14:06:31.681Z [INFO] user-service - Database INSERT on products - Execution time: 398ms - Rows affected: 10 - RequestID: a09cmp4ipc7 +2025-06-18T14:06:31.781Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 401 - Response time: 385ms - IP: 192.168.104.37 - User: user_1053 - RequestID: 8cpby6kq1mw +2025-06-18T14:06:31.881Z [TRACE] order-service - Database INSERT on payments - Execution time: 453ms - Rows affected: 86 - RequestID: eghdmd0jfaf +2025-06-18T14:06:31.981Z [DEBUG] user-service - POST /api/v1/orders - Status: 200 - Response time: 145ms - IP: 192.168.196.226 - User: user_1080 - RequestID: sxa19hvp069 +2025-06-18T14:06:32.081Z [INFO] auth-service - Database SELECT on products - Execution time: 384ms - Rows affected: 12 - RequestID: ru00z6facya +2025-06-18T14:06:32.181Z [INFO] user-service - POST /api/v1/orders - Status: 502 - Response time: 1302ms - IP: 192.168.113.218 - User: user_1034 - RequestID: g99yls911wf +2025-06-18T14:06:32.281Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 400 - Response time: 928ms - IP: 192.168.167.32 - User: user_1031 - RequestID: cv4b6y6092f +2025-06-18T14:06:32.381Z [TRACE] payment-service - Database DELETE on orders - Execution time: 75ms - Rows affected: 45 - RequestID: ckrvi2nvn6u +2025-06-18T14:06:32.481Z [TRACE] user-service - Database SELECT on sessions - Execution time: 428ms - Rows affected: 88 - RequestID: cajyowwl93 +2025-06-18T14:06:32.581Z [TRACE] notification-service - POST /api/v1/payments - Status: 500 - Response time: 1991ms - IP: 192.168.113.218 - User: user_1035 - RequestID: zy6avkpumu +2025-06-18T14:06:32.681Z [TRACE] auth-service - Database SELECT on users - Execution time: 115ms - Rows affected: 96 - RequestID: flej50onb9j +2025-06-18T14:06:32.781Z [TRACE] notification-service - Database DELETE on products - Execution time: 259ms - Rows affected: 62 - RequestID: 63d1xlu1qxs +2025-06-18T14:06:32.881Z [INFO] order-service - Auth event: password_change - User: user_1001 - IP: 192.168.211.72 - RequestID: qq4vgdi4ow +2025-06-18T14:06:32.981Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1569ms - IP: 192.168.10.184 - User: user_1096 - RequestID: n4bq90xny3i +2025-06-18T14:06:33.081Z [DEBUG] user-service - Database DELETE on users - Execution time: 130ms - Rows affected: 35 - RequestID: ss5kzsgx44o +2025-06-18T14:06:33.181Z [DEBUG] notification-service - Database INSERT on users - Execution time: 366ms - Rows affected: 53 - RequestID: 6crk4oac8im +2025-06-18T14:06:33.281Z [INFO] notification-service - Database UPDATE on payments - Execution time: 323ms - Rows affected: 18 - RequestID: 5gvcqooc8f7 +2025-06-18T14:06:33.381Z [DEBUG] notification-service - Operation: order_created - Processing time: 1012ms - RequestID: pmky4r1gw9 +2025-06-18T14:06:33.481Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 403 - Response time: 1274ms - IP: 192.168.46.63 - User: user_1007 - RequestID: xjvtkfojn4 +2025-06-18T14:06:33.581Z [INFO] auth-service - Database INSERT on payments - Execution time: 348ms - Rows affected: 67 - RequestID: 0rcs7ehkfp4f +2025-06-18T14:06:33.681Z [TRACE] user-service - Database DELETE on payments - Execution time: 463ms - Rows affected: 43 - RequestID: 97zxgfxa5xp +2025-06-18T14:06:33.781Z [TRACE] auth-service - Operation: cache_miss - Processing time: 907ms - RequestID: ogb0ff6y9x9 +2025-06-18T14:06:33.881Z [INFO] auth-service - Operation: notification_queued - Processing time: 613ms - RequestID: n953z8ddvz +2025-06-18T14:06:33.981Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 187ms - Rows affected: 58 - RequestID: no84y3z7y7 +2025-06-18T14:06:34.081Z [DEBUG] payment-service - Auth event: password_change - User: user_1011 - IP: 192.168.247.134 - RequestID: p5ssd7y7rh +2025-06-18T14:06:34.181Z [TRACE] user-service - Operation: cache_hit - Processing time: 669ms - RequestID: 5buvkly5mq7 +2025-06-18T14:06:34.281Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1587ms - IP: 192.168.33.76 - User: user_1075 - RequestID: 8nz15qjh1gj +2025-06-18T14:06:34.381Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 132ms - RequestID: m0da2hful9 +2025-06-18T14:06:34.481Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 48ms - Rows affected: 20 - RequestID: fo9npu5rnds +2025-06-18T14:06:34.581Z [TRACE] auth-service - Auth event: login_success - User: user_1073 - IP: 192.168.240.169 - RequestID: rl0wqz1ms1 +2025-06-18T14:06:34.681Z [INFO] inventory-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.247.134 - RequestID: 31mpuagdo2t +2025-06-18T14:06:34.781Z [TRACE] notification-service - Operation: order_created - Processing time: 630ms - RequestID: o2j068n7cn +2025-06-18T14:06:34.881Z [INFO] inventory-service - Operation: cache_miss - Processing time: 782ms - RequestID: 4468nsq9bg3 +2025-06-18T14:06:34.981Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 84ms - Rows affected: 31 - RequestID: vh8jg3q90wg +2025-06-18T14:06:35.081Z [TRACE] user-service - Operation: email_sent - Processing time: 508ms - RequestID: 31hrrgiyrvt +2025-06-18T14:06:35.181Z [TRACE] order-service - POST /api/v1/auth/login - Status: 503 - Response time: 641ms - IP: 192.168.194.41 - User: user_1030 - RequestID: 1a72lm46wal +2025-06-18T14:06:35.281Z [INFO] payment-service - GET /api/v1/orders - Status: 502 - Response time: 868ms - IP: 192.168.181.225 - User: user_1033 - RequestID: qlqvr5gew1 +2025-06-18T14:06:35.381Z [INFO] notification-service - GET /api/v1/auth/login - Status: 201 - Response time: 316ms - IP: 192.168.100.240 - User: user_1098 - RequestID: 7ygiv3xh72r +2025-06-18T14:06:35.481Z [TRACE] order-service - Operation: cache_miss - Processing time: 792ms - RequestID: x1g2rfse55 +2025-06-18T14:06:35.581Z [DEBUG] auth-service - Auth event: password_change - User: user_1054 - IP: 192.168.211.72 - RequestID: q682mwzuqtn +2025-06-18T14:06:35.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.31.117 - RequestID: nxitpmtifi8 +2025-06-18T14:06:35.781Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 200 - Response time: 141ms - IP: 192.168.196.226 - User: user_1081 - RequestID: dmmqzw3kq6o +2025-06-18T14:06:35.881Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 360ms - Rows affected: 7 - RequestID: kwbp70yj7st +2025-06-18T14:06:35.981Z [TRACE] user-service - Operation: email_sent - Processing time: 367ms - RequestID: wq6ennu16zd +2025-06-18T14:06:36.081Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 77ms - RequestID: b6i2s2bpfo +2025-06-18T14:06:36.181Z [TRACE] order-service - Auth event: password_change - User: user_1005 - IP: 192.168.144.38 - RequestID: 0ao1nk6j1wbp +2025-06-18T14:06:36.281Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 292ms - IP: 192.168.33.76 - User: user_1002 - RequestID: hx0lr2mlwgc +2025-06-18T14:06:36.381Z [INFO] inventory-service - Auth event: logout - User: user_1038 - IP: 192.168.64.33 - RequestID: 3aaz9pmijnz +2025-06-18T14:06:36.481Z [INFO] auth-service - GET /api/v1/orders - Status: 404 - Response time: 1407ms - IP: 192.168.36.218 - User: user_1041 - RequestID: hovpfisfcvd +2025-06-18T14:06:36.581Z [INFO] auth-service - Auth event: login_failed - User: user_1027 - IP: 192.168.144.38 - RequestID: j5n7zh51ac +2025-06-18T14:06:36.681Z [INFO] user-service - Database UPDATE on products - Execution time: 273ms - Rows affected: 72 - RequestID: 7s3fgmpu19d +2025-06-18T14:06:36.781Z [INFO] payment-service - GET /api/v1/inventory - Status: 503 - Response time: 1793ms - IP: 192.168.144.38 - User: user_1065 - RequestID: dzax4jqi6e +2025-06-18T14:06:36.881Z [INFO] notification-service - Database INSERT on sessions - Execution time: 266ms - Rows affected: 52 - RequestID: qaeds7jfzhh +2025-06-18T14:06:36.981Z [TRACE] notification-service - Operation: email_sent - Processing time: 686ms - RequestID: 1yizbdzzllt +2025-06-18T14:06:37.081Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1053ms - IP: 192.168.11.60 - User: user_1012 - RequestID: bre1czc81fr +2025-06-18T14:06:37.181Z [DEBUG] order-service - Operation: order_created - Processing time: 850ms - RequestID: 6xrq2fovhmm +2025-06-18T14:06:37.281Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 344ms - Rows affected: 61 - RequestID: wyh2agkfanq +2025-06-18T14:06:37.381Z [INFO] notification-service - Auth event: login_success - User: user_1064 - IP: 192.168.14.77 - RequestID: 7spw36vfv2o +2025-06-18T14:06:37.481Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 562ms - RequestID: d7h7pj74i9 +2025-06-18T14:06:37.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 549ms - RequestID: 1mb8ivd423s +2025-06-18T14:06:37.681Z [DEBUG] user-service - Database INSERT on payments - Execution time: 361ms - Rows affected: 9 - RequestID: 815dxlj7s35 +2025-06-18T14:06:37.781Z [INFO] inventory-service - GET /api/v1/payments - Status: 500 - Response time: 1730ms - IP: 192.168.53.133 - User: user_1090 - RequestID: v3r78ro8i1n +2025-06-18T14:06:37.881Z [INFO] notification-service - PUT /api/v1/orders - Status: 404 - Response time: 1655ms - IP: 192.168.196.226 - User: user_1029 - RequestID: fgj10ulvrq +2025-06-18T14:06:37.981Z [INFO] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 382ms - IP: 192.168.170.215 - User: user_1002 - RequestID: 8f586158yo9 +2025-06-18T14:06:38.081Z [INFO] inventory-service - Auth event: password_change - User: user_1002 - IP: 192.168.30.79 - RequestID: mkrmxqb57oi +2025-06-18T14:06:38.181Z [INFO] payment-service - Operation: payment_processed - Processing time: 216ms - RequestID: 7b2bya6glp +2025-06-18T14:06:38.281Z [INFO] order-service - Operation: email_sent - Processing time: 922ms - RequestID: szj3nd70hjd +2025-06-18T14:06:38.381Z [INFO] auth-service - Auth event: login_failed - User: user_1034 - IP: 192.168.211.72 - RequestID: 68xm9p25ztd +2025-06-18T14:06:38.481Z [TRACE] inventory-service - Auth event: logout - User: user_1021 - IP: 192.168.68.158 - RequestID: mto260zf7lf +2025-06-18T14:06:38.581Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 200 - Response time: 1028ms - IP: 192.168.104.37 - User: user_1000 - RequestID: uwkxzife0ar +2025-06-18T14:06:38.681Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 97ms - IP: 192.168.187.199 - User: user_1051 - RequestID: kurv0au6kbj +2025-06-18T14:06:38.781Z [TRACE] order-service - Operation: cache_miss - Processing time: 356ms - RequestID: 4mykpvvnm83 +2025-06-18T14:06:38.881Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1883ms - IP: 192.168.133.7 - User: user_1016 - RequestID: q3o0i4dg8lm +2025-06-18T14:06:38.981Z [DEBUG] notification-service - Auth event: logout - User: user_1057 - IP: 192.168.240.169 - RequestID: oyjv30m5bm +2025-06-18T14:06:39.081Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 4ms - Rows affected: 16 - RequestID: wmzq6oxc24 +2025-06-18T14:06:39.181Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 357ms - Rows affected: 58 - RequestID: jstiu7n6o8 +2025-06-18T14:06:39.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1066 - IP: 192.168.235.117 - RequestID: q3dy4t1hf1b +2025-06-18T14:06:39.381Z [DEBUG] user-service - Operation: cache_miss - Processing time: 533ms - RequestID: t4bhbvjv6x +2025-06-18T14:06:39.481Z [INFO] order-service - Operation: inventory_updated - Processing time: 651ms - RequestID: jhsh8x4p5un +2025-06-18T14:06:39.581Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 503 - Response time: 500ms - IP: 192.168.189.103 - User: user_1000 - RequestID: ia1vdp7cqpl +2025-06-18T14:06:39.681Z [INFO] inventory-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.14.77 - RequestID: tm8jeqhgjz +2025-06-18T14:06:39.781Z [TRACE] notification-service - Operation: payment_processed - Processing time: 624ms - RequestID: 99nmeoyjane +2025-06-18T14:06:39.881Z [TRACE] order-service - Database DELETE on sessions - Execution time: 375ms - Rows affected: 88 - RequestID: uip3wh72avm +2025-06-18T14:06:39.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.138.123 - RequestID: boka0rqn0sc +2025-06-18T14:06:40.081Z [INFO] inventory-service - Database DELETE on payments - Execution time: 72ms - Rows affected: 10 - RequestID: zb2hkcv33hs +2025-06-18T14:06:40.181Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 486ms - RequestID: jv4wv72b8un +2025-06-18T14:06:40.281Z [DEBUG] auth-service - POST /api/v1/payments - Status: 400 - Response time: 551ms - IP: 192.168.32.38 - User: user_1083 - RequestID: k8ugzr8wyvh +2025-06-18T14:06:40.381Z [INFO] auth-service - Operation: cache_miss - Processing time: 975ms - RequestID: 26ob2y6488e +2025-06-18T14:06:40.481Z [INFO] user-service - DELETE /api/v1/users - Status: 401 - Response time: 1073ms - IP: 192.168.133.7 - User: user_1001 - RequestID: 3d9m4v07bmb +2025-06-18T14:06:40.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1060 - IP: 192.168.1.152 - RequestID: joetwe3g96s +2025-06-18T14:06:40.681Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 464ms - Rows affected: 68 - RequestID: taea9f9tssl +2025-06-18T14:06:40.781Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 154ms - Rows affected: 55 - RequestID: 4a0oso500hr +2025-06-18T14:06:40.881Z [INFO] payment-service - Database SELECT on payments - Execution time: 422ms - Rows affected: 56 - RequestID: c67eyylxfc5 +2025-06-18T14:06:40.981Z [INFO] order-service - Operation: email_sent - Processing time: 410ms - RequestID: a3tozm77ngq +2025-06-18T14:06:41.081Z [TRACE] inventory-service - GET /api/v1/orders - Status: 503 - Response time: 868ms - IP: 192.168.28.146 - User: user_1055 - RequestID: 7ol5pawft5c +2025-06-18T14:06:41.181Z [TRACE] order-service - Auth event: logout - User: user_1026 - IP: 192.168.211.72 - RequestID: 643hsl5tce9 +2025-06-18T14:06:41.281Z [TRACE] user-service - PUT /api/v1/orders - Status: 200 - Response time: 407ms - IP: 192.168.100.240 - User: user_1039 - RequestID: xw91ondnt2 +2025-06-18T14:06:41.381Z [TRACE] auth-service - Operation: order_created - Processing time: 225ms - RequestID: wqc8ftu306h +2025-06-18T14:06:41.481Z [TRACE] notification-service - Database UPDATE on products - Execution time: 303ms - Rows affected: 99 - RequestID: rwa7wu5vyt +2025-06-18T14:06:41.581Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 558ms - RequestID: pzgal9usa9n +2025-06-18T14:06:41.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1083 - IP: 192.168.113.218 - RequestID: 4y7v63rq8py +2025-06-18T14:06:41.781Z [INFO] user-service - Database UPDATE on sessions - Execution time: 414ms - Rows affected: 34 - RequestID: jkubh4xt86 +2025-06-18T14:06:41.881Z [INFO] inventory-service - Auth event: login_success - User: user_1044 - IP: 192.168.31.117 - RequestID: 7c7oqz7d79 +2025-06-18T14:06:41.981Z [INFO] user-service - Database SELECT on products - Execution time: 336ms - Rows affected: 18 - RequestID: a32w6nc5ruo +2025-06-18T14:06:42.081Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 289ms - RequestID: gyt694y354k +2025-06-18T14:06:42.181Z [INFO] inventory-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.68.128 - RequestID: zs2j0flrasc +2025-06-18T14:06:42.281Z [INFO] order-service - Operation: email_sent - Processing time: 923ms - RequestID: smed9hmfvb +2025-06-18T14:06:42.381Z [INFO] inventory-service - Database DELETE on products - Execution time: 122ms - Rows affected: 78 - RequestID: vi7lymm7cz +2025-06-18T14:06:42.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1004 - IP: 192.168.28.146 - RequestID: 9rnznnaac2f +2025-06-18T14:06:42.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1028 - IP: 192.168.79.116 - RequestID: lyfamqkwzx +2025-06-18T14:06:42.681Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1195ms - IP: 192.168.247.134 - User: user_1039 - RequestID: sft64b08kc +2025-06-18T14:06:42.781Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1311ms - IP: 192.168.133.7 - User: user_1097 - RequestID: 1av98lrhsge +2025-06-18T14:06:42.881Z [TRACE] notification-service - Operation: cache_miss - Processing time: 679ms - RequestID: 1men7feu50x +2025-06-18T14:06:42.981Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 502 - Response time: 631ms - IP: 192.168.1.152 - User: user_1011 - RequestID: io2o0a4j79 +2025-06-18T14:06:43.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.79.141 - RequestID: zhdrg9a98w +2025-06-18T14:06:43.181Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 482ms - Rows affected: 90 - RequestID: cybrfya0aya +2025-06-18T14:06:43.281Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 358ms - RequestID: s5c1zgqcs0k +2025-06-18T14:06:43.381Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 611ms - RequestID: ksuvmn2xomq +2025-06-18T14:06:43.481Z [INFO] auth-service - Auth event: password_change - User: user_1003 - IP: 192.168.81.206 - RequestID: 9ksinomrm76 +2025-06-18T14:06:43.581Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 308ms - Rows affected: 21 - RequestID: 2yr49q9fdqf +2025-06-18T14:06:43.681Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 389ms - Rows affected: 85 - RequestID: x3777hzybyo +2025-06-18T14:06:43.781Z [TRACE] auth-service - Operation: email_sent - Processing time: 149ms - RequestID: 1u9vswtftzf +2025-06-18T14:06:43.881Z [INFO] user-service - Operation: cache_hit - Processing time: 80ms - RequestID: 1gr1b7bqxi9 +2025-06-18T14:06:43.981Z [INFO] auth-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.85.229 - RequestID: 8xjn8afi715 +2025-06-18T14:06:44.081Z [INFO] notification-service - Auth event: login_failed - User: user_1047 - IP: 192.168.174.114 - RequestID: 90n8gkp0ufg +2025-06-18T14:06:44.181Z [TRACE] order-service - Database INSERT on products - Execution time: 497ms - Rows affected: 70 - RequestID: jehqyf0oqp +2025-06-18T14:06:44.281Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 201 - Response time: 1579ms - IP: 192.168.181.225 - User: user_1069 - RequestID: t6z584qxxn8 +2025-06-18T14:06:44.381Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 286ms - Rows affected: 37 - RequestID: tl5l37bh13g +2025-06-18T14:06:44.481Z [DEBUG] user-service - Auth event: logout - User: user_1083 - IP: 192.168.13.72 - RequestID: zlg2ubdpirm +2025-06-18T14:06:44.581Z [TRACE] payment-service - Auth event: password_change - User: user_1097 - IP: 192.168.181.225 - RequestID: w6kw511f2dg +2025-06-18T14:06:44.681Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1226ms - IP: 192.168.81.206 - User: user_1018 - RequestID: itw9z8cghl +2025-06-18T14:06:44.781Z [DEBUG] user-service - POST /api/v1/inventory - Status: 503 - Response time: 723ms - IP: 192.168.187.199 - User: user_1031 - RequestID: d7b829dwaca +2025-06-18T14:06:44.881Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 261ms - RequestID: l8xpphc6cbr +2025-06-18T14:06:44.981Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 502 - Response time: 435ms - IP: 192.168.138.123 - User: user_1037 - RequestID: imfjf73enk +2025-06-18T14:06:45.081Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 97ms - IP: 192.168.235.117 - User: user_1077 - RequestID: 1lhui56vkf3 +2025-06-18T14:06:45.181Z [INFO] user-service - GET /api/v1/inventory - Status: 503 - Response time: 1339ms - IP: 192.168.167.32 - User: user_1034 - RequestID: 67pa0mrv43 +2025-06-18T14:06:45.281Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 276ms - Rows affected: 56 - RequestID: pd4l512hrl +2025-06-18T14:06:45.381Z [INFO] auth-service - Auth event: password_change - User: user_1065 - IP: 192.168.14.77 - RequestID: axwza2l73m9 +2025-06-18T14:06:45.481Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 438ms - Rows affected: 18 - RequestID: 1nd9r6mqqcm +2025-06-18T14:06:45.581Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 539ms - RequestID: jfuz9021kq +2025-06-18T14:06:45.681Z [INFO] inventory-service - Auth event: login_failed - User: user_1089 - IP: 192.168.79.116 - RequestID: l2ak437esvk +2025-06-18T14:06:45.781Z [INFO] payment-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.242.165 - RequestID: rllo3ixrpp +2025-06-18T14:06:45.881Z [DEBUG] inventory-service - Operation: order_created - Processing time: 965ms - RequestID: rlsid1jr4c9 +2025-06-18T14:06:45.981Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 947ms - RequestID: qoi2mwchg +2025-06-18T14:06:46.081Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 367ms - Rows affected: 24 - RequestID: 1sjshvx4z8e +2025-06-18T14:06:46.181Z [INFO] user-service - Database DELETE on products - Execution time: 224ms - Rows affected: 69 - RequestID: d1rmbaucil +2025-06-18T14:06:46.281Z [DEBUG] order-service - Auth event: password_change - User: user_1083 - IP: 192.168.196.226 - RequestID: 0qpqstuxfj5b +2025-06-18T14:06:46.381Z [INFO] user-service - PUT /api/v1/payments - Status: 503 - Response time: 1563ms - IP: 192.168.32.38 - User: user_1004 - RequestID: y80ety3mnn +2025-06-18T14:06:46.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 833ms - RequestID: nef7wee5ox +2025-06-18T14:06:46.581Z [INFO] order-service - Operation: notification_queued - Processing time: 352ms - RequestID: 5b8hn8zkdgi +2025-06-18T14:06:46.681Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 201 - Response time: 1966ms - IP: 192.168.232.72 - User: user_1015 - RequestID: 5txdp1sub3q +2025-06-18T14:06:46.781Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 403 - Response time: 1717ms - IP: 192.168.31.117 - User: user_1032 - RequestID: sbslk67by9 +2025-06-18T14:06:46.881Z [INFO] notification-service - Database SELECT on users - Execution time: 136ms - Rows affected: 85 - RequestID: 2cugecmwe1w +2025-06-18T14:06:46.981Z [TRACE] order-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.32.38 - RequestID: zxvdus413p +2025-06-18T14:06:47.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.79.143 - RequestID: 9g746bb9c0v +2025-06-18T14:06:47.181Z [INFO] auth-service - Auth event: password_change - User: user_1094 - IP: 192.168.147.171 - RequestID: 3s9qlouvhfd +2025-06-18T14:06:47.281Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 400 - Response time: 125ms - IP: 192.168.174.114 - User: user_1098 - RequestID: 9w4f5261tyi +2025-06-18T14:06:47.381Z [TRACE] payment-service - Operation: notification_queued - Processing time: 392ms - RequestID: ygbkafgzt2l +2025-06-18T14:06:47.481Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 590ms - RequestID: ihzeyy8km +2025-06-18T14:06:47.581Z [INFO] auth-service - Database INSERT on payments - Execution time: 371ms - Rows affected: 28 - RequestID: d1tieu5tov7 +2025-06-18T14:06:47.681Z [INFO] payment-service - Database DELETE on products - Execution time: 33ms - Rows affected: 78 - RequestID: jal920tp54g +2025-06-18T14:06:47.781Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1718ms - IP: 192.168.138.123 - User: user_1060 - RequestID: iz32tmr7fv +2025-06-18T14:06:47.881Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 714ms - RequestID: sizds0a8q5p +2025-06-18T14:06:47.981Z [INFO] order-service - PATCH /api/v1/users - Status: 403 - Response time: 1699ms - IP: 192.168.97.87 - User: user_1057 - RequestID: lej3q0xicpa +2025-06-18T14:06:48.081Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1841ms - IP: 192.168.138.123 - User: user_1091 - RequestID: dw85fvvx0rt +2025-06-18T14:06:48.181Z [INFO] notification-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.211.72 - RequestID: rxy2861a4a +2025-06-18T14:06:48.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.79.143 - RequestID: v46c15emzq +2025-06-18T14:06:48.381Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 276ms - RequestID: dwp9r73wdsf +2025-06-18T14:06:48.481Z [TRACE] auth-service - Auth event: logout - User: user_1033 - IP: 192.168.64.33 - RequestID: 6crp5pkwzwn +2025-06-18T14:06:48.581Z [TRACE] user-service - Auth event: login_success - User: user_1010 - IP: 192.168.189.103 - RequestID: excwu7onobi +2025-06-18T14:06:48.681Z [TRACE] order-service - Auth event: password_change - User: user_1007 - IP: 192.168.133.7 - RequestID: 1ekz782xyk8i +2025-06-18T14:06:48.781Z [TRACE] order-service - Auth event: login_success - User: user_1018 - IP: 192.168.31.117 - RequestID: gl9rgbyxr6t +2025-06-18T14:06:48.881Z [INFO] payment-service - Operation: notification_queued - Processing time: 385ms - RequestID: hzzw1cxuqoq +2025-06-18T14:06:48.981Z [INFO] payment-service - Auth event: login_failed - User: user_1073 - IP: 192.168.31.117 - RequestID: gwzjsanvwk4 +2025-06-18T14:06:49.081Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 404 - Response time: 633ms - IP: 192.168.167.32 - User: user_1046 - RequestID: mhx7gtt0bp +2025-06-18T14:06:49.181Z [TRACE] auth-service - POST /api/v1/payments - Status: 401 - Response time: 1926ms - IP: 192.168.100.240 - User: user_1085 - RequestID: ilvr1stq23l +2025-06-18T14:06:49.281Z [INFO] auth-service - Auth event: login_success - User: user_1092 - IP: 192.168.159.94 - RequestID: 23he5wiqnf1 +2025-06-18T14:06:49.381Z [INFO] auth-service - Auth event: password_change - User: user_1043 - IP: 192.168.133.7 - RequestID: z1k4lvexl5q +2025-06-18T14:06:49.481Z [DEBUG] order-service - Database INSERT on users - Execution time: 465ms - Rows affected: 4 - RequestID: hmerdwoxonw +2025-06-18T14:06:49.581Z [DEBUG] order-service - Database INSERT on orders - Execution time: 485ms - Rows affected: 59 - RequestID: 61pwfjhvebt +2025-06-18T14:06:49.681Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 949ms - RequestID: wpmdgjpox3 +2025-06-18T14:06:49.781Z [DEBUG] order-service - GET /api/v1/inventory - Status: 401 - Response time: 822ms - IP: 192.168.144.38 - User: user_1037 - RequestID: kyhly0dwwa9 +2025-06-18T14:06:49.881Z [INFO] auth-service - Database INSERT on sessions - Execution time: 245ms - Rows affected: 9 - RequestID: 8ldf975ozk7 +2025-06-18T14:06:49.981Z [DEBUG] order-service - Database SELECT on products - Execution time: 353ms - Rows affected: 90 - RequestID: vb31n6rovn +2025-06-18T14:06:50.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.133.7 - RequestID: q3aupeqcq7 +2025-06-18T14:06:50.181Z [TRACE] payment-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.196.226 - RequestID: d2dk3euqivl +2025-06-18T14:06:50.281Z [DEBUG] auth-service - Operation: order_created - Processing time: 474ms - RequestID: g9nm15s5114 +2025-06-18T14:06:50.381Z [INFO] inventory-service - PUT /api/v1/users - Status: 401 - Response time: 895ms - IP: 192.168.174.114 - User: user_1005 - RequestID: l7z8qjbsykp +2025-06-18T14:06:50.481Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 107ms - RequestID: hh1hpvt196 +2025-06-18T14:06:50.581Z [INFO] order-service - Auth event: password_change - User: user_1054 - IP: 192.168.97.87 - RequestID: bbkn5n9nma +2025-06-18T14:06:50.681Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 3ms - Rows affected: 13 - RequestID: tfwo2mjiyhg +2025-06-18T14:06:50.781Z [DEBUG] order-service - Operation: order_created - Processing time: 363ms - RequestID: z1luint1je +2025-06-18T14:06:50.881Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 201 - Response time: 111ms - IP: 192.168.53.133 - User: user_1047 - RequestID: bc1mrrg7zqj +2025-06-18T14:06:50.981Z [TRACE] payment-service - Database DELETE on users - Execution time: 242ms - Rows affected: 32 - RequestID: akfxhmh84vc +2025-06-18T14:06:51.081Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 173ms - IP: 192.168.79.141 - User: user_1096 - RequestID: yviybr2k1wm +2025-06-18T14:06:51.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.36.218 - RequestID: q412ox40kyd +2025-06-18T14:06:51.281Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 485ms - Rows affected: 33 - RequestID: jwyb472epz +2025-06-18T14:06:51.381Z [INFO] payment-service - Database UPDATE on users - Execution time: 154ms - Rows affected: 13 - RequestID: ma7se7ij83 +2025-06-18T14:06:51.481Z [INFO] order-service - GET /api/v1/payments - Status: 401 - Response time: 1973ms - IP: 192.168.232.72 - User: user_1097 - RequestID: rnav6v3usfh +2025-06-18T14:06:51.581Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 552ms - IP: 192.168.235.117 - User: user_1071 - RequestID: 0x8x3scnlehn +2025-06-18T14:06:51.681Z [INFO] order-service - DELETE /api/v1/users - Status: 503 - Response time: 1688ms - IP: 192.168.81.206 - User: user_1022 - RequestID: rq35t1nh2lg +2025-06-18T14:06:51.781Z [INFO] user-service - Database SELECT on sessions - Execution time: 219ms - Rows affected: 55 - RequestID: mtca3vn2oog +2025-06-18T14:06:51.881Z [INFO] user-service - Auth event: logout - User: user_1046 - IP: 192.168.242.165 - RequestID: slayqk7tfq +2025-06-18T14:06:51.981Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 2009ms - IP: 192.168.113.218 - User: user_1082 - RequestID: 8tyjuqqvd7e +2025-06-18T14:06:52.081Z [DEBUG] auth-service - Auth event: logout - User: user_1087 - IP: 192.168.79.143 - RequestID: ykd7l2p263c +2025-06-18T14:06:52.181Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 358ms - Rows affected: 92 - RequestID: tbrw968q69d +2025-06-18T14:06:52.281Z [TRACE] inventory-service - POST /api/v1/users - Status: 201 - Response time: 1300ms - IP: 192.168.194.41 - User: user_1078 - RequestID: 8u4yujbhj5d +2025-06-18T14:06:52.381Z [TRACE] order-service - PUT /api/v1/users - Status: 404 - Response time: 1742ms - IP: 192.168.194.41 - User: user_1052 - RequestID: 021t9z3k4dpa +2025-06-18T14:06:52.481Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 403 - Response time: 722ms - IP: 192.168.229.123 - User: user_1007 - RequestID: jghtzqowjwb +2025-06-18T14:06:52.581Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 400 - Response time: 567ms - IP: 192.168.79.143 - User: user_1046 - RequestID: uu2bd4ca43q +2025-06-18T14:06:52.681Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 358ms - Rows affected: 8 - RequestID: 6in9mvke7xx +2025-06-18T14:06:52.781Z [DEBUG] payment-service - POST /api/v1/orders - Status: 500 - Response time: 1323ms - IP: 192.168.113.218 - User: user_1021 - RequestID: mcuoqrveuw +2025-06-18T14:06:52.881Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 400 - Response time: 809ms - IP: 192.168.28.146 - User: user_1038 - RequestID: of289jxv6rc +2025-06-18T14:06:52.981Z [TRACE] user-service - Database SELECT on orders - Execution time: 79ms - Rows affected: 95 - RequestID: q2syokgycb +2025-06-18T14:06:53.081Z [TRACE] inventory-service - Database DELETE on users - Execution time: 349ms - Rows affected: 74 - RequestID: l4o1snvovd +2025-06-18T14:06:53.181Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 200 - Response time: 769ms - IP: 192.168.11.60 - User: user_1044 - RequestID: gy8i28rff2g +2025-06-18T14:06:53.281Z [INFO] order-service - Auth event: logout - User: user_1070 - IP: 192.168.44.5 - RequestID: dw0pgi8lwjr +2025-06-18T14:06:53.381Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 112ms - Rows affected: 35 - RequestID: 7ksw1elr0lc +2025-06-18T14:06:53.481Z [INFO] inventory-service - Operation: email_sent - Processing time: 915ms - RequestID: 96qwrtkpzj4 +2025-06-18T14:06:53.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1032 - IP: 192.168.31.117 - RequestID: x7dyufnbaak +2025-06-18T14:06:53.681Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 477ms - Rows affected: 75 - RequestID: 3dg3sxua1c +2025-06-18T14:06:53.781Z [TRACE] auth-service - Auth event: password_change - User: user_1043 - IP: 192.168.232.72 - RequestID: 09ufd8vg3bgv +2025-06-18T14:06:53.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1034 - IP: 192.168.14.77 - RequestID: xp5clgzs9jh +2025-06-18T14:06:53.981Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 404 - Response time: 50ms - IP: 192.168.144.38 - User: user_1034 - RequestID: msfevgbynh +2025-06-18T14:06:54.081Z [INFO] payment-service - Auth event: password_change - User: user_1064 - IP: 192.168.181.225 - RequestID: trmr6dry8jq +2025-06-18T14:06:54.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.28.146 - RequestID: e33t5igqzz +2025-06-18T14:06:54.281Z [TRACE] user-service - Auth event: login_success - User: user_1027 - IP: 192.168.174.114 - RequestID: oq94kr881tg +2025-06-18T14:06:54.381Z [INFO] notification-service - Auth event: login_failed - User: user_1065 - IP: 192.168.189.103 - RequestID: 1cvvtyqp7wk +2025-06-18T14:06:54.481Z [INFO] notification-service - Auth event: login_success - User: user_1049 - IP: 192.168.158.144 - RequestID: 8l2tr9c7a2e +2025-06-18T14:06:54.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 888ms - RequestID: 8l1d8qvneyt +2025-06-18T14:06:54.681Z [INFO] inventory-service - Database SELECT on orders - Execution time: 266ms - Rows affected: 59 - RequestID: pktqsto76np +2025-06-18T14:06:54.781Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 401 - Response time: 1848ms - IP: 192.168.100.240 - User: user_1098 - RequestID: ansrztxq3s +2025-06-18T14:06:54.881Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 401 - Response time: 591ms - IP: 192.168.10.184 - User: user_1049 - RequestID: 5tpc1xgeqg2 +2025-06-18T14:06:54.981Z [INFO] user-service - Operation: cache_hit - Processing time: 412ms - RequestID: r4btvbcg4jn +2025-06-18T14:06:55.081Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 201 - Response time: 1641ms - IP: 192.168.28.146 - User: user_1090 - RequestID: cvjal3qgbh +2025-06-18T14:06:55.181Z [TRACE] order-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.211.72 - RequestID: 9zxbzh1fcjq +2025-06-18T14:06:55.281Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 173ms - Rows affected: 16 - RequestID: 6ikarnx3j3 +2025-06-18T14:06:55.381Z [TRACE] user-service - Database UPDATE on orders - Execution time: 204ms - Rows affected: 42 - RequestID: q3fflfqxhcp +2025-06-18T14:06:55.481Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 500 - Response time: 294ms - IP: 192.168.36.218 - User: user_1013 - RequestID: i3rw9uni9r +2025-06-18T14:06:55.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 988ms - RequestID: lhoqkc25cbj +2025-06-18T14:06:55.681Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 503 - Response time: 43ms - IP: 192.168.113.218 - User: user_1006 - RequestID: ch345otevj +2025-06-18T14:06:55.781Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 48ms - Rows affected: 76 - RequestID: jgqre7xu66r +2025-06-18T14:06:55.881Z [INFO] notification-service - POST /api/v1/orders - Status: 200 - Response time: 1820ms - IP: 192.168.247.134 - User: user_1024 - RequestID: w00d67f3ylb +2025-06-18T14:06:55.981Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 381ms - RequestID: nczmvxsfv9r +2025-06-18T14:06:56.081Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 360ms - Rows affected: 67 - RequestID: lp5pbui84v +2025-06-18T14:06:56.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.147.171 - RequestID: 1ky9i4b79g2 +2025-06-18T14:06:56.281Z [INFO] inventory-service - GET /api/v1/users - Status: 500 - Response time: 811ms - IP: 192.168.1.152 - User: user_1025 - RequestID: v3ue5y643ym +2025-06-18T14:06:56.381Z [INFO] user-service - PUT /api/v1/payments - Status: 404 - Response time: 836ms - IP: 192.168.53.133 - User: user_1054 - RequestID: jrt8gkdue9e +2025-06-18T14:06:56.481Z [TRACE] notification-service - POST /api/v1/users - Status: 503 - Response time: 358ms - IP: 192.168.147.171 - User: user_1081 - RequestID: hpil5kfum8n +2025-06-18T14:06:56.581Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 962ms - IP: 192.168.53.133 - User: user_1025 - RequestID: j8586blz21 +2025-06-18T14:06:56.681Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 377ms - RequestID: 6hq9tvpohcg +2025-06-18T14:06:56.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.240.169 - RequestID: ixdcs76hh4e +2025-06-18T14:06:56.881Z [DEBUG] order-service - Auth event: password_change - User: user_1071 - IP: 192.168.31.117 - RequestID: f574lucawrr +2025-06-18T14:06:56.981Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 159ms - Rows affected: 61 - RequestID: imvs0q6gvvg +2025-06-18T14:06:57.081Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 143ms - RequestID: wq3nnfov9z +2025-06-18T14:06:57.181Z [DEBUG] inventory-service - Auth event: login_success - User: user_1014 - IP: 192.168.232.72 - RequestID: 1vgjg1smnc1 +2025-06-18T14:06:57.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.240.169 - RequestID: 3jexc7g1thg +2025-06-18T14:06:57.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1062 - IP: 192.168.32.38 - RequestID: htejeyvvaz6 +2025-06-18T14:06:57.481Z [TRACE] order-service - DELETE /api/v1/payments - Status: 403 - Response time: 616ms - IP: 192.168.247.134 - User: user_1002 - RequestID: skl4tj8ffii +2025-06-18T14:06:57.581Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 10ms - Rows affected: 31 - RequestID: x53fxarkd2h +2025-06-18T14:06:57.681Z [DEBUG] user-service - Auth event: logout - User: user_1059 - IP: 192.168.138.123 - RequestID: v1ivxpqdofr +2025-06-18T14:06:57.781Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.138.123 - RequestID: 2bx6ri37fjr +2025-06-18T14:06:57.881Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 530ms - RequestID: xxo0q46stm +2025-06-18T14:06:57.981Z [INFO] auth-service - DELETE /api/v1/payments - Status: 401 - Response time: 253ms - IP: 192.168.229.123 - User: user_1032 - RequestID: zzujcbob7m +2025-06-18T14:06:58.081Z [INFO] notification-service - Database INSERT on products - Execution time: 308ms - Rows affected: 0 - RequestID: kyzggn63sb +2025-06-18T14:06:58.181Z [DEBUG] inventory-service - Auth event: password_change - User: user_1032 - IP: 192.168.159.94 - RequestID: z94neekk3i8 +2025-06-18T14:06:58.281Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 503 - Response time: 1520ms - IP: 192.168.13.72 - User: user_1070 - RequestID: t2va16xzlr +2025-06-18T14:06:58.381Z [TRACE] auth-service - Auth event: login_failed - User: user_1075 - IP: 192.168.227.233 - RequestID: spjbuicqrd +2025-06-18T14:06:58.481Z [TRACE] user-service - PATCH /api/v1/orders - Status: 403 - Response time: 1831ms - IP: 192.168.97.87 - User: user_1047 - RequestID: 4bjxw1b29fy +2025-06-18T14:06:58.581Z [TRACE] order-service - Database UPDATE on products - Execution time: 199ms - Rows affected: 45 - RequestID: kd9m63wk0hh +2025-06-18T14:06:58.681Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 796ms - IP: 192.168.189.103 - User: user_1043 - RequestID: 937dchtw8o8 +2025-06-18T14:06:58.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1057 - IP: 192.168.104.37 - RequestID: 79pissutv76 +2025-06-18T14:06:58.881Z [TRACE] user-service - POST /api/v1/auth/login - Status: 404 - Response time: 987ms - IP: 192.168.1.152 - User: user_1010 - RequestID: 2cow46jq0sv +2025-06-18T14:06:58.981Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 201 - Response time: 1309ms - IP: 192.168.44.5 - User: user_1017 - RequestID: wzsadpn1w1d +2025-06-18T14:06:59.081Z [INFO] notification-service - Database UPDATE on orders - Execution time: 287ms - Rows affected: 10 - RequestID: 4tbm4vq25vp +2025-06-18T14:06:59.181Z [DEBUG] order-service - DELETE /api/v1/users - Status: 403 - Response time: 1155ms - IP: 192.168.11.60 - User: user_1024 - RequestID: zsp6j0ef0f +2025-06-18T14:06:59.281Z [INFO] order-service - Operation: payment_processed - Processing time: 171ms - RequestID: oceqx798a3a +2025-06-18T14:06:59.381Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 927ms - RequestID: 0n34g47jthf +2025-06-18T14:06:59.481Z [DEBUG] notification-service - POST /api/v1/users - Status: 503 - Response time: 587ms - IP: 192.168.174.114 - User: user_1084 - RequestID: bsh2a8bazk4 +2025-06-18T14:06:59.581Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1027ms - IP: 192.168.32.38 - User: user_1085 - RequestID: 1ayil7282yr +2025-06-18T14:06:59.681Z [INFO] notification-service - Auth event: logout - User: user_1054 - IP: 192.168.85.229 - RequestID: ysjbvbdfxf +2025-06-18T14:06:59.781Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 400 - Response time: 248ms - IP: 192.168.32.38 - User: user_1077 - RequestID: dvhjxdrm73i +2025-06-18T14:06:59.881Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 18ms - Rows affected: 88 - RequestID: wbjturofpxk +2025-06-18T14:06:59.981Z [TRACE] order-service - Auth event: password_change - User: user_1055 - IP: 192.168.79.141 - RequestID: k5eubo1gsp +2025-06-18T14:07:00.081Z [TRACE] inventory-service - Database INSERT on users - Execution time: 494ms - Rows affected: 89 - RequestID: hqqzhkm2s2t +2025-06-18T14:07:00.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 758ms - RequestID: zfv560e6if9 +2025-06-18T14:07:00.281Z [TRACE] payment-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.247.134 - RequestID: uz2gcckozwo +2025-06-18T14:07:00.381Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 53ms - IP: 192.168.144.38 - User: user_1063 - RequestID: 7nwrwcvyt3i +2025-06-18T14:07:00.481Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 77ms - RequestID: 65f72zidlgx +2025-06-18T14:07:00.581Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 51ms - Rows affected: 69 - RequestID: q6gammdx2g +2025-06-18T14:07:00.681Z [INFO] notification-service - Database DELETE on sessions - Execution time: 391ms - Rows affected: 41 - RequestID: fmgdxamlj4m +2025-06-18T14:07:00.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.28.146 - RequestID: b15f1f70cu4 +2025-06-18T14:07:00.881Z [TRACE] user-service - Auth event: password_change - User: user_1029 - IP: 192.168.13.72 - RequestID: 1nkha7288bx +2025-06-18T14:07:00.981Z [TRACE] payment-service - Operation: email_sent - Processing time: 521ms - RequestID: fhrsaieyz8o +2025-06-18T14:07:01.081Z [INFO] payment-service - Database DELETE on products - Execution time: 102ms - Rows affected: 35 - RequestID: c4kkd7ql6sv +2025-06-18T14:07:01.181Z [INFO] order-service - Operation: order_created - Processing time: 1005ms - RequestID: rvc3nx7q6z +2025-06-18T14:07:01.281Z [TRACE] user-service - Operation: notification_queued - Processing time: 466ms - RequestID: d499mm4p70n +2025-06-18T14:07:01.381Z [DEBUG] payment-service - GET /api/v1/users - Status: 400 - Response time: 1289ms - IP: 192.168.31.117 - User: user_1063 - RequestID: 140vjcktky9q +2025-06-18T14:07:01.481Z [TRACE] user-service - PUT /api/v1/payments - Status: 502 - Response time: 734ms - IP: 192.168.242.165 - User: user_1096 - RequestID: xwri1gpfgak +2025-06-18T14:07:01.581Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 467ms - Rows affected: 56 - RequestID: k0n05is5nac +2025-06-18T14:07:01.681Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 400 - Response time: 905ms - IP: 192.168.229.123 - User: user_1086 - RequestID: g10b5p9ff9e +2025-06-18T14:07:01.781Z [TRACE] user-service - Operation: payment_processed - Processing time: 299ms - RequestID: fqmmzvnx7v +2025-06-18T14:07:01.881Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 886ms - RequestID: xuz28fx0agd +2025-06-18T14:07:01.981Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 201 - Response time: 1900ms - IP: 192.168.229.123 - User: user_1042 - RequestID: 6pwz6ng1a3i +2025-06-18T14:07:02.081Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 404 - Response time: 779ms - IP: 192.168.1.152 - User: user_1036 - RequestID: ftay5agubqa +2025-06-18T14:07:02.181Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 44ms - Rows affected: 44 - RequestID: t5j8axr28dc +2025-06-18T14:07:02.281Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 35ms - Rows affected: 31 - RequestID: rer98aa6lj9 +2025-06-18T14:07:02.381Z [INFO] order-service - Operation: notification_queued - Processing time: 689ms - RequestID: xjgylv1rfml +2025-06-18T14:07:02.481Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1690ms - IP: 192.168.211.72 - User: user_1015 - RequestID: gj0gabzx0yr +2025-06-18T14:07:02.581Z [DEBUG] order-service - Auth event: password_change - User: user_1078 - IP: 192.168.196.226 - RequestID: n1sxf4yzpmd +2025-06-18T14:07:02.681Z [INFO] auth-service - POST /api/v1/inventory - Status: 400 - Response time: 1326ms - IP: 192.168.235.117 - User: user_1004 - RequestID: 963rkq2tv1b +2025-06-18T14:07:02.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.79.141 - RequestID: rrl1n5hoilm +2025-06-18T14:07:02.881Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 266ms - Rows affected: 3 - RequestID: vqg21hvx16 +2025-06-18T14:07:02.981Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 66ms - Rows affected: 43 - RequestID: 6ja8gh6w3fi +2025-06-18T14:07:03.081Z [INFO] payment-service - Database UPDATE on payments - Execution time: 184ms - Rows affected: 70 - RequestID: h8wjtnclto7 +2025-06-18T14:07:03.181Z [TRACE] notification-service - Operation: cache_miss - Processing time: 825ms - RequestID: lt8rd0ro2f +2025-06-18T14:07:03.281Z [TRACE] order-service - DELETE /api/v1/payments - Status: 200 - Response time: 1379ms - IP: 192.168.104.37 - User: user_1090 - RequestID: 1mhh5s86gz2 +2025-06-18T14:07:03.381Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 367ms - Rows affected: 32 - RequestID: 40jhnv771ac +2025-06-18T14:07:03.481Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1117ms - IP: 192.168.53.133 - User: user_1002 - RequestID: d427m4sjtc8 +2025-06-18T14:07:03.581Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 588ms - IP: 192.168.1.152 - User: user_1012 - RequestID: 5nbefydmm7s +2025-06-18T14:07:03.681Z [INFO] order-service - Auth event: login_success - User: user_1060 - IP: 192.168.227.77 - RequestID: ucv5rkeyx5l +2025-06-18T14:07:03.781Z [INFO] auth-service - Auth event: login_success - User: user_1098 - IP: 192.168.174.114 - RequestID: d7pn8kf6t4j +2025-06-18T14:07:03.881Z [INFO] inventory-service - Auth event: login_success - User: user_1004 - IP: 192.168.227.77 - RequestID: p4pmp51ykkm +2025-06-18T14:07:03.981Z [INFO] user-service - GET /api/v1/users - Status: 500 - Response time: 1109ms - IP: 192.168.196.226 - User: user_1052 - RequestID: u95bqqiej1 +2025-06-18T14:07:04.081Z [INFO] notification-service - Operation: notification_queued - Processing time: 368ms - RequestID: 18pdvnao7z8h +2025-06-18T14:07:04.181Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 400 - Response time: 200ms - IP: 192.168.32.38 - User: user_1065 - RequestID: 8tbpi4l6dgq +2025-06-18T14:07:04.281Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1172ms - IP: 192.168.247.134 - User: user_1062 - RequestID: kwfzkowew +2025-06-18T14:07:04.381Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1038ms - IP: 192.168.1.152 - User: user_1089 - RequestID: pd41kozbheg +2025-06-18T14:07:04.481Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 664ms - RequestID: bhjjmur62n +2025-06-18T14:07:04.581Z [DEBUG] user-service - POST /api/v1/inventory - Status: 403 - Response time: 1510ms - IP: 192.168.33.76 - User: user_1043 - RequestID: aj06tdj71i7 +2025-06-18T14:07:04.681Z [INFO] order-service - Database INSERT on products - Execution time: 379ms - Rows affected: 45 - RequestID: l6gy4yogz4o +2025-06-18T14:07:04.781Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 495ms - IP: 192.168.81.206 - User: user_1083 - RequestID: h6aokshdsvw +2025-06-18T14:07:04.881Z [DEBUG] auth-service - Operation: email_sent - Processing time: 174ms - RequestID: 3ekdnzr9enu +2025-06-18T14:07:04.981Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 214ms - Rows affected: 56 - RequestID: df9h47wlrm +2025-06-18T14:07:05.081Z [INFO] auth-service - PATCH /api/v1/users - Status: 503 - Response time: 930ms - IP: 192.168.159.94 - User: user_1063 - RequestID: lk294ldkhx +2025-06-18T14:07:05.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 215ms - RequestID: 5bir3tq5fkm +2025-06-18T14:07:05.281Z [INFO] user-service - Operation: payment_processed - Processing time: 508ms - RequestID: vshm2nm59lg +2025-06-18T14:07:05.381Z [DEBUG] order-service - POST /api/v1/payments - Status: 401 - Response time: 737ms - IP: 192.168.235.117 - User: user_1090 - RequestID: m1cjcbpp9x +2025-06-18T14:07:05.481Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 930ms - IP: 192.168.81.206 - User: user_1045 - RequestID: 21bblaff5ii +2025-06-18T14:07:05.581Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 201 - Response time: 940ms - IP: 192.168.46.63 - User: user_1050 - RequestID: 6i1zyxm3pxw +2025-06-18T14:07:05.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.196.226 - RequestID: n7id4clqzz +2025-06-18T14:07:05.781Z [TRACE] order-service - Database INSERT on payments - Execution time: 229ms - Rows affected: 26 - RequestID: umaze3x79io +2025-06-18T14:07:05.881Z [INFO] order-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.11.60 - RequestID: gmd8f7upn1c +2025-06-18T14:07:05.981Z [TRACE] user-service - Database UPDATE on products - Execution time: 155ms - Rows affected: 3 - RequestID: s4u1im5b7zs +2025-06-18T14:07:06.081Z [TRACE] user-service - Operation: cache_hit - Processing time: 324ms - RequestID: u85wmjmbm4 +2025-06-18T14:07:06.181Z [DEBUG] auth-service - Auth event: logout - User: user_1018 - IP: 192.168.147.171 - RequestID: b0eqm7m6x26 +2025-06-18T14:07:06.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1009 - IP: 192.168.85.229 - RequestID: sfwss3bk0rp +2025-06-18T14:07:06.381Z [TRACE] order-service - Database DELETE on payments - Execution time: 362ms - Rows affected: 93 - RequestID: l5mdnv8tzmp +2025-06-18T14:07:06.481Z [INFO] user-service - GET /api/v1/orders - Status: 503 - Response time: 1989ms - IP: 192.168.46.63 - User: user_1043 - RequestID: s83isno36x +2025-06-18T14:07:06.581Z [TRACE] user-service - Auth event: login_failed - User: user_1086 - IP: 192.168.235.117 - RequestID: 0x5qznpyt7ko +2025-06-18T14:07:06.681Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1196ms - IP: 192.168.68.128 - User: user_1032 - RequestID: 4nckmmfvdd9 +2025-06-18T14:07:06.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 257ms - RequestID: u4obwhvw7p9 +2025-06-18T14:07:06.881Z [TRACE] user-service - Operation: payment_processed - Processing time: 646ms - RequestID: zv63s46if0r +2025-06-18T14:07:06.981Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 362ms - Rows affected: 59 - RequestID: g4czdgxfy6h +2025-06-18T14:07:07.081Z [TRACE] inventory-service - Operation: email_sent - Processing time: 611ms - RequestID: sarzjr6tf3l +2025-06-18T14:07:07.181Z [TRACE] order-service - PATCH /api/v1/orders - Status: 503 - Response time: 982ms - IP: 192.168.100.240 - User: user_1089 - RequestID: 7vyp5pqztbw +2025-06-18T14:07:07.281Z [DEBUG] auth-service - Auth event: logout - User: user_1093 - IP: 192.168.235.117 - RequestID: g0wnpwjpaaw +2025-06-18T14:07:07.381Z [DEBUG] order-service - Auth event: logout - User: user_1012 - IP: 192.168.104.37 - RequestID: 9ctt1ywjz7 +2025-06-18T14:07:07.481Z [DEBUG] auth-service - PUT /api/v1/users - Status: 200 - Response time: 1341ms - IP: 192.168.229.123 - User: user_1033 - RequestID: xzak8cq69z +2025-06-18T14:07:07.581Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 861ms - RequestID: 6ffef7tk27 +2025-06-18T14:07:07.681Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 621ms - RequestID: vvm4fb8vey +2025-06-18T14:07:07.781Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 401 - Response time: 187ms - IP: 192.168.170.215 - User: user_1092 - RequestID: yc1kqqhvag8 +2025-06-18T14:07:07.881Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 61ms - RequestID: 1z5mxotofcd +2025-06-18T14:07:07.981Z [DEBUG] notification-service - Database SELECT on users - Execution time: 252ms - Rows affected: 30 - RequestID: rkkz7m9529h +2025-06-18T14:07:08.081Z [TRACE] payment-service - Database INSERT on payments - Execution time: 147ms - Rows affected: 69 - RequestID: icuichd0tqj +2025-06-18T14:07:08.181Z [TRACE] notification-service - GET /api/v1/orders - Status: 401 - Response time: 1276ms - IP: 192.168.158.144 - User: user_1019 - RequestID: x7qy17xrqk +2025-06-18T14:07:08.281Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1606ms - IP: 192.168.10.184 - User: user_1021 - RequestID: qd5zxcph6b +2025-06-18T14:07:08.381Z [INFO] order-service - POST /api/v1/auth/login - Status: 401 - Response time: 651ms - IP: 192.168.79.143 - User: user_1036 - RequestID: 7itqewne1zr +2025-06-18T14:07:08.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 1012ms - RequestID: ed9raf5364l +2025-06-18T14:07:08.581Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 3ms - Rows affected: 18 - RequestID: x3dyf9rpthn +2025-06-18T14:07:08.681Z [INFO] user-service - GET /api/v1/users - Status: 201 - Response time: 1016ms - IP: 192.168.141.100 - User: user_1067 - RequestID: ndl2cmz6v6 +2025-06-18T14:07:08.781Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 353ms - Rows affected: 28 - RequestID: 1tmrtpnf6bw +2025-06-18T14:07:08.881Z [INFO] inventory-service - Operation: cache_hit - Processing time: 380ms - RequestID: f0gwlrf37ud +2025-06-18T14:07:08.981Z [TRACE] user-service - Operation: payment_processed - Processing time: 973ms - RequestID: eganhl3pebf +2025-06-18T14:07:09.081Z [INFO] payment-service - Auth event: login_success - User: user_1055 - IP: 192.168.100.240 - RequestID: zdj2aryog0p +2025-06-18T14:07:09.181Z [DEBUG] user-service - Auth event: login_success - User: user_1058 - IP: 192.168.64.33 - RequestID: 92wuvfn7fj7 +2025-06-18T14:07:09.281Z [TRACE] auth-service - DELETE /api/v1/users - Status: 404 - Response time: 81ms - IP: 192.168.194.41 - User: user_1095 - RequestID: ly7sqt699mf +2025-06-18T14:07:09.381Z [TRACE] order-service - Operation: email_sent - Processing time: 628ms - RequestID: dwn194h8t3c +2025-06-18T14:07:09.481Z [INFO] payment-service - Database DELETE on users - Execution time: 265ms - Rows affected: 7 - RequestID: ren23oeay6f +2025-06-18T14:07:09.581Z [TRACE] user-service - GET /api/v1/users - Status: 400 - Response time: 743ms - IP: 192.168.68.158 - User: user_1081 - RequestID: 3ubl5p5dxab +2025-06-18T14:07:09.681Z [TRACE] notification-service - Auth event: login_success - User: user_1098 - IP: 192.168.141.100 - RequestID: 54gp263cizf +2025-06-18T14:07:09.781Z [INFO] auth-service - Operation: cache_hit - Processing time: 965ms - RequestID: enqzmwtb9h +2025-06-18T14:07:09.881Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.11.60 - RequestID: jikvz7zm53 +2025-06-18T14:07:09.981Z [INFO] user-service - Database DELETE on products - Execution time: 493ms - Rows affected: 60 - RequestID: zrqc0t72uq +2025-06-18T14:07:10.081Z [DEBUG] order-service - POST /api/v1/inventory - Status: 200 - Response time: 339ms - IP: 192.168.144.38 - User: user_1075 - RequestID: 3uaprkz4gao +2025-06-18T14:07:10.181Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 1667ms - IP: 192.168.79.141 - User: user_1091 - RequestID: vzxph2i9l +2025-06-18T14:07:10.281Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 401 - Response time: 370ms - IP: 192.168.13.72 - User: user_1099 - RequestID: wzhn970xw2s +2025-06-18T14:07:10.381Z [INFO] user-service - Auth event: password_change - User: user_1010 - IP: 192.168.196.226 - RequestID: 1xevr4hje6u +2025-06-18T14:07:10.481Z [INFO] auth-service - DELETE /api/v1/orders - Status: 403 - Response time: 631ms - IP: 192.168.174.114 - User: user_1079 - RequestID: g8jdpy2ajal +2025-06-18T14:07:10.581Z [INFO] order-service - Auth event: password_change - User: user_1086 - IP: 192.168.64.33 - RequestID: ownj5sefve +2025-06-18T14:07:10.681Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 395ms - Rows affected: 25 - RequestID: 9575dcemibn +2025-06-18T14:07:10.781Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 116ms - Rows affected: 73 - RequestID: upbjhdwly7i +2025-06-18T14:07:10.881Z [TRACE] order-service - Operation: email_sent - Processing time: 924ms - RequestID: lkl9rfvbxkg +2025-06-18T14:07:10.981Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 183ms - Rows affected: 26 - RequestID: 2hvs04v3drq +2025-06-18T14:07:11.081Z [DEBUG] payment-service - Operation: order_created - Processing time: 628ms - RequestID: 8izjrenhwff +2025-06-18T14:07:11.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 1029ms - RequestID: bhqhfasqo4h +2025-06-18T14:07:11.281Z [TRACE] auth-service - Operation: email_sent - Processing time: 768ms - RequestID: 85c2hs8iwq +2025-06-18T14:07:11.381Z [INFO] inventory-service - POST /api/v1/orders - Status: 404 - Response time: 1647ms - IP: 192.168.138.123 - User: user_1025 - RequestID: abnu1k69da8 +2025-06-18T14:07:11.481Z [INFO] order-service - PUT /api/v1/inventory - Status: 201 - Response time: 1165ms - IP: 192.168.247.134 - User: user_1081 - RequestID: raxh9aayf5 +2025-06-18T14:07:11.581Z [INFO] auth-service - Database SELECT on users - Execution time: 196ms - Rows affected: 93 - RequestID: ubpgcyi03tl +2025-06-18T14:07:11.681Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 404 - Response time: 1354ms - IP: 192.168.227.77 - User: user_1008 - RequestID: 1i500pi7p4y +2025-06-18T14:07:11.781Z [INFO] user-service - Auth event: logout - User: user_1001 - IP: 192.168.181.225 - RequestID: v306fere1fh +2025-06-18T14:07:11.881Z [INFO] inventory-service - Operation: notification_queued - Processing time: 916ms - RequestID: 8qhtn792scs +2025-06-18T14:07:11.981Z [DEBUG] order-service - Operation: cache_miss - Processing time: 651ms - RequestID: sx79plrfvq9 +2025-06-18T14:07:12.081Z [DEBUG] payment-service - Database DELETE on users - Execution time: 378ms - Rows affected: 14 - RequestID: grdnvdkwttf +2025-06-18T14:07:12.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 446ms - RequestID: hmt83nffjn +2025-06-18T14:07:12.281Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 491ms - Rows affected: 88 - RequestID: kagibbez4kj +2025-06-18T14:07:12.381Z [TRACE] payment-service - Operation: cache_miss - Processing time: 392ms - RequestID: 1a0r0rl4byo +2025-06-18T14:07:12.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 355ms - RequestID: qof6cgjronm +2025-06-18T14:07:12.581Z [TRACE] auth-service - Operation: order_created - Processing time: 1040ms - RequestID: 6gd1150vc4q +2025-06-18T14:07:12.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.79.141 - RequestID: lrp6g32qdqo +2025-06-18T14:07:12.781Z [INFO] notification-service - Operation: inventory_updated - Processing time: 682ms - RequestID: atwvxq829af +2025-06-18T14:07:12.881Z [INFO] auth-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.1.152 - RequestID: t1gsctu6g3b +2025-06-18T14:07:12.981Z [TRACE] order-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.158.144 - RequestID: c7yfxuquvk5 +2025-06-18T14:07:13.081Z [TRACE] user-service - PUT /api/v1/orders - Status: 404 - Response time: 1240ms - IP: 192.168.68.158 - User: user_1032 - RequestID: tu6pweuihug +2025-06-18T14:07:13.181Z [TRACE] inventory-service - Database INSERT on products - Execution time: 304ms - Rows affected: 37 - RequestID: pklrmy564wg +2025-06-18T14:07:13.281Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 33ms - Rows affected: 7 - RequestID: fjuxfgqhk0g +2025-06-18T14:07:13.381Z [TRACE] order-service - Database INSERT on sessions - Execution time: 57ms - Rows affected: 89 - RequestID: 3283k9ksnvh +2025-06-18T14:07:13.481Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 251ms - Rows affected: 16 - RequestID: h8cwyh899bo +2025-06-18T14:07:13.581Z [DEBUG] order-service - Operation: cache_miss - Processing time: 212ms - RequestID: 70s754mveuk +2025-06-18T14:07:13.681Z [TRACE] auth-service - Auth event: logout - User: user_1030 - IP: 192.168.13.72 - RequestID: klmzjpppkjp +2025-06-18T14:07:13.781Z [INFO] auth-service - GET /api/v1/payments - Status: 502 - Response time: 1208ms - IP: 192.168.53.133 - User: user_1020 - RequestID: vyckutsflx +2025-06-18T14:07:13.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1049 - IP: 192.168.104.37 - RequestID: 0cwkbhnlasjg +2025-06-18T14:07:13.981Z [INFO] user-service - Auth event: logout - User: user_1009 - IP: 192.168.232.72 - RequestID: g8vr0bb1pwv +2025-06-18T14:07:14.081Z [DEBUG] order-service - Auth event: logout - User: user_1061 - IP: 192.168.211.72 - RequestID: 479p3ei326s +2025-06-18T14:07:14.181Z [TRACE] user-service - Auth event: login_success - User: user_1024 - IP: 192.168.211.72 - RequestID: 6gowxg5gw6f +2025-06-18T14:07:14.281Z [INFO] payment-service - Operation: cache_miss - Processing time: 824ms - RequestID: k40qh8ppb8p +2025-06-18T14:07:14.381Z [INFO] payment-service - DELETE /api/v1/orders - Status: 500 - Response time: 543ms - IP: 192.168.196.226 - User: user_1008 - RequestID: k4jw9iujfgc +2025-06-18T14:07:14.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 238ms - RequestID: fr3d1tyv8ho +2025-06-18T14:07:14.581Z [INFO] notification-service - Auth event: password_change - User: user_1021 - IP: 192.168.68.158 - RequestID: cmhzowfnnc8 +2025-06-18T14:07:14.681Z [DEBUG] auth-service - POST /api/v1/payments - Status: 502 - Response time: 1361ms - IP: 192.168.113.218 - User: user_1044 - RequestID: m892qqsc74 +2025-06-18T14:07:14.781Z [TRACE] notification-service - POST /api/v1/inventory - Status: 502 - Response time: 960ms - IP: 192.168.79.143 - User: user_1064 - RequestID: hjnu7rrj6fd +2025-06-18T14:07:14.881Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 201 - Response time: 1605ms - IP: 192.168.242.165 - User: user_1052 - RequestID: j1d45f4fts +2025-06-18T14:07:14.981Z [INFO] inventory-service - Database INSERT on payments - Execution time: 102ms - Rows affected: 73 - RequestID: 3wl11jv70p +2025-06-18T14:07:15.081Z [TRACE] order-service - Operation: payment_processed - Processing time: 758ms - RequestID: epi4m18jqtj +2025-06-18T14:07:15.181Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1043 - IP: 192.168.159.94 - RequestID: orrbtum2xt +2025-06-18T14:07:15.281Z [INFO] order-service - Operation: cache_miss - Processing time: 912ms - RequestID: zrcju3lyg5 +2025-06-18T14:07:15.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 298ms - RequestID: ou63hlfd2ym +2025-06-18T14:07:15.481Z [INFO] order-service - Operation: cache_miss - Processing time: 243ms - RequestID: jmswz7ab0tm +2025-06-18T14:07:15.581Z [TRACE] payment-service - POST /api/v1/payments - Status: 503 - Response time: 664ms - IP: 192.168.167.32 - User: user_1098 - RequestID: py5srwcw7l +2025-06-18T14:07:15.681Z [TRACE] user-service - Database UPDATE on products - Execution time: 193ms - Rows affected: 67 - RequestID: jddbu1la6z9 +2025-06-18T14:07:15.781Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1244ms - IP: 192.168.79.141 - User: user_1076 - RequestID: wkmcdzfg8v +2025-06-18T14:07:15.881Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 712ms - RequestID: iet1qdwizf +2025-06-18T14:07:15.981Z [TRACE] notification-service - DELETE /api/v1/users - Status: 403 - Response time: 1518ms - IP: 192.168.113.218 - User: user_1063 - RequestID: kb2qsr5fgq +2025-06-18T14:07:16.081Z [INFO] user-service - PATCH /api/v1/users - Status: 503 - Response time: 391ms - IP: 192.168.30.79 - User: user_1090 - RequestID: 9wdr5m8dzdm +2025-06-18T14:07:16.181Z [TRACE] notification-service - PUT /api/v1/payments - Status: 200 - Response time: 860ms - IP: 192.168.79.143 - User: user_1004 - RequestID: t3qumy6hhd +2025-06-18T14:07:16.281Z [TRACE] auth-service - Auth event: login_success - User: user_1013 - IP: 192.168.32.38 - RequestID: mxilhmuo6go +2025-06-18T14:07:16.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 550ms - RequestID: vnibdzy9tr +2025-06-18T14:07:16.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.158.144 - RequestID: 0y9l8vvtwysh +2025-06-18T14:07:16.581Z [TRACE] user-service - POST /api/v1/payments - Status: 503 - Response time: 1329ms - IP: 192.168.11.60 - User: user_1022 - RequestID: 6qusr9qowq6 +2025-06-18T14:07:16.681Z [DEBUG] payment-service - POST /api/v1/users - Status: 401 - Response time: 356ms - IP: 192.168.79.143 - User: user_1021 - RequestID: p9wlq6fkg3 +2025-06-18T14:07:16.781Z [INFO] auth-service - Database DELETE on orders - Execution time: 383ms - Rows affected: 74 - RequestID: fay06mmw5nv +2025-06-18T14:07:16.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 391ms - RequestID: 8wlkdoj2joj +2025-06-18T14:07:16.981Z [INFO] payment-service - PUT /api/v1/orders - Status: 401 - Response time: 562ms - IP: 192.168.170.215 - User: user_1066 - RequestID: bqtxcgzs6mp +2025-06-18T14:07:17.081Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 335ms - Rows affected: 68 - RequestID: jfj0342pqzn +2025-06-18T14:07:17.181Z [TRACE] notification-service - Database DELETE on payments - Execution time: 285ms - Rows affected: 8 - RequestID: ktq117gvtqb +2025-06-18T14:07:17.281Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 285ms - Rows affected: 59 - RequestID: lcd34ji7o8i +2025-06-18T14:07:17.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.11.60 - RequestID: 2k6hlflrnri +2025-06-18T14:07:17.481Z [INFO] user-service - Database DELETE on products - Execution time: 44ms - Rows affected: 23 - RequestID: cu5ny6ytzwe +2025-06-18T14:07:17.581Z [TRACE] notification-service - PUT /api/v1/orders - Status: 201 - Response time: 1219ms - IP: 192.168.227.77 - User: user_1059 - RequestID: 36v1pcvcnh +2025-06-18T14:07:17.681Z [TRACE] auth-service - Database SELECT on products - Execution time: 270ms - Rows affected: 5 - RequestID: jxgzt8olmxh +2025-06-18T14:07:17.781Z [INFO] user-service - Auth event: logout - User: user_1061 - IP: 192.168.36.218 - RequestID: o3j1gd3xnm8 +2025-06-18T14:07:17.881Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 436ms - Rows affected: 76 - RequestID: wn8gxaod7p +2025-06-18T14:07:17.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1095 - IP: 192.168.196.226 - RequestID: 27v9ozq55wk +2025-06-18T14:07:18.081Z [TRACE] payment-service - Auth event: logout - User: user_1032 - IP: 192.168.14.77 - RequestID: h5yn04znyai +2025-06-18T14:07:18.181Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 191ms - Rows affected: 32 - RequestID: 7yqt33flvpm +2025-06-18T14:07:18.281Z [TRACE] user-service - Auth event: login_failed - User: user_1026 - IP: 192.168.229.123 - RequestID: jiitarl88v7 +2025-06-18T14:07:18.381Z [INFO] order-service - PATCH /api/v1/users - Status: 201 - Response time: 1890ms - IP: 192.168.189.103 - User: user_1009 - RequestID: 8p6npgjlimd +2025-06-18T14:07:18.481Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 50ms - IP: 192.168.44.5 - User: user_1092 - RequestID: 4uy52xvksz +2025-06-18T14:07:18.581Z [DEBUG] inventory-service - Auth event: login_success - User: user_1018 - IP: 192.168.227.233 - RequestID: e94br6r5rct +2025-06-18T14:07:18.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 283ms - RequestID: 3tmsvx6bm8k +2025-06-18T14:07:18.781Z [TRACE] order-service - Database DELETE on users - Execution time: 374ms - Rows affected: 45 - RequestID: 66jxir82hcs +2025-06-18T14:07:18.881Z [TRACE] notification-service - POST /api/v1/inventory - Status: 400 - Response time: 1625ms - IP: 192.168.81.206 - User: user_1060 - RequestID: ro2yik6g3y +2025-06-18T14:07:18.981Z [TRACE] inventory-service - Operation: email_sent - Processing time: 993ms - RequestID: pn43prk43ws +2025-06-18T14:07:19.081Z [TRACE] notification-service - PUT /api/v1/payments - Status: 200 - Response time: 186ms - IP: 192.168.158.144 - User: user_1031 - RequestID: sa97yq2eww +2025-06-18T14:07:19.181Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1293ms - IP: 192.168.242.165 - User: user_1019 - RequestID: b3b3a3obeo5 +2025-06-18T14:07:19.281Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 222ms - Rows affected: 56 - RequestID: e9c5h8oi4so +2025-06-18T14:07:19.381Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 404 - Response time: 71ms - IP: 192.168.242.165 - User: user_1076 - RequestID: t8qszy04mbc +2025-06-18T14:07:19.481Z [TRACE] payment-service - Operation: cache_miss - Processing time: 389ms - RequestID: s78cusr8pfb +2025-06-18T14:07:19.581Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.232.72 - RequestID: 2f326gh8z5i +2025-06-18T14:07:19.681Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 503 - Response time: 303ms - IP: 192.168.44.5 - User: user_1045 - RequestID: 5nd4r093iwq +2025-06-18T14:07:19.781Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 133ms - Rows affected: 66 - RequestID: 3n86j2e0kvl +2025-06-18T14:07:19.881Z [TRACE] payment-service - Auth event: login_failed - User: user_1093 - IP: 192.168.64.33 - RequestID: c819xvxqysv +2025-06-18T14:07:19.981Z [TRACE] payment-service - Auth event: login_failed - User: user_1057 - IP: 192.168.227.233 - RequestID: xziycuqjl5 +2025-06-18T14:07:20.081Z [INFO] user-service - PATCH /api/v1/payments - Status: 404 - Response time: 45ms - IP: 192.168.30.79 - User: user_1004 - RequestID: 0kop8tzuokcf +2025-06-18T14:07:20.181Z [TRACE] inventory-service - Operation: email_sent - Processing time: 413ms - RequestID: vrbbdhm335m +2025-06-18T14:07:20.281Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 403 - Response time: 1627ms - IP: 192.168.85.229 - User: user_1024 - RequestID: wghxpbz0g2b +2025-06-18T14:07:20.381Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 701ms - RequestID: ttysz74e1wf +2025-06-18T14:07:20.481Z [INFO] user-service - Operation: cache_hit - Processing time: 823ms - RequestID: v0bi574zqdb +2025-06-18T14:07:20.581Z [DEBUG] auth-service - GET /api/v1/payments - Status: 401 - Response time: 544ms - IP: 192.168.189.103 - User: user_1049 - RequestID: v3cqxq89h9d +2025-06-18T14:07:20.681Z [INFO] notification-service - Auth event: login_success - User: user_1077 - IP: 192.168.68.128 - RequestID: 0w58l3i0tj2 +2025-06-18T14:07:20.781Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 403 - Response time: 1382ms - IP: 192.168.138.123 - User: user_1091 - RequestID: f33sp31735r +2025-06-18T14:07:20.881Z [INFO] order-service - Operation: cache_hit - Processing time: 291ms - RequestID: s8ofzpcrup +2025-06-18T14:07:20.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.85.229 - RequestID: 9km6xa11q4h +2025-06-18T14:07:21.081Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 403 - Response time: 1348ms - IP: 192.168.79.116 - User: user_1020 - RequestID: 5wwwep3gw4q +2025-06-18T14:07:21.181Z [TRACE] user-service - DELETE /api/v1/users - Status: 401 - Response time: 1150ms - IP: 192.168.53.133 - User: user_1040 - RequestID: 8t2jerd5p6o +2025-06-18T14:07:21.281Z [TRACE] payment-service - Operation: payment_processed - Processing time: 55ms - RequestID: yqipr4hw3k +2025-06-18T14:07:21.381Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 500 - Response time: 1345ms - IP: 192.168.247.134 - User: user_1041 - RequestID: l8zexcvzsu +2025-06-18T14:07:21.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1020 - IP: 192.168.81.206 - RequestID: 03gyb8zmzwkj +2025-06-18T14:07:21.581Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 23ms - Rows affected: 12 - RequestID: hpxahkb7a8l +2025-06-18T14:07:21.681Z [INFO] auth-service - Database INSERT on sessions - Execution time: 495ms - Rows affected: 30 - RequestID: 9kh7eqepora +2025-06-18T14:07:21.781Z [TRACE] auth-service - Operation: cache_miss - Processing time: 162ms - RequestID: xpk2b6fe5qh +2025-06-18T14:07:21.881Z [DEBUG] user-service - PUT /api/v1/orders - Status: 400 - Response time: 971ms - IP: 192.168.242.165 - User: user_1062 - RequestID: o097hz6yqoo +2025-06-18T14:07:21.981Z [INFO] inventory-service - Operation: notification_queued - Processing time: 200ms - RequestID: rru1jyz1w98 +2025-06-18T14:07:22.081Z [DEBUG] payment-service - Auth event: password_change - User: user_1053 - IP: 192.168.81.206 - RequestID: tgxc0oyh21d +2025-06-18T14:07:22.181Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 54ms - Rows affected: 8 - RequestID: mvy0mupw9nc +2025-06-18T14:07:22.281Z [TRACE] order-service - Operation: email_sent - Processing time: 647ms - RequestID: 2ctn2xfdlg5 +2025-06-18T14:07:22.381Z [INFO] order-service - GET /api/v1/payments - Status: 502 - Response time: 543ms - IP: 192.168.79.116 - User: user_1086 - RequestID: uxl0t2xhwhn +2025-06-18T14:07:22.481Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1147ms - IP: 192.168.174.114 - User: user_1048 - RequestID: ux0cmf9bxyf +2025-06-18T14:07:22.581Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 265ms - Rows affected: 63 - RequestID: ozyvo2bjw6i +2025-06-18T14:07:22.681Z [INFO] inventory-service - PUT /api/v1/payments - Status: 500 - Response time: 353ms - IP: 192.168.196.226 - User: user_1005 - RequestID: qxfrbag42dr +2025-06-18T14:07:22.781Z [INFO] payment-service - Auth event: password_change - User: user_1031 - IP: 192.168.79.143 - RequestID: n4if9n4951 +2025-06-18T14:07:22.881Z [TRACE] notification-service - Database SELECT on orders - Execution time: 35ms - Rows affected: 94 - RequestID: fjig2ztmfte +2025-06-18T14:07:22.981Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 122ms - Rows affected: 77 - RequestID: q8bkymcdgb +2025-06-18T14:07:23.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.11.60 - RequestID: yp9u2i395gf +2025-06-18T14:07:23.181Z [INFO] order-service - Database SELECT on sessions - Execution time: 371ms - Rows affected: 38 - RequestID: 0xxapbk8e1lk +2025-06-18T14:07:23.281Z [INFO] inventory-service - Database UPDATE on products - Execution time: 320ms - Rows affected: 50 - RequestID: cxu9umv70x +2025-06-18T14:07:23.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.68.128 - RequestID: vcwsghogeur +2025-06-18T14:07:23.481Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 403 - Response time: 224ms - IP: 192.168.235.117 - User: user_1049 - RequestID: m6yo8tktus +2025-06-18T14:07:23.581Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 267ms - RequestID: 9tf4jexx1nk +2025-06-18T14:07:23.681Z [INFO] auth-service - Operation: cache_miss - Processing time: 834ms - RequestID: qpbpp5u0wkr +2025-06-18T14:07:23.781Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 227ms - Rows affected: 89 - RequestID: xvz39aqx9a +2025-06-18T14:07:23.881Z [DEBUG] user-service - POST /api/v1/inventory - Status: 400 - Response time: 1281ms - IP: 192.168.14.77 - User: user_1065 - RequestID: 80jcus8bodc +2025-06-18T14:07:23.981Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 286ms - Rows affected: 52 - RequestID: gtj8ooo7ezn +2025-06-18T14:07:24.081Z [INFO] order-service - Operation: cache_hit - Processing time: 859ms - RequestID: hbq0gvl9t6b +2025-06-18T14:07:24.181Z [INFO] order-service - Database UPDATE on products - Execution time: 355ms - Rows affected: 72 - RequestID: brllcva71rm +2025-06-18T14:07:24.281Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1824ms - IP: 192.168.194.41 - User: user_1048 - RequestID: uqlvkv53t2 +2025-06-18T14:07:24.381Z [INFO] notification-service - Operation: cache_hit - Processing time: 259ms - RequestID: i094sc1slzj +2025-06-18T14:07:24.481Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 160ms - Rows affected: 74 - RequestID: zar1v7n87ks +2025-06-18T14:07:24.581Z [INFO] notification-service - Operation: order_created - Processing time: 211ms - RequestID: 1fcbu5gi26hj +2025-06-18T14:07:24.681Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 400 - Response time: 174ms - IP: 192.168.211.72 - User: user_1069 - RequestID: yf0yovm0vw +2025-06-18T14:07:24.781Z [INFO] notification-service - Database UPDATE on products - Execution time: 359ms - Rows affected: 39 - RequestID: csc09nuj4xr +2025-06-18T14:07:24.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 506ms - RequestID: ls7vp83dp2 +2025-06-18T14:07:24.981Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 503 - Response time: 20ms - IP: 192.168.13.72 - User: user_1075 - RequestID: r6gb9v0pms +2025-06-18T14:07:25.081Z [INFO] inventory-service - Operation: order_created - Processing time: 811ms - RequestID: nr5c9y5zbzi +2025-06-18T14:07:25.181Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1696ms - IP: 192.168.104.37 - User: user_1050 - RequestID: nh6tpn8luoa +2025-06-18T14:07:25.281Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 887ms - RequestID: 1ot3bmarqk5 +2025-06-18T14:07:25.381Z [INFO] notification-service - Operation: inventory_updated - Processing time: 446ms - RequestID: n5fz4as0s7 +2025-06-18T14:07:25.481Z [INFO] notification-service - Auth event: logout - User: user_1085 - IP: 192.168.36.218 - RequestID: 94s0d1x7597 +2025-06-18T14:07:25.581Z [TRACE] inventory-service - Database DELETE on products - Execution time: 342ms - Rows affected: 3 - RequestID: oahiu7rjtoq +2025-06-18T14:07:25.681Z [INFO] order-service - Database DELETE on payments - Execution time: 339ms - Rows affected: 95 - RequestID: vzmk1ob5q3j +2025-06-18T14:07:25.781Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 403 - Response time: 1353ms - IP: 192.168.189.103 - User: user_1098 - RequestID: m9gwtmblcza +2025-06-18T14:07:25.881Z [INFO] payment-service - Operation: payment_processed - Processing time: 345ms - RequestID: xmiu7awjmhe +2025-06-18T14:07:25.981Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 136ms - IP: 192.168.113.218 - User: user_1068 - RequestID: skff87q3om +2025-06-18T14:07:26.081Z [DEBUG] order-service - Auth event: password_change - User: user_1051 - IP: 192.168.240.169 - RequestID: ui0p8jfzn1e +2025-06-18T14:07:26.181Z [TRACE] notification-service - Operation: cache_hit - Processing time: 861ms - RequestID: 1jvmpt0v4wi +2025-06-18T14:07:26.281Z [DEBUG] inventory-service - Auth event: login_success - User: user_1069 - IP: 192.168.141.100 - RequestID: vqm1p6kz0wr +2025-06-18T14:07:26.381Z [TRACE] payment-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.196.226 - RequestID: rdb4jrmegfa +2025-06-18T14:07:26.481Z [INFO] user-service - Database SELECT on products - Execution time: 298ms - Rows affected: 24 - RequestID: 7725buwzc3p +2025-06-18T14:07:26.581Z [INFO] order-service - Operation: email_sent - Processing time: 78ms - RequestID: 5ubltefgl0w +2025-06-18T14:07:26.681Z [DEBUG] user-service - Operation: cache_hit - Processing time: 192ms - RequestID: ckmqvu0wjx7 +2025-06-18T14:07:26.781Z [INFO] user-service - Operation: cache_miss - Processing time: 805ms - RequestID: x0kzzc93ewo +2025-06-18T14:07:26.881Z [TRACE] order-service - Operation: order_created - Processing time: 357ms - RequestID: 94ili1t615 +2025-06-18T14:07:26.981Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1625ms - IP: 192.168.167.32 - User: user_1039 - RequestID: er9hk9mak8h +2025-06-18T14:07:27.081Z [INFO] order-service - Database INSERT on sessions - Execution time: 405ms - Rows affected: 82 - RequestID: r7vtt5bmh1 +2025-06-18T14:07:27.181Z [INFO] inventory-service - GET /api/v1/users - Status: 500 - Response time: 1023ms - IP: 192.168.1.152 - User: user_1058 - RequestID: sithyownvol +2025-06-18T14:07:27.281Z [DEBUG] order-service - Operation: order_created - Processing time: 441ms - RequestID: k3om47o5c6 +2025-06-18T14:07:27.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 720ms - RequestID: nd6w7ur8xd9 +2025-06-18T14:07:27.481Z [INFO] user-service - GET /api/v1/users - Status: 500 - Response time: 1502ms - IP: 192.168.11.60 - User: user_1052 - RequestID: 0y2g0h9zz6r +2025-06-18T14:07:27.581Z [INFO] payment-service - Database DELETE on sessions - Execution time: 116ms - Rows affected: 70 - RequestID: gegjbxjyktq +2025-06-18T14:07:27.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 633ms - RequestID: sxsdlju4zfb +2025-06-18T14:07:27.781Z [INFO] user-service - GET /api/v1/inventory - Status: 403 - Response time: 1299ms - IP: 192.168.14.77 - User: user_1093 - RequestID: zh0nunlpybb +2025-06-18T14:07:27.881Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1622ms - IP: 192.168.33.76 - User: user_1028 - RequestID: v0km6j0nael +2025-06-18T14:07:27.981Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 403 - Response time: 674ms - IP: 192.168.79.116 - User: user_1001 - RequestID: z6amf4i0ey +2025-06-18T14:07:28.081Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 147ms - RequestID: ahfw316o2ww +2025-06-18T14:07:28.181Z [INFO] inventory-service - Operation: notification_queued - Processing time: 715ms - RequestID: 478zufww6m2 +2025-06-18T14:07:28.281Z [TRACE] order-service - Database DELETE on orders - Execution time: 163ms - Rows affected: 29 - RequestID: 8xpky8ovxri +2025-06-18T14:07:28.381Z [INFO] user-service - Operation: inventory_updated - Processing time: 173ms - RequestID: a3rpcc1o65w +2025-06-18T14:07:28.481Z [INFO] payment-service - Database DELETE on payments - Execution time: 308ms - Rows affected: 71 - RequestID: iroyv6je17k +2025-06-18T14:07:28.581Z [DEBUG] auth-service - Auth event: logout - User: user_1020 - IP: 192.168.32.38 - RequestID: ngos2f46y6f +2025-06-18T14:07:28.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1082 - IP: 192.168.31.117 - RequestID: hcru2c68n79 +2025-06-18T14:07:28.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.81.206 - RequestID: zx8a4fhhslj +2025-06-18T14:07:28.881Z [TRACE] auth-service - Operation: order_created - Processing time: 234ms - RequestID: l3e7onn0mgd +2025-06-18T14:07:28.981Z [TRACE] auth-service - Operation: email_sent - Processing time: 144ms - RequestID: p0l8a5x3rmj +2025-06-18T14:07:29.081Z [INFO] order-service - Database UPDATE on payments - Execution time: 108ms - Rows affected: 62 - RequestID: btl91zostjg +2025-06-18T14:07:29.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.147.171 - RequestID: 6ustvsdflg5 +2025-06-18T14:07:29.281Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 176ms - Rows affected: 72 - RequestID: q3zcswzhnjp +2025-06-18T14:07:29.381Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1272ms - IP: 192.168.79.141 - User: user_1008 - RequestID: 6w61f8p6rwm +2025-06-18T14:07:29.481Z [TRACE] payment-service - GET /api/v1/inventory - Status: 201 - Response time: 385ms - IP: 192.168.53.133 - User: user_1053 - RequestID: 7tj50vthfka +2025-06-18T14:07:29.581Z [INFO] auth-service - Auth event: login_failed - User: user_1072 - IP: 192.168.14.77 - RequestID: cyk4stfllhs +2025-06-18T14:07:29.681Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 404 - Response time: 142ms - IP: 192.168.159.94 - User: user_1033 - RequestID: pfqi60am6hk +2025-06-18T14:07:29.781Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1966ms - IP: 192.168.167.32 - User: user_1097 - RequestID: 86unamgbbmf +2025-06-18T14:07:29.881Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 341ms - RequestID: jrg1b24x97m +2025-06-18T14:07:29.981Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 403 - Response time: 619ms - IP: 192.168.13.72 - User: user_1058 - RequestID: 0rfyt7xvjxr +2025-06-18T14:07:30.081Z [TRACE] notification-service - Database INSERT on users - Execution time: 214ms - Rows affected: 9 - RequestID: oe5ej3wxqx +2025-06-18T14:07:30.181Z [TRACE] order-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.147.171 - RequestID: ufa7qz6cn2f +2025-06-18T14:07:30.281Z [TRACE] auth-service - Database SELECT on orders - Execution time: 193ms - Rows affected: 72 - RequestID: g0yi24ybf9k +2025-06-18T14:07:30.381Z [INFO] user-service - Database UPDATE on orders - Execution time: 136ms - Rows affected: 84 - RequestID: f3ue8petikf +2025-06-18T14:07:30.481Z [INFO] payment-service - Database INSERT on orders - Execution time: 398ms - Rows affected: 6 - RequestID: mmsqd4b0t0g +2025-06-18T14:07:30.581Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 365ms - Rows affected: 6 - RequestID: 89qyfhzwljv +2025-06-18T14:07:30.681Z [TRACE] auth-service - Database DELETE on users - Execution time: 445ms - Rows affected: 92 - RequestID: y5chl3r340c +2025-06-18T14:07:30.781Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 403 - Response time: 107ms - IP: 192.168.170.215 - User: user_1052 - RequestID: hmtuw4h0siq +2025-06-18T14:07:30.881Z [INFO] order-service - Database UPDATE on products - Execution time: 414ms - Rows affected: 63 - RequestID: wn1jfztwcho +2025-06-18T14:07:30.981Z [INFO] order-service - Database INSERT on orders - Execution time: 249ms - Rows affected: 75 - RequestID: g0amd19qvbr +2025-06-18T14:07:31.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.85.229 - RequestID: ea5pitw2gis +2025-06-18T14:07:31.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.144.38 - RequestID: wfp80fjnqbg +2025-06-18T14:07:31.281Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 200 - Response time: 1732ms - IP: 192.168.158.144 - User: user_1022 - RequestID: qta6t4wb7g8 +2025-06-18T14:07:31.381Z [TRACE] order-service - Operation: cache_hit - Processing time: 437ms - RequestID: oyq8ewnuhr +2025-06-18T14:07:31.481Z [TRACE] notification-service - PATCH /api/v1/users - Status: 401 - Response time: 924ms - IP: 192.168.141.100 - User: user_1068 - RequestID: c5bbhzff8aa +2025-06-18T14:07:31.581Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 475ms - Rows affected: 96 - RequestID: 4tiiucckt3k +2025-06-18T14:07:31.681Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 73ms - RequestID: dbwnnzyfidu +2025-06-18T14:07:31.781Z [TRACE] payment-service - Database DELETE on payments - Execution time: 71ms - Rows affected: 86 - RequestID: kjplid314kl +2025-06-18T14:07:31.881Z [DEBUG] order-service - Operation: cache_hit - Processing time: 225ms - RequestID: a6frqkpg3bk +2025-06-18T14:07:31.981Z [INFO] inventory-service - Operation: cache_miss - Processing time: 315ms - RequestID: wyurxsb4se +2025-06-18T14:07:32.081Z [DEBUG] payment-service - Auth event: logout - User: user_1010 - IP: 192.168.141.100 - RequestID: iiyhf7dt07b +2025-06-18T14:07:32.181Z [DEBUG] order-service - PUT /api/v1/users - Status: 400 - Response time: 416ms - IP: 192.168.14.77 - User: user_1072 - RequestID: ag5rciyafnf +2025-06-18T14:07:32.281Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.247.134 - RequestID: lcfglzrpvc +2025-06-18T14:07:32.381Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 61ms - RequestID: 5e7jxg4ncgp +2025-06-18T14:07:32.481Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 498ms - RequestID: hkx1st2g7 +2025-06-18T14:07:32.581Z [DEBUG] order-service - Operation: cache_miss - Processing time: 757ms - RequestID: 9hoozhx3kuw +2025-06-18T14:07:32.681Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 403 - Response time: 862ms - IP: 192.168.1.152 - User: user_1074 - RequestID: efyqi5zz5ns +2025-06-18T14:07:32.781Z [TRACE] auth-service - Operation: notification_queued - Processing time: 363ms - RequestID: 8g0k3rqkhb +2025-06-18T14:07:32.881Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.32.38 - RequestID: zodwpgmfvo +2025-06-18T14:07:32.981Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 243ms - RequestID: mgszx7jqazb +2025-06-18T14:07:33.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1052 - IP: 192.168.196.226 - RequestID: ng32uhvcr7 +2025-06-18T14:07:33.181Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 138ms - Rows affected: 56 - RequestID: tpw8ko5dzmb +2025-06-18T14:07:33.281Z [INFO] notification-service - Database UPDATE on products - Execution time: 176ms - Rows affected: 44 - RequestID: az56y2yaiki +2025-06-18T14:07:33.381Z [INFO] auth-service - Operation: inventory_updated - Processing time: 464ms - RequestID: 2ipu067uyw9 +2025-06-18T14:07:33.481Z [INFO] user-service - PUT /api/v1/orders - Status: 404 - Response time: 1199ms - IP: 192.168.104.37 - User: user_1091 - RequestID: on4wprw1tz +2025-06-18T14:07:33.581Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 15ms - IP: 192.168.68.128 - User: user_1039 - RequestID: 2ymwmkw08nr +2025-06-18T14:07:33.681Z [DEBUG] payment-service - Operation: email_sent - Processing time: 804ms - RequestID: j7186oyyid7 +2025-06-18T14:07:33.781Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 553ms - IP: 192.168.10.184 - User: user_1019 - RequestID: ydlpy3vv64 +2025-06-18T14:07:33.881Z [TRACE] user-service - Operation: cache_hit - Processing time: 998ms - RequestID: 5qk69f8bjxn +2025-06-18T14:07:33.981Z [TRACE] payment-service - Operation: order_created - Processing time: 327ms - RequestID: vmeriojitur +2025-06-18T14:07:34.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 945ms - RequestID: p9c0a741ywa +2025-06-18T14:07:34.181Z [TRACE] auth-service - Auth event: logout - User: user_1019 - IP: 192.168.68.128 - RequestID: ipo3sl8rqr +2025-06-18T14:07:34.281Z [INFO] inventory-service - GET /api/v1/inventory - Status: 401 - Response time: 253ms - IP: 192.168.68.158 - User: user_1036 - RequestID: jlaxru9yt6g +2025-06-18T14:07:34.381Z [INFO] notification-service - Database SELECT on users - Execution time: 407ms - Rows affected: 30 - RequestID: jmkwo3egkul +2025-06-18T14:07:34.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 302ms - RequestID: s3l7kkas53 +2025-06-18T14:07:34.581Z [TRACE] payment-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.141.100 - RequestID: pl22z1e4c4d +2025-06-18T14:07:34.681Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 319ms - RequestID: nhulqnk6lu +2025-06-18T14:07:34.781Z [INFO] user-service - DELETE /api/v1/payments - Status: 400 - Response time: 1493ms - IP: 192.168.247.134 - User: user_1056 - RequestID: 2owxr91k0ij +2025-06-18T14:07:34.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1060 - IP: 192.168.32.38 - RequestID: qbhclsfig8l +2025-06-18T14:07:34.981Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 198ms - RequestID: 4gv8r3549ra +2025-06-18T14:07:35.081Z [INFO] payment-service - Operation: cache_hit - Processing time: 598ms - RequestID: 1s976z3ispr +2025-06-18T14:07:35.181Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 500 - Response time: 332ms - IP: 192.168.100.240 - User: user_1099 - RequestID: yuzpuw6c1cq +2025-06-18T14:07:35.281Z [DEBUG] auth-service - Auth event: logout - User: user_1080 - IP: 192.168.46.63 - RequestID: ah6pzrx53em +2025-06-18T14:07:35.381Z [TRACE] payment-service - Auth event: password_change - User: user_1080 - IP: 192.168.100.240 - RequestID: yjyvlewi8u9 +2025-06-18T14:07:35.481Z [INFO] auth-service - Auth event: password_change - User: user_1061 - IP: 192.168.68.128 - RequestID: h64r7zhdkz +2025-06-18T14:07:35.581Z [INFO] user-service - PUT /api/v1/inventory - Status: 200 - Response time: 1930ms - IP: 192.168.11.60 - User: user_1071 - RequestID: 9uhp0db5609 +2025-06-18T14:07:35.681Z [INFO] user-service - Database DELETE on sessions - Execution time: 192ms - Rows affected: 42 - RequestID: 6aqt21477wx +2025-06-18T14:07:35.781Z [TRACE] user-service - DELETE /api/v1/orders - Status: 400 - Response time: 1068ms - IP: 192.168.11.60 - User: user_1006 - RequestID: qhz3jgwdgtr +2025-06-18T14:07:35.881Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 194ms - Rows affected: 73 - RequestID: 0q05l7mlmn9 +2025-06-18T14:07:35.981Z [INFO] order-service - Auth event: login_failed - User: user_1022 - IP: 192.168.229.123 - RequestID: ikbd4zjpell +2025-06-18T14:07:36.081Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 762ms - IP: 192.168.30.79 - User: user_1095 - RequestID: h53pyr5tpm +2025-06-18T14:07:36.181Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1247ms - IP: 192.168.158.144 - User: user_1040 - RequestID: 4130voft4p7 +2025-06-18T14:07:36.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.79.143 - RequestID: 82kjuw9debt +2025-06-18T14:07:36.381Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.10.184 - RequestID: v5cyftmuvjb +2025-06-18T14:07:36.481Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 502 - Response time: 105ms - IP: 192.168.187.199 - User: user_1023 - RequestID: 8anjkf6wipt +2025-06-18T14:07:36.581Z [TRACE] payment-service - Auth event: login_failed - User: user_1079 - IP: 192.168.138.123 - RequestID: silpwbonfx +2025-06-18T14:07:36.681Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 407ms - IP: 192.168.229.123 - User: user_1082 - RequestID: qts2oc80u6f +2025-06-18T14:07:36.781Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 293ms - Rows affected: 9 - RequestID: zlg8tsqyi4k +2025-06-18T14:07:36.881Z [INFO] order-service - DELETE /api/v1/orders - Status: 201 - Response time: 1574ms - IP: 192.168.141.100 - User: user_1022 - RequestID: wdbkv67uyf +2025-06-18T14:07:36.981Z [DEBUG] auth-service - Auth event: logout - User: user_1078 - IP: 192.168.196.226 - RequestID: m6rtzdiep6q +2025-06-18T14:07:37.081Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 277ms - RequestID: eh5j612f1cv +2025-06-18T14:07:37.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.13.72 - RequestID: 2zg8n0c6igk +2025-06-18T14:07:37.281Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 97ms - Rows affected: 90 - RequestID: nqfp2yjaqz +2025-06-18T14:07:37.381Z [DEBUG] user-service - Auth event: login_success - User: user_1036 - IP: 192.168.64.33 - RequestID: qhwwbvh092h +2025-06-18T14:07:37.481Z [TRACE] auth-service - Operation: payment_processed - Processing time: 642ms - RequestID: 6544ijunjqk +2025-06-18T14:07:37.581Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 120ms - Rows affected: 27 - RequestID: ixb6xu0wmb +2025-06-18T14:07:37.681Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1420ms - IP: 192.168.1.152 - User: user_1093 - RequestID: o6ccwov256i +2025-06-18T14:07:37.781Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 113ms - Rows affected: 69 - RequestID: lsds695qze +2025-06-18T14:07:37.881Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 843ms - RequestID: zxc9mpjjlwn +2025-06-18T14:07:37.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.31.117 - RequestID: skzg6x1j2ga +2025-06-18T14:07:38.081Z [DEBUG] user-service - Database SELECT on payments - Execution time: 153ms - Rows affected: 49 - RequestID: d1xfal2ebi6 +2025-06-18T14:07:38.181Z [DEBUG] payment-service - Auth event: password_change - User: user_1057 - IP: 192.168.174.114 - RequestID: 009dc1oojzgl2 +2025-06-18T14:07:38.281Z [INFO] auth-service - Database UPDATE on products - Execution time: 473ms - Rows affected: 41 - RequestID: pqcafh4obm +2025-06-18T14:07:38.381Z [TRACE] auth-service - PUT /api/v1/users - Status: 403 - Response time: 410ms - IP: 192.168.232.72 - User: user_1058 - RequestID: xknd6baut2e +2025-06-18T14:07:38.481Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1422ms - IP: 192.168.232.72 - User: user_1008 - RequestID: orwmxxuz8zq +2025-06-18T14:07:38.581Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 24ms - Rows affected: 39 - RequestID: k6vc7gulhml +2025-06-18T14:07:38.681Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 503 - Response time: 1944ms - IP: 192.168.10.184 - User: user_1022 - RequestID: ldwbr7ay44g +2025-06-18T14:07:38.781Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 442ms - Rows affected: 36 - RequestID: xeddq35po1b +2025-06-18T14:07:38.881Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 267ms - IP: 192.168.44.5 - User: user_1032 - RequestID: ka7g8nyfae +2025-06-18T14:07:38.981Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 502 - Response time: 1779ms - IP: 192.168.138.123 - User: user_1085 - RequestID: re5b1nk9nfd +2025-06-18T14:07:39.081Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 250ms - Rows affected: 8 - RequestID: 2jeo99oww93 +2025-06-18T14:07:39.181Z [INFO] payment-service - PATCH /api/v1/users - Status: 403 - Response time: 1704ms - IP: 192.168.97.87 - User: user_1046 - RequestID: 37tkdni3bdk +2025-06-18T14:07:39.281Z [DEBUG] user-service - Database INSERT on users - Execution time: 401ms - Rows affected: 90 - RequestID: 3g7aqoz4jyx +2025-06-18T14:07:39.381Z [INFO] order-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.240.169 - RequestID: ncq24p5xwye +2025-06-18T14:07:39.481Z [TRACE] auth-service - Auth event: login_success - User: user_1055 - IP: 192.168.181.225 - RequestID: bm6b21oxc8 +2025-06-18T14:07:39.581Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 503 - Response time: 1928ms - IP: 192.168.97.87 - User: user_1079 - RequestID: blikvnak4rh +2025-06-18T14:07:39.681Z [DEBUG] order-service - Operation: email_sent - Processing time: 607ms - RequestID: t3s0qb0cc6h +2025-06-18T14:07:39.781Z [INFO] notification-service - Auth event: logout - User: user_1038 - IP: 192.168.147.171 - RequestID: 841xhabfcqm +2025-06-18T14:07:39.881Z [INFO] auth-service - Auth event: password_change - User: user_1075 - IP: 192.168.10.184 - RequestID: 6d41pbt3dix +2025-06-18T14:07:39.981Z [TRACE] auth-service - Auth event: password_change - User: user_1009 - IP: 192.168.104.37 - RequestID: x13erfims7d +2025-06-18T14:07:40.081Z [TRACE] notification-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.167.32 - RequestID: k0l0g0t627 +2025-06-18T14:07:40.181Z [INFO] payment-service - Database UPDATE on orders - Execution time: 223ms - Rows affected: 64 - RequestID: 9tr2c777wpb +2025-06-18T14:07:40.281Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 748ms - RequestID: zn921zjoy7j +2025-06-18T14:07:40.381Z [INFO] inventory-service - Auth event: password_change - User: user_1019 - IP: 192.168.10.184 - RequestID: fgvd3k9v1ee +2025-06-18T14:07:40.481Z [TRACE] order-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.187.199 - RequestID: vaodmauttg8 +2025-06-18T14:07:40.581Z [INFO] user-service - Operation: email_sent - Processing time: 151ms - RequestID: l7uk2jzuabo +2025-06-18T14:07:40.681Z [INFO] user-service - Auth event: logout - User: user_1045 - IP: 192.168.68.128 - RequestID: ial1mjilih +2025-06-18T14:07:40.781Z [DEBUG] auth-service - GET /api/v1/orders - Status: 201 - Response time: 899ms - IP: 192.168.79.141 - User: user_1091 - RequestID: ali2p1mur5w +2025-06-18T14:07:40.881Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 145ms - RequestID: 6v9yx0gcj2r +2025-06-18T14:07:40.981Z [DEBUG] user-service - Auth event: password_change - User: user_1098 - IP: 192.168.158.144 - RequestID: lli0exymas8 +2025-06-18T14:07:41.081Z [DEBUG] user-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.31.117 - RequestID: hdqqpsvluoo +2025-06-18T14:07:41.181Z [DEBUG] order-service - Auth event: login_failed - User: user_1099 - IP: 192.168.158.144 - RequestID: uqiofel5sbm +2025-06-18T14:07:41.281Z [TRACE] notification-service - Operation: order_created - Processing time: 611ms - RequestID: n0w8rb75lii +2025-06-18T14:07:41.381Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 404 - Response time: 80ms - IP: 192.168.158.144 - User: user_1028 - RequestID: 6bwr6q8xv1e +2025-06-18T14:07:41.481Z [INFO] inventory-service - Auth event: login_success - User: user_1057 - IP: 192.168.229.123 - RequestID: sq0dhrb69u8 +2025-06-18T14:07:41.581Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 711ms - RequestID: x4gvq4f6stl +2025-06-18T14:07:41.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.144.38 - RequestID: 36zot1hwtnx +2025-06-18T14:07:41.781Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 201 - Response time: 1326ms - IP: 192.168.229.123 - User: user_1098 - RequestID: freavvd9wko +2025-06-18T14:07:41.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1064 - IP: 192.168.33.76 - RequestID: croa2zfbdnc +2025-06-18T14:07:41.981Z [TRACE] notification-service - GET /api/v1/orders - Status: 200 - Response time: 399ms - IP: 192.168.28.146 - User: user_1058 - RequestID: 9c7215c1jrs +2025-06-18T14:07:42.081Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 195ms - Rows affected: 36 - RequestID: dq01pil00r5 +2025-06-18T14:07:42.181Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 404 - Response time: 1065ms - IP: 192.168.235.117 - User: user_1003 - RequestID: s21fnpnj4f9 +2025-06-18T14:07:42.281Z [TRACE] payment-service - Auth event: logout - User: user_1023 - IP: 192.168.174.114 - RequestID: 9dfrfjkdsqm +2025-06-18T14:07:42.381Z [INFO] payment-service - Auth event: login_success - User: user_1053 - IP: 192.168.113.218 - RequestID: nibrmdkeyz +2025-06-18T14:07:42.481Z [INFO] order-service - Auth event: login_failed - User: user_1032 - IP: 192.168.159.94 - RequestID: 1abtu3xvuvg +2025-06-18T14:07:42.581Z [DEBUG] user-service - Auth event: logout - User: user_1068 - IP: 192.168.181.225 - RequestID: 3iydat7w3ce +2025-06-18T14:07:42.681Z [DEBUG] user-service - PATCH /api/v1/users - Status: 201 - Response time: 854ms - IP: 192.168.36.218 - User: user_1031 - RequestID: yr0fdygmgbf +2025-06-18T14:07:42.781Z [DEBUG] user-service - Auth event: password_change - User: user_1035 - IP: 192.168.79.116 - RequestID: pw8anpg2sng +2025-06-18T14:07:42.881Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 150ms - RequestID: e67my8mqd8e +2025-06-18T14:07:42.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.68.158 - RequestID: w02sr44w9tg +2025-06-18T14:07:43.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.144.38 - RequestID: lkb4asth6ae +2025-06-18T14:07:43.181Z [TRACE] order-service - Operation: cache_miss - Processing time: 95ms - RequestID: i9ntohe7myj +2025-06-18T14:07:43.281Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1226ms - IP: 192.168.64.33 - User: user_1024 - RequestID: 19wetpnw3na +2025-06-18T14:07:43.381Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 114ms - RequestID: kj5prlanebj +2025-06-18T14:07:43.481Z [TRACE] notification-service - Database UPDATE on products - Execution time: 45ms - Rows affected: 71 - RequestID: vy3vxv7bksg +2025-06-18T14:07:43.581Z [TRACE] auth-service - Database SELECT on orders - Execution time: 306ms - Rows affected: 76 - RequestID: id6h4w3erwf +2025-06-18T14:07:43.681Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 466ms - Rows affected: 10 - RequestID: kfbdx69n1in +2025-06-18T14:07:43.781Z [DEBUG] user-service - Operation: order_created - Processing time: 545ms - RequestID: ud715phii88 +2025-06-18T14:07:43.881Z [INFO] inventory-service - Operation: email_sent - Processing time: 539ms - RequestID: zcbk6subjpn +2025-06-18T14:07:43.981Z [INFO] auth-service - Auth event: password_change - User: user_1057 - IP: 192.168.181.225 - RequestID: h3oo705r09m +2025-06-18T14:07:44.081Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 419ms - RequestID: 3cvfd9yzhql +2025-06-18T14:07:44.181Z [INFO] payment-service - Auth event: logout - User: user_1077 - IP: 192.168.30.79 - RequestID: crulzg6wgt5 +2025-06-18T14:07:44.281Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1266ms - IP: 192.168.32.38 - User: user_1083 - RequestID: 6odxql78vfr +2025-06-18T14:07:44.381Z [DEBUG] inventory-service - Operation: order_created - Processing time: 980ms - RequestID: hl1j82k5r1 +2025-06-18T14:07:44.481Z [DEBUG] user-service - Auth event: password_change - User: user_1068 - IP: 192.168.100.240 - RequestID: 34ut113zkov +2025-06-18T14:07:44.581Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1305ms - IP: 192.168.194.41 - User: user_1013 - RequestID: sjar5gu4zjk +2025-06-18T14:07:44.681Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 387ms - Rows affected: 11 - RequestID: 6moepbn0doj +2025-06-18T14:07:44.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 90ms - RequestID: 4c3m2ls43xv +2025-06-18T14:07:44.881Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1992ms - IP: 192.168.68.128 - User: user_1041 - RequestID: 2tw0pk994wk +2025-06-18T14:07:44.981Z [INFO] order-service - Database DELETE on orders - Execution time: 222ms - Rows affected: 94 - RequestID: fs7fd0qe4cf +2025-06-18T14:07:45.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 537ms - RequestID: tlyg6xnfmr +2025-06-18T14:07:45.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1002 - IP: 192.168.240.169 - RequestID: e1nlo372yk +2025-06-18T14:07:45.281Z [INFO] auth-service - Auth event: login_success - User: user_1092 - IP: 192.168.181.225 - RequestID: z9wemu4h0n +2025-06-18T14:07:45.381Z [TRACE] notification-service - Operation: order_created - Processing time: 277ms - RequestID: rwoqjcjq21 +2025-06-18T14:07:45.481Z [INFO] payment-service - PUT /api/v1/orders - Status: 500 - Response time: 33ms - IP: 192.168.68.158 - User: user_1073 - RequestID: nvqb2oyj59 +2025-06-18T14:07:45.581Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 749ms - IP: 192.168.187.199 - User: user_1091 - RequestID: oq0l0k5oa3 +2025-06-18T14:07:45.681Z [INFO] notification-service - Database UPDATE on payments - Execution time: 242ms - Rows affected: 46 - RequestID: jj4h2kek1u9 +2025-06-18T14:07:45.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.240.169 - RequestID: rdjc6djw4sq +2025-06-18T14:07:45.881Z [INFO] user-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.100.240 - RequestID: v1u9clzo3kd +2025-06-18T14:07:45.981Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 626ms - RequestID: tln4b3evaxd +2025-06-18T14:07:46.081Z [TRACE] user-service - Database DELETE on users - Execution time: 394ms - Rows affected: 34 - RequestID: zjo3erawt1 +2025-06-18T14:07:46.181Z [TRACE] order-service - Operation: cache_miss - Processing time: 868ms - RequestID: an214z8z5j9 +2025-06-18T14:07:46.281Z [INFO] payment-service - PATCH /api/v1/orders - Status: 502 - Response time: 81ms - IP: 192.168.187.199 - User: user_1056 - RequestID: fhd4brbwqb +2025-06-18T14:07:46.381Z [TRACE] user-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.242.165 - RequestID: z0scytm62y8 +2025-06-18T14:07:46.481Z [INFO] user-service - POST /api/v1/auth/login - Status: 404 - Response time: 534ms - IP: 192.168.31.117 - User: user_1007 - RequestID: jt0zsv07oxj +2025-06-18T14:07:46.581Z [INFO] notification-service - Auth event: logout - User: user_1064 - IP: 192.168.196.226 - RequestID: xz5bjlhokjr +2025-06-18T14:07:46.681Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1005ms - IP: 192.168.85.229 - User: user_1080 - RequestID: p889pbisom8 +2025-06-18T14:07:46.781Z [INFO] auth-service - Database UPDATE on payments - Execution time: 63ms - Rows affected: 46 - RequestID: kuip6brv64 +2025-06-18T14:07:46.881Z [DEBUG] user-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.141.100 - RequestID: quxw789gm3b +2025-06-18T14:07:46.981Z [INFO] inventory-service - Operation: email_sent - Processing time: 442ms - RequestID: qms46709ao +2025-06-18T14:07:47.081Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 502 - Response time: 1904ms - IP: 192.168.30.79 - User: user_1007 - RequestID: cjp0q0vioq +2025-06-18T14:07:47.181Z [DEBUG] order-service - Database INSERT on payments - Execution time: 135ms - Rows affected: 2 - RequestID: v9pu4i0bwqr +2025-06-18T14:07:47.281Z [INFO] user-service - Operation: notification_queued - Processing time: 613ms - RequestID: ygkhh8bb5d +2025-06-18T14:07:47.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1063 - IP: 192.168.229.123 - RequestID: g4ssg8yxhkt +2025-06-18T14:07:47.481Z [INFO] user-service - GET /api/v1/inventory - Status: 401 - Response time: 1263ms - IP: 192.168.247.134 - User: user_1003 - RequestID: fos70lt9ci5 +2025-06-18T14:07:47.581Z [INFO] order-service - POST /api/v1/users - Status: 500 - Response time: 1495ms - IP: 192.168.13.72 - User: user_1064 - RequestID: 8n9jjj5y7za +2025-06-18T14:07:47.681Z [TRACE] payment-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.187.199 - RequestID: s9n40c0gh6 +2025-06-18T14:07:47.781Z [DEBUG] order-service - POST /api/v1/users - Status: 401 - Response time: 1272ms - IP: 192.168.85.229 - User: user_1018 - RequestID: fmybc6uwxbr +2025-06-18T14:07:47.881Z [DEBUG] order-service - Database SELECT on orders - Execution time: 254ms - Rows affected: 67 - RequestID: 6p4hpb4fsvl +2025-06-18T14:07:47.981Z [TRACE] payment-service - DELETE /api/v1/users - Status: 400 - Response time: 233ms - IP: 192.168.229.123 - User: user_1057 - RequestID: aw78n4bamlj +2025-06-18T14:07:48.081Z [INFO] notification-service - Auth event: login_failed - User: user_1088 - IP: 192.168.133.7 - RequestID: tx2fes7vxa +2025-06-18T14:07:48.181Z [DEBUG] notification-service - POST /api/v1/payments - Status: 500 - Response time: 1759ms - IP: 192.168.32.38 - User: user_1009 - RequestID: 7drpclr8xu5 +2025-06-18T14:07:48.281Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 400 - Response time: 1904ms - IP: 192.168.141.100 - User: user_1014 - RequestID: v6rihqnnask +2025-06-18T14:07:48.381Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 187ms - Rows affected: 97 - RequestID: fncgp7u0nbt +2025-06-18T14:07:48.481Z [TRACE] user-service - Operation: inventory_updated - Processing time: 1009ms - RequestID: 3elqlosyjo5 +2025-06-18T14:07:48.581Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 422ms - Rows affected: 26 - RequestID: oznnem8zl2a +2025-06-18T14:07:48.681Z [INFO] payment-service - Database DELETE on products - Execution time: 474ms - Rows affected: 69 - RequestID: ijayz9fxq3i +2025-06-18T14:07:48.781Z [TRACE] order-service - Auth event: password_change - User: user_1033 - IP: 192.168.189.103 - RequestID: gc70l09o4b +2025-06-18T14:07:48.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.79.116 - RequestID: gotb6838s9c +2025-06-18T14:07:48.981Z [INFO] order-service - Database SELECT on products - Execution time: 255ms - Rows affected: 90 - RequestID: 3vin1n9z542 +2025-06-18T14:07:49.081Z [INFO] order-service - Operation: email_sent - Processing time: 258ms - RequestID: zxh24slg4fd +2025-06-18T14:07:49.181Z [INFO] notification-service - Operation: inventory_updated - Processing time: 817ms - RequestID: 76wj7tik56j +2025-06-18T14:07:49.281Z [INFO] user-service - Operation: inventory_updated - Processing time: 211ms - RequestID: 25x9dz78pkp +2025-06-18T14:07:49.381Z [TRACE] user-service - Operation: order_created - Processing time: 894ms - RequestID: a3f4588gyn6 +2025-06-18T14:07:49.481Z [TRACE] payment-service - Operation: notification_queued - Processing time: 362ms - RequestID: x9qznotkcum +2025-06-18T14:07:49.581Z [INFO] order-service - Database SELECT on sessions - Execution time: 306ms - Rows affected: 60 - RequestID: 1x7mx9wn4dt +2025-06-18T14:07:49.681Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 516ms - RequestID: ade9c8ce4np +2025-06-18T14:07:49.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1052 - IP: 192.168.227.77 - RequestID: rurbfix5au +2025-06-18T14:07:49.881Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.32.38 - RequestID: xr4b16l3sj +2025-06-18T14:07:49.981Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 715ms - RequestID: xxh07dyn2ui +2025-06-18T14:07:50.081Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 124ms - Rows affected: 58 - RequestID: 4fv2f87a333 +2025-06-18T14:07:50.181Z [TRACE] auth-service - Auth event: password_change - User: user_1023 - IP: 192.168.158.144 - RequestID: b1wjdf6tqiu +2025-06-18T14:07:50.281Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 194ms - Rows affected: 25 - RequestID: 64y8am02cn +2025-06-18T14:07:50.381Z [DEBUG] order-service - Database DELETE on orders - Execution time: 332ms - Rows affected: 60 - RequestID: wq5awv07mtf +2025-06-18T14:07:50.481Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1232ms - IP: 192.168.1.152 - User: user_1062 - RequestID: 7975ocqlq3v +2025-06-18T14:07:50.581Z [DEBUG] user-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.181.225 - RequestID: ld7a4z8ham7 +2025-06-18T14:07:50.681Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 40ms - Rows affected: 23 - RequestID: 15tx5uynfg2 +2025-06-18T14:07:50.781Z [INFO] order-service - Auth event: login_failed - User: user_1008 - IP: 192.168.53.133 - RequestID: 72m544elze3 +2025-06-18T14:07:50.881Z [DEBUG] inventory-service - GET /api/v1/users - Status: 200 - Response time: 1907ms - IP: 192.168.1.152 - User: user_1086 - RequestID: v4kgrby7c2e +2025-06-18T14:07:50.981Z [INFO] order-service - Database INSERT on payments - Execution time: 195ms - Rows affected: 92 - RequestID: vkiqx11g7us +2025-06-18T14:07:51.081Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 503 - Response time: 212ms - IP: 192.168.11.60 - User: user_1084 - RequestID: pag8hwdbb3g +2025-06-18T14:07:51.181Z [DEBUG] user-service - GET /api/v1/users - Status: 404 - Response time: 678ms - IP: 192.168.147.171 - User: user_1047 - RequestID: q1np6uace2 +2025-06-18T14:07:51.281Z [INFO] notification-service - Database DELETE on payments - Execution time: 79ms - Rows affected: 84 - RequestID: tvcva6quvik +2025-06-18T14:07:51.381Z [TRACE] notification-service - PUT /api/v1/users - Status: 401 - Response time: 1420ms - IP: 192.168.187.199 - User: user_1007 - RequestID: dlfxij4rshd +2025-06-18T14:07:51.481Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 59ms - RequestID: lb5uwsd4c8j +2025-06-18T14:07:51.581Z [DEBUG] inventory-service - Auth event: login_success - User: user_1082 - IP: 192.168.11.60 - RequestID: ef65s9fxpf +2025-06-18T14:07:51.681Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 401 - Response time: 1229ms - IP: 192.168.170.215 - User: user_1080 - RequestID: npgcbas35b +2025-06-18T14:07:51.781Z [TRACE] order-service - Operation: webhook_sent - Processing time: 444ms - RequestID: xj5ctrz9hv7 +2025-06-18T14:07:51.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 454ms - RequestID: 6j98mfoo3lb +2025-06-18T14:07:51.981Z [INFO] notification-service - Database INSERT on payments - Execution time: 287ms - Rows affected: 41 - RequestID: s8iswvii0c +2025-06-18T14:07:52.081Z [DEBUG] order-service - Operation: cache_hit - Processing time: 507ms - RequestID: yagt29xjpd +2025-06-18T14:07:52.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.11.60 - RequestID: 7ekfh8wxp8 +2025-06-18T14:07:52.281Z [TRACE] auth-service - Database DELETE on orders - Execution time: 77ms - Rows affected: 92 - RequestID: 8ggcsoi8ab8 +2025-06-18T14:07:52.381Z [TRACE] user-service - Database SELECT on sessions - Execution time: 353ms - Rows affected: 32 - RequestID: fwksbqyc28 +2025-06-18T14:07:52.481Z [DEBUG] order-service - Auth event: password_change - User: user_1041 - IP: 192.168.189.103 - RequestID: 0duyfyz8687 +2025-06-18T14:07:52.581Z [INFO] inventory-service - Operation: cache_miss - Processing time: 678ms - RequestID: 2k37lifnl9g +2025-06-18T14:07:52.681Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 934ms - RequestID: b6e17e7egeq +2025-06-18T14:07:52.781Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 144ms - IP: 192.168.85.229 - User: user_1076 - RequestID: hjrr4g8rq7r +2025-06-18T14:07:52.881Z [INFO] order-service - DELETE /api/v1/users - Status: 400 - Response time: 594ms - IP: 192.168.113.218 - User: user_1050 - RequestID: kof871gr4o +2025-06-18T14:07:52.981Z [INFO] auth-service - Database DELETE on users - Execution time: 163ms - Rows affected: 53 - RequestID: 81b5i580ecu +2025-06-18T14:07:53.081Z [DEBUG] user-service - Database SELECT on products - Execution time: 47ms - Rows affected: 22 - RequestID: 9j4jxoms5rv +2025-06-18T14:07:53.181Z [INFO] auth-service - GET /api/v1/inventory - Status: 500 - Response time: 1972ms - IP: 192.168.97.87 - User: user_1048 - RequestID: t4iu822tdo8 +2025-06-18T14:07:53.281Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 939ms - RequestID: 8t9b3cp4139 +2025-06-18T14:07:53.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1087 - IP: 192.168.133.7 - RequestID: c244na1ic5a +2025-06-18T14:07:53.481Z [INFO] notification-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.64.33 - RequestID: oifgyt0fym +2025-06-18T14:07:53.581Z [INFO] user-service - DELETE /api/v1/orders - Status: 503 - Response time: 64ms - IP: 192.168.187.199 - User: user_1045 - RequestID: n6qaga6xcjb +2025-06-18T14:07:53.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 53ms - RequestID: dik870sytne +2025-06-18T14:07:53.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 581ms - RequestID: egn29gl1hqq +2025-06-18T14:07:53.881Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1549ms - IP: 192.168.30.79 - User: user_1096 - RequestID: 7sj180h3l15 +2025-06-18T14:07:53.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1041 - IP: 192.168.68.128 - RequestID: gezi1m9new7 +2025-06-18T14:07:54.081Z [INFO] user-service - Database DELETE on sessions - Execution time: 287ms - Rows affected: 76 - RequestID: i5et2ecfcad +2025-06-18T14:07:54.181Z [INFO] payment-service - Auth event: login_failed - User: user_1073 - IP: 192.168.247.134 - RequestID: adzk6ufdh7e +2025-06-18T14:07:54.281Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 662ms - RequestID: pzdzjbmdk5 +2025-06-18T14:07:54.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1021 - IP: 192.168.97.87 - RequestID: nehvu6emqef +2025-06-18T14:07:54.481Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1367ms - IP: 192.168.158.144 - User: user_1069 - RequestID: c1ri7rvfea5 +2025-06-18T14:07:54.581Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 403 - Response time: 1354ms - IP: 192.168.147.171 - User: user_1075 - RequestID: s3ngv2wy6tm +2025-06-18T14:07:54.681Z [TRACE] order-service - Database SELECT on sessions - Execution time: 150ms - Rows affected: 63 - RequestID: q0qxsi2vmsi +2025-06-18T14:07:54.781Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 205ms - RequestID: uran4i6af8 +2025-06-18T14:07:54.881Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 60ms - Rows affected: 69 - RequestID: hpidsv6p0g +2025-06-18T14:07:54.981Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 266ms - Rows affected: 38 - RequestID: p28bnre0ip +2025-06-18T14:07:55.081Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 387ms - Rows affected: 50 - RequestID: 30n843gl6oq +2025-06-18T14:07:55.181Z [INFO] inventory-service - POST /api/v1/orders - Status: 201 - Response time: 962ms - IP: 192.168.85.229 - User: user_1008 - RequestID: fbb0k72p2e +2025-06-18T14:07:55.281Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 267ms - Rows affected: 2 - RequestID: 2wj2ar4w9md +2025-06-18T14:07:55.381Z [TRACE] order-service - Auth event: login_failed - User: user_1033 - IP: 192.168.100.240 - RequestID: jqaeeyur9la +2025-06-18T14:07:55.481Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1943ms - IP: 192.168.13.72 - User: user_1020 - RequestID: 3vud7yqvwvq +2025-06-18T14:07:55.581Z [INFO] notification-service - Database DELETE on sessions - Execution time: 423ms - Rows affected: 6 - RequestID: uzxmvo71nmq +2025-06-18T14:07:55.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 1034ms - RequestID: r265bvkmwj +2025-06-18T14:07:55.781Z [INFO] notification-service - Database SELECT on sessions - Execution time: 337ms - Rows affected: 44 - RequestID: 4iirba0izh5 +2025-06-18T14:07:55.881Z [DEBUG] auth-service - Auth event: logout - User: user_1001 - IP: 192.168.242.165 - RequestID: huvmyh8hndq +2025-06-18T14:07:55.981Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 272ms - Rows affected: 21 - RequestID: ilqou7sh0qg +2025-06-18T14:07:56.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1008 - IP: 192.168.31.117 - RequestID: xvpr1llvhz +2025-06-18T14:07:56.181Z [INFO] inventory-service - Database UPDATE on users - Execution time: 149ms - Rows affected: 41 - RequestID: yqqdb439j7g +2025-06-18T14:07:56.281Z [INFO] notification-service - Operation: order_created - Processing time: 296ms - RequestID: 26zpm91x61c +2025-06-18T14:07:56.381Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 401 - Response time: 1106ms - IP: 192.168.158.144 - User: user_1044 - RequestID: wauvmzwz3ie +2025-06-18T14:07:56.481Z [DEBUG] payment-service - Auth event: logout - User: user_1029 - IP: 192.168.247.134 - RequestID: 9d3isqe0s9 +2025-06-18T14:07:56.581Z [INFO] user-service - Database UPDATE on users - Execution time: 419ms - Rows affected: 28 - RequestID: t3uc73hjdhk +2025-06-18T14:07:56.681Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 441ms - Rows affected: 74 - RequestID: tw400eg9vn +2025-06-18T14:07:56.781Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 180ms - Rows affected: 96 - RequestID: hs93w9pjmzp +2025-06-18T14:07:56.881Z [TRACE] order-service - Database SELECT on sessions - Execution time: 431ms - Rows affected: 62 - RequestID: e2qv0w25m8u +2025-06-18T14:07:56.981Z [TRACE] auth-service - Database INSERT on products - Execution time: 306ms - Rows affected: 44 - RequestID: f83kpsywgg +2025-06-18T14:07:57.081Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 32ms - Rows affected: 6 - RequestID: omi7soxi927 +2025-06-18T14:07:57.181Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 76ms - Rows affected: 42 - RequestID: as4t6fxl428 +2025-06-18T14:07:57.281Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 404 - Response time: 279ms - IP: 192.168.229.123 - User: user_1052 - RequestID: cvxcwb3my6u +2025-06-18T14:07:57.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1040 - IP: 192.168.46.63 - RequestID: efqo6wxqiuq +2025-06-18T14:07:57.481Z [INFO] order-service - Auth event: logout - User: user_1065 - IP: 192.168.189.103 - RequestID: h3gbf8sooe9 +2025-06-18T14:07:57.581Z [INFO] payment-service - GET /api/v1/payments - Status: 401 - Response time: 685ms - IP: 192.168.211.72 - User: user_1051 - RequestID: j3ir4jzspuj +2025-06-18T14:07:57.681Z [DEBUG] order-service - POST /api/v1/payments - Status: 401 - Response time: 679ms - IP: 192.168.13.72 - User: user_1075 - RequestID: ff8nvxs050w +2025-06-18T14:07:57.781Z [DEBUG] inventory-service - Auth event: logout - User: user_1022 - IP: 192.168.10.184 - RequestID: 8a953i5xcdm +2025-06-18T14:07:57.881Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 531ms - IP: 192.168.138.123 - User: user_1014 - RequestID: z6aach759v +2025-06-18T14:07:57.981Z [INFO] notification-service - Database DELETE on orders - Execution time: 261ms - Rows affected: 64 - RequestID: x38kbuiow19 +2025-06-18T14:07:58.081Z [INFO] auth-service - Database UPDATE on orders - Execution time: 370ms - Rows affected: 52 - RequestID: upr4fd3oim +2025-06-18T14:07:58.181Z [INFO] notification-service - Operation: payment_processed - Processing time: 121ms - RequestID: y09ebf8sz1 +2025-06-18T14:07:58.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.227.233 - RequestID: p5ps4t5uso +2025-06-18T14:07:58.381Z [DEBUG] user-service - Operation: email_sent - Processing time: 499ms - RequestID: h0p1bxhiqo5 +2025-06-18T14:07:58.481Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1774ms - IP: 192.168.53.133 - User: user_1088 - RequestID: sukd5n9do7 +2025-06-18T14:07:58.581Z [TRACE] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 1104ms - IP: 192.168.113.218 - User: user_1067 - RequestID: msarqvl4qkn +2025-06-18T14:07:58.681Z [INFO] payment-service - Auth event: login_success - User: user_1096 - IP: 192.168.68.158 - RequestID: q0xwq3818dg +2025-06-18T14:07:58.781Z [INFO] notification-service - POST /api/v1/inventory - Status: 404 - Response time: 385ms - IP: 192.168.30.79 - User: user_1008 - RequestID: 4obk0l4zrrm +2025-06-18T14:07:58.881Z [INFO] auth-service - Database UPDATE on orders - Execution time: 98ms - Rows affected: 11 - RequestID: fcg8tg1003 +2025-06-18T14:07:58.981Z [INFO] auth-service - Operation: payment_processed - Processing time: 856ms - RequestID: 4944rn734fs +2025-06-18T14:07:59.081Z [TRACE] notification-service - Operation: order_created - Processing time: 846ms - RequestID: 56inn4u89an +2025-06-18T14:07:59.181Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 645ms - RequestID: i1e8e4y72jl +2025-06-18T14:07:59.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1007 - IP: 192.168.232.72 - RequestID: fqen7pajdwv +2025-06-18T14:07:59.381Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 344ms - Rows affected: 4 - RequestID: 0871sxz8tblp +2025-06-18T14:07:59.481Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1325ms - IP: 192.168.13.72 - User: user_1043 - RequestID: c5j7i6trx1 +2025-06-18T14:07:59.581Z [TRACE] user-service - Auth event: login_failed - User: user_1022 - IP: 192.168.240.169 - RequestID: f0evghv6lu +2025-06-18T14:07:59.681Z [INFO] payment-service - Database DELETE on users - Execution time: 219ms - Rows affected: 44 - RequestID: 2kf9sla4esn +2025-06-18T14:07:59.781Z [TRACE] inventory-service - Auth event: login_failed - User: user_1044 - IP: 192.168.1.152 - RequestID: 6mp9d8jkqtp +2025-06-18T14:07:59.881Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 699ms - RequestID: ud8cy4xvuad +2025-06-18T14:07:59.981Z [TRACE] inventory-service - Auth event: logout - User: user_1012 - IP: 192.168.227.77 - RequestID: e8du6qf4jlo +2025-06-18T14:08:00.081Z [INFO] auth-service - Database SELECT on users - Execution time: 460ms - Rows affected: 52 - RequestID: tc7ivq3sgxk +2025-06-18T14:08:00.181Z [INFO] user-service - DELETE /api/v1/payments - Status: 502 - Response time: 227ms - IP: 192.168.14.77 - User: user_1016 - RequestID: 4kh1aj6mnti +2025-06-18T14:08:00.281Z [INFO] order-service - GET /api/v1/auth/login - Status: 400 - Response time: 43ms - IP: 192.168.32.38 - User: user_1081 - RequestID: v9xs2s48zw +2025-06-18T14:08:00.381Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 500 - Response time: 911ms - IP: 192.168.227.233 - User: user_1044 - RequestID: t79ziz3atqg +2025-06-18T14:08:00.481Z [INFO] inventory-service - GET /api/v1/payments - Status: 400 - Response time: 268ms - IP: 192.168.36.218 - User: user_1010 - RequestID: nfbgr1w8z2o +2025-06-18T14:08:00.581Z [TRACE] user-service - Operation: payment_processed - Processing time: 76ms - RequestID: s86i94efvzg +2025-06-18T14:08:00.681Z [TRACE] auth-service - Auth event: login_failed - User: user_1037 - IP: 192.168.144.38 - RequestID: l04sb0vccmn +2025-06-18T14:08:00.781Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 213ms - Rows affected: 4 - RequestID: 0c7pliu4ppcc +2025-06-18T14:08:00.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1058 - IP: 192.168.247.134 - RequestID: xztmxf2q0to +2025-06-18T14:08:00.981Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 401 - Response time: 359ms - IP: 192.168.31.117 - User: user_1011 - RequestID: qe3dsbfo2z +2025-06-18T14:08:01.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.68.158 - RequestID: pzbfu0jy9z +2025-06-18T14:08:01.181Z [TRACE] user-service - GET /api/v1/users - Status: 201 - Response time: 317ms - IP: 192.168.36.218 - User: user_1060 - RequestID: eggrx1ev9uk +2025-06-18T14:08:01.281Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 215ms - RequestID: butvxlp8mm +2025-06-18T14:08:01.381Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 403 - Response time: 851ms - IP: 192.168.32.38 - User: user_1072 - RequestID: lt4sonzfg4s +2025-06-18T14:08:01.481Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 129ms - IP: 192.168.14.77 - User: user_1097 - RequestID: xlg9z52qcl +2025-06-18T14:08:01.581Z [INFO] auth-service - Database SELECT on sessions - Execution time: 248ms - Rows affected: 33 - RequestID: hsqb7fqnpdh +2025-06-18T14:08:01.681Z [INFO] auth-service - GET /api/v1/users - Status: 200 - Response time: 1909ms - IP: 192.168.247.134 - User: user_1030 - RequestID: 38j9d5hu2yf +2025-06-18T14:08:01.781Z [INFO] auth-service - GET /api/v1/users - Status: 201 - Response time: 744ms - IP: 192.168.33.76 - User: user_1024 - RequestID: 5lu8fyzslwk +2025-06-18T14:08:01.881Z [INFO] notification-service - GET /api/v1/payments - Status: 403 - Response time: 1810ms - IP: 192.168.189.103 - User: user_1033 - RequestID: wux8xrhveqj +2025-06-18T14:08:01.981Z [TRACE] user-service - Auth event: logout - User: user_1054 - IP: 192.168.13.72 - RequestID: pamxcwfpjjk +2025-06-18T14:08:02.081Z [TRACE] order-service - Auth event: password_change - User: user_1013 - IP: 192.168.32.38 - RequestID: xnvy61p313o +2025-06-18T14:08:02.181Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 196ms - Rows affected: 84 - RequestID: fxg0f278ic +2025-06-18T14:08:02.281Z [DEBUG] order-service - Auth event: password_change - User: user_1041 - IP: 192.168.196.226 - RequestID: xmkrosqszk9 +2025-06-18T14:08:02.381Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 721ms - RequestID: 9b1v54fp99p +2025-06-18T14:08:02.481Z [TRACE] payment-service - PUT /api/v1/orders - Status: 400 - Response time: 739ms - IP: 192.168.242.165 - User: user_1036 - RequestID: ai226x3zpoq +2025-06-18T14:08:02.581Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 470ms - IP: 192.168.36.218 - User: user_1014 - RequestID: 9u0n4ko4zh9 +2025-06-18T14:08:02.681Z [DEBUG] user-service - Auth event: password_change - User: user_1035 - IP: 192.168.68.158 - RequestID: 0p3s6uhy8ado +2025-06-18T14:08:02.781Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 176ms - Rows affected: 40 - RequestID: upzg71eapz +2025-06-18T14:08:02.881Z [INFO] order-service - Database UPDATE on orders - Execution time: 427ms - Rows affected: 80 - RequestID: dust9kk57u8 +2025-06-18T14:08:02.981Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1261ms - IP: 192.168.28.146 - User: user_1048 - RequestID: sof4begzv8a +2025-06-18T14:08:03.081Z [INFO] user-service - Database INSERT on payments - Execution time: 226ms - Rows affected: 45 - RequestID: x8otr6u09e +2025-06-18T14:08:03.181Z [INFO] notification-service - Operation: cache_miss - Processing time: 955ms - RequestID: m2p2oupkx0j +2025-06-18T14:08:03.281Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 500 - Response time: 838ms - IP: 192.168.174.114 - User: user_1063 - RequestID: rgsoanc8vzq +2025-06-18T14:08:03.381Z [DEBUG] order-service - Operation: cache_miss - Processing time: 912ms - RequestID: xx34umhzox +2025-06-18T14:08:03.481Z [TRACE] user-service - Operation: webhook_sent - Processing time: 866ms - RequestID: amhhek9qdn +2025-06-18T14:08:03.581Z [INFO] payment-service - Operation: email_sent - Processing time: 267ms - RequestID: y2um8kw97mg +2025-06-18T14:08:03.681Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 487ms - Rows affected: 29 - RequestID: hajyenqjxoa +2025-06-18T14:08:03.781Z [DEBUG] order-service - Database INSERT on orders - Execution time: 394ms - Rows affected: 40 - RequestID: wpe6io4fxem +2025-06-18T14:08:03.881Z [INFO] notification-service - Operation: email_sent - Processing time: 471ms - RequestID: grur0pi82p +2025-06-18T14:08:03.981Z [INFO] user-service - Database INSERT on products - Execution time: 12ms - Rows affected: 79 - RequestID: t9dowp0m2km +2025-06-18T14:08:04.081Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 288ms - Rows affected: 22 - RequestID: o1bhqrf220q +2025-06-18T14:08:04.181Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 383ms - Rows affected: 17 - RequestID: 3gr5fb7jeiq +2025-06-18T14:08:04.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1070 - IP: 192.168.211.72 - RequestID: 6l12ywpc4md +2025-06-18T14:08:04.381Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 403 - Response time: 1132ms - IP: 192.168.68.158 - User: user_1045 - RequestID: 0vr5chk0icm +2025-06-18T14:08:04.481Z [INFO] auth-service - Auth event: login_success - User: user_1088 - IP: 192.168.33.76 - RequestID: dd7uandfh9j +2025-06-18T14:08:04.581Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 908ms - RequestID: icy4sr162hs +2025-06-18T14:08:04.681Z [INFO] payment-service - POST /api/v1/orders - Status: 503 - Response time: 1800ms - IP: 192.168.28.146 - User: user_1003 - RequestID: ompbw4xb94b +2025-06-18T14:08:04.781Z [INFO] order-service - Auth event: login_success - User: user_1061 - IP: 192.168.81.206 - RequestID: lsc5ambtudg +2025-06-18T14:08:04.881Z [TRACE] user-service - DELETE /api/v1/users - Status: 403 - Response time: 959ms - IP: 192.168.181.225 - User: user_1048 - RequestID: 6bilphsrqcm +2025-06-18T14:08:04.981Z [TRACE] user-service - Auth event: password_change - User: user_1095 - IP: 192.168.147.171 - RequestID: 5h8g9vuol7m +2025-06-18T14:08:05.081Z [DEBUG] order-service - Database SELECT on products - Execution time: 259ms - Rows affected: 62 - RequestID: g7kurmotqm9 +2025-06-18T14:08:05.181Z [DEBUG] user-service - Operation: cache_hit - Processing time: 692ms - RequestID: txzsmmbodnl +2025-06-18T14:08:05.281Z [DEBUG] payment-service - POST /api/v1/orders - Status: 200 - Response time: 360ms - IP: 192.168.227.233 - User: user_1072 - RequestID: fvz6k6i8r17 +2025-06-18T14:08:05.381Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 474ms - RequestID: bnplylnco36 +2025-06-18T14:08:05.481Z [TRACE] notification-service - Auth event: login_success - User: user_1033 - IP: 192.168.181.225 - RequestID: r8n97o0zsmg +2025-06-18T14:08:05.581Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 337ms - RequestID: tzorekmquka +2025-06-18T14:08:05.681Z [INFO] user-service - Database INSERT on payments - Execution time: 299ms - Rows affected: 43 - RequestID: 78dsubch8xi +2025-06-18T14:08:05.781Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 512ms - RequestID: f6sbt5ncfe +2025-06-18T14:08:05.881Z [INFO] user-service - PATCH /api/v1/payments - Status: 403 - Response time: 1575ms - IP: 192.168.158.144 - User: user_1086 - RequestID: 85tgy0y7dr7 +2025-06-18T14:08:05.981Z [INFO] payment-service - Auth event: login_success - User: user_1089 - IP: 192.168.138.123 - RequestID: mlml2lsxg5 +2025-06-18T14:08:06.081Z [INFO] payment-service - Operation: email_sent - Processing time: 169ms - RequestID: 9s98jlwb7rs +2025-06-18T14:08:06.181Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 400 - Response time: 542ms - IP: 192.168.13.72 - User: user_1045 - RequestID: 0d46fh1ie5ke +2025-06-18T14:08:06.281Z [TRACE] auth-service - Operation: payment_processed - Processing time: 542ms - RequestID: pc6a5m3z78t +2025-06-18T14:08:06.381Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 290ms - RequestID: g0lbvdrva4 +2025-06-18T14:08:06.481Z [DEBUG] user-service - Database INSERT on users - Execution time: 275ms - Rows affected: 88 - RequestID: g26m3n6aqj +2025-06-18T14:08:06.581Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 403 - Response time: 283ms - IP: 192.168.10.184 - User: user_1031 - RequestID: sg4ojvzbbg +2025-06-18T14:08:06.681Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 146ms - Rows affected: 50 - RequestID: gyln310ekgo +2025-06-18T14:08:06.781Z [DEBUG] auth-service - Operation: order_created - Processing time: 670ms - RequestID: fe2tv5r755e +2025-06-18T14:08:06.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 254ms - RequestID: 20c97u82jv4 +2025-06-18T14:08:06.981Z [TRACE] auth-service - Operation: order_created - Processing time: 156ms - RequestID: ct7hjgi8i58 +2025-06-18T14:08:07.081Z [TRACE] inventory-service - Database DELETE on users - Execution time: 93ms - Rows affected: 4 - RequestID: wbypl9iu5ye +2025-06-18T14:08:07.181Z [TRACE] payment-service - Auth event: password_change - User: user_1005 - IP: 192.168.79.143 - RequestID: mba59smi11h +2025-06-18T14:08:07.281Z [INFO] inventory-service - DELETE /api/v1/users - Status: 503 - Response time: 164ms - IP: 192.168.46.63 - User: user_1007 - RequestID: zkedmy8jmm +2025-06-18T14:08:07.381Z [DEBUG] auth-service - GET /api/v1/users - Status: 201 - Response time: 158ms - IP: 192.168.240.169 - User: user_1019 - RequestID: 0phr5ql77hji +2025-06-18T14:08:07.481Z [INFO] notification-service - Database DELETE on orders - Execution time: 126ms - Rows affected: 94 - RequestID: emlto4l9zqq +2025-06-18T14:08:07.581Z [TRACE] auth-service - Auth event: logout - User: user_1084 - IP: 192.168.147.171 - RequestID: 8lyag8hlxhi +2025-06-18T14:08:07.681Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 205ms - Rows affected: 33 - RequestID: gp9u100ijpu +2025-06-18T14:08:07.781Z [TRACE] order-service - PATCH /api/v1/orders - Status: 503 - Response time: 1065ms - IP: 192.168.104.37 - User: user_1097 - RequestID: lfke04gtsyq +2025-06-18T14:08:07.881Z [INFO] notification-service - Operation: order_created - Processing time: 763ms - RequestID: ngrdw3965d +2025-06-18T14:08:07.981Z [DEBUG] user-service - DELETE /api/v1/users - Status: 401 - Response time: 1760ms - IP: 192.168.33.76 - User: user_1095 - RequestID: th7tmwp7z3h +2025-06-18T14:08:08.081Z [DEBUG] payment-service - Auth event: login_failed - User: user_1081 - IP: 192.168.64.33 - RequestID: tqvfamk7hoh +2025-06-18T14:08:08.181Z [INFO] payment-service - Database UPDATE on orders - Execution time: 386ms - Rows affected: 8 - RequestID: kqs76qu2t1m +2025-06-18T14:08:08.281Z [TRACE] notification-service - PUT /api/v1/payments - Status: 401 - Response time: 784ms - IP: 192.168.53.133 - User: user_1053 - RequestID: gkvs460g3i7 +2025-06-18T14:08:08.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.170.215 - RequestID: kvx1ck7iji8 +2025-06-18T14:08:08.481Z [TRACE] notification-service - Operation: order_created - Processing time: 281ms - RequestID: 98u5c4iu4f5 +2025-06-18T14:08:08.581Z [TRACE] user-service - POST /api/v1/payments - Status: 201 - Response time: 1432ms - IP: 192.168.79.143 - User: user_1092 - RequestID: hi7jipf75bh +2025-06-18T14:08:08.681Z [INFO] inventory-service - Auth event: password_change - User: user_1009 - IP: 192.168.158.144 - RequestID: mwj7b4lyre +2025-06-18T14:08:08.781Z [INFO] auth-service - Auth event: login_failed - User: user_1042 - IP: 192.168.138.123 - RequestID: fkxbemcxotg +2025-06-18T14:08:08.881Z [DEBUG] user-service - Database UPDATE on users - Execution time: 453ms - Rows affected: 66 - RequestID: ga7x55l345b +2025-06-18T14:08:08.981Z [TRACE] payment-service - Operation: order_created - Processing time: 824ms - RequestID: hi6aawe0zyw +2025-06-18T14:08:09.081Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1633ms - IP: 192.168.36.218 - User: user_1041 - RequestID: rbjpz2mlv +2025-06-18T14:08:09.181Z [INFO] order-service - PUT /api/v1/orders - Status: 400 - Response time: 910ms - IP: 192.168.104.37 - User: user_1029 - RequestID: huptubepezq +2025-06-18T14:08:09.281Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 405ms - Rows affected: 71 - RequestID: esamhpaxgkk +2025-06-18T14:08:09.381Z [INFO] order-service - DELETE /api/v1/inventory - Status: 400 - Response time: 148ms - IP: 192.168.28.146 - User: user_1068 - RequestID: 14zfgi22va6 +2025-06-18T14:08:09.481Z [TRACE] order-service - Database UPDATE on orders - Execution time: 425ms - Rows affected: 47 - RequestID: by31pban7 +2025-06-18T14:08:09.581Z [DEBUG] inventory-service - Auth event: logout - User: user_1010 - IP: 192.168.242.165 - RequestID: l4urtj3v9zg +2025-06-18T14:08:09.681Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1681ms - IP: 192.168.14.77 - User: user_1012 - RequestID: to0ob79utj +2025-06-18T14:08:09.781Z [INFO] user-service - GET /api/v1/orders - Status: 403 - Response time: 755ms - IP: 192.168.97.87 - User: user_1005 - RequestID: 124te32ut2xe +2025-06-18T14:08:09.881Z [DEBUG] user-service - Operation: order_created - Processing time: 961ms - RequestID: mvcuwo3f9bk +2025-06-18T14:08:09.981Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 405ms - Rows affected: 61 - RequestID: hadoi9ubnf +2025-06-18T14:08:10.081Z [INFO] notification-service - POST /api/v1/payments - Status: 400 - Response time: 1153ms - IP: 192.168.44.5 - User: user_1040 - RequestID: fslzazmgc0m +2025-06-18T14:08:10.181Z [TRACE] user-service - Operation: order_created - Processing time: 301ms - RequestID: bod9dobb4n +2025-06-18T14:08:10.281Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 290ms - Rows affected: 95 - RequestID: kb6en2wus8j +2025-06-18T14:08:10.381Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 635ms - IP: 192.168.100.240 - User: user_1058 - RequestID: ya2rh09p52 +2025-06-18T14:08:10.481Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 293ms - Rows affected: 71 - RequestID: obthm2mx9ql +2025-06-18T14:08:10.581Z [INFO] user-service - Database DELETE on users - Execution time: 97ms - Rows affected: 59 - RequestID: bk8b22dvm1o +2025-06-18T14:08:10.681Z [TRACE] user-service - Database INSERT on products - Execution time: 495ms - Rows affected: 47 - RequestID: ie6ejb8a0li +2025-06-18T14:08:10.781Z [DEBUG] order-service - Database SELECT on orders - Execution time: 326ms - Rows affected: 27 - RequestID: gck5efeb3y +2025-06-18T14:08:10.881Z [TRACE] order-service - GET /api/v1/inventory - Status: 503 - Response time: 1913ms - IP: 192.168.235.117 - User: user_1040 - RequestID: fpvvsul5nzd +2025-06-18T14:08:10.981Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 78ms - Rows affected: 32 - RequestID: xun0tqynyjj +2025-06-18T14:08:11.081Z [INFO] order-service - Database INSERT on payments - Execution time: 357ms - Rows affected: 84 - RequestID: j1iq471gf7o +2025-06-18T14:08:11.181Z [DEBUG] payment-service - Auth event: logout - User: user_1080 - IP: 192.168.13.72 - RequestID: jpqbyt92q9 +2025-06-18T14:08:11.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.46.63 - RequestID: w2foq5ev4b +2025-06-18T14:08:11.381Z [TRACE] order-service - Auth event: login_success - User: user_1017 - IP: 192.168.211.72 - RequestID: 1c81yeslzanh +2025-06-18T14:08:11.481Z [TRACE] user-service - Operation: cache_miss - Processing time: 660ms - RequestID: cufrai8fmyu +2025-06-18T14:08:11.581Z [INFO] user-service - Operation: inventory_updated - Processing time: 748ms - RequestID: yie97yg575o +2025-06-18T14:08:11.681Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 281ms - Rows affected: 95 - RequestID: qr865oai5kg +2025-06-18T14:08:11.781Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1236ms - IP: 192.168.31.117 - User: user_1002 - RequestID: 7g0ky2zh11s +2025-06-18T14:08:11.881Z [INFO] payment-service - Auth event: login_failed - User: user_1046 - IP: 192.168.14.77 - RequestID: kmpelvuvqog +2025-06-18T14:08:11.981Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 401ms - RequestID: 16qw1kk4lve +2025-06-18T14:08:12.081Z [INFO] order-service - Auth event: login_success - User: user_1099 - IP: 192.168.14.77 - RequestID: zqu3ol0ptij +2025-06-18T14:08:12.181Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 90ms - RequestID: ewn6b1z1b59 +2025-06-18T14:08:12.281Z [DEBUG] order-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.170.215 - RequestID: zw0el0ko6q9 +2025-06-18T14:08:12.381Z [DEBUG] user-service - Database UPDATE on users - Execution time: 258ms - Rows affected: 5 - RequestID: xtd755zw1a +2025-06-18T14:08:12.481Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 403 - Response time: 1167ms - IP: 192.168.196.226 - User: user_1077 - RequestID: 8hm9yjnh2mn +2025-06-18T14:08:12.581Z [INFO] order-service - Operation: order_created - Processing time: 327ms - RequestID: w8sxu3yjfha +2025-06-18T14:08:12.681Z [INFO] order-service - Auth event: login_failed - User: user_1030 - IP: 192.168.158.144 - RequestID: wklkwahon3o +2025-06-18T14:08:12.781Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1073ms - IP: 192.168.79.141 - User: user_1060 - RequestID: yz1sv5w563q +2025-06-18T14:08:12.881Z [INFO] payment-service - Database UPDATE on orders - Execution time: 370ms - Rows affected: 7 - RequestID: 6iowc98zijl +2025-06-18T14:08:12.981Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1281ms - IP: 192.168.211.72 - User: user_1031 - RequestID: 2az594543u +2025-06-18T14:08:13.081Z [INFO] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 68ms - IP: 192.168.31.117 - User: user_1073 - RequestID: p9hmmy6ovr +2025-06-18T14:08:13.181Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 1028ms - RequestID: ha69pfadump +2025-06-18T14:08:13.281Z [INFO] auth-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.174.114 - RequestID: 2uk50gc2658 +2025-06-18T14:08:13.381Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1754ms - IP: 192.168.13.72 - User: user_1011 - RequestID: rbao1t7pc6q +2025-06-18T14:08:13.481Z [TRACE] payment-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.31.117 - RequestID: ar9rgyofkqv +2025-06-18T14:08:13.581Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 352ms - Rows affected: 90 - RequestID: 4lk974koh8 +2025-06-18T14:08:13.681Z [TRACE] user-service - Auth event: login_success - User: user_1057 - IP: 192.168.240.169 - RequestID: ye5ahrkjagn +2025-06-18T14:08:13.781Z [TRACE] user-service - Operation: inventory_updated - Processing time: 951ms - RequestID: f13knlz1oih +2025-06-18T14:08:13.881Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 403 - Response time: 1891ms - IP: 192.168.227.233 - User: user_1089 - RequestID: olwotnn9kda +2025-06-18T14:08:13.981Z [INFO] order-service - Operation: email_sent - Processing time: 136ms - RequestID: 0frx0g92hvie +2025-06-18T14:08:14.081Z [INFO] auth-service - Operation: email_sent - Processing time: 83ms - RequestID: yql36468n9 +2025-06-18T14:08:14.181Z [DEBUG] order-service - Auth event: login_success - User: user_1079 - IP: 192.168.31.117 - RequestID: asq9qy7upbf +2025-06-18T14:08:14.281Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 400 - Response time: 1620ms - IP: 192.168.79.141 - User: user_1015 - RequestID: 5jz6pfjc7zr +2025-06-18T14:08:14.381Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 500 - Response time: 1429ms - IP: 192.168.64.33 - User: user_1091 - RequestID: mmrd1ww5qxa +2025-06-18T14:08:14.481Z [INFO] order-service - Database SELECT on products - Execution time: 440ms - Rows affected: 8 - RequestID: tkn39wws43k +2025-06-18T14:08:14.581Z [TRACE] payment-service - Database SELECT on users - Execution time: 293ms - Rows affected: 53 - RequestID: e3fea8bhcyq +2025-06-18T14:08:14.681Z [INFO] order-service - Auth event: login_failed - User: user_1084 - IP: 192.168.242.165 - RequestID: c4xi0ilajvf +2025-06-18T14:08:14.781Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 403 - Response time: 873ms - IP: 192.168.1.152 - User: user_1035 - RequestID: wwmb5tvy87 +2025-06-18T14:08:14.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1074 - IP: 192.168.159.94 - RequestID: ujq9h4wsb6 +2025-06-18T14:08:14.981Z [DEBUG] inventory-service - Auth event: login_success - User: user_1046 - IP: 192.168.79.141 - RequestID: de7rpsuqmx +2025-06-18T14:08:15.081Z [INFO] inventory-service - Database DELETE on payments - Execution time: 490ms - Rows affected: 39 - RequestID: rvrrb9nvoh +2025-06-18T14:08:15.181Z [TRACE] order-service - Operation: notification_queued - Processing time: 578ms - RequestID: sgel6gngase +2025-06-18T14:08:15.281Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 476ms - Rows affected: 54 - RequestID: t7stpya3fqh +2025-06-18T14:08:15.381Z [DEBUG] payment-service - Auth event: logout - User: user_1020 - IP: 192.168.28.146 - RequestID: g0pb2vw735b +2025-06-18T14:08:15.481Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1762ms - IP: 192.168.79.143 - User: user_1029 - RequestID: alof4853tl9 +2025-06-18T14:08:15.581Z [INFO] auth-service - Operation: cache_hit - Processing time: 609ms - RequestID: jxd2czoe2ya +2025-06-18T14:08:15.681Z [TRACE] auth-service - Database SELECT on orders - Execution time: 135ms - Rows affected: 1 - RequestID: ix9wnk31ker +2025-06-18T14:08:15.781Z [TRACE] auth-service - Auth event: logout - User: user_1009 - IP: 192.168.133.7 - RequestID: s5kqo2j1g3r +2025-06-18T14:08:15.881Z [DEBUG] notification-service - Auth event: login_failed - User: user_1097 - IP: 192.168.170.215 - RequestID: evazo3qfine +2025-06-18T14:08:15.981Z [DEBUG] payment-service - POST /api/v1/users - Status: 403 - Response time: 1723ms - IP: 192.168.79.116 - User: user_1006 - RequestID: cs7577mbxkv +2025-06-18T14:08:16.081Z [TRACE] notification-service - Database SELECT on users - Execution time: 55ms - Rows affected: 50 - RequestID: j3h87yamt5a +2025-06-18T14:08:16.181Z [TRACE] order-service - Auth event: login_failed - User: user_1080 - IP: 192.168.46.63 - RequestID: 73jx09q77uw +2025-06-18T14:08:16.281Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 271ms - Rows affected: 7 - RequestID: yzdfd3m0lq +2025-06-18T14:08:16.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 744ms - RequestID: 1ynj9i2ngs7 +2025-06-18T14:08:16.481Z [TRACE] inventory-service - Auth event: password_change - User: user_1035 - IP: 192.168.79.143 - RequestID: upzes2cebz +2025-06-18T14:08:16.581Z [TRACE] order-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.28.146 - RequestID: s8ep8cxiqq +2025-06-18T14:08:16.681Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 1011ms - IP: 192.168.97.87 - User: user_1047 - RequestID: ronidnqy3i +2025-06-18T14:08:16.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1003 - IP: 192.168.170.215 - RequestID: 8m3d03fx8zx +2025-06-18T14:08:16.881Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 872ms - RequestID: 9lpdbgjjdld +2025-06-18T14:08:16.981Z [INFO] order-service - Operation: cache_hit - Processing time: 689ms - RequestID: sgga55e72e +2025-06-18T14:08:17.081Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 526ms - RequestID: bvnpd3z91zo +2025-06-18T14:08:17.181Z [TRACE] auth-service - Auth event: logout - User: user_1004 - IP: 192.168.79.116 - RequestID: brz631lrk1r +2025-06-18T14:08:17.281Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 400 - Response time: 528ms - IP: 192.168.187.199 - User: user_1026 - RequestID: jlf0tembceg +2025-06-18T14:08:17.381Z [TRACE] notification-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.97.87 - RequestID: wz62vo7p05 +2025-06-18T14:08:17.481Z [INFO] user-service - Operation: payment_processed - Processing time: 874ms - RequestID: 7a0s1lftfhq +2025-06-18T14:08:17.581Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 500 - Response time: 1067ms - IP: 192.168.28.146 - User: user_1005 - RequestID: b40b0273jl +2025-06-18T14:08:17.681Z [INFO] order-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.211.72 - RequestID: la5cwmmza1g +2025-06-18T14:08:17.781Z [INFO] order-service - Auth event: logout - User: user_1085 - IP: 192.168.159.94 - RequestID: 2vtq4puasm6 +2025-06-18T14:08:17.881Z [TRACE] user-service - PUT /api/v1/inventory - Status: 201 - Response time: 1831ms - IP: 192.168.113.218 - User: user_1046 - RequestID: hukq02bunqh +2025-06-18T14:08:17.981Z [DEBUG] auth-service - Auth event: logout - User: user_1015 - IP: 192.168.174.114 - RequestID: hzs0wdu9d8f +2025-06-18T14:08:18.081Z [TRACE] user-service - Operation: email_sent - Processing time: 895ms - RequestID: qn78bk6p2z +2025-06-18T14:08:18.181Z [INFO] payment-service - Database UPDATE on products - Execution time: 1ms - Rows affected: 6 - RequestID: jb5bv4dczqq +2025-06-18T14:08:18.281Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1922ms - IP: 192.168.227.77 - User: user_1010 - RequestID: nqsd4aeartg +2025-06-18T14:08:18.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1035 - IP: 192.168.10.184 - RequestID: 1ke6notr2rlh +2025-06-18T14:08:18.481Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 466ms - Rows affected: 79 - RequestID: 7zybloqwx0p +2025-06-18T14:08:18.581Z [INFO] inventory-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.232.72 - RequestID: 8ohm2hlcv4q +2025-06-18T14:08:18.681Z [TRACE] order-service - Database DELETE on products - Execution time: 179ms - Rows affected: 25 - RequestID: 3gbm64ivxls +2025-06-18T14:08:18.781Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 480ms - Rows affected: 22 - RequestID: 6s7oadg1v8w +2025-06-18T14:08:18.881Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1633ms - IP: 192.168.13.72 - User: user_1096 - RequestID: uyd8fm5294 +2025-06-18T14:08:18.981Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 175ms - IP: 192.168.46.63 - User: user_1039 - RequestID: 1r605t1n4tb +2025-06-18T14:08:19.081Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 366ms - Rows affected: 18 - RequestID: gqmybd6qduo +2025-06-18T14:08:19.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.68.128 - RequestID: lj9zuwoib7n +2025-06-18T14:08:19.281Z [INFO] inventory-service - Operation: notification_queued - Processing time: 467ms - RequestID: tip883fp549 +2025-06-18T14:08:19.381Z [INFO] payment-service - Auth event: logout - User: user_1059 - IP: 192.168.144.38 - RequestID: mddumvm8pfe +2025-06-18T14:08:19.481Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 279ms - Rows affected: 81 - RequestID: u06nix0xdub +2025-06-18T14:08:19.581Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 63ms - Rows affected: 6 - RequestID: z9nn6lon4ln +2025-06-18T14:08:19.681Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 341ms - RequestID: goj0fymbybv +2025-06-18T14:08:19.781Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1761ms - IP: 192.168.158.144 - User: user_1030 - RequestID: m4qazc42d8k +2025-06-18T14:08:19.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1074 - IP: 192.168.13.72 - RequestID: dlws8f7i62o +2025-06-18T14:08:19.981Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 186ms - RequestID: qgr2pnca9ed +2025-06-18T14:08:20.081Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 99ms - Rows affected: 51 - RequestID: e99aktlq1ql +2025-06-18T14:08:20.181Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 196ms - Rows affected: 54 - RequestID: 37gu4wu0jvs +2025-06-18T14:08:20.281Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 403 - Response time: 888ms - IP: 192.168.138.123 - User: user_1013 - RequestID: a3uz43bbo9e +2025-06-18T14:08:20.381Z [TRACE] inventory-service - Auth event: logout - User: user_1080 - IP: 192.168.81.206 - RequestID: nuucq1l9se +2025-06-18T14:08:20.481Z [TRACE] order-service - Auth event: logout - User: user_1023 - IP: 192.168.46.63 - RequestID: 24vsfe2uvs6 +2025-06-18T14:08:20.581Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 57ms - RequestID: urp1fb8d3h +2025-06-18T14:08:20.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.232.72 - RequestID: dkftfbjqxjl +2025-06-18T14:08:20.781Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 26ms - IP: 192.168.232.72 - User: user_1055 - RequestID: gtwnhuhno9k +2025-06-18T14:08:20.881Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 589ms - RequestID: v5fn0edkri +2025-06-18T14:08:20.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.138.123 - RequestID: m34p2vt3cg +2025-06-18T14:08:21.081Z [INFO] payment-service - Auth event: login_failed - User: user_1013 - IP: 192.168.113.218 - RequestID: wkb1sx34swg +2025-06-18T14:08:21.181Z [INFO] auth-service - PATCH /api/v1/users - Status: 500 - Response time: 1755ms - IP: 192.168.187.199 - User: user_1002 - RequestID: fnfttxuhuj +2025-06-18T14:08:21.281Z [TRACE] notification-service - PATCH /api/v1/users - Status: 401 - Response time: 624ms - IP: 192.168.141.100 - User: user_1001 - RequestID: eqqdgbyvxo9 +2025-06-18T14:08:21.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.64.33 - RequestID: 017x3p6z4pc0k +2025-06-18T14:08:21.481Z [INFO] payment-service - Auth event: logout - User: user_1080 - IP: 192.168.46.63 - RequestID: dm5v379t5sm +2025-06-18T14:08:21.581Z [TRACE] order-service - Operation: cache_hit - Processing time: 107ms - RequestID: bk8k8zkqx8 +2025-06-18T14:08:21.681Z [TRACE] order-service - DELETE /api/v1/users - Status: 500 - Response time: 1292ms - IP: 192.168.30.79 - User: user_1087 - RequestID: g8kehs3s7cs +2025-06-18T14:08:21.781Z [DEBUG] order-service - Auth event: login_success - User: user_1025 - IP: 192.168.147.171 - RequestID: 1ndvzw4zfzh +2025-06-18T14:08:21.881Z [DEBUG] order-service - GET /api/v1/payments - Status: 403 - Response time: 1818ms - IP: 192.168.158.144 - User: user_1021 - RequestID: nl62ugpbaa +2025-06-18T14:08:21.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.79.141 - RequestID: pqy71e3nfsk +2025-06-18T14:08:22.081Z [DEBUG] notification-service - Operation: email_sent - Processing time: 422ms - RequestID: xklj5rofp4h +2025-06-18T14:08:22.181Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 201 - Response time: 438ms - IP: 192.168.194.41 - User: user_1057 - RequestID: u3fw8zrrqm8 +2025-06-18T14:08:22.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.30.79 - RequestID: z6m5d72bbbd +2025-06-18T14:08:22.381Z [DEBUG] order-service - Operation: notification_queued - Processing time: 457ms - RequestID: rtdo4yc1prp +2025-06-18T14:08:22.481Z [TRACE] notification-service - Database SELECT on orders - Execution time: 349ms - Rows affected: 83 - RequestID: toy60kb823o +2025-06-18T14:08:22.581Z [DEBUG] notification-service - Auth event: password_change - User: user_1012 - IP: 192.168.44.5 - RequestID: q36efebs8lk +2025-06-18T14:08:22.681Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 361ms - Rows affected: 25 - RequestID: ov2wd82uhs +2025-06-18T14:08:22.781Z [INFO] payment-service - Operation: order_created - Processing time: 512ms - RequestID: f1uevkyik4q +2025-06-18T14:08:22.881Z [INFO] payment-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.196.226 - RequestID: qmana3bn7po +2025-06-18T14:08:22.981Z [INFO] auth-service - GET /api/v1/auth/login - Status: 201 - Response time: 1680ms - IP: 192.168.174.114 - User: user_1086 - RequestID: 5xple068yw8 +2025-06-18T14:08:23.081Z [INFO] user-service - Database UPDATE on products - Execution time: 91ms - Rows affected: 21 - RequestID: 8tw0bn661b5 +2025-06-18T14:08:23.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 1009ms - RequestID: 941mauaeeqr +2025-06-18T14:08:23.281Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1706ms - IP: 192.168.159.94 - User: user_1095 - RequestID: igt0db5l8 +2025-06-18T14:08:23.381Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 845ms - RequestID: hcqjko339jj +2025-06-18T14:08:23.481Z [INFO] order-service - Database SELECT on users - Execution time: 421ms - Rows affected: 52 - RequestID: edmhm140te +2025-06-18T14:08:23.581Z [TRACE] payment-service - Database INSERT on users - Execution time: 79ms - Rows affected: 85 - RequestID: gkwqa9ezxl4 +2025-06-18T14:08:23.681Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 321ms - Rows affected: 77 - RequestID: rb6m0ua30h +2025-06-18T14:08:23.781Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1706ms - IP: 192.168.167.32 - User: user_1081 - RequestID: k3f5e2pvgrf +2025-06-18T14:08:23.881Z [DEBUG] user-service - Operation: email_sent - Processing time: 301ms - RequestID: jm89zah938 +2025-06-18T14:08:23.981Z [INFO] notification-service - Operation: inventory_updated - Processing time: 262ms - RequestID: e45fpfugznl +2025-06-18T14:08:24.081Z [DEBUG] user-service - Auth event: password_change - User: user_1099 - IP: 192.168.85.229 - RequestID: idv8e085xnf +2025-06-18T14:08:24.181Z [INFO] inventory-service - Auth event: login_success - User: user_1036 - IP: 192.168.79.141 - RequestID: h6zvs9qhlml +2025-06-18T14:08:24.281Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 833ms - RequestID: b871il4ijfh +2025-06-18T14:08:24.381Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 281ms - Rows affected: 85 - RequestID: s2n4q1accx +2025-06-18T14:08:24.481Z [INFO] order-service - Database INSERT on products - Execution time: 61ms - Rows affected: 23 - RequestID: 5n0i3a5ici5 +2025-06-18T14:08:24.581Z [TRACE] order-service - Database UPDATE on payments - Execution time: 270ms - Rows affected: 74 - RequestID: b02tlwa19lf +2025-06-18T14:08:24.681Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 419ms - Rows affected: 74 - RequestID: d71apo5vjb +2025-06-18T14:08:24.781Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1919ms - IP: 192.168.53.133 - User: user_1074 - RequestID: ipys9knv7d8 +2025-06-18T14:08:24.881Z [INFO] user-service - GET /api/v1/payments - Status: 500 - Response time: 1510ms - IP: 192.168.79.116 - User: user_1075 - RequestID: jza5z9vifpp +2025-06-18T14:08:24.981Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 220ms - RequestID: y5b9j0r8zx +2025-06-18T14:08:25.081Z [DEBUG] notification-service - Database INSERT on users - Execution time: 350ms - Rows affected: 17 - RequestID: 6xsqee2u7si +2025-06-18T14:08:25.181Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.144.38 - RequestID: 2e41axmvwxg +2025-06-18T14:08:25.281Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 198ms - Rows affected: 26 - RequestID: tiph5vs0g4i +2025-06-18T14:08:25.381Z [INFO] payment-service - Auth event: logout - User: user_1051 - IP: 192.168.64.33 - RequestID: u2y3aty37pi +2025-06-18T14:08:25.481Z [INFO] order-service - Operation: notification_queued - Processing time: 967ms - RequestID: 8q5udm682kk +2025-06-18T14:08:25.581Z [TRACE] order-service - PATCH /api/v1/users - Status: 404 - Response time: 333ms - IP: 192.168.167.32 - User: user_1039 - RequestID: m19shl1vv9 +2025-06-18T14:08:25.681Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 200 - Response time: 1025ms - IP: 192.168.141.100 - User: user_1039 - RequestID: 4xs04fuh1b4 +2025-06-18T14:08:25.781Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 764ms - RequestID: uw24ta1jt9 +2025-06-18T14:08:25.881Z [INFO] user-service - Database INSERT on sessions - Execution time: 360ms - Rows affected: 36 - RequestID: 5jhz2h1t27t +2025-06-18T14:08:25.981Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 372ms - Rows affected: 0 - RequestID: s6hqfvqx4s +2025-06-18T14:08:26.081Z [DEBUG] payment-service - Auth event: password_change - User: user_1096 - IP: 192.168.158.144 - RequestID: hcu58r7t7d +2025-06-18T14:08:26.181Z [TRACE] auth-service - Operation: cache_hit - Processing time: 129ms - RequestID: x45f08av28 +2025-06-18T14:08:26.281Z [DEBUG] auth-service - Database INSERT on products - Execution time: 167ms - Rows affected: 68 - RequestID: zv7vjhql3hm +2025-06-18T14:08:26.381Z [INFO] auth-service - PATCH /api/v1/orders - Status: 404 - Response time: 1338ms - IP: 192.168.159.94 - User: user_1031 - RequestID: 02bigdxfflfa +2025-06-18T14:08:26.481Z [TRACE] order-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.100.240 - RequestID: bpjzlxww7hn +2025-06-18T14:08:26.581Z [INFO] inventory-service - Operation: cache_hit - Processing time: 251ms - RequestID: bxln3ab0rah +2025-06-18T14:08:26.681Z [TRACE] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 1819ms - IP: 192.168.79.141 - User: user_1023 - RequestID: 5c7m53pdaxm +2025-06-18T14:08:26.781Z [TRACE] user-service - DELETE /api/v1/payments - Status: 200 - Response time: 996ms - IP: 192.168.10.184 - User: user_1043 - RequestID: xpwxmx2v55 +2025-06-18T14:08:26.881Z [DEBUG] user-service - Operation: notification_queued - Processing time: 285ms - RequestID: id6vfon47t +2025-06-18T14:08:26.981Z [TRACE] user-service - DELETE /api/v1/payments - Status: 200 - Response time: 889ms - IP: 192.168.138.123 - User: user_1013 - RequestID: 0o8q0v8uwzh8 +2025-06-18T14:08:27.081Z [TRACE] user-service - PATCH /api/v1/users - Status: 200 - Response time: 1591ms - IP: 192.168.68.158 - User: user_1056 - RequestID: tricotqz57f +2025-06-18T14:08:27.181Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 206ms - RequestID: 7qlr7ggxvzw +2025-06-18T14:08:27.281Z [INFO] user-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.14.77 - RequestID: ayknlvfpk1r +2025-06-18T14:08:27.381Z [INFO] user-service - POST /api/v1/users - Status: 502 - Response time: 1516ms - IP: 192.168.138.123 - User: user_1074 - RequestID: vwngs1mgqyi +2025-06-18T14:08:27.481Z [DEBUG] order-service - Database DELETE on payments - Execution time: 64ms - Rows affected: 52 - RequestID: pm6bwun8bbm +2025-06-18T14:08:27.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1089 - IP: 192.168.31.117 - RequestID: 22tc21mys7r +2025-06-18T14:08:27.681Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 503 - Response time: 258ms - IP: 192.168.159.94 - User: user_1049 - RequestID: 2fblcvqwo5v +2025-06-18T14:08:27.781Z [DEBUG] order-service - POST /api/v1/orders - Status: 404 - Response time: 1342ms - IP: 192.168.11.60 - User: user_1032 - RequestID: c8fz5fn7nn9 +2025-06-18T14:08:27.881Z [TRACE] inventory-service - Database DELETE on products - Execution time: 61ms - Rows affected: 0 - RequestID: d1qsojagtvc +2025-06-18T14:08:27.981Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 31ms - Rows affected: 54 - RequestID: qllh8lc4p9d +2025-06-18T14:08:28.081Z [DEBUG] notification-service - Operation: order_created - Processing time: 1023ms - RequestID: tmobh3b44t +2025-06-18T14:08:28.181Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 400 - Response time: 1645ms - IP: 192.168.133.7 - User: user_1022 - RequestID: u23041ll48n +2025-06-18T14:08:28.281Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 178ms - Rows affected: 54 - RequestID: 3dfk582sj4s +2025-06-18T14:08:28.381Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 663ms - IP: 192.168.81.206 - User: user_1041 - RequestID: 4acuzgrphha +2025-06-18T14:08:28.481Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 857ms - RequestID: l7ubtz7m9qa +2025-06-18T14:08:28.581Z [INFO] user-service - Operation: webhook_sent - Processing time: 116ms - RequestID: nlh1fmwvk7i +2025-06-18T14:08:28.681Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 302ms - RequestID: b4njrvymmz7 +2025-06-18T14:08:28.781Z [DEBUG] notification-service - GET /api/v1/orders - Status: 502 - Response time: 553ms - IP: 192.168.46.63 - User: user_1079 - RequestID: yudy87btane +2025-06-18T14:08:28.881Z [TRACE] order-service - Auth event: login_failed - User: user_1038 - IP: 192.168.211.72 - RequestID: lr1zesej8qm +2025-06-18T14:08:28.981Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 364ms - Rows affected: 69 - RequestID: psl5swuu0x +2025-06-18T14:08:29.081Z [TRACE] auth-service - Auth event: login_failed - User: user_1024 - IP: 192.168.85.229 - RequestID: 9tpxkvvkhfp +2025-06-18T14:08:29.181Z [INFO] auth-service - Database UPDATE on payments - Execution time: 348ms - Rows affected: 39 - RequestID: dfmwydek3rh +2025-06-18T14:08:29.281Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 295ms - Rows affected: 33 - RequestID: e8smospi2vc +2025-06-18T14:08:29.381Z [INFO] inventory-service - Operation: order_created - Processing time: 884ms - RequestID: hab8uhmsx5s +2025-06-18T14:08:29.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.235.117 - RequestID: vjhq4mvv7vf +2025-06-18T14:08:29.581Z [DEBUG] order-service - Operation: cache_hit - Processing time: 1017ms - RequestID: qjb2uo1k87j +2025-06-18T14:08:29.681Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 2006ms - IP: 192.168.113.218 - User: user_1096 - RequestID: xlipixxsocj +2025-06-18T14:08:29.781Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 403 - Response time: 495ms - IP: 192.168.158.144 - User: user_1064 - RequestID: ek9z1l54ojn +2025-06-18T14:08:29.881Z [INFO] inventory-service - GET /api/v1/orders - Status: 404 - Response time: 628ms - IP: 192.168.227.77 - User: user_1050 - RequestID: xmha09bsiq +2025-06-18T14:08:29.981Z [INFO] notification-service - Auth event: login_failed - User: user_1040 - IP: 192.168.229.123 - RequestID: 9bwgj9qabue +2025-06-18T14:08:30.081Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 442ms - Rows affected: 18 - RequestID: 4n95l0b5pp +2025-06-18T14:08:30.181Z [INFO] user-service - Auth event: login_failed - User: user_1089 - IP: 192.168.44.5 - RequestID: 2b178u3fist +2025-06-18T14:08:30.281Z [INFO] payment-service - POST /api/v1/inventory - Status: 200 - Response time: 1962ms - IP: 192.168.79.141 - User: user_1011 - RequestID: cgxfb1pd0k +2025-06-18T14:08:30.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.68.128 - RequestID: 1wsyymkf437 +2025-06-18T14:08:30.481Z [INFO] auth-service - Auth event: login_failed - User: user_1005 - IP: 192.168.68.158 - RequestID: 662x1smml8v +2025-06-18T14:08:30.581Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 69ms - RequestID: 4bzp3nh3q5l +2025-06-18T14:08:30.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.13.72 - RequestID: wtldp0xdt2m +2025-06-18T14:08:30.781Z [INFO] auth-service - PUT /api/v1/orders - Status: 400 - Response time: 1208ms - IP: 192.168.13.72 - User: user_1053 - RequestID: nsp3ncom2as +2025-06-18T14:08:30.881Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 256ms - RequestID: yok25sqs1e +2025-06-18T14:08:30.981Z [TRACE] inventory-service - Operation: email_sent - Processing time: 648ms - RequestID: rbe57901d5h +2025-06-18T14:08:31.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 830ms - RequestID: jlpmstlo4si +2025-06-18T14:08:31.181Z [INFO] inventory-service - Auth event: logout - User: user_1050 - IP: 192.168.85.229 - RequestID: u4lz1brpa9 +2025-06-18T14:08:31.281Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 200 - Response time: 103ms - IP: 192.168.133.7 - User: user_1083 - RequestID: 464fixq6eda +2025-06-18T14:08:31.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 455ms - RequestID: jppbfcd9iqe +2025-06-18T14:08:31.481Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 1356ms - IP: 192.168.28.146 - User: user_1094 - RequestID: pwaroc2cxip +2025-06-18T14:08:31.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.81.206 - RequestID: lm8j58d4nb9 +2025-06-18T14:08:31.681Z [INFO] order-service - DELETE /api/v1/orders - Status: 503 - Response time: 1969ms - IP: 192.168.187.199 - User: user_1016 - RequestID: 9c2xzk4ucq +2025-06-18T14:08:31.781Z [INFO] user-service - Database DELETE on users - Execution time: 276ms - Rows affected: 44 - RequestID: 5jkarzynxtx +2025-06-18T14:08:31.881Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 262ms - Rows affected: 54 - RequestID: wmq3ufwpbel +2025-06-18T14:08:31.981Z [DEBUG] notification-service - GET /api/v1/payments - Status: 400 - Response time: 67ms - IP: 192.168.227.233 - User: user_1040 - RequestID: ooicx4w1dwi +2025-06-18T14:08:32.081Z [TRACE] auth-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.235.117 - RequestID: 32hqi65il2g +2025-06-18T14:08:32.181Z [DEBUG] order-service - Auth event: login_failed - User: user_1068 - IP: 192.168.36.218 - RequestID: lxvv3rlcrvm +2025-06-18T14:08:32.281Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 736ms - RequestID: ijw11vwkzln +2025-06-18T14:08:32.381Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 500 - Response time: 136ms - IP: 192.168.79.116 - User: user_1065 - RequestID: oxitcqm0u +2025-06-18T14:08:32.481Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 404 - Response time: 462ms - IP: 192.168.227.233 - User: user_1073 - RequestID: 5l0qajkwxa4 +2025-06-18T14:08:32.581Z [INFO] auth-service - Operation: cache_miss - Processing time: 1035ms - RequestID: 9jyl943ilkv +2025-06-18T14:08:32.681Z [DEBUG] order-service - Database DELETE on orders - Execution time: 416ms - Rows affected: 3 - RequestID: pkja44xp9ci +2025-06-18T14:08:32.781Z [TRACE] order-service - Database DELETE on sessions - Execution time: 281ms - Rows affected: 21 - RequestID: 2v0co2cbd1n +2025-06-18T14:08:32.881Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 435ms - RequestID: rhlvfm4v1hc +2025-06-18T14:08:32.981Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 425ms - Rows affected: 70 - RequestID: a96i0hl4nld +2025-06-18T14:08:33.081Z [INFO] order-service - Database DELETE on payments - Execution time: 74ms - Rows affected: 99 - RequestID: qf4ui2a7779 +2025-06-18T14:08:33.181Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 272ms - Rows affected: 51 - RequestID: icrp873wbfg +2025-06-18T14:08:33.281Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 462ms - IP: 192.168.97.87 - User: user_1093 - RequestID: hdv5z2fl0bp +2025-06-18T14:08:33.381Z [DEBUG] auth-service - Database DELETE on products - Execution time: 245ms - Rows affected: 17 - RequestID: rm9mvrfg93g +2025-06-18T14:08:33.481Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 98ms - Rows affected: 55 - RequestID: xrbqhqfgwto +2025-06-18T14:08:33.581Z [INFO] payment-service - GET /api/v1/orders - Status: 503 - Response time: 1585ms - IP: 192.168.133.7 - User: user_1046 - RequestID: 3ysyszs1mqc +2025-06-18T14:08:33.681Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 337ms - RequestID: 07w8f80gdr +2025-06-18T14:08:33.781Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1822ms - IP: 192.168.30.79 - User: user_1068 - RequestID: kr0iqan57lq +2025-06-18T14:08:33.881Z [INFO] payment-service - Auth event: login_failed - User: user_1080 - IP: 192.168.211.72 - RequestID: 6kogkev55q +2025-06-18T14:08:33.981Z [TRACE] notification-service - POST /api/v1/users - Status: 500 - Response time: 171ms - IP: 192.168.28.146 - User: user_1043 - RequestID: fesxm7y25un +2025-06-18T14:08:34.081Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 200 - Response time: 571ms - IP: 192.168.229.123 - User: user_1011 - RequestID: 3jazhlzxct +2025-06-18T14:08:34.181Z [INFO] order-service - Auth event: logout - User: user_1065 - IP: 192.168.138.123 - RequestID: bctvsfl07su +2025-06-18T14:08:34.281Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 404 - Response time: 396ms - IP: 192.168.13.72 - User: user_1083 - RequestID: kw21uehmnk +2025-06-18T14:08:34.381Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 503 - Response time: 1916ms - IP: 192.168.242.165 - User: user_1018 - RequestID: 9h8hjgikp8 +2025-06-18T14:08:34.481Z [TRACE] user-service - PATCH /api/v1/orders - Status: 401 - Response time: 901ms - IP: 192.168.167.32 - User: user_1035 - RequestID: wx5fs442gp +2025-06-18T14:08:34.581Z [TRACE] user-service - POST /api/v1/payments - Status: 401 - Response time: 309ms - IP: 192.168.44.5 - User: user_1014 - RequestID: y8k6r5jwc4 +2025-06-18T14:08:34.681Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 470ms - RequestID: 0za5h3xbjeye +2025-06-18T14:08:34.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1012 - IP: 192.168.79.143 - RequestID: h5qwksq4rp6 +2025-06-18T14:08:34.881Z [INFO] inventory-service - POST /api/v1/users - Status: 401 - Response time: 1044ms - IP: 192.168.32.38 - User: user_1048 - RequestID: frmb8zo94d9 +2025-06-18T14:08:34.981Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 225ms - Rows affected: 12 - RequestID: na1ok5j7u5 +2025-06-18T14:08:35.081Z [INFO] user-service - Database UPDATE on orders - Execution time: 466ms - Rows affected: 17 - RequestID: q5bnnunqyj7 +2025-06-18T14:08:35.181Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 201 - Response time: 1709ms - IP: 192.168.232.72 - User: user_1093 - RequestID: p74esxutzi +2025-06-18T14:08:35.281Z [INFO] order-service - PUT /api/v1/payments - Status: 503 - Response time: 127ms - IP: 192.168.30.79 - User: user_1083 - RequestID: 84c21dpggbx +2025-06-18T14:08:35.381Z [TRACE] payment-service - Database UPDATE on users - Execution time: 182ms - Rows affected: 26 - RequestID: uhv5ssyrdm +2025-06-18T14:08:35.481Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1167ms - IP: 192.168.11.60 - User: user_1077 - RequestID: 45keb54xzkm +2025-06-18T14:08:35.581Z [DEBUG] order-service - Auth event: login_failed - User: user_1093 - IP: 192.168.30.79 - RequestID: icvrih13rn +2025-06-18T14:08:35.681Z [DEBUG] order-service - Database DELETE on users - Execution time: 239ms - Rows affected: 29 - RequestID: hgdu8lq11a4 +2025-06-18T14:08:35.781Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 990ms - RequestID: ms3tve4dg8 +2025-06-18T14:08:35.881Z [INFO] order-service - Database DELETE on products - Execution time: 378ms - Rows affected: 58 - RequestID: biumiak81fu +2025-06-18T14:08:35.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.79.141 - RequestID: kz4raeszac +2025-06-18T14:08:36.081Z [INFO] user-service - Operation: notification_queued - Processing time: 57ms - RequestID: 55iq7u6hpu3 +2025-06-18T14:08:36.181Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 401 - Response time: 908ms - IP: 192.168.167.32 - User: user_1096 - RequestID: gg4ln3jl66h +2025-06-18T14:08:36.281Z [TRACE] payment-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.247.134 - RequestID: x8vd5my35b +2025-06-18T14:08:36.381Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 378ms - RequestID: x9x5oakmqgb +2025-06-18T14:08:36.481Z [TRACE] auth-service - Auth event: password_change - User: user_1073 - IP: 192.168.100.240 - RequestID: tg22j4lyx6 +2025-06-18T14:08:36.581Z [TRACE] user-service - Operation: payment_processed - Processing time: 725ms - RequestID: jioh0p9tp9 +2025-06-18T14:08:36.681Z [INFO] user-service - Operation: inventory_updated - Processing time: 452ms - RequestID: aoomkl49m45 +2025-06-18T14:08:36.781Z [INFO] order-service - PUT /api/v1/inventory - Status: 403 - Response time: 939ms - IP: 192.168.133.7 - User: user_1078 - RequestID: wghlgmgvsz +2025-06-18T14:08:36.881Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 62ms - RequestID: q96b241oev8 +2025-06-18T14:08:36.981Z [INFO] user-service - PUT /api/v1/users - Status: 401 - Response time: 118ms - IP: 192.168.227.233 - User: user_1014 - RequestID: w9wrblvu6d +2025-06-18T14:08:37.081Z [TRACE] user-service - Database INSERT on sessions - Execution time: 45ms - Rows affected: 56 - RequestID: xg4v0bcmsvb +2025-06-18T14:08:37.181Z [INFO] payment-service - Operation: cache_miss - Processing time: 966ms - RequestID: 0whx67l89zi +2025-06-18T14:08:37.281Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 503 - Response time: 1003ms - IP: 192.168.242.165 - User: user_1039 - RequestID: ia1uihxjd6i +2025-06-18T14:08:37.381Z [TRACE] notification-service - Database DELETE on users - Execution time: 265ms - Rows affected: 32 - RequestID: c9pr4gzhoyc +2025-06-18T14:08:37.481Z [INFO] payment-service - Database DELETE on payments - Execution time: 119ms - Rows affected: 74 - RequestID: 3j4w9s7825d +2025-06-18T14:08:37.581Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 852ms - RequestID: ek6tlfk8vwn +2025-06-18T14:08:37.681Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 330ms - RequestID: xov5obnw1ul +2025-06-18T14:08:37.781Z [TRACE] notification-service - GET /api/v1/payments - Status: 401 - Response time: 1871ms - IP: 192.168.144.38 - User: user_1065 - RequestID: o1ntom5ud +2025-06-18T14:08:37.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1057 - IP: 192.168.85.229 - RequestID: jl6tlhu84e8 +2025-06-18T14:08:37.981Z [TRACE] inventory-service - POST /api/v1/orders - Status: 500 - Response time: 1937ms - IP: 192.168.68.128 - User: user_1074 - RequestID: s4a86sdikc +2025-06-18T14:08:38.081Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 200 - Response time: 631ms - IP: 192.168.174.114 - User: user_1052 - RequestID: 9n6hv0kfh2 +2025-06-18T14:08:38.181Z [INFO] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 101ms - IP: 192.168.174.114 - User: user_1081 - RequestID: 9mrgd54d0fr +2025-06-18T14:08:38.281Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 38ms - Rows affected: 36 - RequestID: 7ulfdvzwpyx +2025-06-18T14:08:38.381Z [INFO] order-service - Operation: email_sent - Processing time: 853ms - RequestID: 83vgl67gm9t +2025-06-18T14:08:38.481Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 1004ms - RequestID: xmvdlab22n +2025-06-18T14:08:38.581Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.97.87 - RequestID: bqt0sjyrzb7 +2025-06-18T14:08:38.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 1029ms - RequestID: 77alpqk84eo +2025-06-18T14:08:38.781Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 855ms - RequestID: k3526fudzg +2025-06-18T14:08:38.881Z [DEBUG] payment-service - Auth event: login_failed - User: user_1005 - IP: 192.168.30.79 - RequestID: af9697a715b +2025-06-18T14:08:38.981Z [INFO] payment-service - Operation: email_sent - Processing time: 216ms - RequestID: guo0sfo940s +2025-06-18T14:08:39.081Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 403 - Response time: 1405ms - IP: 192.168.53.133 - User: user_1045 - RequestID: t1wypk9tss +2025-06-18T14:08:39.181Z [TRACE] user-service - Operation: email_sent - Processing time: 592ms - RequestID: f8igatdq18i +2025-06-18T14:08:39.281Z [DEBUG] auth-service - POST /api/v1/orders - Status: 503 - Response time: 1041ms - IP: 192.168.68.158 - User: user_1087 - RequestID: ozfwdqc38 +2025-06-18T14:08:39.381Z [INFO] inventory-service - Auth event: login_success - User: user_1055 - IP: 192.168.33.76 - RequestID: ysnxnm0d0m +2025-06-18T14:08:39.481Z [DEBUG] user-service - Operation: cache_miss - Processing time: 575ms - RequestID: rupzelx2u0j +2025-06-18T14:08:39.581Z [INFO] auth-service - Auth event: login_success - User: user_1056 - IP: 192.168.79.116 - RequestID: n39t33hy04j +2025-06-18T14:08:39.681Z [INFO] payment-service - Database UPDATE on payments - Execution time: 487ms - Rows affected: 33 - RequestID: kc7amf7nffg +2025-06-18T14:08:39.781Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 138ms - Rows affected: 77 - RequestID: c20eeu0tgvh +2025-06-18T14:08:39.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1041 - IP: 192.168.247.134 - RequestID: 7b0u4ts7nmc +2025-06-18T14:08:39.981Z [INFO] payment-service - Operation: notification_queued - Processing time: 148ms - RequestID: 9duhqddz3fc +2025-06-18T14:08:40.081Z [TRACE] user-service - POST /api/v1/orders - Status: 500 - Response time: 211ms - IP: 192.168.144.38 - User: user_1056 - RequestID: ld6fe8mrf5 +2025-06-18T14:08:40.181Z [INFO] auth-service - Database SELECT on users - Execution time: 356ms - Rows affected: 11 - RequestID: zzhpfmgfiz +2025-06-18T14:08:40.281Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 137ms - Rows affected: 30 - RequestID: uu065t4wnde +2025-06-18T14:08:40.381Z [INFO] user-service - Operation: order_created - Processing time: 824ms - RequestID: m7hb81crmyi +2025-06-18T14:08:40.481Z [TRACE] auth-service - DELETE /api/v1/users - Status: 200 - Response time: 113ms - IP: 192.168.81.206 - User: user_1012 - RequestID: gcdyskqahzt +2025-06-18T14:08:40.581Z [TRACE] user-service - Database DELETE on products - Execution time: 320ms - Rows affected: 4 - RequestID: 52ewp4wvc5j +2025-06-18T14:08:40.681Z [DEBUG] user-service - Auth event: logout - User: user_1093 - IP: 192.168.240.169 - RequestID: yy4mgygrasc +2025-06-18T14:08:40.781Z [INFO] inventory-service - Database DELETE on products - Execution time: 353ms - Rows affected: 92 - RequestID: onj7z1jwdy +2025-06-18T14:08:40.881Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 328ms - Rows affected: 75 - RequestID: jc18wr8xddd +2025-06-18T14:08:40.981Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 281ms - RequestID: tcx3aj9qfh +2025-06-18T14:08:41.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1032 - IP: 192.168.100.240 - RequestID: jn02mx94p6 +2025-06-18T14:08:41.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.32.38 - RequestID: 5lrv91unmgm +2025-06-18T14:08:41.281Z [DEBUG] user-service - Database DELETE on products - Execution time: 223ms - Rows affected: 30 - RequestID: n7mo8u4gte +2025-06-18T14:08:41.381Z [INFO] auth-service - Auth event: logout - User: user_1044 - IP: 192.168.187.199 - RequestID: 8mj5r7qslhm +2025-06-18T14:08:41.481Z [INFO] auth-service - GET /api/v1/orders - Status: 404 - Response time: 483ms - IP: 192.168.14.77 - User: user_1012 - RequestID: wrqa8qzlqvm +2025-06-18T14:08:41.581Z [INFO] auth-service - Database DELETE on payments - Execution time: 390ms - Rows affected: 30 - RequestID: 3kw3vkm86ea +2025-06-18T14:08:41.681Z [INFO] order-service - GET /api/v1/payments - Status: 201 - Response time: 196ms - IP: 192.168.189.103 - User: user_1090 - RequestID: 0cvlq32bclih +2025-06-18T14:08:41.781Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 664ms - RequestID: 8zgffh4xb7g +2025-06-18T14:08:41.881Z [INFO] user-service - GET /api/v1/inventory - Status: 401 - Response time: 1397ms - IP: 192.168.187.199 - User: user_1077 - RequestID: hzmfxsz0buw +2025-06-18T14:08:41.981Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 41ms - Rows affected: 70 - RequestID: c98zyoismu6 +2025-06-18T14:08:42.081Z [INFO] auth-service - Auth event: password_change - User: user_1099 - IP: 192.168.174.114 - RequestID: 68zeootbtvk +2025-06-18T14:08:42.181Z [INFO] notification-service - Database UPDATE on payments - Execution time: 386ms - Rows affected: 60 - RequestID: 9yy4lodfaog +2025-06-18T14:08:42.281Z [TRACE] payment-service - Operation: email_sent - Processing time: 179ms - RequestID: 2xyw855ii1y +2025-06-18T14:08:42.381Z [DEBUG] user-service - Operation: payment_processed - Processing time: 1035ms - RequestID: j8odfwj9srq +2025-06-18T14:08:42.481Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 225ms - Rows affected: 41 - RequestID: ej4brm58ixg +2025-06-18T14:08:42.581Z [INFO] user-service - Database SELECT on products - Execution time: 87ms - Rows affected: 87 - RequestID: 3g8r20z5p8m +2025-06-18T14:08:42.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.158.144 - RequestID: 4ky4n25xpt +2025-06-18T14:08:42.781Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 330ms - RequestID: ovvwd8juyyc +2025-06-18T14:08:42.881Z [TRACE] user-service - Database INSERT on payments - Execution time: 415ms - Rows affected: 52 - RequestID: 13h3hu2awv7k +2025-06-18T14:08:42.981Z [DEBUG] user-service - Operation: order_created - Processing time: 318ms - RequestID: jjlvybgdcda +2025-06-18T14:08:43.081Z [TRACE] auth-service - Auth event: login_failed - User: user_1064 - IP: 192.168.46.63 - RequestID: g4gfzbw7i2 +2025-06-18T14:08:43.181Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.235.117 - RequestID: jnsjxgob18q +2025-06-18T14:08:43.281Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 200 - Response time: 459ms - IP: 192.168.79.141 - User: user_1082 - RequestID: 1tm9dk9muqm +2025-06-18T14:08:43.381Z [INFO] inventory-service - Operation: email_sent - Processing time: 508ms - RequestID: cw1hfctctz8 +2025-06-18T14:08:43.481Z [TRACE] auth-service - Auth event: password_change - User: user_1089 - IP: 192.168.229.123 - RequestID: 99x5ug9zjm +2025-06-18T14:08:43.581Z [TRACE] inventory-service - PUT /api/v1/users - Status: 200 - Response time: 1753ms - IP: 192.168.229.123 - User: user_1089 - RequestID: xs160ftw9n +2025-06-18T14:08:43.681Z [DEBUG] order-service - POST /api/v1/orders - Status: 403 - Response time: 1016ms - IP: 192.168.81.206 - User: user_1000 - RequestID: evs1us7wkyv +2025-06-18T14:08:43.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.44.5 - RequestID: 427zoryfq0h +2025-06-18T14:08:43.881Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 219ms - RequestID: vwv5hnlzkbe +2025-06-18T14:08:43.981Z [INFO] auth-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.240.169 - RequestID: h9fw879jkai +2025-06-18T14:08:44.081Z [INFO] order-service - Operation: cache_hit - Processing time: 189ms - RequestID: tv0f1qegtsm +2025-06-18T14:08:44.181Z [TRACE] user-service - PUT /api/v1/users - Status: 500 - Response time: 161ms - IP: 192.168.79.141 - User: user_1007 - RequestID: 3ewzuirs17x +2025-06-18T14:08:44.281Z [INFO] user-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.104.37 - RequestID: x1keq5kw2yh +2025-06-18T14:08:44.381Z [TRACE] user-service - Operation: cache_hit - Processing time: 558ms - RequestID: 66l2vsoiz5p +2025-06-18T14:08:44.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 103ms - RequestID: 8u6qww11ykh +2025-06-18T14:08:44.581Z [DEBUG] inventory-service - Auth event: logout - User: user_1035 - IP: 192.168.81.206 - RequestID: 7g0x3bljgda +2025-06-18T14:08:44.681Z [TRACE] user-service - Operation: order_created - Processing time: 1026ms - RequestID: 04mbuz4ujtpn +2025-06-18T14:08:44.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1094 - IP: 192.168.247.134 - RequestID: ih6jnwqxz5k +2025-06-18T14:08:44.881Z [TRACE] order-service - Operation: email_sent - Processing time: 923ms - RequestID: 7zwa14l57lk +2025-06-18T14:08:44.981Z [INFO] auth-service - Operation: payment_processed - Processing time: 884ms - RequestID: uwg330bwbur +2025-06-18T14:08:45.081Z [TRACE] user-service - Operation: order_created - Processing time: 1048ms - RequestID: jiy3s13y5p +2025-06-18T14:08:45.181Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1434ms - IP: 192.168.158.144 - User: user_1001 - RequestID: f0tmm9b6j8l +2025-06-18T14:08:45.281Z [INFO] payment-service - Operation: order_created - Processing time: 573ms - RequestID: jyfu4996pb +2025-06-18T14:08:45.381Z [INFO] payment-service - Auth event: login_success - User: user_1015 - IP: 192.168.189.103 - RequestID: hrvw79ce9eg +2025-06-18T14:08:45.481Z [INFO] auth-service - GET /api/v1/payments - Status: 503 - Response time: 1571ms - IP: 192.168.68.158 - User: user_1071 - RequestID: 55g2bt4tjce +2025-06-18T14:08:45.581Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 178ms - Rows affected: 68 - RequestID: ogw4pr4hif +2025-06-18T14:08:45.681Z [TRACE] auth-service - Operation: order_created - Processing time: 138ms - RequestID: 14j6svisbo2 +2025-06-18T14:08:45.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.113.218 - RequestID: wdtqi15qmpl +2025-06-18T14:08:45.881Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 51ms - Rows affected: 55 - RequestID: tb8hrxawc1 +2025-06-18T14:08:45.981Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 324ms - Rows affected: 55 - RequestID: j0vqjefgee +2025-06-18T14:08:46.081Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 741ms - RequestID: glu3tu5q4cl +2025-06-18T14:08:46.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 896ms - RequestID: 9xkk97fgok +2025-06-18T14:08:46.281Z [INFO] order-service - Database INSERT on payments - Execution time: 276ms - Rows affected: 82 - RequestID: vn0xlkg09u +2025-06-18T14:08:46.381Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 380ms - Rows affected: 29 - RequestID: 9jowahix81c +2025-06-18T14:08:46.481Z [INFO] inventory-service - Auth event: logout - User: user_1039 - IP: 192.168.113.218 - RequestID: xa66o3wdil +2025-06-18T14:08:46.581Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.113.218 - RequestID: lummsl1fg6 +2025-06-18T14:08:46.681Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 394ms - IP: 192.168.97.87 - User: user_1066 - RequestID: 2kfxg6w37ci +2025-06-18T14:08:46.781Z [INFO] payment-service - Auth event: password_change - User: user_1036 - IP: 192.168.33.76 - RequestID: s2wfzujzo6 +2025-06-18T14:08:46.881Z [TRACE] notification-service - Operation: cache_miss - Processing time: 856ms - RequestID: 1sszrd6veg6 +2025-06-18T14:08:46.981Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 392ms - Rows affected: 73 - RequestID: byfg9wfgo18 +2025-06-18T14:08:47.081Z [INFO] inventory-service - POST /api/v1/inventory - Status: 502 - Response time: 1276ms - IP: 192.168.144.38 - User: user_1020 - RequestID: 0b5stm5sg86m +2025-06-18T14:08:47.181Z [INFO] order-service - Database DELETE on payments - Execution time: 29ms - Rows affected: 87 - RequestID: d0iuta2y2jo +2025-06-18T14:08:47.281Z [INFO] payment-service - POST /api/v1/orders - Status: 403 - Response time: 1076ms - IP: 192.168.113.218 - User: user_1029 - RequestID: bxydwzv1zsk +2025-06-18T14:08:47.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1008 - IP: 192.168.100.240 - RequestID: pysqjndsk8d +2025-06-18T14:08:47.481Z [INFO] user-service - Operation: payment_processed - Processing time: 772ms - RequestID: vmq8fibsxsf +2025-06-18T14:08:47.581Z [TRACE] order-service - Operation: cache_miss - Processing time: 307ms - RequestID: 6i7hrhup1i +2025-06-18T14:08:47.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1035 - IP: 192.168.79.143 - RequestID: fdhbfqde7f +2025-06-18T14:08:47.781Z [INFO] notification-service - Database INSERT on products - Execution time: 102ms - Rows affected: 25 - RequestID: 4tuligwszr2 +2025-06-18T14:08:47.881Z [INFO] order-service - Operation: cache_miss - Processing time: 525ms - RequestID: k1i89sbnt8s +2025-06-18T14:08:47.981Z [TRACE] payment-service - Auth event: password_change - User: user_1034 - IP: 192.168.227.77 - RequestID: jhawyxpjq4s +2025-06-18T14:08:48.081Z [DEBUG] order-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.64.33 - RequestID: b6mlmnc8g8k +2025-06-18T14:08:48.181Z [DEBUG] user-service - Database SELECT on users - Execution time: 485ms - Rows affected: 66 - RequestID: 9hpr78obiou +2025-06-18T14:08:48.281Z [INFO] user-service - Auth event: password_change - User: user_1030 - IP: 192.168.229.123 - RequestID: 4z8b1anntx9 +2025-06-18T14:08:48.381Z [TRACE] payment-service - Database UPDATE on products - Execution time: 241ms - Rows affected: 87 - RequestID: o5u6xe7rjhi +2025-06-18T14:08:48.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.211.72 - RequestID: cg1yhjbxnkg +2025-06-18T14:08:48.581Z [TRACE] user-service - Database UPDATE on orders - Execution time: 450ms - Rows affected: 93 - RequestID: 30qyyitihrb +2025-06-18T14:08:48.681Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1007 - IP: 192.168.240.169 - RequestID: luk2l90etxk +2025-06-18T14:08:48.781Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 158ms - IP: 192.168.174.114 - User: user_1077 - RequestID: 07z21h99gvz6 +2025-06-18T14:08:48.881Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 400 - Response time: 833ms - IP: 192.168.242.165 - User: user_1005 - RequestID: 10m36k1l1m9 +2025-06-18T14:08:48.981Z [TRACE] inventory-service - POST /api/v1/users - Status: 403 - Response time: 30ms - IP: 192.168.100.240 - User: user_1094 - RequestID: 4s4flxoc5ca +2025-06-18T14:08:49.081Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 332ms - Rows affected: 25 - RequestID: czs4kl16ix +2025-06-18T14:08:49.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1032 - IP: 192.168.32.38 - RequestID: 6h7jokv8xmo +2025-06-18T14:08:49.281Z [INFO] auth-service - Auth event: logout - User: user_1053 - IP: 192.168.189.103 - RequestID: va0tc0eqka +2025-06-18T14:08:49.381Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 327ms - Rows affected: 6 - RequestID: qe18cyrkfs +2025-06-18T14:08:49.481Z [TRACE] user-service - Operation: cache_miss - Processing time: 93ms - RequestID: 6mv6o6lmi8f +2025-06-18T14:08:49.581Z [TRACE] auth-service - Auth event: password_change - User: user_1092 - IP: 192.168.133.7 - RequestID: b253h894agn +2025-06-18T14:08:49.681Z [TRACE] inventory-service - Database INSERT on users - Execution time: 380ms - Rows affected: 47 - RequestID: pc43025fwg +2025-06-18T14:08:49.781Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 302ms - Rows affected: 82 - RequestID: s4w8u3xn8m +2025-06-18T14:08:49.881Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1033ms - IP: 192.168.113.218 - User: user_1030 - RequestID: m93bvh1hei +2025-06-18T14:08:49.981Z [TRACE] order-service - POST /api/v1/payments - Status: 503 - Response time: 744ms - IP: 192.168.227.233 - User: user_1074 - RequestID: dog42f499zc +2025-06-18T14:08:50.081Z [DEBUG] payment-service - Database DELETE on users - Execution time: 83ms - Rows affected: 21 - RequestID: y6x3np1fdb +2025-06-18T14:08:50.181Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.232.72 - RequestID: 08ndajza621h +2025-06-18T14:08:50.281Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1542ms - IP: 192.168.187.199 - User: user_1077 - RequestID: l5n7l7a7w7 +2025-06-18T14:08:50.381Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 181ms - RequestID: 956plk9pmzb +2025-06-18T14:08:50.481Z [DEBUG] user-service - Auth event: login_failed - User: user_1093 - IP: 192.168.10.184 - RequestID: xysadw2h8i +2025-06-18T14:08:50.581Z [INFO] payment-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.211.72 - RequestID: efy58p6fc1m +2025-06-18T14:08:50.681Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1342ms - IP: 192.168.28.146 - User: user_1018 - RequestID: xlmt51ru9h +2025-06-18T14:08:50.781Z [DEBUG] payment-service - POST /api/v1/orders - Status: 502 - Response time: 1820ms - IP: 192.168.211.72 - User: user_1049 - RequestID: mzviuu3ss4k +2025-06-18T14:08:50.881Z [INFO] order-service - Operation: notification_queued - Processing time: 921ms - RequestID: gt6vlmi7ibg +2025-06-18T14:08:50.981Z [TRACE] inventory-service - Auth event: login_success - User: user_1055 - IP: 192.168.11.60 - RequestID: c3q161f6ytp +2025-06-18T14:08:51.081Z [TRACE] notification-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.194.41 - RequestID: ba3p3bkg5fv +2025-06-18T14:08:51.181Z [INFO] order-service - GET /api/v1/inventory - Status: 502 - Response time: 1783ms - IP: 192.168.247.134 - User: user_1014 - RequestID: h290m99w5f +2025-06-18T14:08:51.281Z [DEBUG] auth-service - Auth event: login_success - User: user_1009 - IP: 192.168.64.33 - RequestID: euzym62yy9t +2025-06-18T14:08:51.381Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 403 - Response time: 432ms - IP: 192.168.167.32 - User: user_1032 - RequestID: ooeb48xzvaf +2025-06-18T14:08:51.481Z [TRACE] user-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.229.123 - RequestID: uyobthvpthm +2025-06-18T14:08:51.581Z [INFO] payment-service - Auth event: login_success - User: user_1026 - IP: 192.168.181.225 - RequestID: edxchhv38sb +2025-06-18T14:08:51.681Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 338ms - RequestID: we7zv1ml9ar +2025-06-18T14:08:51.781Z [TRACE] user-service - Database DELETE on orders - Execution time: 467ms - Rows affected: 85 - RequestID: q1mvzrxywkr +2025-06-18T14:08:51.881Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1002ms - IP: 192.168.11.60 - User: user_1012 - RequestID: 2y62h2tu2av +2025-06-18T14:08:51.981Z [INFO] order-service - GET /api/v1/inventory - Status: 503 - Response time: 1168ms - IP: 192.168.227.77 - User: user_1074 - RequestID: te2do2e9ufr +2025-06-18T14:08:52.081Z [INFO] payment-service - Operation: order_created - Processing time: 857ms - RequestID: 09di60wsos0u +2025-06-18T14:08:52.181Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 503 - Response time: 277ms - IP: 192.168.147.171 - User: user_1029 - RequestID: xa3lpjjy59l +2025-06-18T14:08:52.281Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 378ms - Rows affected: 13 - RequestID: zpu4bpswx5n +2025-06-18T14:08:52.381Z [INFO] user-service - PATCH /api/v1/inventory - Status: 403 - Response time: 825ms - IP: 192.168.167.32 - User: user_1035 - RequestID: smmf0dcbzx +2025-06-18T14:08:52.481Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 200 - Response time: 784ms - IP: 192.168.227.233 - User: user_1053 - RequestID: bhfw9cqr4aw +2025-06-18T14:08:52.581Z [DEBUG] user-service - Operation: payment_processed - Processing time: 732ms - RequestID: qbyj5mhkv6r +2025-06-18T14:08:52.681Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 132ms - Rows affected: 42 - RequestID: zg33h4ysr2p +2025-06-18T14:08:52.781Z [DEBUG] payment-service - POST /api/v1/orders - Status: 503 - Response time: 1423ms - IP: 192.168.189.103 - User: user_1078 - RequestID: 37mz8gxwutg +2025-06-18T14:08:52.881Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 106ms - Rows affected: 1 - RequestID: l3kl33xzhn +2025-06-18T14:08:52.981Z [TRACE] notification-service - GET /api/v1/inventory - Status: 403 - Response time: 643ms - IP: 192.168.46.63 - User: user_1053 - RequestID: s2e68ihee1f +2025-06-18T14:08:53.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1088 - IP: 192.168.194.41 - RequestID: c8si2uqtdyc +2025-06-18T14:08:53.181Z [INFO] order-service - Auth event: logout - User: user_1020 - IP: 192.168.194.41 - RequestID: 01px23uuinz5 +2025-06-18T14:08:53.281Z [TRACE] order-service - Operation: payment_processed - Processing time: 660ms - RequestID: p68zv8jdb5b +2025-06-18T14:08:53.381Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 293ms - RequestID: wd7nnh4ukor +2025-06-18T14:08:53.481Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 901ms - RequestID: wzi9vdxsjvq +2025-06-18T14:08:53.581Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 419ms - RequestID: 8a0924f9uca +2025-06-18T14:08:53.681Z [INFO] user-service - PUT /api/v1/users - Status: 401 - Response time: 805ms - IP: 192.168.46.63 - User: user_1067 - RequestID: uwbkpct5f8n +2025-06-18T14:08:53.781Z [INFO] notification-service - POST /api/v1/payments - Status: 200 - Response time: 219ms - IP: 192.168.232.72 - User: user_1069 - RequestID: zykbjuvxi9 +2025-06-18T14:08:53.881Z [INFO] notification-service - Auth event: password_change - User: user_1068 - IP: 192.168.170.215 - RequestID: 9i1q37albpt +2025-06-18T14:08:53.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.64.33 - RequestID: zga4eaehrvq +2025-06-18T14:08:54.081Z [DEBUG] order-service - Auth event: login_success - User: user_1076 - IP: 192.168.242.165 - RequestID: 8y0a216tnmq +2025-06-18T14:08:54.181Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 457ms - Rows affected: 71 - RequestID: gicif0rlo9d +2025-06-18T14:08:54.281Z [DEBUG] order-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.147.171 - RequestID: xo25c7g3319 +2025-06-18T14:08:54.381Z [INFO] payment-service - Database DELETE on products - Execution time: 153ms - Rows affected: 92 - RequestID: 5jzzsowe4ft +2025-06-18T14:08:54.481Z [INFO] inventory-service - Auth event: login_success - User: user_1043 - IP: 192.168.138.123 - RequestID: j49uh3akj9 +2025-06-18T14:08:54.581Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 681ms - RequestID: pfwbetlzbgd +2025-06-18T14:08:54.681Z [TRACE] user-service - Auth event: login_failed - User: user_1036 - IP: 192.168.158.144 - RequestID: yhd911oalc +2025-06-18T14:08:54.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1082 - IP: 192.168.36.218 - RequestID: 5ualhgo493d +2025-06-18T14:08:54.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.85.229 - RequestID: icl2uuim7vg +2025-06-18T14:08:54.981Z [TRACE] order-service - PATCH /api/v1/payments - Status: 401 - Response time: 1320ms - IP: 192.168.170.215 - User: user_1067 - RequestID: 68ka5a0190t +2025-06-18T14:08:55.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1031 - IP: 192.168.30.79 - RequestID: 32qgcdr7xdf +2025-06-18T14:08:55.181Z [INFO] user-service - Database INSERT on payments - Execution time: 100ms - Rows affected: 51 - RequestID: ne1v0sxk13 +2025-06-18T14:08:55.281Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 400 - Response time: 93ms - IP: 192.168.30.79 - User: user_1072 - RequestID: 91v1w1b7ae8 +2025-06-18T14:08:55.381Z [DEBUG] payment-service - Auth event: password_change - User: user_1089 - IP: 192.168.232.72 - RequestID: hyc638pxaad +2025-06-18T14:08:55.481Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 502 - Response time: 425ms - IP: 192.168.46.63 - User: user_1090 - RequestID: 8dicg5sppcq +2025-06-18T14:08:55.581Z [INFO] inventory-service - Operation: email_sent - Processing time: 336ms - RequestID: twysdu4ild +2025-06-18T14:08:55.681Z [TRACE] payment-service - Database INSERT on products - Execution time: 342ms - Rows affected: 46 - RequestID: ni7netmxdbh +2025-06-18T14:08:55.781Z [INFO] user-service - Database SELECT on payments - Execution time: 254ms - Rows affected: 10 - RequestID: yy5sm402229 +2025-06-18T14:08:55.881Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 479ms - Rows affected: 71 - RequestID: y722l5yhk6 +2025-06-18T14:08:55.981Z [TRACE] user-service - Auth event: login_failed - User: user_1080 - IP: 192.168.68.128 - RequestID: mx01bzubxx8 +2025-06-18T14:08:56.081Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.79.141 - RequestID: bur81sy3c3n +2025-06-18T14:08:56.181Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 109ms - Rows affected: 62 - RequestID: 6bibqju7egc +2025-06-18T14:08:56.281Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1675ms - IP: 192.168.247.134 - User: user_1070 - RequestID: fq6hvw5ax6c +2025-06-18T14:08:56.381Z [TRACE] notification-service - POST /api/v1/users - Status: 500 - Response time: 1132ms - IP: 192.168.187.199 - User: user_1048 - RequestID: 3rtdy8oipgd +2025-06-18T14:08:56.481Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 721ms - RequestID: 6lys0k0y0nf +2025-06-18T14:08:56.581Z [INFO] auth-service - DELETE /api/v1/users - Status: 400 - Response time: 31ms - IP: 192.168.174.114 - User: user_1043 - RequestID: q6lps0sflc +2025-06-18T14:08:56.681Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 644ms - RequestID: 5qi969l9g1 +2025-06-18T14:08:56.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 731ms - RequestID: ar2in7gl1hf +2025-06-18T14:08:56.881Z [INFO] payment-service - GET /api/v1/payments - Status: 201 - Response time: 675ms - IP: 192.168.158.144 - User: user_1043 - RequestID: d17evxui5zl +2025-06-18T14:08:56.981Z [TRACE] payment-service - Auth event: password_change - User: user_1094 - IP: 192.168.100.240 - RequestID: i7rm6odlbv +2025-06-18T14:08:57.081Z [TRACE] payment-service - Operation: cache_miss - Processing time: 50ms - RequestID: v2m2z6vcmpb +2025-06-18T14:08:57.181Z [INFO] payment-service - Auth event: login_success - User: user_1004 - IP: 192.168.227.233 - RequestID: lgyhtom9s8 +2025-06-18T14:08:57.281Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 314ms - RequestID: pje14x02qzc +2025-06-18T14:08:57.381Z [DEBUG] auth-service - GET /api/v1/orders - Status: 400 - Response time: 1020ms - IP: 192.168.79.143 - User: user_1004 - RequestID: nayxboqru4 +2025-06-18T14:08:57.481Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 43ms - Rows affected: 85 - RequestID: 2tyb9v97yqp +2025-06-18T14:08:57.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1045 - IP: 192.168.36.218 - RequestID: vh3djj6eble +2025-06-18T14:08:57.681Z [INFO] auth-service - Database SELECT on sessions - Execution time: 398ms - Rows affected: 13 - RequestID: exs763fcxia +2025-06-18T14:08:57.781Z [TRACE] user-service - Auth event: login_success - User: user_1038 - IP: 192.168.1.152 - RequestID: 8evhtju9vdu +2025-06-18T14:08:57.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 373ms - RequestID: runn21bkhy +2025-06-18T14:08:57.981Z [TRACE] auth-service - PUT /api/v1/users - Status: 201 - Response time: 635ms - IP: 192.168.196.226 - User: user_1046 - RequestID: 6s5w0ui31d8 +2025-06-18T14:08:58.081Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 488ms - RequestID: 3ly0xr4i2v3 +2025-06-18T14:08:58.181Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 833ms - RequestID: cy4qbnbdtff +2025-06-18T14:08:58.281Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 403 - Response time: 141ms - IP: 192.168.189.103 - User: user_1024 - RequestID: qvb0rj4d1c9 +2025-06-18T14:08:58.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.242.165 - RequestID: mgm3x7swnd +2025-06-18T14:08:58.481Z [DEBUG] order-service - Database DELETE on payments - Execution time: 491ms - Rows affected: 48 - RequestID: wr7nh80binp +2025-06-18T14:08:58.581Z [INFO] payment-service - Database UPDATE on orders - Execution time: 89ms - Rows affected: 28 - RequestID: 0g2jqi5np3c5 +2025-06-18T14:08:58.681Z [TRACE] inventory-service - Auth event: login_success - User: user_1036 - IP: 192.168.229.123 - RequestID: zpa09xpmk9n +2025-06-18T14:08:58.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.144.38 - RequestID: eipijd7eleg +2025-06-18T14:08:58.881Z [TRACE] user-service - Operation: email_sent - Processing time: 619ms - RequestID: ysuqtqunz9d +2025-06-18T14:08:58.981Z [TRACE] user-service - Operation: order_created - Processing time: 785ms - RequestID: k266bpr3xrr +2025-06-18T14:08:59.081Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 469ms - Rows affected: 58 - RequestID: uttajfr225a +2025-06-18T14:08:59.181Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 502 - Response time: 494ms - IP: 192.168.159.94 - User: user_1018 - RequestID: 7eyua0mic6 +2025-06-18T14:08:59.281Z [DEBUG] order-service - Database SELECT on orders - Execution time: 210ms - Rows affected: 66 - RequestID: 8qllahziqat +2025-06-18T14:08:59.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1076 - IP: 192.168.170.215 - RequestID: 831cavxh20y +2025-06-18T14:08:59.481Z [DEBUG] user-service - Operation: cache_miss - Processing time: 845ms - RequestID: yltow1ej5bn +2025-06-18T14:08:59.581Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 66ms - Rows affected: 26 - RequestID: 1em5lebssnr +2025-06-18T14:08:59.681Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1937ms - IP: 192.168.235.117 - User: user_1094 - RequestID: hrdvislap8o +2025-06-18T14:08:59.781Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 1002ms - RequestID: j4qj338r3 +2025-06-18T14:08:59.881Z [INFO] order-service - PUT /api/v1/payments - Status: 401 - Response time: 879ms - IP: 192.168.79.143 - User: user_1027 - RequestID: 6gev2qpt77b +2025-06-18T14:08:59.981Z [INFO] inventory-service - Auth event: login_failed - User: user_1075 - IP: 192.168.79.143 - RequestID: cvtaad8ocxp +2025-06-18T14:09:00.081Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 801ms - RequestID: my1sf6lpah +2025-06-18T14:09:00.181Z [INFO] notification-service - DELETE /api/v1/payments - Status: 200 - Response time: 68ms - IP: 192.168.14.77 - User: user_1059 - RequestID: 98iw6wsybp4 +2025-06-18T14:09:00.281Z [DEBUG] order-service - Auth event: login_failed - User: user_1024 - IP: 192.168.247.134 - RequestID: gcat7qvp5bo +2025-06-18T14:09:00.381Z [INFO] auth-service - Auth event: login_success - User: user_1059 - IP: 192.168.227.233 - RequestID: 3c9ueqwog89 +2025-06-18T14:09:00.481Z [INFO] order-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.97.87 - RequestID: wexreqyr3tp +2025-06-18T14:09:00.581Z [TRACE] payment-service - Auth event: logout - User: user_1022 - IP: 192.168.133.7 - RequestID: 18fuo2i0b5a +2025-06-18T14:09:00.681Z [INFO] user-service - POST /api/v1/users - Status: 200 - Response time: 608ms - IP: 192.168.211.72 - User: user_1006 - RequestID: zwinmjrqavc +2025-06-18T14:09:00.781Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1380ms - IP: 192.168.138.123 - User: user_1053 - RequestID: 8tdxkc9poo +2025-06-18T14:09:00.881Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 503 - Response time: 600ms - IP: 192.168.14.77 - User: user_1014 - RequestID: y54iksi2fj +2025-06-18T14:09:00.981Z [INFO] user-service - Database UPDATE on payments - Execution time: 412ms - Rows affected: 11 - RequestID: 1ufgpiczdqi +2025-06-18T14:09:01.081Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 593ms - RequestID: bk06w4egr2q +2025-06-18T14:09:01.181Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 738ms - RequestID: 3d6dy18mmq5 +2025-06-18T14:09:01.281Z [TRACE] user-service - Database SELECT on users - Execution time: 70ms - Rows affected: 23 - RequestID: hsv4qnaidpn +2025-06-18T14:09:01.381Z [TRACE] order-service - Auth event: logout - User: user_1084 - IP: 192.168.189.103 - RequestID: 7zm0gkvufj +2025-06-18T14:09:01.481Z [TRACE] inventory-service - GET /api/v1/users - Status: 404 - Response time: 832ms - IP: 192.168.11.60 - User: user_1098 - RequestID: d330ntjz1h +2025-06-18T14:09:01.581Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1140ms - IP: 192.168.13.72 - User: user_1034 - RequestID: 1xrio6qwbguh +2025-06-18T14:09:01.681Z [INFO] notification-service - Auth event: password_change - User: user_1077 - IP: 192.168.167.32 - RequestID: 8fsgmpy485u +2025-06-18T14:09:01.781Z [TRACE] inventory-service - Auth event: logout - User: user_1013 - IP: 192.168.167.32 - RequestID: f9mkp12mrm +2025-06-18T14:09:01.881Z [INFO] notification-service - Operation: payment_processed - Processing time: 646ms - RequestID: e5x2yhzoozk +2025-06-18T14:09:01.981Z [INFO] auth-service - Database DELETE on orders - Execution time: 276ms - Rows affected: 46 - RequestID: u26asro0fho +2025-06-18T14:09:02.081Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 400 - Response time: 1500ms - IP: 192.168.240.169 - User: user_1001 - RequestID: 1e16kqtp2u0j +2025-06-18T14:09:02.181Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1425ms - IP: 192.168.194.41 - User: user_1009 - RequestID: 51pp0jg0v3 +2025-06-18T14:09:02.281Z [INFO] auth-service - Operation: cache_miss - Processing time: 258ms - RequestID: r7yz91nphuo +2025-06-18T14:09:02.381Z [INFO] order-service - Operation: cache_hit - Processing time: 877ms - RequestID: rfux2eb5yxe +2025-06-18T14:09:02.481Z [INFO] auth-service - Database DELETE on users - Execution time: 294ms - Rows affected: 58 - RequestID: y1fjs3uv19f +2025-06-18T14:09:02.581Z [INFO] inventory-service - Operation: cache_miss - Processing time: 443ms - RequestID: 3ta2zhsp2rb +2025-06-18T14:09:02.681Z [INFO] user-service - Operation: cache_miss - Processing time: 705ms - RequestID: xktaa95c4j +2025-06-18T14:09:02.781Z [INFO] order-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.32.38 - RequestID: mudgz4sdv3 +2025-06-18T14:09:02.881Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 384ms - Rows affected: 60 - RequestID: prglbevzebf +2025-06-18T14:09:02.981Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 878ms - RequestID: gl0q572eyco +2025-06-18T14:09:03.081Z [TRACE] user-service - Database INSERT on payments - Execution time: 105ms - Rows affected: 41 - RequestID: 38taalzg98d +2025-06-18T14:09:03.181Z [INFO] inventory-service - Operation: email_sent - Processing time: 90ms - RequestID: 3rti9n2cbey +2025-06-18T14:09:03.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 542ms - RequestID: l8kn2qhicsa +2025-06-18T14:09:03.381Z [TRACE] notification-service - Auth event: logout - User: user_1027 - IP: 192.168.159.94 - RequestID: f0ewtyf9njf +2025-06-18T14:09:03.481Z [DEBUG] order-service - Database SELECT on payments - Execution time: 498ms - Rows affected: 66 - RequestID: m4ztppyxt3 +2025-06-18T14:09:03.581Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 503 - Response time: 462ms - IP: 192.168.53.133 - User: user_1070 - RequestID: kbwfr01fznd +2025-06-18T14:09:03.681Z [DEBUG] auth-service - POST /api/v1/orders - Status: 403 - Response time: 344ms - IP: 192.168.235.117 - User: user_1084 - RequestID: r5jvuhe3dhm +2025-06-18T14:09:03.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1089 - IP: 192.168.30.79 - RequestID: j0ww83szo0g +2025-06-18T14:09:03.881Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 861ms - RequestID: zzg4yknoev +2025-06-18T14:09:03.981Z [TRACE] inventory-service - Database SELECT on products - Execution time: 274ms - Rows affected: 2 - RequestID: uamcr63208j +2025-06-18T14:09:04.081Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 271ms - Rows affected: 64 - RequestID: 4juho3mbkle +2025-06-18T14:09:04.181Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 98ms - Rows affected: 5 - RequestID: 9w36w43jsbb +2025-06-18T14:09:04.281Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 584ms - RequestID: kiaegsf7s3 +2025-06-18T14:09:04.381Z [INFO] order-service - Operation: cache_hit - Processing time: 589ms - RequestID: rnwufw5dqf +2025-06-18T14:09:04.481Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 556ms - RequestID: em2vzyw5pbm +2025-06-18T14:09:04.581Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 470ms - Rows affected: 35 - RequestID: l50qo2rss6k +2025-06-18T14:09:04.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1012 - IP: 192.168.187.199 - RequestID: tixovrka3qm +2025-06-18T14:09:04.781Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 889ms - RequestID: wspaueodfbe +2025-06-18T14:09:04.881Z [TRACE] auth-service - Auth event: login_success - User: user_1096 - IP: 192.168.227.77 - RequestID: 04389ez1svt9 +2025-06-18T14:09:04.981Z [DEBUG] order-service - Database SELECT on users - Execution time: 58ms - Rows affected: 35 - RequestID: txctcxcdn6g +2025-06-18T14:09:05.081Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 404 - Response time: 1929ms - IP: 192.168.147.171 - User: user_1040 - RequestID: f30pppkmh0n +2025-06-18T14:09:05.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.187.199 - RequestID: 8bce4jycask +2025-06-18T14:09:05.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 899ms - RequestID: 1n9gv5cgeo9i +2025-06-18T14:09:05.381Z [TRACE] inventory-service - Auth event: login_success - User: user_1061 - IP: 192.168.30.79 - RequestID: pgkdicnt99 +2025-06-18T14:09:05.481Z [INFO] user-service - Auth event: password_change - User: user_1035 - IP: 192.168.33.76 - RequestID: bshhxuqnie +2025-06-18T14:09:05.581Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1407ms - IP: 192.168.14.77 - User: user_1037 - RequestID: 201442gwflu +2025-06-18T14:09:05.681Z [TRACE] notification-service - Auth event: password_change - User: user_1074 - IP: 192.168.187.199 - RequestID: v2l6gc2ircf +2025-06-18T14:09:05.781Z [INFO] user-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.194.41 - RequestID: s73861elzh +2025-06-18T14:09:05.881Z [DEBUG] order-service - Operation: order_created - Processing time: 622ms - RequestID: g6j45y5920t +2025-06-18T14:09:05.981Z [INFO] auth-service - Database UPDATE on users - Execution time: 294ms - Rows affected: 0 - RequestID: in3lbnkdca +2025-06-18T14:09:06.081Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1292ms - IP: 192.168.36.218 - User: user_1095 - RequestID: bdvq3b9kj0s +2025-06-18T14:09:06.181Z [DEBUG] order-service - Database INSERT on orders - Execution time: 408ms - Rows affected: 74 - RequestID: dzfmtf1vlhj +2025-06-18T14:09:06.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 173ms - RequestID: o7qxphxeka +2025-06-18T14:09:06.381Z [TRACE] auth-service - POST /api/v1/payments - Status: 400 - Response time: 480ms - IP: 192.168.187.199 - User: user_1072 - RequestID: fs3dyvne4ys +2025-06-18T14:09:06.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.229.123 - RequestID: 959g67k5tqv +2025-06-18T14:09:06.581Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 279ms - RequestID: q0tyyzwwklr +2025-06-18T14:09:06.681Z [INFO] user-service - Database INSERT on payments - Execution time: 198ms - Rows affected: 83 - RequestID: dzgtlbqfdon +2025-06-18T14:09:06.781Z [INFO] payment-service - POST /api/v1/payments - Status: 401 - Response time: 478ms - IP: 192.168.100.240 - User: user_1063 - RequestID: dyfqno4ego8 +2025-06-18T14:09:06.881Z [INFO] auth-service - PUT /api/v1/users - Status: 502 - Response time: 1467ms - IP: 192.168.170.215 - User: user_1030 - RequestID: 8l5nb7xv068 +2025-06-18T14:09:06.981Z [INFO] user-service - Operation: cache_miss - Processing time: 76ms - RequestID: 19f7t3y5jf4 +2025-06-18T14:09:07.081Z [INFO] payment-service - Auth event: logout - User: user_1011 - IP: 192.168.68.128 - RequestID: xti5fd7hjz +2025-06-18T14:09:07.181Z [DEBUG] payment-service - Operation: email_sent - Processing time: 751ms - RequestID: rh1sbc9hmv +2025-06-18T14:09:07.281Z [INFO] inventory-service - Auth event: logout - User: user_1051 - IP: 192.168.158.144 - RequestID: z8w8ljzual +2025-06-18T14:09:07.381Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 964ms - RequestID: fq2lbnbfnhl +2025-06-18T14:09:07.481Z [INFO] inventory-service - Database INSERT on payments - Execution time: 356ms - Rows affected: 99 - RequestID: 28pra95p07si +2025-06-18T14:09:07.581Z [INFO] inventory-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.44.5 - RequestID: dhbg75vr3y9 +2025-06-18T14:09:07.681Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 837ms - IP: 192.168.113.218 - User: user_1047 - RequestID: 7fzkn8mcud6 +2025-06-18T14:09:07.781Z [INFO] payment-service - Operation: cache_miss - Processing time: 615ms - RequestID: ovxcwu6i9mk +2025-06-18T14:09:07.881Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 392ms - IP: 192.168.189.103 - User: user_1055 - RequestID: 0ha6700kvc2 +2025-06-18T14:09:07.981Z [DEBUG] order-service - Auth event: logout - User: user_1004 - IP: 192.168.211.72 - RequestID: yxwego0szt +2025-06-18T14:09:08.081Z [INFO] payment-service - POST /api/v1/inventory - Status: 500 - Response time: 922ms - IP: 192.168.235.117 - User: user_1094 - RequestID: 8o9s9yendf6 +2025-06-18T14:09:08.181Z [INFO] notification-service - Operation: order_created - Processing time: 545ms - RequestID: n70pukdc6v +2025-06-18T14:09:08.281Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 539ms - IP: 192.168.232.72 - User: user_1022 - RequestID: 1wq5bi7xc1p +2025-06-18T14:09:08.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1074 - IP: 192.168.30.79 - RequestID: fdebr66n29h +2025-06-18T14:09:08.481Z [INFO] notification-service - DELETE /api/v1/orders - Status: 403 - Response time: 184ms - IP: 192.168.46.63 - User: user_1082 - RequestID: 7rj06a0rg3b +2025-06-18T14:09:08.581Z [TRACE] notification-service - Operation: cache_hit - Processing time: 999ms - RequestID: 33b6z8qa0st +2025-06-18T14:09:08.681Z [TRACE] user-service - Auth event: password_change - User: user_1020 - IP: 192.168.64.33 - RequestID: ju6stwei6g +2025-06-18T14:09:08.781Z [TRACE] auth-service - DELETE /api/v1/users - Status: 404 - Response time: 1909ms - IP: 192.168.104.37 - User: user_1097 - RequestID: sep0jhcbyqk +2025-06-18T14:09:08.881Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 162ms - Rows affected: 71 - RequestID: wtr5miiqz6 +2025-06-18T14:09:08.981Z [TRACE] payment-service - Auth event: password_change - User: user_1014 - IP: 192.168.68.128 - RequestID: tapzlp0xv9h +2025-06-18T14:09:09.081Z [INFO] payment-service - Database SELECT on products - Execution time: 132ms - Rows affected: 91 - RequestID: kywp0rewiu +2025-06-18T14:09:09.181Z [DEBUG] user-service - Database DELETE on users - Execution time: 485ms - Rows affected: 3 - RequestID: i72me696xad +2025-06-18T14:09:09.281Z [TRACE] notification-service - Auth event: login_success - User: user_1092 - IP: 192.168.68.158 - RequestID: arxzyihvtfq +2025-06-18T14:09:09.381Z [DEBUG] notification-service - Database DELETE on products - Execution time: 11ms - Rows affected: 44 - RequestID: 7cm728razor +2025-06-18T14:09:09.481Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 819ms - RequestID: lwu1n3q3imm +2025-06-18T14:09:09.581Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1894ms - IP: 192.168.64.33 - User: user_1099 - RequestID: uwc6vuc2sdp +2025-06-18T14:09:09.681Z [TRACE] user-service - Auth event: login_failed - User: user_1052 - IP: 192.168.44.5 - RequestID: qjjhkxuy7a +2025-06-18T14:09:09.781Z [TRACE] payment-service - Operation: payment_processed - Processing time: 316ms - RequestID: k96wb6ux6x +2025-06-18T14:09:09.881Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.242.165 - RequestID: yb5wri4ixc +2025-06-18T14:09:09.981Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 404 - Response time: 80ms - IP: 192.168.187.199 - User: user_1099 - RequestID: qlkejed7iz9 +2025-06-18T14:09:10.081Z [INFO] payment-service - Operation: order_created - Processing time: 222ms - RequestID: nuby8hyc28 +2025-06-18T14:09:10.181Z [TRACE] order-service - Auth event: logout - User: user_1065 - IP: 192.168.147.171 - RequestID: cwu4jnpveq +2025-06-18T14:09:10.281Z [INFO] auth-service - PUT /api/v1/inventory - Status: 502 - Response time: 621ms - IP: 192.168.14.77 - User: user_1019 - RequestID: 83czb6fbtde +2025-06-18T14:09:10.381Z [TRACE] payment-service - GET /api/v1/orders - Status: 403 - Response time: 915ms - IP: 192.168.144.38 - User: user_1046 - RequestID: 4r931vw8tt3 +2025-06-18T14:09:10.481Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 401 - Response time: 1077ms - IP: 192.168.13.72 - User: user_1099 - RequestID: t4sgh7the3q +2025-06-18T14:09:10.581Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 207ms - IP: 192.168.227.77 - User: user_1040 - RequestID: qa380a1tu6q +2025-06-18T14:09:10.681Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 183ms - Rows affected: 2 - RequestID: a30h3xr8vm4 +2025-06-18T14:09:10.781Z [TRACE] user-service - Operation: cache_hit - Processing time: 361ms - RequestID: a1rebin67bk +2025-06-18T14:09:10.881Z [TRACE] notification-service - Database INSERT on users - Execution time: 159ms - Rows affected: 17 - RequestID: fpmwgnmr92d +2025-06-18T14:09:10.981Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 401 - Response time: 1134ms - IP: 192.168.133.7 - User: user_1000 - RequestID: kbtj9uguk88 +2025-06-18T14:09:11.081Z [INFO] order-service - Operation: webhook_sent - Processing time: 124ms - RequestID: ie1rykzec28 +2025-06-18T14:09:11.181Z [INFO] user-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.100.240 - RequestID: c7vrg16ao3a +2025-06-18T14:09:11.281Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 236ms - Rows affected: 94 - RequestID: m431ut0wdoi +2025-06-18T14:09:11.381Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 336ms - Rows affected: 36 - RequestID: 2sasu80kj42 +2025-06-18T14:09:11.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 820ms - RequestID: n6nsk5jlpp +2025-06-18T14:09:11.581Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 401 - Response time: 194ms - IP: 192.168.13.72 - User: user_1005 - RequestID: 4l9ru5hwi4t +2025-06-18T14:09:11.681Z [TRACE] auth-service - Auth event: logout - User: user_1050 - IP: 192.168.10.184 - RequestID: a17i5cpc55q +2025-06-18T14:09:11.781Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 400 - Response time: 342ms - IP: 192.168.36.218 - User: user_1097 - RequestID: yqg8aezn0ts +2025-06-18T14:09:11.881Z [TRACE] payment-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.242.165 - RequestID: 9ws5fbtdoau +2025-06-18T14:09:11.981Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1089ms - IP: 192.168.14.77 - User: user_1089 - RequestID: ckn5rl2q2kb +2025-06-18T14:09:12.081Z [TRACE] notification-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.232.72 - RequestID: zh6nnw69zt +2025-06-18T14:09:12.181Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 147ms - Rows affected: 96 - RequestID: ybdh88rmsyq +2025-06-18T14:09:12.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.113.218 - RequestID: desc5wndtne +2025-06-18T14:09:12.381Z [INFO] auth-service - Operation: webhook_sent - Processing time: 797ms - RequestID: qi7e4lh6y5m +2025-06-18T14:09:12.481Z [DEBUG] auth-service - Database INSERT on products - Execution time: 444ms - Rows affected: 86 - RequestID: y4zudbn19g9 +2025-06-18T14:09:12.581Z [TRACE] order-service - Auth event: logout - User: user_1022 - IP: 192.168.10.184 - RequestID: 4i6cwxwbt63 +2025-06-18T14:09:12.681Z [TRACE] user-service - Auth event: password_change - User: user_1082 - IP: 192.168.133.7 - RequestID: jjszdte4eso +2025-06-18T14:09:12.781Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 33ms - Rows affected: 5 - RequestID: f7hsd2iz8in +2025-06-18T14:09:12.881Z [INFO] inventory-service - Auth event: login_success - User: user_1040 - IP: 192.168.32.38 - RequestID: kl4n54i6qs9 +2025-06-18T14:09:12.981Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.104.37 - RequestID: r9cdrm59ilc +2025-06-18T14:09:13.081Z [TRACE] auth-service - Database SELECT on users - Execution time: 433ms - Rows affected: 53 - RequestID: k20lh02wbn +2025-06-18T14:09:13.181Z [DEBUG] payment-service - Database SELECT on products - Execution time: 9ms - Rows affected: 21 - RequestID: oqd4rzstllr +2025-06-18T14:09:13.281Z [INFO] payment-service - Operation: cache_miss - Processing time: 103ms - RequestID: cmg4owfn4qc +2025-06-18T14:09:13.381Z [INFO] user-service - Operation: webhook_sent - Processing time: 227ms - RequestID: xjjd94rl3pr +2025-06-18T14:09:13.481Z [TRACE] order-service - DELETE /api/v1/payments - Status: 403 - Response time: 1427ms - IP: 192.168.81.206 - User: user_1049 - RequestID: ipytqgln36 +2025-06-18T14:09:13.581Z [INFO] payment-service - PUT /api/v1/inventory - Status: 403 - Response time: 1930ms - IP: 192.168.144.38 - User: user_1034 - RequestID: 33ejo91a8yl +2025-06-18T14:09:13.681Z [INFO] user-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.68.158 - RequestID: ff61riw4qu +2025-06-18T14:09:13.781Z [TRACE] user-service - Operation: email_sent - Processing time: 284ms - RequestID: 84w4q3xq5rf +2025-06-18T14:09:13.881Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1037ms - IP: 192.168.247.134 - User: user_1076 - RequestID: b6qh8pps9pu +2025-06-18T14:09:13.981Z [TRACE] order-service - Operation: order_created - Processing time: 175ms - RequestID: bwixlvxhaue +2025-06-18T14:09:14.081Z [INFO] user-service - Operation: cache_miss - Processing time: 899ms - RequestID: b9vt6ohqjhl +2025-06-18T14:09:14.181Z [INFO] user-service - Operation: email_sent - Processing time: 247ms - RequestID: s7izmdowo3 +2025-06-18T14:09:14.281Z [INFO] notification-service - Auth event: logout - User: user_1013 - IP: 192.168.13.72 - RequestID: 1kqd3e7g8eo +2025-06-18T14:09:14.381Z [INFO] order-service - Database UPDATE on payments - Execution time: 358ms - Rows affected: 62 - RequestID: ojrh1hh9sfa +2025-06-18T14:09:14.481Z [TRACE] order-service - Auth event: password_change - User: user_1033 - IP: 192.168.14.77 - RequestID: 6tix3pocmhb +2025-06-18T14:09:14.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.79.143 - RequestID: hpdcigiwnmp +2025-06-18T14:09:14.681Z [INFO] user-service - Auth event: login_failed - User: user_1059 - IP: 192.168.100.240 - RequestID: 7x30z9719lb +2025-06-18T14:09:14.781Z [INFO] user-service - Database INSERT on payments - Execution time: 429ms - Rows affected: 17 - RequestID: td2yput6gd +2025-06-18T14:09:14.881Z [DEBUG] payment-service - Auth event: logout - User: user_1013 - IP: 192.168.158.144 - RequestID: 9pnsdt9vkdr +2025-06-18T14:09:14.981Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 201ms - RequestID: f1a46byc1uw +2025-06-18T14:09:15.081Z [INFO] order-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.33.76 - RequestID: 3q5mte86jid +2025-06-18T14:09:15.181Z [TRACE] notification-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.32.38 - RequestID: t6xrjkhjnrb +2025-06-18T14:09:15.281Z [TRACE] notification-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.211.72 - RequestID: v13iultne9 +2025-06-18T14:09:15.381Z [DEBUG] auth-service - Auth event: logout - User: user_1038 - IP: 192.168.227.77 - RequestID: 33rzox74qsz +2025-06-18T14:09:15.481Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 401 - Response time: 900ms - IP: 192.168.79.116 - User: user_1018 - RequestID: enjlbqz8s3o +2025-06-18T14:09:15.581Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.79.116 - RequestID: fcb9bsvykml +2025-06-18T14:09:15.681Z [DEBUG] user-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.53.133 - RequestID: iy5bg72wj1 +2025-06-18T14:09:15.781Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 248ms - Rows affected: 74 - RequestID: 1rpdci0edek +2025-06-18T14:09:15.881Z [TRACE] notification-service - PUT /api/v1/orders - Status: 502 - Response time: 919ms - IP: 192.168.159.94 - User: user_1001 - RequestID: 9fliv8fd0vh +2025-06-18T14:09:15.981Z [INFO] auth-service - Operation: payment_processed - Processing time: 204ms - RequestID: dgvoscfmqhb +2025-06-18T14:09:16.081Z [INFO] auth-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.100.240 - RequestID: t3m9hk8p28 +2025-06-18T14:09:16.181Z [INFO] inventory-service - Operation: email_sent - Processing time: 661ms - RequestID: ux34w3tbfom +2025-06-18T14:09:16.281Z [INFO] payment-service - Database INSERT on orders - Execution time: 52ms - Rows affected: 91 - RequestID: kpcgfzerumc +2025-06-18T14:09:16.381Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 500 - Response time: 567ms - IP: 192.168.30.79 - User: user_1038 - RequestID: 12c17avczkl +2025-06-18T14:09:16.481Z [DEBUG] user-service - Auth event: login_failed - User: user_1051 - IP: 192.168.113.218 - RequestID: 1whx09r0m8x +2025-06-18T14:09:16.581Z [DEBUG] order-service - Operation: cache_miss - Processing time: 907ms - RequestID: nbj9i7dbfx +2025-06-18T14:09:16.681Z [TRACE] user-service - Database DELETE on products - Execution time: 259ms - Rows affected: 87 - RequestID: iwkdm0m8sdp +2025-06-18T14:09:16.781Z [DEBUG] user-service - POST /api/v1/users - Status: 403 - Response time: 518ms - IP: 192.168.242.165 - User: user_1075 - RequestID: pox4e7h9ebh +2025-06-18T14:09:16.881Z [INFO] payment-service - Auth event: login_success - User: user_1002 - IP: 192.168.32.38 - RequestID: bt7gdjtc4cp +2025-06-18T14:09:16.981Z [INFO] inventory-service - Operation: payment_processed - Processing time: 255ms - RequestID: lfy9gx1eqa +2025-06-18T14:09:17.081Z [DEBUG] order-service - Operation: cache_miss - Processing time: 79ms - RequestID: gp8pxfoej3r +2025-06-18T14:09:17.181Z [INFO] user-service - DELETE /api/v1/users - Status: 503 - Response time: 381ms - IP: 192.168.46.63 - User: user_1023 - RequestID: kj9k79dzp9q +2025-06-18T14:09:17.281Z [DEBUG] user-service - POST /api/v1/payments - Status: 502 - Response time: 318ms - IP: 192.168.97.87 - User: user_1081 - RequestID: 51e6u6vjyv9 +2025-06-18T14:09:17.381Z [INFO] inventory-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.211.72 - RequestID: 4024pnz84yr +2025-06-18T14:09:17.481Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 487ms - IP: 192.168.81.206 - User: user_1070 - RequestID: 364086ckkfm +2025-06-18T14:09:17.581Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 940ms - RequestID: 4jxaigo5735 +2025-06-18T14:09:17.681Z [TRACE] auth-service - Database DELETE on users - Execution time: 405ms - Rows affected: 92 - RequestID: a9wcsu69n3i +2025-06-18T14:09:17.781Z [INFO] inventory-service - Auth event: logout - User: user_1071 - IP: 192.168.36.218 - RequestID: d6k6fvvwl65 +2025-06-18T14:09:17.881Z [INFO] payment-service - Auth event: login_success - User: user_1055 - IP: 192.168.232.72 - RequestID: o5si6i0l6vr +2025-06-18T14:09:17.981Z [DEBUG] order-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.144.38 - RequestID: fyucz5tl55 +2025-06-18T14:09:18.081Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1153ms - IP: 192.168.141.100 - User: user_1032 - RequestID: iqjgxv289c +2025-06-18T14:09:18.181Z [DEBUG] inventory-service - Operation: order_created - Processing time: 959ms - RequestID: z5pzni7fsec +2025-06-18T14:09:18.281Z [INFO] payment-service - PATCH /api/v1/users - Status: 404 - Response time: 959ms - IP: 192.168.68.128 - User: user_1045 - RequestID: u5ophth4j5 +2025-06-18T14:09:18.381Z [INFO] user-service - Operation: webhook_sent - Processing time: 689ms - RequestID: yv2zxayeaa +2025-06-18T14:09:18.481Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 403 - Response time: 674ms - IP: 192.168.196.226 - User: user_1066 - RequestID: qskuf92o7u9 +2025-06-18T14:09:18.581Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 201 - Response time: 152ms - IP: 192.168.1.152 - User: user_1002 - RequestID: 321zjnfldm5 +2025-06-18T14:09:18.681Z [DEBUG] user-service - GET /api/v1/users - Status: 403 - Response time: 1721ms - IP: 192.168.235.117 - User: user_1001 - RequestID: s9fu7c7ua0o +2025-06-18T14:09:18.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 572ms - RequestID: b5ffovrbk9f +2025-06-18T14:09:18.881Z [TRACE] user-service - GET /api/v1/orders - Status: 500 - Response time: 518ms - IP: 192.168.227.77 - User: user_1092 - RequestID: 8k5gs2ey6u +2025-06-18T14:09:18.981Z [DEBUG] user-service - Auth event: password_change - User: user_1031 - IP: 192.168.167.32 - RequestID: vmwwahbldio +2025-06-18T14:09:19.081Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 65ms - Rows affected: 2 - RequestID: kch4lbdjv3 +2025-06-18T14:09:19.181Z [INFO] notification-service - Database SELECT on payments - Execution time: 455ms - Rows affected: 43 - RequestID: 68ebrxrzfo4 +2025-06-18T14:09:19.281Z [TRACE] notification-service - Operation: payment_processed - Processing time: 452ms - RequestID: lbmydpjpr5c +2025-06-18T14:09:19.381Z [INFO] inventory-service - POST /api/v1/orders - Status: 201 - Response time: 542ms - IP: 192.168.229.123 - User: user_1021 - RequestID: bgim52b75k +2025-06-18T14:09:19.481Z [TRACE] user-service - Auth event: password_change - User: user_1098 - IP: 192.168.167.32 - RequestID: 5sexzwr093a +2025-06-18T14:09:19.581Z [INFO] auth-service - Operation: inventory_updated - Processing time: 958ms - RequestID: y6cd5bvlmfc +2025-06-18T14:09:19.681Z [DEBUG] order-service - Database DELETE on users - Execution time: 483ms - Rows affected: 23 - RequestID: 5b8bbxg3efn +2025-06-18T14:09:19.781Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 271ms - Rows affected: 80 - RequestID: 9fj4o3rhaj5 +2025-06-18T14:09:19.881Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 200 - Response time: 1303ms - IP: 192.168.240.169 - User: user_1003 - RequestID: qdxk21r6a4 +2025-06-18T14:09:19.981Z [INFO] payment-service - Operation: order_created - Processing time: 300ms - RequestID: aanw8urbhq +2025-06-18T14:09:20.081Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 403 - Response time: 692ms - IP: 192.168.10.184 - User: user_1016 - RequestID: v43favvoa0r +2025-06-18T14:09:20.181Z [INFO] notification-service - PUT /api/v1/users - Status: 401 - Response time: 454ms - IP: 192.168.64.33 - User: user_1044 - RequestID: wk40y7q8tj +2025-06-18T14:09:20.281Z [INFO] order-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.81.206 - RequestID: y5oyaxinyxl +2025-06-18T14:09:20.381Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 55ms - Rows affected: 51 - RequestID: f7aa2rjdtmb +2025-06-18T14:09:20.481Z [DEBUG] order-service - Operation: cache_miss - Processing time: 189ms - RequestID: ic55m11ujm +2025-06-18T14:09:20.581Z [INFO] inventory-service - Auth event: logout - User: user_1091 - IP: 192.168.10.184 - RequestID: zf7jrrg8xaq +2025-06-18T14:09:20.681Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 464ms - Rows affected: 82 - RequestID: pn5rm3ts4n +2025-06-18T14:09:20.781Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1335ms - IP: 192.168.10.184 - User: user_1062 - RequestID: fqzn0xpfb2t +2025-06-18T14:09:20.881Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 361ms - Rows affected: 90 - RequestID: u4elmz0tdis +2025-06-18T14:09:20.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 435ms - RequestID: xvpbx3vshig +2025-06-18T14:09:21.081Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 423ms - Rows affected: 31 - RequestID: tqhn4us4mpp +2025-06-18T14:09:21.181Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 238ms - Rows affected: 89 - RequestID: wzge5vdejz +2025-06-18T14:09:21.281Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 653ms - IP: 192.168.53.133 - User: user_1074 - RequestID: vkcpseijkm +2025-06-18T14:09:21.381Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 233ms - Rows affected: 67 - RequestID: 0kn5gxlv5f9h +2025-06-18T14:09:21.481Z [TRACE] inventory-service - Auth event: logout - User: user_1031 - IP: 192.168.187.199 - RequestID: t6xhi9397c +2025-06-18T14:09:21.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.53.133 - RequestID: enxfv4jwtqh +2025-06-18T14:09:21.681Z [INFO] user-service - POST /api/v1/orders - Status: 200 - Response time: 1790ms - IP: 192.168.141.100 - User: user_1013 - RequestID: 1uz9zpdjc2z +2025-06-18T14:09:21.781Z [INFO] auth-service - Auth event: logout - User: user_1014 - IP: 192.168.147.171 - RequestID: 278eaiw9kxz +2025-06-18T14:09:21.881Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 50ms - Rows affected: 67 - RequestID: rbsuzw18aso +2025-06-18T14:09:21.981Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 320ms - Rows affected: 74 - RequestID: 95j7x7xb0l +2025-06-18T14:09:22.081Z [DEBUG] order-service - Operation: notification_queued - Processing time: 285ms - RequestID: 3q87t49lc8k +2025-06-18T14:09:22.181Z [INFO] notification-service - Auth event: password_change - User: user_1045 - IP: 192.168.187.199 - RequestID: jwksql91bi +2025-06-18T14:09:22.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 327ms - RequestID: zy81f7b60cd +2025-06-18T14:09:22.381Z [INFO] auth-service - Auth event: password_change - User: user_1014 - IP: 192.168.79.143 - RequestID: aq0lpugkmi6 +2025-06-18T14:09:22.481Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1137ms - IP: 192.168.97.87 - User: user_1020 - RequestID: xnldmv6xtdr +2025-06-18T14:09:22.581Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 435ms - Rows affected: 1 - RequestID: vpdpsvb2k1j +2025-06-18T14:09:22.681Z [INFO] order-service - Auth event: login_failed - User: user_1064 - IP: 192.168.242.165 - RequestID: lktmrz3tys8 +2025-06-18T14:09:22.781Z [TRACE] notification-service - GET /api/v1/orders - Status: 200 - Response time: 475ms - IP: 192.168.229.123 - User: user_1058 - RequestID: xr2tb6yznw +2025-06-18T14:09:22.881Z [INFO] payment-service - POST /api/v1/orders - Status: 401 - Response time: 1414ms - IP: 192.168.133.7 - User: user_1042 - RequestID: bnhggxv4f2l +2025-06-18T14:09:22.981Z [DEBUG] order-service - Operation: cache_miss - Processing time: 64ms - RequestID: k9ycxexjbvk +2025-06-18T14:09:23.081Z [INFO] auth-service - Operation: order_created - Processing time: 925ms - RequestID: bj4wvbf3d4n +2025-06-18T14:09:23.181Z [TRACE] payment-service - Operation: cache_hit - Processing time: 258ms - RequestID: 0e6ju1thmijr +2025-06-18T14:09:23.281Z [TRACE] notification-service - Database SELECT on payments - Execution time: 440ms - Rows affected: 11 - RequestID: d81u567ul1t +2025-06-18T14:09:23.381Z [TRACE] auth-service - Auth event: login_failed - User: user_1049 - IP: 192.168.79.116 - RequestID: wwsivqrvbgh +2025-06-18T14:09:23.481Z [DEBUG] order-service - Auth event: password_change - User: user_1083 - IP: 192.168.44.5 - RequestID: sxutyi6o02f +2025-06-18T14:09:23.581Z [INFO] inventory-service - Auth event: login_success - User: user_1034 - IP: 192.168.1.152 - RequestID: 3qaaepz3c2t +2025-06-18T14:09:23.681Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1385ms - IP: 192.168.100.240 - User: user_1080 - RequestID: rtb9g0cxmqf +2025-06-18T14:09:23.781Z [INFO] order-service - Operation: payment_processed - Processing time: 681ms - RequestID: lq449fuhr6 +2025-06-18T14:09:23.881Z [TRACE] user-service - Operation: notification_queued - Processing time: 413ms - RequestID: 5p4csqi3p46 +2025-06-18T14:09:23.981Z [INFO] order-service - Auth event: login_failed - User: user_1059 - IP: 192.168.68.128 - RequestID: qg9p92xjdi +2025-06-18T14:09:24.081Z [DEBUG] payment-service - Operation: order_created - Processing time: 958ms - RequestID: sa6ppnl9ab +2025-06-18T14:09:24.181Z [DEBUG] auth-service - Auth event: logout - User: user_1071 - IP: 192.168.196.226 - RequestID: ku5dj15stcl +2025-06-18T14:09:24.281Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 400 - Response time: 1112ms - IP: 192.168.158.144 - User: user_1033 - RequestID: ur6fxfbiav +2025-06-18T14:09:24.381Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 65ms - RequestID: s4myp7lufj9 +2025-06-18T14:09:24.481Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 401 - Response time: 68ms - IP: 192.168.167.32 - User: user_1059 - RequestID: 356x8j1bxf1 +2025-06-18T14:09:24.581Z [TRACE] user-service - Database DELETE on payments - Execution time: 212ms - Rows affected: 27 - RequestID: 4w6wnzkdsd3 +2025-06-18T14:09:24.681Z [TRACE] payment-service - Operation: order_created - Processing time: 627ms - RequestID: i31q4uo14ys +2025-06-18T14:09:24.781Z [DEBUG] order-service - PUT /api/v1/payments - Status: 404 - Response time: 525ms - IP: 192.168.32.38 - User: user_1064 - RequestID: 2foax3ohh3a +2025-06-18T14:09:24.881Z [TRACE] notification-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.68.158 - RequestID: imqm50t227p +2025-06-18T14:09:24.981Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 500 - Response time: 364ms - IP: 192.168.235.117 - User: user_1028 - RequestID: ge10fukjvge +2025-06-18T14:09:25.081Z [INFO] inventory-service - Operation: cache_miss - Processing time: 272ms - RequestID: 8dexppdhwso +2025-06-18T14:09:25.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.33.76 - RequestID: hd1yyosj4mp +2025-06-18T14:09:25.281Z [INFO] user-service - Database DELETE on users - Execution time: 129ms - Rows affected: 5 - RequestID: nrsk4nlw9d +2025-06-18T14:09:25.381Z [TRACE] order-service - PUT /api/v1/inventory - Status: 200 - Response time: 553ms - IP: 192.168.104.37 - User: user_1096 - RequestID: 1l9bx64be5k +2025-06-18T14:09:25.481Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 398ms - Rows affected: 91 - RequestID: yfat8mw8xjs +2025-06-18T14:09:25.581Z [TRACE] inventory-service - Auth event: logout - User: user_1077 - IP: 192.168.46.63 - RequestID: n7c4lpkibc +2025-06-18T14:09:25.681Z [TRACE] auth-service - Auth event: logout - User: user_1080 - IP: 192.168.141.100 - RequestID: j33u0x4590s +2025-06-18T14:09:25.781Z [DEBUG] user-service - Auth event: logout - User: user_1088 - IP: 192.168.174.114 - RequestID: 2bpbi67fu5n +2025-06-18T14:09:25.881Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 248ms - Rows affected: 72 - RequestID: 1t45nkx8m4q +2025-06-18T14:09:25.981Z [TRACE] auth-service - Auth event: logout - User: user_1001 - IP: 192.168.81.206 - RequestID: 7zp9btd9u3j +2025-06-18T14:09:26.081Z [INFO] notification-service - Operation: order_created - Processing time: 725ms - RequestID: 6oggncwa0y8 +2025-06-18T14:09:26.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1073 - IP: 192.168.235.117 - RequestID: 1r0z23gy6l7 +2025-06-18T14:09:26.281Z [INFO] payment-service - Database UPDATE on products - Execution time: 438ms - Rows affected: 40 - RequestID: ezhnzzhhji +2025-06-18T14:09:26.381Z [TRACE] order-service - GET /api/v1/orders - Status: 403 - Response time: 1930ms - IP: 192.168.81.206 - User: user_1073 - RequestID: wso2jrriow +2025-06-18T14:09:26.481Z [INFO] order-service - Auth event: login_success - User: user_1080 - IP: 192.168.144.38 - RequestID: zmqob6vz92 +2025-06-18T14:09:26.581Z [TRACE] payment-service - Auth event: password_change - User: user_1015 - IP: 192.168.158.144 - RequestID: ehwqzp5l3z +2025-06-18T14:09:26.681Z [TRACE] inventory-service - Operation: email_sent - Processing time: 450ms - RequestID: 6qiq473rda +2025-06-18T14:09:26.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1086 - IP: 192.168.68.128 - RequestID: 9ln7mxm5rer +2025-06-18T14:09:26.881Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 134ms - RequestID: nzvv9tm00d +2025-06-18T14:09:26.981Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 93ms - RequestID: cbcpvvucc5o +2025-06-18T14:09:27.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1044 - IP: 192.168.33.76 - RequestID: th8u6ab3kid +2025-06-18T14:09:27.181Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1138ms - IP: 192.168.170.215 - User: user_1040 - RequestID: j75ne0uweic +2025-06-18T14:09:27.281Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1829ms - IP: 192.168.187.199 - User: user_1046 - RequestID: s4vq2vk5tj +2025-06-18T14:09:27.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1077 - IP: 192.168.85.229 - RequestID: y04e8lu8a0k +2025-06-18T14:09:27.481Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 400 - Response time: 1449ms - IP: 192.168.141.100 - User: user_1081 - RequestID: q2p6ommz2pk +2025-06-18T14:09:27.581Z [DEBUG] notification-service - Auth event: logout - User: user_1071 - IP: 192.168.189.103 - RequestID: kzrgc27zc58 +2025-06-18T14:09:27.681Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 483ms - Rows affected: 60 - RequestID: 6qgq27t49c +2025-06-18T14:09:27.781Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 488ms - Rows affected: 87 - RequestID: kz3qwofomus +2025-06-18T14:09:27.881Z [DEBUG] order-service - Auth event: logout - User: user_1080 - IP: 192.168.64.33 - RequestID: tebotomu86d +2025-06-18T14:09:27.981Z [INFO] notification-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.211.72 - RequestID: zattuokjd3m +2025-06-18T14:09:28.081Z [INFO] payment-service - Auth event: login_failed - User: user_1016 - IP: 192.168.187.199 - RequestID: am9a02ml8q9 +2025-06-18T14:09:28.181Z [DEBUG] user-service - Operation: order_created - Processing time: 600ms - RequestID: 8v0i4ugpgk7 +2025-06-18T14:09:28.281Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 62ms - Rows affected: 52 - RequestID: hkc3qvojbpc +2025-06-18T14:09:28.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1038 - IP: 192.168.144.38 - RequestID: 8hkdf43bopd +2025-06-18T14:09:28.481Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 400 - Response time: 133ms - IP: 192.168.194.41 - User: user_1087 - RequestID: zkvvffzt2q +2025-06-18T14:09:28.581Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 248ms - Rows affected: 46 - RequestID: hb7q6t4a7j +2025-06-18T14:09:28.681Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 107ms - RequestID: umv3ggcd0t +2025-06-18T14:09:28.781Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1470ms - IP: 192.168.64.33 - User: user_1038 - RequestID: 4vzsb1o58k +2025-06-18T14:09:28.881Z [INFO] auth-service - Operation: cache_hit - Processing time: 1044ms - RequestID: odzihg42akl +2025-06-18T14:09:28.981Z [INFO] auth-service - Database SELECT on sessions - Execution time: 325ms - Rows affected: 65 - RequestID: m1pwbd42jsi +2025-06-18T14:09:29.081Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 214ms - Rows affected: 26 - RequestID: k26am7xdrh +2025-06-18T14:09:29.181Z [INFO] payment-service - PATCH /api/v1/payments - Status: 503 - Response time: 1181ms - IP: 192.168.10.184 - User: user_1008 - RequestID: aaovgxbcoaw +2025-06-18T14:09:29.281Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1564ms - IP: 192.168.189.103 - User: user_1063 - RequestID: qiaxqxcje8l +2025-06-18T14:09:29.381Z [DEBUG] payment-service - Operation: email_sent - Processing time: 303ms - RequestID: oacfyf8uhir +2025-06-18T14:09:29.481Z [INFO] user-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1046ms - IP: 192.168.189.103 - User: user_1063 - RequestID: un9vnpfywjs +2025-06-18T14:09:29.581Z [INFO] auth-service - GET /api/v1/auth/login - Status: 403 - Response time: 1379ms - IP: 192.168.85.229 - User: user_1067 - RequestID: dwmc730my48 +2025-06-18T14:09:29.681Z [TRACE] order-service - POST /api/v1/inventory - Status: 200 - Response time: 762ms - IP: 192.168.147.171 - User: user_1097 - RequestID: gh0kh1z3k3 +2025-06-18T14:09:29.781Z [INFO] notification-service - Auth event: login_failed - User: user_1007 - IP: 192.168.46.63 - RequestID: nh8x6jbksp +2025-06-18T14:09:29.881Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 403 - Response time: 1794ms - IP: 192.168.170.215 - User: user_1000 - RequestID: 20bn96njhuz +2025-06-18T14:09:29.981Z [TRACE] order-service - Database UPDATE on products - Execution time: 104ms - Rows affected: 62 - RequestID: tct4v9wb78i +2025-06-18T14:09:30.081Z [TRACE] payment-service - Operation: cache_hit - Processing time: 107ms - RequestID: lewfawl4mtr +2025-06-18T14:09:30.181Z [DEBUG] order-service - Auth event: password_change - User: user_1084 - IP: 192.168.133.7 - RequestID: cecfb7fa3i +2025-06-18T14:09:30.281Z [DEBUG] user-service - PUT /api/v1/payments - Status: 502 - Response time: 214ms - IP: 192.168.247.134 - User: user_1010 - RequestID: ejscbj5ruow +2025-06-18T14:09:30.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1057 - IP: 192.168.28.146 - RequestID: 859v638ynp +2025-06-18T14:09:30.481Z [DEBUG] user-service - Operation: notification_queued - Processing time: 409ms - RequestID: g2vhrd6mybh +2025-06-18T14:09:30.581Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 20ms - Rows affected: 40 - RequestID: ax8jf1c514u +2025-06-18T14:09:30.681Z [INFO] inventory-service - POST /api/v1/payments - Status: 401 - Response time: 857ms - IP: 192.168.242.165 - User: user_1051 - RequestID: tag0l5c385d +2025-06-18T14:09:30.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1046 - IP: 192.168.79.141 - RequestID: trkmjtkuqy8 +2025-06-18T14:09:30.881Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 348ms - Rows affected: 43 - RequestID: zrowc8zyvoc +2025-06-18T14:09:30.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.14.77 - RequestID: b8qc1hrly2j +2025-06-18T14:09:31.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 182ms - RequestID: v7g22o80k0h +2025-06-18T14:09:31.181Z [TRACE] notification-service - Operation: order_created - Processing time: 53ms - RequestID: 4l13v7xzk4s +2025-06-18T14:09:31.281Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 502 - Response time: 1178ms - IP: 192.168.36.218 - User: user_1025 - RequestID: 6ily1qc6zpg +2025-06-18T14:09:31.381Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1109ms - IP: 192.168.242.165 - User: user_1016 - RequestID: eo3inhxr47c +2025-06-18T14:09:31.481Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 403 - Response time: 439ms - IP: 192.168.187.199 - User: user_1004 - RequestID: ulf71hv1ax +2025-06-18T14:09:31.581Z [INFO] user-service - Database INSERT on sessions - Execution time: 373ms - Rows affected: 91 - RequestID: 2dktbllafpp +2025-06-18T14:09:31.681Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 115ms - Rows affected: 35 - RequestID: f70w321n06n +2025-06-18T14:09:31.781Z [TRACE] auth-service - Operation: cache_miss - Processing time: 681ms - RequestID: h61exnct8lt +2025-06-18T14:09:31.881Z [INFO] inventory-service - Database SELECT on users - Execution time: 439ms - Rows affected: 37 - RequestID: u74gitc5tkb +2025-06-18T14:09:31.981Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 400 - Response time: 893ms - IP: 192.168.229.123 - User: user_1034 - RequestID: jfuw1lbudj +2025-06-18T14:09:32.081Z [INFO] notification-service - Auth event: login_success - User: user_1068 - IP: 192.168.235.117 - RequestID: ygqbb741tqh +2025-06-18T14:09:32.181Z [INFO] inventory-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.31.117 - RequestID: v7r51r0w3i +2025-06-18T14:09:32.281Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 431ms - Rows affected: 47 - RequestID: mz5vybs64m +2025-06-18T14:09:32.381Z [INFO] user-service - Database INSERT on sessions - Execution time: 6ms - Rows affected: 14 - RequestID: zybsgpwe6s +2025-06-18T14:09:32.481Z [DEBUG] payment-service - Auth event: logout - User: user_1088 - IP: 192.168.229.123 - RequestID: jnw7v2vx7aa +2025-06-18T14:09:32.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1059 - IP: 192.168.79.143 - RequestID: tiwasjuey9d +2025-06-18T14:09:32.681Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 713ms - RequestID: vvdv4ae1rn +2025-06-18T14:09:32.781Z [INFO] notification-service - PATCH /api/v1/users - Status: 500 - Response time: 734ms - IP: 192.168.46.63 - User: user_1080 - RequestID: ivzjmyw0rlj +2025-06-18T14:09:32.881Z [INFO] inventory-service - POST /api/v1/users - Status: 401 - Response time: 1228ms - IP: 192.168.33.76 - User: user_1080 - RequestID: bln97itlpm7 +2025-06-18T14:09:32.981Z [TRACE] payment-service - Operation: notification_queued - Processing time: 831ms - RequestID: 9qh7w58mnni +2025-06-18T14:09:33.081Z [INFO] order-service - Auth event: login_success - User: user_1055 - IP: 192.168.170.215 - RequestID: 3pmd25kmml2 +2025-06-18T14:09:33.181Z [INFO] user-service - Database UPDATE on products - Execution time: 56ms - Rows affected: 44 - RequestID: xthz6y0h45o +2025-06-18T14:09:33.281Z [TRACE] inventory-service - Auth event: login_success - User: user_1017 - IP: 192.168.46.63 - RequestID: p225htv7n3o +2025-06-18T14:09:33.381Z [DEBUG] order-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.32.38 - RequestID: aqhe2jjrj0n +2025-06-18T14:09:33.481Z [INFO] order-service - Operation: order_created - Processing time: 415ms - RequestID: h9s5lm6zamb +2025-06-18T14:09:33.581Z [TRACE] payment-service - GET /api/v1/inventory - Status: 500 - Response time: 1067ms - IP: 192.168.240.169 - User: user_1059 - RequestID: wgmy3eb0uw +2025-06-18T14:09:33.681Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 178ms - Rows affected: 33 - RequestID: 52ajqw240c5 +2025-06-18T14:09:33.781Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 114ms - Rows affected: 4 - RequestID: fdlyzmhkw2e +2025-06-18T14:09:33.881Z [TRACE] inventory-service - Operation: order_created - Processing time: 66ms - RequestID: 4yj2mj5pgfv +2025-06-18T14:09:33.981Z [TRACE] order-service - Database UPDATE on products - Execution time: 140ms - Rows affected: 36 - RequestID: emjf9ftmbo +2025-06-18T14:09:34.081Z [INFO] payment-service - GET /api/v1/users - Status: 500 - Response time: 780ms - IP: 192.168.10.184 - User: user_1000 - RequestID: 9d213w25lu8 +2025-06-18T14:09:34.181Z [INFO] inventory-service - DELETE /api/v1/users - Status: 201 - Response time: 322ms - IP: 192.168.33.76 - User: user_1073 - RequestID: 0i3lfpzx8id4 +2025-06-18T14:09:34.281Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1110ms - IP: 192.168.235.117 - User: user_1050 - RequestID: 1erfcpc984rj +2025-06-18T14:09:34.381Z [INFO] notification-service - POST /api/v1/orders - Status: 201 - Response time: 1606ms - IP: 192.168.81.206 - User: user_1035 - RequestID: y4dv100vzws +2025-06-18T14:09:34.481Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 610ms - RequestID: b9zo1c0ff5t +2025-06-18T14:09:34.581Z [TRACE] user-service - Operation: cache_hit - Processing time: 1018ms - RequestID: ar416pi7rmf +2025-06-18T14:09:34.681Z [TRACE] inventory-service - Operation: email_sent - Processing time: 894ms - RequestID: tpg3crwzqng +2025-06-18T14:09:34.781Z [TRACE] notification-service - Auth event: login_failed - User: user_1040 - IP: 192.168.79.141 - RequestID: hkqw6hmzvxr +2025-06-18T14:09:34.881Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 404 - Response time: 365ms - IP: 192.168.104.37 - User: user_1071 - RequestID: dgi2vh47lni +2025-06-18T14:09:34.981Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1630ms - IP: 192.168.189.103 - User: user_1047 - RequestID: pdp61ita0so +2025-06-18T14:09:35.081Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 267ms - Rows affected: 97 - RequestID: 6zc3sp5kxm8 +2025-06-18T14:09:35.181Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1036ms - IP: 192.168.31.117 - User: user_1010 - RequestID: kmcli251608 +2025-06-18T14:09:35.281Z [INFO] auth-service - Database SELECT on orders - Execution time: 189ms - Rows affected: 54 - RequestID: c35prok11 +2025-06-18T14:09:35.381Z [TRACE] inventory-service - GET /api/v1/users - Status: 403 - Response time: 1272ms - IP: 192.168.235.117 - User: user_1036 - RequestID: lg0f74vc6x +2025-06-18T14:09:35.481Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 500 - Response time: 1923ms - IP: 192.168.46.63 - User: user_1041 - RequestID: wd8dr8lt12q +2025-06-18T14:09:35.581Z [DEBUG] payment-service - GET /api/v1/orders - Status: 503 - Response time: 1351ms - IP: 192.168.97.87 - User: user_1035 - RequestID: 07ohlzczkgt3 +2025-06-18T14:09:35.681Z [TRACE] user-service - Database UPDATE on products - Execution time: 21ms - Rows affected: 37 - RequestID: 8zdtfj0pjbf +2025-06-18T14:09:35.781Z [INFO] payment-service - Operation: email_sent - Processing time: 497ms - RequestID: dmguyktk7r5 +2025-06-18T14:09:35.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 535ms - RequestID: idwjiyyt12e +2025-06-18T14:09:35.981Z [DEBUG] inventory-service - Auth event: logout - User: user_1026 - IP: 192.168.11.60 - RequestID: 3c48bpz9p0s +2025-06-18T14:09:36.081Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1912ms - IP: 192.168.53.133 - User: user_1011 - RequestID: sbhsionzwy +2025-06-18T14:09:36.181Z [TRACE] order-service - PUT /api/v1/inventory - Status: 404 - Response time: 1237ms - IP: 192.168.147.171 - User: user_1090 - RequestID: j668m85v1zd +2025-06-18T14:09:36.281Z [TRACE] user-service - GET /api/v1/payments - Status: 201 - Response time: 1155ms - IP: 192.168.30.79 - User: user_1040 - RequestID: fa66c878olf +2025-06-18T14:09:36.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.235.117 - RequestID: d0rkceflicq +2025-06-18T14:09:36.481Z [TRACE] auth-service - Auth event: login_success - User: user_1088 - IP: 192.168.68.128 - RequestID: 1rojtzydi6nj +2025-06-18T14:09:36.581Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1608ms - IP: 192.168.79.143 - User: user_1095 - RequestID: a51l02k6vpe +2025-06-18T14:09:36.681Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 318ms - Rows affected: 8 - RequestID: cfsmb3sceij +2025-06-18T14:09:36.781Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 400ms - Rows affected: 26 - RequestID: wvvwtc9pn5 +2025-06-18T14:09:36.881Z [TRACE] order-service - Operation: inventory_updated - Processing time: 898ms - RequestID: 970ihktu15l +2025-06-18T14:09:36.981Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 200 - Response time: 1088ms - IP: 192.168.235.117 - User: user_1007 - RequestID: 7sza983d837 +2025-06-18T14:09:37.081Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 500 - Response time: 315ms - IP: 192.168.189.103 - User: user_1099 - RequestID: 4znyfihiqmk +2025-06-18T14:09:37.181Z [INFO] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 374ms - IP: 192.168.232.72 - User: user_1082 - RequestID: 3zyfnl43pc7 +2025-06-18T14:09:37.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.247.134 - RequestID: numbjozxj8d +2025-06-18T14:09:37.381Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 403 - Response time: 820ms - IP: 192.168.68.158 - User: user_1002 - RequestID: xwspitmczr9 +2025-06-18T14:09:37.481Z [TRACE] user-service - POST /api/v1/inventory - Status: 201 - Response time: 54ms - IP: 192.168.159.94 - User: user_1031 - RequestID: zod47d9hd2n +2025-06-18T14:09:37.581Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 309ms - Rows affected: 46 - RequestID: m96sq8rf8ym +2025-06-18T14:09:37.681Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 214ms - Rows affected: 17 - RequestID: j33zj74muxb +2025-06-18T14:09:37.781Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 27ms - Rows affected: 91 - RequestID: o3pxqv6rf3 +2025-06-18T14:09:37.881Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 591ms - IP: 192.168.159.94 - User: user_1042 - RequestID: iybwh57k6k +2025-06-18T14:09:37.981Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 164ms - Rows affected: 80 - RequestID: z06l63g6d +2025-06-18T14:09:38.081Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 400 - Response time: 663ms - IP: 192.168.46.63 - User: user_1008 - RequestID: a4k736exqhc +2025-06-18T14:09:38.181Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 18ms - Rows affected: 35 - RequestID: 5q2901ew108 +2025-06-18T14:09:38.281Z [TRACE] auth-service - Operation: notification_queued - Processing time: 162ms - RequestID: r6ms70wveyj +2025-06-18T14:09:38.381Z [TRACE] notification-service - Auth event: login_success - User: user_1049 - IP: 192.168.79.116 - RequestID: lqsz5lrczc +2025-06-18T14:09:38.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 252ms - RequestID: k9mht9xt0u +2025-06-18T14:09:38.581Z [TRACE] order-service - Operation: webhook_sent - Processing time: 803ms - RequestID: zvhh68wwmk +2025-06-18T14:09:38.681Z [INFO] user-service - GET /api/v1/payments - Status: 403 - Response time: 1230ms - IP: 192.168.1.152 - User: user_1009 - RequestID: rpqv5tcvgad +2025-06-18T14:09:38.781Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1117ms - IP: 192.168.11.60 - User: user_1033 - RequestID: c9g88uvhzi4 +2025-06-18T14:09:38.881Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 99ms - Rows affected: 82 - RequestID: gs5evb1ry4 +2025-06-18T14:09:38.981Z [TRACE] payment-service - PUT /api/v1/payments - Status: 403 - Response time: 1642ms - IP: 192.168.68.158 - User: user_1090 - RequestID: pi3a02lvgms +2025-06-18T14:09:39.081Z [INFO] order-service - Database UPDATE on orders - Execution time: 415ms - Rows affected: 86 - RequestID: dc9qse5nq2t +2025-06-18T14:09:39.181Z [INFO] inventory-service - Operation: notification_queued - Processing time: 689ms - RequestID: 6vq3g28nw3 +2025-06-18T14:09:39.281Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 25ms - Rows affected: 32 - RequestID: novakm6plp8 +2025-06-18T14:09:39.381Z [DEBUG] order-service - GET /api/v1/orders - Status: 403 - Response time: 79ms - IP: 192.168.147.171 - User: user_1028 - RequestID: vdhjkp9r9gb +2025-06-18T14:09:39.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1008 - IP: 192.168.68.158 - RequestID: 7yf1pzzncno +2025-06-18T14:09:39.581Z [TRACE] order-service - Auth event: login_success - User: user_1091 - IP: 192.168.28.146 - RequestID: 3inw0lpxmjd +2025-06-18T14:09:39.681Z [INFO] order-service - Operation: payment_processed - Processing time: 785ms - RequestID: 8wl6ppnk0ql +2025-06-18T14:09:39.781Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 342ms - Rows affected: 51 - RequestID: 83s7n65396h +2025-06-18T14:09:39.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.158.144 - RequestID: 9gtvxth7o8c +2025-06-18T14:09:39.981Z [TRACE] inventory-service - POST /api/v1/payments - Status: 502 - Response time: 1453ms - IP: 192.168.138.123 - User: user_1010 - RequestID: fcztjj5m4sn +2025-06-18T14:09:40.081Z [INFO] order-service - Auth event: login_success - User: user_1046 - IP: 192.168.141.100 - RequestID: plaabyn135 +2025-06-18T14:09:40.181Z [TRACE] order-service - Auth event: login_failed - User: user_1018 - IP: 192.168.33.76 - RequestID: 8i2gvk3opip +2025-06-18T14:09:40.281Z [DEBUG] order-service - PUT /api/v1/orders - Status: 200 - Response time: 281ms - IP: 192.168.211.72 - User: user_1008 - RequestID: zwzm724qffi +2025-06-18T14:09:40.381Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 104ms - RequestID: qt77wfw203f +2025-06-18T14:09:40.481Z [TRACE] notification-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.100.240 - RequestID: ug8h5o99ft +2025-06-18T14:09:40.581Z [DEBUG] auth-service - Auth event: login_success - User: user_1033 - IP: 192.168.97.87 - RequestID: p9n59kpdwio +2025-06-18T14:09:40.681Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.181.225 - RequestID: 89gviv7x9yb +2025-06-18T14:09:40.781Z [INFO] order-service - PATCH /api/v1/users - Status: 404 - Response time: 1241ms - IP: 192.168.174.114 - User: user_1078 - RequestID: aadu35embdi +2025-06-18T14:09:40.881Z [INFO] order-service - GET /api/v1/auth/login - Status: 400 - Response time: 1417ms - IP: 192.168.147.171 - User: user_1037 - RequestID: fs4dkmboy1 +2025-06-18T14:09:40.981Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 291ms - Rows affected: 14 - RequestID: y1mcz4525sf +2025-06-18T14:09:41.081Z [INFO] user-service - Database UPDATE on users - Execution time: 198ms - Rows affected: 96 - RequestID: 36q0dk25m5z +2025-06-18T14:09:41.181Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 33ms - Rows affected: 57 - RequestID: 4xsemu7m1d2 +2025-06-18T14:09:41.281Z [DEBUG] auth-service - Operation: email_sent - Processing time: 83ms - RequestID: zrqzn4nu3q8 +2025-06-18T14:09:41.381Z [INFO] order-service - PUT /api/v1/orders - Status: 400 - Response time: 870ms - IP: 192.168.144.38 - User: user_1054 - RequestID: zos9uzjgzti +2025-06-18T14:09:41.481Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 200 - Response time: 870ms - IP: 192.168.32.38 - User: user_1053 - RequestID: hoqe2if18yp +2025-06-18T14:09:41.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.44.5 - RequestID: fpbn762xgyh +2025-06-18T14:09:41.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.158.144 - RequestID: bjiyepyoa6v +2025-06-18T14:09:41.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 209ms - RequestID: jzt9v9e0r3 +2025-06-18T14:09:41.881Z [DEBUG] order-service - Database DELETE on payments - Execution time: 403ms - Rows affected: 82 - RequestID: hhsrpzdmt9c +2025-06-18T14:09:41.981Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 792ms - RequestID: ppf4xwhmmcr +2025-06-18T14:09:42.081Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 347ms - Rows affected: 21 - RequestID: 6z94qarkobx +2025-06-18T14:09:42.181Z [INFO] order-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.211.72 - RequestID: fw76s2b4kup +2025-06-18T14:09:42.281Z [INFO] auth-service - POST /api/v1/auth/login - Status: 400 - Response time: 1352ms - IP: 192.168.30.79 - User: user_1036 - RequestID: hbi8or5m6nc +2025-06-18T14:09:42.381Z [DEBUG] notification-service - Auth event: logout - User: user_1026 - IP: 192.168.97.87 - RequestID: dzoxrtohbb +2025-06-18T14:09:42.481Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 376ms - Rows affected: 40 - RequestID: szjr1yzf0y +2025-06-18T14:09:42.581Z [TRACE] user-service - Operation: order_created - Processing time: 602ms - RequestID: xddoqrbpodh +2025-06-18T14:09:42.681Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 716ms - RequestID: ts0k3r92ya +2025-06-18T14:09:42.781Z [INFO] auth-service - Operation: notification_queued - Processing time: 931ms - RequestID: xx7mlzhyh1b +2025-06-18T14:09:42.881Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 256ms - RequestID: 0bnlxq44brxe +2025-06-18T14:09:42.981Z [DEBUG] notification-service - Auth event: login_success - User: user_1084 - IP: 192.168.46.63 - RequestID: hvm37lohav7 +2025-06-18T14:09:43.081Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 190ms - RequestID: k9j0weg5i2 +2025-06-18T14:09:43.181Z [INFO] auth-service - Operation: inventory_updated - Processing time: 847ms - RequestID: 4xmtqxrs64l +2025-06-18T14:09:43.281Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1340ms - IP: 192.168.11.60 - User: user_1067 - RequestID: 8k2ea3kx3f +2025-06-18T14:09:43.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1092 - IP: 192.168.79.116 - RequestID: vaixub26g8 +2025-06-18T14:09:43.481Z [TRACE] user-service - DELETE /api/v1/users - Status: 200 - Response time: 266ms - IP: 192.168.138.123 - User: user_1015 - RequestID: lxthwt29dm +2025-06-18T14:09:43.581Z [INFO] auth-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.11.60 - RequestID: ltu91s5mxc +2025-06-18T14:09:43.681Z [DEBUG] notification-service - Database SELECT on users - Execution time: 55ms - Rows affected: 5 - RequestID: 3vy6hlejqvw +2025-06-18T14:09:43.781Z [INFO] order-service - Operation: notification_queued - Processing time: 993ms - RequestID: ik0b2rz6ino +2025-06-18T14:09:43.881Z [INFO] payment-service - POST /api/v1/users - Status: 502 - Response time: 147ms - IP: 192.168.144.38 - User: user_1068 - RequestID: c53j5cd3as5 +2025-06-18T14:09:43.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1087 - IP: 192.168.32.38 - RequestID: qi0ewlaqwx +2025-06-18T14:09:44.081Z [INFO] order-service - PATCH /api/v1/users - Status: 404 - Response time: 1666ms - IP: 192.168.68.158 - User: user_1068 - RequestID: e0mweahr3qh +2025-06-18T14:09:44.181Z [INFO] user-service - PUT /api/v1/users - Status: 502 - Response time: 1992ms - IP: 192.168.144.38 - User: user_1020 - RequestID: ecfcr7ez8qc +2025-06-18T14:09:44.281Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 360ms - Rows affected: 44 - RequestID: 3dv1ahm8p9i +2025-06-18T14:09:44.381Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 357ms - Rows affected: 88 - RequestID: ttulssst2te +2025-06-18T14:09:44.481Z [INFO] inventory-service - Database INSERT on payments - Execution time: 487ms - Rows affected: 37 - RequestID: a93ghfo9enr +2025-06-18T14:09:44.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.79.116 - RequestID: xu4dclw1eg +2025-06-18T14:09:44.681Z [DEBUG] notification-service - Operation: order_created - Processing time: 390ms - RequestID: am7fp53fip +2025-06-18T14:09:44.781Z [INFO] order-service - PUT /api/v1/users - Status: 500 - Response time: 1776ms - IP: 192.168.30.79 - User: user_1077 - RequestID: 4yei33ti35g +2025-06-18T14:09:44.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.174.114 - RequestID: phomw3q4j1s +2025-06-18T14:09:44.981Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 144ms - Rows affected: 6 - RequestID: qf9z26jfs6l +2025-06-18T14:09:45.081Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 200 - Response time: 223ms - IP: 192.168.133.7 - User: user_1007 - RequestID: y3a5fk1v0c +2025-06-18T14:09:45.181Z [INFO] order-service - Operation: payment_processed - Processing time: 761ms - RequestID: u2hadklxk4 +2025-06-18T14:09:45.281Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 401 - Response time: 946ms - IP: 192.168.196.226 - User: user_1031 - RequestID: cs69uixqqqn +2025-06-18T14:09:45.381Z [TRACE] payment-service - Database SELECT on users - Execution time: 266ms - Rows affected: 38 - RequestID: 35eywcfgezq +2025-06-18T14:09:45.481Z [INFO] payment-service - Database UPDATE on payments - Execution time: 252ms - Rows affected: 50 - RequestID: oq9l45kz7ec +2025-06-18T14:09:45.581Z [TRACE] user-service - Database INSERT on sessions - Execution time: 7ms - Rows affected: 74 - RequestID: y7yc2nr5se +2025-06-18T14:09:45.681Z [INFO] auth-service - Operation: order_created - Processing time: 128ms - RequestID: exgpt5utlx6 +2025-06-18T14:09:45.781Z [INFO] notification-service - Database INSERT on products - Execution time: 175ms - Rows affected: 48 - RequestID: ow54j1rx5re +2025-06-18T14:09:45.881Z [DEBUG] notification-service - Operation: order_created - Processing time: 161ms - RequestID: f1a083iyj28 +2025-06-18T14:09:45.981Z [TRACE] user-service - GET /api/v1/orders - Status: 201 - Response time: 1028ms - IP: 192.168.194.41 - User: user_1031 - RequestID: yhw3in6ecj +2025-06-18T14:09:46.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 302ms - RequestID: tyg7nz8gf9q +2025-06-18T14:09:46.181Z [TRACE] inventory-service - Database DELETE on users - Execution time: 396ms - Rows affected: 13 - RequestID: 9b8xp7rmsf +2025-06-18T14:09:46.281Z [DEBUG] user-service - Database INSERT on payments - Execution time: 154ms - Rows affected: 0 - RequestID: of215uqvaf +2025-06-18T14:09:46.381Z [INFO] order-service - Operation: email_sent - Processing time: 699ms - RequestID: idxrtxm7ur +2025-06-18T14:09:46.481Z [DEBUG] notification-service - POST /api/v1/payments - Status: 401 - Response time: 1685ms - IP: 192.168.68.158 - User: user_1045 - RequestID: b6q3pgs019 +2025-06-18T14:09:46.581Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 403 - Response time: 1076ms - IP: 192.168.104.37 - User: user_1093 - RequestID: p642co91be +2025-06-18T14:09:46.681Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 304ms - Rows affected: 81 - RequestID: 1lho0cvk7x3 +2025-06-18T14:09:46.781Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 168ms - Rows affected: 50 - RequestID: rk4729ta62d +2025-06-18T14:09:46.881Z [TRACE] auth-service - POST /api/v1/orders - Status: 500 - Response time: 957ms - IP: 192.168.189.103 - User: user_1016 - RequestID: to8bid477uq +2025-06-18T14:09:46.981Z [INFO] order-service - Operation: notification_queued - Processing time: 788ms - RequestID: ode54i2zun +2025-06-18T14:09:47.081Z [DEBUG] payment-service - Auth event: login_failed - User: user_1099 - IP: 192.168.32.38 - RequestID: vnllm4thdw +2025-06-18T14:09:47.181Z [DEBUG] auth-service - Auth event: password_change - User: user_1023 - IP: 192.168.147.171 - RequestID: s4qggxgs18 +2025-06-18T14:09:47.281Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 500 - Response time: 802ms - IP: 192.168.232.72 - User: user_1041 - RequestID: fy6wl9t1vp9 +2025-06-18T14:09:47.381Z [DEBUG] user-service - Operation: payment_processed - Processing time: 836ms - RequestID: bxmx442elyq +2025-06-18T14:09:47.481Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1158ms - IP: 192.168.10.184 - User: user_1025 - RequestID: 5b1cppgepwm +2025-06-18T14:09:47.581Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 44ms - Rows affected: 72 - RequestID: zde15lbp37p +2025-06-18T14:09:47.681Z [TRACE] order-service - POST /api/v1/payments - Status: 404 - Response time: 1899ms - IP: 192.168.189.103 - User: user_1005 - RequestID: me1i6uedwk +2025-06-18T14:09:47.781Z [TRACE] payment-service - Operation: order_created - Processing time: 541ms - RequestID: q3lvaxo8kig +2025-06-18T14:09:47.881Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 503 - Response time: 176ms - IP: 192.168.235.117 - User: user_1082 - RequestID: tmkeos98in +2025-06-18T14:09:47.981Z [DEBUG] order-service - Auth event: login_success - User: user_1070 - IP: 192.168.141.100 - RequestID: n7bmhnfxhe +2025-06-18T14:09:48.081Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 357ms - Rows affected: 17 - RequestID: ipwo55a75lh +2025-06-18T14:09:48.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 570ms - RequestID: q7twm7sy0z +2025-06-18T14:09:48.281Z [TRACE] notification-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.46.63 - RequestID: 7q2m2m1u74a +2025-06-18T14:09:48.381Z [INFO] inventory-service - Operation: notification_queued - Processing time: 667ms - RequestID: 7jxsf91dk4u +2025-06-18T14:09:48.481Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 71ms - Rows affected: 94 - RequestID: o1rdau6zqek +2025-06-18T14:09:48.581Z [DEBUG] order-service - Operation: payment_processed - Processing time: 341ms - RequestID: pffdf100j1 +2025-06-18T14:09:48.681Z [INFO] auth-service - Database DELETE on sessions - Execution time: 447ms - Rows affected: 69 - RequestID: cloquivnvoi +2025-06-18T14:09:48.781Z [TRACE] auth-service - Database DELETE on products - Execution time: 241ms - Rows affected: 44 - RequestID: sszrercojch +2025-06-18T14:09:48.881Z [INFO] payment-service - Database DELETE on products - Execution time: 113ms - Rows affected: 27 - RequestID: k3fw8kqaqc +2025-06-18T14:09:48.981Z [DEBUG] inventory-service - Auth event: logout - User: user_1014 - IP: 192.168.13.72 - RequestID: k9opmalejp +2025-06-18T14:09:49.081Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 710ms - RequestID: 6vv6f895nc4 +2025-06-18T14:09:49.181Z [INFO] inventory-service - Database SELECT on orders - Execution time: 104ms - Rows affected: 0 - RequestID: 0k7c8vannphc +2025-06-18T14:09:49.281Z [INFO] order-service - Auth event: password_change - User: user_1071 - IP: 192.168.104.37 - RequestID: 3wfkkvkfrwg +2025-06-18T14:09:49.381Z [TRACE] order-service - PUT /api/v1/payments - Status: 502 - Response time: 1627ms - IP: 192.168.141.100 - User: user_1020 - RequestID: f0vr9k34map +2025-06-18T14:09:49.481Z [TRACE] order-service - Auth event: password_change - User: user_1064 - IP: 192.168.33.76 - RequestID: 39rseshnpxw +2025-06-18T14:09:49.581Z [TRACE] payment-service - Database DELETE on users - Execution time: 223ms - Rows affected: 3 - RequestID: kvixyvemtjs +2025-06-18T14:09:49.681Z [INFO] user-service - PUT /api/v1/users - Status: 403 - Response time: 457ms - IP: 192.168.144.38 - User: user_1034 - RequestID: g0wtxvo8rrl +2025-06-18T14:09:49.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.14.77 - RequestID: ssl9h832oij +2025-06-18T14:09:49.881Z [TRACE] payment-service - Operation: notification_queued - Processing time: 850ms - RequestID: lfzggwt9o4l +2025-06-18T14:09:49.981Z [TRACE] notification-service - Auth event: logout - User: user_1043 - IP: 192.168.240.169 - RequestID: czyb41e605k +2025-06-18T14:09:50.081Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 533ms - RequestID: 91zivyole45 +2025-06-18T14:09:50.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.187.199 - RequestID: 97l97zyhqi +2025-06-18T14:09:50.281Z [INFO] user-service - Operation: notification_queued - Processing time: 397ms - RequestID: bmucul31aqi +2025-06-18T14:09:50.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.181.225 - RequestID: szlp67ob5ej +2025-06-18T14:09:50.481Z [INFO] user-service - Auth event: login_failed - User: user_1071 - IP: 192.168.79.143 - RequestID: l9sxce74ubd +2025-06-18T14:09:50.581Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 856ms - IP: 192.168.81.206 - User: user_1066 - RequestID: q0swen5192 +2025-06-18T14:09:50.681Z [DEBUG] payment-service - Database SELECT on users - Execution time: 413ms - Rows affected: 46 - RequestID: yrsekiqde8a +2025-06-18T14:09:50.781Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 95ms - Rows affected: 2 - RequestID: ose620r9ok +2025-06-18T14:09:50.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1034 - IP: 192.168.64.33 - RequestID: fv21ady8yh +2025-06-18T14:09:50.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.138.123 - RequestID: h5fhwpmgxkd +2025-06-18T14:09:51.081Z [DEBUG] user-service - Operation: cache_miss - Processing time: 903ms - RequestID: k27rd52s3m +2025-06-18T14:09:51.181Z [INFO] inventory-service - Auth event: logout - User: user_1019 - IP: 192.168.174.114 - RequestID: mi1yz1gh91l +2025-06-18T14:09:51.281Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 461ms - Rows affected: 63 - RequestID: ei6u9odyufe +2025-06-18T14:09:51.381Z [INFO] user-service - GET /api/v1/payments - Status: 503 - Response time: 1230ms - IP: 192.168.240.169 - User: user_1027 - RequestID: sh6n4fi9kg8 +2025-06-18T14:09:51.481Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 255ms - RequestID: pwras1pdit +2025-06-18T14:09:51.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.194.41 - RequestID: 8uzoo2e5t6a +2025-06-18T14:09:51.681Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 503 - Response time: 78ms - IP: 192.168.159.94 - User: user_1003 - RequestID: 4ghepk57eyr +2025-06-18T14:09:51.781Z [TRACE] payment-service - Operation: payment_processed - Processing time: 820ms - RequestID: 0hrrhwa41aml +2025-06-18T14:09:51.881Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 111ms - Rows affected: 76 - RequestID: 8l1k8fas4n8 +2025-06-18T14:09:51.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.85.229 - RequestID: qbdjlg6vqo +2025-06-18T14:09:52.081Z [TRACE] user-service - Operation: order_created - Processing time: 829ms - RequestID: bbh56g9eofc +2025-06-18T14:09:52.181Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 183ms - Rows affected: 8 - RequestID: i3hijw9zvnh +2025-06-18T14:09:52.281Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 404 - Response time: 1441ms - IP: 192.168.64.33 - User: user_1010 - RequestID: pkt1e3unlz +2025-06-18T14:09:52.381Z [INFO] user-service - Database SELECT on products - Execution time: 459ms - Rows affected: 19 - RequestID: o97bya8ow4 +2025-06-18T14:09:52.481Z [INFO] auth-service - Auth event: login_success - User: user_1047 - IP: 192.168.97.87 - RequestID: dqw43bxnkwl +2025-06-18T14:09:52.581Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 500 - Response time: 167ms - IP: 192.168.196.226 - User: user_1077 - RequestID: 4fduvh8a5fy +2025-06-18T14:09:52.681Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 86ms - Rows affected: 99 - RequestID: 34dfqwkjl45 +2025-06-18T14:09:52.781Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1211ms - IP: 192.168.13.72 - User: user_1093 - RequestID: yf3mgl8ic7r +2025-06-18T14:09:52.881Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 458ms - Rows affected: 3 - RequestID: j1vdibudfqg +2025-06-18T14:09:52.981Z [INFO] payment-service - Database SELECT on payments - Execution time: 153ms - Rows affected: 25 - RequestID: cpc0588kzn +2025-06-18T14:09:53.081Z [TRACE] auth-service - Database INSERT on products - Execution time: 12ms - Rows affected: 72 - RequestID: rt9hf8vi2uf +2025-06-18T14:09:53.181Z [INFO] user-service - Operation: notification_queued - Processing time: 450ms - RequestID: 36j9pb7611e +2025-06-18T14:09:53.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1048 - IP: 192.168.28.146 - RequestID: g5yc47fpb9n +2025-06-18T14:09:53.381Z [DEBUG] order-service - Operation: payment_processed - Processing time: 971ms - RequestID: x139jufiwun +2025-06-18T14:09:53.481Z [INFO] inventory-service - Auth event: login_success - User: user_1011 - IP: 192.168.167.32 - RequestID: g5zqfq8jewf +2025-06-18T14:09:53.581Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 401 - Response time: 426ms - IP: 192.168.46.63 - User: user_1036 - RequestID: bqcz71g9p4a +2025-06-18T14:09:53.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 432ms - RequestID: eqg68bijpfm +2025-06-18T14:09:53.781Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.68.128 - RequestID: jwwlc72fruk +2025-06-18T14:09:53.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1012 - IP: 192.168.174.114 - RequestID: 7s5mwv03oyj +2025-06-18T14:09:53.981Z [INFO] user-service - PATCH /api/v1/payments - Status: 401 - Response time: 523ms - IP: 192.168.53.133 - User: user_1094 - RequestID: zq2cl75ke8 +2025-06-18T14:09:54.081Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 299ms - Rows affected: 11 - RequestID: 3auok9yunek +2025-06-18T14:09:54.181Z [DEBUG] auth-service - Auth event: login_success - User: user_1033 - IP: 192.168.144.38 - RequestID: q7mfd94bonb +2025-06-18T14:09:54.281Z [INFO] auth-service - Auth event: login_failed - User: user_1087 - IP: 192.168.10.184 - RequestID: ha4n8dfbxs6 +2025-06-18T14:09:54.381Z [INFO] order-service - PATCH /api/v1/payments - Status: 404 - Response time: 1149ms - IP: 192.168.97.87 - User: user_1016 - RequestID: xcddpemb6ar +2025-06-18T14:09:54.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 325ms - RequestID: n0iryhiqyd9 +2025-06-18T14:09:54.581Z [INFO] order-service - Auth event: login_success - User: user_1014 - IP: 192.168.33.76 - RequestID: g3z0anem6iu +2025-06-18T14:09:54.681Z [INFO] inventory-service - Database DELETE on orders - Execution time: 257ms - Rows affected: 37 - RequestID: ezoozewtiy +2025-06-18T14:09:54.781Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 434ms - Rows affected: 73 - RequestID: 2yiqsyjce7h +2025-06-18T14:09:54.881Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 467ms - Rows affected: 67 - RequestID: nexqjhv4jv +2025-06-18T14:09:54.981Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 400 - Response time: 1323ms - IP: 192.168.211.72 - User: user_1072 - RequestID: skbdz0hdpuc +2025-06-18T14:09:55.081Z [INFO] payment-service - DELETE /api/v1/users - Status: 502 - Response time: 254ms - IP: 192.168.235.117 - User: user_1062 - RequestID: rrxl4qybg7f +2025-06-18T14:09:55.181Z [TRACE] notification-service - POST /api/v1/inventory - Status: 403 - Response time: 1292ms - IP: 192.168.104.37 - User: user_1001 - RequestID: wotykx1fpxq +2025-06-18T14:09:55.281Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 201 - Response time: 936ms - IP: 192.168.240.169 - User: user_1030 - RequestID: x0918z0zy0o +2025-06-18T14:09:55.381Z [TRACE] user-service - Operation: cache_miss - Processing time: 965ms - RequestID: y1gs4jgqpu +2025-06-18T14:09:55.481Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 502 - Response time: 600ms - IP: 192.168.68.128 - User: user_1087 - RequestID: 2jgen616naz +2025-06-18T14:09:55.581Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 173ms - RequestID: ynuoijkudpt +2025-06-18T14:09:55.681Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 500 - Response time: 124ms - IP: 192.168.181.225 - User: user_1082 - RequestID: 0vh8lh9k371j +2025-06-18T14:09:55.781Z [INFO] payment-service - Operation: cache_miss - Processing time: 873ms - RequestID: 2fa1nrdf1e9 +2025-06-18T14:09:55.881Z [TRACE] notification-service - Operation: notification_queued - Processing time: 898ms - RequestID: ab0pslphxju +2025-06-18T14:09:55.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 692ms - RequestID: l3u02hjzind +2025-06-18T14:09:56.081Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.159.94 - RequestID: 4yblb8857nb +2025-06-18T14:09:56.181Z [TRACE] user-service - POST /api/v1/users - Status: 500 - Response time: 1880ms - IP: 192.168.30.79 - User: user_1022 - RequestID: kjy30tw5eli +2025-06-18T14:09:56.281Z [TRACE] order-service - Auth event: logout - User: user_1035 - IP: 192.168.247.134 - RequestID: sqggeli7fpe +2025-06-18T14:09:56.381Z [DEBUG] order-service - PUT /api/v1/payments - Status: 500 - Response time: 223ms - IP: 192.168.113.218 - User: user_1068 - RequestID: mnxdpycvrl +2025-06-18T14:09:56.481Z [DEBUG] inventory-service - Auth event: login_success - User: user_1088 - IP: 192.168.14.77 - RequestID: gpruk1esgyv +2025-06-18T14:09:56.581Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.194.41 - RequestID: t55aoxkgzdn +2025-06-18T14:09:56.681Z [TRACE] order-service - Database SELECT on payments - Execution time: 207ms - Rows affected: 82 - RequestID: pjy0wahxhwp +2025-06-18T14:09:56.781Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1951ms - IP: 192.168.240.169 - User: user_1021 - RequestID: a46psxf0487 +2025-06-18T14:09:56.881Z [TRACE] auth-service - Operation: notification_queued - Processing time: 975ms - RequestID: pibj8g5prul +2025-06-18T14:09:56.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 486ms - RequestID: 4gnkj0jz83o +2025-06-18T14:09:57.081Z [INFO] user-service - Auth event: login_failed - User: user_1022 - IP: 192.168.113.218 - RequestID: ydwsa3cznfb +2025-06-18T14:09:57.181Z [DEBUG] user-service - PUT /api/v1/payments - Status: 500 - Response time: 790ms - IP: 192.168.227.233 - User: user_1020 - RequestID: 4ycvuwwamvo +2025-06-18T14:09:57.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.235.117 - RequestID: mx1sz6ftlxh +2025-06-18T14:09:57.381Z [INFO] user-service - Operation: payment_processed - Processing time: 822ms - RequestID: njcpb4oe1th +2025-06-18T14:09:57.481Z [TRACE] payment-service - Database INSERT on users - Execution time: 308ms - Rows affected: 35 - RequestID: klqvizn6omf +2025-06-18T14:09:57.581Z [INFO] user-service - Operation: cache_miss - Processing time: 864ms - RequestID: yfvpka0cej +2025-06-18T14:09:57.681Z [INFO] auth-service - Auth event: login_failed - User: user_1047 - IP: 192.168.1.152 - RequestID: pgsqufci4sg +2025-06-18T14:09:57.781Z [DEBUG] order-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.104.37 - RequestID: hdbcb5gkb19 +2025-06-18T14:09:57.881Z [INFO] user-service - Operation: order_created - Processing time: 470ms - RequestID: lhdt1l3b87d +2025-06-18T14:09:57.981Z [INFO] order-service - Database DELETE on products - Execution time: 410ms - Rows affected: 30 - RequestID: 07mfhf87njzu +2025-06-18T14:09:58.081Z [TRACE] auth-service - Database INSERT on payments - Execution time: 87ms - Rows affected: 61 - RequestID: 5trizqohxia +2025-06-18T14:09:58.181Z [TRACE] order-service - PUT /api/v1/inventory - Status: 201 - Response time: 415ms - IP: 192.168.232.72 - User: user_1098 - RequestID: tlbsned7sl +2025-06-18T14:09:58.281Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 249ms - IP: 192.168.227.233 - User: user_1055 - RequestID: as6b0l5pxoi +2025-06-18T14:09:58.381Z [INFO] inventory-service - GET /api/v1/users - Status: 401 - Response time: 1879ms - IP: 192.168.10.184 - User: user_1067 - RequestID: g2nde73kx5p +2025-06-18T14:09:58.481Z [TRACE] payment-service - PUT /api/v1/payments - Status: 404 - Response time: 1487ms - IP: 192.168.53.133 - User: user_1006 - RequestID: 2tdrwbg8p1r +2025-06-18T14:09:58.581Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.14.77 - RequestID: wxhru8lrgj +2025-06-18T14:09:58.681Z [DEBUG] user-service - Operation: notification_queued - Processing time: 707ms - RequestID: 44ep3bn12cc +2025-06-18T14:09:58.781Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 820ms - RequestID: zzmw9eg20g +2025-06-18T14:09:58.881Z [TRACE] user-service - Database UPDATE on users - Execution time: 454ms - Rows affected: 63 - RequestID: otkitdp3e3d +2025-06-18T14:09:58.981Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.46.63 - RequestID: 4e3yw86rt5b +2025-06-18T14:09:59.081Z [DEBUG] order-service - Operation: cache_hit - Processing time: 256ms - RequestID: kso88mplnyl +2025-06-18T14:09:59.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.113.218 - RequestID: akn5zregmh +2025-06-18T14:09:59.281Z [DEBUG] user-service - GET /api/v1/payments - Status: 400 - Response time: 499ms - IP: 192.168.85.229 - User: user_1024 - RequestID: 0nq3cadycts +2025-06-18T14:09:59.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 897ms - RequestID: b3lqnuboewr +2025-06-18T14:09:59.481Z [TRACE] payment-service - Database SELECT on payments - Execution time: 292ms - Rows affected: 27 - RequestID: 8a4gx89a4zg +2025-06-18T14:09:59.581Z [TRACE] inventory-service - Operation: order_created - Processing time: 665ms - RequestID: nbuqtwvgbkm +2025-06-18T14:09:59.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 856ms - RequestID: 8c8eicvc9o +2025-06-18T14:09:59.781Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 35ms - Rows affected: 82 - RequestID: 7jao5oyot3t +2025-06-18T14:09:59.881Z [INFO] inventory-service - Operation: notification_queued - Processing time: 561ms - RequestID: zig1xw3loor +2025-06-18T14:09:59.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.227.233 - RequestID: oja57dxrkne +2025-06-18T14:10:00.081Z [INFO] notification-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.79.143 - RequestID: xe42kqguy2 +2025-06-18T14:10:00.181Z [INFO] order-service - Auth event: password_change - User: user_1002 - IP: 192.168.31.117 - RequestID: 2zuy1v7871k +2025-06-18T14:10:00.281Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 253ms - Rows affected: 49 - RequestID: cq5iv9fyso9 +2025-06-18T14:10:00.381Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1891ms - IP: 192.168.11.60 - User: user_1006 - RequestID: li5bdh5w0jk +2025-06-18T14:10:00.481Z [TRACE] payment-service - Operation: cache_miss - Processing time: 688ms - RequestID: f33v04a2pfg +2025-06-18T14:10:00.581Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 470ms - IP: 192.168.147.171 - User: user_1046 - RequestID: sx3s47632pe +2025-06-18T14:10:00.681Z [INFO] payment-service - Operation: email_sent - Processing time: 714ms - RequestID: ubkh9xkmhsf +2025-06-18T14:10:00.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 804ms - RequestID: rwaq1hngb9p +2025-06-18T14:10:00.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1051 - IP: 192.168.13.72 - RequestID: yict3dwrrxd +2025-06-18T14:10:00.981Z [INFO] order-service - Operation: email_sent - Processing time: 148ms - RequestID: b0c94kj9dfj +2025-06-18T14:10:01.081Z [INFO] payment-service - Auth event: logout - User: user_1095 - IP: 192.168.30.79 - RequestID: 1bpdldd0xv4 +2025-06-18T14:10:01.181Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 432ms - Rows affected: 89 - RequestID: dbzqrgvhh67 +2025-06-18T14:10:01.281Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 400ms - RequestID: fm6tvd9d81o +2025-06-18T14:10:01.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.144.38 - RequestID: k3lzspgu938 +2025-06-18T14:10:01.481Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 416ms - Rows affected: 59 - RequestID: nk8fh4h3r +2025-06-18T14:10:01.581Z [DEBUG] auth-service - POST /api/v1/orders - Status: 503 - Response time: 640ms - IP: 192.168.79.141 - User: user_1020 - RequestID: gzkiwtgh0jq +2025-06-18T14:10:01.681Z [TRACE] user-service - Auth event: login_success - User: user_1059 - IP: 192.168.144.38 - RequestID: 7udmoqb25ny +2025-06-18T14:10:01.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.141.100 - RequestID: q4bkiyjxtqe +2025-06-18T14:10:01.881Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 421ms - Rows affected: 28 - RequestID: m42clfnxxup +2025-06-18T14:10:01.981Z [INFO] inventory-service - Operation: order_created - Processing time: 690ms - RequestID: nc35uqttf6 +2025-06-18T14:10:02.081Z [DEBUG] user-service - GET /api/v1/payments - Status: 200 - Response time: 1807ms - IP: 192.168.167.32 - User: user_1003 - RequestID: q3qof3lu8y +2025-06-18T14:10:02.181Z [INFO] order-service - Auth event: login_failed - User: user_1028 - IP: 192.168.33.76 - RequestID: y2727wrulod +2025-06-18T14:10:02.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 532ms - RequestID: 7by80gi8akw +2025-06-18T14:10:02.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1025 - IP: 192.168.10.184 - RequestID: r7xyif2dekl +2025-06-18T14:10:02.481Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 189ms - Rows affected: 55 - RequestID: mnbhaqp6ikj +2025-06-18T14:10:02.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 927ms - RequestID: qng4gc3m0j +2025-06-18T14:10:02.681Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 340ms - Rows affected: 92 - RequestID: 6eny3rhqj2d +2025-06-18T14:10:02.781Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 15ms - Rows affected: 64 - RequestID: f76poats3as +2025-06-18T14:10:02.881Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 724ms - RequestID: 3ljoz9lm7in +2025-06-18T14:10:02.981Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 418ms - Rows affected: 26 - RequestID: 8iugepthzeo +2025-06-18T14:10:03.081Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1738ms - IP: 192.168.79.141 - User: user_1064 - RequestID: wu0euhhy4a +2025-06-18T14:10:03.181Z [TRACE] payment-service - Auth event: password_change - User: user_1066 - IP: 192.168.170.215 - RequestID: ra4va2hysa +2025-06-18T14:10:03.281Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 178ms - Rows affected: 99 - RequestID: 55qmzo04chj +2025-06-18T14:10:03.381Z [TRACE] order-service - Auth event: login_success - User: user_1031 - IP: 192.168.113.218 - RequestID: 4b2zrkupexf +2025-06-18T14:10:03.481Z [INFO] payment-service - Database INSERT on products - Execution time: 149ms - Rows affected: 42 - RequestID: pkxu5276qm +2025-06-18T14:10:03.581Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 404 - Response time: 1849ms - IP: 192.168.147.171 - User: user_1090 - RequestID: 3s3t44cazn3 +2025-06-18T14:10:03.681Z [DEBUG] notification-service - Auth event: password_change - User: user_1055 - IP: 192.168.31.117 - RequestID: olq5ii80gc +2025-06-18T14:10:03.781Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1776ms - IP: 192.168.46.63 - User: user_1097 - RequestID: axs32xcxd4 +2025-06-18T14:10:03.881Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 502 - Response time: 1398ms - IP: 192.168.46.63 - User: user_1071 - RequestID: 39cbfg79nzv +2025-06-18T14:10:03.981Z [INFO] payment-service - DELETE /api/v1/users - Status: 200 - Response time: 1363ms - IP: 192.168.196.226 - User: user_1086 - RequestID: t38cb92td9n +2025-06-18T14:10:04.081Z [INFO] notification-service - Database DELETE on orders - Execution time: 397ms - Rows affected: 4 - RequestID: 9m6tm3grtd +2025-06-18T14:10:04.181Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 469ms - Rows affected: 98 - RequestID: 5lxa432w0ha +2025-06-18T14:10:04.281Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1282ms - IP: 192.168.31.117 - User: user_1039 - RequestID: k9sercgbcu +2025-06-18T14:10:04.381Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 437ms - Rows affected: 83 - RequestID: 1lim4tycoid +2025-06-18T14:10:04.481Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 100ms - Rows affected: 65 - RequestID: uj5mxywcb +2025-06-18T14:10:04.581Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1720ms - IP: 192.168.174.114 - User: user_1001 - RequestID: aganbcg3z +2025-06-18T14:10:04.681Z [TRACE] user-service - Operation: inventory_updated - Processing time: 295ms - RequestID: xgngysj7g9e +2025-06-18T14:10:04.781Z [DEBUG] user-service - Database DELETE on orders - Execution time: 301ms - Rows affected: 79 - RequestID: 0vrf9j469j2i +2025-06-18T14:10:04.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1029 - IP: 192.168.31.117 - RequestID: g349g1o4yq +2025-06-18T14:10:04.981Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 395ms - IP: 192.168.158.144 - User: user_1071 - RequestID: 3qi3y5ibp1a +2025-06-18T14:10:05.081Z [INFO] payment-service - Operation: cache_hit - Processing time: 827ms - RequestID: 9lmb7wxaxyr +2025-06-18T14:10:05.181Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 925ms - IP: 192.168.187.199 - User: user_1038 - RequestID: gqccbcwkvpf +2025-06-18T14:10:05.281Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 503 - Response time: 1258ms - IP: 192.168.44.5 - User: user_1037 - RequestID: a49b9oj22ja +2025-06-18T14:10:05.381Z [INFO] notification-service - Database SELECT on payments - Execution time: 201ms - Rows affected: 56 - RequestID: 4g79kie9a4i +2025-06-18T14:10:05.481Z [TRACE] payment-service - Database INSERT on orders - Execution time: 377ms - Rows affected: 63 - RequestID: sjpcvl71z3 +2025-06-18T14:10:05.581Z [TRACE] notification-service - Auth event: logout - User: user_1040 - IP: 192.168.242.165 - RequestID: 4pu72lxwhtf +2025-06-18T14:10:05.681Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1436ms - IP: 192.168.141.100 - User: user_1093 - RequestID: 2nmq7ufjgr9 +2025-06-18T14:10:05.781Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 375ms - Rows affected: 96 - RequestID: 6a26c7vh4rs +2025-06-18T14:10:05.881Z [TRACE] inventory-service - Operation: order_created - Processing time: 449ms - RequestID: tuofmfrp5z +2025-06-18T14:10:05.981Z [TRACE] inventory-service - Auth event: password_change - User: user_1004 - IP: 192.168.181.225 - RequestID: pge1njny4hh +2025-06-18T14:10:06.081Z [TRACE] payment-service - PATCH /api/v1/users - Status: 201 - Response time: 1622ms - IP: 192.168.240.169 - User: user_1083 - RequestID: qqplnvpzsd +2025-06-18T14:10:06.181Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 348ms - Rows affected: 95 - RequestID: 2gfpk1qus88 +2025-06-18T14:10:06.281Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.227.233 - RequestID: xniby7kik +2025-06-18T14:10:06.381Z [INFO] notification-service - Auth event: password_change - User: user_1041 - IP: 192.168.13.72 - RequestID: 3c3wh3rvhzf +2025-06-18T14:10:06.481Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 502 - Response time: 125ms - IP: 192.168.97.87 - User: user_1029 - RequestID: 85fl42twtcx +2025-06-18T14:10:06.581Z [INFO] auth-service - GET /api/v1/inventory - Status: 201 - Response time: 59ms - IP: 192.168.10.184 - User: user_1031 - RequestID: dun6jbnlu17 +2025-06-18T14:10:06.681Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1033ms - IP: 192.168.104.37 - User: user_1033 - RequestID: xz10xpj8lum +2025-06-18T14:10:06.781Z [TRACE] user-service - Operation: email_sent - Processing time: 693ms - RequestID: ku4jd90ogd +2025-06-18T14:10:06.881Z [INFO] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 52ms - IP: 192.168.68.158 - User: user_1058 - RequestID: 1g46q8747iz +2025-06-18T14:10:06.981Z [INFO] inventory-service - Auth event: login_success - User: user_1042 - IP: 192.168.189.103 - RequestID: k1ou4mwgqbn +2025-06-18T14:10:07.081Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 439ms - IP: 192.168.159.94 - User: user_1041 - RequestID: 4h3p2fmgv4b +2025-06-18T14:10:07.181Z [INFO] inventory-service - Database SELECT on products - Execution time: 134ms - Rows affected: 93 - RequestID: nbh9rqa5tk +2025-06-18T14:10:07.281Z [TRACE] payment-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.36.218 - RequestID: bbcl0d2vlea +2025-06-18T14:10:07.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 672ms - RequestID: lr9t0g3feu +2025-06-18T14:10:07.481Z [INFO] order-service - Operation: email_sent - Processing time: 491ms - RequestID: fevmm62ar9 +2025-06-18T14:10:07.581Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 119ms - RequestID: 4w4jpdpavit +2025-06-18T14:10:07.681Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1988ms - IP: 192.168.147.171 - User: user_1033 - RequestID: 5iozss4moea +2025-06-18T14:10:07.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.79.143 - RequestID: zasfjd2yas +2025-06-18T14:10:07.881Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1543ms - IP: 192.168.227.77 - User: user_1012 - RequestID: sevlw9enpgk +2025-06-18T14:10:07.981Z [TRACE] notification-service - Operation: notification_queued - Processing time: 647ms - RequestID: fn3mk79gnd +2025-06-18T14:10:08.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 601ms - RequestID: l7va5wfofug +2025-06-18T14:10:08.181Z [TRACE] order-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.232.72 - RequestID: vxte9qf7a0g +2025-06-18T14:10:08.281Z [TRACE] inventory-service - Auth event: login_success - User: user_1054 - IP: 192.168.79.141 - RequestID: 3gotqeclghf +2025-06-18T14:10:08.381Z [INFO] user-service - Database INSERT on sessions - Execution time: 464ms - Rows affected: 24 - RequestID: 70j5s50dt7 +2025-06-18T14:10:08.481Z [TRACE] user-service - Operation: email_sent - Processing time: 891ms - RequestID: py5z4q8h0ui +2025-06-18T14:10:08.581Z [INFO] auth-service - Auth event: logout - User: user_1033 - IP: 192.168.194.41 - RequestID: lcrnnmrhfdo +2025-06-18T14:10:08.681Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 76ms - Rows affected: 91 - RequestID: jo55j2lkl9 +2025-06-18T14:10:08.781Z [TRACE] user-service - Database INSERT on products - Execution time: 473ms - Rows affected: 56 - RequestID: al2j5b0njaf +2025-06-18T14:10:08.881Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 500 - Response time: 1217ms - IP: 192.168.79.141 - User: user_1086 - RequestID: vcem2ddshj +2025-06-18T14:10:08.981Z [TRACE] payment-service - Database SELECT on users - Execution time: 102ms - Rows affected: 51 - RequestID: eqftin0zgt9 +2025-06-18T14:10:09.081Z [INFO] auth-service - Auth event: logout - User: user_1019 - IP: 192.168.158.144 - RequestID: drpfhi4wvcg +2025-06-18T14:10:09.181Z [INFO] notification-service - Auth event: password_change - User: user_1046 - IP: 192.168.31.117 - RequestID: 2uvoq86ckrs +2025-06-18T14:10:09.281Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1090ms - IP: 192.168.247.134 - User: user_1033 - RequestID: 21luvwl8v8t +2025-06-18T14:10:09.381Z [INFO] auth-service - Database INSERT on orders - Execution time: 500ms - Rows affected: 58 - RequestID: d3h0v408d4h +2025-06-18T14:10:09.481Z [INFO] order-service - GET /api/v1/orders - Status: 200 - Response time: 1360ms - IP: 192.168.158.144 - User: user_1005 - RequestID: 1hvjhwznb5f +2025-06-18T14:10:09.581Z [DEBUG] user-service - Database SELECT on orders - Execution time: 64ms - Rows affected: 58 - RequestID: eihb3g73jk +2025-06-18T14:10:09.681Z [DEBUG] user-service - Auth event: login_failed - User: user_1040 - IP: 192.168.68.128 - RequestID: dw5qumny6ti +2025-06-18T14:10:09.781Z [DEBUG] user-service - Operation: order_created - Processing time: 314ms - RequestID: sel7mn4hmtk +2025-06-18T14:10:09.881Z [TRACE] inventory-service - Auth event: logout - User: user_1005 - IP: 192.168.158.144 - RequestID: 4bxe0advli2 +2025-06-18T14:10:09.981Z [DEBUG] user-service - Database INSERT on payments - Execution time: 161ms - Rows affected: 54 - RequestID: xpnttczabmr +2025-06-18T14:10:10.081Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 401 - Response time: 760ms - IP: 192.168.170.215 - User: user_1050 - RequestID: 8ojpqyrznlr +2025-06-18T14:10:10.181Z [TRACE] notification-service - Database SELECT on users - Execution time: 71ms - Rows affected: 96 - RequestID: hcl9g0p4oe +2025-06-18T14:10:10.281Z [TRACE] user-service - Operation: payment_processed - Processing time: 282ms - RequestID: c9av24kxgrk +2025-06-18T14:10:10.381Z [INFO] user-service - Database INSERT on sessions - Execution time: 218ms - Rows affected: 84 - RequestID: ak7rsq0cey9 +2025-06-18T14:10:10.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.79.141 - RequestID: 4d05r0tb3lj +2025-06-18T14:10:10.581Z [TRACE] user-service - Auth event: logout - User: user_1002 - IP: 192.168.141.100 - RequestID: 9nad6vkrlfo +2025-06-18T14:10:10.681Z [TRACE] payment-service - POST /api/v1/payments - Status: 502 - Response time: 254ms - IP: 192.168.13.72 - User: user_1017 - RequestID: 5ypcdlg65gd +2025-06-18T14:10:10.781Z [DEBUG] user-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.46.63 - RequestID: h7a3ch7p8zr +2025-06-18T14:10:10.881Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 303ms - RequestID: geiulmrr4hr +2025-06-18T14:10:10.981Z [INFO] payment-service - Operation: order_created - Processing time: 599ms - RequestID: llszplcf99 +2025-06-18T14:10:11.081Z [DEBUG] user-service - Database INSERT on users - Execution time: 398ms - Rows affected: 12 - RequestID: eidaq2gj24e +2025-06-18T14:10:11.181Z [INFO] order-service - Operation: order_created - Processing time: 304ms - RequestID: uzoi284eoj +2025-06-18T14:10:11.281Z [INFO] notification-service - GET /api/v1/payments - Status: 403 - Response time: 1806ms - IP: 192.168.97.87 - User: user_1052 - RequestID: noz1obvs72d +2025-06-18T14:10:11.381Z [INFO] notification-service - Operation: cache_miss - Processing time: 790ms - RequestID: 7ts4hgw0ja +2025-06-18T14:10:11.481Z [INFO] auth-service - Auth event: logout - User: user_1026 - IP: 192.168.187.199 - RequestID: 2xzsdzo3abp +2025-06-18T14:10:11.581Z [TRACE] notification-service - Database INSERT on payments - Execution time: 87ms - Rows affected: 14 - RequestID: rkndxyz6od +2025-06-18T14:10:11.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.64.33 - RequestID: 70oohdviw4d +2025-06-18T14:10:11.781Z [DEBUG] order-service - Database SELECT on orders - Execution time: 450ms - Rows affected: 91 - RequestID: djgq0adaoen +2025-06-18T14:10:11.881Z [TRACE] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 25ms - IP: 192.168.167.32 - User: user_1023 - RequestID: nkq2or3dd89 +2025-06-18T14:10:11.981Z [INFO] notification-service - GET /api/v1/orders - Status: 403 - Response time: 899ms - IP: 192.168.31.117 - User: user_1069 - RequestID: lvjynlaqw6q +2025-06-18T14:10:12.081Z [TRACE] user-service - POST /api/v1/payments - Status: 201 - Response time: 1200ms - IP: 192.168.11.60 - User: user_1067 - RequestID: osf0d2sf2h +2025-06-18T14:10:12.181Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 573ms - RequestID: nb714tzylda +2025-06-18T14:10:12.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 946ms - RequestID: hvg21i2lpa +2025-06-18T14:10:12.381Z [INFO] notification-service - Operation: inventory_updated - Processing time: 492ms - RequestID: o11rxbk3pbn +2025-06-18T14:10:12.481Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 403ms - RequestID: 66xer6zgrbx +2025-06-18T14:10:12.581Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 201 - Response time: 546ms - IP: 192.168.187.199 - User: user_1024 - RequestID: 4bgkw9jncar +2025-06-18T14:10:12.681Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1853ms - IP: 192.168.14.77 - User: user_1085 - RequestID: 4yapwhetjbb +2025-06-18T14:10:12.781Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 673ms - RequestID: zuu8zhwwhy +2025-06-18T14:10:12.881Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 84ms - Rows affected: 97 - RequestID: q3cqpn6fie +2025-06-18T14:10:12.981Z [TRACE] notification-service - PUT /api/v1/payments - Status: 502 - Response time: 58ms - IP: 192.168.232.72 - User: user_1033 - RequestID: 3jzv4x72da5 +2025-06-18T14:10:13.081Z [DEBUG] auth-service - GET /api/v1/payments - Status: 503 - Response time: 1271ms - IP: 192.168.229.123 - User: user_1021 - RequestID: y4i8ub0gw8d +2025-06-18T14:10:13.181Z [TRACE] order-service - Database UPDATE on users - Execution time: 139ms - Rows affected: 76 - RequestID: 0l8hbd0qm8fg +2025-06-18T14:10:13.281Z [INFO] notification-service - Auth event: login_success - User: user_1011 - IP: 192.168.33.76 - RequestID: 1py649d0ynr +2025-06-18T14:10:13.381Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 349ms - Rows affected: 39 - RequestID: tqfikrk3d4m +2025-06-18T14:10:13.481Z [TRACE] user-service - Operation: cache_hit - Processing time: 219ms - RequestID: 08cysm05uinn +2025-06-18T14:10:13.581Z [INFO] user-service - PUT /api/v1/users - Status: 201 - Response time: 406ms - IP: 192.168.174.114 - User: user_1085 - RequestID: n23ir0hcrk +2025-06-18T14:10:13.681Z [INFO] user-service - Operation: payment_processed - Processing time: 213ms - RequestID: 9n194nmdr7r +2025-06-18T14:10:13.781Z [DEBUG] order-service - Operation: cache_miss - Processing time: 226ms - RequestID: gzat8wamu2o +2025-06-18T14:10:13.881Z [TRACE] order-service - Operation: webhook_sent - Processing time: 833ms - RequestID: bqjr4muzfd +2025-06-18T14:10:13.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1087 - IP: 192.168.104.37 - RequestID: i0vjijc6xwo +2025-06-18T14:10:14.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.247.134 - RequestID: my3lc3zhun +2025-06-18T14:10:14.181Z [DEBUG] order-service - Auth event: login_failed - User: user_1096 - IP: 192.168.36.218 - RequestID: b20oc8zy3sb +2025-06-18T14:10:14.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 688ms - RequestID: bxt2qoz6zp7 +2025-06-18T14:10:14.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.181.225 - RequestID: nl6wj73vjpm +2025-06-18T14:10:14.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1035 - IP: 192.168.232.72 - RequestID: n6oxptfwin +2025-06-18T14:10:14.581Z [TRACE] user-service - PATCH /api/v1/orders - Status: 503 - Response time: 112ms - IP: 192.168.240.169 - User: user_1062 - RequestID: d63xcjlcb09 +2025-06-18T14:10:14.681Z [TRACE] order-service - Database INSERT on products - Execution time: 279ms - Rows affected: 5 - RequestID: 2738iho8krr +2025-06-18T14:10:14.781Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 133ms - Rows affected: 94 - RequestID: 5weis1b729o +2025-06-18T14:10:14.881Z [TRACE] payment-service - Database DELETE on payments - Execution time: 451ms - Rows affected: 82 - RequestID: 8t6v7h91169 +2025-06-18T14:10:14.981Z [TRACE] user-service - PATCH /api/v1/users - Status: 401 - Response time: 1227ms - IP: 192.168.138.123 - User: user_1093 - RequestID: 2jpcskuwv4l +2025-06-18T14:10:15.081Z [DEBUG] payment-service - Auth event: password_change - User: user_1042 - IP: 192.168.133.7 - RequestID: xpxwhay3pi +2025-06-18T14:10:15.181Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 201 - Response time: 734ms - IP: 192.168.100.240 - User: user_1076 - RequestID: v1rflvkp4w +2025-06-18T14:10:15.281Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 136ms - Rows affected: 36 - RequestID: ymmc532dpb +2025-06-18T14:10:15.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 517ms - RequestID: oho7qy55m1r +2025-06-18T14:10:15.481Z [INFO] auth-service - Database INSERT on users - Execution time: 443ms - Rows affected: 50 - RequestID: 69a3znw9ra +2025-06-18T14:10:15.581Z [TRACE] inventory-service - Auth event: logout - User: user_1097 - IP: 192.168.196.226 - RequestID: 64u7n7yoe82 +2025-06-18T14:10:15.681Z [TRACE] notification-service - GET /api/v1/auth/login - Status: 400 - Response time: 1836ms - IP: 192.168.64.33 - User: user_1004 - RequestID: 16jpm7vdyzl +2025-06-18T14:10:15.781Z [INFO] auth-service - Database UPDATE on products - Execution time: 241ms - Rows affected: 16 - RequestID: rtzpfb920sc +2025-06-18T14:10:15.881Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1289ms - IP: 192.168.158.144 - User: user_1015 - RequestID: wwqykczm1f +2025-06-18T14:10:15.981Z [TRACE] order-service - Auth event: password_change - User: user_1068 - IP: 192.168.13.72 - RequestID: i68doibge9a +2025-06-18T14:10:16.081Z [TRACE] auth-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.44.5 - RequestID: zf8iovhnjv +2025-06-18T14:10:16.181Z [INFO] notification-service - PUT /api/v1/orders - Status: 201 - Response time: 1293ms - IP: 192.168.181.225 - User: user_1080 - RequestID: e5wz3ksdvp9 +2025-06-18T14:10:16.281Z [TRACE] order-service - PATCH /api/v1/users - Status: 500 - Response time: 1322ms - IP: 192.168.235.117 - User: user_1050 - RequestID: v27w1snsdlh +2025-06-18T14:10:16.381Z [TRACE] notification-service - Database UPDATE on users - Execution time: 237ms - Rows affected: 30 - RequestID: u1hiyj7ccy +2025-06-18T14:10:16.481Z [INFO] notification-service - Auth event: login_failed - User: user_1004 - IP: 192.168.141.100 - RequestID: 0lwwmon43on +2025-06-18T14:10:16.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.113.218 - RequestID: 7sj50f6pfly +2025-06-18T14:10:16.681Z [TRACE] notification-service - Auth event: login_success - User: user_1054 - IP: 192.168.159.94 - RequestID: x6qjbl0d5o +2025-06-18T14:10:16.781Z [INFO] notification-service - Auth event: password_change - User: user_1010 - IP: 192.168.13.72 - RequestID: duy8fyaq1mp +2025-06-18T14:10:16.881Z [INFO] payment-service - Operation: email_sent - Processing time: 328ms - RequestID: 3iycekywyim +2025-06-18T14:10:16.981Z [TRACE] auth-service - Database INSERT on orders - Execution time: 445ms - Rows affected: 10 - RequestID: vhilavvg5g +2025-06-18T14:10:17.081Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 503 - Response time: 1245ms - IP: 192.168.158.144 - User: user_1041 - RequestID: k5xjnxrb6s +2025-06-18T14:10:17.181Z [INFO] payment-service - Operation: order_created - Processing time: 801ms - RequestID: 5rrpcqn9rop +2025-06-18T14:10:17.281Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 403 - Response time: 681ms - IP: 192.168.227.233 - User: user_1021 - RequestID: o3k1inbi2h +2025-06-18T14:10:17.381Z [INFO] auth-service - Operation: order_created - Processing time: 254ms - RequestID: ku957eq80b +2025-06-18T14:10:17.481Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 649ms - RequestID: hwjz4e1lf6v +2025-06-18T14:10:17.581Z [DEBUG] auth-service - Operation: order_created - Processing time: 321ms - RequestID: v5g6iy1pg3p +2025-06-18T14:10:17.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 790ms - RequestID: sdkffltvlg +2025-06-18T14:10:17.781Z [TRACE] order-service - Database SELECT on sessions - Execution time: 86ms - Rows affected: 25 - RequestID: ai2w9vr2g88 +2025-06-18T14:10:17.881Z [DEBUG] user-service - PUT /api/v1/orders - Status: 503 - Response time: 2006ms - IP: 192.168.11.60 - User: user_1078 - RequestID: lktybom69ud +2025-06-18T14:10:17.981Z [INFO] notification-service - Database DELETE on orders - Execution time: 178ms - Rows affected: 69 - RequestID: heesr08hic6 +2025-06-18T14:10:18.081Z [TRACE] inventory-service - Auth event: logout - User: user_1011 - IP: 192.168.31.117 - RequestID: gvjwdkluypu +2025-06-18T14:10:18.181Z [INFO] payment-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.158.144 - RequestID: e50opfw6ixm +2025-06-18T14:10:18.281Z [TRACE] order-service - Auth event: logout - User: user_1012 - IP: 192.168.181.225 - RequestID: jj0akyr2rg +2025-06-18T14:10:18.381Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 500 - Response time: 1300ms - IP: 192.168.13.72 - User: user_1093 - RequestID: vk1ajjb84b +2025-06-18T14:10:18.481Z [INFO] auth-service - Operation: cache_hit - Processing time: 908ms - RequestID: b40ota0mdyi +2025-06-18T14:10:18.581Z [TRACE] user-service - Database SELECT on sessions - Execution time: 138ms - Rows affected: 75 - RequestID: xwmjts5mukb +2025-06-18T14:10:18.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 802ms - RequestID: p3p3z8crpns +2025-06-18T14:10:18.781Z [DEBUG] order-service - Auth event: login_success - User: user_1076 - IP: 192.168.31.117 - RequestID: 7nglbopl3dm +2025-06-18T14:10:18.881Z [INFO] user-service - Auth event: login_failed - User: user_1046 - IP: 192.168.53.133 - RequestID: ndj1nmcj51o +2025-06-18T14:10:18.981Z [DEBUG] user-service - Auth event: password_change - User: user_1087 - IP: 192.168.247.134 - RequestID: 65oxxxifrkn +2025-06-18T14:10:19.081Z [INFO] inventory-service - Database DELETE on orders - Execution time: 99ms - Rows affected: 32 - RequestID: mp2ol8vhra +2025-06-18T14:10:19.181Z [DEBUG] order-service - Operation: email_sent - Processing time: 867ms - RequestID: 5q18lmud2zk +2025-06-18T14:10:19.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1002 - IP: 192.168.33.76 - RequestID: 7mncg1bjhnn +2025-06-18T14:10:19.381Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 111ms - Rows affected: 53 - RequestID: y7zy34h02o +2025-06-18T14:10:19.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.100.240 - RequestID: gvm250icr8 +2025-06-18T14:10:19.581Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 110ms - Rows affected: 10 - RequestID: jlhmwwk7sh7 +2025-06-18T14:10:19.681Z [INFO] order-service - Operation: payment_processed - Processing time: 496ms - RequestID: kotx7eukeyj +2025-06-18T14:10:19.781Z [TRACE] user-service - DELETE /api/v1/orders - Status: 200 - Response time: 825ms - IP: 192.168.196.226 - User: user_1015 - RequestID: paxylc9c8ym +2025-06-18T14:10:19.881Z [INFO] auth-service - Operation: payment_processed - Processing time: 359ms - RequestID: jnkhlppycfd +2025-06-18T14:10:19.981Z [INFO] order-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1186ms - IP: 192.168.81.206 - User: user_1061 - RequestID: euwpo6atlka +2025-06-18T14:10:20.081Z [TRACE] user-service - Operation: inventory_updated - Processing time: 419ms - RequestID: b9i6x9x9ybu +2025-06-18T14:10:20.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1089 - IP: 192.168.170.215 - RequestID: 7b3dsm225oa +2025-06-18T14:10:20.281Z [TRACE] notification-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.159.94 - RequestID: l4e3fdqz2cr +2025-06-18T14:10:20.381Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 403 - Response time: 632ms - IP: 192.168.100.240 - User: user_1073 - RequestID: 9yp1ft05sjw +2025-06-18T14:10:20.481Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1565ms - IP: 192.168.227.233 - User: user_1026 - RequestID: zw7q70k4z3p +2025-06-18T14:10:20.581Z [INFO] user-service - Operation: order_created - Processing time: 586ms - RequestID: 8oejhs9mnu +2025-06-18T14:10:20.681Z [INFO] inventory-service - POST /api/v1/orders - Status: 403 - Response time: 671ms - IP: 192.168.211.72 - User: user_1053 - RequestID: jw6sw6p6cpg +2025-06-18T14:10:20.781Z [TRACE] order-service - Database SELECT on products - Execution time: 473ms - Rows affected: 59 - RequestID: q1bgesi3n8m +2025-06-18T14:10:20.881Z [INFO] auth-service - Auth event: login_failed - User: user_1002 - IP: 192.168.196.226 - RequestID: 8yxp9kv86ut +2025-06-18T14:10:20.981Z [INFO] user-service - PATCH /api/v1/users - Status: 200 - Response time: 1025ms - IP: 192.168.158.144 - User: user_1021 - RequestID: uby3p8dog8k +2025-06-18T14:10:21.081Z [INFO] inventory-service - Operation: cache_miss - Processing time: 159ms - RequestID: 5npjc94tk4t +2025-06-18T14:10:21.181Z [TRACE] payment-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.10.184 - RequestID: t7lqm9twmj +2025-06-18T14:10:21.281Z [TRACE] user-service - Operation: notification_queued - Processing time: 213ms - RequestID: b4geijrdsz5 +2025-06-18T14:10:21.381Z [TRACE] user-service - Operation: webhook_sent - Processing time: 801ms - RequestID: 78rvkkwhxkd +2025-06-18T14:10:21.481Z [DEBUG] order-service - Auth event: login_failed - User: user_1051 - IP: 192.168.187.199 - RequestID: hq0rchzh0cf +2025-06-18T14:10:21.581Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1577ms - IP: 192.168.33.76 - User: user_1078 - RequestID: 36xt3wx4pbk +2025-06-18T14:10:21.681Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 342ms - Rows affected: 17 - RequestID: 3pa8c9iq099 +2025-06-18T14:10:21.781Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 200 - Response time: 923ms - IP: 192.168.227.233 - User: user_1000 - RequestID: dlgc94cl1vf +2025-06-18T14:10:21.881Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 747ms - IP: 192.168.227.233 - User: user_1053 - RequestID: 6220yc2pixi +2025-06-18T14:10:21.981Z [INFO] inventory-service - PUT /api/v1/orders - Status: 400 - Response time: 783ms - IP: 192.168.46.63 - User: user_1089 - RequestID: ky9xkq802p9 +2025-06-18T14:10:22.081Z [INFO] payment-service - PUT /api/v1/users - Status: 400 - Response time: 551ms - IP: 192.168.211.72 - User: user_1036 - RequestID: 89gdv3ppgau +2025-06-18T14:10:22.181Z [INFO] order-service - POST /api/v1/users - Status: 500 - Response time: 336ms - IP: 192.168.30.79 - User: user_1076 - RequestID: ya3st6ketk +2025-06-18T14:10:22.281Z [INFO] inventory-service - Auth event: password_change - User: user_1064 - IP: 192.168.194.41 - RequestID: bebbal952wm +2025-06-18T14:10:22.381Z [TRACE] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 282ms - IP: 192.168.194.41 - User: user_1021 - RequestID: r62c1zrd4t +2025-06-18T14:10:22.481Z [DEBUG] notification-service - Database DELETE on users - Execution time: 216ms - Rows affected: 66 - RequestID: w9b8givdwe +2025-06-18T14:10:22.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1014 - IP: 192.168.235.117 - RequestID: cen0frwrzom +2025-06-18T14:10:22.681Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 434ms - Rows affected: 23 - RequestID: 9vb8uivnouk +2025-06-18T14:10:22.781Z [INFO] auth-service - Operation: email_sent - Processing time: 357ms - RequestID: y5rwjpwgt4 +2025-06-18T14:10:22.881Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 234ms - RequestID: emxrnv7jrvb +2025-06-18T14:10:22.981Z [INFO] user-service - Auth event: logout - User: user_1047 - IP: 192.168.14.77 - RequestID: sri4su0i7np +2025-06-18T14:10:23.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1060 - IP: 192.168.81.206 - RequestID: l22ovvvanls +2025-06-18T14:10:23.181Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 404 - Response time: 1207ms - IP: 192.168.211.72 - User: user_1052 - RequestID: v46cyj01bm +2025-06-18T14:10:23.281Z [INFO] auth-service - PATCH /api/v1/users - Status: 201 - Response time: 1044ms - IP: 192.168.174.114 - User: user_1029 - RequestID: 7ihizk4ls9w +2025-06-18T14:10:23.381Z [INFO] payment-service - Operation: cache_hit - Processing time: 351ms - RequestID: 76x7wletv9o +2025-06-18T14:10:23.481Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 401 - Response time: 1255ms - IP: 192.168.147.171 - User: user_1092 - RequestID: 3b9v5y155iv +2025-06-18T14:10:23.581Z [DEBUG] order-service - Database SELECT on payments - Execution time: 344ms - Rows affected: 83 - RequestID: y8ln4nshcra +2025-06-18T14:10:23.681Z [TRACE] user-service - Auth event: logout - User: user_1055 - IP: 192.168.28.146 - RequestID: 5zgs31ggpeu +2025-06-18T14:10:23.781Z [TRACE] payment-service - Auth event: password_change - User: user_1070 - IP: 192.168.196.226 - RequestID: 427p9scbnpx +2025-06-18T14:10:23.881Z [DEBUG] user-service - Database INSERT on products - Execution time: 200ms - Rows affected: 19 - RequestID: z3si1xz3sm +2025-06-18T14:10:23.981Z [TRACE] notification-service - Operation: email_sent - Processing time: 869ms - RequestID: vjgzwuynlkg +2025-06-18T14:10:24.081Z [INFO] auth-service - Operation: payment_processed - Processing time: 154ms - RequestID: aw2ob9ec1z4 +2025-06-18T14:10:24.181Z [TRACE] order-service - Operation: notification_queued - Processing time: 537ms - RequestID: wxn8t5ry4ss +2025-06-18T14:10:24.281Z [INFO] order-service - Database UPDATE on sessions - Execution time: 50ms - Rows affected: 55 - RequestID: mrqknpjnitp +2025-06-18T14:10:24.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.227.233 - RequestID: 7qgffm6nbpv +2025-06-18T14:10:24.481Z [INFO] user-service - Auth event: logout - User: user_1051 - IP: 192.168.46.63 - RequestID: 34ascuzn1pc +2025-06-18T14:10:24.581Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 200 - Response time: 233ms - IP: 192.168.10.184 - User: user_1052 - RequestID: vgqfihspru +2025-06-18T14:10:24.681Z [DEBUG] order-service - Operation: payment_processed - Processing time: 437ms - RequestID: osiqad034a +2025-06-18T14:10:24.781Z [INFO] payment-service - Operation: cache_miss - Processing time: 902ms - RequestID: 3jcntbonxim +2025-06-18T14:10:24.881Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 98ms - Rows affected: 39 - RequestID: y5bs17t6v98 +2025-06-18T14:10:24.981Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 443ms - Rows affected: 34 - RequestID: wz35g3v7dda +2025-06-18T14:10:25.081Z [INFO] user-service - PATCH /api/v1/users - Status: 404 - Response time: 1352ms - IP: 192.168.247.134 - User: user_1087 - RequestID: ehouucejcsa +2025-06-18T14:10:25.181Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 93ms - Rows affected: 22 - RequestID: 11fbrwcu74g +2025-06-18T14:10:25.281Z [TRACE] auth-service - Auth event: logout - User: user_1023 - IP: 192.168.232.72 - RequestID: cfn98m40h5c +2025-06-18T14:10:25.381Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 976ms - RequestID: bqbp91lt9mc +2025-06-18T14:10:25.481Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 502 - Response time: 862ms - IP: 192.168.11.60 - User: user_1074 - RequestID: m3yl9ov1hz +2025-06-18T14:10:25.581Z [TRACE] auth-service - POST /api/v1/inventory - Status: 403 - Response time: 110ms - IP: 192.168.1.152 - User: user_1076 - RequestID: 1qqsht3f1aw +2025-06-18T14:10:25.681Z [DEBUG] order-service - GET /api/v1/inventory - Status: 500 - Response time: 24ms - IP: 192.168.79.141 - User: user_1000 - RequestID: 1abo40ugot1 +2025-06-18T14:10:25.781Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 387ms - Rows affected: 90 - RequestID: j07af76rqv +2025-06-18T14:10:25.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 236ms - RequestID: s6mtnvsfpc +2025-06-18T14:10:25.981Z [TRACE] notification-service - Database UPDATE on products - Execution time: 334ms - Rows affected: 17 - RequestID: 5blovp2oy8a +2025-06-18T14:10:26.081Z [INFO] user-service - Operation: cache_hit - Processing time: 386ms - RequestID: u3h7oynak29 +2025-06-18T14:10:26.181Z [INFO] user-service - Database DELETE on orders - Execution time: 312ms - Rows affected: 89 - RequestID: zndg4z3kqpc +2025-06-18T14:10:26.281Z [TRACE] order-service - GET /api/v1/inventory - Status: 200 - Response time: 1700ms - IP: 192.168.10.184 - User: user_1099 - RequestID: 5a6plv2y1am +2025-06-18T14:10:26.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 791ms - RequestID: 04xbmv3t1pq5 +2025-06-18T14:10:26.481Z [DEBUG] inventory-service - Auth event: login_success - User: user_1099 - IP: 192.168.227.77 - RequestID: ta6k4vdc1d +2025-06-18T14:10:26.581Z [INFO] inventory-service - POST /api/v1/inventory - Status: 502 - Response time: 1937ms - IP: 192.168.187.199 - User: user_1070 - RequestID: v4i23nmmco +2025-06-18T14:10:26.681Z [INFO] user-service - Operation: order_created - Processing time: 288ms - RequestID: tuc6q1wui2 +2025-06-18T14:10:26.781Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 425ms - Rows affected: 92 - RequestID: s9w2tjfjmes +2025-06-18T14:10:26.881Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1036ms - IP: 192.168.53.133 - User: user_1013 - RequestID: kbvueeryri +2025-06-18T14:10:26.981Z [DEBUG] user-service - Auth event: login_success - User: user_1063 - IP: 192.168.68.158 - RequestID: m8xse61pmv +2025-06-18T14:10:27.081Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 986ms - IP: 192.168.194.41 - User: user_1094 - RequestID: b4vut40cw7q +2025-06-18T14:10:27.181Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 200 - Response time: 122ms - IP: 192.168.32.38 - User: user_1089 - RequestID: 8ej9n86cpeq +2025-06-18T14:10:27.281Z [TRACE] order-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.64.33 - RequestID: hizt0gvch5 +2025-06-18T14:10:27.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1092 - IP: 192.168.85.229 - RequestID: kggq3cosls +2025-06-18T14:10:27.481Z [INFO] payment-service - Auth event: password_change - User: user_1058 - IP: 192.168.85.229 - RequestID: wznkddqzjla +2025-06-18T14:10:27.581Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 131ms - IP: 192.168.81.206 - User: user_1037 - RequestID: as62mthcr7m +2025-06-18T14:10:27.681Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 495ms - Rows affected: 32 - RequestID: 79w4ljzrg3t +2025-06-18T14:10:27.781Z [INFO] payment-service - Database INSERT on products - Execution time: 132ms - Rows affected: 7 - RequestID: ejywwj9rcn +2025-06-18T14:10:27.881Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 400 - Response time: 641ms - IP: 192.168.79.116 - User: user_1075 - RequestID: an3njcr8p5l +2025-06-18T14:10:27.981Z [TRACE] auth-service - Database SELECT on payments - Execution time: 358ms - Rows affected: 60 - RequestID: 8mfjr5z1ot9 +2025-06-18T14:10:28.081Z [TRACE] order-service - Auth event: login_success - User: user_1054 - IP: 192.168.64.33 - RequestID: 3xlf1bargb +2025-06-18T14:10:28.181Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1887ms - IP: 192.168.79.143 - User: user_1071 - RequestID: zvbr32rmjw +2025-06-18T14:10:28.281Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 200 - Response time: 757ms - IP: 192.168.235.117 - User: user_1094 - RequestID: 3zst7mhepb2 +2025-06-18T14:10:28.381Z [TRACE] notification-service - Auth event: password_change - User: user_1066 - IP: 192.168.229.123 - RequestID: 9lvd6d3isxc +2025-06-18T14:10:28.481Z [INFO] notification-service - Database DELETE on sessions - Execution time: 135ms - Rows affected: 38 - RequestID: zytlj0kuaao +2025-06-18T14:10:28.581Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 238ms - Rows affected: 99 - RequestID: ciaf996bowu +2025-06-18T14:10:28.681Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 404 - Response time: 970ms - IP: 192.168.232.72 - User: user_1070 - RequestID: 3a8whs7ge0f +2025-06-18T14:10:28.781Z [INFO] inventory-service - Database INSERT on payments - Execution time: 168ms - Rows affected: 48 - RequestID: 7i7pb607ic7 +2025-06-18T14:10:28.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 580ms - RequestID: 2m2tacxvz2j +2025-06-18T14:10:28.981Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 328ms - Rows affected: 56 - RequestID: uadqsmzb3er +2025-06-18T14:10:29.081Z [DEBUG] user-service - Database INSERT on orders - Execution time: 482ms - Rows affected: 70 - RequestID: 9mek41snl1 +2025-06-18T14:10:29.181Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.79.141 - RequestID: v99dniktt48 +2025-06-18T14:10:29.281Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 9ms - Rows affected: 31 - RequestID: am6q3pkoo6p +2025-06-18T14:10:29.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 856ms - RequestID: 29xyodp1he8 +2025-06-18T14:10:29.481Z [DEBUG] notification-service - Database INSERT on products - Execution time: 60ms - Rows affected: 93 - RequestID: pg87wczn7y +2025-06-18T14:10:29.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.242.165 - RequestID: k43ky4wtv3 +2025-06-18T14:10:29.681Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1298ms - IP: 192.168.187.199 - User: user_1037 - RequestID: 546l9p0on6h +2025-06-18T14:10:29.781Z [DEBUG] notification-service - Database DELETE on products - Execution time: 339ms - Rows affected: 44 - RequestID: oyx5cfqweo +2025-06-18T14:10:29.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 183ms - RequestID: bx2141lqkbw +2025-06-18T14:10:29.981Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 346ms - Rows affected: 3 - RequestID: j47ek4emfpo +2025-06-18T14:10:30.081Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 381ms - Rows affected: 28 - RequestID: iq8jurl68qh +2025-06-18T14:10:30.181Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 728ms - RequestID: qeiypb3dlwi +2025-06-18T14:10:30.281Z [INFO] user-service - POST /api/v1/payments - Status: 403 - Response time: 1731ms - IP: 192.168.11.60 - User: user_1023 - RequestID: sfgocvrbkah +2025-06-18T14:10:30.381Z [INFO] user-service - Auth event: password_change - User: user_1092 - IP: 192.168.28.146 - RequestID: u2fqrw6a93 +2025-06-18T14:10:30.481Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 682ms - RequestID: 2kjvz34mifd +2025-06-18T14:10:30.581Z [TRACE] user-service - Database INSERT on products - Execution time: 398ms - Rows affected: 85 - RequestID: r014ac3ar9m +2025-06-18T14:10:30.681Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1561ms - IP: 192.168.32.38 - User: user_1071 - RequestID: z02x6m29kf +2025-06-18T14:10:30.781Z [TRACE] payment-service - Auth event: logout - User: user_1046 - IP: 192.168.196.226 - RequestID: ab901qxlw87 +2025-06-18T14:10:30.881Z [TRACE] payment-service - POST /api/v1/payments - Status: 502 - Response time: 609ms - IP: 192.168.187.199 - User: user_1014 - RequestID: fp9xh149pbm +2025-06-18T14:10:30.981Z [INFO] auth-service - POST /api/v1/inventory - Status: 200 - Response time: 583ms - IP: 192.168.147.171 - User: user_1017 - RequestID: 98lso9h4zn5 +2025-06-18T14:10:31.081Z [INFO] inventory-service - PATCH /api/v1/users - Status: 502 - Response time: 1071ms - IP: 192.168.11.60 - User: user_1046 - RequestID: u7jj5kcsr5 +2025-06-18T14:10:31.181Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 402ms - Rows affected: 74 - RequestID: iv7qpv3poec +2025-06-18T14:10:31.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 488ms - RequestID: tvx3qre3uee +2025-06-18T14:10:31.381Z [INFO] user-service - Operation: notification_queued - Processing time: 802ms - RequestID: x7z3yu0p82l +2025-06-18T14:10:31.481Z [TRACE] user-service - Operation: order_created - Processing time: 711ms - RequestID: zhmbezlrhq +2025-06-18T14:10:31.581Z [INFO] user-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1514ms - IP: 192.168.79.141 - User: user_1053 - RequestID: s4eteezge5 +2025-06-18T14:10:31.681Z [DEBUG] auth-service - Auth event: login_failed - User: user_1045 - IP: 192.168.13.72 - RequestID: bhlmbv2gij +2025-06-18T14:10:31.781Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 401 - Response time: 1698ms - IP: 192.168.104.37 - User: user_1010 - RequestID: es2rx5tjnw +2025-06-18T14:10:31.881Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1080ms - IP: 192.168.13.72 - User: user_1097 - RequestID: jtwq5dj5j2l +2025-06-18T14:10:31.981Z [INFO] auth-service - Auth event: password_change - User: user_1063 - IP: 192.168.13.72 - RequestID: ql3x58q9sln +2025-06-18T14:10:32.081Z [INFO] user-service - DELETE /api/v1/inventory - Status: 502 - Response time: 248ms - IP: 192.168.113.218 - User: user_1065 - RequestID: ee648llqv4d +2025-06-18T14:10:32.181Z [TRACE] auth-service - Auth event: password_change - User: user_1076 - IP: 192.168.235.117 - RequestID: wftx552azv +2025-06-18T14:10:32.281Z [TRACE] payment-service - Database SELECT on products - Execution time: 341ms - Rows affected: 60 - RequestID: ieaboltij0o +2025-06-18T14:10:32.381Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 201 - Response time: 540ms - IP: 192.168.100.240 - User: user_1033 - RequestID: 0eh3nykb9tu +2025-06-18T14:10:32.481Z [TRACE] notification-service - Database UPDATE on products - Execution time: 9ms - Rows affected: 94 - RequestID: 9a99alsewxo +2025-06-18T14:10:32.581Z [TRACE] notification-service - Operation: notification_queued - Processing time: 225ms - RequestID: 955k7g3syt +2025-06-18T14:10:32.681Z [TRACE] user-service - Database SELECT on payments - Execution time: 140ms - Rows affected: 74 - RequestID: s94dfow6uag +2025-06-18T14:10:32.781Z [DEBUG] user-service - Operation: notification_queued - Processing time: 770ms - RequestID: nelkcjcrm8n +2025-06-18T14:10:32.881Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 401 - Response time: 857ms - IP: 192.168.32.38 - User: user_1066 - RequestID: va49vzb4knc +2025-06-18T14:10:32.981Z [TRACE] notification-service - Auth event: password_change - User: user_1089 - IP: 192.168.247.134 - RequestID: vrge7am566 +2025-06-18T14:10:33.081Z [TRACE] auth-service - Operation: cache_hit - Processing time: 1004ms - RequestID: 43ypgdcymf7 +2025-06-18T14:10:33.181Z [INFO] inventory-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.85.229 - RequestID: 6ne4nkhjfm +2025-06-18T14:10:33.281Z [INFO] payment-service - Operation: order_created - Processing time: 314ms - RequestID: koe9opklsl +2025-06-18T14:10:33.381Z [DEBUG] payment-service - POST /api/v1/payments - Status: 201 - Response time: 1107ms - IP: 192.168.247.134 - User: user_1051 - RequestID: lkk6n7eiep +2025-06-18T14:10:33.481Z [TRACE] order-service - Operation: cache_miss - Processing time: 760ms - RequestID: uvjewayfr6 +2025-06-18T14:10:33.581Z [INFO] notification-service - Auth event: login_success - User: user_1059 - IP: 192.168.189.103 - RequestID: rt4irwkv538 +2025-06-18T14:10:33.681Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1791ms - IP: 192.168.138.123 - User: user_1052 - RequestID: yvu4n9vsby +2025-06-18T14:10:33.781Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 679ms - RequestID: s023lcdo0c +2025-06-18T14:10:33.881Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 500 - Response time: 32ms - IP: 192.168.235.117 - User: user_1061 - RequestID: c955i2yz3tm +2025-06-18T14:10:33.981Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 50ms - Rows affected: 70 - RequestID: 0l7pxtf06wud +2025-06-18T14:10:34.081Z [INFO] auth-service - PUT /api/v1/inventory - Status: 401 - Response time: 289ms - IP: 192.168.144.38 - User: user_1065 - RequestID: ivjfo9g7b9c +2025-06-18T14:10:34.181Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 219ms - Rows affected: 60 - RequestID: zxdf5mqtz7 +2025-06-18T14:10:34.281Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 442ms - Rows affected: 95 - RequestID: pb7latjor1l +2025-06-18T14:10:34.381Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 274ms - Rows affected: 69 - RequestID: o31uemrtyr +2025-06-18T14:10:34.481Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 253ms - IP: 192.168.138.123 - User: user_1031 - RequestID: ul879rr3yt +2025-06-18T14:10:34.581Z [DEBUG] order-service - Auth event: login_success - User: user_1011 - IP: 192.168.13.72 - RequestID: 19oosqbva0s +2025-06-18T14:10:34.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1079 - IP: 192.168.44.5 - RequestID: fdtlan1dz9 +2025-06-18T14:10:34.781Z [DEBUG] order-service - Database INSERT on users - Execution time: 152ms - Rows affected: 14 - RequestID: 0quhhnkksun +2025-06-18T14:10:34.881Z [TRACE] auth-service - Auth event: password_change - User: user_1037 - IP: 192.168.46.63 - RequestID: 2i4f3h3fttm +2025-06-18T14:10:34.981Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1654ms - IP: 192.168.1.152 - User: user_1030 - RequestID: ytemh3bgyo +2025-06-18T14:10:35.081Z [DEBUG] order-service - Operation: payment_processed - Processing time: 224ms - RequestID: hrqqtvpg0h +2025-06-18T14:10:35.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1085 - IP: 192.168.196.226 - RequestID: a1h4jach0c +2025-06-18T14:10:35.281Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 157ms - IP: 192.168.147.171 - User: user_1040 - RequestID: yg1zd0wq1m +2025-06-18T14:10:35.381Z [INFO] notification-service - Database UPDATE on orders - Execution time: 31ms - Rows affected: 91 - RequestID: kwsh8sb8m8l +2025-06-18T14:10:35.481Z [TRACE] user-service - Database SELECT on products - Execution time: 366ms - Rows affected: 93 - RequestID: r824lsmcrai +2025-06-18T14:10:35.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.196.226 - RequestID: 2fmdpm1htou +2025-06-18T14:10:35.681Z [INFO] auth-service - Auth event: logout - User: user_1084 - IP: 192.168.158.144 - RequestID: x4x932pkww +2025-06-18T14:10:35.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.211.72 - RequestID: wfa10w78ng +2025-06-18T14:10:35.881Z [TRACE] user-service - Auth event: login_success - User: user_1037 - IP: 192.168.194.41 - RequestID: qhlhixga2ae +2025-06-18T14:10:35.981Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 356ms - IP: 192.168.181.225 - User: user_1018 - RequestID: 5oxq61zc5cg +2025-06-18T14:10:36.081Z [INFO] notification-service - Operation: payment_processed - Processing time: 1001ms - RequestID: o28vhckpdo +2025-06-18T14:10:36.181Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 387ms - Rows affected: 69 - RequestID: t8xmuy3e5fc +2025-06-18T14:10:36.281Z [INFO] user-service - Operation: email_sent - Processing time: 258ms - RequestID: 0ewkv47ly7rh +2025-06-18T14:10:36.381Z [DEBUG] payment-service - Auth event: password_change - User: user_1035 - IP: 192.168.194.41 - RequestID: 2x8f7xlleyh +2025-06-18T14:10:36.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 93ms - RequestID: xd1i87qpfa +2025-06-18T14:10:36.581Z [DEBUG] order-service - Operation: cache_hit - Processing time: 886ms - RequestID: 747ebgwgjzm +2025-06-18T14:10:36.681Z [INFO] payment-service - Database DELETE on users - Execution time: 395ms - Rows affected: 66 - RequestID: a6hjyez31yl +2025-06-18T14:10:36.781Z [INFO] auth-service - DELETE /api/v1/orders - Status: 200 - Response time: 1431ms - IP: 192.168.170.215 - User: user_1012 - RequestID: p93c6zlq8lj +2025-06-18T14:10:36.881Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 24ms - Rows affected: 63 - RequestID: p0jxfbglt0n +2025-06-18T14:10:36.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1066 - IP: 192.168.11.60 - RequestID: 58ip8zpx78 +2025-06-18T14:10:37.081Z [TRACE] payment-service - Auth event: logout - User: user_1008 - IP: 192.168.242.165 - RequestID: ao4evrpx1lo +2025-06-18T14:10:37.181Z [INFO] auth-service - Database INSERT on products - Execution time: 413ms - Rows affected: 83 - RequestID: m619axm8zya +2025-06-18T14:10:37.281Z [INFO] auth-service - Auth event: logout - User: user_1078 - IP: 192.168.227.77 - RequestID: 7oebg9i2cca +2025-06-18T14:10:37.381Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 475ms - Rows affected: 87 - RequestID: 3mi6x6xta7z +2025-06-18T14:10:37.481Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 148ms - Rows affected: 15 - RequestID: pkmi1a6mmsa +2025-06-18T14:10:37.581Z [INFO] inventory-service - Database INSERT on products - Execution time: 218ms - Rows affected: 12 - RequestID: rbj53rp376l +2025-06-18T14:10:37.681Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 201 - Response time: 618ms - IP: 192.168.187.199 - User: user_1062 - RequestID: 1lhrp31a452 +2025-06-18T14:10:37.781Z [INFO] auth-service - Auth event: login_success - User: user_1017 - IP: 192.168.227.77 - RequestID: 7xk8tzik4oh +2025-06-18T14:10:37.881Z [INFO] user-service - Database INSERT on sessions - Execution time: 418ms - Rows affected: 71 - RequestID: djc5rd45nwr +2025-06-18T14:10:37.981Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 741ms - RequestID: 861s2i535c2 +2025-06-18T14:10:38.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1062 - IP: 192.168.113.218 - RequestID: i4hk507sum +2025-06-18T14:10:38.181Z [DEBUG] user-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.242.165 - RequestID: tbelijh276 +2025-06-18T14:10:38.281Z [INFO] user-service - Auth event: login_success - User: user_1061 - IP: 192.168.141.100 - RequestID: 7s5rzzn0h4m +2025-06-18T14:10:38.381Z [DEBUG] inventory-service - GET /api/v1/users - Status: 500 - Response time: 81ms - IP: 192.168.167.32 - User: user_1071 - RequestID: yby3zea0o4j +2025-06-18T14:10:38.481Z [INFO] user-service - POST /api/v1/orders - Status: 403 - Response time: 935ms - IP: 192.168.68.158 - User: user_1027 - RequestID: 3nyz74c37e9 +2025-06-18T14:10:38.581Z [DEBUG] notification-service - Database DELETE on users - Execution time: 118ms - Rows affected: 78 - RequestID: fgbalhsjwbg +2025-06-18T14:10:38.681Z [INFO] notification-service - POST /api/v1/auth/login - Status: 503 - Response time: 307ms - IP: 192.168.68.128 - User: user_1036 - RequestID: aythu3vc0o9 +2025-06-18T14:10:38.781Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 450ms - Rows affected: 63 - RequestID: fmfx10addtf +2025-06-18T14:10:38.881Z [INFO] payment-service - GET /api/v1/inventory - Status: 403 - Response time: 1378ms - IP: 192.168.10.184 - User: user_1077 - RequestID: 0ropycjsptwg +2025-06-18T14:10:38.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 339ms - RequestID: 466m7765hfk +2025-06-18T14:10:39.081Z [INFO] order-service - Database INSERT on orders - Execution time: 33ms - Rows affected: 99 - RequestID: 9n89ql4buxn +2025-06-18T14:10:39.181Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 382ms - RequestID: lgdkgqwjk4q +2025-06-18T14:10:39.281Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 730ms - RequestID: lt4gxgin01 +2025-06-18T14:10:39.381Z [DEBUG] auth-service - Auth event: login_failed - User: user_1043 - IP: 192.168.14.77 - RequestID: lbymdsy99jo +2025-06-18T14:10:39.481Z [TRACE] auth-service - POST /api/v1/users - Status: 400 - Response time: 1328ms - IP: 192.168.14.77 - User: user_1032 - RequestID: c5wj93ygbc +2025-06-18T14:10:39.581Z [INFO] payment-service - Operation: inventory_updated - Processing time: 436ms - RequestID: 90g1go5k43 +2025-06-18T14:10:39.681Z [INFO] user-service - Database UPDATE on payments - Execution time: 345ms - Rows affected: 91 - RequestID: 1nx32mhs345 +2025-06-18T14:10:39.781Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 74ms - Rows affected: 94 - RequestID: rpfu9b2cyj +2025-06-18T14:10:39.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1003 - IP: 192.168.181.225 - RequestID: f3vhbq9dopt +2025-06-18T14:10:39.981Z [INFO] user-service - Operation: cache_hit - Processing time: 108ms - RequestID: l1lvtc1yu19 +2025-06-18T14:10:40.081Z [INFO] auth-service - PATCH /api/v1/users - Status: 403 - Response time: 1630ms - IP: 192.168.44.5 - User: user_1059 - RequestID: ke1b2eezop +2025-06-18T14:10:40.181Z [INFO] user-service - Auth event: login_failed - User: user_1093 - IP: 192.168.53.133 - RequestID: uq6jb1ufxqm +2025-06-18T14:10:40.281Z [INFO] user-service - Database UPDATE on users - Execution time: 208ms - Rows affected: 16 - RequestID: qm6s6fthrg +2025-06-18T14:10:40.381Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 403 - Response time: 958ms - IP: 192.168.144.38 - User: user_1071 - RequestID: o2tpys16h4g +2025-06-18T14:10:40.481Z [DEBUG] order-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.33.76 - RequestID: 96ax4ew4325 +2025-06-18T14:10:40.581Z [INFO] order-service - Auth event: logout - User: user_1072 - IP: 192.168.53.133 - RequestID: 985wwug3vft +2025-06-18T14:10:40.681Z [INFO] inventory-service - Operation: cache_hit - Processing time: 461ms - RequestID: vu42qq0gqms +2025-06-18T14:10:40.781Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 196ms - Rows affected: 78 - RequestID: h6syns2rmg4 +2025-06-18T14:10:40.881Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 459ms - Rows affected: 45 - RequestID: vib2b7nuyvm +2025-06-18T14:10:40.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 547ms - RequestID: c3wvf6663v9 +2025-06-18T14:10:41.081Z [INFO] payment-service - Operation: notification_queued - Processing time: 588ms - RequestID: 0qhds5qz2g9 +2025-06-18T14:10:41.181Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 305ms - RequestID: fv767m1q5n8 +2025-06-18T14:10:41.281Z [INFO] order-service - PUT /api/v1/orders - Status: 201 - Response time: 1860ms - IP: 192.168.97.87 - User: user_1071 - RequestID: xryhajoi1ab +2025-06-18T14:10:41.381Z [TRACE] order-service - POST /api/v1/payments - Status: 403 - Response time: 626ms - IP: 192.168.141.100 - User: user_1058 - RequestID: 6xq7bjjdek4 +2025-06-18T14:10:41.481Z [TRACE] order-service - Database INSERT on payments - Execution time: 222ms - Rows affected: 37 - RequestID: ncj4swbf1ic +2025-06-18T14:10:41.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.85.229 - RequestID: 8hm5jyvru7m +2025-06-18T14:10:41.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.181.225 - RequestID: gtwxi25clsj +2025-06-18T14:10:41.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.141.100 - RequestID: imbyi9ij0er +2025-06-18T14:10:41.881Z [DEBUG] order-service - Database INSERT on orders - Execution time: 268ms - Rows affected: 78 - RequestID: 9r4eslcqrqb +2025-06-18T14:10:41.981Z [INFO] payment-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.79.116 - RequestID: 1jbm2g846el +2025-06-18T14:10:42.081Z [INFO] order-service - Database DELETE on products - Execution time: 435ms - Rows affected: 93 - RequestID: 60rfsh2fwv7 +2025-06-18T14:10:42.181Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 428ms - RequestID: fc3w6c0kurj +2025-06-18T14:10:42.281Z [INFO] order-service - DELETE /api/v1/payments - Status: 400 - Response time: 1256ms - IP: 192.168.147.171 - User: user_1048 - RequestID: cx9jntkinb +2025-06-18T14:10:42.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1097 - IP: 192.168.232.72 - RequestID: pn474sti82i +2025-06-18T14:10:42.481Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 1338ms - IP: 192.168.10.184 - User: user_1062 - RequestID: edky3sckyzb +2025-06-18T14:10:42.581Z [INFO] order-service - Operation: webhook_sent - Processing time: 314ms - RequestID: 9kuafgfqdno +2025-06-18T14:10:42.681Z [INFO] auth-service - Operation: cache_miss - Processing time: 461ms - RequestID: bgxa7aabwi9 +2025-06-18T14:10:42.781Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 248ms - RequestID: mhmajm8hvgb +2025-06-18T14:10:42.881Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 371ms - Rows affected: 34 - RequestID: trniiftt58h +2025-06-18T14:10:42.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.79.143 - RequestID: 9alc1av9ab +2025-06-18T14:10:43.081Z [TRACE] notification-service - Operation: cache_miss - Processing time: 837ms - RequestID: 80dm0skv3ss +2025-06-18T14:10:43.181Z [TRACE] order-service - Operation: webhook_sent - Processing time: 454ms - RequestID: 5xen0fdyond +2025-06-18T14:10:43.281Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 401 - Response time: 1375ms - IP: 192.168.232.72 - User: user_1059 - RequestID: w9gdcwt4j3k +2025-06-18T14:10:43.381Z [INFO] auth-service - Auth event: login_success - User: user_1060 - IP: 192.168.232.72 - RequestID: jet8zn5f94l +2025-06-18T14:10:43.481Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 502 - Response time: 974ms - IP: 192.168.229.123 - User: user_1095 - RequestID: ps4fmvw0lsc +2025-06-18T14:10:43.581Z [TRACE] order-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.138.123 - RequestID: iivwz286ut7 +2025-06-18T14:10:43.681Z [TRACE] notification-service - Operation: notification_queued - Processing time: 636ms - RequestID: 7qbuxays9mu +2025-06-18T14:10:43.781Z [DEBUG] order-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.10.184 - RequestID: e9o4j7h6n94 +2025-06-18T14:10:43.881Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 834ms - IP: 192.168.46.63 - User: user_1005 - RequestID: h0lhg8wtd7 +2025-06-18T14:10:43.981Z [TRACE] order-service - Operation: cache_miss - Processing time: 309ms - RequestID: tpvp7neoyik +2025-06-18T14:10:44.081Z [INFO] payment-service - POST /api/v1/auth/login - Status: 401 - Response time: 1562ms - IP: 192.168.85.229 - User: user_1081 - RequestID: p7566cx7nt +2025-06-18T14:10:44.181Z [INFO] auth-service - POST /api/v1/payments - Status: 400 - Response time: 263ms - IP: 192.168.189.103 - User: user_1074 - RequestID: un2ks9wmv1s +2025-06-18T14:10:44.281Z [INFO] payment-service - Auth event: password_change - User: user_1050 - IP: 192.168.138.123 - RequestID: lhuxq8vrpgn +2025-06-18T14:10:44.381Z [TRACE] auth-service - Database DELETE on orders - Execution time: 68ms - Rows affected: 2 - RequestID: uverlrvxcw +2025-06-18T14:10:44.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1078 - IP: 192.168.85.229 - RequestID: 4anpj9thfu1 +2025-06-18T14:10:44.581Z [TRACE] user-service - POST /api/v1/auth/login - Status: 500 - Response time: 1162ms - IP: 192.168.53.133 - User: user_1094 - RequestID: wnv0hkkzdt8 +2025-06-18T14:10:44.681Z [INFO] notification-service - Operation: inventory_updated - Processing time: 273ms - RequestID: ihuyzz3f5k +2025-06-18T14:10:44.781Z [DEBUG] order-service - Auth event: login_failed - User: user_1068 - IP: 192.168.53.133 - RequestID: s0xpjlhqtj +2025-06-18T14:10:44.881Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1082ms - IP: 192.168.53.133 - User: user_1044 - RequestID: u28ue6uxth +2025-06-18T14:10:44.981Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 200ms - RequestID: 0jg2ui2craiw +2025-06-18T14:10:45.081Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.68.158 - RequestID: m3rfmj9lkqa +2025-06-18T14:10:45.181Z [DEBUG] user-service - Operation: order_created - Processing time: 783ms - RequestID: o161u7oe359 +2025-06-18T14:10:45.281Z [INFO] auth-service - Database INSERT on orders - Execution time: 124ms - Rows affected: 46 - RequestID: 753umsi8csb +2025-06-18T14:10:45.381Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 436ms - Rows affected: 1 - RequestID: 60rtiqv3jhk +2025-06-18T14:10:45.481Z [DEBUG] auth-service - Auth event: password_change - User: user_1026 - IP: 192.168.64.33 - RequestID: ckh30ynmdsc +2025-06-18T14:10:45.581Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 878ms - RequestID: p15bt7twj1 +2025-06-18T14:10:45.681Z [TRACE] order-service - Operation: email_sent - Processing time: 773ms - RequestID: pj9vn90cqzf +2025-06-18T14:10:45.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.53.133 - RequestID: 39ok1dlaz49 +2025-06-18T14:10:45.881Z [INFO] auth-service - Auth event: login_failed - User: user_1020 - IP: 192.168.141.100 - RequestID: a2p2592q09l +2025-06-18T14:10:45.981Z [INFO] order-service - Operation: email_sent - Processing time: 730ms - RequestID: au9ue5q187j +2025-06-18T14:10:46.081Z [INFO] notification-service - POST /api/v1/payments - Status: 201 - Response time: 274ms - IP: 192.168.227.77 - User: user_1082 - RequestID: 3sl5ubhygs6 +2025-06-18T14:10:46.181Z [INFO] inventory-service - Auth event: password_change - User: user_1031 - IP: 192.168.81.206 - RequestID: e8exxtlo4lh +2025-06-18T14:10:46.281Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 52ms - Rows affected: 72 - RequestID: cxrhlxelg38 +2025-06-18T14:10:46.381Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 403 - Response time: 80ms - IP: 192.168.79.141 - User: user_1033 - RequestID: oiiposxc197 +2025-06-18T14:10:46.481Z [INFO] auth-service - Database DELETE on orders - Execution time: 106ms - Rows affected: 40 - RequestID: y63kmp064xh +2025-06-18T14:10:46.581Z [TRACE] notification-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.68.158 - RequestID: 4vogenepoxa +2025-06-18T14:10:46.681Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 283ms - Rows affected: 47 - RequestID: ofca1fhop8h +2025-06-18T14:10:46.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 1021ms - RequestID: ob1buhq9j9e +2025-06-18T14:10:46.881Z [TRACE] user-service - PATCH /api/v1/users - Status: 201 - Response time: 415ms - IP: 192.168.227.233 - User: user_1072 - RequestID: efwhhnpefdh +2025-06-18T14:10:46.981Z [DEBUG] order-service - Database INSERT on products - Execution time: 139ms - Rows affected: 99 - RequestID: ewrmcdotbnm +2025-06-18T14:10:47.081Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 56ms - Rows affected: 22 - RequestID: 6zc0zgcz5fh +2025-06-18T14:10:47.181Z [TRACE] auth-service - Database SELECT on orders - Execution time: 312ms - Rows affected: 94 - RequestID: y0etfgiudve +2025-06-18T14:10:47.281Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 502 - Response time: 1655ms - IP: 192.168.141.100 - User: user_1064 - RequestID: e9sjb6hnq7c +2025-06-18T14:10:47.381Z [TRACE] payment-service - Database SELECT on payments - Execution time: 123ms - Rows affected: 46 - RequestID: kb2tn17m0i +2025-06-18T14:10:47.481Z [TRACE] user-service - Auth event: login_success - User: user_1016 - IP: 192.168.79.141 - RequestID: 56kbhpcdiww +2025-06-18T14:10:47.581Z [INFO] inventory-service - Auth event: login_success - User: user_1054 - IP: 192.168.100.240 - RequestID: rn5fvc0loi +2025-06-18T14:10:47.681Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 200 - Response time: 1717ms - IP: 192.168.133.7 - User: user_1025 - RequestID: styojxlcqx +2025-06-18T14:10:47.781Z [TRACE] auth-service - Auth event: logout - User: user_1095 - IP: 192.168.189.103 - RequestID: mrr1v8x88w +2025-06-18T14:10:47.881Z [INFO] payment-service - Database INSERT on users - Execution time: 158ms - Rows affected: 11 - RequestID: 0lzjevtm5den +2025-06-18T14:10:47.981Z [TRACE] user-service - Database DELETE on users - Execution time: 24ms - Rows affected: 66 - RequestID: hrtwksn1wzv +2025-06-18T14:10:48.081Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 51ms - Rows affected: 59 - RequestID: oweqf7bzlb +2025-06-18T14:10:48.181Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 503 - Response time: 1775ms - IP: 192.168.227.233 - User: user_1037 - RequestID: idgjwdv98jc +2025-06-18T14:10:48.281Z [TRACE] auth-service - Auth event: login_failed - User: user_1065 - IP: 192.168.170.215 - RequestID: fl68l4v0th +2025-06-18T14:10:48.381Z [INFO] payment-service - Database DELETE on sessions - Execution time: 227ms - Rows affected: 21 - RequestID: wmj8l5dxfy +2025-06-18T14:10:48.481Z [INFO] order-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1954ms - IP: 192.168.68.128 - User: user_1098 - RequestID: ljrqzyvswph +2025-06-18T14:10:48.581Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.46.63 - RequestID: 67mkcx2ht8 +2025-06-18T14:10:48.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.194.41 - RequestID: ist023llz1 +2025-06-18T14:10:48.781Z [TRACE] user-service - Operation: notification_queued - Processing time: 665ms - RequestID: 7lkb1extb5p +2025-06-18T14:10:48.881Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 184ms - Rows affected: 67 - RequestID: 7f1163vpmp4 +2025-06-18T14:10:48.981Z [DEBUG] user-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.31.117 - RequestID: 745vksvcoyk +2025-06-18T14:10:49.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 86ms - RequestID: dr48zljhoop +2025-06-18T14:10:49.181Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 401 - Response time: 1471ms - IP: 192.168.36.218 - User: user_1017 - RequestID: va66jfbz58l +2025-06-18T14:10:49.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1059 - IP: 192.168.196.226 - RequestID: schlvkkhlc +2025-06-18T14:10:49.381Z [INFO] notification-service - Operation: webhook_sent - Processing time: 632ms - RequestID: 1vlj6az57rii +2025-06-18T14:10:49.481Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1398ms - IP: 192.168.144.38 - User: user_1074 - RequestID: v9re1uq5zbb +2025-06-18T14:10:49.581Z [DEBUG] auth-service - POST /api/v1/payments - Status: 201 - Response time: 1712ms - IP: 192.168.36.218 - User: user_1077 - RequestID: 5paptz07oks +2025-06-18T14:10:49.681Z [DEBUG] notification-service - Auth event: logout - User: user_1039 - IP: 192.168.104.37 - RequestID: 7arpfmj7erg +2025-06-18T14:10:49.781Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 502 - Response time: 1073ms - IP: 192.168.138.123 - User: user_1018 - RequestID: ed7fwdzw16d +2025-06-18T14:10:49.881Z [TRACE] auth-service - POST /api/v1/orders - Status: 500 - Response time: 1647ms - IP: 192.168.187.199 - User: user_1056 - RequestID: ae3mp056b9d +2025-06-18T14:10:49.981Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 411ms - Rows affected: 80 - RequestID: i7qu5cyh2u +2025-06-18T14:10:50.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.113.218 - RequestID: drdh2d856zj +2025-06-18T14:10:50.181Z [TRACE] user-service - Database DELETE on users - Execution time: 201ms - Rows affected: 7 - RequestID: 0lg2bcng767c +2025-06-18T14:10:50.281Z [INFO] notification-service - Auth event: login_success - User: user_1029 - IP: 192.168.79.141 - RequestID: n2hf0j0098 +2025-06-18T14:10:50.381Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 328ms - Rows affected: 14 - RequestID: t2sog79zagg +2025-06-18T14:10:50.481Z [TRACE] auth-service - PUT /api/v1/users - Status: 200 - Response time: 1289ms - IP: 192.168.46.63 - User: user_1052 - RequestID: k7qtnl7uxdi +2025-06-18T14:10:50.581Z [TRACE] auth-service - Database DELETE on payments - Execution time: 418ms - Rows affected: 92 - RequestID: 8k9qssta0or +2025-06-18T14:10:50.681Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 51ms - Rows affected: 99 - RequestID: al7yxfrh3ni +2025-06-18T14:10:50.781Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 959ms - RequestID: w165fj8tq38 +2025-06-18T14:10:50.881Z [DEBUG] order-service - Auth event: logout - User: user_1000 - IP: 192.168.79.116 - RequestID: nmr3vpb3czc +2025-06-18T14:10:50.981Z [TRACE] payment-service - GET /api/v1/users - Status: 200 - Response time: 603ms - IP: 192.168.141.100 - User: user_1090 - RequestID: obseuww35h +2025-06-18T14:10:51.081Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1006ms - IP: 192.168.211.72 - User: user_1003 - RequestID: xc6z3ocgxe +2025-06-18T14:10:51.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 100ms - RequestID: y2gphow46n +2025-06-18T14:10:51.281Z [DEBUG] user-service - Database INSERT on products - Execution time: 102ms - Rows affected: 20 - RequestID: f4klenfcqp9 +2025-06-18T14:10:51.381Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 119ms - RequestID: sogowsyixq +2025-06-18T14:10:51.481Z [TRACE] inventory-service - Database INSERT on products - Execution time: 14ms - Rows affected: 50 - RequestID: rkmmjq5qyje +2025-06-18T14:10:51.581Z [TRACE] order-service - DELETE /api/v1/payments - Status: 201 - Response time: 1401ms - IP: 192.168.81.206 - User: user_1031 - RequestID: hpjz6h0i72 +2025-06-18T14:10:51.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1008 - IP: 192.168.235.117 - RequestID: surt0hz9tmm +2025-06-18T14:10:51.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.227.77 - RequestID: du6jkw4tyk +2025-06-18T14:10:51.881Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 201 - Response time: 417ms - IP: 192.168.229.123 - User: user_1000 - RequestID: 3rx3jnqirwy +2025-06-18T14:10:51.981Z [INFO] order-service - Auth event: login_failed - User: user_1013 - IP: 192.168.44.5 - RequestID: 8zrhz63c118 +2025-06-18T14:10:52.081Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1291ms - IP: 192.168.159.94 - User: user_1042 - RequestID: y0bvrroufy +2025-06-18T14:10:52.181Z [INFO] inventory-service - PATCH /api/v1/users - Status: 401 - Response time: 78ms - IP: 192.168.33.76 - User: user_1090 - RequestID: p2oa2u5lt7l +2025-06-18T14:10:52.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.104.37 - RequestID: eeb2tqxl7ai +2025-06-18T14:10:52.381Z [TRACE] notification-service - Auth event: logout - User: user_1049 - IP: 192.168.158.144 - RequestID: 7ze8yick9ui +2025-06-18T14:10:52.481Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 267ms - RequestID: yt20euqhows +2025-06-18T14:10:52.581Z [DEBUG] notification-service - Database SELECT on products - Execution time: 198ms - Rows affected: 63 - RequestID: 0sugpbp5cy5j +2025-06-18T14:10:52.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.242.165 - RequestID: sbzadvmnqpj +2025-06-18T14:10:52.781Z [INFO] auth-service - Auth event: logout - User: user_1065 - IP: 192.168.227.77 - RequestID: ewl2lf3btf4 +2025-06-18T14:10:52.881Z [TRACE] payment-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.196.226 - RequestID: 9sy1wjdehw9 +2025-06-18T14:10:52.981Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 404 - Response time: 1828ms - IP: 192.168.167.32 - User: user_1018 - RequestID: 5iymd068myn +2025-06-18T14:10:53.081Z [TRACE] order-service - Auth event: login_failed - User: user_1034 - IP: 192.168.11.60 - RequestID: kafy2gy1zw +2025-06-18T14:10:53.181Z [INFO] notification-service - Database UPDATE on users - Execution time: 280ms - Rows affected: 60 - RequestID: p1zivc36rpc +2025-06-18T14:10:53.281Z [DEBUG] order-service - Operation: order_created - Processing time: 969ms - RequestID: 1sss601d7jd +2025-06-18T14:10:53.381Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 355ms - IP: 192.168.100.240 - User: user_1099 - RequestID: pk2hzg6werb +2025-06-18T14:10:53.481Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1468ms - IP: 192.168.79.143 - User: user_1045 - RequestID: zkdjve190r +2025-06-18T14:10:53.581Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 288ms - Rows affected: 59 - RequestID: xqdv56bpiim +2025-06-18T14:10:53.681Z [INFO] inventory-service - Auth event: logout - User: user_1066 - IP: 192.168.247.134 - RequestID: vk3fx4dgkr +2025-06-18T14:10:53.781Z [TRACE] payment-service - Database UPDATE on users - Execution time: 83ms - Rows affected: 45 - RequestID: z8jg50o1akd +2025-06-18T14:10:53.881Z [INFO] order-service - Database SELECT on sessions - Execution time: 462ms - Rows affected: 61 - RequestID: 4deisicoy46 +2025-06-18T14:10:53.981Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 125ms - Rows affected: 80 - RequestID: qwxrac5cd1i +2025-06-18T14:10:54.081Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 610ms - RequestID: cf7bm9brc4 +2025-06-18T14:10:54.181Z [TRACE] inventory-service - Database DELETE on users - Execution time: 152ms - Rows affected: 61 - RequestID: l4zq3i2oc0k +2025-06-18T14:10:54.281Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 503 - Response time: 1203ms - IP: 192.168.28.146 - User: user_1098 - RequestID: a2d2yoc4yx +2025-06-18T14:10:54.381Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 400 - Response time: 1319ms - IP: 192.168.141.100 - User: user_1099 - RequestID: b7tci9vies9 +2025-06-18T14:10:54.481Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 143ms - IP: 192.168.232.72 - User: user_1018 - RequestID: 581vzsrt104 +2025-06-18T14:10:54.581Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 235ms - Rows affected: 34 - RequestID: 1aa6dqayb9g +2025-06-18T14:10:54.681Z [TRACE] payment-service - POST /api/v1/payments - Status: 500 - Response time: 819ms - IP: 192.168.189.103 - User: user_1094 - RequestID: nacepj0ouj +2025-06-18T14:10:54.781Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 401 - Response time: 634ms - IP: 192.168.81.206 - User: user_1046 - RequestID: ui6a51d6zz +2025-06-18T14:10:54.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 519ms - RequestID: 6lvgpygc16r +2025-06-18T14:10:54.981Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 475ms - Rows affected: 8 - RequestID: qriy9taj9gl +2025-06-18T14:10:55.081Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1936ms - IP: 192.168.159.94 - User: user_1075 - RequestID: 3btx0mu1kz +2025-06-18T14:10:55.181Z [INFO] auth-service - Database INSERT on products - Execution time: 281ms - Rows affected: 97 - RequestID: 136tqmfc5n6a +2025-06-18T14:10:55.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.144.38 - RequestID: ylhiswcet5b +2025-06-18T14:10:55.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 955ms - RequestID: lbl8572tijc +2025-06-18T14:10:55.481Z [DEBUG] order-service - Operation: cache_miss - Processing time: 707ms - RequestID: 5qj6b8lj002 +2025-06-18T14:10:55.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1031 - IP: 192.168.242.165 - RequestID: t9iqpr1nv4 +2025-06-18T14:10:55.681Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 144ms - Rows affected: 14 - RequestID: r602cjzji9 +2025-06-18T14:10:55.781Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 180ms - Rows affected: 2 - RequestID: xgkwicilk7p +2025-06-18T14:10:55.881Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 125ms - Rows affected: 65 - RequestID: cbhyl0d2o45 +2025-06-18T14:10:55.981Z [TRACE] order-service - Database INSERT on users - Execution time: 411ms - Rows affected: 40 - RequestID: 9jwmj7d8o6r +2025-06-18T14:10:56.081Z [INFO] user-service - Database INSERT on users - Execution time: 464ms - Rows affected: 37 - RequestID: 8uo4muhxnn +2025-06-18T14:10:56.181Z [DEBUG] user-service - Database INSERT on users - Execution time: 440ms - Rows affected: 20 - RequestID: v1w3ecyi0p +2025-06-18T14:10:56.281Z [INFO] payment-service - Operation: inventory_updated - Processing time: 819ms - RequestID: ne5xxzmqhk +2025-06-18T14:10:56.381Z [TRACE] user-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.232.72 - RequestID: yvy0w3nmjv +2025-06-18T14:10:56.481Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 159ms - Rows affected: 52 - RequestID: qo7fss3j5cm +2025-06-18T14:10:56.581Z [INFO] auth-service - Operation: order_created - Processing time: 988ms - RequestID: 7qf47ap2rid +2025-06-18T14:10:56.681Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 159ms - Rows affected: 15 - RequestID: i6fwnz8ezgd +2025-06-18T14:10:56.781Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 503 - Response time: 1154ms - IP: 192.168.64.33 - User: user_1010 - RequestID: s59yl06ggus +2025-06-18T14:10:56.881Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 62ms - IP: 192.168.187.199 - User: user_1064 - RequestID: tys4bava8v +2025-06-18T14:10:56.981Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 503 - Response time: 320ms - IP: 192.168.232.72 - User: user_1002 - RequestID: 34579ahgfsf +2025-06-18T14:10:57.081Z [DEBUG] payment-service - Auth event: password_change - User: user_1003 - IP: 192.168.32.38 - RequestID: 1oira9t50t7 +2025-06-18T14:10:57.181Z [INFO] notification-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.28.146 - RequestID: 4s0bqtipuf6 +2025-06-18T14:10:57.281Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 404 - Response time: 12ms - IP: 192.168.68.158 - User: user_1062 - RequestID: te9xa8u9nd +2025-06-18T14:10:57.381Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 973ms - RequestID: p1y8wp2by5j +2025-06-18T14:10:57.481Z [INFO] order-service - GET /api/v1/auth/login - Status: 500 - Response time: 226ms - IP: 192.168.227.77 - User: user_1035 - RequestID: a4mikknl7ws +2025-06-18T14:10:57.581Z [INFO] notification-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.31.117 - RequestID: jdhmezdwxj +2025-06-18T14:10:57.681Z [DEBUG] user-service - Operation: email_sent - Processing time: 1025ms - RequestID: 9nq3dcemagg +2025-06-18T14:10:57.781Z [INFO] user-service - Operation: notification_queued - Processing time: 558ms - RequestID: waz49y4tr5f +2025-06-18T14:10:57.881Z [TRACE] inventory-service - Operation: email_sent - Processing time: 123ms - RequestID: jte659thb8d +2025-06-18T14:10:57.981Z [INFO] notification-service - Database SELECT on sessions - Execution time: 78ms - Rows affected: 52 - RequestID: 5a8jghcop5k +2025-06-18T14:10:58.081Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 148ms - Rows affected: 66 - RequestID: ojzpd6edqq +2025-06-18T14:10:58.181Z [TRACE] user-service - Database DELETE on products - Execution time: 378ms - Rows affected: 84 - RequestID: m2yyp0gmxyi +2025-06-18T14:10:58.281Z [DEBUG] user-service - PUT /api/v1/users - Status: 403 - Response time: 1857ms - IP: 192.168.13.72 - User: user_1013 - RequestID: taqg8ur1l3e +2025-06-18T14:10:58.381Z [TRACE] notification-service - Database INSERT on products - Execution time: 27ms - Rows affected: 16 - RequestID: nja2m9pocy +2025-06-18T14:10:58.481Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 732ms - IP: 192.168.68.158 - User: user_1052 - RequestID: biwp8j71i +2025-06-18T14:10:58.581Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 401 - Response time: 1693ms - IP: 192.168.85.229 - User: user_1084 - RequestID: o3m4htvichj +2025-06-18T14:10:58.681Z [INFO] payment-service - Auth event: password_change - User: user_1078 - IP: 192.168.79.143 - RequestID: 08bvayfcosy6 +2025-06-18T14:10:58.781Z [TRACE] payment-service - Auth event: password_change - User: user_1046 - IP: 192.168.46.63 - RequestID: tf2c9vsea1 +2025-06-18T14:10:58.881Z [INFO] auth-service - Auth event: login_failed - User: user_1022 - IP: 192.168.32.38 - RequestID: rys988p74mc +2025-06-18T14:10:58.981Z [TRACE] auth-service - GET /api/v1/users - Status: 404 - Response time: 1791ms - IP: 192.168.28.146 - User: user_1017 - RequestID: wgeb3fou2ao +2025-06-18T14:10:59.081Z [DEBUG] order-service - DELETE /api/v1/users - Status: 201 - Response time: 1807ms - IP: 192.168.194.41 - User: user_1019 - RequestID: 25d7aha676w +2025-06-18T14:10:59.181Z [TRACE] payment-service - Operation: payment_processed - Processing time: 820ms - RequestID: et6hj5plt2b +2025-06-18T14:10:59.281Z [INFO] notification-service - Database DELETE on sessions - Execution time: 292ms - Rows affected: 90 - RequestID: qq8ssn9u0nh +2025-06-18T14:10:59.381Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 607ms - RequestID: 7jmb6og20mo +2025-06-18T14:10:59.481Z [INFO] payment-service - Auth event: login_failed - User: user_1058 - IP: 192.168.247.134 - RequestID: q2cszna2akk +2025-06-18T14:10:59.581Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 148ms - RequestID: 7pmz5eku17g +2025-06-18T14:10:59.681Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 24ms - Rows affected: 50 - RequestID: i2ruicph2yn +2025-06-18T14:10:59.781Z [DEBUG] notification-service - Database DELETE on products - Execution time: 445ms - Rows affected: 0 - RequestID: 7ozpfnyfeg4 +2025-06-18T14:10:59.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1000 - IP: 192.168.33.76 - RequestID: fe247cl4k4b +2025-06-18T14:10:59.981Z [INFO] notification-service - Auth event: login_failed - User: user_1025 - IP: 192.168.1.152 - RequestID: zzk3zcc7xql +2025-06-18T14:11:00.081Z [TRACE] order-service - Database DELETE on sessions - Execution time: 186ms - Rows affected: 55 - RequestID: 8xdj8u3b4rk +2025-06-18T14:11:00.181Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 47ms - Rows affected: 91 - RequestID: 6o6tupwdcni +2025-06-18T14:11:00.281Z [DEBUG] user-service - Database SELECT on products - Execution time: 88ms - Rows affected: 31 - RequestID: vii1yoxokme +2025-06-18T14:11:00.381Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1066ms - IP: 192.168.227.77 - User: user_1099 - RequestID: xgdekip6w5e +2025-06-18T14:11:00.481Z [DEBUG] order-service - POST /api/v1/payments - Status: 500 - Response time: 32ms - IP: 192.168.247.134 - User: user_1095 - RequestID: mjz40k2t9nm +2025-06-18T14:11:00.581Z [INFO] user-service - Operation: cache_hit - Processing time: 641ms - RequestID: 2fpgaezqv1c +2025-06-18T14:11:00.681Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 403 - Response time: 891ms - IP: 192.168.227.77 - User: user_1072 - RequestID: 4edytgge97p +2025-06-18T14:11:00.781Z [DEBUG] notification-service - Auth event: password_change - User: user_1014 - IP: 192.168.138.123 - RequestID: ykal5hy7mi +2025-06-18T14:11:00.881Z [INFO] user-service - Operation: email_sent - Processing time: 199ms - RequestID: 94rt8r3z1sd +2025-06-18T14:11:00.981Z [DEBUG] order-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.81.206 - RequestID: d8q554f5rsk +2025-06-18T14:11:01.081Z [DEBUG] inventory-service - Auth event: password_change - User: user_1092 - IP: 192.168.79.141 - RequestID: 08agxxxu93y3 +2025-06-18T14:11:01.181Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1096ms - IP: 192.168.113.218 - User: user_1051 - RequestID: heyfhgcna9c +2025-06-18T14:11:01.281Z [DEBUG] user-service - Operation: cache_miss - Processing time: 180ms - RequestID: 0buv2e0nlj5i +2025-06-18T14:11:01.381Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 404 - Response time: 369ms - IP: 192.168.31.117 - User: user_1003 - RequestID: c5epujd4t66 +2025-06-18T14:11:01.481Z [DEBUG] notification-service - Operation: email_sent - Processing time: 774ms - RequestID: 1325ebeubjfi +2025-06-18T14:11:01.581Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 486ms - RequestID: wz6i6w8a58 +2025-06-18T14:11:01.681Z [INFO] notification-service - Auth event: password_change - User: user_1039 - IP: 192.168.36.218 - RequestID: 21giqcltxrc +2025-06-18T14:11:01.781Z [INFO] inventory-service - Operation: payment_processed - Processing time: 333ms - RequestID: mo41md1wqd +2025-06-18T14:11:01.881Z [INFO] order-service - Operation: cache_hit - Processing time: 132ms - RequestID: do004pqvwzv +2025-06-18T14:11:01.981Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 757ms - RequestID: 9m9hb1tzff4 +2025-06-18T14:11:02.081Z [TRACE] notification-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.242.165 - RequestID: lm9tqehbchq +2025-06-18T14:11:02.181Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 330ms - Rows affected: 14 - RequestID: uozynozy8fb +2025-06-18T14:11:02.281Z [TRACE] inventory-service - Operation: order_created - Processing time: 922ms - RequestID: fzhyutujetq +2025-06-18T14:11:02.381Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 324ms - Rows affected: 15 - RequestID: pk3iunq42v +2025-06-18T14:11:02.481Z [DEBUG] notification-service - Database DELETE on products - Execution time: 366ms - Rows affected: 81 - RequestID: fd791w9uu7t +2025-06-18T14:11:02.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 873ms - RequestID: mox6m613mg +2025-06-18T14:11:02.681Z [INFO] auth-service - PUT /api/v1/payments - Status: 403 - Response time: 1306ms - IP: 192.168.144.38 - User: user_1021 - RequestID: jfd4lonr7jh +2025-06-18T14:11:02.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.227.233 - RequestID: io4zshjlpwd +2025-06-18T14:11:02.881Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 935ms - RequestID: avqh4cygwao +2025-06-18T14:11:02.981Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 1251ms - IP: 192.168.11.60 - User: user_1099 - RequestID: o4f6d99jjkj +2025-06-18T14:11:03.081Z [INFO] auth-service - Operation: inventory_updated - Processing time: 89ms - RequestID: 9jpv2oo73e4 +2025-06-18T14:11:03.181Z [INFO] auth-service - Database UPDATE on products - Execution time: 339ms - Rows affected: 83 - RequestID: yzspgx8whp +2025-06-18T14:11:03.281Z [INFO] order-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1634ms - IP: 192.168.14.77 - User: user_1089 - RequestID: nfd6m3qxxae +2025-06-18T14:11:03.381Z [INFO] auth-service - DELETE /api/v1/payments - Status: 503 - Response time: 528ms - IP: 192.168.68.158 - User: user_1067 - RequestID: yl37s1rp81 +2025-06-18T14:11:03.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.196.226 - RequestID: 5si8d28d1am +2025-06-18T14:11:03.581Z [INFO] user-service - GET /api/v1/users - Status: 502 - Response time: 1639ms - IP: 192.168.181.225 - User: user_1070 - RequestID: 7qlgvia8zvl +2025-06-18T14:11:03.681Z [DEBUG] notification-service - Operation: order_created - Processing time: 1039ms - RequestID: 73jpm21n0ds +2025-06-18T14:11:03.781Z [INFO] inventory-service - Operation: notification_queued - Processing time: 926ms - RequestID: vj9wwgor0me +2025-06-18T14:11:03.881Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 406ms - Rows affected: 47 - RequestID: rxi4a9vmd2s +2025-06-18T14:11:03.981Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 103ms - Rows affected: 50 - RequestID: mgxrlmz68ub +2025-06-18T14:11:04.081Z [TRACE] notification-service - Auth event: password_change - User: user_1078 - IP: 192.168.11.60 - RequestID: f39v0ejmwhh +2025-06-18T14:11:04.181Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 62ms - Rows affected: 46 - RequestID: lidrn4dppb +2025-06-18T14:11:04.281Z [TRACE] order-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.11.60 - RequestID: d6cplk5bza +2025-06-18T14:11:04.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 1037ms - RequestID: 7ava0clsx59 +2025-06-18T14:11:04.481Z [DEBUG] user-service - Operation: cache_miss - Processing time: 613ms - RequestID: k3edvfqvkyj +2025-06-18T14:11:04.581Z [INFO] inventory-service - Auth event: login_success - User: user_1037 - IP: 192.168.174.114 - RequestID: j5545bgxqme +2025-06-18T14:11:04.681Z [TRACE] auth-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.159.94 - RequestID: bx7xxo1sqpu +2025-06-18T14:11:04.781Z [TRACE] user-service - Operation: notification_queued - Processing time: 78ms - RequestID: i5l19azft2q +2025-06-18T14:11:04.881Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 404 - Response time: 886ms - IP: 192.168.187.199 - User: user_1073 - RequestID: imw4syog01a +2025-06-18T14:11:04.981Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 983ms - IP: 192.168.104.37 - User: user_1077 - RequestID: 5l1393hsk9w +2025-06-18T14:11:05.081Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 865ms - RequestID: mwpffep8hu +2025-06-18T14:11:05.181Z [DEBUG] auth-service - Auth event: logout - User: user_1021 - IP: 192.168.158.144 - RequestID: yfpxui8a3qr +2025-06-18T14:11:05.281Z [INFO] auth-service - PATCH /api/v1/orders - Status: 400 - Response time: 26ms - IP: 192.168.187.199 - User: user_1030 - RequestID: jaqffk3vfu +2025-06-18T14:11:05.381Z [TRACE] payment-service - Auth event: logout - User: user_1084 - IP: 192.168.170.215 - RequestID: rop1d26gb +2025-06-18T14:11:05.481Z [INFO] payment-service - Auth event: login_failed - User: user_1064 - IP: 192.168.133.7 - RequestID: a3euu6df8jg +2025-06-18T14:11:05.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.133.7 - RequestID: s9tcaj9tmm +2025-06-18T14:11:05.681Z [DEBUG] order-service - Database INSERT on users - Execution time: 170ms - Rows affected: 78 - RequestID: s7hkskysc7 +2025-06-18T14:11:05.781Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 448ms - Rows affected: 17 - RequestID: tj6wbivzva +2025-06-18T14:11:05.881Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 500 - Response time: 693ms - IP: 192.168.104.37 - User: user_1014 - RequestID: 3krchg4ujeg +2025-06-18T14:11:05.981Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 403 - Response time: 1657ms - IP: 192.168.211.72 - User: user_1044 - RequestID: x9nijtlf2l +2025-06-18T14:11:06.081Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 600ms - RequestID: gifgutd5f1 +2025-06-18T14:11:06.181Z [TRACE] user-service - Operation: cache_miss - Processing time: 57ms - RequestID: s633j85vy3 +2025-06-18T14:11:06.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1072 - IP: 192.168.138.123 - RequestID: malmirwqw7l +2025-06-18T14:11:06.381Z [TRACE] payment-service - Operation: email_sent - Processing time: 510ms - RequestID: bt0714wzisk +2025-06-18T14:11:06.481Z [INFO] order-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.211.72 - RequestID: h1161vw4oz7 +2025-06-18T14:11:06.581Z [INFO] payment-service - Database UPDATE on users - Execution time: 12ms - Rows affected: 74 - RequestID: fnchi315z7k +2025-06-18T14:11:06.681Z [INFO] user-service - Operation: cache_hit - Processing time: 332ms - RequestID: ig1v8076x0m +2025-06-18T14:11:06.781Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 400 - Response time: 1701ms - IP: 192.168.194.41 - User: user_1093 - RequestID: te6krey7a6 +2025-06-18T14:11:06.881Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 400 - Response time: 140ms - IP: 192.168.100.240 - User: user_1045 - RequestID: qshv5vhs268 +2025-06-18T14:11:06.981Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 503 - Response time: 1883ms - IP: 192.168.36.218 - User: user_1058 - RequestID: 0km79y1uq99 +2025-06-18T14:11:07.081Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 490ms - Rows affected: 42 - RequestID: so5nmp6buo +2025-06-18T14:11:07.181Z [INFO] inventory-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.31.117 - RequestID: 45iu3z0332o +2025-06-18T14:11:07.281Z [TRACE] payment-service - Auth event: password_change - User: user_1045 - IP: 192.168.235.117 - RequestID: 7hscbjcyzef +2025-06-18T14:11:07.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.64.33 - RequestID: 4clwfkcwan8 +2025-06-18T14:11:07.481Z [INFO] order-service - Auth event: logout - User: user_1080 - IP: 192.168.14.77 - RequestID: d8hzhjtehel +2025-06-18T14:11:07.581Z [INFO] notification-service - Auth event: logout - User: user_1058 - IP: 192.168.227.233 - RequestID: sks6n8x2o4p +2025-06-18T14:11:07.681Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 837ms - RequestID: gb07x2hgclv +2025-06-18T14:11:07.781Z [TRACE] user-service - Operation: email_sent - Processing time: 416ms - RequestID: hnfr0roe90e +2025-06-18T14:11:07.881Z [INFO] order-service - Database INSERT on users - Execution time: 500ms - Rows affected: 15 - RequestID: 9zh00oi8zeg +2025-06-18T14:11:07.981Z [TRACE] payment-service - Database SELECT on orders - Execution time: 142ms - Rows affected: 86 - RequestID: ca8n76l5s1b +2025-06-18T14:11:08.081Z [DEBUG] user-service - Auth event: login_failed - User: user_1009 - IP: 192.168.30.79 - RequestID: hg4gqgliyoe +2025-06-18T14:11:08.181Z [DEBUG] order-service - Auth event: logout - User: user_1093 - IP: 192.168.1.152 - RequestID: mkv7nprxd3 +2025-06-18T14:11:08.281Z [TRACE] inventory-service - Operation: order_created - Processing time: 407ms - RequestID: tpn5ogera38 +2025-06-18T14:11:08.381Z [DEBUG] user-service - Auth event: logout - User: user_1018 - IP: 192.168.240.169 - RequestID: pksjchjbqy +2025-06-18T14:11:08.481Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 422ms - Rows affected: 3 - RequestID: 0l4clz43o6m +2025-06-18T14:11:08.581Z [TRACE] payment-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.235.117 - RequestID: wymqlmnirz +2025-06-18T14:11:08.681Z [TRACE] inventory-service - Auth event: login_success - User: user_1011 - IP: 192.168.141.100 - RequestID: 44sozeg6wf3 +2025-06-18T14:11:08.781Z [INFO] inventory-service - Database DELETE on products - Execution time: 193ms - Rows affected: 11 - RequestID: 3h7ojpeqoru +2025-06-18T14:11:08.881Z [INFO] order-service - Database DELETE on products - Execution time: 301ms - Rows affected: 93 - RequestID: id7jjqd5mb +2025-06-18T14:11:08.981Z [INFO] user-service - Database DELETE on products - Execution time: 488ms - Rows affected: 76 - RequestID: m5vd73j1di9 +2025-06-18T14:11:09.081Z [INFO] user-service - Operation: email_sent - Processing time: 997ms - RequestID: 0ow6fdio0wb +2025-06-18T14:11:09.181Z [INFO] payment-service - Operation: webhook_sent - Processing time: 316ms - RequestID: 0nuoab9ih3x +2025-06-18T14:11:09.281Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 502 - Response time: 91ms - IP: 192.168.1.152 - User: user_1016 - RequestID: bfkjl820b2h +2025-06-18T14:11:09.381Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 239ms - Rows affected: 22 - RequestID: fif4h4d22t +2025-06-18T14:11:09.481Z [TRACE] payment-service - Database DELETE on orders - Execution time: 303ms - Rows affected: 42 - RequestID: m95hk6pewkk +2025-06-18T14:11:09.581Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 435ms - RequestID: d7h4dzi7m06 +2025-06-18T14:11:09.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 570ms - RequestID: 0yucs5ot70m +2025-06-18T14:11:09.781Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 464ms - RequestID: hsxf66hp36p +2025-06-18T14:11:09.881Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 503 - Response time: 904ms - IP: 192.168.194.41 - User: user_1030 - RequestID: gd0i3a2d4jf +2025-06-18T14:11:09.981Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 740ms - IP: 192.168.229.123 - User: user_1092 - RequestID: 84tmokufz7r +2025-06-18T14:11:10.081Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 373ms - Rows affected: 75 - RequestID: r5g59r8vtqj +2025-06-18T14:11:10.181Z [INFO] auth-service - Database UPDATE on orders - Execution time: 67ms - Rows affected: 30 - RequestID: 1am56350w7e +2025-06-18T14:11:10.281Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 503 - Response time: 135ms - IP: 192.168.232.72 - User: user_1033 - RequestID: 7o6acc34kq7 +2025-06-18T14:11:10.381Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 136ms - Rows affected: 59 - RequestID: kqyj02gx2t +2025-06-18T14:11:10.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.44.5 - RequestID: 5sazwmy4t5n +2025-06-18T14:11:10.581Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1553ms - IP: 192.168.159.94 - User: user_1021 - RequestID: 9gcvdhyrk8s +2025-06-18T14:11:10.681Z [DEBUG] user-service - DELETE /api/v1/users - Status: 403 - Response time: 1958ms - IP: 192.168.97.87 - User: user_1051 - RequestID: o9n15tlp0fl +2025-06-18T14:11:10.781Z [DEBUG] order-service - Auth event: login_success - User: user_1082 - IP: 192.168.113.218 - RequestID: 8pntneq0dw +2025-06-18T14:11:10.881Z [TRACE] payment-service - Database UPDATE on products - Execution time: 175ms - Rows affected: 47 - RequestID: u55naoksky +2025-06-18T14:11:10.981Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 941ms - IP: 192.168.79.116 - User: user_1064 - RequestID: 0f1y3z5ho73m +2025-06-18T14:11:11.081Z [TRACE] user-service - Auth event: login_success - User: user_1092 - IP: 192.168.159.94 - RequestID: 6nspur2okzp +2025-06-18T14:11:11.181Z [INFO] auth-service - Database UPDATE on orders - Execution time: 446ms - Rows affected: 91 - RequestID: z0jhjln9coa +2025-06-18T14:11:11.281Z [INFO] payment-service - Database INSERT on orders - Execution time: 8ms - Rows affected: 80 - RequestID: gnusmfpkxl +2025-06-18T14:11:11.381Z [INFO] payment-service - Auth event: password_change - User: user_1066 - IP: 192.168.138.123 - RequestID: xagi6ctya +2025-06-18T14:11:11.481Z [TRACE] user-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.159.94 - RequestID: af7h6hhqzy +2025-06-18T14:11:11.581Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 82ms - RequestID: 25oxkqzdqzv +2025-06-18T14:11:11.681Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 241ms - Rows affected: 24 - RequestID: yeyyarejjms +2025-06-18T14:11:11.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 240ms - RequestID: kbzhk87dak +2025-06-18T14:11:11.881Z [INFO] notification-service - Database DELETE on orders - Execution time: 309ms - Rows affected: 47 - RequestID: cp56csblu7o +2025-06-18T14:11:11.981Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1949ms - IP: 192.168.227.77 - User: user_1075 - RequestID: osyahis7x0o +2025-06-18T14:11:12.081Z [DEBUG] auth-service - Database INSERT on products - Execution time: 488ms - Rows affected: 8 - RequestID: 64cpr7r4s1d +2025-06-18T14:11:12.181Z [INFO] payment-service - Database INSERT on users - Execution time: 2ms - Rows affected: 66 - RequestID: p6p5heb2gkf +2025-06-18T14:11:12.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.181.225 - RequestID: epru1qhehh +2025-06-18T14:11:12.381Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 583ms - IP: 192.168.158.144 - User: user_1064 - RequestID: 462le58lj9c +2025-06-18T14:11:12.481Z [INFO] inventory-service - Operation: order_created - Processing time: 528ms - RequestID: rtgovenuyem +2025-06-18T14:11:12.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.113.218 - RequestID: uesz33x2mec +2025-06-18T14:11:12.681Z [TRACE] inventory-service - Operation: email_sent - Processing time: 442ms - RequestID: faye847c1j5 +2025-06-18T14:11:12.781Z [DEBUG] order-service - Operation: cache_hit - Processing time: 86ms - RequestID: gjyff03w5lt +2025-06-18T14:11:12.881Z [DEBUG] user-service - Operation: cache_hit - Processing time: 67ms - RequestID: g34dlojqtb +2025-06-18T14:11:12.981Z [INFO] auth-service - Database DELETE on products - Execution time: 376ms - Rows affected: 0 - RequestID: vjugnx6hif +2025-06-18T14:11:13.081Z [INFO] notification-service - GET /api/v1/auth/login - Status: 400 - Response time: 1932ms - IP: 192.168.147.171 - User: user_1012 - RequestID: 1vmj7knm9ggh +2025-06-18T14:11:13.181Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 252ms - Rows affected: 68 - RequestID: 7rcvxtjo5o8 +2025-06-18T14:11:13.281Z [DEBUG] notification-service - Auth event: login_failed - User: user_1073 - IP: 192.168.242.165 - RequestID: x0wx7ensnvm +2025-06-18T14:11:13.381Z [TRACE] inventory-service - Auth event: logout - User: user_1052 - IP: 192.168.10.184 - RequestID: wvfuecfz7zj +2025-06-18T14:11:13.481Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 404 - Response time: 926ms - IP: 192.168.229.123 - User: user_1004 - RequestID: 2i481mv2u36 +2025-06-18T14:11:13.581Z [INFO] user-service - POST /api/v1/inventory - Status: 200 - Response time: 928ms - IP: 192.168.85.229 - User: user_1015 - RequestID: p58gijyfkvl +2025-06-18T14:11:13.681Z [TRACE] notification-service - POST /api/v1/users - Status: 400 - Response time: 2003ms - IP: 192.168.53.133 - User: user_1056 - RequestID: ieqyp0jf4f +2025-06-18T14:11:13.781Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 448ms - Rows affected: 11 - RequestID: z9xwmfnkots +2025-06-18T14:11:13.881Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 496ms - Rows affected: 51 - RequestID: dst7kqfz7fv +2025-06-18T14:11:13.981Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 300ms - Rows affected: 15 - RequestID: spw151j3iyc +2025-06-18T14:11:14.081Z [DEBUG] auth-service - POST /api/v1/users - Status: 403 - Response time: 349ms - IP: 192.168.181.225 - User: user_1070 - RequestID: 5e7ljvro469 +2025-06-18T14:11:14.181Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 452ms - Rows affected: 1 - RequestID: cb6gdyvdyrr +2025-06-18T14:11:14.281Z [DEBUG] notification-service - Auth event: logout - User: user_1046 - IP: 192.168.113.218 - RequestID: pn1pmy05s6 +2025-06-18T14:11:14.381Z [DEBUG] order-service - Operation: order_created - Processing time: 243ms - RequestID: s9vsg6sa9f +2025-06-18T14:11:14.481Z [DEBUG] user-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.79.143 - RequestID: e0mbcddbuhb +2025-06-18T14:11:14.581Z [TRACE] user-service - GET /api/v1/auth/login - Status: 403 - Response time: 735ms - IP: 192.168.100.240 - User: user_1030 - RequestID: zk0zu4ulog +2025-06-18T14:11:14.681Z [INFO] notification-service - POST /api/v1/orders - Status: 400 - Response time: 295ms - IP: 192.168.138.123 - User: user_1092 - RequestID: ai4a21ttlv +2025-06-18T14:11:14.781Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 496ms - Rows affected: 2 - RequestID: n07dmldwlum +2025-06-18T14:11:14.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 136ms - RequestID: vrcyapj8hy +2025-06-18T14:11:14.981Z [INFO] payment-service - Auth event: login_failed - User: user_1048 - IP: 192.168.97.87 - RequestID: oube0dhx8y +2025-06-18T14:11:15.081Z [DEBUG] auth-service - Operation: order_created - Processing time: 933ms - RequestID: wd1sxnma4s +2025-06-18T14:11:15.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1021 - IP: 192.168.104.37 - RequestID: l7litowspwt +2025-06-18T14:11:15.281Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 401 - Response time: 1535ms - IP: 192.168.1.152 - User: user_1006 - RequestID: p8c91wmbj6 +2025-06-18T14:11:15.381Z [INFO] inventory-service - Database DELETE on products - Execution time: 255ms - Rows affected: 38 - RequestID: h76cke10stt +2025-06-18T14:11:15.481Z [TRACE] user-service - PATCH /api/v1/orders - Status: 201 - Response time: 1241ms - IP: 192.168.13.72 - User: user_1043 - RequestID: b2n8u27810i +2025-06-18T14:11:15.581Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 1021ms - RequestID: rza9m5ha4ol +2025-06-18T14:11:15.681Z [INFO] user-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.211.72 - RequestID: bfq8h4dg8d7 +2025-06-18T14:11:15.781Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 337ms - IP: 192.168.64.33 - User: user_1098 - RequestID: g51nn0bib7k +2025-06-18T14:11:15.881Z [TRACE] user-service - PUT /api/v1/orders - Status: 200 - Response time: 397ms - IP: 192.168.97.87 - User: user_1009 - RequestID: yxcj59kz06 +2025-06-18T14:11:15.981Z [INFO] notification-service - Operation: cache_miss - Processing time: 936ms - RequestID: h43pqmnq0is +2025-06-18T14:11:16.081Z [INFO] auth-service - DELETE /api/v1/users - Status: 200 - Response time: 491ms - IP: 192.168.138.123 - User: user_1017 - RequestID: 52s70ihgelt +2025-06-18T14:11:16.181Z [TRACE] order-service - Operation: cache_hit - Processing time: 598ms - RequestID: 6zw321xp8rn +2025-06-18T14:11:16.281Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 266ms - Rows affected: 81 - RequestID: dexau19ga09 +2025-06-18T14:11:16.381Z [INFO] payment-service - PUT /api/v1/orders - Status: 503 - Response time: 1323ms - IP: 192.168.144.38 - User: user_1011 - RequestID: 4dja469s1us +2025-06-18T14:11:16.481Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 476ms - Rows affected: 57 - RequestID: n5pbnj9ig49 +2025-06-18T14:11:16.581Z [INFO] order-service - Auth event: login_failed - User: user_1053 - IP: 192.168.194.41 - RequestID: miatudew2t +2025-06-18T14:11:16.681Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 135ms - RequestID: ewco0ady40p +2025-06-18T14:11:16.781Z [INFO] order-service - Auth event: password_change - User: user_1037 - IP: 192.168.14.77 - RequestID: p2cbf1urf4 +2025-06-18T14:11:16.881Z [INFO] notification-service - Operation: inventory_updated - Processing time: 78ms - RequestID: 149d11q63h0f +2025-06-18T14:11:16.981Z [INFO] inventory-service - Operation: email_sent - Processing time: 216ms - RequestID: drslfpeual +2025-06-18T14:11:17.081Z [INFO] inventory-service - Database DELETE on products - Execution time: 418ms - Rows affected: 71 - RequestID: 3ckpfde6kqm +2025-06-18T14:11:17.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 720ms - RequestID: j75ybcod9xm +2025-06-18T14:11:17.281Z [TRACE] order-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.14.77 - RequestID: ekag73yyakc +2025-06-18T14:11:17.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 104ms - RequestID: 3pyyf4zy5oh +2025-06-18T14:11:17.481Z [TRACE] order-service - Operation: payment_processed - Processing time: 504ms - RequestID: rempbc2ts7b +2025-06-18T14:11:17.581Z [TRACE] notification-service - GET /api/v1/users - Status: 502 - Response time: 1833ms - IP: 192.168.68.128 - User: user_1087 - RequestID: c4clorltu4 +2025-06-18T14:11:17.681Z [DEBUG] user-service - Auth event: login_success - User: user_1031 - IP: 192.168.32.38 - RequestID: o1xy6nwjjs +2025-06-18T14:11:17.781Z [INFO] inventory-service - Auth event: login_success - User: user_1014 - IP: 192.168.33.76 - RequestID: fzbepzq5i2d +2025-06-18T14:11:17.881Z [DEBUG] payment-service - GET /api/v1/payments - Status: 400 - Response time: 366ms - IP: 192.168.144.38 - User: user_1069 - RequestID: pxg9xzfk4aa +2025-06-18T14:11:17.981Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 433ms - Rows affected: 18 - RequestID: c9pxo2ibq9 +2025-06-18T14:11:18.081Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 265ms - Rows affected: 52 - RequestID: zclpo9g2uw +2025-06-18T14:11:18.181Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 502 - Response time: 1961ms - IP: 192.168.232.72 - User: user_1076 - RequestID: 0ln13riwyzm +2025-06-18T14:11:18.281Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1540ms - IP: 192.168.211.72 - User: user_1045 - RequestID: 1urkqlw8pym +2025-06-18T14:11:18.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.196.226 - RequestID: wp2196jiydg +2025-06-18T14:11:18.481Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 312ms - RequestID: z94g9qiwyg +2025-06-18T14:11:18.581Z [INFO] payment-service - Operation: webhook_sent - Processing time: 250ms - RequestID: u78cquer28l +2025-06-18T14:11:18.681Z [DEBUG] notification-service - POST /api/v1/users - Status: 502 - Response time: 741ms - IP: 192.168.32.38 - User: user_1036 - RequestID: 1z12d5rfwbx +2025-06-18T14:11:18.781Z [INFO] inventory-service - Database UPDATE on products - Execution time: 283ms - Rows affected: 25 - RequestID: l0nnvnqwtt +2025-06-18T14:11:18.881Z [INFO] payment-service - Database DELETE on orders - Execution time: 343ms - Rows affected: 45 - RequestID: bgeium8gt1c +2025-06-18T14:11:18.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 205ms - RequestID: ar3x8pajtn +2025-06-18T14:11:19.081Z [DEBUG] auth-service - Database INSERT on products - Execution time: 293ms - Rows affected: 61 - RequestID: wy4rc2v9fvd +2025-06-18T14:11:19.181Z [INFO] order-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1548ms - IP: 192.168.10.184 - User: user_1032 - RequestID: t59t8o79wzo +2025-06-18T14:11:19.281Z [TRACE] notification-service - PUT /api/v1/orders - Status: 403 - Response time: 973ms - IP: 192.168.227.77 - User: user_1079 - RequestID: pjv2ymx819j +2025-06-18T14:11:19.381Z [INFO] user-service - Operation: notification_queued - Processing time: 766ms - RequestID: fxf22sh7st4 +2025-06-18T14:11:19.481Z [TRACE] payment-service - GET /api/v1/users - Status: 200 - Response time: 1615ms - IP: 192.168.11.60 - User: user_1024 - RequestID: v5he0e50w8q +2025-06-18T14:11:19.581Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 302ms - Rows affected: 18 - RequestID: vxv9d85c2u +2025-06-18T14:11:19.681Z [DEBUG] user-service - Auth event: password_change - User: user_1001 - IP: 192.168.181.225 - RequestID: 25qhmtyqavy +2025-06-18T14:11:19.781Z [INFO] inventory-service - Auth event: logout - User: user_1049 - IP: 192.168.196.226 - RequestID: ni7nkoqk2b +2025-06-18T14:11:19.881Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 166ms - Rows affected: 19 - RequestID: ztsklcejqom +2025-06-18T14:11:19.981Z [INFO] user-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1128ms - IP: 192.168.28.146 - User: user_1024 - RequestID: e6qgmbsz6e6 +2025-06-18T14:11:20.081Z [INFO] auth-service - Operation: cache_hit - Processing time: 521ms - RequestID: 1lw73ihyxpxh +2025-06-18T14:11:20.181Z [INFO] notification-service - Operation: inventory_updated - Processing time: 346ms - RequestID: 8mdut914eim +2025-06-18T14:11:20.281Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 610ms - RequestID: 4zvdry4jg4g +2025-06-18T14:11:20.381Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 737ms - RequestID: sv3rnt5vskc +2025-06-18T14:11:20.481Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 1027ms - RequestID: 6lfb28j10hl +2025-06-18T14:11:20.581Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 248ms - RequestID: mcc8y1iz23l +2025-06-18T14:11:20.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 692ms - RequestID: 8hngvdvnqtj +2025-06-18T14:11:20.781Z [TRACE] auth-service - Operation: cache_miss - Processing time: 593ms - RequestID: zxgii1fllxs +2025-06-18T14:11:20.881Z [TRACE] notification-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.100.240 - RequestID: nd0ivr9mvh +2025-06-18T14:11:20.981Z [INFO] user-service - Auth event: logout - User: user_1038 - IP: 192.168.247.134 - RequestID: frjo368ppgw +2025-06-18T14:11:21.081Z [INFO] order-service - PUT /api/v1/inventory - Status: 404 - Response time: 163ms - IP: 192.168.229.123 - User: user_1005 - RequestID: pood880v2s +2025-06-18T14:11:21.181Z [INFO] payment-service - Database SELECT on orders - Execution time: 460ms - Rows affected: 74 - RequestID: hnqehqmf0ga +2025-06-18T14:11:21.281Z [INFO] notification-service - Database SELECT on products - Execution time: 85ms - Rows affected: 97 - RequestID: q2cipb19f6 +2025-06-18T14:11:21.381Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1266ms - IP: 192.168.147.171 - User: user_1054 - RequestID: svluzq1nrh +2025-06-18T14:11:21.481Z [INFO] user-service - Database SELECT on users - Execution time: 335ms - Rows affected: 65 - RequestID: bd78s69uhy9 +2025-06-18T14:11:21.581Z [DEBUG] auth-service - Auth event: password_change - User: user_1003 - IP: 192.168.79.143 - RequestID: 96x6rb5mvjh +2025-06-18T14:11:21.681Z [INFO] auth-service - Auth event: login_success - User: user_1020 - IP: 192.168.104.37 - RequestID: w45syopibl +2025-06-18T14:11:21.781Z [INFO] auth-service - Operation: inventory_updated - Processing time: 443ms - RequestID: 68tevcx5p88 +2025-06-18T14:11:21.881Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 500 - Response time: 448ms - IP: 192.168.1.152 - User: user_1020 - RequestID: 43o2toz6nl2 +2025-06-18T14:11:21.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.133.7 - RequestID: s3imwikxr6c +2025-06-18T14:11:22.081Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 162ms - Rows affected: 22 - RequestID: n4ipok9iyb8 +2025-06-18T14:11:22.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.64.33 - RequestID: h8bq94x0nge +2025-06-18T14:11:22.281Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 377ms - Rows affected: 14 - RequestID: k2mae31vnzd +2025-06-18T14:11:22.381Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1604ms - IP: 192.168.13.72 - User: user_1079 - RequestID: x1h5puy9g4b +2025-06-18T14:11:22.481Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 891ms - RequestID: jtaobwxjsq +2025-06-18T14:11:22.581Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.133.7 - RequestID: idh0nt40rlp +2025-06-18T14:11:22.681Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 451ms - IP: 192.168.81.206 - User: user_1091 - RequestID: rrl4pxtlefh +2025-06-18T14:11:22.781Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1309ms - IP: 192.168.144.38 - User: user_1009 - RequestID: qzxryfyx4ve +2025-06-18T14:11:22.881Z [INFO] user-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.158.144 - RequestID: fbvds3twbo5 +2025-06-18T14:11:22.981Z [TRACE] order-service - Auth event: login_failed - User: user_1017 - IP: 192.168.181.225 - RequestID: kua48vmtbl +2025-06-18T14:11:23.081Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 346ms - Rows affected: 50 - RequestID: 86zso8ym94h +2025-06-18T14:11:23.181Z [TRACE] user-service - PATCH /api/v1/users - Status: 400 - Response time: 1927ms - IP: 192.168.104.37 - User: user_1013 - RequestID: rb2h1h5ut0a +2025-06-18T14:11:23.281Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 134ms - Rows affected: 15 - RequestID: u8z8506gj68 +2025-06-18T14:11:23.381Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1115ms - IP: 192.168.235.117 - User: user_1028 - RequestID: btanhdpqo8 +2025-06-18T14:11:23.481Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 145ms - Rows affected: 65 - RequestID: dfphegjgcna +2025-06-18T14:11:23.581Z [TRACE] inventory-service - Database INSERT on products - Execution time: 148ms - Rows affected: 64 - RequestID: ruwyygzd7n +2025-06-18T14:11:23.681Z [INFO] user-service - Operation: webhook_sent - Processing time: 87ms - RequestID: 92elt14aeut +2025-06-18T14:11:23.781Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 156ms - IP: 192.168.14.77 - User: user_1021 - RequestID: o7s3s5siav +2025-06-18T14:11:23.881Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.174.114 - RequestID: r7qzslz5ixn +2025-06-18T14:11:23.981Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1742ms - IP: 192.168.79.116 - User: user_1030 - RequestID: 2hi22j6w94v +2025-06-18T14:11:24.081Z [TRACE] order-service - Operation: notification_queued - Processing time: 303ms - RequestID: z1uddyhyx8 +2025-06-18T14:11:24.181Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 189ms - Rows affected: 9 - RequestID: v5i5umnijb +2025-06-18T14:11:24.281Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1205ms - IP: 192.168.10.184 - User: user_1016 - RequestID: 1vih7yhlbv2 +2025-06-18T14:11:24.381Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 464ms - Rows affected: 42 - RequestID: j3ma4w7ldf +2025-06-18T14:11:24.481Z [INFO] payment-service - Operation: email_sent - Processing time: 1020ms - RequestID: p567b9z3xb +2025-06-18T14:11:24.581Z [TRACE] payment-service - Auth event: password_change - User: user_1093 - IP: 192.168.79.141 - RequestID: ddbnq2f1jk +2025-06-18T14:11:24.681Z [TRACE] auth-service - Auth event: login_failed - User: user_1019 - IP: 192.168.211.72 - RequestID: w94yj6km5oc +2025-06-18T14:11:24.781Z [INFO] payment-service - Auth event: logout - User: user_1024 - IP: 192.168.79.116 - RequestID: 91p8ajni3yt +2025-06-18T14:11:24.881Z [INFO] user-service - Database INSERT on payments - Execution time: 363ms - Rows affected: 62 - RequestID: nyyisgfj3b +2025-06-18T14:11:24.981Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 318ms - Rows affected: 62 - RequestID: uwe8ueo85sq +2025-06-18T14:11:25.081Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 564ms - IP: 192.168.141.100 - User: user_1091 - RequestID: cefkm09zftq +2025-06-18T14:11:25.181Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1937ms - IP: 192.168.33.76 - User: user_1090 - RequestID: yavwy0putik +2025-06-18T14:11:25.281Z [INFO] payment-service - Auth event: login_failed - User: user_1046 - IP: 192.168.133.7 - RequestID: 8ll485d3ydl +2025-06-18T14:11:25.381Z [TRACE] notification-service - PUT /api/v1/users - Status: 200 - Response time: 183ms - IP: 192.168.187.199 - User: user_1002 - RequestID: k1f181qmhh +2025-06-18T14:11:25.481Z [INFO] auth-service - Database INSERT on users - Execution time: 95ms - Rows affected: 28 - RequestID: siy13d0k5fj +2025-06-18T14:11:25.581Z [TRACE] order-service - POST /api/v1/inventory - Status: 404 - Response time: 1541ms - IP: 192.168.113.218 - User: user_1066 - RequestID: 302g6f56g5r +2025-06-18T14:11:25.681Z [INFO] order-service - Auth event: login_success - User: user_1001 - IP: 192.168.11.60 - RequestID: 0k71tpkxts8k +2025-06-18T14:11:25.781Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1007ms - IP: 192.168.141.100 - User: user_1033 - RequestID: geddsinie1u +2025-06-18T14:11:25.881Z [INFO] auth-service - Operation: cache_miss - Processing time: 439ms - RequestID: qcq3pmcebzg +2025-06-18T14:11:25.981Z [INFO] auth-service - Operation: notification_queued - Processing time: 622ms - RequestID: udm5vrxzvlp +2025-06-18T14:11:26.081Z [TRACE] order-service - POST /api/v1/payments - Status: 403 - Response time: 972ms - IP: 192.168.187.199 - User: user_1057 - RequestID: g7whj8ut7re +2025-06-18T14:11:26.181Z [INFO] auth-service - Operation: cache_hit - Processing time: 952ms - RequestID: zpvnl8kyp4 +2025-06-18T14:11:26.281Z [TRACE] order-service - Auth event: password_change - User: user_1097 - IP: 192.168.53.133 - RequestID: vh062lx61ja +2025-06-18T14:11:26.381Z [INFO] payment-service - DELETE /api/v1/payments - Status: 201 - Response time: 1529ms - IP: 192.168.158.144 - User: user_1051 - RequestID: 0lposxhc3fp9 +2025-06-18T14:11:26.481Z [TRACE] user-service - Operation: cache_miss - Processing time: 55ms - RequestID: qu01owp9dg +2025-06-18T14:11:26.581Z [INFO] user-service - Operation: webhook_sent - Processing time: 974ms - RequestID: fitrw76cba +2025-06-18T14:11:26.681Z [TRACE] notification-service - PUT /api/v1/payments - Status: 503 - Response time: 1929ms - IP: 192.168.174.114 - User: user_1006 - RequestID: bdfdxcdphcg +2025-06-18T14:11:26.781Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 165ms - Rows affected: 61 - RequestID: yacoiesbrdh +2025-06-18T14:11:26.881Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 995ms - RequestID: rd8p31slwb +2025-06-18T14:11:26.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.97.87 - RequestID: ssn0m3x2mt +2025-06-18T14:11:27.081Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 372ms - IP: 192.168.247.134 - User: user_1061 - RequestID: pcb2wu3tdc +2025-06-18T14:11:27.181Z [DEBUG] payment-service - Auth event: logout - User: user_1008 - IP: 192.168.44.5 - RequestID: ursz4sfqnz +2025-06-18T14:11:27.281Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 1867ms - IP: 192.168.181.225 - User: user_1014 - RequestID: 48nx80jloaw +2025-06-18T14:11:27.381Z [INFO] auth-service - Auth event: login_success - User: user_1047 - IP: 192.168.64.33 - RequestID: fwtj5l0oo9c +2025-06-18T14:11:27.481Z [DEBUG] order-service - Database UPDATE on users - Execution time: 274ms - Rows affected: 42 - RequestID: ltha1fybx1 +2025-06-18T14:11:27.581Z [INFO] order-service - Database INSERT on users - Execution time: 42ms - Rows affected: 28 - RequestID: u6982c0qx6 +2025-06-18T14:11:27.681Z [INFO] auth-service - Database INSERT on payments - Execution time: 178ms - Rows affected: 52 - RequestID: 0m1gnjo6r1yf +2025-06-18T14:11:27.781Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 303ms - Rows affected: 24 - RequestID: nx9bwc4aqhd +2025-06-18T14:11:27.881Z [INFO] payment-service - Operation: order_created - Processing time: 85ms - RequestID: mas90k9iir +2025-06-18T14:11:27.981Z [TRACE] notification-service - Operation: order_created - Processing time: 199ms - RequestID: tyv0rjpybor +2025-06-18T14:11:28.081Z [TRACE] user-service - Auth event: login_failed - User: user_1087 - IP: 192.168.53.133 - RequestID: 4f5geo3r0d9 +2025-06-18T14:11:28.181Z [TRACE] inventory-service - Database DELETE on products - Execution time: 256ms - Rows affected: 50 - RequestID: wzpomv7yj7a +2025-06-18T14:11:28.281Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 69ms - IP: 192.168.14.77 - User: user_1038 - RequestID: ijadwhopbo +2025-06-18T14:11:28.381Z [DEBUG] auth-service - Operation: order_created - Processing time: 984ms - RequestID: eem1trqs53g +2025-06-18T14:11:28.481Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 513ms - RequestID: rgoms1za7o +2025-06-18T14:11:28.581Z [TRACE] order-service - Auth event: login_failed - User: user_1035 - IP: 192.168.211.72 - RequestID: ss2gdagnk4q +2025-06-18T14:11:28.681Z [INFO] auth-service - Database INSERT on users - Execution time: 67ms - Rows affected: 12 - RequestID: kdaq82xh91 +2025-06-18T14:11:28.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1096 - IP: 192.168.13.72 - RequestID: dyfgxeigco8 +2025-06-18T14:11:28.881Z [DEBUG] payment-service - Auth event: login_failed - User: user_1011 - IP: 192.168.232.72 - RequestID: dfhkkyvnsvf +2025-06-18T14:11:28.981Z [TRACE] inventory-service - Database INSERT on products - Execution time: 254ms - Rows affected: 67 - RequestID: ad4sohfhbbf +2025-06-18T14:11:29.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1043 - IP: 192.168.44.5 - RequestID: vi14zewt4w +2025-06-18T14:11:29.181Z [INFO] notification-service - Operation: inventory_updated - Processing time: 397ms - RequestID: k4zimoyewt +2025-06-18T14:11:29.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 179ms - RequestID: 1c2uurjzwzt +2025-06-18T14:11:29.381Z [DEBUG] order-service - Database INSERT on products - Execution time: 11ms - Rows affected: 66 - RequestID: 6y3qy2nwv7q +2025-06-18T14:11:29.481Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 363ms - Rows affected: 31 - RequestID: r5dcm05sb79 +2025-06-18T14:11:29.581Z [INFO] inventory-service - GET /api/v1/inventory - Status: 400 - Response time: 681ms - IP: 192.168.174.114 - User: user_1021 - RequestID: j8rcnl9l3a +2025-06-18T14:11:29.681Z [INFO] payment-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.194.41 - RequestID: rnvqaa05cx +2025-06-18T14:11:29.781Z [DEBUG] order-service - GET /api/v1/payments - Status: 201 - Response time: 1377ms - IP: 192.168.141.100 - User: user_1086 - RequestID: y80r20s28ih +2025-06-18T14:11:29.881Z [INFO] inventory-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.174.114 - RequestID: 2dxmdckcpwr +2025-06-18T14:11:29.981Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 168ms - Rows affected: 24 - RequestID: bzctne9vz6c +2025-06-18T14:11:30.081Z [TRACE] notification-service - DELETE /api/v1/users - Status: 502 - Response time: 1268ms - IP: 192.168.211.72 - User: user_1021 - RequestID: 42pev6zxrjl +2025-06-18T14:11:30.181Z [INFO] order-service - Database SELECT on users - Execution time: 62ms - Rows affected: 63 - RequestID: e5qfn4d4cic +2025-06-18T14:11:30.281Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1887ms - IP: 192.168.53.133 - User: user_1064 - RequestID: 324u4a1tt8f +2025-06-18T14:11:30.381Z [INFO] order-service - Auth event: password_change - User: user_1053 - IP: 192.168.79.141 - RequestID: c4gnrdj0suo +2025-06-18T14:11:30.481Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 916ms - RequestID: syjasyylpq +2025-06-18T14:11:30.581Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 240ms - Rows affected: 49 - RequestID: kcy2esy0dkg +2025-06-18T14:11:30.681Z [TRACE] payment-service - Operation: order_created - Processing time: 805ms - RequestID: cfs7pkdk0f +2025-06-18T14:11:30.781Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 476ms - Rows affected: 92 - RequestID: an43oeb4lnr +2025-06-18T14:11:30.881Z [TRACE] payment-service - Operation: email_sent - Processing time: 448ms - RequestID: wrpghmiucc +2025-06-18T14:11:30.981Z [DEBUG] user-service - Operation: notification_queued - Processing time: 867ms - RequestID: 2brixrkwhl +2025-06-18T14:11:31.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.31.117 - RequestID: q646fi2fjk +2025-06-18T14:11:31.181Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 61ms - Rows affected: 66 - RequestID: zrusjsw2ah9 +2025-06-18T14:11:31.281Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 200 - Response time: 1987ms - IP: 192.168.79.141 - User: user_1079 - RequestID: vjr0o1ckkl +2025-06-18T14:11:31.381Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 217ms - RequestID: ds5man9b6v4 +2025-06-18T14:11:31.481Z [TRACE] payment-service - Database DELETE on users - Execution time: 248ms - Rows affected: 80 - RequestID: id2r5pcduy +2025-06-18T14:11:31.581Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 503 - Response time: 491ms - IP: 192.168.53.133 - User: user_1034 - RequestID: 8xdlmnzyzs6 +2025-06-18T14:11:31.681Z [TRACE] user-service - Auth event: logout - User: user_1001 - IP: 192.168.13.72 - RequestID: z5p1ygkb4e +2025-06-18T14:11:31.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 220ms - RequestID: 1hy55xn2j8s +2025-06-18T14:11:31.881Z [INFO] auth-service - Database DELETE on orders - Execution time: 409ms - Rows affected: 77 - RequestID: si9ox3i2m1 +2025-06-18T14:11:31.981Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1431ms - IP: 192.168.229.123 - User: user_1063 - RequestID: cei9wsshxcd +2025-06-18T14:11:32.081Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1618ms - IP: 192.168.97.87 - User: user_1074 - RequestID: 20gt9suwvpv +2025-06-18T14:11:32.181Z [INFO] payment-service - Operation: order_created - Processing time: 365ms - RequestID: mugkqkuocl +2025-06-18T14:11:32.281Z [INFO] order-service - POST /api/v1/auth/login - Status: 200 - Response time: 993ms - IP: 192.168.46.63 - User: user_1002 - RequestID: sthx7h99yot +2025-06-18T14:11:32.381Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1087ms - IP: 192.168.68.128 - User: user_1000 - RequestID: 2206tfvyu0d +2025-06-18T14:11:32.481Z [TRACE] notification-service - GET /api/v1/orders - Status: 403 - Response time: 204ms - IP: 192.168.36.218 - User: user_1006 - RequestID: wyae7172xvq +2025-06-18T14:11:32.581Z [INFO] inventory-service - Operation: notification_queued - Processing time: 489ms - RequestID: 35pbcl3343s +2025-06-18T14:11:32.681Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 308ms - Rows affected: 5 - RequestID: qsa8zteuvgl +2025-06-18T14:11:32.781Z [INFO] user-service - Operation: payment_processed - Processing time: 564ms - RequestID: u2kb5wdwfp9 +2025-06-18T14:11:32.881Z [INFO] payment-service - Auth event: login_success - User: user_1050 - IP: 192.168.79.116 - RequestID: v9vlahny4k +2025-06-18T14:11:32.981Z [DEBUG] inventory-service - Auth event: logout - User: user_1064 - IP: 192.168.31.117 - RequestID: w0vuk1roht +2025-06-18T14:11:33.081Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 43ms - Rows affected: 12 - RequestID: 35hqc3umftd +2025-06-18T14:11:33.181Z [TRACE] inventory-service - Operation: order_created - Processing time: 630ms - RequestID: mbt92morjzl +2025-06-18T14:11:33.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 547ms - RequestID: jhwqnqfyx1s +2025-06-18T14:11:33.381Z [TRACE] payment-service - Operation: cache_hit - Processing time: 788ms - RequestID: 09kfcl9av07v +2025-06-18T14:11:33.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 713ms - RequestID: frfvb8tms2u +2025-06-18T14:11:33.581Z [DEBUG] notification-service - POST /api/v1/orders - Status: 403 - Response time: 534ms - IP: 192.168.211.72 - User: user_1069 - RequestID: 1xt0s3wpnhd +2025-06-18T14:11:33.681Z [TRACE] payment-service - Auth event: password_change - User: user_1061 - IP: 192.168.104.37 - RequestID: z69i6w8z7nl +2025-06-18T14:11:33.781Z [DEBUG] auth-service - Auth event: logout - User: user_1021 - IP: 192.168.227.233 - RequestID: t7eh63nsfek +2025-06-18T14:11:33.881Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 503 - Response time: 1898ms - IP: 192.168.240.169 - User: user_1059 - RequestID: bqeem96229u +2025-06-18T14:11:33.981Z [DEBUG] notification-service - POST /api/v1/users - Status: 500 - Response time: 1210ms - IP: 192.168.53.133 - User: user_1017 - RequestID: cc5xlqz5rg +2025-06-18T14:11:34.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1097 - IP: 192.168.187.199 - RequestID: qq2oezfyieq +2025-06-18T14:11:34.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 255ms - RequestID: 7rzijrt6lwj +2025-06-18T14:11:34.281Z [INFO] auth-service - Auth event: login_failed - User: user_1028 - IP: 192.168.138.123 - RequestID: 87qxx5i532l +2025-06-18T14:11:34.381Z [TRACE] payment-service - Database INSERT on users - Execution time: 216ms - Rows affected: 13 - RequestID: f90lcyjv45f +2025-06-18T14:11:34.481Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 427ms - Rows affected: 14 - RequestID: rgspslgq7fc +2025-06-18T14:11:34.581Z [DEBUG] user-service - Auth event: login_failed - User: user_1031 - IP: 192.168.187.199 - RequestID: 9rvmrbmvfn +2025-06-18T14:11:34.681Z [INFO] order-service - Database DELETE on orders - Execution time: 98ms - Rows affected: 38 - RequestID: j0aupsblczh +2025-06-18T14:11:34.781Z [TRACE] user-service - Auth event: login_success - User: user_1031 - IP: 192.168.229.123 - RequestID: o38fvgdoyrj +2025-06-18T14:11:34.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 241ms - RequestID: l51o63fyrg +2025-06-18T14:11:34.981Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1337ms - IP: 192.168.32.38 - User: user_1022 - RequestID: rpxky0wp3cq +2025-06-18T14:11:35.081Z [INFO] inventory-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.33.76 - RequestID: 7xv9smjwg4 +2025-06-18T14:11:35.181Z [INFO] order-service - Database SELECT on users - Execution time: 201ms - Rows affected: 61 - RequestID: y2z3r2ywlij +2025-06-18T14:11:35.281Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 163ms - Rows affected: 58 - RequestID: 4onmkh5iqcb +2025-06-18T14:11:35.381Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 45ms - Rows affected: 93 - RequestID: kn9ldgryrjm +2025-06-18T14:11:35.481Z [INFO] notification-service - Operation: order_created - Processing time: 918ms - RequestID: y10pwbuyboi +2025-06-18T14:11:35.581Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1469ms - IP: 192.168.100.240 - User: user_1099 - RequestID: eduh8gw3uce +2025-06-18T14:11:35.681Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 913ms - RequestID: bu2ocuxvqk +2025-06-18T14:11:35.781Z [TRACE] payment-service - Database DELETE on products - Execution time: 231ms - Rows affected: 92 - RequestID: lw4do14xc9j +2025-06-18T14:11:35.881Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 363ms - Rows affected: 5 - RequestID: clfr0v8k0cs +2025-06-18T14:11:35.981Z [DEBUG] order-service - Database SELECT on orders - Execution time: 342ms - Rows affected: 34 - RequestID: 33k7hcons7a +2025-06-18T14:11:36.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.36.218 - RequestID: x5484waspor +2025-06-18T14:11:36.181Z [DEBUG] notification-service - Database INSERT on users - Execution time: 475ms - Rows affected: 13 - RequestID: yg31skfcs0s +2025-06-18T14:11:36.281Z [INFO] inventory-service - Operation: payment_processed - Processing time: 174ms - RequestID: mpckzlj1o68 +2025-06-18T14:11:36.381Z [INFO] user-service - Database INSERT on orders - Execution time: 469ms - Rows affected: 26 - RequestID: v44h25gny9e +2025-06-18T14:11:36.481Z [DEBUG] notification-service - GET /api/v1/users - Status: 503 - Response time: 257ms - IP: 192.168.232.72 - User: user_1070 - RequestID: 3xd0cyd608h +2025-06-18T14:11:36.581Z [INFO] user-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.97.87 - RequestID: 0g8pr3jpsdeu +2025-06-18T14:11:36.681Z [TRACE] inventory-service - Database DELETE on products - Execution time: 179ms - Rows affected: 73 - RequestID: 9mlin3t3tju +2025-06-18T14:11:36.781Z [INFO] payment-service - POST /api/v1/orders - Status: 200 - Response time: 1394ms - IP: 192.168.79.143 - User: user_1089 - RequestID: arg4ye595tg +2025-06-18T14:11:36.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.53.133 - RequestID: 3xwk12hsoae +2025-06-18T14:11:36.981Z [TRACE] inventory-service - Auth event: password_change - User: user_1015 - IP: 192.168.32.38 - RequestID: 0cywg1rvvu5g +2025-06-18T14:11:37.081Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 401 - Response time: 1653ms - IP: 192.168.242.165 - User: user_1001 - RequestID: 6ajsrx2dzus +2025-06-18T14:11:37.181Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 200 - Response time: 1033ms - IP: 192.168.28.146 - User: user_1008 - RequestID: b78pai0tnil +2025-06-18T14:11:37.281Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 357ms - RequestID: 53xzyzvxvfa +2025-06-18T14:11:37.381Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 316ms - RequestID: g45k4tdms3q +2025-06-18T14:11:37.481Z [TRACE] notification-service - GET /api/v1/payments - Status: 401 - Response time: 182ms - IP: 192.168.159.94 - User: user_1081 - RequestID: xz1wx3d4ly +2025-06-18T14:11:37.581Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 244ms - Rows affected: 12 - RequestID: iwx99cnlpi +2025-06-18T14:11:37.681Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 458ms - Rows affected: 49 - RequestID: 2fs9v5v8gv6 +2025-06-18T14:11:37.781Z [DEBUG] user-service - Auth event: logout - User: user_1043 - IP: 192.168.31.117 - RequestID: dtqedycf39l +2025-06-18T14:11:37.881Z [INFO] order-service - Database UPDATE on products - Execution time: 1ms - Rows affected: 85 - RequestID: e28tcybec4f +2025-06-18T14:11:37.981Z [INFO] user-service - POST /api/v1/orders - Status: 401 - Response time: 1310ms - IP: 192.168.33.76 - User: user_1066 - RequestID: 4k2ruvy3zc +2025-06-18T14:11:38.081Z [TRACE] payment-service - Auth event: login_failed - User: user_1060 - IP: 192.168.196.226 - RequestID: 1yeu3dxop4o +2025-06-18T14:11:38.181Z [TRACE] order-service - Auth event: password_change - User: user_1091 - IP: 192.168.85.229 - RequestID: dxwdapbwjn +2025-06-18T14:11:38.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 418ms - RequestID: ofsrjwvom1r +2025-06-18T14:11:38.381Z [TRACE] user-service - Operation: webhook_sent - Processing time: 427ms - RequestID: euc8kgc8rgv +2025-06-18T14:11:38.481Z [TRACE] auth-service - Auth event: password_change - User: user_1092 - IP: 192.168.227.233 - RequestID: za9bsynwjn +2025-06-18T14:11:38.581Z [TRACE] payment-service - Database INSERT on users - Execution time: 76ms - Rows affected: 44 - RequestID: 3x9f6qxmlzs +2025-06-18T14:11:38.681Z [TRACE] payment-service - Auth event: logout - User: user_1073 - IP: 192.168.159.94 - RequestID: vzz7biap9u9 +2025-06-18T14:11:38.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 899ms - RequestID: qaoeb5rfhoi +2025-06-18T14:11:38.881Z [TRACE] user-service - Database DELETE on users - Execution time: 57ms - Rows affected: 59 - RequestID: 1yysa8toxprj +2025-06-18T14:11:38.981Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 843ms - RequestID: hjsdy9uj4d4 +2025-06-18T14:11:39.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1001 - IP: 192.168.68.128 - RequestID: mr20a6j6fy +2025-06-18T14:11:39.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.28.146 - RequestID: ek67qzu5ezr +2025-06-18T14:11:39.281Z [DEBUG] order-service - Database INSERT on payments - Execution time: 470ms - Rows affected: 66 - RequestID: 561ek47c46 +2025-06-18T14:11:39.381Z [TRACE] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 41ms - IP: 192.168.181.225 - User: user_1045 - RequestID: cokwym0z6pw +2025-06-18T14:11:39.481Z [TRACE] user-service - Auth event: password_change - User: user_1046 - IP: 192.168.158.144 - RequestID: rk1uj16p81 +2025-06-18T14:11:39.581Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 348ms - RequestID: ktj5ue8nena +2025-06-18T14:11:39.681Z [INFO] payment-service - PATCH /api/v1/orders - Status: 201 - Response time: 1894ms - IP: 192.168.68.158 - User: user_1051 - RequestID: 27yspicc8qt +2025-06-18T14:11:39.781Z [TRACE] order-service - Operation: inventory_updated - Processing time: 246ms - RequestID: glq6l6h2ocr +2025-06-18T14:11:39.881Z [TRACE] payment-service - Operation: order_created - Processing time: 659ms - RequestID: g7oudfliwj +2025-06-18T14:11:39.981Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 502 - Response time: 222ms - IP: 192.168.211.72 - User: user_1058 - RequestID: l22xp4uka1 +2025-06-18T14:11:40.081Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 200 - Response time: 1223ms - IP: 192.168.1.152 - User: user_1050 - RequestID: apghiley8c8 +2025-06-18T14:11:40.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.31.117 - RequestID: 99fiyst1g17 +2025-06-18T14:11:40.281Z [DEBUG] user-service - Operation: cache_hit - Processing time: 257ms - RequestID: 675j3unsp28 +2025-06-18T14:11:40.381Z [TRACE] user-service - Auth event: login_failed - User: user_1002 - IP: 192.168.227.77 - RequestID: ndtl0ei6sj +2025-06-18T14:11:40.481Z [DEBUG] notification-service - Operation: order_created - Processing time: 347ms - RequestID: 5ki1qd1uzfp +2025-06-18T14:11:40.581Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 343ms - Rows affected: 89 - RequestID: j5c8ywof417 +2025-06-18T14:11:40.681Z [TRACE] auth-service - Auth event: login_success - User: user_1002 - IP: 192.168.100.240 - RequestID: wkxtlwza1c +2025-06-18T14:11:40.781Z [INFO] auth-service - GET /api/v1/users - Status: 401 - Response time: 739ms - IP: 192.168.81.206 - User: user_1099 - RequestID: 0qukveicfokn +2025-06-18T14:11:40.881Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 218ms - Rows affected: 60 - RequestID: lr03dbt2xhp +2025-06-18T14:11:40.981Z [TRACE] payment-service - PUT /api/v1/users - Status: 400 - Response time: 256ms - IP: 192.168.85.229 - User: user_1094 - RequestID: rlwzo4hhoh9 +2025-06-18T14:11:41.081Z [DEBUG] inventory-service - Auth event: logout - User: user_1041 - IP: 192.168.31.117 - RequestID: 1eu6zubjvk2 +2025-06-18T14:11:41.181Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1413ms - IP: 192.168.79.143 - User: user_1064 - RequestID: ou4r54wtj6 +2025-06-18T14:11:41.281Z [TRACE] auth-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.64.33 - RequestID: 9owixbwu2dh +2025-06-18T14:11:41.381Z [TRACE] user-service - Auth event: login_success - User: user_1096 - IP: 192.168.158.144 - RequestID: umfgbbqrk5 +2025-06-18T14:11:41.481Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 400 - Response time: 1832ms - IP: 192.168.32.38 - User: user_1005 - RequestID: dz6wbsbqemo +2025-06-18T14:11:41.581Z [INFO] order-service - Operation: order_created - Processing time: 463ms - RequestID: 34jmuj78hvm +2025-06-18T14:11:41.681Z [TRACE] user-service - Auth event: login_failed - User: user_1000 - IP: 192.168.81.206 - RequestID: kqy8gexrkd +2025-06-18T14:11:41.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.79.141 - RequestID: six8pmgidsr +2025-06-18T14:11:41.881Z [INFO] notification-service - GET /api/v1/auth/login - Status: 201 - Response time: 1086ms - IP: 192.168.104.37 - User: user_1001 - RequestID: s2idhxsvyud +2025-06-18T14:11:41.981Z [TRACE] user-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.36.218 - RequestID: b5rjtaod8t +2025-06-18T14:11:42.081Z [TRACE] user-service - Database UPDATE on payments - Execution time: 363ms - Rows affected: 20 - RequestID: prress2jxkm +2025-06-18T14:11:42.181Z [TRACE] user-service - Auth event: login_success - User: user_1043 - IP: 192.168.227.77 - RequestID: 3e2dqxdcgct +2025-06-18T14:11:42.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.68.158 - RequestID: usukdgpo21 +2025-06-18T14:11:42.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1002 - IP: 192.168.141.100 - RequestID: 44wt7vhnnto +2025-06-18T14:11:42.481Z [TRACE] user-service - Auth event: logout - User: user_1097 - IP: 192.168.46.63 - RequestID: d9j8kglc3a +2025-06-18T14:11:42.581Z [TRACE] notification-service - Operation: email_sent - Processing time: 943ms - RequestID: u2kmez7slgl +2025-06-18T14:11:42.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.211.72 - RequestID: l078hep7eet +2025-06-18T14:11:42.781Z [INFO] auth-service - Auth event: login_success - User: user_1005 - IP: 192.168.232.72 - RequestID: v47u7x5pet8 +2025-06-18T14:11:42.881Z [DEBUG] notification-service - POST /api/v1/payments - Status: 200 - Response time: 1673ms - IP: 192.168.227.233 - User: user_1048 - RequestID: 094wnzof45wv +2025-06-18T14:11:42.981Z [INFO] auth-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.196.226 - RequestID: 4egt2ai8f48 +2025-06-18T14:11:43.081Z [TRACE] user-service - Operation: inventory_updated - Processing time: 108ms - RequestID: 7ymf3k2m398 +2025-06-18T14:11:43.181Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 430ms - Rows affected: 77 - RequestID: bwg3620iyzb +2025-06-18T14:11:43.281Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1707ms - IP: 192.168.10.184 - User: user_1077 - RequestID: 618r5nu16mu +2025-06-18T14:11:43.381Z [INFO] user-service - Operation: email_sent - Processing time: 767ms - RequestID: u11dwwtj9bf +2025-06-18T14:11:43.481Z [INFO] inventory-service - Database INSERT on products - Execution time: 456ms - Rows affected: 63 - RequestID: sdjdpay6x2f +2025-06-18T14:11:43.581Z [DEBUG] user-service - POST /api/v1/orders - Status: 503 - Response time: 875ms - IP: 192.168.167.32 - User: user_1075 - RequestID: 0nzahk4z5dp +2025-06-18T14:11:43.681Z [DEBUG] order-service - Database SELECT on products - Execution time: 433ms - Rows affected: 67 - RequestID: a9snm7tz2q5 +2025-06-18T14:11:43.781Z [DEBUG] order-service - PUT /api/v1/users - Status: 403 - Response time: 1442ms - IP: 192.168.100.240 - User: user_1038 - RequestID: k292zxxiaag +2025-06-18T14:11:43.881Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 355ms - Rows affected: 62 - RequestID: 3bweczsg5vr +2025-06-18T14:11:43.981Z [DEBUG] user-service - Auth event: login_failed - User: user_1078 - IP: 192.168.97.87 - RequestID: 3nscvo97x33 +2025-06-18T14:11:44.081Z [INFO] payment-service - Auth event: logout - User: user_1032 - IP: 192.168.232.72 - RequestID: jzcu2vympl +2025-06-18T14:11:44.181Z [INFO] inventory-service - PUT /api/v1/orders - Status: 503 - Response time: 283ms - IP: 192.168.247.134 - User: user_1033 - RequestID: f1kvzfad3id +2025-06-18T14:11:44.281Z [INFO] inventory-service - PUT /api/v1/orders - Status: 500 - Response time: 195ms - IP: 192.168.79.141 - User: user_1098 - RequestID: zds5ca7r7z +2025-06-18T14:11:44.381Z [TRACE] auth-service - Operation: notification_queued - Processing time: 445ms - RequestID: ptpstgnlpz +2025-06-18T14:11:44.481Z [TRACE] user-service - Operation: cache_hit - Processing time: 501ms - RequestID: pq3j66wviir +2025-06-18T14:11:44.581Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 54ms - RequestID: fb28uh2c2q +2025-06-18T14:11:44.681Z [INFO] order-service - Operation: email_sent - Processing time: 756ms - RequestID: 8rbw87fl05v +2025-06-18T14:11:44.781Z [TRACE] order-service - Operation: cache_hit - Processing time: 269ms - RequestID: yqk437e3vmc +2025-06-18T14:11:44.881Z [INFO] payment-service - Auth event: login_failed - User: user_1046 - IP: 192.168.10.184 - RequestID: rbdw5lmgpjn +2025-06-18T14:11:44.981Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 964ms - RequestID: 0m9warnvrlg +2025-06-18T14:11:45.081Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 265ms - RequestID: c7rca2xq1sc +2025-06-18T14:11:45.181Z [TRACE] order-service - PUT /api/v1/orders - Status: 503 - Response time: 736ms - IP: 192.168.159.94 - User: user_1014 - RequestID: v5sabvauwke +2025-06-18T14:11:45.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.227.77 - RequestID: hs4wpt01x07 +2025-06-18T14:11:45.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 101ms - RequestID: thm7b7j1z4 +2025-06-18T14:11:45.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 51ms - RequestID: mlr28hmras +2025-06-18T14:11:45.581Z [TRACE] payment-service - Auth event: login_failed - User: user_1081 - IP: 192.168.147.171 - RequestID: tbm8p2egfo +2025-06-18T14:11:45.681Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1056 - IP: 192.168.242.165 - RequestID: jl2myc7squr +2025-06-18T14:11:45.781Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 171ms - Rows affected: 3 - RequestID: fbh56vc565m +2025-06-18T14:11:45.881Z [INFO] user-service - Auth event: login_success - User: user_1065 - IP: 192.168.14.77 - RequestID: 2j30tatsnad +2025-06-18T14:11:45.981Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 15ms - Rows affected: 43 - RequestID: acxa8ta5slc +2025-06-18T14:11:46.081Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 495ms - Rows affected: 21 - RequestID: ts4s1qe15x +2025-06-18T14:11:46.181Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1487ms - IP: 192.168.141.100 - User: user_1014 - RequestID: cjxfbo2vb9n +2025-06-18T14:11:46.281Z [DEBUG] order-service - Operation: cache_miss - Processing time: 520ms - RequestID: ufwiqqdrp78 +2025-06-18T14:11:46.381Z [TRACE] order-service - Operation: webhook_sent - Processing time: 546ms - RequestID: 05c6tcnwalsa +2025-06-18T14:11:46.481Z [TRACE] notification-service - Database DELETE on orders - Execution time: 269ms - Rows affected: 5 - RequestID: qcrircvgq0p +2025-06-18T14:11:46.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1098 - IP: 192.168.147.171 - RequestID: opqbeqas61 +2025-06-18T14:11:46.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1054 - IP: 192.168.189.103 - RequestID: tnxi7w4j3x9 +2025-06-18T14:11:46.781Z [DEBUG] notification-service - Operation: email_sent - Processing time: 716ms - RequestID: 13x0orvz6pq9 +2025-06-18T14:11:46.881Z [INFO] auth-service - Database SELECT on payments - Execution time: 36ms - Rows affected: 85 - RequestID: t4vywrol4vk +2025-06-18T14:11:46.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1037 - IP: 192.168.141.100 - RequestID: f1d8gwyw489 +2025-06-18T14:11:47.081Z [INFO] user-service - Operation: webhook_sent - Processing time: 134ms - RequestID: adzwcweft1 +2025-06-18T14:11:47.181Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 201 - Response time: 26ms - IP: 192.168.141.100 - User: user_1076 - RequestID: e0r99nwhr +2025-06-18T14:11:47.281Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 111ms - Rows affected: 21 - RequestID: ep0zuae97w +2025-06-18T14:11:47.381Z [INFO] inventory-service - Operation: cache_hit - Processing time: 798ms - RequestID: pkr9xs7gxg +2025-06-18T14:11:47.481Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.79.116 - RequestID: gx6lh5w2zi +2025-06-18T14:11:47.581Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 127ms - Rows affected: 37 - RequestID: o75x8flj8ke +2025-06-18T14:11:47.681Z [TRACE] order-service - PUT /api/v1/users - Status: 502 - Response time: 2003ms - IP: 192.168.181.225 - User: user_1055 - RequestID: 3dy7xrt02np +2025-06-18T14:11:47.781Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 360ms - Rows affected: 87 - RequestID: tv9n9qx8ew +2025-06-18T14:11:47.881Z [DEBUG] order-service - POST /api/v1/inventory - Status: 404 - Response time: 1779ms - IP: 192.168.10.184 - User: user_1014 - RequestID: vrxabtb65b +2025-06-18T14:11:47.981Z [INFO] notification-service - Auth event: login_failed - User: user_1031 - IP: 192.168.79.143 - RequestID: sgknqdio15s +2025-06-18T14:11:48.081Z [TRACE] order-service - Operation: email_sent - Processing time: 933ms - RequestID: 8d5f9dtwkkb +2025-06-18T14:11:48.181Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 438ms - RequestID: 2387qpy7leni +2025-06-18T14:11:48.281Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1304ms - IP: 192.168.79.116 - User: user_1011 - RequestID: qomcqdym6c +2025-06-18T14:11:48.381Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 224ms - RequestID: x93qu7aclsq +2025-06-18T14:11:48.481Z [INFO] notification-service - Database UPDATE on users - Execution time: 299ms - Rows affected: 51 - RequestID: d3fvp39055 +2025-06-18T14:11:48.581Z [TRACE] user-service - Database SELECT on users - Execution time: 39ms - Rows affected: 68 - RequestID: e2f2tbpjs2 +2025-06-18T14:11:48.681Z [INFO] order-service - Auth event: login_success - User: user_1062 - IP: 192.168.97.87 - RequestID: jsndi22ko6j +2025-06-18T14:11:48.781Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 1778ms - IP: 192.168.79.143 - User: user_1039 - RequestID: lm2tf9aeaba +2025-06-18T14:11:48.881Z [TRACE] payment-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.64.33 - RequestID: 24tj80s1dg5 +2025-06-18T14:11:48.981Z [TRACE] payment-service - GET /api/v1/inventory - Status: 503 - Response time: 333ms - IP: 192.168.46.63 - User: user_1069 - RequestID: jbmdh4glmk +2025-06-18T14:11:49.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.144.38 - RequestID: spvg0bbtzd9 +2025-06-18T14:11:49.181Z [INFO] payment-service - POST /api/v1/payments - Status: 201 - Response time: 1590ms - IP: 192.168.189.103 - User: user_1030 - RequestID: xl46yv0o71 +2025-06-18T14:11:49.281Z [INFO] notification-service - GET /api/v1/users - Status: 401 - Response time: 1303ms - IP: 192.168.240.169 - User: user_1080 - RequestID: w5u9njtktj +2025-06-18T14:11:49.381Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1453ms - IP: 192.168.240.169 - User: user_1072 - RequestID: 79zjjnagmj3 +2025-06-18T14:11:49.481Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 205ms - Rows affected: 29 - RequestID: mxtvqibn4l +2025-06-18T14:11:49.581Z [DEBUG] order-service - Operation: order_created - Processing time: 215ms - RequestID: b5npubk9frj +2025-06-18T14:11:49.681Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 400 - Response time: 1030ms - IP: 192.168.97.87 - User: user_1005 - RequestID: ywz5pyyu9l8 +2025-06-18T14:11:49.781Z [TRACE] notification-service - Auth event: password_change - User: user_1096 - IP: 192.168.32.38 - RequestID: itmxnwrdse +2025-06-18T14:11:49.881Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 500 - Response time: 1214ms - IP: 192.168.11.60 - User: user_1019 - RequestID: ouuuyhg3sw7 +2025-06-18T14:11:49.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 324ms - RequestID: slagrdsevl +2025-06-18T14:11:50.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.240.169 - RequestID: sjgoa8yo3em +2025-06-18T14:11:50.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 380ms - RequestID: 8sa4qidfdsj +2025-06-18T14:11:50.281Z [TRACE] inventory-service - GET /api/v1/orders - Status: 502 - Response time: 461ms - IP: 192.168.68.158 - User: user_1026 - RequestID: a4ksqawca5v +2025-06-18T14:11:50.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1043 - IP: 192.168.30.79 - RequestID: dxy2zhj9c2i +2025-06-18T14:11:50.481Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 125ms - Rows affected: 66 - RequestID: ice5467nmk +2025-06-18T14:11:50.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.174.114 - RequestID: h5pylwpcnh +2025-06-18T14:11:50.681Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 86ms - Rows affected: 69 - RequestID: 0n4i4743m3n +2025-06-18T14:11:50.781Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 970ms - IP: 192.168.144.38 - User: user_1057 - RequestID: nptreh8kl7l +2025-06-18T14:11:50.881Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 867ms - IP: 192.168.28.146 - User: user_1073 - RequestID: gp5fjlvw4ac +2025-06-18T14:11:50.981Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 451ms - Rows affected: 26 - RequestID: 0tzi3natud9 +2025-06-18T14:11:51.081Z [TRACE] inventory-service - Auth event: login_failed - User: user_1091 - IP: 192.168.53.133 - RequestID: 9qkkxhm5rrd +2025-06-18T14:11:51.181Z [TRACE] order-service - Database UPDATE on users - Execution time: 259ms - Rows affected: 97 - RequestID: xwzpj7tygxp +2025-06-18T14:11:51.281Z [TRACE] user-service - Auth event: password_change - User: user_1039 - IP: 192.168.113.218 - RequestID: ercjzubrnsp +2025-06-18T14:11:51.381Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 101ms - Rows affected: 16 - RequestID: it99ju6dtg +2025-06-18T14:11:51.481Z [INFO] auth-service - Auth event: password_change - User: user_1019 - IP: 192.168.1.152 - RequestID: 7jy5ltzagzu +2025-06-18T14:11:51.581Z [DEBUG] inventory-service - Operation: order_created - Processing time: 484ms - RequestID: o8soo2d3w4 +2025-06-18T14:11:51.681Z [INFO] user-service - Auth event: login_success - User: user_1036 - IP: 192.168.10.184 - RequestID: l67eppepm3k +2025-06-18T14:11:51.781Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 223ms - RequestID: 3x3orw624wi +2025-06-18T14:11:51.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1080 - IP: 192.168.11.60 - RequestID: il7nl60v8e +2025-06-18T14:11:51.981Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1556ms - IP: 192.168.68.158 - User: user_1090 - RequestID: 1qg18bj9dtb +2025-06-18T14:11:52.081Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 252ms - Rows affected: 27 - RequestID: zy1jj7ejd2c +2025-06-18T14:11:52.181Z [DEBUG] payment-service - Operation: email_sent - Processing time: 605ms - RequestID: av1lveinmqm +2025-06-18T14:11:52.281Z [TRACE] order-service - PATCH /api/v1/users - Status: 201 - Response time: 1151ms - IP: 192.168.44.5 - User: user_1046 - RequestID: 11xmbg08418f +2025-06-18T14:11:52.381Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 239ms - Rows affected: 26 - RequestID: m3vjpt412xs +2025-06-18T14:11:52.481Z [INFO] user-service - GET /api/v1/auth/login - Status: 502 - Response time: 1085ms - IP: 192.168.81.206 - User: user_1058 - RequestID: 7lxs10mu0id +2025-06-18T14:11:52.581Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 269ms - Rows affected: 32 - RequestID: u7r707iqk2 +2025-06-18T14:11:52.681Z [INFO] auth-service - Database INSERT on sessions - Execution time: 215ms - Rows affected: 97 - RequestID: 07oo9bf80h3u +2025-06-18T14:11:52.781Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 380ms - Rows affected: 85 - RequestID: lyclt2xo53t +2025-06-18T14:11:52.881Z [INFO] user-service - Operation: notification_queued - Processing time: 207ms - RequestID: ui7404t2su +2025-06-18T14:11:52.981Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 383ms - Rows affected: 90 - RequestID: 3zeqpz4w965 +2025-06-18T14:11:53.081Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 6ms - Rows affected: 44 - RequestID: 8e0m1yhd7nq +2025-06-18T14:11:53.181Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 392ms - Rows affected: 98 - RequestID: caxhz3o5sk +2025-06-18T14:11:53.281Z [DEBUG] notification-service - Database SELECT on users - Execution time: 294ms - Rows affected: 59 - RequestID: k1ybi2sh7cs +2025-06-18T14:11:53.381Z [INFO] user-service - Auth event: login_success - User: user_1090 - IP: 192.168.159.94 - RequestID: nhmksidd8e +2025-06-18T14:11:53.481Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 173ms - Rows affected: 69 - RequestID: xi57mnd5jxs +2025-06-18T14:11:53.581Z [INFO] auth-service - Auth event: login_success - User: user_1011 - IP: 192.168.235.117 - RequestID: 8ni0dh85g6g +2025-06-18T14:11:53.681Z [DEBUG] order-service - Database UPDATE on products - Execution time: 417ms - Rows affected: 49 - RequestID: 8kc3i2ob6ux +2025-06-18T14:11:53.781Z [INFO] order-service - Operation: inventory_updated - Processing time: 344ms - RequestID: j3tft65sko +2025-06-18T14:11:53.881Z [INFO] order-service - Operation: email_sent - Processing time: 953ms - RequestID: lju5j0wnbj +2025-06-18T14:11:53.981Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1665ms - IP: 192.168.1.152 - User: user_1052 - RequestID: sc878ur0y9d +2025-06-18T14:11:54.081Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 52ms - Rows affected: 59 - RequestID: clzzygl3d6b +2025-06-18T14:11:54.181Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 67ms - Rows affected: 12 - RequestID: qvs6pu0l0o +2025-06-18T14:11:54.281Z [TRACE] auth-service - Operation: cache_hit - Processing time: 351ms - RequestID: kj09i7xi1n +2025-06-18T14:11:54.381Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 503 - Response time: 482ms - IP: 192.168.167.32 - User: user_1032 - RequestID: sten56rdwao +2025-06-18T14:11:54.481Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 85ms - IP: 192.168.31.117 - User: user_1031 - RequestID: jukxjssc9yq +2025-06-18T14:11:54.581Z [DEBUG] user-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.242.165 - RequestID: vh4rr7pkdso +2025-06-18T14:11:54.681Z [INFO] order-service - Operation: webhook_sent - Processing time: 831ms - RequestID: itso6xib81r +2025-06-18T14:11:54.781Z [DEBUG] order-service - PATCH /api/v1/users - Status: 201 - Response time: 1032ms - IP: 192.168.187.199 - User: user_1032 - RequestID: sj61od64voq +2025-06-18T14:11:54.881Z [TRACE] user-service - Auth event: logout - User: user_1055 - IP: 192.168.113.218 - RequestID: m18zjyxieci +2025-06-18T14:11:54.981Z [INFO] user-service - Operation: payment_processed - Processing time: 980ms - RequestID: gsl88tia1nm +2025-06-18T14:11:55.081Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 734ms - IP: 192.168.32.38 - User: user_1076 - RequestID: 9ivsf62xj9 +2025-06-18T14:11:55.181Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 230ms - Rows affected: 49 - RequestID: 7eh9w7s3fuu +2025-06-18T14:11:55.281Z [TRACE] auth-service - Auth event: password_change - User: user_1051 - IP: 192.168.138.123 - RequestID: cg3pzdpfwgr +2025-06-18T14:11:55.381Z [INFO] user-service - GET /api/v1/payments - Status: 401 - Response time: 885ms - IP: 192.168.11.60 - User: user_1047 - RequestID: 013vb1saebh7k +2025-06-18T14:11:55.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.196.226 - RequestID: wooipj891p +2025-06-18T14:11:55.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 898ms - RequestID: pl8emu0ofib +2025-06-18T14:11:55.681Z [DEBUG] auth-service - Auth event: logout - User: user_1074 - IP: 192.168.36.218 - RequestID: pzkud0a7y2 +2025-06-18T14:11:55.781Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.133.7 - RequestID: guez66t1uhh +2025-06-18T14:11:55.881Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 856ms - RequestID: 4ehulc3pfqh +2025-06-18T14:11:55.981Z [INFO] order-service - Operation: cache_hit - Processing time: 156ms - RequestID: 2t6atcarufr +2025-06-18T14:11:56.081Z [DEBUG] user-service - Auth event: password_change - User: user_1079 - IP: 192.168.158.144 - RequestID: xzswcb3vjor +2025-06-18T14:11:56.181Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 345ms - Rows affected: 88 - RequestID: fdjwjgpwe0q +2025-06-18T14:11:56.281Z [INFO] inventory-service - PUT /api/v1/users - Status: 401 - Response time: 202ms - IP: 192.168.144.38 - User: user_1096 - RequestID: blhx8u4zrwa +2025-06-18T14:11:56.381Z [INFO] inventory-service - Auth event: login_failed - User: user_1068 - IP: 192.168.229.123 - RequestID: 2ft2oe5wsnx +2025-06-18T14:11:56.481Z [INFO] payment-service - Operation: payment_processed - Processing time: 454ms - RequestID: 0l53dj699ngi +2025-06-18T14:11:56.581Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 184ms - IP: 192.168.81.206 - User: user_1055 - RequestID: fjww8u8bbv +2025-06-18T14:11:56.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 579ms - RequestID: q8htjjhsdul +2025-06-18T14:11:56.781Z [INFO] inventory-service - Operation: payment_processed - Processing time: 446ms - RequestID: 8r954e0ot28 +2025-06-18T14:11:56.881Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 400 - Response time: 1186ms - IP: 192.168.79.143 - User: user_1037 - RequestID: bioni5hvaen +2025-06-18T14:11:56.981Z [INFO] notification-service - POST /api/v1/auth/login - Status: 404 - Response time: 718ms - IP: 192.168.227.77 - User: user_1089 - RequestID: fy6n1usw8lj +2025-06-18T14:11:57.081Z [INFO] auth-service - Auth event: logout - User: user_1051 - IP: 192.168.44.5 - RequestID: kyqjjjco5k +2025-06-18T14:11:57.181Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 173ms - IP: 192.168.13.72 - User: user_1096 - RequestID: 8bpao8ufd1u +2025-06-18T14:11:57.281Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 767ms - IP: 192.168.1.152 - User: user_1092 - RequestID: q9emx3fq4v +2025-06-18T14:11:57.381Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 174ms - RequestID: 44jyt45giou +2025-06-18T14:11:57.481Z [TRACE] notification-service - Operation: order_created - Processing time: 82ms - RequestID: 8uz3hqlpcqf +2025-06-18T14:11:57.581Z [DEBUG] auth-service - Auth event: logout - User: user_1014 - IP: 192.168.13.72 - RequestID: 6ykjlsdl2om +2025-06-18T14:11:57.681Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 716ms - IP: 192.168.158.144 - User: user_1096 - RequestID: l6faoa7hfrj +2025-06-18T14:11:57.781Z [TRACE] user-service - Database SELECT on sessions - Execution time: 474ms - Rows affected: 27 - RequestID: 2tlfhjdegu5 +2025-06-18T14:11:57.881Z [INFO] auth-service - PUT /api/v1/inventory - Status: 400 - Response time: 1956ms - IP: 192.168.167.32 - User: user_1088 - RequestID: kmzplfghwyq +2025-06-18T14:11:57.981Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1772ms - IP: 192.168.144.38 - User: user_1032 - RequestID: vnww6n1bxcp +2025-06-18T14:11:58.081Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 275ms - IP: 192.168.158.144 - User: user_1025 - RequestID: pl9qncez0yq +2025-06-18T14:11:58.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1017 - IP: 192.168.181.225 - RequestID: i6pty861vn +2025-06-18T14:11:58.281Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 337ms - Rows affected: 12 - RequestID: zwsf1ihjqv +2025-06-18T14:11:58.381Z [TRACE] payment-service - Operation: email_sent - Processing time: 826ms - RequestID: 1t19pjvmw9 +2025-06-18T14:11:58.481Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 840ms - RequestID: 7gvwmc0wdir +2025-06-18T14:11:58.581Z [TRACE] notification-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.133.7 - RequestID: bgxp16io16 +2025-06-18T14:11:58.681Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 282ms - RequestID: n6xbdtqplp +2025-06-18T14:11:58.781Z [TRACE] user-service - Database DELETE on orders - Execution time: 470ms - Rows affected: 85 - RequestID: 4mmepg18gvb +2025-06-18T14:11:58.881Z [TRACE] user-service - PUT /api/v1/inventory - Status: 401 - Response time: 48ms - IP: 192.168.158.144 - User: user_1050 - RequestID: c0xjdqq19cd +2025-06-18T14:11:58.981Z [DEBUG] order-service - Auth event: logout - User: user_1083 - IP: 192.168.97.87 - RequestID: 0iovpbtegn68 +2025-06-18T14:11:59.081Z [INFO] user-service - Auth event: password_change - User: user_1078 - IP: 192.168.167.32 - RequestID: kroqva7tux +2025-06-18T14:11:59.181Z [TRACE] auth-service - Database DELETE on users - Execution time: 150ms - Rows affected: 93 - RequestID: m1ge1x2wqee +2025-06-18T14:11:59.281Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 346ms - RequestID: zogolxhe9x9 +2025-06-18T14:11:59.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.174.114 - RequestID: e66cjl64ju4 +2025-06-18T14:11:59.481Z [INFO] order-service - Operation: payment_processed - Processing time: 713ms - RequestID: v64phvakfrm +2025-06-18T14:11:59.581Z [TRACE] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 356ms - IP: 192.168.138.123 - User: user_1067 - RequestID: ed2qskpfl5k +2025-06-18T14:11:59.681Z [INFO] payment-service - Auth event: login_failed - User: user_1033 - IP: 192.168.113.218 - RequestID: 4dylka9wnoy +2025-06-18T14:11:59.781Z [INFO] auth-service - Operation: order_created - Processing time: 462ms - RequestID: czu2ixm772t +2025-06-18T14:11:59.881Z [DEBUG] user-service - POST /api/v1/users - Status: 403 - Response time: 886ms - IP: 192.168.53.133 - User: user_1010 - RequestID: qs4i6ildioq +2025-06-18T14:11:59.981Z [INFO] notification-service - Database INSERT on orders - Execution time: 83ms - Rows affected: 80 - RequestID: 9gmxumo13o +2025-06-18T14:12:00.081Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 431ms - Rows affected: 70 - RequestID: ic2dyhiy8ws +2025-06-18T14:12:00.181Z [TRACE] auth-service - Operation: payment_processed - Processing time: 948ms - RequestID: hpimthlv5db +2025-06-18T14:12:00.281Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 484ms - Rows affected: 80 - RequestID: 0pjpogj5tk2 +2025-06-18T14:12:00.381Z [INFO] inventory-service - Database INSERT on payments - Execution time: 338ms - Rows affected: 76 - RequestID: arnzna157yd +2025-06-18T14:12:00.481Z [DEBUG] user-service - Database DELETE on products - Execution time: 459ms - Rows affected: 13 - RequestID: j6me16b26b +2025-06-18T14:12:00.581Z [INFO] auth-service - Operation: notification_queued - Processing time: 254ms - RequestID: ce2ghyizo0s +2025-06-18T14:12:00.681Z [DEBUG] order-service - Database UPDATE on products - Execution time: 498ms - Rows affected: 74 - RequestID: p0b935wuxq8 +2025-06-18T14:12:00.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.13.72 - RequestID: 1c16blhybla +2025-06-18T14:12:00.881Z [TRACE] user-service - POST /api/v1/users - Status: 502 - Response time: 449ms - IP: 192.168.232.72 - User: user_1005 - RequestID: pb2m7acqere +2025-06-18T14:12:00.981Z [INFO] auth-service - GET /api/v1/orders - Status: 201 - Response time: 479ms - IP: 192.168.138.123 - User: user_1014 - RequestID: yz6vknkj038 +2025-06-18T14:12:01.081Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 400 - Response time: 614ms - IP: 192.168.235.117 - User: user_1007 - RequestID: ziz1f6g0zuo +2025-06-18T14:12:01.181Z [DEBUG] user-service - Operation: order_created - Processing time: 556ms - RequestID: 2xvjp0jid0x +2025-06-18T14:12:01.281Z [TRACE] inventory-service - Auth event: login_success - User: user_1036 - IP: 192.168.194.41 - RequestID: 7s4uvqnkyy3 +2025-06-18T14:12:01.381Z [INFO] order-service - Database DELETE on users - Execution time: 71ms - Rows affected: 55 - RequestID: lqo1wgzxxsb +2025-06-18T14:12:01.481Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 57ms - RequestID: yzp06mdl75 +2025-06-18T14:12:01.581Z [INFO] notification-service - Operation: cache_miss - Processing time: 74ms - RequestID: 1hpuwr9sj9 +2025-06-18T14:12:01.681Z [DEBUG] order-service - Database INSERT on users - Execution time: 106ms - Rows affected: 65 - RequestID: ptdacko8f2l +2025-06-18T14:12:01.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.138.123 - RequestID: tsehss9ryti +2025-06-18T14:12:01.881Z [TRACE] user-service - Operation: notification_queued - Processing time: 943ms - RequestID: l2zfowgtd9q +2025-06-18T14:12:01.981Z [DEBUG] user-service - Operation: order_created - Processing time: 988ms - RequestID: 7k64bwhg9ik +2025-06-18T14:12:02.081Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 492ms - IP: 192.168.33.76 - User: user_1081 - RequestID: w3bk81qxye +2025-06-18T14:12:02.181Z [DEBUG] auth-service - Auth event: password_change - User: user_1003 - IP: 192.168.68.158 - RequestID: wyupt17dla +2025-06-18T14:12:02.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.104.37 - RequestID: satmrq0x6lo +2025-06-18T14:12:02.381Z [DEBUG] user-service - Operation: notification_queued - Processing time: 361ms - RequestID: tywtdxe3cs +2025-06-18T14:12:02.481Z [TRACE] payment-service - Database DELETE on orders - Execution time: 398ms - Rows affected: 4 - RequestID: tz8atbu818 +2025-06-18T14:12:02.581Z [TRACE] order-service - Database SELECT on orders - Execution time: 251ms - Rows affected: 27 - RequestID: 15ibixttcgfj +2025-06-18T14:12:02.681Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1165ms - IP: 192.168.247.134 - User: user_1065 - RequestID: h2rfpy6ngup +2025-06-18T14:12:02.781Z [INFO] notification-service - Operation: webhook_sent - Processing time: 603ms - RequestID: f1qf7fqh7rd +2025-06-18T14:12:02.881Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 196ms - Rows affected: 73 - RequestID: ok5kkuwxh4b +2025-06-18T14:12:02.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.30.79 - RequestID: v8bvjx9jugd +2025-06-18T14:12:03.081Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 439ms - Rows affected: 69 - RequestID: od563kaqkxs +2025-06-18T14:12:03.181Z [INFO] payment-service - Operation: cache_miss - Processing time: 1020ms - RequestID: noal6zcjze +2025-06-18T14:12:03.281Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 1644ms - IP: 192.168.147.171 - User: user_1064 - RequestID: qqgsjz6n5n +2025-06-18T14:12:03.381Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 856ms - RequestID: 45yssucp11b +2025-06-18T14:12:03.481Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.30.79 - RequestID: di7x0lq2x2g +2025-06-18T14:12:03.581Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 500 - Response time: 595ms - IP: 192.168.232.72 - User: user_1070 - RequestID: k8821wcnbkn +2025-06-18T14:12:03.681Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 473ms - Rows affected: 55 - RequestID: 3va2q1mc2em +2025-06-18T14:12:03.781Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1559ms - IP: 192.168.235.117 - User: user_1037 - RequestID: k4ed6cpjdqo +2025-06-18T14:12:03.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.235.117 - RequestID: 29w4o14cv8f +2025-06-18T14:12:03.981Z [DEBUG] order-service - GET /api/v1/orders - Status: 400 - Response time: 1040ms - IP: 192.168.68.158 - User: user_1049 - RequestID: 1wyn78qgnu +2025-06-18T14:12:04.081Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 529ms - RequestID: kdrmypv2s5h +2025-06-18T14:12:04.181Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 188ms - Rows affected: 16 - RequestID: 46scdut0jt2 +2025-06-18T14:12:04.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 531ms - RequestID: y73preynvfq +2025-06-18T14:12:04.381Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 282ms - Rows affected: 18 - RequestID: kvm1594z05 +2025-06-18T14:12:04.481Z [INFO] user-service - Operation: order_created - Processing time: 341ms - RequestID: qc13wpx80pe +2025-06-18T14:12:04.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.31.117 - RequestID: kki1letq7k +2025-06-18T14:12:04.681Z [INFO] payment-service - Database UPDATE on products - Execution time: 423ms - Rows affected: 32 - RequestID: uan3coa9nwq +2025-06-18T14:12:04.781Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 110ms - Rows affected: 99 - RequestID: wm3lpwc6lt7 +2025-06-18T14:12:04.881Z [INFO] inventory-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.133.7 - RequestID: iil89amvdu +2025-06-18T14:12:04.981Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 273ms - Rows affected: 86 - RequestID: aqlpui5dhc8 +2025-06-18T14:12:05.081Z [TRACE] notification-service - POST /api/v1/users - Status: 503 - Response time: 1711ms - IP: 192.168.189.103 - User: user_1077 - RequestID: cyhu6emm67p +2025-06-18T14:12:05.181Z [INFO] order-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.240.169 - RequestID: u24gdjxe94 +2025-06-18T14:12:05.281Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 72ms - Rows affected: 95 - RequestID: ewjjdv5o9l +2025-06-18T14:12:05.381Z [TRACE] notification-service - POST /api/v1/orders - Status: 200 - Response time: 559ms - IP: 192.168.189.103 - User: user_1042 - RequestID: 8gg0n8r2685 +2025-06-18T14:12:05.481Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 291ms - Rows affected: 3 - RequestID: hg4jykdzeab +2025-06-18T14:12:05.581Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 2ms - Rows affected: 90 - RequestID: zzxv221ro9b +2025-06-18T14:12:05.681Z [TRACE] order-service - Database DELETE on orders - Execution time: 496ms - Rows affected: 29 - RequestID: 2g820qz4dyx +2025-06-18T14:12:05.781Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 401 - Response time: 772ms - IP: 192.168.11.60 - User: user_1075 - RequestID: km5fksx3gq +2025-06-18T14:12:05.881Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 194ms - IP: 192.168.44.5 - User: user_1088 - RequestID: s5kltfdlq7 +2025-06-18T14:12:05.981Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 362ms - Rows affected: 29 - RequestID: 60r4tpmrv0w +2025-06-18T14:12:06.081Z [TRACE] order-service - PUT /api/v1/orders - Status: 200 - Response time: 194ms - IP: 192.168.138.123 - User: user_1006 - RequestID: 35r5dcigspm +2025-06-18T14:12:06.181Z [TRACE] order-service - Operation: webhook_sent - Processing time: 55ms - RequestID: ztk45qcopv +2025-06-18T14:12:06.281Z [TRACE] auth-service - Auth event: login_success - User: user_1034 - IP: 192.168.97.87 - RequestID: 3kd57megt8c +2025-06-18T14:12:06.381Z [TRACE] user-service - PUT /api/v1/payments - Status: 201 - Response time: 933ms - IP: 192.168.242.165 - User: user_1083 - RequestID: r1eo3rfmse8 +2025-06-18T14:12:06.481Z [INFO] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 605ms - IP: 192.168.68.158 - User: user_1053 - RequestID: s4tcl63hfks +2025-06-18T14:12:06.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1059 - IP: 192.168.36.218 - RequestID: z2sqd7wa5c +2025-06-18T14:12:06.681Z [INFO] notification-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.229.123 - RequestID: d9aisnp3f7 +2025-06-18T14:12:06.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 187ms - RequestID: sxnk3nu459h +2025-06-18T14:12:06.881Z [INFO] notification-service - Database INSERT on orders - Execution time: 188ms - Rows affected: 79 - RequestID: wqo4idnh3xs +2025-06-18T14:12:06.981Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 400 - Response time: 548ms - IP: 192.168.31.117 - User: user_1034 - RequestID: khi5yjkdez +2025-06-18T14:12:07.081Z [TRACE] auth-service - Operation: notification_queued - Processing time: 268ms - RequestID: t3fqoeb9rg +2025-06-18T14:12:07.181Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 415ms - Rows affected: 32 - RequestID: qg34n2pxvi +2025-06-18T14:12:07.281Z [DEBUG] order-service - Auth event: password_change - User: user_1086 - IP: 192.168.13.72 - RequestID: r3zvlbiwcx +2025-06-18T14:12:07.381Z [DEBUG] user-service - Auth event: password_change - User: user_1031 - IP: 192.168.133.7 - RequestID: 4zi1yl2f8j7 +2025-06-18T14:12:07.481Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 211ms - RequestID: b8bufxbnyp5 +2025-06-18T14:12:07.581Z [TRACE] user-service - POST /api/v1/inventory - Status: 401 - Response time: 247ms - IP: 192.168.138.123 - User: user_1007 - RequestID: qowz8h7eia +2025-06-18T14:12:07.681Z [DEBUG] user-service - Operation: order_created - Processing time: 275ms - RequestID: xjuawdasi2c +2025-06-18T14:12:07.781Z [INFO] payment-service - DELETE /api/v1/users - Status: 401 - Response time: 1814ms - IP: 192.168.174.114 - User: user_1029 - RequestID: ra7fbbxdej +2025-06-18T14:12:07.881Z [INFO] user-service - Auth event: login_failed - User: user_1049 - IP: 192.168.30.79 - RequestID: 4ib1ngw2249 +2025-06-18T14:12:07.981Z [DEBUG] user-service - Auth event: password_change - User: user_1033 - IP: 192.168.159.94 - RequestID: o8k8i3j4um +2025-06-18T14:12:08.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.194.41 - RequestID: xe2nzu55rdi +2025-06-18T14:12:08.181Z [INFO] order-service - Database INSERT on sessions - Execution time: 22ms - Rows affected: 25 - RequestID: cuhce26a78m +2025-06-18T14:12:08.281Z [INFO] notification-service - Operation: notification_queued - Processing time: 888ms - RequestID: 5os3bd55kos +2025-06-18T14:12:08.381Z [DEBUG] user-service - POST /api/v1/orders - Status: 400 - Response time: 1329ms - IP: 192.168.31.117 - User: user_1038 - RequestID: yqekh2hf3x +2025-06-18T14:12:08.481Z [TRACE] auth-service - Auth event: logout - User: user_1010 - IP: 192.168.211.72 - RequestID: k4qpfs33fm +2025-06-18T14:12:08.581Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 124ms - RequestID: b1xfsrjor8 +2025-06-18T14:12:08.681Z [DEBUG] user-service - Database INSERT on users - Execution time: 429ms - Rows affected: 89 - RequestID: ki5kufp7guk +2025-06-18T14:12:08.781Z [DEBUG] payment-service - Database INSERT on products - Execution time: 145ms - Rows affected: 3 - RequestID: b8dxniq3675 +2025-06-18T14:12:08.881Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 40ms - Rows affected: 51 - RequestID: vnsu3125g4a +2025-06-18T14:12:08.981Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 407ms - Rows affected: 33 - RequestID: zzukhnp434 +2025-06-18T14:12:09.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1021 - IP: 192.168.174.114 - RequestID: hayv5xh1ois +2025-06-18T14:12:09.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 737ms - RequestID: 0rgzrwvhzk2 +2025-06-18T14:12:09.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.187.199 - RequestID: 5t8o3y05jc9 +2025-06-18T14:12:09.381Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 438ms - Rows affected: 87 - RequestID: 3oetafrzunj +2025-06-18T14:12:09.481Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 219ms - IP: 192.168.97.87 - User: user_1059 - RequestID: 2i5ob7a8zu6 +2025-06-18T14:12:09.581Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 249ms - Rows affected: 92 - RequestID: iq485z35fp +2025-06-18T14:12:09.681Z [TRACE] payment-service - Database SELECT on orders - Execution time: 418ms - Rows affected: 53 - RequestID: q37kbc7lpj +2025-06-18T14:12:09.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1084 - IP: 192.168.64.33 - RequestID: 6ugkv3v157j +2025-06-18T14:12:09.881Z [INFO] user-service - Operation: inventory_updated - Processing time: 662ms - RequestID: ad7xrd9m19 +2025-06-18T14:12:09.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.32.38 - RequestID: fjn1u0hr4fh +2025-06-18T14:12:10.081Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 113ms - IP: 192.168.79.141 - User: user_1061 - RequestID: xvw00tb2ji +2025-06-18T14:12:10.181Z [INFO] inventory-service - Operation: cache_miss - Processing time: 235ms - RequestID: fpydzg87s5 +2025-06-18T14:12:10.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 343ms - RequestID: om3byrcc1wh +2025-06-18T14:12:10.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.181.225 - RequestID: a5b40oj4cli +2025-06-18T14:12:10.481Z [TRACE] user-service - GET /api/v1/orders - Status: 502 - Response time: 377ms - IP: 192.168.10.184 - User: user_1068 - RequestID: m8h0y424kuh +2025-06-18T14:12:10.581Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1353ms - IP: 192.168.32.38 - User: user_1030 - RequestID: wvq26qrsbv +2025-06-18T14:12:10.681Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 84ms - Rows affected: 96 - RequestID: rcd5zgryzrq +2025-06-18T14:12:10.781Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 509ms - RequestID: ry7530686bc +2025-06-18T14:12:10.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 924ms - RequestID: 2ei32lrjl34 +2025-06-18T14:12:10.981Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1505ms - IP: 192.168.81.206 - User: user_1028 - RequestID: 3v7zk7cttl1 +2025-06-18T14:12:11.081Z [INFO] payment-service - Database INSERT on orders - Execution time: 490ms - Rows affected: 32 - RequestID: po9izc9ackb +2025-06-18T14:12:11.181Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 127ms - Rows affected: 78 - RequestID: r47wrm86o2 +2025-06-18T14:12:11.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1067 - IP: 192.168.144.38 - RequestID: zfk9l2396n8 +2025-06-18T14:12:11.381Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 16ms - Rows affected: 0 - RequestID: ke65audexs +2025-06-18T14:12:11.481Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.170.215 - RequestID: 4jne4w8bwc +2025-06-18T14:12:11.581Z [INFO] user-service - Database INSERT on orders - Execution time: 352ms - Rows affected: 57 - RequestID: vjh7pqpus3 +2025-06-18T14:12:11.681Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 232ms - RequestID: 5yscnuv9e25 +2025-06-18T14:12:11.781Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 73ms - Rows affected: 5 - RequestID: 3oc8wc5kb7u +2025-06-18T14:12:11.881Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 401 - Response time: 1380ms - IP: 192.168.232.72 - User: user_1050 - RequestID: whciolc1vh +2025-06-18T14:12:11.981Z [TRACE] order-service - Database SELECT on orders - Execution time: 119ms - Rows affected: 57 - RequestID: g7eu1jvfqis +2025-06-18T14:12:12.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1072 - IP: 192.168.81.206 - RequestID: b07kv16lqep +2025-06-18T14:12:12.181Z [INFO] auth-service - Auth event: login_failed - User: user_1000 - IP: 192.168.32.38 - RequestID: yjy7vx3koi +2025-06-18T14:12:12.281Z [INFO] inventory-service - Auth event: logout - User: user_1010 - IP: 192.168.97.87 - RequestID: geq57q66e6a +2025-06-18T14:12:12.381Z [INFO] inventory-service - GET /api/v1/payments - Status: 403 - Response time: 1624ms - IP: 192.168.68.158 - User: user_1086 - RequestID: r2ve0wcd6r +2025-06-18T14:12:12.481Z [TRACE] auth-service - Operation: cache_hit - Processing time: 814ms - RequestID: 3za1ss79k28 +2025-06-18T14:12:12.581Z [TRACE] user-service - Operation: webhook_sent - Processing time: 650ms - RequestID: uyng4f7gess +2025-06-18T14:12:12.681Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 363ms - Rows affected: 9 - RequestID: norqxedwrn +2025-06-18T14:12:12.781Z [TRACE] user-service - Database DELETE on payments - Execution time: 41ms - Rows affected: 24 - RequestID: y8w9z0qhx8 +2025-06-18T14:12:12.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 243ms - RequestID: gi37r6e4ujf +2025-06-18T14:12:12.981Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 372ms - Rows affected: 27 - RequestID: ndms42x503 +2025-06-18T14:12:13.081Z [INFO] payment-service - Auth event: logout - User: user_1067 - IP: 192.168.97.87 - RequestID: 8mc7ibfvbkv +2025-06-18T14:12:13.181Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 898ms - IP: 192.168.28.146 - User: user_1095 - RequestID: 2bwgue9no1p +2025-06-18T14:12:13.281Z [TRACE] notification-service - Database INSERT on products - Execution time: 402ms - Rows affected: 0 - RequestID: v0nz0x5bld +2025-06-18T14:12:13.381Z [TRACE] order-service - Auth event: logout - User: user_1059 - IP: 192.168.158.144 - RequestID: rpyg72hmba +2025-06-18T14:12:13.481Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1398ms - IP: 192.168.235.117 - User: user_1077 - RequestID: 1bwej6yzcsc +2025-06-18T14:12:13.581Z [INFO] notification-service - PATCH /api/v1/payments - Status: 404 - Response time: 1164ms - IP: 192.168.79.141 - User: user_1062 - RequestID: kdgf6prz4cp +2025-06-18T14:12:13.681Z [INFO] order-service - Operation: payment_processed - Processing time: 473ms - RequestID: 41q9c77r1wh +2025-06-18T14:12:13.781Z [TRACE] notification-service - Database INSERT on products - Execution time: 454ms - Rows affected: 71 - RequestID: k4np5qvf59 +2025-06-18T14:12:13.881Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 342ms - Rows affected: 13 - RequestID: bitosowoh3 +2025-06-18T14:12:13.981Z [INFO] inventory-service - Operation: cache_hit - Processing time: 381ms - RequestID: nio8u5bwykf +2025-06-18T14:12:14.081Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 404ms - Rows affected: 64 - RequestID: 31l7mdoahtl +2025-06-18T14:12:14.181Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 109ms - Rows affected: 88 - RequestID: z470m9aobms +2025-06-18T14:12:14.281Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 498ms - Rows affected: 8 - RequestID: x3lqyh8w39b +2025-06-18T14:12:14.381Z [DEBUG] user-service - Operation: order_created - Processing time: 208ms - RequestID: 0a0a9vnoo6rd +2025-06-18T14:12:14.481Z [INFO] notification-service - Database DELETE on payments - Execution time: 475ms - Rows affected: 41 - RequestID: spjvdg6ios +2025-06-18T14:12:14.581Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 975ms - IP: 192.168.33.76 - User: user_1076 - RequestID: fo695l9aem +2025-06-18T14:12:14.681Z [INFO] notification-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.1.152 - RequestID: loc02efdrod +2025-06-18T14:12:14.781Z [INFO] user-service - Operation: notification_queued - Processing time: 535ms - RequestID: x3531iv47b +2025-06-18T14:12:14.881Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 408ms - Rows affected: 21 - RequestID: gp2jtyu5un +2025-06-18T14:12:14.981Z [INFO] inventory-service - Operation: order_created - Processing time: 137ms - RequestID: s1wau6l1hto +2025-06-18T14:12:15.081Z [DEBUG] payment-service - Database INSERT on products - Execution time: 96ms - Rows affected: 70 - RequestID: 2qvdphjhw7 +2025-06-18T14:12:15.181Z [INFO] user-service - Auth event: login_failed - User: user_1011 - IP: 192.168.196.226 - RequestID: glme66irp6a +2025-06-18T14:12:15.281Z [INFO] order-service - Operation: email_sent - Processing time: 736ms - RequestID: tiex60hnyp +2025-06-18T14:12:15.381Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 221ms - Rows affected: 39 - RequestID: r1vv0oiiuza +2025-06-18T14:12:15.481Z [INFO] user-service - Database INSERT on products - Execution time: 231ms - Rows affected: 73 - RequestID: x9llbffo67m +2025-06-18T14:12:15.581Z [TRACE] order-service - Operation: email_sent - Processing time: 550ms - RequestID: gjgvf7kx33g +2025-06-18T14:12:15.681Z [TRACE] auth-service - Operation: order_created - Processing time: 992ms - RequestID: qva8ynuxs49 +2025-06-18T14:12:15.781Z [INFO] payment-service - Database INSERT on orders - Execution time: 59ms - Rows affected: 70 - RequestID: v2p75x7i0cn +2025-06-18T14:12:15.881Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 540ms - IP: 192.168.174.114 - User: user_1076 - RequestID: wmcp6rp3ut +2025-06-18T14:12:15.981Z [DEBUG] payment-service - Auth event: login_failed - User: user_1066 - IP: 192.168.79.141 - RequestID: okswvvbedm +2025-06-18T14:12:16.081Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 400 - Response time: 20ms - IP: 192.168.68.128 - User: user_1044 - RequestID: tiumine2c8k +2025-06-18T14:12:16.181Z [INFO] notification-service - GET /api/v1/auth/login - Status: 201 - Response time: 1802ms - IP: 192.168.133.7 - User: user_1047 - RequestID: tb732b45jm9 +2025-06-18T14:12:16.281Z [TRACE] auth-service - Database SELECT on users - Execution time: 408ms - Rows affected: 66 - RequestID: p4xktdgfbto +2025-06-18T14:12:16.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 983ms - RequestID: l7wm7yaj0pa +2025-06-18T14:12:16.481Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 14ms - Rows affected: 74 - RequestID: dykvil0nn1g +2025-06-18T14:12:16.581Z [DEBUG] order-service - Operation: cache_hit - Processing time: 174ms - RequestID: axfjro7rb9 +2025-06-18T14:12:16.681Z [INFO] order-service - PUT /api/v1/orders - Status: 503 - Response time: 569ms - IP: 192.168.232.72 - User: user_1074 - RequestID: 9wygrpoltf6 +2025-06-18T14:12:16.781Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 298ms - Rows affected: 22 - RequestID: i43x3n2t8u +2025-06-18T14:12:16.881Z [TRACE] auth-service - PUT /api/v1/orders - Status: 502 - Response time: 1346ms - IP: 192.168.79.141 - User: user_1017 - RequestID: vu7cveo8kwg +2025-06-18T14:12:16.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.97.87 - RequestID: k46z5mro6md +2025-06-18T14:12:17.081Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 328ms - Rows affected: 17 - RequestID: 6m7zz80st6s +2025-06-18T14:12:17.181Z [TRACE] user-service - Database INSERT on orders - Execution time: 19ms - Rows affected: 95 - RequestID: a2gizc2jtfm +2025-06-18T14:12:17.281Z [TRACE] payment-service - POST /api/v1/inventory - Status: 500 - Response time: 988ms - IP: 192.168.79.116 - User: user_1037 - RequestID: 052hkpj1sssa +2025-06-18T14:12:17.381Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 12ms - Rows affected: 44 - RequestID: 5gbp33ynxyx +2025-06-18T14:12:17.481Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 1021ms - RequestID: qixn01qj4r8 +2025-06-18T14:12:17.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.144.38 - RequestID: ho9l9cx0x1p +2025-06-18T14:12:17.681Z [TRACE] notification-service - Auth event: logout - User: user_1048 - IP: 192.168.167.32 - RequestID: k5ysjhmovcg +2025-06-18T14:12:17.781Z [DEBUG] inventory-service - Operation: order_created - Processing time: 137ms - RequestID: bm7zpbhzb6f +2025-06-18T14:12:17.881Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1303ms - IP: 192.168.247.134 - User: user_1017 - RequestID: t1xfg0xatqa +2025-06-18T14:12:17.981Z [TRACE] auth-service - POST /api/v1/payments - Status: 500 - Response time: 1699ms - IP: 192.168.247.134 - User: user_1075 - RequestID: rkefull1oyl +2025-06-18T14:12:18.081Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 96ms - Rows affected: 8 - RequestID: 3ukb21bhvm3 +2025-06-18T14:12:18.181Z [INFO] payment-service - GET /api/v1/users - Status: 500 - Response time: 704ms - IP: 192.168.113.218 - User: user_1012 - RequestID: deytebyxypp +2025-06-18T14:12:18.281Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 222ms - Rows affected: 11 - RequestID: 5s4n1q4z5zu +2025-06-18T14:12:18.381Z [TRACE] auth-service - Operation: email_sent - Processing time: 752ms - RequestID: n5nxok6n50s +2025-06-18T14:12:18.481Z [TRACE] order-service - Operation: order_created - Processing time: 985ms - RequestID: ppitywlpfei +2025-06-18T14:12:18.581Z [DEBUG] auth-service - Database SELECT on products - Execution time: 437ms - Rows affected: 63 - RequestID: tplyby5s6ep +2025-06-18T14:12:18.681Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 36ms - Rows affected: 32 - RequestID: bc3b6985g0e +2025-06-18T14:12:18.781Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 661ms - RequestID: jbh618pwq3p +2025-06-18T14:12:18.881Z [INFO] user-service - GET /api/v1/payments - Status: 403 - Response time: 556ms - IP: 192.168.64.33 - User: user_1055 - RequestID: zt8l88uo3c +2025-06-18T14:12:18.981Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 825ms - RequestID: 9n80dupg5lj +2025-06-18T14:12:19.081Z [INFO] auth-service - Operation: inventory_updated - Processing time: 874ms - RequestID: z2aq4i33na8 +2025-06-18T14:12:19.181Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 868ms - RequestID: cmed955xs9 +2025-06-18T14:12:19.281Z [TRACE] user-service - Database INSERT on users - Execution time: 426ms - Rows affected: 95 - RequestID: 2lfwao9bq02 +2025-06-18T14:12:19.381Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 723ms - RequestID: j271qmkd68p +2025-06-18T14:12:19.481Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 403 - Response time: 368ms - IP: 192.168.32.38 - User: user_1042 - RequestID: 0t2ucrcsg5dk +2025-06-18T14:12:19.581Z [INFO] auth-service - Operation: order_created - Processing time: 378ms - RequestID: 3dlispmft0b +2025-06-18T14:12:19.681Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 200 - Response time: 1729ms - IP: 192.168.44.5 - User: user_1041 - RequestID: 1uk0jkyc0hg +2025-06-18T14:12:19.781Z [TRACE] notification-service - Database SELECT on products - Execution time: 358ms - Rows affected: 86 - RequestID: bp9wfzrcyjm +2025-06-18T14:12:19.881Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 404ms - Rows affected: 27 - RequestID: c1igg2m8h3e +2025-06-18T14:12:19.981Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 458ms - RequestID: 80bgxsnkrj +2025-06-18T14:12:20.081Z [TRACE] notification-service - Auth event: logout - User: user_1090 - IP: 192.168.81.206 - RequestID: 3zw9czsra0i +2025-06-18T14:12:20.181Z [INFO] notification-service - Database DELETE on users - Execution time: 351ms - Rows affected: 55 - RequestID: 50rpdrkt5u +2025-06-18T14:12:20.281Z [TRACE] payment-service - Operation: cache_miss - Processing time: 652ms - RequestID: il840xwcr6n +2025-06-18T14:12:20.381Z [TRACE] inventory-service - Auth event: logout - User: user_1045 - IP: 192.168.10.184 - RequestID: 7efsgy17j9 +2025-06-18T14:12:20.481Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 198ms - Rows affected: 18 - RequestID: o6ppbsv4o6c +2025-06-18T14:12:20.581Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 334ms - Rows affected: 47 - RequestID: k1esvmmkhg9 +2025-06-18T14:12:20.681Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 400 - Response time: 368ms - IP: 192.168.113.218 - User: user_1060 - RequestID: ec7sd9elfn +2025-06-18T14:12:20.781Z [INFO] order-service - GET /api/v1/orders - Status: 502 - Response time: 1139ms - IP: 192.168.79.116 - User: user_1045 - RequestID: n5nn82yp43o +2025-06-18T14:12:20.881Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 328ms - Rows affected: 19 - RequestID: unusn0p0hx +2025-06-18T14:12:20.981Z [DEBUG] payment-service - Auth event: logout - User: user_1032 - IP: 192.168.211.72 - RequestID: e1l1r0m4cwv +2025-06-18T14:12:21.081Z [DEBUG] user-service - Operation: order_created - Processing time: 654ms - RequestID: i2lfbilc03 +2025-06-18T14:12:21.181Z [TRACE] user-service - Operation: inventory_updated - Processing time: 608ms - RequestID: qh2q6kmly6 +2025-06-18T14:12:21.281Z [TRACE] inventory-service - POST /api/v1/orders - Status: 200 - Response time: 136ms - IP: 192.168.104.37 - User: user_1066 - RequestID: e8ybhj943uo +2025-06-18T14:12:21.381Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 502 - Response time: 1707ms - IP: 192.168.189.103 - User: user_1010 - RequestID: 8i61k7z1lke +2025-06-18T14:12:21.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 811ms - RequestID: uurnujrg6jb +2025-06-18T14:12:21.581Z [TRACE] notification-service - Operation: notification_queued - Processing time: 1002ms - RequestID: 6bfq9czdzqf +2025-06-18T14:12:21.681Z [TRACE] notification-service - GET /api/v1/users - Status: 400 - Response time: 1595ms - IP: 192.168.181.225 - User: user_1049 - RequestID: ez1nowcaeww +2025-06-18T14:12:21.781Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 96ms - Rows affected: 83 - RequestID: cyxudyz1o2e +2025-06-18T14:12:21.881Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 460ms - IP: 192.168.46.63 - User: user_1025 - RequestID: 5f1h0m77k76 +2025-06-18T14:12:21.981Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 567ms - IP: 192.168.31.117 - User: user_1040 - RequestID: o5nuxqpfoy +2025-06-18T14:12:22.081Z [INFO] user-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.170.215 - RequestID: vel545ixjce +2025-06-18T14:12:22.181Z [INFO] inventory-service - DELETE /api/v1/users - Status: 200 - Response time: 1047ms - IP: 192.168.133.7 - User: user_1079 - RequestID: 5ruhlqjebnh +2025-06-18T14:12:22.281Z [DEBUG] user-service - Operation: cache_hit - Processing time: 53ms - RequestID: kf8gkklzra +2025-06-18T14:12:22.381Z [DEBUG] order-service - Operation: cache_hit - Processing time: 850ms - RequestID: 13bbw241ztm +2025-06-18T14:12:22.481Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 404 - Response time: 566ms - IP: 192.168.85.229 - User: user_1029 - RequestID: eozizfy4bik +2025-06-18T14:12:22.581Z [INFO] order-service - Database UPDATE on sessions - Execution time: 326ms - Rows affected: 19 - RequestID: 7tlgpvl54nq +2025-06-18T14:12:22.681Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 217ms - Rows affected: 10 - RequestID: p676559w0jb +2025-06-18T14:12:22.781Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 201 - Response time: 1605ms - IP: 192.168.10.184 - User: user_1026 - RequestID: s4s06v1xa3 +2025-06-18T14:12:22.881Z [INFO] user-service - Operation: order_created - Processing time: 134ms - RequestID: fscadzg2rm4 +2025-06-18T14:12:22.981Z [INFO] payment-service - DELETE /api/v1/orders - Status: 500 - Response time: 1298ms - IP: 192.168.229.123 - User: user_1075 - RequestID: f0ow7qv3hm6 +2025-06-18T14:12:23.081Z [INFO] order-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.232.72 - RequestID: lchvt7vg0w +2025-06-18T14:12:23.181Z [TRACE] payment-service - Database UPDATE on users - Execution time: 483ms - Rows affected: 91 - RequestID: b4062oprg6h +2025-06-18T14:12:23.281Z [DEBUG] order-service - Database DELETE on products - Execution time: 67ms - Rows affected: 59 - RequestID: a3dowq3rk3g +2025-06-18T14:12:23.381Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 303ms - Rows affected: 16 - RequestID: os2gwzmrsxe +2025-06-18T14:12:23.481Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 42ms - Rows affected: 75 - RequestID: cebm8ljvauv +2025-06-18T14:12:23.581Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 54ms - Rows affected: 76 - RequestID: tz9mdezrtg +2025-06-18T14:12:23.681Z [TRACE] auth-service - Operation: cache_hit - Processing time: 1030ms - RequestID: pk69pgy90bg +2025-06-18T14:12:23.781Z [TRACE] user-service - Database SELECT on users - Execution time: 405ms - Rows affected: 87 - RequestID: un94hnye6jn +2025-06-18T14:12:23.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 977ms - RequestID: likp2s7oz3 +2025-06-18T14:12:23.981Z [TRACE] auth-service - PUT /api/v1/users - Status: 400 - Response time: 762ms - IP: 192.168.68.128 - User: user_1007 - RequestID: 4e2y89tc3yv +2025-06-18T14:12:24.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.36.218 - RequestID: fw0zgsbxqyh +2025-06-18T14:12:24.181Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 907ms - RequestID: sse2jq263z +2025-06-18T14:12:24.281Z [TRACE] order-service - Database INSERT on sessions - Execution time: 119ms - Rows affected: 91 - RequestID: 6lxz8y3s17e +2025-06-18T14:12:24.381Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 503 - Response time: 1036ms - IP: 192.168.158.144 - User: user_1066 - RequestID: m0jx7coae9 +2025-06-18T14:12:24.481Z [INFO] notification-service - Auth event: login_failed - User: user_1033 - IP: 192.168.30.79 - RequestID: 11xfsdrebfmp +2025-06-18T14:12:24.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.247.134 - RequestID: dr49czhjo4f +2025-06-18T14:12:24.681Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 166ms - Rows affected: 44 - RequestID: nu3s4gtsc5 +2025-06-18T14:12:24.781Z [TRACE] payment-service - Operation: cache_miss - Processing time: 714ms - RequestID: gpyga1bh3lm +2025-06-18T14:12:24.881Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 178ms - RequestID: jy70y8vhfv +2025-06-18T14:12:24.981Z [TRACE] auth-service - Database SELECT on orders - Execution time: 450ms - Rows affected: 49 - RequestID: bykcb5axe2m +2025-06-18T14:12:25.081Z [DEBUG] order-service - Auth event: logout - User: user_1060 - IP: 192.168.158.144 - RequestID: 0bxhuksake6 +2025-06-18T14:12:25.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 289ms - RequestID: pdc8d62qsp +2025-06-18T14:12:25.281Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 404 - Response time: 1592ms - IP: 192.168.10.184 - User: user_1080 - RequestID: rin44598owi +2025-06-18T14:12:25.381Z [INFO] payment-service - Operation: cache_miss - Processing time: 683ms - RequestID: lb9tppv2hw +2025-06-18T14:12:25.481Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 280ms - IP: 192.168.30.79 - User: user_1062 - RequestID: g7r4kua611v +2025-06-18T14:12:25.581Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 401 - Response time: 172ms - IP: 192.168.138.123 - User: user_1076 - RequestID: 2c8yr6gm2wx +2025-06-18T14:12:25.681Z [TRACE] payment-service - Database DELETE on orders - Execution time: 377ms - Rows affected: 43 - RequestID: vplnynbfrz +2025-06-18T14:12:25.781Z [TRACE] order-service - Operation: inventory_updated - Processing time: 568ms - RequestID: nbvr7v19ab +2025-06-18T14:12:25.881Z [TRACE] payment-service - Database DELETE on orders - Execution time: 291ms - Rows affected: 97 - RequestID: zuqkkn6t3ee +2025-06-18T14:12:25.981Z [INFO] payment-service - Operation: notification_queued - Processing time: 1010ms - RequestID: tqrkafh3j17 +2025-06-18T14:12:26.081Z [DEBUG] order-service - Operation: payment_processed - Processing time: 930ms - RequestID: m2gwm30ypap +2025-06-18T14:12:26.181Z [TRACE] auth-service - Auth event: password_change - User: user_1085 - IP: 192.168.79.116 - RequestID: t8nlwta752m +2025-06-18T14:12:26.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.138.123 - RequestID: id1hzgd638k +2025-06-18T14:12:26.381Z [INFO] notification-service - Database UPDATE on orders - Execution time: 147ms - Rows affected: 1 - RequestID: 9fl2pvjjxmo +2025-06-18T14:12:26.481Z [INFO] auth-service - Auth event: login_failed - User: user_1096 - IP: 192.168.28.146 - RequestID: wko8j23p2l +2025-06-18T14:12:26.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.13.72 - RequestID: jk43tkbsbdc +2025-06-18T14:12:26.681Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 436ms - Rows affected: 60 - RequestID: s6bauv7r24j +2025-06-18T14:12:26.781Z [TRACE] inventory-service - Operation: order_created - Processing time: 948ms - RequestID: 5qojyl3p4x7 +2025-06-18T14:12:26.881Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 401 - Response time: 1258ms - IP: 192.168.30.79 - User: user_1054 - RequestID: zbjj9oblmc +2025-06-18T14:12:26.981Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 589ms - RequestID: otwqhv3dvy +2025-06-18T14:12:27.081Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 400 - Response time: 364ms - IP: 192.168.1.152 - User: user_1098 - RequestID: 224nlqhvyzl +2025-06-18T14:12:27.181Z [TRACE] order-service - Operation: cache_hit - Processing time: 741ms - RequestID: slxstd0tugf +2025-06-18T14:12:27.281Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 290ms - Rows affected: 9 - RequestID: vn4wzstez6 +2025-06-18T14:12:27.381Z [INFO] auth-service - Database UPDATE on products - Execution time: 62ms - Rows affected: 63 - RequestID: tdar0zudqiq +2025-06-18T14:12:27.481Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 805ms - RequestID: 3vfu5eu3zmp +2025-06-18T14:12:27.581Z [TRACE] payment-service - Database INSERT on orders - Execution time: 64ms - Rows affected: 3 - RequestID: 9w11lrhhma6 +2025-06-18T14:12:27.681Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 208ms - Rows affected: 98 - RequestID: oxvdl6gluql +2025-06-18T14:12:27.781Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 611ms - IP: 192.168.30.79 - User: user_1013 - RequestID: gtlk56kj5wh +2025-06-18T14:12:27.881Z [INFO] user-service - Operation: payment_processed - Processing time: 765ms - RequestID: 21ovr4vt9ek +2025-06-18T14:12:27.981Z [TRACE] auth-service - Operation: cache_hit - Processing time: 125ms - RequestID: m17oy7x3a2 +2025-06-18T14:12:28.081Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 59ms - Rows affected: 9 - RequestID: qtz858c8exk +2025-06-18T14:12:28.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.31.117 - RequestID: atxl9kxauq +2025-06-18T14:12:28.281Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 403 - Response time: 254ms - IP: 192.168.159.94 - User: user_1096 - RequestID: 0tx91gbynudj +2025-06-18T14:12:28.381Z [INFO] user-service - Auth event: login_success - User: user_1058 - IP: 192.168.68.128 - RequestID: y43dj4f4ww +2025-06-18T14:12:28.481Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1484ms - IP: 192.168.79.116 - User: user_1067 - RequestID: 50cnr3t0l9r +2025-06-18T14:12:28.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.174.114 - RequestID: 7j5aqj6gqam +2025-06-18T14:12:28.681Z [INFO] notification-service - Database SELECT on payments - Execution time: 107ms - Rows affected: 12 - RequestID: kppyix7kgir +2025-06-18T14:12:28.781Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 295ms - Rows affected: 40 - RequestID: b9ka4umohye +2025-06-18T14:12:28.881Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1901ms - IP: 192.168.181.225 - User: user_1080 - RequestID: 6zp9wcesaod +2025-06-18T14:12:28.981Z [DEBUG] order-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.46.63 - RequestID: aoi6cm1q88b +2025-06-18T14:12:29.081Z [INFO] notification-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.174.114 - RequestID: elvyy68mmtr +2025-06-18T14:12:29.181Z [INFO] order-service - PATCH /api/v1/orders - Status: 200 - Response time: 436ms - IP: 192.168.100.240 - User: user_1087 - RequestID: i0hkyfzmzfi +2025-06-18T14:12:29.281Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 101ms - Rows affected: 93 - RequestID: 49xbrbwzlfn +2025-06-18T14:12:29.381Z [TRACE] auth-service - Database INSERT on orders - Execution time: 488ms - Rows affected: 49 - RequestID: 3bdkp27hz7u +2025-06-18T14:12:29.481Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 67ms - Rows affected: 42 - RequestID: chvnrbhxt6d +2025-06-18T14:12:29.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.158.144 - RequestID: k7ysdugb1ni +2025-06-18T14:12:29.681Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 185ms - Rows affected: 81 - RequestID: cr0xa8wzx9g +2025-06-18T14:12:29.781Z [INFO] notification-service - Operation: webhook_sent - Processing time: 231ms - RequestID: pwsvd45n01 +2025-06-18T14:12:29.881Z [INFO] notification-service - Database INSERT on users - Execution time: 6ms - Rows affected: 32 - RequestID: g0fopcy5wu4 +2025-06-18T14:12:29.981Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 353ms - Rows affected: 79 - RequestID: rwn547hwov +2025-06-18T14:12:30.081Z [DEBUG] auth-service - GET /api/v1/users - Status: 500 - Response time: 1318ms - IP: 192.168.14.77 - User: user_1013 - RequestID: tjatq786i0s +2025-06-18T14:12:30.181Z [TRACE] payment-service - Operation: order_created - Processing time: 481ms - RequestID: av37to08755 +2025-06-18T14:12:30.281Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 200 - Response time: 1101ms - IP: 192.168.235.117 - User: user_1016 - RequestID: sbuzrld8eym +2025-06-18T14:12:30.381Z [TRACE] auth-service - Auth event: login_failed - User: user_1087 - IP: 192.168.44.5 - RequestID: 901wnlrvju +2025-06-18T14:12:30.481Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 845ms - RequestID: ekkr9rbch3m +2025-06-18T14:12:30.581Z [DEBUG] user-service - Auth event: login_success - User: user_1021 - IP: 192.168.133.7 - RequestID: efu70xus3nv +2025-06-18T14:12:30.681Z [DEBUG] order-service - Auth event: logout - User: user_1048 - IP: 192.168.167.32 - RequestID: wc3rzenx6c +2025-06-18T14:12:30.781Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1155ms - IP: 192.168.79.116 - User: user_1007 - RequestID: lwbp9v7byod +2025-06-18T14:12:30.881Z [DEBUG] order-service - Auth event: logout - User: user_1014 - IP: 192.168.189.103 - RequestID: uwt19jc5w1r +2025-06-18T14:12:30.981Z [INFO] payment-service - POST /api/v1/payments - Status: 404 - Response time: 1127ms - IP: 192.168.46.63 - User: user_1029 - RequestID: vzwc4eh316 +2025-06-18T14:12:31.081Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 354ms - RequestID: wm6wvkati5 +2025-06-18T14:12:31.181Z [TRACE] auth-service - Operation: cache_hit - Processing time: 365ms - RequestID: 65xt7ap9tci +2025-06-18T14:12:31.281Z [DEBUG] user-service - Operation: email_sent - Processing time: 778ms - RequestID: 6d4r7jv9yxy +2025-06-18T14:12:31.381Z [TRACE] payment-service - Auth event: login_success - User: user_1011 - IP: 192.168.1.152 - RequestID: bgpqvkiu1si +2025-06-18T14:12:31.481Z [DEBUG] notification-service - Database INSERT on users - Execution time: 414ms - Rows affected: 84 - RequestID: pi895rgi6q +2025-06-18T14:12:31.581Z [TRACE] payment-service - Database DELETE on orders - Execution time: 234ms - Rows affected: 38 - RequestID: r5lzcb0nbor +2025-06-18T14:12:31.681Z [DEBUG] inventory-service - Operation: order_created - Processing time: 143ms - RequestID: aciz0ogbzcp +2025-06-18T14:12:31.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1051 - IP: 192.168.68.128 - RequestID: g3fl9fok2w8 +2025-06-18T14:12:31.881Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 502 - Response time: 536ms - IP: 192.168.68.158 - User: user_1099 - RequestID: inu9iplp75q +2025-06-18T14:12:31.981Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 145ms - Rows affected: 15 - RequestID: kni4ydq5z6d +2025-06-18T14:12:32.081Z [INFO] order-service - Auth event: login_success - User: user_1074 - IP: 192.168.247.134 - RequestID: 7l68hhm6is5 +2025-06-18T14:12:32.181Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 538ms - RequestID: b1a5pwffwze +2025-06-18T14:12:32.281Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1672ms - IP: 192.168.194.41 - User: user_1034 - RequestID: ldf6i4yiwc +2025-06-18T14:12:32.381Z [INFO] user-service - GET /api/v1/auth/logout - Status: 400 - Response time: 997ms - IP: 192.168.79.141 - User: user_1062 - RequestID: rcf69dz0c8f +2025-06-18T14:12:32.481Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 439ms - RequestID: umur7uygtfh +2025-06-18T14:12:32.581Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1338ms - IP: 192.168.211.72 - User: user_1031 - RequestID: i4gklneko3 +2025-06-18T14:12:32.681Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 250ms - Rows affected: 54 - RequestID: gwukcpu8sfv +2025-06-18T14:12:32.781Z [INFO] user-service - Operation: inventory_updated - Processing time: 922ms - RequestID: zgr8942iiv +2025-06-18T14:12:32.881Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.187.199 - RequestID: kdcthfte0nf +2025-06-18T14:12:32.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 955ms - RequestID: inz07w68og +2025-06-18T14:12:33.081Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 316ms - Rows affected: 61 - RequestID: xdalbfgu0ks +2025-06-18T14:12:33.181Z [TRACE] payment-service - Database INSERT on products - Execution time: 453ms - Rows affected: 90 - RequestID: t084g2jbygd +2025-06-18T14:12:33.281Z [TRACE] order-service - Operation: email_sent - Processing time: 756ms - RequestID: guf295dz3l +2025-06-18T14:12:33.381Z [TRACE] user-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.211.72 - RequestID: r17wofi0dtb +2025-06-18T14:12:33.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 1011ms - RequestID: b60hou42fjo +2025-06-18T14:12:33.581Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 243ms - Rows affected: 48 - RequestID: a18d7y9sy6q +2025-06-18T14:12:33.681Z [INFO] payment-service - GET /api/v1/inventory - Status: 500 - Response time: 1590ms - IP: 192.168.64.33 - User: user_1010 - RequestID: o1ul5675x2f +2025-06-18T14:12:33.781Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 500 - Response time: 871ms - IP: 192.168.31.117 - User: user_1085 - RequestID: 63yrahcza3o +2025-06-18T14:12:33.881Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 505ms - RequestID: 2zt7xhe24ei +2025-06-18T14:12:33.981Z [INFO] order-service - PATCH /api/v1/inventory - Status: 500 - Response time: 281ms - IP: 192.168.194.41 - User: user_1083 - RequestID: n4h7h33b89s +2025-06-18T14:12:34.081Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 200 - Response time: 1409ms - IP: 192.168.189.103 - User: user_1091 - RequestID: zbqwswuz2bq +2025-06-18T14:12:34.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 685ms - RequestID: 0k7rte9byegq +2025-06-18T14:12:34.281Z [INFO] notification-service - Operation: inventory_updated - Processing time: 780ms - RequestID: u8kufvpklkd +2025-06-18T14:12:34.381Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 277ms - Rows affected: 42 - RequestID: x7q7mt9kum +2025-06-18T14:12:34.481Z [DEBUG] user-service - Database INSERT on payments - Execution time: 320ms - Rows affected: 29 - RequestID: sdfn2mp08u +2025-06-18T14:12:34.581Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 97ms - Rows affected: 42 - RequestID: zg2fzu9mdun +2025-06-18T14:12:34.681Z [TRACE] notification-service - PATCH /api/v1/users - Status: 401 - Response time: 1032ms - IP: 192.168.85.229 - User: user_1060 - RequestID: q0qdzmgcg9s +2025-06-18T14:12:34.781Z [INFO] notification-service - Auth event: password_change - User: user_1014 - IP: 192.168.235.117 - RequestID: nvtz4h0glf +2025-06-18T14:12:34.881Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 107ms - Rows affected: 51 - RequestID: kdyiuv1qunc +2025-06-18T14:12:34.981Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 502 - Response time: 306ms - IP: 192.168.167.32 - User: user_1062 - RequestID: 52te6qgqnuk +2025-06-18T14:12:35.081Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 339ms - Rows affected: 68 - RequestID: rau9hy648r +2025-06-18T14:12:35.181Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 360ms - RequestID: rmls7k2qtzm +2025-06-18T14:12:35.281Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 172ms - Rows affected: 82 - RequestID: jfk026i1sei +2025-06-18T14:12:35.381Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 340ms - RequestID: ljo1d1rgini +2025-06-18T14:12:35.481Z [INFO] inventory-service - Database INSERT on payments - Execution time: 46ms - Rows affected: 46 - RequestID: 4ra1ile0ox +2025-06-18T14:12:35.581Z [TRACE] order-service - Auth event: login_failed - User: user_1062 - IP: 192.168.144.38 - RequestID: 8b7mtvov81w +2025-06-18T14:12:35.681Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 8ms - Rows affected: 9 - RequestID: aywmlxyzwu +2025-06-18T14:12:35.781Z [INFO] notification-service - Database INSERT on products - Execution time: 396ms - Rows affected: 92 - RequestID: 9do1yyaacgl +2025-06-18T14:12:35.881Z [INFO] auth-service - Database INSERT on payments - Execution time: 242ms - Rows affected: 61 - RequestID: 56knqrgqvg3 +2025-06-18T14:12:35.981Z [TRACE] order-service - Operation: cache_hit - Processing time: 588ms - RequestID: asc6gx0uwub +2025-06-18T14:12:36.081Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1109ms - IP: 192.168.1.152 - User: user_1009 - RequestID: cfdeb6ps2a9 +2025-06-18T14:12:36.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.227.233 - RequestID: cot5rfgd5jm +2025-06-18T14:12:36.281Z [TRACE] payment-service - Database DELETE on payments - Execution time: 143ms - Rows affected: 9 - RequestID: pd84x7mqc1r +2025-06-18T14:12:36.381Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 967ms - RequestID: erapkekudw5 +2025-06-18T14:12:36.481Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 1019ms - RequestID: neglpk6gwl +2025-06-18T14:12:36.581Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 502 - Response time: 365ms - IP: 192.168.32.38 - User: user_1013 - RequestID: kd9u86bwysn +2025-06-18T14:12:36.681Z [INFO] notification-service - PUT /api/v1/orders - Status: 404 - Response time: 1148ms - IP: 192.168.167.32 - User: user_1085 - RequestID: 5850rf1kfib +2025-06-18T14:12:36.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.147.171 - RequestID: 6fuvs4khh1j +2025-06-18T14:12:36.881Z [TRACE] user-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.240.169 - RequestID: 7b87old0igx +2025-06-18T14:12:36.981Z [INFO] auth-service - PUT /api/v1/orders - Status: 404 - Response time: 1951ms - IP: 192.168.247.134 - User: user_1091 - RequestID: j8gn4vfpny8 +2025-06-18T14:12:37.081Z [TRACE] order-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.247.134 - RequestID: xc7jwns7jxs +2025-06-18T14:12:37.181Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 365ms - Rows affected: 7 - RequestID: q7c33uuo85 +2025-06-18T14:12:37.281Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 116ms - Rows affected: 62 - RequestID: 7kh4592hfx +2025-06-18T14:12:37.381Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 135ms - Rows affected: 93 - RequestID: b4idrgs0tze +2025-06-18T14:12:37.481Z [TRACE] user-service - Auth event: logout - User: user_1075 - IP: 192.168.33.76 - RequestID: szede8xl53 +2025-06-18T14:12:37.581Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 4ms - Rows affected: 45 - RequestID: 3mo1qlak61w +2025-06-18T14:12:37.681Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 495ms - Rows affected: 8 - RequestID: 8w7nwrvgs19 +2025-06-18T14:12:37.781Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1613ms - IP: 192.168.189.103 - User: user_1027 - RequestID: o8w7nangrg +2025-06-18T14:12:37.881Z [INFO] auth-service - Auth event: logout - User: user_1090 - IP: 192.168.32.38 - RequestID: phzsrkvv7u +2025-06-18T14:12:37.981Z [INFO] auth-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.44.5 - RequestID: 2l8n6hukpt9 +2025-06-18T14:12:38.081Z [DEBUG] user-service - Database SELECT on users - Execution time: 273ms - Rows affected: 61 - RequestID: wsvgpeswier +2025-06-18T14:12:38.181Z [INFO] order-service - Database INSERT on products - Execution time: 8ms - Rows affected: 30 - RequestID: 19tl37e46a8 +2025-06-18T14:12:38.281Z [INFO] order-service - Operation: payment_processed - Processing time: 221ms - RequestID: yppi5nmwc1 +2025-06-18T14:12:38.381Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.68.158 - RequestID: qv1txb91fb +2025-06-18T14:12:38.481Z [TRACE] inventory-service - GET /api/v1/users - Status: 502 - Response time: 1417ms - IP: 192.168.181.225 - User: user_1079 - RequestID: uqv6hlkbaji +2025-06-18T14:12:38.581Z [DEBUG] notification-service - GET /api/v1/users - Status: 201 - Response time: 1608ms - IP: 192.168.10.184 - User: user_1063 - RequestID: 1wtzxtcotjd +2025-06-18T14:12:38.681Z [DEBUG] order-service - Auth event: password_change - User: user_1086 - IP: 192.168.31.117 - RequestID: wcbr68y0utb +2025-06-18T14:12:38.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 215ms - RequestID: 4nbdndnvsfi +2025-06-18T14:12:38.881Z [INFO] inventory-service - Database INSERT on users - Execution time: 176ms - Rows affected: 62 - RequestID: i7ovbes1k8 +2025-06-18T14:12:38.981Z [INFO] auth-service - Database DELETE on sessions - Execution time: 433ms - Rows affected: 8 - RequestID: 4lriuw1ejha +2025-06-18T14:12:39.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 658ms - RequestID: 6gu39gl5cvt +2025-06-18T14:12:39.181Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 130ms - Rows affected: 8 - RequestID: ox62wfni9km +2025-06-18T14:12:39.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.247.134 - RequestID: i5kpk6gltt +2025-06-18T14:12:39.381Z [INFO] user-service - Auth event: logout - User: user_1064 - IP: 192.168.144.38 - RequestID: va2f47c78a +2025-06-18T14:12:39.481Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 127ms - Rows affected: 52 - RequestID: b1gfpj52ba +2025-06-18T14:12:39.581Z [TRACE] user-service - Operation: cache_hit - Processing time: 452ms - RequestID: 7i8lqrcq0yx +2025-06-18T14:12:39.681Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 469ms - Rows affected: 99 - RequestID: eese1n78q1f +2025-06-18T14:12:39.781Z [INFO] payment-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.133.7 - RequestID: jt9oeevumkc +2025-06-18T14:12:39.881Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 188ms - Rows affected: 97 - RequestID: k68ko6cch8g +2025-06-18T14:12:39.981Z [INFO] order-service - GET /api/v1/auth/logout - Status: 404 - Response time: 807ms - IP: 192.168.33.76 - User: user_1035 - RequestID: w2qy7g7lh5f +2025-06-18T14:12:40.081Z [INFO] auth-service - POST /api/v1/inventory - Status: 201 - Response time: 1883ms - IP: 192.168.196.226 - User: user_1093 - RequestID: xlr4pklrr2 +2025-06-18T14:12:40.181Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 400 - Response time: 1295ms - IP: 192.168.141.100 - User: user_1081 - RequestID: xt5rma10l6 +2025-06-18T14:12:40.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 989ms - RequestID: 4xwj066fki7 +2025-06-18T14:12:40.381Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 403 - Response time: 320ms - IP: 192.168.133.7 - User: user_1026 - RequestID: r6d7m9o88zd +2025-06-18T14:12:40.481Z [DEBUG] order-service - Operation: cache_hit - Processing time: 363ms - RequestID: nh05w67s1d7 +2025-06-18T14:12:40.581Z [TRACE] order-service - Operation: order_created - Processing time: 221ms - RequestID: rs68ask3mak +2025-06-18T14:12:40.681Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 196ms - Rows affected: 60 - RequestID: i24vw4t4u4f +2025-06-18T14:12:40.781Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 265ms - Rows affected: 66 - RequestID: m8vr79j1ydb +2025-06-18T14:12:40.881Z [INFO] auth-service - Operation: inventory_updated - Processing time: 707ms - RequestID: am6hbmriiov +2025-06-18T14:12:40.981Z [TRACE] user-service - POST /api/v1/users - Status: 403 - Response time: 952ms - IP: 192.168.81.206 - User: user_1025 - RequestID: rjlcozdu7oh +2025-06-18T14:12:41.081Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 175ms - RequestID: 1tvxnnxa38uh +2025-06-18T14:12:41.181Z [TRACE] payment-service - Auth event: logout - User: user_1061 - IP: 192.168.14.77 - RequestID: tiqr1v1n7pi +2025-06-18T14:12:41.281Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 503 - Response time: 1803ms - IP: 192.168.247.134 - User: user_1051 - RequestID: yzjz6vkearl +2025-06-18T14:12:41.381Z [INFO] inventory-service - Auth event: logout - User: user_1019 - IP: 192.168.11.60 - RequestID: ov3d9jz8pb +2025-06-18T14:12:41.481Z [INFO] user-service - Database INSERT on orders - Execution time: 170ms - Rows affected: 5 - RequestID: hk24wqofmfw +2025-06-18T14:12:41.581Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 404 - Response time: 1528ms - IP: 192.168.79.116 - User: user_1009 - RequestID: pvshnjodnk +2025-06-18T14:12:41.681Z [TRACE] payment-service - GET /api/v1/orders - Status: 403 - Response time: 558ms - IP: 192.168.189.103 - User: user_1081 - RequestID: aprqgdaaitc +2025-06-18T14:12:41.781Z [INFO] inventory-service - Auth event: login_success - User: user_1094 - IP: 192.168.170.215 - RequestID: 8c3vtuesjol +2025-06-18T14:12:41.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 283ms - RequestID: e379xyluz3l +2025-06-18T14:12:41.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1099 - IP: 192.168.229.123 - RequestID: ldzf4k175dj +2025-06-18T14:12:42.081Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 55ms - RequestID: dva51d9ra6t +2025-06-18T14:12:42.181Z [TRACE] auth-service - Database SELECT on payments - Execution time: 203ms - Rows affected: 62 - RequestID: nfjbw2ncue +2025-06-18T14:12:42.281Z [DEBUG] auth-service - Operation: email_sent - Processing time: 792ms - RequestID: 3r1kg4yejc9 +2025-06-18T14:12:42.381Z [DEBUG] user-service - Database UPDATE on products - Execution time: 214ms - Rows affected: 34 - RequestID: scxcedwvjzr +2025-06-18T14:12:42.481Z [INFO] order-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.240.169 - RequestID: qyqgtfhqvfb +2025-06-18T14:12:42.581Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 201 - Response time: 315ms - IP: 192.168.211.72 - User: user_1097 - RequestID: umk7e9g1w8r +2025-06-18T14:12:42.681Z [TRACE] order-service - Operation: order_created - Processing time: 713ms - RequestID: ceynr086e9h +2025-06-18T14:12:42.781Z [DEBUG] order-service - GET /api/v1/users - Status: 201 - Response time: 944ms - IP: 192.168.30.79 - User: user_1046 - RequestID: jbhgbtyzjn +2025-06-18T14:12:42.881Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 674ms - RequestID: au53z2o8nxp +2025-06-18T14:12:42.981Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 448ms - Rows affected: 71 - RequestID: 4zjlkskymfj +2025-06-18T14:12:43.081Z [INFO] notification-service - POST /api/v1/inventory - Status: 401 - Response time: 1590ms - IP: 192.168.242.165 - User: user_1034 - RequestID: myxflmgwo1l +2025-06-18T14:12:43.181Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 404 - Response time: 1553ms - IP: 192.168.232.72 - User: user_1084 - RequestID: 36d3uzzi3r8 +2025-06-18T14:12:43.281Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 474ms - Rows affected: 27 - RequestID: b7gdcqpn29k +2025-06-18T14:12:43.381Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 36ms - Rows affected: 59 - RequestID: oi920dpqfa +2025-06-18T14:12:43.481Z [DEBUG] order-service - Database UPDATE on users - Execution time: 380ms - Rows affected: 24 - RequestID: dtjcl3legc4 +2025-06-18T14:12:43.581Z [DEBUG] notification-service - Database DELETE on products - Execution time: 380ms - Rows affected: 95 - RequestID: 2pnp1n5jshc +2025-06-18T14:12:43.681Z [INFO] notification-service - Operation: cache_hit - Processing time: 518ms - RequestID: cjup04xa2i8 +2025-06-18T14:12:43.781Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 615ms - IP: 192.168.159.94 - User: user_1093 - RequestID: u6k3rwszt8 +2025-06-18T14:12:43.881Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1085ms - IP: 192.168.104.37 - User: user_1084 - RequestID: cyqh2r9v88o +2025-06-18T14:12:43.981Z [DEBUG] notification-service - Auth event: password_change - User: user_1017 - IP: 192.168.187.199 - RequestID: 0fubgjyu0u6 +2025-06-18T14:12:44.081Z [DEBUG] user-service - Auth event: password_change - User: user_1039 - IP: 192.168.36.218 - RequestID: qz2hjh6go6 +2025-06-18T14:12:44.181Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.144.38 - RequestID: kqnle9eum3c +2025-06-18T14:12:44.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.46.63 - RequestID: ot3kedn38z +2025-06-18T14:12:44.381Z [INFO] user-service - Database DELETE on payments - Execution time: 304ms - Rows affected: 65 - RequestID: a4amqkiem0m +2025-06-18T14:12:44.481Z [INFO] order-service - PATCH /api/v1/users - Status: 403 - Response time: 1607ms - IP: 192.168.211.72 - User: user_1022 - RequestID: 1pbqrw63pz1 +2025-06-18T14:12:44.581Z [INFO] inventory-service - Auth event: login_success - User: user_1078 - IP: 192.168.14.77 - RequestID: ym9fpksknq +2025-06-18T14:12:44.681Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 201 - Response time: 676ms - IP: 192.168.247.134 - User: user_1063 - RequestID: 53c69rrpkru +2025-06-18T14:12:44.781Z [DEBUG] auth-service - Database INSERT on users - Execution time: 130ms - Rows affected: 61 - RequestID: kfb7tqw44jr +2025-06-18T14:12:44.881Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 503 - Response time: 1358ms - IP: 192.168.53.133 - User: user_1014 - RequestID: 5qd71zzezrs +2025-06-18T14:12:44.981Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 23ms - Rows affected: 43 - RequestID: fj74npr4an6 +2025-06-18T14:12:45.081Z [INFO] user-service - Database DELETE on payments - Execution time: 479ms - Rows affected: 75 - RequestID: 8c6amptji9q +2025-06-18T14:12:45.181Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 89ms - Rows affected: 96 - RequestID: xqfhgzgytjh +2025-06-18T14:12:45.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 695ms - RequestID: ed0vmnvnfve +2025-06-18T14:12:45.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1085 - IP: 192.168.46.63 - RequestID: zoxruqcp0c +2025-06-18T14:12:45.481Z [TRACE] payment-service - Auth event: logout - User: user_1078 - IP: 192.168.53.133 - RequestID: xo4dfcifhfg +2025-06-18T14:12:45.581Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 423ms - Rows affected: 84 - RequestID: kqj8v0yz53c +2025-06-18T14:12:45.681Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 404 - Response time: 772ms - IP: 192.168.170.215 - User: user_1013 - RequestID: ej7pb130kpv +2025-06-18T14:12:45.781Z [INFO] payment-service - Auth event: password_change - User: user_1062 - IP: 192.168.79.141 - RequestID: ouzadpmftjq +2025-06-18T14:12:45.881Z [DEBUG] notification-service - Database SELECT on products - Execution time: 330ms - Rows affected: 37 - RequestID: qmegyt25ybk +2025-06-18T14:12:45.981Z [INFO] user-service - POST /api/v1/auth/login - Status: 503 - Response time: 1769ms - IP: 192.168.133.7 - User: user_1055 - RequestID: bxn0b137nwi +2025-06-18T14:12:46.081Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 523ms - IP: 192.168.240.169 - User: user_1046 - RequestID: 1jbv3z10y1 +2025-06-18T14:12:46.181Z [INFO] user-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.81.206 - RequestID: nrw3hawh22f +2025-06-18T14:12:46.281Z [TRACE] notification-service - Auth event: password_change - User: user_1045 - IP: 192.168.11.60 - RequestID: 5e3uz9eyj4j +2025-06-18T14:12:46.381Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 118ms - Rows affected: 87 - RequestID: 5qq299tzb3w +2025-06-18T14:12:46.481Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 201 - Response time: 897ms - IP: 192.168.1.152 - User: user_1071 - RequestID: nwqyzo8dmi +2025-06-18T14:12:46.581Z [TRACE] user-service - Operation: email_sent - Processing time: 836ms - RequestID: fv1tw2zzmas +2025-06-18T14:12:46.681Z [INFO] order-service - Database UPDATE on sessions - Execution time: 97ms - Rows affected: 83 - RequestID: zanl92i2wcc +2025-06-18T14:12:46.781Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 681ms - IP: 192.168.64.33 - User: user_1085 - RequestID: 4anwskd9o58 +2025-06-18T14:12:46.881Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 265ms - Rows affected: 67 - RequestID: 8edqwzluqt3 +2025-06-18T14:12:46.981Z [TRACE] auth-service - PUT /api/v1/orders - Status: 503 - Response time: 1635ms - IP: 192.168.68.128 - User: user_1072 - RequestID: suq05sw5e9 +2025-06-18T14:12:47.081Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 123ms - RequestID: nzi2kzr1kbk +2025-06-18T14:12:47.181Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 200 - Response time: 1162ms - IP: 192.168.170.215 - User: user_1001 - RequestID: 0jihjz7u0b94 +2025-06-18T14:12:47.281Z [INFO] inventory-service - PUT /api/v1/payments - Status: 400 - Response time: 1224ms - IP: 192.168.159.94 - User: user_1033 - RequestID: 6cvucwhu1zs +2025-06-18T14:12:47.381Z [DEBUG] order-service - Auth event: login_failed - User: user_1049 - IP: 192.168.104.37 - RequestID: 8z8bwdtu59e +2025-06-18T14:12:47.481Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 960ms - RequestID: wz8t2urg7uq +2025-06-18T14:12:47.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1099 - IP: 192.168.53.133 - RequestID: nlh4vuerqv +2025-06-18T14:12:47.681Z [TRACE] payment-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.85.229 - RequestID: y1tgulvuq5 +2025-06-18T14:12:47.781Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 731ms - RequestID: ve95c4apo28 +2025-06-18T14:12:47.881Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 403 - Response time: 601ms - IP: 192.168.211.72 - User: user_1076 - RequestID: y1uwrj0pz9p +2025-06-18T14:12:47.981Z [TRACE] notification-service - Database INSERT on orders - Execution time: 256ms - Rows affected: 20 - RequestID: ku2dzm5hvu +2025-06-18T14:12:48.081Z [TRACE] notification-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.100.240 - RequestID: 7oauohsuof +2025-06-18T14:12:48.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 85ms - RequestID: n7dlqbcku5n +2025-06-18T14:12:48.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1079 - IP: 192.168.44.5 - RequestID: nq7maja1iuf +2025-06-18T14:12:48.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.170.215 - RequestID: nire1atap4 +2025-06-18T14:12:48.481Z [TRACE] payment-service - Operation: notification_queued - Processing time: 298ms - RequestID: 2h6cusxg498 +2025-06-18T14:12:48.581Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.147.171 - RequestID: wybaskb7o2 +2025-06-18T14:12:48.681Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 84ms - Rows affected: 0 - RequestID: 63w37xervev +2025-06-18T14:12:48.781Z [TRACE] user-service - Database UPDATE on payments - Execution time: 408ms - Rows affected: 20 - RequestID: htjkymfces +2025-06-18T14:12:48.881Z [DEBUG] order-service - Database DELETE on users - Execution time: 80ms - Rows affected: 40 - RequestID: p3604m3ong +2025-06-18T14:12:48.981Z [TRACE] auth-service - Auth event: password_change - User: user_1081 - IP: 192.168.79.143 - RequestID: e55a5s53u6i +2025-06-18T14:12:49.081Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 402ms - Rows affected: 36 - RequestID: tom1dpoq25 +2025-06-18T14:12:49.181Z [INFO] payment-service - GET /api/v1/payments - Status: 403 - Response time: 1539ms - IP: 192.168.189.103 - User: user_1002 - RequestID: sjkwmpv8eqh +2025-06-18T14:12:49.281Z [INFO] user-service - Auth event: login_failed - User: user_1039 - IP: 192.168.68.158 - RequestID: 44sqj7bwa9g +2025-06-18T14:12:49.381Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 469ms - RequestID: 1ind1t7mqiti +2025-06-18T14:12:49.481Z [INFO] auth-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.158.144 - RequestID: jct91xufgzs +2025-06-18T14:12:49.581Z [INFO] user-service - Operation: email_sent - Processing time: 577ms - RequestID: vx0n1mstl4 +2025-06-18T14:12:49.681Z [TRACE] auth-service - Operation: cache_miss - Processing time: 224ms - RequestID: 15fqiimszixi +2025-06-18T14:12:49.781Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1364ms - IP: 192.168.211.72 - User: user_1023 - RequestID: gsn6fp2f8zg +2025-06-18T14:12:49.881Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 201 - Response time: 1041ms - IP: 192.168.247.134 - User: user_1046 - RequestID: icbu8bb9jn +2025-06-18T14:12:49.981Z [TRACE] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 751ms - IP: 192.168.104.37 - User: user_1001 - RequestID: 8ptlb47n592 +2025-06-18T14:12:50.081Z [TRACE] user-service - Operation: inventory_updated - Processing time: 421ms - RequestID: yi1me1izccj +2025-06-18T14:12:50.181Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 76ms - Rows affected: 42 - RequestID: 45dqzk6h7dw +2025-06-18T14:12:50.281Z [TRACE] user-service - Operation: notification_queued - Processing time: 538ms - RequestID: xi7cd0rxtod +2025-06-18T14:12:50.381Z [TRACE] auth-service - Operation: order_created - Processing time: 570ms - RequestID: dl0hblpvzrn +2025-06-18T14:12:50.481Z [TRACE] payment-service - GET /api/v1/inventory - Status: 200 - Response time: 239ms - IP: 192.168.46.63 - User: user_1040 - RequestID: ql98w6y2te +2025-06-18T14:12:50.581Z [INFO] auth-service - Auth event: login_failed - User: user_1078 - IP: 192.168.11.60 - RequestID: oc365fl39j +2025-06-18T14:12:50.681Z [INFO] user-service - Operation: inventory_updated - Processing time: 91ms - RequestID: y1d3j0xusrp +2025-06-18T14:12:50.781Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1734ms - IP: 192.168.242.165 - User: user_1008 - RequestID: 1mi3el0a42d +2025-06-18T14:12:50.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 502ms - RequestID: 2a9v5siobl7 +2025-06-18T14:12:50.981Z [TRACE] order-service - Auth event: login_failed - User: user_1023 - IP: 192.168.79.141 - RequestID: 8adojwhz1nt +2025-06-18T14:12:51.081Z [TRACE] auth-service - Auth event: login_failed - User: user_1007 - IP: 192.168.13.72 - RequestID: 1ytfpn6oe6n +2025-06-18T14:12:51.181Z [INFO] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1641ms - IP: 192.168.174.114 - User: user_1065 - RequestID: kqvxlfug09 +2025-06-18T14:12:51.281Z [DEBUG] order-service - Database SELECT on orders - Execution time: 87ms - Rows affected: 74 - RequestID: tjw85wcn0pa +2025-06-18T14:12:51.381Z [TRACE] notification-service - Database DELETE on orders - Execution time: 66ms - Rows affected: 19 - RequestID: h4i4e5qcgqf +2025-06-18T14:12:51.481Z [INFO] payment-service - Operation: email_sent - Processing time: 964ms - RequestID: fpzmkx3bdo9 +2025-06-18T14:12:51.581Z [INFO] order-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1320ms - IP: 192.168.242.165 - User: user_1041 - RequestID: u1vjgnyd7y +2025-06-18T14:12:51.681Z [INFO] payment-service - Database INSERT on users - Execution time: 410ms - Rows affected: 74 - RequestID: p8hl4a8vp2k +2025-06-18T14:12:51.781Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 401 - Response time: 469ms - IP: 192.168.36.218 - User: user_1098 - RequestID: x4bid5l7qtb +2025-06-18T14:12:51.881Z [INFO] inventory-service - PUT /api/v1/orders - Status: 500 - Response time: 193ms - IP: 192.168.13.72 - User: user_1069 - RequestID: wm1itlvn6cc +2025-06-18T14:12:51.981Z [INFO] payment-service - Operation: webhook_sent - Processing time: 75ms - RequestID: o0a5bjjqihn +2025-06-18T14:12:52.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1064 - IP: 192.168.97.87 - RequestID: yussu47sm9 +2025-06-18T14:12:52.181Z [TRACE] user-service - Operation: payment_processed - Processing time: 550ms - RequestID: zyvrmt6i1q +2025-06-18T14:12:52.281Z [TRACE] user-service - Auth event: logout - User: user_1053 - IP: 192.168.144.38 - RequestID: l9wm5o2jubl +2025-06-18T14:12:52.381Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 817ms - RequestID: jwr2syk6ha +2025-06-18T14:12:52.481Z [INFO] notification-service - Operation: order_created - Processing time: 261ms - RequestID: opwvhrv8bu +2025-06-18T14:12:52.581Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 317ms - Rows affected: 92 - RequestID: z4lbzawrg7f +2025-06-18T14:12:52.681Z [INFO] payment-service - PUT /api/v1/orders - Status: 404 - Response time: 1268ms - IP: 192.168.28.146 - User: user_1004 - RequestID: o3zuc6r4w3b +2025-06-18T14:12:52.781Z [TRACE] auth-service - Operation: cache_hit - Processing time: 641ms - RequestID: q42rdzsbfwr +2025-06-18T14:12:52.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 526ms - RequestID: blur7yydi7j +2025-06-18T14:12:52.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.28.146 - RequestID: gzg27lzywaw +2025-06-18T14:12:53.081Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 201 - Response time: 485ms - IP: 192.168.33.76 - User: user_1055 - RequestID: qftr74w1sh +2025-06-18T14:12:53.181Z [DEBUG] user-service - PUT /api/v1/orders - Status: 200 - Response time: 1974ms - IP: 192.168.44.5 - User: user_1095 - RequestID: b6hsubu4jip +2025-06-18T14:12:53.281Z [TRACE] notification-service - Auth event: login_success - User: user_1078 - IP: 192.168.11.60 - RequestID: l0nzdv41vk8 +2025-06-18T14:12:53.381Z [INFO] user-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.1.152 - RequestID: bxegcyvdsya +2025-06-18T14:12:53.481Z [DEBUG] order-service - Database UPDATE on users - Execution time: 454ms - Rows affected: 2 - RequestID: nrwskrndgz +2025-06-18T14:12:53.581Z [INFO] payment-service - PUT /api/v1/orders - Status: 500 - Response time: 1703ms - IP: 192.168.141.100 - User: user_1092 - RequestID: v5uhd28ooa8 +2025-06-18T14:12:53.681Z [INFO] payment-service - Operation: cache_hit - Processing time: 150ms - RequestID: 30usdz1k9fa +2025-06-18T14:12:53.781Z [DEBUG] payment-service - Operation: order_created - Processing time: 210ms - RequestID: g69v1193fho +2025-06-18T14:12:53.881Z [DEBUG] notification-service - Auth event: login_failed - User: user_1035 - IP: 192.168.97.87 - RequestID: junsmfpys1 +2025-06-18T14:12:53.981Z [DEBUG] payment-service - GET /api/v1/users - Status: 503 - Response time: 773ms - IP: 192.168.79.116 - User: user_1028 - RequestID: k77xh0zvrl +2025-06-18T14:12:54.081Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1736ms - IP: 192.168.247.134 - User: user_1056 - RequestID: su30kld8az +2025-06-18T14:12:54.181Z [TRACE] user-service - Auth event: password_change - User: user_1000 - IP: 192.168.33.76 - RequestID: 9gdhuw18b3j +2025-06-18T14:12:54.281Z [INFO] notification-service - Database SELECT on orders - Execution time: 110ms - Rows affected: 1 - RequestID: pzn2bexz7c +2025-06-18T14:12:54.381Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 106ms - Rows affected: 71 - RequestID: n1fnbolpdy +2025-06-18T14:12:54.481Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 400 - Response time: 1727ms - IP: 192.168.46.63 - User: user_1002 - RequestID: 5wh70uchyg6 +2025-06-18T14:12:54.581Z [DEBUG] order-service - Operation: cache_miss - Processing time: 619ms - RequestID: pp088ywg8y +2025-06-18T14:12:54.681Z [DEBUG] order-service - Operation: notification_queued - Processing time: 942ms - RequestID: qq98mdlm65 +2025-06-18T14:12:54.781Z [TRACE] user-service - Operation: email_sent - Processing time: 365ms - RequestID: r3kqplca49e +2025-06-18T14:12:54.881Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 593ms - IP: 192.168.187.199 - User: user_1065 - RequestID: oo9tm76b9jh +2025-06-18T14:12:54.981Z [TRACE] inventory-service - Operation: email_sent - Processing time: 990ms - RequestID: 0lastr9wpr1 +2025-06-18T14:12:55.081Z [TRACE] notification-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.141.100 - RequestID: i2a491bn91 +2025-06-18T14:12:55.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 559ms - RequestID: p4ld7l1txkp +2025-06-18T14:12:55.281Z [INFO] auth-service - Operation: order_created - Processing time: 424ms - RequestID: m4113ws828 +2025-06-18T14:12:55.381Z [TRACE] user-service - Auth event: password_change - User: user_1086 - IP: 192.168.11.60 - RequestID: vccb00dwk6i +2025-06-18T14:12:55.481Z [INFO] order-service - GET /api/v1/users - Status: 201 - Response time: 1250ms - IP: 192.168.227.233 - User: user_1090 - RequestID: ab3d7v0oaoc +2025-06-18T14:12:55.581Z [TRACE] user-service - Operation: cache_hit - Processing time: 954ms - RequestID: syx3b455gcq +2025-06-18T14:12:55.681Z [DEBUG] user-service - Operation: notification_queued - Processing time: 295ms - RequestID: oe9tim4fb9 +2025-06-18T14:12:55.781Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.30.79 - RequestID: 9y2liqet1b +2025-06-18T14:12:55.881Z [INFO] auth-service - Database UPDATE on orders - Execution time: 69ms - Rows affected: 81 - RequestID: 43krqvav4o +2025-06-18T14:12:55.981Z [TRACE] payment-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.53.133 - RequestID: g50afy3msyg +2025-06-18T14:12:56.081Z [INFO] payment-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.147.171 - RequestID: l71a4udv4nr +2025-06-18T14:12:56.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1063 - IP: 192.168.30.79 - RequestID: ur55978lur +2025-06-18T14:12:56.281Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 498ms - Rows affected: 81 - RequestID: woyxfmw7ufg +2025-06-18T14:12:56.381Z [INFO] user-service - Operation: order_created - Processing time: 974ms - RequestID: chaa87g0rxi +2025-06-18T14:12:56.481Z [TRACE] user-service - Operation: cache_miss - Processing time: 236ms - RequestID: 81pygc2e0qq +2025-06-18T14:12:56.581Z [DEBUG] user-service - PATCH /api/v1/users - Status: 403 - Response time: 429ms - IP: 192.168.85.229 - User: user_1086 - RequestID: bbdfm9rwtd9 +2025-06-18T14:12:56.681Z [INFO] inventory-service - Operation: email_sent - Processing time: 675ms - RequestID: 8vejeg576rk +2025-06-18T14:12:56.781Z [TRACE] payment-service - Database SELECT on users - Execution time: 321ms - Rows affected: 27 - RequestID: 0mx8etng811 +2025-06-18T14:12:56.881Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 500 - Response time: 1414ms - IP: 192.168.181.225 - User: user_1051 - RequestID: id9q1yf51yc +2025-06-18T14:12:56.981Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 914ms - RequestID: bwmsqqoyzwr +2025-06-18T14:12:57.081Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1195ms - IP: 192.168.174.114 - User: user_1073 - RequestID: l2tpvt9keej +2025-06-18T14:12:57.181Z [TRACE] auth-service - POST /api/v1/payments - Status: 502 - Response time: 1788ms - IP: 192.168.30.79 - User: user_1095 - RequestID: cw0de2s3myg +2025-06-18T14:12:57.281Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 200 - Response time: 1448ms - IP: 192.168.229.123 - User: user_1022 - RequestID: zywly32jncn +2025-06-18T14:12:57.381Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 425ms - Rows affected: 16 - RequestID: 0v31086lkw6h +2025-06-18T14:12:57.481Z [DEBUG] order-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.113.218 - RequestID: gnn1l6o8z7 +2025-06-18T14:12:57.581Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 321ms - Rows affected: 87 - RequestID: brq3aeyzabf +2025-06-18T14:12:57.681Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 404 - Response time: 427ms - IP: 192.168.79.143 - User: user_1034 - RequestID: okw8zgzf9op +2025-06-18T14:12:57.781Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 681ms - IP: 192.168.79.141 - User: user_1077 - RequestID: ki9p4170n0i +2025-06-18T14:12:57.881Z [DEBUG] auth-service - Operation: email_sent - Processing time: 76ms - RequestID: cphxsbyj7ug +2025-06-18T14:12:57.981Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 594ms - RequestID: 92iqqoghx4n +2025-06-18T14:12:58.081Z [TRACE] auth-service - Operation: order_created - Processing time: 578ms - RequestID: sc232xb5ey +2025-06-18T14:12:58.181Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 983ms - RequestID: wrx4t8fwo6c +2025-06-18T14:12:58.281Z [INFO] order-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.44.5 - RequestID: hnl97qjc4hw +2025-06-18T14:12:58.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 591ms - RequestID: t7ygmzmnu8 +2025-06-18T14:12:58.481Z [TRACE] user-service - Database DELETE on payments - Execution time: 81ms - Rows affected: 78 - RequestID: r79l357zu3m +2025-06-18T14:12:58.581Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 567ms - RequestID: l5kwftxzif +2025-06-18T14:12:58.681Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.187.199 - RequestID: 7v7fg0g2tu5 +2025-06-18T14:12:58.781Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1843ms - IP: 192.168.68.128 - User: user_1028 - RequestID: hhip6tvs6x +2025-06-18T14:12:58.881Z [INFO] user-service - Operation: inventory_updated - Processing time: 365ms - RequestID: 0rg1ji62s7e +2025-06-18T14:12:58.981Z [TRACE] payment-service - Auth event: login_success - User: user_1052 - IP: 192.168.11.60 - RequestID: 9vjd9ybc4im +2025-06-18T14:12:59.081Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 245ms - Rows affected: 53 - RequestID: am9mvzmwgzu +2025-06-18T14:12:59.181Z [INFO] notification-service - Database SELECT on products - Execution time: 493ms - Rows affected: 3 - RequestID: r8m1tsyt5jl +2025-06-18T14:12:59.281Z [INFO] auth-service - DELETE /api/v1/payments - Status: 400 - Response time: 600ms - IP: 192.168.229.123 - User: user_1027 - RequestID: 8728inc5oda +2025-06-18T14:12:59.381Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.97.87 - RequestID: 6hbi3ajvz9o +2025-06-18T14:12:59.481Z [TRACE] inventory-service - PUT /api/v1/users - Status: 500 - Response time: 1769ms - IP: 192.168.97.87 - User: user_1094 - RequestID: u3shdl24p0r +2025-06-18T14:12:59.581Z [INFO] inventory-service - Operation: cache_miss - Processing time: 957ms - RequestID: mwfo6bebr3 +2025-06-18T14:12:59.681Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 222ms - Rows affected: 7 - RequestID: vljf0tnicm +2025-06-18T14:12:59.781Z [INFO] auth-service - Auth event: logout - User: user_1087 - IP: 192.168.46.63 - RequestID: gpynysm0gjv +2025-06-18T14:12:59.881Z [DEBUG] notification-service - Database SELECT on products - Execution time: 397ms - Rows affected: 95 - RequestID: fa7827ob2s8 +2025-06-18T14:12:59.981Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 472ms - RequestID: adkx6xf0c98 +2025-06-18T14:13:00.081Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 467ms - Rows affected: 20 - RequestID: a94o43mcutn +2025-06-18T14:13:00.181Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1096 - IP: 192.168.133.7 - RequestID: wqc7ursr23 +2025-06-18T14:13:00.281Z [INFO] inventory-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.13.72 - RequestID: p3oneql9ti8 +2025-06-18T14:13:00.381Z [INFO] inventory-service - Operation: cache_miss - Processing time: 769ms - RequestID: 8rn0i2e4bg9 +2025-06-18T14:13:00.481Z [TRACE] user-service - Database INSERT on products - Execution time: 119ms - Rows affected: 81 - RequestID: xkl0b0f9f9p +2025-06-18T14:13:00.581Z [INFO] auth-service - Database SELECT on users - Execution time: 28ms - Rows affected: 11 - RequestID: ncpj2wobwmc +2025-06-18T14:13:00.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 994ms - RequestID: qg40o8z5s9l +2025-06-18T14:13:00.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.170.215 - RequestID: z78wokxsjr +2025-06-18T14:13:00.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.81.206 - RequestID: wz5dpbip4r +2025-06-18T14:13:00.981Z [TRACE] order-service - Database UPDATE on products - Execution time: 43ms - Rows affected: 76 - RequestID: 3fmweeoyry2 +2025-06-18T14:13:01.081Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1969ms - IP: 192.168.44.5 - User: user_1055 - RequestID: 9iz1xrs9zs +2025-06-18T14:13:01.181Z [TRACE] user-service - Auth event: login_success - User: user_1084 - IP: 192.168.46.63 - RequestID: hevfpbtqckp +2025-06-18T14:13:01.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1084 - IP: 192.168.13.72 - RequestID: kozv4ysxuli +2025-06-18T14:13:01.381Z [INFO] inventory-service - Database INSERT on users - Execution time: 10ms - Rows affected: 39 - RequestID: oi2g5vifdz9 +2025-06-18T14:13:01.481Z [TRACE] order-service - Operation: order_created - Processing time: 315ms - RequestID: t11kal1bwg +2025-06-18T14:13:01.581Z [INFO] auth-service - Auth event: password_change - User: user_1065 - IP: 192.168.158.144 - RequestID: msr33hrto1 +2025-06-18T14:13:01.681Z [INFO] payment-service - Database DELETE on products - Execution time: 338ms - Rows affected: 36 - RequestID: 3isps6tn57f +2025-06-18T14:13:01.781Z [INFO] order-service - Auth event: logout - User: user_1028 - IP: 192.168.240.169 - RequestID: b7az3eo7t5o +2025-06-18T14:13:01.881Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 664ms - RequestID: abok2btoq58 +2025-06-18T14:13:01.981Z [TRACE] notification-service - GET /api/v1/inventory - Status: 404 - Response time: 1245ms - IP: 192.168.187.199 - User: user_1020 - RequestID: n5i4h3z4s4m +2025-06-18T14:13:02.081Z [DEBUG] notification-service - GET /api/v1/users - Status: 201 - Response time: 1304ms - IP: 192.168.32.38 - User: user_1082 - RequestID: uigbp0joh2 +2025-06-18T14:13:02.181Z [TRACE] order-service - Operation: order_created - Processing time: 628ms - RequestID: sh1b8z8wei +2025-06-18T14:13:02.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 1043ms - RequestID: fxk3vccu2h6 +2025-06-18T14:13:02.381Z [TRACE] auth-service - Database INSERT on products - Execution time: 220ms - Rows affected: 8 - RequestID: 3xf72r82tck +2025-06-18T14:13:02.481Z [INFO] user-service - Database SELECT on sessions - Execution time: 441ms - Rows affected: 3 - RequestID: 4cvfecnry9a +2025-06-18T14:13:02.581Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 166ms - Rows affected: 82 - RequestID: 6rjhmtwlf5t +2025-06-18T14:13:02.681Z [INFO] user-service - Operation: webhook_sent - Processing time: 919ms - RequestID: zn5hjloz72 +2025-06-18T14:13:02.781Z [TRACE] notification-service - Operation: notification_queued - Processing time: 217ms - RequestID: ktc51fvvy5 +2025-06-18T14:13:02.881Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 404 - Response time: 1540ms - IP: 192.168.229.123 - User: user_1005 - RequestID: 2r7ugqnroky +2025-06-18T14:13:02.981Z [DEBUG] order-service - Auth event: login_success - User: user_1088 - IP: 192.168.100.240 - RequestID: oh4stzda3t +2025-06-18T14:13:03.081Z [INFO] payment-service - Operation: cache_hit - Processing time: 246ms - RequestID: nzekgc5oggo +2025-06-18T14:13:03.181Z [TRACE] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 619ms - IP: 192.168.46.63 - User: user_1046 - RequestID: eimubmsvoyu +2025-06-18T14:13:03.281Z [INFO] notification-service - PATCH /api/v1/orders - Status: 503 - Response time: 1565ms - IP: 192.168.196.226 - User: user_1084 - RequestID: 7xputg4dy74 +2025-06-18T14:13:03.381Z [INFO] notification-service - Operation: payment_processed - Processing time: 840ms - RequestID: 0sg8jf2k80hk +2025-06-18T14:13:03.481Z [INFO] order-service - Database INSERT on products - Execution time: 472ms - Rows affected: 51 - RequestID: bp8e3xg2z1u +2025-06-18T14:13:03.581Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 503 - Response time: 145ms - IP: 192.168.97.87 - User: user_1002 - RequestID: f1gfquc1ucs +2025-06-18T14:13:03.681Z [INFO] order-service - GET /api/v1/orders - Status: 400 - Response time: 1254ms - IP: 192.168.194.41 - User: user_1058 - RequestID: 6tfxyc9g07r +2025-06-18T14:13:03.781Z [DEBUG] payment-service - Database DELETE on users - Execution time: 379ms - Rows affected: 91 - RequestID: 8e34m9i12np +2025-06-18T14:13:03.881Z [TRACE] payment-service - Auth event: logout - User: user_1016 - IP: 192.168.1.152 - RequestID: atyuj166csc +2025-06-18T14:13:03.981Z [INFO] order-service - DELETE /api/v1/users - Status: 500 - Response time: 366ms - IP: 192.168.232.72 - User: user_1025 - RequestID: 0lls59gt684 +2025-06-18T14:13:04.081Z [INFO] notification-service - Database DELETE on users - Execution time: 202ms - Rows affected: 60 - RequestID: ir60re7cnpn +2025-06-18T14:13:04.181Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 502 - Response time: 1775ms - IP: 192.168.227.77 - User: user_1072 - RequestID: xrps5ohe8d +2025-06-18T14:13:04.281Z [INFO] notification-service - Auth event: logout - User: user_1090 - IP: 192.168.167.32 - RequestID: ww06i11voz +2025-06-18T14:13:04.381Z [DEBUG] order-service - Auth event: login_failed - User: user_1063 - IP: 192.168.68.158 - RequestID: v0y0mszcg9 +2025-06-18T14:13:04.481Z [INFO] notification-service - GET /api/v1/users - Status: 400 - Response time: 443ms - IP: 192.168.32.38 - User: user_1085 - RequestID: yfcvmjtppeh +2025-06-18T14:13:04.581Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 502 - Response time: 1055ms - IP: 192.168.113.218 - User: user_1015 - RequestID: 5kjugbwxgss +2025-06-18T14:13:04.681Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 502 - Response time: 154ms - IP: 192.168.138.123 - User: user_1079 - RequestID: xkczogn40e8 +2025-06-18T14:13:04.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 973ms - RequestID: gilrmp2n58i +2025-06-18T14:13:04.881Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 2000ms - IP: 192.168.68.128 - User: user_1030 - RequestID: 3420eotywzw +2025-06-18T14:13:04.981Z [INFO] user-service - Auth event: login_success - User: user_1027 - IP: 192.168.247.134 - RequestID: c96e54lgim4 +2025-06-18T14:13:05.081Z [INFO] order-service - Operation: inventory_updated - Processing time: 970ms - RequestID: fi13fyg80zk +2025-06-18T14:13:05.181Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 331ms - Rows affected: 79 - RequestID: 8ycwjxt2gws +2025-06-18T14:13:05.281Z [DEBUG] order-service - Database UPDATE on users - Execution time: 12ms - Rows affected: 7 - RequestID: nr3s8f2p4wq +2025-06-18T14:13:05.381Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 500 - Response time: 1702ms - IP: 192.168.44.5 - User: user_1068 - RequestID: xnj9kbedrk +2025-06-18T14:13:05.481Z [TRACE] user-service - Auth event: password_change - User: user_1027 - IP: 192.168.141.100 - RequestID: z5e0qkezv0q +2025-06-18T14:13:05.581Z [INFO] order-service - PATCH /api/v1/users - Status: 403 - Response time: 1441ms - IP: 192.168.141.100 - User: user_1064 - RequestID: q5oozfd81y +2025-06-18T14:13:05.681Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 503 - Response time: 40ms - IP: 192.168.79.143 - User: user_1077 - RequestID: hv1qv3s7h4s +2025-06-18T14:13:05.781Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 318ms - RequestID: movxgp8r6l +2025-06-18T14:13:05.881Z [TRACE] notification-service - POST /api/v1/orders - Status: 201 - Response time: 658ms - IP: 192.168.147.171 - User: user_1061 - RequestID: swh737d4v9p +2025-06-18T14:13:05.981Z [INFO] notification-service - Database DELETE on users - Execution time: 184ms - Rows affected: 58 - RequestID: tfdjczl0s2s +2025-06-18T14:13:06.081Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 997ms - RequestID: xhb7r1xaqh +2025-06-18T14:13:06.181Z [TRACE] payment-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.68.158 - RequestID: zsg81leeeq +2025-06-18T14:13:06.281Z [TRACE] order-service - Database INSERT on sessions - Execution time: 63ms - Rows affected: 95 - RequestID: q6a29tan70q +2025-06-18T14:13:06.381Z [TRACE] order-service - Operation: notification_queued - Processing time: 393ms - RequestID: kqetumlhd2i +2025-06-18T14:13:06.481Z [INFO] user-service - Operation: inventory_updated - Processing time: 422ms - RequestID: 5s9batdwqdc +2025-06-18T14:13:06.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1082 - IP: 192.168.33.76 - RequestID: lyr3hum3kpp +2025-06-18T14:13:06.681Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 692ms - RequestID: 9ew04egszqe +2025-06-18T14:13:06.781Z [INFO] auth-service - GET /api/v1/orders - Status: 401 - Response time: 723ms - IP: 192.168.235.117 - User: user_1080 - RequestID: 3pv1xwi9s1x +2025-06-18T14:13:06.881Z [TRACE] payment-service - PUT /api/v1/payments - Status: 401 - Response time: 1124ms - IP: 192.168.229.123 - User: user_1031 - RequestID: lyd7iujszfk +2025-06-18T14:13:06.981Z [TRACE] order-service - POST /api/v1/payments - Status: 401 - Response time: 822ms - IP: 192.168.36.218 - User: user_1000 - RequestID: fqc0bq9rj88 +2025-06-18T14:13:07.081Z [INFO] inventory-service - Operation: payment_processed - Processing time: 554ms - RequestID: 941b7q6b4wc +2025-06-18T14:13:07.181Z [DEBUG] payment-service - GET /api/v1/users - Status: 502 - Response time: 972ms - IP: 192.168.187.199 - User: user_1064 - RequestID: ypag4g3f4h +2025-06-18T14:13:07.281Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 286ms - Rows affected: 23 - RequestID: 1j3608yv9zw +2025-06-18T14:13:07.381Z [DEBUG] notification-service - Database DELETE on products - Execution time: 2ms - Rows affected: 72 - RequestID: 34knumu9e13 +2025-06-18T14:13:07.481Z [DEBUG] user-service - Auth event: login_success - User: user_1063 - IP: 192.168.158.144 - RequestID: pr8shgouclg +2025-06-18T14:13:07.581Z [TRACE] user-service - Operation: inventory_updated - Processing time: 676ms - RequestID: rcnbjeu59q +2025-06-18T14:13:07.681Z [INFO] inventory-service - Database INSERT on payments - Execution time: 81ms - Rows affected: 67 - RequestID: s8h4np9tllp +2025-06-18T14:13:07.781Z [TRACE] user-service - PATCH /api/v1/users - Status: 401 - Response time: 1324ms - IP: 192.168.31.117 - User: user_1047 - RequestID: zwdfxzn681d +2025-06-18T14:13:07.881Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 200 - Response time: 532ms - IP: 192.168.85.229 - User: user_1059 - RequestID: ljzfl7nocfb +2025-06-18T14:13:07.981Z [INFO] inventory-service - Database SELECT on products - Execution time: 385ms - Rows affected: 47 - RequestID: cl6967nxdn +2025-06-18T14:13:08.081Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1909ms - IP: 192.168.30.79 - User: user_1076 - RequestID: 6yesw27hg36 +2025-06-18T14:13:08.181Z [TRACE] notification-service - Auth event: password_change - User: user_1022 - IP: 192.168.79.116 - RequestID: n27q9c02pk +2025-06-18T14:13:08.281Z [DEBUG] user-service - Database DELETE on payments - Execution time: 239ms - Rows affected: 17 - RequestID: le9gaa54oy8 +2025-06-18T14:13:08.381Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 103ms - RequestID: mih6gznnymq +2025-06-18T14:13:08.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.32.38 - RequestID: 9vpxks19bb5 +2025-06-18T14:13:08.581Z [DEBUG] payment-service - GET /api/v1/orders - Status: 404 - Response time: 259ms - IP: 192.168.138.123 - User: user_1062 - RequestID: 9bpnstw662r +2025-06-18T14:13:08.681Z [TRACE] order-service - Database INSERT on users - Execution time: 432ms - Rows affected: 44 - RequestID: d5udtxcahu +2025-06-18T14:13:08.781Z [TRACE] order-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.181.225 - RequestID: lrypob8ukd +2025-06-18T14:13:08.881Z [INFO] auth-service - Auth event: login_success - User: user_1086 - IP: 192.168.28.146 - RequestID: 0muunb7794h +2025-06-18T14:13:08.981Z [TRACE] order-service - POST /api/v1/auth/login - Status: 500 - Response time: 679ms - IP: 192.168.138.123 - User: user_1065 - RequestID: civ1ishbcq +2025-06-18T14:13:09.081Z [TRACE] payment-service - Operation: notification_queued - Processing time: 189ms - RequestID: mmorox23ln +2025-06-18T14:13:09.181Z [TRACE] user-service - Operation: cache_miss - Processing time: 397ms - RequestID: piyuoq74vd +2025-06-18T14:13:09.281Z [INFO] inventory-service - Auth event: password_change - User: user_1095 - IP: 192.168.232.72 - RequestID: y5sjmgutija +2025-06-18T14:13:09.381Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 343ms - Rows affected: 49 - RequestID: lpm1sx23x3 +2025-06-18T14:13:09.481Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 665ms - RequestID: 5pl6eu4utpw +2025-06-18T14:13:09.581Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 66ms - Rows affected: 86 - RequestID: mfif1992fmk +2025-06-18T14:13:09.681Z [INFO] notification-service - Database INSERT on orders - Execution time: 328ms - Rows affected: 77 - RequestID: g34xnde0o1o +2025-06-18T14:13:09.781Z [TRACE] auth-service - PUT /api/v1/users - Status: 404 - Response time: 1508ms - IP: 192.168.64.33 - User: user_1084 - RequestID: 0itoh09j6jlv +2025-06-18T14:13:09.881Z [DEBUG] user-service - PUT /api/v1/orders - Status: 401 - Response time: 22ms - IP: 192.168.28.146 - User: user_1041 - RequestID: jkqu6608tko +2025-06-18T14:13:09.981Z [INFO] auth-service - Operation: order_created - Processing time: 1044ms - RequestID: hvw8g7xf2sv +2025-06-18T14:13:10.081Z [TRACE] auth-service - Operation: payment_processed - Processing time: 229ms - RequestID: i0mzf7dy2fm +2025-06-18T14:13:10.181Z [TRACE] inventory-service - Auth event: login_success - User: user_1069 - IP: 192.168.141.100 - RequestID: tndz0oovgi +2025-06-18T14:13:10.281Z [INFO] user-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1734ms - IP: 192.168.158.144 - User: user_1053 - RequestID: 1dtgoka7ute +2025-06-18T14:13:10.381Z [DEBUG] auth-service - Auth event: logout - User: user_1018 - IP: 192.168.170.215 - RequestID: 8h442vvfyb9 +2025-06-18T14:13:10.481Z [TRACE] order-service - Auth event: login_failed - User: user_1024 - IP: 192.168.194.41 - RequestID: yksfokseb7 +2025-06-18T14:13:10.581Z [INFO] auth-service - Database UPDATE on products - Execution time: 285ms - Rows affected: 66 - RequestID: ipkpbfrtqoj +2025-06-18T14:13:10.681Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 291ms - Rows affected: 5 - RequestID: 5p3i6tpduep +2025-06-18T14:13:10.781Z [INFO] order-service - Operation: email_sent - Processing time: 269ms - RequestID: stsr2bwi3jr +2025-06-18T14:13:10.881Z [TRACE] payment-service - Auth event: login_success - User: user_1033 - IP: 192.168.194.41 - RequestID: 7lguuj3gaww +2025-06-18T14:13:10.981Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1258ms - IP: 192.168.53.133 - User: user_1065 - RequestID: ti5s9qvakok +2025-06-18T14:13:11.081Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1518ms - IP: 192.168.28.146 - User: user_1049 - RequestID: mdli7zx8hnn +2025-06-18T14:13:11.181Z [TRACE] payment-service - Auth event: logout - User: user_1031 - IP: 192.168.79.141 - RequestID: at5wfxliitl +2025-06-18T14:13:11.281Z [INFO] payment-service - Operation: payment_processed - Processing time: 141ms - RequestID: uyombig90i +2025-06-18T14:13:11.381Z [INFO] notification-service - POST /api/v1/auth/login - Status: 502 - Response time: 1947ms - IP: 192.168.141.100 - User: user_1058 - RequestID: fzdu6ig9b8 +2025-06-18T14:13:11.481Z [INFO] payment-service - PUT /api/v1/orders - Status: 401 - Response time: 1024ms - IP: 192.168.229.123 - User: user_1032 - RequestID: fgsxb4nrof +2025-06-18T14:13:11.581Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 409ms - RequestID: k5gi694olrq +2025-06-18T14:13:11.681Z [INFO] order-service - Operation: email_sent - Processing time: 825ms - RequestID: bj1js6vcft +2025-06-18T14:13:11.781Z [INFO] auth-service - Operation: payment_processed - Processing time: 392ms - RequestID: 0th9x7mutis +2025-06-18T14:13:11.881Z [DEBUG] auth-service - Auth event: login_failed - User: user_1070 - IP: 192.168.104.37 - RequestID: qwazykno1ff +2025-06-18T14:13:11.981Z [INFO] inventory-service - GET /api/v1/inventory - Status: 200 - Response time: 729ms - IP: 192.168.174.114 - User: user_1062 - RequestID: wpdjoi1lbgc +2025-06-18T14:13:12.081Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.68.158 - RequestID: 8vunfbrnsbd +2025-06-18T14:13:12.181Z [TRACE] auth-service - Database INSERT on orders - Execution time: 499ms - Rows affected: 20 - RequestID: pg9ulq8jmw +2025-06-18T14:13:12.281Z [INFO] payment-service - Database INSERT on sessions - Execution time: 153ms - Rows affected: 42 - RequestID: 2cpb8n4qyx +2025-06-18T14:13:12.381Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 404 - Response time: 299ms - IP: 192.168.1.152 - User: user_1013 - RequestID: 9utc5jkcywa +2025-06-18T14:13:12.481Z [INFO] payment-service - PUT /api/v1/orders - Status: 200 - Response time: 520ms - IP: 192.168.170.215 - User: user_1088 - RequestID: mr0wq64a92r +2025-06-18T14:13:12.581Z [INFO] inventory-service - Database SELECT on products - Execution time: 114ms - Rows affected: 4 - RequestID: 3rb2kw153q2 +2025-06-18T14:13:12.681Z [DEBUG] auth-service - Auth event: password_change - User: user_1073 - IP: 192.168.30.79 - RequestID: 2w3ko56acti +2025-06-18T14:13:12.781Z [INFO] order-service - Operation: email_sent - Processing time: 340ms - RequestID: skklavzox7 +2025-06-18T14:13:12.881Z [INFO] notification-service - Auth event: login_success - User: user_1033 - IP: 192.168.28.146 - RequestID: zwartt8zyi +2025-06-18T14:13:12.981Z [INFO] payment-service - Database UPDATE on products - Execution time: 288ms - Rows affected: 4 - RequestID: izekq7vcxgn +2025-06-18T14:13:13.081Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 76ms - Rows affected: 42 - RequestID: flclndu1my +2025-06-18T14:13:13.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.211.72 - RequestID: flmrzeb1g9 +2025-06-18T14:13:13.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1066 - IP: 192.168.141.100 - RequestID: 9tdp7w7es4c +2025-06-18T14:13:13.381Z [TRACE] inventory-service - POST /api/v1/users - Status: 200 - Response time: 532ms - IP: 192.168.187.199 - User: user_1072 - RequestID: z4ba8o1o969 +2025-06-18T14:13:13.481Z [INFO] order-service - Auth event: logout - User: user_1000 - IP: 192.168.32.38 - RequestID: 9ushz7ie22r +2025-06-18T14:13:13.581Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 469ms - Rows affected: 43 - RequestID: bso6hgszi7i +2025-06-18T14:13:13.681Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 403 - Response time: 750ms - IP: 192.168.97.87 - User: user_1091 - RequestID: 5n0ixb88ruv +2025-06-18T14:13:13.781Z [INFO] user-service - Database DELETE on products - Execution time: 230ms - Rows affected: 42 - RequestID: n96vh3sjal +2025-06-18T14:13:13.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 149ms - RequestID: 2xik6lxgvka +2025-06-18T14:13:13.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 348ms - RequestID: 9hcik9kw587 +2025-06-18T14:13:14.081Z [INFO] inventory-service - PATCH /api/v1/users - Status: 401 - Response time: 270ms - IP: 192.168.247.134 - User: user_1020 - RequestID: ujr0zicfy4 +2025-06-18T14:13:14.181Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 143ms - Rows affected: 0 - RequestID: 8itps09tu99 +2025-06-18T14:13:14.281Z [TRACE] order-service - Operation: inventory_updated - Processing time: 432ms - RequestID: pq5govej0zf +2025-06-18T14:13:14.381Z [TRACE] payment-service - Auth event: login_failed - User: user_1082 - IP: 192.168.68.128 - RequestID: xd4js7f172 +2025-06-18T14:13:14.481Z [INFO] notification-service - POST /api/v1/auth/login - Status: 401 - Response time: 1274ms - IP: 192.168.85.229 - User: user_1075 - RequestID: y9hfno9vyos +2025-06-18T14:13:14.581Z [INFO] order-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.187.199 - RequestID: 3r5ga6z8h3i +2025-06-18T14:13:14.681Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 387ms - Rows affected: 78 - RequestID: 0qgr8ehx00q +2025-06-18T14:13:14.781Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 715ms - RequestID: hi3hp4h4kve +2025-06-18T14:13:14.881Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 706ms - RequestID: 8obqku4i3kb +2025-06-18T14:13:14.981Z [DEBUG] auth-service - Database DELETE on products - Execution time: 192ms - Rows affected: 73 - RequestID: 6dyiaaqdqys +2025-06-18T14:13:15.081Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 289ms - RequestID: kwg5nl1wu4f +2025-06-18T14:13:15.181Z [INFO] auth-service - Database INSERT on users - Execution time: 303ms - Rows affected: 91 - RequestID: 4yk8nhbevr +2025-06-18T14:13:15.281Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 11ms - Rows affected: 36 - RequestID: m7kkyd075a +2025-06-18T14:13:15.381Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1654ms - IP: 192.168.33.76 - User: user_1082 - RequestID: dl8y88e6i1o +2025-06-18T14:13:15.481Z [INFO] inventory-service - Database UPDATE on users - Execution time: 110ms - Rows affected: 73 - RequestID: k13zy1980s +2025-06-18T14:13:15.581Z [INFO] payment-service - Operation: webhook_sent - Processing time: 570ms - RequestID: z8rcr6u5rf +2025-06-18T14:13:15.681Z [INFO] auth-service - DELETE /api/v1/orders - Status: 201 - Response time: 699ms - IP: 192.168.79.116 - User: user_1034 - RequestID: rmhyglzjyms +2025-06-18T14:13:15.781Z [DEBUG] notification-service - Auth event: login_success - User: user_1008 - IP: 192.168.194.41 - RequestID: suprm7rwvv +2025-06-18T14:13:15.881Z [TRACE] user-service - Auth event: password_change - User: user_1074 - IP: 192.168.28.146 - RequestID: fkj39mskl4s +2025-06-18T14:13:15.981Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 401 - Response time: 17ms - IP: 192.168.100.240 - User: user_1054 - RequestID: iab0w2240e +2025-06-18T14:13:16.081Z [INFO] auth-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.113.218 - RequestID: oz8tyqfaech +2025-06-18T14:13:16.181Z [TRACE] order-service - DELETE /api/v1/users - Status: 401 - Response time: 1174ms - IP: 192.168.68.158 - User: user_1090 - RequestID: 9gene04ec6w +2025-06-18T14:13:16.281Z [TRACE] notification-service - PUT /api/v1/payments - Status: 404 - Response time: 434ms - IP: 192.168.11.60 - User: user_1040 - RequestID: cku90hq6piw +2025-06-18T14:13:16.381Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 201 - Response time: 848ms - IP: 192.168.227.233 - User: user_1072 - RequestID: h1pofx02irh +2025-06-18T14:13:16.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 389ms - RequestID: q144zaqut1 +2025-06-18T14:13:16.581Z [DEBUG] payment-service - Auth event: login_success - User: user_1035 - IP: 192.168.113.218 - RequestID: 0ls2e1ru5rl +2025-06-18T14:13:16.681Z [INFO] user-service - Operation: notification_queued - Processing time: 270ms - RequestID: ycnkyo6asca +2025-06-18T14:13:16.781Z [INFO] order-service - Operation: cache_hit - Processing time: 670ms - RequestID: bsla89u8rin +2025-06-18T14:13:16.881Z [DEBUG] notification-service - GET /api/v1/orders - Status: 401 - Response time: 1751ms - IP: 192.168.28.146 - User: user_1028 - RequestID: 78snj3aczow +2025-06-18T14:13:16.981Z [TRACE] user-service - PUT /api/v1/users - Status: 404 - Response time: 1295ms - IP: 192.168.144.38 - User: user_1097 - RequestID: 4jnkydbazt +2025-06-18T14:13:17.081Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 277ms - RequestID: 4bsntlfm3d6 +2025-06-18T14:13:17.181Z [INFO] user-service - Auth event: password_change - User: user_1077 - IP: 192.168.144.38 - RequestID: 6fm91kkwkwv +2025-06-18T14:13:17.281Z [TRACE] notification-service - DELETE /api/v1/users - Status: 201 - Response time: 1428ms - IP: 192.168.44.5 - User: user_1013 - RequestID: viqvgefy8ht +2025-06-18T14:13:17.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1063 - IP: 192.168.85.229 - RequestID: 3hibyu99hh8 +2025-06-18T14:13:17.481Z [TRACE] inventory-service - Database SELECT on users - Execution time: 495ms - Rows affected: 47 - RequestID: e95nwd7udwr +2025-06-18T14:13:17.581Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 239ms - RequestID: t5jcx04aqa +2025-06-18T14:13:17.681Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 597ms - IP: 192.168.1.152 - User: user_1005 - RequestID: rrz24nducul +2025-06-18T14:13:17.781Z [INFO] notification-service - Auth event: login_failed - User: user_1030 - IP: 192.168.79.116 - RequestID: vv3lldqy9qc +2025-06-18T14:13:17.881Z [DEBUG] user-service - Operation: cache_hit - Processing time: 614ms - RequestID: 4q8cbwb5peu +2025-06-18T14:13:17.981Z [INFO] auth-service - Database UPDATE on products - Execution time: 7ms - Rows affected: 96 - RequestID: j6moevyl85 +2025-06-18T14:13:18.081Z [TRACE] user-service - Database DELETE on payments - Execution time: 407ms - Rows affected: 68 - RequestID: i3qiqzu4bjj +2025-06-18T14:13:18.181Z [DEBUG] auth-service - Auth event: password_change - User: user_1015 - IP: 192.168.79.116 - RequestID: 38wzm030yek +2025-06-18T14:13:18.281Z [INFO] order-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.211.72 - RequestID: 4bg2q81yhck +2025-06-18T14:13:18.381Z [INFO] order-service - Operation: order_created - Processing time: 155ms - RequestID: 77k9ks0pjur +2025-06-18T14:13:18.481Z [DEBUG] user-service - Database UPDATE on users - Execution time: 435ms - Rows affected: 57 - RequestID: 97cshxg5ugm +2025-06-18T14:13:18.581Z [INFO] user-service - Operation: cache_miss - Processing time: 875ms - RequestID: pik9lze7hsj +2025-06-18T14:13:18.681Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 105ms - Rows affected: 41 - RequestID: 9j1ktacw46e +2025-06-18T14:13:18.781Z [INFO] order-service - Operation: inventory_updated - Processing time: 873ms - RequestID: r0wot2kplvr +2025-06-18T14:13:18.881Z [INFO] order-service - Auth event: logout - User: user_1043 - IP: 192.168.28.146 - RequestID: p33oj1qf1pc +2025-06-18T14:13:18.981Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 247ms - Rows affected: 51 - RequestID: 588c6692vl +2025-06-18T14:13:19.081Z [TRACE] user-service - POST /api/v1/inventory - Status: 403 - Response time: 1419ms - IP: 192.168.194.41 - User: user_1099 - RequestID: 8ku05yliblh +2025-06-18T14:13:19.181Z [INFO] payment-service - Database INSERT on users - Execution time: 141ms - Rows affected: 51 - RequestID: 57phusoaj7r +2025-06-18T14:13:19.281Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 200 - Response time: 691ms - IP: 192.168.79.116 - User: user_1032 - RequestID: sw9jqusa0wh +2025-06-18T14:13:19.381Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 350ms - Rows affected: 63 - RequestID: z0pxef828q +2025-06-18T14:13:19.481Z [DEBUG] auth-service - Auth event: login_failed - User: user_1077 - IP: 192.168.138.123 - RequestID: 8n3t9g9j3s6 +2025-06-18T14:13:19.581Z [INFO] notification-service - PUT /api/v1/users - Status: 200 - Response time: 1794ms - IP: 192.168.227.233 - User: user_1035 - RequestID: ffugsw62965 +2025-06-18T14:13:19.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 243ms - RequestID: tp0jro28l8b +2025-06-18T14:13:19.781Z [DEBUG] payment-service - Auth event: logout - User: user_1065 - IP: 192.168.181.225 - RequestID: owd9dkxu3v8 +2025-06-18T14:13:19.881Z [TRACE] notification-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.13.72 - RequestID: koa8piy2kq +2025-06-18T14:13:19.981Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 219ms - Rows affected: 22 - RequestID: wjv9zduw8cs +2025-06-18T14:13:20.081Z [TRACE] inventory-service - Operation: order_created - Processing time: 1019ms - RequestID: 0qtgow2rhme +2025-06-18T14:13:20.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 502ms - RequestID: hgxugu0lyk5 +2025-06-18T14:13:20.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.196.226 - RequestID: aq26ztb1pep +2025-06-18T14:13:20.381Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 403 - Response time: 1014ms - IP: 192.168.30.79 - User: user_1060 - RequestID: 6ggi2vzgew +2025-06-18T14:13:20.481Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 149ms - Rows affected: 3 - RequestID: rotpkb8n5w +2025-06-18T14:13:20.581Z [INFO] auth-service - Database INSERT on sessions - Execution time: 80ms - Rows affected: 82 - RequestID: 87i3cyvlqb8 +2025-06-18T14:13:20.681Z [INFO] payment-service - Operation: cache_miss - Processing time: 756ms - RequestID: 9kwt78z79qt +2025-06-18T14:13:20.781Z [INFO] notification-service - GET /api/v1/inventory - Status: 502 - Response time: 1610ms - IP: 192.168.68.158 - User: user_1029 - RequestID: lo9pfmpgapd +2025-06-18T14:13:20.881Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 829ms - IP: 192.168.247.134 - User: user_1085 - RequestID: l3vb6jkvg8q +2025-06-18T14:13:20.981Z [DEBUG] order-service - Auth event: logout - User: user_1095 - IP: 192.168.30.79 - RequestID: bc6c68osixm +2025-06-18T14:13:21.081Z [DEBUG] auth-service - Operation: order_created - Processing time: 124ms - RequestID: xuvfyngt59 +2025-06-18T14:13:21.181Z [TRACE] order-service - Database INSERT on payments - Execution time: 193ms - Rows affected: 49 - RequestID: 7m2c0ql3cp3 +2025-06-18T14:13:21.281Z [INFO] order-service - Auth event: login_success - User: user_1034 - IP: 192.168.79.143 - RequestID: m58mshw0wh +2025-06-18T14:13:21.381Z [TRACE] inventory-service - POST /api/v1/payments - Status: 400 - Response time: 1848ms - IP: 192.168.13.72 - User: user_1064 - RequestID: 9wvzbey3yl5 +2025-06-18T14:13:21.481Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 959ms - RequestID: apd62pw6j7p +2025-06-18T14:13:21.581Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 833ms - RequestID: 9zvsrzwqrbr +2025-06-18T14:13:21.681Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 494ms - IP: 192.168.11.60 - User: user_1034 - RequestID: o2klecxisr +2025-06-18T14:13:21.781Z [TRACE] notification-service - Operation: payment_processed - Processing time: 309ms - RequestID: 8igpfugvfsv +2025-06-18T14:13:21.881Z [TRACE] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 1410ms - IP: 192.168.144.38 - User: user_1081 - RequestID: p0f4gprat7r +2025-06-18T14:13:21.981Z [INFO] order-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1453ms - IP: 192.168.227.233 - User: user_1058 - RequestID: prti12zohz +2025-06-18T14:13:22.081Z [TRACE] user-service - Auth event: password_change - User: user_1062 - IP: 192.168.147.171 - RequestID: 0qiwimjgo6ep +2025-06-18T14:13:22.181Z [INFO] user-service - Operation: cache_miss - Processing time: 639ms - RequestID: fhm73ylzhnh +2025-06-18T14:13:22.281Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 350ms - Rows affected: 70 - RequestID: mww3o659q2s +2025-06-18T14:13:22.381Z [TRACE] auth-service - Operation: payment_processed - Processing time: 148ms - RequestID: stumv56kzs +2025-06-18T14:13:22.481Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 201 - Response time: 1796ms - IP: 192.168.104.37 - User: user_1073 - RequestID: 27h9fiswr2x +2025-06-18T14:13:22.581Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1703ms - IP: 192.168.174.114 - User: user_1086 - RequestID: s52cngbycin +2025-06-18T14:13:22.681Z [DEBUG] auth-service - Operation: order_created - Processing time: 857ms - RequestID: dur2spl727g +2025-06-18T14:13:22.781Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 495ms - Rows affected: 63 - RequestID: m2vuf1zfrus +2025-06-18T14:13:22.881Z [INFO] payment-service - Operation: payment_processed - Processing time: 546ms - RequestID: z5022due5ib +2025-06-18T14:13:22.981Z [TRACE] user-service - GET /api/v1/inventory - Status: 500 - Response time: 1112ms - IP: 192.168.232.72 - User: user_1078 - RequestID: kiy71ks7xco +2025-06-18T14:13:23.081Z [INFO] order-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.174.114 - RequestID: zw05em6t09b +2025-06-18T14:13:23.181Z [INFO] order-service - Database SELECT on sessions - Execution time: 5ms - Rows affected: 69 - RequestID: vx88ch1a8e +2025-06-18T14:13:23.281Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 457ms - Rows affected: 49 - RequestID: tsi5t29unq8 +2025-06-18T14:13:23.381Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 58ms - Rows affected: 94 - RequestID: mojm9nwj2p +2025-06-18T14:13:23.481Z [INFO] auth-service - PUT /api/v1/payments - Status: 500 - Response time: 1552ms - IP: 192.168.138.123 - User: user_1096 - RequestID: 7zsivqkug2 +2025-06-18T14:13:23.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 532ms - RequestID: bta1lz6treb +2025-06-18T14:13:23.681Z [TRACE] user-service - Operation: webhook_sent - Processing time: 350ms - RequestID: f3k6uv7ugds +2025-06-18T14:13:23.781Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 404 - Response time: 2004ms - IP: 192.168.138.123 - User: user_1046 - RequestID: b9o5plym8au +2025-06-18T14:13:23.881Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 502 - Response time: 1179ms - IP: 192.168.113.218 - User: user_1011 - RequestID: g6z63l9pm3l +2025-06-18T14:13:23.981Z [TRACE] user-service - Operation: inventory_updated - Processing time: 378ms - RequestID: nm2u92eeu5 +2025-06-18T14:13:24.081Z [INFO] inventory-service - GET /api/v1/inventory - Status: 500 - Response time: 1470ms - IP: 192.168.10.184 - User: user_1032 - RequestID: 6mlqqbpkywg +2025-06-18T14:13:24.181Z [TRACE] payment-service - Database INSERT on payments - Execution time: 493ms - Rows affected: 37 - RequestID: 6jzjop1ydl +2025-06-18T14:13:24.281Z [DEBUG] notification-service - Auth event: login_failed - User: user_1039 - IP: 192.168.133.7 - RequestID: i9zccbpkann +2025-06-18T14:13:24.381Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 57ms - RequestID: w39fqogbyl +2025-06-18T14:13:24.481Z [DEBUG] payment-service - Operation: order_created - Processing time: 736ms - RequestID: qxeavwb356 +2025-06-18T14:13:24.581Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 219ms - Rows affected: 49 - RequestID: mwdfv2tkj59 +2025-06-18T14:13:24.681Z [TRACE] payment-service - Operation: cache_miss - Processing time: 817ms - RequestID: piixofxr2s +2025-06-18T14:13:24.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 808ms - RequestID: qkbxgy64ts +2025-06-18T14:13:24.881Z [TRACE] order-service - PATCH /api/v1/users - Status: 200 - Response time: 1905ms - IP: 192.168.133.7 - User: user_1052 - RequestID: xr6ysgl87x +2025-06-18T14:13:24.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.189.103 - RequestID: 9k0rt7n4qrd +2025-06-18T14:13:25.081Z [TRACE] user-service - Database UPDATE on payments - Execution time: 179ms - Rows affected: 64 - RequestID: hg14zmlmj8i +2025-06-18T14:13:25.181Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 691ms - IP: 192.168.194.41 - User: user_1056 - RequestID: 7747jsszomo +2025-06-18T14:13:25.281Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 500 - Response time: 1951ms - IP: 192.168.10.184 - User: user_1038 - RequestID: behbegsw024 +2025-06-18T14:13:25.381Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 849ms - RequestID: fh2wkf4vou6 +2025-06-18T14:13:25.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.53.133 - RequestID: 3fcp7o0uen8 +2025-06-18T14:13:25.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 918ms - RequestID: gi3i506kene +2025-06-18T14:13:25.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.242.165 - RequestID: e7b9swbyhn +2025-06-18T14:13:25.781Z [TRACE] auth-service - Operation: payment_processed - Processing time: 55ms - RequestID: 5xbalaa7t4k +2025-06-18T14:13:25.881Z [DEBUG] user-service - Database SELECT on users - Execution time: 414ms - Rows affected: 4 - RequestID: bgjlwy0hqqp +2025-06-18T14:13:25.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.189.103 - RequestID: wldjmvrcdfb +2025-06-18T14:13:26.081Z [DEBUG] order-service - Auth event: password_change - User: user_1073 - IP: 192.168.232.72 - RequestID: tzwncunszus +2025-06-18T14:13:26.181Z [INFO] user-service - POST /api/v1/orders - Status: 401 - Response time: 42ms - IP: 192.168.13.72 - User: user_1065 - RequestID: rjvs7rm9yk +2025-06-18T14:13:26.281Z [INFO] order-service - Database DELETE on products - Execution time: 131ms - Rows affected: 39 - RequestID: 9xy9zrvb3ew +2025-06-18T14:13:26.381Z [INFO] order-service - Operation: cache_hit - Processing time: 484ms - RequestID: 2owu8b08xf7 +2025-06-18T14:13:26.481Z [DEBUG] user-service - Auth event: logout - User: user_1079 - IP: 192.168.28.146 - RequestID: shzpag8gs8h +2025-06-18T14:13:26.581Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 175ms - Rows affected: 33 - RequestID: ocg460pkeb +2025-06-18T14:13:26.681Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 500 - Response time: 1775ms - IP: 192.168.133.7 - User: user_1012 - RequestID: cdb49pgi70h +2025-06-18T14:13:26.781Z [DEBUG] user-service - PUT /api/v1/users - Status: 200 - Response time: 862ms - IP: 192.168.79.116 - User: user_1090 - RequestID: 32pivz66ci5 +2025-06-18T14:13:26.881Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 28ms - Rows affected: 26 - RequestID: q3xsapmgris +2025-06-18T14:13:26.981Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 69ms - Rows affected: 9 - RequestID: 18jgetm1ony +2025-06-18T14:13:27.081Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 500 - Response time: 968ms - IP: 192.168.10.184 - User: user_1020 - RequestID: 6c6zrr37ris +2025-06-18T14:13:27.181Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 51ms - Rows affected: 21 - RequestID: 3ctdyf0eena +2025-06-18T14:13:27.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 792ms - RequestID: 9e95plend1 +2025-06-18T14:13:27.381Z [TRACE] user-service - DELETE /api/v1/users - Status: 200 - Response time: 1250ms - IP: 192.168.79.141 - User: user_1008 - RequestID: 0hltu9t4oxiu +2025-06-18T14:13:27.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1019 - IP: 192.168.232.72 - RequestID: zchl6vlriu +2025-06-18T14:13:27.581Z [TRACE] payment-service - Database DELETE on products - Execution time: 300ms - Rows affected: 52 - RequestID: 6k8ppffi11y +2025-06-18T14:13:27.681Z [INFO] inventory-service - Auth event: password_change - User: user_1069 - IP: 192.168.28.146 - RequestID: voyb7lpsnf +2025-06-18T14:13:27.781Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 486ms - Rows affected: 20 - RequestID: ze8nkq3p9u +2025-06-18T14:13:27.881Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 133ms - Rows affected: 1 - RequestID: frlzftzuxx4 +2025-06-18T14:13:27.981Z [TRACE] user-service - Database INSERT on users - Execution time: 454ms - Rows affected: 78 - RequestID: tkp8khcnxc8 +2025-06-18T14:13:28.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.46.63 - RequestID: mn7x4qu3f7l +2025-06-18T14:13:28.181Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1029ms - IP: 192.168.138.123 - User: user_1098 - RequestID: 68rarafedg8 +2025-06-18T14:13:28.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.13.72 - RequestID: splokbul1zq +2025-06-18T14:13:28.381Z [DEBUG] order-service - Auth event: logout - User: user_1088 - IP: 192.168.227.233 - RequestID: xgtmbmsp1xk +2025-06-18T14:13:28.481Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 200 - Response time: 1091ms - IP: 192.168.31.117 - User: user_1086 - RequestID: ojde9w8kh3 +2025-06-18T14:13:28.581Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 363ms - RequestID: l9x56hz31dk +2025-06-18T14:13:28.681Z [TRACE] notification-service - Auth event: login_success - User: user_1025 - IP: 192.168.85.229 - RequestID: n6at24ceay +2025-06-18T14:13:28.781Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 102ms - Rows affected: 99 - RequestID: tj037dl1ydp +2025-06-18T14:13:28.881Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 500 - Response time: 384ms - IP: 192.168.36.218 - User: user_1043 - RequestID: wzo2jgls6es +2025-06-18T14:13:28.981Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 211ms - Rows affected: 75 - RequestID: 5qwf8aa3ipv +2025-06-18T14:13:29.081Z [DEBUG] user-service - Operation: order_created - Processing time: 210ms - RequestID: xm984mfa2jf +2025-06-18T14:13:29.181Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 884ms - RequestID: 55ej8ybfrvx +2025-06-18T14:13:29.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 538ms - RequestID: pa406w0kxve +2025-06-18T14:13:29.381Z [INFO] user-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.187.199 - RequestID: cqfxj89fnk6 +2025-06-18T14:13:29.481Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 325ms - Rows affected: 82 - RequestID: v3wkrqm08b +2025-06-18T14:13:29.581Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 503 - Response time: 761ms - IP: 192.168.247.134 - User: user_1018 - RequestID: 4z0szcr8wic +2025-06-18T14:13:29.681Z [DEBUG] user-service - Operation: order_created - Processing time: 207ms - RequestID: eixdtmzn7md +2025-06-18T14:13:29.781Z [INFO] user-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.170.215 - RequestID: nn1fcu3jkl +2025-06-18T14:13:29.881Z [INFO] payment-service - Operation: order_created - Processing time: 441ms - RequestID: u0s5qkjiyba +2025-06-18T14:13:29.981Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1788ms - IP: 192.168.133.7 - User: user_1098 - RequestID: 94o5op5do58 +2025-06-18T14:13:30.081Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 445ms - Rows affected: 31 - RequestID: lbcsgkpd15s +2025-06-18T14:13:30.181Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 500 - Response time: 1036ms - IP: 192.168.194.41 - User: user_1014 - RequestID: f7m0lu5dbtf +2025-06-18T14:13:30.281Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 94ms - Rows affected: 80 - RequestID: 7q3baaafcsk +2025-06-18T14:13:30.381Z [INFO] user-service - GET /api/v1/users - Status: 400 - Response time: 1340ms - IP: 192.168.31.117 - User: user_1071 - RequestID: 7jikip1kqf +2025-06-18T14:13:30.481Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 404 - Response time: 420ms - IP: 192.168.81.206 - User: user_1051 - RequestID: wn0istskwj +2025-06-18T14:13:30.581Z [INFO] auth-service - Operation: order_created - Processing time: 774ms - RequestID: wms4c8ni4sl +2025-06-18T14:13:30.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.227.233 - RequestID: w0ifwd6u11i +2025-06-18T14:13:30.781Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 549ms - RequestID: 8oekyfv8px9 +2025-06-18T14:13:30.881Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 677ms - IP: 192.168.181.225 - User: user_1079 - RequestID: 45m7jmxc3l +2025-06-18T14:13:30.981Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 115ms - RequestID: gjltuaneeaq +2025-06-18T14:13:31.081Z [TRACE] notification-service - DELETE /api/v1/users - Status: 500 - Response time: 965ms - IP: 192.168.79.141 - User: user_1022 - RequestID: un50g74kl9a +2025-06-18T14:13:31.181Z [INFO] auth-service - Operation: payment_processed - Processing time: 750ms - RequestID: cf3f13laglq +2025-06-18T14:13:31.281Z [TRACE] auth-service - Auth event: password_change - User: user_1018 - IP: 192.168.167.32 - RequestID: 23ycczktnw1 +2025-06-18T14:13:31.381Z [TRACE] notification-service - Auth event: login_success - User: user_1019 - IP: 192.168.227.233 - RequestID: y7x5ic8bpk8 +2025-06-18T14:13:31.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.181.225 - RequestID: qa8ds905g4 +2025-06-18T14:13:31.581Z [INFO] order-service - Operation: cache_miss - Processing time: 185ms - RequestID: b1jc9f6gps +2025-06-18T14:13:31.681Z [DEBUG] user-service - Operation: email_sent - Processing time: 982ms - RequestID: yfxcs5l22o +2025-06-18T14:13:31.781Z [INFO] notification-service - Operation: cache_hit - Processing time: 1007ms - RequestID: zzxnjwr2il +2025-06-18T14:13:31.881Z [DEBUG] auth-service - Database SELECT on products - Execution time: 466ms - Rows affected: 1 - RequestID: 1fxdf0jpfw7 +2025-06-18T14:13:31.981Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 379ms - Rows affected: 12 - RequestID: eqhrigajm58 +2025-06-18T14:13:32.081Z [TRACE] order-service - PUT /api/v1/orders - Status: 502 - Response time: 401ms - IP: 192.168.11.60 - User: user_1041 - RequestID: 6hmz6hugsj4 +2025-06-18T14:13:32.181Z [INFO] auth-service - Database INSERT on products - Execution time: 368ms - Rows affected: 15 - RequestID: 6kl51e91837 +2025-06-18T14:13:32.281Z [INFO] order-service - PUT /api/v1/payments - Status: 201 - Response time: 97ms - IP: 192.168.242.165 - User: user_1008 - RequestID: ty5r8l38flr +2025-06-18T14:13:32.381Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1158ms - IP: 192.168.167.32 - User: user_1009 - RequestID: mv8wce77nx +2025-06-18T14:13:32.481Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 77ms - RequestID: 9undrfxxf7p +2025-06-18T14:13:32.581Z [DEBUG] auth-service - Operation: order_created - Processing time: 534ms - RequestID: vy503l7u5b +2025-06-18T14:13:32.681Z [INFO] auth-service - Database SELECT on payments - Execution time: 458ms - Rows affected: 31 - RequestID: mp799nt17pm +2025-06-18T14:13:32.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.28.146 - RequestID: oj62oj4ut4n +2025-06-18T14:13:32.881Z [DEBUG] user-service - Operation: order_created - Processing time: 524ms - RequestID: vkxpolewxkl +2025-06-18T14:13:32.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 557ms - RequestID: w5rfceihy1 +2025-06-18T14:13:33.081Z [INFO] inventory-service - Database INSERT on orders - Execution time: 203ms - Rows affected: 79 - RequestID: c95bms80pxa +2025-06-18T14:13:33.181Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 258ms - Rows affected: 3 - RequestID: d9z946tbazg +2025-06-18T14:13:33.281Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 203ms - RequestID: w1sr2kgputn +2025-06-18T14:13:33.381Z [TRACE] notification-service - Auth event: login_success - User: user_1019 - IP: 192.168.158.144 - RequestID: perxa5a5cec +2025-06-18T14:13:33.481Z [DEBUG] order-service - Auth event: password_change - User: user_1015 - IP: 192.168.46.63 - RequestID: wtrunqkj1ee +2025-06-18T14:13:33.581Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 401 - Response time: 71ms - IP: 192.168.187.199 - User: user_1030 - RequestID: dpwt6l2918d +2025-06-18T14:13:33.681Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 250ms - Rows affected: 47 - RequestID: z7vdlaqw9xb +2025-06-18T14:13:33.781Z [INFO] payment-service - Operation: email_sent - Processing time: 71ms - RequestID: yl8c4dctwod +2025-06-18T14:13:33.881Z [TRACE] order-service - Database DELETE on products - Execution time: 224ms - Rows affected: 10 - RequestID: dnr1u8llic6 +2025-06-18T14:13:33.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.144.38 - RequestID: msrajezxvj +2025-06-18T14:13:34.081Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 405ms - RequestID: vh54ig8ppzr +2025-06-18T14:13:34.181Z [DEBUG] user-service - Auth event: login_success - User: user_1070 - IP: 192.168.133.7 - RequestID: h5rsr7668n +2025-06-18T14:13:34.281Z [INFO] auth-service - PUT /api/v1/orders - Status: 401 - Response time: 200ms - IP: 192.168.104.37 - User: user_1078 - RequestID: 91f165kxx3k +2025-06-18T14:13:34.381Z [INFO] user-service - DELETE /api/v1/payments - Status: 403 - Response time: 278ms - IP: 192.168.44.5 - User: user_1047 - RequestID: x165n026cfj +2025-06-18T14:13:34.481Z [INFO] order-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.229.123 - RequestID: y9zfmw4536 +2025-06-18T14:13:34.581Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 322ms - Rows affected: 92 - RequestID: 6of3ofdtqcl +2025-06-18T14:13:34.681Z [DEBUG] order-service - Database SELECT on payments - Execution time: 496ms - Rows affected: 10 - RequestID: vsigefntw6 +2025-06-18T14:13:34.781Z [INFO] order-service - Auth event: password_change - User: user_1013 - IP: 192.168.247.134 - RequestID: juzsjgte23c +2025-06-18T14:13:34.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.100.240 - RequestID: 71ofu2vxvhs +2025-06-18T14:13:34.981Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1897ms - IP: 192.168.100.240 - User: user_1066 - RequestID: nm342yo9w4 +2025-06-18T14:13:35.081Z [INFO] order-service - POST /api/v1/inventory - Status: 503 - Response time: 1654ms - IP: 192.168.240.169 - User: user_1090 - RequestID: 40ckiw1wi98 +2025-06-18T14:13:35.181Z [INFO] payment-service - Database DELETE on products - Execution time: 410ms - Rows affected: 40 - RequestID: qpp8gxkjym +2025-06-18T14:13:35.281Z [DEBUG] order-service - Auth event: login_failed - User: user_1044 - IP: 192.168.79.141 - RequestID: dvczmrgm8uu +2025-06-18T14:13:35.381Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 503 - Response time: 125ms - IP: 192.168.104.37 - User: user_1022 - RequestID: 3cmex9m5k7 +2025-06-18T14:13:35.481Z [INFO] user-service - PUT /api/v1/payments - Status: 502 - Response time: 691ms - IP: 192.168.113.218 - User: user_1033 - RequestID: ciqxht9njq +2025-06-18T14:13:35.581Z [TRACE] auth-service - Database SELECT on products - Execution time: 411ms - Rows affected: 82 - RequestID: wkiw4obgo1k +2025-06-18T14:13:35.681Z [TRACE] notification-service - Operation: cache_miss - Processing time: 325ms - RequestID: xg8cnizrou +2025-06-18T14:13:35.781Z [TRACE] auth-service - Database SELECT on payments - Execution time: 109ms - Rows affected: 62 - RequestID: 5mhhbw5rzmr +2025-06-18T14:13:35.881Z [INFO] auth-service - Database UPDATE on users - Execution time: 199ms - Rows affected: 96 - RequestID: md51mge0wd +2025-06-18T14:13:35.981Z [INFO] auth-service - PATCH /api/v1/payments - Status: 200 - Response time: 145ms - IP: 192.168.147.171 - User: user_1022 - RequestID: qv75ouqd42 +2025-06-18T14:13:36.081Z [TRACE] auth-service - Auth event: login_success - User: user_1075 - IP: 192.168.133.7 - RequestID: 35jj9z05jgv +2025-06-18T14:13:36.181Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 228ms - Rows affected: 8 - RequestID: 1s2pporkuwj +2025-06-18T14:13:36.281Z [TRACE] auth-service - Operation: notification_queued - Processing time: 653ms - RequestID: bvxam0t73v +2025-06-18T14:13:36.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.1.152 - RequestID: r5wl2324qf +2025-06-18T14:13:36.481Z [INFO] user-service - Database SELECT on users - Execution time: 82ms - Rows affected: 42 - RequestID: glsvntrhlbp +2025-06-18T14:13:36.581Z [TRACE] notification-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.81.206 - RequestID: bin6r65lecf +2025-06-18T14:13:36.681Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 403 - Response time: 1420ms - IP: 192.168.97.87 - User: user_1022 - RequestID: oup5v961jy +2025-06-18T14:13:36.781Z [INFO] order-service - Database SELECT on orders - Execution time: 10ms - Rows affected: 54 - RequestID: nuspsrql99i +2025-06-18T14:13:36.881Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 220ms - Rows affected: 81 - RequestID: fa757msvqp7 +2025-06-18T14:13:36.981Z [DEBUG] inventory-service - Auth event: login_success - User: user_1023 - IP: 192.168.44.5 - RequestID: 9uy9wutppqu +2025-06-18T14:13:37.081Z [INFO] user-service - Operation: email_sent - Processing time: 123ms - RequestID: c0d78n9knm9 +2025-06-18T14:13:37.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 937ms - RequestID: pui0wgp1sz8 +2025-06-18T14:13:37.281Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 403 - Response time: 809ms - IP: 192.168.247.134 - User: user_1041 - RequestID: 2wkq7td0ln9 +2025-06-18T14:13:37.381Z [DEBUG] user-service - GET /api/v1/payments - Status: 403 - Response time: 438ms - IP: 192.168.170.215 - User: user_1014 - RequestID: p8n2e0z3ao +2025-06-18T14:13:37.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 811ms - RequestID: iuzlh25vnhh +2025-06-18T14:13:37.581Z [TRACE] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 1000ms - IP: 192.168.159.94 - User: user_1068 - RequestID: 9q59bp9007 +2025-06-18T14:13:37.681Z [DEBUG] payment-service - Auth event: logout - User: user_1087 - IP: 192.168.79.143 - RequestID: 90j5uhu4j1m +2025-06-18T14:13:37.781Z [TRACE] notification-service - Operation: notification_queued - Processing time: 714ms - RequestID: wume29yrnhp +2025-06-18T14:13:37.881Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 35ms - Rows affected: 51 - RequestID: cfukbzz33be +2025-06-18T14:13:37.981Z [TRACE] payment-service - Auth event: login_failed - User: user_1013 - IP: 192.168.196.226 - RequestID: zs81ov6mp6 +2025-06-18T14:13:38.081Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 403 - Response time: 601ms - IP: 192.168.79.116 - User: user_1088 - RequestID: jys4rumkmm +2025-06-18T14:13:38.181Z [INFO] inventory-service - Auth event: logout - User: user_1079 - IP: 192.168.227.77 - RequestID: 1m13c7aqq1j +2025-06-18T14:13:38.281Z [INFO] notification-service - Auth event: login_failed - User: user_1034 - IP: 192.168.138.123 - RequestID: 13t8bzf0c8f +2025-06-18T14:13:38.381Z [INFO] order-service - Auth event: login_failed - User: user_1089 - IP: 192.168.30.79 - RequestID: oziebv89i4m +2025-06-18T14:13:38.481Z [INFO] user-service - Auth event: login_success - User: user_1012 - IP: 192.168.232.72 - RequestID: qmmtlb4oa89 +2025-06-18T14:13:38.581Z [TRACE] user-service - Operation: inventory_updated - Processing time: 223ms - RequestID: g0eiajl8gg7 +2025-06-18T14:13:38.681Z [INFO] user-service - PUT /api/v1/users - Status: 401 - Response time: 1568ms - IP: 192.168.196.226 - User: user_1040 - RequestID: 0excplmk1cms +2025-06-18T14:13:38.781Z [INFO] notification-service - Operation: inventory_updated - Processing time: 1048ms - RequestID: vwk8xccbgvi +2025-06-18T14:13:38.881Z [TRACE] notification-service - Auth event: password_change - User: user_1020 - IP: 192.168.44.5 - RequestID: h1mzfym6414 +2025-06-18T14:13:38.981Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 681ms - IP: 192.168.14.77 - User: user_1095 - RequestID: lhen7xzg758 +2025-06-18T14:13:39.081Z [TRACE] payment-service - Database DELETE on products - Execution time: 182ms - Rows affected: 82 - RequestID: 45zgkakdbpg +2025-06-18T14:13:39.181Z [DEBUG] notification-service - Database INSERT on products - Execution time: 26ms - Rows affected: 65 - RequestID: b50bxpze3y6 +2025-06-18T14:13:39.281Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 403 - Response time: 245ms - IP: 192.168.14.77 - User: user_1048 - RequestID: nyxmf5ewhhs +2025-06-18T14:13:39.381Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 746ms - RequestID: ogyae6ee4l +2025-06-18T14:13:39.481Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 336ms - Rows affected: 78 - RequestID: yah0h3wqia +2025-06-18T14:13:39.581Z [TRACE] order-service - Database INSERT on orders - Execution time: 498ms - Rows affected: 45 - RequestID: 3xssbbbg902 +2025-06-18T14:13:39.681Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 235ms - Rows affected: 40 - RequestID: 99cpa01srqi +2025-06-18T14:13:39.781Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 476ms - IP: 192.168.28.146 - User: user_1039 - RequestID: wab2kef06j +2025-06-18T14:13:39.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1088 - IP: 192.168.104.37 - RequestID: 4fh7f55jd5 +2025-06-18T14:13:39.981Z [TRACE] notification-service - Auth event: login_success - User: user_1005 - IP: 192.168.11.60 - RequestID: a5u7mecz6ki +2025-06-18T14:13:40.081Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 441ms - Rows affected: 38 - RequestID: 96ya0wh7i5g +2025-06-18T14:13:40.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.64.33 - RequestID: vtvloxnrvqs +2025-06-18T14:13:40.281Z [INFO] order-service - DELETE /api/v1/users - Status: 201 - Response time: 1349ms - IP: 192.168.100.240 - User: user_1004 - RequestID: 88wcwz2y47i +2025-06-18T14:13:40.381Z [TRACE] notification-service - Auth event: login_success - User: user_1003 - IP: 192.168.28.146 - RequestID: rxkauwhmv9i +2025-06-18T14:13:40.481Z [INFO] auth-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.167.32 - RequestID: 2v9vrv0v48e +2025-06-18T14:13:40.581Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 411ms - Rows affected: 34 - RequestID: s1yp0kskpg +2025-06-18T14:13:40.681Z [DEBUG] notification-service - Database SELECT on products - Execution time: 486ms - Rows affected: 67 - RequestID: l0wodqxxdd +2025-06-18T14:13:40.781Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 843ms - RequestID: yd31eq9uoat +2025-06-18T14:13:40.881Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 400ms - Rows affected: 88 - RequestID: mo3rjpcd91 +2025-06-18T14:13:40.981Z [DEBUG] user-service - Auth event: login_success - User: user_1078 - IP: 192.168.28.146 - RequestID: we8aceos6h +2025-06-18T14:13:41.081Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 201 - Response time: 1520ms - IP: 192.168.46.63 - User: user_1069 - RequestID: 57124pcqita +2025-06-18T14:13:41.181Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 519ms - RequestID: lugzp34vsf +2025-06-18T14:13:41.281Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 325ms - Rows affected: 77 - RequestID: e5odfg27ylo +2025-06-18T14:13:41.381Z [INFO] payment-service - Database INSERT on orders - Execution time: 459ms - Rows affected: 83 - RequestID: 4n2u3uawstd +2025-06-18T14:13:41.481Z [TRACE] order-service - Auth event: login_success - User: user_1042 - IP: 192.168.229.123 - RequestID: 5ys7170h8yt +2025-06-18T14:13:41.581Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1900ms - IP: 192.168.133.7 - User: user_1059 - RequestID: y2slu10vr9 +2025-06-18T14:13:41.681Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 473ms - Rows affected: 90 - RequestID: dnenxj8wbxb +2025-06-18T14:13:41.781Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1751ms - IP: 192.168.68.128 - User: user_1091 - RequestID: cb3nybvbfjp +2025-06-18T14:13:41.881Z [TRACE] user-service - Auth event: login_success - User: user_1036 - IP: 192.168.79.141 - RequestID: e9xh587wdzc +2025-06-18T14:13:41.981Z [INFO] inventory-service - POST /api/v1/orders - Status: 200 - Response time: 27ms - IP: 192.168.30.79 - User: user_1051 - RequestID: nxjfr4h731 +2025-06-18T14:13:42.081Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1678ms - IP: 192.168.64.33 - User: user_1036 - RequestID: 664ghqnbxye +2025-06-18T14:13:42.181Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.28.146 - RequestID: 3hb7iwnputs +2025-06-18T14:13:42.281Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 159ms - Rows affected: 90 - RequestID: z1w0j7zr87k +2025-06-18T14:13:42.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 532ms - RequestID: ig8j3h63ka +2025-06-18T14:13:42.481Z [INFO] user-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1226ms - IP: 192.168.64.33 - User: user_1096 - RequestID: bpfs8vz18yh +2025-06-18T14:13:42.581Z [TRACE] inventory-service - Auth event: login_failed - User: user_1032 - IP: 192.168.133.7 - RequestID: 72sa163r019 +2025-06-18T14:13:42.681Z [INFO] notification-service - Operation: webhook_sent - Processing time: 752ms - RequestID: ye8cs7snk1l +2025-06-18T14:13:42.781Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 374ms - RequestID: 2jsub332abx +2025-06-18T14:13:42.881Z [INFO] user-service - Operation: cache_miss - Processing time: 68ms - RequestID: skl4m9v6x7l +2025-06-18T14:13:42.981Z [TRACE] order-service - PATCH /api/v1/users - Status: 401 - Response time: 1322ms - IP: 192.168.10.184 - User: user_1087 - RequestID: 1mm6cl0vbz8 +2025-06-18T14:13:43.081Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 115ms - Rows affected: 78 - RequestID: encp82pb8vk +2025-06-18T14:13:43.181Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 500 - Response time: 795ms - IP: 192.168.147.171 - User: user_1035 - RequestID: s0dyonm6o4e +2025-06-18T14:13:43.281Z [DEBUG] user-service - POST /api/v1/payments - Status: 503 - Response time: 1865ms - IP: 192.168.44.5 - User: user_1098 - RequestID: nmpmozshu0g +2025-06-18T14:13:43.381Z [TRACE] payment-service - Database SELECT on products - Execution time: 102ms - Rows affected: 17 - RequestID: nc0earg0v5 +2025-06-18T14:13:43.481Z [TRACE] auth-service - Auth event: login_failed - User: user_1011 - IP: 192.168.46.63 - RequestID: ohfcaaiji0r +2025-06-18T14:13:43.581Z [TRACE] user-service - Auth event: logout - User: user_1089 - IP: 192.168.81.206 - RequestID: 61u4d9plcfw +2025-06-18T14:13:43.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1017 - IP: 192.168.194.41 - RequestID: 4dsfm4vlufh +2025-06-18T14:13:43.781Z [DEBUG] user-service - Auth event: login_failed - User: user_1096 - IP: 192.168.81.206 - RequestID: un5jei4x64n +2025-06-18T14:13:43.881Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 502 - Response time: 844ms - IP: 192.168.79.143 - User: user_1055 - RequestID: ptymf22a0vh +2025-06-18T14:13:43.981Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 971ms - IP: 192.168.46.63 - User: user_1010 - RequestID: rx157xho53 +2025-06-18T14:13:44.081Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 201 - Response time: 910ms - IP: 192.168.211.72 - User: user_1084 - RequestID: zwxyoecrjbf +2025-06-18T14:13:44.181Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 401 - Response time: 71ms - IP: 192.168.196.226 - User: user_1054 - RequestID: n374yx8xkl +2025-06-18T14:13:44.281Z [DEBUG] order-service - Database INSERT on users - Execution time: 500ms - Rows affected: 29 - RequestID: j5wnyrlogpr +2025-06-18T14:13:44.381Z [DEBUG] order-service - Auth event: login_success - User: user_1057 - IP: 192.168.235.117 - RequestID: oz5bfmj9r2 +2025-06-18T14:13:44.481Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 2ms - Rows affected: 89 - RequestID: hdqpj5lhy3p +2025-06-18T14:13:44.581Z [TRACE] inventory-service - Database SELECT on products - Execution time: 499ms - Rows affected: 10 - RequestID: 403kayc9xb +2025-06-18T14:13:44.681Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 502 - Response time: 333ms - IP: 192.168.181.225 - User: user_1055 - RequestID: 0j7oo3380vd +2025-06-18T14:13:44.781Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 200 - Response time: 1528ms - IP: 192.168.167.32 - User: user_1047 - RequestID: n23lkteo3b +2025-06-18T14:13:44.881Z [DEBUG] user-service - Operation: cache_hit - Processing time: 935ms - RequestID: s0nkdxwzdta +2025-06-18T14:13:44.981Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 402ms - IP: 192.168.31.117 - User: user_1088 - RequestID: xdblcda3sni +2025-06-18T14:13:45.081Z [INFO] payment-service - Database DELETE on products - Execution time: 142ms - Rows affected: 64 - RequestID: msa7dwz1efe +2025-06-18T14:13:45.181Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1402ms - IP: 192.168.31.117 - User: user_1075 - RequestID: nad5478cgk9 +2025-06-18T14:13:45.281Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 136ms - RequestID: 6qug8z7d6gt +2025-06-18T14:13:45.381Z [TRACE] order-service - Auth event: logout - User: user_1028 - IP: 192.168.28.146 - RequestID: uy73dssjxjl +2025-06-18T14:13:45.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 296ms - RequestID: yfcosw1b4k +2025-06-18T14:13:45.581Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1652ms - IP: 192.168.10.184 - User: user_1001 - RequestID: 33a3u1a4zt9 +2025-06-18T14:13:45.681Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 222ms - Rows affected: 80 - RequestID: 9zrhm5b5ibd +2025-06-18T14:13:45.781Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 366ms - Rows affected: 28 - RequestID: glcub4ciy0g +2025-06-18T14:13:45.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 733ms - RequestID: frmq9m689zs +2025-06-18T14:13:45.981Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 403ms - Rows affected: 7 - RequestID: ljiprniwchs +2025-06-18T14:13:46.081Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 271ms - Rows affected: 0 - RequestID: wvo31rawk0h +2025-06-18T14:13:46.181Z [TRACE] order-service - Operation: notification_queued - Processing time: 630ms - RequestID: sad35ee4nfr +2025-06-18T14:13:46.281Z [INFO] notification-service - Operation: cache_miss - Processing time: 94ms - RequestID: b13g39vq80m +2025-06-18T14:13:46.381Z [TRACE] order-service - GET /api/v1/inventory - Status: 400 - Response time: 1832ms - IP: 192.168.30.79 - User: user_1054 - RequestID: figgyoekgj +2025-06-18T14:13:46.481Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 60ms - RequestID: ojttphvj6o +2025-06-18T14:13:46.581Z [TRACE] auth-service - Database DELETE on payments - Execution time: 242ms - Rows affected: 13 - RequestID: b2q7srqm8ji +2025-06-18T14:13:46.681Z [TRACE] notification-service - Operation: order_created - Processing time: 912ms - RequestID: 1a3rtr9pn8q +2025-06-18T14:13:46.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1080 - IP: 192.168.31.117 - RequestID: 7txyyxdz814 +2025-06-18T14:13:46.881Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 458ms - Rows affected: 10 - RequestID: d6whdox50lo +2025-06-18T14:13:46.981Z [DEBUG] order-service - PUT /api/v1/payments - Status: 503 - Response time: 1039ms - IP: 192.168.97.87 - User: user_1022 - RequestID: 707og3cowlq +2025-06-18T14:13:47.081Z [TRACE] user-service - Auth event: password_change - User: user_1066 - IP: 192.168.229.123 - RequestID: 3ruvw6b8kr7 +2025-06-18T14:13:47.181Z [TRACE] notification-service - GET /api/v1/inventory - Status: 404 - Response time: 1224ms - IP: 192.168.97.87 - User: user_1019 - RequestID: svzc62chsjj +2025-06-18T14:13:47.281Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 1023ms - RequestID: esmmrlwi6h +2025-06-18T14:13:47.381Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 430ms - RequestID: 875pxagwaqi +2025-06-18T14:13:47.481Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 401 - Response time: 453ms - IP: 192.168.242.165 - User: user_1092 - RequestID: edmvg5e5lpq +2025-06-18T14:13:47.581Z [INFO] payment-service - Auth event: login_success - User: user_1092 - IP: 192.168.196.226 - RequestID: gy2xs7ktypg +2025-06-18T14:13:47.681Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 324ms - IP: 192.168.242.165 - User: user_1062 - RequestID: ajpb4c0jqlk +2025-06-18T14:13:47.781Z [INFO] auth-service - Operation: email_sent - Processing time: 619ms - RequestID: 06j760nmnf1n +2025-06-18T14:13:47.881Z [DEBUG] payment-service - GET /api/v1/payments - Status: 201 - Response time: 57ms - IP: 192.168.235.117 - User: user_1096 - RequestID: w7vqmk94ur +2025-06-18T14:13:47.981Z [TRACE] notification-service - Database UPDATE on users - Execution time: 203ms - Rows affected: 32 - RequestID: 3eiridjg39y +2025-06-18T14:13:48.081Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1743ms - IP: 192.168.79.143 - User: user_1006 - RequestID: wuxbgxu4wek +2025-06-18T14:13:48.181Z [INFO] notification-service - Operation: payment_processed - Processing time: 702ms - RequestID: yojv9pnetch +2025-06-18T14:13:48.281Z [INFO] notification-service - Database INSERT on orders - Execution time: 27ms - Rows affected: 90 - RequestID: jej5r7gvigk +2025-06-18T14:13:48.381Z [INFO] notification-service - Operation: webhook_sent - Processing time: 619ms - RequestID: vwpj6z6fncs +2025-06-18T14:13:48.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1037 - IP: 192.168.247.134 - RequestID: ybnerc13bs +2025-06-18T14:13:48.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.170.215 - RequestID: b9xnafxr0dl +2025-06-18T14:13:48.681Z [TRACE] notification-service - Database UPDATE on products - Execution time: 441ms - Rows affected: 2 - RequestID: suy96h0zjwi +2025-06-18T14:13:48.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1051 - IP: 192.168.229.123 - RequestID: djfi3kciohf +2025-06-18T14:13:48.881Z [DEBUG] user-service - Operation: cache_hit - Processing time: 900ms - RequestID: 877dje8rozd +2025-06-18T14:13:48.981Z [TRACE] user-service - Operation: notification_queued - Processing time: 181ms - RequestID: zc4hkj8sez +2025-06-18T14:13:49.081Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1461ms - IP: 192.168.133.7 - User: user_1052 - RequestID: tht3le31lch +2025-06-18T14:13:49.181Z [INFO] payment-service - POST /api/v1/inventory - Status: 400 - Response time: 661ms - IP: 192.168.28.146 - User: user_1049 - RequestID: z1vff0d0u4 +2025-06-18T14:13:49.281Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 403 - Response time: 1604ms - IP: 192.168.242.165 - User: user_1039 - RequestID: s3tuurf7ss +2025-06-18T14:13:49.381Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 482ms - RequestID: wbiq3sqw0ws +2025-06-18T14:13:49.481Z [DEBUG] payment-service - GET /api/v1/payments - Status: 403 - Response time: 1063ms - IP: 192.168.227.233 - User: user_1061 - RequestID: vk4aocoxnvh +2025-06-18T14:13:49.581Z [INFO] payment-service - Operation: cache_miss - Processing time: 604ms - RequestID: vd5yuga6a9o +2025-06-18T14:13:49.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.79.141 - RequestID: 2zabbnfh4ia +2025-06-18T14:13:49.781Z [INFO] inventory-service - Auth event: login_failed - User: user_1071 - IP: 192.168.158.144 - RequestID: u39homun7xm +2025-06-18T14:13:49.881Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 127ms - RequestID: i6bro8r0jw +2025-06-18T14:13:49.981Z [INFO] user-service - POST /api/v1/auth/logout - Status: 502 - Response time: 58ms - IP: 192.168.97.87 - User: user_1049 - RequestID: kx99fuq7v6l +2025-06-18T14:13:50.081Z [TRACE] auth-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.159.94 - RequestID: lj7jf92mpzn +2025-06-18T14:13:50.181Z [INFO] user-service - Database SELECT on users - Execution time: 168ms - Rows affected: 97 - RequestID: pk9b36rd +2025-06-18T14:13:50.281Z [INFO] payment-service - Auth event: password_change - User: user_1036 - IP: 192.168.10.184 - RequestID: kqsbcy37bdi +2025-06-18T14:13:50.381Z [DEBUG] user-service - Auth event: login_success - User: user_1078 - IP: 192.168.68.158 - RequestID: 0av5ghz7xgjn +2025-06-18T14:13:50.481Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 434ms - Rows affected: 93 - RequestID: y763u3hg9p +2025-06-18T14:13:50.581Z [INFO] inventory-service - Database SELECT on products - Execution time: 394ms - Rows affected: 55 - RequestID: ah5jg7mw4l +2025-06-18T14:13:50.681Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1814ms - IP: 192.168.10.184 - User: user_1029 - RequestID: zdukld81otk +2025-06-18T14:13:50.781Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 78ms - Rows affected: 73 - RequestID: vide10n8yg +2025-06-18T14:13:50.881Z [DEBUG] order-service - Auth event: login_success - User: user_1096 - IP: 192.168.113.218 - RequestID: 3we312od7z5 +2025-06-18T14:13:50.981Z [INFO] order-service - Auth event: password_change - User: user_1017 - IP: 192.168.10.184 - RequestID: 8xdtx7mmyyv +2025-06-18T14:13:51.081Z [INFO] inventory-service - Database DELETE on users - Execution time: 18ms - Rows affected: 56 - RequestID: fs7ry6ug5ys +2025-06-18T14:13:51.181Z [INFO] order-service - Database DELETE on orders - Execution time: 65ms - Rows affected: 76 - RequestID: i415bfgams +2025-06-18T14:13:51.281Z [TRACE] user-service - GET /api/v1/auth/login - Status: 404 - Response time: 1236ms - IP: 192.168.159.94 - User: user_1058 - RequestID: t05nod6ax99 +2025-06-18T14:13:51.381Z [INFO] user-service - Operation: email_sent - Processing time: 500ms - RequestID: 0lazslulnt3d +2025-06-18T14:13:51.481Z [INFO] notification-service - Auth event: login_failed - User: user_1000 - IP: 192.168.68.128 - RequestID: 4lqx2i6e59f +2025-06-18T14:13:51.581Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 403 - Response time: 397ms - IP: 192.168.227.77 - User: user_1098 - RequestID: 17yguywkj0c +2025-06-18T14:13:51.681Z [INFO] auth-service - Operation: webhook_sent - Processing time: 69ms - RequestID: dtkekhlak5t +2025-06-18T14:13:51.781Z [INFO] order-service - Database UPDATE on payments - Execution time: 452ms - Rows affected: 40 - RequestID: 6qplprvqc8l +2025-06-18T14:13:51.881Z [INFO] user-service - Auth event: logout - User: user_1080 - IP: 192.168.242.165 - RequestID: 31gm7sov4rj +2025-06-18T14:13:51.981Z [TRACE] payment-service - Operation: order_created - Processing time: 820ms - RequestID: 373iy8onemm +2025-06-18T14:13:52.081Z [DEBUG] inventory-service - Auth event: logout - User: user_1087 - IP: 192.168.147.171 - RequestID: ogh3w61nyoj +2025-06-18T14:13:52.181Z [INFO] payment-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.167.32 - RequestID: 5z70sl8red4 +2025-06-18T14:13:52.281Z [INFO] payment-service - Database SELECT on users - Execution time: 491ms - Rows affected: 88 - RequestID: 9hj1gfdlmtj +2025-06-18T14:13:52.381Z [DEBUG] auth-service - Auth event: logout - User: user_1055 - IP: 192.168.113.218 - RequestID: 3343buhvenw +2025-06-18T14:13:52.481Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 610ms - RequestID: fsydte3ptb +2025-06-18T14:13:52.581Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 792ms - RequestID: jlz4t6he4i +2025-06-18T14:13:52.681Z [DEBUG] order-service - Database DELETE on payments - Execution time: 443ms - Rows affected: 14 - RequestID: nc701ipluk9 +2025-06-18T14:13:52.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1001 - IP: 192.168.232.72 - RequestID: oi52ilj830n +2025-06-18T14:13:52.881Z [TRACE] user-service - Database INSERT on sessions - Execution time: 385ms - Rows affected: 68 - RequestID: 2yql4w1scgt +2025-06-18T14:13:52.981Z [TRACE] order-service - DELETE /api/v1/payments - Status: 404 - Response time: 1230ms - IP: 192.168.79.143 - User: user_1033 - RequestID: gyqjd5960z5 +2025-06-18T14:13:53.081Z [INFO] auth-service - Auth event: login_success - User: user_1089 - IP: 192.168.32.38 - RequestID: gij6bqbf2nq +2025-06-18T14:13:53.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.79.141 - RequestID: iwiha0t8gv +2025-06-18T14:13:53.281Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 299ms - Rows affected: 55 - RequestID: d0b9ckdfdds +2025-06-18T14:13:53.381Z [TRACE] auth-service - Operation: order_created - Processing time: 782ms - RequestID: otqa38sk53 +2025-06-18T14:13:53.481Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 180ms - Rows affected: 72 - RequestID: t0jb4qeyiup +2025-06-18T14:13:53.581Z [DEBUG] auth-service - Auth event: logout - User: user_1065 - IP: 192.168.227.77 - RequestID: pcv9q87jjr +2025-06-18T14:13:53.681Z [INFO] user-service - Auth event: logout - User: user_1056 - IP: 192.168.227.233 - RequestID: 4bjvmt0u1ja +2025-06-18T14:13:53.781Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 339ms - Rows affected: 88 - RequestID: uvwtandzb9s +2025-06-18T14:13:53.881Z [TRACE] user-service - Database DELETE on products - Execution time: 445ms - Rows affected: 35 - RequestID: v2yo2tcnc7i +2025-06-18T14:13:53.981Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 400 - Response time: 1621ms - IP: 192.168.10.184 - User: user_1071 - RequestID: 4wiidn2sn1i +2025-06-18T14:13:54.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.64.33 - RequestID: xxh6q5girho +2025-06-18T14:13:54.181Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1528ms - IP: 192.168.79.116 - User: user_1064 - RequestID: 06pddz89hofb +2025-06-18T14:13:54.281Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1836ms - IP: 192.168.138.123 - User: user_1057 - RequestID: tg4pz8dyt3 +2025-06-18T14:13:54.381Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 422ms - Rows affected: 77 - RequestID: amr8qn951wm +2025-06-18T14:13:54.481Z [TRACE] order-service - Auth event: login_failed - User: user_1073 - IP: 192.168.104.37 - RequestID: yop0rcxz4bg +2025-06-18T14:13:54.581Z [INFO] order-service - Operation: order_created - Processing time: 795ms - RequestID: 5tgqpb401qc +2025-06-18T14:13:54.681Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 502 - Response time: 293ms - IP: 192.168.79.143 - User: user_1044 - RequestID: lj50de6lfdj +2025-06-18T14:13:54.781Z [INFO] notification-service - Operation: cache_miss - Processing time: 741ms - RequestID: 1ey01h3k1so +2025-06-18T14:13:54.881Z [DEBUG] auth-service - GET /api/v1/users - Status: 401 - Response time: 1741ms - IP: 192.168.97.87 - User: user_1009 - RequestID: v6e7ihchxg +2025-06-18T14:13:54.981Z [INFO] auth-service - Database SELECT on sessions - Execution time: 485ms - Rows affected: 51 - RequestID: 8s4xq41fku6 +2025-06-18T14:13:55.081Z [INFO] auth-service - PUT /api/v1/payments - Status: 400 - Response time: 134ms - IP: 192.168.97.87 - User: user_1074 - RequestID: 68c7emhp8at +2025-06-18T14:13:55.181Z [INFO] order-service - Operation: notification_queued - Processing time: 480ms - RequestID: z3w3imf2pmg +2025-06-18T14:13:55.281Z [TRACE] order-service - PATCH /api/v1/users - Status: 200 - Response time: 606ms - IP: 192.168.229.123 - User: user_1058 - RequestID: j6q9s99m2rs +2025-06-18T14:13:55.381Z [TRACE] user-service - Operation: order_created - Processing time: 202ms - RequestID: 5ili10ob22 +2025-06-18T14:13:55.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 172ms - RequestID: c7w8bes1lle +2025-06-18T14:13:55.581Z [INFO] payment-service - Auth event: password_change - User: user_1000 - IP: 192.168.44.5 - RequestID: n8yfdqj1tpc +2025-06-18T14:13:55.681Z [INFO] user-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.100.240 - RequestID: 7ragp00sxhc +2025-06-18T14:13:55.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1058 - IP: 192.168.229.123 - RequestID: opfi4u5guys +2025-06-18T14:13:55.881Z [DEBUG] user-service - Database SELECT on payments - Execution time: 452ms - Rows affected: 54 - RequestID: h7abrtfvxod +2025-06-18T14:13:55.981Z [INFO] order-service - Auth event: password_change - User: user_1034 - IP: 192.168.113.218 - RequestID: vpc0ydg0te +2025-06-18T14:13:56.081Z [INFO] payment-service - PATCH /api/v1/orders - Status: 500 - Response time: 1421ms - IP: 192.168.85.229 - User: user_1040 - RequestID: g8k9owqbkim +2025-06-18T14:13:56.181Z [TRACE] inventory-service - Auth event: login_failed - User: user_1059 - IP: 192.168.141.100 - RequestID: amkhfp73x1v +2025-06-18T14:13:56.281Z [TRACE] notification-service - Auth event: password_change - User: user_1087 - IP: 192.168.189.103 - RequestID: ovyktyjpmn +2025-06-18T14:13:56.381Z [TRACE] user-service - Database UPDATE on users - Execution time: 401ms - Rows affected: 96 - RequestID: 15qcp9nqorv +2025-06-18T14:13:56.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 976ms - RequestID: gnjy8ahfeiu +2025-06-18T14:13:56.581Z [TRACE] payment-service - Auth event: login_failed - User: user_1039 - IP: 192.168.104.37 - RequestID: fqz7q62rqut +2025-06-18T14:13:56.681Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 459ms - Rows affected: 4 - RequestID: zohr1mhgphc +2025-06-18T14:13:56.781Z [INFO] inventory-service - Database SELECT on users - Execution time: 112ms - Rows affected: 12 - RequestID: 205ckbn5k62 +2025-06-18T14:13:56.881Z [INFO] payment-service - Operation: cache_miss - Processing time: 856ms - RequestID: 0ik1z7vmorad +2025-06-18T14:13:56.981Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 59ms - IP: 192.168.227.77 - User: user_1005 - RequestID: 6pcm7hldinh +2025-06-18T14:13:57.081Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 833ms - RequestID: cuz3vbtpusm +2025-06-18T14:13:57.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1048 - IP: 192.168.229.123 - RequestID: m70kd5fp73 +2025-06-18T14:13:57.281Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 502 - Response time: 188ms - IP: 192.168.32.38 - User: user_1021 - RequestID: kt3qy2ilg1 +2025-06-18T14:13:57.381Z [INFO] payment-service - Operation: notification_queued - Processing time: 392ms - RequestID: xvqpvcc4y48 +2025-06-18T14:13:57.481Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 641ms - RequestID: yo4w21lma +2025-06-18T14:13:57.581Z [TRACE] notification-service - POST /api/v1/inventory - Status: 403 - Response time: 396ms - IP: 192.168.36.218 - User: user_1052 - RequestID: amqkc2rqhyf +2025-06-18T14:13:57.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 590ms - RequestID: q4bcsbtdiq +2025-06-18T14:13:57.781Z [INFO] notification-service - Database UPDATE on products - Execution time: 214ms - Rows affected: 50 - RequestID: hslvaozmwkd +2025-06-18T14:13:57.881Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 825ms - RequestID: sggna1aas4n +2025-06-18T14:13:57.981Z [TRACE] order-service - Operation: inventory_updated - Processing time: 944ms - RequestID: pn0iz5jg4z9 +2025-06-18T14:13:58.081Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 401 - Response time: 1921ms - IP: 192.168.13.72 - User: user_1061 - RequestID: hbk2ufbywid +2025-06-18T14:13:58.181Z [INFO] payment-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.144.38 - RequestID: pl14vmmu93o +2025-06-18T14:13:58.281Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1790ms - IP: 192.168.11.60 - User: user_1047 - RequestID: skoghtxc88q +2025-06-18T14:13:58.381Z [TRACE] user-service - PUT /api/v1/inventory - Status: 200 - Response time: 1086ms - IP: 192.168.30.79 - User: user_1066 - RequestID: 6f82d8wf3cg +2025-06-18T14:13:58.481Z [TRACE] auth-service - Database INSERT on orders - Execution time: 186ms - Rows affected: 40 - RequestID: b11yhrz2pcu +2025-06-18T14:13:58.581Z [DEBUG] notification-service - POST /api/v1/payments - Status: 200 - Response time: 281ms - IP: 192.168.10.184 - User: user_1039 - RequestID: 00mmf6xv10gaa +2025-06-18T14:13:58.681Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1627ms - IP: 192.168.235.117 - User: user_1053 - RequestID: lb5z4pgvqy8 +2025-06-18T14:13:58.781Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 185ms - RequestID: 6w1dknhhw6e +2025-06-18T14:13:58.881Z [DEBUG] user-service - Database DELETE on users - Execution time: 233ms - Rows affected: 96 - RequestID: gxxxhxqd5rd +2025-06-18T14:13:58.981Z [INFO] user-service - Auth event: password_change - User: user_1092 - IP: 192.168.247.134 - RequestID: ejrstnunvch +2025-06-18T14:13:59.081Z [TRACE] order-service - DELETE /api/v1/users - Status: 503 - Response time: 1828ms - IP: 192.168.227.233 - User: user_1040 - RequestID: nky2wfmkz4p +2025-06-18T14:13:59.181Z [TRACE] auth-service - Operation: notification_queued - Processing time: 240ms - RequestID: 2xtlgpwhlig +2025-06-18T14:13:59.281Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 200 - Response time: 1206ms - IP: 192.168.187.199 - User: user_1069 - RequestID: z0b0jtrc72h +2025-06-18T14:13:59.381Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 313ms - Rows affected: 55 - RequestID: lq5nj0pz0fi +2025-06-18T14:13:59.481Z [INFO] user-service - Auth event: password_change - User: user_1091 - IP: 192.168.46.63 - RequestID: b6wa65l8975 +2025-06-18T14:13:59.581Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 231ms - IP: 192.168.14.77 - User: user_1003 - RequestID: wosj1q5rjxn +2025-06-18T14:13:59.681Z [DEBUG] notification-service - Operation: email_sent - Processing time: 463ms - RequestID: 0hu4xa75ea5 +2025-06-18T14:13:59.781Z [DEBUG] user-service - Operation: payment_processed - Processing time: 1011ms - RequestID: ni76o8ladjp +2025-06-18T14:13:59.881Z [INFO] inventory-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.232.72 - RequestID: 8iegu8b2jow +2025-06-18T14:13:59.981Z [TRACE] payment-service - Operation: cache_hit - Processing time: 819ms - RequestID: 8km17gmsdi +2025-06-18T14:14:00.081Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 51ms - IP: 192.168.104.37 - User: user_1034 - RequestID: vhtm4qyq4u +2025-06-18T14:14:00.181Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 500 - Response time: 1477ms - IP: 192.168.30.79 - User: user_1069 - RequestID: n4cqg0n7m9b +2025-06-18T14:14:00.281Z [INFO] user-service - DELETE /api/v1/inventory - Status: 201 - Response time: 446ms - IP: 192.168.141.100 - User: user_1063 - RequestID: ai2u94274q +2025-06-18T14:14:00.381Z [DEBUG] order-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.229.123 - RequestID: czvo24w9f6b +2025-06-18T14:14:00.481Z [TRACE] user-service - PATCH /api/v1/payments - Status: 404 - Response time: 1214ms - IP: 192.168.187.199 - User: user_1042 - RequestID: negk48cele +2025-06-18T14:14:00.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 981ms - RequestID: 5obqezqw73j +2025-06-18T14:14:00.681Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 201 - Response time: 1780ms - IP: 192.168.194.41 - User: user_1030 - RequestID: 6ojf00mvbuc +2025-06-18T14:14:00.781Z [TRACE] notification-service - Operation: notification_queued - Processing time: 377ms - RequestID: xg3e7u6vwbp +2025-06-18T14:14:00.881Z [TRACE] payment-service - Operation: order_created - Processing time: 974ms - RequestID: 10qm0bwm0crp +2025-06-18T14:14:00.981Z [DEBUG] user-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.30.79 - RequestID: wy85lfxsbtg +2025-06-18T14:14:01.081Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 503 - Response time: 335ms - IP: 192.168.229.123 - User: user_1019 - RequestID: xsj2m1wq8i +2025-06-18T14:14:01.181Z [DEBUG] user-service - POST /api/v1/payments - Status: 502 - Response time: 1715ms - IP: 192.168.194.41 - User: user_1073 - RequestID: nhskazmi6f +2025-06-18T14:14:01.281Z [INFO] auth-service - Operation: email_sent - Processing time: 904ms - RequestID: sqa56u0b0pr +2025-06-18T14:14:01.381Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 394ms - Rows affected: 12 - RequestID: ybpkn9bvheb +2025-06-18T14:14:01.481Z [DEBUG] auth-service - GET /api/v1/orders - Status: 500 - Response time: 393ms - IP: 192.168.44.5 - User: user_1087 - RequestID: 9ooxjaa6ro +2025-06-18T14:14:01.581Z [DEBUG] notification-service - Auth event: logout - User: user_1045 - IP: 192.168.33.76 - RequestID: a8avskq8t8p +2025-06-18T14:14:01.681Z [TRACE] auth-service - Operation: order_created - Processing time: 75ms - RequestID: swmejwycuad +2025-06-18T14:14:01.781Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 66ms - Rows affected: 92 - RequestID: awm8xscphwc +2025-06-18T14:14:01.881Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 447ms - Rows affected: 90 - RequestID: sx0ecufjk8n +2025-06-18T14:14:01.981Z [INFO] inventory-service - PUT /api/v1/orders - Status: 502 - Response time: 267ms - IP: 192.168.211.72 - User: user_1028 - RequestID: 7xq8silc9gp +2025-06-18T14:14:02.081Z [TRACE] notification-service - Operation: cache_hit - Processing time: 84ms - RequestID: 9cpr8s6p8bo +2025-06-18T14:14:02.181Z [TRACE] notification-service - Database INSERT on orders - Execution time: 54ms - Rows affected: 85 - RequestID: fn1hp6lwttp +2025-06-18T14:14:02.281Z [INFO] order-service - Database SELECT on orders - Execution time: 285ms - Rows affected: 74 - RequestID: podogsk3ltq +2025-06-18T14:14:02.381Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1615ms - IP: 192.168.170.215 - User: user_1020 - RequestID: qeh3dzat7uq +2025-06-18T14:14:02.481Z [DEBUG] auth-service - Auth event: login_success - User: user_1027 - IP: 192.168.240.169 - RequestID: tw9fjq9qs2 +2025-06-18T14:14:02.581Z [INFO] inventory-service - Auth event: password_change - User: user_1054 - IP: 192.168.1.152 - RequestID: z0a8lq0abq +2025-06-18T14:14:02.681Z [INFO] auth-service - Auth event: password_change - User: user_1087 - IP: 192.168.159.94 - RequestID: 7l03hquodi +2025-06-18T14:14:02.781Z [TRACE] user-service - Database INSERT on users - Execution time: 252ms - Rows affected: 28 - RequestID: gyqgt6uhle +2025-06-18T14:14:02.881Z [INFO] order-service - Auth event: password_change - User: user_1085 - IP: 192.168.44.5 - RequestID: x2ip390qnp +2025-06-18T14:14:02.981Z [TRACE] payment-service - POST /api/v1/users - Status: 500 - Response time: 408ms - IP: 192.168.36.218 - User: user_1072 - RequestID: 19yoimbwwnmj +2025-06-18T14:14:03.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1093 - IP: 192.168.79.116 - RequestID: omsnf31m6sf +2025-06-18T14:14:03.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 790ms - RequestID: r7o4ycljsqm +2025-06-18T14:14:03.281Z [DEBUG] auth-service - Auth event: password_change - User: user_1058 - IP: 192.168.181.225 - RequestID: 8hubzrmbmgd +2025-06-18T14:14:03.381Z [INFO] payment-service - Operation: cache_miss - Processing time: 723ms - RequestID: a5lt8gqi30a +2025-06-18T14:14:03.481Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 500 - Response time: 996ms - IP: 192.168.133.7 - User: user_1086 - RequestID: dw6tqfm0bgv +2025-06-18T14:14:03.581Z [TRACE] auth-service - Operation: notification_queued - Processing time: 465ms - RequestID: t6klvjjjk68 +2025-06-18T14:14:03.681Z [DEBUG] payment-service - POST /api/v1/orders - Status: 400 - Response time: 718ms - IP: 192.168.33.76 - User: user_1088 - RequestID: gunlur9qr8 +2025-06-18T14:14:03.781Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1860ms - IP: 192.168.14.77 - User: user_1072 - RequestID: cn6e3zu8qg9 +2025-06-18T14:14:03.881Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 686ms - RequestID: ecufrakvdhc +2025-06-18T14:14:03.981Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 492ms - Rows affected: 77 - RequestID: hn55334emdr +2025-06-18T14:14:04.081Z [TRACE] order-service - Auth event: logout - User: user_1043 - IP: 192.168.133.7 - RequestID: 808mql6mhi9 +2025-06-18T14:14:04.181Z [TRACE] inventory-service - Auth event: logout - User: user_1096 - IP: 192.168.14.77 - RequestID: aa9yoxaem5t +2025-06-18T14:14:04.281Z [TRACE] payment-service - Auth event: login_success - User: user_1074 - IP: 192.168.68.158 - RequestID: 9ivqkl3f0qe +2025-06-18T14:14:04.381Z [INFO] order-service - Auth event: login_success - User: user_1045 - IP: 192.168.170.215 - RequestID: 0jadwsvrspkp +2025-06-18T14:14:04.481Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 403 - Response time: 414ms - IP: 192.168.32.38 - User: user_1049 - RequestID: t038row8bmj +2025-06-18T14:14:04.581Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 420ms - IP: 192.168.13.72 - User: user_1017 - RequestID: hdjnhodthh +2025-06-18T14:14:04.681Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 362ms - Rows affected: 32 - RequestID: flv6k2plme +2025-06-18T14:14:04.781Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 401 - Response time: 1073ms - IP: 192.168.158.144 - User: user_1067 - RequestID: frj6gs00u9r +2025-06-18T14:14:04.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 1002ms - RequestID: bgz9lmxoo6c +2025-06-18T14:14:04.981Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 825ms - RequestID: 3ckqmz24z71 +2025-06-18T14:14:05.081Z [TRACE] auth-service - Operation: payment_processed - Processing time: 446ms - RequestID: d1uf371bu9 +2025-06-18T14:14:05.181Z [TRACE] order-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.30.79 - RequestID: vxyzo9856g +2025-06-18T14:14:05.281Z [INFO] user-service - Operation: cache_miss - Processing time: 643ms - RequestID: rmwb19017np +2025-06-18T14:14:05.381Z [TRACE] user-service - GET /api/v1/users - Status: 401 - Response time: 375ms - IP: 192.168.97.87 - User: user_1099 - RequestID: 0rrpcju122z +2025-06-18T14:14:05.481Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 700ms - IP: 192.168.113.218 - User: user_1056 - RequestID: 5v8wa5cau09 +2025-06-18T14:14:05.581Z [INFO] order-service - Database UPDATE on sessions - Execution time: 495ms - Rows affected: 71 - RequestID: tjtlwp3jbzf +2025-06-18T14:14:05.681Z [TRACE] payment-service - PUT /api/v1/orders - Status: 200 - Response time: 1578ms - IP: 192.168.138.123 - User: user_1026 - RequestID: hcwalhuiyvn +2025-06-18T14:14:05.781Z [TRACE] payment-service - Auth event: password_change - User: user_1028 - IP: 192.168.31.117 - RequestID: 0bmt5fa4z7vt +2025-06-18T14:14:05.881Z [INFO] notification-service - DELETE /api/v1/payments - Status: 400 - Response time: 848ms - IP: 192.168.31.117 - User: user_1016 - RequestID: ux8coegbvdn +2025-06-18T14:14:05.981Z [INFO] auth-service - Database UPDATE on users - Execution time: 174ms - Rows affected: 75 - RequestID: nu3cu5fm2nj +2025-06-18T14:14:06.081Z [TRACE] auth-service - Database DELETE on users - Execution time: 10ms - Rows affected: 20 - RequestID: xou43jfyps +2025-06-18T14:14:06.181Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 148ms - RequestID: pnm6ti4tjgs +2025-06-18T14:14:06.281Z [TRACE] notification-service - POST /api/v1/users - Status: 403 - Response time: 811ms - IP: 192.168.141.100 - User: user_1053 - RequestID: ig0csmgip +2025-06-18T14:14:06.381Z [TRACE] payment-service - Auth event: logout - User: user_1058 - IP: 192.168.170.215 - RequestID: suh2nxxg9l +2025-06-18T14:14:06.481Z [INFO] order-service - Database DELETE on users - Execution time: 35ms - Rows affected: 88 - RequestID: wfcvzgbgqhn +2025-06-18T14:14:06.581Z [DEBUG] order-service - Auth event: password_change - User: user_1006 - IP: 192.168.68.158 - RequestID: 9mri7xyszyi +2025-06-18T14:14:06.681Z [TRACE] notification-service - Operation: notification_queued - Processing time: 589ms - RequestID: 8lojobppq5d +2025-06-18T14:14:06.781Z [TRACE] user-service - Database INSERT on users - Execution time: 431ms - Rows affected: 33 - RequestID: er6ju322ab +2025-06-18T14:14:06.881Z [INFO] order-service - Database DELETE on payments - Execution time: 127ms - Rows affected: 4 - RequestID: yd2ijqfaw7 +2025-06-18T14:14:06.981Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 400 - Response time: 165ms - IP: 192.168.144.38 - User: user_1072 - RequestID: mjwrcqwcc8 +2025-06-18T14:14:07.081Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 400 - Response time: 1026ms - IP: 192.168.229.123 - User: user_1060 - RequestID: 98vwj7r7wrr +2025-06-18T14:14:07.181Z [TRACE] user-service - Database DELETE on products - Execution time: 113ms - Rows affected: 0 - RequestID: psizhyf06 +2025-06-18T14:14:07.281Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 853ms - RequestID: vj1loe1qubh +2025-06-18T14:14:07.381Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 161ms - Rows affected: 97 - RequestID: 17u59hteauz +2025-06-18T14:14:07.481Z [TRACE] notification-service - Auth event: login_success - User: user_1052 - IP: 192.168.32.38 - RequestID: u1ya2qxb6c +2025-06-18T14:14:07.581Z [INFO] user-service - Auth event: login_success - User: user_1038 - IP: 192.168.30.79 - RequestID: rll0y12tu9a +2025-06-18T14:14:07.681Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 895ms - IP: 192.168.174.114 - User: user_1074 - RequestID: q8s3qucw8mk +2025-06-18T14:14:07.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 419ms - RequestID: suljk4uctlh +2025-06-18T14:14:07.881Z [TRACE] order-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.113.218 - RequestID: 4sy531k9sh4 +2025-06-18T14:14:07.981Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 308ms - Rows affected: 80 - RequestID: qskbu3tq9ih +2025-06-18T14:14:08.081Z [DEBUG] user-service - Operation: notification_queued - Processing time: 851ms - RequestID: x7o2bk2yp8j +2025-06-18T14:14:08.181Z [INFO] order-service - Database DELETE on users - Execution time: 338ms - Rows affected: 55 - RequestID: s65tbd5qqyn +2025-06-18T14:14:08.281Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1855ms - IP: 192.168.100.240 - User: user_1012 - RequestID: 31m4oolzm9m +2025-06-18T14:14:08.381Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 326ms - RequestID: 344hatcd21b +2025-06-18T14:14:08.481Z [INFO] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 803ms - IP: 192.168.242.165 - User: user_1064 - RequestID: rnid3pvavpg +2025-06-18T14:14:08.581Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 336ms - Rows affected: 42 - RequestID: pkebgmm0m6i +2025-06-18T14:14:08.681Z [INFO] payment-service - Operation: notification_queued - Processing time: 488ms - RequestID: 14l4z875yqf +2025-06-18T14:14:08.781Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 172ms - Rows affected: 99 - RequestID: 9y183nf3kdj +2025-06-18T14:14:08.881Z [INFO] user-service - Auth event: token_refresh - User: user_1029 - IP: 192.168.33.76 - RequestID: csvjhypokp +2025-06-18T14:14:08.981Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 213ms - RequestID: 559t1s1pcsm +2025-06-18T14:14:09.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.32.38 - RequestID: c678gu0zy9 +2025-06-18T14:14:09.181Z [INFO] auth-service - Operation: notification_queued - Processing time: 514ms - RequestID: jq670qil07a +2025-06-18T14:14:09.281Z [TRACE] inventory-service - Auth event: password_change - User: user_1031 - IP: 192.168.100.240 - RequestID: 87l8ismz7sq +2025-06-18T14:14:09.381Z [DEBUG] payment-service - GET /api/v1/orders - Status: 200 - Response time: 1240ms - IP: 192.168.170.215 - User: user_1031 - RequestID: 8b4h2csoc0q +2025-06-18T14:14:09.481Z [DEBUG] user-service - PUT /api/v1/orders - Status: 201 - Response time: 1827ms - IP: 192.168.138.123 - User: user_1080 - RequestID: ldo6xbprk7b +2025-06-18T14:14:09.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.11.60 - RequestID: ig2eszgqzv +2025-06-18T14:14:09.681Z [TRACE] auth-service - POST /api/v1/inventory - Status: 500 - Response time: 1463ms - IP: 192.168.144.38 - User: user_1016 - RequestID: b80jv18pvwj +2025-06-18T14:14:09.781Z [INFO] notification-service - POST /api/v1/users - Status: 404 - Response time: 348ms - IP: 192.168.11.60 - User: user_1029 - RequestID: 35kleluens1 +2025-06-18T14:14:09.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.79.116 - RequestID: as31rvgtluw +2025-06-18T14:14:09.981Z [DEBUG] order-service - Database UPDATE on products - Execution time: 254ms - Rows affected: 50 - RequestID: vfgp1watxaf +2025-06-18T14:14:10.081Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 425ms - RequestID: 7tpd7e130sj +2025-06-18T14:14:10.181Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1365ms - IP: 192.168.194.41 - User: user_1059 - RequestID: vv4aiadh4tf +2025-06-18T14:14:10.281Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 404 - Response time: 20ms - IP: 192.168.68.128 - User: user_1063 - RequestID: p8kbkipt9nc +2025-06-18T14:14:10.381Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 400 - Response time: 1642ms - IP: 192.168.211.72 - User: user_1099 - RequestID: ffyxlm5j3pc +2025-06-18T14:14:10.481Z [TRACE] notification-service - GET /api/v1/users - Status: 503 - Response time: 1606ms - IP: 192.168.81.206 - User: user_1058 - RequestID: 6amqye0pr6w +2025-06-18T14:14:10.581Z [DEBUG] order-service - Operation: payment_processed - Processing time: 750ms - RequestID: 1q0r9kxi6sh +2025-06-18T14:14:10.681Z [INFO] order-service - Auth event: login_success - User: user_1015 - IP: 192.168.68.128 - RequestID: 72pvigf9ffo +2025-06-18T14:14:10.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1049 - IP: 192.168.13.72 - RequestID: cac9y8slm6 +2025-06-18T14:14:10.881Z [TRACE] notification-service - Operation: notification_queued - Processing time: 989ms - RequestID: ek6sou8dywc +2025-06-18T14:14:10.981Z [INFO] user-service - Database UPDATE on orders - Execution time: 310ms - Rows affected: 94 - RequestID: sriv7hyicwg +2025-06-18T14:14:11.081Z [INFO] inventory-service - Database INSERT on products - Execution time: 62ms - Rows affected: 30 - RequestID: hf9o9zyztp8 +2025-06-18T14:14:11.181Z [DEBUG] user-service - Auth event: logout - User: user_1030 - IP: 192.168.174.114 - RequestID: k724e3wcs6g +2025-06-18T14:14:11.281Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 957ms - RequestID: 6nxowge4axc +2025-06-18T14:14:11.381Z [INFO] order-service - Database UPDATE on sessions - Execution time: 90ms - Rows affected: 99 - RequestID: ztnf5m2xllc +2025-06-18T14:14:11.481Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 403ms - RequestID: 86o7ywt9nv2 +2025-06-18T14:14:11.581Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 71ms - RequestID: y5mu6c5cqh +2025-06-18T14:14:11.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1055 - IP: 192.168.144.38 - RequestID: 5t1yali2zt9 +2025-06-18T14:14:11.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.227.77 - RequestID: wv2nqvpkbrl +2025-06-18T14:14:11.881Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 114ms - RequestID: yi7jv6thghk +2025-06-18T14:14:11.981Z [INFO] user-service - Database SELECT on sessions - Execution time: 9ms - Rows affected: 93 - RequestID: 0x785c8ehur +2025-06-18T14:14:12.081Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 600ms - IP: 192.168.240.169 - User: user_1020 - RequestID: d76ezflur15 +2025-06-18T14:14:12.181Z [TRACE] payment-service - Operation: order_created - Processing time: 968ms - RequestID: jpc9olvdyq8 +2025-06-18T14:14:12.281Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 288ms - RequestID: oqttbx5fo8c +2025-06-18T14:14:12.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1092 - IP: 192.168.64.33 - RequestID: 2av3u9g3k3m +2025-06-18T14:14:12.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 439ms - RequestID: ka695mcnqm +2025-06-18T14:14:12.581Z [TRACE] user-service - Auth event: login_success - User: user_1079 - IP: 192.168.53.133 - RequestID: botqo5wq9vc +2025-06-18T14:14:12.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.44.5 - RequestID: ph2yky6274d +2025-06-18T14:14:12.781Z [DEBUG] order-service - POST /api/v1/payments - Status: 401 - Response time: 1770ms - IP: 192.168.68.128 - User: user_1053 - RequestID: bv6m2xgzw8 +2025-06-18T14:14:12.881Z [DEBUG] notification-service - Auth event: logout - User: user_1088 - IP: 192.168.147.171 - RequestID: 0virse1k4poa +2025-06-18T14:14:12.981Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 124ms - IP: 192.168.147.171 - User: user_1042 - RequestID: 7xw9ifx0z2y +2025-06-18T14:14:13.081Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 502 - Response time: 494ms - IP: 192.168.32.38 - User: user_1002 - RequestID: 5skusuzl26t +2025-06-18T14:14:13.181Z [INFO] user-service - Auth event: login_failed - User: user_1015 - IP: 192.168.85.229 - RequestID: gc30hxbguii +2025-06-18T14:14:13.281Z [TRACE] notification-service - Operation: order_created - Processing time: 866ms - RequestID: 23t27zrh0y1 +2025-06-18T14:14:13.381Z [INFO] user-service - Auth event: login_failed - User: user_1002 - IP: 192.168.97.87 - RequestID: mblzttthsqs +2025-06-18T14:14:13.481Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 439ms - IP: 192.168.141.100 - User: user_1040 - RequestID: gvsysxeo5bp +2025-06-18T14:14:13.581Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 108ms - Rows affected: 54 - RequestID: 9t78b4qk2t +2025-06-18T14:14:13.681Z [INFO] user-service - Operation: webhook_sent - Processing time: 750ms - RequestID: p9ukx7v8wss +2025-06-18T14:14:13.781Z [INFO] notification-service - Database SELECT on users - Execution time: 234ms - Rows affected: 56 - RequestID: dibyf9iubd +2025-06-18T14:14:13.881Z [INFO] payment-service - Database INSERT on products - Execution time: 251ms - Rows affected: 3 - RequestID: dp8yg3b9enh +2025-06-18T14:14:13.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1046 - IP: 192.168.79.143 - RequestID: 436h0ogxley +2025-06-18T14:14:14.081Z [INFO] user-service - Database SELECT on users - Execution time: 376ms - Rows affected: 52 - RequestID: 6bz9xx2yatb +2025-06-18T14:14:14.181Z [INFO] user-service - Auth event: login_failed - User: user_1030 - IP: 192.168.85.229 - RequestID: zbmkyimc98g +2025-06-18T14:14:14.281Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 500 - Response time: 369ms - IP: 192.168.33.76 - User: user_1054 - RequestID: clusba7yocs +2025-06-18T14:14:14.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.104.37 - RequestID: rrtbaa6q23 +2025-06-18T14:14:14.481Z [INFO] payment-service - Auth event: login_failed - User: user_1024 - IP: 192.168.196.226 - RequestID: lm1x8hid1pr +2025-06-18T14:14:14.581Z [INFO] payment-service - Operation: inventory_updated - Processing time: 829ms - RequestID: twe4zcl7byj +2025-06-18T14:14:14.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1060 - IP: 192.168.33.76 - RequestID: byn0tjbumoh +2025-06-18T14:14:14.781Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 395ms - Rows affected: 13 - RequestID: kfk7846nh1a +2025-06-18T14:14:14.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1008 - IP: 192.168.10.184 - RequestID: u2cqu5wo8e +2025-06-18T14:14:14.981Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1402ms - IP: 192.168.196.226 - User: user_1032 - RequestID: y1tl2q8kurr +2025-06-18T14:14:15.081Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 404 - Response time: 147ms - IP: 192.168.247.134 - User: user_1036 - RequestID: 86pz7646vpa +2025-06-18T14:14:15.181Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 473ms - RequestID: b7vofkbp238 +2025-06-18T14:14:15.281Z [INFO] auth-service - Database DELETE on users - Execution time: 138ms - Rows affected: 34 - RequestID: 9w0qvgjyedm +2025-06-18T14:14:15.381Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 59ms - RequestID: 422u4r5jrq4 +2025-06-18T14:14:15.481Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 452ms - Rows affected: 57 - RequestID: 51gh7f9m5rw +2025-06-18T14:14:15.581Z [INFO] payment-service - PUT /api/v1/users - Status: 404 - Response time: 490ms - IP: 192.168.170.215 - User: user_1074 - RequestID: je0i8zvngdk +2025-06-18T14:14:15.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.113.218 - RequestID: po1pyxka61 +2025-06-18T14:14:15.781Z [INFO] payment-service - Database SELECT on orders - Execution time: 410ms - Rows affected: 41 - RequestID: 0m9w1e2zr4d8 +2025-06-18T14:14:15.881Z [TRACE] notification-service - GET /api/v1/users - Status: 404 - Response time: 839ms - IP: 192.168.242.165 - User: user_1058 - RequestID: ahiftyb3kg4 +2025-06-18T14:14:15.981Z [TRACE] user-service - Database UPDATE on payments - Execution time: 58ms - Rows affected: 47 - RequestID: mys3lcgz7 +2025-06-18T14:14:16.081Z [TRACE] payment-service - Operation: cache_miss - Processing time: 74ms - RequestID: iexo2teelao +2025-06-18T14:14:16.181Z [DEBUG] auth-service - Database DELETE on products - Execution time: 500ms - Rows affected: 68 - RequestID: gf2od5d9gvr +2025-06-18T14:14:16.281Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 905ms - RequestID: jvmmi4s17h9 +2025-06-18T14:14:16.381Z [TRACE] user-service - Operation: payment_processed - Processing time: 508ms - RequestID: t45pjo1wxd +2025-06-18T14:14:16.481Z [INFO] order-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.32.38 - RequestID: ostlp7wx98c +2025-06-18T14:14:16.581Z [TRACE] payment-service - Database DELETE on payments - Execution time: 454ms - Rows affected: 31 - RequestID: yulnwypoqcl +2025-06-18T14:14:16.681Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 404 - Response time: 491ms - IP: 192.168.53.133 - User: user_1007 - RequestID: yvufdv1pva +2025-06-18T14:14:16.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.36.218 - RequestID: y3wgjjyck0g +2025-06-18T14:14:16.881Z [TRACE] payment-service - Operation: cache_hit - Processing time: 90ms - RequestID: y9h91cboeiq +2025-06-18T14:14:16.981Z [INFO] notification-service - Database SELECT on orders - Execution time: 31ms - Rows affected: 55 - RequestID: 07l78k87wr1j +2025-06-18T14:14:17.081Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 502 - Response time: 637ms - IP: 192.168.229.123 - User: user_1096 - RequestID: klmym7yk5eg +2025-06-18T14:14:17.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.189.103 - RequestID: mrkqd55io7c +2025-06-18T14:14:17.281Z [INFO] order-service - Auth event: login_failed - User: user_1054 - IP: 192.168.242.165 - RequestID: is6iep3t0n +2025-06-18T14:14:17.381Z [INFO] auth-service - Auth event: logout - User: user_1015 - IP: 192.168.170.215 - RequestID: 6rk8849wuar +2025-06-18T14:14:17.481Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 841ms - RequestID: cfr2eme5knc +2025-06-18T14:14:17.581Z [INFO] auth-service - Auth event: password_change - User: user_1099 - IP: 192.168.196.226 - RequestID: 7p1memnybts +2025-06-18T14:14:17.681Z [TRACE] inventory-service - Auth event: login_success - User: user_1010 - IP: 192.168.31.117 - RequestID: iz6oznftr5q +2025-06-18T14:14:17.781Z [TRACE] auth-service - Operation: cache_hit - Processing time: 982ms - RequestID: u5e2d03e2sd +2025-06-18T14:14:17.881Z [TRACE] notification-service - Operation: cache_hit - Processing time: 1047ms - RequestID: mu94fisc2no +2025-06-18T14:14:17.981Z [INFO] user-service - POST /api/v1/auth/login - Status: 403 - Response time: 1218ms - IP: 192.168.189.103 - User: user_1059 - RequestID: hqxynkyuqu +2025-06-18T14:14:18.081Z [INFO] user-service - Auth event: logout - User: user_1011 - IP: 192.168.196.226 - RequestID: 232tkhk8bsz +2025-06-18T14:14:18.181Z [TRACE] user-service - POST /api/v1/users - Status: 502 - Response time: 272ms - IP: 192.168.53.133 - User: user_1059 - RequestID: yectrzu4ndb +2025-06-18T14:14:18.281Z [INFO] auth-service - Database DELETE on users - Execution time: 298ms - Rows affected: 3 - RequestID: 0zvnoa43zmx +2025-06-18T14:14:18.381Z [INFO] user-service - Auth event: password_change - User: user_1069 - IP: 192.168.97.87 - RequestID: 6whf292rvz9 +2025-06-18T14:14:18.481Z [TRACE] order-service - Database UPDATE on payments - Execution time: 245ms - Rows affected: 2 - RequestID: s8jp3flmpom +2025-06-18T14:14:18.581Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 200 - Response time: 1557ms - IP: 192.168.68.158 - User: user_1027 - RequestID: l3q8ughp5g8 +2025-06-18T14:14:18.681Z [DEBUG] notification-service - Operation: order_created - Processing time: 505ms - RequestID: v2ja1yjn7q +2025-06-18T14:14:18.781Z [TRACE] order-service - Operation: cache_hit - Processing time: 694ms - RequestID: da6xe0mxll +2025-06-18T14:14:18.881Z [DEBUG] user-service - Database SELECT on users - Execution time: 351ms - Rows affected: 73 - RequestID: pm6e551fe7m +2025-06-18T14:14:18.981Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 127ms - Rows affected: 17 - RequestID: nwiy3b9nu8 +2025-06-18T14:14:19.081Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 172ms - RequestID: i3sjrg0xvn +2025-06-18T14:14:19.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1086 - IP: 192.168.36.218 - RequestID: fsi55ld5d05 +2025-06-18T14:14:19.281Z [INFO] payment-service - Auth event: login_failed - User: user_1014 - IP: 192.168.194.41 - RequestID: f3orln3dmo +2025-06-18T14:14:19.381Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1169ms - IP: 192.168.181.225 - User: user_1085 - RequestID: r4fvvn31kml +2025-06-18T14:14:19.481Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 417ms - RequestID: eugoyxq4kc +2025-06-18T14:14:19.581Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 71ms - RequestID: bpr145jik6k +2025-06-18T14:14:19.681Z [INFO] user-service - GET /api/v1/payments - Status: 502 - Response time: 1771ms - IP: 192.168.14.77 - User: user_1091 - RequestID: 471gfj2gzdq +2025-06-18T14:14:19.781Z [INFO] notification-service - GET /api/v1/orders - Status: 401 - Response time: 1357ms - IP: 192.168.196.226 - User: user_1014 - RequestID: 6qx0urup90f +2025-06-18T14:14:19.881Z [INFO] auth-service - Database SELECT on products - Execution time: 338ms - Rows affected: 73 - RequestID: 9r6btij356b +2025-06-18T14:14:19.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1010 - IP: 192.168.33.76 - RequestID: ofpv2721rfn +2025-06-18T14:14:20.081Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 388ms - Rows affected: 47 - RequestID: e6dnjsb2wya +2025-06-18T14:14:20.181Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 502 - Response time: 411ms - IP: 192.168.144.38 - User: user_1062 - RequestID: 3n8ye1ofpzk +2025-06-18T14:14:20.281Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1637ms - IP: 192.168.211.72 - User: user_1023 - RequestID: p4y21z1738k +2025-06-18T14:14:20.381Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 428ms - Rows affected: 22 - RequestID: 8oynbjhqfxw +2025-06-18T14:14:20.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.211.72 - RequestID: afwbylval27 +2025-06-18T14:14:20.581Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 400 - Response time: 901ms - IP: 192.168.79.143 - User: user_1009 - RequestID: mh1k3ilzdy +2025-06-18T14:14:20.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.235.117 - RequestID: nqh62thtgoe +2025-06-18T14:14:20.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1046 - IP: 192.168.28.146 - RequestID: 1mv7062tzjh +2025-06-18T14:14:20.881Z [TRACE] user-service - Operation: notification_queued - Processing time: 474ms - RequestID: jiw0vd3xgn +2025-06-18T14:14:20.981Z [TRACE] auth-service - Auth event: login_success - User: user_1085 - IP: 192.168.10.184 - RequestID: 0jw92njkbgse +2025-06-18T14:14:21.081Z [TRACE] order-service - Operation: notification_queued - Processing time: 633ms - RequestID: 2slyqn53bkk +2025-06-18T14:14:21.181Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 356ms - Rows affected: 94 - RequestID: t7r08oppfc9 +2025-06-18T14:14:21.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.144.38 - RequestID: dmhdygtax7 +2025-06-18T14:14:21.381Z [DEBUG] notification-service - Auth event: login_success - User: user_1040 - IP: 192.168.240.169 - RequestID: lrhi8g0u1e +2025-06-18T14:14:21.481Z [INFO] auth-service - POST /api/v1/orders - Status: 200 - Response time: 1887ms - IP: 192.168.144.38 - User: user_1028 - RequestID: frathf7ynz +2025-06-18T14:14:21.581Z [DEBUG] user-service - Auth event: password_change - User: user_1091 - IP: 192.168.68.158 - RequestID: ozkfx86ck1 +2025-06-18T14:14:21.681Z [TRACE] auth-service - Operation: email_sent - Processing time: 992ms - RequestID: pyalcf8be5g +2025-06-18T14:14:21.781Z [INFO] payment-service - Auth event: login_success - User: user_1096 - IP: 192.168.211.72 - RequestID: 00upp6isflsef +2025-06-18T14:14:21.881Z [INFO] user-service - Database SELECT on payments - Execution time: 304ms - Rows affected: 41 - RequestID: q11pgar5gp +2025-06-18T14:14:21.981Z [INFO] user-service - Database DELETE on products - Execution time: 437ms - Rows affected: 34 - RequestID: 80wh5opfa9k +2025-06-18T14:14:22.081Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 995ms - IP: 192.168.159.94 - User: user_1080 - RequestID: ime6jx8s0n +2025-06-18T14:14:22.181Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 245ms - Rows affected: 63 - RequestID: n58fad8v4m +2025-06-18T14:14:22.281Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 500 - Response time: 1812ms - IP: 192.168.79.116 - User: user_1044 - RequestID: k8htmxa2mlj +2025-06-18T14:14:22.381Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 381ms - Rows affected: 41 - RequestID: 3lgrkla4o2r +2025-06-18T14:14:22.481Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1917ms - IP: 192.168.196.226 - User: user_1099 - RequestID: 4mfjyvk88in +2025-06-18T14:14:22.581Z [DEBUG] auth-service - Operation: email_sent - Processing time: 373ms - RequestID: 3el5pr5bk8f +2025-06-18T14:14:22.681Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.159.94 - RequestID: i5yoiuvgpi +2025-06-18T14:14:22.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 409ms - RequestID: t4ykl9xy8mh +2025-06-18T14:14:22.881Z [INFO] order-service - Operation: email_sent - Processing time: 968ms - RequestID: gzagxfv6ym +2025-06-18T14:14:22.981Z [DEBUG] notification-service - Operation: order_created - Processing time: 415ms - RequestID: hs64xvmm9mc +2025-06-18T14:14:23.081Z [DEBUG] inventory-service - Auth event: logout - User: user_1090 - IP: 192.168.227.77 - RequestID: 0q0ydjziy8db +2025-06-18T14:14:23.181Z [TRACE] order-service - PUT /api/v1/payments - Status: 502 - Response time: 784ms - IP: 192.168.30.79 - User: user_1077 - RequestID: 8wh4in0dusg +2025-06-18T14:14:23.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 51ms - RequestID: esafszxek5 +2025-06-18T14:14:23.381Z [INFO] payment-service - Auth event: logout - User: user_1049 - IP: 192.168.211.72 - RequestID: 3eafdxim944 +2025-06-18T14:14:23.481Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 463ms - Rows affected: 42 - RequestID: f3kz7p1vhvd +2025-06-18T14:14:23.581Z [DEBUG] user-service - Operation: email_sent - Processing time: 392ms - RequestID: xna1ta8n0u9 +2025-06-18T14:14:23.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.30.79 - RequestID: 6cuysfxwxrt +2025-06-18T14:14:23.781Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1819ms - IP: 192.168.36.218 - User: user_1068 - RequestID: yhooops31d +2025-06-18T14:14:23.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1007 - IP: 192.168.32.38 - RequestID: l2ayciaw6d +2025-06-18T14:14:23.981Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 531ms - IP: 192.168.242.165 - User: user_1094 - RequestID: 0w24sbv4sq6k +2025-06-18T14:14:24.081Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 269ms - RequestID: n6xwx4gsmrh +2025-06-18T14:14:24.181Z [INFO] auth-service - Database SELECT on users - Execution time: 61ms - Rows affected: 61 - RequestID: tpjyz6q8uv +2025-06-18T14:14:24.281Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1197ms - IP: 192.168.159.94 - User: user_1023 - RequestID: 1hbcvyqg4oh +2025-06-18T14:14:24.381Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 355ms - RequestID: pzjnel506dr +2025-06-18T14:14:24.481Z [INFO] user-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.240.169 - RequestID: azxpkrhahts +2025-06-18T14:14:24.581Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 500 - Response time: 353ms - IP: 192.168.138.123 - User: user_1073 - RequestID: 65hm8an1p33 +2025-06-18T14:14:24.681Z [TRACE] payment-service - Auth event: logout - User: user_1041 - IP: 192.168.232.72 - RequestID: rg9nkzlg9c +2025-06-18T14:14:24.781Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 404 - Response time: 1029ms - IP: 192.168.158.144 - User: user_1061 - RequestID: 7b3uwk2qsob +2025-06-18T14:14:24.881Z [INFO] order-service - Operation: cache_miss - Processing time: 619ms - RequestID: nhnz51v4sz +2025-06-18T14:14:24.981Z [TRACE] order-service - Database UPDATE on products - Execution time: 382ms - Rows affected: 84 - RequestID: 7dw54sosl4h +2025-06-18T14:14:25.081Z [DEBUG] user-service - Database DELETE on orders - Execution time: 98ms - Rows affected: 16 - RequestID: gvjofgk98hf +2025-06-18T14:14:25.181Z [TRACE] notification-service - Operation: order_created - Processing time: 966ms - RequestID: ap49m7kurmp +2025-06-18T14:14:25.281Z [TRACE] order-service - Operation: order_created - Processing time: 720ms - RequestID: dm6uxzgio9 +2025-06-18T14:14:25.381Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 76ms - Rows affected: 92 - RequestID: cyiap9sledo +2025-06-18T14:14:25.481Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 404 - Response time: 255ms - IP: 192.168.31.117 - User: user_1087 - RequestID: ug72xun8b +2025-06-18T14:14:25.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1078 - IP: 192.168.33.76 - RequestID: 2w48kb16dno +2025-06-18T14:14:25.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.81.206 - RequestID: rrjglxxor6h +2025-06-18T14:14:25.781Z [DEBUG] order-service - Operation: order_created - Processing time: 490ms - RequestID: fke09ci9l1g +2025-06-18T14:14:25.881Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 29ms - IP: 192.168.181.225 - User: user_1066 - RequestID: r1kxpwxxmlc +2025-06-18T14:14:25.981Z [INFO] auth-service - DELETE /api/v1/orders - Status: 201 - Response time: 564ms - IP: 192.168.79.116 - User: user_1008 - RequestID: x36wk4n7tv +2025-06-18T14:14:26.081Z [INFO] payment-service - Database SELECT on sessions - Execution time: 161ms - Rows affected: 10 - RequestID: bxze61r6v4 +2025-06-18T14:14:26.181Z [TRACE] payment-service - Operation: order_created - Processing time: 375ms - RequestID: d5s3ov13of +2025-06-18T14:14:26.281Z [INFO] inventory-service - Auth event: logout - User: user_1079 - IP: 192.168.196.226 - RequestID: doiub736u7r +2025-06-18T14:14:26.381Z [DEBUG] order-service - Auth event: password_change - User: user_1036 - IP: 192.168.229.123 - RequestID: 36iclvmhdg9 +2025-06-18T14:14:26.481Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 459ms - RequestID: jv0w7od5z4s +2025-06-18T14:14:26.581Z [TRACE] auth-service - Auth event: password_change - User: user_1031 - IP: 192.168.167.32 - RequestID: cvu8ppfpr05 +2025-06-18T14:14:26.681Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1029ms - IP: 192.168.189.103 - User: user_1010 - RequestID: 5y1ikl7iqq +2025-06-18T14:14:26.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1090 - IP: 192.168.85.229 - RequestID: wj37rzvzrvo +2025-06-18T14:14:26.881Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 353ms - Rows affected: 0 - RequestID: s3iri325d7j +2025-06-18T14:14:26.981Z [TRACE] payment-service - Operation: payment_processed - Processing time: 575ms - RequestID: ojj4xhaap0r +2025-06-18T14:14:27.081Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 271ms - RequestID: f1lwgrsc95 +2025-06-18T14:14:27.181Z [DEBUG] order-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.14.77 - RequestID: 5hpz6rbm804 +2025-06-18T14:14:27.281Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 57ms - Rows affected: 85 - RequestID: u7yikp7jzle +2025-06-18T14:14:27.381Z [INFO] payment-service - Operation: cache_hit - Processing time: 1029ms - RequestID: mqv4qyns8oe +2025-06-18T14:14:27.481Z [INFO] inventory-service - Database INSERT on products - Execution time: 60ms - Rows affected: 43 - RequestID: 1g0fbzbgz5g +2025-06-18T14:14:27.581Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 111ms - Rows affected: 47 - RequestID: mrq5z9jssol +2025-06-18T14:14:27.681Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.104.37 - RequestID: kl1lmfpcsa8 +2025-06-18T14:14:27.781Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 854ms - RequestID: 95c2duvdl3q +2025-06-18T14:14:27.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.211.72 - RequestID: 7u3e8v9bi35 +2025-06-18T14:14:27.981Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 490ms - Rows affected: 8 - RequestID: r7ag5iwr0e +2025-06-18T14:14:28.081Z [INFO] notification-service - Database SELECT on orders - Execution time: 355ms - Rows affected: 67 - RequestID: zj4fcrcax4h +2025-06-18T14:14:28.181Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 157ms - Rows affected: 74 - RequestID: 0zftzoy4m35p +2025-06-18T14:14:28.281Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 1098ms - IP: 192.168.36.218 - User: user_1042 - RequestID: af2q1zdexjf +2025-06-18T14:14:28.381Z [INFO] payment-service - Operation: cache_hit - Processing time: 700ms - RequestID: wtpiv8xlogn +2025-06-18T14:14:28.481Z [TRACE] payment-service - GET /api/v1/inventory - Status: 403 - Response time: 804ms - IP: 192.168.104.37 - User: user_1085 - RequestID: tt4uod8cw6d +2025-06-18T14:14:28.581Z [INFO] payment-service - Database SELECT on payments - Execution time: 489ms - Rows affected: 56 - RequestID: u2w5hzigem +2025-06-18T14:14:28.681Z [INFO] notification-service - Auth event: login_success - User: user_1034 - IP: 192.168.144.38 - RequestID: pivcjr8lbts +2025-06-18T14:14:28.781Z [INFO] order-service - Operation: payment_processed - Processing time: 262ms - RequestID: qrmfncbc8ql +2025-06-18T14:14:28.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 349ms - RequestID: v4bejj5m5t +2025-06-18T14:14:28.981Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 146ms - Rows affected: 60 - RequestID: 0lv2p1u2t5j +2025-06-18T14:14:29.081Z [INFO] auth-service - GET /api/v1/orders - Status: 201 - Response time: 1421ms - IP: 192.168.31.117 - User: user_1035 - RequestID: nn9dwgd8gtb +2025-06-18T14:14:29.181Z [TRACE] inventory-service - PUT /api/v1/users - Status: 502 - Response time: 1421ms - IP: 192.168.159.94 - User: user_1006 - RequestID: 6ap6ee4l8ad +2025-06-18T14:14:29.281Z [INFO] notification-service - Database DELETE on sessions - Execution time: 209ms - Rows affected: 50 - RequestID: ukyhpg4tpab +2025-06-18T14:14:29.381Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 578ms - RequestID: 2k00ov4qc2n +2025-06-18T14:14:29.481Z [TRACE] inventory-service - Auth event: login_failed - User: user_1069 - IP: 192.168.31.117 - RequestID: 8w1488sppp +2025-06-18T14:14:29.581Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 502 - Response time: 79ms - IP: 192.168.158.144 - User: user_1045 - RequestID: eualhgem05 +2025-06-18T14:14:29.681Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 200 - Response time: 736ms - IP: 192.168.181.225 - User: user_1067 - RequestID: royeb5sjqm +2025-06-18T14:14:29.781Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 367ms - Rows affected: 62 - RequestID: skgcp5bul9s +2025-06-18T14:14:29.881Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1975ms - IP: 192.168.158.144 - User: user_1038 - RequestID: 4y0ko2y5rja +2025-06-18T14:14:29.981Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 593ms - RequestID: serek3haz2j +2025-06-18T14:14:30.081Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 403 - Response time: 1077ms - IP: 192.168.240.169 - User: user_1002 - RequestID: 1cdix71dvr8 +2025-06-18T14:14:30.181Z [DEBUG] order-service - Auth event: login_failed - User: user_1025 - IP: 192.168.81.206 - RequestID: 24cbla082ko +2025-06-18T14:14:30.281Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 500 - Response time: 19ms - IP: 192.168.181.225 - User: user_1001 - RequestID: 53dii58jujb +2025-06-18T14:14:30.381Z [TRACE] auth-service - Auth event: login_success - User: user_1008 - IP: 192.168.104.37 - RequestID: gzcgrpk67rm +2025-06-18T14:14:30.481Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 223ms - Rows affected: 35 - RequestID: v1kdf40eaw +2025-06-18T14:14:30.581Z [TRACE] payment-service - Database INSERT on users - Execution time: 438ms - Rows affected: 80 - RequestID: ovtg53817ri +2025-06-18T14:14:30.681Z [TRACE] notification-service - Database DELETE on payments - Execution time: 122ms - Rows affected: 2 - RequestID: u3j5qudnq1 +2025-06-18T14:14:30.781Z [TRACE] user-service - Database INSERT on orders - Execution time: 460ms - Rows affected: 19 - RequestID: tvsody23sum +2025-06-18T14:14:30.881Z [TRACE] user-service - Database DELETE on payments - Execution time: 303ms - Rows affected: 47 - RequestID: yvnlobqhlxm +2025-06-18T14:14:30.981Z [DEBUG] user-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.138.123 - RequestID: ks1as35cheg +2025-06-18T14:14:31.081Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 404 - Response time: 1674ms - IP: 192.168.100.240 - User: user_1058 - RequestID: p28kzq5te4h +2025-06-18T14:14:31.181Z [TRACE] notification-service - Database DELETE on payments - Execution time: 133ms - Rows affected: 0 - RequestID: a6ek8iczah9 +2025-06-18T14:14:31.281Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1378ms - IP: 192.168.30.79 - User: user_1039 - RequestID: t1o5sewduhf +2025-06-18T14:14:31.381Z [TRACE] notification-service - Operation: cache_miss - Processing time: 1022ms - RequestID: nwk4mplgxoj +2025-06-18T14:14:31.481Z [DEBUG] notification-service - Operation: order_created - Processing time: 352ms - RequestID: 4pqik4jcn3e +2025-06-18T14:14:31.581Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1344ms - IP: 192.168.36.218 - User: user_1048 - RequestID: 612d180o2ty +2025-06-18T14:14:31.681Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 502 - Response time: 1709ms - IP: 192.168.79.143 - User: user_1029 - RequestID: 44mfbk1qb4b +2025-06-18T14:14:31.781Z [INFO] user-service - Operation: notification_queued - Processing time: 692ms - RequestID: 2tbms2jcm7k +2025-06-18T14:14:31.881Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 176ms - RequestID: hxztgx8wwos +2025-06-18T14:14:31.981Z [TRACE] auth-service - Auth event: logout - User: user_1058 - IP: 192.168.31.117 - RequestID: fufbdbbz0wa +2025-06-18T14:14:32.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1075 - IP: 192.168.247.134 - RequestID: 5s7xgcg8i36 +2025-06-18T14:14:32.181Z [INFO] payment-service - DELETE /api/v1/payments - Status: 500 - Response time: 1967ms - IP: 192.168.181.225 - User: user_1044 - RequestID: b5dqyc7ejxs +2025-06-18T14:14:32.281Z [INFO] auth-service - Auth event: logout - User: user_1016 - IP: 192.168.36.218 - RequestID: xigchv0h22o +2025-06-18T14:14:32.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.167.32 - RequestID: 4bhz6auhnq2 +2025-06-18T14:14:32.481Z [DEBUG] user-service - Auth event: logout - User: user_1070 - IP: 192.168.138.123 - RequestID: ofe56j8lyak +2025-06-18T14:14:32.581Z [TRACE] user-service - Operation: order_created - Processing time: 763ms - RequestID: 69p4i6sp3ax +2025-06-18T14:14:32.681Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 1989ms - IP: 192.168.104.37 - User: user_1095 - RequestID: m8yzm6wqnzf +2025-06-18T14:14:32.781Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 201 - Response time: 749ms - IP: 192.168.10.184 - User: user_1068 - RequestID: myke04x4xfs +2025-06-18T14:14:32.881Z [INFO] payment-service - Database INSERT on sessions - Execution time: 392ms - Rows affected: 83 - RequestID: m9m6vz50j6c +2025-06-18T14:14:32.981Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 47ms - Rows affected: 96 - RequestID: fhalyfn6qhv +2025-06-18T14:14:33.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 185ms - RequestID: g6wd0prsshm +2025-06-18T14:14:33.181Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 77ms - Rows affected: 82 - RequestID: tuj9yzplkmt +2025-06-18T14:14:33.281Z [DEBUG] payment-service - Auth event: password_change - User: user_1055 - IP: 192.168.33.76 - RequestID: jnf3633wm4 +2025-06-18T14:14:33.381Z [INFO] inventory-service - POST /api/v1/orders - Status: 201 - Response time: 1942ms - IP: 192.168.68.158 - User: user_1041 - RequestID: 0qnqojws1a9 +2025-06-18T14:14:33.481Z [TRACE] inventory-service - Operation: email_sent - Processing time: 802ms - RequestID: tv2eeyvy5pj +2025-06-18T14:14:33.581Z [INFO] user-service - POST /api/v1/orders - Status: 503 - Response time: 1952ms - IP: 192.168.181.225 - User: user_1017 - RequestID: ynjdo2bw3uj +2025-06-18T14:14:33.681Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1391ms - IP: 192.168.30.79 - User: user_1098 - RequestID: lil02mkdjy9 +2025-06-18T14:14:33.781Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1001ms - IP: 192.168.232.72 - User: user_1035 - RequestID: m7mxs3adnvb +2025-06-18T14:14:33.881Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1490ms - IP: 192.168.174.114 - User: user_1066 - RequestID: 76wsxe23i6o +2025-06-18T14:14:33.981Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 55ms - Rows affected: 18 - RequestID: 12nancz0xjnp +2025-06-18T14:14:34.081Z [INFO] order-service - Operation: email_sent - Processing time: 366ms - RequestID: 0xhbimann03 +2025-06-18T14:14:34.181Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 403 - Response time: 738ms - IP: 192.168.44.5 - User: user_1056 - RequestID: 9z3fybu1n6h +2025-06-18T14:14:34.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 801ms - RequestID: z8laifroeg +2025-06-18T14:14:34.381Z [TRACE] user-service - Auth event: login_success - User: user_1022 - IP: 192.168.97.87 - RequestID: x06ga8u2qun +2025-06-18T14:14:34.481Z [DEBUG] payment-service - Auth event: logout - User: user_1006 - IP: 192.168.44.5 - RequestID: slf04452fpo +2025-06-18T14:14:34.581Z [INFO] user-service - PUT /api/v1/payments - Status: 400 - Response time: 1463ms - IP: 192.168.79.141 - User: user_1003 - RequestID: 8ja89ideqtr +2025-06-18T14:14:34.681Z [DEBUG] auth-service - Operation: order_created - Processing time: 764ms - RequestID: 7b8w3f0g54e +2025-06-18T14:14:34.781Z [INFO] notification-service - PUT /api/v1/users - Status: 502 - Response time: 1660ms - IP: 192.168.81.206 - User: user_1004 - RequestID: zz7o4tt1ax9 +2025-06-18T14:14:34.881Z [INFO] order-service - Database UPDATE on sessions - Execution time: 292ms - Rows affected: 10 - RequestID: npvkeyky0m +2025-06-18T14:14:34.981Z [TRACE] inventory-service - Operation: order_created - Processing time: 241ms - RequestID: ccis07pyqvw +2025-06-18T14:14:35.081Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 871ms - IP: 192.168.33.76 - User: user_1052 - RequestID: pgcn8ql8jm +2025-06-18T14:14:35.181Z [DEBUG] auth-service - GET /api/v1/orders - Status: 502 - Response time: 727ms - IP: 192.168.30.79 - User: user_1027 - RequestID: p26ihrmdfaf +2025-06-18T14:14:35.281Z [TRACE] notification-service - Auth event: logout - User: user_1058 - IP: 192.168.158.144 - RequestID: rlxr7u5irwq +2025-06-18T14:14:35.381Z [INFO] inventory-service - Auth event: password_change - User: user_1065 - IP: 192.168.170.215 - RequestID: vsf2a7kk81b +2025-06-18T14:14:35.481Z [INFO] notification-service - PATCH /api/v1/orders - Status: 500 - Response time: 488ms - IP: 192.168.235.117 - User: user_1013 - RequestID: fj4jusydhr +2025-06-18T14:14:35.581Z [INFO] user-service - Operation: webhook_sent - Processing time: 986ms - RequestID: 76snyppz2uk +2025-06-18T14:14:35.681Z [TRACE] order-service - Database UPDATE on products - Execution time: 34ms - Rows affected: 59 - RequestID: cu5xugtvyb +2025-06-18T14:14:35.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.133.7 - RequestID: evzw642hwef +2025-06-18T14:14:35.881Z [INFO] order-service - Operation: cache_hit - Processing time: 491ms - RequestID: wi20e5qf4kj +2025-06-18T14:14:35.981Z [TRACE] user-service - Auth event: logout - User: user_1060 - IP: 192.168.227.77 - RequestID: 4wa6lt4typ3 +2025-06-18T14:14:36.081Z [INFO] order-service - Operation: webhook_sent - Processing time: 606ms - RequestID: 8iwj6ksdwk3 +2025-06-18T14:14:36.181Z [INFO] auth-service - Database DELETE on orders - Execution time: 124ms - Rows affected: 92 - RequestID: ls35148ua3h +2025-06-18T14:14:36.281Z [TRACE] auth-service - Auth event: logout - User: user_1035 - IP: 192.168.187.199 - RequestID: fgcqqnecfzp +2025-06-18T14:14:36.381Z [INFO] notification-service - Operation: email_sent - Processing time: 569ms - RequestID: 0g58s3wwrg5s +2025-06-18T14:14:36.481Z [TRACE] notification-service - Auth event: login_success - User: user_1087 - IP: 192.168.79.143 - RequestID: zt08pv4p02f +2025-06-18T14:14:36.581Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 367ms - IP: 192.168.170.215 - User: user_1074 - RequestID: l4opbbffdur +2025-06-18T14:14:36.681Z [INFO] inventory-service - Operation: order_created - Processing time: 368ms - RequestID: aumpx77sso5 +2025-06-18T14:14:36.781Z [DEBUG] order-service - Database UPDATE on products - Execution time: 111ms - Rows affected: 39 - RequestID: lxdmzyxb4n +2025-06-18T14:14:36.881Z [INFO] payment-service - Operation: email_sent - Processing time: 368ms - RequestID: 86sus8xyska +2025-06-18T14:14:36.981Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1812ms - IP: 192.168.68.128 - User: user_1095 - RequestID: ubrl6aioke +2025-06-18T14:14:37.081Z [INFO] inventory-service - Operation: cache_hit - Processing time: 987ms - RequestID: wk3d60vnvxk +2025-06-18T14:14:37.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1053 - IP: 192.168.133.7 - RequestID: s8i4xfpxjwn +2025-06-18T14:14:37.281Z [INFO] notification-service - PUT /api/v1/users - Status: 201 - Response time: 1120ms - IP: 192.168.159.94 - User: user_1019 - RequestID: 50t8f5z7f17 +2025-06-18T14:14:37.381Z [INFO] user-service - Operation: payment_processed - Processing time: 188ms - RequestID: rdgj72udwtp +2025-06-18T14:14:37.481Z [INFO] auth-service - POST /api/v1/orders - Status: 502 - Response time: 1226ms - IP: 192.168.10.184 - User: user_1019 - RequestID: 4pb844emlap +2025-06-18T14:14:37.581Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 267ms - RequestID: 4ejridh2mdf +2025-06-18T14:14:37.681Z [TRACE] order-service - Database DELETE on sessions - Execution time: 461ms - Rows affected: 17 - RequestID: trl4it2uons +2025-06-18T14:14:37.781Z [DEBUG] notification-service - Operation: email_sent - Processing time: 544ms - RequestID: 5w1habsb3i5 +2025-06-18T14:14:37.881Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.227.77 - RequestID: zjorkfureg +2025-06-18T14:14:37.981Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 379ms - IP: 192.168.44.5 - User: user_1076 - RequestID: q78yaenmhg +2025-06-18T14:14:38.081Z [DEBUG] payment-service - Auth event: logout - User: user_1015 - IP: 192.168.79.143 - RequestID: hubumvqje2e +2025-06-18T14:14:38.181Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1788ms - IP: 192.168.104.37 - User: user_1038 - RequestID: pafa0cc1k2 +2025-06-18T14:14:38.281Z [INFO] user-service - Database UPDATE on products - Execution time: 340ms - Rows affected: 73 - RequestID: d30ck0zn5df +2025-06-18T14:14:38.381Z [INFO] user-service - Auth event: logout - User: user_1042 - IP: 192.168.79.143 - RequestID: flfhwfyz25j +2025-06-18T14:14:38.481Z [DEBUG] inventory-service - POST /api/v1/users - Status: 503 - Response time: 424ms - IP: 192.168.1.152 - User: user_1031 - RequestID: nv0x91kqpvn +2025-06-18T14:14:38.581Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 404 - Response time: 1689ms - IP: 192.168.32.38 - User: user_1004 - RequestID: ev2kvtvsb2 +2025-06-18T14:14:38.681Z [TRACE] payment-service - Operation: payment_processed - Processing time: 601ms - RequestID: r9my5rmc4hj +2025-06-18T14:14:38.781Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 229ms - Rows affected: 60 - RequestID: qme39vbf78 +2025-06-18T14:14:38.881Z [INFO] notification-service - Operation: webhook_sent - Processing time: 528ms - RequestID: bhp4tqvhe6c +2025-06-18T14:14:38.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.14.77 - RequestID: blkmcra26n5 +2025-06-18T14:14:39.081Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 131ms - Rows affected: 37 - RequestID: 8i8f60xzemq +2025-06-18T14:14:39.181Z [INFO] notification-service - Operation: webhook_sent - Processing time: 568ms - RequestID: 70wa1telca9 +2025-06-18T14:14:39.281Z [DEBUG] payment-service - Auth event: logout - User: user_1009 - IP: 192.168.79.116 - RequestID: 8gc7nabqg4 +2025-06-18T14:14:39.381Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 153ms - RequestID: r47vudxm1a +2025-06-18T14:14:39.481Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1743ms - IP: 192.168.79.116 - User: user_1010 - RequestID: l7g63qqtund +2025-06-18T14:14:39.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 440ms - RequestID: mxgwf4m6yr +2025-06-18T14:14:39.681Z [INFO] auth-service - POST /api/v1/auth/login - Status: 502 - Response time: 1623ms - IP: 192.168.64.33 - User: user_1020 - RequestID: 0325pc9zhmeb +2025-06-18T14:14:39.781Z [INFO] notification-service - Operation: order_created - Processing time: 983ms - RequestID: nlho6wgzfk +2025-06-18T14:14:39.881Z [INFO] auth-service - Operation: notification_queued - Processing time: 295ms - RequestID: 9tbqiqmb1bm +2025-06-18T14:14:39.981Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 946ms - RequestID: duf7h3gq8u6 +2025-06-18T14:14:40.081Z [INFO] inventory-service - Auth event: login_success - User: user_1027 - IP: 192.168.187.199 - RequestID: 6x2gejmkohy +2025-06-18T14:14:40.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1085 - IP: 192.168.31.117 - RequestID: 5y3w6s4hzkj +2025-06-18T14:14:40.281Z [DEBUG] user-service - Operation: cache_miss - Processing time: 499ms - RequestID: c3rqyu3zb3u +2025-06-18T14:14:40.381Z [TRACE] auth-service - Operation: notification_queued - Processing time: 111ms - RequestID: k3d6t9mvicp +2025-06-18T14:14:40.481Z [TRACE] auth-service - Operation: cache_miss - Processing time: 340ms - RequestID: wlbvaxo6yle +2025-06-18T14:14:40.581Z [INFO] user-service - Auth event: login_success - User: user_1052 - IP: 192.168.187.199 - RequestID: 6mfi66vrbh3 +2025-06-18T14:14:40.681Z [DEBUG] auth-service - POST /api/v1/payments - Status: 201 - Response time: 150ms - IP: 192.168.235.117 - User: user_1066 - RequestID: 76pbv1c5gsd +2025-06-18T14:14:40.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 926ms - RequestID: 5v9ajssws3m +2025-06-18T14:14:40.881Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 588ms - RequestID: p9sdmqydxj9 +2025-06-18T14:14:40.981Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 404 - Response time: 503ms - IP: 192.168.31.117 - User: user_1097 - RequestID: j2xrqifd71m +2025-06-18T14:14:41.081Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 749ms - IP: 192.168.181.225 - User: user_1094 - RequestID: 30gz1l6uk7 +2025-06-18T14:14:41.181Z [TRACE] payment-service - Auth event: logout - User: user_1064 - IP: 192.168.79.116 - RequestID: hq0cjdnw8kn +2025-06-18T14:14:41.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.31.117 - RequestID: f9joso6v1w +2025-06-18T14:14:41.381Z [TRACE] notification-service - Database SELECT on orders - Execution time: 261ms - Rows affected: 20 - RequestID: fhvtxbep0nn +2025-06-18T14:14:41.481Z [TRACE] payment-service - Operation: cache_hit - Processing time: 356ms - RequestID: uckjaq0s2u +2025-06-18T14:14:41.581Z [INFO] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 275ms - IP: 192.168.167.32 - User: user_1069 - RequestID: dghazc2e8l +2025-06-18T14:14:41.681Z [TRACE] inventory-service - POST /api/v1/orders - Status: 404 - Response time: 779ms - IP: 192.168.138.123 - User: user_1028 - RequestID: 7b644mo3kuo +2025-06-18T14:14:41.781Z [INFO] order-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1880ms - IP: 192.168.187.199 - User: user_1050 - RequestID: we7jk73olk +2025-06-18T14:14:41.881Z [INFO] order-service - PUT /api/v1/users - Status: 503 - Response time: 695ms - IP: 192.168.196.226 - User: user_1065 - RequestID: 0q8531uvyn8q +2025-06-18T14:14:41.981Z [INFO] user-service - Auth event: logout - User: user_1010 - IP: 192.168.181.225 - RequestID: 13k12lnuu1sd +2025-06-18T14:14:42.081Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 261ms - Rows affected: 12 - RequestID: clf3czsazu +2025-06-18T14:14:42.181Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1770ms - IP: 192.168.181.225 - User: user_1070 - RequestID: pxu4ohk9bzl +2025-06-18T14:14:42.281Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 802ms - IP: 192.168.1.152 - User: user_1019 - RequestID: f43uqltydle +2025-06-18T14:14:42.381Z [INFO] auth-service - Database SELECT on sessions - Execution time: 151ms - Rows affected: 77 - RequestID: 44x0vubbjfj +2025-06-18T14:14:42.481Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 722ms - RequestID: 0h7zeb7yspt5 +2025-06-18T14:14:42.581Z [TRACE] order-service - Operation: cache_miss - Processing time: 524ms - RequestID: wy04x6sns7 +2025-06-18T14:14:42.681Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 32ms - Rows affected: 21 - RequestID: hy2y72pr9ln +2025-06-18T14:14:42.781Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 17ms - Rows affected: 99 - RequestID: 4yxhu9rmfy7 +2025-06-18T14:14:42.881Z [INFO] order-service - DELETE /api/v1/orders - Status: 201 - Response time: 1461ms - IP: 192.168.227.233 - User: user_1038 - RequestID: 875dts5bv4g +2025-06-18T14:14:42.981Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1213ms - IP: 192.168.11.60 - User: user_1098 - RequestID: mb2brl8mdjj +2025-06-18T14:14:43.081Z [DEBUG] payment-service - Operation: order_created - Processing time: 297ms - RequestID: dc0mzig819q +2025-06-18T14:14:43.181Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.227.77 - RequestID: 89wolkb5wx7 +2025-06-18T14:14:43.281Z [TRACE] order-service - Database INSERT on users - Execution time: 405ms - Rows affected: 80 - RequestID: 874ch3276mt +2025-06-18T14:14:43.381Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 401 - Response time: 1125ms - IP: 192.168.36.218 - User: user_1078 - RequestID: 9oed7ufk0aj +2025-06-18T14:14:43.481Z [TRACE] order-service - Auth event: login_failed - User: user_1008 - IP: 192.168.13.72 - RequestID: lpdfhqjc3df +2025-06-18T14:14:43.581Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 383ms - Rows affected: 78 - RequestID: lf8n8qsct9 +2025-06-18T14:14:43.681Z [TRACE] auth-service - Database DELETE on products - Execution time: 5ms - Rows affected: 30 - RequestID: cvw6e16qus +2025-06-18T14:14:43.781Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 23ms - Rows affected: 5 - RequestID: zl1e4dxqd2 +2025-06-18T14:14:43.881Z [DEBUG] user-service - Operation: payment_processed - Processing time: 932ms - RequestID: ju8w76d0wxj +2025-06-18T14:14:43.981Z [TRACE] order-service - Database SELECT on users - Execution time: 169ms - Rows affected: 50 - RequestID: 7ffobmoqpc7 +2025-06-18T14:14:44.081Z [TRACE] auth-service - Auth event: login_success - User: user_1006 - IP: 192.168.97.87 - RequestID: 9ub3ekuwd09 +2025-06-18T14:14:44.181Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 463ms - Rows affected: 34 - RequestID: d20wws07e9 +2025-06-18T14:14:44.281Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1083ms - IP: 192.168.196.226 - User: user_1007 - RequestID: qk724oqnoi +2025-06-18T14:14:44.381Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 288ms - Rows affected: 98 - RequestID: avp5z20ke6l +2025-06-18T14:14:44.481Z [INFO] user-service - PUT /api/v1/orders - Status: 400 - Response time: 249ms - IP: 192.168.1.152 - User: user_1095 - RequestID: lu5ki54plm9 +2025-06-18T14:14:44.581Z [INFO] user-service - GET /api/v1/payments - Status: 200 - Response time: 1326ms - IP: 192.168.79.116 - User: user_1091 - RequestID: om7r44jdtao +2025-06-18T14:14:44.681Z [TRACE] payment-service - Database DELETE on users - Execution time: 72ms - Rows affected: 39 - RequestID: 3p53cjrtmxf +2025-06-18T14:14:44.781Z [TRACE] order-service - Auth event: password_change - User: user_1067 - IP: 192.168.232.72 - RequestID: ev5uibic1zr +2025-06-18T14:14:44.881Z [INFO] user-service - POST /api/v1/auth/login - Status: 403 - Response time: 23ms - IP: 192.168.181.225 - User: user_1044 - RequestID: ilqfxofg0i +2025-06-18T14:14:44.981Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 404 - Response time: 349ms - IP: 192.168.113.218 - User: user_1078 - RequestID: n0oowtlnckb +2025-06-18T14:14:45.081Z [DEBUG] order-service - Auth event: logout - User: user_1091 - IP: 192.168.79.116 - RequestID: 62zw2cjk8v5 +2025-06-18T14:14:45.181Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 614ms - RequestID: 1doys7q6est +2025-06-18T14:14:45.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.53.133 - RequestID: x2p79qcq1p +2025-06-18T14:14:45.381Z [DEBUG] auth-service - Operation: email_sent - Processing time: 1004ms - RequestID: 1gyuz1ybqlw +2025-06-18T14:14:45.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 226ms - RequestID: m3e7xwt65o +2025-06-18T14:14:45.581Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 60ms - RequestID: 7q8rztsza5 +2025-06-18T14:14:45.681Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 389ms - Rows affected: 47 - RequestID: istfrzm9agc +2025-06-18T14:14:45.781Z [INFO] user-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1764ms - IP: 192.168.141.100 - User: user_1046 - RequestID: p8caiec5b3k +2025-06-18T14:14:45.881Z [TRACE] payment-service - Database DELETE on products - Execution time: 223ms - Rows affected: 53 - RequestID: 32xc9wcgs3e +2025-06-18T14:14:45.981Z [INFO] notification-service - Database DELETE on users - Execution time: 426ms - Rows affected: 7 - RequestID: 71elrh39w6h +2025-06-18T14:14:46.081Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 97ms - RequestID: xd7ru6tqd0q +2025-06-18T14:14:46.181Z [INFO] notification-service - Operation: email_sent - Processing time: 363ms - RequestID: 8gceghri8lr +2025-06-18T14:14:46.281Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 258ms - RequestID: lgho90jeox +2025-06-18T14:14:46.381Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 421ms - Rows affected: 88 - RequestID: xb601qvnrr8 +2025-06-18T14:14:46.481Z [INFO] user-service - Database INSERT on payments - Execution time: 116ms - Rows affected: 90 - RequestID: t3ai700itjn +2025-06-18T14:14:46.581Z [TRACE] order-service - Operation: order_created - Processing time: 492ms - RequestID: lxl77gogzve +2025-06-18T14:14:46.681Z [TRACE] notification-service - Operation: cache_hit - Processing time: 732ms - RequestID: eq4r5r6ri2g +2025-06-18T14:14:46.781Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 201 - Response time: 224ms - IP: 192.168.10.184 - User: user_1098 - RequestID: ndjyuwonmn +2025-06-18T14:14:46.881Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 147ms - Rows affected: 56 - RequestID: vh2gzscwvw +2025-06-18T14:14:46.981Z [TRACE] user-service - Auth event: login_success - User: user_1027 - IP: 192.168.68.128 - RequestID: 2btd838gcu2 +2025-06-18T14:14:47.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1085 - IP: 192.168.44.5 - RequestID: 4fwknubfwot +2025-06-18T14:14:47.181Z [DEBUG] user-service - Operation: order_created - Processing time: 1015ms - RequestID: l75ioso91kq +2025-06-18T14:14:47.281Z [TRACE] inventory-service - Auth event: password_change - User: user_1013 - IP: 192.168.79.143 - RequestID: j2r5clbyn1 +2025-06-18T14:14:47.381Z [TRACE] notification-service - Database INSERT on payments - Execution time: 435ms - Rows affected: 6 - RequestID: su61p1qmxo +2025-06-18T14:14:47.481Z [INFO] inventory-service - Database DELETE on products - Execution time: 59ms - Rows affected: 41 - RequestID: oae9dwh23rq +2025-06-18T14:14:47.581Z [TRACE] user-service - PUT /api/v1/orders - Status: 500 - Response time: 195ms - IP: 192.168.64.33 - User: user_1073 - RequestID: j06lkzrs6le +2025-06-18T14:14:47.681Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 400ms - RequestID: w310qcrrupf +2025-06-18T14:14:47.781Z [INFO] order-service - Auth event: login_success - User: user_1017 - IP: 192.168.104.37 - RequestID: n9fewf8ukmg +2025-06-18T14:14:47.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 92ms - RequestID: n3g4mjtk4n +2025-06-18T14:14:47.981Z [INFO] payment-service - Database SELECT on orders - Execution time: 487ms - Rows affected: 15 - RequestID: ns77hjk1gz +2025-06-18T14:14:48.081Z [TRACE] payment-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.174.114 - RequestID: 0rtbdt3uvkd +2025-06-18T14:14:48.181Z [DEBUG] payment-service - POST /api/v1/orders - Status: 200 - Response time: 618ms - IP: 192.168.64.33 - User: user_1083 - RequestID: i5kgst6ehcq +2025-06-18T14:14:48.281Z [TRACE] user-service - PATCH /api/v1/users - Status: 401 - Response time: 1083ms - IP: 192.168.1.152 - User: user_1026 - RequestID: tnw7ir1dl1 +2025-06-18T14:14:48.381Z [TRACE] user-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.174.114 - RequestID: 8d7p9auu7aw +2025-06-18T14:14:48.481Z [TRACE] payment-service - Operation: payment_processed - Processing time: 661ms - RequestID: 1c1oqhgn9g8i +2025-06-18T14:14:48.581Z [TRACE] payment-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.11.60 - RequestID: gn50pdns07q +2025-06-18T14:14:48.681Z [INFO] payment-service - Auth event: login_failed - User: user_1043 - IP: 192.168.247.134 - RequestID: 9p94t9dwtku +2025-06-18T14:14:48.781Z [INFO] user-service - Auth event: logout - User: user_1083 - IP: 192.168.44.5 - RequestID: whxgpgnrqy +2025-06-18T14:14:48.881Z [DEBUG] notification-service - Database INSERT on users - Execution time: 371ms - Rows affected: 57 - RequestID: djfgbohsi0e +2025-06-18T14:14:48.981Z [INFO] payment-service - Database UPDATE on payments - Execution time: 22ms - Rows affected: 9 - RequestID: 0z0nnlzklab +2025-06-18T14:14:49.081Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 409ms - Rows affected: 7 - RequestID: 935by7lov9n +2025-06-18T14:14:49.181Z [INFO] notification-service - POST /api/v1/payments - Status: 400 - Response time: 331ms - IP: 192.168.167.32 - User: user_1062 - RequestID: und18ldchg +2025-06-18T14:14:49.281Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 255ms - RequestID: bz1v7et5utq +2025-06-18T14:14:49.381Z [TRACE] auth-service - Database INSERT on users - Execution time: 465ms - Rows affected: 35 - RequestID: 8z8pt735j8m +2025-06-18T14:14:49.481Z [INFO] auth-service - Database INSERT on payments - Execution time: 379ms - Rows affected: 62 - RequestID: vhv2ynkso2e +2025-06-18T14:14:49.581Z [DEBUG] auth-service - Auth event: login_success - User: user_1092 - IP: 192.168.44.5 - RequestID: dnorala2er4 +2025-06-18T14:14:49.681Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 348ms - Rows affected: 84 - RequestID: okgeepx1n1d +2025-06-18T14:14:49.781Z [DEBUG] user-service - Database SELECT on orders - Execution time: 162ms - Rows affected: 96 - RequestID: o87j1rznkk +2025-06-18T14:14:49.881Z [INFO] order-service - Operation: webhook_sent - Processing time: 165ms - RequestID: 9z2ag18mne6 +2025-06-18T14:14:49.981Z [DEBUG] order-service - Operation: cache_miss - Processing time: 327ms - RequestID: piaz4s9hlt +2025-06-18T14:14:50.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1059 - IP: 192.168.79.116 - RequestID: 0r2hkju9bdgm +2025-06-18T14:14:50.181Z [TRACE] order-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.32.38 - RequestID: 93mppvcd3k +2025-06-18T14:14:50.281Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 302ms - Rows affected: 70 - RequestID: a0d9wsi8va +2025-06-18T14:14:50.381Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 55ms - Rows affected: 8 - RequestID: psov2i74epm +2025-06-18T14:14:50.481Z [DEBUG] user-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.104.37 - RequestID: bym5xmmcg8t +2025-06-18T14:14:50.581Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 286ms - Rows affected: 86 - RequestID: z3l3aa45jwo +2025-06-18T14:14:50.681Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 692ms - RequestID: wnirkssl3ah +2025-06-18T14:14:50.781Z [TRACE] user-service - Database UPDATE on products - Execution time: 195ms - Rows affected: 16 - RequestID: mcfgoizqm6 +2025-06-18T14:14:50.881Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 226ms - Rows affected: 5 - RequestID: vzezbae772 +2025-06-18T14:14:50.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 992ms - RequestID: 4ttwjcrf0nt +2025-06-18T14:14:51.081Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 419ms - Rows affected: 92 - RequestID: g7maydp8anc +2025-06-18T14:14:51.181Z [DEBUG] user-service - Auth event: logout - User: user_1060 - IP: 192.168.46.63 - RequestID: n7kvebt53d +2025-06-18T14:14:51.281Z [TRACE] order-service - Auth event: login_failed - User: user_1073 - IP: 192.168.141.100 - RequestID: x30lh0siaxk +2025-06-18T14:14:51.381Z [INFO] auth-service - Database INSERT on orders - Execution time: 8ms - Rows affected: 80 - RequestID: duhxjjra2ud +2025-06-18T14:14:51.481Z [INFO] notification-service - Auth event: login_failed - User: user_1037 - IP: 192.168.79.116 - RequestID: x96dlrxc7yh +2025-06-18T14:14:51.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.147.171 - RequestID: g0q23x9g90c +2025-06-18T14:14:51.681Z [TRACE] notification-service - Auth event: password_change - User: user_1003 - IP: 192.168.46.63 - RequestID: 9rdyuli885f +2025-06-18T14:14:51.781Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 966ms - IP: 192.168.242.165 - User: user_1084 - RequestID: exwuuycmrut +2025-06-18T14:14:51.881Z [TRACE] order-service - GET /api/v1/auth/login - Status: 500 - Response time: 202ms - IP: 192.168.31.117 - User: user_1059 - RequestID: rg6m85qgz6q +2025-06-18T14:14:51.981Z [INFO] user-service - Auth event: logout - User: user_1077 - IP: 192.168.104.37 - RequestID: 2opcmu691eg +2025-06-18T14:14:52.081Z [INFO] user-service - Auth event: password_change - User: user_1028 - IP: 192.168.211.72 - RequestID: xzpz99royr +2025-06-18T14:14:52.181Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 992ms - RequestID: oz8ygt01nnp +2025-06-18T14:14:52.281Z [INFO] payment-service - Operation: email_sent - Processing time: 564ms - RequestID: u8d0vrmk6y8 +2025-06-18T14:14:52.381Z [DEBUG] order-service - Operation: order_created - Processing time: 533ms - RequestID: 47uwti8luad +2025-06-18T14:14:52.481Z [TRACE] order-service - Operation: payment_processed - Processing time: 254ms - RequestID: uh5q1ts7ece +2025-06-18T14:14:52.581Z [DEBUG] payment-service - Auth event: logout - User: user_1089 - IP: 192.168.240.169 - RequestID: 9gayxo5jz3u +2025-06-18T14:14:52.681Z [TRACE] user-service - Database UPDATE on orders - Execution time: 158ms - Rows affected: 7 - RequestID: chs7fx75an +2025-06-18T14:14:52.781Z [INFO] notification-service - Operation: email_sent - Processing time: 491ms - RequestID: ejwxl30h628 +2025-06-18T14:14:52.881Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 118ms - Rows affected: 73 - RequestID: dvgokdbxr9i +2025-06-18T14:14:52.981Z [TRACE] user-service - Operation: notification_queued - Processing time: 418ms - RequestID: yeb8yx7wfrg +2025-06-18T14:14:53.081Z [DEBUG] notification-service - Auth event: logout - User: user_1093 - IP: 192.168.64.33 - RequestID: fjzkqvqx4f +2025-06-18T14:14:53.181Z [TRACE] user-service - PUT /api/v1/users - Status: 200 - Response time: 708ms - IP: 192.168.30.79 - User: user_1086 - RequestID: pjagei72d3 +2025-06-18T14:14:53.281Z [DEBUG] auth-service - POST /api/v1/payments - Status: 503 - Response time: 132ms - IP: 192.168.81.206 - User: user_1012 - RequestID: dyuvuylkyg +2025-06-18T14:14:53.381Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 304ms - Rows affected: 60 - RequestID: 5yc2glnbcfi +2025-06-18T14:14:53.481Z [TRACE] order-service - Operation: inventory_updated - Processing time: 131ms - RequestID: so8ekn4eewn +2025-06-18T14:14:53.581Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 201 - Response time: 98ms - IP: 192.168.30.79 - User: user_1079 - RequestID: 1s93up4q0x4 +2025-06-18T14:14:53.681Z [INFO] payment-service - Database INSERT on products - Execution time: 244ms - Rows affected: 5 - RequestID: iz7cf599po +2025-06-18T14:14:53.781Z [INFO] notification-service - Auth event: login_success - User: user_1087 - IP: 192.168.44.5 - RequestID: oc6hsghz03r +2025-06-18T14:14:53.881Z [INFO] notification-service - Database INSERT on sessions - Execution time: 310ms - Rows affected: 77 - RequestID: xnlpgh3z1ms +2025-06-18T14:14:53.981Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 339ms - IP: 192.168.46.63 - User: user_1025 - RequestID: 3pb1gy1u5r3 +2025-06-18T14:14:54.081Z [TRACE] order-service - Database SELECT on users - Execution time: 456ms - Rows affected: 91 - RequestID: zn690lnfsf +2025-06-18T14:14:54.181Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 692ms - RequestID: abmbqckaf6g +2025-06-18T14:14:54.281Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 273ms - Rows affected: 78 - RequestID: u6v2jr2jrm +2025-06-18T14:14:54.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.196.226 - RequestID: yxatxw1euc +2025-06-18T14:14:54.481Z [INFO] auth-service - Database DELETE on users - Execution time: 27ms - Rows affected: 43 - RequestID: a1n1b4f90y +2025-06-18T14:14:54.581Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 345ms - Rows affected: 96 - RequestID: ia0k4mna8vs +2025-06-18T14:14:54.681Z [INFO] notification-service - Operation: inventory_updated - Processing time: 603ms - RequestID: 33tgd1mpejq +2025-06-18T14:14:54.781Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 901ms - RequestID: yt3jnguo6a +2025-06-18T14:14:54.881Z [TRACE] order-service - Operation: notification_queued - Processing time: 706ms - RequestID: o3egamu99m +2025-06-18T14:14:54.981Z [TRACE] notification-service - Database DELETE on users - Execution time: 213ms - Rows affected: 30 - RequestID: vf1fs787ue +2025-06-18T14:14:55.081Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 795ms - RequestID: lye2sy9pr5 +2025-06-18T14:14:55.181Z [INFO] order-service - Operation: notification_queued - Processing time: 775ms - RequestID: 338h0dyh1mt +2025-06-18T14:14:55.281Z [TRACE] inventory-service - Auth event: password_change - User: user_1000 - IP: 192.168.104.37 - RequestID: wqznbh8f00a +2025-06-18T14:14:55.381Z [DEBUG] order-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.53.133 - RequestID: hjcdjlyxu1 +2025-06-18T14:14:55.481Z [DEBUG] notification-service - Database DELETE on products - Execution time: 273ms - Rows affected: 4 - RequestID: hjrb9zcgtkk +2025-06-18T14:14:55.581Z [INFO] auth-service - Database INSERT on products - Execution time: 307ms - Rows affected: 99 - RequestID: 40ce1xa4qr8 +2025-06-18T14:14:55.681Z [DEBUG] order-service - Auth event: logout - User: user_1063 - IP: 192.168.141.100 - RequestID: 2a1e468yw6a +2025-06-18T14:14:55.781Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 613ms - RequestID: mfskw1rcj7 +2025-06-18T14:14:55.881Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 404 - Response time: 1409ms - IP: 192.168.113.218 - User: user_1088 - RequestID: 8px1b7k73bs +2025-06-18T14:14:55.981Z [DEBUG] user-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.97.87 - RequestID: zprmm99nhq +2025-06-18T14:14:56.081Z [INFO] auth-service - Operation: payment_processed - Processing time: 52ms - RequestID: ik3noorvoxe +2025-06-18T14:14:56.181Z [TRACE] auth-service - Operation: order_created - Processing time: 452ms - RequestID: kj77ro56uxq +2025-06-18T14:14:56.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1001 - IP: 192.168.194.41 - RequestID: 9564vb5213v +2025-06-18T14:14:56.381Z [INFO] user-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.44.5 - RequestID: y3wzdvr871e +2025-06-18T14:14:56.481Z [INFO] user-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.97.87 - RequestID: o27fq396onn +2025-06-18T14:14:56.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 843ms - RequestID: tihbx065fq +2025-06-18T14:14:56.681Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 191ms - Rows affected: 48 - RequestID: vb486jthkb +2025-06-18T14:14:56.781Z [INFO] order-service - Operation: webhook_sent - Processing time: 179ms - RequestID: i76sqhoobak +2025-06-18T14:14:56.881Z [DEBUG] notification-service - GET /api/v1/payments - Status: 502 - Response time: 790ms - IP: 192.168.189.103 - User: user_1061 - RequestID: 3ebjh93yc63 +2025-06-18T14:14:56.981Z [INFO] user-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.187.199 - RequestID: amnd6t7pfj4 +2025-06-18T14:14:57.081Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 531ms - RequestID: sjvi86dzcxr +2025-06-18T14:14:57.181Z [INFO] user-service - GET /api/v1/orders - Status: 201 - Response time: 1615ms - IP: 192.168.97.87 - User: user_1080 - RequestID: tw4sxe0bxel +2025-06-18T14:14:57.281Z [INFO] payment-service - Auth event: login_success - User: user_1041 - IP: 192.168.235.117 - RequestID: 5kzfo2l11fd +2025-06-18T14:14:57.381Z [TRACE] notification-service - Database INSERT on users - Execution time: 459ms - Rows affected: 23 - RequestID: tqkafiedwp +2025-06-18T14:14:57.481Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 486ms - Rows affected: 19 - RequestID: 0vns4tbxvom +2025-06-18T14:14:57.581Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 309ms - Rows affected: 41 - RequestID: bfky0lmbedv +2025-06-18T14:14:57.681Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 152ms - Rows affected: 47 - RequestID: mtnfkim0l0c +2025-06-18T14:14:57.781Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 99ms - Rows affected: 84 - RequestID: nwbi7teqs4d +2025-06-18T14:14:57.881Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 403 - Response time: 651ms - IP: 192.168.68.158 - User: user_1061 - RequestID: jp7kiggqcy +2025-06-18T14:14:57.981Z [TRACE] user-service - Database INSERT on orders - Execution time: 198ms - Rows affected: 82 - RequestID: z7vnjqo8v +2025-06-18T14:14:58.081Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.196.226 - RequestID: ddhsupj574 +2025-06-18T14:14:58.181Z [INFO] notification-service - Database SELECT on users - Execution time: 79ms - Rows affected: 62 - RequestID: vol98h4rtxn +2025-06-18T14:14:58.281Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 453ms - Rows affected: 59 - RequestID: 7piokjbssq6 +2025-06-18T14:14:58.381Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 433ms - RequestID: t5bvmmjc3ya +2025-06-18T14:14:58.481Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 362ms - Rows affected: 7 - RequestID: xerpvi7hzl +2025-06-18T14:14:58.581Z [TRACE] auth-service - Database SELECT on products - Execution time: 261ms - Rows affected: 54 - RequestID: 7yryk5j8duc +2025-06-18T14:14:58.681Z [TRACE] user-service - Auth event: logout - User: user_1064 - IP: 192.168.11.60 - RequestID: w9nhneoi2w +2025-06-18T14:14:58.781Z [DEBUG] auth-service - POST /api/v1/orders - Status: 401 - Response time: 1469ms - IP: 192.168.158.144 - User: user_1061 - RequestID: crr9eble67o +2025-06-18T14:14:58.881Z [TRACE] user-service - Database UPDATE on orders - Execution time: 91ms - Rows affected: 45 - RequestID: hiu29e9cyw6 +2025-06-18T14:14:58.981Z [TRACE] user-service - Auth event: logout - User: user_1094 - IP: 192.168.85.229 - RequestID: kbo4yv9fkn +2025-06-18T14:14:59.081Z [INFO] order-service - Operation: cache_hit - Processing time: 759ms - RequestID: y3ikylksy2r +2025-06-18T14:14:59.181Z [DEBUG] user-service - GET /api/v1/payments - Status: 404 - Response time: 1160ms - IP: 192.168.104.37 - User: user_1069 - RequestID: 35alh56me9o +2025-06-18T14:14:59.281Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 906ms - RequestID: 7u8qhr3fztv +2025-06-18T14:14:59.381Z [TRACE] user-service - Operation: payment_processed - Processing time: 1049ms - RequestID: vftavm7jk7s +2025-06-18T14:14:59.481Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 201 - Response time: 181ms - IP: 192.168.167.32 - User: user_1049 - RequestID: ysifk77shvc +2025-06-18T14:14:59.581Z [DEBUG] order-service - Operation: payment_processed - Processing time: 423ms - RequestID: 8t3yx7fm04b +2025-06-18T14:14:59.681Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 219ms - RequestID: 8b2uo1e1cca +2025-06-18T14:14:59.781Z [TRACE] order-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.79.141 - RequestID: brzal8ok3r +2025-06-18T14:14:59.881Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 782ms - RequestID: wa7a8me7f9m +2025-06-18T14:14:59.981Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 503 - Response time: 90ms - IP: 192.168.147.171 - User: user_1073 - RequestID: ymkgf948fqp +2025-06-18T14:15:00.081Z [INFO] notification-service - Operation: cache_miss - Processing time: 182ms - RequestID: k4q00fq095c +2025-06-18T14:15:00.181Z [INFO] auth-service - PATCH /api/v1/users - Status: 401 - Response time: 703ms - IP: 192.168.14.77 - User: user_1061 - RequestID: 2h8jnd7zj16 +2025-06-18T14:15:00.281Z [DEBUG] order-service - Auth event: login_failed - User: user_1031 - IP: 192.168.181.225 - RequestID: lvz7z3gl6y +2025-06-18T14:15:00.381Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 110ms - RequestID: 60tztokqrvy +2025-06-18T14:15:00.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.113.218 - RequestID: 52c1doomgwj +2025-06-18T14:15:00.581Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 981ms - RequestID: ec0db4esb3s +2025-06-18T14:15:00.681Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 370ms - Rows affected: 83 - RequestID: sleovtq4am +2025-06-18T14:15:00.781Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 401 - Response time: 400ms - IP: 192.168.100.240 - User: user_1005 - RequestID: zop30pgkuo +2025-06-18T14:15:00.881Z [TRACE] order-service - Operation: cache_miss - Processing time: 126ms - RequestID: kywcngl4j8d +2025-06-18T14:15:00.981Z [INFO] auth-service - Operation: order_created - Processing time: 1029ms - RequestID: pirkwq1ns9r +2025-06-18T14:15:01.081Z [DEBUG] payment-service - Operation: email_sent - Processing time: 420ms - RequestID: rk0alux7muc +2025-06-18T14:15:01.181Z [TRACE] payment-service - GET /api/v1/orders - Status: 500 - Response time: 1365ms - IP: 192.168.79.141 - User: user_1046 - RequestID: rtqprvh0xoh +2025-06-18T14:15:01.281Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 375ms - Rows affected: 82 - RequestID: 45vvo2lda6h +2025-06-18T14:15:01.381Z [DEBUG] order-service - Database INSERT on products - Execution time: 496ms - Rows affected: 82 - RequestID: nw822rlkvga +2025-06-18T14:15:01.481Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 782ms - IP: 192.168.187.199 - User: user_1018 - RequestID: zmlm2vvmt2 +2025-06-18T14:15:01.581Z [INFO] auth-service - Database SELECT on payments - Execution time: 432ms - Rows affected: 78 - RequestID: 8ol4ratkufy +2025-06-18T14:15:01.681Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 304ms - Rows affected: 6 - RequestID: vu3775v62nk +2025-06-18T14:15:01.781Z [TRACE] payment-service - Operation: cache_miss - Processing time: 135ms - RequestID: kp3yz1ixfne +2025-06-18T14:15:01.881Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 321ms - Rows affected: 4 - RequestID: c7705m7k23b +2025-06-18T14:15:01.981Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 293ms - Rows affected: 8 - RequestID: qoy9o7a6vrq +2025-06-18T14:15:02.081Z [DEBUG] user-service - Database INSERT on payments - Execution time: 49ms - Rows affected: 58 - RequestID: psqm0zhze7a +2025-06-18T14:15:02.181Z [INFO] order-service - Operation: cache_hit - Processing time: 395ms - RequestID: way90atkau +2025-06-18T14:15:02.281Z [DEBUG] order-service - Auth event: login_success - User: user_1077 - IP: 192.168.133.7 - RequestID: foyr3jebogp +2025-06-18T14:15:02.381Z [INFO] notification-service - Operation: payment_processed - Processing time: 261ms - RequestID: dh86ze51fb4 +2025-06-18T14:15:02.481Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1312ms - IP: 192.168.68.158 - User: user_1052 - RequestID: btfdaxb031v +2025-06-18T14:15:02.581Z [DEBUG] notification-service - Auth event: logout - User: user_1094 - IP: 192.168.235.117 - RequestID: x42r8pc5eb +2025-06-18T14:15:02.681Z [TRACE] payment-service - Database UPDATE on products - Execution time: 423ms - Rows affected: 78 - RequestID: qfe4c8r7qh +2025-06-18T14:15:02.781Z [INFO] inventory-service - Auth event: logout - User: user_1037 - IP: 192.168.28.146 - RequestID: z30knxjzcb +2025-06-18T14:15:02.881Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 408ms - RequestID: f7tsvbnayfm +2025-06-18T14:15:02.981Z [INFO] payment-service - Auth event: login_failed - User: user_1047 - IP: 192.168.167.32 - RequestID: 39d68ibwfxh +2025-06-18T14:15:03.081Z [INFO] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 73ms - IP: 192.168.113.218 - User: user_1007 - RequestID: sbjjnulhzq +2025-06-18T14:15:03.181Z [TRACE] inventory-service - Auth event: login_failed - User: user_1092 - IP: 192.168.64.33 - RequestID: t3bv9erw4x8 +2025-06-18T14:15:03.281Z [TRACE] user-service - Database DELETE on products - Execution time: 378ms - Rows affected: 23 - RequestID: yv5qs0mq6u +2025-06-18T14:15:03.381Z [INFO] order-service - GET /api/v1/orders - Status: 200 - Response time: 1409ms - IP: 192.168.33.76 - User: user_1031 - RequestID: 96ksdce6dni +2025-06-18T14:15:03.481Z [TRACE] order-service - Database SELECT on products - Execution time: 319ms - Rows affected: 54 - RequestID: qt1brymdng +2025-06-18T14:15:03.581Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1618ms - IP: 192.168.79.141 - User: user_1091 - RequestID: 5hmg5wc1xpc +2025-06-18T14:15:03.681Z [INFO] inventory-service - Operation: cache_hit - Processing time: 52ms - RequestID: gyqb8njk45p +2025-06-18T14:15:03.781Z [DEBUG] notification-service - Auth event: password_change - User: user_1051 - IP: 192.168.81.206 - RequestID: pny8yng27s9 +2025-06-18T14:15:03.881Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 230ms - Rows affected: 97 - RequestID: n63ym4gsqpd +2025-06-18T14:15:03.981Z [TRACE] inventory-service - Database INSERT on products - Execution time: 335ms - Rows affected: 71 - RequestID: lt1cggm50v +2025-06-18T14:15:04.081Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1773ms - IP: 192.168.79.143 - User: user_1073 - RequestID: 5feqe6kzz6g +2025-06-18T14:15:04.181Z [INFO] notification-service - Auth event: password_change - User: user_1085 - IP: 192.168.196.226 - RequestID: n01bg7mnkx +2025-06-18T14:15:04.281Z [DEBUG] order-service - Operation: payment_processed - Processing time: 823ms - RequestID: 8erkre2eks7 +2025-06-18T14:15:04.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1094 - IP: 192.168.235.117 - RequestID: fqqxp62q74r +2025-06-18T14:15:04.481Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 502 - Response time: 351ms - IP: 192.168.14.77 - User: user_1091 - RequestID: dphcsby1qf +2025-06-18T14:15:04.581Z [TRACE] notification-service - Operation: email_sent - Processing time: 300ms - RequestID: gryxwvs6teo +2025-06-18T14:15:04.681Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 215ms - Rows affected: 77 - RequestID: 2dfbw90uyb8 +2025-06-18T14:15:04.781Z [INFO] payment-service - Database SELECT on products - Execution time: 54ms - Rows affected: 7 - RequestID: beurd0nszg +2025-06-18T14:15:04.881Z [TRACE] payment-service - Database INSERT on products - Execution time: 87ms - Rows affected: 81 - RequestID: 8v4k7d6iiv +2025-06-18T14:15:04.981Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 268ms - RequestID: 08tg8nkkjy07 +2025-06-18T14:15:05.081Z [INFO] user-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.33.76 - RequestID: fiduukvfriu +2025-06-18T14:15:05.181Z [TRACE] payment-service - POST /api/v1/users - Status: 401 - Response time: 146ms - IP: 192.168.167.32 - User: user_1094 - RequestID: jc92s041z9 +2025-06-18T14:15:05.281Z [TRACE] notification-service - Database SELECT on users - Execution time: 482ms - Rows affected: 85 - RequestID: vw0egj67hl +2025-06-18T14:15:05.381Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 742ms - IP: 192.168.141.100 - User: user_1028 - RequestID: tolfscv8iqc +2025-06-18T14:15:05.481Z [INFO] order-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.194.41 - RequestID: 286ab0bpl2z +2025-06-18T14:15:05.581Z [INFO] user-service - Operation: payment_processed - Processing time: 550ms - RequestID: u00dh03l75s +2025-06-18T14:15:05.681Z [TRACE] order-service - Database SELECT on sessions - Execution time: 337ms - Rows affected: 58 - RequestID: jtfm82u21kk +2025-06-18T14:15:05.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1017 - IP: 192.168.235.117 - RequestID: dwtgy0cm1kj +2025-06-18T14:15:05.881Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 500 - Response time: 263ms - IP: 192.168.211.72 - User: user_1071 - RequestID: dd2hrij0znk +2025-06-18T14:15:05.981Z [INFO] order-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.30.79 - RequestID: z752hnctvrl +2025-06-18T14:15:06.081Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 503 - Response time: 520ms - IP: 192.168.53.133 - User: user_1096 - RequestID: 1wd2ofw8nes +2025-06-18T14:15:06.181Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 392ms - RequestID: 83l1j14qpx2 +2025-06-18T14:15:06.281Z [TRACE] user-service - DELETE /api/v1/users - Status: 400 - Response time: 957ms - IP: 192.168.68.158 - User: user_1091 - RequestID: qje06sltcz +2025-06-18T14:15:06.381Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 201 - Response time: 325ms - IP: 192.168.147.171 - User: user_1047 - RequestID: tnh05ib1n6 +2025-06-18T14:15:06.481Z [INFO] notification-service - Auth event: login_success - User: user_1002 - IP: 192.168.64.33 - RequestID: 7pqw3ky7c2n +2025-06-18T14:15:06.581Z [TRACE] order-service - GET /api/v1/inventory - Status: 503 - Response time: 1789ms - IP: 192.168.187.199 - User: user_1016 - RequestID: 5xfc7orakpd +2025-06-18T14:15:06.681Z [INFO] user-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.14.77 - RequestID: 3rpzefjhrp3 +2025-06-18T14:15:06.781Z [INFO] payment-service - Operation: email_sent - Processing time: 602ms - RequestID: aoafy7efpgj +2025-06-18T14:15:06.881Z [DEBUG] payment-service - Database INSERT on products - Execution time: 120ms - Rows affected: 67 - RequestID: nxqa7t2vxnt +2025-06-18T14:15:06.981Z [INFO] auth-service - POST /api/v1/payments - Status: 502 - Response time: 495ms - IP: 192.168.159.94 - User: user_1022 - RequestID: j7140i7d28s +2025-06-18T14:15:07.081Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1085 - IP: 192.168.240.169 - RequestID: btrcus9hsw5 +2025-06-18T14:15:07.181Z [INFO] auth-service - Database INSERT on products - Execution time: 448ms - Rows affected: 5 - RequestID: xsrhww63cx +2025-06-18T14:15:07.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.229.123 - RequestID: nl6aoqjs76g +2025-06-18T14:15:07.381Z [TRACE] notification-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.68.128 - RequestID: kny0k30yr7b +2025-06-18T14:15:07.481Z [TRACE] user-service - Operation: email_sent - Processing time: 395ms - RequestID: ic0p0zgw61f +2025-06-18T14:15:07.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1037 - IP: 192.168.10.184 - RequestID: i9uk7aok9oq +2025-06-18T14:15:07.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.33.76 - RequestID: zo1jam8ykx +2025-06-18T14:15:07.781Z [TRACE] payment-service - Operation: cache_hit - Processing time: 119ms - RequestID: n04ijf8nox +2025-06-18T14:15:07.881Z [TRACE] payment-service - Database DELETE on orders - Execution time: 264ms - Rows affected: 81 - RequestID: 68slht9003f +2025-06-18T14:15:07.981Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1167ms - IP: 192.168.30.79 - User: user_1067 - RequestID: c9infoazqg +2025-06-18T14:15:08.081Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1040ms - IP: 192.168.32.38 - User: user_1002 - RequestID: az8k0mfpthe +2025-06-18T14:15:08.181Z [INFO] user-service - Operation: email_sent - Processing time: 989ms - RequestID: wv6s836sg8 +2025-06-18T14:15:08.281Z [INFO] auth-service - Operation: webhook_sent - Processing time: 411ms - RequestID: 6tqyv0jmddk +2025-06-18T14:15:08.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 538ms - RequestID: xx0vumz256 +2025-06-18T14:15:08.481Z [DEBUG] user-service - Database SELECT on orders - Execution time: 390ms - Rows affected: 68 - RequestID: fm0a3hqsfi8 +2025-06-18T14:15:08.581Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 876ms - IP: 192.168.14.77 - User: user_1079 - RequestID: nty4y3kzjbp +2025-06-18T14:15:08.681Z [DEBUG] auth-service - Database INSERT on products - Execution time: 270ms - Rows affected: 19 - RequestID: h33ryrlxwmb +2025-06-18T14:15:08.781Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 404 - Response time: 936ms - IP: 192.168.11.60 - User: user_1087 - RequestID: 5b4q1xhdimk +2025-06-18T14:15:08.881Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 770ms - RequestID: twz5u0kasqk +2025-06-18T14:15:08.981Z [INFO] notification-service - PUT /api/v1/payments - Status: 503 - Response time: 11ms - IP: 192.168.53.133 - User: user_1067 - RequestID: js5am5nl4j +2025-06-18T14:15:09.081Z [TRACE] user-service - GET /api/v1/auth/login - Status: 200 - Response time: 819ms - IP: 192.168.79.116 - User: user_1080 - RequestID: yhzh4hiwmhm +2025-06-18T14:15:09.181Z [TRACE] user-service - Operation: cache_miss - Processing time: 306ms - RequestID: 8jmu9fxkddm +2025-06-18T14:15:09.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.242.165 - RequestID: iujstrfenu +2025-06-18T14:15:09.381Z [INFO] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1509ms - IP: 192.168.85.229 - User: user_1040 - RequestID: aradqox2fts +2025-06-18T14:15:09.481Z [INFO] payment-service - Operation: order_created - Processing time: 880ms - RequestID: 23anas5m9il +2025-06-18T14:15:09.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.11.60 - RequestID: pfg08wt9jrb +2025-06-18T14:15:09.681Z [DEBUG] order-service - POST /api/v1/inventory - Status: 500 - Response time: 1139ms - IP: 192.168.79.143 - User: user_1007 - RequestID: sho8uh1w6n +2025-06-18T14:15:09.781Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 48ms - Rows affected: 39 - RequestID: vg9yqeueetb +2025-06-18T14:15:09.881Z [INFO] inventory-service - Operation: cache_hit - Processing time: 907ms - RequestID: 4ekxbo2eay3 +2025-06-18T14:15:09.981Z [TRACE] inventory-service - PUT /api/v1/users - Status: 400 - Response time: 466ms - IP: 192.168.113.218 - User: user_1022 - RequestID: omxbtsbrwv +2025-06-18T14:15:10.081Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 400 - Response time: 1601ms - IP: 192.168.85.229 - User: user_1084 - RequestID: afqvorudez7 +2025-06-18T14:15:10.181Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 73ms - Rows affected: 51 - RequestID: cuqvqymrs8u +2025-06-18T14:15:10.281Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 132ms - RequestID: g4cpj0vai7t +2025-06-18T14:15:10.381Z [INFO] auth-service - POST /api/v1/inventory - Status: 503 - Response time: 1995ms - IP: 192.168.196.226 - User: user_1072 - RequestID: ejiy5c4vkf6 +2025-06-18T14:15:10.481Z [INFO] inventory-service - Database UPDATE on users - Execution time: 407ms - Rows affected: 49 - RequestID: zbl20a9rri +2025-06-18T14:15:10.581Z [TRACE] auth-service - Database UPDATE on products - Execution time: 102ms - Rows affected: 60 - RequestID: ihh21aer7e +2025-06-18T14:15:10.681Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1286ms - IP: 192.168.33.76 - User: user_1002 - RequestID: un4z29ewmvj +2025-06-18T14:15:10.781Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 556ms - IP: 192.168.64.33 - User: user_1011 - RequestID: f0fs0tknjyv +2025-06-18T14:15:10.881Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1473ms - IP: 192.168.79.141 - User: user_1002 - RequestID: sucmk1hsn9 +2025-06-18T14:15:10.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1006 - IP: 192.168.138.123 - RequestID: 62g3yfx4v17 +2025-06-18T14:15:11.081Z [DEBUG] inventory-service - Auth event: logout - User: user_1004 - IP: 192.168.13.72 - RequestID: 7fa9zauf7jd +2025-06-18T14:15:11.181Z [INFO] payment-service - Auth event: login_failed - User: user_1021 - IP: 192.168.100.240 - RequestID: jdvla8j9ge +2025-06-18T14:15:11.281Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 219ms - Rows affected: 71 - RequestID: p5e3k1urbmd +2025-06-18T14:15:11.381Z [DEBUG] order-service - PATCH /api/v1/users - Status: 200 - Response time: 30ms - IP: 192.168.189.103 - User: user_1087 - RequestID: 23v79inlsh5i +2025-06-18T14:15:11.481Z [TRACE] user-service - PUT /api/v1/inventory - Status: 500 - Response time: 413ms - IP: 192.168.33.76 - User: user_1077 - RequestID: nxl108do57 +2025-06-18T14:15:11.581Z [INFO] order-service - Operation: order_created - Processing time: 90ms - RequestID: q6brb6tgnid +2025-06-18T14:15:11.681Z [INFO] auth-service - Operation: cache_miss - Processing time: 614ms - RequestID: fuptxga6lcc +2025-06-18T14:15:11.781Z [TRACE] auth-service - Database DELETE on orders - Execution time: 227ms - Rows affected: 88 - RequestID: 3ntruahjs9n +2025-06-18T14:15:11.881Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 372ms - Rows affected: 47 - RequestID: 4yoya2nxodd +2025-06-18T14:15:11.981Z [INFO] notification-service - DELETE /api/v1/users - Status: 403 - Response time: 537ms - IP: 192.168.81.206 - User: user_1074 - RequestID: crsz7lsskc7 +2025-06-18T14:15:12.081Z [DEBUG] payment-service - Operation: order_created - Processing time: 801ms - RequestID: xo98ess45xk +2025-06-18T14:15:12.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1030 - IP: 192.168.147.171 - RequestID: owczsj7rlh +2025-06-18T14:15:12.281Z [INFO] payment-service - Operation: notification_queued - Processing time: 185ms - RequestID: taowe1n7dr7 +2025-06-18T14:15:12.381Z [TRACE] payment-service - Operation: payment_processed - Processing time: 766ms - RequestID: qbeaijq3knd +2025-06-18T14:15:12.481Z [TRACE] notification-service - Operation: order_created - Processing time: 798ms - RequestID: 3vgja3o062r +2025-06-18T14:15:12.581Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 500 - Response time: 521ms - IP: 192.168.158.144 - User: user_1064 - RequestID: 759x86xj4kk +2025-06-18T14:15:12.681Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 376ms - RequestID: qcwwnj9yxy +2025-06-18T14:15:12.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.159.94 - RequestID: fp3qiugjcwe +2025-06-18T14:15:12.881Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 352ms - Rows affected: 21 - RequestID: 2tzmn25d6dp +2025-06-18T14:15:12.981Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 915ms - RequestID: zmvaplxl65 +2025-06-18T14:15:13.081Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.194.41 - RequestID: kdjmv5cyf1 +2025-06-18T14:15:13.181Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1079ms - IP: 192.168.11.60 - User: user_1090 - RequestID: gocrn1x2pk9 +2025-06-18T14:15:13.281Z [TRACE] auth-service - PUT /api/v1/orders - Status: 400 - Response time: 1644ms - IP: 192.168.79.116 - User: user_1094 - RequestID: ymud604inzo +2025-06-18T14:15:13.381Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 206ms - Rows affected: 35 - RequestID: vjkosa76t1h +2025-06-18T14:15:13.481Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 27ms - Rows affected: 87 - RequestID: hzb5laqmk7w +2025-06-18T14:15:13.581Z [INFO] payment-service - Operation: order_created - Processing time: 905ms - RequestID: 0u5wjrc6pw5 +2025-06-18T14:15:13.681Z [DEBUG] payment-service - Database INSERT on users - Execution time: 262ms - Rows affected: 22 - RequestID: b4l6ne45lx4 +2025-06-18T14:15:13.781Z [TRACE] payment-service - Operation: email_sent - Processing time: 638ms - RequestID: frrvbc6bxos +2025-06-18T14:15:13.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 594ms - RequestID: taqpeoo18ug +2025-06-18T14:15:13.981Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1571ms - IP: 192.168.247.134 - User: user_1025 - RequestID: 47p4vqexhla +2025-06-18T14:15:14.081Z [INFO] inventory-service - Operation: cache_hit - Processing time: 444ms - RequestID: 47biwg1aidd +2025-06-18T14:15:14.181Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 19ms - Rows affected: 65 - RequestID: 105p94ttvhk +2025-06-18T14:15:14.281Z [TRACE] order-service - Operation: email_sent - Processing time: 885ms - RequestID: bsvti9oyby6 +2025-06-18T14:15:14.381Z [TRACE] auth-service - Auth event: login_success - User: user_1060 - IP: 192.168.141.100 - RequestID: 317ozofkvg3 +2025-06-18T14:15:14.481Z [INFO] notification-service - PUT /api/v1/users - Status: 403 - Response time: 1991ms - IP: 192.168.36.218 - User: user_1043 - RequestID: 11e51hyvtajl +2025-06-18T14:15:14.581Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 469ms - RequestID: xca4548ak5l +2025-06-18T14:15:14.681Z [DEBUG] user-service - Database INSERT on orders - Execution time: 437ms - Rows affected: 77 - RequestID: l6r7myofho +2025-06-18T14:15:14.781Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 202ms - Rows affected: 35 - RequestID: 1jlvln3et1v +2025-06-18T14:15:14.881Z [TRACE] order-service - DELETE /api/v1/orders - Status: 403 - Response time: 1617ms - IP: 192.168.97.87 - User: user_1090 - RequestID: 138am642d38g +2025-06-18T14:15:14.981Z [INFO] user-service - Operation: inventory_updated - Processing time: 127ms - RequestID: t1ozwzcc3n +2025-06-18T14:15:15.081Z [TRACE] order-service - Database UPDATE on orders - Execution time: 322ms - Rows affected: 74 - RequestID: du7zfwwob0i +2025-06-18T14:15:15.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 313ms - RequestID: 39uva9cwow8 +2025-06-18T14:15:15.281Z [DEBUG] order-service - Database DELETE on orders - Execution time: 291ms - Rows affected: 75 - RequestID: 7slym76u98n +2025-06-18T14:15:15.381Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 404 - Response time: 792ms - IP: 192.168.174.114 - User: user_1039 - RequestID: ku13j35vd3q +2025-06-18T14:15:15.481Z [TRACE] order-service - POST /api/v1/auth/login - Status: 403 - Response time: 583ms - IP: 192.168.229.123 - User: user_1032 - RequestID: g0h842wd2gs +2025-06-18T14:15:15.581Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 83ms - Rows affected: 13 - RequestID: b1a178zwgv9 +2025-06-18T14:15:15.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.28.146 - RequestID: motv2upgrd +2025-06-18T14:15:15.781Z [TRACE] auth-service - POST /api/v1/orders - Status: 200 - Response time: 353ms - IP: 192.168.36.218 - User: user_1078 - RequestID: 80kjl5zwvba +2025-06-18T14:15:15.881Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 643ms - RequestID: 1a4y5085f96 +2025-06-18T14:15:15.981Z [INFO] inventory-service - Operation: email_sent - Processing time: 1049ms - RequestID: hqc2uyctawj +2025-06-18T14:15:16.081Z [DEBUG] user-service - Operation: cache_miss - Processing time: 291ms - RequestID: nqh08xbu06e +2025-06-18T14:15:16.181Z [DEBUG] user-service - Database DELETE on payments - Execution time: 31ms - Rows affected: 23 - RequestID: um7ex8swwme +2025-06-18T14:15:16.281Z [DEBUG] order-service - Operation: notification_queued - Processing time: 512ms - RequestID: yvwis83fjyh +2025-06-18T14:15:16.381Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1043 - IP: 192.168.44.5 - RequestID: nfen1lgylqm +2025-06-18T14:15:16.481Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1474ms - IP: 192.168.144.38 - User: user_1011 - RequestID: 7wbvhkap29 +2025-06-18T14:15:16.581Z [DEBUG] inventory-service - Auth event: logout - User: user_1083 - IP: 192.168.1.152 - RequestID: srr07lk8lr +2025-06-18T14:15:16.681Z [INFO] auth-service - Database SELECT on payments - Execution time: 437ms - Rows affected: 48 - RequestID: ahnohlzuj5o +2025-06-18T14:15:16.781Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 68ms - Rows affected: 16 - RequestID: cr7v14s5qrs +2025-06-18T14:15:16.881Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1348ms - IP: 192.168.81.206 - User: user_1007 - RequestID: 22hdmgckvtp +2025-06-18T14:15:16.981Z [INFO] order-service - Database SELECT on payments - Execution time: 39ms - Rows affected: 81 - RequestID: dk5yx8bjw1s +2025-06-18T14:15:17.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.141.100 - RequestID: xbdvcd6w03 +2025-06-18T14:15:17.181Z [TRACE] user-service - Operation: cache_hit - Processing time: 805ms - RequestID: 2lujjjgwwxn +2025-06-18T14:15:17.281Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 273ms - Rows affected: 95 - RequestID: 92bcq3pre7 +2025-06-18T14:15:17.381Z [INFO] order-service - POST /api/v1/auth/logout - Status: 503 - Response time: 806ms - IP: 192.168.13.72 - User: user_1051 - RequestID: qd3xu78rbg +2025-06-18T14:15:17.481Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 411ms - Rows affected: 57 - RequestID: jvv20ps45d +2025-06-18T14:15:17.581Z [DEBUG] user-service - Auth event: password_change - User: user_1021 - IP: 192.168.229.123 - RequestID: j37w3ime59a +2025-06-18T14:15:17.681Z [TRACE] inventory-service - Database DELETE on products - Execution time: 236ms - Rows affected: 21 - RequestID: a9lt2rne368 +2025-06-18T14:15:17.781Z [TRACE] auth-service - Operation: payment_processed - Processing time: 732ms - RequestID: qnwabvfld1q +2025-06-18T14:15:17.881Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 19ms - Rows affected: 5 - RequestID: mp94b8037rg +2025-06-18T14:15:17.981Z [INFO] order-service - Auth event: login_failed - User: user_1015 - IP: 192.168.33.76 - RequestID: nfavygvq43m +2025-06-18T14:15:18.081Z [INFO] auth-service - Auth event: password_change - User: user_1088 - IP: 192.168.28.146 - RequestID: kvobw8mp59k +2025-06-18T14:15:18.181Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 452ms - Rows affected: 38 - RequestID: 3q7qqk98w7b +2025-06-18T14:15:18.281Z [INFO] order-service - Auth event: login_success - User: user_1028 - IP: 192.168.81.206 - RequestID: o0k8s5yyxp +2025-06-18T14:15:18.381Z [INFO] payment-service - Database UPDATE on payments - Execution time: 436ms - Rows affected: 0 - RequestID: up8agxtrb +2025-06-18T14:15:18.481Z [INFO] user-service - Auth event: login_success - User: user_1089 - IP: 192.168.181.225 - RequestID: 6s0zeamxvvd +2025-06-18T14:15:18.581Z [DEBUG] user-service - Database SELECT on products - Execution time: 217ms - Rows affected: 33 - RequestID: 4egenh9rd3t +2025-06-18T14:15:18.681Z [TRACE] auth-service - GET /api/v1/payments - Status: 201 - Response time: 1909ms - IP: 192.168.81.206 - User: user_1052 - RequestID: 39nlrrhlcl9 +2025-06-18T14:15:18.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 868ms - RequestID: ehmmicd72se +2025-06-18T14:15:18.881Z [TRACE] order-service - PATCH /api/v1/users - Status: 502 - Response time: 1006ms - IP: 192.168.81.206 - User: user_1049 - RequestID: b742b1i4f1i +2025-06-18T14:15:18.981Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1122ms - IP: 192.168.28.146 - User: user_1007 - RequestID: vf5wdp74qn +2025-06-18T14:15:19.081Z [DEBUG] order-service - Operation: payment_processed - Processing time: 801ms - RequestID: c2fjwae1s0j +2025-06-18T14:15:19.181Z [TRACE] order-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.211.72 - RequestID: slk29qd992 +2025-06-18T14:15:19.281Z [DEBUG] user-service - Database INSERT on payments - Execution time: 461ms - Rows affected: 12 - RequestID: 219f0l1pozb +2025-06-18T14:15:19.381Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 400 - Response time: 78ms - IP: 192.168.170.215 - User: user_1016 - RequestID: l5g9gil7nec +2025-06-18T14:15:19.481Z [DEBUG] payment-service - Operation: order_created - Processing time: 362ms - RequestID: xgn39yx7hz +2025-06-18T14:15:19.581Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 943ms - RequestID: xg3mnq37cy +2025-06-18T14:15:19.681Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 418ms - Rows affected: 4 - RequestID: rlj9f73zj1 +2025-06-18T14:15:19.781Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 276ms - Rows affected: 30 - RequestID: es4p7a5bjw +2025-06-18T14:15:19.881Z [DEBUG] payment-service - Auth event: logout - User: user_1054 - IP: 192.168.31.117 - RequestID: v6tww4n8qb +2025-06-18T14:15:19.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 1034ms - RequestID: y7bol2xbm6 +2025-06-18T14:15:20.081Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 201 - Response time: 1536ms - IP: 192.168.227.233 - User: user_1027 - RequestID: 7wqn3rsbjkp +2025-06-18T14:15:20.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.133.7 - RequestID: 8sl7x0eh2j8 +2025-06-18T14:15:20.281Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.30.79 - RequestID: b0ib05grcfq +2025-06-18T14:15:20.381Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1274ms - IP: 192.168.30.79 - User: user_1022 - RequestID: zvtst6n7wui +2025-06-18T14:15:20.481Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 43ms - Rows affected: 34 - RequestID: 0fvyoir8av66 +2025-06-18T14:15:20.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 224ms - RequestID: lxzhtbirzsi +2025-06-18T14:15:20.681Z [INFO] auth-service - Database INSERT on sessions - Execution time: 198ms - Rows affected: 63 - RequestID: p6cuz81tyy +2025-06-18T14:15:20.781Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 18ms - Rows affected: 51 - RequestID: tftrrwjyym +2025-06-18T14:15:20.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1046 - IP: 192.168.174.114 - RequestID: 7s9ujh7cius +2025-06-18T14:15:20.981Z [INFO] order-service - Operation: cache_miss - Processing time: 813ms - RequestID: xztn6lb45wn +2025-06-18T14:15:21.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.174.114 - RequestID: 83kf0syx2cw +2025-06-18T14:15:21.181Z [TRACE] user-service - Database INSERT on products - Execution time: 195ms - Rows affected: 47 - RequestID: xv5hya1zk9e +2025-06-18T14:15:21.281Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 475ms - RequestID: yxlc1d7kn7q +2025-06-18T14:15:21.381Z [DEBUG] order-service - PATCH /api/v1/users - Status: 403 - Response time: 1034ms - IP: 192.168.232.72 - User: user_1050 - RequestID: eeswtylj1aj +2025-06-18T14:15:21.481Z [DEBUG] order-service - Auth event: logout - User: user_1000 - IP: 192.168.46.63 - RequestID: i2rcj1yhjg +2025-06-18T14:15:21.581Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1549ms - IP: 192.168.32.38 - User: user_1024 - RequestID: 50iukp8zlzu +2025-06-18T14:15:21.681Z [INFO] user-service - Operation: webhook_sent - Processing time: 842ms - RequestID: 52p3iywe3y2 +2025-06-18T14:15:21.781Z [TRACE] payment-service - Auth event: password_change - User: user_1059 - IP: 192.168.235.117 - RequestID: l10vg9iklsa +2025-06-18T14:15:21.881Z [INFO] order-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.194.41 - RequestID: mxtecc20p4 +2025-06-18T14:15:21.981Z [INFO] inventory-service - Database DELETE on payments - Execution time: 307ms - Rows affected: 7 - RequestID: mgufxns56c +2025-06-18T14:15:22.081Z [INFO] order-service - Database DELETE on sessions - Execution time: 58ms - Rows affected: 2 - RequestID: c1vgq31bui8 +2025-06-18T14:15:22.181Z [TRACE] notification-service - PUT /api/v1/payments - Status: 500 - Response time: 1244ms - IP: 192.168.68.128 - User: user_1064 - RequestID: joae15mlncf +2025-06-18T14:15:22.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1049 - IP: 192.168.227.233 - RequestID: iyr7vnvwcqm +2025-06-18T14:15:22.381Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1980ms - IP: 192.168.232.72 - User: user_1088 - RequestID: yq98iay3ub +2025-06-18T14:15:22.481Z [INFO] user-service - PUT /api/v1/inventory - Status: 200 - Response time: 1391ms - IP: 192.168.196.226 - User: user_1009 - RequestID: 3ewjinx7cwp +2025-06-18T14:15:22.581Z [TRACE] user-service - Operation: cache_miss - Processing time: 645ms - RequestID: luqw11xbipc +2025-06-18T14:15:22.681Z [DEBUG] order-service - Operation: email_sent - Processing time: 860ms - RequestID: 3b9u6vl223 +2025-06-18T14:15:22.781Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 49ms - Rows affected: 64 - RequestID: 2gj41fpn4hn +2025-06-18T14:15:22.881Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1361ms - IP: 192.168.97.87 - User: user_1076 - RequestID: 1kw6k17paqf +2025-06-18T14:15:22.981Z [TRACE] inventory-service - PUT /api/v1/users - Status: 200 - Response time: 1659ms - IP: 192.168.227.77 - User: user_1009 - RequestID: 7197gbieejn +2025-06-18T14:15:23.081Z [TRACE] notification-service - Auth event: login_success - User: user_1063 - IP: 192.168.1.152 - RequestID: lbnbnc6gtz +2025-06-18T14:15:23.181Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 1034ms - RequestID: muitqlvn3sh +2025-06-18T14:15:23.281Z [INFO] payment-service - Operation: cache_hit - Processing time: 116ms - RequestID: p9h1q0xoyco +2025-06-18T14:15:23.381Z [INFO] payment-service - Database UPDATE on orders - Execution time: 499ms - Rows affected: 85 - RequestID: 76xbrirpzed +2025-06-18T14:15:23.481Z [DEBUG] auth-service - Operation: order_created - Processing time: 538ms - RequestID: v2njikerem8 +2025-06-18T14:15:23.581Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1723ms - IP: 192.168.211.72 - User: user_1064 - RequestID: x4ytkbej6y9 +2025-06-18T14:15:23.681Z [INFO] user-service - Database INSERT on payments - Execution time: 307ms - Rows affected: 43 - RequestID: 8iw11hwjj4a +2025-06-18T14:15:23.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 571ms - RequestID: g71wik589p6 +2025-06-18T14:15:23.881Z [TRACE] user-service - Auth event: logout - User: user_1069 - IP: 192.168.100.240 - RequestID: j3o0scndqmb +2025-06-18T14:15:23.981Z [INFO] auth-service - Operation: email_sent - Processing time: 834ms - RequestID: n06okvx3h7m +2025-06-18T14:15:24.081Z [INFO] notification-service - Auth event: login_failed - User: user_1071 - IP: 192.168.13.72 - RequestID: ev81adrdw96 +2025-06-18T14:15:24.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 577ms - RequestID: 0wtqvjj99zf +2025-06-18T14:15:24.281Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1602ms - IP: 192.168.13.72 - User: user_1034 - RequestID: ztcj2ylljds +2025-06-18T14:15:24.381Z [TRACE] order-service - Database DELETE on sessions - Execution time: 295ms - Rows affected: 57 - RequestID: chavczcswqa +2025-06-18T14:15:24.481Z [INFO] notification-service - POST /api/v1/orders - Status: 404 - Response time: 301ms - IP: 192.168.104.37 - User: user_1042 - RequestID: 0o6vxy85ccw +2025-06-18T14:15:24.581Z [TRACE] order-service - Operation: order_created - Processing time: 900ms - RequestID: t9ktqwmcqg +2025-06-18T14:15:24.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 214ms - RequestID: ek4kjksniz +2025-06-18T14:15:24.781Z [INFO] inventory-service - Database INSERT on payments - Execution time: 54ms - Rows affected: 51 - RequestID: wkqj3b9egm8 +2025-06-18T14:15:24.881Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 404ms - IP: 192.168.1.152 - User: user_1043 - RequestID: 3rdfdm78o6h +2025-06-18T14:15:24.981Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.28.146 - RequestID: 0pl3ufpgao1 +2025-06-18T14:15:25.081Z [TRACE] order-service - PUT /api/v1/payments - Status: 403 - Response time: 706ms - IP: 192.168.79.141 - User: user_1016 - RequestID: qd18lgxpqpf +2025-06-18T14:15:25.181Z [DEBUG] order-service - Auth event: login_failed - User: user_1062 - IP: 192.168.53.133 - RequestID: tps1ojwvr +2025-06-18T14:15:25.281Z [INFO] user-service - Auth event: login_failed - User: user_1052 - IP: 192.168.227.233 - RequestID: pk56d3juren +2025-06-18T14:15:25.381Z [TRACE] inventory-service - Database SELECT on users - Execution time: 134ms - Rows affected: 32 - RequestID: ra22veiqrm +2025-06-18T14:15:25.481Z [TRACE] payment-service - Operation: cache_hit - Processing time: 412ms - RequestID: c0p016o4ws8 +2025-06-18T14:15:25.581Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 213ms - IP: 192.168.79.116 - User: user_1024 - RequestID: mxhrp2n47jb +2025-06-18T14:15:25.681Z [INFO] order-service - Database SELECT on orders - Execution time: 63ms - Rows affected: 17 - RequestID: 5uz44gidjk +2025-06-18T14:15:25.781Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 329ms - Rows affected: 23 - RequestID: xrnpl9eqal9 +2025-06-18T14:15:25.881Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.68.158 - RequestID: 1tm52jz0619 +2025-06-18T14:15:25.981Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 1201ms - IP: 192.168.68.128 - User: user_1081 - RequestID: jdqb13lfsog +2025-06-18T14:15:26.081Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 133ms - Rows affected: 53 - RequestID: p0rrnnkuvmb +2025-06-18T14:15:26.181Z [TRACE] auth-service - Database INSERT on products - Execution time: 163ms - Rows affected: 96 - RequestID: 7d93wfgsdli +2025-06-18T14:15:26.281Z [INFO] order-service - Operation: webhook_sent - Processing time: 405ms - RequestID: v4hcask2vk +2025-06-18T14:15:26.381Z [INFO] auth-service - Operation: cache_hit - Processing time: 484ms - RequestID: iwmp8flxv18 +2025-06-18T14:15:26.481Z [DEBUG] auth-service - Auth event: login_success - User: user_1000 - IP: 192.168.31.117 - RequestID: h3yh04cqbz +2025-06-18T14:15:26.581Z [INFO] payment-service - Database UPDATE on products - Execution time: 43ms - Rows affected: 97 - RequestID: gnjmscvt646 +2025-06-18T14:15:26.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.79.143 - RequestID: mnokewudrcg +2025-06-18T14:15:26.781Z [DEBUG] notification-service - POST /api/v1/payments - Status: 403 - Response time: 1547ms - IP: 192.168.14.77 - User: user_1046 - RequestID: 7fqdwhjhgyn +2025-06-18T14:15:26.881Z [INFO] auth-service - POST /api/v1/users - Status: 400 - Response time: 1094ms - IP: 192.168.229.123 - User: user_1058 - RequestID: z5rf6wpybua +2025-06-18T14:15:26.981Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 985ms - RequestID: pfqyu8edhjg +2025-06-18T14:15:27.081Z [INFO] user-service - Database DELETE on sessions - Execution time: 262ms - Rows affected: 13 - RequestID: 0bk6dk58bbtb +2025-06-18T14:15:27.181Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1080 - IP: 192.168.85.229 - RequestID: 8mm4prjrqp9 +2025-06-18T14:15:27.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.79.141 - RequestID: 2xqf78xyj84 +2025-06-18T14:15:27.381Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 404 - Response time: 122ms - IP: 192.168.79.141 - User: user_1050 - RequestID: a2i0lybu58h +2025-06-18T14:15:27.481Z [TRACE] auth-service - Auth event: logout - User: user_1045 - IP: 192.168.181.225 - RequestID: sm16p98a51h +2025-06-18T14:15:27.581Z [INFO] inventory-service - Auth event: logout - User: user_1030 - IP: 192.168.81.206 - RequestID: u59zuqbuknh +2025-06-18T14:15:27.681Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 500 - Response time: 1484ms - IP: 192.168.144.38 - User: user_1068 - RequestID: qn4ac66dps +2025-06-18T14:15:27.781Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 636ms - RequestID: igzz5uxpkji +2025-06-18T14:15:27.881Z [INFO] inventory-service - Operation: notification_queued - Processing time: 319ms - RequestID: 9pbbxwmz8vc +2025-06-18T14:15:27.981Z [INFO] inventory-service - Operation: cache_hit - Processing time: 1015ms - RequestID: kcutfsg408r +2025-06-18T14:15:28.081Z [INFO] order-service - GET /api/v1/orders - Status: 502 - Response time: 1164ms - IP: 192.168.242.165 - User: user_1085 - RequestID: 66p84lgru6l +2025-06-18T14:15:28.181Z [TRACE] notification-service - Database SELECT on orders - Execution time: 448ms - Rows affected: 43 - RequestID: dhzmfxuslo5 +2025-06-18T14:15:28.281Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1845ms - IP: 192.168.227.233 - User: user_1033 - RequestID: fauo7m8g8si +2025-06-18T14:15:28.381Z [TRACE] order-service - Operation: cache_hit - Processing time: 910ms - RequestID: 8fxeo4bhwc +2025-06-18T14:15:28.481Z [TRACE] auth-service - Operation: payment_processed - Processing time: 700ms - RequestID: 1nsx67cz6m3 +2025-06-18T14:15:28.581Z [TRACE] user-service - PUT /api/v1/users - Status: 201 - Response time: 1296ms - IP: 192.168.227.77 - User: user_1086 - RequestID: 69wiqz4t4c5 +2025-06-18T14:15:28.681Z [TRACE] notification-service - Database SELECT on payments - Execution time: 368ms - Rows affected: 19 - RequestID: 508yod5f1wh +2025-06-18T14:15:28.781Z [INFO] inventory-service - PUT /api/v1/users - Status: 400 - Response time: 460ms - IP: 192.168.97.87 - User: user_1020 - RequestID: ky59udpx6xb +2025-06-18T14:15:28.881Z [TRACE] auth-service - GET /api/v1/payments - Status: 400 - Response time: 226ms - IP: 192.168.147.171 - User: user_1095 - RequestID: yf0mzkeufb +2025-06-18T14:15:28.981Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 394ms - Rows affected: 4 - RequestID: hpcq8qf7c2b +2025-06-18T14:15:29.081Z [INFO] order-service - Auth event: password_change - User: user_1033 - IP: 192.168.242.165 - RequestID: adk0vueh1xh +2025-06-18T14:15:29.181Z [INFO] auth-service - Auth event: login_failed - User: user_1003 - IP: 192.168.31.117 - RequestID: 7a0enlajok +2025-06-18T14:15:29.281Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 372ms - Rows affected: 74 - RequestID: jqe3e9uunnq +2025-06-18T14:15:29.381Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 446ms - Rows affected: 96 - RequestID: ff611t3yamh +2025-06-18T14:15:29.481Z [DEBUG] auth-service - Auth event: logout - User: user_1038 - IP: 192.168.68.158 - RequestID: wwa6zque2sr +2025-06-18T14:15:29.581Z [INFO] order-service - Auth event: password_change - User: user_1061 - IP: 192.168.28.146 - RequestID: 9senbjaux15 +2025-06-18T14:15:29.681Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.196.226 - RequestID: 7xr9c6sk8be +2025-06-18T14:15:29.781Z [INFO] order-service - Database UPDATE on sessions - Execution time: 110ms - Rows affected: 89 - RequestID: 4bo3nparftm +2025-06-18T14:15:29.881Z [TRACE] auth-service - Database SELECT on payments - Execution time: 377ms - Rows affected: 18 - RequestID: cdjp22b1u68 +2025-06-18T14:15:29.981Z [INFO] user-service - Operation: cache_miss - Processing time: 506ms - RequestID: 1zr9clwc5ar +2025-06-18T14:15:30.081Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 295ms - Rows affected: 18 - RequestID: vzqnrr3zxm +2025-06-18T14:15:30.181Z [TRACE] inventory-service - POST /api/v1/payments - Status: 500 - Response time: 591ms - IP: 192.168.10.184 - User: user_1079 - RequestID: 63ydzi4lf7o +2025-06-18T14:15:30.281Z [TRACE] order-service - POST /api/v1/auth/login - Status: 400 - Response time: 1161ms - IP: 192.168.33.76 - User: user_1038 - RequestID: mv7qb55pms +2025-06-18T14:15:30.381Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 653ms - RequestID: 13gf5xm4nq8a +2025-06-18T14:15:30.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 789ms - RequestID: 1r45l4p8qsd +2025-06-18T14:15:30.581Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 379ms - Rows affected: 3 - RequestID: qi58008y8 +2025-06-18T14:15:30.681Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 400 - Response time: 574ms - IP: 192.168.100.240 - User: user_1008 - RequestID: ubv5r8321vh +2025-06-18T14:15:30.781Z [INFO] notification-service - POST /api/v1/auth/login - Status: 401 - Response time: 807ms - IP: 192.168.170.215 - User: user_1019 - RequestID: 5lusyvk3kpc +2025-06-18T14:15:30.881Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 84ms - Rows affected: 8 - RequestID: 8fczmp1e0u4 +2025-06-18T14:15:30.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1079 - IP: 192.168.235.117 - RequestID: ou37hnlzh48 +2025-06-18T14:15:31.081Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 400 - Response time: 608ms - IP: 192.168.229.123 - User: user_1089 - RequestID: 05bb4f3w2umc +2025-06-18T14:15:31.181Z [TRACE] payment-service - PATCH /api/v1/users - Status: 404 - Response time: 1551ms - IP: 192.168.44.5 - User: user_1029 - RequestID: kqpwjpupt1 +2025-06-18T14:15:31.281Z [TRACE] order-service - Auth event: login_failed - User: user_1059 - IP: 192.168.187.199 - RequestID: 8z9kzhdhjlu +2025-06-18T14:15:31.381Z [TRACE] notification-service - Operation: notification_queued - Processing time: 906ms - RequestID: 8ivhzzamyl3 +2025-06-18T14:15:31.481Z [INFO] notification-service - Operation: cache_hit - Processing time: 535ms - RequestID: rv0abr3ts6 +2025-06-18T14:15:31.581Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.85.229 - RequestID: kac5721new +2025-06-18T14:15:31.681Z [DEBUG] inventory-service - POST /api/v1/users - Status: 201 - Response time: 1458ms - IP: 192.168.170.215 - User: user_1080 - RequestID: qeva0vtbsbg +2025-06-18T14:15:31.781Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 136ms - Rows affected: 69 - RequestID: a7h62yi4thj +2025-06-18T14:15:31.881Z [TRACE] notification-service - Auth event: password_change - User: user_1018 - IP: 192.168.194.41 - RequestID: ddu3r3z6le4 +2025-06-18T14:15:31.981Z [INFO] payment-service - Operation: cache_hit - Processing time: 355ms - RequestID: 9y3ro51ofqe +2025-06-18T14:15:32.081Z [INFO] payment-service - Auth event: login_success - User: user_1099 - IP: 192.168.100.240 - RequestID: aodaood95v7 +2025-06-18T14:15:32.181Z [DEBUG] user-service - Operation: email_sent - Processing time: 596ms - RequestID: x12av39774q +2025-06-18T14:15:32.281Z [INFO] auth-service - Database DELETE on payments - Execution time: 1ms - Rows affected: 75 - RequestID: mahaq6dwrin +2025-06-18T14:15:32.381Z [INFO] inventory-service - PUT /api/v1/users - Status: 502 - Response time: 235ms - IP: 192.168.81.206 - User: user_1029 - RequestID: 05y42b3t6ydf +2025-06-18T14:15:32.481Z [TRACE] auth-service - Database INSERT on products - Execution time: 424ms - Rows affected: 8 - RequestID: 498lp91ofpz +2025-06-18T14:15:32.581Z [INFO] notification-service - Auth event: login_success - User: user_1002 - IP: 192.168.138.123 - RequestID: 4x87ubvt3z3 +2025-06-18T14:15:32.681Z [TRACE] order-service - Operation: order_created - Processing time: 681ms - RequestID: stan8dmw96 +2025-06-18T14:15:32.781Z [DEBUG] order-service - POST /api/v1/inventory - Status: 500 - Response time: 562ms - IP: 192.168.229.123 - User: user_1018 - RequestID: v55e0uokhe +2025-06-18T14:15:32.881Z [TRACE] auth-service - Operation: payment_processed - Processing time: 450ms - RequestID: kjtamstyv99 +2025-06-18T14:15:32.981Z [DEBUG] inventory-service - Auth event: logout - User: user_1009 - IP: 192.168.32.38 - RequestID: 4g7doc4irbl +2025-06-18T14:15:33.081Z [INFO] notification-service - Auth event: login_success - User: user_1079 - IP: 192.168.11.60 - RequestID: zurfs76fybf +2025-06-18T14:15:33.181Z [DEBUG] order-service - Database INSERT on orders - Execution time: 45ms - Rows affected: 56 - RequestID: sdsvzhw75o +2025-06-18T14:15:33.281Z [TRACE] payment-service - PATCH /api/v1/users - Status: 500 - Response time: 370ms - IP: 192.168.158.144 - User: user_1052 - RequestID: 0qvwte84kzt +2025-06-18T14:15:33.381Z [TRACE] notification-service - Operation: order_created - Processing time: 353ms - RequestID: vl3hw1v5v08 +2025-06-18T14:15:33.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 427ms - RequestID: kjs2ihm78tr +2025-06-18T14:15:33.581Z [INFO] order-service - Operation: payment_processed - Processing time: 548ms - RequestID: bs1ce7b999q +2025-06-18T14:15:33.681Z [INFO] user-service - Operation: webhook_sent - Processing time: 172ms - RequestID: hcq2u69ivit +2025-06-18T14:15:33.781Z [INFO] order-service - Auth event: login_success - User: user_1039 - IP: 192.168.227.77 - RequestID: g7av5kghu5a +2025-06-18T14:15:33.881Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 1345ms - IP: 192.168.30.79 - User: user_1010 - RequestID: fd59xkxsxep +2025-06-18T14:15:33.981Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 1026ms - RequestID: flnhg1vanwa +2025-06-18T14:15:34.081Z [INFO] payment-service - Operation: notification_queued - Processing time: 261ms - RequestID: 4ivx5qr00km +2025-06-18T14:15:34.181Z [INFO] user-service - Operation: payment_processed - Processing time: 853ms - RequestID: 4hd45tje75j +2025-06-18T14:15:34.281Z [INFO] inventory-service - Database SELECT on payments - Execution time: 375ms - Rows affected: 71 - RequestID: 8qj44isjqgl +2025-06-18T14:15:34.381Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 64ms - Rows affected: 14 - RequestID: 3jtt5148mjx +2025-06-18T14:15:34.481Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 863ms - RequestID: asqgggojida +2025-06-18T14:15:34.581Z [INFO] notification-service - Operation: cache_miss - Processing time: 926ms - RequestID: 8f4o93yw4rp +2025-06-18T14:15:34.681Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 503 - Response time: 1307ms - IP: 192.168.158.144 - User: user_1084 - RequestID: 4c6dt1lxwxe +2025-06-18T14:15:34.781Z [INFO] order-service - Database INSERT on products - Execution time: 84ms - Rows affected: 45 - RequestID: abkyyalmwau +2025-06-18T14:15:34.881Z [DEBUG] order-service - Auth event: password_change - User: user_1029 - IP: 192.168.32.38 - RequestID: 9r3x4opqk15 +2025-06-18T14:15:34.981Z [DEBUG] notification-service - Auth event: login_success - User: user_1008 - IP: 192.168.30.79 - RequestID: h05trtzvedj +2025-06-18T14:15:35.081Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1334ms - IP: 192.168.81.206 - User: user_1031 - RequestID: k6zjwrvc1o9 +2025-06-18T14:15:35.181Z [DEBUG] auth-service - Auth event: login_success - User: user_1094 - IP: 192.168.79.116 - RequestID: f5fl392jwq +2025-06-18T14:15:35.281Z [INFO] notification-service - Operation: notification_queued - Processing time: 782ms - RequestID: ub3yiqh9e2d +2025-06-18T14:15:35.381Z [INFO] inventory-service - Operation: cache_miss - Processing time: 624ms - RequestID: wwd4b12xrx8 +2025-06-18T14:15:35.481Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 429ms - RequestID: b810vo2f31k +2025-06-18T14:15:35.581Z [INFO] auth-service - GET /api/v1/auth/login - Status: 400 - Response time: 1778ms - IP: 192.168.31.117 - User: user_1004 - RequestID: bg90oh1hnit +2025-06-18T14:15:35.681Z [DEBUG] payment-service - Database SELECT on users - Execution time: 123ms - Rows affected: 23 - RequestID: ly422uk6lw9 +2025-06-18T14:15:35.781Z [INFO] auth-service - Database UPDATE on products - Execution time: 384ms - Rows affected: 94 - RequestID: zkf65o676ts +2025-06-18T14:15:35.881Z [INFO] inventory-service - Database SELECT on products - Execution time: 475ms - Rows affected: 35 - RequestID: dlnuusdwz4s +2025-06-18T14:15:35.981Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 64ms - Rows affected: 95 - RequestID: us4j8ijlq5n +2025-06-18T14:15:36.081Z [INFO] inventory-service - Operation: email_sent - Processing time: 604ms - RequestID: 8oext4vzpy +2025-06-18T14:15:36.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1042 - IP: 192.168.181.225 - RequestID: ae72ov38ezc +2025-06-18T14:15:36.281Z [TRACE] payment-service - Auth event: logout - User: user_1052 - IP: 192.168.13.72 - RequestID: gzhx0sipdnu +2025-06-18T14:15:36.381Z [TRACE] user-service - Database DELETE on users - Execution time: 386ms - Rows affected: 28 - RequestID: b125k9z1j6a +2025-06-18T14:15:36.481Z [TRACE] payment-service - Operation: email_sent - Processing time: 300ms - RequestID: bysw9fa6gvs +2025-06-18T14:15:36.581Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 85ms - RequestID: o89aewmhgz +2025-06-18T14:15:36.681Z [INFO] notification-service - Auth event: login_success - User: user_1007 - IP: 192.168.53.133 - RequestID: 58gllcptfln +2025-06-18T14:15:36.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.138.123 - RequestID: 61qjd00fg4j +2025-06-18T14:15:36.881Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 520ms - IP: 192.168.242.165 - User: user_1073 - RequestID: oeao860clzf +2025-06-18T14:15:36.981Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 742ms - RequestID: w91x8i1tav +2025-06-18T14:15:37.081Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1125ms - IP: 192.168.181.225 - User: user_1072 - RequestID: yl7h36ns3vf +2025-06-18T14:15:37.181Z [INFO] order-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.211.72 - RequestID: koecsjqpv +2025-06-18T14:15:37.281Z [DEBUG] user-service - POST /api/v1/users - Status: 500 - Response time: 337ms - IP: 192.168.232.72 - User: user_1097 - RequestID: hhjll6eqjb +2025-06-18T14:15:37.381Z [TRACE] payment-service - Database SELECT on products - Execution time: 9ms - Rows affected: 53 - RequestID: 15hoz53144t +2025-06-18T14:15:37.481Z [TRACE] inventory-service - Database SELECT on products - Execution time: 404ms - Rows affected: 16 - RequestID: cw8f1wv8zju +2025-06-18T14:15:37.581Z [DEBUG] auth-service - Auth event: password_change - User: user_1071 - IP: 192.168.227.233 - RequestID: 36uv53uabb9 +2025-06-18T14:15:37.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1025 - IP: 192.168.167.32 - RequestID: h1bmvn8us36 +2025-06-18T14:15:37.781Z [TRACE] auth-service - Operation: notification_queued - Processing time: 889ms - RequestID: monqztkyqv +2025-06-18T14:15:37.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1088 - IP: 192.168.10.184 - RequestID: pq6q6h7x8d +2025-06-18T14:15:37.981Z [DEBUG] user-service - Operation: order_created - Processing time: 635ms - RequestID: 5f7f4pzityt +2025-06-18T14:15:38.081Z [INFO] inventory-service - Database DELETE on users - Execution time: 333ms - Rows affected: 26 - RequestID: jrposuc4fcf +2025-06-18T14:15:38.181Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 446ms - Rows affected: 81 - RequestID: okbvw49ryvj +2025-06-18T14:15:38.281Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 148ms - Rows affected: 52 - RequestID: 5n6y5m4ct5b +2025-06-18T14:15:38.381Z [DEBUG] user-service - PUT /api/v1/payments - Status: 200 - Response time: 1379ms - IP: 192.168.53.133 - User: user_1041 - RequestID: pi7b9ddarpb +2025-06-18T14:15:38.481Z [DEBUG] payment-service - Auth event: logout - User: user_1019 - IP: 192.168.147.171 - RequestID: 8vvm6rnqkjo +2025-06-18T14:15:38.581Z [TRACE] notification-service - Operation: cache_miss - Processing time: 281ms - RequestID: mzly98qw579 +2025-06-18T14:15:38.681Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 323ms - Rows affected: 86 - RequestID: a5c2ljnc25 +2025-06-18T14:15:38.781Z [INFO] order-service - Database SELECT on users - Execution time: 201ms - Rows affected: 72 - RequestID: jjkkj2g9ec +2025-06-18T14:15:38.881Z [TRACE] auth-service - Database DELETE on users - Execution time: 383ms - Rows affected: 15 - RequestID: zsgmu95s8qb +2025-06-18T14:15:38.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 504ms - RequestID: 3e2r4h5g70c +2025-06-18T14:15:39.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1069 - IP: 192.168.144.38 - RequestID: dwfjkwxsvz +2025-06-18T14:15:39.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 573ms - RequestID: 2rek0lhwryw +2025-06-18T14:15:39.281Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 892ms - RequestID: a1sgsplgltf +2025-06-18T14:15:39.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.227.233 - RequestID: aprjgoy7k4h +2025-06-18T14:15:39.481Z [INFO] auth-service - Auth event: password_change - User: user_1092 - IP: 192.168.79.143 - RequestID: wpnwthodjt +2025-06-18T14:15:39.581Z [TRACE] user-service - Operation: cache_miss - Processing time: 878ms - RequestID: 7d4mhfccc6v +2025-06-18T14:15:39.681Z [DEBUG] order-service - POST /api/v1/orders - Status: 502 - Response time: 1068ms - IP: 192.168.170.215 - User: user_1020 - RequestID: wht6c5ee0v +2025-06-18T14:15:39.781Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 30ms - Rows affected: 9 - RequestID: onloypphyfc +2025-06-18T14:15:39.881Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.242.165 - RequestID: dpcnms8fsni +2025-06-18T14:15:39.981Z [TRACE] user-service - PUT /api/v1/users - Status: 400 - Response time: 213ms - IP: 192.168.68.128 - User: user_1002 - RequestID: zqirlirupzm +2025-06-18T14:15:40.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1025 - IP: 192.168.100.240 - RequestID: kf2i80235dg +2025-06-18T14:15:40.181Z [DEBUG] user-service - Database SELECT on users - Execution time: 7ms - Rows affected: 14 - RequestID: 3nkvc2t7gk9 +2025-06-18T14:15:40.281Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1275ms - IP: 192.168.196.226 - User: user_1014 - RequestID: tmxrg7cglgk +2025-06-18T14:15:40.381Z [TRACE] inventory-service - Database INSERT on users - Execution time: 117ms - Rows affected: 5 - RequestID: 4w86sp4xoe +2025-06-18T14:15:40.481Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 115ms - Rows affected: 39 - RequestID: 77xc09xijhn +2025-06-18T14:15:40.581Z [TRACE] auth-service - Database UPDATE on products - Execution time: 227ms - Rows affected: 85 - RequestID: ncackc8bebh +2025-06-18T14:15:40.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 904ms - RequestID: byci6e17xii +2025-06-18T14:15:40.781Z [DEBUG] auth-service - Auth event: logout - User: user_1016 - IP: 192.168.33.76 - RequestID: umcjuglxcz +2025-06-18T14:15:40.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 264ms - RequestID: fd5umkz2zjc +2025-06-18T14:15:40.981Z [INFO] notification-service - Auth event: login_failed - User: user_1040 - IP: 192.168.10.184 - RequestID: tnbzk374ur +2025-06-18T14:15:41.081Z [INFO] payment-service - Operation: notification_queued - Processing time: 293ms - RequestID: vg6f9k82x3k +2025-06-18T14:15:41.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.44.5 - RequestID: 777x4p6wo65 +2025-06-18T14:15:41.281Z [DEBUG] payment-service - Database SELECT on products - Execution time: 133ms - Rows affected: 40 - RequestID: vq91un0bd8t +2025-06-18T14:15:41.381Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 102ms - Rows affected: 93 - RequestID: a2vq9xl438p +2025-06-18T14:15:41.481Z [TRACE] auth-service - Database SELECT on payments - Execution time: 108ms - Rows affected: 1 - RequestID: bwr419cff4f +2025-06-18T14:15:41.581Z [TRACE] user-service - Operation: notification_queued - Processing time: 1012ms - RequestID: xq2rony76l +2025-06-18T14:15:41.681Z [DEBUG] user-service - Database DELETE on products - Execution time: 496ms - Rows affected: 30 - RequestID: q16960496h +2025-06-18T14:15:41.781Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 401 - Response time: 1605ms - IP: 192.168.158.144 - User: user_1021 - RequestID: g6qpz4w8e1 +2025-06-18T14:15:41.881Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 68ms - Rows affected: 98 - RequestID: mwo8fp94dts +2025-06-18T14:15:41.981Z [INFO] inventory-service - Auth event: password_change - User: user_1011 - IP: 192.168.158.144 - RequestID: ryh7haxk5gn +2025-06-18T14:15:42.081Z [DEBUG] auth-service - Auth event: login_success - User: user_1063 - IP: 192.168.174.114 - RequestID: mynxlvaezm9 +2025-06-18T14:15:42.181Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1571ms - IP: 192.168.227.233 - User: user_1090 - RequestID: 57ocihz40vn +2025-06-18T14:15:42.281Z [DEBUG] payment-service - Auth event: logout - User: user_1015 - IP: 192.168.232.72 - RequestID: y6u7cd8r4c +2025-06-18T14:15:42.381Z [DEBUG] payment-service - Database SELECT on products - Execution time: 478ms - Rows affected: 37 - RequestID: 9f9eko4kp04 +2025-06-18T14:15:42.481Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 232ms - RequestID: 1kkvrog0fe3 +2025-06-18T14:15:42.581Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 193ms - Rows affected: 75 - RequestID: 8tr8q07249a +2025-06-18T14:15:42.681Z [TRACE] auth-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.81.206 - RequestID: 0x30cpkki1y +2025-06-18T14:15:42.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1007 - IP: 192.168.1.152 - RequestID: kirssktz3p +2025-06-18T14:15:42.881Z [INFO] user-service - PATCH /api/v1/inventory - Status: 403 - Response time: 721ms - IP: 192.168.79.116 - User: user_1077 - RequestID: 74lt5z5vkmo +2025-06-18T14:15:42.981Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.113.218 - RequestID: puuoeh5n0pp +2025-06-18T14:15:43.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.194.41 - RequestID: 14f3i1promlp +2025-06-18T14:15:43.181Z [INFO] inventory-service - Database INSERT on orders - Execution time: 219ms - Rows affected: 77 - RequestID: zdlvcucgel9 +2025-06-18T14:15:43.281Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 327ms - Rows affected: 13 - RequestID: tv75txuzlb9 +2025-06-18T14:15:43.381Z [INFO] auth-service - Operation: cache_hit - Processing time: 719ms - RequestID: mjhei3yyc6a +2025-06-18T14:15:43.481Z [TRACE] order-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.85.229 - RequestID: 67e47dm6a14 +2025-06-18T14:15:43.581Z [TRACE] order-service - Auth event: login_failed - User: user_1085 - IP: 192.168.104.37 - RequestID: o4e4nmhdrlp +2025-06-18T14:15:43.681Z [DEBUG] order-service - Operation: cache_hit - Processing time: 862ms - RequestID: f0h8zbd4gy +2025-06-18T14:15:43.781Z [INFO] user-service - GET /api/v1/payments - Status: 500 - Response time: 1043ms - IP: 192.168.14.77 - User: user_1059 - RequestID: aeonxx60cb4 +2025-06-18T14:15:43.881Z [INFO] auth-service - Database SELECT on products - Execution time: 442ms - Rows affected: 81 - RequestID: vcry55ut2u9 +2025-06-18T14:15:43.981Z [DEBUG] user-service - POST /api/v1/orders - Status: 401 - Response time: 211ms - IP: 192.168.235.117 - User: user_1081 - RequestID: dc4321884wh +2025-06-18T14:15:44.081Z [TRACE] order-service - Database DELETE on products - Execution time: 428ms - Rows affected: 89 - RequestID: hsoji7xgtg +2025-06-18T14:15:44.181Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1365ms - IP: 192.168.158.144 - User: user_1016 - RequestID: g9n8ow23w1 +2025-06-18T14:15:44.281Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 294ms - Rows affected: 67 - RequestID: b1h7lp1wqrn +2025-06-18T14:15:44.381Z [INFO] order-service - Operation: cache_hit - Processing time: 563ms - RequestID: 45hktq8nisn +2025-06-18T14:15:44.481Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 494ms - IP: 192.168.227.233 - User: user_1005 - RequestID: zi4x3f28wd +2025-06-18T14:15:44.581Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1719ms - IP: 192.168.10.184 - User: user_1042 - RequestID: yfe0osf5mt +2025-06-18T14:15:44.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.14.77 - RequestID: 0mus1e2icd1e +2025-06-18T14:15:44.781Z [TRACE] notification-service - Operation: payment_processed - Processing time: 917ms - RequestID: ctga0i7q2cp +2025-06-18T14:15:44.881Z [TRACE] notification-service - Operation: cache_hit - Processing time: 437ms - RequestID: djd31t6uka +2025-06-18T14:15:44.981Z [TRACE] user-service - POST /api/v1/orders - Status: 401 - Response time: 1339ms - IP: 192.168.31.117 - User: user_1089 - RequestID: 7kbaezw0tqm +2025-06-18T14:15:45.081Z [TRACE] auth-service - Operation: payment_processed - Processing time: 594ms - RequestID: tp47kde2opo +2025-06-18T14:15:45.181Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 202ms - Rows affected: 33 - RequestID: rrpn6n294gi +2025-06-18T14:15:45.281Z [INFO] user-service - Database UPDATE on sessions - Execution time: 390ms - Rows affected: 48 - RequestID: 899sljxel56 +2025-06-18T14:15:45.381Z [TRACE] notification-service - Auth event: logout - User: user_1046 - IP: 192.168.144.38 - RequestID: ccddfcjyxl6 +2025-06-18T14:15:45.481Z [TRACE] payment-service - Operation: notification_queued - Processing time: 182ms - RequestID: c9f7zmaesld +2025-06-18T14:15:45.581Z [TRACE] order-service - Auth event: password_change - User: user_1050 - IP: 192.168.46.63 - RequestID: ap9b6j7r9f4 +2025-06-18T14:15:45.681Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 503 - Response time: 1086ms - IP: 192.168.181.225 - User: user_1027 - RequestID: n96a02loo47 +2025-06-18T14:15:45.781Z [TRACE] auth-service - Database DELETE on products - Execution time: 141ms - Rows affected: 89 - RequestID: jucksb6h4z +2025-06-18T14:15:45.881Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 1305ms - IP: 192.168.211.72 - User: user_1085 - RequestID: vb36mj95le +2025-06-18T14:15:45.981Z [TRACE] order-service - Auth event: login_failed - User: user_1047 - IP: 192.168.104.37 - RequestID: 57fyuylukst +2025-06-18T14:15:46.081Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 379ms - Rows affected: 14 - RequestID: 40alq8p191m +2025-06-18T14:15:46.181Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 217ms - Rows affected: 48 - RequestID: s9p8oc762tq +2025-06-18T14:15:46.281Z [TRACE] payment-service - Database DELETE on products - Execution time: 77ms - Rows affected: 99 - RequestID: mkcqvxwic +2025-06-18T14:15:46.381Z [DEBUG] order-service - Database UPDATE on users - Execution time: 64ms - Rows affected: 69 - RequestID: hd7o65caigs +2025-06-18T14:15:46.481Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 108ms - Rows affected: 36 - RequestID: blkomyip1se +2025-06-18T14:15:46.581Z [INFO] notification-service - Auth event: login_failed - User: user_1036 - IP: 192.168.159.94 - RequestID: 7ezx7bcb9mr +2025-06-18T14:15:46.681Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 503 - Response time: 974ms - IP: 192.168.14.77 - User: user_1066 - RequestID: a7k6yyoyqt +2025-06-18T14:15:46.781Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1030ms - RequestID: z0xjz0sty9m +2025-06-18T14:15:46.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.170.215 - RequestID: q0h4ccqlrrm +2025-06-18T14:15:46.981Z [INFO] payment-service - Operation: webhook_sent - Processing time: 338ms - RequestID: ww0b9x6wyq +2025-06-18T14:15:47.081Z [INFO] inventory-service - Database SELECT on orders - Execution time: 233ms - Rows affected: 13 - RequestID: oyrkzv2y0qs +2025-06-18T14:15:47.181Z [TRACE] payment-service - Database INSERT on users - Execution time: 108ms - Rows affected: 93 - RequestID: opgicrfcg0c +2025-06-18T14:15:47.281Z [INFO] order-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.144.38 - RequestID: dr77tg0ujt5 +2025-06-18T14:15:47.381Z [TRACE] user-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.232.72 - RequestID: atq1mcvqxf6 +2025-06-18T14:15:47.481Z [INFO] user-service - Operation: cache_miss - Processing time: 318ms - RequestID: dwv4e4veldi +2025-06-18T14:15:47.581Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 223ms - Rows affected: 41 - RequestID: 0dvmqxig801q +2025-06-18T14:15:47.681Z [TRACE] auth-service - Auth event: logout - User: user_1094 - IP: 192.168.196.226 - RequestID: fabb1y4qgp +2025-06-18T14:15:47.781Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 438ms - Rows affected: 8 - RequestID: i2wegmiimth +2025-06-18T14:15:47.881Z [TRACE] auth-service - Operation: order_created - Processing time: 721ms - RequestID: wmyi3twubh +2025-06-18T14:15:47.981Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 836ms - RequestID: nzp1bxlccjp +2025-06-18T14:15:48.081Z [INFO] user-service - Operation: order_created - Processing time: 911ms - RequestID: 7hqeqa89aiu +2025-06-18T14:15:48.181Z [INFO] user-service - Database UPDATE on users - Execution time: 388ms - Rows affected: 77 - RequestID: yt4v92e5cpk +2025-06-18T14:15:48.281Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 200 - Response time: 1274ms - IP: 192.168.79.143 - User: user_1018 - RequestID: xf3819bwor +2025-06-18T14:15:48.381Z [TRACE] user-service - Operation: inventory_updated - Processing time: 315ms - RequestID: gs3dlepqvpp +2025-06-18T14:15:48.481Z [TRACE] notification-service - POST /api/v1/payments - Status: 503 - Response time: 1958ms - IP: 192.168.174.114 - User: user_1071 - RequestID: obco2e6weib +2025-06-18T14:15:48.581Z [INFO] order-service - POST /api/v1/inventory - Status: 503 - Response time: 421ms - IP: 192.168.196.226 - User: user_1063 - RequestID: 6pivy09n4uq +2025-06-18T14:15:48.681Z [INFO] user-service - Database SELECT on products - Execution time: 26ms - Rows affected: 16 - RequestID: u7pvqmgckpf +2025-06-18T14:15:48.781Z [INFO] order-service - Operation: inventory_updated - Processing time: 101ms - RequestID: 6nb7sxdwd3h +2025-06-18T14:15:48.881Z [INFO] order-service - Operation: webhook_sent - Processing time: 97ms - RequestID: j420t3jbnz +2025-06-18T14:15:48.981Z [DEBUG] order-service - Database INSERT on products - Execution time: 445ms - Rows affected: 51 - RequestID: xm3f1sb3lt +2025-06-18T14:15:49.081Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.240.169 - RequestID: jr53sfoxx5o +2025-06-18T14:15:49.181Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 503 - Response time: 966ms - IP: 192.168.170.215 - User: user_1045 - RequestID: lpaybw28ytp +2025-06-18T14:15:49.281Z [TRACE] order-service - Database INSERT on sessions - Execution time: 144ms - Rows affected: 29 - RequestID: yv7ebkqnt09 +2025-06-18T14:15:49.381Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 683ms - IP: 192.168.232.72 - User: user_1022 - RequestID: ayi6w8fkqx +2025-06-18T14:15:49.481Z [INFO] auth-service - Database INSERT on sessions - Execution time: 59ms - Rows affected: 2 - RequestID: w1hzaesdlzr +2025-06-18T14:15:49.581Z [INFO] payment-service - GET /api/v1/users - Status: 404 - Response time: 1089ms - IP: 192.168.46.63 - User: user_1064 - RequestID: 5hed7wcor8a +2025-06-18T14:15:49.681Z [INFO] auth-service - Database UPDATE on products - Execution time: 488ms - Rows affected: 11 - RequestID: kc0vshrltm +2025-06-18T14:15:49.781Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 406ms - Rows affected: 71 - RequestID: m46qltd2pn +2025-06-18T14:15:49.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 868ms - RequestID: 0mj1g7t3ogc +2025-06-18T14:15:49.981Z [TRACE] payment-service - POST /api/v1/users - Status: 404 - Response time: 1256ms - IP: 192.168.44.5 - User: user_1044 - RequestID: gmgnsfvcadu +2025-06-18T14:15:50.081Z [DEBUG] notification-service - GET /api/v1/payments - Status: 201 - Response time: 1168ms - IP: 192.168.28.146 - User: user_1067 - RequestID: tvbncrkf9ye +2025-06-18T14:15:50.181Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 502ms - RequestID: a2pbsorjcjf +2025-06-18T14:15:50.281Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 188ms - Rows affected: 51 - RequestID: fhrl6l9b81v +2025-06-18T14:15:50.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 666ms - RequestID: hpw7u5c247q +2025-06-18T14:15:50.481Z [INFO] order-service - Database INSERT on sessions - Execution time: 89ms - Rows affected: 39 - RequestID: p2kkqzxul8 +2025-06-18T14:15:50.581Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 703ms - RequestID: bojptikb05 +2025-06-18T14:15:50.681Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 300ms - Rows affected: 59 - RequestID: 3ptpnlitxh7 +2025-06-18T14:15:50.781Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 403 - Response time: 842ms - IP: 192.168.33.76 - User: user_1052 - RequestID: x5qyddf6sr +2025-06-18T14:15:50.881Z [TRACE] payment-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.10.184 - RequestID: flz3erem8jk +2025-06-18T14:15:50.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.10.184 - RequestID: 9uvi11os20q +2025-06-18T14:15:51.081Z [TRACE] user-service - Operation: cache_hit - Processing time: 410ms - RequestID: l8yhzuqcrpl +2025-06-18T14:15:51.181Z [DEBUG] payment-service - Operation: email_sent - Processing time: 422ms - RequestID: 6bv2gkxxf08 +2025-06-18T14:15:51.281Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 488ms - IP: 192.168.13.72 - User: user_1002 - RequestID: djgj5pcwwe4 +2025-06-18T14:15:51.381Z [INFO] auth-service - Database INSERT on sessions - Execution time: 264ms - Rows affected: 17 - RequestID: go2o8u3m6gf +2025-06-18T14:15:51.481Z [INFO] auth-service - Operation: webhook_sent - Processing time: 819ms - RequestID: zwrj87raa2 +2025-06-18T14:15:51.581Z [INFO] notification-service - GET /api/v1/users - Status: 401 - Response time: 225ms - IP: 192.168.194.41 - User: user_1037 - RequestID: qc34iy36cz9 +2025-06-18T14:15:51.681Z [TRACE] auth-service - Operation: payment_processed - Processing time: 750ms - RequestID: 0ujpm4f2k5kg +2025-06-18T14:15:51.781Z [TRACE] notification-service - Auth event: password_change - User: user_1097 - IP: 192.168.196.226 - RequestID: ll36gmvllh +2025-06-18T14:15:51.881Z [INFO] auth-service - Operation: cache_miss - Processing time: 904ms - RequestID: i4tudc87ril +2025-06-18T14:15:51.981Z [INFO] order-service - Auth event: logout - User: user_1054 - IP: 192.168.181.225 - RequestID: tcsnsjuqj9n +2025-06-18T14:15:52.081Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 146ms - Rows affected: 43 - RequestID: aj2ey4rh9s +2025-06-18T14:15:52.181Z [INFO] user-service - Operation: payment_processed - Processing time: 835ms - RequestID: 3m6k6hdahob +2025-06-18T14:15:52.281Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 521ms - RequestID: qt9tqqhd3l +2025-06-18T14:15:52.381Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1556ms - IP: 192.168.68.128 - User: user_1078 - RequestID: m985z2lby +2025-06-18T14:15:52.481Z [DEBUG] user-service - PUT /api/v1/payments - Status: 502 - Response time: 604ms - IP: 192.168.229.123 - User: user_1046 - RequestID: oqv2e74oj3d +2025-06-18T14:15:52.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.174.114 - RequestID: 0k2u5agvy3ap +2025-06-18T14:15:52.681Z [TRACE] user-service - GET /api/v1/inventory - Status: 500 - Response time: 1627ms - IP: 192.168.79.143 - User: user_1069 - RequestID: i1i8v1p413l +2025-06-18T14:15:52.781Z [INFO] inventory-service - Auth event: logout - User: user_1067 - IP: 192.168.28.146 - RequestID: 4mter0dx8qt +2025-06-18T14:15:52.881Z [INFO] user-service - Auth event: logout - User: user_1073 - IP: 192.168.85.229 - RequestID: ec8s2fkbkju +2025-06-18T14:15:52.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 819ms - RequestID: gc6472n3z0m +2025-06-18T14:15:53.081Z [DEBUG] user-service - Auth event: login_failed - User: user_1024 - IP: 192.168.232.72 - RequestID: qa6y9zgpjs8 +2025-06-18T14:15:53.181Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 988ms - RequestID: e2275mwmpfq +2025-06-18T14:15:53.281Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 429ms - Rows affected: 52 - RequestID: ptyob8tvsmm +2025-06-18T14:15:53.381Z [TRACE] user-service - Auth event: login_failed - User: user_1051 - IP: 192.168.138.123 - RequestID: 1utrnl2bkut +2025-06-18T14:15:53.481Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 196ms - Rows affected: 73 - RequestID: d7lrujphb39 +2025-06-18T14:15:53.581Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 688ms - RequestID: 0yzmxkqvvbcp +2025-06-18T14:15:53.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1042 - IP: 192.168.30.79 - RequestID: azr6l9xb4x8 +2025-06-18T14:15:53.781Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 285ms - RequestID: b6c0rdpc6x +2025-06-18T14:15:53.881Z [INFO] payment-service - PATCH /api/v1/payments - Status: 404 - Response time: 445ms - IP: 192.168.113.218 - User: user_1053 - RequestID: gbuea9nyqd5 +2025-06-18T14:15:53.981Z [INFO] payment-service - Operation: cache_hit - Processing time: 620ms - RequestID: zsb5w983cq +2025-06-18T14:15:54.081Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.32.38 - RequestID: emtk0m4rzau +2025-06-18T14:15:54.181Z [INFO] payment-service - Operation: email_sent - Processing time: 890ms - RequestID: xkv1serzg7k +2025-06-18T14:15:54.281Z [INFO] order-service - Database DELETE on orders - Execution time: 241ms - Rows affected: 21 - RequestID: l10ayhhqt1a +2025-06-18T14:15:54.381Z [TRACE] notification-service - Database UPDATE on users - Execution time: 300ms - Rows affected: 35 - RequestID: 57ta7yipdp +2025-06-18T14:15:54.481Z [DEBUG] user-service - Operation: cache_hit - Processing time: 780ms - RequestID: tzstl482gbg +2025-06-18T14:15:54.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 774ms - RequestID: 1y8mw70g40h +2025-06-18T14:15:54.681Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1011ms - IP: 192.168.68.128 - User: user_1079 - RequestID: cd652ctm86d +2025-06-18T14:15:54.781Z [TRACE] notification-service - PATCH /api/v1/users - Status: 403 - Response time: 1648ms - IP: 192.168.68.158 - User: user_1063 - RequestID: fzu9rfb4uxw +2025-06-18T14:15:54.881Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 400ms - IP: 192.168.13.72 - User: user_1053 - RequestID: 2fgr2r9p0me +2025-06-18T14:15:54.981Z [TRACE] auth-service - Operation: order_created - Processing time: 493ms - RequestID: 14vpb45ouml +2025-06-18T14:15:55.081Z [INFO] notification-service - PUT /api/v1/orders - Status: 401 - Response time: 40ms - IP: 192.168.194.41 - User: user_1026 - RequestID: z1jho5t604q +2025-06-18T14:15:55.181Z [INFO] order-service - Operation: notification_queued - Processing time: 103ms - RequestID: ulr24oyy9ol +2025-06-18T14:15:55.281Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 403 - Response time: 926ms - IP: 192.168.68.158 - User: user_1066 - RequestID: y9ddyryo4yn +2025-06-18T14:15:55.381Z [TRACE] payment-service - GET /api/v1/inventory - Status: 500 - Response time: 1977ms - IP: 192.168.242.165 - User: user_1052 - RequestID: tu95ctd3tgg +2025-06-18T14:15:55.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.189.103 - RequestID: qfg2z5fj4kb +2025-06-18T14:15:55.581Z [DEBUG] inventory-service - Auth event: login_success - User: user_1065 - IP: 192.168.144.38 - RequestID: 9uu36wo6qom +2025-06-18T14:15:55.681Z [TRACE] notification-service - Auth event: password_change - User: user_1053 - IP: 192.168.53.133 - RequestID: i31z6xvaklb +2025-06-18T14:15:55.781Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 459ms - Rows affected: 89 - RequestID: 9ix8bba7sdi +2025-06-18T14:15:55.881Z [INFO] user-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.227.77 - RequestID: 7mj44fwwyt +2025-06-18T14:15:55.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1045 - IP: 192.168.227.77 - RequestID: q3mzj7ofdt +2025-06-18T14:15:56.081Z [DEBUG] notification-service - POST /api/v1/payments - Status: 404 - Response time: 410ms - IP: 192.168.11.60 - User: user_1015 - RequestID: c9sq7mvds0i +2025-06-18T14:15:56.181Z [TRACE] order-service - Database SELECT on sessions - Execution time: 148ms - Rows affected: 82 - RequestID: t2a9b7hcxf +2025-06-18T14:15:56.281Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 1463ms - IP: 192.168.159.94 - User: user_1003 - RequestID: lhb5fmgf5k +2025-06-18T14:15:56.381Z [INFO] user-service - PATCH /api/v1/users - Status: 404 - Response time: 275ms - IP: 192.168.36.218 - User: user_1085 - RequestID: pc5c2kljv79 +2025-06-18T14:15:56.481Z [TRACE] inventory-service - GET /api/v1/payments - Status: 403 - Response time: 199ms - IP: 192.168.189.103 - User: user_1094 - RequestID: n3pnba0xetn +2025-06-18T14:15:56.581Z [DEBUG] order-service - Auth event: logout - User: user_1067 - IP: 192.168.36.218 - RequestID: k1joelyr1fh +2025-06-18T14:15:56.681Z [INFO] notification-service - PUT /api/v1/inventory - Status: 401 - Response time: 1694ms - IP: 192.168.147.171 - User: user_1041 - RequestID: h536quafwm +2025-06-18T14:15:56.781Z [INFO] notification-service - Operation: payment_processed - Processing time: 804ms - RequestID: y05gkx847c +2025-06-18T14:15:56.881Z [INFO] payment-service - PUT /api/v1/orders - Status: 503 - Response time: 979ms - IP: 192.168.44.5 - User: user_1096 - RequestID: 25akf8tn8ru +2025-06-18T14:15:56.981Z [INFO] payment-service - Auth event: logout - User: user_1010 - IP: 192.168.44.5 - RequestID: ckhfuqfgtwj +2025-06-18T14:15:57.081Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 902ms - RequestID: rxzii20t4 +2025-06-18T14:15:57.181Z [INFO] notification-service - Database UPDATE on orders - Execution time: 321ms - Rows affected: 23 - RequestID: 222u7n1x7in +2025-06-18T14:15:57.281Z [INFO] order-service - Operation: payment_processed - Processing time: 252ms - RequestID: ymsfb531brf +2025-06-18T14:15:57.381Z [DEBUG] user-service - Auth event: password_change - User: user_1087 - IP: 192.168.158.144 - RequestID: ykjmy8cif6k +2025-06-18T14:15:57.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 481ms - RequestID: k6uzt2lu54 +2025-06-18T14:15:57.581Z [INFO] payment-service - Database UPDATE on orders - Execution time: 227ms - Rows affected: 95 - RequestID: 2vixdldgjtc +2025-06-18T14:15:57.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.181.225 - RequestID: 1my5i367yq2 +2025-06-18T14:15:57.781Z [TRACE] order-service - Operation: email_sent - Processing time: 376ms - RequestID: g1bboo8up6d +2025-06-18T14:15:57.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.13.72 - RequestID: itxieggp38i +2025-06-18T14:15:57.981Z [INFO] auth-service - Auth event: password_change - User: user_1086 - IP: 192.168.227.233 - RequestID: kwt04mcyx7o +2025-06-18T14:15:58.081Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 304ms - Rows affected: 64 - RequestID: 66kuxfkxty7 +2025-06-18T14:15:58.181Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 480ms - Rows affected: 91 - RequestID: ojykwzrc69 +2025-06-18T14:15:58.281Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 565ms - RequestID: 3totjxmoeqq +2025-06-18T14:15:58.381Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 842ms - IP: 192.168.227.77 - User: user_1035 - RequestID: npegxtxwvuh +2025-06-18T14:15:58.481Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 335ms - RequestID: uy9l6wg87tm +2025-06-18T14:15:58.581Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 1324ms - IP: 192.168.31.117 - User: user_1029 - RequestID: 3drnmgkrbpf +2025-06-18T14:15:58.681Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 358ms - IP: 192.168.196.226 - User: user_1089 - RequestID: 2n44kc9wxde +2025-06-18T14:15:58.781Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 96ms - Rows affected: 63 - RequestID: 5xlkj9xxode +2025-06-18T14:15:58.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.1.152 - RequestID: xn3bu5eqmv +2025-06-18T14:15:58.981Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 201 - Response time: 677ms - IP: 192.168.240.169 - User: user_1089 - RequestID: vc4xfn6nh4l +2025-06-18T14:15:59.081Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 502 - Response time: 1845ms - IP: 192.168.79.141 - User: user_1022 - RequestID: f83gf0jcvav +2025-06-18T14:15:59.181Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 132ms - Rows affected: 75 - RequestID: if0as0iwjfd +2025-06-18T14:15:59.281Z [TRACE] inventory-service - Operation: order_created - Processing time: 711ms - RequestID: cvvn2fmuc8 +2025-06-18T14:15:59.381Z [TRACE] notification-service - Auth event: logout - User: user_1091 - IP: 192.168.1.152 - RequestID: gwoeel8tgym +2025-06-18T14:15:59.481Z [INFO] user-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1453ms - IP: 192.168.229.123 - User: user_1095 - RequestID: 21hxbwz11j8 +2025-06-18T14:15:59.581Z [INFO] order-service - Operation: email_sent - Processing time: 833ms - RequestID: 91r9cemh7co +2025-06-18T14:15:59.681Z [INFO] user-service - Auth event: login_failed - User: user_1040 - IP: 192.168.100.240 - RequestID: 9obas4vij0a +2025-06-18T14:15:59.781Z [INFO] user-service - Auth event: login_success - User: user_1050 - IP: 192.168.11.60 - RequestID: 20dp8ydrokq +2025-06-18T14:15:59.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.133.7 - RequestID: ieqp8c1ari +2025-06-18T14:15:59.981Z [TRACE] user-service - PUT /api/v1/payments - Status: 502 - Response time: 947ms - IP: 192.168.53.133 - User: user_1004 - RequestID: vyzqnbhz8u +2025-06-18T14:16:00.081Z [INFO] inventory-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.167.32 - RequestID: uyl3ygaouej +2025-06-18T14:16:00.181Z [INFO] auth-service - Operation: order_created - Processing time: 1028ms - RequestID: bkz766x4lkm +2025-06-18T14:16:00.281Z [DEBUG] order-service - Auth event: password_change - User: user_1024 - IP: 192.168.104.37 - RequestID: 7g8oxvgjbqt +2025-06-18T14:16:00.381Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 309ms - RequestID: 8djq0zhjkbv +2025-06-18T14:16:00.481Z [TRACE] user-service - Operation: cache_miss - Processing time: 223ms - RequestID: wfysakwixp +2025-06-18T14:16:00.581Z [INFO] notification-service - Operation: order_created - Processing time: 326ms - RequestID: 6c66bah9qgq +2025-06-18T14:16:00.681Z [INFO] payment-service - PATCH /api/v1/users - Status: 404 - Response time: 17ms - IP: 192.168.30.79 - User: user_1072 - RequestID: 8di7jgemqha +2025-06-18T14:16:00.781Z [INFO] notification-service - Operation: email_sent - Processing time: 566ms - RequestID: jqwrsyg5uvp +2025-06-18T14:16:00.881Z [TRACE] order-service - Auth event: logout - User: user_1079 - IP: 192.168.46.63 - RequestID: ugu393k8is +2025-06-18T14:16:00.981Z [INFO] payment-service - Operation: cache_hit - Processing time: 115ms - RequestID: ve6kjfx78tk +2025-06-18T14:16:01.081Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 277ms - RequestID: if9irohgko +2025-06-18T14:16:01.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.53.133 - RequestID: 839ozoxx0j3 +2025-06-18T14:16:01.281Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 294ms - RequestID: bukoybe0s9j +2025-06-18T14:16:01.381Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 849ms - IP: 192.168.133.7 - User: user_1045 - RequestID: igprnb03nl +2025-06-18T14:16:01.481Z [DEBUG] user-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.64.33 - RequestID: ee2y7089ijt +2025-06-18T14:16:01.581Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 705ms - RequestID: 5yteq8a41c6 +2025-06-18T14:16:01.681Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 534ms - RequestID: e5xllejqejt +2025-06-18T14:16:01.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 574ms - RequestID: 47yih6x8qyx +2025-06-18T14:16:01.881Z [INFO] user-service - Database DELETE on payments - Execution time: 90ms - Rows affected: 73 - RequestID: w2e5c8fz9ok +2025-06-18T14:16:01.981Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1411ms - IP: 192.168.44.5 - User: user_1052 - RequestID: 01yfz20wqcyz +2025-06-18T14:16:02.081Z [INFO] notification-service - POST /api/v1/auth/login - Status: 400 - Response time: 50ms - IP: 192.168.235.117 - User: user_1050 - RequestID: s7s0v1fub +2025-06-18T14:16:02.181Z [TRACE] user-service - Operation: email_sent - Processing time: 119ms - RequestID: bpq5lqs6jd +2025-06-18T14:16:02.281Z [INFO] payment-service - POST /api/v1/auth/login - Status: 403 - Response time: 601ms - IP: 192.168.232.72 - User: user_1029 - RequestID: jms3vz2rph +2025-06-18T14:16:02.381Z [INFO] auth-service - DELETE /api/v1/orders - Status: 200 - Response time: 105ms - IP: 192.168.44.5 - User: user_1064 - RequestID: f56kegp4kq +2025-06-18T14:16:02.481Z [TRACE] user-service - Operation: inventory_updated - Processing time: 78ms - RequestID: q817bjh120i +2025-06-18T14:16:02.581Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 177ms - Rows affected: 96 - RequestID: pftoemoy4ws +2025-06-18T14:16:02.681Z [DEBUG] user-service - Auth event: password_change - User: user_1055 - IP: 192.168.79.116 - RequestID: 2kt5230bums +2025-06-18T14:16:02.781Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 937ms - RequestID: 456ojpz6xkm +2025-06-18T14:16:02.881Z [DEBUG] inventory-service - GET /api/v1/users - Status: 400 - Response time: 983ms - IP: 192.168.53.133 - User: user_1090 - RequestID: cz82g37fpo +2025-06-18T14:16:02.981Z [INFO] auth-service - Auth event: login_success - User: user_1081 - IP: 192.168.14.77 - RequestID: fsnuj07mbj7 +2025-06-18T14:16:03.081Z [DEBUG] inventory-service - POST /api/v1/users - Status: 502 - Response time: 806ms - IP: 192.168.159.94 - User: user_1088 - RequestID: x1kfz5bbdk +2025-06-18T14:16:03.181Z [DEBUG] order-service - Operation: payment_processed - Processing time: 127ms - RequestID: mbcnzn1b31 +2025-06-18T14:16:03.281Z [INFO] auth-service - Database DELETE on sessions - Execution time: 469ms - Rows affected: 85 - RequestID: rrc3y7nmekl +2025-06-18T14:16:03.381Z [INFO] user-service - Auth event: login_success - User: user_1037 - IP: 192.168.158.144 - RequestID: yvf76yveazm +2025-06-18T14:16:03.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.68.128 - RequestID: pw20bec2wbi +2025-06-18T14:16:03.581Z [INFO] notification-service - Auth event: login_success - User: user_1029 - IP: 192.168.240.169 - RequestID: g3gbkrtw1b +2025-06-18T14:16:03.681Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 502 - Response time: 459ms - IP: 192.168.85.229 - User: user_1004 - RequestID: ozseilvc1h +2025-06-18T14:16:03.781Z [INFO] user-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.97.87 - RequestID: pxoi6fkz43 +2025-06-18T14:16:03.881Z [INFO] user-service - Operation: cache_miss - Processing time: 517ms - RequestID: xblw7rzvbr +2025-06-18T14:16:03.981Z [DEBUG] auth-service - Operation: order_created - Processing time: 597ms - RequestID: am4skuf3c7e +2025-06-18T14:16:04.081Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 484ms - Rows affected: 82 - RequestID: cfqe2rgv40q +2025-06-18T14:16:04.181Z [INFO] inventory-service - Operation: cache_miss - Processing time: 792ms - RequestID: 8thzuge7w3p +2025-06-18T14:16:04.281Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 240ms - Rows affected: 21 - RequestID: bo4n01zn1jj +2025-06-18T14:16:04.381Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.100.240 - RequestID: ack3z1upp1 +2025-06-18T14:16:04.481Z [TRACE] auth-service - Operation: order_created - Processing time: 61ms - RequestID: jl8cbg6aglg +2025-06-18T14:16:04.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 523ms - RequestID: bjtromzj3pd +2025-06-18T14:16:04.681Z [TRACE] user-service - Database INSERT on payments - Execution time: 128ms - Rows affected: 86 - RequestID: mutgyxqmi2 +2025-06-18T14:16:04.781Z [INFO] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 249ms - IP: 192.168.68.128 - User: user_1051 - RequestID: wngzyjeppol +2025-06-18T14:16:04.881Z [INFO] auth-service - Operation: payment_processed - Processing time: 514ms - RequestID: xiotmcmrtb +2025-06-18T14:16:04.981Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 403 - Response time: 200ms - IP: 192.168.13.72 - User: user_1034 - RequestID: li90npqj8jr +2025-06-18T14:16:05.081Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 404 - Response time: 1194ms - IP: 192.168.174.114 - User: user_1069 - RequestID: wxh9ds9evin +2025-06-18T14:16:05.181Z [INFO] notification-service - Operation: webhook_sent - Processing time: 449ms - RequestID: f8t2x9gneej +2025-06-18T14:16:05.281Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 138ms - Rows affected: 95 - RequestID: hnzxri9zr9 +2025-06-18T14:16:05.381Z [DEBUG] order-service - Auth event: login_success - User: user_1073 - IP: 192.168.36.218 - RequestID: l27k01svmc +2025-06-18T14:16:05.481Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 240ms - RequestID: xbk5qz971lg +2025-06-18T14:16:05.581Z [TRACE] notification-service - Operation: notification_queued - Processing time: 1014ms - RequestID: gfbis7uz9ki +2025-06-18T14:16:05.681Z [INFO] notification-service - Operation: order_created - Processing time: 243ms - RequestID: yryo8lnxwmc +2025-06-18T14:16:05.781Z [INFO] notification-service - PUT /api/v1/payments - Status: 200 - Response time: 254ms - IP: 192.168.242.165 - User: user_1064 - RequestID: aot4e7ufyc5 +2025-06-18T14:16:05.881Z [INFO] user-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.211.72 - RequestID: cualyo0dkne +2025-06-18T14:16:05.981Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 401 - Response time: 1731ms - IP: 192.168.194.41 - User: user_1064 - RequestID: f2n2tqnqqu +2025-06-18T14:16:06.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.10.184 - RequestID: 9o54xsghgul +2025-06-18T14:16:06.181Z [INFO] user-service - POST /api/v1/inventory - Status: 502 - Response time: 1378ms - IP: 192.168.133.7 - User: user_1037 - RequestID: nss45m0dgrj +2025-06-18T14:16:06.281Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 668ms - RequestID: ksxjzx301xp +2025-06-18T14:16:06.381Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 46ms - Rows affected: 55 - RequestID: zwjqugsnfm +2025-06-18T14:16:06.481Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 401 - Response time: 1198ms - IP: 192.168.147.171 - User: user_1066 - RequestID: h3rp1ad47fr +2025-06-18T14:16:06.581Z [DEBUG] order-service - Database SELECT on payments - Execution time: 30ms - Rows affected: 91 - RequestID: ef2lovhdets +2025-06-18T14:16:06.681Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 452ms - Rows affected: 14 - RequestID: f8by3xtt0xg +2025-06-18T14:16:06.781Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 401 - Response time: 1076ms - IP: 192.168.133.7 - User: user_1070 - RequestID: ttiv04jkgy8 +2025-06-18T14:16:06.881Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 403 - Response time: 320ms - IP: 192.168.53.133 - User: user_1092 - RequestID: 4inflo6xd1j +2025-06-18T14:16:06.981Z [INFO] order-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.138.123 - RequestID: jwc3axitio9 +2025-06-18T14:16:07.081Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1530ms - IP: 192.168.181.225 - User: user_1092 - RequestID: w0xa1e2p2z +2025-06-18T14:16:07.181Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 594ms - RequestID: cgocojlyrnt +2025-06-18T14:16:07.281Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 332ms - Rows affected: 18 - RequestID: in5fh2lfnq +2025-06-18T14:16:07.381Z [DEBUG] order-service - Database SELECT on orders - Execution time: 29ms - Rows affected: 89 - RequestID: mx5zh85zzzp +2025-06-18T14:16:07.481Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 757ms - RequestID: cnn00czmb3t +2025-06-18T14:16:07.581Z [INFO] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 965ms - IP: 192.168.79.141 - User: user_1065 - RequestID: ytp964whxo +2025-06-18T14:16:07.681Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 399ms - Rows affected: 3 - RequestID: vmyipkzq48 +2025-06-18T14:16:07.781Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 754ms - RequestID: uqc89u83jma +2025-06-18T14:16:07.881Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 395ms - Rows affected: 63 - RequestID: sfq14hsmph +2025-06-18T14:16:07.981Z [INFO] auth-service - Operation: cache_hit - Processing time: 594ms - RequestID: g0o7txq3hs5 +2025-06-18T14:16:08.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.85.229 - RequestID: pa1bo2f8yte +2025-06-18T14:16:08.181Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1392ms - IP: 192.168.53.133 - User: user_1059 - RequestID: 7wsonjcw1eh +2025-06-18T14:16:08.281Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.10.184 - RequestID: si4pwqmjr3 +2025-06-18T14:16:08.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 104ms - RequestID: eui47g6dm9l +2025-06-18T14:16:08.481Z [INFO] payment-service - POST /api/v1/users - Status: 500 - Response time: 1720ms - IP: 192.168.64.33 - User: user_1032 - RequestID: e28ql80buji +2025-06-18T14:16:08.581Z [DEBUG] order-service - Auth event: login_failed - User: user_1093 - IP: 192.168.229.123 - RequestID: 0lh0rll6061a +2025-06-18T14:16:08.681Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 232ms - Rows affected: 38 - RequestID: z0c70ntm8rd +2025-06-18T14:16:08.781Z [DEBUG] order-service - Database UPDATE on products - Execution time: 366ms - Rows affected: 79 - RequestID: 1fq5ty9gjcm +2025-06-18T14:16:08.881Z [INFO] user-service - PATCH /api/v1/users - Status: 200 - Response time: 60ms - IP: 192.168.13.72 - User: user_1076 - RequestID: 0czr352oldy +2025-06-18T14:16:08.981Z [INFO] auth-service - POST /api/v1/auth/login - Status: 200 - Response time: 774ms - IP: 192.168.242.165 - User: user_1034 - RequestID: cvzqnbdf7qw +2025-06-18T14:16:09.081Z [TRACE] auth-service - PUT /api/v1/payments - Status: 404 - Response time: 1035ms - IP: 192.168.189.103 - User: user_1065 - RequestID: veqm3x5mgo +2025-06-18T14:16:09.181Z [INFO] inventory-service - Operation: payment_processed - Processing time: 868ms - RequestID: 8jxxurnfm2x +2025-06-18T14:16:09.281Z [TRACE] payment-service - Operation: payment_processed - Processing time: 698ms - RequestID: stopp01h61 +2025-06-18T14:16:09.381Z [TRACE] payment-service - Auth event: password_change - User: user_1071 - IP: 192.168.247.134 - RequestID: ibp3prsbzxb +2025-06-18T14:16:09.481Z [DEBUG] order-service - Auth event: password_change - User: user_1035 - IP: 192.168.53.133 - RequestID: zf0yyzasado +2025-06-18T14:16:09.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 150ms - RequestID: 5ch8l6uu7gu +2025-06-18T14:16:09.681Z [TRACE] notification-service - Database DELETE on users - Execution time: 344ms - Rows affected: 12 - RequestID: 77gupgtil5r +2025-06-18T14:16:09.781Z [INFO] user-service - PUT /api/v1/auth/login - Status: 200 - Response time: 975ms - IP: 192.168.141.100 - User: user_1003 - RequestID: zhf1ckpt1ib +2025-06-18T14:16:09.881Z [DEBUG] payment-service - POST /api/v1/users - Status: 503 - Response time: 27ms - IP: 192.168.227.233 - User: user_1078 - RequestID: 7azmmj3utdm +2025-06-18T14:16:09.981Z [DEBUG] notification-service - GET /api/v1/users - Status: 200 - Response time: 1927ms - IP: 192.168.194.41 - User: user_1052 - RequestID: 528v3dcbnom +2025-06-18T14:16:10.081Z [DEBUG] user-service - PUT /api/v1/orders - Status: 400 - Response time: 1169ms - IP: 192.168.10.184 - User: user_1091 - RequestID: 5nlepds36vw +2025-06-18T14:16:10.181Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 240ms - Rows affected: 72 - RequestID: laj6i6ss4a +2025-06-18T14:16:10.281Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 62ms - Rows affected: 31 - RequestID: vncvtubgyy +2025-06-18T14:16:10.381Z [TRACE] notification-service - Operation: order_created - Processing time: 862ms - RequestID: 1tlh4apyhh +2025-06-18T14:16:10.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.187.199 - RequestID: g5t8h0ks48p +2025-06-18T14:16:10.581Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 1028ms - RequestID: n40q93x9jpd +2025-06-18T14:16:10.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1095 - IP: 192.168.181.225 - RequestID: dskou66ub1k +2025-06-18T14:16:10.781Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 826ms - IP: 192.168.196.226 - User: user_1053 - RequestID: 27kl5ibv635 +2025-06-18T14:16:10.881Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 260ms - Rows affected: 16 - RequestID: yxesy00wohb +2025-06-18T14:16:10.981Z [DEBUG] auth-service - Database SELECT on products - Execution time: 19ms - Rows affected: 10 - RequestID: jylarnr3s5 +2025-06-18T14:16:11.081Z [INFO] order-service - Operation: email_sent - Processing time: 223ms - RequestID: yv9px5303rp +2025-06-18T14:16:11.181Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 439ms - Rows affected: 68 - RequestID: zd9qbqo9i7d +2025-06-18T14:16:11.281Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 595ms - IP: 192.168.79.116 - User: user_1030 - RequestID: kkq6zz4pb6 +2025-06-18T14:16:11.381Z [TRACE] user-service - Operation: email_sent - Processing time: 264ms - RequestID: 9eqfnuyvl8a +2025-06-18T14:16:11.481Z [INFO] order-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.181.225 - RequestID: uh3i5decrf +2025-06-18T14:16:11.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.159.94 - RequestID: mt1wk18i9bo +2025-06-18T14:16:11.681Z [INFO] auth-service - PATCH /api/v1/orders - Status: 502 - Response time: 1745ms - IP: 192.168.227.233 - User: user_1095 - RequestID: dkgy1zp9d7q +2025-06-18T14:16:11.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.144.38 - RequestID: f9inea04hs +2025-06-18T14:16:11.881Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1904ms - IP: 192.168.100.240 - User: user_1058 - RequestID: q4xpi81rfaf +2025-06-18T14:16:11.981Z [TRACE] notification-service - Operation: notification_queued - Processing time: 97ms - RequestID: mtgih5mnk5 +2025-06-18T14:16:12.081Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 50ms - Rows affected: 99 - RequestID: 9rb26emdnnr +2025-06-18T14:16:12.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 595ms - RequestID: um5slkj4e9a +2025-06-18T14:16:12.281Z [TRACE] order-service - DELETE /api/v1/payments - Status: 201 - Response time: 618ms - IP: 192.168.158.144 - User: user_1000 - RequestID: 2yonzkjqqe2 +2025-06-18T14:16:12.381Z [INFO] auth-service - POST /api/v1/inventory - Status: 201 - Response time: 340ms - IP: 192.168.85.229 - User: user_1090 - RequestID: 81qb5nsctx4 +2025-06-18T14:16:12.481Z [TRACE] inventory-service - POST /api/v1/payments - Status: 502 - Response time: 1689ms - IP: 192.168.79.141 - User: user_1078 - RequestID: zyc24qs8ioo +2025-06-18T14:16:12.581Z [TRACE] inventory-service - Auth event: login_failed - User: user_1051 - IP: 192.168.242.165 - RequestID: 007czwhnbvrss +2025-06-18T14:16:12.681Z [INFO] order-service - Database INSERT on orders - Execution time: 164ms - Rows affected: 2 - RequestID: osb3rnek6z +2025-06-18T14:16:12.781Z [INFO] auth-service - PUT /api/v1/inventory - Status: 502 - Response time: 1119ms - IP: 192.168.113.218 - User: user_1082 - RequestID: bm2ssg6qv3t +2025-06-18T14:16:12.881Z [TRACE] notification-service - Database UPDATE on users - Execution time: 433ms - Rows affected: 34 - RequestID: v8i4ik794u +2025-06-18T14:16:12.981Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 371ms - RequestID: g00bihvo42 +2025-06-18T14:16:13.081Z [TRACE] notification-service - PATCH /api/v1/users - Status: 502 - Response time: 717ms - IP: 192.168.227.77 - User: user_1083 - RequestID: 8zll887onc5 +2025-06-18T14:16:13.181Z [INFO] notification-service - Auth event: logout - User: user_1086 - IP: 192.168.46.63 - RequestID: gpe4rzmubhp +2025-06-18T14:16:13.281Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 401 - Response time: 957ms - IP: 192.168.159.94 - User: user_1024 - RequestID: 7v91d42kl0o +2025-06-18T14:16:13.381Z [TRACE] order-service - PATCH /api/v1/orders - Status: 404 - Response time: 662ms - IP: 192.168.133.7 - User: user_1072 - RequestID: 1zuuga1wegz +2025-06-18T14:16:13.481Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 403 - Response time: 703ms - IP: 192.168.159.94 - User: user_1055 - RequestID: y0m1gnuuo5i +2025-06-18T14:16:13.581Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1364ms - IP: 192.168.159.94 - User: user_1019 - RequestID: q96epw9ie2 +2025-06-18T14:16:13.681Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 401 - Response time: 2003ms - IP: 192.168.68.128 - User: user_1020 - RequestID: yxm0la5t0ea +2025-06-18T14:16:13.781Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 1019ms - RequestID: lks9kwappaj +2025-06-18T14:16:13.881Z [TRACE] order-service - GET /api/v1/auth/login - Status: 500 - Response time: 441ms - IP: 192.168.10.184 - User: user_1050 - RequestID: ymize3nw49 +2025-06-18T14:16:13.981Z [INFO] order-service - POST /api/v1/auth/login - Status: 401 - Response time: 1415ms - IP: 192.168.144.38 - User: user_1070 - RequestID: e1l8otimbcf +2025-06-18T14:16:14.081Z [INFO] user-service - Auth event: password_change - User: user_1029 - IP: 192.168.196.226 - RequestID: 267pmffuuil +2025-06-18T14:16:14.181Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 250ms - Rows affected: 48 - RequestID: izrgze7rtpp +2025-06-18T14:16:14.281Z [INFO] user-service - Operation: payment_processed - Processing time: 425ms - RequestID: ewozwnofts4 +2025-06-18T14:16:14.381Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.196.226 - RequestID: n6c0agq2fo9 +2025-06-18T14:16:14.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.44.5 - RequestID: 1fezd2bn85q +2025-06-18T14:16:14.581Z [INFO] user-service - Auth event: logout - User: user_1077 - IP: 192.168.242.165 - RequestID: lgob6emrg8e +2025-06-18T14:16:14.681Z [INFO] auth-service - PUT /api/v1/orders - Status: 502 - Response time: 1716ms - IP: 192.168.174.114 - User: user_1057 - RequestID: 3m68wqc99pu +2025-06-18T14:16:14.781Z [DEBUG] user-service - Operation: payment_processed - Processing time: 753ms - RequestID: w5sbp0wilno +2025-06-18T14:16:14.881Z [TRACE] user-service - GET /api/v1/auth/login - Status: 400 - Response time: 117ms - IP: 192.168.53.133 - User: user_1044 - RequestID: qtviwch1lro +2025-06-18T14:16:14.981Z [TRACE] user-service - Operation: inventory_updated - Processing time: 428ms - RequestID: ubsndczz94 +2025-06-18T14:16:15.081Z [TRACE] notification-service - Auth event: login_success - User: user_1033 - IP: 192.168.232.72 - RequestID: v3p5gqtwf29 +2025-06-18T14:16:15.181Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 210ms - Rows affected: 73 - RequestID: 8jlxuk9szgq +2025-06-18T14:16:15.281Z [INFO] user-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.174.114 - RequestID: hf2ra3ff986 +2025-06-18T14:16:15.381Z [TRACE] user-service - Database UPDATE on payments - Execution time: 7ms - Rows affected: 60 - RequestID: gols9jeu9tq +2025-06-18T14:16:15.481Z [DEBUG] user-service - Database DELETE on payments - Execution time: 276ms - Rows affected: 96 - RequestID: 6eq9gr6irz +2025-06-18T14:16:15.581Z [TRACE] user-service - Auth event: login_success - User: user_1038 - IP: 192.168.187.199 - RequestID: 8ykuaw9puq9 +2025-06-18T14:16:15.681Z [TRACE] user-service - Operation: email_sent - Processing time: 827ms - RequestID: jnbiibiihre +2025-06-18T14:16:15.781Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 384ms - RequestID: q0bgbtv4rso +2025-06-18T14:16:15.881Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 260ms - Rows affected: 29 - RequestID: 3uihyckvftf +2025-06-18T14:16:15.981Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 63ms - Rows affected: 59 - RequestID: k2ee4dsrk4 +2025-06-18T14:16:16.081Z [INFO] payment-service - Auth event: logout - User: user_1022 - IP: 192.168.227.77 - RequestID: 02q2fydkr4fl +2025-06-18T14:16:16.181Z [INFO] inventory-service - Database INSERT on payments - Execution time: 151ms - Rows affected: 4 - RequestID: qkyp9v3ecbd +2025-06-18T14:16:16.281Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 411ms - RequestID: 9hr23pi7fr +2025-06-18T14:16:16.381Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 586ms - RequestID: pyhoyoj17fr +2025-06-18T14:16:16.481Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 662ms - RequestID: e5h3b4ndhte +2025-06-18T14:16:16.581Z [INFO] order-service - Operation: email_sent - Processing time: 312ms - RequestID: l7cnfnwc2i +2025-06-18T14:16:16.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 505ms - RequestID: 4kryg5ofxhw +2025-06-18T14:16:16.781Z [TRACE] auth-service - Operation: cache_miss - Processing time: 258ms - RequestID: 2k4au6n75pk +2025-06-18T14:16:16.881Z [INFO] payment-service - Database DELETE on users - Execution time: 29ms - Rows affected: 61 - RequestID: 4ah92zdrt3c +2025-06-18T14:16:16.981Z [TRACE] notification-service - Database DELETE on payments - Execution time: 419ms - Rows affected: 14 - RequestID: quldhnvv22 +2025-06-18T14:16:17.081Z [TRACE] order-service - Auth event: login_failed - User: user_1025 - IP: 192.168.79.143 - RequestID: f1dj5j01s1s +2025-06-18T14:16:17.181Z [INFO] inventory-service - Database INSERT on orders - Execution time: 374ms - Rows affected: 78 - RequestID: azaplyz0j5s +2025-06-18T14:16:17.281Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 968ms - RequestID: ub6i120xtsm +2025-06-18T14:16:17.381Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 1853ms - IP: 192.168.227.77 - User: user_1078 - RequestID: w5xs6rx0xx +2025-06-18T14:16:17.481Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 404ms - Rows affected: 86 - RequestID: 8ztpkbl1aiv +2025-06-18T14:16:17.581Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 401 - Response time: 1800ms - IP: 192.168.44.5 - User: user_1014 - RequestID: 60jdgr58p4 +2025-06-18T14:16:17.681Z [INFO] user-service - Database DELETE on orders - Execution time: 497ms - Rows affected: 98 - RequestID: pf2j34j6438 +2025-06-18T14:16:17.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.240.169 - RequestID: emdvcrcmycc +2025-06-18T14:16:17.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1092 - IP: 192.168.28.146 - RequestID: 8kuju87ts3q +2025-06-18T14:16:17.981Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 316ms - Rows affected: 81 - RequestID: ccd0flbw2m +2025-06-18T14:16:18.081Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 404 - Response time: 758ms - IP: 192.168.240.169 - User: user_1050 - RequestID: ci3rz2npons +2025-06-18T14:16:18.181Z [TRACE] notification-service - Database DELETE on users - Execution time: 327ms - Rows affected: 73 - RequestID: 22z2tn6cg79h +2025-06-18T14:16:18.281Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 1939ms - IP: 192.168.81.206 - User: user_1056 - RequestID: mawb1d0bas +2025-06-18T14:16:18.381Z [INFO] auth-service - Database SELECT on products - Execution time: 122ms - Rows affected: 74 - RequestID: mxmpexim2w9 +2025-06-18T14:16:18.481Z [TRACE] user-service - Operation: order_created - Processing time: 149ms - RequestID: qrzcchfncyh +2025-06-18T14:16:18.581Z [TRACE] auth-service - Database DELETE on payments - Execution time: 267ms - Rows affected: 36 - RequestID: lwni8rq140h +2025-06-18T14:16:18.681Z [TRACE] user-service - Operation: payment_processed - Processing time: 242ms - RequestID: cvdevjbuk4 +2025-06-18T14:16:18.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.28.146 - RequestID: eoz9l9xhs1k +2025-06-18T14:16:18.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1044 - IP: 192.168.13.72 - RequestID: ivq0f4f1j4 +2025-06-18T14:16:18.981Z [DEBUG] order-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.10.184 - RequestID: svo9vta575b +2025-06-18T14:16:19.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1072 - IP: 192.168.44.5 - RequestID: nvr4iemzkxr +2025-06-18T14:16:19.181Z [TRACE] user-service - Operation: payment_processed - Processing time: 333ms - RequestID: 68ip59r75ho +2025-06-18T14:16:19.281Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 400 - Response time: 1225ms - IP: 192.168.174.114 - User: user_1014 - RequestID: nwr65wkiwq +2025-06-18T14:16:19.381Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 412ms - Rows affected: 45 - RequestID: 7ts4xhxatw3 +2025-06-18T14:16:19.481Z [DEBUG] user-service - POST /api/v1/inventory - Status: 404 - Response time: 814ms - IP: 192.168.31.117 - User: user_1035 - RequestID: msw7wgoz3eh +2025-06-18T14:16:19.581Z [TRACE] user-service - Operation: notification_queued - Processing time: 633ms - RequestID: 65vg8h2bqr +2025-06-18T14:16:19.681Z [TRACE] user-service - Database UPDATE on payments - Execution time: 97ms - Rows affected: 83 - RequestID: 6t5fc2b47ew +2025-06-18T14:16:19.781Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 201 - Response time: 993ms - IP: 192.168.229.123 - User: user_1080 - RequestID: thvh4cg9aip +2025-06-18T14:16:19.881Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 277ms - IP: 192.168.174.114 - User: user_1030 - RequestID: waosfwk43lp +2025-06-18T14:16:19.981Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1734ms - IP: 192.168.133.7 - User: user_1083 - RequestID: dxitt4lti3 +2025-06-18T14:16:20.081Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 404 - Response time: 417ms - IP: 192.168.133.7 - User: user_1061 - RequestID: cj0o8bw61bf +2025-06-18T14:16:20.181Z [TRACE] auth-service - Operation: order_created - Processing time: 663ms - RequestID: y9ia4axmnvp +2025-06-18T14:16:20.281Z [DEBUG] user-service - Operation: payment_processed - Processing time: 853ms - RequestID: fwkjy4lozap +2025-06-18T14:16:20.381Z [TRACE] payment-service - GET /api/v1/orders - Status: 400 - Response time: 407ms - IP: 192.168.227.77 - User: user_1098 - RequestID: clfk6rlugfk +2025-06-18T14:16:20.481Z [INFO] auth-service - Auth event: login_failed - User: user_1038 - IP: 192.168.28.146 - RequestID: f3q92tz6huv +2025-06-18T14:16:20.581Z [INFO] user-service - Database SELECT on orders - Execution time: 301ms - Rows affected: 73 - RequestID: eijw94x26gw +2025-06-18T14:16:20.681Z [DEBUG] user-service - GET /api/v1/inventory - Status: 201 - Response time: 1957ms - IP: 192.168.133.7 - User: user_1018 - RequestID: wygg38zpi0m +2025-06-18T14:16:20.781Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 554ms - RequestID: ucul2j95x7m +2025-06-18T14:16:20.881Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 401 - Response time: 997ms - IP: 192.168.79.141 - User: user_1012 - RequestID: jvhhjnvqend +2025-06-18T14:16:20.981Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 342ms - RequestID: t7m4o7djrmb +2025-06-18T14:16:21.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.144.38 - RequestID: os62qthkfq8 +2025-06-18T14:16:21.181Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 969ms - RequestID: 6poa4uokivt +2025-06-18T14:16:21.281Z [INFO] payment-service - Auth event: login_failed - User: user_1084 - IP: 192.168.79.143 - RequestID: 1rax0y377cm +2025-06-18T14:16:21.381Z [TRACE] notification-service - Database DELETE on orders - Execution time: 42ms - Rows affected: 73 - RequestID: ukfb38eksk +2025-06-18T14:16:21.481Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 503 - Response time: 1408ms - IP: 192.168.181.225 - User: user_1041 - RequestID: i9elrk8ww5 +2025-06-18T14:16:21.581Z [DEBUG] inventory-service - Auth event: password_change - User: user_1058 - IP: 192.168.242.165 - RequestID: cc3fh8jdvza +2025-06-18T14:16:21.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 245ms - RequestID: ijyo6y0dk9p +2025-06-18T14:16:21.781Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 400 - Response time: 147ms - IP: 192.168.194.41 - User: user_1091 - RequestID: 5qy30oxoux +2025-06-18T14:16:21.881Z [INFO] payment-service - PATCH /api/v1/users - Status: 502 - Response time: 199ms - IP: 192.168.235.117 - User: user_1072 - RequestID: zlq3n4ki76 +2025-06-18T14:16:21.981Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 404 - Response time: 882ms - IP: 192.168.113.218 - User: user_1046 - RequestID: onpb9dhl82 +2025-06-18T14:16:22.081Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 269ms - RequestID: 3moikdejpv +2025-06-18T14:16:22.181Z [INFO] inventory-service - POST /api/v1/payments - Status: 403 - Response time: 1463ms - IP: 192.168.158.144 - User: user_1014 - RequestID: 64m01awrkca +2025-06-18T14:16:22.281Z [TRACE] user-service - Operation: payment_processed - Processing time: 649ms - RequestID: 1gssqrvsqh3 +2025-06-18T14:16:22.381Z [INFO] inventory-service - Operation: notification_queued - Processing time: 773ms - RequestID: t3isnshjg8 +2025-06-18T14:16:22.481Z [INFO] auth-service - Database SELECT on orders - Execution time: 455ms - Rows affected: 2 - RequestID: 6evh4tootjr +2025-06-18T14:16:22.581Z [TRACE] notification-service - Auth event: password_change - User: user_1046 - IP: 192.168.240.169 - RequestID: qtwp0etm03 +2025-06-18T14:16:22.681Z [INFO] user-service - Operation: payment_processed - Processing time: 973ms - RequestID: j0uvgz98vwe +2025-06-18T14:16:22.781Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 957ms - RequestID: 7mjy7diclsd +2025-06-18T14:16:22.881Z [DEBUG] user-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.104.37 - RequestID: kt4gyx4evu +2025-06-18T14:16:22.981Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 42ms - Rows affected: 27 - RequestID: whhbh9h3wg +2025-06-18T14:16:23.081Z [INFO] order-service - Database INSERT on orders - Execution time: 237ms - Rows affected: 34 - RequestID: vhk88regr5a +2025-06-18T14:16:23.181Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 923ms - RequestID: ehuaj1k8rt +2025-06-18T14:16:23.281Z [DEBUG] notification-service - Auth event: login_failed - User: user_1000 - IP: 192.168.138.123 - RequestID: 4zhihlsn7wb +2025-06-18T14:16:23.381Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 855ms - RequestID: 61s7yuudm2x +2025-06-18T14:16:23.481Z [DEBUG] order-service - Database INSERT on products - Execution time: 346ms - Rows affected: 43 - RequestID: upqt29t20h +2025-06-18T14:16:23.581Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 404 - Response time: 710ms - IP: 192.168.79.116 - User: user_1033 - RequestID: 4yrosvanmh9 +2025-06-18T14:16:23.681Z [INFO] order-service - GET /api/v1/users - Status: 400 - Response time: 1236ms - IP: 192.168.240.169 - User: user_1070 - RequestID: nrbhga6907r +2025-06-18T14:16:23.781Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 423ms - Rows affected: 95 - RequestID: wnlejdeznwm +2025-06-18T14:16:23.881Z [INFO] inventory-service - Database UPDATE on products - Execution time: 382ms - Rows affected: 26 - RequestID: 8d7i85ly915 +2025-06-18T14:16:23.981Z [TRACE] order-service - Operation: cache_hit - Processing time: 236ms - RequestID: gtts6v0qhb4 +2025-06-18T14:16:24.081Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 171ms - IP: 192.168.32.38 - User: user_1044 - RequestID: zbisuykxh3l +2025-06-18T14:16:24.181Z [TRACE] order-service - Database INSERT on sessions - Execution time: 490ms - Rows affected: 84 - RequestID: cmd0mrntgsn +2025-06-18T14:16:24.281Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 347ms - Rows affected: 8 - RequestID: 0si2vja8x0kk +2025-06-18T14:16:24.381Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 401 - Response time: 1149ms - IP: 192.168.68.128 - User: user_1021 - RequestID: fzp49fu3se +2025-06-18T14:16:24.481Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 699ms - RequestID: w9yh8l48v7k +2025-06-18T14:16:24.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1089 - IP: 192.168.229.123 - RequestID: vguaynez5sk +2025-06-18T14:16:24.681Z [TRACE] order-service - DELETE /api/v1/orders - Status: 503 - Response time: 1688ms - IP: 192.168.170.215 - User: user_1019 - RequestID: o8b3gvhwitj +2025-06-18T14:16:24.781Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 502 - Response time: 398ms - IP: 192.168.181.225 - User: user_1073 - RequestID: a0k6zonqhp +2025-06-18T14:16:24.881Z [INFO] inventory-service - Operation: order_created - Processing time: 123ms - RequestID: 7n7v997nyym +2025-06-18T14:16:24.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1030 - IP: 192.168.79.143 - RequestID: fln2v8dnyug +2025-06-18T14:16:25.081Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 233ms - Rows affected: 90 - RequestID: ti19k93c7m +2025-06-18T14:16:25.181Z [DEBUG] order-service - Auth event: logout - User: user_1040 - IP: 192.168.14.77 - RequestID: 9bdobq1qn2p +2025-06-18T14:16:25.281Z [INFO] order-service - Auth event: logout - User: user_1009 - IP: 192.168.158.144 - RequestID: udszb26wnyh +2025-06-18T14:16:25.381Z [INFO] payment-service - Auth event: login_failed - User: user_1008 - IP: 192.168.181.225 - RequestID: tfzmkdwnuwk +2025-06-18T14:16:25.481Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 105ms - Rows affected: 90 - RequestID: zsj5mjyh039 +2025-06-18T14:16:25.581Z [TRACE] user-service - Auth event: logout - User: user_1078 - IP: 192.168.100.240 - RequestID: 3ndb7p2j3yt +2025-06-18T14:16:25.681Z [TRACE] auth-service - Auth event: logout - User: user_1082 - IP: 192.168.159.94 - RequestID: 45ltvnx02an +2025-06-18T14:16:25.781Z [INFO] user-service - Database INSERT on users - Execution time: 411ms - Rows affected: 59 - RequestID: sidsv5aupo +2025-06-18T14:16:25.881Z [INFO] order-service - Auth event: login_failed - User: user_1094 - IP: 192.168.79.116 - RequestID: yjipkc3ypza +2025-06-18T14:16:25.981Z [INFO] order-service - GET /api/v1/payments - Status: 503 - Response time: 1756ms - IP: 192.168.14.77 - User: user_1051 - RequestID: l4ttju7vvg +2025-06-18T14:16:26.081Z [INFO] auth-service - Auth event: password_change - User: user_1071 - IP: 192.168.240.169 - RequestID: wn6z73bss5 +2025-06-18T14:16:26.181Z [DEBUG] inventory-service - Auth event: password_change - User: user_1009 - IP: 192.168.79.143 - RequestID: 4c8b3rtr4md +2025-06-18T14:16:26.281Z [TRACE] auth-service - Database SELECT on users - Execution time: 235ms - Rows affected: 84 - RequestID: qxhhlgrprcr +2025-06-18T14:16:26.381Z [INFO] user-service - Auth event: password_change - User: user_1052 - IP: 192.168.187.199 - RequestID: 7ls7m1ash8x +2025-06-18T14:16:26.481Z [INFO] auth-service - PATCH /api/v1/orders - Status: 500 - Response time: 1605ms - IP: 192.168.167.32 - User: user_1004 - RequestID: wey1bpv7vp +2025-06-18T14:16:26.581Z [INFO] inventory-service - Database DELETE on payments - Execution time: 403ms - Rows affected: 52 - RequestID: srqa7urhyo9 +2025-06-18T14:16:26.681Z [TRACE] payment-service - Operation: payment_processed - Processing time: 870ms - RequestID: 2gsi4wmv0un +2025-06-18T14:16:26.781Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 400 - Response time: 903ms - IP: 192.168.44.5 - User: user_1036 - RequestID: niv2mc98gol +2025-06-18T14:16:26.881Z [INFO] notification-service - Operation: payment_processed - Processing time: 425ms - RequestID: tpz51bzo56j +2025-06-18T14:16:26.981Z [DEBUG] notification-service - POST /api/v1/users - Status: 200 - Response time: 1476ms - IP: 192.168.14.77 - User: user_1026 - RequestID: 37zt03dqpxx +2025-06-18T14:16:27.081Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 274ms - Rows affected: 92 - RequestID: mpojscejycj +2025-06-18T14:16:27.181Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1993ms - IP: 192.168.196.226 - User: user_1018 - RequestID: hm3dfyo2rsl +2025-06-18T14:16:27.281Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 962ms - RequestID: cx2z2b8fg5q +2025-06-18T14:16:27.381Z [INFO] notification-service - Operation: cache_miss - Processing time: 565ms - RequestID: ptgfosytv5r +2025-06-18T14:16:27.481Z [TRACE] notification-service - Auth event: login_success - User: user_1040 - IP: 192.168.68.158 - RequestID: 05r024nbfvoi +2025-06-18T14:16:27.581Z [INFO] payment-service - POST /api/v1/orders - Status: 404 - Response time: 1499ms - IP: 192.168.85.229 - User: user_1080 - RequestID: mwscpy4wh +2025-06-18T14:16:27.681Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 38ms - Rows affected: 5 - RequestID: 1iydoe5cwj2 +2025-06-18T14:16:27.781Z [TRACE] auth-service - Database SELECT on users - Execution time: 393ms - Rows affected: 37 - RequestID: 2bv3w19rih5 +2025-06-18T14:16:27.881Z [TRACE] payment-service - Auth event: password_change - User: user_1087 - IP: 192.168.31.117 - RequestID: k9ub2c3vvp +2025-06-18T14:16:27.981Z [DEBUG] order-service - Database INSERT on users - Execution time: 440ms - Rows affected: 20 - RequestID: lr6qbwjd4n +2025-06-18T14:16:28.081Z [INFO] order-service - Operation: inventory_updated - Processing time: 294ms - RequestID: tgt92ed42sk +2025-06-18T14:16:28.181Z [INFO] inventory-service - Database INSERT on orders - Execution time: 138ms - Rows affected: 93 - RequestID: lwya8mmhib +2025-06-18T14:16:28.281Z [INFO] notification-service - GET /api/v1/auth/login - Status: 401 - Response time: 1011ms - IP: 192.168.46.63 - User: user_1080 - RequestID: yw6wm0mmut +2025-06-18T14:16:28.381Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1189ms - IP: 192.168.104.37 - User: user_1095 - RequestID: iykn3l9dbio +2025-06-18T14:16:28.481Z [INFO] auth-service - Database SELECT on payments - Execution time: 166ms - Rows affected: 67 - RequestID: v5xzc65n96d +2025-06-18T14:16:28.581Z [DEBUG] inventory-service - Auth event: logout - User: user_1047 - IP: 192.168.147.171 - RequestID: x4ycj6rirv +2025-06-18T14:16:28.681Z [DEBUG] user-service - Database INSERT on payments - Execution time: 484ms - Rows affected: 1 - RequestID: ael2bkjw1ol +2025-06-18T14:16:28.781Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 375ms - Rows affected: 3 - RequestID: wrqd27ua45f +2025-06-18T14:16:28.881Z [TRACE] user-service - Database SELECT on users - Execution time: 262ms - Rows affected: 84 - RequestID: 3gh8efr2pxo +2025-06-18T14:16:28.981Z [TRACE] inventory-service - Operation: email_sent - Processing time: 316ms - RequestID: o6o18zbyto +2025-06-18T14:16:29.081Z [INFO] payment-service - Operation: email_sent - Processing time: 141ms - RequestID: 2fdkkolh4gu +2025-06-18T14:16:29.181Z [TRACE] order-service - Database INSERT on orders - Execution time: 97ms - Rows affected: 82 - RequestID: tbzxw14uhma +2025-06-18T14:16:29.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 581ms - RequestID: xksjab72ze +2025-06-18T14:16:29.381Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.144.38 - RequestID: zdgqz0ekktp +2025-06-18T14:16:29.481Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 286ms - RequestID: fzks5pjm757 +2025-06-18T14:16:29.581Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 6ms - Rows affected: 51 - RequestID: 1z2dywj42ow +2025-06-18T14:16:29.681Z [INFO] payment-service - Database DELETE on payments - Execution time: 74ms - Rows affected: 88 - RequestID: zxbsenec33l +2025-06-18T14:16:29.781Z [TRACE] user-service - Database INSERT on products - Execution time: 391ms - Rows affected: 19 - RequestID: pe72pnjterm +2025-06-18T14:16:29.881Z [DEBUG] notification-service - Database SELECT on products - Execution time: 121ms - Rows affected: 83 - RequestID: 13ucj59f05wh +2025-06-18T14:16:29.981Z [DEBUG] user-service - Operation: order_created - Processing time: 645ms - RequestID: 77hdzuw26ia +2025-06-18T14:16:30.081Z [TRACE] payment-service - Operation: notification_queued - Processing time: 133ms - RequestID: zvqp24ck7sr +2025-06-18T14:16:30.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1040 - IP: 192.168.227.77 - RequestID: a373kbvlacv +2025-06-18T14:16:30.281Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 109ms - Rows affected: 52 - RequestID: 8tln4smnamw +2025-06-18T14:16:30.381Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 503ms - IP: 192.168.85.229 - User: user_1038 - RequestID: wrsnl8nr498 +2025-06-18T14:16:30.481Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 964ms - RequestID: kl1ihyz0kft +2025-06-18T14:16:30.581Z [TRACE] auth-service - Database UPDATE on users - Execution time: 500ms - Rows affected: 85 - RequestID: 00sdgiyskds +2025-06-18T14:16:30.681Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 718ms - RequestID: slg0zheqz3 +2025-06-18T14:16:30.781Z [DEBUG] order-service - Operation: cache_hit - Processing time: 900ms - RequestID: 3c54u85y3hk +2025-06-18T14:16:30.881Z [INFO] inventory-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.227.233 - RequestID: gk5nji1s05n +2025-06-18T14:16:30.981Z [INFO] notification-service - GET /api/v1/auth/login - Status: 503 - Response time: 1081ms - IP: 192.168.104.37 - User: user_1085 - RequestID: 5220vyjfpl5 +2025-06-18T14:16:31.081Z [TRACE] order-service - Operation: order_created - Processing time: 722ms - RequestID: qcbzret9td +2025-06-18T14:16:31.181Z [TRACE] notification-service - Database INSERT on users - Execution time: 404ms - Rows affected: 98 - RequestID: yijfs9lddgr +2025-06-18T14:16:31.281Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 943ms - RequestID: z9025tdytdi +2025-06-18T14:16:31.381Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 502 - Response time: 617ms - IP: 192.168.79.141 - User: user_1011 - RequestID: 8jlrm4r6idq +2025-06-18T14:16:31.481Z [INFO] inventory-service - Auth event: password_change - User: user_1039 - IP: 192.168.53.133 - RequestID: gc2seez87d4 +2025-06-18T14:16:31.581Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1183ms - IP: 192.168.227.233 - User: user_1041 - RequestID: v1tw6y7yptd +2025-06-18T14:16:31.681Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1543ms - IP: 192.168.240.169 - User: user_1012 - RequestID: xp57nvw34ij +2025-06-18T14:16:31.781Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1296ms - IP: 192.168.227.233 - User: user_1043 - RequestID: sgowe1nbrx +2025-06-18T14:16:31.881Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 750ms - RequestID: xdv22o5ngd +2025-06-18T14:16:31.981Z [TRACE] auth-service - Auth event: login_success - User: user_1088 - IP: 192.168.79.143 - RequestID: sg8k75sjrb +2025-06-18T14:16:32.081Z [DEBUG] order-service - Database DELETE on orders - Execution time: 108ms - Rows affected: 9 - RequestID: 8rkygk4hu2d +2025-06-18T14:16:32.181Z [TRACE] user-service - Database DELETE on orders - Execution time: 177ms - Rows affected: 26 - RequestID: fg1vb8ln3yh +2025-06-18T14:16:32.281Z [TRACE] notification-service - Operation: cache_hit - Processing time: 787ms - RequestID: x1nuvgzbxxs +2025-06-18T14:16:32.381Z [TRACE] user-service - GET /api/v1/orders - Status: 404 - Response time: 1092ms - IP: 192.168.64.33 - User: user_1095 - RequestID: 2bcx5isf8o4 +2025-06-18T14:16:32.481Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 449ms - Rows affected: 82 - RequestID: 81mdxhysugo +2025-06-18T14:16:32.581Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 178ms - Rows affected: 62 - RequestID: 0ehsoy4l4bqm +2025-06-18T14:16:32.681Z [INFO] user-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.187.199 - RequestID: 2pxvmn7ndbu +2025-06-18T14:16:32.781Z [TRACE] user-service - Database SELECT on users - Execution time: 192ms - Rows affected: 12 - RequestID: 7q2hzrlfi6l +2025-06-18T14:16:32.881Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 320ms - Rows affected: 34 - RequestID: ysf0ah57ih +2025-06-18T14:16:32.981Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 597ms - RequestID: ctw3ki7hr0v +2025-06-18T14:16:33.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 167ms - RequestID: 9qhw2w0b636 +2025-06-18T14:16:33.181Z [TRACE] user-service - Operation: payment_processed - Processing time: 180ms - RequestID: zhczzowfzbb +2025-06-18T14:16:33.281Z [TRACE] order-service - Auth event: logout - User: user_1097 - IP: 192.168.68.158 - RequestID: 4n8sxmrlovk +2025-06-18T14:16:33.381Z [TRACE] notification-service - Database SELECT on users - Execution time: 12ms - Rows affected: 29 - RequestID: x8k2efucrv9 +2025-06-18T14:16:33.481Z [DEBUG] user-service - Auth event: login_success - User: user_1015 - IP: 192.168.13.72 - RequestID: qoygk6jkodr +2025-06-18T14:16:33.581Z [INFO] payment-service - Operation: cache_miss - Processing time: 938ms - RequestID: tg73ftppuir +2025-06-18T14:16:33.681Z [DEBUG] user-service - Auth event: login_success - User: user_1053 - IP: 192.168.158.144 - RequestID: z5gqt44knh +2025-06-18T14:16:33.781Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 401 - Response time: 1015ms - IP: 192.168.31.117 - User: user_1094 - RequestID: znoajhqeee +2025-06-18T14:16:33.881Z [TRACE] user-service - Operation: cache_hit - Processing time: 955ms - RequestID: 3it9xljleu4 +2025-06-18T14:16:33.981Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 320ms - Rows affected: 61 - RequestID: 3xuemca43y +2025-06-18T14:16:34.081Z [INFO] payment-service - GET /api/v1/auth/login - Status: 400 - Response time: 1490ms - IP: 192.168.240.169 - User: user_1089 - RequestID: vl8wocee7p8 +2025-06-18T14:16:34.181Z [DEBUG] auth-service - Auth event: password_change - User: user_1015 - IP: 192.168.113.218 - RequestID: cr3qg8mloy +2025-06-18T14:16:34.281Z [INFO] payment-service - Operation: cache_hit - Processing time: 155ms - RequestID: 8fshbr6wdb +2025-06-18T14:16:34.381Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 500 - Response time: 560ms - IP: 192.168.141.100 - User: user_1058 - RequestID: mclhncs616 +2025-06-18T14:16:34.481Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.229.123 - RequestID: uu3lkx7ipm +2025-06-18T14:16:34.581Z [DEBUG] auth-service - Operation: email_sent - Processing time: 423ms - RequestID: 8p3ibsubfyp +2025-06-18T14:16:34.681Z [TRACE] payment-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.141.100 - RequestID: supprrlb1jc +2025-06-18T14:16:34.781Z [DEBUG] user-service - PATCH /api/v1/users - Status: 503 - Response time: 1667ms - IP: 192.168.68.128 - User: user_1016 - RequestID: 908v8sgsgr +2025-06-18T14:16:34.881Z [DEBUG] user-service - Auth event: login_failed - User: user_1076 - IP: 192.168.194.41 - RequestID: ntoltku20kq +2025-06-18T14:16:34.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1042 - IP: 192.168.170.215 - RequestID: 0ckrwag9r6ci +2025-06-18T14:16:35.081Z [INFO] inventory-service - Operation: cache_hit - Processing time: 400ms - RequestID: n18gixfw8of +2025-06-18T14:16:35.181Z [TRACE] auth-service - Operation: cache_hit - Processing time: 51ms - RequestID: toiux1saw4 +2025-06-18T14:16:35.281Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 460ms - Rows affected: 5 - RequestID: sccetmh6jsc +2025-06-18T14:16:35.381Z [DEBUG] payment-service - Auth event: logout - User: user_1090 - IP: 192.168.113.218 - RequestID: 8cpor0r96ib +2025-06-18T14:16:35.481Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 280ms - Rows affected: 66 - RequestID: l4rt3tww4i +2025-06-18T14:16:35.581Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 200 - Response time: 48ms - IP: 192.168.232.72 - User: user_1089 - RequestID: j2zuqtu45ll +2025-06-18T14:16:35.681Z [INFO] notification-service - Database UPDATE on products - Execution time: 475ms - Rows affected: 2 - RequestID: 4rnf30i460m +2025-06-18T14:16:35.781Z [INFO] notification-service - Database INSERT on sessions - Execution time: 498ms - Rows affected: 2 - RequestID: gq73l8h3nj +2025-06-18T14:16:35.881Z [DEBUG] notification-service - Operation: order_created - Processing time: 752ms - RequestID: ws8ovpjzvbs +2025-06-18T14:16:35.981Z [DEBUG] payment-service - Operation: order_created - Processing time: 1044ms - RequestID: 1ut7oh4ught +2025-06-18T14:16:36.081Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 169ms - RequestID: y9vo4yj5mm +2025-06-18T14:16:36.181Z [INFO] notification-service - Auth event: password_change - User: user_1064 - IP: 192.168.181.225 - RequestID: 42b3uf6s0i9 +2025-06-18T14:16:36.281Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 500 - Response time: 134ms - IP: 192.168.10.184 - User: user_1042 - RequestID: m0239e7a76e +2025-06-18T14:16:36.381Z [TRACE] auth-service - Database SELECT on products - Execution time: 125ms - Rows affected: 86 - RequestID: y9j13nzabo +2025-06-18T14:16:36.481Z [TRACE] payment-service - GET /api/v1/payments - Status: 400 - Response time: 1692ms - IP: 192.168.159.94 - User: user_1093 - RequestID: kl904zx00n8 +2025-06-18T14:16:36.581Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1444ms - IP: 192.168.147.171 - User: user_1095 - RequestID: 9anjazq8il +2025-06-18T14:16:36.681Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 365ms - Rows affected: 30 - RequestID: 5njji3u3c2d +2025-06-18T14:16:36.781Z [TRACE] payment-service - Auth event: password_change - User: user_1025 - IP: 192.168.211.72 - RequestID: o0cyi9f1mi8 +2025-06-18T14:16:36.881Z [INFO] inventory-service - Auth event: password_change - User: user_1001 - IP: 192.168.147.171 - RequestID: bb8tt4h4zqt +2025-06-18T14:16:36.981Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 295ms - Rows affected: 17 - RequestID: i0k2a683mq9 +2025-06-18T14:16:37.081Z [TRACE] payment-service - Operation: email_sent - Processing time: 666ms - RequestID: x2beq5zwag +2025-06-18T14:16:37.181Z [INFO] payment-service - Operation: inventory_updated - Processing time: 802ms - RequestID: 3h3yptbizxi +2025-06-18T14:16:37.281Z [INFO] user-service - Operation: notification_queued - Processing time: 446ms - RequestID: 1ocpwbnliz8 +2025-06-18T14:16:37.381Z [TRACE] payment-service - GET /api/v1/payments - Status: 502 - Response time: 194ms - IP: 192.168.229.123 - User: user_1092 - RequestID: s620jfpjja +2025-06-18T14:16:37.481Z [TRACE] payment-service - Database DELETE on products - Execution time: 108ms - Rows affected: 35 - RequestID: tfb9o9ivrxb +2025-06-18T14:16:37.581Z [DEBUG] user-service - Database UPDATE on products - Execution time: 176ms - Rows affected: 5 - RequestID: vefnkeshgvl +2025-06-18T14:16:37.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.194.41 - RequestID: 16gbl54cfig +2025-06-18T14:16:37.781Z [DEBUG] order-service - Operation: payment_processed - Processing time: 536ms - RequestID: utrot7h6ltq +2025-06-18T14:16:37.881Z [TRACE] order-service - Operation: inventory_updated - Processing time: 342ms - RequestID: pxkkz99c5xd +2025-06-18T14:16:37.981Z [TRACE] payment-service - Database DELETE on users - Execution time: 448ms - Rows affected: 56 - RequestID: 8mx00nyclp4 +2025-06-18T14:16:38.081Z [INFO] notification-service - GET /api/v1/orders - Status: 503 - Response time: 433ms - IP: 192.168.240.169 - User: user_1057 - RequestID: aqfteqiytr +2025-06-18T14:16:38.181Z [INFO] order-service - Database DELETE on users - Execution time: 199ms - Rows affected: 52 - RequestID: eb0ickd3ogq +2025-06-18T14:16:38.281Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 203ms - Rows affected: 37 - RequestID: 9jbt412g05r +2025-06-18T14:16:38.381Z [DEBUG] order-service - Operation: payment_processed - Processing time: 620ms - RequestID: fz0e71ckn3 +2025-06-18T14:16:38.481Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 400 - Response time: 797ms - IP: 192.168.187.199 - User: user_1027 - RequestID: irsmt09n28 +2025-06-18T14:16:38.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.79.143 - RequestID: 6qjjfi9pt3 +2025-06-18T14:16:38.681Z [INFO] auth-service - Operation: webhook_sent - Processing time: 1017ms - RequestID: zv5lvec8vbs +2025-06-18T14:16:38.781Z [INFO] payment-service - PUT /api/v1/payments - Status: 201 - Response time: 116ms - IP: 192.168.229.123 - User: user_1056 - RequestID: 9rjwx9k2vgi +2025-06-18T14:16:38.881Z [TRACE] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 1913ms - IP: 192.168.181.225 - User: user_1044 - RequestID: 2ghnhpkf76b +2025-06-18T14:16:38.981Z [TRACE] order-service - GET /api/v1/auth/login - Status: 500 - Response time: 247ms - IP: 192.168.28.146 - User: user_1039 - RequestID: sry3kt56ygj +2025-06-18T14:16:39.081Z [INFO] inventory-service - Operation: cache_hit - Processing time: 94ms - RequestID: wj8siqjkma +2025-06-18T14:16:39.181Z [DEBUG] payment-service - Operation: email_sent - Processing time: 320ms - RequestID: d52vryuligt +2025-06-18T14:16:39.281Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 215ms - Rows affected: 81 - RequestID: ulvqr3pwmij +2025-06-18T14:16:39.381Z [INFO] order-service - Database DELETE on payments - Execution time: 135ms - Rows affected: 77 - RequestID: 92xnfg1spak +2025-06-18T14:16:39.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.158.144 - RequestID: knvtnz953z8 +2025-06-18T14:16:39.581Z [INFO] notification-service - Database UPDATE on orders - Execution time: 223ms - Rows affected: 26 - RequestID: noy4gy52xjr +2025-06-18T14:16:39.681Z [INFO] payment-service - GET /api/v1/inventory - Status: 403 - Response time: 2005ms - IP: 192.168.240.169 - User: user_1013 - RequestID: ktot6tosuh +2025-06-18T14:16:39.781Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 469ms - Rows affected: 27 - RequestID: b25zza34l7r +2025-06-18T14:16:39.881Z [INFO] notification-service - Auth event: login_success - User: user_1024 - IP: 192.168.229.123 - RequestID: et6niapvj8 +2025-06-18T14:16:39.981Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 200 - Response time: 1817ms - IP: 192.168.79.143 - User: user_1018 - RequestID: imlcocbn8um +2025-06-18T14:16:40.081Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 202ms - Rows affected: 18 - RequestID: mw59evwy4vm +2025-06-18T14:16:40.181Z [INFO] inventory-service - Auth event: logout - User: user_1031 - IP: 192.168.81.206 - RequestID: 1i3yvo83fuh +2025-06-18T14:16:40.281Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 750ms - IP: 192.168.158.144 - User: user_1008 - RequestID: gmbj58i5ac7 +2025-06-18T14:16:40.381Z [DEBUG] user-service - Auth event: password_change - User: user_1097 - IP: 192.168.133.7 - RequestID: 6utoedtncw +2025-06-18T14:16:40.481Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.32.38 - RequestID: eqpvhzzzq2 +2025-06-18T14:16:40.581Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1726ms - IP: 192.168.211.72 - User: user_1041 - RequestID: m0kaddsd68a +2025-06-18T14:16:40.681Z [TRACE] inventory-service - Operation: email_sent - Processing time: 516ms - RequestID: mq0enk5afa +2025-06-18T14:16:40.781Z [INFO] notification-service - Operation: inventory_updated - Processing time: 127ms - RequestID: jwy9mfrugke +2025-06-18T14:16:40.881Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 500 - Response time: 504ms - IP: 192.168.104.37 - User: user_1068 - RequestID: otetfaxat6 +2025-06-18T14:16:40.981Z [INFO] inventory-service - Database SELECT on payments - Execution time: 100ms - Rows affected: 3 - RequestID: l93x12aaek +2025-06-18T14:16:41.081Z [TRACE] payment-service - Operation: email_sent - Processing time: 624ms - RequestID: aiy1grqakf +2025-06-18T14:16:41.181Z [TRACE] user-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.13.72 - RequestID: 6tt1udtupl5 +2025-06-18T14:16:41.281Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 254ms - Rows affected: 9 - RequestID: 57g3ku7xins +2025-06-18T14:16:41.381Z [TRACE] auth-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.211.72 - RequestID: g21i9t7ypc +2025-06-18T14:16:41.481Z [TRACE] order-service - Auth event: logout - User: user_1073 - IP: 192.168.68.158 - RequestID: z2tkfbyceqp +2025-06-18T14:16:41.581Z [TRACE] order-service - Auth event: logout - User: user_1085 - IP: 192.168.14.77 - RequestID: hzhqa1ix1ge +2025-06-18T14:16:41.681Z [INFO] inventory-service - Operation: email_sent - Processing time: 362ms - RequestID: pj0ne4ezq88 +2025-06-18T14:16:41.781Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 201 - Response time: 1973ms - IP: 192.168.79.143 - User: user_1089 - RequestID: 6jm5b5i9hl6 +2025-06-18T14:16:41.881Z [INFO] order-service - Auth event: login_failed - User: user_1041 - IP: 192.168.36.218 - RequestID: rbgktf9bejf +2025-06-18T14:16:41.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1027 - IP: 192.168.227.77 - RequestID: xksuhjwc4m +2025-06-18T14:16:42.081Z [TRACE] inventory-service - Operation: email_sent - Processing time: 219ms - RequestID: 9rqutslvz8c +2025-06-18T14:16:42.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1094 - IP: 192.168.158.144 - RequestID: n7tb028l72s +2025-06-18T14:16:42.281Z [DEBUG] user-service - Auth event: login_success - User: user_1013 - IP: 192.168.46.63 - RequestID: u8rfa2sgh3s +2025-06-18T14:16:42.381Z [TRACE] order-service - Auth event: logout - User: user_1034 - IP: 192.168.133.7 - RequestID: ju2k54qqe1 +2025-06-18T14:16:42.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 156ms - RequestID: 3ejds42bk1d +2025-06-18T14:16:42.581Z [DEBUG] user-service - POST /api/v1/inventory - Status: 404 - Response time: 803ms - IP: 192.168.28.146 - User: user_1099 - RequestID: awh0rkcpx6f +2025-06-18T14:16:42.681Z [INFO] notification-service - Operation: email_sent - Processing time: 81ms - RequestID: dzvkhljgvl +2025-06-18T14:16:42.781Z [DEBUG] order-service - Auth event: logout - User: user_1086 - IP: 192.168.53.133 - RequestID: 18zkswi28ti +2025-06-18T14:16:42.881Z [INFO] payment-service - Auth event: login_success - User: user_1029 - IP: 192.168.235.117 - RequestID: uxibfzy37e +2025-06-18T14:16:42.981Z [TRACE] notification-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.170.215 - RequestID: 2udpjgwcc35 +2025-06-18T14:16:43.081Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 1032ms - RequestID: bq2o7ksfznk +2025-06-18T14:16:43.181Z [TRACE] order-service - Operation: cache_miss - Processing time: 360ms - RequestID: mbncplsxu0o +2025-06-18T14:16:43.281Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 404 - Response time: 183ms - IP: 192.168.138.123 - User: user_1029 - RequestID: sw54yldnq8 +2025-06-18T14:16:43.381Z [TRACE] inventory-service - Auth event: password_change - User: user_1084 - IP: 192.168.170.215 - RequestID: uy7mu7teoo +2025-06-18T14:16:43.481Z [DEBUG] user-service - Database INSERT on payments - Execution time: 480ms - Rows affected: 74 - RequestID: wkifumg2dft +2025-06-18T14:16:43.581Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 503 - Response time: 864ms - IP: 192.168.174.114 - User: user_1011 - RequestID: xsyreb98g3o +2025-06-18T14:16:43.681Z [TRACE] user-service - Database SELECT on orders - Execution time: 245ms - Rows affected: 78 - RequestID: 74b9un6uk5h +2025-06-18T14:16:43.781Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 281ms - RequestID: tb5jgzqap9t +2025-06-18T14:16:43.881Z [DEBUG] notification-service - Auth event: login_failed - User: user_1097 - IP: 192.168.141.100 - RequestID: de5l4x87ha +2025-06-18T14:16:43.981Z [INFO] auth-service - Database DELETE on payments - Execution time: 66ms - Rows affected: 99 - RequestID: k94fvumocl +2025-06-18T14:16:44.081Z [INFO] inventory-service - Operation: cache_miss - Processing time: 109ms - RequestID: 42ibi1mi0ly +2025-06-18T14:16:44.181Z [TRACE] payment-service - Database INSERT on payments - Execution time: 218ms - Rows affected: 48 - RequestID: 277kxfvur5i +2025-06-18T14:16:44.281Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 401 - Response time: 982ms - IP: 192.168.28.146 - User: user_1055 - RequestID: 7v8t2z7vfj +2025-06-18T14:16:44.381Z [INFO] auth-service - Database UPDATE on users - Execution time: 485ms - Rows affected: 83 - RequestID: qbzfn7jdjz +2025-06-18T14:16:44.481Z [INFO] user-service - Operation: payment_processed - Processing time: 810ms - RequestID: qr436sgf04 +2025-06-18T14:16:44.581Z [INFO] order-service - Database UPDATE on payments - Execution time: 369ms - Rows affected: 93 - RequestID: dc9xrsg8iyf +2025-06-18T14:16:44.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.68.128 - RequestID: avv3syftawa +2025-06-18T14:16:44.781Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1196ms - IP: 192.168.68.128 - User: user_1088 - RequestID: thsods3uz1 +2025-06-18T14:16:44.881Z [INFO] payment-service - Database DELETE on orders - Execution time: 215ms - Rows affected: 27 - RequestID: unvw35n7bmj +2025-06-18T14:16:44.981Z [DEBUG] user-service - Database INSERT on products - Execution time: 225ms - Rows affected: 48 - RequestID: vfb10jjwhpm +2025-06-18T14:16:45.081Z [TRACE] order-service - POST /api/v1/payments - Status: 200 - Response time: 1524ms - IP: 192.168.68.128 - User: user_1083 - RequestID: j0z278zq29 +2025-06-18T14:16:45.181Z [TRACE] user-service - Database INSERT on users - Execution time: 165ms - Rows affected: 51 - RequestID: pj1z989fgl +2025-06-18T14:16:45.281Z [INFO] notification-service - PATCH /api/v1/payments - Status: 404 - Response time: 1392ms - IP: 192.168.53.133 - User: user_1074 - RequestID: 6t67d6o7g +2025-06-18T14:16:45.381Z [DEBUG] notification-service - Auth event: login_failed - User: user_1047 - IP: 192.168.36.218 - RequestID: qooeh6gf21 +2025-06-18T14:16:45.481Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 201 - Response time: 931ms - IP: 192.168.1.152 - User: user_1017 - RequestID: tjh6s1rvym +2025-06-18T14:16:45.581Z [DEBUG] user-service - Auth event: login_failed - User: user_1063 - IP: 192.168.64.33 - RequestID: 52ycx2egqh +2025-06-18T14:16:45.681Z [INFO] user-service - Operation: inventory_updated - Processing time: 261ms - RequestID: 34nxk0xjgkf +2025-06-18T14:16:45.781Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 401 - Response time: 1585ms - IP: 192.168.194.41 - User: user_1043 - RequestID: zuhpx1rp1kg +2025-06-18T14:16:45.881Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 735ms - RequestID: 8zm0vie0r5p +2025-06-18T14:16:45.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 440ms - RequestID: duvnetbjqf +2025-06-18T14:16:46.081Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 419ms - Rows affected: 53 - RequestID: 5v3a793njbg +2025-06-18T14:16:46.181Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 131ms - IP: 192.168.79.143 - User: user_1060 - RequestID: 0c71daegzrw +2025-06-18T14:16:46.281Z [DEBUG] auth-service - Auth event: logout - User: user_1067 - IP: 192.168.247.134 - RequestID: 808atviluv +2025-06-18T14:16:46.381Z [TRACE] order-service - POST /api/v1/orders - Status: 200 - Response time: 77ms - IP: 192.168.181.225 - User: user_1049 - RequestID: 4epffgpgmgd +2025-06-18T14:16:46.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 773ms - RequestID: 8v8a7fvm69j +2025-06-18T14:16:46.581Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 67ms - Rows affected: 73 - RequestID: zrvarn6roj +2025-06-18T14:16:46.681Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 500 - Response time: 419ms - IP: 192.168.181.225 - User: user_1078 - RequestID: cai798o4ud +2025-06-18T14:16:46.781Z [INFO] order-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.11.60 - RequestID: 0zkvpyj87ke +2025-06-18T14:16:46.881Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1925ms - IP: 192.168.189.103 - User: user_1010 - RequestID: uol38echyjr +2025-06-18T14:16:46.981Z [INFO] order-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.33.76 - RequestID: a06pefn6aho +2025-06-18T14:16:47.081Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1695ms - IP: 192.168.79.116 - User: user_1001 - RequestID: fdgkra5iu55 +2025-06-18T14:16:47.181Z [TRACE] order-service - Auth event: password_change - User: user_1002 - IP: 192.168.196.226 - RequestID: kq2s5qd469 +2025-06-18T14:16:47.281Z [INFO] auth-service - Database DELETE on payments - Execution time: 65ms - Rows affected: 36 - RequestID: kb4zp0uts9a +2025-06-18T14:16:47.381Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 50ms - Rows affected: 69 - RequestID: nzkrzrsbqod +2025-06-18T14:16:47.481Z [INFO] order-service - PUT /api/v1/users - Status: 400 - Response time: 967ms - IP: 192.168.227.233 - User: user_1002 - RequestID: kfsby4jh3fa +2025-06-18T14:16:47.581Z [TRACE] auth-service - POST /api/v1/orders - Status: 401 - Response time: 1891ms - IP: 192.168.240.169 - User: user_1042 - RequestID: 6d5bavn249l +2025-06-18T14:16:47.681Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 200 - Response time: 63ms - IP: 192.168.11.60 - User: user_1029 - RequestID: u7mv8fd4u1 +2025-06-18T14:16:47.781Z [TRACE] auth-service - Operation: cache_hit - Processing time: 934ms - RequestID: j5v79i91a7m +2025-06-18T14:16:47.881Z [INFO] notification-service - Operation: order_created - Processing time: 321ms - RequestID: egv9afnz04l +2025-06-18T14:16:47.981Z [TRACE] order-service - Auth event: logout - User: user_1020 - IP: 192.168.167.32 - RequestID: 056z3065qqb5 +2025-06-18T14:16:48.081Z [INFO] order-service - PATCH /api/v1/payments - Status: 503 - Response time: 89ms - IP: 192.168.235.117 - User: user_1046 - RequestID: 2ae9gwlnf75 +2025-06-18T14:16:48.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.247.134 - RequestID: dkkisny8nmv +2025-06-18T14:16:48.281Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 225ms - RequestID: bq7oke4wozr +2025-06-18T14:16:48.381Z [TRACE] user-service - Operation: notification_queued - Processing time: 808ms - RequestID: 6knngvtwbm5 +2025-06-18T14:16:48.481Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 216ms - Rows affected: 5 - RequestID: yfm172q7geb +2025-06-18T14:16:48.581Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 502 - Response time: 299ms - IP: 192.168.28.146 - User: user_1055 - RequestID: sj6cgxb3xbj +2025-06-18T14:16:48.681Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 445ms - Rows affected: 45 - RequestID: 6qw4hyxt7yw +2025-06-18T14:16:48.781Z [INFO] user-service - Operation: inventory_updated - Processing time: 959ms - RequestID: op4mzral0le +2025-06-18T14:16:48.881Z [DEBUG] user-service - Auth event: login_success - User: user_1081 - IP: 192.168.247.134 - RequestID: v2i2d6t2zte +2025-06-18T14:16:48.981Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1172ms - IP: 192.168.100.240 - User: user_1094 - RequestID: st8nhfplkbk +2025-06-18T14:16:49.081Z [INFO] payment-service - Auth event: login_success - User: user_1040 - IP: 192.168.79.143 - RequestID: xecstphxj6 +2025-06-18T14:16:49.181Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 363ms - Rows affected: 11 - RequestID: 153roiuhtq6 +2025-06-18T14:16:49.281Z [INFO] user-service - Auth event: password_change - User: user_1048 - IP: 192.168.227.77 - RequestID: 35tht5rtwd4 +2025-06-18T14:16:49.381Z [INFO] user-service - PATCH /api/v1/users - Status: 201 - Response time: 1708ms - IP: 192.168.194.41 - User: user_1027 - RequestID: 7dszqzd1x7b +2025-06-18T14:16:49.481Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1080ms - IP: 192.168.64.33 - User: user_1053 - RequestID: 7zl498aq5wk +2025-06-18T14:16:49.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 227ms - RequestID: dg9cm1ghdya +2025-06-18T14:16:49.681Z [DEBUG] user-service - Operation: cache_hit - Processing time: 420ms - RequestID: l4uoe44e8r +2025-06-18T14:16:49.781Z [TRACE] payment-service - Auth event: logout - User: user_1045 - IP: 192.168.13.72 - RequestID: 4djie87abj4 +2025-06-18T14:16:49.881Z [TRACE] order-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.53.133 - RequestID: 5me0iyy37a +2025-06-18T14:16:49.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 670ms - RequestID: 5k0eqt0qxi4 +2025-06-18T14:16:50.081Z [DEBUG] order-service - Operation: cache_hit - Processing time: 1049ms - RequestID: m24gob0p20r +2025-06-18T14:16:50.181Z [TRACE] order-service - Database INSERT on orders - Execution time: 97ms - Rows affected: 43 - RequestID: z1uq18tqctq +2025-06-18T14:16:50.281Z [DEBUG] order-service - POST /api/v1/inventory - Status: 503 - Response time: 959ms - IP: 192.168.113.218 - User: user_1059 - RequestID: 679zc4izbup +2025-06-18T14:16:50.381Z [INFO] order-service - Auth event: login_failed - User: user_1081 - IP: 192.168.36.218 - RequestID: vt6nmmf98xk +2025-06-18T14:16:50.481Z [DEBUG] auth-service - Database DELETE on users - Execution time: 36ms - Rows affected: 99 - RequestID: l9pt2sfue5 +2025-06-18T14:16:50.581Z [INFO] auth-service - Database SELECT on payments - Execution time: 93ms - Rows affected: 12 - RequestID: 4v37jyu14f +2025-06-18T14:16:50.681Z [INFO] notification-service - POST /api/v1/inventory - Status: 201 - Response time: 1344ms - IP: 192.168.167.32 - User: user_1007 - RequestID: 3w3lc9ax3su +2025-06-18T14:16:50.781Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 290ms - RequestID: n6rfkho07om +2025-06-18T14:16:50.881Z [TRACE] notification-service - GET /api/v1/users - Status: 400 - Response time: 493ms - IP: 192.168.79.143 - User: user_1021 - RequestID: g4cndgv4mkw +2025-06-18T14:16:50.981Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 503 - Response time: 47ms - IP: 192.168.64.33 - User: user_1024 - RequestID: 3pmvxkrtupy +2025-06-18T14:16:51.081Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 424ms - Rows affected: 86 - RequestID: ayo36p1upxq +2025-06-18T14:16:51.181Z [DEBUG] user-service - Database DELETE on users - Execution time: 92ms - Rows affected: 82 - RequestID: al1kdpxd2z +2025-06-18T14:16:51.281Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 18ms - Rows affected: 86 - RequestID: 6859b5gxm3x +2025-06-18T14:16:51.381Z [TRACE] notification-service - PUT /api/v1/payments - Status: 200 - Response time: 277ms - IP: 192.168.30.79 - User: user_1018 - RequestID: du8abi1b5be +2025-06-18T14:16:51.481Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 400 - Response time: 486ms - IP: 192.168.53.133 - User: user_1047 - RequestID: mgi4e78jn2j +2025-06-18T14:16:51.581Z [INFO] user-service - Auth event: password_change - User: user_1075 - IP: 192.168.211.72 - RequestID: 1j16budvogy +2025-06-18T14:16:51.681Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 439ms - Rows affected: 13 - RequestID: 9gyf89zl3au +2025-06-18T14:16:51.781Z [TRACE] notification-service - Auth event: logout - User: user_1047 - IP: 192.168.181.225 - RequestID: a9pzwmmrye +2025-06-18T14:16:51.881Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 334ms - IP: 192.168.46.63 - User: user_1049 - RequestID: 6zin0sowk0e +2025-06-18T14:16:51.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 793ms - RequestID: rjl9sd9w8 +2025-06-18T14:16:52.081Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.68.128 - RequestID: ja94d3akew +2025-06-18T14:16:52.181Z [DEBUG] notification-service - Database SELECT on users - Execution time: 10ms - Rows affected: 50 - RequestID: pihsy7lii4 +2025-06-18T14:16:52.281Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 400 - Response time: 780ms - IP: 192.168.33.76 - User: user_1035 - RequestID: az6vt58rhut +2025-06-18T14:16:52.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1080 - IP: 192.168.240.169 - RequestID: b1aygamzkc +2025-06-18T14:16:52.481Z [DEBUG] order-service - Auth event: password_change - User: user_1063 - IP: 192.168.232.72 - RequestID: eqel7rbffm9 +2025-06-18T14:16:52.581Z [DEBUG] order-service - Operation: notification_queued - Processing time: 255ms - RequestID: 4sn4kk8s17i +2025-06-18T14:16:52.681Z [TRACE] notification-service - Operation: cache_miss - Processing time: 724ms - RequestID: gj8p6gi1bxm +2025-06-18T14:16:52.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.13.72 - RequestID: 663eyz1bh77 +2025-06-18T14:16:52.881Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 503 - Response time: 18ms - IP: 192.168.10.184 - User: user_1019 - RequestID: un54n0i7x6a +2025-06-18T14:16:52.981Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1928ms - IP: 192.168.64.33 - User: user_1035 - RequestID: 20dzer4fnwy +2025-06-18T14:16:53.081Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 478ms - IP: 192.168.100.240 - User: user_1056 - RequestID: 8ylgqw0h6iy +2025-06-18T14:16:53.181Z [INFO] notification-service - Operation: order_created - Processing time: 150ms - RequestID: s4tek75ks2d +2025-06-18T14:16:53.281Z [INFO] user-service - Operation: email_sent - Processing time: 164ms - RequestID: iwukiwfijnf +2025-06-18T14:16:53.381Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 344ms - Rows affected: 15 - RequestID: iifabanzr3q +2025-06-18T14:16:53.481Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 201 - Response time: 938ms - IP: 192.168.189.103 - User: user_1099 - RequestID: ozj9m41qvwk +2025-06-18T14:16:53.581Z [TRACE] order-service - Auth event: login_success - User: user_1091 - IP: 192.168.53.133 - RequestID: zpak4u0rwp +2025-06-18T14:16:53.681Z [DEBUG] order-service - Operation: cache_miss - Processing time: 139ms - RequestID: y7ub036g4y +2025-06-18T14:16:53.781Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 487ms - IP: 192.168.79.141 - User: user_1081 - RequestID: 7bj61vqe1wx +2025-06-18T14:16:53.881Z [INFO] order-service - GET /api/v1/auth/logout - Status: 500 - Response time: 337ms - IP: 192.168.64.33 - User: user_1011 - RequestID: sy679qsfs8g +2025-06-18T14:16:53.981Z [INFO] inventory-service - Operation: notification_queued - Processing time: 377ms - RequestID: tzp4ws4ba3g +2025-06-18T14:16:54.081Z [DEBUG] user-service - Auth event: login_success - User: user_1091 - IP: 192.168.232.72 - RequestID: eo259mldyjk +2025-06-18T14:16:54.181Z [INFO] notification-service - Auth event: login_failed - User: user_1062 - IP: 192.168.85.229 - RequestID: 3u0tqh38opf +2025-06-18T14:16:54.281Z [TRACE] user-service - Operation: notification_queued - Processing time: 261ms - RequestID: gy5183yh3mk +2025-06-18T14:16:54.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1025 - IP: 192.168.68.128 - RequestID: mvazl937pnl +2025-06-18T14:16:54.481Z [INFO] auth-service - Operation: cache_hit - Processing time: 513ms - RequestID: rhv8i9mpd2 +2025-06-18T14:16:54.581Z [TRACE] notification-service - Auth event: login_success - User: user_1092 - IP: 192.168.196.226 - RequestID: v4invbkntr +2025-06-18T14:16:54.681Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 315ms - Rows affected: 21 - RequestID: tmcyab83x8d +2025-06-18T14:16:54.781Z [TRACE] notification-service - Auth event: logout - User: user_1011 - IP: 192.168.68.158 - RequestID: p5fmmictoz +2025-06-18T14:16:54.881Z [TRACE] notification-service - Database INSERT on orders - Execution time: 160ms - Rows affected: 67 - RequestID: wto70oj7hpq +2025-06-18T14:16:54.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.97.87 - RequestID: qm687s3tqa +2025-06-18T14:16:55.081Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 152ms - Rows affected: 89 - RequestID: s5l7jzrsagi +2025-06-18T14:16:55.181Z [TRACE] inventory-service - Auth event: login_failed - User: user_1027 - IP: 192.168.10.184 - RequestID: 436fey55yi5 +2025-06-18T14:16:55.281Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 899ms - RequestID: qvplzjwg37 +2025-06-18T14:16:55.381Z [INFO] inventory-service - Auth event: login_failed - User: user_1013 - IP: 192.168.194.41 - RequestID: vmt9i1uzowg +2025-06-18T14:16:55.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.240.169 - RequestID: hguqxierqji +2025-06-18T14:16:55.581Z [DEBUG] order-service - PUT /api/v1/payments - Status: 200 - Response time: 238ms - IP: 192.168.229.123 - User: user_1082 - RequestID: llcwkg0ovvi +2025-06-18T14:16:55.681Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 448ms - Rows affected: 91 - RequestID: w7ym9fjfqwn +2025-06-18T14:16:55.781Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1665ms - IP: 192.168.159.94 - User: user_1033 - RequestID: uhyfqdxkj9 +2025-06-18T14:16:55.881Z [TRACE] order-service - Database SELECT on products - Execution time: 167ms - Rows affected: 97 - RequestID: w68nchvug9 +2025-06-18T14:16:55.981Z [TRACE] user-service - Auth event: logout - User: user_1098 - IP: 192.168.229.123 - RequestID: s5dq4itkb0j +2025-06-18T14:16:56.081Z [DEBUG] order-service - Auth event: login_success - User: user_1075 - IP: 192.168.30.79 - RequestID: r2okbdpx1kg +2025-06-18T14:16:56.181Z [TRACE] user-service - POST /api/v1/payments - Status: 200 - Response time: 600ms - IP: 192.168.13.72 - User: user_1028 - RequestID: 14mkagb22kk +2025-06-18T14:16:56.281Z [INFO] notification-service - Database UPDATE on orders - Execution time: 310ms - Rows affected: 97 - RequestID: ntqcmla9mrm +2025-06-18T14:16:56.381Z [DEBUG] order-service - PUT /api/v1/orders - Status: 404 - Response time: 1696ms - IP: 192.168.138.123 - User: user_1028 - RequestID: r9rluziaoyi +2025-06-18T14:16:56.481Z [TRACE] order-service - Operation: inventory_updated - Processing time: 916ms - RequestID: 9we9sq6wxz6 +2025-06-18T14:16:56.581Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 156ms - Rows affected: 76 - RequestID: ielu0v0pvn +2025-06-18T14:16:56.681Z [TRACE] payment-service - Auth event: logout - User: user_1040 - IP: 192.168.229.123 - RequestID: x9nfx58eox +2025-06-18T14:16:56.781Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 500 - Response time: 1988ms - IP: 192.168.144.38 - User: user_1009 - RequestID: g5ks2a1ktq +2025-06-18T14:16:56.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 914ms - RequestID: l4d8c8b2zv +2025-06-18T14:16:56.981Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1227ms - IP: 192.168.28.146 - User: user_1053 - RequestID: 1cfv49jv4lc +2025-06-18T14:16:57.081Z [TRACE] inventory-service - Operation: email_sent - Processing time: 110ms - RequestID: tv2gnktccxq +2025-06-18T14:16:57.181Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 545ms - RequestID: a40ltpkr4dt +2025-06-18T14:16:57.281Z [INFO] notification-service - Database DELETE on users - Execution time: 377ms - Rows affected: 48 - RequestID: uzmdjvxlc8j +2025-06-18T14:16:57.381Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 529ms - RequestID: vl41ivt543 +2025-06-18T14:16:57.481Z [INFO] auth-service - Database SELECT on sessions - Execution time: 245ms - Rows affected: 48 - RequestID: jh7a2gdujab +2025-06-18T14:16:57.581Z [TRACE] payment-service - Database UPDATE on products - Execution time: 40ms - Rows affected: 78 - RequestID: wx5ovat7cyl +2025-06-18T14:16:57.681Z [INFO] user-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.141.100 - RequestID: 3h8sr4r9jf6 +2025-06-18T14:16:57.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.104.37 - RequestID: ic0s7z3oz49 +2025-06-18T14:16:57.881Z [INFO] inventory-service - Auth event: logout - User: user_1032 - IP: 192.168.174.114 - RequestID: pg639cpu72c +2025-06-18T14:16:57.981Z [TRACE] auth-service - PUT /api/v1/users - Status: 502 - Response time: 1677ms - IP: 192.168.79.141 - User: user_1057 - RequestID: zgo1v0bfn9 +2025-06-18T14:16:58.081Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 476ms - RequestID: clz7x9yl8gu +2025-06-18T14:16:58.181Z [INFO] payment-service - Operation: email_sent - Processing time: 913ms - RequestID: 3prh6wlzmv +2025-06-18T14:16:58.281Z [TRACE] payment-service - Operation: order_created - Processing time: 413ms - RequestID: 1jmg8dsxm1y +2025-06-18T14:16:58.381Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 25ms - Rows affected: 32 - RequestID: xv5gvelmldh +2025-06-18T14:16:58.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.242.165 - RequestID: 1cn5u55sedj +2025-06-18T14:16:58.581Z [TRACE] notification-service - Database SELECT on users - Execution time: 323ms - Rows affected: 46 - RequestID: wcn96qphyml +2025-06-18T14:16:58.681Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 963ms - IP: 192.168.159.94 - User: user_1008 - RequestID: dgnmsoy9pm4 +2025-06-18T14:16:58.781Z [DEBUG] order-service - Auth event: logout - User: user_1062 - IP: 192.168.85.229 - RequestID: jcsmfy49dum +2025-06-18T14:16:58.881Z [INFO] order-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.79.116 - RequestID: 0ulia42b454g +2025-06-18T14:16:58.981Z [DEBUG] payment-service - Operation: email_sent - Processing time: 286ms - RequestID: 2vuimu9y9hk +2025-06-18T14:16:59.081Z [TRACE] notification-service - Database SELECT on products - Execution time: 45ms - Rows affected: 95 - RequestID: rjow5tp3qg +2025-06-18T14:16:59.181Z [DEBUG] user-service - Operation: payment_processed - Processing time: 742ms - RequestID: 69slqvuxljf +2025-06-18T14:16:59.281Z [TRACE] inventory-service - GET /api/v1/users - Status: 201 - Response time: 1897ms - IP: 192.168.30.79 - User: user_1058 - RequestID: vrzib6xjj7p +2025-06-18T14:16:59.381Z [INFO] auth-service - Database INSERT on payments - Execution time: 388ms - Rows affected: 76 - RequestID: g3x1qbbni06 +2025-06-18T14:16:59.481Z [TRACE] auth-service - Database SELECT on users - Execution time: 246ms - Rows affected: 36 - RequestID: lid5rpeqf3 +2025-06-18T14:16:59.581Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 490ms - Rows affected: 18 - RequestID: 8o0hqj5x264 +2025-06-18T14:16:59.681Z [INFO] order-service - Operation: notification_queued - Processing time: 501ms - RequestID: mf0ezjovk7l +2025-06-18T14:16:59.781Z [INFO] user-service - Operation: cache_hit - Processing time: 869ms - RequestID: 36gfxdgymu +2025-06-18T14:16:59.881Z [TRACE] payment-service - Operation: payment_processed - Processing time: 905ms - RequestID: av4lvswrmz +2025-06-18T14:16:59.981Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 619ms - RequestID: lx0l5hmhhjr +2025-06-18T14:17:00.081Z [TRACE] auth-service - PUT /api/v1/users - Status: 401 - Response time: 802ms - IP: 192.168.36.218 - User: user_1040 - RequestID: tyl41gg1twa +2025-06-18T14:17:00.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1025 - IP: 192.168.36.218 - RequestID: jlcw0mt1h3 +2025-06-18T14:17:00.281Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 475ms - Rows affected: 97 - RequestID: hqwfk1dfbve +2025-06-18T14:17:00.381Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 210ms - Rows affected: 15 - RequestID: lqimpb4j3tj +2025-06-18T14:17:00.481Z [INFO] user-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.187.199 - RequestID: ac4lso3xy4m +2025-06-18T14:17:00.581Z [TRACE] payment-service - GET /api/v1/payments - Status: 201 - Response time: 304ms - IP: 192.168.79.116 - User: user_1010 - RequestID: rr2fpxr96a +2025-06-18T14:17:00.681Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 342ms - Rows affected: 90 - RequestID: zwrykfz6njm +2025-06-18T14:17:00.781Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 404ms - Rows affected: 83 - RequestID: bqrohcyuek +2025-06-18T14:17:00.881Z [INFO] notification-service - Auth event: logout - User: user_1034 - IP: 192.168.242.165 - RequestID: x8c6d8r3pf +2025-06-18T14:17:00.981Z [TRACE] payment-service - Operation: order_created - Processing time: 824ms - RequestID: g1smwtmhsq +2025-06-18T14:17:01.081Z [INFO] payment-service - Auth event: login_failed - User: user_1086 - IP: 192.168.100.240 - RequestID: f2jvpf7fw1e +2025-06-18T14:17:01.181Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 464ms - Rows affected: 51 - RequestID: kkyzdbwerkj +2025-06-18T14:17:01.281Z [INFO] notification-service - Auth event: login_failed - User: user_1051 - IP: 192.168.100.240 - RequestID: 6mm3qzoxqdp +2025-06-18T14:17:01.381Z [DEBUG] user-service - Operation: cache_miss - Processing time: 680ms - RequestID: c1jm0tznniv +2025-06-18T14:17:01.481Z [INFO] payment-service - Database INSERT on payments - Execution time: 162ms - Rows affected: 24 - RequestID: cuhqv97vdoc +2025-06-18T14:17:01.581Z [DEBUG] user-service - Auth event: password_change - User: user_1084 - IP: 192.168.53.133 - RequestID: ww04qu81zwr +2025-06-18T14:17:01.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.242.165 - RequestID: kjszr3i0gl +2025-06-18T14:17:01.781Z [INFO] user-service - POST /api/v1/orders - Status: 403 - Response time: 220ms - IP: 192.168.174.114 - User: user_1023 - RequestID: oaa1w5e91eh +2025-06-18T14:17:01.881Z [TRACE] user-service - Auth event: password_change - User: user_1044 - IP: 192.168.1.152 - RequestID: ukfvdhfjuh +2025-06-18T14:17:01.981Z [TRACE] order-service - Operation: cache_hit - Processing time: 603ms - RequestID: 1kzv6t8e7n7 +2025-06-18T14:17:02.081Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 34ms - Rows affected: 29 - RequestID: t3ijyc7lnbo +2025-06-18T14:17:02.181Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 200 - Response time: 263ms - IP: 192.168.167.32 - User: user_1051 - RequestID: rkypr8mt1b +2025-06-18T14:17:02.281Z [INFO] auth-service - Operation: cache_miss - Processing time: 287ms - RequestID: dr3ey856469 +2025-06-18T14:17:02.381Z [DEBUG] notification-service - Auth event: logout - User: user_1034 - IP: 192.168.133.7 - RequestID: m2u0tw5utx +2025-06-18T14:17:02.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 495ms - RequestID: 1fdoe8kg8zsi +2025-06-18T14:17:02.581Z [INFO] auth-service - Auth event: logout - User: user_1020 - IP: 192.168.187.199 - RequestID: b8nydrjwygv +2025-06-18T14:17:02.681Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 400 - Response time: 854ms - IP: 192.168.13.72 - User: user_1048 - RequestID: fj9hdr5dci +2025-06-18T14:17:02.781Z [TRACE] user-service - Database INSERT on payments - Execution time: 136ms - Rows affected: 78 - RequestID: b2yzd3wujns +2025-06-18T14:17:02.881Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 995ms - RequestID: wurwtvbv88 +2025-06-18T14:17:02.981Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 263ms - IP: 192.168.227.233 - User: user_1006 - RequestID: w0x36yryh5 +2025-06-18T14:17:03.081Z [INFO] payment-service - GET /api/v1/auth/login - Status: 400 - Response time: 998ms - IP: 192.168.36.218 - User: user_1054 - RequestID: pr91rgohdyo +2025-06-18T14:17:03.181Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 503 - Response time: 225ms - IP: 192.168.159.94 - User: user_1016 - RequestID: ty97nm6qero +2025-06-18T14:17:03.281Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 162ms - Rows affected: 70 - RequestID: qd02xxrbuqa +2025-06-18T14:17:03.381Z [INFO] order-service - Database SELECT on sessions - Execution time: 182ms - Rows affected: 4 - RequestID: otf482div7q +2025-06-18T14:17:03.481Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 287ms - Rows affected: 95 - RequestID: 15p5t2un69e +2025-06-18T14:17:03.581Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 201 - Response time: 281ms - IP: 192.168.64.33 - User: user_1007 - RequestID: koivbwbr3k +2025-06-18T14:17:03.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 526ms - RequestID: 3tlsdnzqwd +2025-06-18T14:17:03.781Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1074ms - IP: 192.168.147.171 - User: user_1030 - RequestID: nh0jr69994 +2025-06-18T14:17:03.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1095 - IP: 192.168.33.76 - RequestID: 4jyfx3nndqa +2025-06-18T14:17:03.981Z [DEBUG] order-service - Operation: order_created - Processing time: 875ms - RequestID: 8f9whdf4n7e +2025-06-18T14:17:04.081Z [INFO] order-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.100.240 - RequestID: 3atsmypow2w +2025-06-18T14:17:04.181Z [INFO] payment-service - Operation: payment_processed - Processing time: 987ms - RequestID: lr52j6d4xm +2025-06-18T14:17:04.281Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.30.79 - RequestID: a3gqbub5rci +2025-06-18T14:17:04.381Z [DEBUG] auth-service - Auth event: login_failed - User: user_1037 - IP: 192.168.33.76 - RequestID: 505zmhkx0ua +2025-06-18T14:17:04.481Z [DEBUG] notification-service - Database INSERT on users - Execution time: 423ms - Rows affected: 19 - RequestID: uw9nwbfneqb +2025-06-18T14:17:04.581Z [TRACE] order-service - Operation: email_sent - Processing time: 730ms - RequestID: 8zwbjpltc5 +2025-06-18T14:17:04.681Z [TRACE] notification-service - POST /api/v1/inventory - Status: 401 - Response time: 1922ms - IP: 192.168.181.225 - User: user_1098 - RequestID: temw79dvvw +2025-06-18T14:17:04.781Z [TRACE] notification-service - Database SELECT on users - Execution time: 407ms - Rows affected: 51 - RequestID: mnfkorc608i +2025-06-18T14:17:04.881Z [INFO] user-service - GET /api/v1/inventory - Status: 503 - Response time: 1339ms - IP: 192.168.30.79 - User: user_1094 - RequestID: vl9z6i9hmok +2025-06-18T14:17:04.981Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 174ms - Rows affected: 57 - RequestID: hsaynr4x9vs +2025-06-18T14:17:05.081Z [INFO] notification-service - GET /api/v1/orders - Status: 500 - Response time: 1786ms - IP: 192.168.229.123 - User: user_1075 - RequestID: acn0t37o53g +2025-06-18T14:17:05.181Z [INFO] order-service - Auth event: login_failed - User: user_1054 - IP: 192.168.30.79 - RequestID: 1q4z7dbng8i +2025-06-18T14:17:05.281Z [INFO] order-service - Operation: email_sent - Processing time: 497ms - RequestID: 7vf4zndpzbh +2025-06-18T14:17:05.381Z [DEBUG] order-service - Auth event: password_change - User: user_1055 - IP: 192.168.11.60 - RequestID: myb2rskw7k +2025-06-18T14:17:05.481Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 863ms - IP: 192.168.68.128 - User: user_1061 - RequestID: mw9dcjqse4 +2025-06-18T14:17:05.581Z [TRACE] auth-service - Database SELECT on orders - Execution time: 458ms - Rows affected: 15 - RequestID: i2rgi3yefzn +2025-06-18T14:17:05.681Z [INFO] user-service - Auth event: login_failed - User: user_1083 - IP: 192.168.211.72 - RequestID: 6w6okwisgrv +2025-06-18T14:17:05.781Z [INFO] inventory-service - GET /api/v1/orders - Status: 403 - Response time: 1328ms - IP: 192.168.247.134 - User: user_1018 - RequestID: 2d9b672kx1i +2025-06-18T14:17:05.881Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 403 - Response time: 1477ms - IP: 192.168.1.152 - User: user_1037 - RequestID: ejk92ic39p +2025-06-18T14:17:05.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 603ms - RequestID: qi2p2ky3gu +2025-06-18T14:17:06.081Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 460ms - Rows affected: 50 - RequestID: i2y2va74wlm +2025-06-18T14:17:06.181Z [TRACE] inventory-service - Operation: email_sent - Processing time: 841ms - RequestID: nabor53hbyc +2025-06-18T14:17:06.281Z [DEBUG] auth-service - POST /api/v1/payments - Status: 404 - Response time: 1987ms - IP: 192.168.133.7 - User: user_1027 - RequestID: 6wgz9bf3hmn +2025-06-18T14:17:06.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.159.94 - RequestID: mgjmbxnruad +2025-06-18T14:17:06.481Z [INFO] user-service - Auth event: logout - User: user_1044 - IP: 192.168.113.218 - RequestID: o1jcht0f27j +2025-06-18T14:17:06.581Z [DEBUG] payment-service - Database DELETE on products - Execution time: 342ms - Rows affected: 3 - RequestID: b80tpjfksl +2025-06-18T14:17:06.681Z [INFO] order-service - Operation: payment_processed - Processing time: 804ms - RequestID: t39bo6fslwq +2025-06-18T14:17:06.781Z [TRACE] notification-service - Auth event: login_success - User: user_1032 - IP: 192.168.85.229 - RequestID: euf2v6m1ie +2025-06-18T14:17:06.881Z [TRACE] payment-service - Database UPDATE on products - Execution time: 185ms - Rows affected: 16 - RequestID: o5npg472e0l +2025-06-18T14:17:06.981Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 200 - Response time: 822ms - IP: 192.168.68.128 - User: user_1091 - RequestID: ewszs8bz4v7 +2025-06-18T14:17:07.081Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 178ms - RequestID: m6xee4a91i +2025-06-18T14:17:07.181Z [INFO] auth-service - Operation: webhook_sent - Processing time: 170ms - RequestID: h0jcf3rh2r +2025-06-18T14:17:07.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.79.143 - RequestID: bdwiyootapn +2025-06-18T14:17:07.381Z [INFO] notification-service - Auth event: login_success - User: user_1023 - IP: 192.168.79.141 - RequestID: 95deesisfp +2025-06-18T14:17:07.481Z [INFO] auth-service - Operation: webhook_sent - Processing time: 409ms - RequestID: v6v4gi6pal +2025-06-18T14:17:07.581Z [INFO] notification-service - Operation: inventory_updated - Processing time: 1002ms - RequestID: 1k6np7j5na1 +2025-06-18T14:17:07.681Z [TRACE] payment-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.1.152 - RequestID: 5aklabhyvdi +2025-06-18T14:17:07.781Z [DEBUG] notification-service - Database DELETE on users - Execution time: 76ms - Rows affected: 67 - RequestID: fhc42nit6l +2025-06-18T14:17:07.881Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1793ms - IP: 192.168.235.117 - User: user_1062 - RequestID: 3pw6exlgur2 +2025-06-18T14:17:07.981Z [DEBUG] auth-service - Auth event: logout - User: user_1016 - IP: 192.168.32.38 - RequestID: imq39b40urb +2025-06-18T14:17:08.081Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 500 - Response time: 1746ms - IP: 192.168.11.60 - User: user_1080 - RequestID: n42b4chs72m +2025-06-18T14:17:08.181Z [DEBUG] order-service - Auth event: login_failed - User: user_1014 - IP: 192.168.64.33 - RequestID: jexuz7eyf7i +2025-06-18T14:17:08.281Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 600ms - RequestID: p3xvd65s9hm +2025-06-18T14:17:08.381Z [TRACE] payment-service - Database INSERT on payments - Execution time: 127ms - Rows affected: 36 - RequestID: 8vv3hp0wooj +2025-06-18T14:17:08.481Z [DEBUG] user-service - PUT /api/v1/orders - Status: 401 - Response time: 70ms - IP: 192.168.167.32 - User: user_1098 - RequestID: 7wevyzgbiy8 +2025-06-18T14:17:08.581Z [INFO] order-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.68.158 - RequestID: z1207aaso3 +2025-06-18T14:17:08.681Z [TRACE] notification-service - Auth event: password_change - User: user_1035 - IP: 192.168.97.87 - RequestID: fkqqccgdofb +2025-06-18T14:17:08.781Z [DEBUG] user-service - Auth event: login_failed - User: user_1073 - IP: 192.168.211.72 - RequestID: due3y3wpj7 +2025-06-18T14:17:08.881Z [TRACE] order-service - Database INSERT on users - Execution time: 317ms - Rows affected: 46 - RequestID: ktk5wcydjo +2025-06-18T14:17:08.981Z [TRACE] payment-service - Database SELECT on orders - Execution time: 496ms - Rows affected: 7 - RequestID: iozgcb3en7p +2025-06-18T14:17:09.081Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 136ms - Rows affected: 93 - RequestID: y0n9o462b2b +2025-06-18T14:17:09.181Z [DEBUG] order-service - Auth event: password_change - User: user_1092 - IP: 192.168.97.87 - RequestID: jzzowjx26 +2025-06-18T14:17:09.281Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 401 - Response time: 1512ms - IP: 192.168.242.165 - User: user_1017 - RequestID: 0ygxlf5lv7x +2025-06-18T14:17:09.381Z [INFO] user-service - Operation: webhook_sent - Processing time: 1046ms - RequestID: cbidyul5zhf +2025-06-18T14:17:09.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.174.114 - RequestID: oy1pseq1ya +2025-06-18T14:17:09.581Z [DEBUG] order-service - Database DELETE on payments - Execution time: 120ms - Rows affected: 65 - RequestID: hph9rnje9g7 +2025-06-18T14:17:09.681Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 86ms - IP: 192.168.64.33 - User: user_1065 - RequestID: 9678r1eqwf +2025-06-18T14:17:09.781Z [INFO] user-service - DELETE /api/v1/users - Status: 500 - Response time: 218ms - IP: 192.168.53.133 - User: user_1098 - RequestID: 0lj7ixfrlkt9 +2025-06-18T14:17:09.881Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 503 - Response time: 713ms - IP: 192.168.1.152 - User: user_1016 - RequestID: e1h883pr2g8 +2025-06-18T14:17:09.981Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 573ms - IP: 192.168.79.116 - User: user_1084 - RequestID: nk6e55k5ka +2025-06-18T14:17:10.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.14.77 - RequestID: y0rb0utinj +2025-06-18T14:17:10.181Z [TRACE] auth-service - Auth event: logout - User: user_1040 - IP: 192.168.79.116 - RequestID: j5zjul2ajj +2025-06-18T14:17:10.281Z [INFO] order-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.97.87 - RequestID: 39pzn790u6 +2025-06-18T14:17:10.381Z [TRACE] notification-service - PUT /api/v1/orders - Status: 503 - Response time: 820ms - IP: 192.168.44.5 - User: user_1059 - RequestID: 12bef15sfyia +2025-06-18T14:17:10.481Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 201 - Response time: 158ms - IP: 192.168.227.77 - User: user_1058 - RequestID: mpz06ri8x6 +2025-06-18T14:17:10.581Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 380ms - Rows affected: 44 - RequestID: camsznes1ww +2025-06-18T14:17:10.681Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 200 - Response time: 851ms - IP: 192.168.68.158 - User: user_1001 - RequestID: k84yn2vt32i +2025-06-18T14:17:10.781Z [INFO] notification-service - POST /api/v1/payments - Status: 401 - Response time: 1837ms - IP: 192.168.242.165 - User: user_1019 - RequestID: jyweqea9oa +2025-06-18T14:17:10.881Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.211.72 - RequestID: qqlu8fpa2of +2025-06-18T14:17:10.981Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 502 - Response time: 1561ms - IP: 192.168.79.141 - User: user_1044 - RequestID: bp6jnafga3k +2025-06-18T14:17:11.081Z [INFO] notification-service - PUT /api/v1/users - Status: 404 - Response time: 1090ms - IP: 192.168.46.63 - User: user_1055 - RequestID: t2vzozj30m8 +2025-06-18T14:17:11.181Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 1020ms - RequestID: 3czbk41nvp +2025-06-18T14:17:11.281Z [TRACE] inventory-service - Auth event: logout - User: user_1087 - IP: 192.168.242.165 - RequestID: rpxe1t506wn +2025-06-18T14:17:11.381Z [TRACE] user-service - Database INSERT on orders - Execution time: 458ms - Rows affected: 82 - RequestID: 6up0ja27r7n +2025-06-18T14:17:11.481Z [INFO] auth-service - Operation: order_created - Processing time: 801ms - RequestID: bd76k8o4k3g +2025-06-18T14:17:11.581Z [INFO] payment-service - Database INSERT on orders - Execution time: 63ms - Rows affected: 8 - RequestID: toid0hxirtm +2025-06-18T14:17:11.681Z [INFO] notification-service - Database DELETE on products - Execution time: 158ms - Rows affected: 67 - RequestID: lhp6f9apq9m +2025-06-18T14:17:11.781Z [DEBUG] payment-service - Operation: email_sent - Processing time: 319ms - RequestID: klnxn3wwcm +2025-06-18T14:17:11.881Z [INFO] order-service - Auth event: login_success - User: user_1055 - IP: 192.168.147.171 - RequestID: dnd7m82hwj +2025-06-18T14:17:11.981Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 307ms - Rows affected: 58 - RequestID: 3s4j7l18wne +2025-06-18T14:17:12.081Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 170ms - IP: 192.168.187.199 - User: user_1059 - RequestID: q2rgqe6m7vg +2025-06-18T14:17:12.181Z [INFO] inventory-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.46.63 - RequestID: 5gd65o6z1yw +2025-06-18T14:17:12.281Z [INFO] notification-service - Database SELECT on sessions - Execution time: 419ms - Rows affected: 71 - RequestID: l7uolpi7vxk +2025-06-18T14:17:12.381Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 866ms - IP: 192.168.232.72 - User: user_1057 - RequestID: cdmm8yr32xt +2025-06-18T14:17:12.481Z [INFO] user-service - PATCH /api/v1/payments - Status: 502 - Response time: 947ms - IP: 192.168.159.94 - User: user_1087 - RequestID: w09qvcarria +2025-06-18T14:17:12.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 77ms - RequestID: wslrektt8jr +2025-06-18T14:17:12.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1044 - IP: 192.168.33.76 - RequestID: mqcjnjmcdql +2025-06-18T14:17:12.781Z [TRACE] order-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.33.76 - RequestID: rvxkpjayuvj +2025-06-18T14:17:12.881Z [INFO] inventory-service - Auth event: password_change - User: user_1097 - IP: 192.168.194.41 - RequestID: yer5lnx741 +2025-06-18T14:17:12.981Z [TRACE] notification-service - Operation: cache_hit - Processing time: 1015ms - RequestID: 6n6xv9m4eih +2025-06-18T14:17:13.081Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 108ms - Rows affected: 5 - RequestID: cckizfym93d +2025-06-18T14:17:13.181Z [INFO] user-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.247.134 - RequestID: asfs90vghst +2025-06-18T14:17:13.281Z [INFO] notification-service - Database DELETE on payments - Execution time: 377ms - Rows affected: 45 - RequestID: um3773uwvt +2025-06-18T14:17:13.381Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1494ms - IP: 192.168.46.63 - User: user_1078 - RequestID: 3eylcmktl1f +2025-06-18T14:17:13.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 321ms - RequestID: gp97ywse6g +2025-06-18T14:17:13.581Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 270ms - Rows affected: 1 - RequestID: 141gmymaz1xr +2025-06-18T14:17:13.681Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 200 - Response time: 1638ms - IP: 192.168.64.33 - User: user_1067 - RequestID: q9bbz9e8gg8 +2025-06-18T14:17:13.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1072 - IP: 192.168.242.165 - RequestID: uwwi9j39fi +2025-06-18T14:17:13.881Z [INFO] payment-service - Auth event: login_success - User: user_1079 - IP: 192.168.196.226 - RequestID: rfvy6d4r62r +2025-06-18T14:17:13.981Z [INFO] payment-service - Operation: cache_miss - Processing time: 719ms - RequestID: 0twnrhw73kx +2025-06-18T14:17:14.081Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 274ms - Rows affected: 30 - RequestID: 2v8ewqr17gm +2025-06-18T14:17:14.181Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1312ms - IP: 192.168.181.225 - User: user_1060 - RequestID: u5brosse6q +2025-06-18T14:17:14.281Z [TRACE] auth-service - Database SELECT on users - Execution time: 77ms - Rows affected: 90 - RequestID: fntvhialr4r +2025-06-18T14:17:14.381Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 528ms - RequestID: 6pgmk9502jv +2025-06-18T14:17:14.481Z [TRACE] order-service - Operation: payment_processed - Processing time: 165ms - RequestID: swmi8mhn1rq +2025-06-18T14:17:14.581Z [DEBUG] user-service - Operation: email_sent - Processing time: 264ms - RequestID: f92zv582a7c +2025-06-18T14:17:14.681Z [TRACE] payment-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.138.123 - RequestID: ysyhkdblprm +2025-06-18T14:17:14.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1022 - IP: 192.168.79.116 - RequestID: vx24g5ay75h +2025-06-18T14:17:14.881Z [DEBUG] user-service - Database INSERT on products - Execution time: 377ms - Rows affected: 2 - RequestID: 8ajqc08jna9 +2025-06-18T14:17:14.981Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 831ms - IP: 192.168.181.225 - User: user_1086 - RequestID: 5jecu5o6ddc +2025-06-18T14:17:15.081Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 282ms - Rows affected: 71 - RequestID: 800cj1iynaa +2025-06-18T14:17:15.181Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 178ms - Rows affected: 29 - RequestID: rfopvvplny +2025-06-18T14:17:15.281Z [DEBUG] order-service - Operation: cache_hit - Processing time: 93ms - RequestID: g430emmrrn +2025-06-18T14:17:15.381Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 503 - Response time: 1961ms - IP: 192.168.104.37 - User: user_1078 - RequestID: hkadapqzhof +2025-06-18T14:17:15.481Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 502 - Response time: 219ms - IP: 192.168.32.38 - User: user_1000 - RequestID: 7acndczvs4n +2025-06-18T14:17:15.581Z [TRACE] inventory-service - Operation: email_sent - Processing time: 1039ms - RequestID: 51q5hss9m3m +2025-06-18T14:17:15.681Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 1011ms - RequestID: xx6entr9jzc +2025-06-18T14:17:15.781Z [DEBUG] user-service - Operation: email_sent - Processing time: 723ms - RequestID: wzr3m7qr4s9 +2025-06-18T14:17:15.881Z [TRACE] inventory-service - Database SELECT on users - Execution time: 103ms - Rows affected: 44 - RequestID: iw9g5p3xy0e +2025-06-18T14:17:15.981Z [TRACE] inventory-service - POST /api/v1/users - Status: 404 - Response time: 739ms - IP: 192.168.147.171 - User: user_1034 - RequestID: ko9hf3zh62l +2025-06-18T14:17:16.081Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1148ms - IP: 192.168.138.123 - User: user_1028 - RequestID: 06hm81rbehhq +2025-06-18T14:17:16.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 335ms - RequestID: uf0h6cwm6y +2025-06-18T14:17:16.281Z [INFO] user-service - Operation: email_sent - Processing time: 841ms - RequestID: z6twcma8pjg +2025-06-18T14:17:16.381Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1715ms - IP: 192.168.227.233 - User: user_1049 - RequestID: yuk91tgpz +2025-06-18T14:17:16.481Z [INFO] auth-service - Database UPDATE on users - Execution time: 83ms - Rows affected: 54 - RequestID: mkj9ewr6wdq +2025-06-18T14:17:16.581Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 78ms - RequestID: y35irczdcyr +2025-06-18T14:17:16.681Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 503 - Response time: 1976ms - IP: 192.168.232.72 - User: user_1074 - RequestID: 6cdfabb0vr9 +2025-06-18T14:17:16.781Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1570ms - IP: 192.168.138.123 - User: user_1047 - RequestID: 41qme9sgd7a +2025-06-18T14:17:16.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.167.32 - RequestID: pi1ndlngytp +2025-06-18T14:17:16.981Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1135ms - IP: 192.168.104.37 - User: user_1022 - RequestID: 0ejz2lcn7gap +2025-06-18T14:17:17.081Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 201 - Response time: 526ms - IP: 192.168.158.144 - User: user_1046 - RequestID: pj2hqky7d9 +2025-06-18T14:17:17.181Z [INFO] user-service - Operation: cache_hit - Processing time: 151ms - RequestID: 3863msa8xuv +2025-06-18T14:17:17.281Z [INFO] payment-service - Auth event: login_success - User: user_1088 - IP: 192.168.100.240 - RequestID: 4j9hibtb4t +2025-06-18T14:17:17.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.31.117 - RequestID: 2o0i0yzdzfl +2025-06-18T14:17:17.481Z [DEBUG] order-service - Auth event: password_change - User: user_1084 - IP: 192.168.113.218 - RequestID: wdlys1ai0mi +2025-06-18T14:17:17.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.104.37 - RequestID: pzeztqcxmb +2025-06-18T14:17:17.681Z [TRACE] auth-service - GET /api/v1/orders - Status: 404 - Response time: 359ms - IP: 192.168.11.60 - User: user_1084 - RequestID: rj97n82iur +2025-06-18T14:17:17.781Z [TRACE] user-service - Auth event: login_failed - User: user_1040 - IP: 192.168.211.72 - RequestID: dkyoq60wion +2025-06-18T14:17:17.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.240.169 - RequestID: xftgf2xhn6o +2025-06-18T14:17:17.981Z [INFO] notification-service - Operation: email_sent - Processing time: 635ms - RequestID: b1oxgz925q6 +2025-06-18T14:17:18.081Z [INFO] notification-service - Database UPDATE on products - Execution time: 19ms - Rows affected: 10 - RequestID: 014a0i2zv90el +2025-06-18T14:17:18.181Z [INFO] inventory-service - PUT /api/v1/users - Status: 400 - Response time: 1744ms - IP: 192.168.174.114 - User: user_1027 - RequestID: 8nf56ih8aag +2025-06-18T14:17:18.281Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 503 - Response time: 1583ms - IP: 192.168.235.117 - User: user_1040 - RequestID: 6mmszzh16jk +2025-06-18T14:17:18.381Z [INFO] order-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.232.72 - RequestID: 6umt3klcmmr +2025-06-18T14:17:18.481Z [INFO] auth-service - Operation: webhook_sent - Processing time: 941ms - RequestID: xilubmrxz9 +2025-06-18T14:17:18.581Z [TRACE] order-service - POST /api/v1/payments - Status: 503 - Response time: 1957ms - IP: 192.168.242.165 - User: user_1072 - RequestID: vr9wqtr3a4 +2025-06-18T14:17:18.681Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 93ms - Rows affected: 51 - RequestID: debrwy4lwmr +2025-06-18T14:17:18.781Z [INFO] notification-service - Operation: email_sent - Processing time: 241ms - RequestID: ni502r6e1ka +2025-06-18T14:17:18.881Z [INFO] order-service - Operation: order_created - Processing time: 421ms - RequestID: 691v3zlyvta +2025-06-18T14:17:18.981Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 33ms - Rows affected: 56 - RequestID: tngr8f4d2i +2025-06-18T14:17:19.081Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 461ms - Rows affected: 77 - RequestID: 81zhfd5u5wa +2025-06-18T14:17:19.181Z [INFO] order-service - GET /api/v1/auth/login - Status: 502 - Response time: 333ms - IP: 192.168.242.165 - User: user_1049 - RequestID: d3l8xjs4q44 +2025-06-18T14:17:19.281Z [INFO] notification-service - Database SELECT on payments - Execution time: 327ms - Rows affected: 98 - RequestID: rwcw4fnismm +2025-06-18T14:17:19.381Z [INFO] notification-service - Operation: inventory_updated - Processing time: 398ms - RequestID: iebm7mrrwh +2025-06-18T14:17:19.481Z [DEBUG] order-service - Operation: order_created - Processing time: 181ms - RequestID: xrwobin994q +2025-06-18T14:17:19.581Z [TRACE] user-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.196.226 - RequestID: cj9s0hkby9a +2025-06-18T14:17:19.681Z [DEBUG] user-service - Database INSERT on products - Execution time: 325ms - Rows affected: 18 - RequestID: uxg7bgx60zq +2025-06-18T14:17:19.781Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 501ms - RequestID: litkq9olrfn +2025-06-18T14:17:19.881Z [DEBUG] order-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.170.215 - RequestID: z017epztpu +2025-06-18T14:17:19.981Z [TRACE] order-service - Database SELECT on users - Execution time: 396ms - Rows affected: 26 - RequestID: vpf2di4jccs +2025-06-18T14:17:20.081Z [TRACE] order-service - Operation: cache_miss - Processing time: 435ms - RequestID: 3i365qoo60h +2025-06-18T14:17:20.181Z [INFO] notification-service - Operation: order_created - Processing time: 954ms - RequestID: imssypdscwf +2025-06-18T14:17:20.281Z [TRACE] user-service - Database SELECT on orders - Execution time: 489ms - Rows affected: 57 - RequestID: h6otvyiytkt +2025-06-18T14:17:20.381Z [TRACE] order-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.187.199 - RequestID: j5plplta2hk +2025-06-18T14:17:20.481Z [TRACE] payment-service - Database DELETE on payments - Execution time: 268ms - Rows affected: 16 - RequestID: 4pwq2eeb46q +2025-06-18T14:17:20.581Z [INFO] user-service - Auth event: login_success - User: user_1097 - IP: 192.168.13.72 - RequestID: 1i4prgnsu61 +2025-06-18T14:17:20.681Z [INFO] notification-service - Database SELECT on sessions - Execution time: 310ms - Rows affected: 87 - RequestID: e9kcmro2enn +2025-06-18T14:17:20.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.33.76 - RequestID: 1nhkrho0f2s +2025-06-18T14:17:20.881Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 31ms - IP: 192.168.68.128 - User: user_1056 - RequestID: yk7ltoxxq1n +2025-06-18T14:17:20.981Z [DEBUG] payment-service - Database SELECT on users - Execution time: 429ms - Rows affected: 38 - RequestID: ib91clvsgj8 +2025-06-18T14:17:21.081Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 77ms - Rows affected: 97 - RequestID: oj3pav49mwj +2025-06-18T14:17:21.181Z [INFO] order-service - Operation: cache_miss - Processing time: 627ms - RequestID: n4p2g9du6l +2025-06-18T14:17:21.281Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1141ms - IP: 192.168.31.117 - User: user_1017 - RequestID: 09o8dfh589gg +2025-06-18T14:17:21.381Z [DEBUG] user-service - Auth event: logout - User: user_1091 - IP: 192.168.28.146 - RequestID: i6fdtlbkfdn +2025-06-18T14:17:21.481Z [TRACE] notification-service - Auth event: password_change - User: user_1082 - IP: 192.168.196.226 - RequestID: rx8vrhto4ur +2025-06-18T14:17:21.581Z [TRACE] inventory-service - Operation: order_created - Processing time: 798ms - RequestID: i7ebz84k7wi +2025-06-18T14:17:21.681Z [INFO] notification-service - Database INSERT on orders - Execution time: 181ms - Rows affected: 99 - RequestID: c74mstpz56u +2025-06-18T14:17:21.781Z [TRACE] auth-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.170.215 - RequestID: 84yn13kay0w +2025-06-18T14:17:21.881Z [DEBUG] order-service - Database SELECT on users - Execution time: 166ms - Rows affected: 9 - RequestID: 1krfcc24ko1 +2025-06-18T14:17:21.981Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 200 - Response time: 1516ms - IP: 192.168.31.117 - User: user_1043 - RequestID: r3o8yrv15 +2025-06-18T14:17:22.081Z [TRACE] order-service - Database DELETE on payments - Execution time: 345ms - Rows affected: 56 - RequestID: tow0d10ajwj +2025-06-18T14:17:22.181Z [INFO] inventory-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.46.63 - RequestID: m9non02rl6a +2025-06-18T14:17:22.281Z [TRACE] auth-service - Operation: order_created - Processing time: 227ms - RequestID: 0fzpxpay5dto +2025-06-18T14:17:22.381Z [DEBUG] user-service - Operation: order_created - Processing time: 753ms - RequestID: 7ys72ie1enm +2025-06-18T14:17:22.481Z [INFO] payment-service - Database UPDATE on payments - Execution time: 282ms - Rows affected: 40 - RequestID: ajm8b7kely7 +2025-06-18T14:17:22.581Z [INFO] payment-service - Operation: email_sent - Processing time: 994ms - RequestID: rudiqvqoqas +2025-06-18T14:17:22.681Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1060ms - IP: 192.168.158.144 - User: user_1062 - RequestID: ldzi3z32l9 +2025-06-18T14:17:22.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.144.38 - RequestID: ygu7gajl5w +2025-06-18T14:17:22.881Z [DEBUG] auth-service - POST /api/v1/orders - Status: 403 - Response time: 560ms - IP: 192.168.33.76 - User: user_1062 - RequestID: utwd1lcd7e +2025-06-18T14:17:22.981Z [DEBUG] order-service - PUT /api/v1/orders - Status: 401 - Response time: 727ms - IP: 192.168.247.134 - User: user_1099 - RequestID: 2pepljwe9xw +2025-06-18T14:17:23.081Z [INFO] auth-service - Operation: payment_processed - Processing time: 161ms - RequestID: 386wg43zh8z +2025-06-18T14:17:23.181Z [TRACE] user-service - Auth event: password_change - User: user_1096 - IP: 192.168.79.141 - RequestID: 87kmyiw2kuu +2025-06-18T14:17:23.281Z [INFO] user-service - Database SELECT on users - Execution time: 464ms - Rows affected: 13 - RequestID: 163gc8rbuvh +2025-06-18T14:17:23.381Z [TRACE] payment-service - PUT /api/v1/users - Status: 502 - Response time: 1615ms - IP: 192.168.227.233 - User: user_1007 - RequestID: xkw7i3xcgrr +2025-06-18T14:17:23.481Z [TRACE] order-service - Database INSERT on products - Execution time: 480ms - Rows affected: 81 - RequestID: chxgpp9mou7 +2025-06-18T14:17:23.581Z [INFO] order-service - POST /api/v1/inventory - Status: 500 - Response time: 1925ms - IP: 192.168.196.226 - User: user_1039 - RequestID: mgzhlnm8mxn +2025-06-18T14:17:23.681Z [DEBUG] order-service - Operation: order_created - Processing time: 712ms - RequestID: a6zl5inyjer +2025-06-18T14:17:23.781Z [DEBUG] order-service - PUT /api/v1/payments - Status: 401 - Response time: 1219ms - IP: 192.168.32.38 - User: user_1090 - RequestID: f4dv1bhclq8 +2025-06-18T14:17:23.881Z [TRACE] order-service - Operation: email_sent - Processing time: 323ms - RequestID: 6g94540exmv +2025-06-18T14:17:23.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.133.7 - RequestID: b0p10nudu9o +2025-06-18T14:17:24.081Z [TRACE] auth-service - Operation: notification_queued - Processing time: 304ms - RequestID: aab0t1wovha +2025-06-18T14:17:24.181Z [INFO] payment-service - Auth event: password_change - User: user_1059 - IP: 192.168.46.63 - RequestID: fuw5c92b1i8 +2025-06-18T14:17:24.281Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 21ms - Rows affected: 46 - RequestID: s0ehe6es8q9 +2025-06-18T14:17:24.381Z [INFO] notification-service - Auth event: logout - User: user_1026 - IP: 192.168.229.123 - RequestID: j9jggdw1efm +2025-06-18T14:17:24.481Z [TRACE] payment-service - GET /api/v1/orders - Status: 500 - Response time: 751ms - IP: 192.168.144.38 - User: user_1044 - RequestID: a45j2xxqkx5 +2025-06-18T14:17:24.581Z [DEBUG] order-service - Auth event: password_change - User: user_1042 - IP: 192.168.33.76 - RequestID: w63om1m7b9k +2025-06-18T14:17:24.681Z [INFO] order-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1552ms - IP: 192.168.79.141 - User: user_1044 - RequestID: a9zj0jvukyg +2025-06-18T14:17:24.781Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 400 - Response time: 1053ms - IP: 192.168.81.206 - User: user_1082 - RequestID: fftc81swox6 +2025-06-18T14:17:24.881Z [DEBUG] auth-service - Auth event: logout - User: user_1095 - IP: 192.168.158.144 - RequestID: apuo1c2noo +2025-06-18T14:17:24.981Z [TRACE] notification-service - Database INSERT on orders - Execution time: 383ms - Rows affected: 84 - RequestID: 7dh5hgciz86 +2025-06-18T14:17:25.081Z [TRACE] payment-service - Database SELECT on orders - Execution time: 181ms - Rows affected: 29 - RequestID: 0bzupd4uighi +2025-06-18T14:17:25.181Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 390ms - Rows affected: 93 - RequestID: 34lhhchov0b +2025-06-18T14:17:25.281Z [TRACE] user-service - Database INSERT on payments - Execution time: 419ms - Rows affected: 81 - RequestID: 33kols2w0u7 +2025-06-18T14:17:25.381Z [TRACE] order-service - GET /api/v1/payments - Status: 500 - Response time: 783ms - IP: 192.168.211.72 - User: user_1005 - RequestID: si9x2zl4lhp +2025-06-18T14:17:25.481Z [TRACE] order-service - Operation: cache_miss - Processing time: 828ms - RequestID: 9u9p9abn5v9 +2025-06-18T14:17:25.581Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 400 - Response time: 1653ms - IP: 192.168.44.5 - User: user_1065 - RequestID: xwxmqzxtq +2025-06-18T14:17:25.681Z [TRACE] notification-service - Operation: cache_miss - Processing time: 999ms - RequestID: fivz7og40o5 +2025-06-18T14:17:25.781Z [TRACE] auth-service - Auth event: login_success - User: user_1042 - IP: 192.168.232.72 - RequestID: rzvsutopxkp +2025-06-18T14:17:25.881Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 228ms - Rows affected: 76 - RequestID: 5cworvp5e8 +2025-06-18T14:17:25.981Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 400 - Response time: 166ms - IP: 192.168.138.123 - User: user_1034 - RequestID: 9mrke76n13s +2025-06-18T14:17:26.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.30.79 - RequestID: 514siearlnw +2025-06-18T14:17:26.181Z [INFO] order-service - Operation: cache_miss - Processing time: 748ms - RequestID: rus8gfqeaxe +2025-06-18T14:17:26.281Z [TRACE] payment-service - Auth event: password_change - User: user_1081 - IP: 192.168.235.117 - RequestID: novdv7vcbre +2025-06-18T14:17:26.381Z [TRACE] inventory-service - POST /api/v1/users - Status: 201 - Response time: 287ms - IP: 192.168.187.199 - User: user_1043 - RequestID: dizpo4ukxjf +2025-06-18T14:17:26.481Z [DEBUG] auth-service - Operation: order_created - Processing time: 671ms - RequestID: o2zbxt2oq3 +2025-06-18T14:17:26.581Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1207ms - IP: 192.168.158.144 - User: user_1099 - RequestID: nwfyno4ssv +2025-06-18T14:17:26.681Z [TRACE] user-service - Database UPDATE on orders - Execution time: 389ms - Rows affected: 77 - RequestID: h0wy2s8wyo +2025-06-18T14:17:26.781Z [TRACE] payment-service - Auth event: logout - User: user_1010 - IP: 192.168.1.152 - RequestID: 7mr5ckjen9v +2025-06-18T14:17:26.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 809ms - RequestID: z3jwnry5ug +2025-06-18T14:17:26.981Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 184ms - Rows affected: 22 - RequestID: s3vtdty5pz +2025-06-18T14:17:27.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.141.100 - RequestID: iacmvztlorr +2025-06-18T14:17:27.181Z [DEBUG] order-service - GET /api/v1/inventory - Status: 403 - Response time: 145ms - IP: 192.168.240.169 - User: user_1079 - RequestID: k4tr0b18iw +2025-06-18T14:17:27.281Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 31ms - IP: 192.168.211.72 - User: user_1031 - RequestID: vuzkss9az7o +2025-06-18T14:17:27.381Z [DEBUG] user-service - Database SELECT on users - Execution time: 52ms - Rows affected: 52 - RequestID: 7ansosusb3k +2025-06-18T14:17:27.481Z [INFO] auth-service - Database SELECT on users - Execution time: 87ms - Rows affected: 11 - RequestID: jdqdvcvpnxc +2025-06-18T14:17:27.581Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 807ms - RequestID: fsf57mker9 +2025-06-18T14:17:27.681Z [TRACE] auth-service - Database INSERT on products - Execution time: 277ms - Rows affected: 38 - RequestID: 2c69em3gtnu +2025-06-18T14:17:27.781Z [TRACE] user-service - Database DELETE on users - Execution time: 359ms - Rows affected: 84 - RequestID: 33rgo7faoat +2025-06-18T14:17:27.881Z [TRACE] user-service - Operation: notification_queued - Processing time: 499ms - RequestID: fhtfhorw164 +2025-06-18T14:17:27.981Z [DEBUG] auth-service - POST /api/v1/orders - Status: 404 - Response time: 780ms - IP: 192.168.167.32 - User: user_1065 - RequestID: du3obap6muc +2025-06-18T14:17:28.081Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 493ms - Rows affected: 88 - RequestID: 33846itcvmf +2025-06-18T14:17:28.181Z [INFO] user-service - Operation: cache_miss - Processing time: 666ms - RequestID: x3tmnp1452m +2025-06-18T14:17:28.281Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1025ms - IP: 192.168.81.206 - User: user_1032 - RequestID: xjxr3a55ubi +2025-06-18T14:17:28.381Z [INFO] auth-service - Auth event: password_change - User: user_1060 - IP: 192.168.159.94 - RequestID: qe2juvz6bie +2025-06-18T14:17:28.481Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 94ms - Rows affected: 81 - RequestID: g32k6n9chr +2025-06-18T14:17:28.581Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 178ms - RequestID: cclvwttwpkh +2025-06-18T14:17:28.681Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1965ms - IP: 192.168.133.7 - User: user_1080 - RequestID: b3paxhx1jap +2025-06-18T14:17:28.781Z [TRACE] payment-service - GET /api/v1/orders - Status: 404 - Response time: 11ms - IP: 192.168.68.128 - User: user_1071 - RequestID: om195j4k02 +2025-06-18T14:17:28.881Z [INFO] notification-service - GET /api/v1/inventory - Status: 503 - Response time: 247ms - IP: 192.168.28.146 - User: user_1098 - RequestID: sf22uij9fns +2025-06-18T14:17:28.981Z [INFO] order-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1108ms - IP: 192.168.232.72 - User: user_1022 - RequestID: z84xrh0or39 +2025-06-18T14:17:29.081Z [INFO] payment-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.81.206 - RequestID: jsepjfuq8op +2025-06-18T14:17:29.181Z [DEBUG] notification-service - POST /api/v1/users - Status: 404 - Response time: 783ms - IP: 192.168.147.171 - User: user_1043 - RequestID: gt5nm9b0ea +2025-06-18T14:17:29.281Z [DEBUG] notification-service - Database SELECT on products - Execution time: 73ms - Rows affected: 21 - RequestID: th095yvpht +2025-06-18T14:17:29.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 206ms - RequestID: peus2l16c1f +2025-06-18T14:17:29.481Z [INFO] auth-service - Database SELECT on users - Execution time: 309ms - Rows affected: 14 - RequestID: bi65opyt5s +2025-06-18T14:17:29.581Z [TRACE] user-service - Auth event: logout - User: user_1029 - IP: 192.168.44.5 - RequestID: tcwr783w7rg +2025-06-18T14:17:29.681Z [DEBUG] payment-service - Operation: email_sent - Processing time: 822ms - RequestID: 7u7khc3chux +2025-06-18T14:17:29.781Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 594ms - RequestID: fhwbgpzk0mg +2025-06-18T14:17:29.881Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 490ms - RequestID: i2ex48u16qe +2025-06-18T14:17:29.981Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 201 - Response time: 1577ms - IP: 192.168.68.128 - User: user_1096 - RequestID: h2ntjfq55ra +2025-06-18T14:17:30.081Z [INFO] notification-service - Database DELETE on products - Execution time: 493ms - Rows affected: 62 - RequestID: pbl46l2x0y +2025-06-18T14:17:30.181Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 200 - Response time: 376ms - IP: 192.168.104.37 - User: user_1034 - RequestID: al75dn4mbu5 +2025-06-18T14:17:30.281Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 823ms - RequestID: m24rgm722h +2025-06-18T14:17:30.381Z [TRACE] order-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.141.100 - RequestID: r1dvxgfsore +2025-06-18T14:17:30.481Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 388ms - Rows affected: 43 - RequestID: ww0y031hhw +2025-06-18T14:17:30.581Z [DEBUG] order-service - Operation: notification_queued - Processing time: 449ms - RequestID: l1955o2lf8d +2025-06-18T14:17:30.681Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 45ms - Rows affected: 38 - RequestID: hi8fg51amqj +2025-06-18T14:17:30.781Z [DEBUG] inventory-service - Auth event: logout - User: user_1073 - IP: 192.168.36.218 - RequestID: 0epb2k7mgm7 +2025-06-18T14:17:30.881Z [INFO] payment-service - Database SELECT on orders - Execution time: 287ms - Rows affected: 10 - RequestID: 2ix2zjacah4 +2025-06-18T14:17:30.981Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 319ms - RequestID: zb3jvx6ym3d +2025-06-18T14:17:31.081Z [TRACE] notification-service - Operation: payment_processed - Processing time: 135ms - RequestID: 9c7rccrcfxb +2025-06-18T14:17:31.181Z [TRACE] auth-service - Operation: payment_processed - Processing time: 183ms - RequestID: 9vjy2n5ak1 +2025-06-18T14:17:31.281Z [INFO] user-service - Auth event: login_failed - User: user_1063 - IP: 192.168.167.32 - RequestID: a7y09y64y2c +2025-06-18T14:17:31.381Z [DEBUG] payment-service - Operation: email_sent - Processing time: 154ms - RequestID: 5ijq8j1ch4n +2025-06-18T14:17:31.481Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1346ms - IP: 192.168.181.225 - User: user_1066 - RequestID: bqfbkhz3ybn +2025-06-18T14:17:31.581Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 443ms - RequestID: otfqbqly8z +2025-06-18T14:17:31.681Z [TRACE] auth-service - GET /api/v1/payments - Status: 401 - Response time: 447ms - IP: 192.168.11.60 - User: user_1072 - RequestID: 17yem0w5aid +2025-06-18T14:17:31.781Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 515ms - RequestID: wy2k78iqbf9 +2025-06-18T14:17:31.881Z [TRACE] user-service - Operation: cache_miss - Processing time: 678ms - RequestID: xbc8bcsnp3 +2025-06-18T14:17:31.981Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 503 - Response time: 1674ms - IP: 192.168.227.77 - User: user_1066 - RequestID: 9crp254pv15 +2025-06-18T14:17:32.081Z [INFO] user-service - Operation: cache_hit - Processing time: 533ms - RequestID: xh80vnwypd8 +2025-06-18T14:17:32.181Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 407ms - Rows affected: 30 - RequestID: wom2cum8bi +2025-06-18T14:17:32.281Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 453ms - Rows affected: 36 - RequestID: tbxulil9un +2025-06-18T14:17:32.381Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.194.41 - RequestID: w5bsyylt7wj +2025-06-18T14:17:32.481Z [INFO] auth-service - Operation: inventory_updated - Processing time: 334ms - RequestID: u3xcd9f9sq +2025-06-18T14:17:32.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1061 - IP: 192.168.33.76 - RequestID: va1k1l20zl9 +2025-06-18T14:17:32.681Z [INFO] inventory-service - GET /api/v1/users - Status: 502 - Response time: 495ms - IP: 192.168.147.171 - User: user_1064 - RequestID: 4glh2ie6xw4 +2025-06-18T14:17:32.781Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1645ms - IP: 192.168.147.171 - User: user_1092 - RequestID: 5hg92tp7aav +2025-06-18T14:17:32.881Z [INFO] auth-service - Operation: webhook_sent - Processing time: 57ms - RequestID: y1mpvtncrls +2025-06-18T14:17:32.981Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 775ms - RequestID: vnuzhqkuj3i +2025-06-18T14:17:33.081Z [INFO] payment-service - Operation: cache_miss - Processing time: 591ms - RequestID: ozf7p30rmy +2025-06-18T14:17:33.181Z [TRACE] auth-service - Operation: payment_processed - Processing time: 1041ms - RequestID: 14loxqc4pzk +2025-06-18T14:17:33.281Z [TRACE] notification-service - Auth event: login_success - User: user_1062 - IP: 192.168.14.77 - RequestID: die8n463pm +2025-06-18T14:17:33.381Z [DEBUG] order-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.232.72 - RequestID: j5rtx7g3rn +2025-06-18T14:17:33.481Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1670ms - IP: 192.168.31.117 - User: user_1031 - RequestID: yeoiw0qr99 +2025-06-18T14:17:33.581Z [INFO] user-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.68.128 - RequestID: rm2ue6szmu +2025-06-18T14:17:33.681Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 385ms - Rows affected: 89 - RequestID: adya2dwuaeo +2025-06-18T14:17:33.781Z [INFO] user-service - Auth event: password_change - User: user_1099 - IP: 192.168.97.87 - RequestID: f6rlat6dj4s +2025-06-18T14:17:33.881Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 403 - Response time: 472ms - IP: 192.168.167.32 - User: user_1084 - RequestID: r6bwhis4q7 +2025-06-18T14:17:33.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 653ms - RequestID: 5e63sk0k82q +2025-06-18T14:17:34.081Z [TRACE] auth-service - POST /api/v1/payments - Status: 200 - Response time: 697ms - IP: 192.168.159.94 - User: user_1089 - RequestID: 148ylseleer +2025-06-18T14:17:34.181Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 963ms - RequestID: ff69fyn3op +2025-06-18T14:17:34.281Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 502 - Response time: 1749ms - IP: 192.168.141.100 - User: user_1093 - RequestID: clz4sa2yw64 +2025-06-18T14:17:34.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.229.123 - RequestID: ssj6dotvpdp +2025-06-18T14:17:34.481Z [TRACE] payment-service - Auth event: logout - User: user_1073 - IP: 192.168.235.117 - RequestID: pockfcp0iyr +2025-06-18T14:17:34.581Z [TRACE] payment-service - Auth event: password_change - User: user_1015 - IP: 192.168.85.229 - RequestID: 9eo2dj7qmp +2025-06-18T14:17:34.681Z [TRACE] payment-service - Auth event: password_change - User: user_1091 - IP: 192.168.14.77 - RequestID: prtju417i5 +2025-06-18T14:17:34.781Z [TRACE] user-service - Auth event: logout - User: user_1065 - IP: 192.168.232.72 - RequestID: lwyzje3jboh +2025-06-18T14:17:34.881Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 68ms - RequestID: pkmfh8oyra8 +2025-06-18T14:17:34.981Z [DEBUG] payment-service - Auth event: login_success - User: user_1044 - IP: 192.168.235.117 - RequestID: 2qw2xjgdwxt +2025-06-18T14:17:35.081Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 357ms - RequestID: iu4jgtpiz4 +2025-06-18T14:17:35.181Z [DEBUG] payment-service - Auth event: password_change - User: user_1022 - IP: 192.168.104.37 - RequestID: 1rv2yq1ndp6 +2025-06-18T14:17:35.281Z [INFO] user-service - Auth event: password_change - User: user_1093 - IP: 192.168.30.79 - RequestID: wwrjozqcc +2025-06-18T14:17:35.381Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 234ms - Rows affected: 9 - RequestID: yj0m48jk0h +2025-06-18T14:17:35.481Z [DEBUG] payment-service - PUT /api/v1/users - Status: 502 - Response time: 528ms - IP: 192.168.68.128 - User: user_1018 - RequestID: 73zzyycdoia +2025-06-18T14:17:35.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.33.76 - RequestID: kcostfdc5z9 +2025-06-18T14:17:35.681Z [TRACE] order-service - PUT /api/v1/payments - Status: 201 - Response time: 735ms - IP: 192.168.211.72 - User: user_1068 - RequestID: zav5d28b3xg +2025-06-18T14:17:35.781Z [TRACE] notification-service - Auth event: password_change - User: user_1078 - IP: 192.168.227.77 - RequestID: 3a15khmbmtf +2025-06-18T14:17:35.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1098 - IP: 192.168.68.128 - RequestID: 4vgtkrf2gg7 +2025-06-18T14:17:35.981Z [DEBUG] order-service - Operation: cache_hit - Processing time: 311ms - RequestID: ksynafnssi +2025-06-18T14:17:36.081Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 503 - Response time: 851ms - IP: 192.168.240.169 - User: user_1015 - RequestID: eqdj6tboitv +2025-06-18T14:17:36.181Z [INFO] auth-service - Database DELETE on products - Execution time: 256ms - Rows affected: 63 - RequestID: drwuyckk2p6 +2025-06-18T14:17:36.281Z [INFO] payment-service - Database SELECT on sessions - Execution time: 280ms - Rows affected: 92 - RequestID: ixhzid5lxeq +2025-06-18T14:17:36.381Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 220ms - Rows affected: 77 - RequestID: 2lpquuqen8 +2025-06-18T14:17:36.481Z [TRACE] payment-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.81.206 - RequestID: gar6sx80km5 +2025-06-18T14:17:36.581Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 500 - Response time: 2005ms - IP: 192.168.174.114 - User: user_1010 - RequestID: 518kd2x25ff +2025-06-18T14:17:36.681Z [TRACE] auth-service - Operation: notification_queued - Processing time: 649ms - RequestID: robicw6zuhj +2025-06-18T14:17:36.781Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 470ms - Rows affected: 0 - RequestID: 709r91xw46f +2025-06-18T14:17:36.881Z [TRACE] payment-service - Operation: notification_queued - Processing time: 872ms - RequestID: xmeyby7efb +2025-06-18T14:17:36.981Z [TRACE] notification-service - Database UPDATE on products - Execution time: 237ms - Rows affected: 66 - RequestID: k01qtqpetu +2025-06-18T14:17:37.081Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 106ms - RequestID: egg608sgif9 +2025-06-18T14:17:37.181Z [DEBUG] auth-service - GET /api/v1/payments - Status: 502 - Response time: 623ms - IP: 192.168.170.215 - User: user_1034 - RequestID: urymmtl5fi +2025-06-18T14:17:37.281Z [INFO] order-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.181.225 - RequestID: 3i3rv2mi6yo +2025-06-18T14:17:37.381Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 497ms - RequestID: u862wrac1o +2025-06-18T14:17:37.481Z [TRACE] order-service - Auth event: login_success - User: user_1072 - IP: 192.168.227.233 - RequestID: xz1e2i70s +2025-06-18T14:17:37.581Z [INFO] notification-service - Auth event: password_change - User: user_1054 - IP: 192.168.232.72 - RequestID: c6248xq5dcb +2025-06-18T14:17:37.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1080 - IP: 192.168.11.60 - RequestID: i0nid3a3b +2025-06-18T14:17:37.781Z [INFO] inventory-service - Operation: email_sent - Processing time: 708ms - RequestID: sbfx02dc7k +2025-06-18T14:17:37.881Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 348ms - Rows affected: 91 - RequestID: 1slfs1g65t5 +2025-06-18T14:17:37.981Z [TRACE] order-service - POST /api/v1/orders - Status: 404 - Response time: 392ms - IP: 192.168.211.72 - User: user_1032 - RequestID: wtbxqy1e7nq +2025-06-18T14:17:38.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.79.116 - RequestID: hlw0h7t070h +2025-06-18T14:17:38.181Z [DEBUG] payment-service - Auth event: login_success - User: user_1063 - IP: 192.168.11.60 - RequestID: ez2cwfik2hs +2025-06-18T14:17:38.281Z [TRACE] inventory-service - Database INSERT on products - Execution time: 80ms - Rows affected: 76 - RequestID: zkpunbcrr2n +2025-06-18T14:17:38.381Z [INFO] order-service - Operation: cache_hit - Processing time: 330ms - RequestID: 4m5t8950l8a +2025-06-18T14:17:38.481Z [DEBUG] payment-service - Auth event: logout - User: user_1015 - IP: 192.168.44.5 - RequestID: 4eb06ozq2l4 +2025-06-18T14:17:38.581Z [DEBUG] user-service - Operation: email_sent - Processing time: 383ms - RequestID: mb7hwbcoswl +2025-06-18T14:17:38.681Z [INFO] notification-service - POST /api/v1/orders - Status: 403 - Response time: 1288ms - IP: 192.168.133.7 - User: user_1071 - RequestID: lq7kafhc7go +2025-06-18T14:17:38.781Z [TRACE] user-service - Auth event: login_success - User: user_1031 - IP: 192.168.158.144 - RequestID: vs6t5rx7u8 +2025-06-18T14:17:38.881Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 200 - Response time: 205ms - IP: 192.168.100.240 - User: user_1085 - RequestID: 1xh2dcbxa5e +2025-06-18T14:17:38.981Z [TRACE] user-service - GET /api/v1/users - Status: 503 - Response time: 1052ms - IP: 192.168.11.60 - User: user_1034 - RequestID: hs4onlu0zq +2025-06-18T14:17:39.081Z [TRACE] user-service - Auth event: password_change - User: user_1044 - IP: 192.168.138.123 - RequestID: vl9hta8razp +2025-06-18T14:17:39.181Z [TRACE] auth-service - Operation: email_sent - Processing time: 322ms - RequestID: xaimbvucdtk +2025-06-18T14:17:39.281Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 200 - Response time: 1048ms - IP: 192.168.11.60 - User: user_1055 - RequestID: b8up2mvv6h4 +2025-06-18T14:17:39.381Z [DEBUG] user-service - Operation: cache_hit - Processing time: 517ms - RequestID: pf8bx1cbmj9 +2025-06-18T14:17:39.481Z [DEBUG] payment-service - Database INSERT on products - Execution time: 97ms - Rows affected: 42 - RequestID: ssy9xxmyisp +2025-06-18T14:17:39.581Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 488ms - IP: 192.168.31.117 - User: user_1006 - RequestID: 9sreswkxq2s +2025-06-18T14:17:39.681Z [INFO] notification-service - Auth event: logout - User: user_1006 - IP: 192.168.79.143 - RequestID: okvvqj7lt2a +2025-06-18T14:17:39.781Z [TRACE] order-service - Database SELECT on products - Execution time: 73ms - Rows affected: 8 - RequestID: ohql0g35hh +2025-06-18T14:17:39.881Z [TRACE] user-service - PATCH /api/v1/payments - Status: 503 - Response time: 1237ms - IP: 192.168.170.215 - User: user_1050 - RequestID: dduxp121yrt +2025-06-18T14:17:39.981Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 868ms - IP: 192.168.144.38 - User: user_1082 - RequestID: 30j7n857rew +2025-06-18T14:17:40.081Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 503 - Response time: 1690ms - IP: 192.168.85.229 - User: user_1007 - RequestID: mcakv0l9yl +2025-06-18T14:17:40.181Z [INFO] order-service - Operation: payment_processed - Processing time: 227ms - RequestID: 8zu9v8o1dmo +2025-06-18T14:17:40.281Z [INFO] user-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1613ms - IP: 192.168.247.134 - User: user_1038 - RequestID: zmib71zr9m +2025-06-18T14:17:40.381Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 564ms - RequestID: um99e56tyxo +2025-06-18T14:17:40.481Z [DEBUG] order-service - Operation: notification_queued - Processing time: 313ms - RequestID: ibsxd353fg +2025-06-18T14:17:40.581Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 29ms - Rows affected: 81 - RequestID: po39b4wjc3 +2025-06-18T14:17:40.681Z [DEBUG] user-service - Auth event: password_change - User: user_1095 - IP: 192.168.247.134 - RequestID: dilwue1jyti +2025-06-18T14:17:40.781Z [DEBUG] order-service - Auth event: login_success - User: user_1007 - IP: 192.168.32.38 - RequestID: wi3l036uce +2025-06-18T14:17:40.881Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 188ms - Rows affected: 36 - RequestID: 8h9w114bq8h +2025-06-18T14:17:40.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.170.215 - RequestID: v8ygv1oj6vj +2025-06-18T14:17:41.081Z [INFO] order-service - PATCH /api/v1/payments - Status: 404 - Response time: 2003ms - IP: 192.168.159.94 - User: user_1088 - RequestID: 6max3d6vggs +2025-06-18T14:17:41.181Z [INFO] auth-service - GET /api/v1/users - Status: 200 - Response time: 724ms - IP: 192.168.167.32 - User: user_1056 - RequestID: qohgiajkzxk +2025-06-18T14:17:41.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1059 - IP: 192.168.13.72 - RequestID: a2uptvt1flf +2025-06-18T14:17:41.381Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 684ms - IP: 192.168.79.141 - User: user_1036 - RequestID: rahutbzdt2s +2025-06-18T14:17:41.481Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 245ms - Rows affected: 39 - RequestID: gvwhfw78crb +2025-06-18T14:17:41.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.232.72 - RequestID: k3ydqc4kbhk +2025-06-18T14:17:41.681Z [INFO] user-service - Database UPDATE on sessions - Execution time: 266ms - Rows affected: 33 - RequestID: nz5ynuo6m0m +2025-06-18T14:17:41.781Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 404 - Response time: 1822ms - IP: 192.168.97.87 - User: user_1099 - RequestID: 4cjzge3zsue +2025-06-18T14:17:41.881Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 826ms - RequestID: mzjg4pcc1hn +2025-06-18T14:17:41.981Z [TRACE] inventory-service - POST /api/v1/users - Status: 400 - Response time: 1930ms - IP: 192.168.194.41 - User: user_1032 - RequestID: cpe40qvtui4 +2025-06-18T14:17:42.081Z [TRACE] user-service - Database SELECT on sessions - Execution time: 379ms - Rows affected: 31 - RequestID: 2xxkr4ppuqo +2025-06-18T14:17:42.181Z [TRACE] auth-service - Database DELETE on orders - Execution time: 360ms - Rows affected: 53 - RequestID: bwanughop2o +2025-06-18T14:17:42.281Z [TRACE] notification-service - Database SELECT on payments - Execution time: 164ms - Rows affected: 73 - RequestID: sw5pshmh2b +2025-06-18T14:17:42.381Z [INFO] auth-service - Auth event: login_failed - User: user_1022 - IP: 192.168.30.79 - RequestID: hlw1mlvykd5 +2025-06-18T14:17:42.481Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.242.165 - RequestID: pufa9r8jdds +2025-06-18T14:17:42.581Z [DEBUG] inventory-service - Auth event: login_success - User: user_1040 - IP: 192.168.159.94 - RequestID: 8ewwak22bsy +2025-06-18T14:17:42.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.28.146 - RequestID: avissf2jl8u +2025-06-18T14:17:42.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1082 - IP: 192.168.211.72 - RequestID: lvdrmm13dx +2025-06-18T14:17:42.881Z [DEBUG] payment-service - Auth event: login_failed - User: user_1034 - IP: 192.168.196.226 - RequestID: 7uqc19sywxr +2025-06-18T14:17:42.981Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 371ms - RequestID: wa6o4vjqhi +2025-06-18T14:17:43.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.1.152 - RequestID: 9mv67t3hgy8 +2025-06-18T14:17:43.181Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 495ms - RequestID: e9k03f9ole6 +2025-06-18T14:17:43.281Z [DEBUG] user-service - Database UPDATE on products - Execution time: 83ms - Rows affected: 50 - RequestID: 6627xsuc6ig +2025-06-18T14:17:43.381Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1330ms - IP: 192.168.141.100 - User: user_1076 - RequestID: fbu4ejtxf6 +2025-06-18T14:17:43.481Z [TRACE] notification-service - GET /api/v1/payments - Status: 403 - Response time: 1313ms - IP: 192.168.44.5 - User: user_1094 - RequestID: gs0fk63smc5 +2025-06-18T14:17:43.581Z [DEBUG] notification-service - Database SELECT on users - Execution time: 256ms - Rows affected: 22 - RequestID: t6uopm5ux0i +2025-06-18T14:17:43.681Z [TRACE] order-service - Database INSERT on products - Execution time: 389ms - Rows affected: 58 - RequestID: jiid9xgr8li +2025-06-18T14:17:43.781Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 401 - Response time: 670ms - IP: 192.168.14.77 - User: user_1034 - RequestID: zswa3a8a8m +2025-06-18T14:17:43.881Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 404 - Response time: 543ms - IP: 192.168.240.169 - User: user_1022 - RequestID: 7byqc89h26 +2025-06-18T14:17:43.981Z [INFO] auth-service - POST /api/v1/payments - Status: 502 - Response time: 1026ms - IP: 192.168.174.114 - User: user_1067 - RequestID: t1kuusscow +2025-06-18T14:17:44.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.170.215 - RequestID: 0k3u6iq61j5e +2025-06-18T14:17:44.181Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 212ms - Rows affected: 41 - RequestID: s3n36u5xmzn +2025-06-18T14:17:44.281Z [TRACE] order-service - POST /api/v1/auth/login - Status: 403 - Response time: 1815ms - IP: 192.168.100.240 - User: user_1041 - RequestID: bazoc3xnqtp +2025-06-18T14:17:44.381Z [INFO] user-service - PATCH /api/v1/payments - Status: 201 - Response time: 1753ms - IP: 192.168.196.226 - User: user_1025 - RequestID: kcixnudktjh +2025-06-18T14:17:44.481Z [TRACE] order-service - POST /api/v1/orders - Status: 500 - Response time: 1335ms - IP: 192.168.36.218 - User: user_1016 - RequestID: cmcpmko30ec +2025-06-18T14:17:44.581Z [INFO] payment-service - Operation: cache_miss - Processing time: 650ms - RequestID: 0n6bjhw5c1t +2025-06-18T14:17:44.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.229.123 - RequestID: u7q9apie1qm +2025-06-18T14:17:44.781Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 400 - Response time: 1146ms - IP: 192.168.167.32 - User: user_1008 - RequestID: ad6m3e493o +2025-06-18T14:17:44.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1003 - IP: 192.168.227.77 - RequestID: w83qj1rf7u +2025-06-18T14:17:44.981Z [INFO] order-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.68.158 - RequestID: g79mjkcmrrd +2025-06-18T14:17:45.081Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 274ms - Rows affected: 21 - RequestID: iavul5x3s99 +2025-06-18T14:17:45.181Z [DEBUG] user-service - Operation: order_created - Processing time: 50ms - RequestID: 3gklbpx8j4e +2025-06-18T14:17:45.281Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 927ms - RequestID: s16sxe2thz9 +2025-06-18T14:17:45.381Z [TRACE] notification-service - POST /api/v1/payments - Status: 401 - Response time: 1338ms - IP: 192.168.100.240 - User: user_1079 - RequestID: lwfozvbr84 +2025-06-18T14:17:45.481Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 315ms - Rows affected: 39 - RequestID: 4h3ua6cgo0g +2025-06-18T14:17:45.581Z [TRACE] auth-service - Auth event: password_change - User: user_1096 - IP: 192.168.211.72 - RequestID: bclgrn5eic5 +2025-06-18T14:17:45.681Z [INFO] inventory-service - Database SELECT on orders - Execution time: 190ms - Rows affected: 33 - RequestID: fxuzcnn5nda +2025-06-18T14:17:45.781Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 877ms - RequestID: em5w5o3s687 +2025-06-18T14:17:45.881Z [INFO] user-service - Auth event: logout - User: user_1074 - IP: 192.168.189.103 - RequestID: c5n2b9c1ph +2025-06-18T14:17:45.981Z [TRACE] payment-service - Database DELETE on payments - Execution time: 431ms - Rows affected: 14 - RequestID: t1k4sujddel +2025-06-18T14:17:46.081Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 177ms - Rows affected: 13 - RequestID: vqyxge3kezs +2025-06-18T14:17:46.181Z [INFO] auth-service - Operation: order_created - Processing time: 829ms - RequestID: edo0ckcrngv +2025-06-18T14:17:46.281Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 940ms - RequestID: qqm4zaze7qr +2025-06-18T14:17:46.381Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 54ms - Rows affected: 74 - RequestID: khqehnqykro +2025-06-18T14:17:46.481Z [INFO] order-service - Database DELETE on users - Execution time: 37ms - Rows affected: 21 - RequestID: hkz6ly79o8 +2025-06-18T14:17:46.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1064 - IP: 192.168.158.144 - RequestID: 8loiqn7zghs +2025-06-18T14:17:46.681Z [INFO] payment-service - Database DELETE on sessions - Execution time: 422ms - Rows affected: 32 - RequestID: en73hr6jmcj +2025-06-18T14:17:46.781Z [TRACE] notification-service - Database UPDATE on users - Execution time: 337ms - Rows affected: 35 - RequestID: tsdoa2oh60c +2025-06-18T14:17:46.881Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 429ms - Rows affected: 91 - RequestID: uv8j7i6v1m +2025-06-18T14:17:46.981Z [DEBUG] user-service - Database INSERT on payments - Execution time: 478ms - Rows affected: 57 - RequestID: pwgjvvejpch +2025-06-18T14:17:47.081Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 48ms - Rows affected: 59 - RequestID: erdorm9a1x6 +2025-06-18T14:17:47.181Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 400ms - Rows affected: 9 - RequestID: w1753e55ceg +2025-06-18T14:17:47.281Z [INFO] auth-service - POST /api/v1/inventory - Status: 503 - Response time: 519ms - IP: 192.168.229.123 - User: user_1013 - RequestID: t7qhpnp6cde +2025-06-18T14:17:47.381Z [TRACE] notification-service - Operation: notification_queued - Processing time: 458ms - RequestID: 478lw35mkhx +2025-06-18T14:17:47.481Z [INFO] auth-service - POST /api/v1/auth/login - Status: 403 - Response time: 1572ms - IP: 192.168.97.87 - User: user_1050 - RequestID: gtzwoyop4rr +2025-06-18T14:17:47.581Z [INFO] order-service - PUT /api/v1/orders - Status: 201 - Response time: 353ms - IP: 192.168.68.128 - User: user_1010 - RequestID: ltm6sottu6 +2025-06-18T14:17:47.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 649ms - RequestID: 6wlq4baexkg +2025-06-18T14:17:47.781Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 502 - Response time: 1678ms - IP: 192.168.104.37 - User: user_1012 - RequestID: 4807ut4s5fr +2025-06-18T14:17:47.881Z [INFO] user-service - Database SELECT on orders - Execution time: 243ms - Rows affected: 17 - RequestID: 4km7imbupif +2025-06-18T14:17:47.981Z [DEBUG] notification-service - Auth event: logout - User: user_1000 - IP: 192.168.159.94 - RequestID: lx3rgdp15lq +2025-06-18T14:17:48.081Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 195ms - Rows affected: 70 - RequestID: 9ovvo1iivxq +2025-06-18T14:17:48.181Z [TRACE] user-service - Operation: inventory_updated - Processing time: 859ms - RequestID: 2i2pnbyn0mi +2025-06-18T14:17:48.281Z [TRACE] notification-service - Operation: order_created - Processing time: 572ms - RequestID: vnolvkt083b +2025-06-18T14:17:48.381Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 465ms - Rows affected: 3 - RequestID: srkf6mhjp0j +2025-06-18T14:17:48.481Z [DEBUG] payment-service - Operation: email_sent - Processing time: 810ms - RequestID: lxe9yvg9ugo +2025-06-18T14:17:48.581Z [DEBUG] auth-service - Auth event: login_success - User: user_1091 - IP: 192.168.189.103 - RequestID: dc38iqxo93v +2025-06-18T14:17:48.681Z [INFO] order-service - Auth event: logout - User: user_1022 - IP: 192.168.113.218 - RequestID: 205p0kjlq4e +2025-06-18T14:17:48.781Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1267ms - IP: 192.168.79.116 - User: user_1027 - RequestID: 51x5ytx8ffl +2025-06-18T14:17:48.881Z [TRACE] notification-service - Auth event: logout - User: user_1098 - IP: 192.168.174.114 - RequestID: pq1ej1fz3x +2025-06-18T14:17:48.981Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1136ms - IP: 192.168.174.114 - User: user_1050 - RequestID: xfadt10bjf +2025-06-18T14:17:49.081Z [DEBUG] order-service - Operation: payment_processed - Processing time: 635ms - RequestID: 3eac661ek0h +2025-06-18T14:17:49.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.53.133 - RequestID: x7unccmboag +2025-06-18T14:17:49.281Z [INFO] payment-service - GET /api/v1/orders - Status: 200 - Response time: 320ms - IP: 192.168.10.184 - User: user_1022 - RequestID: 2rnmpnpaokn +2025-06-18T14:17:49.381Z [TRACE] inventory-service - Auth event: password_change - User: user_1087 - IP: 192.168.81.206 - RequestID: xjber6shd4 +2025-06-18T14:17:49.481Z [TRACE] notification-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.232.72 - RequestID: wuu0wt0u0c +2025-06-18T14:17:49.581Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 709ms - RequestID: hy0kcrwcw38 +2025-06-18T14:17:49.681Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 281ms - Rows affected: 87 - RequestID: xk091enevs +2025-06-18T14:17:49.781Z [INFO] auth-service - Auth event: logout - User: user_1045 - IP: 192.168.194.41 - RequestID: y0que412tl +2025-06-18T14:17:49.881Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 94ms - Rows affected: 99 - RequestID: otfgat23rt +2025-06-18T14:17:49.981Z [TRACE] order-service - Operation: webhook_sent - Processing time: 268ms - RequestID: omv6pi2yddi +2025-06-18T14:17:50.081Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 497ms - Rows affected: 33 - RequestID: gw7vm9j13o +2025-06-18T14:17:50.181Z [TRACE] payment-service - Operation: cache_miss - Processing time: 976ms - RequestID: 0shdyck2h0oe +2025-06-18T14:17:50.281Z [INFO] auth-service - Operation: email_sent - Processing time: 269ms - RequestID: xri4pcsqy3h +2025-06-18T14:17:50.381Z [INFO] payment-service - Operation: cache_hit - Processing time: 276ms - RequestID: i93l97ibg4i +2025-06-18T14:17:50.481Z [DEBUG] order-service - Database UPDATE on users - Execution time: 263ms - Rows affected: 36 - RequestID: 0o923760tebq +2025-06-18T14:17:50.581Z [INFO] inventory-service - Operation: cache_hit - Processing time: 199ms - RequestID: rhyf9skbx4 +2025-06-18T14:17:50.681Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 159ms - Rows affected: 43 - RequestID: x1txmvf1v8 +2025-06-18T14:17:50.781Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1519ms - IP: 192.168.68.158 - User: user_1004 - RequestID: p8rdeiu99m +2025-06-18T14:17:50.881Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 503 - Response time: 871ms - IP: 192.168.144.38 - User: user_1064 - RequestID: rn2xgpg84a +2025-06-18T14:17:50.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.31.117 - RequestID: lp99hum9my +2025-06-18T14:17:51.081Z [TRACE] user-service - PATCH /api/v1/payments - Status: 404 - Response time: 420ms - IP: 192.168.32.38 - User: user_1099 - RequestID: 050li10jpfc7 +2025-06-18T14:17:51.181Z [DEBUG] user-service - PUT /api/v1/payments - Status: 403 - Response time: 616ms - IP: 192.168.240.169 - User: user_1062 - RequestID: uzzylcn3lbn +2025-06-18T14:17:51.281Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 421ms - IP: 192.168.187.199 - User: user_1037 - RequestID: 3nmtpkqbvr3 +2025-06-18T14:17:51.381Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 576ms - RequestID: 8hw3u4c3q2v +2025-06-18T14:17:51.481Z [INFO] order-service - Database INSERT on sessions - Execution time: 245ms - Rows affected: 85 - RequestID: 7a5t5plgtkd +2025-06-18T14:17:51.581Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 403 - Response time: 56ms - IP: 192.168.196.226 - User: user_1040 - RequestID: 2som9nn1f51 +2025-06-18T14:17:51.681Z [INFO] notification-service - Operation: webhook_sent - Processing time: 617ms - RequestID: dow7l1w06g8 +2025-06-18T14:17:51.781Z [INFO] payment-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.211.72 - RequestID: oelxfutlvxg +2025-06-18T14:17:51.881Z [TRACE] user-service - Auth event: password_change - User: user_1048 - IP: 192.168.33.76 - RequestID: s5p5ys5omca +2025-06-18T14:17:51.981Z [TRACE] order-service - Database SELECT on orders - Execution time: 249ms - Rows affected: 51 - RequestID: u37h3qczoic +2025-06-18T14:17:52.081Z [DEBUG] payment-service - Operation: order_created - Processing time: 195ms - RequestID: 1c6bghjwo9d +2025-06-18T14:17:52.181Z [INFO] payment-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.46.63 - RequestID: q14t6wxcdo +2025-06-18T14:17:52.281Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 500 - Response time: 862ms - IP: 192.168.68.158 - User: user_1099 - RequestID: zoi37wa074 +2025-06-18T14:17:52.381Z [DEBUG] user-service - Operation: notification_queued - Processing time: 596ms - RequestID: 989kov96zbr +2025-06-18T14:17:52.481Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1702ms - IP: 192.168.31.117 - User: user_1081 - RequestID: i2jkhxy4jpr +2025-06-18T14:17:52.581Z [INFO] user-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.232.72 - RequestID: 6lbjz26nbsl +2025-06-18T14:17:52.681Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 13ms - Rows affected: 68 - RequestID: jo84ravae1g +2025-06-18T14:17:52.781Z [TRACE] notification-service - Database SELECT on users - Execution time: 188ms - Rows affected: 47 - RequestID: rxx3cno4x +2025-06-18T14:17:52.881Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 229ms - Rows affected: 32 - RequestID: ak300jkkaeq +2025-06-18T14:17:52.981Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 671ms - RequestID: pzpikl740t +2025-06-18T14:17:53.081Z [TRACE] payment-service - Operation: order_created - Processing time: 990ms - RequestID: 16hsaoc44c4 +2025-06-18T14:17:53.181Z [INFO] user-service - Operation: payment_processed - Processing time: 680ms - RequestID: cini07stn4 +2025-06-18T14:17:53.281Z [TRACE] user-service - PUT /api/v1/users - Status: 201 - Response time: 1756ms - IP: 192.168.46.63 - User: user_1034 - RequestID: lopz7teanza +2025-06-18T14:17:53.381Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 404 - Response time: 714ms - IP: 192.168.1.152 - User: user_1049 - RequestID: ojsdhpihtj +2025-06-18T14:17:53.481Z [INFO] user-service - Operation: webhook_sent - Processing time: 957ms - RequestID: j29ibpn4xra +2025-06-18T14:17:53.581Z [DEBUG] user-service - Auth event: login_failed - User: user_1059 - IP: 192.168.10.184 - RequestID: 1ltohhkld4th +2025-06-18T14:17:53.681Z [TRACE] order-service - Database DELETE on orders - Execution time: 316ms - Rows affected: 87 - RequestID: 63f50mgb0r8 +2025-06-18T14:17:53.781Z [DEBUG] order-service - Operation: payment_processed - Processing time: 213ms - RequestID: i4u1bn4rep +2025-06-18T14:17:53.881Z [DEBUG] order-service - POST /api/v1/inventory - Status: 403 - Response time: 590ms - IP: 192.168.104.37 - User: user_1075 - RequestID: p8azro5ayl +2025-06-18T14:17:53.981Z [TRACE] notification-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.227.77 - RequestID: h1wh89pk4sf +2025-06-18T14:17:54.081Z [DEBUG] auth-service - Database DELETE on users - Execution time: 454ms - Rows affected: 0 - RequestID: 4u4oo89rwyi +2025-06-18T14:17:54.181Z [INFO] payment-service - Operation: cache_miss - Processing time: 523ms - RequestID: k5a0xwtwiri +2025-06-18T14:17:54.281Z [TRACE] order-service - Auth event: login_failed - User: user_1022 - IP: 192.168.32.38 - RequestID: 1svygqyuxs9 +2025-06-18T14:17:54.381Z [INFO] inventory-service - Database SELECT on orders - Execution time: 201ms - Rows affected: 35 - RequestID: zbf5jxds7jd +2025-06-18T14:17:54.481Z [INFO] payment-service - POST /api/v1/orders - Status: 403 - Response time: 832ms - IP: 192.168.227.77 - User: user_1040 - RequestID: p92opzvxwt +2025-06-18T14:17:54.581Z [TRACE] notification-service - Operation: notification_queued - Processing time: 492ms - RequestID: hz7ewfaigkg +2025-06-18T14:17:54.681Z [TRACE] user-service - Database INSERT on sessions - Execution time: 259ms - Rows affected: 71 - RequestID: orl5j6qt8ld +2025-06-18T14:17:54.781Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 206ms - Rows affected: 87 - RequestID: jcsd0ff5q5 +2025-06-18T14:17:54.881Z [DEBUG] notification-service - POST /api/v1/payments - Status: 400 - Response time: 1126ms - IP: 192.168.97.87 - User: user_1044 - RequestID: qpjqc2oi41q +2025-06-18T14:17:54.981Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 704ms - RequestID: k8or8h1pk4 +2025-06-18T14:17:55.081Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 317ms - Rows affected: 28 - RequestID: 7rfde7knz7 +2025-06-18T14:17:55.181Z [TRACE] user-service - Database DELETE on users - Execution time: 331ms - Rows affected: 41 - RequestID: 0aaee8n5n585 +2025-06-18T14:17:55.281Z [TRACE] auth-service - Auth event: login_success - User: user_1037 - IP: 192.168.104.37 - RequestID: 5rxxpn9bjyt +2025-06-18T14:17:55.381Z [TRACE] auth-service - Database DELETE on payments - Execution time: 202ms - Rows affected: 16 - RequestID: p2o5j4vsda +2025-06-18T14:17:55.481Z [TRACE] auth-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.1.152 - RequestID: j957t3jfh6p +2025-06-18T14:17:55.581Z [INFO] user-service - Operation: notification_queued - Processing time: 530ms - RequestID: k7pfhfvecn +2025-06-18T14:17:55.681Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 934ms - IP: 192.168.167.32 - User: user_1026 - RequestID: cxabhblx30b +2025-06-18T14:17:55.781Z [DEBUG] order-service - Database UPDATE on users - Execution time: 142ms - Rows affected: 52 - RequestID: 1roqaouy0pn +2025-06-18T14:17:55.881Z [TRACE] order-service - Auth event: login_failed - User: user_1045 - IP: 192.168.100.240 - RequestID: ui7r0xjrwuh +2025-06-18T14:17:55.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 595ms - RequestID: ehzigu7ici +2025-06-18T14:17:56.081Z [DEBUG] user-service - Auth event: login_success - User: user_1079 - IP: 192.168.79.141 - RequestID: jrqcfjwe6q8 +2025-06-18T14:17:56.181Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 201 - Response time: 665ms - IP: 192.168.138.123 - User: user_1032 - RequestID: eibbc32fseg +2025-06-18T14:17:56.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.104.37 - RequestID: smrye84tiq +2025-06-18T14:17:56.381Z [TRACE] order-service - Auth event: logout - User: user_1075 - IP: 192.168.64.33 - RequestID: au85ffy9fs6 +2025-06-18T14:17:56.481Z [DEBUG] user-service - Auth event: logout - User: user_1099 - IP: 192.168.81.206 - RequestID: ufo0otb3gto +2025-06-18T14:17:56.581Z [TRACE] order-service - Auth event: password_change - User: user_1096 - IP: 192.168.36.218 - RequestID: 2sghiczrexe +2025-06-18T14:17:56.681Z [TRACE] user-service - GET /api/v1/orders - Status: 401 - Response time: 399ms - IP: 192.168.196.226 - User: user_1000 - RequestID: wozeiwrvxv +2025-06-18T14:17:56.781Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 447ms - Rows affected: 23 - RequestID: cnm4rtavish +2025-06-18T14:17:56.881Z [DEBUG] auth-service - Database SELECT on users - Execution time: 396ms - Rows affected: 68 - RequestID: bkmlmnml20d +2025-06-18T14:17:56.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.85.229 - RequestID: xgcrr3ox39n +2025-06-18T14:17:57.081Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 275ms - Rows affected: 62 - RequestID: w7v2jdvnsb +2025-06-18T14:17:57.181Z [INFO] payment-service - Database UPDATE on products - Execution time: 98ms - Rows affected: 56 - RequestID: r9hjz0we7st +2025-06-18T14:17:57.281Z [DEBUG] user-service - Auth event: logout - User: user_1042 - IP: 192.168.13.72 - RequestID: ygo23ufmaap +2025-06-18T14:17:57.381Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 200 - Response time: 823ms - IP: 192.168.187.199 - User: user_1085 - RequestID: 8tpc7vl9tlu +2025-06-18T14:17:57.481Z [TRACE] order-service - Auth event: password_change - User: user_1043 - IP: 192.168.133.7 - RequestID: r3bo7cac00m +2025-06-18T14:17:57.581Z [INFO] payment-service - Operation: cache_hit - Processing time: 440ms - RequestID: yb34v69n3p +2025-06-18T14:17:57.681Z [DEBUG] notification-service - Auth event: password_change - User: user_1069 - IP: 192.168.1.152 - RequestID: gqi79by1e6m +2025-06-18T14:17:57.781Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1006 - IP: 192.168.14.77 - RequestID: qjf7k1n5cc +2025-06-18T14:17:57.881Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 207ms - RequestID: 1x55x08rjqg +2025-06-18T14:17:57.981Z [DEBUG] user-service - Database INSERT on users - Execution time: 406ms - Rows affected: 14 - RequestID: tz6kxvze94a +2025-06-18T14:17:58.081Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1995ms - IP: 192.168.189.103 - User: user_1024 - RequestID: kexob3oyr0o +2025-06-18T14:17:58.181Z [TRACE] auth-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.159.94 - RequestID: crn079q2cmr +2025-06-18T14:17:58.281Z [TRACE] notification-service - Auth event: password_change - User: user_1021 - IP: 192.168.147.171 - RequestID: w3duyuvgel +2025-06-18T14:17:58.381Z [INFO] inventory-service - PUT /api/v1/orders - Status: 401 - Response time: 203ms - IP: 192.168.227.233 - User: user_1040 - RequestID: 46hz12jyp0x +2025-06-18T14:17:58.481Z [TRACE] order-service - PATCH /api/v1/orders - Status: 503 - Response time: 1703ms - IP: 192.168.1.152 - User: user_1073 - RequestID: e9ooao5s60m +2025-06-18T14:17:58.581Z [INFO] notification-service - Database SELECT on products - Execution time: 167ms - Rows affected: 53 - RequestID: h9ron2gjl2s +2025-06-18T14:17:58.681Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 145ms - Rows affected: 76 - RequestID: yu2d92qmt8 +2025-06-18T14:17:58.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 813ms - RequestID: 0cyn65gtdn5n +2025-06-18T14:17:58.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 414ms - RequestID: 1rkqjrtv17h +2025-06-18T14:17:58.981Z [TRACE] payment-service - Auth event: login_success - User: user_1065 - IP: 192.168.240.169 - RequestID: l3p1a6ecmj +2025-06-18T14:17:59.081Z [INFO] auth-service - Operation: payment_processed - Processing time: 465ms - RequestID: 5apjywtirpn +2025-06-18T14:17:59.181Z [INFO] notification-service - Auth event: login_failed - User: user_1077 - IP: 192.168.14.77 - RequestID: r1kixnzrdwg +2025-06-18T14:17:59.281Z [INFO] user-service - Auth event: login_failed - User: user_1039 - IP: 192.168.100.240 - RequestID: q0javdzs689 +2025-06-18T14:17:59.381Z [TRACE] auth-service - Operation: cache_miss - Processing time: 922ms - RequestID: uq7zvnjnycm +2025-06-18T14:17:59.481Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 38ms - Rows affected: 1 - RequestID: rfwr1rdf407 +2025-06-18T14:17:59.581Z [INFO] payment-service - Auth event: password_change - User: user_1073 - IP: 192.168.14.77 - RequestID: 3wnrhrxd2rf +2025-06-18T14:17:59.681Z [INFO] notification-service - POST /api/v1/inventory - Status: 403 - Response time: 413ms - IP: 192.168.229.123 - User: user_1061 - RequestID: j1bvmflgp0h +2025-06-18T14:17:59.781Z [INFO] notification-service - Auth event: login_failed - User: user_1001 - IP: 192.168.147.171 - RequestID: 6r2807qapk6 +2025-06-18T14:17:59.881Z [TRACE] user-service - Auth event: login_success - User: user_1002 - IP: 192.168.240.169 - RequestID: v3kh5a96o5n +2025-06-18T14:17:59.981Z [INFO] order-service - Operation: order_created - Processing time: 802ms - RequestID: gnjkyka9h0o +2025-06-18T14:18:00.081Z [DEBUG] user-service - Auth event: logout - User: user_1039 - IP: 192.168.133.7 - RequestID: x6biqhifl4 +2025-06-18T14:18:00.181Z [INFO] notification-service - Auth event: login_failed - User: user_1073 - IP: 192.168.227.77 - RequestID: ixsk9jc84a +2025-06-18T14:18:00.281Z [TRACE] user-service - Database INSERT on products - Execution time: 491ms - Rows affected: 94 - RequestID: qpndjr3zvj +2025-06-18T14:18:00.381Z [INFO] notification-service - Operation: cache_hit - Processing time: 663ms - RequestID: 3yh77ywhcvt +2025-06-18T14:18:00.481Z [INFO] user-service - Auth event: password_change - User: user_1090 - IP: 192.168.10.184 - RequestID: hmwu2jugjdr +2025-06-18T14:18:00.581Z [DEBUG] notification-service - Operation: order_created - Processing time: 136ms - RequestID: 3wubrnwitxr +2025-06-18T14:18:00.681Z [INFO] auth-service - PUT /api/v1/inventory - Status: 400 - Response time: 1743ms - IP: 192.168.181.225 - User: user_1068 - RequestID: wndz9gmclm +2025-06-18T14:18:00.781Z [TRACE] auth-service - Operation: email_sent - Processing time: 340ms - RequestID: camym6c2i2p +2025-06-18T14:18:00.881Z [INFO] inventory-service - Operation: email_sent - Processing time: 609ms - RequestID: 4zelspvrh5u +2025-06-18T14:18:00.981Z [INFO] payment-service - Database INSERT on users - Execution time: 25ms - Rows affected: 27 - RequestID: 9oksybzi53m +2025-06-18T14:18:01.081Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 885ms - RequestID: vlghdcnp5km +2025-06-18T14:18:01.181Z [TRACE] auth-service - Operation: notification_queued - Processing time: 976ms - RequestID: fk0exie72z4 +2025-06-18T14:18:01.281Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 440ms - Rows affected: 98 - RequestID: ib5jvthn16p +2025-06-18T14:18:01.381Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 233ms - Rows affected: 40 - RequestID: p1e8lqk7dq +2025-06-18T14:18:01.481Z [INFO] notification-service - Operation: email_sent - Processing time: 854ms - RequestID: wlatopqkyz8 +2025-06-18T14:18:01.581Z [INFO] auth-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.174.114 - RequestID: ordtw78qkz +2025-06-18T14:18:01.681Z [INFO] payment-service - Auth event: logout - User: user_1078 - IP: 192.168.85.229 - RequestID: nlcnhd40c89 +2025-06-18T14:18:01.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1059 - IP: 192.168.235.117 - RequestID: 410hjcrphmv +2025-06-18T14:18:01.881Z [TRACE] notification-service - Database INSERT on products - Execution time: 336ms - Rows affected: 74 - RequestID: dyvviflklsm +2025-06-18T14:18:01.981Z [TRACE] order-service - Auth event: password_change - User: user_1010 - IP: 192.168.174.114 - RequestID: 13xt2fyg330m +2025-06-18T14:18:02.081Z [DEBUG] payment-service - Auth event: password_change - User: user_1010 - IP: 192.168.11.60 - RequestID: arlg0tjxig5 +2025-06-18T14:18:02.181Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 500 - Response time: 763ms - IP: 192.168.113.218 - User: user_1032 - RequestID: npw5p41p9 +2025-06-18T14:18:02.281Z [TRACE] order-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.14.77 - RequestID: out9dfh5hm +2025-06-18T14:18:02.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1089 - IP: 192.168.133.7 - RequestID: mj7kxec11gd +2025-06-18T14:18:02.481Z [TRACE] auth-service - Database SELECT on users - Execution time: 338ms - Rows affected: 9 - RequestID: inkjnsmv2n +2025-06-18T14:18:02.581Z [TRACE] order-service - Operation: email_sent - Processing time: 478ms - RequestID: zrpx8suzyrk +2025-06-18T14:18:02.681Z [TRACE] auth-service - GET /api/v1/payments - Status: 503 - Response time: 693ms - IP: 192.168.100.240 - User: user_1080 - RequestID: 2ekwqobkubk +2025-06-18T14:18:02.781Z [TRACE] order-service - Operation: notification_queued - Processing time: 764ms - RequestID: d1a8rqx902f +2025-06-18T14:18:02.881Z [TRACE] user-service - Operation: payment_processed - Processing time: 858ms - RequestID: 4ilamz6kle7 +2025-06-18T14:18:02.981Z [DEBUG] inventory-service - POST /api/v1/users - Status: 500 - Response time: 601ms - IP: 192.168.97.87 - User: user_1094 - RequestID: il433ild44o +2025-06-18T14:18:03.081Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1324ms - IP: 192.168.79.143 - User: user_1031 - RequestID: 32t90lh5p8p +2025-06-18T14:18:03.181Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 500 - Response time: 1913ms - IP: 192.168.31.117 - User: user_1069 - RequestID: 1nvckrd0aaq +2025-06-18T14:18:03.281Z [INFO] notification-service - Auth event: password_change - User: user_1083 - IP: 192.168.13.72 - RequestID: p4f8pwe9gck +2025-06-18T14:18:03.381Z [INFO] inventory-service - PUT /api/v1/orders - Status: 503 - Response time: 1812ms - IP: 192.168.174.114 - User: user_1005 - RequestID: 552h9rtecg6 +2025-06-18T14:18:03.481Z [INFO] notification-service - GET /api/v1/users - Status: 400 - Response time: 307ms - IP: 192.168.196.226 - User: user_1062 - RequestID: e0nc6l36jvq +2025-06-18T14:18:03.581Z [INFO] auth-service - Operation: cache_hit - Processing time: 343ms - RequestID: hxol9ik3k1l +2025-06-18T14:18:03.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 901ms - RequestID: aq6ocrj2n4 +2025-06-18T14:18:03.781Z [INFO] user-service - Auth event: login_failed - User: user_1003 - IP: 192.168.174.114 - RequestID: o3qhp8bux7s +2025-06-18T14:18:03.881Z [TRACE] auth-service - Operation: cache_hit - Processing time: 418ms - RequestID: 8ipo3i54apu +2025-06-18T14:18:03.981Z [TRACE] payment-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.11.60 - RequestID: cxfnqlwct4v +2025-06-18T14:18:04.081Z [INFO] user-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.187.199 - RequestID: dpaibv84nes +2025-06-18T14:18:04.181Z [TRACE] order-service - Database DELETE on sessions - Execution time: 301ms - Rows affected: 96 - RequestID: ieio694s6a +2025-06-18T14:18:04.281Z [INFO] auth-service - DELETE /api/v1/orders - Status: 404 - Response time: 307ms - IP: 192.168.113.218 - User: user_1001 - RequestID: yvdz8crw6ub +2025-06-18T14:18:04.381Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1929ms - IP: 192.168.159.94 - User: user_1002 - RequestID: ck2x4luh0nd +2025-06-18T14:18:04.481Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 350ms - Rows affected: 53 - RequestID: xyc2c0752f +2025-06-18T14:18:04.581Z [TRACE] order-service - Operation: webhook_sent - Processing time: 516ms - RequestID: 3fq0jirxoxd +2025-06-18T14:18:04.681Z [DEBUG] user-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.170.215 - RequestID: 2qlqfvg8znn +2025-06-18T14:18:04.781Z [INFO] order-service - PATCH /api/v1/payments - Status: 502 - Response time: 430ms - IP: 192.168.232.72 - User: user_1049 - RequestID: tmfrpxeajc +2025-06-18T14:18:04.881Z [INFO] user-service - Operation: webhook_sent - Processing time: 138ms - RequestID: nwne64ycq2 +2025-06-18T14:18:04.981Z [INFO] notification-service - Database DELETE on users - Execution time: 128ms - Rows affected: 93 - RequestID: o15mujsdjdd +2025-06-18T14:18:05.081Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 302ms - Rows affected: 35 - RequestID: fun52y6e05u +2025-06-18T14:18:05.181Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 699ms - RequestID: 0apvvs68orgm +2025-06-18T14:18:05.281Z [INFO] payment-service - POST /api/v1/payments - Status: 200 - Response time: 1804ms - IP: 192.168.242.165 - User: user_1016 - RequestID: u50ix4gslpb +2025-06-18T14:18:05.381Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.32.38 - RequestID: sah1vhogol9 +2025-06-18T14:18:05.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1029 - IP: 192.168.235.117 - RequestID: o3yfbja2oyd +2025-06-18T14:18:05.581Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 25ms - Rows affected: 75 - RequestID: 35bj51hjpkt +2025-06-18T14:18:05.681Z [TRACE] order-service - Operation: cache_miss - Processing time: 395ms - RequestID: xl446vdf4ys +2025-06-18T14:18:05.781Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 503 - Response time: 602ms - IP: 192.168.133.7 - User: user_1066 - RequestID: ffo2tl23ov9 +2025-06-18T14:18:05.881Z [DEBUG] order-service - Operation: cache_miss - Processing time: 96ms - RequestID: 04oj7mo8s65o +2025-06-18T14:18:05.981Z [INFO] user-service - Operation: cache_miss - Processing time: 104ms - RequestID: a3tvmxaeg0a +2025-06-18T14:18:06.081Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 50ms - IP: 192.168.68.128 - User: user_1090 - RequestID: 7sriw1wthps +2025-06-18T14:18:06.181Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 502 - Response time: 1420ms - IP: 192.168.196.226 - User: user_1074 - RequestID: d5rin0v5ant +2025-06-18T14:18:06.281Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.247.134 - RequestID: hconbl2laxf +2025-06-18T14:18:06.381Z [INFO] notification-service - GET /api/v1/users - Status: 401 - Response time: 1381ms - IP: 192.168.211.72 - User: user_1007 - RequestID: xlor1kyzuln +2025-06-18T14:18:06.481Z [INFO] order-service - Database SELECT on orders - Execution time: 166ms - Rows affected: 51 - RequestID: 6jqyjmyxqg8 +2025-06-18T14:18:06.581Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 201 - Response time: 1394ms - IP: 192.168.68.158 - User: user_1051 - RequestID: umujwnify +2025-06-18T14:18:06.681Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 833ms - IP: 192.168.167.32 - User: user_1088 - RequestID: bm4l74erwvm +2025-06-18T14:18:06.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 878ms - RequestID: 8598m3wiyi9 +2025-06-18T14:18:06.881Z [DEBUG] user-service - POST /api/v1/inventory - Status: 400 - Response time: 1672ms - IP: 192.168.100.240 - User: user_1016 - RequestID: wuv25hjr8ws +2025-06-18T14:18:06.981Z [INFO] user-service - Database UPDATE on orders - Execution time: 433ms - Rows affected: 42 - RequestID: yqn3n7psn1i +2025-06-18T14:18:07.081Z [INFO] inventory-service - Operation: cache_miss - Processing time: 331ms - RequestID: 1u1zybtt7sv +2025-06-18T14:18:07.181Z [DEBUG] auth-service - Auth event: password_change - User: user_1099 - IP: 192.168.100.240 - RequestID: r52rouym9u +2025-06-18T14:18:07.281Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 364ms - Rows affected: 23 - RequestID: umy7fzfetv +2025-06-18T14:18:07.381Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 355ms - RequestID: ilxh1vvmvos +2025-06-18T14:18:07.481Z [INFO] notification-service - Database SELECT on payments - Execution time: 73ms - Rows affected: 42 - RequestID: jvey6hbhv1 +2025-06-18T14:18:07.581Z [DEBUG] order-service - Database DELETE on payments - Execution time: 163ms - Rows affected: 12 - RequestID: 0tcqcgn3per9 +2025-06-18T14:18:07.681Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1635ms - IP: 192.168.232.72 - User: user_1029 - RequestID: agff5cyrxt +2025-06-18T14:18:07.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1085 - IP: 192.168.68.128 - RequestID: 4x2nc90rxxq +2025-06-18T14:18:07.881Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1989ms - IP: 192.168.158.144 - User: user_1092 - RequestID: gh1v15uoim +2025-06-18T14:18:07.981Z [DEBUG] inventory-service - Auth event: login_success - User: user_1057 - IP: 192.168.85.229 - RequestID: e8wqxe1gufa +2025-06-18T14:18:08.081Z [TRACE] inventory-service - Operation: order_created - Processing time: 450ms - RequestID: of5du39wg7e +2025-06-18T14:18:08.181Z [TRACE] inventory-service - GET /api/v1/orders - Status: 404 - Response time: 869ms - IP: 192.168.247.134 - User: user_1001 - RequestID: 1n9rus7lod1 +2025-06-18T14:18:08.281Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 795ms - IP: 192.168.13.72 - User: user_1066 - RequestID: m8kkg4w74td +2025-06-18T14:18:08.381Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 404ms - Rows affected: 95 - RequestID: dkpt34e6jjp +2025-06-18T14:18:08.481Z [TRACE] user-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.68.128 - RequestID: zr4ku6eqnlk +2025-06-18T14:18:08.581Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1806ms - IP: 192.168.46.63 - User: user_1008 - RequestID: 2h1u7hmnd1m +2025-06-18T14:18:08.681Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 201 - Response time: 1654ms - IP: 192.168.181.225 - User: user_1015 - RequestID: 17ulq1nh394h +2025-06-18T14:18:08.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.1.152 - RequestID: 0qo9idsynri +2025-06-18T14:18:08.881Z [DEBUG] user-service - Auth event: password_change - User: user_1011 - IP: 192.168.10.184 - RequestID: u2m0bn9tg3c +2025-06-18T14:18:08.981Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 465ms - Rows affected: 47 - RequestID: rohqygskxo +2025-06-18T14:18:09.081Z [INFO] inventory-service - Auth event: password_change - User: user_1058 - IP: 192.168.36.218 - RequestID: n9iynt4alue +2025-06-18T14:18:09.181Z [INFO] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 1077ms - IP: 192.168.147.171 - User: user_1049 - RequestID: i3miy5ocdb +2025-06-18T14:18:09.281Z [DEBUG] user-service - Auth event: login_failed - User: user_1002 - IP: 192.168.10.184 - RequestID: iv01rylglu +2025-06-18T14:18:09.381Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 408ms - RequestID: vqek5qj6c0f +2025-06-18T14:18:09.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1068 - IP: 192.168.174.114 - RequestID: 11y4lbv5n32 +2025-06-18T14:18:09.581Z [TRACE] order-service - Database INSERT on payments - Execution time: 387ms - Rows affected: 87 - RequestID: c77a9wxxwg +2025-06-18T14:18:09.681Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.194.41 - RequestID: cezuyuwfv3 +2025-06-18T14:18:09.781Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 449ms - RequestID: z411srk9ch +2025-06-18T14:18:09.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1029 - IP: 192.168.14.77 - RequestID: s1p8vahjbc +2025-06-18T14:18:09.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1041 - IP: 192.168.79.116 - RequestID: 5us9bd6570e +2025-06-18T14:18:10.081Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 569ms - RequestID: up5941z7vwg +2025-06-18T14:18:10.181Z [TRACE] order-service - Operation: cache_hit - Processing time: 391ms - RequestID: 18ftrd8glvc +2025-06-18T14:18:10.281Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 201 - Response time: 136ms - IP: 192.168.196.226 - User: user_1009 - RequestID: 9gx84h6s42w +2025-06-18T14:18:10.381Z [INFO] auth-service - Operation: inventory_updated - Processing time: 817ms - RequestID: 7tdzyugofh9 +2025-06-18T14:18:10.481Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 83ms - Rows affected: 58 - RequestID: ewmle8eq36k +2025-06-18T14:18:10.581Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 208ms - Rows affected: 49 - RequestID: ogh2csu3wwg +2025-06-18T14:18:10.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.113.218 - RequestID: 5p3o0ul87ru +2025-06-18T14:18:10.781Z [DEBUG] user-service - Auth event: password_change - User: user_1069 - IP: 192.168.11.60 - RequestID: ixcyml7limh +2025-06-18T14:18:10.881Z [INFO] user-service - Operation: email_sent - Processing time: 60ms - RequestID: kig3csutr79 +2025-06-18T14:18:10.981Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 340ms - Rows affected: 45 - RequestID: kz0xfhqu3tp +2025-06-18T14:18:11.081Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1738ms - IP: 192.168.227.77 - User: user_1062 - RequestID: c3huy6je6ko +2025-06-18T14:18:11.181Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 178ms - Rows affected: 84 - RequestID: ezu3hatc8cl +2025-06-18T14:18:11.281Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 189ms - Rows affected: 48 - RequestID: 9ob8769twll +2025-06-18T14:18:11.381Z [INFO] order-service - PUT /api/v1/users - Status: 201 - Response time: 467ms - IP: 192.168.144.38 - User: user_1051 - RequestID: 79lwe82pufq +2025-06-18T14:18:11.481Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 401 - Response time: 1468ms - IP: 192.168.138.123 - User: user_1082 - RequestID: bn27rqttblk +2025-06-18T14:18:11.581Z [TRACE] payment-service - Database SELECT on users - Execution time: 296ms - Rows affected: 98 - RequestID: azw3my5mogm +2025-06-18T14:18:11.681Z [INFO] auth-service - Operation: inventory_updated - Processing time: 537ms - RequestID: 3bf515ynxx3 +2025-06-18T14:18:11.781Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1673ms - IP: 192.168.44.5 - User: user_1012 - RequestID: 9r457qmaqu6 +2025-06-18T14:18:11.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1050 - IP: 192.168.68.158 - RequestID: 17ib4izwld4 +2025-06-18T14:18:11.981Z [INFO] auth-service - Operation: cache_hit - Processing time: 1045ms - RequestID: z6vjsgwlixs +2025-06-18T14:18:12.081Z [INFO] payment-service - Operation: email_sent - Processing time: 50ms - RequestID: yctmue2h4wa +2025-06-18T14:18:12.181Z [DEBUG] auth-service - Auth event: login_failed - User: user_1013 - IP: 192.168.242.165 - RequestID: y6mgcnxdh0f +2025-06-18T14:18:12.281Z [INFO] order-service - Database INSERT on payments - Execution time: 368ms - Rows affected: 82 - RequestID: u58g5v7e19 +2025-06-18T14:18:12.381Z [INFO] inventory-service - POST /api/v1/payments - Status: 502 - Response time: 1393ms - IP: 192.168.133.7 - User: user_1070 - RequestID: idil04kvqp +2025-06-18T14:18:12.481Z [DEBUG] order-service - Database DELETE on payments - Execution time: 97ms - Rows affected: 66 - RequestID: q9mwrdx551h +2025-06-18T14:18:12.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.159.94 - RequestID: kcsvav09xve +2025-06-18T14:18:12.681Z [DEBUG] auth-service - Database DELETE on users - Execution time: 493ms - Rows affected: 98 - RequestID: k96g1pbrfv +2025-06-18T14:18:12.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 217ms - RequestID: dp81th2h8yn +2025-06-18T14:18:12.881Z [INFO] payment-service - Operation: cache_hit - Processing time: 181ms - RequestID: 1s01lit79zs +2025-06-18T14:18:12.981Z [TRACE] inventory-service - Database DELETE on users - Execution time: 315ms - Rows affected: 43 - RequestID: o79mw7zowb +2025-06-18T14:18:13.081Z [TRACE] inventory-service - Operation: email_sent - Processing time: 275ms - RequestID: nf63a2ccajr +2025-06-18T14:18:13.181Z [INFO] order-service - POST /api/v1/auth/logout - Status: 403 - Response time: 307ms - IP: 192.168.32.38 - User: user_1058 - RequestID: 4sry3bfe0i +2025-06-18T14:18:13.281Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 615ms - RequestID: rkauo0yq8f +2025-06-18T14:18:13.381Z [INFO] user-service - Database SELECT on payments - Execution time: 490ms - Rows affected: 83 - RequestID: 6pwmn83nx3q +2025-06-18T14:18:13.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.79.116 - RequestID: y23r033rcd +2025-06-18T14:18:13.581Z [INFO] notification-service - Auth event: password_change - User: user_1069 - IP: 192.168.227.233 - RequestID: tf30atinvu +2025-06-18T14:18:13.681Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 656ms - RequestID: rsr5k3tzkp +2025-06-18T14:18:13.781Z [INFO] auth-service - PUT /api/v1/payments - Status: 401 - Response time: 128ms - IP: 192.168.144.38 - User: user_1065 - RequestID: orf2x5m2lj8 +2025-06-18T14:18:13.881Z [DEBUG] order-service - Operation: email_sent - Processing time: 612ms - RequestID: ojg93p41k +2025-06-18T14:18:13.981Z [INFO] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 149ms - IP: 192.168.242.165 - User: user_1003 - RequestID: mhwz1wic85l +2025-06-18T14:18:14.081Z [INFO] payment-service - Database UPDATE on products - Execution time: 215ms - Rows affected: 75 - RequestID: bgw9r60h6r +2025-06-18T14:18:14.181Z [TRACE] user-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.181.225 - RequestID: 8k7dh794heu +2025-06-18T14:18:14.281Z [TRACE] auth-service - DELETE /api/v1/users - Status: 403 - Response time: 1706ms - IP: 192.168.32.38 - User: user_1012 - RequestID: drisnskx929 +2025-06-18T14:18:14.381Z [DEBUG] user-service - Operation: cache_miss - Processing time: 132ms - RequestID: 172q76d9ofe +2025-06-18T14:18:14.481Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 399ms - Rows affected: 16 - RequestID: l4ep9pjg989 +2025-06-18T14:18:14.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.85.229 - RequestID: rdgier6oyv +2025-06-18T14:18:14.681Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 489ms - Rows affected: 50 - RequestID: iucsa2grhb +2025-06-18T14:18:14.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 190ms - RequestID: ua92nvnvooe +2025-06-18T14:18:14.881Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 282ms - IP: 192.168.85.229 - User: user_1068 - RequestID: wlbf0cdjbph +2025-06-18T14:18:14.981Z [INFO] user-service - POST /api/v1/inventory - Status: 502 - Response time: 965ms - IP: 192.168.189.103 - User: user_1042 - RequestID: kdtnm6ty87h +2025-06-18T14:18:15.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.196.226 - RequestID: cy7swxgwzzj +2025-06-18T14:18:15.181Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 119ms - Rows affected: 94 - RequestID: n404d581jre +2025-06-18T14:18:15.281Z [INFO] order-service - Operation: cache_hit - Processing time: 283ms - RequestID: zx2o0p3i55 +2025-06-18T14:18:15.381Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 454ms - Rows affected: 40 - RequestID: dduj3enwzzs +2025-06-18T14:18:15.481Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 288ms - Rows affected: 63 - RequestID: ryu1p3nk51k +2025-06-18T14:18:15.581Z [INFO] payment-service - Operation: cache_miss - Processing time: 57ms - RequestID: mgiojp8up6 +2025-06-18T14:18:15.681Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 30ms - Rows affected: 89 - RequestID: zuhhcq9fsks +2025-06-18T14:18:15.781Z [INFO] payment-service - Auth event: logout - User: user_1025 - IP: 192.168.196.226 - RequestID: q5ab2x8fyw +2025-06-18T14:18:15.881Z [INFO] inventory-service - Operation: cache_miss - Processing time: 311ms - RequestID: 9utv0m1gvg +2025-06-18T14:18:15.981Z [DEBUG] user-service - Operation: cache_hit - Processing time: 888ms - RequestID: muny119srkr +2025-06-18T14:18:16.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.144.38 - RequestID: ot7kndaihdp +2025-06-18T14:18:16.181Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 403 - Response time: 1873ms - IP: 192.168.144.38 - User: user_1021 - RequestID: 7j6mdh7gzkm +2025-06-18T14:18:16.281Z [INFO] payment-service - Operation: order_created - Processing time: 280ms - RequestID: omxi7rz7i7 +2025-06-18T14:18:16.381Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.170.215 - RequestID: kbpdxye0m4 +2025-06-18T14:18:16.481Z [TRACE] user-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.97.87 - RequestID: ihlu67uy6d +2025-06-18T14:18:16.581Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 11ms - IP: 192.168.133.7 - User: user_1063 - RequestID: vuywxp7ckuh +2025-06-18T14:18:16.681Z [INFO] user-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.159.94 - RequestID: ytehuoqwizl +2025-06-18T14:18:16.781Z [INFO] user-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.32.38 - RequestID: 7hqmmw8dyk6 +2025-06-18T14:18:16.881Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 4ms - Rows affected: 86 - RequestID: e49dxnhp2mw +2025-06-18T14:18:16.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.242.165 - RequestID: t2bqqqvbu8 +2025-06-18T14:18:17.081Z [DEBUG] auth-service - Auth event: logout - User: user_1084 - IP: 192.168.68.128 - RequestID: d465d7lwni +2025-06-18T14:18:17.181Z [INFO] inventory-service - Database SELECT on products - Execution time: 230ms - Rows affected: 9 - RequestID: czpitgz6lgd +2025-06-18T14:18:17.281Z [TRACE] payment-service - Operation: payment_processed - Processing time: 517ms - RequestID: qf64tv75bsb +2025-06-18T14:18:17.381Z [DEBUG] user-service - GET /api/v1/payments - Status: 404 - Response time: 127ms - IP: 192.168.100.240 - User: user_1011 - RequestID: 1u8ysnoo1be +2025-06-18T14:18:17.481Z [INFO] notification-service - Auth event: login_failed - User: user_1067 - IP: 192.168.36.218 - RequestID: 8h8hr7tlcpp +2025-06-18T14:18:17.581Z [INFO] order-service - Auth event: password_change - User: user_1032 - IP: 192.168.189.103 - RequestID: p2w3kzmhs4b +2025-06-18T14:18:17.681Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 133ms - Rows affected: 9 - RequestID: 2z65stnwcbg +2025-06-18T14:18:17.781Z [INFO] payment-service - POST /api/v1/orders - Status: 200 - Response time: 873ms - IP: 192.168.158.144 - User: user_1073 - RequestID: bf4irlbxxnv +2025-06-18T14:18:17.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1041 - IP: 192.168.68.158 - RequestID: 9aix5lmgn2f +2025-06-18T14:18:17.981Z [INFO] order-service - Database UPDATE on sessions - Execution time: 47ms - Rows affected: 82 - RequestID: rwy2u1hb4qb +2025-06-18T14:18:18.081Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 454ms - RequestID: y4rs34ugi3h +2025-06-18T14:18:18.181Z [TRACE] auth-service - Operation: cache_miss - Processing time: 959ms - RequestID: x0bu0qb0fls +2025-06-18T14:18:18.281Z [TRACE] auth-service - Database INSERT on users - Execution time: 437ms - Rows affected: 50 - RequestID: lbsurxvs1zd +2025-06-18T14:18:18.381Z [INFO] order-service - Database DELETE on payments - Execution time: 299ms - Rows affected: 97 - RequestID: cootjkv8hlw +2025-06-18T14:18:18.481Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 323ms - Rows affected: 14 - RequestID: 90eoo7tui8 +2025-06-18T14:18:18.581Z [INFO] payment-service - Operation: cache_miss - Processing time: 517ms - RequestID: j65r0ieiss +2025-06-18T14:18:18.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 682ms - RequestID: 61zxgcopp9s +2025-06-18T14:18:18.781Z [TRACE] user-service - Auth event: password_change - User: user_1063 - IP: 192.168.113.218 - RequestID: ffsozqq8cel +2025-06-18T14:18:18.881Z [DEBUG] order-service - Operation: payment_processed - Processing time: 878ms - RequestID: 8eie820w4kc +2025-06-18T14:18:18.981Z [TRACE] order-service - Database SELECT on payments - Execution time: 361ms - Rows affected: 94 - RequestID: 1unn3db955w +2025-06-18T14:18:19.081Z [DEBUG] payment-service - Auth event: login_failed - User: user_1089 - IP: 192.168.68.158 - RequestID: ge4mjtklra9 +2025-06-18T14:18:19.181Z [INFO] auth-service - Database INSERT on products - Execution time: 381ms - Rows affected: 91 - RequestID: 9f733xiqhnp +2025-06-18T14:18:19.281Z [DEBUG] notification-service - Auth event: login_failed - User: user_1070 - IP: 192.168.113.218 - RequestID: emgnice296u +2025-06-18T14:18:19.381Z [DEBUG] payment-service - Database INSERT on users - Execution time: 401ms - Rows affected: 94 - RequestID: pgcbp1q7s2 +2025-06-18T14:18:19.481Z [TRACE] order-service - Operation: cache_miss - Processing time: 918ms - RequestID: wfhi2acdrcl +2025-06-18T14:18:19.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1041 - IP: 192.168.68.158 - RequestID: qc71driajwe +2025-06-18T14:18:19.681Z [INFO] user-service - DELETE /api/v1/payments - Status: 502 - Response time: 502ms - IP: 192.168.227.233 - User: user_1059 - RequestID: wuaqjgjqpj +2025-06-18T14:18:19.781Z [INFO] auth-service - Database INSERT on payments - Execution time: 196ms - Rows affected: 95 - RequestID: 7i3eezbnfcc +2025-06-18T14:18:19.881Z [INFO] order-service - Operation: email_sent - Processing time: 963ms - RequestID: pzbzfud9m1 +2025-06-18T14:18:19.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1040 - IP: 192.168.227.77 - RequestID: vtl2t8hggtf +2025-06-18T14:18:20.081Z [INFO] order-service - Database INSERT on sessions - Execution time: 12ms - Rows affected: 73 - RequestID: t5auae9mb7 +2025-06-18T14:18:20.181Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 380ms - Rows affected: 71 - RequestID: p4bu5xm9l4 +2025-06-18T14:18:20.281Z [INFO] user-service - POST /api/v1/payments - Status: 502 - Response time: 1234ms - IP: 192.168.79.143 - User: user_1034 - RequestID: k71dis0rxbc +2025-06-18T14:18:20.381Z [TRACE] user-service - Operation: email_sent - Processing time: 880ms - RequestID: cf9ljl0qnlg +2025-06-18T14:18:20.481Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 542ms - IP: 192.168.227.77 - User: user_1033 - RequestID: 2ggzzkh71qs +2025-06-18T14:18:20.581Z [INFO] user-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.81.206 - RequestID: dl3zrk67p6j +2025-06-18T14:18:20.681Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 84ms - Rows affected: 30 - RequestID: f4d5ylh3l2l +2025-06-18T14:18:20.781Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 87ms - Rows affected: 78 - RequestID: 77opyid4r8 +2025-06-18T14:18:20.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.227.77 - RequestID: r7no834ccb +2025-06-18T14:18:20.981Z [INFO] auth-service - Operation: payment_processed - Processing time: 819ms - RequestID: 3vb128tqkwz +2025-06-18T14:18:21.081Z [INFO] inventory-service - Database SELECT on orders - Execution time: 471ms - Rows affected: 34 - RequestID: vb1fg648pm +2025-06-18T14:18:21.181Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 723ms - IP: 192.168.53.133 - User: user_1011 - RequestID: x9xg8hpxcup +2025-06-18T14:18:21.281Z [INFO] payment-service - Operation: inventory_updated - Processing time: 619ms - RequestID: q7luuzza28l +2025-06-18T14:18:21.381Z [INFO] payment-service - PUT /api/v1/inventory - Status: 503 - Response time: 1075ms - IP: 192.168.232.72 - User: user_1076 - RequestID: 7gjpk14vt9 +2025-06-18T14:18:21.481Z [TRACE] user-service - DELETE /api/v1/orders - Status: 403 - Response time: 983ms - IP: 192.168.159.94 - User: user_1043 - RequestID: sbwqh49hsgb +2025-06-18T14:18:21.581Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 214ms - Rows affected: 62 - RequestID: hfm4nsuza7m +2025-06-18T14:18:21.681Z [INFO] auth-service - Database SELECT on sessions - Execution time: 243ms - Rows affected: 61 - RequestID: n7g5ij3p7ce +2025-06-18T14:18:21.781Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1673ms - IP: 192.168.81.206 - User: user_1032 - RequestID: 5rf44ouhfyp +2025-06-18T14:18:21.881Z [TRACE] order-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.189.103 - RequestID: 760ftwcpp68 +2025-06-18T14:18:21.981Z [DEBUG] order-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.33.76 - RequestID: 9iu37lipgt +2025-06-18T14:18:22.081Z [TRACE] notification-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.1.152 - RequestID: x5lf7o6x9sk +2025-06-18T14:18:22.181Z [TRACE] order-service - GET /api/v1/orders - Status: 502 - Response time: 58ms - IP: 192.168.187.199 - User: user_1005 - RequestID: 0w5e9w0qpza +2025-06-18T14:18:22.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1084 - IP: 192.168.32.38 - RequestID: ei0wuwbtbhd +2025-06-18T14:18:22.381Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 500 - Response time: 739ms - IP: 192.168.144.38 - User: user_1092 - RequestID: ktf1bbzfv1m +2025-06-18T14:18:22.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.158.144 - RequestID: i54yaqevv6c +2025-06-18T14:18:22.581Z [DEBUG] order-service - Database DELETE on orders - Execution time: 317ms - Rows affected: 56 - RequestID: dag6nsa3o0v +2025-06-18T14:18:22.681Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 58ms - Rows affected: 44 - RequestID: r1fefzjkelg +2025-06-18T14:18:22.781Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 502 - Response time: 44ms - IP: 192.168.174.114 - User: user_1036 - RequestID: 8txo03xls76 +2025-06-18T14:18:22.881Z [INFO] order-service - Operation: inventory_updated - Processing time: 83ms - RequestID: z1bc5isnuwj +2025-06-18T14:18:22.981Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 897ms - RequestID: liz2vmixgy +2025-06-18T14:18:23.081Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 317ms - Rows affected: 86 - RequestID: 9fljohzef1v +2025-06-18T14:18:23.181Z [TRACE] notification-service - Auth event: logout - User: user_1038 - IP: 192.168.159.94 - RequestID: ppfc9n2ctu +2025-06-18T14:18:23.281Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 427ms - Rows affected: 48 - RequestID: kcnfzs9pki +2025-06-18T14:18:23.381Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 69ms - Rows affected: 18 - RequestID: 34upfw395pu +2025-06-18T14:18:23.481Z [INFO] auth-service - Operation: inventory_updated - Processing time: 709ms - RequestID: zmubx1bmbbb +2025-06-18T14:18:23.581Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 774ms - IP: 192.168.167.32 - User: user_1021 - RequestID: 7p294eb3g86 +2025-06-18T14:18:23.681Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 201 - Response time: 1066ms - IP: 192.168.1.152 - User: user_1025 - RequestID: a5q7i0wtng +2025-06-18T14:18:23.781Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 500 - Response time: 357ms - IP: 192.168.36.218 - User: user_1029 - RequestID: celyii6jxgo +2025-06-18T14:18:23.881Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.229.123 - RequestID: pcbs81ju33m +2025-06-18T14:18:23.981Z [TRACE] user-service - Operation: webhook_sent - Processing time: 176ms - RequestID: 5vyt7wx97vu +2025-06-18T14:18:24.081Z [TRACE] inventory-service - Auth event: login_success - User: user_1078 - IP: 192.168.240.169 - RequestID: yts7w1dunir +2025-06-18T14:18:24.181Z [TRACE] user-service - PATCH /api/v1/payments - Status: 503 - Response time: 1495ms - IP: 192.168.227.233 - User: user_1083 - RequestID: o2oigrmmxwr +2025-06-18T14:18:24.281Z [TRACE] notification-service - Database INSERT on orders - Execution time: 121ms - Rows affected: 18 - RequestID: lkdod188s9a +2025-06-18T14:18:24.381Z [INFO] order-service - Operation: notification_queued - Processing time: 564ms - RequestID: jrv9086c7qq +2025-06-18T14:18:24.481Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 500 - Response time: 549ms - IP: 192.168.194.41 - User: user_1026 - RequestID: cri4nsq21k +2025-06-18T14:18:24.581Z [INFO] user-service - PUT /api/v1/payments - Status: 201 - Response time: 1630ms - IP: 192.168.189.103 - User: user_1033 - RequestID: ru11ttkgi3 +2025-06-18T14:18:24.681Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 120ms - RequestID: 6y7oevyq3ma +2025-06-18T14:18:24.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.68.158 - RequestID: rf7ni3l9f2s +2025-06-18T14:18:24.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1032 - IP: 192.168.1.152 - RequestID: 5tb6j7en8ro +2025-06-18T14:18:24.981Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 502 - Response time: 1125ms - IP: 192.168.46.63 - User: user_1073 - RequestID: yl5ki710xt +2025-06-18T14:18:25.081Z [INFO] payment-service - PATCH /api/v1/users - Status: 404 - Response time: 1913ms - IP: 192.168.158.144 - User: user_1016 - RequestID: 7oe8gwj2r6q +2025-06-18T14:18:25.181Z [TRACE] notification-service - Operation: cache_miss - Processing time: 479ms - RequestID: 9eeij4b8ut +2025-06-18T14:18:25.281Z [DEBUG] auth-service - GET /api/v1/orders - Status: 401 - Response time: 1187ms - IP: 192.168.196.226 - User: user_1016 - RequestID: nt6ml2b510m +2025-06-18T14:18:25.381Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 403 - Response time: 957ms - IP: 192.168.13.72 - User: user_1035 - RequestID: nmmdq8rm3q +2025-06-18T14:18:25.481Z [INFO] notification-service - Operation: email_sent - Processing time: 100ms - RequestID: nmj550as9w +2025-06-18T14:18:25.581Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 453ms - Rows affected: 68 - RequestID: le234mxu8yg +2025-06-18T14:18:25.681Z [TRACE] user-service - Operation: order_created - Processing time: 115ms - RequestID: 2hn4lzxuww8 +2025-06-18T14:18:25.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.28.146 - RequestID: i36tn5n02r +2025-06-18T14:18:25.881Z [INFO] inventory-service - Auth event: logout - User: user_1007 - IP: 192.168.196.226 - RequestID: 72nielx053p +2025-06-18T14:18:25.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.227.233 - RequestID: l2106rhviig +2025-06-18T14:18:26.081Z [DEBUG] auth-service - Auth event: login_success - User: user_1070 - IP: 192.168.194.41 - RequestID: yhykaewhebn +2025-06-18T14:18:26.181Z [INFO] payment-service - Database UPDATE on products - Execution time: 355ms - Rows affected: 67 - RequestID: 3bvuh2u62tx +2025-06-18T14:18:26.281Z [INFO] order-service - POST /api/v1/auth/logout - Status: 403 - Response time: 866ms - IP: 192.168.100.240 - User: user_1068 - RequestID: 14k1ltarygq +2025-06-18T14:18:26.381Z [TRACE] auth-service - DELETE /api/v1/users - Status: 502 - Response time: 576ms - IP: 192.168.36.218 - User: user_1029 - RequestID: ad0f69cw0gp +2025-06-18T14:18:26.481Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 115ms - Rows affected: 70 - RequestID: vo0fghneieh +2025-06-18T14:18:26.581Z [INFO] inventory-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.46.63 - RequestID: n5rb882iytp +2025-06-18T14:18:26.681Z [TRACE] auth-service - Auth event: logout - User: user_1065 - IP: 192.168.138.123 - RequestID: qxh372fs0ck +2025-06-18T14:18:26.781Z [DEBUG] order-service - Database SELECT on payments - Execution time: 156ms - Rows affected: 49 - RequestID: 356vtch8c2a +2025-06-18T14:18:26.881Z [TRACE] auth-service - Operation: cache_miss - Processing time: 221ms - RequestID: ow6ta5f3f1 +2025-06-18T14:18:26.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 637ms - RequestID: 9yok70atxce +2025-06-18T14:18:27.081Z [TRACE] user-service - Auth event: login_success - User: user_1048 - IP: 192.168.196.226 - RequestID: rmar2thl9x +2025-06-18T14:18:27.181Z [INFO] payment-service - Database INSERT on payments - Execution time: 122ms - Rows affected: 72 - RequestID: 43wkhb25ev5 +2025-06-18T14:18:27.281Z [DEBUG] payment-service - Auth event: login_success - User: user_1064 - IP: 192.168.141.100 - RequestID: 9vf3fkbilmt +2025-06-18T14:18:27.381Z [INFO] user-service - Operation: cache_miss - Processing time: 643ms - RequestID: 2eq3ur0mjus +2025-06-18T14:18:27.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 1000ms - RequestID: 5ig6xl0fkoe +2025-06-18T14:18:27.581Z [DEBUG] auth-service - Auth event: logout - User: user_1073 - IP: 192.168.211.72 - RequestID: lexoy2mkoam +2025-06-18T14:18:27.681Z [INFO] payment-service - Operation: order_created - Processing time: 658ms - RequestID: v2l2ltuyt6 +2025-06-18T14:18:27.781Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 589ms - RequestID: 7qj3i4jzor +2025-06-18T14:18:27.881Z [TRACE] auth-service - Operation: payment_processed - Processing time: 330ms - RequestID: cg1i8kxez3 +2025-06-18T14:18:27.981Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 389ms - IP: 192.168.170.215 - User: user_1074 - RequestID: ejuk858a5yh +2025-06-18T14:18:28.081Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 339ms - Rows affected: 22 - RequestID: kwjxtue1kgg +2025-06-18T14:18:28.181Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1706ms - IP: 192.168.28.146 - User: user_1020 - RequestID: sy8lobngtq +2025-06-18T14:18:28.281Z [INFO] notification-service - Auth event: login_success - User: user_1086 - IP: 192.168.227.77 - RequestID: lnioc6uqlbj +2025-06-18T14:18:28.381Z [DEBUG] auth-service - Auth event: login_failed - User: user_1004 - IP: 192.168.181.225 - RequestID: bxc8786o2j6 +2025-06-18T14:18:28.481Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 485ms - Rows affected: 66 - RequestID: mpvb872qbmm +2025-06-18T14:18:28.581Z [INFO] inventory-service - Operation: payment_processed - Processing time: 545ms - RequestID: hyr6ijm8z7m +2025-06-18T14:18:28.681Z [TRACE] payment-service - PUT /api/v1/users - Status: 400 - Response time: 1819ms - IP: 192.168.53.133 - User: user_1045 - RequestID: ehjgwnz9f9u +2025-06-18T14:18:28.781Z [TRACE] order-service - Operation: payment_processed - Processing time: 592ms - RequestID: j21p00ohk9 +2025-06-18T14:18:28.881Z [INFO] order-service - Operation: cache_hit - Processing time: 804ms - RequestID: clry343wv7n +2025-06-18T14:18:28.981Z [DEBUG] notification-service - Database INSERT on users - Execution time: 181ms - Rows affected: 33 - RequestID: p3jbig1t2hm +2025-06-18T14:18:29.081Z [INFO] payment-service - Auth event: login_failed - User: user_1051 - IP: 192.168.104.37 - RequestID: vl2uub1qpj8 +2025-06-18T14:18:29.181Z [TRACE] order-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.189.103 - RequestID: 29llbiyihij +2025-06-18T14:18:29.281Z [DEBUG] notification-service - Auth event: login_failed - User: user_1015 - IP: 192.168.30.79 - RequestID: ancp5ypu7h +2025-06-18T14:18:29.381Z [TRACE] notification-service - Database SELECT on orders - Execution time: 127ms - Rows affected: 85 - RequestID: 7fm7tvz8tta +2025-06-18T14:18:29.481Z [TRACE] auth-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.33.76 - RequestID: 62incg0ikzt +2025-06-18T14:18:29.581Z [DEBUG] inventory-service - Operation: order_created - Processing time: 99ms - RequestID: oox6avoxtkb +2025-06-18T14:18:29.681Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 263ms - Rows affected: 69 - RequestID: 3vxrrkbskfs +2025-06-18T14:18:29.781Z [TRACE] order-service - Operation: webhook_sent - Processing time: 526ms - RequestID: 89qrb8jm4cq +2025-06-18T14:18:29.881Z [INFO] payment-service - Auth event: password_change - User: user_1040 - IP: 192.168.227.233 - RequestID: cjh2cy2kipe +2025-06-18T14:18:29.981Z [INFO] payment-service - Auth event: logout - User: user_1023 - IP: 192.168.232.72 - RequestID: 4n5lshtgsds +2025-06-18T14:18:30.081Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 395ms - Rows affected: 95 - RequestID: 6dbyz0o40lf +2025-06-18T14:18:30.181Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 503 - Response time: 996ms - IP: 192.168.68.128 - User: user_1080 - RequestID: hn0agr10ssm +2025-06-18T14:18:30.281Z [INFO] auth-service - GET /api/v1/payments - Status: 500 - Response time: 53ms - IP: 192.168.1.152 - User: user_1038 - RequestID: faox66pazow +2025-06-18T14:18:30.381Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 278ms - Rows affected: 97 - RequestID: siwaznh63o +2025-06-18T14:18:30.481Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 659ms - RequestID: peeejna4lv +2025-06-18T14:18:30.581Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1902ms - IP: 192.168.104.37 - User: user_1033 - RequestID: evg0d5fuav8 +2025-06-18T14:18:30.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.138.123 - RequestID: lxgxsjrlglo +2025-06-18T14:18:30.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1016 - IP: 192.168.158.144 - RequestID: djurxe0n4js +2025-06-18T14:18:30.881Z [INFO] payment-service - Operation: cache_miss - Processing time: 366ms - RequestID: cdttrrp9l1j +2025-06-18T14:18:30.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.13.72 - RequestID: x47tlgmduba +2025-06-18T14:18:31.081Z [INFO] user-service - Operation: email_sent - Processing time: 660ms - RequestID: 08gkzi05ok5w +2025-06-18T14:18:31.181Z [INFO] notification-service - Auth event: password_change - User: user_1030 - IP: 192.168.79.143 - RequestID: 7eu20idbfnl +2025-06-18T14:18:31.281Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 240ms - RequestID: h8nx1cvqjqr +2025-06-18T14:18:31.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1022 - IP: 192.168.36.218 - RequestID: 7v3k0uybstt +2025-06-18T14:18:31.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 60ms - RequestID: 95j7vwk8lzu +2025-06-18T14:18:31.581Z [DEBUG] user-service - Auth event: login_failed - User: user_1005 - IP: 192.168.211.72 - RequestID: zep1t0bnoye +2025-06-18T14:18:31.681Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 394ms - Rows affected: 44 - RequestID: 0c1p2vya0dph +2025-06-18T14:18:31.781Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 162ms - IP: 192.168.36.218 - User: user_1015 - RequestID: 6is47hbc5tg +2025-06-18T14:18:31.881Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 1013ms - RequestID: kche6l5xo69 +2025-06-18T14:18:31.981Z [INFO] user-service - PATCH /api/v1/payments - Status: 502 - Response time: 1280ms - IP: 192.168.85.229 - User: user_1063 - RequestID: l4roed175s +2025-06-18T14:18:32.081Z [TRACE] user-service - PATCH /api/v1/orders - Status: 403 - Response time: 1383ms - IP: 192.168.10.184 - User: user_1074 - RequestID: wteudhexzym +2025-06-18T14:18:32.181Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1267ms - IP: 192.168.147.171 - User: user_1027 - RequestID: xu2l35x5x4a +2025-06-18T14:18:32.281Z [TRACE] auth-service - Operation: payment_processed - Processing time: 822ms - RequestID: bci2gqnk9xk +2025-06-18T14:18:32.381Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 608ms - RequestID: kqog03cr81a +2025-06-18T14:18:32.481Z [TRACE] order-service - Database UPDATE on payments - Execution time: 353ms - Rows affected: 48 - RequestID: ibqo4xlodt9 +2025-06-18T14:18:32.581Z [TRACE] payment-service - POST /api/v1/inventory - Status: 500 - Response time: 1585ms - IP: 192.168.167.32 - User: user_1090 - RequestID: 43dmyb5952t +2025-06-18T14:18:32.681Z [INFO] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 463ms - IP: 192.168.229.123 - User: user_1008 - RequestID: m8m0cvf09b8 +2025-06-18T14:18:32.781Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 954ms - RequestID: 9xpr3lhvve +2025-06-18T14:18:32.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.1.152 - RequestID: 6dqs2k2icq4 +2025-06-18T14:18:32.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.174.114 - RequestID: bk9qbq393pw +2025-06-18T14:18:33.081Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 346ms - Rows affected: 72 - RequestID: spp7wp3thoq +2025-06-18T14:18:33.181Z [TRACE] order-service - Auth event: password_change - User: user_1047 - IP: 192.168.242.165 - RequestID: fedmkgahuok +2025-06-18T14:18:33.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 241ms - RequestID: pw3ut8bbf9 +2025-06-18T14:18:33.381Z [TRACE] order-service - Database UPDATE on users - Execution time: 353ms - Rows affected: 72 - RequestID: 1fj66uac473 +2025-06-18T14:18:33.481Z [DEBUG] notification-service - Operation: email_sent - Processing time: 585ms - RequestID: tz21cn6pfsm +2025-06-18T14:18:33.581Z [DEBUG] user-service - PATCH /api/v1/users - Status: 201 - Response time: 720ms - IP: 192.168.232.72 - User: user_1011 - RequestID: kev87dv6cp +2025-06-18T14:18:33.681Z [DEBUG] notification-service - PUT /api/v1/users - Status: 201 - Response time: 166ms - IP: 192.168.81.206 - User: user_1041 - RequestID: 5q58kzb7lsh +2025-06-18T14:18:33.781Z [TRACE] auth-service - Auth event: password_change - User: user_1013 - IP: 192.168.141.100 - RequestID: o5n89miqq5e +2025-06-18T14:18:33.881Z [INFO] order-service - Operation: order_created - Processing time: 113ms - RequestID: d4xkvt759mo +2025-06-18T14:18:33.981Z [INFO] payment-service - Operation: cache_miss - Processing time: 877ms - RequestID: a2fut1x1tva +2025-06-18T14:18:34.081Z [TRACE] payment-service - Database DELETE on payments - Execution time: 43ms - Rows affected: 35 - RequestID: d3lp2gmwseb +2025-06-18T14:18:34.181Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 404 - Response time: 1545ms - IP: 192.168.158.144 - User: user_1088 - RequestID: mb9lhgzdw6k +2025-06-18T14:18:34.281Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 409ms - Rows affected: 15 - RequestID: ehlsz8cvbci +2025-06-18T14:18:34.381Z [DEBUG] order-service - Database SELECT on payments - Execution time: 252ms - Rows affected: 52 - RequestID: xxf2l8gzhua +2025-06-18T14:18:34.481Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 326ms - RequestID: 7rl8zxdlfdx +2025-06-18T14:18:34.581Z [TRACE] inventory-service - Database SELECT on products - Execution time: 254ms - Rows affected: 84 - RequestID: 8zutogv37fi +2025-06-18T14:18:34.681Z [INFO] order-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.242.165 - RequestID: rsy2lf31qm +2025-06-18T14:18:34.781Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1086 - IP: 192.168.53.133 - RequestID: xes8pb79yxc +2025-06-18T14:18:34.881Z [DEBUG] user-service - Auth event: password_change - User: user_1066 - IP: 192.168.97.87 - RequestID: blb2idcxr8g +2025-06-18T14:18:34.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1017 - IP: 192.168.235.117 - RequestID: hsvg2a37ook +2025-06-18T14:18:35.081Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 360ms - Rows affected: 83 - RequestID: jt35uqe99aj +2025-06-18T14:18:35.181Z [INFO] notification-service - Operation: order_created - Processing time: 590ms - RequestID: 12arwnjd9k7 +2025-06-18T14:18:35.281Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 737ms - RequestID: 0ka3ggjzd8rk +2025-06-18T14:18:35.381Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 401 - Response time: 714ms - IP: 192.168.13.72 - User: user_1033 - RequestID: fgy0j0oi87s +2025-06-18T14:18:35.481Z [TRACE] auth-service - Auth event: password_change - User: user_1074 - IP: 192.168.104.37 - RequestID: oaj4xqbser8 +2025-06-18T14:18:35.581Z [INFO] payment-service - Operation: webhook_sent - Processing time: 715ms - RequestID: vz8f4pnuqb +2025-06-18T14:18:35.681Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 200 - Response time: 672ms - IP: 192.168.147.171 - User: user_1088 - RequestID: 1u13y4y7o7m +2025-06-18T14:18:35.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 282ms - RequestID: jy74msbogg9 +2025-06-18T14:18:35.881Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 164ms - RequestID: 9brgoc7pnj +2025-06-18T14:18:35.981Z [TRACE] user-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.30.79 - RequestID: tcl5i7tmulk +2025-06-18T14:18:36.081Z [INFO] inventory-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.1.152 - RequestID: 8irkykj4l9s +2025-06-18T14:18:36.181Z [INFO] auth-service - Operation: order_created - Processing time: 484ms - RequestID: 4albe9ewuon +2025-06-18T14:18:36.281Z [TRACE] order-service - GET /api/v1/orders - Status: 400 - Response time: 1666ms - IP: 192.168.100.240 - User: user_1038 - RequestID: iqbuu5kgi7 +2025-06-18T14:18:36.381Z [INFO] notification-service - PATCH /api/v1/users - Status: 404 - Response time: 1742ms - IP: 192.168.189.103 - User: user_1043 - RequestID: nzuvlvox73 +2025-06-18T14:18:36.481Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1406ms - IP: 192.168.141.100 - User: user_1076 - RequestID: fprzs03qv5c +2025-06-18T14:18:36.581Z [TRACE] notification-service - Auth event: login_success - User: user_1053 - IP: 192.168.189.103 - RequestID: t6sic3vy4d +2025-06-18T14:18:36.681Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 201 - Response time: 924ms - IP: 192.168.64.33 - User: user_1062 - RequestID: 7ia9zptsihp +2025-06-18T14:18:36.781Z [INFO] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 1849ms - IP: 192.168.85.229 - User: user_1045 - RequestID: va2pddixpf +2025-06-18T14:18:36.881Z [TRACE] auth-service - POST /api/v1/users - Status: 200 - Response time: 867ms - IP: 192.168.174.114 - User: user_1077 - RequestID: a7661xqdlgm +2025-06-18T14:18:36.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 802ms - RequestID: cz6brqaoref +2025-06-18T14:18:37.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.187.199 - RequestID: 10yh6u0op26 +2025-06-18T14:18:37.181Z [INFO] payment-service - PUT /api/v1/orders - Status: 200 - Response time: 833ms - IP: 192.168.79.116 - User: user_1013 - RequestID: nbujt8pvbo8 +2025-06-18T14:18:37.281Z [TRACE] payment-service - Auth event: password_change - User: user_1046 - IP: 192.168.189.103 - RequestID: nrt562eusnc +2025-06-18T14:18:37.381Z [DEBUG] user-service - Auth event: password_change - User: user_1025 - IP: 192.168.97.87 - RequestID: mfggghbi40e +2025-06-18T14:18:37.481Z [DEBUG] order-service - Auth event: login_failed - User: user_1045 - IP: 192.168.141.100 - RequestID: ruugncfiblm +2025-06-18T14:18:37.581Z [DEBUG] payment-service - Auth event: login_failed - User: user_1070 - IP: 192.168.227.233 - RequestID: z5r6erx0q3 +2025-06-18T14:18:37.681Z [INFO] auth-service - Database SELECT on products - Execution time: 466ms - Rows affected: 71 - RequestID: 2rh8gnkb3ky +2025-06-18T14:18:37.781Z [INFO] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 1885ms - IP: 192.168.36.218 - User: user_1051 - RequestID: tqwxt9j0k4j +2025-06-18T14:18:37.881Z [INFO] payment-service - Database INSERT on products - Execution time: 32ms - Rows affected: 41 - RequestID: y27n3zdiwe9 +2025-06-18T14:18:37.981Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 119ms - Rows affected: 83 - RequestID: itbo7vh4p5 +2025-06-18T14:18:38.081Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1928ms - IP: 192.168.79.143 - User: user_1030 - RequestID: sazj6wcq1hq +2025-06-18T14:18:38.181Z [TRACE] user-service - DELETE /api/v1/orders - Status: 400 - Response time: 1790ms - IP: 192.168.1.152 - User: user_1064 - RequestID: i2ll8vm6nm +2025-06-18T14:18:38.281Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 535ms - IP: 192.168.32.38 - User: user_1033 - RequestID: drkvdq3wrd +2025-06-18T14:18:38.381Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 445ms - Rows affected: 20 - RequestID: 0pjtibamkckm +2025-06-18T14:18:38.481Z [TRACE] user-service - Auth event: password_change - User: user_1021 - IP: 192.168.32.38 - RequestID: 70f03wrxkfk +2025-06-18T14:18:38.581Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 104ms - Rows affected: 7 - RequestID: 0qnoruq3gvf +2025-06-18T14:18:38.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 268ms - RequestID: s6lwqvl92ro +2025-06-18T14:18:38.781Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 481ms - Rows affected: 62 - RequestID: ywus968k64 +2025-06-18T14:18:38.881Z [INFO] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1039ms - IP: 192.168.196.226 - User: user_1071 - RequestID: hcgwhvabhlk +2025-06-18T14:18:38.981Z [TRACE] auth-service - Database UPDATE on products - Execution time: 180ms - Rows affected: 29 - RequestID: kmrdd6fl5xk +2025-06-18T14:18:39.081Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 372ms - IP: 192.168.138.123 - User: user_1008 - RequestID: hhap1z5clqf +2025-06-18T14:18:39.181Z [INFO] notification-service - POST /api/v1/orders - Status: 502 - Response time: 1280ms - IP: 192.168.211.72 - User: user_1072 - RequestID: kqt0a3q13df +2025-06-18T14:18:39.281Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 165ms - Rows affected: 98 - RequestID: pqm7i81vbtd +2025-06-18T14:18:39.381Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 66ms - RequestID: fmirmli0aei +2025-06-18T14:18:39.481Z [INFO] notification-service - DELETE /api/v1/payments - Status: 500 - Response time: 1636ms - IP: 192.168.194.41 - User: user_1079 - RequestID: 9z1ld6jji56 +2025-06-18T14:18:39.581Z [INFO] inventory-service - GET /api/v1/orders - Status: 401 - Response time: 1520ms - IP: 192.168.144.38 - User: user_1000 - RequestID: 7eqzhb9b2bb +2025-06-18T14:18:39.681Z [TRACE] auth-service - Auth event: logout - User: user_1062 - IP: 192.168.79.116 - RequestID: vl7m54wdi3 +2025-06-18T14:18:39.781Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 500 - Response time: 444ms - IP: 192.168.144.38 - User: user_1005 - RequestID: 7w607ozo818 +2025-06-18T14:18:39.881Z [TRACE] user-service - Database SELECT on users - Execution time: 17ms - Rows affected: 31 - RequestID: 930p6lb2amv +2025-06-18T14:18:39.981Z [TRACE] payment-service - Auth event: login_failed - User: user_1073 - IP: 192.168.113.218 - RequestID: x9vfnk5k5g +2025-06-18T14:18:40.081Z [INFO] payment-service - Database INSERT on sessions - Execution time: 239ms - Rows affected: 34 - RequestID: xmv7x2nt9o +2025-06-18T14:18:40.181Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 479ms - RequestID: h1j6hy5f0ao +2025-06-18T14:18:40.281Z [INFO] inventory-service - GET /api/v1/users - Status: 400 - Response time: 1435ms - IP: 192.168.97.87 - User: user_1049 - RequestID: 94rjxhiqld5 +2025-06-18T14:18:40.381Z [INFO] payment-service - Database DELETE on products - Execution time: 32ms - Rows affected: 45 - RequestID: fo4g8y8x5j +2025-06-18T14:18:40.481Z [INFO] inventory-service - Operation: order_created - Processing time: 486ms - RequestID: qb3h30flsv +2025-06-18T14:18:40.581Z [TRACE] payment-service - PATCH /api/v1/users - Status: 403 - Response time: 23ms - IP: 192.168.235.117 - User: user_1029 - RequestID: 3bmrs5yful8 +2025-06-18T14:18:40.681Z [INFO] auth-service - DELETE /api/v1/payments - Status: 200 - Response time: 1857ms - IP: 192.168.31.117 - User: user_1034 - RequestID: ngni5s8a03b +2025-06-18T14:18:40.781Z [INFO] user-service - Database UPDATE on orders - Execution time: 391ms - Rows affected: 76 - RequestID: c10suqspccf +2025-06-18T14:18:40.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.144.38 - RequestID: tisgpzp4iw +2025-06-18T14:18:40.981Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 104ms - Rows affected: 88 - RequestID: ij3nugmsfrr +2025-06-18T14:18:41.081Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1466ms - IP: 192.168.144.38 - User: user_1059 - RequestID: motcojqjqli +2025-06-18T14:18:41.181Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 400 - Response time: 407ms - IP: 192.168.141.100 - User: user_1079 - RequestID: f26j9zqq4ch +2025-06-18T14:18:41.281Z [TRACE] auth-service - Database DELETE on products - Execution time: 161ms - Rows affected: 80 - RequestID: 82cpzl1p37a +2025-06-18T14:18:41.381Z [DEBUG] payment-service - Operation: email_sent - Processing time: 893ms - RequestID: j03xvzm6w9 +2025-06-18T14:18:41.481Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 37ms - Rows affected: 35 - RequestID: bgpwng54fr +2025-06-18T14:18:41.581Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 163ms - RequestID: h6le1crgng +2025-06-18T14:18:41.681Z [INFO] order-service - Operation: order_created - Processing time: 160ms - RequestID: nfm87751fdp +2025-06-18T14:18:41.781Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1479ms - IP: 192.168.147.171 - User: user_1051 - RequestID: uzh077gf4ta +2025-06-18T14:18:41.881Z [DEBUG] order-service - Database DELETE on users - Execution time: 408ms - Rows affected: 71 - RequestID: jp8i7hkiwwg +2025-06-18T14:18:41.981Z [TRACE] order-service - Auth event: login_success - User: user_1009 - IP: 192.168.158.144 - RequestID: y3uy3w10t9d +2025-06-18T14:18:42.081Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 594ms - RequestID: shyeum1122p +2025-06-18T14:18:42.181Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 507ms - RequestID: 5gget2hpg35 +2025-06-18T14:18:42.281Z [INFO] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1712ms - IP: 192.168.68.128 - User: user_1024 - RequestID: ril2hnccma +2025-06-18T14:18:42.381Z [INFO] order-service - POST /api/v1/payments - Status: 201 - Response time: 1268ms - IP: 192.168.113.218 - User: user_1050 - RequestID: awk2dta15ht +2025-06-18T14:18:42.481Z [TRACE] user-service - Operation: email_sent - Processing time: 670ms - RequestID: trc13bj1kjs +2025-06-18T14:18:42.581Z [INFO] notification-service - Auth event: password_change - User: user_1056 - IP: 192.168.189.103 - RequestID: hfuf1z56kxg +2025-06-18T14:18:42.681Z [INFO] inventory-service - Auth event: login_success - User: user_1044 - IP: 192.168.167.32 - RequestID: ow9j63x3yh +2025-06-18T14:18:42.781Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 928ms - RequestID: 0vik8rdm8g5 +2025-06-18T14:18:42.881Z [DEBUG] user-service - Database INSERT on users - Execution time: 429ms - Rows affected: 99 - RequestID: 47nsqirmh5a +2025-06-18T14:18:42.981Z [TRACE] user-service - Operation: webhook_sent - Processing time: 76ms - RequestID: z0boqvof23r +2025-06-18T14:18:43.081Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 404 - Response time: 641ms - IP: 192.168.13.72 - User: user_1053 - RequestID: mzfo1p6yu9n +2025-06-18T14:18:43.181Z [DEBUG] payment-service - POST /api/v1/orders - Status: 403 - Response time: 1765ms - IP: 192.168.68.158 - User: user_1076 - RequestID: m28za0fzbbe +2025-06-18T14:18:43.281Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 384ms - IP: 192.168.113.218 - User: user_1004 - RequestID: l8mijypm8ba +2025-06-18T14:18:43.381Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 54ms - Rows affected: 99 - RequestID: 75gvk3scu3o +2025-06-18T14:18:43.481Z [TRACE] auth-service - Database SELECT on products - Execution time: 362ms - Rows affected: 70 - RequestID: nrus2ptb7gd +2025-06-18T14:18:43.581Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 394ms - RequestID: 1ith1s9levh +2025-06-18T14:18:43.681Z [DEBUG] payment-service - GET /api/v1/payments - Status: 201 - Response time: 16ms - IP: 192.168.14.77 - User: user_1076 - RequestID: xfl44bwatap +2025-06-18T14:18:43.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.147.171 - RequestID: cjhlivp2kp +2025-06-18T14:18:43.881Z [INFO] payment-service - GET /api/v1/inventory - Status: 201 - Response time: 1008ms - IP: 192.168.31.117 - User: user_1035 - RequestID: 59b1t87vv9m +2025-06-18T14:18:43.981Z [DEBUG] inventory-service - Auth event: logout - User: user_1067 - IP: 192.168.235.117 - RequestID: sxc8w4qcg1l +2025-06-18T14:18:44.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.187.199 - RequestID: uj9hpoka7yk +2025-06-18T14:18:44.181Z [DEBUG] payment-service - Auth event: login_success - User: user_1079 - IP: 192.168.141.100 - RequestID: lkggmsd5xo +2025-06-18T14:18:44.281Z [DEBUG] user-service - Operation: notification_queued - Processing time: 766ms - RequestID: ttim6jiyame +2025-06-18T14:18:44.381Z [TRACE] order-service - Database SELECT on sessions - Execution time: 390ms - Rows affected: 34 - RequestID: kiwiuz8gz3i +2025-06-18T14:18:44.481Z [TRACE] order-service - Database SELECT on sessions - Execution time: 479ms - Rows affected: 72 - RequestID: ci19amtl95 +2025-06-18T14:18:44.581Z [DEBUG] user-service - Operation: cache_hit - Processing time: 997ms - RequestID: p8njafh33f +2025-06-18T14:18:44.681Z [INFO] order-service - PUT /api/v1/payments - Status: 200 - Response time: 880ms - IP: 192.168.81.206 - User: user_1069 - RequestID: wv3w9sd338o +2025-06-18T14:18:44.781Z [INFO] user-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.11.60 - RequestID: pvlmo6gv0bp +2025-06-18T14:18:44.881Z [DEBUG] order-service - Auth event: password_change - User: user_1053 - IP: 192.168.11.60 - RequestID: cgczh0pdtvr +2025-06-18T14:18:44.981Z [DEBUG] inventory-service - Auth event: logout - User: user_1009 - IP: 192.168.1.152 - RequestID: va20r00uok +2025-06-18T14:18:45.081Z [INFO] notification-service - Operation: order_created - Processing time: 827ms - RequestID: qwpqlvfd65 +2025-06-18T14:18:45.181Z [INFO] user-service - Database UPDATE on payments - Execution time: 55ms - Rows affected: 20 - RequestID: jdqj7y3byfr +2025-06-18T14:18:45.281Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 500 - Response time: 531ms - IP: 192.168.196.226 - User: user_1080 - RequestID: wqmvdd1pvj +2025-06-18T14:18:45.381Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.13.72 - RequestID: fevlf7sv2dv +2025-06-18T14:18:45.481Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 154ms - Rows affected: 17 - RequestID: i5xg791dajq +2025-06-18T14:18:45.581Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 173ms - RequestID: pqtht7gi2z +2025-06-18T14:18:45.681Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 475ms - Rows affected: 49 - RequestID: trb0v9cq528 +2025-06-18T14:18:45.781Z [TRACE] order-service - PATCH /api/v1/users - Status: 401 - Response time: 938ms - IP: 192.168.138.123 - User: user_1002 - RequestID: vleni8tasj8 +2025-06-18T14:18:45.881Z [INFO] auth-service - Auth event: password_change - User: user_1032 - IP: 192.168.141.100 - RequestID: 3raedgqqg34 +2025-06-18T14:18:45.981Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 502 - Response time: 372ms - IP: 192.168.79.143 - User: user_1056 - RequestID: aw7oypfwmgp +2025-06-18T14:18:46.081Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 404 - Response time: 183ms - IP: 192.168.229.123 - User: user_1023 - RequestID: jwcfva7sx3 +2025-06-18T14:18:46.181Z [DEBUG] inventory-service - Auth event: login_success - User: user_1052 - IP: 192.168.100.240 - RequestID: 4mio3mjty9m +2025-06-18T14:18:46.281Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 404 - Response time: 708ms - IP: 192.168.113.218 - User: user_1088 - RequestID: 51tgtwlx8jj +2025-06-18T14:18:46.381Z [INFO] inventory-service - Database DELETE on payments - Execution time: 113ms - Rows affected: 32 - RequestID: ocbv5wd4fw +2025-06-18T14:18:46.481Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.138.123 - RequestID: z126u64ne4 +2025-06-18T14:18:46.581Z [DEBUG] notification-service - Auth event: password_change - User: user_1064 - IP: 192.168.79.143 - RequestID: umi1t8ahscm +2025-06-18T14:18:46.681Z [TRACE] user-service - GET /api/v1/auth/login - Status: 404 - Response time: 1779ms - IP: 192.168.141.100 - User: user_1047 - RequestID: lp4mlwpu0db +2025-06-18T14:18:46.781Z [DEBUG] auth-service - Auth event: logout - User: user_1040 - IP: 192.168.242.165 - RequestID: 87eac4ywqn +2025-06-18T14:18:46.881Z [TRACE] order-service - Auth event: logout - User: user_1011 - IP: 192.168.187.199 - RequestID: 1dr25sss0xd +2025-06-18T14:18:46.981Z [TRACE] order-service - Auth event: logout - User: user_1007 - IP: 192.168.85.229 - RequestID: o6jz3v1akij +2025-06-18T14:18:47.081Z [DEBUG] notification-service - POST /api/v1/orders - Status: 404 - Response time: 1426ms - IP: 192.168.1.152 - User: user_1028 - RequestID: sfii7jqihsk +2025-06-18T14:18:47.181Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 273ms - Rows affected: 82 - RequestID: 9yf9g410rzv +2025-06-18T14:18:47.281Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 450ms - Rows affected: 6 - RequestID: 95g9je1ykk8 +2025-06-18T14:18:47.381Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1776ms - IP: 192.168.36.218 - User: user_1075 - RequestID: y3w99aixct +2025-06-18T14:18:47.481Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 90ms - Rows affected: 3 - RequestID: s0iq41v3kg8 +2025-06-18T14:18:47.581Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 502 - Response time: 1766ms - IP: 192.168.181.225 - User: user_1099 - RequestID: 4fr0ylhmkpc +2025-06-18T14:18:47.681Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 242ms - Rows affected: 51 - RequestID: m0da9jz9g6p +2025-06-18T14:18:47.781Z [TRACE] user-service - Operation: email_sent - Processing time: 832ms - RequestID: 5q5n537yysk +2025-06-18T14:18:47.881Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 403 - Response time: 288ms - IP: 192.168.68.128 - User: user_1034 - RequestID: y16j6yti93a +2025-06-18T14:18:47.981Z [INFO] user-service - Database INSERT on payments - Execution time: 229ms - Rows affected: 52 - RequestID: ca8o21027gg +2025-06-18T14:18:48.081Z [DEBUG] order-service - Operation: order_created - Processing time: 553ms - RequestID: eiscp3v0vdk +2025-06-18T14:18:48.181Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 398ms - Rows affected: 32 - RequestID: 5ftxdiiv1p8 +2025-06-18T14:18:48.281Z [TRACE] notification-service - Auth event: password_change - User: user_1084 - IP: 192.168.227.233 - RequestID: e6qpszi1bkw +2025-06-18T14:18:48.381Z [TRACE] user-service - GET /api/v1/payments - Status: 502 - Response time: 1079ms - IP: 192.168.229.123 - User: user_1084 - RequestID: yf6vrq8i2hi +2025-06-18T14:18:48.481Z [INFO] payment-service - Operation: cache_hit - Processing time: 745ms - RequestID: 34cvava2ybk +2025-06-18T14:18:48.581Z [TRACE] notification-service - Database SELECT on products - Execution time: 135ms - Rows affected: 78 - RequestID: dtsxcdesagl +2025-06-18T14:18:48.681Z [TRACE] inventory-service - Auth event: password_change - User: user_1057 - IP: 192.168.30.79 - RequestID: wr8oi9cky7t +2025-06-18T14:18:48.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1046 - IP: 192.168.167.32 - RequestID: msy5b9zh3jd +2025-06-18T14:18:48.881Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 564ms - RequestID: o45xrpwgb6 +2025-06-18T14:18:48.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.11.60 - RequestID: zcacsgkq9sm +2025-06-18T14:18:49.081Z [INFO] notification-service - Database UPDATE on users - Execution time: 63ms - Rows affected: 51 - RequestID: 8suwr5lgyrv +2025-06-18T14:18:49.181Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 403 - Response time: 289ms - IP: 192.168.196.226 - User: user_1081 - RequestID: bxueq3kmg2b +2025-06-18T14:18:49.281Z [INFO] payment-service - Database INSERT on products - Execution time: 236ms - Rows affected: 12 - RequestID: r214hrd8byb +2025-06-18T14:18:49.381Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 403 - Response time: 329ms - IP: 192.168.187.199 - User: user_1032 - RequestID: ts0uyhowg4m +2025-06-18T14:18:49.481Z [TRACE] inventory-service - PUT /api/v1/users - Status: 401 - Response time: 1565ms - IP: 192.168.247.134 - User: user_1091 - RequestID: udxssm4tiif +2025-06-18T14:18:49.581Z [TRACE] payment-service - PATCH /api/v1/users - Status: 400 - Response time: 418ms - IP: 192.168.46.63 - User: user_1065 - RequestID: glb73dxis8o +2025-06-18T14:18:49.681Z [DEBUG] user-service - Database SELECT on users - Execution time: 194ms - Rows affected: 17 - RequestID: kdpmu3ajf +2025-06-18T14:18:49.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 856ms - RequestID: 1ncy4bruxp4 +2025-06-18T14:18:49.881Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1191ms - IP: 192.168.232.72 - User: user_1063 - RequestID: 44q29dmk1ps +2025-06-18T14:18:49.981Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 958ms - RequestID: smsldvh6dws +2025-06-18T14:18:50.081Z [DEBUG] payment-service - Auth event: password_change - User: user_1020 - IP: 192.168.181.225 - RequestID: mglm85lyxy +2025-06-18T14:18:50.181Z [TRACE] user-service - Auth event: password_change - User: user_1075 - IP: 192.168.227.77 - RequestID: gni8mpvknat +2025-06-18T14:18:50.281Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 784ms - IP: 192.168.79.143 - User: user_1044 - RequestID: cqiz0pppk8j +2025-06-18T14:18:50.381Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1835ms - IP: 192.168.194.41 - User: user_1063 - RequestID: 42nc7dahff6 +2025-06-18T14:18:50.481Z [INFO] order-service - POST /api/v1/payments - Status: 400 - Response time: 1138ms - IP: 192.168.13.72 - User: user_1075 - RequestID: n9nep26mxsm +2025-06-18T14:18:50.581Z [TRACE] order-service - Database DELETE on sessions - Execution time: 95ms - Rows affected: 43 - RequestID: jrbbw0em3x +2025-06-18T14:18:50.681Z [INFO] notification-service - Operation: notification_queued - Processing time: 774ms - RequestID: 9e2s3uhkbvi +2025-06-18T14:18:50.781Z [INFO] auth-service - Database SELECT on products - Execution time: 56ms - Rows affected: 52 - RequestID: jtxpbs918cp +2025-06-18T14:18:50.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1020 - IP: 192.168.11.60 - RequestID: l7d6ni3hq2o +2025-06-18T14:18:50.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.14.77 - RequestID: 61kkhupr0wo +2025-06-18T14:18:51.081Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 299ms - Rows affected: 32 - RequestID: d8r2qrhi7mh +2025-06-18T14:18:51.181Z [TRACE] user-service - Database INSERT on payments - Execution time: 110ms - Rows affected: 30 - RequestID: wbahtl5nnug +2025-06-18T14:18:51.281Z [TRACE] payment-service - Auth event: password_change - User: user_1087 - IP: 192.168.32.38 - RequestID: 2t2g1kcawxl +2025-06-18T14:18:51.381Z [INFO] inventory-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.33.76 - RequestID: ctwoiinsoes +2025-06-18T14:18:51.481Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 177ms - IP: 192.168.79.143 - User: user_1057 - RequestID: pl906qvr9wk +2025-06-18T14:18:51.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.240.169 - RequestID: 8faw9kx2yok +2025-06-18T14:18:51.681Z [TRACE] notification-service - Database SELECT on users - Execution time: 425ms - Rows affected: 34 - RequestID: voe4qakmh8l +2025-06-18T14:18:51.781Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 74ms - Rows affected: 37 - RequestID: i0phqtbz3zk +2025-06-18T14:18:51.881Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 401 - Response time: 300ms - IP: 192.168.97.87 - User: user_1029 - RequestID: uih3eoeiosj +2025-06-18T14:18:51.981Z [INFO] notification-service - GET /api/v1/users - Status: 201 - Response time: 487ms - IP: 192.168.167.32 - User: user_1083 - RequestID: 1yembg7154r +2025-06-18T14:18:52.081Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 652ms - RequestID: q7gpyo99ea +2025-06-18T14:18:52.181Z [INFO] auth-service - POST /api/v1/payments - Status: 502 - Response time: 1774ms - IP: 192.168.13.72 - User: user_1053 - RequestID: kmtlr331ypn +2025-06-18T14:18:52.281Z [TRACE] auth-service - Auth event: login_success - User: user_1079 - IP: 192.168.32.38 - RequestID: qmlyiwa7lf +2025-06-18T14:18:52.381Z [DEBUG] user-service - DELETE /api/v1/users - Status: 201 - Response time: 1883ms - IP: 192.168.167.32 - User: user_1087 - RequestID: 3fd0ic7pmig +2025-06-18T14:18:52.481Z [TRACE] auth-service - Database SELECT on products - Execution time: 390ms - Rows affected: 29 - RequestID: 9wp1sdal3kd +2025-06-18T14:18:52.581Z [INFO] notification-service - Auth event: login_success - User: user_1001 - IP: 192.168.235.117 - RequestID: adjxrdbh86 +2025-06-18T14:18:52.681Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1224ms - IP: 192.168.227.233 - User: user_1006 - RequestID: xr8f62wgnwj +2025-06-18T14:18:52.781Z [DEBUG] user-service - Auth event: password_change - User: user_1084 - IP: 192.168.147.171 - RequestID: wt9o808x0td +2025-06-18T14:18:52.881Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 853ms - RequestID: d40xh154r0e +2025-06-18T14:18:52.981Z [TRACE] notification-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.196.226 - RequestID: hcdzkj4qwf +2025-06-18T14:18:53.081Z [DEBUG] payment-service - GET /api/v1/users - Status: 400 - Response time: 577ms - IP: 192.168.229.123 - User: user_1089 - RequestID: jimy03j83j +2025-06-18T14:18:53.181Z [DEBUG] user-service - Operation: order_created - Processing time: 398ms - RequestID: 3gr6onppvdl +2025-06-18T14:18:53.281Z [INFO] inventory-service - POST /api/v1/orders - Status: 401 - Response time: 1226ms - IP: 192.168.64.33 - User: user_1023 - RequestID: n0ulll1kduj +2025-06-18T14:18:53.381Z [TRACE] payment-service - Operation: cache_hit - Processing time: 748ms - RequestID: okdyryyxmok +2025-06-18T14:18:53.481Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 401 - Response time: 1831ms - IP: 192.168.144.38 - User: user_1056 - RequestID: ks8wypar7i +2025-06-18T14:18:53.581Z [DEBUG] user-service - PATCH /api/v1/users - Status: 400 - Response time: 338ms - IP: 192.168.36.218 - User: user_1034 - RequestID: 5w1hgi7pxy9 +2025-06-18T14:18:53.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1070 - IP: 192.168.247.134 - RequestID: k1es63kqnm9 +2025-06-18T14:18:53.781Z [TRACE] inventory-service - Operation: email_sent - Processing time: 999ms - RequestID: tqwqxx35ye9 +2025-06-18T14:18:53.881Z [DEBUG] order-service - Operation: cache_hit - Processing time: 539ms - RequestID: 4n2to68w8kh +2025-06-18T14:18:53.981Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 48ms - Rows affected: 85 - RequestID: oevhgqu0ypp +2025-06-18T14:18:54.081Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 4ms - Rows affected: 8 - RequestID: 82gvnp4xnrj +2025-06-18T14:18:54.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.44.5 - RequestID: 3wxyao6l1u9 +2025-06-18T14:18:54.281Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 173ms - Rows affected: 92 - RequestID: wr78f74euh +2025-06-18T14:18:54.381Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1746ms - IP: 192.168.44.5 - User: user_1080 - RequestID: xl9txa9qoei +2025-06-18T14:18:54.481Z [DEBUG] order-service - DELETE /api/v1/users - Status: 500 - Response time: 978ms - IP: 192.168.240.169 - User: user_1009 - RequestID: ao774yhkr86 +2025-06-18T14:18:54.581Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1710ms - IP: 192.168.97.87 - User: user_1000 - RequestID: g1dxmjhvje9 +2025-06-18T14:18:54.681Z [TRACE] notification-service - Database SELECT on orders - Execution time: 290ms - Rows affected: 80 - RequestID: u2y8qmfqys +2025-06-18T14:18:54.781Z [TRACE] auth-service - Database UPDATE on users - Execution time: 390ms - Rows affected: 19 - RequestID: f3p4i1vcelg +2025-06-18T14:18:54.881Z [INFO] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 1726ms - IP: 192.168.144.38 - User: user_1076 - RequestID: yw9ut1ugwcp +2025-06-18T14:18:54.981Z [INFO] order-service - Database SELECT on products - Execution time: 220ms - Rows affected: 5 - RequestID: arpq37m0h0h +2025-06-18T14:18:55.081Z [TRACE] auth-service - Database UPDATE on users - Execution time: 177ms - Rows affected: 61 - RequestID: zcwko3afbc +2025-06-18T14:18:55.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 68ms - RequestID: 0q1lfbce478c +2025-06-18T14:18:55.281Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 447ms - Rows affected: 0 - RequestID: 8ja2pxi6hg3 +2025-06-18T14:18:55.381Z [INFO] notification-service - Auth event: login_failed - User: user_1026 - IP: 192.168.32.38 - RequestID: tl4zfl8f6r +2025-06-18T14:18:55.481Z [TRACE] notification-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.211.72 - RequestID: 1ayfn1vzflh +2025-06-18T14:18:55.581Z [INFO] auth-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.194.41 - RequestID: gumxm56wmc +2025-06-18T14:18:55.681Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 326ms - Rows affected: 26 - RequestID: 8quuuv6g6hh +2025-06-18T14:18:55.781Z [DEBUG] order-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.68.158 - RequestID: bt7dfenrjfl +2025-06-18T14:18:55.881Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 559ms - RequestID: 3k44swcj4jv +2025-06-18T14:18:55.981Z [DEBUG] auth-service - GET /api/v1/orders - Status: 404 - Response time: 273ms - IP: 192.168.247.134 - User: user_1040 - RequestID: 8hyjyw7tcj9 +2025-06-18T14:18:56.081Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 808ms - IP: 192.168.79.141 - User: user_1089 - RequestID: m124t8z21e8 +2025-06-18T14:18:56.181Z [TRACE] user-service - Database DELETE on payments - Execution time: 226ms - Rows affected: 66 - RequestID: 634yh9pfvbw +2025-06-18T14:18:56.281Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 489ms - RequestID: jclzz61pe9 +2025-06-18T14:18:56.381Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 404 - Response time: 1911ms - IP: 192.168.79.141 - User: user_1085 - RequestID: qhmphrpej0d +2025-06-18T14:18:56.481Z [INFO] user-service - POST /api/v1/auth/login - Status: 403 - Response time: 519ms - IP: 192.168.30.79 - User: user_1012 - RequestID: 07xfgttnk9n +2025-06-18T14:18:56.581Z [INFO] inventory-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.10.184 - RequestID: td1bit9tat +2025-06-18T14:18:56.681Z [INFO] order-service - PUT /api/v1/orders - Status: 401 - Response time: 14ms - IP: 192.168.11.60 - User: user_1004 - RequestID: lie4e8gkgn +2025-06-18T14:18:56.781Z [INFO] user-service - Auth event: login_failed - User: user_1083 - IP: 192.168.227.233 - RequestID: o7zwd2sgttq +2025-06-18T14:18:56.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1057 - IP: 192.168.232.72 - RequestID: sfj96e0yckk +2025-06-18T14:18:56.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 125ms - RequestID: 5l28l9sio4y +2025-06-18T14:18:57.081Z [INFO] inventory-service - Database DELETE on payments - Execution time: 128ms - Rows affected: 59 - RequestID: vbnhl5vkjpc +2025-06-18T14:18:57.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 954ms - RequestID: z7df3hrt89j +2025-06-18T14:18:57.281Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 468ms - Rows affected: 89 - RequestID: aencfxt6m6i +2025-06-18T14:18:57.381Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 504ms - IP: 192.168.79.116 - User: user_1067 - RequestID: f5mrdqe7ax +2025-06-18T14:18:57.481Z [DEBUG] notification-service - Operation: email_sent - Processing time: 605ms - RequestID: zs6mo8in2u +2025-06-18T14:18:57.581Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 266ms - Rows affected: 73 - RequestID: g7yknkf4ks8 +2025-06-18T14:18:57.681Z [DEBUG] order-service - Database INSERT on users - Execution time: 441ms - Rows affected: 60 - RequestID: secl1eksiw +2025-06-18T14:18:57.781Z [DEBUG] notification-service - Auth event: login_success - User: user_1078 - IP: 192.168.68.128 - RequestID: bs9cq6n1qt +2025-06-18T14:18:57.881Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 414ms - RequestID: assgnat0byb +2025-06-18T14:18:57.981Z [TRACE] order-service - Database SELECT on products - Execution time: 156ms - Rows affected: 25 - RequestID: 2qmkfxs0gxu +2025-06-18T14:18:58.081Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 185ms - Rows affected: 7 - RequestID: k80rojljom7 +2025-06-18T14:18:58.181Z [TRACE] auth-service - Operation: cache_hit - Processing time: 258ms - RequestID: 8v82dipum7w +2025-06-18T14:18:58.281Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 404 - Response time: 1556ms - IP: 192.168.194.41 - User: user_1014 - RequestID: 6bl432zrevk +2025-06-18T14:18:58.381Z [INFO] user-service - Database DELETE on products - Execution time: 405ms - Rows affected: 63 - RequestID: wujfiarf5l +2025-06-18T14:18:58.481Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 80ms - IP: 192.168.247.134 - User: user_1030 - RequestID: xwuwqd6fwdk +2025-06-18T14:18:58.581Z [TRACE] order-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.144.38 - RequestID: dyentkwvtka +2025-06-18T14:18:58.681Z [DEBUG] user-service - Operation: email_sent - Processing time: 482ms - RequestID: khhph59tnci +2025-06-18T14:18:58.781Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 659ms - RequestID: mukexs4nyal +2025-06-18T14:18:58.881Z [TRACE] user-service - Database DELETE on payments - Execution time: 63ms - Rows affected: 82 - RequestID: 3u2e6wri1ml +2025-06-18T14:18:58.981Z [TRACE] notification-service - Operation: order_created - Processing time: 864ms - RequestID: 3ypg0iemasi +2025-06-18T14:18:59.081Z [INFO] order-service - Operation: payment_processed - Processing time: 176ms - RequestID: a4gexhr8nyd +2025-06-18T14:18:59.181Z [TRACE] notification-service - Operation: notification_queued - Processing time: 541ms - RequestID: 7r6rxuile24 +2025-06-18T14:18:59.281Z [TRACE] inventory-service - Auth event: logout - User: user_1033 - IP: 192.168.68.158 - RequestID: 3ahk39p63bd +2025-06-18T14:18:59.381Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 349ms - Rows affected: 30 - RequestID: n09f4i6smg +2025-06-18T14:18:59.481Z [TRACE] user-service - Auth event: logout - User: user_1070 - IP: 192.168.242.165 - RequestID: rqbdgxtrwur +2025-06-18T14:18:59.581Z [DEBUG] user-service - POST /api/v1/inventory - Status: 404 - Response time: 1360ms - IP: 192.168.79.116 - User: user_1021 - RequestID: wsbbe1m91o9 +2025-06-18T14:18:59.681Z [INFO] inventory-service - Auth event: login_failed - User: user_1001 - IP: 192.168.159.94 - RequestID: gfq5pwsydbg +2025-06-18T14:18:59.781Z [TRACE] payment-service - Database SELECT on payments - Execution time: 233ms - Rows affected: 62 - RequestID: 9z94fqm4ly4 +2025-06-18T14:18:59.881Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 503 - Response time: 2008ms - IP: 192.168.68.158 - User: user_1081 - RequestID: w7du6h6zqba +2025-06-18T14:18:59.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 316ms - RequestID: ofe0gunggn +2025-06-18T14:19:00.081Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 248ms - Rows affected: 99 - RequestID: roe2srtb0oq +2025-06-18T14:19:00.181Z [TRACE] auth-service - Auth event: password_change - User: user_1024 - IP: 192.168.64.33 - RequestID: qloti52hiz +2025-06-18T14:19:00.281Z [INFO] notification-service - Database DELETE on products - Execution time: 492ms - Rows affected: 32 - RequestID: gjhidgz7v0o +2025-06-18T14:19:00.381Z [TRACE] inventory-service - Database INSERT on products - Execution time: 276ms - Rows affected: 97 - RequestID: yf5zaiarpqi +2025-06-18T14:19:00.481Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 484ms - Rows affected: 10 - RequestID: eehyx1wqy8w +2025-06-18T14:19:00.581Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 29ms - Rows affected: 12 - RequestID: q5gakf5mz4e +2025-06-18T14:19:00.681Z [INFO] user-service - Database INSERT on orders - Execution time: 319ms - Rows affected: 89 - RequestID: fw5jzdg7fa +2025-06-18T14:19:00.781Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 943ms - RequestID: rq7oe94j5ae +2025-06-18T14:19:00.881Z [INFO] payment-service - Auth event: password_change - User: user_1008 - IP: 192.168.10.184 - RequestID: 7aqg9e3dl3n +2025-06-18T14:19:00.981Z [INFO] inventory-service - Auth event: login_failed - User: user_1022 - IP: 192.168.159.94 - RequestID: e4s87gnfdu +2025-06-18T14:19:01.081Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 165ms - Rows affected: 81 - RequestID: j3oa9qdtdw +2025-06-18T14:19:01.181Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 599ms - RequestID: 9ofwrwwv48u +2025-06-18T14:19:01.281Z [INFO] user-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.158.144 - RequestID: a914mgg6ek +2025-06-18T14:19:01.381Z [INFO] notification-service - GET /api/v1/users - Status: 401 - Response time: 1473ms - IP: 192.168.79.141 - User: user_1091 - RequestID: v6383086fjg +2025-06-18T14:19:01.481Z [INFO] auth-service - Database DELETE on users - Execution time: 453ms - Rows affected: 32 - RequestID: tbqeb2p2i3 +2025-06-18T14:19:01.581Z [TRACE] user-service - GET /api/v1/auth/login - Status: 401 - Response time: 1924ms - IP: 192.168.247.134 - User: user_1023 - RequestID: wlyi93a9h1 +2025-06-18T14:19:01.681Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 740ms - RequestID: eyca3k3czxu +2025-06-18T14:19:01.781Z [TRACE] auth-service - Database SELECT on products - Execution time: 377ms - Rows affected: 21 - RequestID: 5pmihrhmgol +2025-06-18T14:19:01.881Z [INFO] inventory-service - Auth event: login_success - User: user_1083 - IP: 192.168.133.7 - RequestID: 14oluhkvoi2 +2025-06-18T14:19:01.981Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 954ms - IP: 192.168.174.114 - User: user_1004 - RequestID: 1eg6e1m8sbr +2025-06-18T14:19:02.081Z [TRACE] inventory-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 212ms - IP: 192.168.81.206 - User: user_1018 - RequestID: 65w5krh4gjv +2025-06-18T14:19:02.181Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 404 - Response time: 1952ms - IP: 192.168.227.77 - User: user_1099 - RequestID: moaicjic6xi +2025-06-18T14:19:02.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.64.33 - RequestID: jn35kfiya9n +2025-06-18T14:19:02.381Z [TRACE] user-service - Auth event: login_success - User: user_1064 - IP: 192.168.11.60 - RequestID: 3ui8kqemnga +2025-06-18T14:19:02.481Z [DEBUG] order-service - PUT /api/v1/payments - Status: 400 - Response time: 1380ms - IP: 192.168.138.123 - User: user_1005 - RequestID: k7tdk2vxj3 +2025-06-18T14:19:02.581Z [INFO] order-service - POST /api/v1/payments - Status: 500 - Response time: 686ms - IP: 192.168.138.123 - User: user_1086 - RequestID: ybzslsdvtv +2025-06-18T14:19:02.681Z [TRACE] payment-service - Database DELETE on products - Execution time: 292ms - Rows affected: 31 - RequestID: w325gcrjz3 +2025-06-18T14:19:02.781Z [TRACE] user-service - Operation: email_sent - Processing time: 782ms - RequestID: hfudujnv9ft +2025-06-18T14:19:02.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 649ms - RequestID: u0ooo43jnsd +2025-06-18T14:19:02.981Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 503 - Response time: 958ms - IP: 192.168.30.79 - User: user_1007 - RequestID: gfu9y9395ot +2025-06-18T14:19:03.081Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 347ms - Rows affected: 8 - RequestID: qcl2ho8aqm +2025-06-18T14:19:03.181Z [TRACE] notification-service - Database DELETE on orders - Execution time: 38ms - Rows affected: 77 - RequestID: eit4w8pkjq +2025-06-18T14:19:03.281Z [INFO] user-service - Database UPDATE on payments - Execution time: 411ms - Rows affected: 54 - RequestID: hzp0li70uv5 +2025-06-18T14:19:03.381Z [INFO] inventory-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.181.225 - RequestID: 01u6rubs8991 +2025-06-18T14:19:03.481Z [TRACE] inventory-service - Auth event: logout - User: user_1071 - IP: 192.168.138.123 - RequestID: jo6oqmi94ns +2025-06-18T14:19:03.581Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1760ms - IP: 192.168.232.72 - User: user_1052 - RequestID: j9qxyxvhnz +2025-06-18T14:19:03.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 569ms - RequestID: hbpvp13sbmb +2025-06-18T14:19:03.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.1.152 - RequestID: 402jnyf7e5b +2025-06-18T14:19:03.881Z [INFO] auth-service - Auth event: password_change - User: user_1003 - IP: 192.168.181.225 - RequestID: h5fyk7h9e04 +2025-06-18T14:19:03.981Z [TRACE] order-service - Operation: webhook_sent - Processing time: 757ms - RequestID: ymsb6tt68w +2025-06-18T14:19:04.081Z [INFO] payment-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.187.199 - RequestID: r82oi89lvk +2025-06-18T14:19:04.181Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 237ms - Rows affected: 93 - RequestID: nw4thhx2ntp +2025-06-18T14:19:04.281Z [TRACE] order-service - Operation: email_sent - Processing time: 409ms - RequestID: 0e4d4cy51r5d +2025-06-18T14:19:04.381Z [INFO] notification-service - Database SELECT on orders - Execution time: 333ms - Rows affected: 52 - RequestID: a1c3of8eq0r +2025-06-18T14:19:04.481Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 491ms - RequestID: suv7087b0f +2025-06-18T14:19:04.581Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 198ms - Rows affected: 1 - RequestID: rhcttzqivnf +2025-06-18T14:19:04.681Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 401 - Response time: 1691ms - IP: 192.168.227.233 - User: user_1008 - RequestID: a4vgwhvmej +2025-06-18T14:19:04.781Z [INFO] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 1392ms - IP: 192.168.97.87 - User: user_1083 - RequestID: ybmhkvfy8om +2025-06-18T14:19:04.881Z [INFO] user-service - Database DELETE on products - Execution time: 55ms - Rows affected: 42 - RequestID: ffyqhckiy7e +2025-06-18T14:19:04.981Z [INFO] payment-service - POST /api/v1/auth/login - Status: 502 - Response time: 1496ms - IP: 192.168.242.165 - User: user_1079 - RequestID: 3knfxnmmsh6 +2025-06-18T14:19:05.081Z [INFO] inventory-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.159.94 - RequestID: rxmr6o9yb2k +2025-06-18T14:19:05.181Z [INFO] user-service - DELETE /api/v1/payments - Status: 503 - Response time: 141ms - IP: 192.168.189.103 - User: user_1051 - RequestID: d813pbl89ha +2025-06-18T14:19:05.281Z [TRACE] user-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.81.206 - RequestID: jy4oixkf5ok +2025-06-18T14:19:05.381Z [INFO] auth-service - DELETE /api/v1/orders - Status: 404 - Response time: 98ms - IP: 192.168.36.218 - User: user_1074 - RequestID: f2f6rnrbpm6 +2025-06-18T14:19:05.481Z [INFO] order-service - Auth event: logout - User: user_1002 - IP: 192.168.181.225 - RequestID: 7hzflcp5eqx +2025-06-18T14:19:05.581Z [TRACE] order-service - Operation: webhook_sent - Processing time: 882ms - RequestID: mzrai98y53 +2025-06-18T14:19:05.681Z [INFO] payment-service - Auth event: password_change - User: user_1056 - IP: 192.168.31.117 - RequestID: 9c7qa5a0ov8 +2025-06-18T14:19:05.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1059 - IP: 192.168.211.72 - RequestID: 8nn7fpgvqt3 +2025-06-18T14:19:05.881Z [INFO] payment-service - Operation: email_sent - Processing time: 413ms - RequestID: cvz264a87hu +2025-06-18T14:19:05.981Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1455ms - IP: 192.168.194.41 - User: user_1096 - RequestID: sen65bm95i +2025-06-18T14:19:06.081Z [TRACE] payment-service - Auth event: login_success - User: user_1054 - IP: 192.168.32.38 - RequestID: 3q4dsd9vzej +2025-06-18T14:19:06.181Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 1470ms - IP: 192.168.196.226 - User: user_1081 - RequestID: n285wuvkbl +2025-06-18T14:19:06.281Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 168ms - Rows affected: 51 - RequestID: 1sbq3wmc0syh +2025-06-18T14:19:06.381Z [TRACE] payment-service - Operation: cache_hit - Processing time: 191ms - RequestID: 9y009ho4cma +2025-06-18T14:19:06.481Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 17ms - Rows affected: 28 - RequestID: kzyqc20ls5f +2025-06-18T14:19:06.581Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 505ms - RequestID: qpwc6atkb38 +2025-06-18T14:19:06.681Z [TRACE] order-service - Operation: inventory_updated - Processing time: 546ms - RequestID: 9k53gmnfdkc +2025-06-18T14:19:06.781Z [INFO] user-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.53.133 - RequestID: 337v1pgjlzn +2025-06-18T14:19:06.881Z [INFO] auth-service - GET /api/v1/payments - Status: 502 - Response time: 1340ms - IP: 192.168.31.117 - User: user_1015 - RequestID: v5v822q8h1h +2025-06-18T14:19:06.981Z [TRACE] auth-service - Database SELECT on orders - Execution time: 313ms - Rows affected: 28 - RequestID: vibkosfki4i +2025-06-18T14:19:07.081Z [TRACE] payment-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.133.7 - RequestID: wnjzzqxib9e +2025-06-18T14:19:07.181Z [INFO] user-service - Auth event: logout - User: user_1019 - IP: 192.168.68.128 - RequestID: uzhzgjt188o +2025-06-18T14:19:07.281Z [TRACE] notification-service - GET /api/v1/inventory - Status: 404 - Response time: 517ms - IP: 192.168.79.116 - User: user_1015 - RequestID: 2v2d2p4guvl +2025-06-18T14:19:07.381Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 416ms - RequestID: n3elshhvun +2025-06-18T14:19:07.481Z [INFO] auth-service - POST /api/v1/orders - Status: 503 - Response time: 1605ms - IP: 192.168.138.123 - User: user_1039 - RequestID: ux6da9ycgld +2025-06-18T14:19:07.581Z [INFO] order-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.227.233 - RequestID: 0qe1r3m5igss +2025-06-18T14:19:07.681Z [DEBUG] user-service - Operation: order_created - Processing time: 154ms - RequestID: ys2emuiuv2 +2025-06-18T14:19:07.781Z [TRACE] order-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.229.123 - RequestID: hrryejhva8 +2025-06-18T14:19:07.881Z [INFO] inventory-service - Database DELETE on payments - Execution time: 30ms - Rows affected: 27 - RequestID: cvxta71rao4 +2025-06-18T14:19:07.981Z [INFO] order-service - Auth event: login_success - User: user_1028 - IP: 192.168.170.215 - RequestID: j6nu16yy4dj +2025-06-18T14:19:08.081Z [INFO] inventory-service - Auth event: logout - User: user_1073 - IP: 192.168.227.77 - RequestID: cffic2k7z6 +2025-06-18T14:19:08.181Z [DEBUG] inventory-service - Auth event: password_change - User: user_1025 - IP: 192.168.32.38 - RequestID: d05knn9gp9f +2025-06-18T14:19:08.281Z [DEBUG] notification-service - Database SELECT on users - Execution time: 339ms - Rows affected: 84 - RequestID: sb6c3jq4yj +2025-06-18T14:19:08.381Z [INFO] payment-service - Database UPDATE on products - Execution time: 72ms - Rows affected: 37 - RequestID: 3y4x1hkrh7p +2025-06-18T14:19:08.481Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 957ms - RequestID: 3tizpdgf24r +2025-06-18T14:19:08.581Z [INFO] payment-service - Auth event: login_failed - User: user_1012 - IP: 192.168.46.63 - RequestID: 8lq37ifsunu +2025-06-18T14:19:08.681Z [INFO] payment-service - Database SELECT on orders - Execution time: 205ms - Rows affected: 82 - RequestID: ad9jns2si +2025-06-18T14:19:08.781Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 401 - Response time: 438ms - IP: 192.168.36.218 - User: user_1001 - RequestID: 45emb0fehz3 +2025-06-18T14:19:08.881Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 370ms - RequestID: gg5xzguloi9 +2025-06-18T14:19:08.981Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 602ms - RequestID: 05ku26ou2nq3 +2025-06-18T14:19:09.081Z [INFO] payment-service - DELETE /api/v1/orders - Status: 404 - Response time: 501ms - IP: 192.168.227.233 - User: user_1019 - RequestID: wepm46y08ig +2025-06-18T14:19:09.181Z [INFO] auth-service - Auth event: login_success - User: user_1031 - IP: 192.168.240.169 - RequestID: ssozv6qk10f +2025-06-18T14:19:09.281Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 1003ms - RequestID: gq2dhbww6b7 +2025-06-18T14:19:09.381Z [INFO] auth-service - Database UPDATE on orders - Execution time: 475ms - Rows affected: 55 - RequestID: lgl69djb7j +2025-06-18T14:19:09.481Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 114ms - Rows affected: 66 - RequestID: vapunb4zyzr +2025-06-18T14:19:09.581Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 95ms - IP: 192.168.28.146 - User: user_1007 - RequestID: xugyql6z66a +2025-06-18T14:19:09.681Z [INFO] order-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.242.165 - RequestID: 8lmea9s8uvl +2025-06-18T14:19:09.781Z [TRACE] payment-service - Database UPDATE on users - Execution time: 135ms - Rows affected: 69 - RequestID: n5z3a7hdkq +2025-06-18T14:19:09.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1065 - IP: 192.168.44.5 - RequestID: 9jnpivtih +2025-06-18T14:19:09.981Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 338ms - Rows affected: 81 - RequestID: hzdbco0ot5v +2025-06-18T14:19:10.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.10.184 - RequestID: njg0rnb9ma +2025-06-18T14:19:10.181Z [INFO] order-service - Database UPDATE on products - Execution time: 120ms - Rows affected: 79 - RequestID: bfenjol9lst +2025-06-18T14:19:10.281Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 404 - Response time: 1560ms - IP: 192.168.189.103 - User: user_1073 - RequestID: tz5y3hx37jl +2025-06-18T14:19:10.381Z [INFO] notification-service - POST /api/v1/users - Status: 201 - Response time: 747ms - IP: 192.168.211.72 - User: user_1042 - RequestID: 85qbc00fd4o +2025-06-18T14:19:10.481Z [INFO] payment-service - Operation: inventory_updated - Processing time: 536ms - RequestID: udultr2swmm +2025-06-18T14:19:10.581Z [TRACE] order-service - Database DELETE on products - Execution time: 297ms - Rows affected: 61 - RequestID: tjwm510aqf +2025-06-18T14:19:10.681Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 119ms - Rows affected: 68 - RequestID: wldd9992m9f +2025-06-18T14:19:10.781Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 413ms - RequestID: 11q1o03zt3tj +2025-06-18T14:19:10.881Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 420ms - Rows affected: 87 - RequestID: 7n0xlsm97za +2025-06-18T14:19:10.981Z [INFO] notification-service - Operation: cache_miss - Processing time: 828ms - RequestID: hv3ydm1e6bm +2025-06-18T14:19:11.081Z [INFO] notification-service - Operation: notification_queued - Processing time: 261ms - RequestID: lt4hjbi04fm +2025-06-18T14:19:11.181Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 364ms - Rows affected: 24 - RequestID: 2o8xk7euqnm +2025-06-18T14:19:11.281Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.68.158 - RequestID: eq2fp79rps +2025-06-18T14:19:11.381Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1419ms - IP: 192.168.11.60 - User: user_1047 - RequestID: u3x705rwzvp +2025-06-18T14:19:11.481Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 2004ms - IP: 192.168.46.63 - User: user_1087 - RequestID: uv4d9bidgoo +2025-06-18T14:19:11.581Z [INFO] order-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.68.158 - RequestID: 8o7dhlx2jto +2025-06-18T14:19:11.681Z [DEBUG] user-service - Auth event: login_success - User: user_1043 - IP: 192.168.13.72 - RequestID: hze44xcxrdl +2025-06-18T14:19:11.781Z [TRACE] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 1634ms - IP: 192.168.196.226 - User: user_1000 - RequestID: mhjw3viteno +2025-06-18T14:19:11.881Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 923ms - RequestID: cqkd64czwi8 +2025-06-18T14:19:11.981Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 587ms - IP: 192.168.36.218 - User: user_1099 - RequestID: gm4g9ed9g6r +2025-06-18T14:19:12.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 967ms - RequestID: 8a4xyjdjqd5 +2025-06-18T14:19:12.181Z [DEBUG] user-service - Auth event: logout - User: user_1028 - IP: 192.168.138.123 - RequestID: yxovjgezme8 +2025-06-18T14:19:12.281Z [TRACE] user-service - PUT /api/v1/payments - Status: 200 - Response time: 1623ms - IP: 192.168.30.79 - User: user_1040 - RequestID: o0v09ihc00q +2025-06-18T14:19:12.381Z [INFO] payment-service - Database INSERT on products - Execution time: 231ms - Rows affected: 86 - RequestID: 1tkuh7yvc85 +2025-06-18T14:19:12.481Z [INFO] auth-service - Auth event: logout - User: user_1074 - IP: 192.168.14.77 - RequestID: oslposw87y +2025-06-18T14:19:12.581Z [INFO] user-service - Operation: order_created - Processing time: 384ms - RequestID: mmanfvzjkwf +2025-06-18T14:19:12.681Z [INFO] order-service - Operation: cache_miss - Processing time: 690ms - RequestID: lmq2iu4i8te +2025-06-18T14:19:12.781Z [TRACE] user-service - GET /api/v1/orders - Status: 500 - Response time: 781ms - IP: 192.168.196.226 - User: user_1065 - RequestID: pd9ttoldtuo +2025-06-18T14:19:12.881Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 443ms - Rows affected: 63 - RequestID: 8iqm8vg9xaw +2025-06-18T14:19:12.981Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 503 - Response time: 793ms - IP: 192.168.211.72 - User: user_1075 - RequestID: gxe2jsi52g6 +2025-06-18T14:19:13.081Z [INFO] user-service - Operation: payment_processed - Processing time: 365ms - RequestID: ocf2tv5mva +2025-06-18T14:19:13.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 824ms - RequestID: r7sxqsqh0sj +2025-06-18T14:19:13.281Z [DEBUG] order-service - Database INSERT on orders - Execution time: 344ms - Rows affected: 10 - RequestID: jb9te3v55ej +2025-06-18T14:19:13.381Z [TRACE] payment-service - Auth event: logout - User: user_1030 - IP: 192.168.194.41 - RequestID: u3qdls19ma9 +2025-06-18T14:19:13.481Z [DEBUG] user-service - Database DELETE on products - Execution time: 141ms - Rows affected: 25 - RequestID: coqaxkb8f2j +2025-06-18T14:19:13.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 989ms - RequestID: hw98mvtyg4 +2025-06-18T14:19:13.681Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 365ms - Rows affected: 73 - RequestID: f1rqt66tu3s +2025-06-18T14:19:13.781Z [INFO] payment-service - Database DELETE on users - Execution time: 167ms - Rows affected: 19 - RequestID: 775k8flkaw5 +2025-06-18T14:19:13.881Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 333ms - Rows affected: 82 - RequestID: 9pzh2lfjnjw +2025-06-18T14:19:13.981Z [TRACE] user-service - Database UPDATE on orders - Execution time: 216ms - Rows affected: 64 - RequestID: sw948tz0ya8 +2025-06-18T14:19:14.081Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 575ms - RequestID: xjh4n4cxzo +2025-06-18T14:19:14.181Z [INFO] order-service - Operation: cache_hit - Processing time: 287ms - RequestID: fzr1c9c11zl +2025-06-18T14:19:14.281Z [INFO] auth-service - Operation: cache_miss - Processing time: 133ms - RequestID: zrax2dxhx3 +2025-06-18T14:19:14.381Z [TRACE] inventory-service - POST /api/v1/users - Status: 201 - Response time: 400ms - IP: 192.168.144.38 - User: user_1002 - RequestID: z15fn5jw3bl +2025-06-18T14:19:14.481Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.158.144 - RequestID: 8pb70xdenmb +2025-06-18T14:19:14.581Z [DEBUG] user-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.81.206 - RequestID: 8cbtpsec0rr +2025-06-18T14:19:14.681Z [INFO] user-service - Operation: inventory_updated - Processing time: 941ms - RequestID: h5vnzwjtlbp +2025-06-18T14:19:14.781Z [TRACE] auth-service - Auth event: login_success - User: user_1015 - IP: 192.168.1.152 - RequestID: kbr4a978pdr +2025-06-18T14:19:14.881Z [TRACE] notification-service - Auth event: login_success - User: user_1010 - IP: 192.168.36.218 - RequestID: fkmxzigi735 +2025-06-18T14:19:14.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1097 - IP: 192.168.181.225 - RequestID: mdvcy9y5l5 +2025-06-18T14:19:15.081Z [TRACE] user-service - Operation: cache_miss - Processing time: 1031ms - RequestID: u7ramx9s6s8 +2025-06-18T14:19:15.181Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 115ms - RequestID: whjxzpzf5nd +2025-06-18T14:19:15.281Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 758ms - RequestID: gwfjwnb3fwh +2025-06-18T14:19:15.381Z [TRACE] order-service - Auth event: login_failed - User: user_1044 - IP: 192.168.28.146 - RequestID: uenx1scjfzj +2025-06-18T14:19:15.481Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 500 - Response time: 1981ms - IP: 192.168.10.184 - User: user_1073 - RequestID: c01t8o2y1z5 +2025-06-18T14:19:15.581Z [TRACE] auth-service - Operation: notification_queued - Processing time: 304ms - RequestID: 3dqx405xzmq +2025-06-18T14:19:15.681Z [INFO] auth-service - Auth event: login_failed - User: user_1072 - IP: 192.168.53.133 - RequestID: cow14ml8e9 +2025-06-18T14:19:15.781Z [INFO] user-service - POST /api/v1/users - Status: 503 - Response time: 733ms - IP: 192.168.79.116 - User: user_1099 - RequestID: 8kgwwrqeoxv +2025-06-18T14:19:15.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 1011ms - RequestID: 9vsc7187yxn +2025-06-18T14:19:15.981Z [INFO] user-service - Auth event: password_change - User: user_1093 - IP: 192.168.174.114 - RequestID: gfue6metu29 +2025-06-18T14:19:16.081Z [INFO] auth-service - Auth event: logout - User: user_1029 - IP: 192.168.196.226 - RequestID: hecsk9r7a3n +2025-06-18T14:19:16.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.170.215 - RequestID: 3pyvpc2ui17 +2025-06-18T14:19:16.281Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 350ms - Rows affected: 23 - RequestID: x01l3d8socp +2025-06-18T14:19:16.381Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 139ms - Rows affected: 14 - RequestID: 8lz0y4scqte +2025-06-18T14:19:16.481Z [INFO] order-service - Operation: email_sent - Processing time: 764ms - RequestID: qw3aqe1s45 +2025-06-18T14:19:16.581Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 214ms - Rows affected: 74 - RequestID: ibq0w3zasvr +2025-06-18T14:19:16.681Z [INFO] inventory-service - Operation: order_created - Processing time: 784ms - RequestID: 6maag9ohxv7 +2025-06-18T14:19:16.781Z [INFO] inventory-service - GET /api/v1/users - Status: 503 - Response time: 157ms - IP: 192.168.11.60 - User: user_1016 - RequestID: xunuse9x15a +2025-06-18T14:19:16.881Z [INFO] inventory-service - Operation: order_created - Processing time: 914ms - RequestID: zsztfjyvcs +2025-06-18T14:19:16.981Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 408ms - RequestID: 0mvds13mm1xq +2025-06-18T14:19:17.081Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 17ms - Rows affected: 67 - RequestID: 68ndzu0fkwl +2025-06-18T14:19:17.181Z [DEBUG] payment-service - GET /api/v1/users - Status: 401 - Response time: 1718ms - IP: 192.168.159.94 - User: user_1012 - RequestID: ded9di3bklk +2025-06-18T14:19:17.281Z [TRACE] user-service - Auth event: password_change - User: user_1010 - IP: 192.168.247.134 - RequestID: 2rhv5f7a3ms +2025-06-18T14:19:17.381Z [TRACE] payment-service - Auth event: login_failed - User: user_1054 - IP: 192.168.81.206 - RequestID: qx75xsk27g +2025-06-18T14:19:17.481Z [INFO] inventory-service - POST /api/v1/payments - Status: 403 - Response time: 1339ms - IP: 192.168.33.76 - User: user_1087 - RequestID: 2bmfmebuhmj +2025-06-18T14:19:17.581Z [TRACE] order-service - Operation: webhook_sent - Processing time: 1027ms - RequestID: kru34hfci7s +2025-06-18T14:19:17.681Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 87ms - Rows affected: 25 - RequestID: ihdozaqiqym +2025-06-18T14:19:17.781Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 73ms - Rows affected: 49 - RequestID: r5pxys30np +2025-06-18T14:19:17.881Z [INFO] payment-service - DELETE /api/v1/users - Status: 404 - Response time: 940ms - IP: 192.168.33.76 - User: user_1026 - RequestID: ggmmc2nyo7 +2025-06-18T14:19:17.981Z [INFO] payment-service - DELETE /api/v1/payments - Status: 400 - Response time: 1577ms - IP: 192.168.1.152 - User: user_1006 - RequestID: 9w181ikrmqc +2025-06-18T14:19:18.081Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 271ms - Rows affected: 37 - RequestID: b3ktp3d8wp6 +2025-06-18T14:19:18.181Z [DEBUG] order-service - Operation: cache_miss - Processing time: 1000ms - RequestID: pkr98uy2cu +2025-06-18T14:19:18.281Z [INFO] order-service - GET /api/v1/inventory - Status: 503 - Response time: 506ms - IP: 192.168.68.128 - User: user_1021 - RequestID: qq09fltr15n +2025-06-18T14:19:18.381Z [INFO] payment-service - Database UPDATE on payments - Execution time: 318ms - Rows affected: 0 - RequestID: a0bg4cm8e7 +2025-06-18T14:19:18.481Z [INFO] auth-service - Operation: order_created - Processing time: 496ms - RequestID: 303vgz9b2q2 +2025-06-18T14:19:18.581Z [INFO] payment-service - GET /api/v1/users - Status: 403 - Response time: 972ms - IP: 192.168.144.38 - User: user_1085 - RequestID: euldu75dkit +2025-06-18T14:19:18.681Z [INFO] user-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.181.225 - RequestID: 0jws4pvl2hjk +2025-06-18T14:19:18.781Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 16ms - Rows affected: 56 - RequestID: of8y1enwwd +2025-06-18T14:19:18.881Z [INFO] notification-service - DELETE /api/v1/orders - Status: 401 - Response time: 676ms - IP: 192.168.36.218 - User: user_1060 - RequestID: 67dk0txwqcr +2025-06-18T14:19:18.981Z [INFO] notification-service - Operation: order_created - Processing time: 764ms - RequestID: hdi0fo5ojh +2025-06-18T14:19:19.081Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 176ms - Rows affected: 27 - RequestID: hslwn4kud8v +2025-06-18T14:19:19.181Z [INFO] auth-service - GET /api/v1/payments - Status: 401 - Response time: 710ms - IP: 192.168.227.77 - User: user_1071 - RequestID: mzmq3tn2nt +2025-06-18T14:19:19.281Z [INFO] order-service - GET /api/v1/users - Status: 503 - Response time: 845ms - IP: 192.168.79.143 - User: user_1050 - RequestID: 5ahvyozwv6e +2025-06-18T14:19:19.381Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 1005ms - RequestID: 3eeg07ns27p +2025-06-18T14:19:19.481Z [INFO] user-service - Database UPDATE on payments - Execution time: 363ms - Rows affected: 43 - RequestID: 03ss0pku8nfr +2025-06-18T14:19:19.581Z [TRACE] inventory-service - Auth event: login_failed - User: user_1055 - IP: 192.168.30.79 - RequestID: ao4axiachtk +2025-06-18T14:19:19.681Z [INFO] notification-service - Database INSERT on users - Execution time: 189ms - Rows affected: 14 - RequestID: uksqabh4fec +2025-06-18T14:19:19.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.235.117 - RequestID: 86q5b68wrai +2025-06-18T14:19:19.881Z [TRACE] payment-service - Database DELETE on orders - Execution time: 228ms - Rows affected: 81 - RequestID: 4krbxqtk2yy +2025-06-18T14:19:19.981Z [DEBUG] user-service - Auth event: login_success - User: user_1020 - IP: 192.168.30.79 - RequestID: 6b0rgkzx4wt +2025-06-18T14:19:20.081Z [TRACE] payment-service - Auth event: login_success - User: user_1052 - IP: 192.168.97.87 - RequestID: twb7hg3pk2 +2025-06-18T14:19:20.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 876ms - RequestID: 0dc6pc7ov8k8 +2025-06-18T14:19:20.281Z [INFO] order-service - Operation: inventory_updated - Processing time: 734ms - RequestID: 4988phhf5i +2025-06-18T14:19:20.381Z [DEBUG] order-service - Auth event: logout - User: user_1052 - IP: 192.168.79.143 - RequestID: g4qe6pssa7s +2025-06-18T14:19:20.481Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 621ms - RequestID: d549eax5d6j +2025-06-18T14:19:20.581Z [DEBUG] user-service - Operation: cache_miss - Processing time: 399ms - RequestID: ggc4rfdkswo +2025-06-18T14:19:20.681Z [INFO] order-service - Database DELETE on products - Execution time: 482ms - Rows affected: 90 - RequestID: kxz0bqv3su +2025-06-18T14:19:20.781Z [DEBUG] order-service - Database DELETE on orders - Execution time: 404ms - Rows affected: 48 - RequestID: 14aowflll2j +2025-06-18T14:19:20.881Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 503 - Response time: 413ms - IP: 192.168.53.133 - User: user_1085 - RequestID: 5nrcd0vhwof +2025-06-18T14:19:20.981Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1471ms - IP: 192.168.242.165 - User: user_1037 - RequestID: ungg5eoj5r +2025-06-18T14:19:21.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.159.94 - RequestID: cw4mk7ikjf9 +2025-06-18T14:19:21.181Z [INFO] order-service - Database DELETE on sessions - Execution time: 300ms - Rows affected: 47 - RequestID: 3597ptjtlug +2025-06-18T14:19:21.281Z [DEBUG] user-service - Operation: cache_miss - Processing time: 581ms - RequestID: 8eocbqsc6ld +2025-06-18T14:19:21.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1057 - IP: 192.168.133.7 - RequestID: uur9co9qjah +2025-06-18T14:19:21.481Z [TRACE] user-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.100.240 - RequestID: olyoi4ss7la +2025-06-18T14:19:21.581Z [INFO] user-service - Auth event: logout - User: user_1020 - IP: 192.168.167.32 - RequestID: gtyfsjs7pbu +2025-06-18T14:19:21.681Z [TRACE] order-service - Database UPDATE on orders - Execution time: 398ms - Rows affected: 11 - RequestID: hocflno4e4c +2025-06-18T14:19:21.781Z [DEBUG] order-service - GET /api/v1/orders - Status: 500 - Response time: 786ms - IP: 192.168.235.117 - User: user_1005 - RequestID: 7v09q1jljbu +2025-06-18T14:19:21.881Z [TRACE] notification-service - Database INSERT on products - Execution time: 471ms - Rows affected: 86 - RequestID: 5ky68x5s8r +2025-06-18T14:19:21.981Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1082ms - IP: 192.168.64.33 - User: user_1057 - RequestID: q3g41pv2cjl +2025-06-18T14:19:22.081Z [INFO] inventory-service - GET /api/v1/users - Status: 403 - Response time: 1503ms - IP: 192.168.53.133 - User: user_1091 - RequestID: 2kccd7zunch +2025-06-18T14:19:22.181Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 401 - Response time: 2002ms - IP: 192.168.79.141 - User: user_1059 - RequestID: wdynqi8hj5o +2025-06-18T14:19:22.281Z [INFO] payment-service - DELETE /api/v1/users - Status: 401 - Response time: 826ms - IP: 192.168.100.240 - User: user_1010 - RequestID: u52z1k3536 +2025-06-18T14:19:22.381Z [TRACE] inventory-service - Database INSERT on products - Execution time: 164ms - Rows affected: 58 - RequestID: 4a6a5w4xyg3 +2025-06-18T14:19:22.481Z [TRACE] user-service - Database UPDATE on users - Execution time: 243ms - Rows affected: 51 - RequestID: 7g381mqfb8e +2025-06-18T14:19:22.581Z [TRACE] user-service - Operation: webhook_sent - Processing time: 1026ms - RequestID: t7mt0yjt4e +2025-06-18T14:19:22.681Z [INFO] notification-service - POST /api/v1/orders - Status: 401 - Response time: 670ms - IP: 192.168.79.116 - User: user_1062 - RequestID: jvby9zapul +2025-06-18T14:19:22.781Z [TRACE] payment-service - Operation: payment_processed - Processing time: 145ms - RequestID: t6ol3jsynoe +2025-06-18T14:19:22.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1019 - IP: 192.168.138.123 - RequestID: p1uirrlelrl +2025-06-18T14:19:22.981Z [DEBUG] notification-service - Database DELETE on products - Execution time: 163ms - Rows affected: 87 - RequestID: fhdbbknh99a +2025-06-18T14:19:23.081Z [INFO] auth-service - Database SELECT on orders - Execution time: 459ms - Rows affected: 19 - RequestID: ymapx44paxl +2025-06-18T14:19:23.181Z [INFO] notification-service - POST /api/v1/inventory - Status: 502 - Response time: 1585ms - IP: 192.168.170.215 - User: user_1004 - RequestID: 1wb9s9dc15v +2025-06-18T14:19:23.281Z [DEBUG] order-service - Database SELECT on orders - Execution time: 252ms - Rows affected: 5 - RequestID: sembr6ysv6j +2025-06-18T14:19:23.381Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 404 - Response time: 474ms - IP: 192.168.30.79 - User: user_1076 - RequestID: 0d22d8fuuqc5 +2025-06-18T14:19:23.481Z [INFO] order-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.229.123 - RequestID: u5o1fg4n4d +2025-06-18T14:19:23.581Z [TRACE] auth-service - Database INSERT on products - Execution time: 128ms - Rows affected: 18 - RequestID: xeo8e4w7g9m +2025-06-18T14:19:23.681Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 286ms - Rows affected: 25 - RequestID: h2nengyrer +2025-06-18T14:19:23.781Z [DEBUG] notification-service - Database INSERT on products - Execution time: 337ms - Rows affected: 55 - RequestID: arvaktvl6ye +2025-06-18T14:19:23.881Z [INFO] payment-service - GET /api/v1/users - Status: 200 - Response time: 360ms - IP: 192.168.247.134 - User: user_1073 - RequestID: 0z4slx9tvw2f +2025-06-18T14:19:23.981Z [INFO] auth-service - POST /api/v1/users - Status: 403 - Response time: 358ms - IP: 192.168.11.60 - User: user_1074 - RequestID: gu56az1az0u +2025-06-18T14:19:24.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 582ms - RequestID: aiatktynik5 +2025-06-18T14:19:24.181Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 1518ms - IP: 192.168.113.218 - User: user_1071 - RequestID: lb6nv1trjtr +2025-06-18T14:19:24.281Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 427ms - Rows affected: 30 - RequestID: 7ayrz2lzwon +2025-06-18T14:19:24.381Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 500 - Response time: 801ms - IP: 192.168.79.141 - User: user_1080 - RequestID: g2sbaegmgb +2025-06-18T14:19:24.481Z [TRACE] notification-service - Database UPDATE on users - Execution time: 115ms - Rows affected: 98 - RequestID: zchekzg1ib +2025-06-18T14:19:24.581Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 502 - Response time: 424ms - IP: 192.168.141.100 - User: user_1003 - RequestID: b99p9d82rso +2025-06-18T14:19:24.681Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 571ms - RequestID: auogtpvqmtj +2025-06-18T14:19:24.781Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 500 - Response time: 1767ms - IP: 192.168.159.94 - User: user_1015 - RequestID: 99f9yybmruu +2025-06-18T14:19:24.881Z [INFO] auth-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.240.169 - RequestID: nc9upgdch6 +2025-06-18T14:19:24.981Z [INFO] order-service - Operation: inventory_updated - Processing time: 295ms - RequestID: nzhr830f7c +2025-06-18T14:19:25.081Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 384ms - Rows affected: 16 - RequestID: c18iead4557 +2025-06-18T14:19:25.181Z [DEBUG] order-service - Operation: payment_processed - Processing time: 308ms - RequestID: 06gd23b039fb +2025-06-18T14:19:25.281Z [DEBUG] payment-service - Database SELECT on products - Execution time: 125ms - Rows affected: 64 - RequestID: nz212gzd3 +2025-06-18T14:19:25.381Z [TRACE] order-service - Auth event: password_change - User: user_1066 - IP: 192.168.32.38 - RequestID: rn1bl3wck9 +2025-06-18T14:19:25.481Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1277ms - IP: 192.168.235.117 - User: user_1034 - RequestID: ubfv8rnqmsb +2025-06-18T14:19:25.581Z [INFO] auth-service - Auth event: password_change - User: user_1005 - IP: 192.168.53.133 - RequestID: 70r1ixf12tw +2025-06-18T14:19:25.681Z [INFO] user-service - Operation: email_sent - Processing time: 705ms - RequestID: hv7585gfr18 +2025-06-18T14:19:25.781Z [INFO] inventory-service - Auth event: logout - User: user_1029 - IP: 192.168.97.87 - RequestID: 5f6tmadk5e +2025-06-18T14:19:25.881Z [INFO] user-service - Auth event: login_failed - User: user_1049 - IP: 192.168.229.123 - RequestID: tfcyloqveo +2025-06-18T14:19:25.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.227.77 - RequestID: btf6rpwi28u +2025-06-18T14:19:26.081Z [INFO] notification-service - Auth event: password_change - User: user_1009 - IP: 192.168.68.158 - RequestID: z5yxx31ou4t +2025-06-18T14:19:26.181Z [TRACE] inventory-service - Operation: email_sent - Processing time: 237ms - RequestID: nnbaxs84i6 +2025-06-18T14:19:26.281Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 371ms - Rows affected: 63 - RequestID: xftky0mpx3c +2025-06-18T14:19:26.381Z [DEBUG] user-service - Auth event: logout - User: user_1050 - IP: 192.168.113.218 - RequestID: 1ob36ardx05 +2025-06-18T14:19:26.481Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 437ms - Rows affected: 15 - RequestID: 86enfmots8g +2025-06-18T14:19:26.581Z [TRACE] order-service - Operation: notification_queued - Processing time: 54ms - RequestID: ug2a2y1794j +2025-06-18T14:19:26.681Z [TRACE] user-service - Database SELECT on users - Execution time: 72ms - Rows affected: 36 - RequestID: fjfs0l4v7jj +2025-06-18T14:19:26.781Z [TRACE] payment-service - Operation: payment_processed - Processing time: 134ms - RequestID: zwlhb8q5i2h +2025-06-18T14:19:26.881Z [TRACE] order-service - Database SELECT on orders - Execution time: 27ms - Rows affected: 70 - RequestID: 9zz2ea7poyr +2025-06-18T14:19:26.981Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 335ms - IP: 192.168.10.184 - User: user_1085 - RequestID: u0ec6kr4goa +2025-06-18T14:19:27.081Z [DEBUG] auth-service - Database SELECT on products - Execution time: 134ms - Rows affected: 65 - RequestID: jcsh3wuem6g +2025-06-18T14:19:27.181Z [DEBUG] order-service - Database INSERT on users - Execution time: 65ms - Rows affected: 97 - RequestID: wvv8vkz8t1 +2025-06-18T14:19:27.281Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1873ms - IP: 192.168.196.226 - User: user_1031 - RequestID: mm4ni7oyg8 +2025-06-18T14:19:27.381Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 136ms - RequestID: po0t9g6yny +2025-06-18T14:19:27.481Z [DEBUG] order-service - Operation: order_created - Processing time: 165ms - RequestID: umpsss4me6h +2025-06-18T14:19:27.581Z [INFO] inventory-service - Operation: email_sent - Processing time: 653ms - RequestID: w37h3hu0e7 +2025-06-18T14:19:27.681Z [TRACE] auth-service - Operation: email_sent - Processing time: 831ms - RequestID: 7lg5we41js +2025-06-18T14:19:27.781Z [DEBUG] order-service - Auth event: password_change - User: user_1006 - IP: 192.168.141.100 - RequestID: kwzrl3rmec9 +2025-06-18T14:19:27.881Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 435ms - RequestID: 1335u062v0zb +2025-06-18T14:19:27.981Z [DEBUG] auth-service - Database SELECT on products - Execution time: 183ms - Rows affected: 68 - RequestID: vzq8gbf97r +2025-06-18T14:19:28.081Z [INFO] inventory-service - Auth event: login_success - User: user_1026 - IP: 192.168.181.225 - RequestID: jehwueuwdtb +2025-06-18T14:19:28.181Z [TRACE] payment-service - Operation: notification_queued - Processing time: 949ms - RequestID: 9uamt220h86 +2025-06-18T14:19:28.281Z [INFO] auth-service - Auth event: login_success - User: user_1057 - IP: 192.168.68.158 - RequestID: e9qi09ah0rr +2025-06-18T14:19:28.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 76ms - RequestID: 5ltvmp9wchl +2025-06-18T14:19:28.481Z [INFO] user-service - Operation: email_sent - Processing time: 537ms - RequestID: 3nybw198glr +2025-06-18T14:19:28.581Z [DEBUG] payment-service - Auth event: logout - User: user_1014 - IP: 192.168.158.144 - RequestID: w3ajb19517a +2025-06-18T14:19:28.681Z [DEBUG] user-service - Auth event: logout - User: user_1025 - IP: 192.168.187.199 - RequestID: 6oyuutyhxm6 +2025-06-18T14:19:28.781Z [INFO] notification-service - POST /api/v1/inventory - Status: 502 - Response time: 1854ms - IP: 192.168.53.133 - User: user_1028 - RequestID: 93u9j5wlkui +2025-06-18T14:19:28.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.227.77 - RequestID: t4jyww0asu +2025-06-18T14:19:28.981Z [INFO] inventory-service - POST /api/v1/inventory - Status: 401 - Response time: 519ms - IP: 192.168.242.165 - User: user_1024 - RequestID: lypgu1byp1 +2025-06-18T14:19:29.081Z [TRACE] payment-service - Database INSERT on products - Execution time: 158ms - Rows affected: 0 - RequestID: smgt456n8tj +2025-06-18T14:19:29.181Z [DEBUG] payment-service - GET /api/v1/orders - Status: 500 - Response time: 1272ms - IP: 192.168.1.152 - User: user_1023 - RequestID: bsj4ohaxia6 +2025-06-18T14:19:29.281Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 109ms - Rows affected: 64 - RequestID: g7mk04mxbnf +2025-06-18T14:19:29.381Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 400 - Response time: 1420ms - IP: 192.168.229.123 - User: user_1077 - RequestID: jw6fmj77as +2025-06-18T14:19:29.481Z [DEBUG] order-service - POST /api/v1/payments - Status: 502 - Response time: 1665ms - IP: 192.168.1.152 - User: user_1057 - RequestID: eukypgcm23k +2025-06-18T14:19:29.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.189.103 - RequestID: fk32k3q0jq +2025-06-18T14:19:29.681Z [INFO] payment-service - Database DELETE on users - Execution time: 139ms - Rows affected: 23 - RequestID: 58thfooheup +2025-06-18T14:19:29.781Z [DEBUG] user-service - Auth event: password_change - User: user_1092 - IP: 192.168.133.7 - RequestID: ioir6l1cijn +2025-06-18T14:19:29.881Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 34ms - Rows affected: 22 - RequestID: 2hoyquudne5 +2025-06-18T14:19:29.981Z [TRACE] order-service - Database DELETE on sessions - Execution time: 468ms - Rows affected: 18 - RequestID: 4our2iqv9xi +2025-06-18T14:19:30.081Z [DEBUG] notification-service - Operation: order_created - Processing time: 116ms - RequestID: oi8wdqjq6b +2025-06-18T14:19:30.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.229.123 - RequestID: b0dmkt3rat8 +2025-06-18T14:19:30.281Z [TRACE] notification-service - Database SELECT on users - Execution time: 292ms - Rows affected: 52 - RequestID: 6z6ouw6ffy8 +2025-06-18T14:19:30.381Z [DEBUG] user-service - Database INSERT on products - Execution time: 83ms - Rows affected: 8 - RequestID: 7e81muhftj2 +2025-06-18T14:19:30.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 249ms - RequestID: 4gb4d9puh9k +2025-06-18T14:19:30.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.181.225 - RequestID: 2eab569169l +2025-06-18T14:19:30.681Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1773ms - IP: 192.168.11.60 - User: user_1092 - RequestID: 438hras8cid +2025-06-18T14:19:30.781Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 270ms - Rows affected: 76 - RequestID: lnksatjg2r +2025-06-18T14:19:30.881Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 431ms - Rows affected: 6 - RequestID: rteh9t18gj +2025-06-18T14:19:30.981Z [DEBUG] order-service - GET /api/v1/payments - Status: 403 - Response time: 183ms - IP: 192.168.229.123 - User: user_1083 - RequestID: 62d7cjjvk37 +2025-06-18T14:19:31.081Z [TRACE] auth-service - Database INSERT on users - Execution time: 263ms - Rows affected: 79 - RequestID: 65242raj5sp +2025-06-18T14:19:31.181Z [TRACE] user-service - Operation: cache_hit - Processing time: 782ms - RequestID: octg2t9g6k +2025-06-18T14:19:31.281Z [INFO] inventory-service - Auth event: password_change - User: user_1021 - IP: 192.168.141.100 - RequestID: xy3f9anfuk +2025-06-18T14:19:31.381Z [TRACE] user-service - Database UPDATE on orders - Execution time: 341ms - Rows affected: 19 - RequestID: 3j0anbbixw5 +2025-06-18T14:19:31.481Z [INFO] notification-service - Auth event: password_change - User: user_1087 - IP: 192.168.242.165 - RequestID: qgikt1rr0sk +2025-06-18T14:19:31.581Z [INFO] user-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.30.79 - RequestID: 9sgdnh8yzjn +2025-06-18T14:19:31.681Z [INFO] user-service - Database INSERT on products - Execution time: 219ms - Rows affected: 67 - RequestID: gj8ak3g0lv +2025-06-18T14:19:31.781Z [INFO] auth-service - POST /api/v1/auth/login - Status: 403 - Response time: 1269ms - IP: 192.168.11.60 - User: user_1057 - RequestID: iaeixgquw6m +2025-06-18T14:19:31.881Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.196.226 - RequestID: 41pcftrem91 +2025-06-18T14:19:31.981Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 500 - Response time: 683ms - IP: 192.168.97.87 - User: user_1092 - RequestID: xfzq887dau +2025-06-18T14:19:32.081Z [TRACE] notification-service - PUT /api/v1/orders - Status: 500 - Response time: 1721ms - IP: 192.168.227.233 - User: user_1013 - RequestID: p1em4ny62rj +2025-06-18T14:19:32.181Z [TRACE] notification-service - Auth event: password_change - User: user_1014 - IP: 192.168.187.199 - RequestID: flhk74c4j9m +2025-06-18T14:19:32.281Z [INFO] user-service - Auth event: password_change - User: user_1021 - IP: 192.168.189.103 - RequestID: 0z3hzbk0cfq +2025-06-18T14:19:32.381Z [TRACE] payment-service - Operation: email_sent - Processing time: 936ms - RequestID: my7nx3ldno9 +2025-06-18T14:19:32.481Z [TRACE] payment-service - Database INSERT on products - Execution time: 438ms - Rows affected: 54 - RequestID: cngipmyq09a +2025-06-18T14:19:32.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 135ms - RequestID: n251slmggh +2025-06-18T14:19:32.681Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 103ms - Rows affected: 93 - RequestID: ks776wfay2 +2025-06-18T14:19:32.781Z [INFO] user-service - Operation: webhook_sent - Processing time: 990ms - RequestID: 1ubx7n80acm +2025-06-18T14:19:32.881Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.187.199 - RequestID: d2uu4zplo3 +2025-06-18T14:19:32.981Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 162ms - Rows affected: 70 - RequestID: w1hd6fdiia +2025-06-18T14:19:33.081Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 15ms - Rows affected: 84 - RequestID: hdtd5lhsn7s +2025-06-18T14:19:33.181Z [INFO] inventory-service - Operation: cache_hit - Processing time: 545ms - RequestID: 7ltgthipt9n +2025-06-18T14:19:33.281Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1889ms - IP: 192.168.100.240 - User: user_1099 - RequestID: 3vvv9pn7mhx +2025-06-18T14:19:33.381Z [INFO] notification-service - GET /api/v1/inventory - Status: 200 - Response time: 1563ms - IP: 192.168.133.7 - User: user_1013 - RequestID: 717cgs1g95d +2025-06-18T14:19:33.481Z [TRACE] inventory-service - Auth event: login_failed - User: user_1015 - IP: 192.168.138.123 - RequestID: p8lafj2f3r9 +2025-06-18T14:19:33.581Z [TRACE] order-service - Operation: order_created - Processing time: 167ms - RequestID: 8w8ps5pvlne +2025-06-18T14:19:33.681Z [TRACE] notification-service - Auth event: password_change - User: user_1034 - IP: 192.168.174.114 - RequestID: o4gh5fui6db +2025-06-18T14:19:33.781Z [TRACE] payment-service - Auth event: login_success - User: user_1090 - IP: 192.168.235.117 - RequestID: ypxmooqxlf +2025-06-18T14:19:33.881Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 108ms - RequestID: ry2725kvp3e +2025-06-18T14:19:33.981Z [INFO] order-service - GET /api/v1/users - Status: 503 - Response time: 413ms - IP: 192.168.141.100 - User: user_1055 - RequestID: 7xq5djze6wh +2025-06-18T14:19:34.081Z [DEBUG] payment-service - Database DELETE on products - Execution time: 108ms - Rows affected: 48 - RequestID: vub9z45n52q +2025-06-18T14:19:34.181Z [DEBUG] order-service - Auth event: login_failed - User: user_1008 - IP: 192.168.141.100 - RequestID: hjpnikhl2z +2025-06-18T14:19:34.281Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 369ms - RequestID: c66dk388i2h +2025-06-18T14:19:34.381Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 388ms - IP: 192.168.194.41 - User: user_1097 - RequestID: 893cu3mgudv +2025-06-18T14:19:34.481Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1400ms - IP: 192.168.187.199 - User: user_1088 - RequestID: tm0b8rgra8e +2025-06-18T14:19:34.581Z [INFO] payment-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.170.215 - RequestID: bavh61dno85 +2025-06-18T14:19:34.681Z [DEBUG] user-service - GET /api/v1/orders - Status: 201 - Response time: 1455ms - IP: 192.168.81.206 - User: user_1004 - RequestID: 6krplnj7b1r +2025-06-18T14:19:34.781Z [TRACE] inventory-service - POST /api/v1/payments - Status: 404 - Response time: 890ms - IP: 192.168.85.229 - User: user_1081 - RequestID: ic9cauwzl1 +2025-06-18T14:19:34.881Z [TRACE] notification-service - Operation: email_sent - Processing time: 87ms - RequestID: aapgbmi60f +2025-06-18T14:19:34.981Z [TRACE] payment-service - Auth event: password_change - User: user_1090 - IP: 192.168.141.100 - RequestID: 48jxg0n4vft +2025-06-18T14:19:35.081Z [INFO] payment-service - Operation: notification_queued - Processing time: 697ms - RequestID: myarbsgh20s +2025-06-18T14:19:35.181Z [TRACE] auth-service - Database DELETE on users - Execution time: 29ms - Rows affected: 78 - RequestID: 6gq6rojlrga +2025-06-18T14:19:35.281Z [INFO] order-service - PATCH /api/v1/orders - Status: 503 - Response time: 161ms - IP: 192.168.28.146 - User: user_1080 - RequestID: fcc8j77iiup +2025-06-18T14:19:35.381Z [DEBUG] order-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.240.169 - RequestID: nqojzoo8e3s +2025-06-18T14:19:35.481Z [INFO] order-service - Operation: webhook_sent - Processing time: 562ms - RequestID: lt5i4eedkz +2025-06-18T14:19:35.581Z [DEBUG] order-service - Database INSERT on users - Execution time: 292ms - Rows affected: 16 - RequestID: b81th8pnd0l +2025-06-18T14:19:35.681Z [DEBUG] order-service - Operation: notification_queued - Processing time: 792ms - RequestID: rov1q4ckat +2025-06-18T14:19:35.781Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 201 - Response time: 1868ms - IP: 192.168.242.165 - User: user_1032 - RequestID: bpfaoar8o1o +2025-06-18T14:19:35.881Z [INFO] order-service - Database INSERT on orders - Execution time: 145ms - Rows affected: 88 - RequestID: c63w4y6yd +2025-06-18T14:19:35.981Z [TRACE] payment-service - POST /api/v1/orders - Status: 502 - Response time: 1941ms - IP: 192.168.229.123 - User: user_1027 - RequestID: 4jwvjdtmdwi +2025-06-18T14:19:36.081Z [INFO] order-service - Auth event: logout - User: user_1072 - IP: 192.168.28.146 - RequestID: xi4fied7hio +2025-06-18T14:19:36.181Z [INFO] payment-service - Database INSERT on users - Execution time: 444ms - Rows affected: 49 - RequestID: 2lsildc694p +2025-06-18T14:19:36.281Z [TRACE] payment-service - GET /api/v1/payments - Status: 401 - Response time: 1496ms - IP: 192.168.13.72 - User: user_1085 - RequestID: gi7zwv5l9hr +2025-06-18T14:19:36.381Z [INFO] order-service - PATCH /api/v1/payments - Status: 401 - Response time: 870ms - IP: 192.168.242.165 - User: user_1093 - RequestID: vm0vypvdc5o +2025-06-18T14:19:36.481Z [DEBUG] order-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.44.5 - RequestID: 5pis937w27 +2025-06-18T14:19:36.581Z [INFO] user-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.85.229 - RequestID: f335e4q9ost +2025-06-18T14:19:36.681Z [INFO] inventory-service - Auth event: login_failed - User: user_1044 - IP: 192.168.174.114 - RequestID: n035ga5cqk +2025-06-18T14:19:36.781Z [TRACE] user-service - DELETE /api/v1/payments - Status: 503 - Response time: 1492ms - IP: 192.168.36.218 - User: user_1097 - RequestID: ttx8826r2e +2025-06-18T14:19:36.881Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1508ms - IP: 192.168.174.114 - User: user_1035 - RequestID: h2m6anhvgln +2025-06-18T14:19:36.981Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 404 - Response time: 806ms - IP: 192.168.242.165 - User: user_1070 - RequestID: 7s1sm0fw7bt +2025-06-18T14:19:37.081Z [TRACE] payment-service - Database DELETE on products - Execution time: 494ms - Rows affected: 41 - RequestID: edlacpgger +2025-06-18T14:19:37.181Z [INFO] inventory-service - Auth event: login_success - User: user_1084 - IP: 192.168.13.72 - RequestID: vmi8ey4gm +2025-06-18T14:19:37.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1045 - IP: 192.168.100.240 - RequestID: 2w3p9j094us +2025-06-18T14:19:37.381Z [DEBUG] payment-service - Database SELECT on users - Execution time: 102ms - Rows affected: 93 - RequestID: coyz8q99ou9 +2025-06-18T14:19:37.481Z [TRACE] auth-service - GET /api/v1/users - Status: 502 - Response time: 46ms - IP: 192.168.227.77 - User: user_1016 - RequestID: tni4f7q9imb +2025-06-18T14:19:37.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1068 - IP: 192.168.36.218 - RequestID: 4ybt0ea1y2b +2025-06-18T14:19:37.681Z [INFO] user-service - Database SELECT on users - Execution time: 233ms - Rows affected: 14 - RequestID: aqwbtd2uvga +2025-06-18T14:19:37.781Z [INFO] order-service - Database UPDATE on payments - Execution time: 144ms - Rows affected: 92 - RequestID: avk727vd9yi +2025-06-18T14:19:37.881Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 753ms - RequestID: j02193x4pq +2025-06-18T14:19:37.981Z [TRACE] payment-service - Database DELETE on orders - Execution time: 66ms - Rows affected: 59 - RequestID: 2rcjqbuymx2 +2025-06-18T14:19:38.081Z [INFO] notification-service - Auth event: login_failed - User: user_1056 - IP: 192.168.79.141 - RequestID: iancgh3h3dr +2025-06-18T14:19:38.181Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 126ms - Rows affected: 17 - RequestID: fy5aqoqyd1 +2025-06-18T14:19:38.281Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 362ms - Rows affected: 83 - RequestID: rpxtdhgmv4i +2025-06-18T14:19:38.381Z [DEBUG] order-service - Database SELECT on payments - Execution time: 442ms - Rows affected: 87 - RequestID: wvmahy5g11 +2025-06-18T14:19:38.481Z [TRACE] auth-service - Database INSERT on products - Execution time: 187ms - Rows affected: 77 - RequestID: 6hvbllf13mr +2025-06-18T14:19:38.581Z [DEBUG] user-service - POST /api/v1/users - Status: 200 - Response time: 659ms - IP: 192.168.159.94 - User: user_1064 - RequestID: rsljt498s4 +2025-06-18T14:19:38.681Z [INFO] inventory-service - Auth event: login_failed - User: user_1043 - IP: 192.168.100.240 - RequestID: 5xzkk6vlj67 +2025-06-18T14:19:38.781Z [DEBUG] user-service - Database INSERT on payments - Execution time: 99ms - Rows affected: 42 - RequestID: mjzok8mhmgr +2025-06-18T14:19:38.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1097 - IP: 192.168.68.158 - RequestID: f9f8jmyvv37 +2025-06-18T14:19:38.981Z [TRACE] inventory-service - PUT /api/v1/users - Status: 500 - Response time: 893ms - IP: 192.168.1.152 - User: user_1021 - RequestID: ez1576vjrkf +2025-06-18T14:19:39.081Z [INFO] user-service - Database SELECT on sessions - Execution time: 313ms - Rows affected: 14 - RequestID: fqjmm196vim +2025-06-18T14:19:39.181Z [INFO] order-service - Operation: payment_processed - Processing time: 211ms - RequestID: 4yto4q2oj5m +2025-06-18T14:19:39.281Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 161ms - Rows affected: 93 - RequestID: ko9kmxtw13f +2025-06-18T14:19:39.381Z [INFO] user-service - Operation: order_created - Processing time: 999ms - RequestID: qccflizfgd +2025-06-18T14:19:39.481Z [INFO] user-service - Operation: email_sent - Processing time: 579ms - RequestID: br6ztocsj69 +2025-06-18T14:19:39.581Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1529ms - IP: 192.168.64.33 - User: user_1069 - RequestID: 64pdmkxyj3w +2025-06-18T14:19:39.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.229.123 - RequestID: b2dzc4o3a1d +2025-06-18T14:19:39.781Z [DEBUG] payment-service - Database SELECT on products - Execution time: 116ms - Rows affected: 27 - RequestID: 18nnp7j68gii +2025-06-18T14:19:39.881Z [TRACE] user-service - Database INSERT on orders - Execution time: 375ms - Rows affected: 59 - RequestID: nc5n4p3qvm7 +2025-06-18T14:19:39.981Z [INFO] payment-service - PUT /api/v1/payments - Status: 400 - Response time: 941ms - IP: 192.168.10.184 - User: user_1045 - RequestID: rm3a75eevcn +2025-06-18T14:19:40.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.167.32 - RequestID: 1r1e13f66kpi +2025-06-18T14:19:40.181Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 121ms - Rows affected: 7 - RequestID: 2e47ng9ekja +2025-06-18T14:19:40.281Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 127ms - Rows affected: 76 - RequestID: x37z45ilmrm +2025-06-18T14:19:40.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 840ms - RequestID: k5liqzpwois +2025-06-18T14:19:40.481Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 365ms - RequestID: hrz5jmwy0s +2025-06-18T14:19:40.581Z [TRACE] user-service - Database DELETE on sessions - Execution time: 348ms - Rows affected: 51 - RequestID: 8tq9dx468af +2025-06-18T14:19:40.681Z [DEBUG] order-service - POST /api/v1/orders - Status: 500 - Response time: 309ms - IP: 192.168.10.184 - User: user_1069 - RequestID: henwjwa5gg4 +2025-06-18T14:19:40.781Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1505ms - IP: 192.168.31.117 - User: user_1071 - RequestID: 7o3nw30svku +2025-06-18T14:19:40.881Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 257ms - Rows affected: 91 - RequestID: k6nv3372jk +2025-06-18T14:19:40.981Z [DEBUG] order-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.247.134 - RequestID: 2kwlyurn056 +2025-06-18T14:19:41.081Z [INFO] order-service - Database SELECT on products - Execution time: 330ms - Rows affected: 42 - RequestID: u1sm5ulb5m7 +2025-06-18T14:19:41.181Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 296ms - Rows affected: 40 - RequestID: qw6xzwkmk89 +2025-06-18T14:19:41.281Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 380ms - RequestID: b95pvyq6xhu +2025-06-18T14:19:41.381Z [TRACE] auth-service - Operation: email_sent - Processing time: 85ms - RequestID: y9f0jmxuez +2025-06-18T14:19:41.481Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 448ms - Rows affected: 32 - RequestID: 6ooex5frcz9 +2025-06-18T14:19:41.581Z [TRACE] user-service - Auth event: login_success - User: user_1022 - IP: 192.168.44.5 - RequestID: 7niv29j2xt8 +2025-06-18T14:19:41.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.167.32 - RequestID: eqk45wg1clj +2025-06-18T14:19:41.781Z [DEBUG] user-service - Database INSERT on payments - Execution time: 349ms - Rows affected: 9 - RequestID: g07repdi5h9 +2025-06-18T14:19:41.881Z [INFO] inventory-service - Operation: cache_hit - Processing time: 148ms - RequestID: f9mv6pl854s +2025-06-18T14:19:41.981Z [INFO] payment-service - Operation: cache_miss - Processing time: 1038ms - RequestID: r7wyy4ag6q +2025-06-18T14:19:42.081Z [INFO] auth-service - Operation: inventory_updated - Processing time: 869ms - RequestID: 8non1a0jsde +2025-06-18T14:19:42.181Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 532ms - RequestID: 57x9znwwtvl +2025-06-18T14:19:42.281Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 403 - Response time: 687ms - IP: 192.168.247.134 - User: user_1026 - RequestID: 3mht5qwvtz +2025-06-18T14:19:42.381Z [TRACE] payment-service - Auth event: logout - User: user_1064 - IP: 192.168.1.152 - RequestID: nnkpku4um0g +2025-06-18T14:19:42.481Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 65ms - Rows affected: 23 - RequestID: y6gd9zi168 +2025-06-18T14:19:42.581Z [INFO] auth-service - Operation: notification_queued - Processing time: 634ms - RequestID: 8htjpsht348 +2025-06-18T14:19:42.681Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1413ms - IP: 192.168.68.128 - User: user_1092 - RequestID: vp3yp4543r +2025-06-18T14:19:42.781Z [TRACE] inventory-service - Database DELETE on users - Execution time: 283ms - Rows affected: 38 - RequestID: prb17gwqmei +2025-06-18T14:19:42.881Z [DEBUG] order-service - PUT /api/v1/payments - Status: 200 - Response time: 1238ms - IP: 192.168.158.144 - User: user_1001 - RequestID: 49qk2vk418n +2025-06-18T14:19:42.981Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 51ms - IP: 192.168.181.225 - User: user_1004 - RequestID: zet4n7e6ohf +2025-06-18T14:19:43.081Z [INFO] user-service - DELETE /api/v1/orders - Status: 401 - Response time: 1701ms - IP: 192.168.31.117 - User: user_1009 - RequestID: 8ugebnk2p6 +2025-06-18T14:19:43.181Z [INFO] auth-service - Operation: email_sent - Processing time: 848ms - RequestID: xnzse4luask +2025-06-18T14:19:43.281Z [INFO] order-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.167.32 - RequestID: 9olsj77pfrh +2025-06-18T14:19:43.381Z [TRACE] order-service - Operation: email_sent - Processing time: 243ms - RequestID: 9deb76yuov6 +2025-06-18T14:19:43.481Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1027ms - RequestID: ooshuwe46jg +2025-06-18T14:19:43.581Z [TRACE] inventory-service - Database SELECT on products - Execution time: 224ms - Rows affected: 11 - RequestID: 07fqwk4o1ayd +2025-06-18T14:19:43.681Z [TRACE] payment-service - Auth event: logout - User: user_1073 - IP: 192.168.232.72 - RequestID: mmbqxwixwk8 +2025-06-18T14:19:43.781Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 104ms - Rows affected: 86 - RequestID: x6g9xlg64t +2025-06-18T14:19:43.881Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 591ms - IP: 192.168.196.226 - User: user_1017 - RequestID: j0rlnacpt5 +2025-06-18T14:19:43.981Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 502 - Response time: 1335ms - IP: 192.168.147.171 - User: user_1076 - RequestID: uln5w1hy68 +2025-06-18T14:19:44.081Z [INFO] notification-service - Operation: notification_queued - Processing time: 881ms - RequestID: 5d60bohdqjy +2025-06-18T14:19:44.181Z [DEBUG] notification-service - Database DELETE on products - Execution time: 491ms - Rows affected: 18 - RequestID: 209qxl0615e +2025-06-18T14:19:44.281Z [TRACE] auth-service - GET /api/v1/orders - Status: 400 - Response time: 1180ms - IP: 192.168.187.199 - User: user_1006 - RequestID: ty6wv6dpzb8 +2025-06-18T14:19:44.381Z [INFO] user-service - PUT /api/v1/inventory - Status: 200 - Response time: 1905ms - IP: 192.168.32.38 - User: user_1016 - RequestID: 3zs40g0zx87 +2025-06-18T14:19:44.481Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 36ms - Rows affected: 93 - RequestID: qeykx44eip +2025-06-18T14:19:44.581Z [TRACE] user-service - Operation: email_sent - Processing time: 879ms - RequestID: itt7golk728 +2025-06-18T14:19:44.681Z [DEBUG] order-service - Operation: notification_queued - Processing time: 427ms - RequestID: zx74vphb4ms +2025-06-18T14:19:44.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1090 - IP: 192.168.113.218 - RequestID: 91i6udxvgf +2025-06-18T14:19:44.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1023 - IP: 192.168.235.117 - RequestID: bzmbfyw0r77 +2025-06-18T14:19:44.981Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 747ms - RequestID: l5t9had4pu +2025-06-18T14:19:45.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.13.72 - RequestID: ydjxe7ecygm +2025-06-18T14:19:45.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1001 - IP: 192.168.229.123 - RequestID: wgete95mk4o +2025-06-18T14:19:45.281Z [INFO] inventory-service - Auth event: login_success - User: user_1051 - IP: 192.168.68.158 - RequestID: n9cm0k68t7 +2025-06-18T14:19:45.381Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1256ms - IP: 192.168.229.123 - User: user_1086 - RequestID: p3vplc5k8q +2025-06-18T14:19:45.481Z [INFO] notification-service - Database INSERT on sessions - Execution time: 266ms - Rows affected: 36 - RequestID: pkn9twyuisr +2025-06-18T14:19:45.581Z [INFO] notification-service - Database INSERT on users - Execution time: 410ms - Rows affected: 91 - RequestID: rygclke7fo +2025-06-18T14:19:45.681Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 502 - Response time: 519ms - IP: 192.168.53.133 - User: user_1078 - RequestID: 8xf05niamva +2025-06-18T14:19:45.781Z [DEBUG] auth-service - Auth event: logout - User: user_1082 - IP: 192.168.229.123 - RequestID: 22yh237f347 +2025-06-18T14:19:45.881Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 841ms - RequestID: n3naju22et +2025-06-18T14:19:45.981Z [INFO] auth-service - Database UPDATE on payments - Execution time: 478ms - Rows affected: 22 - RequestID: 7grnxpbguf2 +2025-06-18T14:19:46.081Z [INFO] order-service - Operation: inventory_updated - Processing time: 295ms - RequestID: 6s1rmyjnuip +2025-06-18T14:19:46.181Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 660ms - RequestID: 318qqzcfhnp +2025-06-18T14:19:46.281Z [DEBUG] payment-service - Database DELETE on users - Execution time: 125ms - Rows affected: 63 - RequestID: oegey62z3mh +2025-06-18T14:19:46.381Z [INFO] order-service - Operation: webhook_sent - Processing time: 394ms - RequestID: h82aj1unlvk +2025-06-18T14:19:46.481Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 502 - Response time: 772ms - IP: 192.168.46.63 - User: user_1073 - RequestID: jopetgiuki +2025-06-18T14:19:46.581Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 531ms - RequestID: y1c44sit2k +2025-06-18T14:19:46.681Z [DEBUG] auth-service - POST /api/v1/orders - Status: 200 - Response time: 949ms - IP: 192.168.44.5 - User: user_1090 - RequestID: bgs3ln9kvwr +2025-06-18T14:19:46.781Z [INFO] inventory-service - Operation: email_sent - Processing time: 456ms - RequestID: 8z57pz234gd +2025-06-18T14:19:46.881Z [INFO] notification-service - POST /api/v1/payments - Status: 403 - Response time: 211ms - IP: 192.168.240.169 - User: user_1018 - RequestID: zlvkm3a8pcg +2025-06-18T14:19:46.981Z [TRACE] user-service - Auth event: password_change - User: user_1061 - IP: 192.168.242.165 - RequestID: pytailjte2 +2025-06-18T14:19:47.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1093 - IP: 192.168.11.60 - RequestID: 6thfpn06j3 +2025-06-18T14:19:47.181Z [TRACE] notification-service - GET /api/v1/inventory - Status: 401 - Response time: 953ms - IP: 192.168.46.63 - User: user_1051 - RequestID: gney9yz72fp +2025-06-18T14:19:47.281Z [TRACE] user-service - Operation: payment_processed - Processing time: 223ms - RequestID: dgx3k08mti +2025-06-18T14:19:47.381Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 589ms - IP: 192.168.79.143 - User: user_1011 - RequestID: mgq6vcimpfa +2025-06-18T14:19:47.481Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 97ms - RequestID: eqeh0efawxw +2025-06-18T14:19:47.581Z [DEBUG] auth-service - Operation: email_sent - Processing time: 190ms - RequestID: xo1n55lwx0r +2025-06-18T14:19:47.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 1034ms - RequestID: 6g1ke37adw4 +2025-06-18T14:19:47.781Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 400 - Response time: 587ms - IP: 192.168.242.165 - User: user_1065 - RequestID: fr4d2k4f0k5 +2025-06-18T14:19:47.881Z [INFO] notification-service - Operation: payment_processed - Processing time: 668ms - RequestID: ckph267jwds +2025-06-18T14:19:47.981Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 108ms - Rows affected: 64 - RequestID: frm98v4jozs +2025-06-18T14:19:48.081Z [INFO] user-service - PUT /api/v1/payments - Status: 404 - Response time: 1055ms - IP: 192.168.194.41 - User: user_1012 - RequestID: u977flyjqkf +2025-06-18T14:19:48.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1086 - IP: 192.168.211.72 - RequestID: uxai0w3ljc +2025-06-18T14:19:48.281Z [INFO] user-service - GET /api/v1/auth/login - Status: 403 - Response time: 1711ms - IP: 192.168.232.72 - User: user_1095 - RequestID: kqjnn0bsda8 +2025-06-18T14:19:48.381Z [TRACE] order-service - Auth event: login_failed - User: user_1011 - IP: 192.168.189.103 - RequestID: mye7ju7ztxj +2025-06-18T14:19:48.481Z [DEBUG] user-service - Operation: order_created - Processing time: 354ms - RequestID: f5aklia4flm +2025-06-18T14:19:48.581Z [INFO] inventory-service - Database INSERT on products - Execution time: 111ms - Rows affected: 81 - RequestID: 1szu6kor4py +2025-06-18T14:19:48.681Z [TRACE] order-service - Auth event: login_success - User: user_1035 - IP: 192.168.242.165 - RequestID: 1nt7hltaxgb +2025-06-18T14:19:48.781Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1748ms - IP: 192.168.242.165 - User: user_1006 - RequestID: 2s0nd3mxppe +2025-06-18T14:19:48.881Z [INFO] payment-service - DELETE /api/v1/orders - Status: 503 - Response time: 24ms - IP: 192.168.211.72 - User: user_1034 - RequestID: 4ooq2g209cx +2025-06-18T14:19:48.981Z [DEBUG] notification-service - Auth event: logout - User: user_1059 - IP: 192.168.64.33 - RequestID: iamnhz981q9 +2025-06-18T14:19:49.081Z [DEBUG] user-service - Database UPDATE on users - Execution time: 13ms - Rows affected: 72 - RequestID: g560r7l0fjh +2025-06-18T14:19:49.181Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 9ms - Rows affected: 10 - RequestID: z0p1mmzoki9 +2025-06-18T14:19:49.281Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1763ms - IP: 192.168.232.72 - User: user_1088 - RequestID: 3aqubo21jam +2025-06-18T14:19:49.381Z [TRACE] notification-service - Auth event: login_success - User: user_1063 - IP: 192.168.144.38 - RequestID: ct74f6zj46a +2025-06-18T14:19:49.481Z [INFO] payment-service - DELETE /api/v1/orders - Status: 400 - Response time: 799ms - IP: 192.168.79.143 - User: user_1052 - RequestID: mzt1sj020jj +2025-06-18T14:19:49.581Z [DEBUG] order-service - Auth event: login_failed - User: user_1061 - IP: 192.168.247.134 - RequestID: wgefund5om +2025-06-18T14:19:49.681Z [INFO] payment-service - Auth event: login_success - User: user_1007 - IP: 192.168.79.141 - RequestID: sbfxv774dac +2025-06-18T14:19:49.781Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1084ms - IP: 192.168.79.116 - User: user_1083 - RequestID: 0ovnwjvpc20h +2025-06-18T14:19:49.881Z [DEBUG] user-service - Auth event: login_success - User: user_1086 - IP: 192.168.33.76 - RequestID: 34g9ywet61b +2025-06-18T14:19:49.981Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 401 - Response time: 655ms - IP: 192.168.194.41 - User: user_1042 - RequestID: 6r367faj9am +2025-06-18T14:19:50.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.97.87 - RequestID: lcri9sdx1w +2025-06-18T14:19:50.181Z [TRACE] user-service - PUT /api/v1/users - Status: 403 - Response time: 736ms - IP: 192.168.167.32 - User: user_1066 - RequestID: 132jteaqktzb +2025-06-18T14:19:50.281Z [INFO] auth-service - Database DELETE on sessions - Execution time: 160ms - Rows affected: 14 - RequestID: f6tnynedbv6 +2025-06-18T14:19:50.381Z [TRACE] user-service - Auth event: logout - User: user_1091 - IP: 192.168.33.76 - RequestID: we0gw5ngvkc +2025-06-18T14:19:50.481Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 400 - Response time: 788ms - IP: 192.168.147.171 - User: user_1021 - RequestID: k71am46vlz +2025-06-18T14:19:50.581Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 438ms - Rows affected: 4 - RequestID: inwb9936hir +2025-06-18T14:19:50.681Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 420ms - IP: 192.168.189.103 - User: user_1004 - RequestID: uu7djt7yws +2025-06-18T14:19:50.781Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 503 - Response time: 1279ms - IP: 192.168.232.72 - User: user_1061 - RequestID: 1dy819l9g36 +2025-06-18T14:19:50.881Z [INFO] payment-service - Operation: email_sent - Processing time: 62ms - RequestID: s1nl5ktypo +2025-06-18T14:19:50.981Z [TRACE] order-service - Auth event: login_success - User: user_1008 - IP: 192.168.181.225 - RequestID: imx18ljljkn +2025-06-18T14:19:51.081Z [TRACE] auth-service - Operation: cache_miss - Processing time: 102ms - RequestID: 17wvs359on +2025-06-18T14:19:51.181Z [INFO] user-service - Database INSERT on payments - Execution time: 260ms - Rows affected: 55 - RequestID: uxuu9gzso +2025-06-18T14:19:51.281Z [INFO] order-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.133.7 - RequestID: sscewmyq7xi +2025-06-18T14:19:51.381Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 200 - Response time: 1400ms - IP: 192.168.97.87 - User: user_1076 - RequestID: 8r1evlu9zr8 +2025-06-18T14:19:51.481Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 422ms - Rows affected: 0 - RequestID: y4mgmresek +2025-06-18T14:19:51.581Z [DEBUG] auth-service - PUT /api/v1/users - Status: 503 - Response time: 1680ms - IP: 192.168.196.226 - User: user_1035 - RequestID: 0yzrox7xt7u +2025-06-18T14:19:51.681Z [TRACE] order-service - PATCH /api/v1/payments - Status: 400 - Response time: 1642ms - IP: 192.168.100.240 - User: user_1077 - RequestID: 69zrqpnt05h +2025-06-18T14:19:51.781Z [INFO] payment-service - PUT /api/v1/payments - Status: 403 - Response time: 835ms - IP: 192.168.97.87 - User: user_1024 - RequestID: qa4ip43531 +2025-06-18T14:19:51.881Z [INFO] payment-service - PATCH /api/v1/orders - Status: 500 - Response time: 1469ms - IP: 192.168.242.165 - User: user_1078 - RequestID: x6pbmr0y41 +2025-06-18T14:19:51.981Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 489ms - Rows affected: 4 - RequestID: 2tbfinqysdp +2025-06-18T14:19:52.081Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 698ms - RequestID: 2g8gvv655eb +2025-06-18T14:19:52.181Z [DEBUG] order-service - Auth event: login_failed - User: user_1032 - IP: 192.168.46.63 - RequestID: z27su03vt3 +2025-06-18T14:19:52.281Z [INFO] user-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.79.141 - RequestID: wj4ayr5mew8 +2025-06-18T14:19:52.381Z [TRACE] order-service - Operation: notification_queued - Processing time: 967ms - RequestID: b51sij5zkei +2025-06-18T14:19:52.481Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 28ms - Rows affected: 28 - RequestID: o7eppyeks2 +2025-06-18T14:19:52.581Z [INFO] auth-service - PATCH /api/v1/payments - Status: 200 - Response time: 1833ms - IP: 192.168.97.87 - User: user_1023 - RequestID: jh15v9wlpcb +2025-06-18T14:19:52.681Z [INFO] notification-service - POST /api/v1/orders - Status: 404 - Response time: 1603ms - IP: 192.168.247.134 - User: user_1095 - RequestID: udze71t90r +2025-06-18T14:19:52.781Z [DEBUG] user-service - Auth event: login_success - User: user_1015 - IP: 192.168.30.79 - RequestID: r370u1nd3d +2025-06-18T14:19:52.881Z [INFO] user-service - Database SELECT on products - Execution time: 114ms - Rows affected: 26 - RequestID: k9bzzlje8j8 +2025-06-18T14:19:52.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.31.117 - RequestID: 5o48ramcge7 +2025-06-18T14:19:53.081Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 711ms - RequestID: 1dnym5hxj96 +2025-06-18T14:19:53.181Z [TRACE] user-service - Operation: inventory_updated - Processing time: 672ms - RequestID: gdawpbm1lh +2025-06-18T14:19:53.281Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 812ms - RequestID: bcmg5mh5uje +2025-06-18T14:19:53.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 616ms - RequestID: 6v0c78e07zf +2025-06-18T14:19:53.481Z [TRACE] user-service - Auth event: login_failed - User: user_1096 - IP: 192.168.79.141 - RequestID: ejo6ky6me9 +2025-06-18T14:19:53.581Z [INFO] payment-service - Database SELECT on payments - Execution time: 305ms - Rows affected: 24 - RequestID: zk7xgl82gie +2025-06-18T14:19:53.681Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 196ms - Rows affected: 41 - RequestID: 8bz8b9seu6r +2025-06-18T14:19:53.781Z [INFO] order-service - Operation: payment_processed - Processing time: 532ms - RequestID: c3m3pj17oeu +2025-06-18T14:19:53.881Z [TRACE] order-service - Database DELETE on products - Execution time: 460ms - Rows affected: 11 - RequestID: 4ey88eby9wr +2025-06-18T14:19:53.981Z [INFO] auth-service - Database SELECT on sessions - Execution time: 204ms - Rows affected: 40 - RequestID: vyssc6l3is +2025-06-18T14:19:54.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.31.117 - RequestID: 5eh827qnl1y +2025-06-18T14:19:54.181Z [INFO] user-service - Database UPDATE on sessions - Execution time: 295ms - Rows affected: 31 - RequestID: 1swvymts3id +2025-06-18T14:19:54.281Z [TRACE] payment-service - Auth event: login_success - User: user_1029 - IP: 192.168.44.5 - RequestID: efgsvj38h8 +2025-06-18T14:19:54.381Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 57ms - Rows affected: 35 - RequestID: q08mcp8qxi +2025-06-18T14:19:54.481Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 223ms - Rows affected: 59 - RequestID: ssa16fa1qfo +2025-06-18T14:19:54.581Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 401 - Response time: 1618ms - IP: 192.168.232.72 - User: user_1066 - RequestID: ex9ylu1nkyv +2025-06-18T14:19:54.681Z [TRACE] notification-service - Operation: cache_miss - Processing time: 343ms - RequestID: ccgy4u675pb +2025-06-18T14:19:54.781Z [INFO] inventory-service - PATCH /api/v1/users - Status: 400 - Response time: 1832ms - IP: 192.168.158.144 - User: user_1074 - RequestID: olfsy8aljb +2025-06-18T14:19:54.881Z [INFO] auth-service - Operation: order_created - Processing time: 331ms - RequestID: af6gt7ps69 +2025-06-18T14:19:54.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1020 - IP: 192.168.167.32 - RequestID: r31vdkub5kl +2025-06-18T14:19:55.081Z [INFO] order-service - Auth event: logout - User: user_1059 - IP: 192.168.133.7 - RequestID: zip0la3df2 +2025-06-18T14:19:55.181Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 337ms - Rows affected: 63 - RequestID: 5qvjg177w9q +2025-06-18T14:19:55.281Z [INFO] payment-service - Database UPDATE on orders - Execution time: 327ms - Rows affected: 22 - RequestID: uctkbejegtq +2025-06-18T14:19:55.381Z [TRACE] payment-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.235.117 - RequestID: 6673ibrgt1r +2025-06-18T14:19:55.481Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 200 - Response time: 236ms - IP: 192.168.113.218 - User: user_1090 - RequestID: 2kxggq9gfai +2025-06-18T14:19:55.581Z [INFO] order-service - Auth event: password_change - User: user_1018 - IP: 192.168.240.169 - RequestID: y51xm1zpvm +2025-06-18T14:19:55.681Z [TRACE] order-service - GET /api/v1/users - Status: 200 - Response time: 1310ms - IP: 192.168.174.114 - User: user_1053 - RequestID: vcwfgjamlmg +2025-06-18T14:19:55.781Z [DEBUG] order-service - Operation: cache_hit - Processing time: 489ms - RequestID: xagmlf0lqx +2025-06-18T14:19:55.881Z [INFO] order-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.141.100 - RequestID: swfsvohniza +2025-06-18T14:19:55.981Z [INFO] notification-service - Operation: cache_hit - Processing time: 77ms - RequestID: 5ebpmhc13ah +2025-06-18T14:19:56.081Z [INFO] inventory-service - Database SELECT on payments - Execution time: 381ms - Rows affected: 67 - RequestID: lxs6veccovr +2025-06-18T14:19:56.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1055 - IP: 192.168.85.229 - RequestID: im9mwpsdwm +2025-06-18T14:19:56.281Z [INFO] auth-service - POST /api/v1/auth/login - Status: 403 - Response time: 614ms - IP: 192.168.97.87 - User: user_1074 - RequestID: v8csvb4pnpe +2025-06-18T14:19:56.381Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 290ms - Rows affected: 23 - RequestID: 70iqerdsbk4 +2025-06-18T14:19:56.481Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 92ms - Rows affected: 13 - RequestID: sxxz3tpt5wg +2025-06-18T14:19:56.581Z [TRACE] order-service - Database SELECT on users - Execution time: 234ms - Rows affected: 45 - RequestID: nr564jjhhjo +2025-06-18T14:19:56.681Z [TRACE] order-service - Operation: payment_processed - Processing time: 376ms - RequestID: 99j16eqyw0v +2025-06-18T14:19:56.781Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 134ms - Rows affected: 67 - RequestID: 17kz2hpd33d +2025-06-18T14:19:56.881Z [TRACE] notification-service - Database INSERT on payments - Execution time: 480ms - Rows affected: 75 - RequestID: rhlg1l3ui5l +2025-06-18T14:19:56.981Z [INFO] auth-service - Database INSERT on payments - Execution time: 376ms - Rows affected: 12 - RequestID: fidup351iis +2025-06-18T14:19:57.081Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 143ms - Rows affected: 91 - RequestID: a10g4jm8ivg +2025-06-18T14:19:57.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1019 - IP: 192.168.53.133 - RequestID: ffcgkx6q6ip +2025-06-18T14:19:57.281Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 290ms - Rows affected: 56 - RequestID: qlwqa4j6q4r +2025-06-18T14:19:57.381Z [TRACE] order-service - Database INSERT on sessions - Execution time: 191ms - Rows affected: 33 - RequestID: d4nqifomj17 +2025-06-18T14:19:57.481Z [INFO] order-service - Operation: notification_queued - Processing time: 859ms - RequestID: nwd9fit168 +2025-06-18T14:19:57.581Z [INFO] order-service - Auth event: password_change - User: user_1059 - IP: 192.168.13.72 - RequestID: 7rvu92tx44 +2025-06-18T14:19:57.681Z [TRACE] order-service - Auth event: password_change - User: user_1075 - IP: 192.168.227.77 - RequestID: 7n27bt27n87 +2025-06-18T14:19:57.781Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 75ms - Rows affected: 46 - RequestID: zrp2s4pwl4 +2025-06-18T14:19:57.881Z [TRACE] payment-service - Operation: email_sent - Processing time: 535ms - RequestID: zy17lfkoxwq +2025-06-18T14:19:57.981Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 860ms - RequestID: vve1dn39m8 +2025-06-18T14:19:58.081Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 244ms - RequestID: mq7jijmolnl +2025-06-18T14:19:58.181Z [TRACE] notification-service - Auth event: logout - User: user_1005 - IP: 192.168.85.229 - RequestID: ncexlat3dfs +2025-06-18T14:19:58.281Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 401ms - RequestID: icoq60oxkqd +2025-06-18T14:19:58.381Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 825ms - IP: 192.168.159.94 - User: user_1026 - RequestID: dyhcwcwumj8 +2025-06-18T14:19:58.481Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 65ms - Rows affected: 65 - RequestID: g1vz0z6k8q9 +2025-06-18T14:19:58.581Z [TRACE] notification-service - Database DELETE on orders - Execution time: 258ms - Rows affected: 80 - RequestID: c5thn10ox66 +2025-06-18T14:19:58.681Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 176ms - Rows affected: 27 - RequestID: 2dqp9ccv81p +2025-06-18T14:19:58.781Z [TRACE] order-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.10.184 - RequestID: 33pl54km9lu +2025-06-18T14:19:58.881Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 212ms - Rows affected: 60 - RequestID: 7tekjotxe7 +2025-06-18T14:19:58.981Z [DEBUG] user-service - Auth event: login_success - User: user_1006 - IP: 192.168.194.41 - RequestID: iynqau43pel +2025-06-18T14:19:59.081Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 502 - Response time: 193ms - IP: 192.168.181.225 - User: user_1097 - RequestID: szso88k2zxr +2025-06-18T14:19:59.181Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 401 - Response time: 737ms - IP: 192.168.85.229 - User: user_1074 - RequestID: sh1w7ph8dz +2025-06-18T14:19:59.281Z [TRACE] inventory-service - Operation: order_created - Processing time: 142ms - RequestID: vuleljw9zea +2025-06-18T14:19:59.381Z [INFO] auth-service - Auth event: logout - User: user_1003 - IP: 192.168.194.41 - RequestID: 8dzz1m9ka88 +2025-06-18T14:19:59.481Z [INFO] order-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.79.116 - RequestID: 467oos6x1di +2025-06-18T14:19:59.581Z [TRACE] inventory-service - POST /api/v1/users - Status: 403 - Response time: 1484ms - IP: 192.168.141.100 - User: user_1039 - RequestID: em4098iqy79 +2025-06-18T14:19:59.681Z [TRACE] notification-service - Database DELETE on payments - Execution time: 221ms - Rows affected: 71 - RequestID: 7gs9xoomfzq +2025-06-18T14:19:59.781Z [INFO] user-service - Database DELETE on orders - Execution time: 316ms - Rows affected: 48 - RequestID: 8ycmg6o3obd +2025-06-18T14:19:59.881Z [TRACE] order-service - Auth event: login_failed - User: user_1008 - IP: 192.168.79.116 - RequestID: 90w2iixktw +2025-06-18T14:19:59.981Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 468ms - RequestID: sqyced0tm78 +2025-06-18T14:20:00.081Z [TRACE] inventory-service - Auth event: login_failed - User: user_1063 - IP: 192.168.159.94 - RequestID: h4a0ufmowp +2025-06-18T14:20:00.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1054 - IP: 192.168.85.229 - RequestID: yfnro8coa1j +2025-06-18T14:20:00.281Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1024ms - IP: 192.168.14.77 - User: user_1087 - RequestID: 1p878o8ssk4h +2025-06-18T14:20:00.381Z [TRACE] order-service - Database DELETE on sessions - Execution time: 62ms - Rows affected: 15 - RequestID: 7k7hkh2cn8e +2025-06-18T14:20:00.481Z [INFO] payment-service - Database INSERT on users - Execution time: 42ms - Rows affected: 17 - RequestID: i5dcg3vmnt +2025-06-18T14:20:00.581Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 738ms - RequestID: 5f0yiaybw7n +2025-06-18T14:20:00.681Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 343ms - Rows affected: 12 - RequestID: 1mvg65zxcur +2025-06-18T14:20:00.781Z [INFO] auth-service - Operation: payment_processed - Processing time: 780ms - RequestID: t1pdoy8alk +2025-06-18T14:20:00.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 506ms - RequestID: mj7xgcshnfk +2025-06-18T14:20:00.981Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 123ms - Rows affected: 95 - RequestID: tp4xyl48nmf +2025-06-18T14:20:01.081Z [INFO] order-service - Database DELETE on orders - Execution time: 291ms - Rows affected: 13 - RequestID: i03l6hw7r8 +2025-06-18T14:20:01.181Z [INFO] notification-service - Database DELETE on orders - Execution time: 48ms - Rows affected: 88 - RequestID: jguj4ra7a4a +2025-06-18T14:20:01.281Z [TRACE] order-service - Database UPDATE on payments - Execution time: 64ms - Rows affected: 82 - RequestID: 7f41cd7bxm6 +2025-06-18T14:20:01.381Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 484ms - Rows affected: 41 - RequestID: uxaols9nvb +2025-06-18T14:20:01.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 1045ms - RequestID: h3vtmdnakhj +2025-06-18T14:20:01.581Z [DEBUG] order-service - Database INSERT on orders - Execution time: 189ms - Rows affected: 15 - RequestID: l3tpiplj9d +2025-06-18T14:20:01.681Z [INFO] notification-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.79.143 - RequestID: jpuz98fgmf +2025-06-18T14:20:01.781Z [TRACE] auth-service - Operation: notification_queued - Processing time: 1009ms - RequestID: kxxn4tlbw4a +2025-06-18T14:20:01.881Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 83ms - Rows affected: 21 - RequestID: n31fcehqkvl +2025-06-18T14:20:01.981Z [DEBUG] notification-service - POST /api/v1/users - Status: 200 - Response time: 1934ms - IP: 192.168.36.218 - User: user_1003 - RequestID: qdxbhrclkx +2025-06-18T14:20:02.081Z [DEBUG] payment-service - POST /api/v1/users - Status: 503 - Response time: 1253ms - IP: 192.168.85.229 - User: user_1052 - RequestID: an1gzxfftss +2025-06-18T14:20:02.181Z [INFO] auth-service - PATCH /api/v1/orders - Status: 404 - Response time: 1246ms - IP: 192.168.144.38 - User: user_1042 - RequestID: zl0df6alzth +2025-06-18T14:20:02.281Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 73ms - Rows affected: 74 - RequestID: wa553atjfv +2025-06-18T14:20:02.381Z [TRACE] order-service - Auth event: login_failed - User: user_1045 - IP: 192.168.227.77 - RequestID: jimvgc1qmbb +2025-06-18T14:20:02.481Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 147ms - Rows affected: 15 - RequestID: fhxv1wanmwn +2025-06-18T14:20:02.581Z [INFO] order-service - Auth event: logout - User: user_1013 - IP: 192.168.32.38 - RequestID: 8qwwb5v2cr9 +2025-06-18T14:20:02.681Z [TRACE] auth-service - Database DELETE on orders - Execution time: 482ms - Rows affected: 28 - RequestID: 08icsuodf0wj +2025-06-18T14:20:02.781Z [TRACE] user-service - Auth event: password_change - User: user_1044 - IP: 192.168.196.226 - RequestID: cysna7hrt4o +2025-06-18T14:20:02.881Z [INFO] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 614ms - IP: 192.168.44.5 - User: user_1047 - RequestID: 3ffnx8kt2ui +2025-06-18T14:20:02.981Z [INFO] inventory-service - Auth event: login_failed - User: user_1095 - IP: 192.168.196.226 - RequestID: 081c26uym4rw +2025-06-18T14:20:03.081Z [TRACE] notification-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.227.233 - RequestID: 2tolufx5lrn +2025-06-18T14:20:03.181Z [INFO] notification-service - Operation: cache_miss - Processing time: 869ms - RequestID: df6d11ojis7 +2025-06-18T14:20:03.281Z [TRACE] notification-service - Operation: cache_miss - Processing time: 857ms - RequestID: is6p4szovt +2025-06-18T14:20:03.381Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1408ms - IP: 192.168.10.184 - User: user_1073 - RequestID: ca3o27qk739 +2025-06-18T14:20:03.481Z [INFO] auth-service - Auth event: password_change - User: user_1032 - IP: 192.168.97.87 - RequestID: 11anxt30zwyj +2025-06-18T14:20:03.581Z [INFO] payment-service - Operation: cache_miss - Processing time: 490ms - RequestID: ca3s2dscfjp +2025-06-18T14:20:03.681Z [DEBUG] notification-service - Database SELECT on products - Execution time: 159ms - Rows affected: 18 - RequestID: ax2dqzewggk +2025-06-18T14:20:03.781Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1091ms - IP: 192.168.14.77 - User: user_1038 - RequestID: 91q4grapjg9 +2025-06-18T14:20:03.881Z [TRACE] payment-service - POST /api/v1/users - Status: 404 - Response time: 727ms - IP: 192.168.235.117 - User: user_1085 - RequestID: vy8xf7tgavc +2025-06-18T14:20:03.981Z [DEBUG] order-service - Database UPDATE on users - Execution time: 56ms - Rows affected: 99 - RequestID: rq7dcp9dq1a +2025-06-18T14:20:04.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1090 - IP: 192.168.242.165 - RequestID: 3231271d4c3 +2025-06-18T14:20:04.181Z [TRACE] notification-service - Auth event: login_failed - User: user_1061 - IP: 192.168.138.123 - RequestID: or1vtknrae +2025-06-18T14:20:04.281Z [TRACE] auth-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.240.169 - RequestID: hbjm5w264kk +2025-06-18T14:20:04.381Z [TRACE] order-service - Database SELECT on sessions - Execution time: 352ms - Rows affected: 87 - RequestID: wr6n7ez1vus +2025-06-18T14:20:04.481Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 213ms - RequestID: 1ssadm5sjni +2025-06-18T14:20:04.581Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 404ms - Rows affected: 31 - RequestID: zu8q1qllm8 +2025-06-18T14:20:04.681Z [TRACE] order-service - Auth event: login_success - User: user_1038 - IP: 192.168.242.165 - RequestID: mxbu6dm22fa +2025-06-18T14:20:04.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 999ms - RequestID: yj0x08v0ljq +2025-06-18T14:20:04.881Z [INFO] user-service - Operation: cache_miss - Processing time: 501ms - RequestID: 9pihb0f3o76 +2025-06-18T14:20:04.981Z [INFO] order-service - PUT /api/v1/users - Status: 500 - Response time: 946ms - IP: 192.168.30.79 - User: user_1003 - RequestID: h829ow3qq5k +2025-06-18T14:20:05.081Z [INFO] user-service - Auth event: login_success - User: user_1037 - IP: 192.168.247.134 - RequestID: ld35dt2a2o +2025-06-18T14:20:05.181Z [INFO] payment-service - Auth event: login_failed - User: user_1014 - IP: 192.168.33.76 - RequestID: cj50v3tydin +2025-06-18T14:20:05.281Z [TRACE] user-service - Operation: payment_processed - Processing time: 1026ms - RequestID: wni5hgavpxp +2025-06-18T14:20:05.381Z [TRACE] order-service - Operation: webhook_sent - Processing time: 523ms - RequestID: rb10u32h98i +2025-06-18T14:20:05.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.113.218 - RequestID: yj287dnqfh +2025-06-18T14:20:05.581Z [TRACE] auth-service - Operation: cache_miss - Processing time: 415ms - RequestID: vp5vauf754 +2025-06-18T14:20:05.681Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1108ms - IP: 192.168.1.152 - User: user_1043 - RequestID: itphfnx4l0m +2025-06-18T14:20:05.781Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 23ms - IP: 192.168.211.72 - User: user_1098 - RequestID: m6lxjcoihh +2025-06-18T14:20:05.881Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1789ms - IP: 192.168.79.141 - User: user_1012 - RequestID: yzkn86ns5g +2025-06-18T14:20:05.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1096 - IP: 192.168.181.225 - RequestID: oacg5x139s9 +2025-06-18T14:20:06.081Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 403 - Response time: 273ms - IP: 192.168.170.215 - User: user_1085 - RequestID: ebxtjepwy0h +2025-06-18T14:20:06.181Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 35ms - Rows affected: 23 - RequestID: 2sy71d4bxqb +2025-06-18T14:20:06.281Z [INFO] user-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.174.114 - RequestID: cpj6dnjcgrv +2025-06-18T14:20:06.381Z [TRACE] payment-service - Auth event: login_failed - User: user_1019 - IP: 192.168.85.229 - RequestID: 28agpeqjibt +2025-06-18T14:20:06.481Z [INFO] auth-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.36.218 - RequestID: vbiehhixakm +2025-06-18T14:20:06.581Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 400 - Response time: 1654ms - IP: 192.168.147.171 - User: user_1056 - RequestID: 2zgf7oka337 +2025-06-18T14:20:06.681Z [INFO] user-service - Auth event: password_change - User: user_1081 - IP: 192.168.196.226 - RequestID: 6e4m8j9vok3 +2025-06-18T14:20:06.781Z [DEBUG] order-service - Database SELECT on orders - Execution time: 217ms - Rows affected: 37 - RequestID: opg01fdxbk +2025-06-18T14:20:06.881Z [TRACE] inventory-service - Auth event: logout - User: user_1039 - IP: 192.168.1.152 - RequestID: 9z2m3hsfvb5 +2025-06-18T14:20:06.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.97.87 - RequestID: xf7moa3qnnq +2025-06-18T14:20:07.081Z [INFO] auth-service - Database UPDATE on products - Execution time: 186ms - Rows affected: 69 - RequestID: 6h3tkrg6ek4 +2025-06-18T14:20:07.181Z [DEBUG] user-service - Auth event: logout - User: user_1049 - IP: 192.168.68.128 - RequestID: a45u6amqx2r +2025-06-18T14:20:07.281Z [INFO] notification-service - Auth event: login_failed - User: user_1038 - IP: 192.168.81.206 - RequestID: z8jl2qqca4 +2025-06-18T14:20:07.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.227.77 - RequestID: xnelo0kogb +2025-06-18T14:20:07.481Z [INFO] user-service - PUT /api/v1/users - Status: 401 - Response time: 1606ms - IP: 192.168.53.133 - User: user_1090 - RequestID: gip1q15d2yt +2025-06-18T14:20:07.581Z [DEBUG] payment-service - Operation: order_created - Processing time: 474ms - RequestID: ksufobbsmms +2025-06-18T14:20:07.681Z [TRACE] payment-service - Auth event: logout - User: user_1021 - IP: 192.168.141.100 - RequestID: kakj4l5rrj +2025-06-18T14:20:07.781Z [INFO] user-service - Auth event: password_change - User: user_1058 - IP: 192.168.147.171 - RequestID: 27fh708s3ob +2025-06-18T14:20:07.881Z [INFO] user-service - PUT /api/v1/users - Status: 200 - Response time: 180ms - IP: 192.168.46.63 - User: user_1099 - RequestID: zhpr8yvt0h +2025-06-18T14:20:07.981Z [INFO] auth-service - Auth event: logout - User: user_1070 - IP: 192.168.32.38 - RequestID: 8b3xzwapam6 +2025-06-18T14:20:08.081Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 459ms - Rows affected: 64 - RequestID: y02k044rfrq +2025-06-18T14:20:08.181Z [TRACE] notification-service - Database SELECT on products - Execution time: 42ms - Rows affected: 73 - RequestID: jdk1z2goc +2025-06-18T14:20:08.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 657ms - RequestID: sduj018keos +2025-06-18T14:20:08.381Z [TRACE] user-service - Database INSERT on orders - Execution time: 36ms - Rows affected: 38 - RequestID: ls5f2f8enwb +2025-06-18T14:20:08.481Z [DEBUG] user-service - Operation: order_created - Processing time: 997ms - RequestID: 46hkkoe7gou +2025-06-18T14:20:08.581Z [TRACE] auth-service - Auth event: login_success - User: user_1081 - IP: 192.168.235.117 - RequestID: 5i3eo6v8exs +2025-06-18T14:20:08.681Z [INFO] user-service - Database INSERT on users - Execution time: 174ms - Rows affected: 62 - RequestID: d5nau67w5u +2025-06-18T14:20:08.781Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 401 - Response time: 805ms - IP: 192.168.44.5 - User: user_1089 - RequestID: 4zl7v6hx9f8 +2025-06-18T14:20:08.881Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 356ms - RequestID: kmvoxomxci +2025-06-18T14:20:08.981Z [DEBUG] order-service - Auth event: logout - User: user_1055 - IP: 192.168.227.77 - RequestID: qiqxaqx90pn +2025-06-18T14:20:09.081Z [TRACE] order-service - Auth event: login_failed - User: user_1093 - IP: 192.168.36.218 - RequestID: oo4vbfq4ei +2025-06-18T14:20:09.181Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 180ms - Rows affected: 6 - RequestID: aus5h27batj +2025-06-18T14:20:09.281Z [INFO] order-service - Database INSERT on orders - Execution time: 260ms - Rows affected: 28 - RequestID: 7mja8uqm6e +2025-06-18T14:20:09.381Z [TRACE] notification-service - Auth event: password_change - User: user_1096 - IP: 192.168.141.100 - RequestID: yv1285g3c6 +2025-06-18T14:20:09.481Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 83ms - Rows affected: 39 - RequestID: 65jzirxjsy7 +2025-06-18T14:20:09.581Z [INFO] payment-service - POST /api/v1/users - Status: 400 - Response time: 10ms - IP: 192.168.235.117 - User: user_1081 - RequestID: 43ko5wgw6c3 +2025-06-18T14:20:09.681Z [TRACE] inventory-service - Auth event: login_success - User: user_1019 - IP: 192.168.211.72 - RequestID: aqc9ljg7ubr +2025-06-18T14:20:09.781Z [DEBUG] order-service - POST /api/v1/payments - Status: 201 - Response time: 132ms - IP: 192.168.158.144 - User: user_1023 - RequestID: 876oxc7q99e +2025-06-18T14:20:09.881Z [TRACE] inventory-service - PUT /api/v1/users - Status: 200 - Response time: 1998ms - IP: 192.168.227.233 - User: user_1023 - RequestID: woua4rfzpw +2025-06-18T14:20:09.981Z [DEBUG] order-service - Auth event: login_failed - User: user_1079 - IP: 192.168.174.114 - RequestID: 26l8xbiflsd +2025-06-18T14:20:10.081Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.227.233 - RequestID: fp8dppt1x8w +2025-06-18T14:20:10.181Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 404 - Response time: 353ms - IP: 192.168.240.169 - User: user_1051 - RequestID: hh0onov9mlk +2025-06-18T14:20:10.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.79.143 - RequestID: v482b78ydz +2025-06-18T14:20:10.381Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 446ms - Rows affected: 49 - RequestID: 36ukbyyelri +2025-06-18T14:20:10.481Z [INFO] payment-service - Database INSERT on users - Execution time: 464ms - Rows affected: 86 - RequestID: qh6oge29z9r +2025-06-18T14:20:10.581Z [INFO] order-service - Operation: email_sent - Processing time: 53ms - RequestID: 9meegmookhn +2025-06-18T14:20:10.681Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 377ms - IP: 192.168.138.123 - User: user_1051 - RequestID: pe4g565nrzf +2025-06-18T14:20:10.781Z [TRACE] user-service - Auth event: logout - User: user_1019 - IP: 192.168.68.158 - RequestID: 6osy5j6npbj +2025-06-18T14:20:10.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 197ms - RequestID: ukwms9tklm8 +2025-06-18T14:20:10.981Z [INFO] order-service - Auth event: logout - User: user_1049 - IP: 192.168.44.5 - RequestID: qdgvcfhqpg +2025-06-18T14:20:11.081Z [INFO] auth-service - POST /api/v1/users - Status: 400 - Response time: 794ms - IP: 192.168.79.141 - User: user_1015 - RequestID: nb4ip2ksczs +2025-06-18T14:20:11.181Z [DEBUG] user-service - PUT /api/v1/payments - Status: 403 - Response time: 1872ms - IP: 192.168.79.116 - User: user_1078 - RequestID: wzflt26q12f +2025-06-18T14:20:11.281Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 400 - Response time: 153ms - IP: 192.168.242.165 - User: user_1021 - RequestID: z80d35gucm +2025-06-18T14:20:11.381Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.36.218 - RequestID: 6m8x169gsn9 +2025-06-18T14:20:11.481Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 410ms - Rows affected: 52 - RequestID: s58uheqnea +2025-06-18T14:20:11.581Z [INFO] auth-service - PUT /api/v1/users - Status: 200 - Response time: 274ms - IP: 192.168.68.128 - User: user_1025 - RequestID: 0jnbpz1itvo +2025-06-18T14:20:11.681Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 499ms - Rows affected: 31 - RequestID: qrdsutj27t +2025-06-18T14:20:11.781Z [DEBUG] order-service - Auth event: logout - User: user_1056 - IP: 192.168.141.100 - RequestID: crw8xyvbs46 +2025-06-18T14:20:11.881Z [INFO] payment-service - Operation: inventory_updated - Processing time: 636ms - RequestID: 6z7shf3lb2 +2025-06-18T14:20:11.981Z [INFO] user-service - Auth event: password_change - User: user_1025 - IP: 192.168.232.72 - RequestID: 3zuj43gbt9b +2025-06-18T14:20:12.081Z [INFO] order-service - PUT /api/v1/orders - Status: 403 - Response time: 1604ms - IP: 192.168.68.128 - User: user_1016 - RequestID: sb94jcqa68 +2025-06-18T14:20:12.181Z [DEBUG] order-service - Operation: notification_queued - Processing time: 805ms - RequestID: pfhk95yl61 +2025-06-18T14:20:12.281Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 503 - Response time: 436ms - IP: 192.168.79.116 - User: user_1056 - RequestID: jsgtkuuq2h +2025-06-18T14:20:12.381Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 401 - Response time: 469ms - IP: 192.168.1.152 - User: user_1004 - RequestID: 3jt9eyfv6wi +2025-06-18T14:20:12.481Z [TRACE] auth-service - Auth event: login_success - User: user_1071 - IP: 192.168.227.233 - RequestID: 0e9w9gas49jv +2025-06-18T14:20:12.581Z [TRACE] auth-service - Operation: order_created - Processing time: 86ms - RequestID: wyb5v2rgzip +2025-06-18T14:20:12.681Z [INFO] payment-service - Operation: email_sent - Processing time: 741ms - RequestID: 4sr04qcf2x5 +2025-06-18T14:20:12.781Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 806ms - IP: 192.168.138.123 - User: user_1092 - RequestID: dr1t1dwvxro +2025-06-18T14:20:12.881Z [TRACE] order-service - Database UPDATE on products - Execution time: 450ms - Rows affected: 65 - RequestID: dnrmaxgrsno +2025-06-18T14:20:12.981Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 275ms - Rows affected: 13 - RequestID: 45y5wyce69d +2025-06-18T14:20:13.081Z [INFO] notification-service - Auth event: login_failed - User: user_1060 - IP: 192.168.1.152 - RequestID: zm60mies3pl +2025-06-18T14:20:13.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.79.116 - RequestID: 8j5780bs5v +2025-06-18T14:20:13.281Z [INFO] auth-service - Auth event: password_change - User: user_1029 - IP: 192.168.158.144 - RequestID: km56jjmhx0k +2025-06-18T14:20:13.381Z [TRACE] notification-service - Auth event: login_success - User: user_1033 - IP: 192.168.1.152 - RequestID: he0sde2tz4 +2025-06-18T14:20:13.481Z [INFO] inventory-service - Database INSERT on payments - Execution time: 113ms - Rows affected: 6 - RequestID: hx0us53s1hd +2025-06-18T14:20:13.581Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 305ms - Rows affected: 3 - RequestID: wfxp37balp +2025-06-18T14:20:13.681Z [DEBUG] user-service - Operation: cache_miss - Processing time: 810ms - RequestID: gok50o41o5m +2025-06-18T14:20:13.781Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 617ms - RequestID: ejvqawqrtc5 +2025-06-18T14:20:13.881Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 366ms - Rows affected: 39 - RequestID: slig9gm6v4 +2025-06-18T14:20:13.981Z [TRACE] payment-service - Auth event: login_failed - User: user_1000 - IP: 192.168.104.37 - RequestID: qcgg0y1yfu +2025-06-18T14:20:14.081Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 178ms - Rows affected: 32 - RequestID: ui1067qzj7i +2025-06-18T14:20:14.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 887ms - RequestID: 495fq1uhbxm +2025-06-18T14:20:14.281Z [INFO] auth-service - Database INSERT on payments - Execution time: 487ms - Rows affected: 52 - RequestID: wgw1pfqrwri +2025-06-18T14:20:14.381Z [INFO] auth-service - Database SELECT on sessions - Execution time: 372ms - Rows affected: 22 - RequestID: 8gbvgmkppo7 +2025-06-18T14:20:14.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 458ms - RequestID: fy8vw01uz0r +2025-06-18T14:20:14.581Z [INFO] order-service - GET /api/v1/auth/login - Status: 404 - Response time: 1980ms - IP: 192.168.68.158 - User: user_1043 - RequestID: yt68gbmholr +2025-06-18T14:20:14.681Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 454ms - Rows affected: 93 - RequestID: ozqbg02gvj +2025-06-18T14:20:14.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 911ms - RequestID: 3p08dx2t8gd +2025-06-18T14:20:14.881Z [DEBUG] user-service - Operation: order_created - Processing time: 256ms - RequestID: 7pm7w0d7vkj +2025-06-18T14:20:14.981Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 419ms - Rows affected: 10 - RequestID: pd3pbcf8ku9 +2025-06-18T14:20:15.081Z [INFO] notification-service - Operation: email_sent - Processing time: 228ms - RequestID: wptrq745dos +2025-06-18T14:20:15.181Z [DEBUG] notification-service - Operation: email_sent - Processing time: 299ms - RequestID: 9xe18e0aj4 +2025-06-18T14:20:15.281Z [TRACE] auth-service - Operation: order_created - Processing time: 186ms - RequestID: t3v1baz648 +2025-06-18T14:20:15.381Z [INFO] user-service - Operation: notification_queued - Processing time: 558ms - RequestID: 0r01gwilk3hm +2025-06-18T14:20:15.481Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1803ms - IP: 192.168.31.117 - User: user_1073 - RequestID: kmzgsgv4mm +2025-06-18T14:20:15.581Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 494ms - IP: 192.168.158.144 - User: user_1096 - RequestID: z8g0s7gs7xn +2025-06-18T14:20:15.681Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 490ms - IP: 192.168.174.114 - User: user_1040 - RequestID: 17qven8ko5c +2025-06-18T14:20:15.781Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 715ms - RequestID: 8paryoymurf +2025-06-18T14:20:15.881Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 503 - Response time: 426ms - IP: 192.168.33.76 - User: user_1082 - RequestID: dh97rv5hgyb +2025-06-18T14:20:15.981Z [DEBUG] user-service - Database UPDATE on products - Execution time: 189ms - Rows affected: 89 - RequestID: uj46cxmhf4 +2025-06-18T14:20:16.081Z [DEBUG] auth-service - Operation: email_sent - Processing time: 544ms - RequestID: 0tmlmnrbvu1b +2025-06-18T14:20:16.181Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 120ms - Rows affected: 6 - RequestID: hh31zdkby0g +2025-06-18T14:20:16.281Z [TRACE] payment-service - Operation: cache_miss - Processing time: 449ms - RequestID: 68dbjpy6hvr +2025-06-18T14:20:16.381Z [TRACE] payment-service - Database INSERT on products - Execution time: 452ms - Rows affected: 13 - RequestID: 5ugsjpso5kk +2025-06-18T14:20:16.481Z [INFO] user-service - DELETE /api/v1/payments - Status: 404 - Response time: 1877ms - IP: 192.168.113.218 - User: user_1035 - RequestID: i87qjrmkgz8 +2025-06-18T14:20:16.581Z [DEBUG] inventory-service - Auth event: logout - User: user_1036 - IP: 192.168.174.114 - RequestID: rn1w9cu0fta +2025-06-18T14:20:16.681Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 323ms - Rows affected: 54 - RequestID: ruzu0hdelo +2025-06-18T14:20:16.781Z [INFO] user-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1225ms - IP: 192.168.10.184 - User: user_1008 - RequestID: hb3i1mqn4zb +2025-06-18T14:20:16.881Z [TRACE] user-service - Database DELETE on products - Execution time: 196ms - Rows affected: 57 - RequestID: r48i8p2h4o +2025-06-18T14:20:16.981Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.36.218 - RequestID: qyt0guv61q +2025-06-18T14:20:17.081Z [INFO] auth-service - Auth event: password_change - User: user_1079 - IP: 192.168.30.79 - RequestID: v54710ausr +2025-06-18T14:20:17.181Z [INFO] user-service - Database UPDATE on users - Execution time: 94ms - Rows affected: 53 - RequestID: q7wphjyfx6 +2025-06-18T14:20:17.281Z [INFO] order-service - GET /api/v1/orders - Status: 400 - Response time: 1916ms - IP: 192.168.36.218 - User: user_1092 - RequestID: 2zmaf59pdwd +2025-06-18T14:20:17.381Z [INFO] auth-service - Database SELECT on sessions - Execution time: 319ms - Rows affected: 83 - RequestID: jlhd6e8e5xg +2025-06-18T14:20:17.481Z [DEBUG] order-service - Auth event: login_success - User: user_1081 - IP: 192.168.242.165 - RequestID: a3z0actv21 +2025-06-18T14:20:17.581Z [TRACE] auth-service - Operation: cache_miss - Processing time: 253ms - RequestID: ffduxgz44ko +2025-06-18T14:20:17.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 207ms - RequestID: g1hgf5k0gqb +2025-06-18T14:20:17.781Z [INFO] payment-service - Auth event: password_change - User: user_1035 - IP: 192.168.79.143 - RequestID: kusnn2zouk +2025-06-18T14:20:17.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.181.225 - RequestID: fmx7bwxcot +2025-06-18T14:20:17.981Z [DEBUG] user-service - GET /api/v1/inventory - Status: 500 - Response time: 386ms - IP: 192.168.46.63 - User: user_1035 - RequestID: b67s1h5jnt +2025-06-18T14:20:18.081Z [DEBUG] user-service - Auth event: login_failed - User: user_1059 - IP: 192.168.104.37 - RequestID: fhersfh3hv +2025-06-18T14:20:18.181Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 159ms - Rows affected: 47 - RequestID: wh8anyyibwb +2025-06-18T14:20:18.281Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1381ms - IP: 192.168.181.225 - User: user_1091 - RequestID: i3e7ocjsm3 +2025-06-18T14:20:18.381Z [TRACE] order-service - Database UPDATE on payments - Execution time: 100ms - Rows affected: 16 - RequestID: qufcd41rniq +2025-06-18T14:20:18.481Z [INFO] order-service - Operation: order_created - Processing time: 934ms - RequestID: vzujcn5mzgb +2025-06-18T14:20:18.581Z [TRACE] order-service - Auth event: password_change - User: user_1011 - IP: 192.168.181.225 - RequestID: p9sqg6wlnv +2025-06-18T14:20:18.681Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 253ms - Rows affected: 58 - RequestID: w6je86524vh +2025-06-18T14:20:18.781Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 860ms - IP: 192.168.11.60 - User: user_1015 - RequestID: 5p4haq3j3i +2025-06-18T14:20:18.881Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1291ms - IP: 192.168.174.114 - User: user_1041 - RequestID: k150w2crlbi +2025-06-18T14:20:18.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.189.103 - RequestID: xe3za1sgbfj +2025-06-18T14:20:19.081Z [DEBUG] notification-service - Database DELETE on products - Execution time: 53ms - Rows affected: 63 - RequestID: 1q8qpu58jrc +2025-06-18T14:20:19.181Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1086ms - IP: 192.168.181.225 - User: user_1086 - RequestID: vvbm2k3qdi +2025-06-18T14:20:19.281Z [DEBUG] user-service - Operation: payment_processed - Processing time: 558ms - RequestID: nc36rzomm5 +2025-06-18T14:20:19.381Z [TRACE] user-service - Operation: cache_hit - Processing time: 955ms - RequestID: 4tu378x3xs +2025-06-18T14:20:19.481Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 401 - Response time: 1119ms - IP: 192.168.187.199 - User: user_1025 - RequestID: bpypuiuorwa +2025-06-18T14:20:19.581Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 497ms - RequestID: 48pw5w0l8wr +2025-06-18T14:20:19.681Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 557ms - RequestID: m2ur7nojel +2025-06-18T14:20:19.781Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 443ms - Rows affected: 76 - RequestID: h71gifbjcvi +2025-06-18T14:20:19.881Z [INFO] user-service - Operation: payment_processed - Processing time: 618ms - RequestID: bnakz019ub +2025-06-18T14:20:19.981Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1935ms - IP: 192.168.147.171 - User: user_1038 - RequestID: 2zvh9o1qevp +2025-06-18T14:20:20.081Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 827ms - RequestID: o8gzvqvkjwn +2025-06-18T14:20:20.181Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 339ms - RequestID: imv1jgiuynj +2025-06-18T14:20:20.281Z [INFO] payment-service - Database DELETE on payments - Execution time: 346ms - Rows affected: 78 - RequestID: pkh9v0faqvs +2025-06-18T14:20:20.381Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 451ms - RequestID: g61rv4fuam +2025-06-18T14:20:20.481Z [DEBUG] payment-service - GET /api/v1/orders - Status: 404 - Response time: 1487ms - IP: 192.168.187.199 - User: user_1001 - RequestID: xa3hvg9cyh +2025-06-18T14:20:20.581Z [INFO] auth-service - DELETE /api/v1/orders - Status: 400 - Response time: 1213ms - IP: 192.168.247.134 - User: user_1097 - RequestID: wa3yvqcrtrj +2025-06-18T14:20:20.681Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1213ms - IP: 192.168.31.117 - User: user_1064 - RequestID: vzhcq2t8yt +2025-06-18T14:20:20.781Z [DEBUG] notification-service - GET /api/v1/payments - Status: 503 - Response time: 229ms - IP: 192.168.232.72 - User: user_1065 - RequestID: qljo9jf0qd8 +2025-06-18T14:20:20.881Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 553ms - IP: 192.168.79.116 - User: user_1003 - RequestID: ry9fihsm5bd +2025-06-18T14:20:20.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.133.7 - RequestID: jjwc7cf86v +2025-06-18T14:20:21.081Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 57ms - Rows affected: 53 - RequestID: ix924fbsmm +2025-06-18T14:20:21.181Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 134ms - Rows affected: 12 - RequestID: qtwoeorkr4k +2025-06-18T14:20:21.281Z [INFO] payment-service - Operation: payment_processed - Processing time: 514ms - RequestID: isk6xi246uh +2025-06-18T14:20:21.381Z [DEBUG] payment-service - Auth event: login_success - User: user_1062 - IP: 192.168.247.134 - RequestID: nqrny0qvo4o +2025-06-18T14:20:21.481Z [INFO] auth-service - Database INSERT on users - Execution time: 118ms - Rows affected: 49 - RequestID: bmuic0lw8fp +2025-06-18T14:20:21.581Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1106ms - IP: 192.168.100.240 - User: user_1078 - RequestID: 6p7zo1meru +2025-06-18T14:20:21.681Z [DEBUG] inventory-service - GET /api/v1/users - Status: 200 - Response time: 246ms - IP: 192.168.33.76 - User: user_1038 - RequestID: domzvaoqjm5 +2025-06-18T14:20:21.781Z [DEBUG] user-service - GET /api/v1/payments - Status: 403 - Response time: 1683ms - IP: 192.168.36.218 - User: user_1095 - RequestID: ya0cgip6j5f +2025-06-18T14:20:21.881Z [INFO] user-service - Auth event: password_change - User: user_1032 - IP: 192.168.144.38 - RequestID: i3u4vouoph +2025-06-18T14:20:21.981Z [DEBUG] inventory-service - Auth event: password_change - User: user_1014 - IP: 192.168.235.117 - RequestID: o008uqgxlh +2025-06-18T14:20:22.081Z [TRACE] order-service - Operation: notification_queued - Processing time: 332ms - RequestID: 61cgcvfkhro +2025-06-18T14:20:22.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.33.76 - RequestID: rb74yfdd5do +2025-06-18T14:20:22.281Z [TRACE] inventory-service - Operation: email_sent - Processing time: 627ms - RequestID: krcpc3r9uh9 +2025-06-18T14:20:22.381Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 503 - Response time: 1100ms - IP: 192.168.232.72 - User: user_1023 - RequestID: 4tujr8sk27o +2025-06-18T14:20:22.481Z [TRACE] user-service - POST /api/v1/payments - Status: 500 - Response time: 721ms - IP: 192.168.174.114 - User: user_1045 - RequestID: 05zfjkbiqbh6 +2025-06-18T14:20:22.581Z [DEBUG] payment-service - Operation: email_sent - Processing time: 439ms - RequestID: fmwobwkldst +2025-06-18T14:20:22.681Z [INFO] user-service - Auth event: login_success - User: user_1098 - IP: 192.168.240.169 - RequestID: 9hm50kzp365 +2025-06-18T14:20:22.781Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 655ms - RequestID: i8jt96zc8wm +2025-06-18T14:20:22.881Z [INFO] notification-service - Database SELECT on products - Execution time: 327ms - Rows affected: 14 - RequestID: zchw9bsej9s +2025-06-18T14:20:22.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.68.158 - RequestID: h26c4iojm1w +2025-06-18T14:20:23.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 661ms - RequestID: a1mx7riwlgw +2025-06-18T14:20:23.181Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1561ms - IP: 192.168.158.144 - User: user_1068 - RequestID: zujd3n92ncg +2025-06-18T14:20:23.281Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1993ms - IP: 192.168.81.206 - User: user_1016 - RequestID: hinaf6eovow +2025-06-18T14:20:23.381Z [DEBUG] user-service - Database DELETE on orders - Execution time: 185ms - Rows affected: 47 - RequestID: hsgwv1qb6s7 +2025-06-18T14:20:23.481Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 403 - Response time: 557ms - IP: 192.168.104.37 - User: user_1076 - RequestID: vlza3r1yp1 +2025-06-18T14:20:23.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.100.240 - RequestID: 4myv3o1hngv +2025-06-18T14:20:23.681Z [INFO] payment-service - Auth event: password_change - User: user_1004 - IP: 192.168.30.79 - RequestID: 0cmn4bsj2bdf +2025-06-18T14:20:23.781Z [INFO] order-service - Auth event: login_failed - User: user_1080 - IP: 192.168.104.37 - RequestID: i9ibxqi14o +2025-06-18T14:20:23.881Z [TRACE] notification-service - GET /api/v1/users - Status: 400 - Response time: 1083ms - IP: 192.168.30.79 - User: user_1081 - RequestID: ehfenurc0g8 +2025-06-18T14:20:23.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1040 - IP: 192.168.232.72 - RequestID: ttbj6i7epm +2025-06-18T14:20:24.081Z [TRACE] user-service - Database DELETE on sessions - Execution time: 204ms - Rows affected: 29 - RequestID: ymgkn0de3m +2025-06-18T14:20:24.181Z [DEBUG] inventory-service - Operation: order_created - Processing time: 771ms - RequestID: 6v6atqbg4ii +2025-06-18T14:20:24.281Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 161ms - RequestID: kupfr9dpzpi +2025-06-18T14:20:24.381Z [INFO] order-service - Operation: cache_hit - Processing time: 572ms - RequestID: 8b7jwdovqfo +2025-06-18T14:20:24.481Z [DEBUG] auth-service - Auth event: login_success - User: user_1015 - IP: 192.168.79.116 - RequestID: nx902gvq0a8 +2025-06-18T14:20:24.581Z [TRACE] user-service - Database UPDATE on orders - Execution time: 363ms - Rows affected: 51 - RequestID: 6fx2xr941k5 +2025-06-18T14:20:24.681Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1845ms - IP: 192.168.104.37 - User: user_1095 - RequestID: 9ir0kzi45yn +2025-06-18T14:20:24.781Z [TRACE] order-service - Operation: order_created - Processing time: 1029ms - RequestID: 63nvpet7uuw +2025-06-18T14:20:24.881Z [INFO] auth-service - GET /api/v1/auth/login - Status: 401 - Response time: 1173ms - IP: 192.168.147.171 - User: user_1044 - RequestID: qb43d255jr +2025-06-18T14:20:24.981Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 403 - Response time: 90ms - IP: 192.168.1.152 - User: user_1073 - RequestID: aq68z1pz69k +2025-06-18T14:20:25.081Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 664ms - RequestID: kwraozxfu +2025-06-18T14:20:25.181Z [TRACE] notification-service - GET /api/v1/auth/login - Status: 401 - Response time: 1928ms - IP: 192.168.174.114 - User: user_1051 - RequestID: 472ew4wzxhm +2025-06-18T14:20:25.281Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 201 - Response time: 1597ms - IP: 192.168.113.218 - User: user_1035 - RequestID: f4sc2uccii +2025-06-18T14:20:25.381Z [DEBUG] order-service - Auth event: login_success - User: user_1002 - IP: 192.168.10.184 - RequestID: wk1etra03w9 +2025-06-18T14:20:25.481Z [INFO] user-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.174.114 - RequestID: 0ht0w0nczarn +2025-06-18T14:20:25.581Z [TRACE] notification-service - Operation: email_sent - Processing time: 250ms - RequestID: hcdijyht3z +2025-06-18T14:20:25.681Z [INFO] notification-service - DELETE /api/v1/payments - Status: 401 - Response time: 1812ms - IP: 192.168.1.152 - User: user_1039 - RequestID: lwo5wiglf3o +2025-06-18T14:20:25.781Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 545ms - IP: 192.168.235.117 - User: user_1070 - RequestID: eglg5o52rxb +2025-06-18T14:20:25.881Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1307ms - IP: 192.168.133.7 - User: user_1079 - RequestID: 4zhmvgewbft +2025-06-18T14:20:25.981Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 310ms - Rows affected: 70 - RequestID: o6mvn6ybe +2025-06-18T14:20:26.081Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 706ms - RequestID: fnj9wrssb1 +2025-06-18T14:20:26.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.159.94 - RequestID: ym4vf7hkplb +2025-06-18T14:20:26.281Z [INFO] inventory-service - PATCH /api/v1/users - Status: 502 - Response time: 615ms - IP: 192.168.138.123 - User: user_1031 - RequestID: vj6k6ygire +2025-06-18T14:20:26.381Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 478ms - Rows affected: 96 - RequestID: h5x3vbw7xk8 +2025-06-18T14:20:26.481Z [DEBUG] notification-service - Auth event: login_failed - User: user_1049 - IP: 192.168.138.123 - RequestID: tq7d2r98nu +2025-06-18T14:20:26.581Z [DEBUG] payment-service - Auth event: logout - User: user_1064 - IP: 192.168.196.226 - RequestID: 1wukab5t3z8 +2025-06-18T14:20:26.681Z [INFO] notification-service - Operation: webhook_sent - Processing time: 466ms - RequestID: t3nqgrlnuh +2025-06-18T14:20:26.781Z [DEBUG] user-service - Auth event: login_failed - User: user_1049 - IP: 192.168.10.184 - RequestID: kivrul8jx9b +2025-06-18T14:20:26.881Z [TRACE] auth-service - Operation: notification_queued - Processing time: 750ms - RequestID: 1me7bgc6n4d +2025-06-18T14:20:26.981Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 268ms - Rows affected: 70 - RequestID: 99me84ii1f +2025-06-18T14:20:27.081Z [INFO] order-service - Database INSERT on sessions - Execution time: 469ms - Rows affected: 85 - RequestID: n6dzapf4n2l +2025-06-18T14:20:27.181Z [TRACE] order-service - PUT /api/v1/payments - Status: 403 - Response time: 1887ms - IP: 192.168.144.38 - User: user_1024 - RequestID: k7ngecukx9 +2025-06-18T14:20:27.281Z [TRACE] auth-service - GET /api/v1/inventory - Status: 503 - Response time: 780ms - IP: 192.168.53.133 - User: user_1065 - RequestID: lisq786vde +2025-06-18T14:20:27.381Z [DEBUG] notification-service - Database DELETE on products - Execution time: 338ms - Rows affected: 2 - RequestID: w2zhej871a9 +2025-06-18T14:20:27.481Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 842ms - RequestID: 4gvk197dmpa +2025-06-18T14:20:27.581Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 374ms - RequestID: twmb0mvfpqm +2025-06-18T14:20:27.681Z [INFO] user-service - Operation: notification_queued - Processing time: 803ms - RequestID: g42pzo3azj8 +2025-06-18T14:20:27.781Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.242.165 - RequestID: i3ioj7ea99p +2025-06-18T14:20:27.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1093 - IP: 192.168.85.229 - RequestID: hw2od5lqyej +2025-06-18T14:20:27.981Z [INFO] notification-service - Auth event: login_failed - User: user_1084 - IP: 192.168.79.116 - RequestID: a8km5c4d8zb +2025-06-18T14:20:28.081Z [INFO] user-service - Operation: payment_processed - Processing time: 725ms - RequestID: uoau5x6nno +2025-06-18T14:20:28.181Z [INFO] order-service - Database SELECT on products - Execution time: 246ms - Rows affected: 39 - RequestID: n0wninp0h8 +2025-06-18T14:20:28.281Z [INFO] payment-service - POST /api/v1/users - Status: 404 - Response time: 1716ms - IP: 192.168.33.76 - User: user_1042 - RequestID: psaxp70ct1 +2025-06-18T14:20:28.381Z [TRACE] user-service - GET /api/v1/payments - Status: 503 - Response time: 1449ms - IP: 192.168.14.77 - User: user_1081 - RequestID: rvwebl364vb +2025-06-18T14:20:28.481Z [INFO] user-service - Operation: email_sent - Processing time: 826ms - RequestID: g8spmqoplot +2025-06-18T14:20:28.581Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 143ms - Rows affected: 76 - RequestID: kxw24qt0mxh +2025-06-18T14:20:28.681Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 125ms - RequestID: f0c3fxtk4pt +2025-06-18T14:20:28.781Z [INFO] auth-service - Database UPDATE on orders - Execution time: 212ms - Rows affected: 66 - RequestID: 4ke455lqxea +2025-06-18T14:20:28.881Z [TRACE] auth-service - Operation: payment_processed - Processing time: 302ms - RequestID: wifgw077zo +2025-06-18T14:20:28.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.44.5 - RequestID: 7dmzvnua69v +2025-06-18T14:20:29.081Z [INFO] auth-service - Operation: order_created - Processing time: 68ms - RequestID: 1b77tkqorodh +2025-06-18T14:20:29.181Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 134ms - Rows affected: 90 - RequestID: 7fkdjuh1q3 +2025-06-18T14:20:29.281Z [INFO] user-service - Auth event: login_failed - User: user_1058 - IP: 192.168.33.76 - RequestID: 6siq1c3okk +2025-06-18T14:20:29.381Z [INFO] payment-service - Database UPDATE on users - Execution time: 324ms - Rows affected: 56 - RequestID: kiz3do6kex +2025-06-18T14:20:29.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.187.199 - RequestID: 0zh8enxdawvh +2025-06-18T14:20:29.581Z [TRACE] auth-service - Operation: cache_miss - Processing time: 962ms - RequestID: fd1gxzmxcc +2025-06-18T14:20:29.681Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 327ms - Rows affected: 91 - RequestID: kjzw4qqwqs +2025-06-18T14:20:29.781Z [TRACE] payment-service - POST /api/v1/payments - Status: 404 - Response time: 1264ms - IP: 192.168.81.206 - User: user_1019 - RequestID: kxqo5yw7x4g +2025-06-18T14:20:29.881Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 229ms - RequestID: ybo4je13xhf +2025-06-18T14:20:29.981Z [INFO] inventory-service - Auth event: password_change - User: user_1032 - IP: 192.168.79.141 - RequestID: 0f0nguce0d6j +2025-06-18T14:20:30.081Z [TRACE] notification-service - Auth event: logout - User: user_1023 - IP: 192.168.141.100 - RequestID: xvqlowq376d +2025-06-18T14:20:30.181Z [DEBUG] auth-service - Operation: order_created - Processing time: 479ms - RequestID: iqlg3u6yseg +2025-06-18T14:20:30.281Z [DEBUG] order-service - Auth event: login_success - User: user_1058 - IP: 192.168.187.199 - RequestID: nknc05kslba +2025-06-18T14:20:30.381Z [INFO] inventory-service - Operation: order_created - Processing time: 1016ms - RequestID: 3ywrmct0oqc +2025-06-18T14:20:30.481Z [DEBUG] order-service - Database SELECT on users - Execution time: 420ms - Rows affected: 49 - RequestID: g861efqin +2025-06-18T14:20:30.581Z [TRACE] user-service - DELETE /api/v1/users - Status: 200 - Response time: 577ms - IP: 192.168.235.117 - User: user_1079 - RequestID: ezemml7qwg +2025-06-18T14:20:30.681Z [TRACE] order-service - Operation: email_sent - Processing time: 137ms - RequestID: ovkfv0oz4g +2025-06-18T14:20:30.781Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 403 - Response time: 107ms - IP: 192.168.138.123 - User: user_1047 - RequestID: gracgq5bslu +2025-06-18T14:20:30.881Z [DEBUG] auth-service - Database INSERT on users - Execution time: 169ms - Rows affected: 26 - RequestID: 6qk00firvca +2025-06-18T14:20:30.981Z [INFO] user-service - Database DELETE on payments - Execution time: 453ms - Rows affected: 56 - RequestID: ltwargdezm9 +2025-06-18T14:20:31.081Z [TRACE] auth-service - Auth event: login_success - User: user_1063 - IP: 192.168.97.87 - RequestID: 2vgcrotgz46 +2025-06-18T14:20:31.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 158ms - RequestID: qyrwwe9a41c +2025-06-18T14:20:31.281Z [INFO] notification-service - Database SELECT on products - Execution time: 324ms - Rows affected: 67 - RequestID: l21eidt04s +2025-06-18T14:20:31.381Z [INFO] inventory-service - Operation: cache_miss - Processing time: 593ms - RequestID: f4po7dftos +2025-06-18T14:20:31.481Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1621ms - IP: 192.168.138.123 - User: user_1076 - RequestID: 51wdr8docdq +2025-06-18T14:20:31.581Z [TRACE] auth-service - Operation: cache_hit - Processing time: 1024ms - RequestID: qjw554zwlke +2025-06-18T14:20:31.681Z [INFO] payment-service - DELETE /api/v1/orders - Status: 500 - Response time: 1066ms - IP: 192.168.211.72 - User: user_1059 - RequestID: eeo0tcqswio +2025-06-18T14:20:31.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.229.123 - RequestID: siu86y2q40h +2025-06-18T14:20:31.881Z [TRACE] payment-service - Auth event: login_success - User: user_1004 - IP: 192.168.159.94 - RequestID: qgm65lg57po +2025-06-18T14:20:31.981Z [INFO] auth-service - GET /api/v1/payments - Status: 200 - Response time: 631ms - IP: 192.168.68.128 - User: user_1072 - RequestID: mjphn9s0k6n +2025-06-18T14:20:32.081Z [INFO] user-service - Database DELETE on sessions - Execution time: 212ms - Rows affected: 8 - RequestID: la5hw3gsllq +2025-06-18T14:20:32.181Z [TRACE] user-service - Auth event: password_change - User: user_1074 - IP: 192.168.44.5 - RequestID: 5lv1lobgt6e +2025-06-18T14:20:32.281Z [DEBUG] user-service - Operation: cache_miss - Processing time: 1006ms - RequestID: 6vmccgcfoz5 +2025-06-18T14:20:32.381Z [DEBUG] notification-service - Operation: email_sent - Processing time: 444ms - RequestID: eocu4rxjsip +2025-06-18T14:20:32.481Z [TRACE] order-service - PATCH /api/v1/users - Status: 400 - Response time: 1721ms - IP: 192.168.170.215 - User: user_1017 - RequestID: lgx2qp5meo +2025-06-18T14:20:32.581Z [DEBUG] order-service - Database INSERT on users - Execution time: 4ms - Rows affected: 21 - RequestID: l64wdk017f +2025-06-18T14:20:32.681Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1728ms - IP: 192.168.159.94 - User: user_1099 - RequestID: s0kuclxk0a +2025-06-18T14:20:32.781Z [INFO] auth-service - Operation: webhook_sent - Processing time: 676ms - RequestID: pgxhcd8efj9 +2025-06-18T14:20:32.881Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 728ms - RequestID: a2hgk9721fn +2025-06-18T14:20:32.981Z [TRACE] user-service - PUT /api/v1/orders - Status: 400 - Response time: 1388ms - IP: 192.168.31.117 - User: user_1066 - RequestID: 2crs0p9363v +2025-06-18T14:20:33.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1034 - IP: 192.168.53.133 - RequestID: 375kthr7ooy +2025-06-18T14:20:33.181Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 455ms - Rows affected: 74 - RequestID: ikjb0c8gf8 +2025-06-18T14:20:33.281Z [DEBUG] notification-service - Auth event: logout - User: user_1085 - IP: 192.168.1.152 - RequestID: mr8cn7mmxkp +2025-06-18T14:20:33.381Z [TRACE] order-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.181.225 - RequestID: dwevwlk3wr +2025-06-18T14:20:33.481Z [TRACE] notification-service - Auth event: login_success - User: user_1024 - IP: 192.168.10.184 - RequestID: fxjhrgfntti +2025-06-18T14:20:33.581Z [INFO] user-service - Auth event: login_failed - User: user_1054 - IP: 192.168.30.79 - RequestID: szo1h923cjd +2025-06-18T14:20:33.681Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 179ms - Rows affected: 18 - RequestID: h71wo6q33a +2025-06-18T14:20:33.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 216ms - RequestID: 095vztwrj549 +2025-06-18T14:20:33.881Z [INFO] notification-service - Database INSERT on orders - Execution time: 69ms - Rows affected: 52 - RequestID: qz08me1mqsa +2025-06-18T14:20:33.981Z [INFO] order-service - Operation: cache_miss - Processing time: 808ms - RequestID: a1h0qcl53wu +2025-06-18T14:20:34.081Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 158ms - Rows affected: 70 - RequestID: 3ess7keux53 +2025-06-18T14:20:34.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1084 - IP: 192.168.141.100 - RequestID: q0irbw7u9b +2025-06-18T14:20:34.281Z [INFO] payment-service - GET /api/v1/inventory - Status: 404 - Response time: 1572ms - IP: 192.168.141.100 - User: user_1022 - RequestID: e5ii8re8d9s +2025-06-18T14:20:34.381Z [INFO] payment-service - Auth event: login_success - User: user_1039 - IP: 192.168.235.117 - RequestID: 76wmqntxf2 +2025-06-18T14:20:34.481Z [TRACE] notification-service - Auth event: login_success - User: user_1037 - IP: 192.168.194.41 - RequestID: rla2pbjjwk +2025-06-18T14:20:34.581Z [TRACE] notification-service - POST /api/v1/orders - Status: 400 - Response time: 36ms - IP: 192.168.14.77 - User: user_1047 - RequestID: nyai83367tq +2025-06-18T14:20:34.681Z [DEBUG] notification-service - Database INSERT on users - Execution time: 447ms - Rows affected: 17 - RequestID: ju20ketfo68 +2025-06-18T14:20:34.781Z [INFO] notification-service - Auth event: login_failed - User: user_1092 - IP: 192.168.79.116 - RequestID: 0p8qgflqskfo +2025-06-18T14:20:34.881Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 503 - Response time: 184ms - IP: 192.168.104.37 - User: user_1007 - RequestID: 9c1aes4mh6o +2025-06-18T14:20:34.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.100.240 - RequestID: cwfll1jp24 +2025-06-18T14:20:35.081Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1503ms - IP: 192.168.181.225 - User: user_1082 - RequestID: s2kk1mfrvan +2025-06-18T14:20:35.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.174.114 - RequestID: 0bfsdezxwh19 +2025-06-18T14:20:35.281Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 403 - Response time: 915ms - IP: 192.168.232.72 - User: user_1013 - RequestID: 1mpwmra7ztf +2025-06-18T14:20:35.381Z [INFO] payment-service - Operation: email_sent - Processing time: 248ms - RequestID: qeoi0qkgzg8 +2025-06-18T14:20:35.481Z [INFO] payment-service - Database UPDATE on users - Execution time: 42ms - Rows affected: 27 - RequestID: 7vnv3bvg56e +2025-06-18T14:20:35.581Z [TRACE] auth-service - Operation: order_created - Processing time: 608ms - RequestID: 7kafz7jn6jf +2025-06-18T14:20:35.681Z [INFO] auth-service - PUT /api/v1/inventory - Status: 403 - Response time: 493ms - IP: 192.168.100.240 - User: user_1009 - RequestID: sbp2mf5qt1 +2025-06-18T14:20:35.781Z [DEBUG] order-service - PATCH /api/v1/users - Status: 400 - Response time: 225ms - IP: 192.168.81.206 - User: user_1026 - RequestID: 6ub6sxs9xwd +2025-06-18T14:20:35.881Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 829ms - RequestID: ud1kcc9s0tc +2025-06-18T14:20:35.981Z [INFO] user-service - Database UPDATE on sessions - Execution time: 406ms - Rows affected: 31 - RequestID: 9wqkxgf3m4j +2025-06-18T14:20:36.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1030 - IP: 192.168.104.37 - RequestID: 65xox0c0ayg +2025-06-18T14:20:36.181Z [DEBUG] user-service - Operation: notification_queued - Processing time: 435ms - RequestID: 5vzcjgjc5b2 +2025-06-18T14:20:36.281Z [INFO] notification-service - Operation: cache_hit - Processing time: 648ms - RequestID: v6vgykmq6oe +2025-06-18T14:20:36.381Z [TRACE] order-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.170.215 - RequestID: js5erdq3f6 +2025-06-18T14:20:36.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.194.41 - RequestID: r7deadprvq +2025-06-18T14:20:36.581Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 403 - Response time: 1588ms - IP: 192.168.247.134 - User: user_1088 - RequestID: kbwtaxq8qm +2025-06-18T14:20:36.681Z [INFO] payment-service - GET /api/v1/orders - Status: 500 - Response time: 1981ms - IP: 192.168.97.87 - User: user_1037 - RequestID: 4yczzfa3y5h +2025-06-18T14:20:36.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 748ms - RequestID: nc53vc9rsgp +2025-06-18T14:20:36.881Z [INFO] notification-service - Operation: email_sent - Processing time: 780ms - RequestID: 8ymf5hzqv3s +2025-06-18T14:20:36.981Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 146ms - Rows affected: 91 - RequestID: 3xpqj5zgp77 +2025-06-18T14:20:37.081Z [INFO] order-service - Auth event: login_failed - User: user_1083 - IP: 192.168.13.72 - RequestID: 5nosuaoj24g +2025-06-18T14:20:37.181Z [DEBUG] payment-service - GET /api/v1/orders - Status: 503 - Response time: 1333ms - IP: 192.168.170.215 - User: user_1086 - RequestID: q4kgbfu4f4b +2025-06-18T14:20:37.281Z [DEBUG] payment-service - Operation: email_sent - Processing time: 436ms - RequestID: 7qghgyetaix +2025-06-18T14:20:37.381Z [DEBUG] user-service - Operation: payment_processed - Processing time: 673ms - RequestID: lwt3jv8r9p +2025-06-18T14:20:37.481Z [INFO] notification-service - Database DELETE on sessions - Execution time: 146ms - Rows affected: 75 - RequestID: z2neo10b97m +2025-06-18T14:20:37.581Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.28.146 - RequestID: w311vg8bx4 +2025-06-18T14:20:37.681Z [INFO] auth-service - POST /api/v1/auth/login - Status: 200 - Response time: 726ms - IP: 192.168.189.103 - User: user_1038 - RequestID: s02wpljn93f +2025-06-18T14:20:37.781Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 403 - Response time: 847ms - IP: 192.168.247.134 - User: user_1031 - RequestID: sucd0chubh +2025-06-18T14:20:37.881Z [TRACE] order-service - PUT /api/v1/payments - Status: 403 - Response time: 1067ms - IP: 192.168.167.32 - User: user_1059 - RequestID: 7etd3qvj26 +2025-06-18T14:20:37.981Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 773ms - RequestID: 1qjlpqqg4i8 +2025-06-18T14:20:38.081Z [INFO] order-service - Operation: cache_hit - Processing time: 844ms - RequestID: wvlg54phjd +2025-06-18T14:20:38.181Z [TRACE] payment-service - PUT /api/v1/orders - Status: 201 - Response time: 619ms - IP: 192.168.194.41 - User: user_1086 - RequestID: zpshydzzv88 +2025-06-18T14:20:38.281Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 442ms - Rows affected: 51 - RequestID: 6mmlglvcgqr +2025-06-18T14:20:38.381Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 186ms - Rows affected: 54 - RequestID: js6nwns9td9 +2025-06-18T14:20:38.481Z [DEBUG] notification-service - Auth event: login_failed - User: user_1032 - IP: 192.168.85.229 - RequestID: dfek6pmbnvt +2025-06-18T14:20:38.581Z [DEBUG] inventory-service - Operation: order_created - Processing time: 127ms - RequestID: nsfgr8bahl9 +2025-06-18T14:20:38.681Z [TRACE] user-service - GET /api/v1/inventory - Status: 401 - Response time: 1019ms - IP: 192.168.229.123 - User: user_1001 - RequestID: ss6n9hx9ls +2025-06-18T14:20:38.781Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 401 - Response time: 1946ms - IP: 192.168.79.143 - User: user_1089 - RequestID: 12kdx66b8tz9 +2025-06-18T14:20:38.881Z [INFO] order-service - Database DELETE on products - Execution time: 439ms - Rows affected: 97 - RequestID: b00u2l15ftp +2025-06-18T14:20:38.981Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1496ms - IP: 192.168.242.165 - User: user_1027 - RequestID: ssd2ncucs9l +2025-06-18T14:20:39.081Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 400 - Response time: 931ms - IP: 192.168.194.41 - User: user_1031 - RequestID: cvdlfsfgfvg +2025-06-18T14:20:39.181Z [TRACE] order-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.68.158 - RequestID: jlyw3lncbs8 +2025-06-18T14:20:39.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1083 - IP: 192.168.79.116 - RequestID: bn0y3lm9nc +2025-06-18T14:20:39.381Z [DEBUG] order-service - Operation: order_created - Processing time: 288ms - RequestID: i1l1t7as62r +2025-06-18T14:20:39.481Z [TRACE] user-service - Auth event: login_failed - User: user_1026 - IP: 192.168.68.158 - RequestID: t47g25vy3r9 +2025-06-18T14:20:39.581Z [TRACE] auth-service - Operation: notification_queued - Processing time: 960ms - RequestID: 3nntfxvbi48 +2025-06-18T14:20:39.681Z [INFO] order-service - Database DELETE on payments - Execution time: 200ms - Rows affected: 51 - RequestID: 3b8kguo1081 +2025-06-18T14:20:39.781Z [INFO] user-service - Auth event: password_change - User: user_1037 - IP: 192.168.133.7 - RequestID: tbwpzkria9m +2025-06-18T14:20:39.881Z [TRACE] user-service - Operation: notification_queued - Processing time: 555ms - RequestID: j7xcnsa5tum +2025-06-18T14:20:39.981Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 210ms - Rows affected: 55 - RequestID: dfsyg17w9ra +2025-06-18T14:20:40.081Z [INFO] notification-service - Operation: notification_queued - Processing time: 928ms - RequestID: 5w114c7s4h +2025-06-18T14:20:40.181Z [INFO] user-service - Operation: order_created - Processing time: 899ms - RequestID: vabypvne9k9 +2025-06-18T14:20:40.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 917ms - RequestID: t54edtn4myf +2025-06-18T14:20:40.381Z [TRACE] inventory-service - POST /api/v1/users - Status: 500 - Response time: 694ms - IP: 192.168.46.63 - User: user_1018 - RequestID: dae2bxtc8jk +2025-06-18T14:20:40.481Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1138ms - IP: 192.168.68.158 - User: user_1061 - RequestID: 9cip4yu39 +2025-06-18T14:20:40.581Z [DEBUG] order-service - Operation: payment_processed - Processing time: 446ms - RequestID: w77ogmzdrad +2025-06-18T14:20:40.681Z [TRACE] order-service - Database INSERT on products - Execution time: 39ms - Rows affected: 69 - RequestID: a1vfdtgof87 +2025-06-18T14:20:40.781Z [INFO] user-service - Operation: order_created - Processing time: 352ms - RequestID: ahsfgn5zsbp +2025-06-18T14:20:40.881Z [INFO] order-service - Database DELETE on orders - Execution time: 292ms - Rows affected: 68 - RequestID: rm9f1ft1t8e +2025-06-18T14:20:40.981Z [INFO] notification-service - Database UPDATE on products - Execution time: 343ms - Rows affected: 92 - RequestID: 36f81edjqmr +2025-06-18T14:20:41.081Z [DEBUG] user-service - Auth event: logout - User: user_1089 - IP: 192.168.14.77 - RequestID: la98k9fwqx +2025-06-18T14:20:41.181Z [TRACE] user-service - Database UPDATE on users - Execution time: 375ms - Rows affected: 80 - RequestID: 69hgdsywkwj +2025-06-18T14:20:41.281Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 177ms - RequestID: e8cn76lx4y +2025-06-18T14:20:41.381Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 503 - Response time: 54ms - IP: 192.168.30.79 - User: user_1044 - RequestID: clkymm7inf +2025-06-18T14:20:41.481Z [TRACE] payment-service - Auth event: password_change - User: user_1062 - IP: 192.168.138.123 - RequestID: efr7wjg94z9 +2025-06-18T14:20:41.581Z [INFO] auth-service - Auth event: logout - User: user_1046 - IP: 192.168.240.169 - RequestID: sa5s2m4pyc9 +2025-06-18T14:20:41.681Z [TRACE] user-service - Operation: notification_queued - Processing time: 923ms - RequestID: bqztupilym +2025-06-18T14:20:41.781Z [INFO] notification-service - PUT /api/v1/users - Status: 200 - Response time: 1788ms - IP: 192.168.229.123 - User: user_1042 - RequestID: o9trkbpcr8a +2025-06-18T14:20:41.881Z [TRACE] inventory-service - Database DELETE on products - Execution time: 81ms - Rows affected: 93 - RequestID: 0ge07o8x24tv +2025-06-18T14:20:41.981Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 403 - Response time: 402ms - IP: 192.168.138.123 - User: user_1053 - RequestID: 6zazce0gsf8 +2025-06-18T14:20:42.081Z [TRACE] notification-service - Auth event: password_change - User: user_1079 - IP: 192.168.144.38 - RequestID: um9ekg3w74c +2025-06-18T14:20:42.181Z [DEBUG] order-service - Operation: payment_processed - Processing time: 406ms - RequestID: 7l97ukff9sq +2025-06-18T14:20:42.281Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1989ms - IP: 192.168.227.233 - User: user_1015 - RequestID: h8oca63sff9 +2025-06-18T14:20:42.381Z [TRACE] payment-service - Database INSERT on users - Execution time: 357ms - Rows affected: 25 - RequestID: 1sgajckye02 +2025-06-18T14:20:42.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 536ms - RequestID: 5p4226jaqt9 +2025-06-18T14:20:42.581Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 158ms - Rows affected: 90 - RequestID: zxyrmsqz12 +2025-06-18T14:20:42.681Z [INFO] user-service - Database INSERT on payments - Execution time: 291ms - Rows affected: 24 - RequestID: n8n3bacov3 +2025-06-18T14:20:42.781Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 303ms - IP: 192.168.68.128 - User: user_1046 - RequestID: pcpxtzf8txg +2025-06-18T14:20:42.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1065 - IP: 192.168.232.72 - RequestID: uv99sixm8f +2025-06-18T14:20:42.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 529ms - RequestID: 10c1zc8dn9k +2025-06-18T14:20:43.081Z [TRACE] notification-service - Auth event: login_success - User: user_1005 - IP: 192.168.85.229 - RequestID: 7dqt23wn1tl +2025-06-18T14:20:43.181Z [TRACE] notification-service - Auth event: password_change - User: user_1095 - IP: 192.168.13.72 - RequestID: qee6lxnku8n +2025-06-18T14:20:43.281Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 503 - Response time: 103ms - IP: 192.168.227.233 - User: user_1023 - RequestID: 8mhqv4kwv4k +2025-06-18T14:20:43.381Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 117ms - Rows affected: 4 - RequestID: g968awuu5w7 +2025-06-18T14:20:43.481Z [TRACE] user-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.81.206 - RequestID: plg8drerf6 +2025-06-18T14:20:43.581Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 65ms - Rows affected: 34 - RequestID: 37p3dvwdg27 +2025-06-18T14:20:43.681Z [TRACE] payment-service - Auth event: password_change - User: user_1096 - IP: 192.168.100.240 - RequestID: mtl356w4zlp +2025-06-18T14:20:43.781Z [TRACE] notification-service - Auth event: password_change - User: user_1044 - IP: 192.168.100.240 - RequestID: fdyp78yndxd +2025-06-18T14:20:43.881Z [INFO] inventory-service - Operation: cache_hit - Processing time: 114ms - RequestID: 64johwbn0v5 +2025-06-18T14:20:43.981Z [DEBUG] user-service - Database DELETE on payments - Execution time: 269ms - Rows affected: 83 - RequestID: hx3jm7g5ows +2025-06-18T14:20:44.081Z [TRACE] order-service - Database SELECT on products - Execution time: 234ms - Rows affected: 15 - RequestID: kh9o6r9rr3 +2025-06-18T14:20:44.181Z [TRACE] auth-service - POST /api/v1/inventory - Status: 404 - Response time: 431ms - IP: 192.168.28.146 - User: user_1062 - RequestID: 9js3p5ekf1 +2025-06-18T14:20:44.281Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 542ms - IP: 192.168.31.117 - User: user_1026 - RequestID: r5o6ov37e1f +2025-06-18T14:20:44.381Z [INFO] user-service - Operation: payment_processed - Processing time: 110ms - RequestID: kzkg0m4j8zf +2025-06-18T14:20:44.481Z [INFO] user-service - Operation: payment_processed - Processing time: 935ms - RequestID: bj6bq90q7pq +2025-06-18T14:20:44.581Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 797ms - RequestID: hl3admx5mpk +2025-06-18T14:20:44.681Z [TRACE] notification-service - Operation: order_created - Processing time: 642ms - RequestID: ifepo8fwdl +2025-06-18T14:20:44.781Z [TRACE] payment-service - Auth event: login_success - User: user_1069 - IP: 192.168.181.225 - RequestID: 2xl9vq7bxuw +2025-06-18T14:20:44.881Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 500 - Response time: 688ms - IP: 192.168.170.215 - User: user_1091 - RequestID: 4voqjnr92d7 +2025-06-18T14:20:44.981Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 502 - Response time: 142ms - IP: 192.168.79.141 - User: user_1060 - RequestID: xtq6jfegcfb +2025-06-18T14:20:45.081Z [INFO] payment-service - Database SELECT on users - Execution time: 176ms - Rows affected: 9 - RequestID: isgpr26q0kg +2025-06-18T14:20:45.181Z [INFO] payment-service - Database DELETE on payments - Execution time: 55ms - Rows affected: 63 - RequestID: ehgnisuxe1b +2025-06-18T14:20:45.281Z [DEBUG] user-service - Database UPDATE on products - Execution time: 434ms - Rows affected: 89 - RequestID: fjkuaja03l4 +2025-06-18T14:20:45.381Z [TRACE] order-service - Database INSERT on payments - Execution time: 394ms - Rows affected: 26 - RequestID: qw4jqflaci +2025-06-18T14:20:45.481Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.138.123 - RequestID: jh1ps6n9xo +2025-06-18T14:20:45.581Z [DEBUG] order-service - POST /api/v1/payments - Status: 500 - Response time: 154ms - IP: 192.168.159.94 - User: user_1081 - RequestID: zz535n4qlro +2025-06-18T14:20:45.681Z [DEBUG] payment-service - Database DELETE on users - Execution time: 158ms - Rows affected: 54 - RequestID: ba6snhbz0ut +2025-06-18T14:20:45.781Z [TRACE] user-service - POST /api/v1/inventory - Status: 500 - Response time: 712ms - IP: 192.168.227.233 - User: user_1035 - RequestID: jafeimg67g +2025-06-18T14:20:45.881Z [TRACE] notification-service - PUT /api/v1/payments - Status: 201 - Response time: 861ms - IP: 192.168.81.206 - User: user_1045 - RequestID: tesinhkeqm +2025-06-18T14:20:45.981Z [INFO] payment-service - Auth event: login_success - User: user_1005 - IP: 192.168.138.123 - RequestID: ygzedimbaf +2025-06-18T14:20:46.081Z [INFO] notification-service - Auth event: password_change - User: user_1018 - IP: 192.168.30.79 - RequestID: 3dtzmted35x +2025-06-18T14:20:46.181Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 464ms - Rows affected: 76 - RequestID: 0e28rj9i3wzm +2025-06-18T14:20:46.281Z [TRACE] order-service - DELETE /api/v1/payments - Status: 503 - Response time: 1294ms - IP: 192.168.1.152 - User: user_1028 - RequestID: lrqqdfn2sj +2025-06-18T14:20:46.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1044 - IP: 192.168.167.32 - RequestID: d5gn42b7biq +2025-06-18T14:20:46.481Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 502 - Response time: 154ms - IP: 192.168.44.5 - User: user_1099 - RequestID: ak9s2v090ia +2025-06-18T14:20:46.581Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 401 - Response time: 473ms - IP: 192.168.187.199 - User: user_1096 - RequestID: zufu7itilw +2025-06-18T14:20:46.681Z [TRACE] order-service - Database INSERT on products - Execution time: 91ms - Rows affected: 72 - RequestID: ihxhlejk65p +2025-06-18T14:20:46.781Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 319ms - IP: 192.168.104.37 - User: user_1002 - RequestID: 6q5tqck0hds +2025-06-18T14:20:46.881Z [TRACE] payment-service - Operation: payment_processed - Processing time: 147ms - RequestID: n2vtzbmnuzh +2025-06-18T14:20:46.981Z [DEBUG] inventory-service - Operation: order_created - Processing time: 493ms - RequestID: c1ggn0jwvf +2025-06-18T14:20:47.081Z [INFO] order-service - Auth event: login_failed - User: user_1026 - IP: 192.168.181.225 - RequestID: c9dnk9h402c +2025-06-18T14:20:47.181Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 618ms - RequestID: uhg27xmvroq +2025-06-18T14:20:47.281Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 200 - Response time: 1533ms - IP: 192.168.85.229 - User: user_1021 - RequestID: uy2nrn6n4yj +2025-06-18T14:20:47.381Z [INFO] payment-service - Operation: order_created - Processing time: 257ms - RequestID: lmfwmyn81di +2025-06-18T14:20:47.481Z [DEBUG] order-service - Database INSERT on products - Execution time: 41ms - Rows affected: 46 - RequestID: d3o65o87mbh +2025-06-18T14:20:47.581Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 503 - Response time: 1003ms - IP: 192.168.187.199 - User: user_1023 - RequestID: 11sjkds04uea +2025-06-18T14:20:47.681Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 502 - Response time: 1904ms - IP: 192.168.79.143 - User: user_1043 - RequestID: q3bcegn9b8l +2025-06-18T14:20:47.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1055 - IP: 192.168.174.114 - RequestID: 1xqd3q5qk0s +2025-06-18T14:20:47.881Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 295ms - Rows affected: 85 - RequestID: puvm1oqoo0o +2025-06-18T14:20:47.981Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 139ms - Rows affected: 3 - RequestID: vjm2uhawcdr +2025-06-18T14:20:48.081Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 395ms - IP: 192.168.144.38 - User: user_1061 - RequestID: 3vec45gfqzh +2025-06-18T14:20:48.181Z [TRACE] user-service - PUT /api/v1/payments - Status: 502 - Response time: 405ms - IP: 192.168.104.37 - User: user_1017 - RequestID: nzjd4r2ysor +2025-06-18T14:20:48.281Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 792ms - RequestID: bib8cbmfmds +2025-06-18T14:20:48.381Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 385ms - Rows affected: 2 - RequestID: f61jg7j8el +2025-06-18T14:20:48.481Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.81.206 - RequestID: ws5sox909gc +2025-06-18T14:20:48.581Z [DEBUG] user-service - Database SELECT on orders - Execution time: 130ms - Rows affected: 84 - RequestID: yv6aj2ladmb +2025-06-18T14:20:48.681Z [INFO] notification-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.187.199 - RequestID: 6hb80fhfzt5 +2025-06-18T14:20:48.781Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 403 - Response time: 1632ms - IP: 192.168.13.72 - User: user_1008 - RequestID: 78mpidsw0r9 +2025-06-18T14:20:48.881Z [INFO] order-service - POST /api/v1/auth/login - Status: 201 - Response time: 1093ms - IP: 192.168.53.133 - User: user_1079 - RequestID: m8wl47s4p8j +2025-06-18T14:20:48.981Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 936ms - IP: 192.168.81.206 - User: user_1043 - RequestID: u1v0bjjv3ci +2025-06-18T14:20:49.081Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1033ms - IP: 192.168.36.218 - User: user_1032 - RequestID: 9iak5sk4ya +2025-06-18T14:20:49.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1075 - IP: 192.168.10.184 - RequestID: 7gyfxzdat5v +2025-06-18T14:20:49.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1012 - IP: 192.168.138.123 - RequestID: kjve7zvwio +2025-06-18T14:20:49.381Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 746ms - IP: 192.168.13.72 - User: user_1065 - RequestID: zll4be0dsqe +2025-06-18T14:20:49.481Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 1038ms - RequestID: hg7ksa8kauu +2025-06-18T14:20:49.581Z [INFO] auth-service - GET /api/v1/inventory - Status: 500 - Response time: 972ms - IP: 192.168.85.229 - User: user_1015 - RequestID: 5lf12fkuzf7 +2025-06-18T14:20:49.681Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 403 - Response time: 141ms - IP: 192.168.79.116 - User: user_1081 - RequestID: 7d3bx7lf99b +2025-06-18T14:20:49.781Z [INFO] auth-service - POST /api/v1/auth/login - Status: 500 - Response time: 1087ms - IP: 192.168.68.128 - User: user_1067 - RequestID: 3s7mcovq3ex +2025-06-18T14:20:49.881Z [INFO] inventory-service - Auth event: logout - User: user_1009 - IP: 192.168.81.206 - RequestID: 0eao0xr3wr6 +2025-06-18T14:20:49.981Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 293ms - Rows affected: 85 - RequestID: zo3whc5sig +2025-06-18T14:20:50.081Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 200 - Response time: 483ms - IP: 192.168.79.143 - User: user_1050 - RequestID: cupn12hw70e +2025-06-18T14:20:50.181Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1034 - IP: 192.168.68.158 - RequestID: sjj5edl4mgd +2025-06-18T14:20:50.281Z [INFO] inventory-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.79.116 - RequestID: 48mfvhnkx09 +2025-06-18T14:20:50.381Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 502 - Response time: 1408ms - IP: 192.168.147.171 - User: user_1021 - RequestID: o35p3gdgjh +2025-06-18T14:20:50.481Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 306ms - Rows affected: 5 - RequestID: 1yw763xk3d +2025-06-18T14:20:50.581Z [DEBUG] user-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.53.133 - RequestID: n3z4pe2o4nn +2025-06-18T14:20:50.681Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1283ms - IP: 192.168.194.41 - User: user_1089 - RequestID: sa4jf91v5jp +2025-06-18T14:20:50.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 928ms - RequestID: joe8ey4djul +2025-06-18T14:20:50.881Z [INFO] notification-service - Database UPDATE on payments - Execution time: 392ms - Rows affected: 83 - RequestID: badjbqg2gye +2025-06-18T14:20:50.981Z [INFO] order-service - PATCH /api/v1/payments - Status: 502 - Response time: 673ms - IP: 192.168.79.141 - User: user_1033 - RequestID: u8c2jrb9bx +2025-06-18T14:20:51.081Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 853ms - IP: 192.168.32.38 - User: user_1020 - RequestID: fzlxsst4hjc +2025-06-18T14:20:51.181Z [INFO] auth-service - Database DELETE on sessions - Execution time: 325ms - Rows affected: 12 - RequestID: e8qbr3mvpbn +2025-06-18T14:20:51.281Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 403 - Response time: 822ms - IP: 192.168.240.169 - User: user_1053 - RequestID: m4zgffsybqd +2025-06-18T14:20:51.381Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.11.60 - RequestID: ft3591bvsy6 +2025-06-18T14:20:51.481Z [TRACE] order-service - Operation: email_sent - Processing time: 975ms - RequestID: uae8fjd63tf +2025-06-18T14:20:51.581Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 488ms - Rows affected: 29 - RequestID: qrosy8oxejd +2025-06-18T14:20:51.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 223ms - RequestID: ki6jy0y39b8 +2025-06-18T14:20:51.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.68.158 - RequestID: yrimaas5eql +2025-06-18T14:20:51.881Z [INFO] inventory-service - Operation: cache_hit - Processing time: 485ms - RequestID: bvf1qloae86 +2025-06-18T14:20:51.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.189.103 - RequestID: rcoc4vw28ke +2025-06-18T14:20:52.081Z [TRACE] user-service - Database DELETE on payments - Execution time: 383ms - Rows affected: 10 - RequestID: iie2yxtfqea +2025-06-18T14:20:52.181Z [TRACE] notification-service - Database DELETE on products - Execution time: 202ms - Rows affected: 77 - RequestID: y74438lsce +2025-06-18T14:20:52.281Z [DEBUG] user-service - Operation: payment_processed - Processing time: 303ms - RequestID: nhgodzp5w2c +2025-06-18T14:20:52.381Z [DEBUG] user-service - Auth event: logout - User: user_1080 - IP: 192.168.44.5 - RequestID: pqxnbsuuxj +2025-06-18T14:20:52.481Z [DEBUG] user-service - Operation: cache_hit - Processing time: 167ms - RequestID: evtmgy7twwr +2025-06-18T14:20:52.581Z [INFO] order-service - Database SELECT on payments - Execution time: 80ms - Rows affected: 27 - RequestID: vzr7mv8ihy +2025-06-18T14:20:52.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.100.240 - RequestID: fns3pppog5h +2025-06-18T14:20:52.781Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1963ms - IP: 192.168.36.218 - User: user_1097 - RequestID: 04k5934sjb15 +2025-06-18T14:20:52.881Z [TRACE] notification-service - Operation: payment_processed - Processing time: 955ms - RequestID: xa7h1e0r1w8 +2025-06-18T14:20:52.981Z [TRACE] user-service - Operation: webhook_sent - Processing time: 909ms - RequestID: v0u7chpm1ra +2025-06-18T14:20:53.081Z [INFO] order-service - Database DELETE on sessions - Execution time: 31ms - Rows affected: 74 - RequestID: rabkcqpn49n +2025-06-18T14:20:53.181Z [INFO] inventory-service - Database INSERT on products - Execution time: 499ms - Rows affected: 91 - RequestID: 0xxgktuwcua +2025-06-18T14:20:53.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.1.152 - RequestID: yqec8c633oh +2025-06-18T14:20:53.381Z [INFO] notification-service - Operation: inventory_updated - Processing time: 155ms - RequestID: eslc2pidfms +2025-06-18T14:20:53.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.100.240 - RequestID: 0swwkkmzmbz +2025-06-18T14:20:53.581Z [INFO] user-service - PUT /api/v1/users - Status: 400 - Response time: 674ms - IP: 192.168.227.77 - User: user_1039 - RequestID: iq7wp96h27d +2025-06-18T14:20:53.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1046 - IP: 192.168.79.116 - RequestID: qvzrmt8aep +2025-06-18T14:20:53.781Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 264ms - Rows affected: 88 - RequestID: vvtqnhxy1n +2025-06-18T14:20:53.881Z [DEBUG] user-service - Database INSERT on orders - Execution time: 382ms - Rows affected: 30 - RequestID: y18ytqwm2yf +2025-06-18T14:20:53.981Z [DEBUG] payment-service - Database DELETE on products - Execution time: 217ms - Rows affected: 4 - RequestID: a0toxswmf0j +2025-06-18T14:20:54.081Z [INFO] inventory-service - Auth event: login_success - User: user_1057 - IP: 192.168.33.76 - RequestID: wjpbbszb4bf +2025-06-18T14:20:54.181Z [TRACE] notification-service - Operation: cache_hit - Processing time: 173ms - RequestID: yjcasbhh2nl +2025-06-18T14:20:54.281Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1883ms - IP: 192.168.167.32 - User: user_1084 - RequestID: h0f03pg589m +2025-06-18T14:20:54.381Z [INFO] payment-service - GET /api/v1/orders - Status: 500 - Response time: 1155ms - IP: 192.168.30.79 - User: user_1058 - RequestID: ne100fefxeo +2025-06-18T14:20:54.481Z [TRACE] auth-service - Operation: email_sent - Processing time: 133ms - RequestID: yzsprp9f61 +2025-06-18T14:20:54.581Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 427ms - Rows affected: 21 - RequestID: 7i3j6amcka6 +2025-06-18T14:20:54.681Z [TRACE] auth-service - Operation: email_sent - Processing time: 319ms - RequestID: h9h3ym6mktw +2025-06-18T14:20:54.781Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 48ms - Rows affected: 71 - RequestID: 1fqo51m6ybk +2025-06-18T14:20:54.881Z [DEBUG] auth-service - Auth event: login_failed - User: user_1082 - IP: 192.168.170.215 - RequestID: 9v40v07s2kd +2025-06-18T14:20:54.981Z [DEBUG] order-service - Auth event: logout - User: user_1031 - IP: 192.168.167.32 - RequestID: ss8a9d83qan +2025-06-18T14:20:55.081Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1000ms - IP: 192.168.64.33 - User: user_1036 - RequestID: cu4ua9332hh +2025-06-18T14:20:55.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1020 - IP: 192.168.194.41 - RequestID: gvw1q8sh3t8 +2025-06-18T14:20:55.281Z [INFO] inventory-service - Auth event: login_success - User: user_1072 - IP: 192.168.240.169 - RequestID: otiwp2z9zi +2025-06-18T14:20:55.381Z [TRACE] user-service - Operation: order_created - Processing time: 677ms - RequestID: vczapo3ur3 +2025-06-18T14:20:55.481Z [DEBUG] user-service - Auth event: login_failed - User: user_1065 - IP: 192.168.33.76 - RequestID: rnxikz2rd1e +2025-06-18T14:20:55.581Z [INFO] payment-service - Operation: cache_miss - Processing time: 978ms - RequestID: m2mpg0yq5pf +2025-06-18T14:20:55.681Z [INFO] inventory-service - Database INSERT on payments - Execution time: 135ms - Rows affected: 52 - RequestID: vfvj67comuf +2025-06-18T14:20:55.781Z [DEBUG] order-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.64.33 - RequestID: weys0o21nch +2025-06-18T14:20:55.881Z [INFO] auth-service - Database INSERT on users - Execution time: 437ms - Rows affected: 62 - RequestID: ibpcgdxrane +2025-06-18T14:20:55.981Z [TRACE] notification-service - Auth event: logout - User: user_1093 - IP: 192.168.240.169 - RequestID: h1qx0sjclf +2025-06-18T14:20:56.081Z [TRACE] auth-service - Database SELECT on payments - Execution time: 418ms - Rows affected: 47 - RequestID: v5p10vr8s5 +2025-06-18T14:20:56.181Z [TRACE] user-service - Auth event: login_success - User: user_1090 - IP: 192.168.144.38 - RequestID: 8ya40zj70fd +2025-06-18T14:20:56.281Z [TRACE] user-service - Auth event: login_failed - User: user_1050 - IP: 192.168.141.100 - RequestID: so0abswaj4 +2025-06-18T14:20:56.381Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 1022ms - RequestID: ykzs9l8pfjd +2025-06-18T14:20:56.481Z [TRACE] auth-service - Database DELETE on orders - Execution time: 7ms - Rows affected: 44 - RequestID: atyiqjssf2p +2025-06-18T14:20:56.581Z [INFO] auth-service - POST /api/v1/users - Status: 502 - Response time: 431ms - IP: 192.168.167.32 - User: user_1057 - RequestID: wiu5faciz0n +2025-06-18T14:20:56.681Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 296ms - Rows affected: 46 - RequestID: 10t2y0xbtkzq +2025-06-18T14:20:56.781Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 400 - Response time: 1264ms - IP: 192.168.170.215 - User: user_1024 - RequestID: 4tlyhd34xm5 +2025-06-18T14:20:56.881Z [INFO] notification-service - Operation: email_sent - Processing time: 514ms - RequestID: 0t0m7cspgof9 +2025-06-18T14:20:56.981Z [TRACE] notification-service - Auth event: logout - User: user_1058 - IP: 192.168.229.123 - RequestID: 0a8b7pk1ankn +2025-06-18T14:20:57.081Z [INFO] auth-service - Database UPDATE on payments - Execution time: 154ms - Rows affected: 79 - RequestID: 1suefukrqsj +2025-06-18T14:20:57.181Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 773ms - RequestID: 7h01v5juzjc +2025-06-18T14:20:57.281Z [INFO] payment-service - Auth event: login_success - User: user_1038 - IP: 192.168.211.72 - RequestID: 381cppvptju +2025-06-18T14:20:57.381Z [DEBUG] notification-service - Database DELETE on users - Execution time: 432ms - Rows affected: 22 - RequestID: nj2jlge1rv9 +2025-06-18T14:20:57.481Z [INFO] notification-service - Operation: inventory_updated - Processing time: 890ms - RequestID: k44ldjh9nyp +2025-06-18T14:20:57.581Z [TRACE] auth-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.44.5 - RequestID: eegz16ktizi +2025-06-18T14:20:57.681Z [TRACE] inventory-service - Auth event: logout - User: user_1074 - IP: 192.168.36.218 - RequestID: h9wjwy55kr +2025-06-18T14:20:57.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 464ms - RequestID: kgl501tpsxd +2025-06-18T14:20:57.881Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 400 - Response time: 844ms - IP: 192.168.79.116 - User: user_1022 - RequestID: vbu4k4uz9hq +2025-06-18T14:20:57.981Z [DEBUG] order-service - Operation: notification_queued - Processing time: 55ms - RequestID: jc32ku53dgs +2025-06-18T14:20:58.081Z [INFO] user-service - GET /api/v1/auth/login - Status: 403 - Response time: 1816ms - IP: 192.168.133.7 - User: user_1026 - RequestID: 5tbw1zk6zwp +2025-06-18T14:20:58.181Z [INFO] order-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.10.184 - RequestID: eg4iuba68l8 +2025-06-18T14:20:58.281Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 361ms - RequestID: 3n5aasimkdi +2025-06-18T14:20:58.381Z [TRACE] order-service - Auth event: password_change - User: user_1033 - IP: 192.168.79.143 - RequestID: 651fsioqmfw +2025-06-18T14:20:58.481Z [INFO] user-service - POST /api/v1/users - Status: 503 - Response time: 1609ms - IP: 192.168.81.206 - User: user_1014 - RequestID: 2l8fhuv2a8y +2025-06-18T14:20:58.581Z [INFO] order-service - Database SELECT on orders - Execution time: 337ms - Rows affected: 48 - RequestID: kgruf9ub3x +2025-06-18T14:20:58.681Z [INFO] inventory-service - Database DELETE on payments - Execution time: 405ms - Rows affected: 54 - RequestID: mo65aij0n1 +2025-06-18T14:20:58.781Z [INFO] order-service - Database INSERT on payments - Execution time: 102ms - Rows affected: 41 - RequestID: 2wd5b4nt20o +2025-06-18T14:20:58.881Z [DEBUG] payment-service - Database DELETE on products - Execution time: 153ms - Rows affected: 54 - RequestID: 9fkiabhc2gv +2025-06-18T14:20:58.981Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 503 - Response time: 972ms - IP: 192.168.53.133 - User: user_1085 - RequestID: 72b3zx61cl3 +2025-06-18T14:20:59.081Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 444ms - Rows affected: 44 - RequestID: pv5resiact +2025-06-18T14:20:59.181Z [TRACE] order-service - Auth event: login_success - User: user_1023 - IP: 192.168.31.117 - RequestID: 5lvo5magcu +2025-06-18T14:20:59.281Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 93ms - Rows affected: 9 - RequestID: n1bxwajvnb +2025-06-18T14:20:59.381Z [INFO] payment-service - PUT /api/v1/orders - Status: 400 - Response time: 1093ms - IP: 192.168.189.103 - User: user_1014 - RequestID: dsfsi1w3l1f +2025-06-18T14:20:59.481Z [DEBUG] auth-service - Operation: order_created - Processing time: 54ms - RequestID: 7nmscwovgnm +2025-06-18T14:20:59.581Z [TRACE] user-service - Operation: inventory_updated - Processing time: 415ms - RequestID: 1r0anxkvoe6 +2025-06-18T14:20:59.681Z [INFO] payment-service - Auth event: logout - User: user_1031 - IP: 192.168.158.144 - RequestID: ynv165i99qi +2025-06-18T14:20:59.781Z [DEBUG] notification-service - POST /api/v1/users - Status: 401 - Response time: 1923ms - IP: 192.168.28.146 - User: user_1095 - RequestID: rhybicwmv9o +2025-06-18T14:20:59.881Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 291ms - Rows affected: 56 - RequestID: c6tnmz0boh +2025-06-18T14:20:59.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1004 - IP: 192.168.187.199 - RequestID: 533d679lup4 +2025-06-18T14:21:00.081Z [INFO] order-service - Database INSERT on users - Execution time: 428ms - Rows affected: 91 - RequestID: xebqyevw9m +2025-06-18T14:21:00.181Z [INFO] inventory-service - Operation: cache_miss - Processing time: 506ms - RequestID: 3z4c5qj0e45 +2025-06-18T14:21:00.281Z [INFO] payment-service - POST /api/v1/auth/login - Status: 201 - Response time: 1060ms - IP: 192.168.159.94 - User: user_1094 - RequestID: qm2855a6mh +2025-06-18T14:21:00.381Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 381ms - Rows affected: 99 - RequestID: sut71jc3rd9 +2025-06-18T14:21:00.481Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 435ms - Rows affected: 35 - RequestID: kajlqj8kwkm +2025-06-18T14:21:00.581Z [INFO] inventory-service - Database DELETE on payments - Execution time: 34ms - Rows affected: 53 - RequestID: meux2jx8cbn +2025-06-18T14:21:00.681Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 326ms - RequestID: sbwla7p56qk +2025-06-18T14:21:00.781Z [INFO] order-service - Auth event: login_success - User: user_1008 - IP: 192.168.36.218 - RequestID: di6cul8n7ri +2025-06-18T14:21:00.881Z [TRACE] auth-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.13.72 - RequestID: 7az9463jztd +2025-06-18T14:21:00.981Z [DEBUG] user-service - Auth event: login_success - User: user_1067 - IP: 192.168.44.5 - RequestID: ckfyivgdjwp +2025-06-18T14:21:01.081Z [DEBUG] auth-service - Operation: email_sent - Processing time: 1019ms - RequestID: t4qtv5qw2vd +2025-06-18T14:21:01.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 286ms - RequestID: pyime81gg18 +2025-06-18T14:21:01.281Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1629ms - IP: 192.168.79.143 - User: user_1099 - RequestID: 1t28un3e6r9 +2025-06-18T14:21:01.381Z [DEBUG] user-service - Auth event: login_success - User: user_1075 - IP: 192.168.64.33 - RequestID: uuefbj0c13m +2025-06-18T14:21:01.481Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 809ms - RequestID: rpmqvnsiazj +2025-06-18T14:21:01.581Z [DEBUG] order-service - Auth event: login_success - User: user_1005 - IP: 192.168.44.5 - RequestID: ft8otpil9ir +2025-06-18T14:21:01.681Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 541ms - RequestID: a5bvrpceykf +2025-06-18T14:21:01.781Z [INFO] notification-service - Operation: payment_processed - Processing time: 351ms - RequestID: ddypfnaqemk +2025-06-18T14:21:01.881Z [INFO] order-service - POST /api/v1/orders - Status: 201 - Response time: 264ms - IP: 192.168.81.206 - User: user_1018 - RequestID: z9gi35l87 +2025-06-18T14:21:01.981Z [INFO] user-service - Database INSERT on products - Execution time: 75ms - Rows affected: 35 - RequestID: 6lm9l8x7m1r +2025-06-18T14:21:02.081Z [INFO] notification-service - Operation: inventory_updated - Processing time: 727ms - RequestID: q2cg1rbmgk +2025-06-18T14:21:02.181Z [DEBUG] notification-service - Database SELECT on products - Execution time: 274ms - Rows affected: 54 - RequestID: 79filbz3o3y +2025-06-18T14:21:02.281Z [DEBUG] notification-service - Database DELETE on users - Execution time: 468ms - Rows affected: 68 - RequestID: t3298i8egf +2025-06-18T14:21:02.381Z [TRACE] payment-service - GET /api/v1/users - Status: 201 - Response time: 697ms - IP: 192.168.33.76 - User: user_1019 - RequestID: kchlcnx9kzf +2025-06-18T14:21:02.481Z [TRACE] order-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.44.5 - RequestID: ezyju5xrq6g +2025-06-18T14:21:02.581Z [TRACE] auth-service - POST /api/v1/inventory - Status: 503 - Response time: 1549ms - IP: 192.168.227.233 - User: user_1038 - RequestID: w2hj5pj39y +2025-06-18T14:21:02.681Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 28ms - Rows affected: 61 - RequestID: uh5so0x4blr +2025-06-18T14:21:02.781Z [DEBUG] payment-service - Database INSERT on products - Execution time: 458ms - Rows affected: 6 - RequestID: zzrdgvtkc9m +2025-06-18T14:21:02.881Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1271ms - IP: 192.168.85.229 - User: user_1014 - RequestID: vpk1g7rpfaj +2025-06-18T14:21:02.981Z [TRACE] inventory-service - Auth event: password_change - User: user_1071 - IP: 192.168.11.60 - RequestID: llmzw1rtprb +2025-06-18T14:21:03.081Z [INFO] notification-service - DELETE /api/v1/orders - Status: 201 - Response time: 1630ms - IP: 192.168.194.41 - User: user_1082 - RequestID: 09pniupf163a +2025-06-18T14:21:03.181Z [INFO] user-service - Database DELETE on payments - Execution time: 304ms - Rows affected: 75 - RequestID: yl0xfzdoaj +2025-06-18T14:21:03.281Z [INFO] inventory-service - Operation: order_created - Processing time: 809ms - RequestID: is19s6anf2 +2025-06-18T14:21:03.381Z [INFO] inventory-service - Auth event: password_change - User: user_1095 - IP: 192.168.170.215 - RequestID: 2o4vadenpw2 +2025-06-18T14:21:03.481Z [TRACE] user-service - Operation: order_created - Processing time: 915ms - RequestID: y9la0y9gei +2025-06-18T14:21:03.581Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 285ms - Rows affected: 49 - RequestID: u6b0u3bgdg +2025-06-18T14:21:03.681Z [INFO] payment-service - Auth event: login_success - User: user_1078 - IP: 192.168.36.218 - RequestID: n9maq09tnj +2025-06-18T14:21:03.781Z [INFO] notification-service - Operation: order_created - Processing time: 706ms - RequestID: o1icmmsobc +2025-06-18T14:21:03.881Z [INFO] inventory-service - Database SELECT on orders - Execution time: 433ms - Rows affected: 6 - RequestID: 221bkxc3rbn +2025-06-18T14:21:03.981Z [INFO] payment-service - Operation: webhook_sent - Processing time: 118ms - RequestID: eklwh22nldj +2025-06-18T14:21:04.081Z [INFO] inventory-service - Operation: cache_hit - Processing time: 1017ms - RequestID: pzmpveqvoxo +2025-06-18T14:21:04.181Z [INFO] user-service - Database DELETE on sessions - Execution time: 433ms - Rows affected: 46 - RequestID: npn2olpvbln +2025-06-18T14:21:04.281Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 818ms - RequestID: 0pqkvvng4thq +2025-06-18T14:21:04.381Z [TRACE] payment-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.167.32 - RequestID: nqlj0l41ir +2025-06-18T14:21:04.481Z [INFO] notification-service - PATCH /api/v1/payments - Status: 502 - Response time: 246ms - IP: 192.168.229.123 - User: user_1062 - RequestID: vh2kg4zxfa +2025-06-18T14:21:04.581Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 502 - Response time: 1834ms - IP: 192.168.1.152 - User: user_1063 - RequestID: oa4lj26sf8e +2025-06-18T14:21:04.681Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 949ms - RequestID: y5rt5j24j8 +2025-06-18T14:21:04.781Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 439ms - Rows affected: 47 - RequestID: qzlazvcqi6f +2025-06-18T14:21:04.881Z [INFO] inventory-service - Auth event: password_change - User: user_1084 - IP: 192.168.189.103 - RequestID: xprptj6doms +2025-06-18T14:21:04.981Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 430ms - Rows affected: 49 - RequestID: 4e7d4xkpxgl +2025-06-18T14:21:05.081Z [INFO] order-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.79.116 - RequestID: jllt7ujq8dc +2025-06-18T14:21:05.181Z [DEBUG] auth-service - POST /api/v1/users - Status: 502 - Response time: 384ms - IP: 192.168.68.158 - User: user_1090 - RequestID: h47cbk5k7z6 +2025-06-18T14:21:05.281Z [INFO] user-service - Database SELECT on payments - Execution time: 100ms - Rows affected: 54 - RequestID: 5nezlks2l2v +2025-06-18T14:21:05.381Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 331ms - Rows affected: 70 - RequestID: 0gqdzdjc7n6 +2025-06-18T14:21:05.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 622ms - RequestID: epc7drd7nuv +2025-06-18T14:21:05.581Z [INFO] inventory-service - Operation: cache_hit - Processing time: 846ms - RequestID: 41kldjpu6i6 +2025-06-18T14:21:05.681Z [INFO] inventory-service - Auth event: login_failed - User: user_1043 - IP: 192.168.133.7 - RequestID: 52gu3lwk69n +2025-06-18T14:21:05.781Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 881ms - RequestID: 2yu4a6x62qj +2025-06-18T14:21:05.881Z [TRACE] auth-service - Database INSERT on users - Execution time: 162ms - Rows affected: 63 - RequestID: n7pl85bym1j +2025-06-18T14:21:05.981Z [DEBUG] notification-service - Auth event: login_success - User: user_1067 - IP: 192.168.141.100 - RequestID: 3ov930xgkjq +2025-06-18T14:21:06.081Z [TRACE] order-service - Database INSERT on payments - Execution time: 342ms - Rows affected: 97 - RequestID: tmsjxx1drwo +2025-06-18T14:21:06.181Z [DEBUG] user-service - DELETE /api/v1/users - Status: 401 - Response time: 1897ms - IP: 192.168.30.79 - User: user_1067 - RequestID: lmrrhh741pt +2025-06-18T14:21:06.281Z [INFO] inventory-service - POST /api/v1/users - Status: 400 - Response time: 340ms - IP: 192.168.174.114 - User: user_1034 - RequestID: lsvw6q0fxh +2025-06-18T14:21:06.381Z [INFO] order-service - DELETE /api/v1/users - Status: 502 - Response time: 1395ms - IP: 192.168.181.225 - User: user_1088 - RequestID: wpxvppp95b +2025-06-18T14:21:06.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 358ms - RequestID: 8b7bf2zev2g +2025-06-18T14:21:06.581Z [INFO] order-service - Auth event: password_change - User: user_1001 - IP: 192.168.170.215 - RequestID: svjzk7x2zq8 +2025-06-18T14:21:06.681Z [INFO] user-service - Operation: payment_processed - Processing time: 109ms - RequestID: 1d2w0v51j5a +2025-06-18T14:21:06.781Z [DEBUG] user-service - Database UPDATE on users - Execution time: 161ms - Rows affected: 20 - RequestID: 9yrsut0mx7u +2025-06-18T14:21:06.881Z [INFO] order-service - Operation: order_created - Processing time: 64ms - RequestID: j27gvcuit2 +2025-06-18T14:21:06.981Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1487ms - IP: 192.168.189.103 - User: user_1013 - RequestID: mtecs7kqii +2025-06-18T14:21:07.081Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 357ms - Rows affected: 25 - RequestID: y5kcnookz3 +2025-06-18T14:21:07.181Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1395ms - IP: 192.168.235.117 - User: user_1066 - RequestID: h7tzxdg0hig +2025-06-18T14:21:07.281Z [INFO] user-service - Operation: cache_hit - Processing time: 627ms - RequestID: 5m9kaf3cetl +2025-06-18T14:21:07.381Z [INFO] notification-service - Database UPDATE on payments - Execution time: 415ms - Rows affected: 6 - RequestID: xioyasrmc1f +2025-06-18T14:21:07.481Z [TRACE] auth-service - PUT /api/v1/payments - Status: 401 - Response time: 1158ms - IP: 192.168.227.233 - User: user_1050 - RequestID: 4u61hxh9vee +2025-06-18T14:21:07.581Z [INFO] order-service - Database SELECT on payments - Execution time: 381ms - Rows affected: 83 - RequestID: 0aag5rgid6zr +2025-06-18T14:21:07.681Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1341ms - IP: 192.168.81.206 - User: user_1048 - RequestID: 42tz8f93uq4 +2025-06-18T14:21:07.781Z [DEBUG] user-service - Auth event: password_change - User: user_1014 - IP: 192.168.240.169 - RequestID: sjxyrb6lpo +2025-06-18T14:21:07.881Z [DEBUG] payment-service - POST /api/v1/payments - Status: 201 - Response time: 593ms - IP: 192.168.53.133 - User: user_1068 - RequestID: dt8a9v8yfan +2025-06-18T14:21:07.981Z [DEBUG] order-service - Operation: payment_processed - Processing time: 435ms - RequestID: ygiripye00b +2025-06-18T14:21:08.081Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1497ms - IP: 192.168.144.38 - User: user_1074 - RequestID: mbr05j5ltxb +2025-06-18T14:21:08.181Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 403 - Response time: 1747ms - IP: 192.168.147.171 - User: user_1023 - RequestID: jtlrjj7m95 +2025-06-18T14:21:08.281Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1097ms - IP: 192.168.141.100 - User: user_1033 - RequestID: lp0e2i8rf8 +2025-06-18T14:21:08.381Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 200 - Response time: 1577ms - IP: 192.168.189.103 - User: user_1017 - RequestID: 20zhhccj86s +2025-06-18T14:21:08.481Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 335ms - Rows affected: 69 - RequestID: w1w02n24yj +2025-06-18T14:21:08.581Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.33.76 - RequestID: qbyb0wus1df +2025-06-18T14:21:08.681Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 404 - Response time: 136ms - IP: 192.168.14.77 - User: user_1016 - RequestID: 2frtduhbhc +2025-06-18T14:21:08.781Z [DEBUG] notification-service - Auth event: login_success - User: user_1039 - IP: 192.168.167.32 - RequestID: 7zhgbwoin6l +2025-06-18T14:21:08.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1071 - IP: 192.168.13.72 - RequestID: 6rpsabt5wju +2025-06-18T14:21:08.981Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 509ms - RequestID: buv2zn68xf6 +2025-06-18T14:21:09.081Z [DEBUG] payment-service - Auth event: logout - User: user_1088 - IP: 192.168.53.133 - RequestID: emorl0ywzrs +2025-06-18T14:21:09.181Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 1022ms - RequestID: c7y4q8bnhm6 +2025-06-18T14:21:09.281Z [DEBUG] order-service - Auth event: logout - User: user_1043 - IP: 192.168.100.240 - RequestID: hj6fcfwqi87 +2025-06-18T14:21:09.381Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 440ms - Rows affected: 71 - RequestID: eooz0hvafja +2025-06-18T14:21:09.481Z [TRACE] payment-service - POST /api/v1/payments - Status: 201 - Response time: 628ms - IP: 192.168.79.143 - User: user_1046 - RequestID: wfo0wfxhbjl +2025-06-18T14:21:09.581Z [INFO] user-service - Database UPDATE on sessions - Execution time: 165ms - Rows affected: 50 - RequestID: m7tj1hqapyq +2025-06-18T14:21:09.681Z [DEBUG] payment-service - GET /api/v1/users - Status: 503 - Response time: 533ms - IP: 192.168.30.79 - User: user_1047 - RequestID: 652k45uvi2l +2025-06-18T14:21:09.781Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 53ms - Rows affected: 80 - RequestID: myohit9s8sl +2025-06-18T14:21:09.881Z [DEBUG] notification-service - Auth event: login_failed - User: user_1016 - IP: 192.168.158.144 - RequestID: z1rlnqivfsn +2025-06-18T14:21:09.981Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 195ms - Rows affected: 63 - RequestID: x2yul8d0qja +2025-06-18T14:21:10.081Z [DEBUG] notification-service - Auth event: logout - User: user_1054 - IP: 192.168.79.116 - RequestID: no5suemjyzp +2025-06-18T14:21:10.181Z [INFO] auth-service - Operation: cache_hit - Processing time: 421ms - RequestID: 61bypbdfalu +2025-06-18T14:21:10.281Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 310ms - IP: 192.168.31.117 - User: user_1032 - RequestID: t4f902g3x7 +2025-06-18T14:21:10.381Z [DEBUG] order-service - GET /api/v1/users - Status: 503 - Response time: 1626ms - IP: 192.168.33.76 - User: user_1020 - RequestID: 8erpxw8kb37 +2025-06-18T14:21:10.481Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 875ms - RequestID: 8jimve454el +2025-06-18T14:21:10.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 708ms - RequestID: icogalevpjp +2025-06-18T14:21:10.681Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 420ms - Rows affected: 84 - RequestID: kg0vkdy7l1m +2025-06-18T14:21:10.781Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 347ms - Rows affected: 77 - RequestID: wk047gi3w0q +2025-06-18T14:21:10.881Z [TRACE] payment-service - Database DELETE on products - Execution time: 356ms - Rows affected: 21 - RequestID: kgpi3sier1 +2025-06-18T14:21:10.981Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 190ms - Rows affected: 34 - RequestID: mrz1dpnt07h +2025-06-18T14:21:11.081Z [DEBUG] order-service - Database INSERT on orders - Execution time: 308ms - Rows affected: 10 - RequestID: 3thry7v7alp +2025-06-18T14:21:11.181Z [TRACE] payment-service - POST /api/v1/inventory - Status: 200 - Response time: 1208ms - IP: 192.168.53.133 - User: user_1085 - RequestID: up4hmo6x538 +2025-06-18T14:21:11.281Z [INFO] user-service - Auth event: login_success - User: user_1029 - IP: 192.168.28.146 - RequestID: 9kke4g2lf4u +2025-06-18T14:21:11.381Z [DEBUG] order-service - Database INSERT on products - Execution time: 210ms - Rows affected: 4 - RequestID: yz25szi2kh +2025-06-18T14:21:11.481Z [INFO] user-service - Database INSERT on products - Execution time: 11ms - Rows affected: 3 - RequestID: 3wjhap4k5so +2025-06-18T14:21:11.581Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 458ms - RequestID: 83nyl16uc0d +2025-06-18T14:21:11.681Z [TRACE] inventory-service - Database SELECT on products - Execution time: 301ms - Rows affected: 86 - RequestID: 5fves6zsso5 +2025-06-18T14:21:11.781Z [INFO] inventory-service - Operation: cache_hit - Processing time: 709ms - RequestID: ptkxfwnia4l +2025-06-18T14:21:11.881Z [DEBUG] order-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.141.100 - RequestID: ivbmn7n2s4d +2025-06-18T14:21:11.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.229.123 - RequestID: ls3ee4a7kz +2025-06-18T14:21:12.081Z [DEBUG] payment-service - Auth event: login_success - User: user_1085 - IP: 192.168.227.77 - RequestID: yo5e91drd39 +2025-06-18T14:21:12.181Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 503 - Response time: 1003ms - IP: 192.168.240.169 - User: user_1001 - RequestID: a80mdayksbi +2025-06-18T14:21:12.281Z [INFO] auth-service - Database UPDATE on products - Execution time: 97ms - Rows affected: 77 - RequestID: ceh34ww5v35 +2025-06-18T14:21:12.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.194.41 - RequestID: a3m4scugnbs +2025-06-18T14:21:12.481Z [TRACE] notification-service - PUT /api/v1/payments - Status: 500 - Response time: 902ms - IP: 192.168.194.41 - User: user_1049 - RequestID: uu2q0e4f20l +2025-06-18T14:21:12.581Z [TRACE] auth-service - Database SELECT on products - Execution time: 65ms - Rows affected: 28 - RequestID: lagwuo34icq +2025-06-18T14:21:12.681Z [TRACE] notification-service - PUT /api/v1/users - Status: 502 - Response time: 1566ms - IP: 192.168.211.72 - User: user_1074 - RequestID: i6mgl8dxnab +2025-06-18T14:21:12.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.141.100 - RequestID: qgwxggnklyk +2025-06-18T14:21:12.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.240.169 - RequestID: 480wik2ik8m +2025-06-18T14:21:12.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 908ms - RequestID: o5kfvbs0rli +2025-06-18T14:21:13.081Z [DEBUG] auth-service - Database INSERT on users - Execution time: 163ms - Rows affected: 99 - RequestID: gzwgpghl0gd +2025-06-18T14:21:13.181Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 413ms - Rows affected: 34 - RequestID: 3g5t5zyoicd +2025-06-18T14:21:13.281Z [TRACE] auth-service - Operation: cache_miss - Processing time: 831ms - RequestID: 6nhynn636yh +2025-06-18T14:21:13.381Z [TRACE] order-service - Auth event: login_failed - User: user_1023 - IP: 192.168.141.100 - RequestID: 5q5suhj5pw +2025-06-18T14:21:13.481Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 362ms - Rows affected: 85 - RequestID: qf8vexf0kw +2025-06-18T14:21:13.581Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1136ms - IP: 192.168.13.72 - User: user_1092 - RequestID: luypgr8k4mb +2025-06-18T14:21:13.681Z [INFO] user-service - Auth event: logout - User: user_1075 - IP: 192.168.194.41 - RequestID: eakhd5ut3m +2025-06-18T14:21:13.781Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 403 - Response time: 1948ms - IP: 192.168.211.72 - User: user_1027 - RequestID: 0v5tttgr1yi +2025-06-18T14:21:13.881Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 296ms - Rows affected: 22 - RequestID: g4wo5spp6br +2025-06-18T14:21:13.981Z [TRACE] notification-service - Operation: cache_miss - Processing time: 340ms - RequestID: a6fp2xvnnjm +2025-06-18T14:21:14.081Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1969ms - IP: 192.168.85.229 - User: user_1009 - RequestID: aznbtxpvvgm +2025-06-18T14:21:14.181Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 337ms - RequestID: crzquc9uy6c +2025-06-18T14:21:14.281Z [INFO] payment-service - Auth event: login_success - User: user_1006 - IP: 192.168.13.72 - RequestID: rv65w4dtdeb +2025-06-18T14:21:14.381Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 414ms - IP: 192.168.174.114 - User: user_1080 - RequestID: bawxdzkpfbo +2025-06-18T14:21:14.481Z [TRACE] user-service - Operation: payment_processed - Processing time: 319ms - RequestID: s0s7f46uklt +2025-06-18T14:21:14.581Z [INFO] user-service - Operation: notification_queued - Processing time: 1044ms - RequestID: i8awbx9jl7r +2025-06-18T14:21:14.681Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 425ms - Rows affected: 85 - RequestID: yi5mryutucb +2025-06-18T14:21:14.781Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 38ms - Rows affected: 92 - RequestID: jrh3u53qsyi +2025-06-18T14:21:14.881Z [TRACE] inventory-service - POST /api/v1/orders - Status: 401 - Response time: 103ms - IP: 192.168.174.114 - User: user_1031 - RequestID: nail0ijmdl +2025-06-18T14:21:14.981Z [TRACE] user-service - Auth event: password_change - User: user_1033 - IP: 192.168.79.141 - RequestID: icq48z1cl8r +2025-06-18T14:21:15.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 151ms - RequestID: kbtzl1otufd +2025-06-18T14:21:15.181Z [TRACE] order-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.229.123 - RequestID: ohjkk1y50w +2025-06-18T14:21:15.281Z [INFO] notification-service - Operation: cache_hit - Processing time: 855ms - RequestID: 15i4f0i3mx +2025-06-18T14:21:15.381Z [INFO] user-service - PATCH /api/v1/inventory - Status: 400 - Response time: 2003ms - IP: 192.168.68.128 - User: user_1072 - RequestID: dw02ov0yxlg +2025-06-18T14:21:15.481Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 251ms - Rows affected: 49 - RequestID: ec1dvlj7n8q +2025-06-18T14:21:15.581Z [INFO] order-service - Database INSERT on users - Execution time: 389ms - Rows affected: 62 - RequestID: 09x8jdjctqj8 +2025-06-18T14:21:15.681Z [INFO] payment-service - Database DELETE on products - Execution time: 317ms - Rows affected: 13 - RequestID: rl5lnt2rvv +2025-06-18T14:21:15.781Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 195ms - Rows affected: 52 - RequestID: fllaxeuyc5n +2025-06-18T14:21:15.881Z [INFO] user-service - Database UPDATE on users - Execution time: 2ms - Rows affected: 0 - RequestID: yy29vhp7kkp +2025-06-18T14:21:15.981Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 112ms - RequestID: vou8e4m6gp9 +2025-06-18T14:21:16.081Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 344ms - Rows affected: 6 - RequestID: 70vt6yzxxyn +2025-06-18T14:21:16.181Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 460ms - Rows affected: 14 - RequestID: rchggv3ezpj +2025-06-18T14:21:16.281Z [INFO] user-service - Operation: payment_processed - Processing time: 578ms - RequestID: ba1js4rxyc +2025-06-18T14:21:16.381Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 888ms - RequestID: mvrf4yyqlp9 +2025-06-18T14:21:16.481Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 400 - Response time: 1852ms - IP: 192.168.28.146 - User: user_1088 - RequestID: jjb1un85k4i +2025-06-18T14:21:16.581Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 161ms - RequestID: 92nmtlqvwbm +2025-06-18T14:21:16.681Z [TRACE] auth-service - Database INSERT on payments - Execution time: 378ms - Rows affected: 99 - RequestID: qdk1vggvc6 +2025-06-18T14:21:16.781Z [INFO] payment-service - POST /api/v1/users - Status: 403 - Response time: 1364ms - IP: 192.168.232.72 - User: user_1053 - RequestID: b4j2vcfeojb +2025-06-18T14:21:16.881Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 903ms - RequestID: 0oludest77tb +2025-06-18T14:21:16.981Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 459ms - RequestID: nu1g4yxy8s +2025-06-18T14:21:17.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.211.72 - RequestID: hgharrvb4a +2025-06-18T14:21:17.181Z [TRACE] order-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.85.229 - RequestID: 5l7zfb43wm +2025-06-18T14:21:17.281Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 309ms - Rows affected: 5 - RequestID: n5udtwl9pch +2025-06-18T14:21:17.381Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 442ms - Rows affected: 26 - RequestID: b2a7klxlwkf +2025-06-18T14:21:17.481Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 725ms - IP: 192.168.81.206 - User: user_1023 - RequestID: cvntb3che4k +2025-06-18T14:21:17.581Z [TRACE] payment-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.85.229 - RequestID: puf27xiyere +2025-06-18T14:21:17.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 646ms - RequestID: skadv6v9n1 +2025-06-18T14:21:17.781Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 200 - Response time: 804ms - IP: 192.168.240.169 - User: user_1022 - RequestID: rqnkmkjjl5 +2025-06-18T14:21:17.881Z [TRACE] user-service - Database INSERT on payments - Execution time: 270ms - Rows affected: 45 - RequestID: 1sidolb4imd +2025-06-18T14:21:17.981Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 309ms - Rows affected: 36 - RequestID: i5ikpvnxfya +2025-06-18T14:21:18.081Z [INFO] notification-service - Operation: order_created - Processing time: 318ms - RequestID: zvtd0718pzq +2025-06-18T14:21:18.181Z [DEBUG] user-service - PUT /api/v1/payments - Status: 500 - Response time: 219ms - IP: 192.168.85.229 - User: user_1044 - RequestID: px2ox7r2m5d +2025-06-18T14:21:18.281Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 634ms - IP: 192.168.159.94 - User: user_1047 - RequestID: 2shrr37jc7k +2025-06-18T14:21:18.381Z [TRACE] notification-service - Operation: cache_miss - Processing time: 81ms - RequestID: 7abi2n2nji +2025-06-18T14:21:18.481Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 149ms - Rows affected: 29 - RequestID: it1tsu0j73j +2025-06-18T14:21:18.581Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 29ms - Rows affected: 98 - RequestID: n43kgs0ee78 +2025-06-18T14:21:18.681Z [TRACE] order-service - Database SELECT on products - Execution time: 205ms - Rows affected: 80 - RequestID: kdeg03ez6lk +2025-06-18T14:21:18.781Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 200 - Response time: 573ms - IP: 192.168.33.76 - User: user_1091 - RequestID: 77wndhvcski +2025-06-18T14:21:18.881Z [DEBUG] notification-service - PUT /api/v1/users - Status: 503 - Response time: 1225ms - IP: 192.168.167.32 - User: user_1036 - RequestID: 6tjsla65b8 +2025-06-18T14:21:18.981Z [DEBUG] payment-service - Database SELECT on users - Execution time: 406ms - Rows affected: 16 - RequestID: bkm3fqp6he6 +2025-06-18T14:21:19.081Z [TRACE] inventory-service - Auth event: login_failed - User: user_1021 - IP: 192.168.10.184 - RequestID: mjtosmjteg +2025-06-18T14:21:19.181Z [INFO] user-service - Operation: cache_miss - Processing time: 462ms - RequestID: t3tajj8yvg +2025-06-18T14:21:19.281Z [INFO] notification-service - Auth event: login_success - User: user_1098 - IP: 192.168.14.77 - RequestID: jq91ghi87xm +2025-06-18T14:21:19.381Z [DEBUG] user-service - Auth event: logout - User: user_1091 - IP: 192.168.79.143 - RequestID: vcma6y07g1e +2025-06-18T14:21:19.481Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 400 - Response time: 612ms - IP: 192.168.100.240 - User: user_1098 - RequestID: sijh0pt71r +2025-06-18T14:21:19.581Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 85ms - Rows affected: 4 - RequestID: tr2kx8z6c9j +2025-06-18T14:21:19.681Z [DEBUG] user-service - Operation: cache_miss - Processing time: 289ms - RequestID: kf7q0cbv05c +2025-06-18T14:21:19.781Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 357ms - RequestID: g5qbv7mcggb +2025-06-18T14:21:19.881Z [INFO] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 447ms - IP: 192.168.189.103 - User: user_1001 - RequestID: dgt0cvs231e +2025-06-18T14:21:19.981Z [INFO] user-service - Operation: order_created - Processing time: 599ms - RequestID: hqkevlaoo7 +2025-06-18T14:21:20.081Z [INFO] inventory-service - Auth event: login_success - User: user_1012 - IP: 192.168.68.158 - RequestID: jbu35kj8if +2025-06-18T14:21:20.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 866ms - RequestID: 08dqbffp3eot +2025-06-18T14:21:20.281Z [INFO] auth-service - Database INSERT on orders - Execution time: 467ms - Rows affected: 85 - RequestID: qvynuoxb7le +2025-06-18T14:21:20.381Z [DEBUG] user-service - Database UPDATE on products - Execution time: 50ms - Rows affected: 42 - RequestID: z5iusnau24 +2025-06-18T14:21:20.481Z [INFO] order-service - Operation: cache_hit - Processing time: 762ms - RequestID: p8plwnolgf +2025-06-18T14:21:20.581Z [INFO] user-service - PUT /api/v1/inventory - Status: 400 - Response time: 103ms - IP: 192.168.187.199 - User: user_1083 - RequestID: rnqao5cp65 +2025-06-18T14:21:20.681Z [DEBUG] auth-service - Auth event: logout - User: user_1058 - IP: 192.168.100.240 - RequestID: eqi6g2l2yyr +2025-06-18T14:21:20.781Z [TRACE] auth-service - Auth event: login_success - User: user_1076 - IP: 192.168.79.141 - RequestID: gpiu5wqoxvj +2025-06-18T14:21:20.881Z [TRACE] user-service - Operation: webhook_sent - Processing time: 629ms - RequestID: jxubi7c8umm +2025-06-18T14:21:20.981Z [TRACE] user-service - Auth event: password_change - User: user_1024 - IP: 192.168.240.169 - RequestID: ozv6fe7102j +2025-06-18T14:21:21.081Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1034ms - RequestID: z001aoilzz +2025-06-18T14:21:21.181Z [INFO] user-service - Auth event: password_change - User: user_1071 - IP: 192.168.13.72 - RequestID: 4kx6x2gxmlh +2025-06-18T14:21:21.281Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 394ms - Rows affected: 70 - RequestID: 5ie8h1pyvvi +2025-06-18T14:21:21.381Z [TRACE] payment-service - GET /api/v1/payments - Status: 503 - Response time: 998ms - IP: 192.168.144.38 - User: user_1077 - RequestID: 4lrxwhxcvdk +2025-06-18T14:21:21.481Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 400 - Response time: 1554ms - IP: 192.168.79.141 - User: user_1076 - RequestID: z2v97syvk7 +2025-06-18T14:21:21.581Z [DEBUG] user-service - Database UPDATE on users - Execution time: 50ms - Rows affected: 62 - RequestID: 1q6x1gnizoi +2025-06-18T14:21:21.681Z [INFO] auth-service - Database INSERT on users - Execution time: 127ms - Rows affected: 84 - RequestID: x3ubbbdwadr +2025-06-18T14:21:21.781Z [DEBUG] payment-service - Operation: email_sent - Processing time: 483ms - RequestID: yvet2yt518c +2025-06-18T14:21:21.881Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 51ms - Rows affected: 50 - RequestID: xpnc35ug5i +2025-06-18T14:21:21.981Z [INFO] order-service - Database UPDATE on products - Execution time: 131ms - Rows affected: 25 - RequestID: 61i8vdlx7et +2025-06-18T14:21:22.081Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 400 - Response time: 473ms - IP: 192.168.81.206 - User: user_1060 - RequestID: fo42qdis0ow +2025-06-18T14:21:22.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 251ms - RequestID: uzb9s123zcj +2025-06-18T14:21:22.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.44.5 - RequestID: ij4r9kn569c +2025-06-18T14:21:22.381Z [TRACE] payment-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.36.218 - RequestID: koyn62yjzvp +2025-06-18T14:21:22.481Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1746ms - IP: 192.168.232.72 - User: user_1034 - RequestID: ezbhwdcsson +2025-06-18T14:21:22.581Z [TRACE] auth-service - Auth event: password_change - User: user_1066 - IP: 192.168.232.72 - RequestID: bgkw77xf1qt +2025-06-18T14:21:22.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 288ms - RequestID: eg5a1k8o8hw +2025-06-18T14:21:22.781Z [DEBUG] user-service - POST /api/v1/orders - Status: 201 - Response time: 1272ms - IP: 192.168.174.114 - User: user_1017 - RequestID: errqgb06xz4 +2025-06-18T14:21:22.881Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1696ms - IP: 192.168.79.141 - User: user_1018 - RequestID: 3df0zktwk7t +2025-06-18T14:21:22.981Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 500 - Response time: 606ms - IP: 192.168.138.123 - User: user_1016 - RequestID: x9emzyy0tte +2025-06-18T14:21:23.081Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 213ms - IP: 192.168.36.218 - User: user_1086 - RequestID: s2n1q8lepw8 +2025-06-18T14:21:23.181Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 144ms - Rows affected: 64 - RequestID: 0i5durd0lr18 +2025-06-18T14:21:23.281Z [INFO] auth-service - Operation: payment_processed - Processing time: 202ms - RequestID: 6qv78q1ykz +2025-06-18T14:21:23.381Z [TRACE] order-service - Database SELECT on sessions - Execution time: 287ms - Rows affected: 85 - RequestID: 5vgc5xc3e6c +2025-06-18T14:21:23.481Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1178ms - IP: 192.168.141.100 - User: user_1099 - RequestID: 38g0welv20y +2025-06-18T14:21:23.581Z [DEBUG] order-service - GET /api/v1/orders - Status: 201 - Response time: 231ms - IP: 192.168.33.76 - User: user_1088 - RequestID: pjmchlksg9m +2025-06-18T14:21:23.681Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 78ms - Rows affected: 88 - RequestID: sxbv2lr4we +2025-06-18T14:21:23.781Z [TRACE] payment-service - GET /api/v1/inventory - Status: 500 - Response time: 303ms - IP: 192.168.79.143 - User: user_1031 - RequestID: 414u2qvl49v +2025-06-18T14:21:23.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 874ms - RequestID: ojeb47abmx +2025-06-18T14:21:23.981Z [TRACE] order-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.174.114 - RequestID: 6ve3w3id168 +2025-06-18T14:21:24.081Z [TRACE] user-service - PATCH /api/v1/payments - Status: 403 - Response time: 730ms - IP: 192.168.133.7 - User: user_1033 - RequestID: i5cgnjwqzi +2025-06-18T14:21:24.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 617ms - RequestID: t9olggcfb3 +2025-06-18T14:21:24.281Z [INFO] user-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1665ms - IP: 192.168.33.76 - User: user_1078 - RequestID: 9y84v5l8d9u +2025-06-18T14:21:24.381Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 214ms - Rows affected: 72 - RequestID: 3rt5lfcsuzu +2025-06-18T14:21:24.481Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1471ms - IP: 192.168.79.116 - User: user_1054 - RequestID: mr4ugaahtf9 +2025-06-18T14:21:24.581Z [TRACE] user-service - Database SELECT on payments - Execution time: 99ms - Rows affected: 78 - RequestID: rnfzxfbzti +2025-06-18T14:21:24.681Z [DEBUG] order-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.79.116 - RequestID: 2mmk3itguiu +2025-06-18T14:21:24.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 761ms - RequestID: 7w06mz3snac +2025-06-18T14:21:24.881Z [DEBUG] order-service - Auth event: password_change - User: user_1076 - IP: 192.168.227.77 - RequestID: q5d73lu47fi +2025-06-18T14:21:24.981Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 278ms - RequestID: 91s5iv2rd5a +2025-06-18T14:21:25.081Z [INFO] notification-service - Database UPDATE on payments - Execution time: 309ms - Rows affected: 45 - RequestID: wcuh3ey3lto +2025-06-18T14:21:25.181Z [INFO] user-service - POST /api/v1/orders - Status: 403 - Response time: 1056ms - IP: 192.168.64.33 - User: user_1054 - RequestID: g8p0yet3zbl +2025-06-18T14:21:25.281Z [DEBUG] user-service - Operation: order_created - Processing time: 706ms - RequestID: b4sxskh9mmv +2025-06-18T14:21:25.381Z [TRACE] order-service - Database SELECT on payments - Execution time: 301ms - Rows affected: 23 - RequestID: 6zqyqx5i9ug +2025-06-18T14:21:25.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 147ms - RequestID: 9y71i9ybmi +2025-06-18T14:21:25.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 540ms - RequestID: eh4iac2jqqv +2025-06-18T14:21:25.681Z [TRACE] auth-service - Auth event: login_failed - User: user_1013 - IP: 192.168.36.218 - RequestID: ysf1ior1qp9 +2025-06-18T14:21:25.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1037 - IP: 192.168.85.229 - RequestID: dk6onpzkwma +2025-06-18T14:21:25.881Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1954ms - IP: 192.168.68.158 - User: user_1053 - RequestID: xq6jvil7dfj +2025-06-18T14:21:25.981Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 934ms - RequestID: j5vq03864wp +2025-06-18T14:21:26.081Z [INFO] auth-service - Operation: payment_processed - Processing time: 859ms - RequestID: agxb1kepym +2025-06-18T14:21:26.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.11.60 - RequestID: yx25aqb9h7q +2025-06-18T14:21:26.281Z [TRACE] user-service - POST /api/v1/users - Status: 403 - Response time: 1591ms - IP: 192.168.232.72 - User: user_1061 - RequestID: i0suo3uounj +2025-06-18T14:21:26.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 747ms - RequestID: ieng0yp2ij +2025-06-18T14:21:26.481Z [TRACE] payment-service - Database DELETE on orders - Execution time: 391ms - Rows affected: 6 - RequestID: et5co4hwca +2025-06-18T14:21:26.581Z [DEBUG] payment-service - Auth event: login_success - User: user_1078 - IP: 192.168.227.233 - RequestID: uxyxd7fdymq +2025-06-18T14:21:26.681Z [INFO] payment-service - GET /api/v1/payments - Status: 400 - Response time: 524ms - IP: 192.168.79.143 - User: user_1030 - RequestID: sq8vanck9a +2025-06-18T14:21:26.781Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.79.143 - RequestID: nmop3ng6cph +2025-06-18T14:21:26.881Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 401 - Response time: 737ms - IP: 192.168.227.77 - User: user_1099 - RequestID: rouyip86 +2025-06-18T14:21:26.981Z [DEBUG] user-service - Auth event: login_success - User: user_1095 - IP: 192.168.81.206 - RequestID: 8nv12hs7pt6 +2025-06-18T14:21:27.081Z [INFO] notification-service - Operation: cache_miss - Processing time: 507ms - RequestID: y8i3jjferxr +2025-06-18T14:21:27.181Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 268ms - Rows affected: 52 - RequestID: 850t8ty69ka +2025-06-18T14:21:27.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1009 - IP: 192.168.14.77 - RequestID: pg8e0xvu1bi +2025-06-18T14:21:27.381Z [INFO] auth-service - Operation: notification_queued - Processing time: 968ms - RequestID: jefdfrx5xa +2025-06-18T14:21:27.481Z [INFO] user-service - Operation: notification_queued - Processing time: 829ms - RequestID: olzt74bdsm +2025-06-18T14:21:27.581Z [TRACE] user-service - Operation: inventory_updated - Processing time: 268ms - RequestID: 1mxa3qg2kvc +2025-06-18T14:21:27.681Z [INFO] payment-service - Operation: webhook_sent - Processing time: 461ms - RequestID: jju7r7d3ms +2025-06-18T14:21:27.781Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 612ms - RequestID: d4eimoxdid +2025-06-18T14:21:27.881Z [DEBUG] user-service - Operation: email_sent - Processing time: 577ms - RequestID: yl0u76ezf8 +2025-06-18T14:21:27.981Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.113.218 - RequestID: dikhvmg6e1e +2025-06-18T14:21:28.081Z [TRACE] user-service - Operation: webhook_sent - Processing time: 828ms - RequestID: o2g09lr37rp +2025-06-18T14:21:28.181Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 390ms - Rows affected: 9 - RequestID: zqcz2rsoy3 +2025-06-18T14:21:28.281Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 278ms - Rows affected: 62 - RequestID: crbu2zdbdlk +2025-06-18T14:21:28.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 688ms - RequestID: tzo0g820o +2025-06-18T14:21:28.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 497ms - RequestID: d51bd2gqvto +2025-06-18T14:21:28.581Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 201 - Response time: 1797ms - IP: 192.168.13.72 - User: user_1038 - RequestID: 2z4qsllhjg4 +2025-06-18T14:21:28.681Z [INFO] inventory-service - GET /api/v1/payments - Status: 500 - Response time: 1705ms - IP: 192.168.227.77 - User: user_1096 - RequestID: ewbgc9yili9 +2025-06-18T14:21:28.781Z [TRACE] inventory-service - Auth event: logout - User: user_1016 - IP: 192.168.14.77 - RequestID: rne4yh0dbgj +2025-06-18T14:21:28.881Z [INFO] notification-service - Database INSERT on products - Execution time: 278ms - Rows affected: 90 - RequestID: gud294oa6b6 +2025-06-18T14:21:28.981Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.159.94 - RequestID: c9gdnx423e +2025-06-18T14:21:29.081Z [INFO] payment-service - Auth event: password_change - User: user_1042 - IP: 192.168.181.225 - RequestID: zijlo5nvdq +2025-06-18T14:21:29.181Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1208ms - IP: 192.168.1.152 - User: user_1036 - RequestID: uy0lqerpahl +2025-06-18T14:21:29.281Z [TRACE] inventory-service - Operation: order_created - Processing time: 683ms - RequestID: xppl16r7jna +2025-06-18T14:21:29.381Z [TRACE] notification-service - Operation: order_created - Processing time: 967ms - RequestID: xvt5knxttcg +2025-06-18T14:21:29.481Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 500 - Response time: 961ms - IP: 192.168.211.72 - User: user_1051 - RequestID: vluubuzbzj +2025-06-18T14:21:29.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 822ms - RequestID: y4ianis7hz +2025-06-18T14:21:29.681Z [INFO] payment-service - Database DELETE on orders - Execution time: 54ms - Rows affected: 25 - RequestID: 11q6knl0c5a +2025-06-18T14:21:29.781Z [INFO] auth-service - Auth event: login_failed - User: user_1084 - IP: 192.168.181.225 - RequestID: cyo7vwsskyc +2025-06-18T14:21:29.881Z [INFO] user-service - Operation: cache_miss - Processing time: 99ms - RequestID: l3xjt9tuz1m +2025-06-18T14:21:29.981Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1221ms - IP: 192.168.68.158 - User: user_1098 - RequestID: 2aaq8a8j1mp +2025-06-18T14:21:30.081Z [INFO] user-service - POST /api/v1/users - Status: 200 - Response time: 242ms - IP: 192.168.240.169 - User: user_1005 - RequestID: s53lmz1yh5 +2025-06-18T14:21:30.181Z [INFO] auth-service - Auth event: login_success - User: user_1042 - IP: 192.168.113.218 - RequestID: 2340hj2o9rkh +2025-06-18T14:21:30.281Z [TRACE] order-service - Operation: order_created - Processing time: 141ms - RequestID: mnzqy56j0tl +2025-06-18T14:21:30.381Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 435ms - Rows affected: 51 - RequestID: palaou0gi6e +2025-06-18T14:21:30.481Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 96ms - Rows affected: 15 - RequestID: wpvawwjyoa +2025-06-18T14:21:30.581Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 12ms - Rows affected: 61 - RequestID: wac2cr431n +2025-06-18T14:21:30.681Z [TRACE] user-service - Auth event: login_failed - User: user_1024 - IP: 192.168.227.77 - RequestID: ltqfcblzxc +2025-06-18T14:21:30.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.141.100 - RequestID: vcpts1w57g +2025-06-18T14:21:30.881Z [INFO] auth-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.46.63 - RequestID: ynkess8poc +2025-06-18T14:21:30.981Z [INFO] order-service - Database UPDATE on payments - Execution time: 394ms - Rows affected: 2 - RequestID: u38wi5jwwgl +2025-06-18T14:21:31.081Z [INFO] payment-service - Database INSERT on orders - Execution time: 385ms - Rows affected: 60 - RequestID: q3k7ypd9jh +2025-06-18T14:21:31.181Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1280ms - IP: 192.168.14.77 - User: user_1084 - RequestID: otbpzd14bbo +2025-06-18T14:21:31.281Z [DEBUG] order-service - Auth event: login_success - User: user_1095 - IP: 192.168.232.72 - RequestID: f1rjmsyj4c9 +2025-06-18T14:21:31.381Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 147ms - Rows affected: 5 - RequestID: 1czyxueysmc +2025-06-18T14:21:31.481Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 882ms - RequestID: bk6tvt5mvk +2025-06-18T14:21:31.581Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 411ms - RequestID: zyzjivd88bf +2025-06-18T14:21:31.681Z [INFO] user-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.194.41 - RequestID: wi2epvf0ecq +2025-06-18T14:21:31.781Z [INFO] auth-service - Operation: cache_hit - Processing time: 429ms - RequestID: rq1h94jo5x +2025-06-18T14:21:31.881Z [TRACE] payment-service - Operation: email_sent - Processing time: 812ms - RequestID: 16f03xn2ap8 +2025-06-18T14:21:31.981Z [DEBUG] user-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.104.37 - RequestID: ftxq289qgs8 +2025-06-18T14:21:32.081Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 502 - Response time: 2006ms - IP: 192.168.242.165 - User: user_1016 - RequestID: rdykweubsl +2025-06-18T14:21:32.181Z [DEBUG] user-service - Database DELETE on users - Execution time: 171ms - Rows affected: 77 - RequestID: 7yp499ilyim +2025-06-18T14:21:32.281Z [TRACE] user-service - Database SELECT on users - Execution time: 466ms - Rows affected: 10 - RequestID: yuu0oz9jmmk +2025-06-18T14:21:32.381Z [INFO] auth-service - Auth event: login_success - User: user_1053 - IP: 192.168.147.171 - RequestID: wlfx077qbgg +2025-06-18T14:21:32.481Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1857ms - IP: 192.168.13.72 - User: user_1051 - RequestID: jaduzuvfrf +2025-06-18T14:21:32.581Z [TRACE] auth-service - Auth event: logout - User: user_1036 - IP: 192.168.235.117 - RequestID: 2168y7684dt +2025-06-18T14:21:32.681Z [INFO] inventory-service - Operation: email_sent - Processing time: 577ms - RequestID: 0qkwr5blugq +2025-06-18T14:21:32.781Z [TRACE] payment-service - PUT /api/v1/users - Status: 404 - Response time: 463ms - IP: 192.168.81.206 - User: user_1038 - RequestID: u586dmd8tj +2025-06-18T14:21:32.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.242.165 - RequestID: v79a6h6r5ma +2025-06-18T14:21:32.981Z [INFO] user-service - Operation: email_sent - Processing time: 580ms - RequestID: 7oeb8ctxxz3 +2025-06-18T14:21:33.081Z [TRACE] user-service - PUT /api/v1/inventory - Status: 200 - Response time: 1669ms - IP: 192.168.81.206 - User: user_1030 - RequestID: ftezamwx6cg +2025-06-18T14:21:33.181Z [INFO] user-service - POST /api/v1/auth/login - Status: 404 - Response time: 1905ms - IP: 192.168.13.72 - User: user_1067 - RequestID: 8m8pjd7gd5d +2025-06-18T14:21:33.281Z [INFO] inventory-service - Auth event: password_change - User: user_1031 - IP: 192.168.167.32 - RequestID: wjhsv4ap54 +2025-06-18T14:21:33.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.36.218 - RequestID: lhj38ys8lln +2025-06-18T14:21:33.481Z [INFO] order-service - GET /api/v1/users - Status: 502 - Response time: 348ms - IP: 192.168.227.77 - User: user_1088 - RequestID: jz2zbjceji +2025-06-18T14:21:33.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.68.158 - RequestID: rcteg90kux +2025-06-18T14:21:33.681Z [DEBUG] payment-service - GET /api/v1/orders - Status: 403 - Response time: 1777ms - IP: 192.168.229.123 - User: user_1004 - RequestID: gwowtgmaqi +2025-06-18T14:21:33.781Z [INFO] order-service - Auth event: logout - User: user_1044 - IP: 192.168.104.37 - RequestID: nfbncs5aw8d +2025-06-18T14:21:33.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 422ms - RequestID: 1qc21kjin3q +2025-06-18T14:21:33.981Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 401 - Response time: 1402ms - IP: 192.168.133.7 - User: user_1017 - RequestID: ve0zpgbm7qb +2025-06-18T14:21:34.081Z [INFO] user-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.141.100 - RequestID: g3waagq7i9p +2025-06-18T14:21:34.181Z [INFO] payment-service - Operation: inventory_updated - Processing time: 515ms - RequestID: j0quhdzdjm +2025-06-18T14:21:34.281Z [INFO] order-service - Operation: email_sent - Processing time: 504ms - RequestID: pfoxbtu5uad +2025-06-18T14:21:34.381Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 385ms - RequestID: ezi0tyl0mc5 +2025-06-18T14:21:34.481Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 66ms - RequestID: g35rtg1a6og +2025-06-18T14:21:34.581Z [TRACE] payment-service - Operation: cache_miss - Processing time: 852ms - RequestID: my56vno7m3 +2025-06-18T14:21:34.681Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 262ms - Rows affected: 38 - RequestID: up7qyo4xvq +2025-06-18T14:21:34.781Z [INFO] auth-service - Operation: payment_processed - Processing time: 427ms - RequestID: qi72ae397jh +2025-06-18T14:21:34.881Z [TRACE] payment-service - POST /api/v1/inventory - Status: 401 - Response time: 1407ms - IP: 192.168.187.199 - User: user_1028 - RequestID: 7wcyf68ikas +2025-06-18T14:21:34.981Z [INFO] auth-service - Database DELETE on sessions - Execution time: 114ms - Rows affected: 21 - RequestID: 57hfqwklafs +2025-06-18T14:21:35.081Z [DEBUG] order-service - Auth event: password_change - User: user_1035 - IP: 192.168.53.133 - RequestID: 5mxnocog0ls +2025-06-18T14:21:35.181Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 500 - Response time: 813ms - IP: 192.168.44.5 - User: user_1087 - RequestID: og29pwfda3h +2025-06-18T14:21:35.281Z [INFO] order-service - Operation: email_sent - Processing time: 833ms - RequestID: ci1af9gb48h +2025-06-18T14:21:35.381Z [DEBUG] auth-service - Operation: email_sent - Processing time: 613ms - RequestID: jmrjxl6vvrh +2025-06-18T14:21:35.481Z [TRACE] order-service - Database INSERT on payments - Execution time: 146ms - Rows affected: 73 - RequestID: 7nivtnk87c5 +2025-06-18T14:21:35.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.31.117 - RequestID: yzd4yj9l3dr +2025-06-18T14:21:35.681Z [INFO] notification-service - PUT /api/v1/users - Status: 404 - Response time: 1689ms - IP: 192.168.79.116 - User: user_1073 - RequestID: vgzyksstaii +2025-06-18T14:21:35.781Z [TRACE] auth-service - Auth event: logout - User: user_1066 - IP: 192.168.235.117 - RequestID: zu2zt7brix +2025-06-18T14:21:35.881Z [INFO] payment-service - Auth event: logout - User: user_1005 - IP: 192.168.44.5 - RequestID: iqxwxzk39xb +2025-06-18T14:21:35.981Z [DEBUG] payment-service - Operation: order_created - Processing time: 143ms - RequestID: kd1mg413tas +2025-06-18T14:21:36.081Z [TRACE] notification-service - Auth event: password_change - User: user_1084 - IP: 192.168.81.206 - RequestID: wguyqcxyc5 +2025-06-18T14:21:36.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.174.114 - RequestID: y7w23p0anxo +2025-06-18T14:21:36.281Z [INFO] auth-service - Database DELETE on payments - Execution time: 392ms - Rows affected: 48 - RequestID: 2ecx1bs4i9d +2025-06-18T14:21:36.381Z [DEBUG] auth-service - Auth event: login_failed - User: user_1060 - IP: 192.168.79.141 - RequestID: 2vmr6vk09a4 +2025-06-18T14:21:36.481Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1160ms - IP: 192.168.13.72 - User: user_1003 - RequestID: 1smvlm3jswl +2025-06-18T14:21:36.581Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 353ms - Rows affected: 34 - RequestID: ou4lkibieaq +2025-06-18T14:21:36.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.159.94 - RequestID: fzqtc58k6k +2025-06-18T14:21:36.781Z [TRACE] user-service - Auth event: password_change - User: user_1097 - IP: 192.168.79.141 - RequestID: zzj65fqpqqs +2025-06-18T14:21:36.881Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 727ms - RequestID: g06a3hi15dn +2025-06-18T14:21:36.981Z [TRACE] auth-service - Operation: payment_processed - Processing time: 209ms - RequestID: oidl8zhzoh +2025-06-18T14:21:37.081Z [TRACE] order-service - Database INSERT on orders - Execution time: 277ms - Rows affected: 75 - RequestID: 9yx08td1mo +2025-06-18T14:21:37.181Z [INFO] notification-service - DELETE /api/v1/orders - Status: 500 - Response time: 169ms - IP: 192.168.170.215 - User: user_1039 - RequestID: 89ra05tj1hi +2025-06-18T14:21:37.281Z [DEBUG] auth-service - Auth event: logout - User: user_1042 - IP: 192.168.79.116 - RequestID: 8k0g3hgl4v5 +2025-06-18T14:21:37.381Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 486ms - Rows affected: 73 - RequestID: tf7d9n1i7af +2025-06-18T14:21:37.481Z [TRACE] inventory-service - Database SELECT on products - Execution time: 463ms - Rows affected: 55 - RequestID: fm2ffwpipt +2025-06-18T14:21:37.581Z [INFO] auth-service - Auth event: password_change - User: user_1095 - IP: 192.168.1.152 - RequestID: ue3ulr9hnrs +2025-06-18T14:21:37.681Z [TRACE] payment-service - Auth event: login_success - User: user_1069 - IP: 192.168.133.7 - RequestID: y967llxy0ni +2025-06-18T14:21:37.781Z [TRACE] auth-service - Database DELETE on payments - Execution time: 357ms - Rows affected: 98 - RequestID: lgegvhh459 +2025-06-18T14:21:37.881Z [INFO] notification-service - Auth event: logout - User: user_1057 - IP: 192.168.104.37 - RequestID: 4keyil3h4xi +2025-06-18T14:21:37.981Z [INFO] inventory-service - Operation: email_sent - Processing time: 705ms - RequestID: 2yuibsfa8mo +2025-06-18T14:21:38.081Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 404 - Response time: 862ms - IP: 192.168.14.77 - User: user_1099 - RequestID: r5n9q5r1vtj +2025-06-18T14:21:38.181Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 385ms - RequestID: 7b9vmobttny +2025-06-18T14:21:38.281Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 400 - Response time: 179ms - IP: 192.168.33.76 - User: user_1055 - RequestID: 03tpfhenqe04 +2025-06-18T14:21:38.381Z [INFO] notification-service - GET /api/v1/inventory - Status: 200 - Response time: 836ms - IP: 192.168.97.87 - User: user_1044 - RequestID: vgrim64fji8 +2025-06-18T14:21:38.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 256ms - RequestID: n1q3vw8rk1 +2025-06-18T14:21:38.581Z [INFO] order-service - Operation: payment_processed - Processing time: 923ms - RequestID: c2mg2mci2l8 +2025-06-18T14:21:38.681Z [TRACE] notification-service - POST /api/v1/inventory - Status: 400 - Response time: 479ms - IP: 192.168.158.144 - User: user_1089 - RequestID: q3ckezqvnym +2025-06-18T14:21:38.781Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 400 - Response time: 673ms - IP: 192.168.194.41 - User: user_1033 - RequestID: i1ksbz3wftf +2025-06-18T14:21:38.881Z [DEBUG] user-service - Database INSERT on payments - Execution time: 235ms - Rows affected: 1 - RequestID: pqx8l6od34 +2025-06-18T14:21:38.981Z [TRACE] order-service - Operation: notification_queued - Processing time: 579ms - RequestID: kibfsxeh +2025-06-18T14:21:39.081Z [INFO] user-service - POST /api/v1/orders - Status: 400 - Response time: 1137ms - IP: 192.168.97.87 - User: user_1054 - RequestID: 87hlza1aw7n +2025-06-18T14:21:39.181Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 200 - Response time: 424ms - IP: 192.168.11.60 - User: user_1004 - RequestID: tes6ux90zh7 +2025-06-18T14:21:39.281Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 250ms - RequestID: 8mrkp1uew9d +2025-06-18T14:21:39.381Z [INFO] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 1831ms - IP: 192.168.181.225 - User: user_1011 - RequestID: em1kezxizu8 +2025-06-18T14:21:39.481Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 635ms - RequestID: 22tijx7japli +2025-06-18T14:21:39.581Z [INFO] payment-service - Auth event: login_success - User: user_1008 - IP: 192.168.100.240 - RequestID: u416ybfcmq +2025-06-18T14:21:39.681Z [INFO] order-service - Database INSERT on payments - Execution time: 39ms - Rows affected: 52 - RequestID: 347wr465mla +2025-06-18T14:21:39.781Z [TRACE] auth-service - Operation: order_created - Processing time: 359ms - RequestID: pqw9qk2wwup +2025-06-18T14:21:39.881Z [DEBUG] notification-service - Database SELECT on products - Execution time: 142ms - Rows affected: 28 - RequestID: k3yancg45wa +2025-06-18T14:21:39.981Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 339ms - Rows affected: 37 - RequestID: s1akicp7d5 +2025-06-18T14:21:40.081Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 201 - Response time: 230ms - IP: 192.168.36.218 - User: user_1021 - RequestID: 82w0lh76zuo +2025-06-18T14:21:40.181Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 373ms - RequestID: eyl1edqpg7i +2025-06-18T14:21:40.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1025 - IP: 192.168.174.114 - RequestID: ya2v5fbstlh +2025-06-18T14:21:40.381Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1051 - IP: 192.168.68.128 - RequestID: o1ebxg3ax0l +2025-06-18T14:21:40.481Z [DEBUG] auth-service - Auth event: logout - User: user_1048 - IP: 192.168.10.184 - RequestID: dvmpblijcza +2025-06-18T14:21:40.581Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 332ms - RequestID: 1gzbawmoy4s +2025-06-18T14:21:40.681Z [DEBUG] user-service - GET /api/v1/inventory - Status: 401 - Response time: 507ms - IP: 192.168.13.72 - User: user_1029 - RequestID: rb3530ip98 +2025-06-18T14:21:40.781Z [INFO] notification-service - GET /api/v1/payments - Status: 401 - Response time: 1391ms - IP: 192.168.227.233 - User: user_1067 - RequestID: opkoe3j8wrj +2025-06-18T14:21:40.881Z [TRACE] auth-service - Auth event: password_change - User: user_1020 - IP: 192.168.147.171 - RequestID: 7dgckq11ppq +2025-06-18T14:21:40.981Z [TRACE] user-service - Operation: webhook_sent - Processing time: 737ms - RequestID: 60sui03ekhg +2025-06-18T14:21:41.081Z [INFO] order-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.46.63 - RequestID: jbuiej32z49 +2025-06-18T14:21:41.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.196.226 - RequestID: 1ak9nop8kwi +2025-06-18T14:21:41.281Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 503 - Response time: 1081ms - IP: 192.168.189.103 - User: user_1026 - RequestID: 951vqbyacrf +2025-06-18T14:21:41.381Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 500 - Response time: 794ms - IP: 192.168.30.79 - User: user_1019 - RequestID: t66fe5ebseb +2025-06-18T14:21:41.481Z [INFO] user-service - Database SELECT on users - Execution time: 441ms - Rows affected: 66 - RequestID: i4z5oo5hxic +2025-06-18T14:21:41.581Z [INFO] auth-service - Database UPDATE on products - Execution time: 466ms - Rows affected: 70 - RequestID: lc6fg0hbldq +2025-06-18T14:21:41.681Z [INFO] user-service - Operation: notification_queued - Processing time: 295ms - RequestID: iebpg9xk8g +2025-06-18T14:21:41.781Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 86ms - Rows affected: 34 - RequestID: ydnjn43pubj +2025-06-18T14:21:41.881Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 71ms - Rows affected: 24 - RequestID: pn0xjawl5bj +2025-06-18T14:21:41.981Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 822ms - RequestID: ixmxwu42obd +2025-06-18T14:21:42.081Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 128ms - Rows affected: 86 - RequestID: y378i5cu6l +2025-06-18T14:21:42.181Z [INFO] auth-service - Auth event: logout - User: user_1019 - IP: 192.168.194.41 - RequestID: 1980pv7xwan +2025-06-18T14:21:42.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1089 - IP: 192.168.141.100 - RequestID: 7bnjq1uj4vp +2025-06-18T14:21:42.381Z [INFO] user-service - Database UPDATE on products - Execution time: 34ms - Rows affected: 90 - RequestID: 42f2orz236e +2025-06-18T14:21:42.481Z [INFO] inventory-service - Database UPDATE on products - Execution time: 419ms - Rows affected: 26 - RequestID: 5hgwrym8p2b +2025-06-18T14:21:42.581Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 101ms - RequestID: u4fgffstob +2025-06-18T14:21:42.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 1018ms - RequestID: 8f2mmod7d7a +2025-06-18T14:21:42.781Z [TRACE] user-service - Operation: cache_hit - Processing time: 625ms - RequestID: ri0sjvx1jc +2025-06-18T14:21:42.881Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1701ms - IP: 192.168.189.103 - User: user_1007 - RequestID: gjp4zyvqpp +2025-06-18T14:21:42.981Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 404 - Response time: 975ms - IP: 192.168.13.72 - User: user_1095 - RequestID: lhz818g1ecl +2025-06-18T14:21:43.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.53.133 - RequestID: cye7lxh3bm9 +2025-06-18T14:21:43.181Z [DEBUG] inventory-service - Auth event: login_success - User: user_1089 - IP: 192.168.227.77 - RequestID: eszko5wru8r +2025-06-18T14:21:43.281Z [INFO] user-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.229.123 - RequestID: qtymr1czrq +2025-06-18T14:21:43.381Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1156ms - IP: 192.168.240.169 - User: user_1020 - RequestID: xdpq6cieit +2025-06-18T14:21:43.481Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 823ms - RequestID: rwuzqicdgea +2025-06-18T14:21:43.581Z [INFO] inventory-service - GET /api/v1/orders - Status: 200 - Response time: 1265ms - IP: 192.168.211.72 - User: user_1071 - RequestID: ny4s8t0exf +2025-06-18T14:21:43.681Z [INFO] auth-service - Database SELECT on sessions - Execution time: 343ms - Rows affected: 4 - RequestID: jvonng365s +2025-06-18T14:21:43.781Z [TRACE] payment-service - Database SELECT on products - Execution time: 169ms - Rows affected: 26 - RequestID: xziu408b9p +2025-06-18T14:21:43.881Z [TRACE] notification-service - Auth event: login_success - User: user_1046 - IP: 192.168.211.72 - RequestID: vqulajpya8n +2025-06-18T14:21:43.981Z [INFO] inventory-service - Auth event: login_failed - User: user_1000 - IP: 192.168.227.77 - RequestID: cveijjl20vk +2025-06-18T14:21:44.081Z [INFO] notification-service - Operation: payment_processed - Processing time: 340ms - RequestID: gbtple6mz5n +2025-06-18T14:21:44.181Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 54ms - Rows affected: 88 - RequestID: e9qfch2w3r +2025-06-18T14:21:44.281Z [TRACE] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 820ms - IP: 192.168.211.72 - User: user_1000 - RequestID: rjjiotufth +2025-06-18T14:21:44.381Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 400 - Response time: 1356ms - IP: 192.168.187.199 - User: user_1081 - RequestID: 08uz59h6nkja +2025-06-18T14:21:44.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 379ms - RequestID: fz03ghdue1g +2025-06-18T14:21:44.581Z [TRACE] payment-service - GET /api/v1/payments - Status: 500 - Response time: 672ms - IP: 192.168.64.33 - User: user_1055 - RequestID: 0lun2ndwmera +2025-06-18T14:21:44.681Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 218ms - IP: 192.168.174.114 - User: user_1016 - RequestID: b3aso75ehfd +2025-06-18T14:21:44.781Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 858ms - RequestID: m6zxnjdnp7d +2025-06-18T14:21:44.881Z [TRACE] user-service - Auth event: logout - User: user_1045 - IP: 192.168.187.199 - RequestID: mecvwbbpsuj +2025-06-18T14:21:44.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 746ms - RequestID: axtmhilhl2 +2025-06-18T14:21:45.081Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 367ms - Rows affected: 52 - RequestID: zn4spnwc9ne +2025-06-18T14:21:45.181Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 241ms - Rows affected: 0 - RequestID: cjtqpt8zqiw +2025-06-18T14:21:45.281Z [DEBUG] order-service - Auth event: logout - User: user_1011 - IP: 192.168.141.100 - RequestID: m3rovd09np9 +2025-06-18T14:21:45.381Z [TRACE] notification-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.227.77 - RequestID: 3ot87igkxot +2025-06-18T14:21:45.481Z [TRACE] user-service - Operation: notification_queued - Processing time: 745ms - RequestID: k9gcooihie +2025-06-18T14:21:45.581Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.10.184 - RequestID: 0eooi3raori +2025-06-18T14:21:45.681Z [TRACE] notification-service - Database DELETE on orders - Execution time: 385ms - Rows affected: 63 - RequestID: yruo1ij4nvh +2025-06-18T14:21:45.781Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 55ms - Rows affected: 64 - RequestID: zh1e3y3opk8 +2025-06-18T14:21:45.881Z [TRACE] order-service - Database SELECT on sessions - Execution time: 9ms - Rows affected: 13 - RequestID: gu86er9od3 +2025-06-18T14:21:45.981Z [INFO] auth-service - Database INSERT on orders - Execution time: 65ms - Rows affected: 94 - RequestID: 6du1kveztw4 +2025-06-18T14:21:46.081Z [DEBUG] order-service - Operation: order_created - Processing time: 718ms - RequestID: jm7f89g3vts +2025-06-18T14:21:46.181Z [TRACE] notification-service - Operation: payment_processed - Processing time: 351ms - RequestID: e9bwg4acnlp +2025-06-18T14:21:46.281Z [INFO] inventory-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.141.100 - RequestID: bpd2ait9mnc +2025-06-18T14:21:46.381Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 201 - Response time: 1110ms - IP: 192.168.79.116 - User: user_1020 - RequestID: vwmqqylwdvq +2025-06-18T14:21:46.481Z [INFO] order-service - Database DELETE on payments - Execution time: 141ms - Rows affected: 91 - RequestID: imb28tbnx6b +2025-06-18T14:21:46.581Z [INFO] user-service - Operation: email_sent - Processing time: 1006ms - RequestID: wbpvrwlqptr +2025-06-18T14:21:46.681Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 368ms - Rows affected: 39 - RequestID: 61xhs1d1889 +2025-06-18T14:21:46.781Z [INFO] order-service - Auth event: password_change - User: user_1010 - IP: 192.168.229.123 - RequestID: ejopmvgje9o +2025-06-18T14:21:46.881Z [DEBUG] user-service - Auth event: login_success - User: user_1079 - IP: 192.168.147.171 - RequestID: 4wx1b35o5ut +2025-06-18T14:21:46.981Z [TRACE] payment-service - Auth event: password_change - User: user_1078 - IP: 192.168.30.79 - RequestID: 7c0gpcb4tsk +2025-06-18T14:21:47.081Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 12ms - Rows affected: 69 - RequestID: 08ehzvn5hh45 +2025-06-18T14:21:47.181Z [INFO] auth-service - Auth event: password_change - User: user_1011 - IP: 192.168.133.7 - RequestID: jenakld75yf +2025-06-18T14:21:47.281Z [DEBUG] payment-service - Database DELETE on users - Execution time: 138ms - Rows affected: 44 - RequestID: 08zgc0pidrws +2025-06-18T14:21:47.381Z [INFO] notification-service - Operation: order_created - Processing time: 789ms - RequestID: sk9rapg51bc +2025-06-18T14:21:47.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 85ms - RequestID: la2vnproo2 +2025-06-18T14:21:47.581Z [DEBUG] user-service - Auth event: login_failed - User: user_1078 - IP: 192.168.167.32 - RequestID: h1kifwqqikw +2025-06-18T14:21:47.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 290ms - RequestID: gyaxlepee1q +2025-06-18T14:21:47.781Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 74ms - RequestID: upzvis6lsxs +2025-06-18T14:21:47.881Z [TRACE] user-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.104.37 - RequestID: iz2o5j6e92s +2025-06-18T14:21:47.981Z [INFO] inventory-service - Operation: cache_miss - Processing time: 701ms - RequestID: gv5r9sdoatm +2025-06-18T14:21:48.081Z [INFO] order-service - Operation: notification_queued - Processing time: 405ms - RequestID: ql4vr8phd9o +2025-06-18T14:21:48.181Z [INFO] payment-service - Auth event: logout - User: user_1032 - IP: 192.168.158.144 - RequestID: bs0m1pjafig +2025-06-18T14:21:48.281Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 100ms - Rows affected: 24 - RequestID: k69752eht0r +2025-06-18T14:21:48.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 751ms - RequestID: c6gvuw85z8r +2025-06-18T14:21:48.481Z [INFO] order-service - Operation: notification_queued - Processing time: 276ms - RequestID: g0lst4a8w5 +2025-06-18T14:21:48.581Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1779ms - IP: 192.168.13.72 - User: user_1008 - RequestID: dv6xhho0p55 +2025-06-18T14:21:48.681Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 931ms - RequestID: lxml5vshlh +2025-06-18T14:21:48.781Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 200 - Response time: 37ms - IP: 192.168.181.225 - User: user_1036 - RequestID: 2e2qjbua4fm +2025-06-18T14:21:48.881Z [INFO] order-service - Database SELECT on products - Execution time: 69ms - Rows affected: 35 - RequestID: 9v3pzf9912l +2025-06-18T14:21:48.981Z [TRACE] order-service - Operation: cache_hit - Processing time: 126ms - RequestID: 0gwfjltmdjel +2025-06-18T14:21:49.081Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 381ms - RequestID: 6eacmyoaoeb +2025-06-18T14:21:49.181Z [INFO] user-service - Database UPDATE on sessions - Execution time: 467ms - Rows affected: 20 - RequestID: fp2m2chukg +2025-06-18T14:21:49.281Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 500 - Response time: 658ms - IP: 192.168.97.87 - User: user_1021 - RequestID: mr7x2h8jc89 +2025-06-18T14:21:49.381Z [TRACE] order-service - Operation: email_sent - Processing time: 1004ms - RequestID: rtn4u6ak8ep +2025-06-18T14:21:49.481Z [DEBUG] auth-service - Auth event: logout - User: user_1014 - IP: 192.168.64.33 - RequestID: 78b990ps3w6 +2025-06-18T14:21:49.581Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1142ms - IP: 192.168.211.72 - User: user_1074 - RequestID: 2dyebxnw8uf +2025-06-18T14:21:49.681Z [TRACE] user-service - Operation: notification_queued - Processing time: 893ms - RequestID: m36off0sg4 +2025-06-18T14:21:49.781Z [INFO] notification-service - Operation: cache_hit - Processing time: 375ms - RequestID: ne27pt56uwm +2025-06-18T14:21:49.881Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 201 - Response time: 17ms - IP: 192.168.167.32 - User: user_1065 - RequestID: 3lejrlwe32a +2025-06-18T14:21:49.981Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 932ms - RequestID: tk55s7u5ub +2025-06-18T14:21:50.081Z [INFO] auth-service - Database UPDATE on orders - Execution time: 54ms - Rows affected: 31 - RequestID: ytd88e2wna +2025-06-18T14:21:50.181Z [TRACE] user-service - PATCH /api/v1/payments - Status: 404 - Response time: 1574ms - IP: 192.168.32.38 - User: user_1093 - RequestID: f3nust38hvj +2025-06-18T14:21:50.281Z [INFO] auth-service - Operation: webhook_sent - Processing time: 98ms - RequestID: fhumaczlosh +2025-06-18T14:21:50.381Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1832ms - IP: 192.168.247.134 - User: user_1010 - RequestID: 2pdwknd314g +2025-06-18T14:21:50.481Z [DEBUG] notification-service - Auth event: logout - User: user_1052 - IP: 192.168.11.60 - RequestID: fog292lrad +2025-06-18T14:21:50.581Z [INFO] notification-service - Auth event: logout - User: user_1053 - IP: 192.168.30.79 - RequestID: 0f487gplj8pa +2025-06-18T14:21:50.681Z [TRACE] order-service - Operation: payment_processed - Processing time: 715ms - RequestID: 2m012686mmn +2025-06-18T14:21:50.781Z [DEBUG] order-service - Database DELETE on users - Execution time: 38ms - Rows affected: 83 - RequestID: yc5fwn7kaxg +2025-06-18T14:21:50.881Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 336ms - Rows affected: 88 - RequestID: dk28oxwurso +2025-06-18T14:21:50.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.158.144 - RequestID: krihjifgxia +2025-06-18T14:21:51.081Z [TRACE] order-service - Operation: cache_hit - Processing time: 729ms - RequestID: kp8yx990e9 +2025-06-18T14:21:51.181Z [INFO] notification-service - Database INSERT on orders - Execution time: 114ms - Rows affected: 33 - RequestID: fjeg1jjfyu4 +2025-06-18T14:21:51.281Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 92ms - RequestID: p2epksppmz9 +2025-06-18T14:21:51.381Z [TRACE] notification-service - PUT /api/v1/users - Status: 403 - Response time: 1098ms - IP: 192.168.181.225 - User: user_1024 - RequestID: qterwf09q5 +2025-06-18T14:21:51.481Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 18ms - Rows affected: 59 - RequestID: ss5gmrmdhxd +2025-06-18T14:21:51.581Z [TRACE] user-service - Operation: order_created - Processing time: 447ms - RequestID: 8vw65i2swwa +2025-06-18T14:21:51.681Z [DEBUG] order-service - Operation: payment_processed - Processing time: 794ms - RequestID: 15o7h5b50wx +2025-06-18T14:21:51.781Z [INFO] inventory-service - Database UPDATE on products - Execution time: 230ms - Rows affected: 60 - RequestID: 0279snpa4a23 +2025-06-18T14:21:51.881Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 245ms - Rows affected: 10 - RequestID: vzch3n0e1fo +2025-06-18T14:21:51.981Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 494ms - RequestID: ze6s7n1t7b +2025-06-18T14:21:52.081Z [TRACE] notification-service - Operation: cache_miss - Processing time: 513ms - RequestID: 1ftryl9eovai +2025-06-18T14:21:52.181Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 722ms - RequestID: nr4siiiyxo +2025-06-18T14:21:52.281Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 253ms - RequestID: czbgawhmxh +2025-06-18T14:21:52.381Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 456ms - Rows affected: 75 - RequestID: t97o2c7xr0l +2025-06-18T14:21:52.481Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 502 - Response time: 1206ms - IP: 192.168.100.240 - User: user_1053 - RequestID: t3c3ru66h4a +2025-06-18T14:21:52.581Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 447ms - RequestID: 1ckz6jk218k +2025-06-18T14:21:52.681Z [INFO] notification-service - Auth event: login_failed - User: user_1057 - IP: 192.168.97.87 - RequestID: 3hxf1p8t18k +2025-06-18T14:21:52.781Z [TRACE] auth-service - POST /api/v1/payments - Status: 403 - Response time: 829ms - IP: 192.168.147.171 - User: user_1091 - RequestID: blp2hbhflt8 +2025-06-18T14:21:52.881Z [DEBUG] user-service - Auth event: logout - User: user_1071 - IP: 192.168.227.77 - RequestID: 3tv6265mkfc +2025-06-18T14:21:52.981Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 324ms - Rows affected: 66 - RequestID: j6eloe6hcr +2025-06-18T14:21:53.081Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 119ms - Rows affected: 15 - RequestID: pey4yoagb78 +2025-06-18T14:21:53.181Z [INFO] order-service - Database SELECT on products - Execution time: 130ms - Rows affected: 95 - RequestID: 2ouagf88lc1 +2025-06-18T14:21:53.281Z [INFO] auth-service - Operation: cache_hit - Processing time: 763ms - RequestID: hyi4pld8v8r +2025-06-18T14:21:53.381Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 991ms - RequestID: 0lxdcquvtq5h +2025-06-18T14:21:53.481Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1370ms - IP: 192.168.11.60 - User: user_1080 - RequestID: d8cq4u1wd9 +2025-06-18T14:21:53.581Z [INFO] auth-service - Operation: cache_miss - Processing time: 793ms - RequestID: lfgu02w7ya +2025-06-18T14:21:53.681Z [INFO] user-service - PUT /api/v1/orders - Status: 200 - Response time: 720ms - IP: 192.168.79.116 - User: user_1079 - RequestID: e5nunz6ejdp +2025-06-18T14:21:53.781Z [TRACE] payment-service - Operation: notification_queued - Processing time: 515ms - RequestID: hh0a0rizebf +2025-06-18T14:21:53.881Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 467ms - Rows affected: 54 - RequestID: 4zedu4eri3m +2025-06-18T14:21:53.981Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1839ms - IP: 192.168.32.38 - User: user_1053 - RequestID: pkgmtid9zc +2025-06-18T14:21:54.081Z [DEBUG] order-service - Operation: order_created - Processing time: 646ms - RequestID: a8tdt7rhe4n +2025-06-18T14:21:54.181Z [INFO] payment-service - Auth event: login_success - User: user_1061 - IP: 192.168.97.87 - RequestID: znmd1hlfjq +2025-06-18T14:21:54.281Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 451ms - Rows affected: 87 - RequestID: cfhv07hdxgc +2025-06-18T14:21:54.381Z [DEBUG] order-service - Auth event: password_change - User: user_1033 - IP: 192.168.100.240 - RequestID: d1ar24b07db +2025-06-18T14:21:54.481Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 401 - Response time: 1834ms - IP: 192.168.141.100 - User: user_1075 - RequestID: eoeagpjjxhv +2025-06-18T14:21:54.581Z [INFO] notification-service - Operation: order_created - Processing time: 498ms - RequestID: vkgwtgbnf4p +2025-06-18T14:21:54.681Z [INFO] notification-service - POST /api/v1/payments - Status: 503 - Response time: 246ms - IP: 192.168.189.103 - User: user_1095 - RequestID: rey1jd61ral +2025-06-18T14:21:54.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1090 - IP: 192.168.141.100 - RequestID: 7at5pj0p0jb +2025-06-18T14:21:54.881Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 500 - Response time: 1868ms - IP: 192.168.194.41 - User: user_1014 - RequestID: j65s1laj038 +2025-06-18T14:21:54.981Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.138.123 - RequestID: 2btd6nin02i +2025-06-18T14:21:55.081Z [INFO] order-service - Operation: cache_hit - Processing time: 944ms - RequestID: 9kwrxdjgh7d +2025-06-18T14:21:55.181Z [TRACE] notification-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.64.33 - RequestID: kjipzcakisg +2025-06-18T14:21:55.281Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 773ms - IP: 192.168.138.123 - User: user_1002 - RequestID: ry0u2x3sce +2025-06-18T14:21:55.381Z [INFO] user-service - Database SELECT on users - Execution time: 90ms - Rows affected: 31 - RequestID: b8nfsahi1w4 +2025-06-18T14:21:55.481Z [INFO] auth-service - Operation: payment_processed - Processing time: 188ms - RequestID: 7q2logdix97 +2025-06-18T14:21:55.581Z [DEBUG] payment-service - Auth event: login_failed - User: user_1061 - IP: 192.168.30.79 - RequestID: jqw8uc240vo +2025-06-18T14:21:55.681Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 805ms - IP: 192.168.158.144 - User: user_1030 - RequestID: yvkffk5nay +2025-06-18T14:21:55.781Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 927ms - RequestID: b9jcjg9iz0s +2025-06-18T14:21:55.881Z [INFO] user-service - Auth event: login_success - User: user_1091 - IP: 192.168.79.141 - RequestID: wo5qyn3575 +2025-06-18T14:21:55.981Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 407ms - Rows affected: 18 - RequestID: opd464264dd +2025-06-18T14:21:56.081Z [INFO] notification-service - Auth event: login_failed - User: user_1066 - IP: 192.168.158.144 - RequestID: h1i4456pftj +2025-06-18T14:21:56.181Z [INFO] notification-service - Auth event: login_success - User: user_1007 - IP: 192.168.10.184 - RequestID: l2axw3tffz +2025-06-18T14:21:56.281Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 82ms - Rows affected: 75 - RequestID: uw6imusldus +2025-06-18T14:21:56.381Z [INFO] inventory-service - Database UPDATE on users - Execution time: 65ms - Rows affected: 47 - RequestID: ltb3c1eavbg +2025-06-18T14:21:56.481Z [TRACE] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 612ms - IP: 192.168.81.206 - User: user_1075 - RequestID: n6jz4ejv5i +2025-06-18T14:21:56.581Z [TRACE] payment-service - Database SELECT on orders - Execution time: 407ms - Rows affected: 12 - RequestID: s2v4fidmoxr +2025-06-18T14:21:56.681Z [TRACE] payment-service - Database INSERT on orders - Execution time: 365ms - Rows affected: 82 - RequestID: 1rti862pcuv +2025-06-18T14:21:56.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1061 - IP: 192.168.196.226 - RequestID: eon03yaesb +2025-06-18T14:21:56.881Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 868ms - IP: 192.168.64.33 - User: user_1090 - RequestID: 9qdrxjcxwni +2025-06-18T14:21:56.981Z [INFO] user-service - Database SELECT on users - Execution time: 218ms - Rows affected: 73 - RequestID: twpjfyurmv +2025-06-18T14:21:57.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.11.60 - RequestID: 14ic7rcqxqk +2025-06-18T14:21:57.181Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 400ms - Rows affected: 80 - RequestID: 1wu303deehy +2025-06-18T14:21:57.281Z [TRACE] user-service - Operation: webhook_sent - Processing time: 352ms - RequestID: wf1plix65mq +2025-06-18T14:21:57.381Z [INFO] user-service - Operation: payment_processed - Processing time: 681ms - RequestID: luww7hd4fal +2025-06-18T14:21:57.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.64.33 - RequestID: msfx2gj62o9 +2025-06-18T14:21:57.581Z [INFO] notification-service - Auth event: login_success - User: user_1091 - IP: 192.168.46.63 - RequestID: 1pldkin666i +2025-06-18T14:21:57.681Z [INFO] payment-service - POST /api/v1/inventory - Status: 401 - Response time: 610ms - IP: 192.168.33.76 - User: user_1099 - RequestID: ewmwnm2uk9s +2025-06-18T14:21:57.781Z [INFO] payment-service - GET /api/v1/auth/login - Status: 500 - Response time: 416ms - IP: 192.168.44.5 - User: user_1023 - RequestID: u9y0rzt562i +2025-06-18T14:21:57.881Z [INFO] auth-service - Auth event: password_change - User: user_1011 - IP: 192.168.104.37 - RequestID: x45gquw0xb +2025-06-18T14:21:57.981Z [TRACE] payment-service - PUT /api/v1/users - Status: 502 - Response time: 247ms - IP: 192.168.1.152 - User: user_1047 - RequestID: vyyi356njl +2025-06-18T14:21:58.081Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1095ms - IP: 192.168.141.100 - User: user_1087 - RequestID: i3xmgv20mu +2025-06-18T14:21:58.181Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 161ms - IP: 192.168.97.87 - User: user_1083 - RequestID: 8yidbgxwqiw +2025-06-18T14:21:58.281Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 200 - Response time: 1493ms - IP: 192.168.247.134 - User: user_1099 - RequestID: scgvczbexj +2025-06-18T14:21:58.381Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 732ms - RequestID: leom4vsk8bi +2025-06-18T14:21:58.481Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 139ms - IP: 192.168.64.33 - User: user_1066 - RequestID: lngpau3vipc +2025-06-18T14:21:58.581Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 400 - Response time: 1779ms - IP: 192.168.28.146 - User: user_1094 - RequestID: awshgj8bw8a +2025-06-18T14:21:58.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.104.37 - RequestID: 262dreuz7g6 +2025-06-18T14:21:58.781Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 201 - Response time: 1448ms - IP: 192.168.79.141 - User: user_1018 - RequestID: ddsyl2fylxt +2025-06-18T14:21:58.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.53.133 - RequestID: 3a0rzm44y3b +2025-06-18T14:21:58.981Z [INFO] notification-service - GET /api/v1/payments - Status: 400 - Response time: 1580ms - IP: 192.168.232.72 - User: user_1047 - RequestID: iuq1lpjssef +2025-06-18T14:21:59.081Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 401 - Response time: 315ms - IP: 192.168.97.87 - User: user_1020 - RequestID: ctckj18f8i9 +2025-06-18T14:21:59.181Z [DEBUG] payment-service - Auth event: logout - User: user_1014 - IP: 192.168.227.77 - RequestID: 0ebcpl891z0a +2025-06-18T14:21:59.281Z [INFO] inventory-service - GET /api/v1/users - Status: 404 - Response time: 1003ms - IP: 192.168.187.199 - User: user_1092 - RequestID: baq22i4rp9 +2025-06-18T14:21:59.381Z [DEBUG] order-service - Operation: notification_queued - Processing time: 135ms - RequestID: ko0i09tr6jr +2025-06-18T14:21:59.481Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 503 - Response time: 135ms - IP: 192.168.68.128 - User: user_1053 - RequestID: bi7as8m3nl +2025-06-18T14:21:59.581Z [INFO] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 1327ms - IP: 192.168.138.123 - User: user_1042 - RequestID: 6dhomvg6gf7 +2025-06-18T14:21:59.681Z [DEBUG] user-service - Operation: cache_hit - Processing time: 691ms - RequestID: lu4638986va +2025-06-18T14:21:59.781Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.240.169 - RequestID: boqdjef1efk +2025-06-18T14:21:59.881Z [INFO] user-service - Operation: cache_hit - Processing time: 99ms - RequestID: h2xjg6r7eor +2025-06-18T14:21:59.981Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 200 - Response time: 1585ms - IP: 192.168.229.123 - User: user_1051 - RequestID: 7j4zat8aoxm +2025-06-18T14:22:00.081Z [TRACE] notification-service - Operation: payment_processed - Processing time: 170ms - RequestID: dczx6jir435 +2025-06-18T14:22:00.181Z [INFO] user-service - Auth event: login_success - User: user_1004 - IP: 192.168.194.41 - RequestID: ual6b7ivkjf +2025-06-18T14:22:00.281Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 52ms - Rows affected: 61 - RequestID: 6wr124trgch +2025-06-18T14:22:00.381Z [DEBUG] order-service - Auth event: logout - User: user_1042 - IP: 192.168.30.79 - RequestID: d10y4ell7c +2025-06-18T14:22:00.481Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 413ms - Rows affected: 63 - RequestID: 13vy02pfi5fd +2025-06-18T14:22:00.581Z [INFO] auth-service - Database DELETE on users - Execution time: 143ms - Rows affected: 4 - RequestID: ijgq6n9x0ti +2025-06-18T14:22:00.681Z [INFO] order-service - Database INSERT on payments - Execution time: 244ms - Rows affected: 14 - RequestID: o8hvdrpqn9 +2025-06-18T14:22:00.781Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 724ms - IP: 192.168.44.5 - User: user_1000 - RequestID: stwwqopuhm +2025-06-18T14:22:00.881Z [DEBUG] notification-service - Auth event: logout - User: user_1084 - IP: 192.168.44.5 - RequestID: k167sunc1l +2025-06-18T14:22:00.981Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 786ms - RequestID: lyjwn7m2v0g +2025-06-18T14:22:01.081Z [TRACE] payment-service - Operation: payment_processed - Processing time: 754ms - RequestID: pxqrd3bvtpf +2025-06-18T14:22:01.181Z [DEBUG] auth-service - PUT /api/v1/users - Status: 403 - Response time: 913ms - IP: 192.168.30.79 - User: user_1001 - RequestID: w65xt6um0c +2025-06-18T14:22:01.281Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 480ms - Rows affected: 42 - RequestID: 75x9nx0iuri +2025-06-18T14:22:01.381Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 87ms - Rows affected: 31 - RequestID: qza2r1f321 +2025-06-18T14:22:01.481Z [INFO] payment-service - Operation: email_sent - Processing time: 832ms - RequestID: 84jq43d3wr9 +2025-06-18T14:22:01.581Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 194ms - Rows affected: 16 - RequestID: zlgncgabjw +2025-06-18T14:22:01.681Z [INFO] order-service - Auth event: password_change - User: user_1040 - IP: 192.168.79.116 - RequestID: 5ednva84uc2 +2025-06-18T14:22:01.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1023 - IP: 192.168.100.240 - RequestID: tealopgzq48 +2025-06-18T14:22:01.881Z [DEBUG] user-service - Operation: email_sent - Processing time: 670ms - RequestID: gu1c4pc4xlk +2025-06-18T14:22:01.981Z [DEBUG] user-service - Operation: cache_miss - Processing time: 910ms - RequestID: 9w6k553ld5s +2025-06-18T14:22:02.081Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 981ms - RequestID: lioapmwg6pe +2025-06-18T14:22:02.181Z [TRACE] auth-service - POST /api/v1/inventory - Status: 403 - Response time: 982ms - IP: 192.168.85.229 - User: user_1016 - RequestID: fgcqmx2d51e +2025-06-18T14:22:02.281Z [INFO] payment-service - Operation: payment_processed - Processing time: 587ms - RequestID: 3m5k55fkdyq +2025-06-18T14:22:02.381Z [INFO] order-service - Database SELECT on users - Execution time: 499ms - Rows affected: 72 - RequestID: rd10x5gboj +2025-06-18T14:22:02.481Z [TRACE] auth-service - Database DELETE on orders - Execution time: 112ms - Rows affected: 1 - RequestID: por0usxuxue +2025-06-18T14:22:02.581Z [INFO] auth-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.68.158 - RequestID: r8qjoww10u +2025-06-18T14:22:02.681Z [INFO] order-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.100.240 - RequestID: ky21p2hslfo +2025-06-18T14:22:02.781Z [INFO] notification-service - GET /api/v1/payments - Status: 403 - Response time: 1373ms - IP: 192.168.14.77 - User: user_1011 - RequestID: zqdgxwy44bi +2025-06-18T14:22:02.881Z [TRACE] order-service - Auth event: login_success - User: user_1069 - IP: 192.168.227.77 - RequestID: i9ef2hn14f +2025-06-18T14:22:02.981Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 129ms - Rows affected: 45 - RequestID: 3omrk3f248f +2025-06-18T14:22:03.081Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 242ms - RequestID: g8i76bljlcv +2025-06-18T14:22:03.181Z [INFO] notification-service - Auth event: login_failed - User: user_1014 - IP: 192.168.158.144 - RequestID: 2thk4oxhyyf +2025-06-18T14:22:03.281Z [TRACE] notification-service - Database DELETE on payments - Execution time: 217ms - Rows affected: 49 - RequestID: zolrpdisilp +2025-06-18T14:22:03.381Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 68ms - Rows affected: 43 - RequestID: pfc8w9e4lr +2025-06-18T14:22:03.481Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 289ms - RequestID: vp1cxa2afe +2025-06-18T14:22:03.581Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 401 - Response time: 1328ms - IP: 192.168.189.103 - User: user_1040 - RequestID: xffwn25kcoq +2025-06-18T14:22:03.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 784ms - RequestID: jyqs5qczzr +2025-06-18T14:22:03.781Z [INFO] user-service - Database SELECT on orders - Execution time: 17ms - Rows affected: 16 - RequestID: 697nmp5v4ga +2025-06-18T14:22:03.881Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 999ms - RequestID: 8y07jk80t46 +2025-06-18T14:22:03.981Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 940ms - IP: 192.168.46.63 - User: user_1092 - RequestID: bfw4nwfmxf +2025-06-18T14:22:04.081Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 121ms - Rows affected: 75 - RequestID: 33tfs1urn7u +2025-06-18T14:22:04.181Z [TRACE] user-service - Operation: order_created - Processing time: 94ms - RequestID: 2fmpvrkp5cr +2025-06-18T14:22:04.281Z [INFO] inventory-service - Auth event: login_failed - User: user_1000 - IP: 192.168.158.144 - RequestID: oghb12clujg +2025-06-18T14:22:04.381Z [INFO] payment-service - Database SELECT on users - Execution time: 405ms - Rows affected: 18 - RequestID: sht35ndykw +2025-06-18T14:22:04.481Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 699ms - RequestID: op03qd6juw +2025-06-18T14:22:04.581Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1728ms - IP: 192.168.97.87 - User: user_1026 - RequestID: o4qq8l0ejz +2025-06-18T14:22:04.681Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 404 - Response time: 1933ms - IP: 192.168.240.169 - User: user_1096 - RequestID: udijhvlnsnm +2025-06-18T14:22:04.781Z [TRACE] order-service - Operation: notification_queued - Processing time: 266ms - RequestID: 4rkpgfwvgf8 +2025-06-18T14:22:04.881Z [TRACE] auth-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.167.32 - RequestID: uvuz96glmab +2025-06-18T14:22:04.981Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 85ms - RequestID: fkx2yfezozh +2025-06-18T14:22:05.081Z [INFO] payment-service - PATCH /api/v1/orders - Status: 403 - Response time: 839ms - IP: 192.168.13.72 - User: user_1078 - RequestID: h29vis4utid +2025-06-18T14:22:05.181Z [INFO] auth-service - Auth event: password_change - User: user_1075 - IP: 192.168.174.114 - RequestID: ci5omikqien +2025-06-18T14:22:05.281Z [INFO] user-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.10.184 - RequestID: 325qwjanr6t +2025-06-18T14:22:05.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.81.206 - RequestID: h1ah4b90ki +2025-06-18T14:22:05.481Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 446ms - RequestID: mpvzhg31aj +2025-06-18T14:22:05.581Z [DEBUG] order-service - Auth event: logout - User: user_1045 - IP: 192.168.211.72 - RequestID: 0253pw9gickg +2025-06-18T14:22:05.681Z [INFO] notification-service - Operation: cache_hit - Processing time: 110ms - RequestID: 7y5nmc9aax5 +2025-06-18T14:22:05.781Z [DEBUG] payment-service - Operation: order_created - Processing time: 917ms - RequestID: wicacb1zxmd +2025-06-18T14:22:05.881Z [TRACE] order-service - Auth event: logout - User: user_1030 - IP: 192.168.31.117 - RequestID: tc2xu80p8b +2025-06-18T14:22:05.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.196.226 - RequestID: 8f8r9u42zz +2025-06-18T14:22:06.081Z [TRACE] user-service - Database DELETE on users - Execution time: 191ms - Rows affected: 50 - RequestID: 2vtrpzd08yg +2025-06-18T14:22:06.181Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 3ms - Rows affected: 73 - RequestID: yb35kd6he1q +2025-06-18T14:22:06.281Z [TRACE] inventory-service - Database SELECT on products - Execution time: 76ms - Rows affected: 73 - RequestID: 7k3c7lyc56g +2025-06-18T14:22:06.381Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 44ms - Rows affected: 22 - RequestID: tm2zhgqz7j +2025-06-18T14:22:06.481Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 59ms - Rows affected: 40 - RequestID: azh0t4xmj0a +2025-06-18T14:22:06.581Z [TRACE] user-service - POST /api/v1/users - Status: 403 - Response time: 1583ms - IP: 192.168.79.143 - User: user_1055 - RequestID: pyb9rwp3eob +2025-06-18T14:22:06.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 365ms - RequestID: cpwc35noo4 +2025-06-18T14:22:06.781Z [DEBUG] order-service - Operation: email_sent - Processing time: 580ms - RequestID: 2tgd4n3b57t +2025-06-18T14:22:06.881Z [DEBUG] auth-service - Operation: order_created - Processing time: 650ms - RequestID: 19qny3mpnla +2025-06-18T14:22:06.981Z [INFO] user-service - POST /api/v1/users - Status: 404 - Response time: 732ms - IP: 192.168.235.117 - User: user_1068 - RequestID: ogm26vgamy +2025-06-18T14:22:07.081Z [TRACE] order-service - Auth event: login_failed - User: user_1067 - IP: 192.168.227.233 - RequestID: 748gylbdaby +2025-06-18T14:22:07.181Z [TRACE] auth-service - POST /api/v1/inventory - Status: 503 - Response time: 313ms - IP: 192.168.211.72 - User: user_1046 - RequestID: f1j2wp2w68 +2025-06-18T14:22:07.281Z [DEBUG] notification-service - Auth event: logout - User: user_1022 - IP: 192.168.232.72 - RequestID: 9bqz4klwwrj +2025-06-18T14:22:07.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1080 - IP: 192.168.113.218 - RequestID: 31iwmyim8fv +2025-06-18T14:22:07.481Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 993ms - RequestID: injaunt0dm +2025-06-18T14:22:07.581Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 641ms - RequestID: j7f3w9eoboc +2025-06-18T14:22:07.681Z [TRACE] auth-service - Operation: order_created - Processing time: 841ms - RequestID: pbh6r8zla7j +2025-06-18T14:22:07.781Z [INFO] inventory-service - Auth event: logout - User: user_1099 - IP: 192.168.235.117 - RequestID: pmw3311zo7 +2025-06-18T14:22:07.881Z [TRACE] order-service - GET /api/v1/users - Status: 200 - Response time: 1130ms - IP: 192.168.11.60 - User: user_1044 - RequestID: exgyuu3t559 +2025-06-18T14:22:07.981Z [INFO] payment-service - Database DELETE on payments - Execution time: 358ms - Rows affected: 64 - RequestID: g6niy44buab +2025-06-18T14:22:08.081Z [INFO] user-service - Database SELECT on payments - Execution time: 274ms - Rows affected: 14 - RequestID: qrqnoymx9z +2025-06-18T14:22:08.181Z [DEBUG] payment-service - PUT /api/v1/users - Status: 502 - Response time: 838ms - IP: 192.168.138.123 - User: user_1064 - RequestID: hxjywke9jik +2025-06-18T14:22:08.281Z [TRACE] auth-service - Database UPDATE on users - Execution time: 129ms - Rows affected: 24 - RequestID: uzznc7kpnp +2025-06-18T14:22:08.381Z [TRACE] order-service - Operation: cache_hit - Processing time: 516ms - RequestID: 3fyvp80pttt +2025-06-18T14:22:08.481Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 615ms - RequestID: s3501i3w6m9 +2025-06-18T14:22:08.581Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 231ms - Rows affected: 60 - RequestID: xohfp622cp8 +2025-06-18T14:22:08.681Z [TRACE] inventory-service - GET /api/v1/users - Status: 503 - Response time: 772ms - IP: 192.168.30.79 - User: user_1092 - RequestID: pnwdfls3t9s +2025-06-18T14:22:08.781Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1910ms - IP: 192.168.32.38 - User: user_1055 - RequestID: 1kr7kdywebn +2025-06-18T14:22:08.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 600ms - RequestID: mn4hrzkw67q +2025-06-18T14:22:08.981Z [DEBUG] auth-service - PUT /api/v1/users - Status: 403 - Response time: 1925ms - IP: 192.168.44.5 - User: user_1071 - RequestID: 71872okke8o +2025-06-18T14:22:09.081Z [DEBUG] payment-service - POST /api/v1/orders - Status: 200 - Response time: 1370ms - IP: 192.168.13.72 - User: user_1077 - RequestID: jhdna8vlfp +2025-06-18T14:22:09.181Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 328ms - Rows affected: 74 - RequestID: wvpgyxbbe3 +2025-06-18T14:22:09.281Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 760ms - RequestID: ui9dniq045 +2025-06-18T14:22:09.381Z [TRACE] user-service - Database UPDATE on products - Execution time: 275ms - Rows affected: 19 - RequestID: dk5b8rzztxb +2025-06-18T14:22:09.481Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 334ms - RequestID: l0yedozpjeq +2025-06-18T14:22:09.581Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 189ms - Rows affected: 58 - RequestID: s78wiodooq +2025-06-18T14:22:09.681Z [TRACE] auth-service - GET /api/v1/payments - Status: 503 - Response time: 1795ms - IP: 192.168.100.240 - User: user_1087 - RequestID: 2f981ngl0a +2025-06-18T14:22:09.781Z [INFO] order-service - GET /api/v1/auth/logout - Status: 403 - Response time: 42ms - IP: 192.168.46.63 - User: user_1057 - RequestID: 0vxekvowpby +2025-06-18T14:22:09.881Z [TRACE] user-service - Database UPDATE on payments - Execution time: 180ms - Rows affected: 5 - RequestID: l3d9upymn2l +2025-06-18T14:22:09.981Z [INFO] auth-service - PATCH /api/v1/users - Status: 404 - Response time: 683ms - IP: 192.168.79.143 - User: user_1058 - RequestID: er4htevc747 +2025-06-18T14:22:10.081Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1724ms - IP: 192.168.79.141 - User: user_1020 - RequestID: 8s6vx48v90a +2025-06-18T14:22:10.181Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 200 - Response time: 457ms - IP: 192.168.232.72 - User: user_1072 - RequestID: wwhsz1ctqe7 +2025-06-18T14:22:10.281Z [TRACE] notification-service - Auth event: login_failed - User: user_1002 - IP: 192.168.13.72 - RequestID: 195jn3vld4k +2025-06-18T14:22:10.381Z [TRACE] notification-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.97.87 - RequestID: qt0tcl88v5 +2025-06-18T14:22:10.481Z [DEBUG] notification-service - Operation: email_sent - Processing time: 915ms - RequestID: u3w93zcy2ga +2025-06-18T14:22:10.581Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 63ms - RequestID: dgy1esrfkd7 +2025-06-18T14:22:10.681Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 479ms - Rows affected: 87 - RequestID: 0q21ala45lp +2025-06-18T14:22:10.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.97.87 - RequestID: 08ndzwsn9fzq +2025-06-18T14:22:10.881Z [DEBUG] inventory-service - Operation: order_created - Processing time: 725ms - RequestID: 0s7vicgokohs +2025-06-18T14:22:10.981Z [TRACE] order-service - Operation: webhook_sent - Processing time: 224ms - RequestID: l3z7ukk9kfd +2025-06-18T14:22:11.081Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 400 - Response time: 754ms - IP: 192.168.194.41 - User: user_1059 - RequestID: oiyvxb0zjd9 +2025-06-18T14:22:11.181Z [TRACE] payment-service - Auth event: logout - User: user_1041 - IP: 192.168.14.77 - RequestID: 3gb6t5qp45s +2025-06-18T14:22:11.281Z [TRACE] order-service - Database DELETE on sessions - Execution time: 137ms - Rows affected: 46 - RequestID: 45n8ej9sndd +2025-06-18T14:22:11.381Z [TRACE] user-service - Auth event: password_change - User: user_1028 - IP: 192.168.227.77 - RequestID: p29cj5u8pnb +2025-06-18T14:22:11.481Z [TRACE] user-service - GET /api/v1/orders - Status: 500 - Response time: 543ms - IP: 192.168.79.143 - User: user_1049 - RequestID: z810khparsj +2025-06-18T14:22:11.581Z [DEBUG] notification-service - Operation: order_created - Processing time: 338ms - RequestID: gyck6ljw6f6 +2025-06-18T14:22:11.681Z [INFO] order-service - DELETE /api/v1/payments - Status: 403 - Response time: 1737ms - IP: 192.168.189.103 - User: user_1084 - RequestID: gds1vaabyk8 +2025-06-18T14:22:11.781Z [INFO] auth-service - Operation: order_created - Processing time: 416ms - RequestID: ggjrmtkvs +2025-06-18T14:22:11.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 656ms - RequestID: 4l9z2o2juk +2025-06-18T14:22:11.981Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 723ms - RequestID: rcgmcvsvcz +2025-06-18T14:22:12.081Z [DEBUG] auth-service - Auth event: logout - User: user_1000 - IP: 192.168.240.169 - RequestID: a4cmyjw15pl +2025-06-18T14:22:12.181Z [TRACE] notification-service - Auth event: password_change - User: user_1034 - IP: 192.168.97.87 - RequestID: 7ot1nbr30c2 +2025-06-18T14:22:12.281Z [TRACE] payment-service - Operation: order_created - Processing time: 864ms - RequestID: 7wsrluejnw8 +2025-06-18T14:22:12.381Z [INFO] inventory-service - Operation: cache_hit - Processing time: 889ms - RequestID: 66lzdg79ko +2025-06-18T14:22:12.481Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 457ms - Rows affected: 58 - RequestID: c6hnghukxbv +2025-06-18T14:22:12.581Z [INFO] payment-service - Database SELECT on orders - Execution time: 474ms - Rows affected: 9 - RequestID: ugwzt9rg2zm +2025-06-18T14:22:12.681Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 322ms - Rows affected: 4 - RequestID: y5ogj8vvzk +2025-06-18T14:22:12.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.79.116 - RequestID: 3lhszz2f5ne +2025-06-18T14:22:12.881Z [TRACE] payment-service - Operation: notification_queued - Processing time: 650ms - RequestID: ym9lcf4vdxf +2025-06-18T14:22:12.981Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1922ms - IP: 192.168.211.72 - User: user_1080 - RequestID: 9pxrrb1k9qq +2025-06-18T14:22:13.081Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 398ms - RequestID: q13slg45br7 +2025-06-18T14:22:13.181Z [DEBUG] notification-service - Database INSERT on products - Execution time: 162ms - Rows affected: 21 - RequestID: r9dnulkupw +2025-06-18T14:22:13.281Z [TRACE] notification-service - GET /api/v1/orders - Status: 502 - Response time: 640ms - IP: 192.168.247.134 - User: user_1012 - RequestID: bsf8uwxwgun +2025-06-18T14:22:13.381Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 97ms - Rows affected: 54 - RequestID: uw1zx4t6gp +2025-06-18T14:22:13.481Z [TRACE] user-service - Auth event: login_failed - User: user_1067 - IP: 192.168.159.94 - RequestID: y92mg3h8nrc +2025-06-18T14:22:13.581Z [TRACE] notification-service - Auth event: password_change - User: user_1066 - IP: 192.168.31.117 - RequestID: 9y303vwqttu +2025-06-18T14:22:13.681Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 270ms - Rows affected: 34 - RequestID: 5i9m36hb6bi +2025-06-18T14:22:13.781Z [DEBUG] payment-service - Operation: email_sent - Processing time: 740ms - RequestID: f74v3yf72t7 +2025-06-18T14:22:13.881Z [DEBUG] order-service - POST /api/v1/users - Status: 500 - Response time: 1588ms - IP: 192.168.242.165 - User: user_1060 - RequestID: 9gwpzi5cdm +2025-06-18T14:22:13.981Z [TRACE] user-service - Database DELETE on users - Execution time: 274ms - Rows affected: 34 - RequestID: ljqkxh3lvfd +2025-06-18T14:22:14.081Z [INFO] auth-service - Operation: webhook_sent - Processing time: 642ms - RequestID: 8t8xk3o86bm +2025-06-18T14:22:14.181Z [INFO] payment-service - Auth event: logout - User: user_1089 - IP: 192.168.14.77 - RequestID: il2847obpvn +2025-06-18T14:22:14.281Z [INFO] user-service - Database UPDATE on sessions - Execution time: 144ms - Rows affected: 46 - RequestID: 5rc5jtm3um8 +2025-06-18T14:22:14.381Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 519ms - RequestID: jb0yr55kfz9 +2025-06-18T14:22:14.481Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1358ms - IP: 192.168.174.114 - User: user_1099 - RequestID: 8ldx292r8mj +2025-06-18T14:22:14.581Z [INFO] notification-service - Auth event: password_change - User: user_1012 - IP: 192.168.64.33 - RequestID: y237n3dbtc +2025-06-18T14:22:14.681Z [TRACE] order-service - GET /api/v1/users - Status: 401 - Response time: 463ms - IP: 192.168.68.158 - User: user_1005 - RequestID: ay879lqfp1i +2025-06-18T14:22:14.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 800ms - RequestID: aitl5m7r59a +2025-06-18T14:22:14.881Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 160ms - RequestID: lich2ao1ob +2025-06-18T14:22:14.981Z [DEBUG] payment-service - Operation: order_created - Processing time: 138ms - RequestID: 80s53whp4i +2025-06-18T14:22:15.081Z [TRACE] notification-service - Database DELETE on orders - Execution time: 208ms - Rows affected: 66 - RequestID: g750oc7q95q +2025-06-18T14:22:15.181Z [INFO] inventory-service - Auth event: password_change - User: user_1006 - IP: 192.168.229.123 - RequestID: 5sjv66kh1yk +2025-06-18T14:22:15.281Z [INFO] notification-service - DELETE /api/v1/users - Status: 503 - Response time: 1961ms - IP: 192.168.30.79 - User: user_1045 - RequestID: ojxfjsuwkqe +2025-06-18T14:22:15.381Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1856ms - IP: 192.168.144.38 - User: user_1095 - RequestID: a403bcrgmk8 +2025-06-18T14:22:15.481Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 200 - Response time: 158ms - IP: 192.168.46.63 - User: user_1061 - RequestID: bw5qel1ltz +2025-06-18T14:22:15.581Z [DEBUG] order-service - Operation: payment_processed - Processing time: 1006ms - RequestID: bc5ec848tyw +2025-06-18T14:22:15.681Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 272ms - Rows affected: 64 - RequestID: 7kiz37hc2eo +2025-06-18T14:22:15.781Z [INFO] notification-service - PUT /api/v1/inventory - Status: 404 - Response time: 693ms - IP: 192.168.13.72 - User: user_1027 - RequestID: yfsrobvqywe +2025-06-18T14:22:15.881Z [INFO] inventory-service - Operation: order_created - Processing time: 609ms - RequestID: ngkxlur3ox +2025-06-18T14:22:15.981Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1054ms - IP: 192.168.227.233 - User: user_1075 - RequestID: zyuh1zjv6g +2025-06-18T14:22:16.081Z [TRACE] auth-service - Auth event: logout - User: user_1004 - IP: 192.168.242.165 - RequestID: 7iuzvkl701m +2025-06-18T14:22:16.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1080 - IP: 192.168.53.133 - RequestID: umapppro5pn +2025-06-18T14:22:16.281Z [DEBUG] order-service - Database DELETE on users - Execution time: 106ms - Rows affected: 35 - RequestID: 5uhdfy3njba +2025-06-18T14:22:16.381Z [TRACE] payment-service - PUT /api/v1/users - Status: 401 - Response time: 621ms - IP: 192.168.138.123 - User: user_1005 - RequestID: fkidihpcdpe +2025-06-18T14:22:16.481Z [DEBUG] notification-service - Operation: email_sent - Processing time: 58ms - RequestID: l75u4jk3ax +2025-06-18T14:22:16.581Z [INFO] order-service - Operation: cache_hit - Processing time: 876ms - RequestID: 60ytgskua99 +2025-06-18T14:22:16.681Z [TRACE] user-service - POST /api/v1/users - Status: 403 - Response time: 1262ms - IP: 192.168.167.32 - User: user_1039 - RequestID: imz59pr6fqc +2025-06-18T14:22:16.781Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 50ms - IP: 192.168.138.123 - User: user_1062 - RequestID: 1vzo6pfti2m +2025-06-18T14:22:16.881Z [TRACE] user-service - Operation: inventory_updated - Processing time: 585ms - RequestID: fw7qk5um8kj +2025-06-18T14:22:16.981Z [TRACE] auth-service - Database DELETE on products - Execution time: 94ms - Rows affected: 21 - RequestID: 9omu06cs4yr +2025-06-18T14:22:17.081Z [DEBUG] notification-service - POST /api/v1/orders - Status: 200 - Response time: 1037ms - IP: 192.168.13.72 - User: user_1014 - RequestID: wg0rm23993b +2025-06-18T14:22:17.181Z [INFO] notification-service - Operation: inventory_updated - Processing time: 211ms - RequestID: bcwcvocgfvk +2025-06-18T14:22:17.281Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 939ms - RequestID: 34ohknpjr1 +2025-06-18T14:22:17.381Z [TRACE] order-service - DELETE /api/v1/payments - Status: 400 - Response time: 1395ms - IP: 192.168.229.123 - User: user_1003 - RequestID: fluur94gkcl +2025-06-18T14:22:17.481Z [INFO] notification-service - PUT /api/v1/orders - Status: 200 - Response time: 463ms - IP: 192.168.144.38 - User: user_1077 - RequestID: bb1nt97o8rh +2025-06-18T14:22:17.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.32.38 - RequestID: th3eo4aoi1e +2025-06-18T14:22:17.681Z [INFO] payment-service - Auth event: logout - User: user_1052 - IP: 192.168.232.72 - RequestID: gnbd1sk31hw +2025-06-18T14:22:17.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.232.72 - RequestID: 2m5o1fc8n72 +2025-06-18T14:22:17.881Z [INFO] user-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.227.233 - RequestID: qs1r3db5s4j +2025-06-18T14:22:17.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 393ms - RequestID: ql30ysdlj4 +2025-06-18T14:22:18.081Z [INFO] payment-service - Operation: email_sent - Processing time: 582ms - RequestID: vjw961qsjnh +2025-06-18T14:22:18.181Z [DEBUG] notification-service - Operation: email_sent - Processing time: 382ms - RequestID: 3s2t869kwm8 +2025-06-18T14:22:18.281Z [DEBUG] notification-service - GET /api/v1/payments - Status: 502 - Response time: 918ms - IP: 192.168.194.41 - User: user_1055 - RequestID: h451us3r6ww +2025-06-18T14:22:18.381Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 371ms - Rows affected: 62 - RequestID: wj8we3t5pqf +2025-06-18T14:22:18.481Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 964ms - RequestID: i0yfccbmsq9 +2025-06-18T14:22:18.581Z [TRACE] inventory-service - Database SELECT on users - Execution time: 298ms - Rows affected: 89 - RequestID: 4nflyzmhnjv +2025-06-18T14:22:18.681Z [DEBUG] inventory-service - Auth event: login_success - User: user_1038 - IP: 192.168.144.38 - RequestID: fdvckrxicmg +2025-06-18T14:22:18.781Z [INFO] user-service - Operation: cache_miss - Processing time: 59ms - RequestID: k6uazecr1ts +2025-06-18T14:22:18.881Z [DEBUG] order-service - Operation: payment_processed - Processing time: 480ms - RequestID: 7dnhxfplb78 +2025-06-18T14:22:18.981Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 61ms - RequestID: agtpdgskvvd +2025-06-18T14:22:19.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.97.87 - RequestID: ex6xwj9srbn +2025-06-18T14:22:19.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1074 - IP: 192.168.79.141 - RequestID: l7xao4gix8 +2025-06-18T14:22:19.281Z [INFO] order-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1573ms - IP: 192.168.44.5 - User: user_1064 - RequestID: sl18f5dgfbq +2025-06-18T14:22:19.381Z [TRACE] payment-service - GET /api/v1/payments - Status: 500 - Response time: 1361ms - IP: 192.168.227.233 - User: user_1027 - RequestID: cooexlupq4 +2025-06-18T14:22:19.481Z [INFO] notification-service - DELETE /api/v1/orders - Status: 401 - Response time: 86ms - IP: 192.168.68.128 - User: user_1088 - RequestID: z24kio5588m +2025-06-18T14:22:19.581Z [INFO] user-service - GET /api/v1/payments - Status: 200 - Response time: 1756ms - IP: 192.168.79.116 - User: user_1047 - RequestID: cql96rulv4d +2025-06-18T14:22:19.681Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 414ms - RequestID: gr83a7ncqjg +2025-06-18T14:22:19.781Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 502 - Response time: 937ms - IP: 192.168.240.169 - User: user_1029 - RequestID: 53r6gbjf6fr +2025-06-18T14:22:19.881Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 771ms - IP: 192.168.31.117 - User: user_1052 - RequestID: p2zf5halwcc +2025-06-18T14:22:19.981Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 297ms - RequestID: 9nv2qn1r9m5 +2025-06-18T14:22:20.081Z [INFO] order-service - DELETE /api/v1/orders - Status: 502 - Response time: 1019ms - IP: 192.168.31.117 - User: user_1088 - RequestID: ocwo176zwh +2025-06-18T14:22:20.181Z [INFO] user-service - GET /api/v1/auth/logout - Status: 400 - Response time: 47ms - IP: 192.168.30.79 - User: user_1056 - RequestID: ltx7iqbn9v +2025-06-18T14:22:20.281Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1675ms - IP: 192.168.79.116 - User: user_1069 - RequestID: 7z6bgkrj77n +2025-06-18T14:22:20.381Z [INFO] order-service - Operation: payment_processed - Processing time: 147ms - RequestID: 1lfuwueonfy +2025-06-18T14:22:20.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 72ms - RequestID: 1dnyyjgm4pc +2025-06-18T14:22:20.581Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 496ms - IP: 192.168.79.141 - User: user_1047 - RequestID: kozi0pm5no +2025-06-18T14:22:20.681Z [DEBUG] order-service - Auth event: login_success - User: user_1021 - IP: 192.168.79.116 - RequestID: f5r40a0b3wo +2025-06-18T14:22:20.781Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 406ms - Rows affected: 98 - RequestID: js762set0hk +2025-06-18T14:22:20.881Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 321ms - Rows affected: 98 - RequestID: nwa2ioupk7l +2025-06-18T14:22:20.981Z [TRACE] order-service - Operation: webhook_sent - Processing time: 603ms - RequestID: flzuq9t2c1g +2025-06-18T14:22:21.081Z [INFO] notification-service - Database DELETE on payments - Execution time: 405ms - Rows affected: 32 - RequestID: jbw1nj6v1n +2025-06-18T14:22:21.181Z [INFO] auth-service - Database DELETE on users - Execution time: 148ms - Rows affected: 92 - RequestID: kmc51x955rc +2025-06-18T14:22:21.281Z [INFO] notification-service - Database SELECT on payments - Execution time: 479ms - Rows affected: 86 - RequestID: avm70x6yy8j +2025-06-18T14:22:21.381Z [TRACE] user-service - Operation: cache_hit - Processing time: 268ms - RequestID: 2tn0a4qh80d +2025-06-18T14:22:21.481Z [TRACE] user-service - POST /api/v1/auth/login - Status: 401 - Response time: 803ms - IP: 192.168.159.94 - User: user_1019 - RequestID: qy4ew8bbdn +2025-06-18T14:22:21.581Z [INFO] user-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1792ms - IP: 192.168.133.7 - User: user_1039 - RequestID: 1mxhn9yec81 +2025-06-18T14:22:21.681Z [INFO] payment-service - Operation: order_created - Processing time: 381ms - RequestID: vxp3gqpt7p +2025-06-18T14:22:21.781Z [TRACE] payment-service - Auth event: login_success - User: user_1049 - IP: 192.168.211.72 - RequestID: l2cbxhdzyho +2025-06-18T14:22:21.881Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 429ms - Rows affected: 31 - RequestID: umxkn2qxae +2025-06-18T14:22:21.981Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 302ms - Rows affected: 83 - RequestID: kca62h7ewmg +2025-06-18T14:22:22.081Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 891ms - RequestID: vkvptssdzwe +2025-06-18T14:22:22.181Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 210ms - Rows affected: 72 - RequestID: c42mxwsjeqa +2025-06-18T14:22:22.281Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 912ms - RequestID: 3wsuibsqm3g +2025-06-18T14:22:22.381Z [INFO] order-service - Operation: cache_miss - Processing time: 875ms - RequestID: j9d8jdf3hy +2025-06-18T14:22:22.481Z [DEBUG] order-service - Database SELECT on payments - Execution time: 1ms - Rows affected: 60 - RequestID: 1qj57bxshvm +2025-06-18T14:22:22.581Z [TRACE] order-service - Database SELECT on orders - Execution time: 2ms - Rows affected: 55 - RequestID: p4q40yekc8h +2025-06-18T14:22:22.681Z [TRACE] inventory-service - Database SELECT on users - Execution time: 258ms - Rows affected: 62 - RequestID: zyjbtsiy7qt +2025-06-18T14:22:22.781Z [INFO] auth-service - Auth event: password_change - User: user_1043 - IP: 192.168.11.60 - RequestID: d5tf298zj3n +2025-06-18T14:22:22.881Z [DEBUG] user-service - Auth event: login_failed - User: user_1010 - IP: 192.168.187.199 - RequestID: ro708izfgi +2025-06-18T14:22:22.981Z [INFO] order-service - PATCH /api/v1/orders - Status: 400 - Response time: 1804ms - IP: 192.168.10.184 - User: user_1019 - RequestID: 1p341qce3yn +2025-06-18T14:22:23.081Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 809ms - RequestID: z46ifpeeynb +2025-06-18T14:22:23.181Z [TRACE] payment-service - Database INSERT on products - Execution time: 169ms - Rows affected: 65 - RequestID: wd06ryzsaa +2025-06-18T14:22:23.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1020 - IP: 192.168.189.103 - RequestID: 7jonlecj1tl +2025-06-18T14:22:23.381Z [DEBUG] notification-service - Database INSERT on users - Execution time: 285ms - Rows affected: 31 - RequestID: uzu0r8t4y3s +2025-06-18T14:22:23.481Z [TRACE] payment-service - Database DELETE on orders - Execution time: 276ms - Rows affected: 28 - RequestID: tbtgbz3ebtt +2025-06-18T14:22:23.581Z [TRACE] order-service - Auth event: login_success - User: user_1013 - IP: 192.168.14.77 - RequestID: rlqgqzwaw2 +2025-06-18T14:22:23.681Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 380ms - IP: 192.168.28.146 - User: user_1035 - RequestID: ngl7wxdvc0n +2025-06-18T14:22:23.781Z [DEBUG] order-service - Auth event: password_change - User: user_1080 - IP: 192.168.196.226 - RequestID: hmtx9v5su0l +2025-06-18T14:22:23.881Z [INFO] user-service - Auth event: logout - User: user_1005 - IP: 192.168.211.72 - RequestID: 3466uqzdyqh +2025-06-18T14:22:23.981Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 32ms - Rows affected: 72 - RequestID: phudy051lrr +2025-06-18T14:22:24.081Z [TRACE] notification-service - Auth event: login_failed - User: user_1066 - IP: 192.168.10.184 - RequestID: s94ij7tn2me +2025-06-18T14:22:24.181Z [TRACE] payment-service - Database UPDATE on users - Execution time: 459ms - Rows affected: 47 - RequestID: jpky9h8tnt +2025-06-18T14:22:24.281Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 201 - Response time: 1025ms - IP: 192.168.159.94 - User: user_1066 - RequestID: 6pybdop3lna +2025-06-18T14:22:24.381Z [INFO] user-service - Auth event: login_success - User: user_1086 - IP: 192.168.44.5 - RequestID: eclexlwx277 +2025-06-18T14:22:24.481Z [DEBUG] auth-service - Auth event: login_failed - User: user_1096 - IP: 192.168.11.60 - RequestID: tocfjjzwuta +2025-06-18T14:22:24.581Z [DEBUG] order-service - Database INSERT on products - Execution time: 314ms - Rows affected: 43 - RequestID: wopw8msc3q +2025-06-18T14:22:24.681Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 721ms - IP: 192.168.46.63 - User: user_1011 - RequestID: ldi06vsb2y +2025-06-18T14:22:24.781Z [DEBUG] auth-service - Operation: email_sent - Processing time: 571ms - RequestID: sfdhdpcpy9 +2025-06-18T14:22:24.881Z [TRACE] user-service - Operation: order_created - Processing time: 723ms - RequestID: aeucw044w1 +2025-06-18T14:22:24.981Z [DEBUG] user-service - GET /api/v1/users - Status: 503 - Response time: 187ms - IP: 192.168.79.141 - User: user_1088 - RequestID: i6m3cyjxhlk +2025-06-18T14:22:25.081Z [INFO] inventory-service - Auth event: login_success - User: user_1064 - IP: 192.168.187.199 - RequestID: 6igwvpo8vsq +2025-06-18T14:22:25.181Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 240ms - RequestID: igo7a58qn4 +2025-06-18T14:22:25.281Z [TRACE] user-service - Auth event: login_success - User: user_1007 - IP: 192.168.33.76 - RequestID: 41bz5ki0xye +2025-06-18T14:22:25.381Z [INFO] order-service - Operation: cache_hit - Processing time: 639ms - RequestID: n4n4jh9uct +2025-06-18T14:22:25.481Z [DEBUG] notification-service - Auth event: logout - User: user_1032 - IP: 192.168.81.206 - RequestID: ma2y8bka6r +2025-06-18T14:22:25.581Z [TRACE] notification-service - Auth event: password_change - User: user_1041 - IP: 192.168.159.94 - RequestID: hcrzxrppai +2025-06-18T14:22:25.681Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 480ms - Rows affected: 96 - RequestID: d8nrsf1a14 +2025-06-18T14:22:25.781Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 348ms - Rows affected: 22 - RequestID: yvscw0n4v9o +2025-06-18T14:22:25.881Z [DEBUG] user-service - Auth event: logout - User: user_1035 - IP: 192.168.138.123 - RequestID: vwkqgs9svjq +2025-06-18T14:22:25.981Z [DEBUG] order-service - Database DELETE on users - Execution time: 171ms - Rows affected: 2 - RequestID: jr5ertwute +2025-06-18T14:22:26.081Z [TRACE] inventory-service - Auth event: login_success - User: user_1008 - IP: 192.168.189.103 - RequestID: biquaj22ska +2025-06-18T14:22:26.181Z [INFO] payment-service - Database SELECT on payments - Execution time: 33ms - Rows affected: 67 - RequestID: gqyo0izcdqo +2025-06-18T14:22:26.281Z [INFO] auth-service - GET /api/v1/auth/login - Status: 502 - Response time: 574ms - IP: 192.168.53.133 - User: user_1013 - RequestID: p89pkq53t3 +2025-06-18T14:22:26.381Z [INFO] payment-service - GET /api/v1/inventory - Status: 403 - Response time: 1770ms - IP: 192.168.85.229 - User: user_1060 - RequestID: dxn63sm9g3t +2025-06-18T14:22:26.481Z [INFO] notification-service - Operation: cache_hit - Processing time: 379ms - RequestID: 969aw03tmnb +2025-06-18T14:22:26.581Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 205ms - Rows affected: 98 - RequestID: iyd3l388v5r +2025-06-18T14:22:26.681Z [INFO] order-service - PATCH /api/v1/users - Status: 403 - Response time: 581ms - IP: 192.168.31.117 - User: user_1085 - RequestID: w3elyovw8t9 +2025-06-18T14:22:26.781Z [TRACE] auth-service - Auth event: password_change - User: user_1078 - IP: 192.168.227.77 - RequestID: 25fvziyyelth +2025-06-18T14:22:26.881Z [TRACE] order-service - Operation: notification_queued - Processing time: 268ms - RequestID: lq3qqgyvp5 +2025-06-18T14:22:26.981Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 371ms - Rows affected: 3 - RequestID: v19hhkw0xag +2025-06-18T14:22:27.081Z [TRACE] payment-service - Operation: cache_miss - Processing time: 502ms - RequestID: 38mef37dx9s +2025-06-18T14:22:27.181Z [INFO] order-service - Auth event: login_success - User: user_1004 - IP: 192.168.79.141 - RequestID: g6u044d7f8t +2025-06-18T14:22:27.281Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 208ms - RequestID: dcwo9pzvfev +2025-06-18T14:22:27.381Z [TRACE] auth-service - PUT /api/v1/users - Status: 404 - Response time: 1472ms - IP: 192.168.97.87 - User: user_1096 - RequestID: kuptf5jnf5c +2025-06-18T14:22:27.481Z [TRACE] user-service - Operation: cache_hit - Processing time: 353ms - RequestID: rw0y2hrnezg +2025-06-18T14:22:27.581Z [INFO] user-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.14.77 - RequestID: dxc1nh4b3vr +2025-06-18T14:22:27.681Z [TRACE] auth-service - Operation: notification_queued - Processing time: 957ms - RequestID: manykpjt2g +2025-06-18T14:22:27.781Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 459ms - Rows affected: 60 - RequestID: qt2ux0ufpyg +2025-06-18T14:22:27.881Z [TRACE] notification-service - Auth event: logout - User: user_1096 - IP: 192.168.53.133 - RequestID: 2ie5jpvxb5g +2025-06-18T14:22:27.981Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 400 - Response time: 411ms - IP: 192.168.44.5 - User: user_1082 - RequestID: xa48ub1zjra +2025-06-18T14:22:28.081Z [INFO] order-service - PATCH /api/v1/payments - Status: 500 - Response time: 1080ms - IP: 192.168.227.77 - User: user_1097 - RequestID: asn29vbnuu5 +2025-06-18T14:22:28.181Z [TRACE] order-service - Auth event: login_success - User: user_1071 - IP: 192.168.104.37 - RequestID: qdyykcd1i28 +2025-06-18T14:22:28.281Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.235.117 - RequestID: p6ncb0vuvx +2025-06-18T14:22:28.381Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 200 - Response time: 1016ms - IP: 192.168.1.152 - User: user_1041 - RequestID: y3cxh6cpuqg +2025-06-18T14:22:28.481Z [DEBUG] auth-service - Auth event: login_failed - User: user_1093 - IP: 192.168.68.158 - RequestID: kh7m6wom23 +2025-06-18T14:22:28.581Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 167ms - RequestID: am377s0m1z9 +2025-06-18T14:22:28.681Z [DEBUG] notification-service - Database INSERT on products - Execution time: 58ms - Rows affected: 26 - RequestID: k4mw2a8j5x +2025-06-18T14:22:28.781Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1094 - IP: 192.168.174.114 - RequestID: w0j4sdeueuk +2025-06-18T14:22:28.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 381ms - RequestID: m1rmo9qwvxa +2025-06-18T14:22:28.981Z [INFO] user-service - GET /api/v1/auth/login - Status: 500 - Response time: 584ms - IP: 192.168.33.76 - User: user_1006 - RequestID: lhrgqwj2z39 +2025-06-18T14:22:29.081Z [DEBUG] user-service - Operation: cache_hit - Processing time: 187ms - RequestID: k0bbgsqnx4p +2025-06-18T14:22:29.181Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1883ms - IP: 192.168.196.226 - User: user_1099 - RequestID: mwkr4il651 +2025-06-18T14:22:29.281Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 1800ms - IP: 192.168.68.128 - User: user_1009 - RequestID: e9jzcm3j75 +2025-06-18T14:22:29.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1011 - IP: 192.168.30.79 - RequestID: h4rh7m26y0b +2025-06-18T14:22:29.481Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 368ms - Rows affected: 68 - RequestID: vxc90n1p3z +2025-06-18T14:22:29.581Z [DEBUG] order-service - Database SELECT on users - Execution time: 237ms - Rows affected: 93 - RequestID: 4tn77u4ctk2 +2025-06-18T14:22:29.681Z [DEBUG] notification-service - GET /api/v1/payments - Status: 400 - Response time: 1082ms - IP: 192.168.174.114 - User: user_1010 - RequestID: mqwvoff2nmq +2025-06-18T14:22:29.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1065 - IP: 192.168.100.240 - RequestID: 9k91lxnlz4u +2025-06-18T14:22:29.881Z [TRACE] order-service - Database DELETE on sessions - Execution time: 409ms - Rows affected: 86 - RequestID: o6ra7df23om +2025-06-18T14:22:29.981Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 200 - Response time: 1105ms - IP: 192.168.79.116 - User: user_1018 - RequestID: am4bj6yg305 +2025-06-18T14:22:30.081Z [DEBUG] payment-service - Auth event: password_change - User: user_1085 - IP: 192.168.227.233 - RequestID: z8st9fn3hs +2025-06-18T14:22:30.181Z [TRACE] auth-service - Database INSERT on orders - Execution time: 415ms - Rows affected: 50 - RequestID: jod12uhc1cd +2025-06-18T14:22:30.281Z [DEBUG] notification-service - PUT /api/v1/users - Status: 503 - Response time: 1210ms - IP: 192.168.97.87 - User: user_1071 - RequestID: p4ij5kkdc8 +2025-06-18T14:22:30.381Z [INFO] payment-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.85.229 - RequestID: 923tbkky0dl +2025-06-18T14:22:30.481Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1627ms - IP: 192.168.31.117 - User: user_1012 - RequestID: kcervgl6pf +2025-06-18T14:22:30.581Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 200 - Response time: 840ms - IP: 192.168.211.72 - User: user_1076 - RequestID: f9ms9mlgbws +2025-06-18T14:22:30.681Z [INFO] inventory-service - Database DELETE on products - Execution time: 87ms - Rows affected: 50 - RequestID: 9yw2dqbz2w8 +2025-06-18T14:22:30.781Z [INFO] inventory-service - Database SELECT on payments - Execution time: 358ms - Rows affected: 31 - RequestID: 6a8inzqut7n +2025-06-18T14:22:30.881Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 376ms - Rows affected: 17 - RequestID: bby2yy325if +2025-06-18T14:22:30.981Z [TRACE] order-service - Database DELETE on orders - Execution time: 77ms - Rows affected: 16 - RequestID: 0lbp96l3wzi +2025-06-18T14:22:31.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.159.94 - RequestID: t71k1g9mav +2025-06-18T14:22:31.181Z [INFO] user-service - Database INSERT on payments - Execution time: 494ms - Rows affected: 3 - RequestID: ao005h49j0m +2025-06-18T14:22:31.281Z [INFO] order-service - Operation: cache_hit - Processing time: 128ms - RequestID: ja5dbn9v04i +2025-06-18T14:22:31.381Z [INFO] auth-service - Operation: email_sent - Processing time: 412ms - RequestID: mi89gc39nt +2025-06-18T14:22:31.481Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.30.79 - RequestID: mfwrkewvco +2025-06-18T14:22:31.581Z [INFO] user-service - POST /api/v1/users - Status: 502 - Response time: 277ms - IP: 192.168.229.123 - User: user_1027 - RequestID: iky67c796vp +2025-06-18T14:22:31.681Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 495ms - RequestID: xlhojq6u2of +2025-06-18T14:22:31.781Z [TRACE] notification-service - Operation: cache_miss - Processing time: 407ms - RequestID: sjn841nu7i +2025-06-18T14:22:31.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 215ms - RequestID: zxngrwp0ijk +2025-06-18T14:22:31.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.229.123 - RequestID: 8t4buxpjv5 +2025-06-18T14:22:32.081Z [INFO] order-service - GET /api/v1/users - Status: 200 - Response time: 1026ms - IP: 192.168.79.143 - User: user_1029 - RequestID: jbsc3ven04p +2025-06-18T14:22:32.181Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 195ms - Rows affected: 81 - RequestID: z1kh3mw3wrj +2025-06-18T14:22:32.281Z [TRACE] order-service - POST /api/v1/inventory - Status: 503 - Response time: 983ms - IP: 192.168.36.218 - User: user_1094 - RequestID: v4f5h07nzh +2025-06-18T14:22:32.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 87ms - RequestID: 7nv5ugn4d9h +2025-06-18T14:22:32.481Z [TRACE] notification-service - POST /api/v1/orders - Status: 500 - Response time: 698ms - IP: 192.168.187.199 - User: user_1094 - RequestID: jd2yb0li6zg +2025-06-18T14:22:32.581Z [INFO] auth-service - Operation: payment_processed - Processing time: 99ms - RequestID: satvfh8ukhr +2025-06-18T14:22:32.681Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 381ms - Rows affected: 59 - RequestID: 92zysx8701t +2025-06-18T14:22:32.781Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 134ms - Rows affected: 29 - RequestID: 9jkin947w3j +2025-06-18T14:22:32.881Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1410ms - IP: 192.168.53.133 - User: user_1004 - RequestID: 3gv4a3btbd6 +2025-06-18T14:22:32.981Z [TRACE] notification-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.46.63 - RequestID: ig0g4rcq4t +2025-06-18T14:22:33.081Z [TRACE] auth-service - Database SELECT on payments - Execution time: 40ms - Rows affected: 83 - RequestID: 8stinyfga1v +2025-06-18T14:22:33.181Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1317ms - IP: 192.168.227.77 - User: user_1047 - RequestID: kvkif24mv5o +2025-06-18T14:22:33.281Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 319ms - RequestID: ougcf5leqrf +2025-06-18T14:22:33.381Z [TRACE] inventory-service - POST /api/v1/payments - Status: 403 - Response time: 1504ms - IP: 192.168.227.233 - User: user_1064 - RequestID: whtt3g1gem +2025-06-18T14:22:33.481Z [TRACE] notification-service - Auth event: password_change - User: user_1056 - IP: 192.168.36.218 - RequestID: ieu1ftai73 +2025-06-18T14:22:33.581Z [INFO] order-service - GET /api/v1/auth/login - Status: 404 - Response time: 215ms - IP: 192.168.170.215 - User: user_1087 - RequestID: fuip9hd0lhj +2025-06-18T14:22:33.681Z [INFO] notification-service - Auth event: login_failed - User: user_1049 - IP: 192.168.104.37 - RequestID: 2kknfa6kdzb +2025-06-18T14:22:33.781Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 261ms - Rows affected: 73 - RequestID: b2akruawivb +2025-06-18T14:22:33.881Z [INFO] user-service - Operation: cache_miss - Processing time: 435ms - RequestID: icrslnc5ej +2025-06-18T14:22:33.981Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1431ms - IP: 192.168.189.103 - User: user_1070 - RequestID: 35trehhhouz +2025-06-18T14:22:34.081Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1311ms - IP: 192.168.10.184 - User: user_1004 - RequestID: cqg3wgp0bc4 +2025-06-18T14:22:34.181Z [INFO] user-service - Database DELETE on sessions - Execution time: 125ms - Rows affected: 73 - RequestID: 2qpzww0293u +2025-06-18T14:22:34.281Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 500 - Response time: 86ms - IP: 192.168.189.103 - User: user_1087 - RequestID: lhslzc2o9un +2025-06-18T14:22:34.381Z [TRACE] order-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.240.169 - RequestID: n061x7mk4id +2025-06-18T14:22:34.481Z [TRACE] user-service - Operation: webhook_sent - Processing time: 816ms - RequestID: m774b13m5ge +2025-06-18T14:22:34.581Z [TRACE] user-service - POST /api/v1/users - Status: 401 - Response time: 1095ms - IP: 192.168.97.87 - User: user_1031 - RequestID: ihb9cw0gl4r +2025-06-18T14:22:34.681Z [INFO] user-service - Auth event: login_failed - User: user_1098 - IP: 192.168.79.116 - RequestID: 1d1zlr9igaj +2025-06-18T14:22:34.781Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1598ms - IP: 192.168.68.128 - User: user_1000 - RequestID: f1r23dglcwd +2025-06-18T14:22:34.881Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 344ms - Rows affected: 81 - RequestID: yblxihveyu +2025-06-18T14:22:34.981Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1771ms - IP: 192.168.104.37 - User: user_1084 - RequestID: 7m6gr9qcxbu +2025-06-18T14:22:35.081Z [INFO] user-service - Database DELETE on sessions - Execution time: 61ms - Rows affected: 35 - RequestID: 1m3sebqr6rjh +2025-06-18T14:22:35.181Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 698ms - IP: 192.168.79.116 - User: user_1054 - RequestID: jvdisjt3jo8 +2025-06-18T14:22:35.281Z [INFO] inventory-service - Auth event: login_success - User: user_1033 - IP: 192.168.189.103 - RequestID: 0dhynpsw844 +2025-06-18T14:22:35.381Z [TRACE] notification-service - Auth event: login_success - User: user_1038 - IP: 192.168.46.63 - RequestID: fi34mvg9ffs +2025-06-18T14:22:35.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 755ms - RequestID: yn139obfk8a +2025-06-18T14:22:35.581Z [TRACE] user-service - POST /api/v1/payments - Status: 502 - Response time: 1192ms - IP: 192.168.158.144 - User: user_1065 - RequestID: cpeaw3w9jte +2025-06-18T14:22:35.681Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1027ms - IP: 192.168.32.38 - User: user_1081 - RequestID: 2scmf42tpux +2025-06-18T14:22:35.781Z [DEBUG] order-service - Operation: payment_processed - Processing time: 977ms - RequestID: ifrcjd6urfa +2025-06-18T14:22:35.881Z [INFO] order-service - Auth event: password_change - User: user_1084 - IP: 192.168.81.206 - RequestID: x7n3zsvppas +2025-06-18T14:22:35.981Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 332ms - Rows affected: 72 - RequestID: k6wehthxx7f +2025-06-18T14:22:36.081Z [INFO] user-service - Database UPDATE on sessions - Execution time: 326ms - Rows affected: 89 - RequestID: bd2uzqgctn +2025-06-18T14:22:36.181Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 555ms - IP: 192.168.174.114 - User: user_1073 - RequestID: hip6mtc3pb6 +2025-06-18T14:22:36.281Z [TRACE] notification-service - Auth event: logout - User: user_1036 - IP: 192.168.30.79 - RequestID: 8gv2baugapk +2025-06-18T14:22:36.381Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1606ms - IP: 192.168.79.116 - User: user_1097 - RequestID: zeydu36qw6q +2025-06-18T14:22:36.481Z [TRACE] payment-service - Database SELECT on orders - Execution time: 130ms - Rows affected: 13 - RequestID: flx6az1pqb5 +2025-06-18T14:22:36.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.53.133 - RequestID: sb023vdgh6 +2025-06-18T14:22:36.681Z [TRACE] user-service - Auth event: logout - User: user_1045 - IP: 192.168.33.76 - RequestID: 3rafjrvkcza +2025-06-18T14:22:36.781Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 400 - Response time: 543ms - IP: 192.168.138.123 - User: user_1084 - RequestID: 7581xc9hbb4 +2025-06-18T14:22:36.881Z [TRACE] auth-service - Operation: notification_queued - Processing time: 787ms - RequestID: p14li0x5kxn +2025-06-18T14:22:36.981Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 16ms - Rows affected: 52 - RequestID: v1sowhafs3j +2025-06-18T14:22:37.081Z [INFO] order-service - POST /api/v1/payments - Status: 201 - Response time: 1039ms - IP: 192.168.227.77 - User: user_1038 - RequestID: yq61nmdtja +2025-06-18T14:22:37.181Z [TRACE] inventory-service - Auth event: login_success - User: user_1018 - IP: 192.168.31.117 - RequestID: lpa65py6pfc +2025-06-18T14:22:37.281Z [INFO] notification-service - PATCH /api/v1/payments - Status: 500 - Response time: 1915ms - IP: 192.168.181.225 - User: user_1062 - RequestID: 0qqgv89j7oo +2025-06-18T14:22:37.381Z [TRACE] auth-service - GET /api/v1/orders - Status: 403 - Response time: 1419ms - IP: 192.168.100.240 - User: user_1063 - RequestID: dukujk4asd8 +2025-06-18T14:22:37.481Z [INFO] payment-service - Auth event: login_success - User: user_1037 - IP: 192.168.44.5 - RequestID: 21lpuw0zci4 +2025-06-18T14:22:37.581Z [TRACE] inventory-service - Auth event: logout - User: user_1046 - IP: 192.168.13.72 - RequestID: h20wrxaerq9 +2025-06-18T14:22:37.681Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 397ms - Rows affected: 38 - RequestID: f2bo41ltf7u +2025-06-18T14:22:37.781Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1108ms - IP: 192.168.68.128 - User: user_1004 - RequestID: 87w5xri20k3 +2025-06-18T14:22:37.881Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 131ms - RequestID: l1bl5l8x9nh +2025-06-18T14:22:37.981Z [INFO] auth-service - Operation: webhook_sent - Processing time: 790ms - RequestID: hga9a4satgl +2025-06-18T14:22:38.081Z [DEBUG] user-service - Operation: email_sent - Processing time: 466ms - RequestID: romn6emb0j +2025-06-18T14:22:38.181Z [DEBUG] payment-service - Operation: email_sent - Processing time: 555ms - RequestID: ja54cm2u15 +2025-06-18T14:22:38.281Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 1039ms - RequestID: f9syagsiz8 +2025-06-18T14:22:38.381Z [DEBUG] order-service - Operation: cache_hit - Processing time: 1012ms - RequestID: 7jy4w3j1ook +2025-06-18T14:22:38.481Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 404 - Response time: 141ms - IP: 192.168.11.60 - User: user_1043 - RequestID: 72iblbixvxd +2025-06-18T14:22:38.581Z [TRACE] order-service - Auth event: logout - User: user_1093 - IP: 192.168.141.100 - RequestID: 5ojs274ncaj +2025-06-18T14:22:38.681Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 823ms - RequestID: xnjkz7byhg +2025-06-18T14:22:38.781Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 452ms - Rows affected: 59 - RequestID: 3cmuvcdcwmv +2025-06-18T14:22:38.881Z [TRACE] payment-service - Auth event: password_change - User: user_1092 - IP: 192.168.141.100 - RequestID: n607j7nrpwp +2025-06-18T14:22:38.981Z [INFO] auth-service - GET /api/v1/payments - Status: 503 - Response time: 1453ms - IP: 192.168.113.218 - User: user_1035 - RequestID: 21aa4t8np56 +2025-06-18T14:22:39.081Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 401 - Response time: 745ms - IP: 192.168.68.128 - User: user_1007 - RequestID: ikffpnr80qn +2025-06-18T14:22:39.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 809ms - RequestID: 0wdp015n6fjm +2025-06-18T14:22:39.281Z [TRACE] auth-service - Operation: notification_queued - Processing time: 547ms - RequestID: quxh1sg7o2k +2025-06-18T14:22:39.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 805ms - RequestID: ct94o5nbdyj +2025-06-18T14:22:39.481Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 151ms - Rows affected: 61 - RequestID: mrxlei6cbf +2025-06-18T14:22:39.581Z [DEBUG] payment-service - Auth event: password_change - User: user_1033 - IP: 192.168.167.32 - RequestID: cgtxxdbafh8 +2025-06-18T14:22:39.681Z [DEBUG] user-service - Operation: cache_hit - Processing time: 868ms - RequestID: vuwcq5xnatm +2025-06-18T14:22:39.781Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 131ms - Rows affected: 50 - RequestID: nuhuqe18ly +2025-06-18T14:22:39.881Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 224ms - IP: 192.168.187.199 - User: user_1081 - RequestID: pnsmz5ovsvo +2025-06-18T14:22:39.981Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 430ms - Rows affected: 77 - RequestID: oefbtzejlzi +2025-06-18T14:22:40.081Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 549ms - IP: 192.168.235.117 - User: user_1040 - RequestID: ncwro3vsmhr +2025-06-18T14:22:40.181Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1679ms - IP: 192.168.11.60 - User: user_1030 - RequestID: zzh2or04ih +2025-06-18T14:22:40.281Z [TRACE] auth-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.100.240 - RequestID: iem9fo2wm1d +2025-06-18T14:22:40.381Z [INFO] order-service - Auth event: login_failed - User: user_1072 - IP: 192.168.100.240 - RequestID: eqwebka4vkb +2025-06-18T14:22:40.481Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 366ms - Rows affected: 60 - RequestID: wiz8o9da2p +2025-06-18T14:22:40.581Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 400 - Response time: 624ms - IP: 192.168.104.37 - User: user_1014 - RequestID: u1ihjd8ag2d +2025-06-18T14:22:40.681Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 35ms - Rows affected: 24 - RequestID: ykp1mx55nn +2025-06-18T14:22:40.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 384ms - RequestID: rzn2bppo8op +2025-06-18T14:22:40.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 1013ms - RequestID: 06xqibpw45jr +2025-06-18T14:22:40.981Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 502 - Response time: 1462ms - IP: 192.168.46.63 - User: user_1065 - RequestID: l4lrkl2m9bq +2025-06-18T14:22:41.081Z [INFO] inventory-service - Auth event: login_success - User: user_1039 - IP: 192.168.194.41 - RequestID: v08v4637xj +2025-06-18T14:22:41.181Z [TRACE] order-service - Auth event: login_failed - User: user_1083 - IP: 192.168.133.7 - RequestID: 6dbob4z8abj +2025-06-18T14:22:41.281Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 947ms - RequestID: sr35f6ovey +2025-06-18T14:22:41.381Z [DEBUG] user-service - Operation: order_created - Processing time: 291ms - RequestID: pjon5dm8h0n +2025-06-18T14:22:41.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.232.72 - RequestID: rvsyl0jpo0k +2025-06-18T14:22:41.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.33.76 - RequestID: 7ekfjhn93cy +2025-06-18T14:22:41.681Z [TRACE] user-service - Operation: inventory_updated - Processing time: 383ms - RequestID: oscsf3yp3hf +2025-06-18T14:22:41.781Z [DEBUG] user-service - Database SELECT on orders - Execution time: 208ms - Rows affected: 83 - RequestID: vtto87fwxnh +2025-06-18T14:22:41.881Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 502 - Response time: 1755ms - IP: 192.168.247.134 - User: user_1059 - RequestID: 8oqa70h8qos +2025-06-18T14:22:41.981Z [TRACE] notification-service - Operation: cache_hit - Processing time: 132ms - RequestID: s38hb02mbi +2025-06-18T14:22:42.081Z [TRACE] order-service - Auth event: login_success - User: user_1073 - IP: 192.168.1.152 - RequestID: hjbohip5a49 +2025-06-18T14:22:42.181Z [INFO] order-service - DELETE /api/v1/users - Status: 502 - Response time: 794ms - IP: 192.168.247.134 - User: user_1088 - RequestID: ux2totvkgh9 +2025-06-18T14:22:42.281Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 528ms - RequestID: tceha7vk5sj +2025-06-18T14:22:42.381Z [INFO] payment-service - Database INSERT on orders - Execution time: 432ms - Rows affected: 10 - RequestID: 4fy8mpnjrxa +2025-06-18T14:22:42.481Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1275ms - IP: 192.168.1.152 - User: user_1002 - RequestID: aqa1thyuu7 +2025-06-18T14:22:42.581Z [INFO] auth-service - Operation: payment_processed - Processing time: 699ms - RequestID: pak1xuelsr +2025-06-18T14:22:42.681Z [DEBUG] auth-service - Auth event: password_change - User: user_1081 - IP: 192.168.247.134 - RequestID: xm6692udjbe +2025-06-18T14:22:42.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.138.123 - RequestID: varuupa8sab +2025-06-18T14:22:42.881Z [TRACE] auth-service - PUT /api/v1/orders - Status: 502 - Response time: 1277ms - IP: 192.168.181.225 - User: user_1051 - RequestID: p23a80cdo7 +2025-06-18T14:22:42.981Z [INFO] payment-service - Database INSERT on products - Execution time: 490ms - Rows affected: 50 - RequestID: exah78fz1uo +2025-06-18T14:22:43.081Z [INFO] order-service - POST /api/v1/orders - Status: 503 - Response time: 1354ms - IP: 192.168.194.41 - User: user_1010 - RequestID: qpr8vumlcqj +2025-06-18T14:22:43.181Z [INFO] auth-service - GET /api/v1/auth/login - Status: 503 - Response time: 1451ms - IP: 192.168.174.114 - User: user_1005 - RequestID: nt3k60tsair +2025-06-18T14:22:43.281Z [TRACE] payment-service - Operation: cache_hit - Processing time: 210ms - RequestID: x354e5s72n +2025-06-18T14:22:43.381Z [TRACE] user-service - Operation: inventory_updated - Processing time: 380ms - RequestID: 5m936mn01ld +2025-06-18T14:22:43.481Z [INFO] payment-service - Auth event: logout - User: user_1067 - IP: 192.168.1.152 - RequestID: eg57kk8lhj4 +2025-06-18T14:22:43.581Z [TRACE] user-service - Operation: order_created - Processing time: 596ms - RequestID: n32xtf0lnho +2025-06-18T14:22:43.681Z [INFO] inventory-service - Operation: cache_hit - Processing time: 575ms - RequestID: w6u96kxmiy +2025-06-18T14:22:43.781Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 200 - Response time: 785ms - IP: 192.168.133.7 - User: user_1026 - RequestID: f7kdi4j4a4p +2025-06-18T14:22:43.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 714ms - RequestID: ch7b8tohh87 +2025-06-18T14:22:43.981Z [INFO] payment-service - Auth event: login_success - User: user_1010 - IP: 192.168.196.226 - RequestID: uzqdnpqo4ns +2025-06-18T14:22:44.081Z [TRACE] auth-service - DELETE /api/v1/users - Status: 404 - Response time: 1965ms - IP: 192.168.36.218 - User: user_1083 - RequestID: 9utj6n5lf68 +2025-06-18T14:22:44.181Z [TRACE] auth-service - Auth event: login_success - User: user_1095 - IP: 192.168.133.7 - RequestID: buk6gc7w2tk +2025-06-18T14:22:44.281Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 910ms - RequestID: jp2rfat3sea +2025-06-18T14:22:44.381Z [TRACE] user-service - Auth event: logout - User: user_1011 - IP: 192.168.33.76 - RequestID: nvu1ncpicc +2025-06-18T14:22:44.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1011 - IP: 192.168.44.5 - RequestID: czrgkdj2s7h +2025-06-18T14:22:44.581Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 149ms - Rows affected: 42 - RequestID: ymw0vjxv57 +2025-06-18T14:22:44.681Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 1064ms - IP: 192.168.167.32 - User: user_1019 - RequestID: nwqhvtewwyq +2025-06-18T14:22:44.781Z [TRACE] order-service - PATCH /api/v1/orders - Status: 404 - Response time: 1007ms - IP: 192.168.196.226 - User: user_1059 - RequestID: kteltg30m1m +2025-06-18T14:22:44.881Z [INFO] auth-service - Database SELECT on products - Execution time: 1ms - Rows affected: 66 - RequestID: 3hjurawv6os +2025-06-18T14:22:44.981Z [DEBUG] inventory-service - Auth event: logout - User: user_1021 - IP: 192.168.10.184 - RequestID: 9u7x1ie8f2f +2025-06-18T14:22:45.081Z [TRACE] notification-service - Database INSERT on users - Execution time: 152ms - Rows affected: 87 - RequestID: 00d36x8h3f54i +2025-06-18T14:22:45.181Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 431ms - Rows affected: 25 - RequestID: rezc7vvfv0i +2025-06-18T14:22:45.281Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 407ms - Rows affected: 89 - RequestID: t5p0shvixrn +2025-06-18T14:22:45.381Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 502 - Response time: 1073ms - IP: 192.168.187.199 - User: user_1008 - RequestID: q4xjfgu194i +2025-06-18T14:22:45.481Z [DEBUG] order-service - GET /api/v1/users - Status: 401 - Response time: 1477ms - IP: 192.168.133.7 - User: user_1073 - RequestID: wua5drf7o +2025-06-18T14:22:45.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.79.143 - RequestID: xcz4vobl31p +2025-06-18T14:22:45.681Z [INFO] auth-service - Operation: cache_hit - Processing time: 874ms - RequestID: 8krgt4xwhxo +2025-06-18T14:22:45.781Z [DEBUG] payment-service - Operation: email_sent - Processing time: 864ms - RequestID: flmwflayish +2025-06-18T14:22:45.881Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.174.114 - RequestID: 41mdiy5qezw +2025-06-18T14:22:45.981Z [INFO] notification-service - Auth event: login_failed - User: user_1019 - IP: 192.168.235.117 - RequestID: f0vocn875ge +2025-06-18T14:22:46.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.247.134 - RequestID: jsufo56d3go +2025-06-18T14:22:46.181Z [INFO] inventory-service - Database SELECT on users - Execution time: 334ms - Rows affected: 66 - RequestID: ntyms0bkcah +2025-06-18T14:22:46.281Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 185ms - Rows affected: 50 - RequestID: 2cgpe12ahwm +2025-06-18T14:22:46.381Z [TRACE] order-service - Auth event: login_success - User: user_1004 - IP: 192.168.141.100 - RequestID: d3cbs1kx4p5 +2025-06-18T14:22:46.481Z [DEBUG] user-service - Auth event: logout - User: user_1069 - IP: 192.168.187.199 - RequestID: r81e16bmdl +2025-06-18T14:22:46.581Z [INFO] user-service - Operation: email_sent - Processing time: 1025ms - RequestID: ntkcgeoq8r +2025-06-18T14:22:46.681Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 466ms - Rows affected: 33 - RequestID: 1kxkevdp6mq +2025-06-18T14:22:46.781Z [INFO] notification-service - GET /api/v1/auth/login - Status: 400 - Response time: 1687ms - IP: 192.168.14.77 - User: user_1034 - RequestID: gdbyslxhvqn +2025-06-18T14:22:46.881Z [INFO] auth-service - Auth event: login_failed - User: user_1009 - IP: 192.168.147.171 - RequestID: 4n7rpdhtvd5 +2025-06-18T14:22:46.981Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1215ms - IP: 192.168.159.94 - User: user_1097 - RequestID: 3vegesnnhuy +2025-06-18T14:22:47.081Z [INFO] order-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.46.63 - RequestID: 0wxy9wui64zl +2025-06-18T14:22:47.181Z [INFO] order-service - Auth event: password_change - User: user_1074 - IP: 192.168.85.229 - RequestID: nagh1e6eyp7 +2025-06-18T14:22:47.281Z [TRACE] notification-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.32.38 - RequestID: tlgy6spllbc +2025-06-18T14:22:47.381Z [INFO] user-service - POST /api/v1/inventory - Status: 500 - Response time: 389ms - IP: 192.168.174.114 - User: user_1039 - RequestID: bxyqwuwoqfl +2025-06-18T14:22:47.481Z [INFO] user-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.28.146 - RequestID: 3v8aejgq5ic +2025-06-18T14:22:47.581Z [INFO] notification-service - Operation: order_created - Processing time: 505ms - RequestID: t0gqxfmetfl +2025-06-18T14:22:47.681Z [DEBUG] notification-service - POST /api/v1/payments - Status: 500 - Response time: 1921ms - IP: 192.168.44.5 - User: user_1000 - RequestID: 466e65s9z42 +2025-06-18T14:22:47.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 641ms - RequestID: r2i6x59100g +2025-06-18T14:22:47.881Z [INFO] inventory-service - PUT /api/v1/users - Status: 400 - Response time: 906ms - IP: 192.168.174.114 - User: user_1088 - RequestID: o7mgqejmxq +2025-06-18T14:22:47.981Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 502 - Response time: 1522ms - IP: 192.168.100.240 - User: user_1084 - RequestID: n4ddw8gale +2025-06-18T14:22:48.081Z [TRACE] notification-service - Operation: payment_processed - Processing time: 568ms - RequestID: y74qci3lo8g +2025-06-18T14:22:48.181Z [TRACE] notification-service - Operation: order_created - Processing time: 542ms - RequestID: o6phxiv907 +2025-06-18T14:22:48.281Z [TRACE] user-service - GET /api/v1/payments - Status: 400 - Response time: 1514ms - IP: 192.168.11.60 - User: user_1062 - RequestID: vthe1pnah1 +2025-06-18T14:22:48.381Z [INFO] order-service - GET /api/v1/payments - Status: 403 - Response time: 1363ms - IP: 192.168.100.240 - User: user_1094 - RequestID: r00hb8xtlv +2025-06-18T14:22:48.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 802ms - RequestID: ez24gk23qw +2025-06-18T14:22:48.581Z [INFO] payment-service - POST /api/v1/payments - Status: 502 - Response time: 565ms - IP: 192.168.1.152 - User: user_1089 - RequestID: jkda5u4wnu +2025-06-18T14:22:48.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 223ms - RequestID: 0ucrkp6uxkd +2025-06-18T14:22:48.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 282ms - RequestID: klt750eo3ti +2025-06-18T14:22:48.881Z [TRACE] inventory-service - Database INSERT on users - Execution time: 404ms - Rows affected: 24 - RequestID: 7xz136b5bj +2025-06-18T14:22:48.981Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 101ms - Rows affected: 0 - RequestID: y6edrjn0yr +2025-06-18T14:22:49.081Z [TRACE] payment-service - Auth event: logout - User: user_1008 - IP: 192.168.64.33 - RequestID: gmw8te6s0jj +2025-06-18T14:22:49.181Z [TRACE] order-service - Operation: notification_queued - Processing time: 200ms - RequestID: wuobassm60r +2025-06-18T14:22:49.281Z [TRACE] notification-service - Auth event: logout - User: user_1066 - IP: 192.168.10.184 - RequestID: nbklxkhxs1 +2025-06-18T14:22:49.381Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1003ms - IP: 192.168.133.7 - User: user_1033 - RequestID: dqwjxo0i71 +2025-06-18T14:22:49.481Z [TRACE] auth-service - PATCH /api/v1/users - Status: 503 - Response time: 54ms - IP: 192.168.227.77 - User: user_1036 - RequestID: snc20buhuc +2025-06-18T14:22:49.581Z [INFO] order-service - Auth event: login_failed - User: user_1036 - IP: 192.168.144.38 - RequestID: l0ldliog4je +2025-06-18T14:22:49.681Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 413ms - Rows affected: 4 - RequestID: elwk7wch7i5 +2025-06-18T14:22:49.781Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1476ms - IP: 192.168.158.144 - User: user_1083 - RequestID: sdtr9bv67l +2025-06-18T14:22:49.881Z [INFO] auth-service - Operation: webhook_sent - Processing time: 147ms - RequestID: xzfg33t4h6a +2025-06-18T14:22:49.981Z [DEBUG] order-service - Database INSERT on users - Execution time: 371ms - Rows affected: 1 - RequestID: 5klg9kzhixp +2025-06-18T14:22:50.081Z [INFO] notification-service - Operation: email_sent - Processing time: 902ms - RequestID: v65tk219wo8 +2025-06-18T14:22:50.181Z [DEBUG] order-service - Database INSERT on products - Execution time: 170ms - Rows affected: 9 - RequestID: sbdb8svs63 +2025-06-18T14:22:50.281Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 190ms - IP: 192.168.14.77 - User: user_1076 - RequestID: mlgx6kuk9di +2025-06-18T14:22:50.381Z [DEBUG] payment-service - Operation: email_sent - Processing time: 702ms - RequestID: 5owc2csvgc +2025-06-18T14:22:50.481Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 158ms - Rows affected: 42 - RequestID: 24okyax312q +2025-06-18T14:22:50.581Z [DEBUG] user-service - Operation: order_created - Processing time: 130ms - RequestID: e6xnhq32m5a +2025-06-18T14:22:50.681Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1482ms - IP: 192.168.81.206 - User: user_1041 - RequestID: w5empb3ugm +2025-06-18T14:22:50.781Z [DEBUG] order-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.44.5 - RequestID: qs59gdjslif +2025-06-18T14:22:50.881Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 651ms - RequestID: zkl5tn6c60l +2025-06-18T14:22:50.981Z [INFO] auth-service - Operation: payment_processed - Processing time: 624ms - RequestID: fkuv1sfosqo +2025-06-18T14:22:51.081Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 355ms - RequestID: fviqg06k39r +2025-06-18T14:22:51.181Z [DEBUG] order-service - Auth event: login_success - User: user_1015 - IP: 192.168.196.226 - RequestID: szg8m0jq5ag +2025-06-18T14:22:51.281Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 125ms - Rows affected: 2 - RequestID: lyof122rpw +2025-06-18T14:22:51.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 435ms - RequestID: ggwie0q58fi +2025-06-18T14:22:51.481Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 598ms - RequestID: laa2m3htvr +2025-06-18T14:22:51.581Z [TRACE] order-service - Auth event: logout - User: user_1012 - IP: 192.168.46.63 - RequestID: e2d6m2jtwy +2025-06-18T14:22:51.681Z [INFO] order-service - DELETE /api/v1/payments - Status: 502 - Response time: 132ms - IP: 192.168.100.240 - User: user_1061 - RequestID: x4foi42dy7f +2025-06-18T14:22:51.781Z [TRACE] auth-service - GET /api/v1/payments - Status: 502 - Response time: 1355ms - IP: 192.168.189.103 - User: user_1012 - RequestID: mee40lm30ti +2025-06-18T14:22:51.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 401ms - RequestID: mgqpbnyygnp +2025-06-18T14:22:51.981Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 239ms - RequestID: njh1emyq4go +2025-06-18T14:22:52.081Z [DEBUG] order-service - Operation: order_created - Processing time: 115ms - RequestID: 1ny5t40z5mx +2025-06-18T14:22:52.181Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1449ms - IP: 192.168.36.218 - User: user_1000 - RequestID: 6ic19qofsog +2025-06-18T14:22:52.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1056 - IP: 192.168.10.184 - RequestID: 504rq1kzx1s +2025-06-18T14:22:52.381Z [DEBUG] user-service - POST /api/v1/orders - Status: 400 - Response time: 202ms - IP: 192.168.141.100 - User: user_1039 - RequestID: 1dxs83olui5 +2025-06-18T14:22:52.481Z [DEBUG] payment-service - PUT /api/v1/users - Status: 200 - Response time: 528ms - IP: 192.168.14.77 - User: user_1032 - RequestID: hx14pr0fgo9 +2025-06-18T14:22:52.581Z [TRACE] order-service - Operation: order_created - Processing time: 160ms - RequestID: 9axrznl2g28 +2025-06-18T14:22:52.681Z [TRACE] payment-service - Operation: notification_queued - Processing time: 1005ms - RequestID: c3ahefv4a6p +2025-06-18T14:22:52.781Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 155ms - RequestID: 1eodhdi146v +2025-06-18T14:22:52.881Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 502 - Response time: 936ms - IP: 192.168.32.38 - User: user_1078 - RequestID: tzu7adsbe5d +2025-06-18T14:22:52.981Z [TRACE] payment-service - Operation: payment_processed - Processing time: 202ms - RequestID: 4j3txz68p1d +2025-06-18T14:22:53.081Z [INFO] user-service - Operation: order_created - Processing time: 460ms - RequestID: t01suvzs73 +2025-06-18T14:22:53.181Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 385ms - Rows affected: 60 - RequestID: 4rfiizvfuf7 +2025-06-18T14:22:53.281Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 338ms - Rows affected: 82 - RequestID: uzhc33ygeo +2025-06-18T14:22:53.381Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 843ms - RequestID: nu955ryj879 +2025-06-18T14:22:53.481Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 132ms - Rows affected: 80 - RequestID: 9juqdza3vzh +2025-06-18T14:22:53.581Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.79.116 - RequestID: l69ff91oen +2025-06-18T14:22:53.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1061 - IP: 192.168.28.146 - RequestID: i1cv0wc5o1o +2025-06-18T14:22:53.781Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 502 - Response time: 1413ms - IP: 192.168.14.77 - User: user_1014 - RequestID: du4gjasdhy6 +2025-06-18T14:22:53.881Z [INFO] payment-service - GET /api/v1/auth/login - Status: 200 - Response time: 638ms - IP: 192.168.240.169 - User: user_1074 - RequestID: 6gqio5bk6wm +2025-06-18T14:22:53.981Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 864ms - RequestID: 3zhqmtmw7zz +2025-06-18T14:22:54.081Z [INFO] auth-service - Operation: payment_processed - Processing time: 887ms - RequestID: otvxja5ken +2025-06-18T14:22:54.181Z [INFO] notification-service - Database INSERT on users - Execution time: 348ms - Rows affected: 35 - RequestID: zu4ku1bm4tt +2025-06-18T14:22:54.281Z [INFO] order-service - Database INSERT on payments - Execution time: 120ms - Rows affected: 83 - RequestID: 2bx50k8ih9c +2025-06-18T14:22:54.381Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1919ms - IP: 192.168.138.123 - User: user_1043 - RequestID: p0iaeuqc50c +2025-06-18T14:22:54.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.187.199 - RequestID: a9tdgsg0yem +2025-06-18T14:22:54.581Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 200 - Response time: 1762ms - IP: 192.168.113.218 - User: user_1096 - RequestID: sszgd5q8oxm +2025-06-18T14:22:54.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.240.169 - RequestID: btq1hu8a0pn +2025-06-18T14:22:54.781Z [INFO] payment-service - Database SELECT on products - Execution time: 28ms - Rows affected: 90 - RequestID: itxjw1mbxj +2025-06-18T14:22:54.881Z [DEBUG] user-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.100.240 - RequestID: rj8ut2xes5g +2025-06-18T14:22:54.981Z [INFO] auth-service - Database INSERT on orders - Execution time: 176ms - Rows affected: 87 - RequestID: ir0y1cqupa8 +2025-06-18T14:22:55.081Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 516ms - RequestID: kesi8gc5hja +2025-06-18T14:22:55.181Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 404 - Response time: 1722ms - IP: 192.168.189.103 - User: user_1086 - RequestID: osf9bphgddl +2025-06-18T14:22:55.281Z [TRACE] payment-service - PUT /api/v1/users - Status: 503 - Response time: 1452ms - IP: 192.168.211.72 - User: user_1054 - RequestID: wg6n25p70br +2025-06-18T14:22:55.381Z [INFO] notification-service - Operation: payment_processed - Processing time: 169ms - RequestID: 6g7bawq2fv +2025-06-18T14:22:55.481Z [TRACE] notification-service - Operation: notification_queued - Processing time: 990ms - RequestID: 5uh0ano0jed +2025-06-18T14:22:55.581Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 384ms - RequestID: r131lsq8v8k +2025-06-18T14:22:55.681Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 208ms - RequestID: vnrwgau9x8c +2025-06-18T14:22:55.781Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 94ms - Rows affected: 4 - RequestID: uqjrk2mbko +2025-06-18T14:22:55.881Z [INFO] user-service - Operation: notification_queued - Processing time: 926ms - RequestID: i8nlyu5h5s +2025-06-18T14:22:55.981Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 387ms - Rows affected: 61 - RequestID: msuqu0hsevl +2025-06-18T14:22:56.081Z [TRACE] payment-service - Auth event: password_change - User: user_1034 - IP: 192.168.194.41 - RequestID: xqv7vhzdhj +2025-06-18T14:22:56.181Z [INFO] order-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.141.100 - RequestID: 01p9zmiagj3c +2025-06-18T14:22:56.281Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 419ms - IP: 192.168.181.225 - User: user_1079 - RequestID: ikm0k45rey +2025-06-18T14:22:56.381Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 610ms - IP: 192.168.81.206 - User: user_1015 - RequestID: 6320knmbgz +2025-06-18T14:22:56.481Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 500 - Response time: 1238ms - IP: 192.168.68.158 - User: user_1035 - RequestID: 9q5d25bnx0a +2025-06-18T14:22:56.581Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1983ms - IP: 192.168.189.103 - User: user_1078 - RequestID: xvslb5q4t8a +2025-06-18T14:22:56.681Z [INFO] user-service - Auth event: login_success - User: user_1025 - IP: 192.168.196.226 - RequestID: m5fvmdexv4b +2025-06-18T14:22:56.781Z [TRACE] user-service - Database DELETE on sessions - Execution time: 397ms - Rows affected: 92 - RequestID: khn64ebxv7d +2025-06-18T14:22:56.881Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1156ms - IP: 192.168.138.123 - User: user_1019 - RequestID: 31labjhecei +2025-06-18T14:22:56.981Z [TRACE] notification-service - Database SELECT on products - Execution time: 298ms - Rows affected: 30 - RequestID: 25o46mhlfjp +2025-06-18T14:22:57.081Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1073 - IP: 192.168.211.72 - RequestID: uj5esuldahd +2025-06-18T14:22:57.181Z [DEBUG] user-service - Database DELETE on products - Execution time: 412ms - Rows affected: 55 - RequestID: ximreg6zypn +2025-06-18T14:22:57.281Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 433ms - IP: 192.168.14.77 - User: user_1077 - RequestID: badcf1jmge7 +2025-06-18T14:22:57.381Z [INFO] auth-service - Auth event: login_failed - User: user_1037 - IP: 192.168.144.38 - RequestID: 59ea2g9v1ui +2025-06-18T14:22:57.481Z [DEBUG] order-service - Auth event: login_success - User: user_1090 - IP: 192.168.36.218 - RequestID: p9fn0e3hzz +2025-06-18T14:22:57.581Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 724ms - IP: 192.168.227.233 - User: user_1039 - RequestID: p8oy7m4e7lg +2025-06-18T14:22:57.681Z [DEBUG] order-service - Operation: cache_miss - Processing time: 761ms - RequestID: oib7yiy34s +2025-06-18T14:22:57.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.141.100 - RequestID: parh3ivd5f +2025-06-18T14:22:57.881Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 278ms - Rows affected: 33 - RequestID: m9x47k22i2l +2025-06-18T14:22:57.981Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 404 - Response time: 1660ms - IP: 192.168.11.60 - User: user_1019 - RequestID: 0ypgu0uyl0g +2025-06-18T14:22:58.081Z [INFO] auth-service - Operation: webhook_sent - Processing time: 111ms - RequestID: gnv93qhjv6 +2025-06-18T14:22:58.181Z [INFO] auth-service - Operation: inventory_updated - Processing time: 982ms - RequestID: vgaegfc2rn +2025-06-18T14:22:58.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 503ms - RequestID: o85mkhov4pb +2025-06-18T14:22:58.381Z [INFO] payment-service - Operation: inventory_updated - Processing time: 403ms - RequestID: teecos1ge2 +2025-06-18T14:22:58.481Z [INFO] order-service - Auth event: password_change - User: user_1061 - IP: 192.168.227.77 - RequestID: oq57jtuy1mb +2025-06-18T14:22:58.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1038 - IP: 192.168.1.152 - RequestID: rba7r7npitc +2025-06-18T14:22:58.681Z [DEBUG] order-service - Operation: order_created - Processing time: 576ms - RequestID: h5ccayjs5fb +2025-06-18T14:22:58.781Z [DEBUG] user-service - Operation: email_sent - Processing time: 944ms - RequestID: v6tlg1x0tyn +2025-06-18T14:22:58.881Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 404 - Response time: 678ms - IP: 192.168.196.226 - User: user_1015 - RequestID: 2m46gotnzs3 +2025-06-18T14:22:58.981Z [TRACE] user-service - Auth event: logout - User: user_1024 - IP: 192.168.79.116 - RequestID: pwfjzkbkdg9 +2025-06-18T14:22:59.081Z [TRACE] payment-service - POST /api/v1/inventory - Status: 200 - Response time: 1428ms - IP: 192.168.11.60 - User: user_1097 - RequestID: zamnk1r0la +2025-06-18T14:22:59.181Z [TRACE] user-service - Database SELECT on sessions - Execution time: 52ms - Rows affected: 70 - RequestID: feyliom4nvm +2025-06-18T14:22:59.281Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 401 - Response time: 16ms - IP: 192.168.189.103 - User: user_1055 - RequestID: q4808u49q5 +2025-06-18T14:22:59.381Z [TRACE] user-service - Auth event: logout - User: user_1094 - IP: 192.168.235.117 - RequestID: wb0lf3e9yn +2025-06-18T14:22:59.481Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 428ms - RequestID: ohuzvphh0t +2025-06-18T14:22:59.581Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 401 - Response time: 213ms - IP: 192.168.11.60 - User: user_1024 - RequestID: j5ja31t55t +2025-06-18T14:22:59.681Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 925ms - IP: 192.168.232.72 - User: user_1032 - RequestID: 01gpq1cqj5pf +2025-06-18T14:22:59.781Z [TRACE] auth-service - Auth event: logout - User: user_1070 - IP: 192.168.158.144 - RequestID: nxc347c24we +2025-06-18T14:22:59.881Z [INFO] payment-service - Auth event: login_failed - User: user_1043 - IP: 192.168.159.94 - RequestID: 08oz7ape01hk +2025-06-18T14:22:59.981Z [DEBUG] user-service - PUT /api/v1/orders - Status: 200 - Response time: 557ms - IP: 192.168.235.117 - User: user_1027 - RequestID: cakuih6h1jh +2025-06-18T14:23:00.081Z [TRACE] payment-service - Operation: order_created - Processing time: 214ms - RequestID: 9qihxxz3fbb +2025-06-18T14:23:00.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1021 - IP: 192.168.79.143 - RequestID: rgvbuya2kbd +2025-06-18T14:23:00.281Z [INFO] notification-service - Operation: email_sent - Processing time: 441ms - RequestID: b5fgvy0ilb9 +2025-06-18T14:23:00.381Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 934ms - RequestID: dsexx7n0zjs +2025-06-18T14:23:00.481Z [TRACE] inventory-service - Operation: order_created - Processing time: 881ms - RequestID: 8k9t841eovt +2025-06-18T14:23:00.581Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 503 - Response time: 407ms - IP: 192.168.79.116 - User: user_1000 - RequestID: fqndqhr2x4o +2025-06-18T14:23:00.681Z [INFO] payment-service - Database DELETE on orders - Execution time: 266ms - Rows affected: 85 - RequestID: i2kewmqwe2m +2025-06-18T14:23:00.781Z [INFO] user-service - Database DELETE on users - Execution time: 463ms - Rows affected: 6 - RequestID: jwv1yj8u08i +2025-06-18T14:23:00.881Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 484ms - Rows affected: 68 - RequestID: 2hntm5pix44 +2025-06-18T14:23:00.981Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 115ms - RequestID: 0iklroy61dgo +2025-06-18T14:23:01.081Z [TRACE] order-service - Operation: payment_processed - Processing time: 411ms - RequestID: 0q8qtnx4qo2f +2025-06-18T14:23:01.181Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 21ms - Rows affected: 61 - RequestID: 7hn1i10t6sj +2025-06-18T14:23:01.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.113.218 - RequestID: 6tkkqeeaifo +2025-06-18T14:23:01.381Z [INFO] user-service - Operation: webhook_sent - Processing time: 961ms - RequestID: qdv3jmrdvp +2025-06-18T14:23:01.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 379ms - RequestID: x7th90rxq2 +2025-06-18T14:23:01.581Z [TRACE] payment-service - Database SELECT on payments - Execution time: 477ms - Rows affected: 23 - RequestID: dtv4alcyhr9 +2025-06-18T14:23:01.681Z [INFO] order-service - Auth event: logout - User: user_1073 - IP: 192.168.100.240 - RequestID: smsyt3xica +2025-06-18T14:23:01.781Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 553ms - IP: 192.168.147.171 - User: user_1090 - RequestID: kpkwxy0o0lp +2025-06-18T14:23:01.881Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 457ms - Rows affected: 36 - RequestID: o1ovik9rqn +2025-06-18T14:23:01.981Z [TRACE] notification-service - Auth event: logout - User: user_1043 - IP: 192.168.242.165 - RequestID: tghzjne37lp +2025-06-18T14:23:02.081Z [INFO] order-service - Operation: webhook_sent - Processing time: 457ms - RequestID: j0ui9nw8n3l +2025-06-18T14:23:02.181Z [INFO] notification-service - Database DELETE on sessions - Execution time: 312ms - Rows affected: 69 - RequestID: w2hxlf8zuce +2025-06-18T14:23:02.281Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 286ms - Rows affected: 66 - RequestID: sjo3w0alj6 +2025-06-18T14:23:02.381Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 452ms - Rows affected: 64 - RequestID: 0gwl6dbkfztp +2025-06-18T14:23:02.481Z [TRACE] user-service - Database SELECT on orders - Execution time: 116ms - Rows affected: 19 - RequestID: dtmv5ar7md7 +2025-06-18T14:23:02.581Z [TRACE] user-service - GET /api/v1/users - Status: 400 - Response time: 1491ms - IP: 192.168.81.206 - User: user_1066 - RequestID: jyyqqd1m85 +2025-06-18T14:23:02.681Z [INFO] inventory-service - GET /api/v1/orders - Status: 500 - Response time: 534ms - IP: 192.168.32.38 - User: user_1036 - RequestID: phsisxc981 +2025-06-18T14:23:02.781Z [INFO] order-service - Database INSERT on products - Execution time: 312ms - Rows affected: 14 - RequestID: reuce8mphcg +2025-06-18T14:23:02.881Z [INFO] inventory-service - Auth event: login_success - User: user_1056 - IP: 192.168.194.41 - RequestID: 4qzjgf5578i +2025-06-18T14:23:02.981Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 594ms - RequestID: rtsez1x2ow +2025-06-18T14:23:03.081Z [TRACE] notification-service - Operation: payment_processed - Processing time: 444ms - RequestID: qks22voilh +2025-06-18T14:23:03.181Z [INFO] notification-service - Operation: webhook_sent - Processing time: 794ms - RequestID: g94ttgt91j +2025-06-18T14:23:03.281Z [TRACE] user-service - Operation: payment_processed - Processing time: 526ms - RequestID: uopau5391m +2025-06-18T14:23:03.381Z [INFO] order-service - Database SELECT on products - Execution time: 145ms - Rows affected: 80 - RequestID: 9dbg9i80qfm +2025-06-18T14:23:03.481Z [INFO] notification-service - PATCH /api/v1/payments - Status: 403 - Response time: 1361ms - IP: 192.168.247.134 - User: user_1055 - RequestID: 1ln1lisg12a +2025-06-18T14:23:03.581Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 215ms - RequestID: uyj7f8q3bzc +2025-06-18T14:23:03.681Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 387ms - Rows affected: 68 - RequestID: o062oy7eiwa +2025-06-18T14:23:03.781Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 985ms - IP: 192.168.79.143 - User: user_1076 - RequestID: e8j9ytguood +2025-06-18T14:23:03.881Z [INFO] notification-service - Operation: payment_processed - Processing time: 361ms - RequestID: gokkfvtziom +2025-06-18T14:23:03.981Z [INFO] order-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1857ms - IP: 192.168.68.158 - User: user_1017 - RequestID: pabkgd6c1y +2025-06-18T14:23:04.081Z [DEBUG] notification-service - Database SELECT on products - Execution time: 176ms - Rows affected: 19 - RequestID: bao2796yi5l +2025-06-18T14:23:04.181Z [INFO] inventory-service - Database INSERT on products - Execution time: 294ms - Rows affected: 73 - RequestID: 3cv6utewknu +2025-06-18T14:23:04.281Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 77ms - Rows affected: 61 - RequestID: uchfnnscwo +2025-06-18T14:23:04.381Z [TRACE] inventory-service - PUT /api/v1/users - Status: 201 - Response time: 842ms - IP: 192.168.133.7 - User: user_1055 - RequestID: 1n5hq0u4047 +2025-06-18T14:23:04.481Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 134ms - Rows affected: 22 - RequestID: qi9jla0wocm +2025-06-18T14:23:04.581Z [TRACE] payment-service - Auth event: logout - User: user_1041 - IP: 192.168.141.100 - RequestID: si8tkn9rwxr +2025-06-18T14:23:04.681Z [INFO] notification-service - Operation: order_created - Processing time: 886ms - RequestID: 8xf4sjaoh3o +2025-06-18T14:23:04.781Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 575ms - RequestID: rlsa2ktqes +2025-06-18T14:23:04.881Z [DEBUG] notification-service - Database DELETE on users - Execution time: 311ms - Rows affected: 79 - RequestID: hfc0716bv5n +2025-06-18T14:23:04.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.158.144 - RequestID: fhuizz5h9w +2025-06-18T14:23:05.081Z [INFO] order-service - DELETE /api/v1/users - Status: 200 - Response time: 626ms - IP: 192.168.100.240 - User: user_1080 - RequestID: kz573ghtu57 +2025-06-18T14:23:05.181Z [DEBUG] inventory-service - GET /api/v1/users - Status: 503 - Response time: 1222ms - IP: 192.168.242.165 - User: user_1017 - RequestID: glq4a836kt +2025-06-18T14:23:05.281Z [INFO] order-service - Auth event: login_failed - User: user_1003 - IP: 192.168.181.225 - RequestID: b7eq1l3l2qp +2025-06-18T14:23:05.381Z [INFO] payment-service - Database UPDATE on payments - Execution time: 393ms - Rows affected: 11 - RequestID: nzt3mbmi0ah +2025-06-18T14:23:05.481Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 454ms - Rows affected: 99 - RequestID: ud406yix5uq +2025-06-18T14:23:05.581Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 205ms - Rows affected: 4 - RequestID: dos0a25qw5b +2025-06-18T14:23:05.681Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 588ms - RequestID: 3ujtgb92dhj +2025-06-18T14:23:05.781Z [INFO] notification-service - Database INSERT on products - Execution time: 193ms - Rows affected: 23 - RequestID: nr6u58e9839 +2025-06-18T14:23:05.881Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 200 - Response time: 413ms - IP: 192.168.33.76 - User: user_1058 - RequestID: y2bjadqtkeg +2025-06-18T14:23:05.981Z [INFO] notification-service - Database DELETE on products - Execution time: 149ms - Rows affected: 93 - RequestID: inu0pvnvka +2025-06-18T14:23:06.081Z [INFO] order-service - Database INSERT on products - Execution time: 303ms - Rows affected: 27 - RequestID: 78d7oy01b8t +2025-06-18T14:23:06.181Z [INFO] order-service - PUT /api/v1/inventory - Status: 403 - Response time: 1004ms - IP: 192.168.68.158 - User: user_1081 - RequestID: u1efsy1k76 +2025-06-18T14:23:06.281Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 950ms - RequestID: kwk6z7xzs1a +2025-06-18T14:23:06.381Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 331ms - Rows affected: 0 - RequestID: uuy9pkd3xp +2025-06-18T14:23:06.481Z [DEBUG] user-service - Database UPDATE on users - Execution time: 192ms - Rows affected: 60 - RequestID: c9uxa7tfd9 +2025-06-18T14:23:06.581Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 6ms - Rows affected: 75 - RequestID: rlubjjcmy7 +2025-06-18T14:23:06.681Z [INFO] payment-service - Auth event: password_change - User: user_1002 - IP: 192.168.144.38 - RequestID: 049pc5ilgcc6 +2025-06-18T14:23:06.781Z [DEBUG] auth-service - Database INSERT on users - Execution time: 185ms - Rows affected: 74 - RequestID: anp9ui29kim +2025-06-18T14:23:06.881Z [TRACE] payment-service - Database DELETE on payments - Execution time: 270ms - Rows affected: 45 - RequestID: xrwummnxuro +2025-06-18T14:23:06.981Z [TRACE] auth-service - Database SELECT on users - Execution time: 106ms - Rows affected: 50 - RequestID: dhmhl1kmhdl +2025-06-18T14:23:07.081Z [TRACE] user-service - Database UPDATE on orders - Execution time: 350ms - Rows affected: 27 - RequestID: 2phpf83ny98 +2025-06-18T14:23:07.181Z [DEBUG] auth-service - Auth event: login_failed - User: user_1073 - IP: 192.168.79.143 - RequestID: zwre5k0v0x8 +2025-06-18T14:23:07.281Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 503 - Response time: 687ms - IP: 192.168.36.218 - User: user_1015 - RequestID: luetoxzqdvr +2025-06-18T14:23:07.381Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1393ms - IP: 192.168.232.72 - User: user_1002 - RequestID: ge8ugfiyiui +2025-06-18T14:23:07.481Z [INFO] payment-service - POST /api/v1/users - Status: 404 - Response time: 1882ms - IP: 192.168.167.32 - User: user_1082 - RequestID: gvrzuj1sw65 +2025-06-18T14:23:07.581Z [TRACE] order-service - Auth event: password_change - User: user_1016 - IP: 192.168.46.63 - RequestID: qapgcxnmegb +2025-06-18T14:23:07.681Z [TRACE] notification-service - Auth event: password_change - User: user_1041 - IP: 192.168.79.143 - RequestID: 9armsuid9nc +2025-06-18T14:23:07.781Z [INFO] user-service - Auth event: logout - User: user_1087 - IP: 192.168.81.206 - RequestID: 40nkjxiab1q +2025-06-18T14:23:07.881Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 842ms - RequestID: y1sn3hvkdo +2025-06-18T14:23:07.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.97.87 - RequestID: h0wrp0pzb7g +2025-06-18T14:23:08.081Z [TRACE] order-service - Auth event: login_failed - User: user_1008 - IP: 192.168.68.158 - RequestID: obw3mfdap69 +2025-06-18T14:23:08.181Z [TRACE] user-service - Operation: cache_miss - Processing time: 919ms - RequestID: ot1mnw3sj2j +2025-06-18T14:23:08.281Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 404 - Response time: 1434ms - IP: 192.168.181.225 - User: user_1087 - RequestID: eqsx8n90le +2025-06-18T14:23:08.381Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 571ms - IP: 192.168.227.233 - User: user_1013 - RequestID: vrgvuwkz4r +2025-06-18T14:23:08.481Z [INFO] payment-service - GET /api/v1/users - Status: 401 - Response time: 621ms - IP: 192.168.242.165 - User: user_1047 - RequestID: 307rub1k9c2 +2025-06-18T14:23:08.581Z [INFO] inventory-service - Auth event: logout - User: user_1005 - IP: 192.168.158.144 - RequestID: 3s6bofm47ee +2025-06-18T14:23:08.681Z [TRACE] payment-service - Database INSERT on users - Execution time: 469ms - Rows affected: 89 - RequestID: 80gadj6bge +2025-06-18T14:23:08.781Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 438ms - Rows affected: 46 - RequestID: xm2qdgyqsp +2025-06-18T14:23:08.881Z [TRACE] inventory-service - GET /api/v1/orders - Status: 403 - Response time: 1756ms - IP: 192.168.227.233 - User: user_1012 - RequestID: x4c96v4da8l +2025-06-18T14:23:08.981Z [DEBUG] user-service - PUT /api/v1/orders - Status: 500 - Response time: 1128ms - IP: 192.168.158.144 - User: user_1084 - RequestID: alu4kl4xqxw +2025-06-18T14:23:09.081Z [TRACE] payment-service - Auth event: login_failed - User: user_1091 - IP: 192.168.158.144 - RequestID: 3bri5xk0w0f +2025-06-18T14:23:09.181Z [INFO] order-service - POST /api/v1/orders - Status: 503 - Response time: 979ms - IP: 192.168.159.94 - User: user_1023 - RequestID: xxfg8dnva4f +2025-06-18T14:23:09.281Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 400 - Response time: 1767ms - IP: 192.168.79.143 - User: user_1078 - RequestID: ac5vdw05x1h +2025-06-18T14:23:09.381Z [INFO] inventory-service - Database DELETE on orders - Execution time: 1ms - Rows affected: 67 - RequestID: guzwdmanbr4 +2025-06-18T14:23:09.481Z [DEBUG] notification-service - Operation: order_created - Processing time: 913ms - RequestID: 0uxd27k1w1w +2025-06-18T14:23:09.581Z [INFO] notification-service - Auth event: login_failed - User: user_1085 - IP: 192.168.174.114 - RequestID: 98faf7j9mvl +2025-06-18T14:23:09.681Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 403 - Response time: 553ms - IP: 192.168.170.215 - User: user_1038 - RequestID: yno48fipggg +2025-06-18T14:23:09.781Z [DEBUG] auth-service - Operation: email_sent - Processing time: 552ms - RequestID: j2n91k9zivh +2025-06-18T14:23:09.881Z [INFO] user-service - Operation: inventory_updated - Processing time: 578ms - RequestID: luj2lx4xekt +2025-06-18T14:23:09.981Z [INFO] inventory-service - Auth event: login_success - User: user_1036 - IP: 192.168.81.206 - RequestID: gluyvnmslu +2025-06-18T14:23:10.081Z [INFO] user-service - Operation: cache_hit - Processing time: 462ms - RequestID: b197pvuli8r +2025-06-18T14:23:10.181Z [INFO] order-service - PUT /api/v1/users - Status: 201 - Response time: 1099ms - IP: 192.168.68.158 - User: user_1047 - RequestID: 1kb5mkxbtwu +2025-06-18T14:23:10.281Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 994ms - IP: 192.168.79.116 - User: user_1023 - RequestID: utxwgovjpk +2025-06-18T14:23:10.381Z [INFO] payment-service - DELETE /api/v1/payments - Status: 404 - Response time: 900ms - IP: 192.168.240.169 - User: user_1067 - RequestID: g3rj3inxqke +2025-06-18T14:23:10.481Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1674ms - IP: 192.168.174.114 - User: user_1049 - RequestID: pe4gys4s2ll +2025-06-18T14:23:10.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 841ms - RequestID: vrp49ktza3d +2025-06-18T14:23:10.681Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 893ms - RequestID: tkvnnqfdfp +2025-06-18T14:23:10.781Z [INFO] user-service - Database DELETE on payments - Execution time: 428ms - Rows affected: 25 - RequestID: x6xfrs2j7a +2025-06-18T14:23:10.881Z [TRACE] notification-service - Operation: payment_processed - Processing time: 366ms - RequestID: hoxihjybge9 +2025-06-18T14:23:10.981Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 407ms - Rows affected: 14 - RequestID: hz8c7sxoo6q +2025-06-18T14:23:11.081Z [TRACE] auth-service - Operation: cache_hit - Processing time: 429ms - RequestID: xrucvbu9ib +2025-06-18T14:23:11.181Z [TRACE] payment-service - Operation: payment_processed - Processing time: 66ms - RequestID: s56lvjpu53h +2025-06-18T14:23:11.281Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 197ms - RequestID: 4okz7sw4an3 +2025-06-18T14:23:11.381Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 404 - Response time: 233ms - IP: 192.168.141.100 - User: user_1032 - RequestID: mkx7cub4a7f +2025-06-18T14:23:11.481Z [TRACE] inventory-service - Database INSERT on users - Execution time: 452ms - Rows affected: 44 - RequestID: 7jmr2wtcie +2025-06-18T14:23:11.581Z [INFO] notification-service - Auth event: password_change - User: user_1033 - IP: 192.168.14.77 - RequestID: h486b0week6 +2025-06-18T14:23:11.681Z [INFO] auth-service - Auth event: password_change - User: user_1043 - IP: 192.168.196.226 - RequestID: dxe4zy6u3l +2025-06-18T14:23:11.781Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 454ms - RequestID: rwlrx17qb5b +2025-06-18T14:23:11.881Z [TRACE] auth-service - Database INSERT on payments - Execution time: 148ms - Rows affected: 80 - RequestID: 8wbc0sp4eyv +2025-06-18T14:23:11.981Z [INFO] order-service - POST /api/v1/inventory - Status: 201 - Response time: 599ms - IP: 192.168.100.240 - User: user_1018 - RequestID: 7rwoj23ym7m +2025-06-18T14:23:12.081Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 222ms - Rows affected: 9 - RequestID: igpa074bl6 +2025-06-18T14:23:12.181Z [INFO] auth-service - DELETE /api/v1/payments - Status: 400 - Response time: 878ms - IP: 192.168.240.169 - User: user_1082 - RequestID: 10bycuifd6yr +2025-06-18T14:23:12.281Z [TRACE] user-service - Database SELECT on payments - Execution time: 370ms - Rows affected: 30 - RequestID: s1z8qp2ggeg +2025-06-18T14:23:12.381Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 228ms - RequestID: zjyhphld9wa +2025-06-18T14:23:12.481Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 840ms - RequestID: 1klcl6msf5f +2025-06-18T14:23:12.581Z [INFO] order-service - Auth event: login_success - User: user_1059 - IP: 192.168.53.133 - RequestID: no8z6hvonnh +2025-06-18T14:23:12.681Z [INFO] user-service - Database INSERT on sessions - Execution time: 486ms - Rows affected: 56 - RequestID: jy8i1yrcezr +2025-06-18T14:23:12.781Z [INFO] payment-service - Operation: webhook_sent - Processing time: 312ms - RequestID: nok0l9xwas +2025-06-18T14:23:12.881Z [TRACE] notification-service - GET /api/v1/auth/login - Status: 404 - Response time: 922ms - IP: 192.168.247.134 - User: user_1013 - RequestID: bs2mhja5a38 +2025-06-18T14:23:12.981Z [TRACE] notification-service - Database INSERT on users - Execution time: 62ms - Rows affected: 81 - RequestID: zou62qu4qgt +2025-06-18T14:23:13.081Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 502 - Response time: 1143ms - IP: 192.168.235.117 - User: user_1056 - RequestID: u4a5srj29pj +2025-06-18T14:23:13.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.170.215 - RequestID: i5y6ze4niin +2025-06-18T14:23:13.281Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 997ms - RequestID: qqubyv2ank +2025-06-18T14:23:13.381Z [INFO] order-service - Operation: notification_queued - Processing time: 598ms - RequestID: kfhfpb2pt7k +2025-06-18T14:23:13.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1033 - IP: 192.168.211.72 - RequestID: h8arl2fluzr +2025-06-18T14:23:13.581Z [TRACE] payment-service - Database SELECT on users - Execution time: 310ms - Rows affected: 9 - RequestID: usngn72xbfk +2025-06-18T14:23:13.681Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1892ms - IP: 192.168.85.229 - User: user_1092 - RequestID: p6ajzcxtaph +2025-06-18T14:23:13.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.104.37 - RequestID: de4dp3mykn +2025-06-18T14:23:13.881Z [INFO] auth-service - Operation: cache_hit - Processing time: 288ms - RequestID: leizt46v3 +2025-06-18T14:23:13.981Z [TRACE] user-service - Auth event: login_failed - User: user_1088 - IP: 192.168.189.103 - RequestID: q1iatqdyxb +2025-06-18T14:23:14.081Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 633ms - RequestID: 8ttqs6fxznf +2025-06-18T14:23:14.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.240.169 - RequestID: ng26biqqbr +2025-06-18T14:23:14.281Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 351ms - RequestID: doa4u844skd +2025-06-18T14:23:14.381Z [DEBUG] user-service - Operation: payment_processed - Processing time: 927ms - RequestID: h8mfjy2rn7w +2025-06-18T14:23:14.481Z [DEBUG] notification-service - POST /api/v1/orders - Status: 200 - Response time: 1810ms - IP: 192.168.174.114 - User: user_1056 - RequestID: ph3d3gv6b2 +2025-06-18T14:23:14.581Z [TRACE] user-service - Operation: notification_queued - Processing time: 683ms - RequestID: 3aqywljbhwr +2025-06-18T14:23:14.681Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 735ms - IP: 192.168.10.184 - User: user_1052 - RequestID: 7kxj3cxreel +2025-06-18T14:23:14.781Z [TRACE] auth-service - Operation: cache_hit - Processing time: 73ms - RequestID: 5lmcalcihxo +2025-06-18T14:23:14.881Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 104ms - Rows affected: 56 - RequestID: 83xm8zzekeo +2025-06-18T14:23:14.981Z [TRACE] payment-service - Operation: cache_miss - Processing time: 215ms - RequestID: cw0rnmwt6u +2025-06-18T14:23:15.081Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 86ms - Rows affected: 60 - RequestID: r7c5h6yq7n +2025-06-18T14:23:15.181Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 157ms - Rows affected: 15 - RequestID: 1ca7889yjy6 +2025-06-18T14:23:15.281Z [TRACE] notification-service - POST /api/v1/users - Status: 201 - Response time: 1362ms - IP: 192.168.64.33 - User: user_1038 - RequestID: nc9sbfpqwn +2025-06-18T14:23:15.381Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 680ms - RequestID: v5mgqycgfpq +2025-06-18T14:23:15.481Z [INFO] inventory-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.232.72 - RequestID: fzzyxe64xe +2025-06-18T14:23:15.581Z [TRACE] notification-service - Auth event: password_change - User: user_1043 - IP: 192.168.79.116 - RequestID: 8enfeknbzds +2025-06-18T14:23:15.681Z [DEBUG] user-service - Database INSERT on users - Execution time: 231ms - Rows affected: 43 - RequestID: k9ul48cjux +2025-06-18T14:23:15.781Z [INFO] auth-service - Database INSERT on orders - Execution time: 193ms - Rows affected: 17 - RequestID: t5zfr9shyel +2025-06-18T14:23:15.881Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 66ms - Rows affected: 69 - RequestID: gullosuwobp +2025-06-18T14:23:15.981Z [INFO] order-service - Operation: payment_processed - Processing time: 781ms - RequestID: 33r2up5olyn +2025-06-18T14:23:16.081Z [INFO] order-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.13.72 - RequestID: mipl1jvrknr +2025-06-18T14:23:16.181Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 404 - Response time: 352ms - IP: 192.168.53.133 - User: user_1010 - RequestID: 49cnmy6jdls +2025-06-18T14:23:16.281Z [INFO] user-service - Database UPDATE on payments - Execution time: 170ms - Rows affected: 46 - RequestID: udd2yeyy1de +2025-06-18T14:23:16.381Z [TRACE] order-service - Auth event: login_failed - User: user_1094 - IP: 192.168.79.143 - RequestID: glicn5tok3d +2025-06-18T14:23:16.481Z [TRACE] notification-service - Operation: order_created - Processing time: 842ms - RequestID: wp6k3mz72li +2025-06-18T14:23:16.581Z [TRACE] payment-service - Auth event: password_change - User: user_1068 - IP: 192.168.79.116 - RequestID: 0xofrbnfk0ir +2025-06-18T14:23:16.681Z [TRACE] auth-service - Auth event: login_success - User: user_1092 - IP: 192.168.68.128 - RequestID: a6f2cem8w8f +2025-06-18T14:23:16.781Z [TRACE] user-service - Operation: inventory_updated - Processing time: 531ms - RequestID: su6b5utum5 +2025-06-18T14:23:16.881Z [INFO] notification-service - PUT /api/v1/users - Status: 404 - Response time: 711ms - IP: 192.168.11.60 - User: user_1058 - RequestID: 15bcw87dmxc +2025-06-18T14:23:16.981Z [INFO] inventory-service - Operation: cache_miss - Processing time: 434ms - RequestID: 6vcegkber9e +2025-06-18T14:23:17.081Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 54ms - RequestID: b6oxy7v7gdp +2025-06-18T14:23:17.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.10.184 - RequestID: d1lo7hxlazj +2025-06-18T14:23:17.281Z [INFO] inventory-service - Operation: notification_queued - Processing time: 835ms - RequestID: shyzcr1wz8f +2025-06-18T14:23:17.381Z [DEBUG] order-service - Auth event: password_change - User: user_1071 - IP: 192.168.159.94 - RequestID: svvm16qe0ko +2025-06-18T14:23:17.481Z [DEBUG] payment-service - Operation: order_created - Processing time: 464ms - RequestID: 1nj06iojkgf +2025-06-18T14:23:17.581Z [DEBUG] payment-service - POST /api/v1/orders - Status: 401 - Response time: 631ms - IP: 192.168.138.123 - User: user_1092 - RequestID: 8itz2rdjj37 +2025-06-18T14:23:17.681Z [INFO] auth-service - Auth event: password_change - User: user_1074 - IP: 192.168.144.38 - RequestID: psah24asvz9 +2025-06-18T14:23:17.781Z [INFO] payment-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.189.103 - RequestID: hxa8ul1xwxr +2025-06-18T14:23:17.881Z [DEBUG] user-service - Operation: email_sent - Processing time: 902ms - RequestID: fmmamrgf0s6 +2025-06-18T14:23:17.981Z [DEBUG] user-service - GET /api/v1/orders - Status: 503 - Response time: 616ms - IP: 192.168.100.240 - User: user_1018 - RequestID: l1kz8h34vd +2025-06-18T14:23:18.081Z [TRACE] notification-service - Auth event: login_success - User: user_1017 - IP: 192.168.227.233 - RequestID: io395vaeccn +2025-06-18T14:23:18.181Z [DEBUG] user-service - Operation: cache_hit - Processing time: 733ms - RequestID: f43xovp0xn6 +2025-06-18T14:23:18.281Z [INFO] notification-service - GET /api/v1/inventory - Status: 403 - Response time: 476ms - IP: 192.168.189.103 - User: user_1050 - RequestID: zlb34yk3bd +2025-06-18T14:23:18.381Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 75ms - Rows affected: 31 - RequestID: xgyoopdlzkc +2025-06-18T14:23:18.481Z [DEBUG] user-service - Database SELECT on users - Execution time: 134ms - Rows affected: 64 - RequestID: 2m4yuvmmk44 +2025-06-18T14:23:18.581Z [DEBUG] order-service - POST /api/v1/payments - Status: 502 - Response time: 507ms - IP: 192.168.68.128 - User: user_1053 - RequestID: 9st305vvk1p +2025-06-18T14:23:18.681Z [TRACE] inventory-service - Operation: order_created - Processing time: 441ms - RequestID: h6eoubjy2ep +2025-06-18T14:23:18.781Z [TRACE] notification-service - Auth event: login_success - User: user_1087 - IP: 192.168.167.32 - RequestID: k7th9tzuron +2025-06-18T14:23:18.881Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 503 - Response time: 269ms - IP: 192.168.113.218 - User: user_1010 - RequestID: 9hcwba442ei +2025-06-18T14:23:18.981Z [INFO] order-service - Operation: webhook_sent - Processing time: 735ms - RequestID: vntr5rhcp4t +2025-06-18T14:23:19.081Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 314ms - Rows affected: 45 - RequestID: viwqdrjhx1h +2025-06-18T14:23:19.181Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 807ms - RequestID: i5iedza1oor +2025-06-18T14:23:19.281Z [DEBUG] user-service - Operation: order_created - Processing time: 86ms - RequestID: 8aq725fbref +2025-06-18T14:23:19.381Z [INFO] payment-service - Auth event: password_change - User: user_1029 - IP: 192.168.232.72 - RequestID: 53hzpitkh6x +2025-06-18T14:23:19.481Z [TRACE] order-service - POST /api/v1/users - Status: 503 - Response time: 1643ms - IP: 192.168.68.158 - User: user_1060 - RequestID: 2im7qtuq5w9 +2025-06-18T14:23:19.581Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1860ms - IP: 192.168.189.103 - User: user_1041 - RequestID: n72o9m43z8i +2025-06-18T14:23:19.681Z [INFO] payment-service - Auth event: logout - User: user_1063 - IP: 192.168.147.171 - RequestID: wrsdnlxzmj +2025-06-18T14:23:19.781Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 145ms - Rows affected: 2 - RequestID: emz4890exf6 +2025-06-18T14:23:19.881Z [DEBUG] order-service - GET /api/v1/payments - Status: 403 - Response time: 1429ms - IP: 192.168.189.103 - User: user_1036 - RequestID: rxknbdenzfd +2025-06-18T14:23:19.981Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 112ms - IP: 192.168.158.144 - User: user_1034 - RequestID: e73frp9018p +2025-06-18T14:23:20.081Z [INFO] payment-service - Database UPDATE on orders - Execution time: 142ms - Rows affected: 83 - RequestID: juglcbmax0p +2025-06-18T14:23:20.181Z [INFO] inventory-service - Database SELECT on orders - Execution time: 447ms - Rows affected: 52 - RequestID: a551oqqmnto +2025-06-18T14:23:20.281Z [INFO] auth-service - Auth event: password_change - User: user_1092 - IP: 192.168.104.37 - RequestID: wsdcc2303an +2025-06-18T14:23:20.381Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 251ms - Rows affected: 27 - RequestID: bgd4mhl8y7e +2025-06-18T14:23:20.481Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 500 - Response time: 717ms - IP: 192.168.113.218 - User: user_1014 - RequestID: x7vqmyv2rr +2025-06-18T14:23:20.581Z [DEBUG] user-service - Auth event: login_failed - User: user_1051 - IP: 192.168.227.77 - RequestID: ynnuk4m8ei +2025-06-18T14:23:20.681Z [TRACE] user-service - Auth event: logout - User: user_1066 - IP: 192.168.211.72 - RequestID: 382zv0chog3 +2025-06-18T14:23:20.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.14.77 - RequestID: 3s05duveyvp +2025-06-18T14:23:20.881Z [TRACE] payment-service - Operation: email_sent - Processing time: 128ms - RequestID: hf1wk2iwfvl +2025-06-18T14:23:20.981Z [TRACE] payment-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.100.240 - RequestID: gz7d5krgmgq +2025-06-18T14:23:21.081Z [INFO] payment-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.13.72 - RequestID: 295vxl2zt7f +2025-06-18T14:23:21.181Z [DEBUG] payment-service - Auth event: login_success - User: user_1097 - IP: 192.168.138.123 - RequestID: pycg6bqowmc +2025-06-18T14:23:21.281Z [INFO] auth-service - Operation: notification_queued - Processing time: 997ms - RequestID: 8ezxlkoo8on +2025-06-18T14:23:21.381Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 353ms - Rows affected: 43 - RequestID: k2q9lhs96wp +2025-06-18T14:23:21.481Z [INFO] inventory-service - PUT /api/v1/orders - Status: 200 - Response time: 663ms - IP: 192.168.144.38 - User: user_1098 - RequestID: gwdmzqsxrx +2025-06-18T14:23:21.581Z [INFO] user-service - Database SELECT on users - Execution time: 4ms - Rows affected: 34 - RequestID: gtnflesuon9 +2025-06-18T14:23:21.681Z [INFO] notification-service - Database UPDATE on products - Execution time: 287ms - Rows affected: 93 - RequestID: u6c5t2wa0ge +2025-06-18T14:23:21.781Z [INFO] auth-service - Operation: webhook_sent - Processing time: 604ms - RequestID: efolberseb +2025-06-18T14:23:21.881Z [INFO] notification-service - Operation: payment_processed - Processing time: 622ms - RequestID: 7e6oeos8tuf +2025-06-18T14:23:21.981Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 200 - Response time: 1183ms - IP: 192.168.147.171 - User: user_1006 - RequestID: 6jdw6lsi77 +2025-06-18T14:23:22.081Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 404 - Response time: 91ms - IP: 192.168.158.144 - User: user_1005 - RequestID: 9scc5vlclgk +2025-06-18T14:23:22.181Z [TRACE] payment-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.189.103 - RequestID: cna7a7dhvem +2025-06-18T14:23:22.281Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 357ms - RequestID: ak8pkkw0yl6 +2025-06-18T14:23:22.381Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1126ms - IP: 192.168.189.103 - User: user_1063 - RequestID: am6hf5rw4gf +2025-06-18T14:23:22.481Z [DEBUG] payment-service - Auth event: logout - User: user_1037 - IP: 192.168.53.133 - RequestID: h9wfpvp3pol +2025-06-18T14:23:22.581Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 389ms - IP: 192.168.211.72 - User: user_1032 - RequestID: 4gucbzg1qn8 +2025-06-18T14:23:22.681Z [INFO] payment-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.174.114 - RequestID: f7tu02b5zyl +2025-06-18T14:23:22.781Z [TRACE] inventory-service - Auth event: logout - User: user_1074 - IP: 192.168.68.128 - RequestID: 3863ta90rl +2025-06-18T14:23:22.881Z [TRACE] payment-service - Database DELETE on payments - Execution time: 47ms - Rows affected: 88 - RequestID: 13jzxv0fw84 +2025-06-18T14:23:22.981Z [INFO] order-service - PATCH /api/v1/users - Status: 500 - Response time: 1314ms - IP: 192.168.13.72 - User: user_1072 - RequestID: kuv2snp0a2 +2025-06-18T14:23:23.081Z [INFO] inventory-service - PUT /api/v1/users - Status: 401 - Response time: 393ms - IP: 192.168.194.41 - User: user_1037 - RequestID: czk0ywolz9l +2025-06-18T14:23:23.181Z [TRACE] user-service - Auth event: login_failed - User: user_1092 - IP: 192.168.46.63 - RequestID: aayu77huh4 +2025-06-18T14:23:23.281Z [INFO] notification-service - Operation: notification_queued - Processing time: 1040ms - RequestID: taqncsgtsp +2025-06-18T14:23:23.381Z [INFO] payment-service - Database UPDATE on orders - Execution time: 488ms - Rows affected: 7 - RequestID: mho1wrx3a0d +2025-06-18T14:23:23.481Z [INFO] user-service - Database DELETE on orders - Execution time: 200ms - Rows affected: 77 - RequestID: ozzkxaov2gg +2025-06-18T14:23:23.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.229.123 - RequestID: n9ihy5h1fu +2025-06-18T14:23:23.681Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 118ms - Rows affected: 81 - RequestID: gf74lsou91f +2025-06-18T14:23:23.781Z [INFO] order-service - Database SELECT on products - Execution time: 390ms - Rows affected: 72 - RequestID: gv001g9b4mt +2025-06-18T14:23:23.881Z [TRACE] user-service - Database SELECT on payments - Execution time: 169ms - Rows affected: 83 - RequestID: frasxw9t7ee +2025-06-18T14:23:23.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.232.72 - RequestID: h6momay1dur +2025-06-18T14:23:24.081Z [TRACE] inventory-service - Auth event: logout - User: user_1090 - IP: 192.168.64.33 - RequestID: rkcwbhjckco +2025-06-18T14:23:24.181Z [TRACE] auth-service - Operation: payment_processed - Processing time: 235ms - RequestID: 0kijyr58q8gb +2025-06-18T14:23:24.281Z [DEBUG] inventory-service - POST /api/v1/users - Status: 500 - Response time: 634ms - IP: 192.168.138.123 - User: user_1029 - RequestID: p9efv0efyv +2025-06-18T14:23:24.381Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 500ms - Rows affected: 83 - RequestID: j0quk7hri6g +2025-06-18T14:23:24.481Z [TRACE] auth-service - Operation: notification_queued - Processing time: 127ms - RequestID: v87pl5hvusc +2025-06-18T14:23:24.581Z [DEBUG] user-service - Database SELECT on products - Execution time: 178ms - Rows affected: 34 - RequestID: 8rdwj8y9pef +2025-06-18T14:23:24.681Z [INFO] order-service - Operation: payment_processed - Processing time: 393ms - RequestID: hyn8zp2nve9 +2025-06-18T14:23:24.781Z [INFO] payment-service - DELETE /api/v1/orders - Status: 404 - Response time: 718ms - IP: 192.168.211.72 - User: user_1049 - RequestID: cqk1ahnltik +2025-06-18T14:23:24.881Z [INFO] user-service - Operation: order_created - Processing time: 603ms - RequestID: q3usbhheros +2025-06-18T14:23:24.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1080 - IP: 192.168.10.184 - RequestID: h7lzh5i3wug +2025-06-18T14:23:25.081Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 978ms - RequestID: tadiyzxtwqg +2025-06-18T14:23:25.181Z [INFO] user-service - Database INSERT on users - Execution time: 74ms - Rows affected: 74 - RequestID: k6v9zmjqln8 +2025-06-18T14:23:25.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 819ms - RequestID: a06t8urzsg9 +2025-06-18T14:23:25.381Z [TRACE] user-service - Database SELECT on payments - Execution time: 74ms - Rows affected: 64 - RequestID: ov6kc8f4ppn +2025-06-18T14:23:25.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1036 - IP: 192.168.30.79 - RequestID: uzp6uu7srsa +2025-06-18T14:23:25.581Z [INFO] payment-service - Auth event: logout - User: user_1026 - IP: 192.168.170.215 - RequestID: h8xl9osv7cd +2025-06-18T14:23:25.681Z [TRACE] payment-service - Auth event: logout - User: user_1031 - IP: 192.168.235.117 - RequestID: lc23ph3z0t +2025-06-18T14:23:25.781Z [DEBUG] order-service - Auth event: login_success - User: user_1046 - IP: 192.168.33.76 - RequestID: aafac3j8ete +2025-06-18T14:23:25.881Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 680ms - RequestID: iv4cbvtwdgh +2025-06-18T14:23:25.981Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 464ms - IP: 192.168.229.123 - User: user_1022 - RequestID: kbn2wl83ngl +2025-06-18T14:23:26.081Z [TRACE] payment-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.10.184 - RequestID: 1ezj1uh5ubw +2025-06-18T14:23:26.181Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 57ms - Rows affected: 77 - RequestID: zz0goenfkek +2025-06-18T14:23:26.281Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1428ms - IP: 192.168.141.100 - User: user_1073 - RequestID: i5q5nueio1 +2025-06-18T14:23:26.381Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1907ms - IP: 192.168.10.184 - User: user_1004 - RequestID: c357jwt6e0t +2025-06-18T14:23:26.481Z [DEBUG] user-service - Operation: payment_processed - Processing time: 101ms - RequestID: 3vs8kk56k2m +2025-06-18T14:23:26.581Z [DEBUG] user-service - PUT /api/v1/orders - Status: 401 - Response time: 1609ms - IP: 192.168.113.218 - User: user_1050 - RequestID: f8nmsqlzsm +2025-06-18T14:23:26.681Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 73ms - RequestID: jp1pg0baxj +2025-06-18T14:23:26.781Z [INFO] order-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.32.38 - RequestID: qv3zpa9egjs +2025-06-18T14:23:26.881Z [INFO] auth-service - Operation: inventory_updated - Processing time: 980ms - RequestID: gwepfe6hf7t +2025-06-18T14:23:26.981Z [TRACE] auth-service - Database INSERT on products - Execution time: 20ms - Rows affected: 41 - RequestID: ph00gkypnen +2025-06-18T14:23:27.081Z [INFO] user-service - Database DELETE on payments - Execution time: 87ms - Rows affected: 20 - RequestID: 91jh20oyx9d +2025-06-18T14:23:27.181Z [TRACE] inventory-service - Database INSERT on products - Execution time: 78ms - Rows affected: 3 - RequestID: ae6jl5zfnf7 +2025-06-18T14:23:27.281Z [TRACE] notification-service - Auth event: login_failed - User: user_1082 - IP: 192.168.36.218 - RequestID: x4lqfstg8l +2025-06-18T14:23:27.381Z [INFO] inventory-service - Operation: email_sent - Processing time: 288ms - RequestID: u26p5jaj9zi +2025-06-18T14:23:27.481Z [TRACE] order-service - Operation: order_created - Processing time: 452ms - RequestID: gw67tmsp0bq +2025-06-18T14:23:27.581Z [INFO] auth-service - Auth event: login_failed - User: user_1039 - IP: 192.168.242.165 - RequestID: 7axplxd9ri5 +2025-06-18T14:23:27.681Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 61ms - IP: 192.168.79.116 - User: user_1075 - RequestID: uwmeed1vhd8 +2025-06-18T14:23:27.781Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 586ms - RequestID: gazhoohgdw +2025-06-18T14:23:27.881Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1067ms - IP: 192.168.247.134 - User: user_1010 - RequestID: yatrnxk6edb +2025-06-18T14:23:27.981Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 221ms - Rows affected: 85 - RequestID: r4nvg535e9d +2025-06-18T14:23:28.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1013 - IP: 192.168.158.144 - RequestID: tyc697f4kf +2025-06-18T14:23:28.181Z [INFO] inventory-service - Operation: cache_hit - Processing time: 782ms - RequestID: f8lli058zsu +2025-06-18T14:23:28.281Z [DEBUG] notification-service - GET /api/v1/payments - Status: 200 - Response time: 371ms - IP: 192.168.13.72 - User: user_1032 - RequestID: 12kz4eqqfqf +2025-06-18T14:23:28.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 486ms - RequestID: hd3yktdndgk +2025-06-18T14:23:28.481Z [INFO] notification-service - Database INSERT on products - Execution time: 185ms - Rows affected: 79 - RequestID: tp86yg527u +2025-06-18T14:23:28.581Z [TRACE] auth-service - Operation: order_created - Processing time: 553ms - RequestID: zglpv64g27 +2025-06-18T14:23:28.681Z [TRACE] auth-service - Database DELETE on orders - Execution time: 459ms - Rows affected: 77 - RequestID: txmxg8hv6ph +2025-06-18T14:23:28.781Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 404 - Response time: 773ms - IP: 192.168.79.143 - User: user_1004 - RequestID: q7lu1khfpp +2025-06-18T14:23:28.881Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.79.116 - RequestID: vmgs3kcqpmi +2025-06-18T14:23:28.981Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 201 - Response time: 1082ms - IP: 192.168.232.72 - User: user_1058 - RequestID: 5sxxcjnlqox +2025-06-18T14:23:29.081Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 566ms - RequestID: vfxsm7lbta +2025-06-18T14:23:29.181Z [INFO] auth-service - Operation: cache_hit - Processing time: 125ms - RequestID: qj9k2h21mfs +2025-06-18T14:23:29.281Z [DEBUG] auth-service - Auth event: login_failed - User: user_1095 - IP: 192.168.147.171 - RequestID: wrsj0xepjg +2025-06-18T14:23:29.381Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 236ms - RequestID: exktmq50rd8 +2025-06-18T14:23:29.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 127ms - RequestID: nx70m9jcr9j +2025-06-18T14:23:29.581Z [TRACE] notification-service - Auth event: logout - User: user_1092 - IP: 192.168.104.37 - RequestID: 2dhvsxwsrax +2025-06-18T14:23:29.681Z [INFO] inventory-service - Database SELECT on orders - Execution time: 135ms - Rows affected: 26 - RequestID: y6zdea8v1ur +2025-06-18T14:23:29.781Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 268ms - Rows affected: 2 - RequestID: vnbhmyebwnq +2025-06-18T14:23:29.881Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 386ms - RequestID: vhmpjuhvl8 +2025-06-18T14:23:29.981Z [DEBUG] order-service - Auth event: login_success - User: user_1007 - IP: 192.168.194.41 - RequestID: 1snjjeinpxfh +2025-06-18T14:23:30.081Z [DEBUG] payment-service - POST /api/v1/orders - Status: 403 - Response time: 1909ms - IP: 192.168.97.87 - User: user_1076 - RequestID: vw1myoeqxw +2025-06-18T14:23:30.181Z [INFO] order-service - Operation: payment_processed - Processing time: 721ms - RequestID: 1b42t97gble +2025-06-18T14:23:30.281Z [TRACE] payment-service - Auth event: password_change - User: user_1039 - IP: 192.168.189.103 - RequestID: 6umjvp9bs64 +2025-06-18T14:23:30.381Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 397ms - RequestID: ii2lrhcge2p +2025-06-18T14:23:30.481Z [INFO] user-service - Database DELETE on sessions - Execution time: 339ms - Rows affected: 99 - RequestID: 6uvdpfqzttq +2025-06-18T14:23:30.581Z [TRACE] notification-service - Database SELECT on users - Execution time: 84ms - Rows affected: 38 - RequestID: lbtgoj1vid +2025-06-18T14:23:30.681Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1398ms - IP: 192.168.1.152 - User: user_1035 - RequestID: vg5ynqiss8 +2025-06-18T14:23:30.781Z [INFO] notification-service - Operation: payment_processed - Processing time: 59ms - RequestID: 64d91mjstsb +2025-06-18T14:23:30.881Z [INFO] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 669ms - IP: 192.168.100.240 - User: user_1062 - RequestID: nrkmvqqs93e +2025-06-18T14:23:30.981Z [TRACE] user-service - Operation: inventory_updated - Processing time: 999ms - RequestID: n516xoewxyi +2025-06-18T14:23:31.081Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 477ms - Rows affected: 76 - RequestID: f86azfklyq6 +2025-06-18T14:23:31.181Z [TRACE] auth-service - Auth event: password_change - User: user_1006 - IP: 192.168.167.32 - RequestID: ic51mbox73d +2025-06-18T14:23:31.281Z [DEBUG] payment-service - Operation: email_sent - Processing time: 978ms - RequestID: 114xpbku6l1r +2025-06-18T14:23:31.381Z [TRACE] user-service - Operation: email_sent - Processing time: 705ms - RequestID: oms2bscsa6 +2025-06-18T14:23:31.481Z [INFO] order-service - Database UPDATE on payments - Execution time: 429ms - Rows affected: 93 - RequestID: v02r2nv3t7 +2025-06-18T14:23:31.581Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 400 - Response time: 923ms - IP: 192.168.79.116 - User: user_1042 - RequestID: r9aowt0gp3b +2025-06-18T14:23:31.681Z [INFO] user-service - Auth event: login_success - User: user_1009 - IP: 192.168.79.143 - RequestID: mpx7y2ts5l +2025-06-18T14:23:31.781Z [INFO] order-service - Auth event: password_change - User: user_1069 - IP: 192.168.79.116 - RequestID: 8axciqybb5w +2025-06-18T14:23:31.881Z [INFO] payment-service - Operation: cache_miss - Processing time: 354ms - RequestID: tuyo1hqx3cc +2025-06-18T14:23:31.981Z [TRACE] order-service - Operation: order_created - Processing time: 567ms - RequestID: civ6j86mmw +2025-06-18T14:23:32.081Z [INFO] auth-service - Operation: order_created - Processing time: 366ms - RequestID: gmzids2hp08 +2025-06-18T14:23:32.181Z [TRACE] payment-service - Auth event: login_success - User: user_1016 - IP: 192.168.211.72 - RequestID: 83iiv4ha8hm +2025-06-18T14:23:32.281Z [TRACE] inventory-service - Auth event: login_success - User: user_1027 - IP: 192.168.100.240 - RequestID: b6ik8au7aq +2025-06-18T14:23:32.381Z [TRACE] notification-service - Auth event: login_success - User: user_1038 - IP: 192.168.159.94 - RequestID: kwm2hfo5yq +2025-06-18T14:23:32.481Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 265ms - Rows affected: 51 - RequestID: jhl9ix0nltb +2025-06-18T14:23:32.581Z [TRACE] order-service - DELETE /api/v1/orders - Status: 400 - Response time: 1107ms - IP: 192.168.232.72 - User: user_1003 - RequestID: sex8rvl3kz +2025-06-18T14:23:32.681Z [TRACE] notification-service - POST /api/v1/inventory - Status: 404 - Response time: 92ms - IP: 192.168.229.123 - User: user_1073 - RequestID: qfm0ijifu08 +2025-06-18T14:23:32.781Z [DEBUG] notification-service - Auth event: login_success - User: user_1065 - IP: 192.168.133.7 - RequestID: 28tu0nu0ia9 +2025-06-18T14:23:32.881Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 403 - Response time: 1534ms - IP: 192.168.36.218 - User: user_1077 - RequestID: iznrk546po +2025-06-18T14:23:32.981Z [TRACE] user-service - PUT /api/v1/users - Status: 200 - Response time: 1272ms - IP: 192.168.53.133 - User: user_1075 - RequestID: 4thfy4i5pz2 +2025-06-18T14:23:33.081Z [TRACE] notification-service - Auth event: logout - User: user_1089 - IP: 192.168.181.225 - RequestID: 32i4kkx58qr +2025-06-18T14:23:33.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1000 - IP: 192.168.31.117 - RequestID: sop2uf57p4m +2025-06-18T14:23:33.281Z [TRACE] auth-service - Database UPDATE on users - Execution time: 209ms - Rows affected: 87 - RequestID: aattyws8aid +2025-06-18T14:23:33.381Z [INFO] inventory-service - GET /api/v1/users - Status: 400 - Response time: 1112ms - IP: 192.168.187.199 - User: user_1048 - RequestID: n41x4sc8cdj +2025-06-18T14:23:33.481Z [INFO] user-service - Operation: payment_processed - Processing time: 798ms - RequestID: l3ujm8dro2a +2025-06-18T14:23:33.581Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 395ms - IP: 192.168.240.169 - User: user_1021 - RequestID: zs1ablxfks +2025-06-18T14:23:33.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1035 - IP: 192.168.64.33 - RequestID: 07u4vbndfk16 +2025-06-18T14:23:33.781Z [INFO] auth-service - Operation: email_sent - Processing time: 245ms - RequestID: r5n7f9ycsuo +2025-06-18T14:23:33.881Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1229ms - IP: 192.168.133.7 - User: user_1029 - RequestID: aw2egwjnszi +2025-06-18T14:23:33.981Z [DEBUG] order-service - Auth event: logout - User: user_1022 - IP: 192.168.85.229 - RequestID: lndaadm64w +2025-06-18T14:23:34.081Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1592ms - IP: 192.168.141.100 - User: user_1009 - RequestID: wq23ygqt3y +2025-06-18T14:23:34.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.79.116 - RequestID: h26h64avm77 +2025-06-18T14:23:34.281Z [DEBUG] payment-service - Auth event: login_success - User: user_1097 - IP: 192.168.170.215 - RequestID: 75j377go84i +2025-06-18T14:23:34.381Z [TRACE] inventory-service - Auth event: login_success - User: user_1036 - IP: 192.168.187.199 - RequestID: zh11kuj3gvj +2025-06-18T14:23:34.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1097 - IP: 192.168.36.218 - RequestID: 72pcnistymj +2025-06-18T14:23:34.581Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 309ms - Rows affected: 47 - RequestID: eajy01nk1za +2025-06-18T14:23:34.681Z [INFO] inventory-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.189.103 - RequestID: f4y72kt9ie8 +2025-06-18T14:23:34.781Z [TRACE] notification-service - Auth event: login_success - User: user_1017 - IP: 192.168.232.72 - RequestID: 1chnb68sp3 +2025-06-18T14:23:34.881Z [INFO] order-service - Operation: email_sent - Processing time: 729ms - RequestID: xtbr33ei4bk +2025-06-18T14:23:34.981Z [INFO] notification-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.31.117 - RequestID: s43r8jugwk +2025-06-18T14:23:35.081Z [DEBUG] user-service - Database SELECT on users - Execution time: 500ms - Rows affected: 68 - RequestID: d6ehkc3ue2 +2025-06-18T14:23:35.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.100.240 - RequestID: 7e8gh5716di +2025-06-18T14:23:35.281Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 271ms - RequestID: dv5wzl4v8ri +2025-06-18T14:23:35.381Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 269ms - Rows affected: 66 - RequestID: 6kq8r8u1aeq +2025-06-18T14:23:35.481Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 201 - Response time: 1134ms - IP: 192.168.79.143 - User: user_1039 - RequestID: t4j9riwwh4f +2025-06-18T14:23:35.581Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 102ms - Rows affected: 14 - RequestID: h412tykmxnr +2025-06-18T14:23:35.681Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 972ms - RequestID: mr2mjqgbrfd +2025-06-18T14:23:35.781Z [INFO] payment-service - Database UPDATE on payments - Execution time: 308ms - Rows affected: 46 - RequestID: ivkzjqfbz4o +2025-06-18T14:23:35.881Z [INFO] order-service - Auth event: logout - User: user_1041 - IP: 192.168.194.41 - RequestID: 62u7126oljb +2025-06-18T14:23:35.981Z [TRACE] user-service - Database SELECT on sessions - Execution time: 140ms - Rows affected: 27 - RequestID: qlnmh8ntuf +2025-06-18T14:23:36.081Z [DEBUG] user-service - Operation: order_created - Processing time: 94ms - RequestID: 5gu4wb9zaog +2025-06-18T14:23:36.181Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 841ms - RequestID: 6dc1skhcdzg +2025-06-18T14:23:36.281Z [TRACE] auth-service - Auth event: logout - User: user_1094 - IP: 192.168.159.94 - RequestID: 7d1ryhk6s0r +2025-06-18T14:23:36.381Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 974ms - RequestID: 2k8f7is9m87 +2025-06-18T14:23:36.481Z [INFO] order-service - Operation: email_sent - Processing time: 200ms - RequestID: mvs2s7lp31 +2025-06-18T14:23:36.581Z [INFO] user-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.36.218 - RequestID: qy8kmecum2 +2025-06-18T14:23:36.681Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 403 - Response time: 669ms - IP: 192.168.229.123 - User: user_1030 - RequestID: bkqdnp7l4l +2025-06-18T14:23:36.781Z [INFO] notification-service - Database DELETE on payments - Execution time: 223ms - Rows affected: 13 - RequestID: uxsz3chljj +2025-06-18T14:23:36.881Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 440ms - RequestID: r18lr8btxvb +2025-06-18T14:23:36.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 565ms - RequestID: u6y4b72ggq +2025-06-18T14:23:37.081Z [DEBUG] order-service - PATCH /api/v1/users - Status: 403 - Response time: 1706ms - IP: 192.168.32.38 - User: user_1045 - RequestID: h5cwie2a5qb +2025-06-18T14:23:37.181Z [TRACE] user-service - PATCH /api/v1/payments - Status: 201 - Response time: 1817ms - IP: 192.168.36.218 - User: user_1003 - RequestID: prhiy8msjqc +2025-06-18T14:23:37.281Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 87ms - Rows affected: 33 - RequestID: 5bre21t6c2d +2025-06-18T14:23:37.381Z [DEBUG] user-service - Database INSERT on products - Execution time: 471ms - Rows affected: 7 - RequestID: yep24z21iyd +2025-06-18T14:23:37.481Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1804ms - IP: 192.168.167.32 - User: user_1058 - RequestID: y4qf0l1frya +2025-06-18T14:23:37.581Z [DEBUG] auth-service - GET /api/v1/payments - Status: 400 - Response time: 240ms - IP: 192.168.68.128 - User: user_1037 - RequestID: fs1ixnppmpb +2025-06-18T14:23:37.681Z [INFO] inventory-service - Auth event: logout - User: user_1084 - IP: 192.168.211.72 - RequestID: tpqti391evh +2025-06-18T14:23:37.781Z [TRACE] notification-service - PATCH /api/v1/users - Status: 201 - Response time: 1580ms - IP: 192.168.170.215 - User: user_1065 - RequestID: 47p8kjwp7ii +2025-06-18T14:23:37.881Z [DEBUG] notification-service - Operation: email_sent - Processing time: 159ms - RequestID: xn5pnfg98ml +2025-06-18T14:23:37.981Z [DEBUG] order-service - Operation: cache_hit - Processing time: 925ms - RequestID: 1knnt5eah3k +2025-06-18T14:23:38.081Z [TRACE] auth-service - Database INSERT on products - Execution time: 347ms - Rows affected: 13 - RequestID: qbciuxak0ab +2025-06-18T14:23:38.181Z [INFO] user-service - POST /api/v1/auth/login - Status: 502 - Response time: 148ms - IP: 192.168.174.114 - User: user_1043 - RequestID: co13u9y21b6 +2025-06-18T14:23:38.281Z [TRACE] auth-service - Operation: cache_hit - Processing time: 636ms - RequestID: ie1rm0pzt6a +2025-06-18T14:23:38.381Z [INFO] user-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.247.134 - RequestID: 889vxz6f8og +2025-06-18T14:23:38.481Z [INFO] auth-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.79.143 - RequestID: dmo738n9rqn +2025-06-18T14:23:38.581Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 452ms - Rows affected: 52 - RequestID: 2dz6rgls6wp +2025-06-18T14:23:38.681Z [INFO] notification-service - Operation: cache_miss - Processing time: 873ms - RequestID: j967g7emlue +2025-06-18T14:23:38.781Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1353ms - IP: 192.168.32.38 - User: user_1046 - RequestID: gel636t9yzr +2025-06-18T14:23:38.881Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 915ms - RequestID: u8robwd7sh +2025-06-18T14:23:38.981Z [INFO] notification-service - Database INSERT on sessions - Execution time: 485ms - Rows affected: 89 - RequestID: jid7ixj4xh9 +2025-06-18T14:23:39.081Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.147.171 - RequestID: uyeaipqdozp +2025-06-18T14:23:39.181Z [DEBUG] user-service - Database DELETE on users - Execution time: 494ms - Rows affected: 9 - RequestID: srdcn9r46bj +2025-06-18T14:23:39.281Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 201 - Response time: 319ms - IP: 192.168.147.171 - User: user_1050 - RequestID: p2uhx1gpup +2025-06-18T14:23:39.381Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 191ms - Rows affected: 53 - RequestID: bx0h7v2ss8t +2025-06-18T14:23:39.481Z [DEBUG] notification-service - Auth event: login_failed - User: user_1008 - IP: 192.168.104.37 - RequestID: y01g50g2mcl +2025-06-18T14:23:39.581Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 270ms - RequestID: 8dufdnb2kqg +2025-06-18T14:23:39.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 544ms - RequestID: dgq147tdoom +2025-06-18T14:23:39.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.13.72 - RequestID: ax1qom539j +2025-06-18T14:23:39.881Z [DEBUG] notification-service - Auth event: logout - User: user_1070 - IP: 192.168.100.240 - RequestID: 89abuytqhk +2025-06-18T14:23:39.981Z [TRACE] auth-service - Database SELECT on payments - Execution time: 383ms - Rows affected: 82 - RequestID: vj4jpshi2e +2025-06-18T14:23:40.081Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 384ms - Rows affected: 29 - RequestID: orlltrxnmag +2025-06-18T14:23:40.181Z [INFO] user-service - GET /api/v1/payments - Status: 404 - Response time: 655ms - IP: 192.168.227.77 - User: user_1000 - RequestID: zwppbsaf4r +2025-06-18T14:23:40.281Z [TRACE] notification-service - POST /api/v1/users - Status: 503 - Response time: 552ms - IP: 192.168.170.215 - User: user_1042 - RequestID: q0q55964lqh +2025-06-18T14:23:40.381Z [TRACE] order-service - Operation: email_sent - Processing time: 691ms - RequestID: q02ra6n4rx8 +2025-06-18T14:23:40.481Z [TRACE] auth-service - Database DELETE on users - Execution time: 70ms - Rows affected: 42 - RequestID: 8ay7onmevsn +2025-06-18T14:23:40.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 990ms - RequestID: m62qyrkusx +2025-06-18T14:23:40.681Z [DEBUG] auth-service - Database DELETE on products - Execution time: 444ms - Rows affected: 70 - RequestID: vlwn9c2mly +2025-06-18T14:23:40.781Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 394ms - IP: 192.168.14.77 - User: user_1089 - RequestID: z926wbrrc8 +2025-06-18T14:23:40.881Z [TRACE] notification-service - PATCH /api/v1/users - Status: 503 - Response time: 132ms - IP: 192.168.144.38 - User: user_1085 - RequestID: j7s1590fssf +2025-06-18T14:23:40.981Z [DEBUG] auth-service - Operation: order_created - Processing time: 913ms - RequestID: 9eee04jerfd +2025-06-18T14:23:41.081Z [DEBUG] order-service - GET /api/v1/orders - Status: 200 - Response time: 381ms - IP: 192.168.79.116 - User: user_1062 - RequestID: p88xcn755r +2025-06-18T14:23:41.181Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 282ms - Rows affected: 39 - RequestID: 0tsxnnp537ch +2025-06-18T14:23:41.281Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 1012ms - RequestID: aw8iuyfzxmm +2025-06-18T14:23:41.381Z [INFO] notification-service - Operation: payment_processed - Processing time: 499ms - RequestID: 6h1t717urd5 +2025-06-18T14:23:41.481Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 346ms - RequestID: kqsr6msavci +2025-06-18T14:23:41.581Z [TRACE] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 316ms - IP: 192.168.229.123 - User: user_1076 - RequestID: vuvsu7f9c5 +2025-06-18T14:23:41.681Z [TRACE] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 1114ms - IP: 192.168.227.233 - User: user_1071 - RequestID: sroncqpuclh +2025-06-18T14:23:41.781Z [TRACE] payment-service - Auth event: login_success - User: user_1042 - IP: 192.168.10.184 - RequestID: 446ny4u73km +2025-06-18T14:23:41.881Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 370ms - RequestID: m4ovkvay4hc +2025-06-18T14:23:41.981Z [TRACE] auth-service - GET /api/v1/inventory - Status: 403 - Response time: 350ms - IP: 192.168.235.117 - User: user_1075 - RequestID: 8w8kgdoc7uo +2025-06-18T14:23:42.081Z [INFO] payment-service - Operation: email_sent - Processing time: 504ms - RequestID: 22lfpxkjhiz +2025-06-18T14:23:42.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.53.133 - RequestID: 7rd95j9i5od +2025-06-18T14:23:42.281Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 1016ms - RequestID: mz6xs4kltk +2025-06-18T14:23:42.381Z [INFO] notification-service - Auth event: login_success - User: user_1096 - IP: 192.168.189.103 - RequestID: 8b53mn2ghsx +2025-06-18T14:23:42.481Z [INFO] user-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.46.63 - RequestID: fvry9vlga7i +2025-06-18T14:23:42.581Z [TRACE] order-service - Auth event: logout - User: user_1013 - IP: 192.168.240.169 - RequestID: 3vdi7i3n9ak +2025-06-18T14:23:42.681Z [INFO] auth-service - Auth event: login_success - User: user_1056 - IP: 192.168.85.229 - RequestID: q1rg9j1f6vc +2025-06-18T14:23:42.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 104ms - RequestID: qaj62tgrskg +2025-06-18T14:23:42.881Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 401ms - IP: 192.168.85.229 - User: user_1079 - RequestID: zswjhiv1mwn +2025-06-18T14:23:42.981Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 550ms - RequestID: 6ixxqprqd2w +2025-06-18T14:23:43.081Z [DEBUG] order-service - Database DELETE on orders - Execution time: 358ms - Rows affected: 79 - RequestID: ens4sqeypn +2025-06-18T14:23:43.181Z [TRACE] payment-service - Operation: order_created - Processing time: 613ms - RequestID: q04omssanlq +2025-06-18T14:23:43.281Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1639ms - IP: 192.168.11.60 - User: user_1049 - RequestID: yauadjcjop +2025-06-18T14:23:43.381Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 263ms - Rows affected: 6 - RequestID: hy06d02bani +2025-06-18T14:23:43.481Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 528ms - RequestID: au9jp823a36 +2025-06-18T14:23:43.581Z [TRACE] user-service - Auth event: logout - User: user_1091 - IP: 192.168.158.144 - RequestID: gfw4ydtt65g +2025-06-18T14:23:43.681Z [INFO] payment-service - Database INSERT on products - Execution time: 66ms - Rows affected: 13 - RequestID: ag3nlb2ufdh +2025-06-18T14:23:43.781Z [INFO] notification-service - Auth event: logout - User: user_1007 - IP: 192.168.36.218 - RequestID: 2wyjck4v4ml +2025-06-18T14:23:43.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1019 - IP: 192.168.79.143 - RequestID: 5om3f0taj26 +2025-06-18T14:23:43.981Z [INFO] payment-service - PUT /api/v1/inventory - Status: 401 - Response time: 1080ms - IP: 192.168.235.117 - User: user_1007 - RequestID: tq1n0m36xpc +2025-06-18T14:23:44.081Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 23ms - Rows affected: 90 - RequestID: xcood7lwyqh +2025-06-18T14:23:44.181Z [TRACE] notification-service - Auth event: login_success - User: user_1034 - IP: 192.168.167.32 - RequestID: 34z2sx7jibz +2025-06-18T14:23:44.281Z [DEBUG] payment-service - Auth event: logout - User: user_1070 - IP: 192.168.235.117 - RequestID: zkuvwn4rrtk +2025-06-18T14:23:44.381Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 201 - Response time: 1971ms - IP: 192.168.227.233 - User: user_1036 - RequestID: 77y3bmvof7o +2025-06-18T14:23:44.481Z [DEBUG] user-service - Database INSERT on payments - Execution time: 420ms - Rows affected: 0 - RequestID: 3496uxcq8c2 +2025-06-18T14:23:44.581Z [DEBUG] auth-service - Operation: order_created - Processing time: 299ms - RequestID: s0dogatjxwi +2025-06-18T14:23:44.681Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 343ms - Rows affected: 41 - RequestID: qpp4c0169s +2025-06-18T14:23:44.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 282ms - RequestID: szk9vmz14j +2025-06-18T14:23:44.881Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 582ms - RequestID: wil78dbpexp +2025-06-18T14:23:44.981Z [INFO] user-service - Database UPDATE on users - Execution time: 115ms - Rows affected: 43 - RequestID: 0tm5pk9rfkin +2025-06-18T14:23:45.081Z [DEBUG] inventory-service - Auth event: logout - User: user_1053 - IP: 192.168.81.206 - RequestID: gwkaq06v7mf +2025-06-18T14:23:45.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1067 - IP: 192.168.194.41 - RequestID: 1xsf1qkaydj +2025-06-18T14:23:45.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 434ms - RequestID: 0qug8tofqka +2025-06-18T14:23:45.381Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 192ms - RequestID: 9rtp6ah3idk +2025-06-18T14:23:45.481Z [INFO] order-service - GET /api/v1/users - Status: 403 - Response time: 361ms - IP: 192.168.240.169 - User: user_1025 - RequestID: vpdknmqw12d +2025-06-18T14:23:45.581Z [INFO] order-service - Operation: order_created - Processing time: 467ms - RequestID: v8bpbq3rol +2025-06-18T14:23:45.681Z [INFO] user-service - Operation: order_created - Processing time: 299ms - RequestID: 4mbww19mtjg +2025-06-18T14:23:45.781Z [INFO] order-service - Operation: cache_hit - Processing time: 804ms - RequestID: uocg3w43a5 +2025-06-18T14:23:45.881Z [TRACE] order-service - GET /api/v1/orders - Status: 200 - Response time: 703ms - IP: 192.168.85.229 - User: user_1082 - RequestID: xqsd9orva2o +2025-06-18T14:23:45.981Z [TRACE] order-service - Auth event: logout - User: user_1032 - IP: 192.168.13.72 - RequestID: 0kbedjtiek7 +2025-06-18T14:23:46.081Z [INFO] user-service - Database INSERT on products - Execution time: 205ms - Rows affected: 54 - RequestID: mdaio46z6tp +2025-06-18T14:23:46.181Z [TRACE] order-service - Auth event: logout - User: user_1055 - IP: 192.168.31.117 - RequestID: 3jbs5h83d9e +2025-06-18T14:23:46.281Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 1004ms - RequestID: 9jncrodfgqo +2025-06-18T14:23:46.381Z [DEBUG] order-service - Operation: order_created - Processing time: 975ms - RequestID: gc40ww481rv +2025-06-18T14:23:46.481Z [INFO] notification-service - Database INSERT on payments - Execution time: 143ms - Rows affected: 3 - RequestID: nsuyytq5j9 +2025-06-18T14:23:46.581Z [INFO] auth-service - Operation: inventory_updated - Processing time: 73ms - RequestID: a73dr58vit9 +2025-06-18T14:23:46.681Z [TRACE] order-service - Database SELECT on products - Execution time: 3ms - Rows affected: 17 - RequestID: cu2rn2gunym +2025-06-18T14:23:46.781Z [INFO] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 1312ms - IP: 192.168.144.38 - User: user_1005 - RequestID: vrbzix30sje +2025-06-18T14:23:46.881Z [DEBUG] user-service - Database INSERT on payments - Execution time: 206ms - Rows affected: 28 - RequestID: hojrho0ow7n +2025-06-18T14:23:46.981Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 178ms - Rows affected: 79 - RequestID: comi75uo4vh +2025-06-18T14:23:47.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1041 - IP: 192.168.158.144 - RequestID: chbhn52p01 +2025-06-18T14:23:47.181Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 313ms - IP: 192.168.147.171 - User: user_1079 - RequestID: 3tu7snnyx2i +2025-06-18T14:23:47.281Z [TRACE] notification-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.247.134 - RequestID: 7gbygrjs71l +2025-06-18T14:23:47.381Z [INFO] inventory-service - Database SELECT on orders - Execution time: 185ms - Rows affected: 57 - RequestID: 9yketzai1x +2025-06-18T14:23:47.481Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1724ms - IP: 192.168.68.128 - User: user_1007 - RequestID: zq19momrstf +2025-06-18T14:23:47.581Z [INFO] notification-service - Auth event: logout - User: user_1079 - IP: 192.168.36.218 - RequestID: wreirwdnv0b +2025-06-18T14:23:47.681Z [DEBUG] order-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.174.114 - RequestID: tsohd3ije8 +2025-06-18T14:23:47.781Z [DEBUG] user-service - Auth event: login_success - User: user_1003 - IP: 192.168.158.144 - RequestID: 3blq2lvbqnn +2025-06-18T14:23:47.881Z [INFO] notification-service - GET /api/v1/orders - Status: 403 - Response time: 1137ms - IP: 192.168.187.199 - User: user_1008 - RequestID: vv95t65leeg +2025-06-18T14:23:47.981Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 201 - Response time: 1325ms - IP: 192.168.79.143 - User: user_1039 - RequestID: gm9i334zybd +2025-06-18T14:23:48.081Z [TRACE] order-service - Database UPDATE on orders - Execution time: 332ms - Rows affected: 62 - RequestID: 0a5a30xio18c +2025-06-18T14:23:48.181Z [INFO] inventory-service - Operation: order_created - Processing time: 183ms - RequestID: cfwrmzzw0sl +2025-06-18T14:23:48.281Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1684ms - IP: 192.168.68.158 - User: user_1014 - RequestID: knybr59wws +2025-06-18T14:23:48.381Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 301ms - Rows affected: 45 - RequestID: b84ekm4ypeg +2025-06-18T14:23:48.481Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 200 - Response time: 923ms - IP: 192.168.79.116 - User: user_1087 - RequestID: sqsz1ho4jn +2025-06-18T14:23:48.581Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.81.206 - RequestID: oy56vjf6d3o +2025-06-18T14:23:48.681Z [INFO] notification-service - Operation: payment_processed - Processing time: 342ms - RequestID: ednh0609o9 +2025-06-18T14:23:48.781Z [TRACE] user-service - DELETE /api/v1/orders - Status: 403 - Response time: 992ms - IP: 192.168.32.38 - User: user_1008 - RequestID: ix008xzi9mh +2025-06-18T14:23:48.881Z [TRACE] notification-service - GET /api/v1/auth/login - Status: 404 - Response time: 1230ms - IP: 192.168.46.63 - User: user_1064 - RequestID: 0y81ufyx8im +2025-06-18T14:23:48.981Z [INFO] payment-service - PUT /api/v1/payments - Status: 400 - Response time: 962ms - IP: 192.168.33.76 - User: user_1057 - RequestID: quu71ch24hb +2025-06-18T14:23:49.081Z [TRACE] order-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.81.206 - RequestID: 0nxj0dj5vnmi +2025-06-18T14:23:49.181Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 3ms - Rows affected: 38 - RequestID: 7kxnekohbw +2025-06-18T14:23:49.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 1003ms - RequestID: 3hexra31fh3 +2025-06-18T14:23:49.381Z [INFO] notification-service - Operation: email_sent - Processing time: 766ms - RequestID: ec2jaeuh5lj +2025-06-18T14:23:49.481Z [INFO] order-service - Database UPDATE on payments - Execution time: 339ms - Rows affected: 22 - RequestID: a2bs6uwqci +2025-06-18T14:23:49.581Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 61ms - Rows affected: 34 - RequestID: y8c7sz1d0a +2025-06-18T14:23:49.681Z [DEBUG] user-service - Auth event: login_success - User: user_1002 - IP: 192.168.31.117 - RequestID: op998fp3stn +2025-06-18T14:23:49.781Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1989ms - IP: 192.168.229.123 - User: user_1061 - RequestID: 7l4pzaoj3ux +2025-06-18T14:23:49.881Z [INFO] user-service - GET /api/v1/payments - Status: 404 - Response time: 1423ms - IP: 192.168.44.5 - User: user_1093 - RequestID: lvx41hukx3 +2025-06-18T14:23:49.981Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1268ms - IP: 192.168.104.37 - User: user_1019 - RequestID: u8y6o95myt +2025-06-18T14:23:50.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.13.72 - RequestID: ix7dymowipa +2025-06-18T14:23:50.181Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 979ms - RequestID: soihf2n8ycq +2025-06-18T14:23:50.281Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 105ms - Rows affected: 45 - RequestID: ag0r2l8wwkj +2025-06-18T14:23:50.381Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1271ms - IP: 192.168.79.143 - User: user_1024 - RequestID: zc0yjmbs5pi +2025-06-18T14:23:50.481Z [TRACE] order-service - Database UPDATE on products - Execution time: 169ms - Rows affected: 98 - RequestID: a9jo6ecurvm +2025-06-18T14:23:50.581Z [INFO] notification-service - POST /api/v1/inventory - Status: 503 - Response time: 1672ms - IP: 192.168.147.171 - User: user_1063 - RequestID: tbqo0m6bm1 +2025-06-18T14:23:50.681Z [TRACE] auth-service - Auth event: logout - User: user_1077 - IP: 192.168.46.63 - RequestID: mimjrpgijqc +2025-06-18T14:23:50.781Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 578ms - RequestID: i0gf23axlj8 +2025-06-18T14:23:50.881Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.170.215 - RequestID: wy69678ald +2025-06-18T14:23:50.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.247.134 - RequestID: t95icpb4dpa +2025-06-18T14:23:51.081Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 220ms - Rows affected: 24 - RequestID: lkc34tm678c +2025-06-18T14:23:51.181Z [TRACE] inventory-service - Auth event: login_failed - User: user_1025 - IP: 192.168.113.218 - RequestID: souyxnqsim +2025-06-18T14:23:51.281Z [TRACE] order-service - Operation: email_sent - Processing time: 491ms - RequestID: uzpgmwi1eyq +2025-06-18T14:23:51.381Z [INFO] notification-service - Database UPDATE on users - Execution time: 54ms - Rows affected: 65 - RequestID: bcrxfuxvbos +2025-06-18T14:23:51.481Z [INFO] payment-service - DELETE /api/v1/payments - Status: 403 - Response time: 655ms - IP: 192.168.147.171 - User: user_1048 - RequestID: zsok9zjmf3 +2025-06-18T14:23:51.581Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 404 - Response time: 718ms - IP: 192.168.13.72 - User: user_1068 - RequestID: yoyrs29ilfs +2025-06-18T14:23:51.681Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 420ms - Rows affected: 90 - RequestID: 082j3opz852 +2025-06-18T14:23:51.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1064 - IP: 192.168.247.134 - RequestID: 8sln85a7gd9 +2025-06-18T14:23:51.881Z [INFO] order-service - Database DELETE on users - Execution time: 366ms - Rows affected: 33 - RequestID: chicmpn4sa6 +2025-06-18T14:23:51.981Z [INFO] payment-service - GET /api/v1/orders - Status: 404 - Response time: 1342ms - IP: 192.168.194.41 - User: user_1036 - RequestID: ktvhhnjzarf +2025-06-18T14:23:52.081Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 950ms - IP: 192.168.187.199 - User: user_1073 - RequestID: ftwup5476hw +2025-06-18T14:23:52.181Z [INFO] auth-service - Auth event: login_failed - User: user_1054 - IP: 192.168.11.60 - RequestID: x9488grrfv +2025-06-18T14:23:52.281Z [TRACE] user-service - Auth event: logout - User: user_1041 - IP: 192.168.64.33 - RequestID: vbxlkd9fzt +2025-06-18T14:23:52.381Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1377ms - IP: 192.168.68.158 - User: user_1068 - RequestID: xys884zn9z +2025-06-18T14:23:52.481Z [DEBUG] order-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.189.103 - RequestID: u4dlnajtlje +2025-06-18T14:23:52.581Z [TRACE] notification-service - Auth event: password_change - User: user_1007 - IP: 192.168.211.72 - RequestID: a45cz2fvd84 +2025-06-18T14:23:52.681Z [TRACE] user-service - GET /api/v1/inventory - Status: 503 - Response time: 1656ms - IP: 192.168.81.206 - User: user_1042 - RequestID: 3ksk8n15zjb +2025-06-18T14:23:52.781Z [DEBUG] user-service - GET /api/v1/payments - Status: 201 - Response time: 1958ms - IP: 192.168.167.32 - User: user_1011 - RequestID: o5lqj7tm7vm +2025-06-18T14:23:52.881Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 588ms - RequestID: 4u335402oz9 +2025-06-18T14:23:52.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1076 - IP: 192.168.235.117 - RequestID: f8ge91r85al +2025-06-18T14:23:53.081Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1653ms - IP: 192.168.53.133 - User: user_1015 - RequestID: 0bn2xt06cb3n +2025-06-18T14:23:53.181Z [INFO] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1135ms - IP: 192.168.159.94 - User: user_1005 - RequestID: aegkt3e0mae +2025-06-18T14:23:53.281Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 92ms - IP: 192.168.227.77 - User: user_1042 - RequestID: 1geuoxcherl +2025-06-18T14:23:53.381Z [INFO] order-service - Operation: notification_queued - Processing time: 67ms - RequestID: b98v4owa5qo +2025-06-18T14:23:53.481Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 491ms - Rows affected: 43 - RequestID: muftthuwz4h +2025-06-18T14:23:53.581Z [TRACE] auth-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.31.117 - RequestID: 8b5ko3jfhdx +2025-06-18T14:23:53.681Z [TRACE] user-service - Operation: order_created - Processing time: 894ms - RequestID: t1v1zhlow8 +2025-06-18T14:23:53.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.211.72 - RequestID: oxbrdnkh27 +2025-06-18T14:23:53.881Z [INFO] user-service - GET /api/v1/inventory - Status: 503 - Response time: 1048ms - IP: 192.168.170.215 - User: user_1042 - RequestID: iq6b0xes4f +2025-06-18T14:23:53.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1064 - IP: 192.168.53.133 - RequestID: e6f7wcdylei +2025-06-18T14:23:54.081Z [INFO] notification-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.227.77 - RequestID: uhibhlv9ibs +2025-06-18T14:23:54.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.174.114 - RequestID: o6xuqki5ue +2025-06-18T14:23:54.281Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 253ms - IP: 192.168.187.199 - User: user_1025 - RequestID: pinp6fa92wn +2025-06-18T14:23:54.381Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1046ms - RequestID: jx4w0cqzl7f +2025-06-18T14:23:54.481Z [DEBUG] user-service - Operation: notification_queued - Processing time: 512ms - RequestID: 0jhkfvg4t8br +2025-06-18T14:23:54.581Z [TRACE] payment-service - Database DELETE on orders - Execution time: 405ms - Rows affected: 62 - RequestID: 51k6ja6k5kl +2025-06-18T14:23:54.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 514ms - RequestID: s4kzm46xc1 +2025-06-18T14:23:54.781Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.32.38 - RequestID: k1w79rjf82i +2025-06-18T14:23:54.881Z [TRACE] notification-service - Auth event: login_success - User: user_1062 - IP: 192.168.100.240 - RequestID: m1z5i1u8uwk +2025-06-18T14:23:54.981Z [TRACE] order-service - Operation: email_sent - Processing time: 259ms - RequestID: 7fiibtm5jtc +2025-06-18T14:23:55.081Z [INFO] order-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.167.32 - RequestID: wk04tfreuxo +2025-06-18T14:23:55.181Z [INFO] auth-service - Database DELETE on sessions - Execution time: 239ms - Rows affected: 59 - RequestID: wbbpfpcy8q +2025-06-18T14:23:55.281Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 1664ms - IP: 192.168.211.72 - User: user_1052 - RequestID: yaeojnjio3a +2025-06-18T14:23:55.381Z [INFO] order-service - Operation: payment_processed - Processing time: 611ms - RequestID: vfqtyx1e5bg +2025-06-18T14:23:55.481Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 49ms - Rows affected: 87 - RequestID: dfyz5zauk5n +2025-06-18T14:23:55.581Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1178ms - IP: 192.168.11.60 - User: user_1084 - RequestID: o3295vv1sh +2025-06-18T14:23:55.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.189.103 - RequestID: i7s4p460x1a +2025-06-18T14:23:55.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.242.165 - RequestID: e2prssj7zc +2025-06-18T14:23:55.881Z [INFO] order-service - Database UPDATE on products - Execution time: 289ms - Rows affected: 51 - RequestID: 5yzayyytca +2025-06-18T14:23:55.981Z [INFO] auth-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.141.100 - RequestID: zy4sgmdduhq +2025-06-18T14:23:56.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.68.128 - RequestID: vqcl1qao8ni +2025-06-18T14:23:56.181Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 443ms - Rows affected: 70 - RequestID: 7nsvk0d3nun +2025-06-18T14:23:56.281Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 628ms - RequestID: tcuk3lukco +2025-06-18T14:23:56.381Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1309ms - IP: 192.168.174.114 - User: user_1012 - RequestID: qalj5haumab +2025-06-18T14:23:56.481Z [DEBUG] order-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.33.76 - RequestID: nptrr2b1k9p +2025-06-18T14:23:56.581Z [INFO] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 39ms - IP: 192.168.147.171 - User: user_1047 - RequestID: xo4mpcbmze +2025-06-18T14:23:56.681Z [TRACE] user-service - Operation: cache_miss - Processing time: 536ms - RequestID: 7fuz2qyldkl +2025-06-18T14:23:56.781Z [TRACE] auth-service - Operation: cache_hit - Processing time: 535ms - RequestID: pfw9gzvtnc +2025-06-18T14:23:56.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1075 - IP: 192.168.167.32 - RequestID: b2jovqpwm97 +2025-06-18T14:23:56.981Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 199ms - Rows affected: 69 - RequestID: 6zqhi5huvd5 +2025-06-18T14:23:57.081Z [TRACE] order-service - GET /api/v1/users - Status: 503 - Response time: 1993ms - IP: 192.168.104.37 - User: user_1038 - RequestID: 8dwp6xcs4ji +2025-06-18T14:23:57.181Z [INFO] order-service - Database DELETE on sessions - Execution time: 254ms - Rows affected: 85 - RequestID: 7y10o12fnrg +2025-06-18T14:23:57.281Z [INFO] notification-service - Auth event: login_failed - User: user_1021 - IP: 192.168.247.134 - RequestID: u0p6jbo4 +2025-06-18T14:23:57.381Z [INFO] order-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.13.72 - RequestID: 2oq2c5j9g4q +2025-06-18T14:23:57.481Z [INFO] inventory-service - Database DELETE on products - Execution time: 270ms - Rows affected: 7 - RequestID: i032lp5l7a +2025-06-18T14:23:57.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.170.215 - RequestID: s5mq3jubib +2025-06-18T14:23:57.681Z [TRACE] auth-service - Database DELETE on payments - Execution time: 238ms - Rows affected: 24 - RequestID: ahf27t5lrwu +2025-06-18T14:23:57.781Z [DEBUG] auth-service - Database SELECT on users - Execution time: 406ms - Rows affected: 40 - RequestID: 1c9mn7s2x9a +2025-06-18T14:23:57.881Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 404 - Response time: 495ms - IP: 192.168.68.158 - User: user_1016 - RequestID: gycne99jagd +2025-06-18T14:23:57.981Z [DEBUG] user-service - Auth event: logout - User: user_1047 - IP: 192.168.113.218 - RequestID: 222fub0k123 +2025-06-18T14:23:58.081Z [INFO] user-service - Auth event: login_failed - User: user_1005 - IP: 192.168.227.77 - RequestID: a2gk1livipr +2025-06-18T14:23:58.181Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 233ms - Rows affected: 32 - RequestID: gwy7xie04yo +2025-06-18T14:23:58.281Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 205ms - Rows affected: 86 - RequestID: 3189ij58kso +2025-06-18T14:23:58.381Z [TRACE] notification-service - Operation: notification_queued - Processing time: 233ms - RequestID: cpcrso6l33n +2025-06-18T14:23:58.481Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 416ms - Rows affected: 40 - RequestID: yhaep8hsanl +2025-06-18T14:23:58.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.187.199 - RequestID: ufrucvu53us +2025-06-18T14:23:58.681Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 400 - Response time: 1151ms - IP: 192.168.187.199 - User: user_1071 - RequestID: 0vamjihxbalf +2025-06-18T14:23:58.781Z [INFO] notification-service - Operation: payment_processed - Processing time: 562ms - RequestID: doqdz92qbt5 +2025-06-18T14:23:58.881Z [TRACE] notification-service - Operation: email_sent - Processing time: 438ms - RequestID: x9q93mmsyg +2025-06-18T14:23:58.981Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 876ms - RequestID: db5ilfhjt9w +2025-06-18T14:23:59.081Z [TRACE] inventory-service - Auth event: login_success - User: user_1028 - IP: 192.168.13.72 - RequestID: cybqxspiqs +2025-06-18T14:23:59.181Z [TRACE] auth-service - Operation: cache_hit - Processing time: 468ms - RequestID: cnqhij4r01j +2025-06-18T14:23:59.281Z [TRACE] notification-service - Operation: payment_processed - Processing time: 421ms - RequestID: k2mxmqyss8i +2025-06-18T14:23:59.381Z [DEBUG] order-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.181.225 - RequestID: 0nc4j11emln +2025-06-18T14:23:59.481Z [TRACE] order-service - Auth event: password_change - User: user_1020 - IP: 192.168.247.134 - RequestID: 1av46fza7hii +2025-06-18T14:23:59.581Z [TRACE] payment-service - Auth event: login_failed - User: user_1014 - IP: 192.168.79.143 - RequestID: d5yl5e3aehu +2025-06-18T14:23:59.681Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 409ms - Rows affected: 47 - RequestID: 7o6sv9xoi2h +2025-06-18T14:23:59.781Z [TRACE] user-service - Database DELETE on payments - Execution time: 139ms - Rows affected: 25 - RequestID: 8kb9sjwdui +2025-06-18T14:23:59.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.138.123 - RequestID: lwydu13muq +2025-06-18T14:23:59.981Z [DEBUG] payment-service - Operation: email_sent - Processing time: 65ms - RequestID: p1krpubyxw +2025-06-18T14:24:00.081Z [INFO] order-service - Auth event: logout - User: user_1078 - IP: 192.168.31.117 - RequestID: ywm6npkolmo +2025-06-18T14:24:00.181Z [INFO] auth-service - Operation: inventory_updated - Processing time: 495ms - RequestID: ognl9y3azvn +2025-06-18T14:24:00.281Z [INFO] order-service - PUT /api/v1/orders - Status: 404 - Response time: 1282ms - IP: 192.168.44.5 - User: user_1002 - RequestID: 72lljzccd6i +2025-06-18T14:24:00.381Z [TRACE] user-service - Database INSERT on orders - Execution time: 329ms - Rows affected: 40 - RequestID: 45beu6ar5rg +2025-06-18T14:24:00.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1076 - IP: 192.168.240.169 - RequestID: 0xi9q2l49gyl +2025-06-18T14:24:00.581Z [TRACE] payment-service - Operation: order_created - Processing time: 809ms - RequestID: wtb90ne3r7s +2025-06-18T14:24:00.681Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 688ms - RequestID: 5c3xw9csq8u +2025-06-18T14:24:00.781Z [INFO] notification-service - Operation: cache_hit - Processing time: 156ms - RequestID: j0opx2ssakb +2025-06-18T14:24:00.881Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 1823ms - IP: 192.168.189.103 - User: user_1072 - RequestID: zbxp3y8m0tl +2025-06-18T14:24:00.981Z [DEBUG] user-service - Operation: notification_queued - Processing time: 578ms - RequestID: gl4dvr0q2c6 +2025-06-18T14:24:01.081Z [TRACE] order-service - Auth event: password_change - User: user_1024 - IP: 192.168.30.79 - RequestID: nqpnk0lqc +2025-06-18T14:24:01.181Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1330ms - IP: 192.168.104.37 - User: user_1023 - RequestID: ir4ja9wexnb +2025-06-18T14:24:01.281Z [TRACE] payment-service - Operation: order_created - Processing time: 901ms - RequestID: xkz6hmbu9n +2025-06-18T14:24:01.381Z [INFO] payment-service - Operation: inventory_updated - Processing time: 828ms - RequestID: 7ahl6kkyp2 +2025-06-18T14:24:01.481Z [DEBUG] notification-service - POST /api/v1/orders - Status: 404 - Response time: 706ms - IP: 192.168.1.152 - User: user_1003 - RequestID: 4rl548kfir +2025-06-18T14:24:01.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1038 - IP: 192.168.79.143 - RequestID: 842e9mmw1sr +2025-06-18T14:24:01.681Z [DEBUG] notification-service - Auth event: password_change - User: user_1062 - IP: 192.168.187.199 - RequestID: 4mq4867p4hh +2025-06-18T14:24:01.781Z [TRACE] inventory-service - PUT /api/v1/users - Status: 401 - Response time: 419ms - IP: 192.168.170.215 - User: user_1054 - RequestID: 4yz89aw4ad2 +2025-06-18T14:24:01.881Z [INFO] user-service - Database UPDATE on products - Execution time: 335ms - Rows affected: 78 - RequestID: kxyj06vm4t +2025-06-18T14:24:01.981Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 255ms - Rows affected: 49 - RequestID: a9xxr5cug8b +2025-06-18T14:24:02.081Z [INFO] notification-service - Database DELETE on orders - Execution time: 265ms - Rows affected: 13 - RequestID: zf6it3ajhe +2025-06-18T14:24:02.181Z [TRACE] order-service - DELETE /api/v1/orders - Status: 200 - Response time: 172ms - IP: 192.168.79.141 - User: user_1073 - RequestID: zqdaukxyyi +2025-06-18T14:24:02.281Z [TRACE] auth-service - Database UPDATE on users - Execution time: 379ms - Rows affected: 78 - RequestID: 4buc4wbr6e2 +2025-06-18T14:24:02.381Z [TRACE] order-service - Auth event: password_change - User: user_1034 - IP: 192.168.31.117 - RequestID: vs5cczotin +2025-06-18T14:24:02.481Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1135ms - IP: 192.168.36.218 - User: user_1035 - RequestID: an288ton726 +2025-06-18T14:24:02.581Z [TRACE] user-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.181.225 - RequestID: oqtcxtrvwcn +2025-06-18T14:24:02.681Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 224ms - Rows affected: 79 - RequestID: p0eq6e2lckt +2025-06-18T14:24:02.781Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1784ms - IP: 192.168.229.123 - User: user_1068 - RequestID: gtcrq0xx2av +2025-06-18T14:24:02.881Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 1789ms - IP: 192.168.36.218 - User: user_1093 - RequestID: yqlz9xb0lx8 +2025-06-18T14:24:02.981Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 84ms - Rows affected: 33 - RequestID: n90zqv7inb9 +2025-06-18T14:24:03.081Z [TRACE] order-service - Operation: cache_hit - Processing time: 147ms - RequestID: 171olt4q478 +2025-06-18T14:24:03.181Z [INFO] inventory-service - Operation: cache_miss - Processing time: 469ms - RequestID: ogil5u2fybf +2025-06-18T14:24:03.281Z [INFO] order-service - Operation: order_created - Processing time: 843ms - RequestID: jblnm3njwx +2025-06-18T14:24:03.381Z [TRACE] user-service - Operation: notification_queued - Processing time: 723ms - RequestID: 7chnbizqfno +2025-06-18T14:24:03.481Z [INFO] payment-service - Database INSERT on sessions - Execution time: 61ms - Rows affected: 1 - RequestID: oye4il8by1 +2025-06-18T14:24:03.581Z [TRACE] user-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.31.117 - RequestID: qtqfq70xrt9 +2025-06-18T14:24:03.681Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 236ms - RequestID: ucrxvamw6er +2025-06-18T14:24:03.781Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1450ms - IP: 192.168.104.37 - User: user_1086 - RequestID: 646f11ad7is +2025-06-18T14:24:03.881Z [INFO] payment-service - Operation: webhook_sent - Processing time: 130ms - RequestID: 0t0e8mssbyd +2025-06-18T14:24:03.981Z [INFO] notification-service - Auth event: logout - User: user_1008 - IP: 192.168.247.134 - RequestID: o36yuj7fsc +2025-06-18T14:24:04.081Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 479ms - Rows affected: 8 - RequestID: ak2x4voibx5 +2025-06-18T14:24:04.181Z [TRACE] user-service - Operation: webhook_sent - Processing time: 140ms - RequestID: rl2bg1sxe9 +2025-06-18T14:24:04.281Z [INFO] inventory-service - Database SELECT on users - Execution time: 1ms - Rows affected: 34 - RequestID: 1tfrlai7m7 +2025-06-18T14:24:04.381Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 502 - Response time: 1995ms - IP: 192.168.144.38 - User: user_1011 - RequestID: amb5ox26t7f +2025-06-18T14:24:04.481Z [DEBUG] order-service - Auth event: logout - User: user_1040 - IP: 192.168.104.37 - RequestID: nqvfxfnse6 +2025-06-18T14:24:04.581Z [INFO] notification-service - Operation: notification_queued - Processing time: 802ms - RequestID: 73ushx4e5od +2025-06-18T14:24:04.681Z [DEBUG] order-service - Operation: order_created - Processing time: 591ms - RequestID: llbi30ymfw +2025-06-18T14:24:04.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1015 - IP: 192.168.240.169 - RequestID: 1wr6x4tcc0n +2025-06-18T14:24:04.881Z [INFO] order-service - Database SELECT on payments - Execution time: 299ms - Rows affected: 86 - RequestID: pjel047nbsn +2025-06-18T14:24:04.981Z [DEBUG] payment-service - Operation: order_created - Processing time: 951ms - RequestID: k437ihygiz +2025-06-18T14:24:05.081Z [INFO] payment-service - DELETE /api/v1/payments - Status: 500 - Response time: 1901ms - IP: 192.168.181.225 - User: user_1070 - RequestID: ny0u15fhhl +2025-06-18T14:24:05.181Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 200 - Response time: 498ms - IP: 192.168.46.63 - User: user_1039 - RequestID: ji7wfk5jcj +2025-06-18T14:24:05.281Z [TRACE] order-service - Operation: order_created - Processing time: 227ms - RequestID: qg6hcaxd8lb +2025-06-18T14:24:05.381Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 162ms - Rows affected: 4 - RequestID: 0hgtgqrbd77m +2025-06-18T14:24:05.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.196.226 - RequestID: 2tigbojyg6h +2025-06-18T14:24:05.581Z [TRACE] order-service - Auth event: login_success - User: user_1070 - IP: 192.168.196.226 - RequestID: lby14395vr8 +2025-06-18T14:24:05.681Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 982ms - IP: 192.168.167.32 - User: user_1014 - RequestID: s0fwp98k35e +2025-06-18T14:24:05.781Z [INFO] order-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1861ms - IP: 192.168.100.240 - User: user_1055 - RequestID: pvpe51kupng +2025-06-18T14:24:05.881Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 200 - Response time: 316ms - IP: 192.168.211.72 - User: user_1036 - RequestID: bgsoicsduh +2025-06-18T14:24:05.981Z [INFO] notification-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.187.199 - RequestID: 9ac0nxnb2j +2025-06-18T14:24:06.081Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 503 - Response time: 1242ms - IP: 192.168.167.32 - User: user_1000 - RequestID: 9zb4va4cwgc +2025-06-18T14:24:06.181Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 211ms - IP: 192.168.53.133 - User: user_1092 - RequestID: pa0a6x8med +2025-06-18T14:24:06.281Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1969ms - IP: 192.168.159.94 - User: user_1032 - RequestID: 8m7vs4vt6r +2025-06-18T14:24:06.381Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 200 - Response time: 711ms - IP: 192.168.196.226 - User: user_1055 - RequestID: fbvezjn5rut +2025-06-18T14:24:06.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 272ms - RequestID: dttpp70bmu +2025-06-18T14:24:06.581Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 665ms - RequestID: 33u92b19wm +2025-06-18T14:24:06.681Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.147.171 - RequestID: 0h23xs3flah +2025-06-18T14:24:06.781Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 623ms - RequestID: 49y9tgf1hng +2025-06-18T14:24:06.881Z [INFO] user-service - Auth event: logout - User: user_1004 - IP: 192.168.227.77 - RequestID: x3gj4gyba2 +2025-06-18T14:24:06.981Z [INFO] inventory-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.170.215 - RequestID: j8dtkre6jti +2025-06-18T14:24:07.081Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 38ms - IP: 192.168.227.77 - User: user_1038 - RequestID: k0n1irkc03 +2025-06-18T14:24:07.181Z [DEBUG] payment-service - Auth event: logout - User: user_1048 - IP: 192.168.138.123 - RequestID: 0l79jmr3hh7 +2025-06-18T14:24:07.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.133.7 - RequestID: 4f01ehohhz8 +2025-06-18T14:24:07.381Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 500 - Response time: 1937ms - IP: 192.168.240.169 - User: user_1050 - RequestID: u26xip76yas +2025-06-18T14:24:07.481Z [DEBUG] payment-service - Auth event: login_success - User: user_1064 - IP: 192.168.174.114 - RequestID: 6w0t4flz2hq +2025-06-18T14:24:07.581Z [TRACE] inventory-service - Auth event: login_success - User: user_1074 - IP: 192.168.247.134 - RequestID: tpw6nmt8ixs +2025-06-18T14:24:07.681Z [DEBUG] user-service - Database DELETE on products - Execution time: 253ms - Rows affected: 81 - RequestID: omittzzu6aa +2025-06-18T14:24:07.781Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 460ms - RequestID: lpqc1c16kap +2025-06-18T14:24:07.881Z [INFO] payment-service - Operation: cache_miss - Processing time: 178ms - RequestID: dfszea1opjq +2025-06-18T14:24:07.981Z [TRACE] payment-service - Operation: order_created - Processing time: 316ms - RequestID: vlnlmj2us6 +2025-06-18T14:24:08.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1030 - IP: 192.168.36.218 - RequestID: 1cm7stokhtm +2025-06-18T14:24:08.181Z [INFO] order-service - Operation: cache_hit - Processing time: 606ms - RequestID: zp4tkp8nqw9 +2025-06-18T14:24:08.281Z [INFO] notification-service - Operation: webhook_sent - Processing time: 582ms - RequestID: idcds4tqyga +2025-06-18T14:24:08.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.13.72 - RequestID: 9aefa02afy7 +2025-06-18T14:24:08.481Z [INFO] order-service - PUT /api/v1/orders - Status: 404 - Response time: 245ms - IP: 192.168.174.114 - User: user_1019 - RequestID: h9yihxj2nvi +2025-06-18T14:24:08.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1013 - IP: 192.168.187.199 - RequestID: 5r83nu1a25g +2025-06-18T14:24:08.681Z [INFO] order-service - Database INSERT on sessions - Execution time: 34ms - Rows affected: 6 - RequestID: u5cg634e5cp +2025-06-18T14:24:08.781Z [INFO] inventory-service - Database INSERT on payments - Execution time: 483ms - Rows affected: 1 - RequestID: g6kya6v2crc +2025-06-18T14:24:08.881Z [TRACE] user-service - Auth event: login_failed - User: user_1001 - IP: 192.168.167.32 - RequestID: 20z9gwluzp +2025-06-18T14:24:08.981Z [INFO] inventory-service - Operation: payment_processed - Processing time: 1029ms - RequestID: iz33b48dxfq +2025-06-18T14:24:09.081Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 624ms - IP: 192.168.81.206 - User: user_1050 - RequestID: a1lv2hei15k +2025-06-18T14:24:09.181Z [DEBUG] auth-service - Auth event: login_success - User: user_1051 - IP: 192.168.189.103 - RequestID: xs0wsge3fb +2025-06-18T14:24:09.281Z [TRACE] payment-service - Auth event: login_success - User: user_1027 - IP: 192.168.194.41 - RequestID: 0bwkkezjjsg +2025-06-18T14:24:09.381Z [DEBUG] notification-service - Database INSERT on products - Execution time: 56ms - Rows affected: 28 - RequestID: 8gez3vl0cgk +2025-06-18T14:24:09.481Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 248ms - Rows affected: 33 - RequestID: 8v9ei8ksbyx +2025-06-18T14:24:09.581Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 576ms - RequestID: lk2txofvjm +2025-06-18T14:24:09.681Z [TRACE] user-service - Auth event: login_success - User: user_1045 - IP: 192.168.159.94 - RequestID: zmzfvc0nojn +2025-06-18T14:24:09.781Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 317ms - Rows affected: 13 - RequestID: orpo69kq5 +2025-06-18T14:24:09.881Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1999ms - IP: 192.168.174.114 - User: user_1045 - RequestID: ss4xwijva1h +2025-06-18T14:24:09.981Z [TRACE] order-service - Auth event: logout - User: user_1091 - IP: 192.168.36.218 - RequestID: 0c0jfran3vz4 +2025-06-18T14:24:10.081Z [TRACE] order-service - Database DELETE on users - Execution time: 134ms - Rows affected: 61 - RequestID: d5hipz21izo +2025-06-18T14:24:10.181Z [DEBUG] auth-service - Auth event: login_failed - User: user_1009 - IP: 192.168.167.32 - RequestID: ad7gqu77it +2025-06-18T14:24:10.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 627ms - RequestID: levaixdj4i +2025-06-18T14:24:10.381Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 613ms - IP: 192.168.181.225 - User: user_1037 - RequestID: e6jgymlzu9v +2025-06-18T14:24:10.481Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 815ms - RequestID: 4vd8qqe2l8v +2025-06-18T14:24:10.581Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 324ms - Rows affected: 40 - RequestID: u596fgj0l8t +2025-06-18T14:24:10.681Z [INFO] auth-service - Auth event: logout - User: user_1072 - IP: 192.168.53.133 - RequestID: x2tx6juq9k +2025-06-18T14:24:10.781Z [TRACE] user-service - Operation: order_created - Processing time: 629ms - RequestID: qz0qlydv1e +2025-06-18T14:24:10.881Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 719ms - RequestID: h7mjwf6tyb6 +2025-06-18T14:24:10.981Z [DEBUG] user-service - Database INSERT on products - Execution time: 279ms - Rows affected: 5 - RequestID: io40zyzaqqi +2025-06-18T14:24:11.081Z [TRACE] user-service - DELETE /api/v1/orders - Status: 403 - Response time: 586ms - IP: 192.168.240.169 - User: user_1048 - RequestID: mbgk9f6yrzf +2025-06-18T14:24:11.181Z [TRACE] notification-service - Database DELETE on products - Execution time: 126ms - Rows affected: 78 - RequestID: 3hgzfwz50hk +2025-06-18T14:24:11.281Z [DEBUG] auth-service - Auth event: login_failed - User: user_1038 - IP: 192.168.235.117 - RequestID: 62v5uks2ef9 +2025-06-18T14:24:11.381Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 400 - Response time: 299ms - IP: 192.168.113.218 - User: user_1072 - RequestID: e8hmyxrr83 +2025-06-18T14:24:11.481Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 400 - Response time: 912ms - IP: 192.168.194.41 - User: user_1052 - RequestID: 3z8a5zz7she +2025-06-18T14:24:11.581Z [TRACE] inventory-service - POST /api/v1/payments - Status: 200 - Response time: 414ms - IP: 192.168.247.134 - User: user_1071 - RequestID: nt31quhq7fr +2025-06-18T14:24:11.681Z [INFO] order-service - Auth event: logout - User: user_1094 - IP: 192.168.53.133 - RequestID: or8j1nxlmdp +2025-06-18T14:24:11.781Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 968ms - RequestID: yk8bvn6vo7h +2025-06-18T14:24:11.881Z [INFO] payment-service - Database DELETE on sessions - Execution time: 89ms - Rows affected: 82 - RequestID: asweq0o0jp +2025-06-18T14:24:11.981Z [TRACE] order-service - Auth event: login_failed - User: user_1038 - IP: 192.168.32.38 - RequestID: g3ls84hlonb +2025-06-18T14:24:12.081Z [DEBUG] user-service - Database UPDATE on products - Execution time: 365ms - Rows affected: 54 - RequestID: ljyoe83st9m +2025-06-18T14:24:12.181Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 1419ms - IP: 192.168.227.233 - User: user_1075 - RequestID: n8bti8258sm +2025-06-18T14:24:12.281Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 208ms - Rows affected: 81 - RequestID: dj8bwy3ldyw +2025-06-18T14:24:12.381Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 242ms - Rows affected: 16 - RequestID: 71sc2qp7ltp +2025-06-18T14:24:12.481Z [INFO] notification-service - Database DELETE on orders - Execution time: 486ms - Rows affected: 67 - RequestID: tlwlwq3zpe +2025-06-18T14:24:12.581Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.68.128 - RequestID: uazmmkg260l +2025-06-18T14:24:12.681Z [INFO] user-service - Operation: email_sent - Processing time: 378ms - RequestID: 00zygkmj3fka +2025-06-18T14:24:12.781Z [TRACE] order-service - Operation: webhook_sent - Processing time: 117ms - RequestID: mvbhgup2bd9 +2025-06-18T14:24:12.881Z [TRACE] notification-service - Auth event: logout - User: user_1065 - IP: 192.168.32.38 - RequestID: a54s7nr85dj +2025-06-18T14:24:12.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.196.226 - RequestID: j7xhlaouzc +2025-06-18T14:24:13.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.85.229 - RequestID: ef3vz068zd +2025-06-18T14:24:13.181Z [DEBUG] user-service - Operation: notification_queued - Processing time: 541ms - RequestID: ffi48yn5pnu +2025-06-18T14:24:13.281Z [INFO] order-service - Database SELECT on sessions - Execution time: 260ms - Rows affected: 95 - RequestID: yl4np2irgi +2025-06-18T14:24:13.381Z [INFO] user-service - Operation: notification_queued - Processing time: 951ms - RequestID: 57ottgmce3u +2025-06-18T14:24:13.481Z [DEBUG] order-service - Operation: email_sent - Processing time: 174ms - RequestID: 21q9xnam7mi +2025-06-18T14:24:13.581Z [INFO] order-service - DELETE /api/v1/payments - Status: 201 - Response time: 775ms - IP: 192.168.14.77 - User: user_1007 - RequestID: w9wd7u9xrgf +2025-06-18T14:24:13.681Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 262ms - Rows affected: 49 - RequestID: apd03x4gzeh +2025-06-18T14:24:13.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 719ms - RequestID: 6gf03kq4e0m +2025-06-18T14:24:13.881Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 303ms - IP: 192.168.36.218 - User: user_1058 - RequestID: aewv3gv5vip +2025-06-18T14:24:13.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 820ms - RequestID: ygomp1gyzy +2025-06-18T14:24:14.081Z [TRACE] inventory-service - Database DELETE on users - Execution time: 464ms - Rows affected: 36 - RequestID: ogqcy2tlto +2025-06-18T14:24:14.181Z [INFO] notification-service - Operation: webhook_sent - Processing time: 421ms - RequestID: 9tam5kmnzpr +2025-06-18T14:24:14.281Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 200ms - Rows affected: 22 - RequestID: bii6d67txjh +2025-06-18T14:24:14.381Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 652ms - RequestID: moeny38sa6 +2025-06-18T14:24:14.481Z [TRACE] user-service - Auth event: logout - User: user_1058 - IP: 192.168.14.77 - RequestID: jc7rozxirx +2025-06-18T14:24:14.581Z [TRACE] user-service - POST /api/v1/inventory - Status: 500 - Response time: 1765ms - IP: 192.168.242.165 - User: user_1040 - RequestID: 3g91f3elex5 +2025-06-18T14:24:14.681Z [DEBUG] order-service - PUT /api/v1/payments - Status: 404 - Response time: 1078ms - IP: 192.168.53.133 - User: user_1087 - RequestID: wwa0hfxgiji +2025-06-18T14:24:14.781Z [INFO] inventory-service - PATCH /api/v1/users - Status: 503 - Response time: 692ms - IP: 192.168.247.134 - User: user_1011 - RequestID: 5fkztgn +2025-06-18T14:24:14.881Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1752ms - IP: 192.168.113.218 - User: user_1065 - RequestID: oi15ec5qct +2025-06-18T14:24:14.981Z [INFO] auth-service - Database INSERT on sessions - Execution time: 320ms - Rows affected: 54 - RequestID: ldgv2tb60se +2025-06-18T14:24:15.081Z [INFO] payment-service - Auth event: logout - User: user_1078 - IP: 192.168.232.72 - RequestID: arjlosz0mlc +2025-06-18T14:24:15.181Z [INFO] user-service - Database DELETE on payments - Execution time: 37ms - Rows affected: 60 - RequestID: wscljmo17zs +2025-06-18T14:24:15.281Z [INFO] inventory-service - PUT /api/v1/orders - Status: 201 - Response time: 763ms - IP: 192.168.68.128 - User: user_1085 - RequestID: 7gfg3m0vi87 +2025-06-18T14:24:15.381Z [TRACE] user-service - Operation: cache_hit - Processing time: 615ms - RequestID: qvayjksdjt +2025-06-18T14:24:15.481Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 401 - Response time: 1353ms - IP: 192.168.1.152 - User: user_1025 - RequestID: 1irvlprc39b +2025-06-18T14:24:15.581Z [INFO] payment-service - Operation: order_created - Processing time: 763ms - RequestID: j8z4pjikcxc +2025-06-18T14:24:15.681Z [DEBUG] user-service - Operation: email_sent - Processing time: 835ms - RequestID: ktdeh0qmlp +2025-06-18T14:24:15.781Z [INFO] notification-service - Database DELETE on sessions - Execution time: 90ms - Rows affected: 17 - RequestID: 1727i1p5lpc +2025-06-18T14:24:15.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1029 - IP: 192.168.33.76 - RequestID: 5xbagdp1qne +2025-06-18T14:24:15.981Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 1011ms - RequestID: ysdkti3eye +2025-06-18T14:24:16.081Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 208ms - IP: 192.168.170.215 - User: user_1030 - RequestID: yn61271vug8 +2025-06-18T14:24:16.181Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 115ms - Rows affected: 33 - RequestID: xuojyx9jh5q +2025-06-18T14:24:16.281Z [INFO] auth-service - Auth event: login_success - User: user_1060 - IP: 192.168.174.114 - RequestID: oaqg4umffam +2025-06-18T14:24:16.381Z [INFO] notification-service - Operation: cache_miss - Processing time: 1021ms - RequestID: wk0xdvpd06q +2025-06-18T14:24:16.481Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 392ms - Rows affected: 91 - RequestID: oq43i42y0lo +2025-06-18T14:24:16.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 230ms - RequestID: kf3j5l814wf +2025-06-18T14:24:16.681Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 426ms - Rows affected: 92 - RequestID: j5k4x2s40m +2025-06-18T14:24:16.781Z [TRACE] payment-service - Operation: notification_queued - Processing time: 293ms - RequestID: 2cikh6ebwma +2025-06-18T14:24:16.881Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 566ms - RequestID: c6up4gew3s +2025-06-18T14:24:16.981Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 411ms - Rows affected: 38 - RequestID: lugswtthq5 +2025-06-18T14:24:17.081Z [TRACE] auth-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.68.158 - RequestID: kq2p1qvmdzh +2025-06-18T14:24:17.181Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 96ms - Rows affected: 6 - RequestID: l3a6fshfomh +2025-06-18T14:24:17.281Z [INFO] auth-service - Database SELECT on users - Execution time: 126ms - Rows affected: 24 - RequestID: j6bq6eqqfy +2025-06-18T14:24:17.381Z [INFO] auth-service - POST /api/v1/orders - Status: 401 - Response time: 1863ms - IP: 192.168.14.77 - User: user_1048 - RequestID: i4mwotiu6y +2025-06-18T14:24:17.481Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 1009ms - RequestID: oame1toogq8 +2025-06-18T14:24:17.581Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 403 - Response time: 877ms - IP: 192.168.133.7 - User: user_1034 - RequestID: gv7rjd6owou +2025-06-18T14:24:17.681Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1062ms - IP: 192.168.133.7 - User: user_1092 - RequestID: jf6guq7z4id +2025-06-18T14:24:17.781Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 500 - Response time: 217ms - IP: 192.168.194.41 - User: user_1002 - RequestID: zhthrx41b9r +2025-06-18T14:24:17.881Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 256ms - Rows affected: 38 - RequestID: s4sdecqqh1e +2025-06-18T14:24:17.981Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1109ms - IP: 192.168.174.114 - User: user_1041 - RequestID: 2tvdw79ujvy +2025-06-18T14:24:18.081Z [INFO] payment-service - Auth event: login_success - User: user_1072 - IP: 192.168.33.76 - RequestID: xq8gtt7r09r +2025-06-18T14:24:18.181Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 503 - Response time: 535ms - IP: 192.168.79.116 - User: user_1018 - RequestID: bldswc5osh4 +2025-06-18T14:24:18.281Z [INFO] auth-service - Operation: webhook_sent - Processing time: 296ms - RequestID: q8wvc8gvri +2025-06-18T14:24:18.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1050 - IP: 192.168.79.141 - RequestID: oikw8h1ej3 +2025-06-18T14:24:18.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 51ms - RequestID: j9jo9tulpis +2025-06-18T14:24:18.581Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 915ms - RequestID: 5el8mq5sves +2025-06-18T14:24:18.681Z [INFO] notification-service - Auth event: password_change - User: user_1088 - IP: 192.168.174.114 - RequestID: 2qp5gvckdkp +2025-06-18T14:24:18.781Z [TRACE] user-service - PUT /api/v1/inventory - Status: 401 - Response time: 611ms - IP: 192.168.14.77 - User: user_1041 - RequestID: t9bg3k3862h +2025-06-18T14:24:18.881Z [INFO] user-service - Database SELECT on sessions - Execution time: 360ms - Rows affected: 41 - RequestID: 9tesh8g7fcs +2025-06-18T14:24:18.981Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 328ms - Rows affected: 59 - RequestID: q0u71elefns +2025-06-18T14:24:19.081Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 503 - Response time: 223ms - IP: 192.168.79.143 - User: user_1094 - RequestID: q0xc1rdl5hh +2025-06-18T14:24:19.181Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 144ms - Rows affected: 85 - RequestID: mpucc80oakf +2025-06-18T14:24:19.281Z [INFO] user-service - Database UPDATE on users - Execution time: 446ms - Rows affected: 46 - RequestID: r0xfvki9bqp +2025-06-18T14:24:19.381Z [TRACE] inventory-service - GET /api/v1/users - Status: 201 - Response time: 1409ms - IP: 192.168.181.225 - User: user_1044 - RequestID: sqlswsghjur +2025-06-18T14:24:19.481Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.1.152 - RequestID: 39owpgwy1ly +2025-06-18T14:24:19.581Z [INFO] inventory-service - GET /api/v1/payments - Status: 500 - Response time: 1092ms - IP: 192.168.229.123 - User: user_1036 - RequestID: 6lbw8yvv6od +2025-06-18T14:24:19.681Z [INFO] inventory-service - Auth event: password_change - User: user_1052 - IP: 192.168.30.79 - RequestID: u2argka2t1 +2025-06-18T14:24:19.781Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1162ms - IP: 192.168.170.215 - User: user_1057 - RequestID: 2ruuvbf5wwe +2025-06-18T14:24:19.881Z [INFO] user-service - Auth event: logout - User: user_1083 - IP: 192.168.240.169 - RequestID: awevvhrbfq6 +2025-06-18T14:24:19.981Z [TRACE] notification-service - GET /api/v1/users - Status: 400 - Response time: 793ms - IP: 192.168.159.94 - User: user_1008 - RequestID: w8a5z842v7s +2025-06-18T14:24:20.081Z [INFO] payment-service - Database DELETE on payments - Execution time: 445ms - Rows affected: 27 - RequestID: 8lbxmmfoqdd +2025-06-18T14:24:20.181Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 180ms - Rows affected: 4 - RequestID: itf3drsf6wa +2025-06-18T14:24:20.281Z [INFO] payment-service - Database INSERT on orders - Execution time: 87ms - Rows affected: 94 - RequestID: sfrfl0ltehf +2025-06-18T14:24:20.381Z [DEBUG] order-service - DELETE /api/v1/users - Status: 502 - Response time: 789ms - IP: 192.168.79.143 - User: user_1098 - RequestID: pw9uv7wfbn +2025-06-18T14:24:20.481Z [INFO] user-service - DELETE /api/v1/users - Status: 401 - Response time: 548ms - IP: 192.168.147.171 - User: user_1086 - RequestID: 33y64fu0k7z +2025-06-18T14:24:20.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.174.114 - RequestID: d6bovlib5uu +2025-06-18T14:24:20.681Z [INFO] payment-service - POST /api/v1/orders - Status: 503 - Response time: 1712ms - IP: 192.168.141.100 - User: user_1072 - RequestID: 35i66vbdmtj +2025-06-18T14:24:20.781Z [INFO] inventory-service - Auth event: logout - User: user_1042 - IP: 192.168.113.218 - RequestID: 2yqpjtt756f +2025-06-18T14:24:20.881Z [INFO] notification-service - Database DELETE on users - Execution time: 118ms - Rows affected: 13 - RequestID: 2woof3fnhvx +2025-06-18T14:24:20.981Z [TRACE] auth-service - Operation: cache_miss - Processing time: 1006ms - RequestID: 9xcs9me8gp +2025-06-18T14:24:21.081Z [DEBUG] order-service - Auth event: logout - User: user_1046 - IP: 192.168.133.7 - RequestID: ho8mbjtbing +2025-06-18T14:24:21.181Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 445ms - Rows affected: 19 - RequestID: fk9e87otnz +2025-06-18T14:24:21.281Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 403 - Response time: 1738ms - IP: 192.168.141.100 - User: user_1007 - RequestID: c9t9w7kep6 +2025-06-18T14:24:21.381Z [TRACE] auth-service - Operation: cache_hit - Processing time: 842ms - RequestID: lkf6rowyudf +2025-06-18T14:24:21.481Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 677ms - RequestID: pyzdyimnjkj +2025-06-18T14:24:21.581Z [INFO] inventory-service - Auth event: login_success - User: user_1040 - IP: 192.168.14.77 - RequestID: ddjflzaucj +2025-06-18T14:24:21.681Z [INFO] user-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.14.77 - RequestID: w5mm9lrf22j +2025-06-18T14:24:21.781Z [INFO] payment-service - GET /api/v1/auth/login - Status: 502 - Response time: 1083ms - IP: 192.168.187.199 - User: user_1063 - RequestID: fo3rkyyaz0m +2025-06-18T14:24:21.881Z [TRACE] auth-service - Operation: cache_miss - Processing time: 505ms - RequestID: d2jyrjwcdzr +2025-06-18T14:24:21.981Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 981ms - RequestID: jm8idee5efk +2025-06-18T14:24:22.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.174.114 - RequestID: h3xoptgdluc +2025-06-18T14:24:22.181Z [INFO] order-service - Database INSERT on sessions - Execution time: 253ms - Rows affected: 78 - RequestID: d3dsqrsdkol +2025-06-18T14:24:22.281Z [TRACE] user-service - Operation: webhook_sent - Processing time: 774ms - RequestID: 1m6s5o8sz11 +2025-06-18T14:24:22.381Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1013 - IP: 192.168.174.114 - RequestID: ph1h9v8ttsk +2025-06-18T14:24:22.481Z [INFO] payment-service - Auth event: logout - User: user_1065 - IP: 192.168.240.169 - RequestID: 8s65g5wrtwn +2025-06-18T14:24:22.581Z [TRACE] user-service - POST /api/v1/users - Status: 404 - Response time: 726ms - IP: 192.168.138.123 - User: user_1097 - RequestID: t4rfmozpw19 +2025-06-18T14:24:22.681Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 500 - Response time: 350ms - IP: 192.168.138.123 - User: user_1065 - RequestID: p2ftiowxd8i +2025-06-18T14:24:22.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1004 - IP: 192.168.79.141 - RequestID: aadgrmu63h5 +2025-06-18T14:24:22.881Z [DEBUG] order-service - Operation: email_sent - Processing time: 79ms - RequestID: 65dqaui4zv +2025-06-18T14:24:22.981Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 49ms - Rows affected: 44 - RequestID: b6u1uh58tzm +2025-06-18T14:24:23.081Z [TRACE] notification-service - Auth event: login_failed - User: user_1063 - IP: 192.168.189.103 - RequestID: btowc0acfsd +2025-06-18T14:24:23.181Z [DEBUG] payment-service - Auth event: logout - User: user_1077 - IP: 192.168.174.114 - RequestID: 7dewehknmox +2025-06-18T14:24:23.281Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 503 - Response time: 527ms - IP: 192.168.11.60 - User: user_1073 - RequestID: egbkj6o7imh +2025-06-18T14:24:23.381Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 201 - Response time: 262ms - IP: 192.168.181.225 - User: user_1001 - RequestID: bkfpz4cxg9 +2025-06-18T14:24:23.481Z [INFO] order-service - Operation: cache_hit - Processing time: 762ms - RequestID: s0tfwsswje +2025-06-18T14:24:23.581Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 773ms - RequestID: wmbbfx3gz6c +2025-06-18T14:24:23.681Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1294ms - IP: 192.168.14.77 - User: user_1083 - RequestID: nt2i8iw4ahe +2025-06-18T14:24:23.781Z [INFO] auth-service - Operation: notification_queued - Processing time: 197ms - RequestID: mvwctzk6mef +2025-06-18T14:24:23.881Z [TRACE] notification-service - POST /api/v1/users - Status: 401 - Response time: 1790ms - IP: 192.168.189.103 - User: user_1066 - RequestID: e5j2gz392gv +2025-06-18T14:24:23.981Z [TRACE] inventory-service - Operation: order_created - Processing time: 851ms - RequestID: 0k7u6tk67w4d +2025-06-18T14:24:24.081Z [INFO] inventory-service - Auth event: password_change - User: user_1093 - IP: 192.168.85.229 - RequestID: yxl0xwg73b +2025-06-18T14:24:24.181Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 347ms - RequestID: 674i6b42ibw +2025-06-18T14:24:24.281Z [INFO] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 739ms - IP: 192.168.28.146 - User: user_1071 - RequestID: qvqefqtehpp +2025-06-18T14:24:24.381Z [TRACE] notification-service - Database DELETE on users - Execution time: 313ms - Rows affected: 76 - RequestID: 2ffmm4qqu2y +2025-06-18T14:24:24.481Z [TRACE] notification-service - Auth event: password_change - User: user_1077 - IP: 192.168.181.225 - RequestID: zqycaev716b +2025-06-18T14:24:24.581Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 403 - Response time: 108ms - IP: 192.168.33.76 - User: user_1069 - RequestID: 8jnz828qx3r +2025-06-18T14:24:24.681Z [INFO] user-service - Auth event: login_failed - User: user_1024 - IP: 192.168.79.141 - RequestID: vk5h3kyxvs +2025-06-18T14:24:24.781Z [INFO] order-service - Database SELECT on products - Execution time: 271ms - Rows affected: 83 - RequestID: 55mtglrs5mn +2025-06-18T14:24:24.881Z [INFO] auth-service - Database DELETE on products - Execution time: 61ms - Rows affected: 80 - RequestID: jrzr9frvxp +2025-06-18T14:24:24.981Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 452ms - Rows affected: 86 - RequestID: d7uu5j36d4q +2025-06-18T14:24:25.081Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 355ms - RequestID: 7p6u1z5r29r +2025-06-18T14:24:25.181Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1353ms - IP: 192.168.46.63 - User: user_1033 - RequestID: k9rhbglms7n +2025-06-18T14:24:25.281Z [DEBUG] auth-service - GET /api/v1/payments - Status: 401 - Response time: 444ms - IP: 192.168.28.146 - User: user_1021 - RequestID: 5n8gbyth9y3 +2025-06-18T14:24:25.381Z [TRACE] order-service - Database SELECT on payments - Execution time: 223ms - Rows affected: 77 - RequestID: by5z07oy7a +2025-06-18T14:24:25.481Z [TRACE] notification-service - Database INSERT on orders - Execution time: 62ms - Rows affected: 79 - RequestID: iqhzi7emtuc +2025-06-18T14:24:25.581Z [INFO] auth-service - Auth event: password_change - User: user_1098 - IP: 192.168.227.233 - RequestID: qd1acpxtf7a +2025-06-18T14:24:25.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 51ms - RequestID: qzx5a065vss +2025-06-18T14:24:25.781Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 992ms - RequestID: v0mkvej2spg +2025-06-18T14:24:25.881Z [INFO] notification-service - PATCH /api/v1/payments - Status: 503 - Response time: 700ms - IP: 192.168.189.103 - User: user_1040 - RequestID: 6hnqggufddc +2025-06-18T14:24:25.981Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 472ms - Rows affected: 37 - RequestID: 9itkmzukeq +2025-06-18T14:24:26.081Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 928ms - RequestID: xxh0yk1224l +2025-06-18T14:24:26.181Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 401ms - Rows affected: 15 - RequestID: h7fx1aftv2r +2025-06-18T14:24:26.281Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 403 - Response time: 1412ms - IP: 192.168.189.103 - User: user_1003 - RequestID: ii0jbhj3g4n +2025-06-18T14:24:26.381Z [INFO] auth-service - Database SELECT on users - Execution time: 214ms - Rows affected: 75 - RequestID: 0cwnoyokxd5 +2025-06-18T14:24:26.481Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 215ms - Rows affected: 82 - RequestID: 5jyd7jihyy +2025-06-18T14:24:26.581Z [INFO] payment-service - Auth event: password_change - User: user_1019 - IP: 192.168.229.123 - RequestID: rhhzb0deuc +2025-06-18T14:24:26.681Z [DEBUG] payment-service - GET /api/v1/payments - Status: 502 - Response time: 428ms - IP: 192.168.247.134 - User: user_1055 - RequestID: x66z08tt9sl +2025-06-18T14:24:26.781Z [TRACE] inventory-service - Auth event: login_failed - User: user_1088 - IP: 192.168.64.33 - RequestID: vy851iq4atn +2025-06-18T14:24:26.881Z [DEBUG] payment-service - Database SELECT on products - Execution time: 368ms - Rows affected: 51 - RequestID: v79exrc59l +2025-06-18T14:24:26.981Z [TRACE] order-service - Operation: inventory_updated - Processing time: 916ms - RequestID: 1g9dfdzbngi +2025-06-18T14:24:27.081Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 502 - Response time: 1705ms - IP: 192.168.28.146 - User: user_1026 - RequestID: 7kmlapq6kp3 +2025-06-18T14:24:27.181Z [DEBUG] user-service - Operation: cache_hit - Processing time: 669ms - RequestID: 0mh0gt13rj0c +2025-06-18T14:24:27.281Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 45ms - Rows affected: 32 - RequestID: fgllrdkfcd +2025-06-18T14:24:27.381Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 406ms - Rows affected: 5 - RequestID: 348cfpdd7s +2025-06-18T14:24:27.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.242.165 - RequestID: 1sm2xuijrkz +2025-06-18T14:24:27.581Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 657ms - IP: 192.168.11.60 - User: user_1087 - RequestID: 8l3myg95w4i +2025-06-18T14:24:27.681Z [TRACE] auth-service - Database DELETE on products - Execution time: 185ms - Rows affected: 68 - RequestID: a3jb5yznmp +2025-06-18T14:24:27.781Z [INFO] inventory-service - Operation: notification_queued - Processing time: 219ms - RequestID: 0os3bgqsb6v +2025-06-18T14:24:27.881Z [INFO] payment-service - Auth event: password_change - User: user_1069 - IP: 192.168.167.32 - RequestID: dxd14k3r8ia +2025-06-18T14:24:27.981Z [INFO] user-service - GET /api/v1/users - Status: 500 - Response time: 517ms - IP: 192.168.44.5 - User: user_1059 - RequestID: yj7u5gvsx18 +2025-06-18T14:24:28.081Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 325ms - Rows affected: 26 - RequestID: 1algdjjw1e9 +2025-06-18T14:24:28.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 949ms - RequestID: auau5l7nt3a +2025-06-18T14:24:28.281Z [TRACE] order-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.14.77 - RequestID: q3b7daln54c +2025-06-18T14:24:28.381Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 401 - Response time: 1243ms - IP: 192.168.247.134 - User: user_1014 - RequestID: x4t5ixoug6o +2025-06-18T14:24:28.481Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 502 - Response time: 1584ms - IP: 192.168.36.218 - User: user_1026 - RequestID: pr33jbgawe +2025-06-18T14:24:28.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.68.128 - RequestID: hxti0onkvk9 +2025-06-18T14:24:28.681Z [INFO] user-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1330ms - IP: 192.168.79.143 - User: user_1062 - RequestID: c6ra81d0lbp +2025-06-18T14:24:28.781Z [INFO] payment-service - Database INSERT on payments - Execution time: 357ms - Rows affected: 76 - RequestID: 4xfos0mp3sm +2025-06-18T14:24:28.881Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1953ms - IP: 192.168.36.218 - User: user_1008 - RequestID: go68qh9dawp +2025-06-18T14:24:28.981Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 260ms - Rows affected: 76 - RequestID: dlyo0rtt5qi +2025-06-18T14:24:29.081Z [DEBUG] notification-service - Operation: order_created - Processing time: 1001ms - RequestID: bveklh0yhsi +2025-06-18T14:24:29.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.242.165 - RequestID: nr906th3rvc +2025-06-18T14:24:29.281Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1905ms - IP: 192.168.174.114 - User: user_1026 - RequestID: 492jhykmbva +2025-06-18T14:24:29.381Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.11.60 - RequestID: w7igz8wrmfn +2025-06-18T14:24:29.481Z [DEBUG] user-service - Auth event: login_success - User: user_1007 - IP: 192.168.46.63 - RequestID: rg8o6b24anh +2025-06-18T14:24:29.581Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 116ms - Rows affected: 28 - RequestID: 6z5cn39rd7c +2025-06-18T14:24:29.681Z [INFO] payment-service - Auth event: login_failed - User: user_1076 - IP: 192.168.147.171 - RequestID: v6ufmzff5gb +2025-06-18T14:24:29.781Z [INFO] notification-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.13.72 - RequestID: w44x6j0tt7 +2025-06-18T14:24:29.881Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 200 - Response time: 854ms - IP: 192.168.141.100 - User: user_1002 - RequestID: 35bx4k9bohj +2025-06-18T14:24:29.981Z [INFO] auth-service - Operation: webhook_sent - Processing time: 773ms - RequestID: mvbdlk9aaj +2025-06-18T14:24:30.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1049 - IP: 192.168.181.225 - RequestID: gbt7xl1z4eq +2025-06-18T14:24:30.181Z [DEBUG] user-service - GET /api/v1/inventory - Status: 201 - Response time: 1125ms - IP: 192.168.104.37 - User: user_1046 - RequestID: gmz6htq2wvq +2025-06-18T14:24:30.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 437ms - RequestID: omyrmbe6h3e +2025-06-18T14:24:30.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.189.103 - RequestID: l1aennfnnwe +2025-06-18T14:24:30.481Z [INFO] notification-service - Auth event: login_success - User: user_1055 - IP: 192.168.141.100 - RequestID: pxgpbtqq8w +2025-06-18T14:24:30.581Z [INFO] notification-service - Auth event: logout - User: user_1056 - IP: 192.168.10.184 - RequestID: 6xfq7g5t5vm +2025-06-18T14:24:30.681Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 55ms - RequestID: aq8c0091nqa +2025-06-18T14:24:30.781Z [DEBUG] notification-service - Operation: email_sent - Processing time: 949ms - RequestID: 2397y4b0xpu +2025-06-18T14:24:30.881Z [TRACE] order-service - POST /api/v1/inventory - Status: 403 - Response time: 1612ms - IP: 192.168.196.226 - User: user_1047 - RequestID: svihesresxh +2025-06-18T14:24:30.981Z [INFO] payment-service - Auth event: password_change - User: user_1065 - IP: 192.168.141.100 - RequestID: tj5yrxwl6a +2025-06-18T14:24:31.081Z [INFO] inventory-service - Auth event: logout - User: user_1078 - IP: 192.168.10.184 - RequestID: f1qixd5s9zm +2025-06-18T14:24:31.181Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 106ms - Rows affected: 54 - RequestID: afm9kuzpmrk +2025-06-18T14:24:31.281Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 92ms - Rows affected: 30 - RequestID: r3u8fvjvl3 +2025-06-18T14:24:31.381Z [DEBUG] auth-service - Database SELECT on users - Execution time: 262ms - Rows affected: 47 - RequestID: w1ah3jy3e2n +2025-06-18T14:24:31.481Z [INFO] inventory-service - Auth event: login_success - User: user_1099 - IP: 192.168.174.114 - RequestID: gp0m2mmfgqd +2025-06-18T14:24:31.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.53.133 - RequestID: 021oqy1hw5b4 +2025-06-18T14:24:31.681Z [INFO] payment-service - Auth event: logout - User: user_1072 - IP: 192.168.187.199 - RequestID: zlors3v5mrm +2025-06-18T14:24:31.781Z [DEBUG] auth-service - Auth event: logout - User: user_1033 - IP: 192.168.242.165 - RequestID: 8mlm9k0bzyd +2025-06-18T14:24:31.881Z [TRACE] user-service - Operation: notification_queued - Processing time: 897ms - RequestID: 7l017v0goms +2025-06-18T14:24:31.981Z [TRACE] notification-service - POST /api/v1/payments - Status: 500 - Response time: 355ms - IP: 192.168.85.229 - User: user_1050 - RequestID: qk63nev635l +2025-06-18T14:24:32.081Z [TRACE] user-service - Auth event: logout - User: user_1033 - IP: 192.168.229.123 - RequestID: 7mgrkfhfw38 +2025-06-18T14:24:32.181Z [INFO] auth-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.13.72 - RequestID: rvx91vyoer +2025-06-18T14:24:32.281Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 456ms - Rows affected: 55 - RequestID: qxybd9yd64 +2025-06-18T14:24:32.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 390ms - RequestID: qrvtmcmzzhi +2025-06-18T14:24:32.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 672ms - RequestID: hm8h4dvkeut +2025-06-18T14:24:32.581Z [TRACE] inventory-service - PUT /api/v1/users - Status: 201 - Response time: 206ms - IP: 192.168.79.143 - User: user_1051 - RequestID: orlhtssemp +2025-06-18T14:24:32.681Z [TRACE] payment-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.227.77 - RequestID: z9hwj47x3e +2025-06-18T14:24:32.781Z [TRACE] user-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.79.116 - RequestID: ogfery03sn +2025-06-18T14:24:32.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.10.184 - RequestID: 7e1eca2gtla +2025-06-18T14:24:32.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 1017ms - RequestID: iuk0t9n4cd9 +2025-06-18T14:24:33.081Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1538ms - IP: 192.168.104.37 - User: user_1038 - RequestID: jmbryj8bbm +2025-06-18T14:24:33.181Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 208ms - Rows affected: 18 - RequestID: lqa4rfvur0l +2025-06-18T14:24:33.281Z [DEBUG] user-service - Auth event: logout - User: user_1023 - IP: 192.168.44.5 - RequestID: mc12ccyni6 +2025-06-18T14:24:33.381Z [INFO] auth-service - DELETE /api/v1/orders - Status: 201 - Response time: 1493ms - IP: 192.168.68.158 - User: user_1040 - RequestID: uow5fl4oq4f +2025-06-18T14:24:33.481Z [INFO] auth-service - Database INSERT on sessions - Execution time: 298ms - Rows affected: 84 - RequestID: ssrfn218ene +2025-06-18T14:24:33.581Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 200 - Response time: 743ms - IP: 192.168.144.38 - User: user_1008 - RequestID: dvxwm8g82g +2025-06-18T14:24:33.681Z [INFO] user-service - POST /api/v1/auth/login - Status: 500 - Response time: 801ms - IP: 192.168.13.72 - User: user_1005 - RequestID: 1h8ahv1f768 +2025-06-18T14:24:33.781Z [TRACE] order-service - Auth event: login_success - User: user_1081 - IP: 192.168.167.32 - RequestID: f70s7drfpx +2025-06-18T14:24:33.881Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1010ms - IP: 192.168.181.225 - User: user_1049 - RequestID: egkt08spw9 +2025-06-18T14:24:33.981Z [INFO] notification-service - Auth event: login_failed - User: user_1061 - IP: 192.168.211.72 - RequestID: eapmrdjjpda +2025-06-18T14:24:34.081Z [DEBUG] user-service - Auth event: login_success - User: user_1089 - IP: 192.168.189.103 - RequestID: bbueg6pil0t +2025-06-18T14:24:34.181Z [INFO] order-service - Operation: email_sent - Processing time: 992ms - RequestID: tcium1ks0a8 +2025-06-18T14:24:34.281Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1312ms - IP: 192.168.181.225 - User: user_1027 - RequestID: f8k92kn91me +2025-06-18T14:24:34.381Z [INFO] notification-service - DELETE /api/v1/payments - Status: 200 - Response time: 861ms - IP: 192.168.64.33 - User: user_1055 - RequestID: 8vnsud61op7 +2025-06-18T14:24:34.481Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 404 - Response time: 1142ms - IP: 192.168.14.77 - User: user_1017 - RequestID: b2g05m6v4jk +2025-06-18T14:24:34.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.144.38 - RequestID: dyme6gl4ny7 +2025-06-18T14:24:34.681Z [INFO] user-service - Database UPDATE on products - Execution time: 2ms - Rows affected: 20 - RequestID: uy3em4y2q2d +2025-06-18T14:24:34.781Z [TRACE] order-service - GET /api/v1/users - Status: 404 - Response time: 1810ms - IP: 192.168.97.87 - User: user_1026 - RequestID: a3hmr4e4x7k +2025-06-18T14:24:34.881Z [INFO] payment-service - PATCH /api/v1/users - Status: 201 - Response time: 1078ms - IP: 192.168.31.117 - User: user_1023 - RequestID: eiopudfq4n9 +2025-06-18T14:24:34.981Z [TRACE] auth-service - POST /api/v1/orders - Status: 500 - Response time: 256ms - IP: 192.168.159.94 - User: user_1011 - RequestID: eyprz9t0yog +2025-06-18T14:24:35.081Z [DEBUG] order-service - Operation: order_created - Processing time: 919ms - RequestID: m99ikwt7uh +2025-06-18T14:24:35.181Z [INFO] user-service - Database DELETE on payments - Execution time: 481ms - Rows affected: 42 - RequestID: dv8bmymvrcq +2025-06-18T14:24:35.281Z [DEBUG] inventory-service - GET /api/v1/users - Status: 400 - Response time: 182ms - IP: 192.168.144.38 - User: user_1000 - RequestID: 4xgupr9na9l +2025-06-18T14:24:35.381Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 21ms - Rows affected: 80 - RequestID: 3xeiniugzvj +2025-06-18T14:24:35.481Z [INFO] user-service - Auth event: login_failed - User: user_1063 - IP: 192.168.79.116 - RequestID: m8c8eg2xf4 +2025-06-18T14:24:35.581Z [TRACE] notification-service - Database INSERT on payments - Execution time: 271ms - Rows affected: 60 - RequestID: twudmkhm4b +2025-06-18T14:24:35.681Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1130ms - IP: 192.168.32.38 - User: user_1052 - RequestID: d3se3nt9vfn +2025-06-18T14:24:35.781Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 244ms - Rows affected: 67 - RequestID: 019orqidtnao +2025-06-18T14:24:35.881Z [INFO] order-service - Auth event: login_failed - User: user_1033 - IP: 192.168.144.38 - RequestID: vykniceb2mo +2025-06-18T14:24:35.981Z [INFO] payment-service - Database UPDATE on orders - Execution time: 56ms - Rows affected: 42 - RequestID: t1jp343nsen +2025-06-18T14:24:36.081Z [TRACE] auth-service - Operation: cache_miss - Processing time: 329ms - RequestID: benbstaavc8 +2025-06-18T14:24:36.181Z [INFO] order-service - Database DELETE on users - Execution time: 321ms - Rows affected: 94 - RequestID: lp5au3pzilr +2025-06-18T14:24:36.281Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 401 - Response time: 52ms - IP: 192.168.104.37 - User: user_1086 - RequestID: rkrq9qmmn2 +2025-06-18T14:24:36.381Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 254ms - Rows affected: 22 - RequestID: 3rcn8zc4nax +2025-06-18T14:24:36.481Z [INFO] notification-service - POST /api/v1/payments - Status: 502 - Response time: 893ms - IP: 192.168.194.41 - User: user_1005 - RequestID: osy34x7vjxr +2025-06-18T14:24:36.581Z [TRACE] auth-service - Auth event: password_change - User: user_1087 - IP: 192.168.28.146 - RequestID: idr2ebd8zga +2025-06-18T14:24:36.681Z [TRACE] auth-service - Operation: cache_miss - Processing time: 584ms - RequestID: sydbva4fcx +2025-06-18T14:24:36.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.36.218 - RequestID: w31zu9q98lc +2025-06-18T14:24:36.881Z [TRACE] inventory-service - Auth event: logout - User: user_1017 - IP: 192.168.211.72 - RequestID: ddpv6h35xn +2025-06-18T14:24:36.981Z [INFO] order-service - Operation: order_created - Processing time: 977ms - RequestID: wr5ggqiyjjg +2025-06-18T14:24:37.081Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1415ms - IP: 192.168.10.184 - User: user_1081 - RequestID: pz0s99ynr2j +2025-06-18T14:24:37.181Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 376ms - Rows affected: 30 - RequestID: vdj4t6cozgm +2025-06-18T14:24:37.281Z [INFO] auth-service - DELETE /api/v1/payments - Status: 502 - Response time: 1539ms - IP: 192.168.14.77 - User: user_1040 - RequestID: gtdpsntomzh +2025-06-18T14:24:37.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.144.38 - RequestID: 18s7ziciwxw +2025-06-18T14:24:37.481Z [DEBUG] auth-service - Database SELECT on products - Execution time: 44ms - Rows affected: 25 - RequestID: c8inacsl2f8 +2025-06-18T14:24:37.581Z [INFO] user-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.13.72 - RequestID: swd93jswzc +2025-06-18T14:24:37.681Z [DEBUG] notification-service - PUT /api/v1/users - Status: 201 - Response time: 1069ms - IP: 192.168.181.225 - User: user_1054 - RequestID: j26u8k6x5j +2025-06-18T14:24:37.781Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 501ms - IP: 192.168.194.41 - User: user_1060 - RequestID: ziiyujamr7p +2025-06-18T14:24:37.881Z [TRACE] inventory-service - Auth event: login_success - User: user_1087 - IP: 192.168.187.199 - RequestID: dvkb8ajgdd +2025-06-18T14:24:37.981Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 1023ms - RequestID: lhfhns11r9a +2025-06-18T14:24:38.081Z [INFO] payment-service - Auth event: password_change - User: user_1014 - IP: 192.168.159.94 - RequestID: t3gb159kbug +2025-06-18T14:24:38.181Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1934ms - IP: 192.168.229.123 - User: user_1006 - RequestID: icvkea5pxjl +2025-06-18T14:24:38.281Z [INFO] payment-service - POST /api/v1/users - Status: 503 - Response time: 93ms - IP: 192.168.79.116 - User: user_1069 - RequestID: ydj3ba9n7et +2025-06-18T14:24:38.381Z [INFO] order-service - Database SELECT on sessions - Execution time: 336ms - Rows affected: 99 - RequestID: 58y34kvbc2s +2025-06-18T14:24:38.481Z [DEBUG] order-service - Operation: email_sent - Processing time: 237ms - RequestID: hikp827z6t +2025-06-18T14:24:38.581Z [INFO] payment-service - Auth event: login_success - User: user_1028 - IP: 192.168.81.206 - RequestID: hj586qfpsot +2025-06-18T14:24:38.681Z [INFO] user-service - Operation: order_created - Processing time: 939ms - RequestID: xsg69e9r9e +2025-06-18T14:24:38.781Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 404ms - Rows affected: 53 - RequestID: bbmmi8frdb6 +2025-06-18T14:24:38.881Z [INFO] order-service - Database DELETE on payments - Execution time: 475ms - Rows affected: 15 - RequestID: rz8i59972r +2025-06-18T14:24:38.981Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1964ms - IP: 192.168.13.72 - User: user_1065 - RequestID: 85aabmqoivp +2025-06-18T14:24:39.081Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 403 - Response time: 559ms - IP: 192.168.227.77 - User: user_1009 - RequestID: gg6i59ifs9u +2025-06-18T14:24:39.181Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 403 - Response time: 1758ms - IP: 192.168.189.103 - User: user_1043 - RequestID: qgozinq1raa +2025-06-18T14:24:39.281Z [INFO] auth-service - Database DELETE on users - Execution time: 478ms - Rows affected: 52 - RequestID: 4eq7tl0bll6 +2025-06-18T14:24:39.381Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 21ms - Rows affected: 82 - RequestID: v9uyspkdwv +2025-06-18T14:24:39.481Z [TRACE] auth-service - Database SELECT on products - Execution time: 236ms - Rows affected: 63 - RequestID: 3q111i1zx7m +2025-06-18T14:24:39.581Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 201 - Response time: 199ms - IP: 192.168.229.123 - User: user_1065 - RequestID: uybrbsfm339 +2025-06-18T14:24:39.681Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 502 - Response time: 1574ms - IP: 192.168.170.215 - User: user_1033 - RequestID: vnbpc1606e +2025-06-18T14:24:39.781Z [INFO] auth-service - Database INSERT on products - Execution time: 122ms - Rows affected: 45 - RequestID: 8e4f9enbpsh +2025-06-18T14:24:39.881Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.247.134 - RequestID: 8cntc6tjeai +2025-06-18T14:24:39.981Z [DEBUG] user-service - Auth event: logout - User: user_1067 - IP: 192.168.28.146 - RequestID: rdd8x5gpbz +2025-06-18T14:24:40.081Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 187ms - Rows affected: 64 - RequestID: dh23a26adx5 +2025-06-18T14:24:40.181Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 763ms - RequestID: b09qc6qaqhb +2025-06-18T14:24:40.281Z [INFO] inventory-service - POST /api/v1/payments - Status: 201 - Response time: 1313ms - IP: 192.168.211.72 - User: user_1081 - RequestID: g1ldv4jptfv +2025-06-18T14:24:40.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.141.100 - RequestID: qkvomqpipeh +2025-06-18T14:24:40.481Z [INFO] auth-service - Operation: inventory_updated - Processing time: 835ms - RequestID: go18d93pyis +2025-06-18T14:24:40.581Z [INFO] inventory-service - GET /api/v1/payments - Status: 401 - Response time: 523ms - IP: 192.168.196.226 - User: user_1026 - RequestID: asbprrm5vw4 +2025-06-18T14:24:40.681Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 201 - Response time: 87ms - IP: 192.168.144.38 - User: user_1039 - RequestID: 35uyy7zo5aw +2025-06-18T14:24:40.781Z [DEBUG] order-service - Auth event: login_failed - User: user_1010 - IP: 192.168.144.38 - RequestID: clpnr3354n9 +2025-06-18T14:24:40.881Z [TRACE] auth-service - POST /api/v1/inventory - Status: 200 - Response time: 1575ms - IP: 192.168.32.38 - User: user_1090 - RequestID: 12rjmwp0by4 +2025-06-18T14:24:40.981Z [INFO] inventory-service - Auth event: login_failed - User: user_1030 - IP: 192.168.227.77 - RequestID: ep5osadir89 +2025-06-18T14:24:41.081Z [INFO] notification-service - Database SELECT on orders - Execution time: 394ms - Rows affected: 86 - RequestID: zbf1im3tlc +2025-06-18T14:24:41.181Z [INFO] payment-service - DELETE /api/v1/payments - Status: 500 - Response time: 1684ms - IP: 192.168.100.240 - User: user_1068 - RequestID: krzujtnyyq9 +2025-06-18T14:24:41.281Z [TRACE] auth-service - Operation: cache_miss - Processing time: 538ms - RequestID: h8pz8w1bxig +2025-06-18T14:24:41.381Z [TRACE] payment-service - Database SELECT on users - Execution time: 358ms - Rows affected: 55 - RequestID: c2qhf5x2z8j +2025-06-18T14:24:41.481Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 120ms - RequestID: m30qa3u0dyg +2025-06-18T14:24:41.581Z [TRACE] payment-service - Operation: payment_processed - Processing time: 160ms - RequestID: ivblgfgsa19 +2025-06-18T14:24:41.681Z [INFO] auth-service - Auth event: login_failed - User: user_1028 - IP: 192.168.240.169 - RequestID: 6vnsfn62ghe +2025-06-18T14:24:41.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 467ms - RequestID: abw00xew4kk +2025-06-18T14:24:41.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.144.38 - RequestID: 0n90ahlty6 +2025-06-18T14:24:41.981Z [INFO] notification-service - Operation: inventory_updated - Processing time: 836ms - RequestID: 6vi55yibjl2 +2025-06-18T14:24:42.081Z [DEBUG] auth-service - Operation: order_created - Processing time: 423ms - RequestID: sz4vaiywga +2025-06-18T14:24:42.181Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 317ms - Rows affected: 52 - RequestID: jspm8n426r +2025-06-18T14:24:42.281Z [TRACE] auth-service - Operation: cache_miss - Processing time: 473ms - RequestID: 07q9veddysjw +2025-06-18T14:24:42.381Z [TRACE] payment-service - Auth event: login_failed - User: user_1002 - IP: 192.168.227.233 - RequestID: 91vdmgc6ihm +2025-06-18T14:24:42.481Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 883ms - IP: 192.168.53.133 - User: user_1028 - RequestID: zhlj44l0b9g +2025-06-18T14:24:42.581Z [DEBUG] auth-service - Auth event: login_success - User: user_1000 - IP: 192.168.167.32 - RequestID: 5e53msabucb +2025-06-18T14:24:42.681Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 310ms - Rows affected: 73 - RequestID: ds71axr9a1k +2025-06-18T14:24:42.781Z [INFO] user-service - Auth event: login_success - User: user_1042 - IP: 192.168.68.158 - RequestID: yr6t0lb89a9 +2025-06-18T14:24:42.881Z [INFO] user-service - Auth event: password_change - User: user_1054 - IP: 192.168.85.229 - RequestID: ee8x7t1t11r +2025-06-18T14:24:42.981Z [INFO] user-service - Operation: cache_hit - Processing time: 986ms - RequestID: u21dtu9soo +2025-06-18T14:24:43.081Z [TRACE] user-service - Operation: cache_hit - Processing time: 486ms - RequestID: ecs557s94ji +2025-06-18T14:24:43.181Z [TRACE] user-service - Auth event: password_change - User: user_1001 - IP: 192.168.104.37 - RequestID: vws2gai4ka +2025-06-18T14:24:43.281Z [TRACE] auth-service - Database INSERT on orders - Execution time: 59ms - Rows affected: 7 - RequestID: nlyt6eu2eh +2025-06-18T14:24:43.381Z [INFO] auth-service - Auth event: login_success - User: user_1063 - IP: 192.168.196.226 - RequestID: 79vmtshliq2 +2025-06-18T14:24:43.481Z [TRACE] notification-service - Auth event: password_change - User: user_1081 - IP: 192.168.232.72 - RequestID: 2zko1xv1wts +2025-06-18T14:24:43.581Z [TRACE] notification-service - Auth event: login_success - User: user_1093 - IP: 192.168.33.76 - RequestID: k5qz6urymip +2025-06-18T14:24:43.681Z [INFO] payment-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.147.171 - RequestID: yjef0tdw7qp +2025-06-18T14:24:43.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 315ms - RequestID: b2nli7ys63 +2025-06-18T14:24:43.881Z [DEBUG] order-service - Database UPDATE on users - Execution time: 341ms - Rows affected: 74 - RequestID: 7d1u9qdw3w9 +2025-06-18T14:24:43.981Z [DEBUG] user-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.30.79 - RequestID: mf1km5zrfq +2025-06-18T14:24:44.081Z [TRACE] order-service - GET /api/v1/payments - Status: 401 - Response time: 680ms - IP: 192.168.53.133 - User: user_1023 - RequestID: m1nhp392mg +2025-06-18T14:24:44.181Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 72ms - Rows affected: 95 - RequestID: 1ydww17em0m +2025-06-18T14:24:44.281Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1740ms - IP: 192.168.104.37 - User: user_1021 - RequestID: aux0ucc6zdt +2025-06-18T14:24:44.381Z [TRACE] order-service - Database INSERT on payments - Execution time: 313ms - Rows affected: 77 - RequestID: 5q8xae7dnyo +2025-06-18T14:24:44.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 658ms - RequestID: gdg1icomc3 +2025-06-18T14:24:44.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.81.206 - RequestID: tew9geffhr +2025-06-18T14:24:44.681Z [INFO] user-service - Database SELECT on orders - Execution time: 378ms - Rows affected: 18 - RequestID: kg5zt822pks +2025-06-18T14:24:44.781Z [INFO] auth-service - POST /api/v1/inventory - Status: 201 - Response time: 1359ms - IP: 192.168.158.144 - User: user_1032 - RequestID: oglipt2tfh +2025-06-18T14:24:44.881Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 198ms - Rows affected: 75 - RequestID: 9ua6l9uev1l +2025-06-18T14:24:44.981Z [TRACE] order-service - Auth event: login_success - User: user_1087 - IP: 192.168.138.123 - RequestID: joih1pap7n +2025-06-18T14:24:45.081Z [INFO] notification-service - Database INSERT on products - Execution time: 39ms - Rows affected: 28 - RequestID: 7y8lsqrz19x +2025-06-18T14:24:45.181Z [INFO] payment-service - PATCH /api/v1/orders - Status: 400 - Response time: 658ms - IP: 192.168.31.117 - User: user_1050 - RequestID: c2u5v6a7888 +2025-06-18T14:24:45.281Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 443ms - RequestID: j0jvnjkv68p +2025-06-18T14:24:45.381Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 201 - Response time: 475ms - IP: 192.168.14.77 - User: user_1019 - RequestID: sygfdpvo76m +2025-06-18T14:24:45.481Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 963ms - IP: 192.168.85.229 - User: user_1031 - RequestID: rr15nsuy9b +2025-06-18T14:24:45.581Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 349ms - Rows affected: 56 - RequestID: tdsb74ci3nq +2025-06-18T14:24:45.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.174.114 - RequestID: 4m9jrpgvg2w +2025-06-18T14:24:45.781Z [INFO] order-service - Operation: webhook_sent - Processing time: 145ms - RequestID: u1s3rp0xdck +2025-06-18T14:24:45.881Z [DEBUG] order-service - POST /api/v1/payments - Status: 503 - Response time: 1326ms - IP: 192.168.242.165 - User: user_1028 - RequestID: o4qqepwq8zq +2025-06-18T14:24:45.981Z [TRACE] auth-service - Database INSERT on payments - Execution time: 232ms - Rows affected: 60 - RequestID: 3ih2tt63pbi +2025-06-18T14:24:46.081Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 197ms - Rows affected: 85 - RequestID: lsu0ropdvq8 +2025-06-18T14:24:46.181Z [DEBUG] user-service - GET /api/v1/inventory - Status: 201 - Response time: 366ms - IP: 192.168.79.141 - User: user_1030 - RequestID: adhv2cwlyov +2025-06-18T14:24:46.281Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 255ms - IP: 192.168.227.233 - User: user_1024 - RequestID: a4905rps7rc +2025-06-18T14:24:46.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 637ms - RequestID: z87agvlse9q +2025-06-18T14:24:46.481Z [INFO] inventory-service - Auth event: logout - User: user_1005 - IP: 192.168.138.123 - RequestID: 90whgx834cs +2025-06-18T14:24:46.581Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 404 - Response time: 627ms - IP: 192.168.36.218 - User: user_1008 - RequestID: 1pxkbihm3rx +2025-06-18T14:24:46.681Z [INFO] auth-service - Database DELETE on orders - Execution time: 403ms - Rows affected: 61 - RequestID: rtbuflehkc8 +2025-06-18T14:24:46.781Z [TRACE] payment-service - Auth event: password_change - User: user_1055 - IP: 192.168.33.76 - RequestID: 90j551yp2ye +2025-06-18T14:24:46.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.232.72 - RequestID: 2z9e7f394gu +2025-06-18T14:24:46.981Z [INFO] auth-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.68.128 - RequestID: u82dmgqj74o +2025-06-18T14:24:47.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 991ms - RequestID: tbjp47wovkh +2025-06-18T14:24:47.181Z [INFO] payment-service - Database DELETE on products - Execution time: 55ms - Rows affected: 41 - RequestID: besioiqaq8u +2025-06-18T14:24:47.281Z [TRACE] notification-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.30.79 - RequestID: gfesr7q6bm +2025-06-18T14:24:47.381Z [DEBUG] user-service - Database SELECT on users - Execution time: 483ms - Rows affected: 45 - RequestID: b6x3y54glx +2025-06-18T14:24:47.481Z [INFO] order-service - DELETE /api/v1/users - Status: 401 - Response time: 998ms - IP: 192.168.138.123 - User: user_1037 - RequestID: pbqy6aqlij8 +2025-06-18T14:24:47.581Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 633ms - RequestID: ot6cmem7ghd +2025-06-18T14:24:47.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 187ms - RequestID: jcc66ykhrj +2025-06-18T14:24:47.781Z [INFO] notification-service - PATCH /api/v1/users - Status: 200 - Response time: 732ms - IP: 192.168.10.184 - User: user_1079 - RequestID: 6rdph3oyqtn +2025-06-18T14:24:47.881Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 502 - Response time: 1582ms - IP: 192.168.64.33 - User: user_1035 - RequestID: 3j14oemycsw +2025-06-18T14:24:47.981Z [TRACE] order-service - Operation: webhook_sent - Processing time: 992ms - RequestID: fmdxp458rzj +2025-06-18T14:24:48.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 333ms - RequestID: qdzkcvrvpz +2025-06-18T14:24:48.181Z [DEBUG] user-service - DELETE /api/v1/users - Status: 500 - Response time: 1818ms - IP: 192.168.158.144 - User: user_1097 - RequestID: qacnh8u9fm +2025-06-18T14:24:48.281Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 834ms - IP: 192.168.147.171 - User: user_1092 - RequestID: yziivcz7aas +2025-06-18T14:24:48.381Z [INFO] order-service - Operation: order_created - Processing time: 873ms - RequestID: c7hhdwlcyrt +2025-06-18T14:24:48.481Z [DEBUG] order-service - Database INSERT on payments - Execution time: 251ms - Rows affected: 86 - RequestID: 3rwcf8z25v8 +2025-06-18T14:24:48.581Z [DEBUG] order-service - Operation: order_created - Processing time: 999ms - RequestID: i4awz269gb +2025-06-18T14:24:48.681Z [INFO] user-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.189.103 - RequestID: iz7bu1jf1rn +2025-06-18T14:24:48.781Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1817ms - IP: 192.168.235.117 - User: user_1061 - RequestID: orhb9k6449h +2025-06-18T14:24:48.881Z [INFO] user-service - Operation: payment_processed - Processing time: 740ms - RequestID: z67bmr620sr +2025-06-18T14:24:48.981Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 765ms - RequestID: 5l5i3feb76d +2025-06-18T14:24:49.081Z [DEBUG] notification-service - Operation: order_created - Processing time: 722ms - RequestID: w8ukrqiwge +2025-06-18T14:24:49.181Z [INFO] order-service - Operation: webhook_sent - Processing time: 628ms - RequestID: 0i571xdoccv8 +2025-06-18T14:24:49.281Z [DEBUG] payment-service - Auth event: login_success - User: user_1086 - IP: 192.168.170.215 - RequestID: iuokxma3fzb +2025-06-18T14:24:49.381Z [TRACE] payment-service - Operation: email_sent - Processing time: 486ms - RequestID: x2w2fwd9g2b +2025-06-18T14:24:49.481Z [TRACE] auth-service - POST /api/v1/users - Status: 201 - Response time: 950ms - IP: 192.168.138.123 - User: user_1001 - RequestID: gjgjjaxsdu8 +2025-06-18T14:24:49.581Z [INFO] inventory-service - Auth event: login_failed - User: user_1069 - IP: 192.168.79.141 - RequestID: yqvnvddlv7 +2025-06-18T14:24:49.681Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1789ms - IP: 192.168.68.128 - User: user_1061 - RequestID: c04npt11nio +2025-06-18T14:24:49.781Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.158.144 - RequestID: ka81ljsny6s +2025-06-18T14:24:49.881Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 169ms - Rows affected: 88 - RequestID: 9qdbo5d10ti +2025-06-18T14:24:49.981Z [INFO] order-service - Operation: order_created - Processing time: 439ms - RequestID: 0v4rt8j9fba +2025-06-18T14:24:50.081Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 983ms - RequestID: 2x4fi45k6ef +2025-06-18T14:24:50.181Z [INFO] order-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.13.72 - RequestID: 37nezcn2anb +2025-06-18T14:24:50.281Z [INFO] order-service - Auth event: logout - User: user_1002 - IP: 192.168.158.144 - RequestID: m8uf1ekfw1 +2025-06-18T14:24:50.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.227.77 - RequestID: t9l4cbgoei +2025-06-18T14:24:50.481Z [DEBUG] auth-service - GET /api/v1/orders - Status: 404 - Response time: 1996ms - IP: 192.168.44.5 - User: user_1059 - RequestID: ugqg7afcsfh +2025-06-18T14:24:50.581Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 200ms - RequestID: bupr1prtvcm +2025-06-18T14:24:50.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.97.87 - RequestID: 4910p2wnwmq +2025-06-18T14:24:50.781Z [TRACE] notification-service - Database DELETE on users - Execution time: 213ms - Rows affected: 4 - RequestID: e9d9p8nk6xr +2025-06-18T14:24:50.881Z [TRACE] payment-service - Database DELETE on users - Execution time: 85ms - Rows affected: 34 - RequestID: saklagluggq +2025-06-18T14:24:50.981Z [TRACE] notification-service - Auth event: login_success - User: user_1071 - IP: 192.168.138.123 - RequestID: gsop3p7jrww +2025-06-18T14:24:51.081Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 127ms - RequestID: 6gjt1qb802 +2025-06-18T14:24:51.181Z [TRACE] order-service - GET /api/v1/inventory - Status: 500 - Response time: 947ms - IP: 192.168.232.72 - User: user_1029 - RequestID: 8i8g9g5wzz +2025-06-18T14:24:51.281Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 508ms - RequestID: m9ml4qjrirj +2025-06-18T14:24:51.381Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 223ms - Rows affected: 85 - RequestID: 6te42afylnk +2025-06-18T14:24:51.481Z [DEBUG] payment-service - Operation: email_sent - Processing time: 351ms - RequestID: pklds78yv3b +2025-06-18T14:24:51.581Z [TRACE] payment-service - Database SELECT on users - Execution time: 178ms - Rows affected: 46 - RequestID: lkefze7pdec +2025-06-18T14:24:51.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.10.184 - RequestID: u9p1a32bl2e +2025-06-18T14:24:51.781Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 127ms - Rows affected: 2 - RequestID: 7rtmrlgskq2 +2025-06-18T14:24:51.881Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 200 - Response time: 1054ms - IP: 192.168.30.79 - User: user_1051 - RequestID: 99b8ghs1c4t +2025-06-18T14:24:51.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 544ms - RequestID: nc0ltcmdcpm +2025-06-18T14:24:52.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.100.240 - RequestID: 1sd0ay7y6uu +2025-06-18T14:24:52.181Z [INFO] notification-service - PATCH /api/v1/payments - Status: 403 - Response time: 1442ms - IP: 192.168.158.144 - User: user_1045 - RequestID: zzbb01puo1j +2025-06-18T14:24:52.281Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1914ms - IP: 192.168.32.38 - User: user_1039 - RequestID: ns6qw5mmz2d +2025-06-18T14:24:52.381Z [TRACE] order-service - Operation: email_sent - Processing time: 977ms - RequestID: g4gea0glr3p +2025-06-18T14:24:52.481Z [TRACE] inventory-service - Auth event: logout - User: user_1029 - IP: 192.168.133.7 - RequestID: l44p0hh5ou9 +2025-06-18T14:24:52.581Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1953ms - IP: 192.168.227.77 - User: user_1066 - RequestID: e0zkuljmcq +2025-06-18T14:24:52.681Z [INFO] notification-service - Operation: order_created - Processing time: 808ms - RequestID: vfkmh8z671m +2025-06-18T14:24:52.781Z [TRACE] payment-service - PATCH /api/v1/users - Status: 400 - Response time: 1209ms - IP: 192.168.100.240 - User: user_1008 - RequestID: a6eajn9uzqi +2025-06-18T14:24:52.881Z [TRACE] user-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.13.72 - RequestID: vqtvrfq0q0c +2025-06-18T14:24:52.981Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 898ms - RequestID: 61vjx9nfdla +2025-06-18T14:24:53.081Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 626ms - RequestID: 6iwbb1xckoj +2025-06-18T14:24:53.181Z [DEBUG] user-service - POST /api/v1/orders - Status: 400 - Response time: 867ms - IP: 192.168.13.72 - User: user_1003 - RequestID: 581ohda3k8m +2025-06-18T14:24:53.281Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 443ms - Rows affected: 69 - RequestID: 5fum5vt8p73 +2025-06-18T14:24:53.381Z [TRACE] order-service - Database SELECT on sessions - Execution time: 238ms - Rows affected: 53 - RequestID: clsxtc27obp +2025-06-18T14:24:53.481Z [INFO] order-service - GET /api/v1/orders - Status: 503 - Response time: 1002ms - IP: 192.168.100.240 - User: user_1030 - RequestID: 1mji4te4oud +2025-06-18T14:24:53.581Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 187ms - Rows affected: 32 - RequestID: bitc42vjs7 +2025-06-18T14:24:53.681Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 147ms - Rows affected: 3 - RequestID: xri0u45zlmp +2025-06-18T14:24:53.781Z [TRACE] inventory-service - Database SELECT on users - Execution time: 21ms - Rows affected: 48 - RequestID: 0hfzbo9blmlo +2025-06-18T14:24:53.881Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 157ms - Rows affected: 89 - RequestID: p1bcvi2y3kc +2025-06-18T14:24:53.981Z [TRACE] auth-service - Operation: cache_miss - Processing time: 313ms - RequestID: zltszagob9i +2025-06-18T14:24:54.081Z [INFO] notification-service - Operation: inventory_updated - Processing time: 208ms - RequestID: syiaclsmxdd +2025-06-18T14:24:54.181Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 471ms - Rows affected: 28 - RequestID: 0fwihrqfxqfv +2025-06-18T14:24:54.281Z [INFO] auth-service - PUT /api/v1/orders - Status: 401 - Response time: 1446ms - IP: 192.168.11.60 - User: user_1038 - RequestID: 6wkjn0l70v +2025-06-18T14:24:54.381Z [INFO] payment-service - Auth event: password_change - User: user_1069 - IP: 192.168.31.117 - RequestID: 8y0e60wyh7e +2025-06-18T14:24:54.481Z [TRACE] order-service - POST /api/v1/auth/login - Status: 500 - Response time: 631ms - IP: 192.168.167.32 - User: user_1083 - RequestID: nzhbques2q +2025-06-18T14:24:54.581Z [TRACE] notification-service - Auth event: login_failed - User: user_1021 - IP: 192.168.33.76 - RequestID: 0n8le6yktzv +2025-06-18T14:24:54.681Z [TRACE] order-service - Database INSERT on payments - Execution time: 92ms - Rows affected: 90 - RequestID: rfknxkqz23h +2025-06-18T14:24:54.781Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 125ms - Rows affected: 91 - RequestID: d5fws3ufyqh +2025-06-18T14:24:54.881Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 35ms - Rows affected: 65 - RequestID: zvzf01vlsuk +2025-06-18T14:24:54.981Z [TRACE] payment-service - Auth event: login_success - User: user_1007 - IP: 192.168.189.103 - RequestID: d2r5hck5y79 +2025-06-18T14:24:55.081Z [INFO] auth-service - GET /api/v1/payments - Status: 403 - Response time: 708ms - IP: 192.168.36.218 - User: user_1059 - RequestID: guf3436e39n +2025-06-18T14:24:55.181Z [TRACE] inventory-service - Auth event: login_success - User: user_1055 - IP: 192.168.36.218 - RequestID: 2gk93rg21hx +2025-06-18T14:24:55.281Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 637ms - RequestID: d385izxz7y8 +2025-06-18T14:24:55.381Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 503 - Response time: 1222ms - IP: 192.168.147.171 - User: user_1037 - RequestID: fhe4z98up8l +2025-06-18T14:24:55.481Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 388ms - RequestID: 3t8ykfo85z9 +2025-06-18T14:24:55.581Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 261ms - Rows affected: 15 - RequestID: z3xa7ikm3fn +2025-06-18T14:24:55.681Z [INFO] inventory-service - GET /api/v1/orders - Status: 404 - Response time: 1599ms - IP: 192.168.1.152 - User: user_1075 - RequestID: wi6xjjx80ub +2025-06-18T14:24:55.781Z [TRACE] payment-service - Auth event: logout - User: user_1036 - IP: 192.168.100.240 - RequestID: jao9g5px2i +2025-06-18T14:24:55.881Z [INFO] payment-service - Database INSERT on users - Execution time: 76ms - Rows affected: 84 - RequestID: lvswcbq2yk +2025-06-18T14:24:55.981Z [TRACE] order-service - Operation: order_created - Processing time: 226ms - RequestID: yu9abzbak8o +2025-06-18T14:24:56.081Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 267ms - Rows affected: 93 - RequestID: b1lpq1kvz5o +2025-06-18T14:24:56.181Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 201 - Response time: 1107ms - IP: 192.168.144.38 - User: user_1060 - RequestID: l3dmtjcoo7 +2025-06-18T14:24:56.281Z [INFO] notification-service - GET /api/v1/orders - Status: 500 - Response time: 265ms - IP: 192.168.81.206 - User: user_1005 - RequestID: 57z2bh3w62s +2025-06-18T14:24:56.381Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.187.199 - RequestID: 0j7u0w2fg4vd +2025-06-18T14:24:56.481Z [DEBUG] auth-service - Auth event: password_change - User: user_1011 - IP: 192.168.53.133 - RequestID: etsbeil6c2w +2025-06-18T14:24:56.581Z [DEBUG] order-service - Database INSERT on payments - Execution time: 283ms - Rows affected: 99 - RequestID: 3gbhcujjrnd +2025-06-18T14:24:56.681Z [TRACE] order-service - Database INSERT on payments - Execution time: 464ms - Rows affected: 65 - RequestID: p2as9xx80wp +2025-06-18T14:24:56.781Z [INFO] order-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.1.152 - RequestID: i0dw1h7xh6j +2025-06-18T14:24:56.881Z [INFO] order-service - Operation: cache_miss - Processing time: 332ms - RequestID: a75ku5hbz7e +2025-06-18T14:24:56.981Z [INFO] auth-service - Operation: cache_miss - Processing time: 157ms - RequestID: srp93xc8ab +2025-06-18T14:24:57.081Z [INFO] order-service - GET /api/v1/payments - Status: 400 - Response time: 990ms - IP: 192.168.79.116 - User: user_1073 - RequestID: y0hoyrgbszd +2025-06-18T14:24:57.181Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 201 - Response time: 1486ms - IP: 192.168.44.5 - User: user_1035 - RequestID: 7wsn6ulzipj +2025-06-18T14:24:57.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.158.144 - RequestID: 4u17n61d6gd +2025-06-18T14:24:57.381Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 101ms - RequestID: igea3iqm4b +2025-06-18T14:24:57.481Z [TRACE] order-service - Database DELETE on orders - Execution time: 323ms - Rows affected: 43 - RequestID: htcs37paij +2025-06-18T14:24:57.581Z [INFO] order-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.113.218 - RequestID: 8x5c7wb3r84 +2025-06-18T14:24:57.681Z [TRACE] user-service - Operation: cache_hit - Processing time: 144ms - RequestID: 4cnydiuvtma +2025-06-18T14:24:57.781Z [TRACE] auth-service - Operation: order_created - Processing time: 530ms - RequestID: egsytkrce2g +2025-06-18T14:24:57.881Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 405ms - RequestID: eipzqydft3 +2025-06-18T14:24:57.981Z [INFO] user-service - Operation: notification_queued - Processing time: 854ms - RequestID: kvdrhyrkww +2025-06-18T14:24:58.081Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 831ms - IP: 192.168.79.116 - User: user_1056 - RequestID: wy221lsgt9 +2025-06-18T14:24:58.181Z [TRACE] order-service - GET /api/v1/inventory - Status: 403 - Response time: 911ms - IP: 192.168.159.94 - User: user_1073 - RequestID: bsp3hkr813u +2025-06-18T14:24:58.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.194.41 - RequestID: dk60w0nzvv6 +2025-06-18T14:24:58.381Z [TRACE] auth-service - Auth event: password_change - User: user_1050 - IP: 192.168.46.63 - RequestID: wvqdwq9gz7r +2025-06-18T14:24:58.481Z [INFO] auth-service - PATCH /api/v1/orders - Status: 201 - Response time: 51ms - IP: 192.168.13.72 - User: user_1007 - RequestID: gxljx98hyas +2025-06-18T14:24:58.581Z [TRACE] user-service - Database DELETE on products - Execution time: 259ms - Rows affected: 2 - RequestID: tb9i79oq1li +2025-06-18T14:24:58.681Z [INFO] order-service - PUT /api/v1/users - Status: 200 - Response time: 1774ms - IP: 192.168.32.38 - User: user_1018 - RequestID: 40v6pbw6b9g +2025-06-18T14:24:58.781Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 932ms - IP: 192.168.113.218 - User: user_1004 - RequestID: ph6fkkuvl4h +2025-06-18T14:24:58.881Z [INFO] order-service - POST /api/v1/inventory - Status: 400 - Response time: 1952ms - IP: 192.168.247.134 - User: user_1009 - RequestID: t60935m1xhb +2025-06-18T14:24:58.981Z [TRACE] auth-service - Database SELECT on orders - Execution time: 142ms - Rows affected: 12 - RequestID: m7ri36b6bu +2025-06-18T14:24:59.081Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 123ms - Rows affected: 19 - RequestID: hyyymem4i7r +2025-06-18T14:24:59.181Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 500 - Response time: 481ms - IP: 192.168.141.100 - User: user_1004 - RequestID: 0xev0kinr2dr +2025-06-18T14:24:59.281Z [INFO] user-service - Operation: inventory_updated - Processing time: 387ms - RequestID: k3kvey47tl +2025-06-18T14:24:59.381Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.46.63 - RequestID: 8015ybw27sp +2025-06-18T14:24:59.481Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 404 - Response time: 584ms - IP: 192.168.64.33 - User: user_1016 - RequestID: d2ghf50re3 +2025-06-18T14:24:59.581Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 502 - Response time: 74ms - IP: 192.168.187.199 - User: user_1040 - RequestID: 3msfrjq257x +2025-06-18T14:24:59.681Z [TRACE] user-service - Database SELECT on orders - Execution time: 25ms - Rows affected: 10 - RequestID: 76z831inzgi +2025-06-18T14:24:59.781Z [TRACE] order-service - Database DELETE on users - Execution time: 149ms - Rows affected: 41 - RequestID: 4ujb6yssf9s +2025-06-18T14:24:59.881Z [TRACE] inventory-service - Auth event: logout - User: user_1004 - IP: 192.168.170.215 - RequestID: bfmxrhhplen +2025-06-18T14:24:59.981Z [INFO] auth-service - PUT /api/v1/inventory - Status: 404 - Response time: 210ms - IP: 192.168.32.38 - User: user_1027 - RequestID: 0pj05fdk62bj +2025-06-18T14:25:00.081Z [INFO] payment-service - Database DELETE on products - Execution time: 258ms - Rows affected: 46 - RequestID: 8awnsims4vp +2025-06-18T14:25:00.181Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 503 - Response time: 837ms - IP: 192.168.11.60 - User: user_1026 - RequestID: n90w4rfjvre +2025-06-18T14:25:00.281Z [TRACE] auth-service - Operation: order_created - Processing time: 426ms - RequestID: gb27ok78j9 +2025-06-18T14:25:00.381Z [TRACE] user-service - Auth event: password_change - User: user_1001 - IP: 192.168.181.225 - RequestID: ly9ufieg6v +2025-06-18T14:25:00.481Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 126ms - IP: 192.168.240.169 - User: user_1059 - RequestID: lopink6ne7 +2025-06-18T14:25:00.581Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 364ms - Rows affected: 10 - RequestID: nw3vmlnx2r +2025-06-18T14:25:00.681Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 203ms - Rows affected: 93 - RequestID: vblzazq0kjp +2025-06-18T14:25:00.781Z [INFO] payment-service - Operation: webhook_sent - Processing time: 548ms - RequestID: zox1j7hzvms +2025-06-18T14:25:00.881Z [TRACE] user-service - PUT /api/v1/orders - Status: 503 - Response time: 1082ms - IP: 192.168.242.165 - User: user_1039 - RequestID: co6mcritj7 +2025-06-18T14:25:00.981Z [INFO] payment-service - Database DELETE on payments - Execution time: 302ms - Rows affected: 52 - RequestID: zl2hrlc7w0q +2025-06-18T14:25:01.081Z [INFO] payment-service - Auth event: login_failed - User: user_1059 - IP: 192.168.31.117 - RequestID: 6htfm8to2jg +2025-06-18T14:25:01.181Z [INFO] auth-service - Operation: webhook_sent - Processing time: 318ms - RequestID: ngnne1keu28 +2025-06-18T14:25:01.281Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 501ms - RequestID: olgs95c7uzj +2025-06-18T14:25:01.381Z [TRACE] order-service - Auth event: logout - User: user_1056 - IP: 192.168.104.37 - RequestID: g1xvo1pua34 +2025-06-18T14:25:01.481Z [TRACE] order-service - Operation: email_sent - Processing time: 1014ms - RequestID: ik8x6mzcfo +2025-06-18T14:25:01.581Z [TRACE] payment-service - Operation: order_created - Processing time: 758ms - RequestID: b8d884sm0ye +2025-06-18T14:25:01.681Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 309ms - RequestID: 6rz1fpw0ja9 +2025-06-18T14:25:01.781Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 890ms - IP: 192.168.85.229 - User: user_1099 - RequestID: ce6n785k8rs +2025-06-18T14:25:01.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 230ms - RequestID: qjs272ew58n +2025-06-18T14:25:01.981Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 214ms - Rows affected: 39 - RequestID: 45qif2iayh3 +2025-06-18T14:25:02.081Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 500 - Response time: 654ms - IP: 192.168.229.123 - User: user_1052 - RequestID: 3kma1o6c6ho +2025-06-18T14:25:02.181Z [INFO] notification-service - Operation: email_sent - Processing time: 511ms - RequestID: b8jnqfjhcpl +2025-06-18T14:25:02.281Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 351ms - Rows affected: 4 - RequestID: 9342yhhlfk6 +2025-06-18T14:25:02.381Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.187.199 - RequestID: q6lwtyr62la +2025-06-18T14:25:02.481Z [TRACE] inventory-service - Database INSERT on products - Execution time: 408ms - Rows affected: 57 - RequestID: ll6e7cs1kl +2025-06-18T14:25:02.581Z [INFO] user-service - Auth event: login_failed - User: user_1021 - IP: 192.168.235.117 - RequestID: q1tl65ss88d +2025-06-18T14:25:02.681Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 467ms - Rows affected: 33 - RequestID: jzkvx3mdez +2025-06-18T14:25:02.781Z [TRACE] user-service - Operation: payment_processed - Processing time: 675ms - RequestID: k05hqsypjn +2025-06-18T14:25:02.881Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 56ms - IP: 192.168.174.114 - User: user_1096 - RequestID: ke7460bjxxn +2025-06-18T14:25:02.981Z [DEBUG] notification-service - Operation: order_created - Processing time: 234ms - RequestID: flyqnd9x6z +2025-06-18T14:25:03.081Z [TRACE] payment-service - Operation: order_created - Processing time: 161ms - RequestID: stzjabwqls +2025-06-18T14:25:03.181Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 14ms - Rows affected: 64 - RequestID: nsatrptubgh +2025-06-18T14:25:03.281Z [INFO] inventory-service - Auth event: login_success - User: user_1015 - IP: 192.168.147.171 - RequestID: glpi012rj7d +2025-06-18T14:25:03.381Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1672ms - IP: 192.168.79.116 - User: user_1002 - RequestID: xkg3mw25eni +2025-06-18T14:25:03.481Z [TRACE] order-service - Database DELETE on sessions - Execution time: 262ms - Rows affected: 33 - RequestID: fkers8y1q9 +2025-06-18T14:25:03.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.242.165 - RequestID: 5q2qc77qv65 +2025-06-18T14:25:03.681Z [DEBUG] user-service - Database DELETE on users - Execution time: 368ms - Rows affected: 44 - RequestID: yafuytb9af +2025-06-18T14:25:03.781Z [DEBUG] user-service - Auth event: password_change - User: user_1019 - IP: 192.168.104.37 - RequestID: xnlze3qnvc +2025-06-18T14:25:03.881Z [DEBUG] order-service - Auth event: password_change - User: user_1059 - IP: 192.168.187.199 - RequestID: 6rphbv41xnr +2025-06-18T14:25:03.981Z [INFO] user-service - Operation: email_sent - Processing time: 112ms - RequestID: dg9gqaiann +2025-06-18T14:25:04.081Z [INFO] user-service - Operation: payment_processed - Processing time: 801ms - RequestID: 2xwlhq0w7sx +2025-06-18T14:25:04.181Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 945ms - RequestID: sb7adq63yho +2025-06-18T14:25:04.281Z [INFO] user-service - Database INSERT on payments - Execution time: 207ms - Rows affected: 13 - RequestID: 8rej40gfxa3 +2025-06-18T14:25:04.381Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 334ms - Rows affected: 59 - RequestID: agurx0gh8rg +2025-06-18T14:25:04.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 138ms - RequestID: w8v711d4yr +2025-06-18T14:25:04.581Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 358ms - Rows affected: 48 - RequestID: 4dm8au17o9n +2025-06-18T14:25:04.681Z [TRACE] user-service - Auth event: login_success - User: user_1051 - IP: 192.168.133.7 - RequestID: ga3ahgnhoj +2025-06-18T14:25:04.781Z [TRACE] notification-service - Database DELETE on payments - Execution time: 389ms - Rows affected: 12 - RequestID: sz87p8yu2cb +2025-06-18T14:25:04.881Z [TRACE] order-service - PUT /api/v1/orders - Status: 401 - Response time: 1494ms - IP: 192.168.68.128 - User: user_1021 - RequestID: j0zygi7uvd +2025-06-18T14:25:04.981Z [TRACE] user-service - Operation: payment_processed - Processing time: 278ms - RequestID: lfugigpgxq +2025-06-18T14:25:05.081Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 400 - Response time: 824ms - IP: 192.168.113.218 - User: user_1079 - RequestID: 4i4b05h7sai +2025-06-18T14:25:05.181Z [INFO] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1979ms - IP: 192.168.79.143 - User: user_1093 - RequestID: jm2a0neymuo +2025-06-18T14:25:05.281Z [TRACE] notification-service - Auth event: password_change - User: user_1091 - IP: 192.168.1.152 - RequestID: v2admdylqsa +2025-06-18T14:25:05.381Z [DEBUG] user-service - Database SELECT on orders - Execution time: 322ms - Rows affected: 97 - RequestID: p4z124xgjx +2025-06-18T14:25:05.481Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 160ms - RequestID: 4exbj4otfiu +2025-06-18T14:25:05.581Z [INFO] notification-service - GET /api/v1/inventory - Status: 403 - Response time: 1281ms - IP: 192.168.36.218 - User: user_1038 - RequestID: zqj3wn8s1h +2025-06-18T14:25:05.681Z [INFO] auth-service - GET /api/v1/auth/login - Status: 200 - Response time: 1653ms - IP: 192.168.174.114 - User: user_1088 - RequestID: yazumfs3mja +2025-06-18T14:25:05.781Z [TRACE] auth-service - POST /api/v1/users - Status: 401 - Response time: 573ms - IP: 192.168.68.158 - User: user_1052 - RequestID: ux8b2eej16 +2025-06-18T14:25:05.881Z [TRACE] user-service - Auth event: login_failed - User: user_1028 - IP: 192.168.242.165 - RequestID: 6kokigldt4g +2025-06-18T14:25:05.981Z [INFO] order-service - Operation: cache_miss - Processing time: 194ms - RequestID: 5n2v6vrbdcj +2025-06-18T14:25:06.081Z [INFO] notification-service - Database UPDATE on products - Execution time: 213ms - Rows affected: 90 - RequestID: jpq03l79uqn +2025-06-18T14:25:06.181Z [INFO] order-service - Operation: order_created - Processing time: 505ms - RequestID: 05d8e3q22xzi +2025-06-18T14:25:06.281Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 605ms - IP: 192.168.187.199 - User: user_1043 - RequestID: ij7346a3dkm +2025-06-18T14:25:06.381Z [INFO] order-service - Auth event: logout - User: user_1043 - IP: 192.168.196.226 - RequestID: m5ec72rtdwr +2025-06-18T14:25:06.481Z [INFO] user-service - Database UPDATE on products - Execution time: 335ms - Rows affected: 36 - RequestID: skf87t682qe +2025-06-18T14:25:06.581Z [DEBUG] order-service - Database SELECT on users - Execution time: 224ms - Rows affected: 51 - RequestID: nlnr3a9pzg +2025-06-18T14:25:06.681Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 200 - Response time: 1305ms - IP: 192.168.33.76 - User: user_1025 - RequestID: a5cu7lomqpk +2025-06-18T14:25:06.781Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 1015ms - RequestID: 48jwtkrjtxe +2025-06-18T14:25:06.881Z [INFO] inventory-service - Database DELETE on products - Execution time: 278ms - Rows affected: 13 - RequestID: ncvz6f02gor +2025-06-18T14:25:06.981Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 403 - Response time: 20ms - IP: 192.168.174.114 - User: user_1014 - RequestID: wmi2w21ziqr +2025-06-18T14:25:07.081Z [INFO] payment-service - GET /api/v1/payments - Status: 403 - Response time: 387ms - IP: 192.168.64.33 - User: user_1019 - RequestID: a5a05wjnz5 +2025-06-18T14:25:07.181Z [INFO] auth-service - Operation: webhook_sent - Processing time: 285ms - RequestID: zjo4i0m387i +2025-06-18T14:25:07.281Z [DEBUG] user-service - Database DELETE on users - Execution time: 111ms - Rows affected: 79 - RequestID: fcpfnf7v0lp +2025-06-18T14:25:07.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1058 - IP: 192.168.187.199 - RequestID: ggwozquhb7q +2025-06-18T14:25:07.481Z [DEBUG] notification-service - Auth event: login_failed - User: user_1051 - IP: 192.168.68.158 - RequestID: gz08iyv26k5 +2025-06-18T14:25:07.581Z [INFO] notification-service - Operation: payment_processed - Processing time: 431ms - RequestID: aivp5pav4br +2025-06-18T14:25:07.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.159.94 - RequestID: 9opjuko269q +2025-06-18T14:25:07.781Z [TRACE] inventory-service - Auth event: logout - User: user_1088 - IP: 192.168.196.226 - RequestID: sp237g8wp8g +2025-06-18T14:25:07.881Z [DEBUG] notification-service - Database DELETE on products - Execution time: 116ms - Rows affected: 87 - RequestID: 2vmxqyp39gy +2025-06-18T14:25:07.981Z [INFO] user-service - PUT /api/v1/payments - Status: 500 - Response time: 114ms - IP: 192.168.97.87 - User: user_1035 - RequestID: z5dikbmrwxl +2025-06-18T14:25:08.081Z [INFO] inventory-service - Database SELECT on products - Execution time: 315ms - Rows affected: 31 - RequestID: a1a59nx5d45 +2025-06-18T14:25:08.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.97.87 - RequestID: 5gmr2051smd +2025-06-18T14:25:08.281Z [INFO] payment-service - POST /api/v1/orders - Status: 404 - Response time: 564ms - IP: 192.168.170.215 - User: user_1061 - RequestID: bwtovgwm3fe +2025-06-18T14:25:08.381Z [TRACE] payment-service - Operation: order_created - Processing time: 187ms - RequestID: ue72wwb8nvl +2025-06-18T14:25:08.481Z [INFO] order-service - Operation: payment_processed - Processing time: 714ms - RequestID: rntp3dpbzg8 +2025-06-18T14:25:08.581Z [TRACE] user-service - Database SELECT on payments - Execution time: 486ms - Rows affected: 42 - RequestID: hcwdr5ys116 +2025-06-18T14:25:08.681Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 447ms - IP: 192.168.211.72 - User: user_1006 - RequestID: 4v0xmimi0sf +2025-06-18T14:25:08.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1089 - IP: 192.168.159.94 - RequestID: t8mlkarhzb +2025-06-18T14:25:08.881Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 519ms - IP: 192.168.133.7 - User: user_1086 - RequestID: i9iseumg1a +2025-06-18T14:25:08.981Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1514ms - IP: 192.168.211.72 - User: user_1039 - RequestID: lk64u5nmlhl +2025-06-18T14:25:09.081Z [INFO] payment-service - Auth event: password_change - User: user_1064 - IP: 192.168.247.134 - RequestID: s87450b4dle +2025-06-18T14:25:09.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.79.141 - RequestID: 4uhh8r4i0db +2025-06-18T14:25:09.281Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 237ms - Rows affected: 28 - RequestID: hxi27axn93i +2025-06-18T14:25:09.381Z [INFO] notification-service - Auth event: login_failed - User: user_1083 - IP: 192.168.33.76 - RequestID: 3ymancnj54n +2025-06-18T14:25:09.481Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 900ms - RequestID: cmjhddmuj7 +2025-06-18T14:25:09.581Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 276ms - Rows affected: 46 - RequestID: e3onn3ys4h +2025-06-18T14:25:09.681Z [INFO] user-service - PUT /api/v1/orders - Status: 401 - Response time: 118ms - IP: 192.168.187.199 - User: user_1019 - RequestID: eofj9ma7p3 +2025-06-18T14:25:09.781Z [TRACE] payment-service - Operation: cache_hit - Processing time: 809ms - RequestID: e4df3begxw +2025-06-18T14:25:09.881Z [DEBUG] notification-service - Operation: order_created - Processing time: 460ms - RequestID: z3xzgg4fwl +2025-06-18T14:25:09.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1078 - IP: 192.168.189.103 - RequestID: tg74o3slwuf +2025-06-18T14:25:10.081Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 157ms - RequestID: 6gxwcotl2oh +2025-06-18T14:25:10.181Z [TRACE] notification-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.11.60 - RequestID: u4neuirm3pn +2025-06-18T14:25:10.281Z [TRACE] user-service - Auth event: login_success - User: user_1002 - IP: 192.168.235.117 - RequestID: hrqyht6bmvv +2025-06-18T14:25:10.381Z [TRACE] user-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.227.77 - RequestID: 1jy4qjjuqg2 +2025-06-18T14:25:10.481Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 224ms - Rows affected: 0 - RequestID: l0swjym0sio +2025-06-18T14:25:10.581Z [INFO] user-service - Database INSERT on users - Execution time: 388ms - Rows affected: 66 - RequestID: v3irc6s4iif +2025-06-18T14:25:10.681Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 401 - Response time: 1651ms - IP: 192.168.31.117 - User: user_1039 - RequestID: igrqjwpm1ul +2025-06-18T14:25:10.781Z [INFO] user-service - Database UPDATE on users - Execution time: 208ms - Rows affected: 94 - RequestID: dlon7rkzzgk +2025-06-18T14:25:10.881Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 404 - Response time: 1439ms - IP: 192.168.68.128 - User: user_1085 - RequestID: ih0qt5ktteh +2025-06-18T14:25:10.981Z [DEBUG] order-service - PATCH /api/v1/users - Status: 201 - Response time: 735ms - IP: 192.168.247.134 - User: user_1007 - RequestID: 284bjyxaazh +2025-06-18T14:25:11.081Z [INFO] notification-service - Database SELECT on products - Execution time: 487ms - Rows affected: 26 - RequestID: 1ldp6awdwjs +2025-06-18T14:25:11.181Z [INFO] notification-service - Database UPDATE on products - Execution time: 104ms - Rows affected: 16 - RequestID: alauixliz5 +2025-06-18T14:25:11.281Z [INFO] inventory-service - Database SELECT on payments - Execution time: 321ms - Rows affected: 77 - RequestID: jkxzbswozuk +2025-06-18T14:25:11.381Z [INFO] inventory-service - Database UPDATE on products - Execution time: 46ms - Rows affected: 62 - RequestID: j2exun2rjwm +2025-06-18T14:25:11.481Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1452ms - IP: 192.168.159.94 - User: user_1079 - RequestID: yrx5jfqmx8 +2025-06-18T14:25:11.581Z [INFO] notification-service - Operation: notification_queued - Processing time: 551ms - RequestID: 89vncnq312m +2025-06-18T14:25:11.681Z [INFO] user-service - Operation: cache_miss - Processing time: 483ms - RequestID: pz800amrnsc +2025-06-18T14:25:11.781Z [TRACE] auth-service - PATCH /api/v1/users - Status: 200 - Response time: 1753ms - IP: 192.168.232.72 - User: user_1081 - RequestID: eine4lpzs4m +2025-06-18T14:25:11.881Z [DEBUG] notification-service - Database INSERT on users - Execution time: 267ms - Rows affected: 27 - RequestID: nf3r5uqgtgf +2025-06-18T14:25:11.981Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 400 - Response time: 1511ms - IP: 192.168.158.144 - User: user_1035 - RequestID: va4wefil3o +2025-06-18T14:25:12.081Z [TRACE] auth-service - Database DELETE on products - Execution time: 241ms - Rows affected: 98 - RequestID: ujjrud7u77 +2025-06-18T14:25:12.181Z [TRACE] notification-service - Database UPDATE on products - Execution time: 283ms - Rows affected: 35 - RequestID: 3iipsdxf2sp +2025-06-18T14:25:12.281Z [INFO] auth-service - PUT /api/v1/payments - Status: 201 - Response time: 762ms - IP: 192.168.85.229 - User: user_1042 - RequestID: aw5n8i0bop +2025-06-18T14:25:12.381Z [DEBUG] payment-service - Database DELETE on users - Execution time: 15ms - Rows affected: 31 - RequestID: hw2lqev1wna +2025-06-18T14:25:12.481Z [DEBUG] order-service - Auth event: login_failed - User: user_1094 - IP: 192.168.133.7 - RequestID: fvi5asfii4s +2025-06-18T14:25:12.581Z [DEBUG] order-service - Auth event: password_change - User: user_1076 - IP: 192.168.79.116 - RequestID: itavjcohqin +2025-06-18T14:25:12.681Z [TRACE] notification-service - Auth event: logout - User: user_1084 - IP: 192.168.240.169 - RequestID: ict22j27tum +2025-06-18T14:25:12.781Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 363ms - RequestID: 1spjwe70ebq +2025-06-18T14:25:12.881Z [TRACE] auth-service - Database SELECT on products - Execution time: 345ms - Rows affected: 23 - RequestID: lmev28eb23 +2025-06-18T14:25:12.981Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 235ms - Rows affected: 73 - RequestID: i49arsc37wa +2025-06-18T14:25:13.081Z [INFO] payment-service - Database UPDATE on orders - Execution time: 67ms - Rows affected: 1 - RequestID: klq1bpn1itl +2025-06-18T14:25:13.181Z [INFO] payment-service - Auth event: login_failed - User: user_1042 - IP: 192.168.64.33 - RequestID: 71h6734gqw8 +2025-06-18T14:25:13.281Z [TRACE] order-service - Operation: inventory_updated - Processing time: 898ms - RequestID: bvce9tiq6r5 +2025-06-18T14:25:13.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 702ms - RequestID: am2lj9rs0i9 +2025-06-18T14:25:13.481Z [INFO] notification-service - Database DELETE on sessions - Execution time: 68ms - Rows affected: 62 - RequestID: fwc4r52jv14 +2025-06-18T14:25:13.581Z [INFO] user-service - Auth event: logout - User: user_1052 - IP: 192.168.36.218 - RequestID: utjzdpofyva +2025-06-18T14:25:13.681Z [TRACE] order-service - Database DELETE on orders - Execution time: 409ms - Rows affected: 2 - RequestID: snb53dnvh2q +2025-06-18T14:25:13.781Z [INFO] order-service - DELETE /api/v1/orders - Status: 500 - Response time: 426ms - IP: 192.168.31.117 - User: user_1072 - RequestID: 5lnnpqufybd +2025-06-18T14:25:13.881Z [INFO] notification-service - Operation: notification_queued - Processing time: 62ms - RequestID: x089hk1f25 +2025-06-18T14:25:13.981Z [TRACE] order-service - Auth event: login_failed - User: user_1076 - IP: 192.168.227.77 - RequestID: ift41yktlv +2025-06-18T14:25:14.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 647ms - RequestID: ul16m74rnqf +2025-06-18T14:25:14.181Z [INFO] order-service - Database DELETE on payments - Execution time: 394ms - Rows affected: 13 - RequestID: 7bz57kleu8h +2025-06-18T14:25:14.281Z [TRACE] order-service - DELETE /api/v1/users - Status: 404 - Response time: 1082ms - IP: 192.168.194.41 - User: user_1006 - RequestID: l077xd8te0h +2025-06-18T14:25:14.381Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 401 - Response time: 363ms - IP: 192.168.187.199 - User: user_1019 - RequestID: nrel67vsmxl +2025-06-18T14:25:14.481Z [TRACE] notification-service - Database INSERT on orders - Execution time: 73ms - Rows affected: 78 - RequestID: fe7os268mr4 +2025-06-18T14:25:14.581Z [DEBUG] auth-service - Auth event: login_success - User: user_1065 - IP: 192.168.36.218 - RequestID: h9qa5imxv7h +2025-06-18T14:25:14.681Z [DEBUG] user-service - GET /api/v1/orders - Status: 403 - Response time: 796ms - IP: 192.168.14.77 - User: user_1045 - RequestID: 1pr9ni0wky5 +2025-06-18T14:25:14.781Z [DEBUG] order-service - Auth event: login_success - User: user_1045 - IP: 192.168.10.184 - RequestID: c50o2ce4xi +2025-06-18T14:25:14.881Z [DEBUG] user-service - Operation: order_created - Processing time: 526ms - RequestID: fdg3uad36fw +2025-06-18T14:25:14.981Z [INFO] auth-service - Operation: payment_processed - Processing time: 298ms - RequestID: mdv9hewd4m +2025-06-18T14:25:15.081Z [DEBUG] payment-service - Auth event: login_failed - User: user_1065 - IP: 192.168.68.158 - RequestID: 9upntx0k3hn +2025-06-18T14:25:15.181Z [DEBUG] order-service - Auth event: login_failed - User: user_1052 - IP: 192.168.30.79 - RequestID: pauer99tr8a +2025-06-18T14:25:15.281Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 330ms - Rows affected: 27 - RequestID: b9ku5s04umc +2025-06-18T14:25:15.381Z [INFO] auth-service - Database UPDATE on orders - Execution time: 376ms - Rows affected: 8 - RequestID: 1m45tttsmq2 +2025-06-18T14:25:15.481Z [INFO] auth-service - Database DELETE on payments - Execution time: 33ms - Rows affected: 49 - RequestID: k8w9m2sqi8 +2025-06-18T14:25:15.581Z [INFO] payment-service - PUT /api/v1/orders - Status: 403 - Response time: 1207ms - IP: 192.168.44.5 - User: user_1099 - RequestID: 49wnnroud9f +2025-06-18T14:25:15.681Z [TRACE] user-service - Database DELETE on sessions - Execution time: 32ms - Rows affected: 3 - RequestID: y8c37n9e6zm +2025-06-18T14:25:15.781Z [DEBUG] auth-service - Database DELETE on products - Execution time: 55ms - Rows affected: 52 - RequestID: o00p5duzvn +2025-06-18T14:25:15.881Z [INFO] payment-service - Auth event: password_change - User: user_1013 - IP: 192.168.33.76 - RequestID: o1868ji60f +2025-06-18T14:25:15.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 824ms - RequestID: ld624www86i +2025-06-18T14:25:16.081Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1887ms - IP: 192.168.141.100 - User: user_1060 - RequestID: rxxbozt9wbl +2025-06-18T14:25:16.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 985ms - RequestID: mecqo8zl9n +2025-06-18T14:25:16.281Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 400 - Response time: 86ms - IP: 192.168.13.72 - User: user_1049 - RequestID: jlwuy82zjhr +2025-06-18T14:25:16.381Z [INFO] auth-service - GET /api/v1/inventory - Status: 400 - Response time: 1637ms - IP: 192.168.44.5 - User: user_1082 - RequestID: xgfh459n2st +2025-06-18T14:25:16.481Z [DEBUG] auth-service - Operation: order_created - Processing time: 560ms - RequestID: j50kyhad5rq +2025-06-18T14:25:16.581Z [TRACE] user-service - Operation: payment_processed - Processing time: 784ms - RequestID: 88gd30uw8wy +2025-06-18T14:25:16.681Z [TRACE] user-service - Operation: cache_hit - Processing time: 840ms - RequestID: uer1itcmpca +2025-06-18T14:25:16.781Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 401 - Response time: 804ms - IP: 192.168.79.116 - User: user_1045 - RequestID: dc56o284nv +2025-06-18T14:25:16.881Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 997ms - RequestID: jxkxlja88ya +2025-06-18T14:25:16.981Z [TRACE] order-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.187.199 - RequestID: kei2m1uk2i +2025-06-18T14:25:17.081Z [TRACE] notification-service - Database INSERT on users - Execution time: 377ms - Rows affected: 11 - RequestID: x8q0uxprgd +2025-06-18T14:25:17.181Z [TRACE] payment-service - Auth event: password_change - User: user_1014 - IP: 192.168.167.32 - RequestID: 51j158mvkrx +2025-06-18T14:25:17.281Z [DEBUG] order-service - Auth event: login_failed - User: user_1028 - IP: 192.168.28.146 - RequestID: rgat8iijv0h +2025-06-18T14:25:17.381Z [INFO] user-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.30.79 - RequestID: ef12671kype +2025-06-18T14:25:17.481Z [TRACE] user-service - Database SELECT on sessions - Execution time: 411ms - Rows affected: 41 - RequestID: jyuim3b4isl +2025-06-18T14:25:17.581Z [TRACE] order-service - Database SELECT on sessions - Execution time: 39ms - Rows affected: 85 - RequestID: zczsgzi3yz +2025-06-18T14:25:17.681Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1700ms - IP: 192.168.167.32 - User: user_1055 - RequestID: l0mnr1yz9g +2025-06-18T14:25:17.781Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 43ms - Rows affected: 55 - RequestID: 6kkkr67xxgf +2025-06-18T14:25:17.881Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 51ms - Rows affected: 54 - RequestID: dnpb8w3yukp +2025-06-18T14:25:17.981Z [INFO] auth-service - PUT /api/v1/inventory - Status: 201 - Response time: 1562ms - IP: 192.168.227.233 - User: user_1073 - RequestID: 1o92oxtzsg5 +2025-06-18T14:25:18.081Z [TRACE] auth-service - Database SELECT on products - Execution time: 451ms - Rows affected: 69 - RequestID: tn4swhx1g5m +2025-06-18T14:25:18.181Z [INFO] order-service - Database SELECT on payments - Execution time: 271ms - Rows affected: 69 - RequestID: m85r12sbxcf +2025-06-18T14:25:18.281Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1873ms - IP: 192.168.1.152 - User: user_1080 - RequestID: cq51mdopmqb +2025-06-18T14:25:18.381Z [DEBUG] payment-service - Auth event: login_success - User: user_1089 - IP: 192.168.53.133 - RequestID: itgrjch1s88 +2025-06-18T14:25:18.481Z [INFO] notification-service - Operation: email_sent - Processing time: 181ms - RequestID: osgu6gm7gzi +2025-06-18T14:25:18.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.144.38 - RequestID: s7bz6z3s8y +2025-06-18T14:25:18.681Z [DEBUG] user-service - Database INSERT on users - Execution time: 184ms - Rows affected: 25 - RequestID: 0stz2s7pfo9 +2025-06-18T14:25:18.781Z [INFO] order-service - Operation: inventory_updated - Processing time: 616ms - RequestID: ftm7zojrp7p +2025-06-18T14:25:18.881Z [INFO] auth-service - Auth event: logout - User: user_1056 - IP: 192.168.227.77 - RequestID: wnsrfjfz55 +2025-06-18T14:25:18.981Z [TRACE] user-service - Auth event: logout - User: user_1069 - IP: 192.168.10.184 - RequestID: gdxcf70p1a4 +2025-06-18T14:25:19.081Z [DEBUG] user-service - DELETE /api/v1/users - Status: 201 - Response time: 732ms - IP: 192.168.28.146 - User: user_1055 - RequestID: nhfqoib7skb +2025-06-18T14:25:19.181Z [TRACE] user-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.242.165 - RequestID: 1fj4244nwxcj +2025-06-18T14:25:19.281Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 503 - Response time: 645ms - IP: 192.168.170.215 - User: user_1006 - RequestID: xjo8gx51zg +2025-06-18T14:25:19.381Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 409ms - Rows affected: 58 - RequestID: 5cohidh1qpg +2025-06-18T14:25:19.481Z [TRACE] notification-service - PATCH /api/v1/users - Status: 503 - Response time: 1588ms - IP: 192.168.53.133 - User: user_1064 - RequestID: r9cl5cpker +2025-06-18T14:25:19.581Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 201 - Response time: 272ms - IP: 192.168.113.218 - User: user_1038 - RequestID: iv7el0nvoyc +2025-06-18T14:25:19.681Z [DEBUG] payment-service - Auth event: logout - User: user_1009 - IP: 192.168.235.117 - RequestID: 4b25okwztux +2025-06-18T14:25:19.781Z [INFO] auth-service - Auth event: login_success - User: user_1062 - IP: 192.168.170.215 - RequestID: u452nz792d +2025-06-18T14:25:19.881Z [TRACE] payment-service - PATCH /api/v1/users - Status: 503 - Response time: 1390ms - IP: 192.168.240.169 - User: user_1041 - RequestID: 1yp890e6vtl +2025-06-18T14:25:19.981Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 355ms - Rows affected: 79 - RequestID: fzk4gbup9hs +2025-06-18T14:25:20.081Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 346ms - Rows affected: 64 - RequestID: v5myz1uv6ao +2025-06-18T14:25:20.181Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 246ms - Rows affected: 77 - RequestID: mchho6hjyro +2025-06-18T14:25:20.281Z [DEBUG] order-service - Operation: order_created - Processing time: 763ms - RequestID: n4qmkhosb0f +2025-06-18T14:25:20.381Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 118ms - Rows affected: 60 - RequestID: 6j1gdjhf2vn +2025-06-18T14:25:20.481Z [TRACE] payment-service - DELETE /api/v1/users - Status: 403 - Response time: 1208ms - IP: 192.168.46.63 - User: user_1080 - RequestID: ybokgzs7rz +2025-06-18T14:25:20.581Z [TRACE] notification-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.159.94 - RequestID: 2budsmliixi +2025-06-18T14:25:20.681Z [TRACE] user-service - POST /api/v1/orders - Status: 503 - Response time: 51ms - IP: 192.168.240.169 - User: user_1005 - RequestID: o4048iu766 +2025-06-18T14:25:20.781Z [INFO] auth-service - Operation: payment_processed - Processing time: 133ms - RequestID: zfrdsbu9r4g +2025-06-18T14:25:20.881Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 143ms - Rows affected: 19 - RequestID: sbgp9rt8u6n +2025-06-18T14:25:20.981Z [TRACE] order-service - Operation: inventory_updated - Processing time: 371ms - RequestID: oh3eaq9icu +2025-06-18T14:25:21.081Z [DEBUG] order-service - GET /api/v1/orders - Status: 200 - Response time: 1425ms - IP: 192.168.242.165 - User: user_1039 - RequestID: 4v76btsf5yf +2025-06-18T14:25:21.181Z [INFO] auth-service - Auth event: login_success - User: user_1069 - IP: 192.168.68.128 - RequestID: cffamn07bhu +2025-06-18T14:25:21.281Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 503 - Response time: 403ms - IP: 192.168.242.165 - User: user_1089 - RequestID: 9w9cpomyvs4 +2025-06-18T14:25:21.381Z [TRACE] user-service - Database INSERT on sessions - Execution time: 384ms - Rows affected: 22 - RequestID: lb13t23fsa +2025-06-18T14:25:21.481Z [DEBUG] user-service - PUT /api/v1/orders - Status: 502 - Response time: 1816ms - IP: 192.168.79.143 - User: user_1009 - RequestID: htkv5it6s4 +2025-06-18T14:25:21.581Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 396ms - Rows affected: 37 - RequestID: kp6x5yogi4 +2025-06-18T14:25:21.681Z [INFO] notification-service - Database INSERT on payments - Execution time: 69ms - Rows affected: 72 - RequestID: 454chnt07c +2025-06-18T14:25:21.781Z [TRACE] auth-service - Auth event: logout - User: user_1048 - IP: 192.168.79.141 - RequestID: gy0f0kqfm7l +2025-06-18T14:25:21.881Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 656ms - IP: 192.168.79.143 - User: user_1070 - RequestID: jjpjwb1diio +2025-06-18T14:25:21.981Z [INFO] payment-service - Database INSERT on products - Execution time: 263ms - Rows affected: 23 - RequestID: eg47ig55b56 +2025-06-18T14:25:22.081Z [INFO] payment-service - Auth event: logout - User: user_1012 - IP: 192.168.174.114 - RequestID: 8ph8hecysih +2025-06-18T14:25:22.181Z [TRACE] payment-service - Operation: order_created - Processing time: 759ms - RequestID: g8d4y2h5k9 +2025-06-18T14:25:22.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.181.225 - RequestID: zs67g2iufx9 +2025-06-18T14:25:22.381Z [INFO] order-service - Auth event: login_success - User: user_1023 - IP: 192.168.79.141 - RequestID: 784jli894wq +2025-06-18T14:25:22.481Z [INFO] user-service - Database INSERT on sessions - Execution time: 453ms - Rows affected: 36 - RequestID: wuqjqpxtelq +2025-06-18T14:25:22.581Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 400 - Response time: 1010ms - IP: 192.168.36.218 - User: user_1048 - RequestID: fsreq1ktp07 +2025-06-18T14:25:22.681Z [TRACE] order-service - PATCH /api/v1/users - Status: 503 - Response time: 1936ms - IP: 192.168.30.79 - User: user_1092 - RequestID: rg1rkmhi54 +2025-06-18T14:25:22.781Z [TRACE] order-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.30.79 - RequestID: 73vqb5vlqio +2025-06-18T14:25:22.881Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 365ms - RequestID: pabdevx2zvk +2025-06-18T14:25:22.981Z [INFO] payment-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.133.7 - RequestID: 2l4xmjipvmf +2025-06-18T14:25:23.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1042 - IP: 192.168.158.144 - RequestID: bbovkuorpfd +2025-06-18T14:25:23.181Z [DEBUG] order-service - GET /api/v1/orders - Status: 400 - Response time: 1561ms - IP: 192.168.79.143 - User: user_1030 - RequestID: 5491hk8llbx +2025-06-18T14:25:23.281Z [INFO] auth-service - Database UPDATE on orders - Execution time: 107ms - Rows affected: 92 - RequestID: 427bqug4im +2025-06-18T14:25:23.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.36.218 - RequestID: ofpg2ir8n3f +2025-06-18T14:25:23.481Z [TRACE] user-service - Operation: cache_hit - Processing time: 245ms - RequestID: yn29q9k7de +2025-06-18T14:25:23.581Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 246ms - Rows affected: 97 - RequestID: ss2k675nxbo +2025-06-18T14:25:23.681Z [DEBUG] order-service - Operation: payment_processed - Processing time: 292ms - RequestID: g3extlue2la +2025-06-18T14:25:23.781Z [TRACE] order-service - POST /api/v1/users - Status: 404 - Response time: 286ms - IP: 192.168.227.77 - User: user_1061 - RequestID: gasq6q6x0e +2025-06-18T14:25:23.881Z [TRACE] payment-service - PUT /api/v1/payments - Status: 200 - Response time: 1005ms - IP: 192.168.187.199 - User: user_1044 - RequestID: elmqnnr4g9q +2025-06-18T14:25:23.981Z [INFO] user-service - Database INSERT on payments - Execution time: 11ms - Rows affected: 62 - RequestID: frwhe9db0zc +2025-06-18T14:25:24.081Z [INFO] notification-service - Operation: order_created - Processing time: 277ms - RequestID: 9ir5dz5g4b +2025-06-18T14:25:24.181Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 334ms - Rows affected: 76 - RequestID: l7anhkdxnsh +2025-06-18T14:25:24.281Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 467ms - IP: 192.168.97.87 - User: user_1068 - RequestID: s2jjvv4k9po +2025-06-18T14:25:24.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.227.233 - RequestID: ox2kwk9drh +2025-06-18T14:25:24.481Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 403 - Response time: 1637ms - IP: 192.168.227.233 - User: user_1016 - RequestID: s7v9tnev49q +2025-06-18T14:25:24.581Z [TRACE] auth-service - Operation: order_created - Processing time: 445ms - RequestID: 9p2ky8cam0b +2025-06-18T14:25:24.681Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 201 - Response time: 1226ms - IP: 192.168.141.100 - User: user_1043 - RequestID: d98vtllm4lm +2025-06-18T14:25:24.781Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 607ms - RequestID: p0udfesnjd +2025-06-18T14:25:24.881Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 225ms - RequestID: 25mk1gwpnsg +2025-06-18T14:25:24.981Z [TRACE] notification-service - Auth event: login_success - User: user_1034 - IP: 192.168.158.144 - RequestID: tlzvkpy8hef +2025-06-18T14:25:25.081Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 140ms - Rows affected: 54 - RequestID: kg0rlk3i3i +2025-06-18T14:25:25.181Z [DEBUG] user-service - Database SELECT on products - Execution time: 409ms - Rows affected: 89 - RequestID: y23vsor36uo +2025-06-18T14:25:25.281Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 443ms - Rows affected: 66 - RequestID: m6nrusnw13q +2025-06-18T14:25:25.381Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 310ms - Rows affected: 7 - RequestID: 8kdz3tk3bem +2025-06-18T14:25:25.481Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1944ms - IP: 192.168.85.229 - User: user_1040 - RequestID: 1nyw0mjz40p +2025-06-18T14:25:25.581Z [TRACE] payment-service - Database DELETE on payments - Execution time: 245ms - Rows affected: 4 - RequestID: s7fpr9lou6 +2025-06-18T14:25:25.681Z [DEBUG] inventory-service - Auth event: logout - User: user_1002 - IP: 192.168.138.123 - RequestID: bstbx5gtbnj +2025-06-18T14:25:25.781Z [DEBUG] user-service - GET /api/v1/payments - Status: 201 - Response time: 1851ms - IP: 192.168.32.38 - User: user_1082 - RequestID: q5qgraqxxm9 +2025-06-18T14:25:25.881Z [INFO] payment-service - Auth event: login_success - User: user_1004 - IP: 192.168.229.123 - RequestID: 6x3qxzhz7ck +2025-06-18T14:25:25.981Z [TRACE] order-service - Auth event: password_change - User: user_1093 - IP: 192.168.97.87 - RequestID: 6j3z4n5nod +2025-06-18T14:25:26.081Z [DEBUG] order-service - Database SELECT on orders - Execution time: 384ms - Rows affected: 33 - RequestID: 42daqzgk1xb +2025-06-18T14:25:26.181Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 939ms - RequestID: g54v1u1nx6c +2025-06-18T14:25:26.281Z [INFO] payment-service - Operation: cache_hit - Processing time: 374ms - RequestID: wan605edg1q +2025-06-18T14:25:26.381Z [TRACE] order-service - Auth event: login_success - User: user_1051 - IP: 192.168.159.94 - RequestID: f1shcx8333e +2025-06-18T14:25:26.481Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 258ms - Rows affected: 5 - RequestID: dk7d4j3jzo +2025-06-18T14:25:26.581Z [DEBUG] auth-service - Auth event: password_change - User: user_1017 - IP: 192.168.100.240 - RequestID: 48nvvuvr30w +2025-06-18T14:25:26.681Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 598ms - RequestID: uf27xfgxjq +2025-06-18T14:25:26.781Z [INFO] notification-service - Auth event: logout - User: user_1022 - IP: 192.168.167.32 - RequestID: xdzq5f2xnxn +2025-06-18T14:25:26.881Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 154ms - Rows affected: 25 - RequestID: s19p103gry +2025-06-18T14:25:26.981Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 279ms - RequestID: vxeoqkx3dlf +2025-06-18T14:25:27.081Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 55ms - Rows affected: 31 - RequestID: 420r24yi3he +2025-06-18T14:25:27.181Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 502 - Response time: 1545ms - IP: 192.168.81.206 - User: user_1037 - RequestID: tuk9p88a4h +2025-06-18T14:25:27.281Z [TRACE] user-service - Auth event: logout - User: user_1081 - IP: 192.168.189.103 - RequestID: lkqfeuqsrg +2025-06-18T14:25:27.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 393ms - RequestID: hrql38vl18c +2025-06-18T14:25:27.481Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1572ms - IP: 192.168.68.158 - User: user_1086 - RequestID: qjflahgowg +2025-06-18T14:25:27.581Z [TRACE] order-service - PATCH /api/v1/orders - Status: 503 - Response time: 1972ms - IP: 192.168.85.229 - User: user_1000 - RequestID: 0o2g0nqg09up +2025-06-18T14:25:27.681Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 528ms - IP: 192.168.81.206 - User: user_1099 - RequestID: cbmnm8x0mng +2025-06-18T14:25:27.781Z [TRACE] order-service - PUT /api/v1/inventory - Status: 404 - Response time: 1443ms - IP: 192.168.242.165 - User: user_1013 - RequestID: 8su3cs4tav4 +2025-06-18T14:25:27.881Z [TRACE] user-service - Operation: webhook_sent - Processing time: 653ms - RequestID: h3agc4ga9a +2025-06-18T14:25:27.981Z [DEBUG] payment-service - Auth event: login_failed - User: user_1072 - IP: 192.168.138.123 - RequestID: 05j197jugxeb +2025-06-18T14:25:28.081Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1452ms - IP: 192.168.227.233 - User: user_1007 - RequestID: 5rrbeq7r33q +2025-06-18T14:25:28.181Z [INFO] notification-service - Operation: inventory_updated - Processing time: 109ms - RequestID: hsjm2dyt7he +2025-06-18T14:25:28.281Z [DEBUG] user-service - Auth event: logout - User: user_1073 - IP: 192.168.170.215 - RequestID: 348pkpordjp +2025-06-18T14:25:28.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 642ms - RequestID: 2ccgk2k5rev +2025-06-18T14:25:28.481Z [INFO] order-service - GET /api/v1/payments - Status: 500 - Response time: 26ms - IP: 192.168.28.146 - User: user_1088 - RequestID: un217w8rbg +2025-06-18T14:25:28.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.227.77 - RequestID: 0tawo3z55or +2025-06-18T14:25:28.681Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 776ms - IP: 192.168.181.225 - User: user_1005 - RequestID: n6oev8dw3rm +2025-06-18T14:25:28.781Z [INFO] payment-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.133.7 - RequestID: s4jjrp41mzp +2025-06-18T14:25:28.881Z [DEBUG] user-service - Operation: payment_processed - Processing time: 416ms - RequestID: 1cqvwfis4yp +2025-06-18T14:25:28.981Z [INFO] user-service - Database INSERT on users - Execution time: 243ms - Rows affected: 56 - RequestID: 9qmeyqqxchm +2025-06-18T14:25:29.081Z [DEBUG] user-service - Database SELECT on orders - Execution time: 400ms - Rows affected: 45 - RequestID: mbanv1eh5x8 +2025-06-18T14:25:29.181Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 1016ms - RequestID: uz25vv7qqd9 +2025-06-18T14:25:29.281Z [INFO] order-service - Database UPDATE on payments - Execution time: 199ms - Rows affected: 13 - RequestID: gq0xdmlfaa5 +2025-06-18T14:25:29.381Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 201 - Response time: 918ms - IP: 192.168.79.141 - User: user_1034 - RequestID: 719yceafed9 +2025-06-18T14:25:29.481Z [TRACE] notification-service - Operation: payment_processed - Processing time: 449ms - RequestID: 5wpzcdep5ax +2025-06-18T14:25:29.581Z [TRACE] user-service - Auth event: login_success - User: user_1004 - IP: 192.168.144.38 - RequestID: nbu33v3llrj +2025-06-18T14:25:29.681Z [DEBUG] order-service - Database DELETE on users - Execution time: 145ms - Rows affected: 51 - RequestID: q44aquydbw +2025-06-18T14:25:29.781Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 200 - Response time: 1375ms - IP: 192.168.242.165 - User: user_1049 - RequestID: cv34u6bt6op +2025-06-18T14:25:29.881Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 905ms - RequestID: d1y2sp8cage +2025-06-18T14:25:29.981Z [DEBUG] payment-service - GET /api/v1/orders - Status: 403 - Response time: 531ms - IP: 192.168.64.33 - User: user_1059 - RequestID: 4sf5uzpg36p +2025-06-18T14:25:30.081Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 595ms - IP: 192.168.97.87 - User: user_1061 - RequestID: kjyuijup8d +2025-06-18T14:25:30.181Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1041ms - IP: 192.168.28.146 - User: user_1084 - RequestID: zw9qlfr7o9e +2025-06-18T14:25:30.281Z [DEBUG] user-service - Auth event: login_success - User: user_1070 - IP: 192.168.31.117 - RequestID: mbimtv4t5h +2025-06-18T14:25:30.381Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 584ms - IP: 192.168.10.184 - User: user_1062 - RequestID: rqww0y5ccq +2025-06-18T14:25:30.481Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 366ms - Rows affected: 31 - RequestID: rqpvrbff27 +2025-06-18T14:25:30.581Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 466ms - Rows affected: 15 - RequestID: ull1zchz5sb +2025-06-18T14:25:30.681Z [DEBUG] user-service - Database INSERT on payments - Execution time: 36ms - Rows affected: 67 - RequestID: w39ms1hbsv +2025-06-18T14:25:30.781Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 382ms - IP: 192.168.167.32 - User: user_1050 - RequestID: h8m28q7rkcu +2025-06-18T14:25:30.881Z [DEBUG] user-service - Database DELETE on orders - Execution time: 9ms - Rows affected: 26 - RequestID: t7ukw2ji5p +2025-06-18T14:25:30.981Z [INFO] user-service - PUT /api/v1/inventory - Status: 201 - Response time: 920ms - IP: 192.168.229.123 - User: user_1073 - RequestID: tvs51p66zq9 +2025-06-18T14:25:31.081Z [INFO] notification-service - POST /api/v1/users - Status: 500 - Response time: 1361ms - IP: 192.168.79.143 - User: user_1044 - RequestID: io62drd8hql +2025-06-18T14:25:31.181Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 72ms - Rows affected: 65 - RequestID: 7cp4ftuwrna +2025-06-18T14:25:31.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.81.206 - RequestID: dh5pfs31z9r +2025-06-18T14:25:31.381Z [TRACE] inventory-service - Auth event: login_success - User: user_1032 - IP: 192.168.46.63 - RequestID: cier0eeoqz5 +2025-06-18T14:25:31.481Z [TRACE] payment-service - Operation: notification_queued - Processing time: 550ms - RequestID: 2qgm1g3z8r4 +2025-06-18T14:25:31.581Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 315ms - Rows affected: 47 - RequestID: gnfasan4k1f +2025-06-18T14:25:31.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.31.117 - RequestID: ku7x14l5tsk +2025-06-18T14:25:31.781Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 129ms - Rows affected: 59 - RequestID: d8awu5c5a8 +2025-06-18T14:25:31.881Z [DEBUG] user-service - POST /api/v1/orders - Status: 403 - Response time: 466ms - IP: 192.168.187.199 - User: user_1058 - RequestID: djmfseylvyu +2025-06-18T14:25:31.981Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 232ms - RequestID: e6q9vrke9rp +2025-06-18T14:25:32.081Z [TRACE] user-service - Database UPDATE on orders - Execution time: 68ms - Rows affected: 89 - RequestID: f4acr9tksum +2025-06-18T14:25:32.181Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1272ms - IP: 192.168.133.7 - User: user_1094 - RequestID: mv91hnoo94q +2025-06-18T14:25:32.281Z [INFO] auth-service - Auth event: login_failed - User: user_1031 - IP: 192.168.11.60 - RequestID: z8dkrzz3w8o +2025-06-18T14:25:32.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1090 - IP: 192.168.170.215 - RequestID: 3rxf5gzi64i +2025-06-18T14:25:32.481Z [INFO] user-service - Auth event: password_change - User: user_1095 - IP: 192.168.68.158 - RequestID: ce5hlw7ewwg +2025-06-18T14:25:32.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1094 - IP: 192.168.53.133 - RequestID: a9ihw6uxo3a +2025-06-18T14:25:32.681Z [INFO] notification-service - PATCH /api/v1/users - Status: 200 - Response time: 1011ms - IP: 192.168.187.199 - User: user_1080 - RequestID: h1768rd7qj8 +2025-06-18T14:25:32.781Z [INFO] notification-service - Operation: cache_miss - Processing time: 160ms - RequestID: 683i3419y9 +2025-06-18T14:25:32.881Z [DEBUG] user-service - Database DELETE on payments - Execution time: 330ms - Rows affected: 52 - RequestID: 2zt48uj0h6b +2025-06-18T14:25:32.981Z [INFO] user-service - Database INSERT on users - Execution time: 14ms - Rows affected: 17 - RequestID: 53y4j0k5ejy +2025-06-18T14:25:33.081Z [TRACE] notification-service - Auth event: login_success - User: user_1048 - IP: 192.168.81.206 - RequestID: fveaoutcr5l +2025-06-18T14:25:33.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 874ms - RequestID: l97ex0jxrp +2025-06-18T14:25:33.281Z [INFO] inventory-service - Operation: cache_hit - Processing time: 543ms - RequestID: 73it0ip2pze +2025-06-18T14:25:33.381Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 321ms - Rows affected: 37 - RequestID: zb5b0h1l8up +2025-06-18T14:25:33.481Z [DEBUG] order-service - Database DELETE on products - Execution time: 454ms - Rows affected: 53 - RequestID: 66mduufkirx +2025-06-18T14:25:33.581Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 201 - Response time: 1619ms - IP: 192.168.79.141 - User: user_1062 - RequestID: qy8f65pbvtb +2025-06-18T14:25:33.681Z [TRACE] payment-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.104.37 - RequestID: 48cam0cv56o +2025-06-18T14:25:33.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.144.38 - RequestID: ecmjqcryhlp +2025-06-18T14:25:33.881Z [INFO] user-service - Database DELETE on products - Execution time: 283ms - Rows affected: 78 - RequestID: haw2b0luu8w +2025-06-18T14:25:33.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 711ms - RequestID: krsuajzm7f7 +2025-06-18T14:25:34.081Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 283ms - Rows affected: 5 - RequestID: udtur6cdv58 +2025-06-18T14:25:34.181Z [INFO] notification-service - Operation: order_created - Processing time: 753ms - RequestID: te8r5bfb5ke +2025-06-18T14:25:34.281Z [INFO] user-service - Auth event: logout - User: user_1056 - IP: 192.168.133.7 - RequestID: lwuvgr3ihje +2025-06-18T14:25:34.381Z [TRACE] inventory-service - Database DELETE on users - Execution time: 113ms - Rows affected: 79 - RequestID: 0wzvuicgit2e +2025-06-18T14:25:34.481Z [TRACE] auth-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.196.226 - RequestID: z0oafjbzlf9 +2025-06-18T14:25:34.581Z [TRACE] payment-service - Operation: order_created - Processing time: 597ms - RequestID: 151j5hu3rsq +2025-06-18T14:25:34.681Z [TRACE] user-service - Auth event: login_failed - User: user_1007 - IP: 192.168.194.41 - RequestID: ar95sazrfcp +2025-06-18T14:25:34.781Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 748ms - IP: 192.168.104.37 - User: user_1025 - RequestID: 02f0f3x92bsh +2025-06-18T14:25:34.881Z [INFO] order-service - Operation: cache_miss - Processing time: 702ms - RequestID: myvkch3wyq9 +2025-06-18T14:25:34.981Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1167ms - IP: 192.168.36.218 - User: user_1059 - RequestID: vvzajcowt1o +2025-06-18T14:25:35.081Z [TRACE] order-service - Operation: payment_processed - Processing time: 973ms - RequestID: 4qvwtre54qj +2025-06-18T14:25:35.181Z [TRACE] notification-service - Database INSERT on users - Execution time: 11ms - Rows affected: 14 - RequestID: 6w4xq2isee5 +2025-06-18T14:25:35.281Z [INFO] notification-service - POST /api/v1/payments - Status: 502 - Response time: 859ms - IP: 192.168.68.128 - User: user_1015 - RequestID: epvmnrvlvx +2025-06-18T14:25:35.381Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 409ms - RequestID: p75ult9jtxc +2025-06-18T14:25:35.481Z [TRACE] user-service - PUT /api/v1/users - Status: 503 - Response time: 137ms - IP: 192.168.28.146 - User: user_1061 - RequestID: eaf4bocb4w +2025-06-18T14:25:35.581Z [INFO] auth-service - Auth event: logout - User: user_1043 - IP: 192.168.227.233 - RequestID: pc4rtltbzws +2025-06-18T14:25:35.681Z [DEBUG] notification-service - Operation: order_created - Processing time: 569ms - RequestID: 6rhpu0mp4n7 +2025-06-18T14:25:35.781Z [DEBUG] user-service - Database SELECT on payments - Execution time: 129ms - Rows affected: 63 - RequestID: tm9yn7ffzl +2025-06-18T14:25:35.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 559ms - RequestID: ymgnix8omco +2025-06-18T14:25:35.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 855ms - RequestID: b9ufqeelsb9 +2025-06-18T14:25:36.081Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 500 - Response time: 759ms - IP: 192.168.14.77 - User: user_1083 - RequestID: hsw819t6cft +2025-06-18T14:25:36.181Z [DEBUG] inventory-service - Operation: order_created - Processing time: 956ms - RequestID: d1lvq31d1d +2025-06-18T14:25:36.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.242.165 - RequestID: 0zkwe7hy583r +2025-06-18T14:25:36.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1057 - IP: 192.168.100.240 - RequestID: b7k6fz3bj1r +2025-06-18T14:25:36.481Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 8ms - Rows affected: 48 - RequestID: siw20vrf1e +2025-06-18T14:25:36.581Z [TRACE] payment-service - Database DELETE on payments - Execution time: 329ms - Rows affected: 81 - RequestID: wow6rpsmay8 +2025-06-18T14:25:36.681Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 503 - Response time: 638ms - IP: 192.168.31.117 - User: user_1042 - RequestID: q9sxgra5mhs +2025-06-18T14:25:36.781Z [INFO] notification-service - Operation: email_sent - Processing time: 731ms - RequestID: ososxb42oyo +2025-06-18T14:25:36.881Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 200 - Response time: 975ms - IP: 192.168.242.165 - User: user_1047 - RequestID: civ5gnsyail +2025-06-18T14:25:36.981Z [TRACE] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 1699ms - IP: 192.168.227.233 - User: user_1086 - RequestID: vz273rzf4oa +2025-06-18T14:25:37.081Z [DEBUG] auth-service - Database DELETE on products - Execution time: 377ms - Rows affected: 87 - RequestID: qkxaj7etzkr +2025-06-18T14:25:37.181Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 404 - Response time: 1368ms - IP: 192.168.138.123 - User: user_1096 - RequestID: 06ccoozw9rwn +2025-06-18T14:25:37.281Z [INFO] notification-service - Database INSERT on products - Execution time: 144ms - Rows affected: 99 - RequestID: z5pklbckoe +2025-06-18T14:25:37.381Z [DEBUG] order-service - Auth event: login_success - User: user_1001 - IP: 192.168.144.38 - RequestID: z97sovwpvy +2025-06-18T14:25:37.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1085 - IP: 192.168.167.32 - RequestID: j3rja1vlq29 +2025-06-18T14:25:37.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 711ms - RequestID: hormd3xoyjd +2025-06-18T14:25:37.681Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 794ms - RequestID: zz4lj23zyfo +2025-06-18T14:25:37.781Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 272ms - IP: 192.168.68.158 - User: user_1029 - RequestID: as5wgf88ep +2025-06-18T14:25:37.881Z [INFO] payment-service - Operation: inventory_updated - Processing time: 756ms - RequestID: 8asl7jbbiyj +2025-06-18T14:25:37.981Z [DEBUG] notification-service - Auth event: password_change - User: user_1037 - IP: 192.168.79.143 - RequestID: i9ci2nmcld +2025-06-18T14:25:38.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.44.5 - RequestID: evq9vg31g9a +2025-06-18T14:25:38.181Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 526ms - RequestID: ijasb6zooiq +2025-06-18T14:25:38.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1051 - IP: 192.168.11.60 - RequestID: mqz6j08aw3r +2025-06-18T14:25:38.381Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 1760ms - IP: 192.168.187.199 - User: user_1056 - RequestID: rdgys99udv +2025-06-18T14:25:38.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 550ms - RequestID: bocpskdlonp +2025-06-18T14:25:38.581Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 449ms - RequestID: rbun7e20w8p +2025-06-18T14:25:38.681Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 388ms - RequestID: op2nsa8ht6r +2025-06-18T14:25:38.781Z [INFO] user-service - Database DELETE on payments - Execution time: 137ms - Rows affected: 97 - RequestID: avyy1egpog +2025-06-18T14:25:38.881Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 401 - Response time: 928ms - IP: 192.168.44.5 - User: user_1093 - RequestID: hnklwsq4n3 +2025-06-18T14:25:38.981Z [INFO] payment-service - Auth event: password_change - User: user_1007 - IP: 192.168.229.123 - RequestID: dpi0sv0dtug +2025-06-18T14:25:39.081Z [TRACE] notification-service - Operation: cache_hit - Processing time: 705ms - RequestID: cy0kh7xu54k +2025-06-18T14:25:39.181Z [INFO] order-service - Auth event: logout - User: user_1091 - IP: 192.168.187.199 - RequestID: 9emzychjsb8 +2025-06-18T14:25:39.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.211.72 - RequestID: ar6djlbx5nl +2025-06-18T14:25:39.381Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 403 - Response time: 292ms - IP: 192.168.10.184 - User: user_1076 - RequestID: qnx13oywv8n +2025-06-18T14:25:39.481Z [INFO] user-service - Database SELECT on payments - Execution time: 357ms - Rows affected: 19 - RequestID: wzm2qw5of5 +2025-06-18T14:25:39.581Z [DEBUG] inventory-service - Auth event: login_success - User: user_1064 - IP: 192.168.79.143 - RequestID: d85g4wmkd8n +2025-06-18T14:25:39.681Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 83ms - Rows affected: 90 - RequestID: 4ue99u0nwsg +2025-06-18T14:25:39.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 104ms - RequestID: jaw7p0nbe6k +2025-06-18T14:25:39.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1085 - IP: 192.168.64.33 - RequestID: 6rsdw5plp7e +2025-06-18T14:25:39.981Z [DEBUG] order-service - DELETE /api/v1/users - Status: 404 - Response time: 857ms - IP: 192.168.81.206 - User: user_1001 - RequestID: nr1hz1q43b +2025-06-18T14:25:40.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1035 - IP: 192.168.10.184 - RequestID: 5t19kffob3f +2025-06-18T14:25:40.181Z [INFO] inventory-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.31.117 - RequestID: 4qau8zm1jcj +2025-06-18T14:25:40.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.1.152 - RequestID: jhrskftixoa +2025-06-18T14:25:40.381Z [INFO] notification-service - Database INSERT on payments - Execution time: 67ms - Rows affected: 73 - RequestID: ciydx396q6u +2025-06-18T14:25:40.481Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 63ms - Rows affected: 96 - RequestID: iueqx8zpk4 +2025-06-18T14:25:40.581Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 269ms - Rows affected: 94 - RequestID: eejtx6r35t +2025-06-18T14:25:40.681Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 201 - Response time: 1454ms - IP: 192.168.159.94 - User: user_1082 - RequestID: a026oeo7zoc +2025-06-18T14:25:40.781Z [INFO] notification-service - PUT /api/v1/inventory - Status: 502 - Response time: 1115ms - IP: 192.168.227.233 - User: user_1085 - RequestID: cpqeh96usb7 +2025-06-18T14:25:40.881Z [TRACE] payment-service - Operation: cache_hit - Processing time: 75ms - RequestID: dlw8gvhpnt8 +2025-06-18T14:25:40.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.211.72 - RequestID: mmbnekl8gp +2025-06-18T14:25:41.081Z [DEBUG] inventory-service - Operation: order_created - Processing time: 366ms - RequestID: ob0rpbyleeq +2025-06-18T14:25:41.181Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 92ms - RequestID: rrq37b9sys +2025-06-18T14:25:41.281Z [TRACE] payment-service - Operation: cache_hit - Processing time: 907ms - RequestID: jrppxs0g7ch +2025-06-18T14:25:41.381Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 383ms - Rows affected: 39 - RequestID: vntht57dl9d +2025-06-18T14:25:41.481Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 502 - Response time: 268ms - IP: 192.168.133.7 - User: user_1074 - RequestID: q2qcyduuyfm +2025-06-18T14:25:41.581Z [INFO] auth-service - Auth event: login_failed - User: user_1059 - IP: 192.168.229.123 - RequestID: hspy96qr5dl +2025-06-18T14:25:41.681Z [TRACE] order-service - PUT /api/v1/payments - Status: 400 - Response time: 1288ms - IP: 192.168.36.218 - User: user_1039 - RequestID: xq28pv0rfqg +2025-06-18T14:25:41.781Z [TRACE] notification-service - POST /api/v1/orders - Status: 500 - Response time: 253ms - IP: 192.168.79.141 - User: user_1073 - RequestID: ho4nba5ikaq +2025-06-18T14:25:41.881Z [TRACE] auth-service - PATCH /api/v1/users - Status: 404 - Response time: 1482ms - IP: 192.168.30.79 - User: user_1059 - RequestID: giu4eimqbb +2025-06-18T14:25:41.981Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 439ms - RequestID: qwj7g16ksr +2025-06-18T14:25:42.081Z [INFO] user-service - Operation: email_sent - Processing time: 691ms - RequestID: fb98hh3hqgo +2025-06-18T14:25:42.181Z [INFO] notification-service - GET /api/v1/inventory - Status: 201 - Response time: 809ms - IP: 192.168.187.199 - User: user_1006 - RequestID: r7ltyfa3ht8 +2025-06-18T14:25:42.281Z [INFO] auth-service - Database INSERT on users - Execution time: 46ms - Rows affected: 68 - RequestID: 996wiev9n0w +2025-06-18T14:25:42.381Z [INFO] user-service - Database UPDATE on products - Execution time: 177ms - Rows affected: 76 - RequestID: n1o6q1v0yhe +2025-06-18T14:25:42.481Z [TRACE] auth-service - Auth event: logout - User: user_1012 - IP: 192.168.11.60 - RequestID: 9erf3ujthwi +2025-06-18T14:25:42.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 713ms - RequestID: czxy5yf6lyj +2025-06-18T14:25:42.681Z [INFO] payment-service - POST /api/v1/users - Status: 404 - Response time: 1782ms - IP: 192.168.247.134 - User: user_1094 - RequestID: x6le42zqok +2025-06-18T14:25:42.781Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 113ms - Rows affected: 97 - RequestID: ieu71f6wnql +2025-06-18T14:25:42.881Z [INFO] inventory-service - GET /api/v1/orders - Status: 502 - Response time: 981ms - IP: 192.168.44.5 - User: user_1034 - RequestID: x2vr8654x1g +2025-06-18T14:25:42.981Z [TRACE] payment-service - Database INSERT on products - Execution time: 183ms - Rows affected: 75 - RequestID: dypnz5byftj +2025-06-18T14:25:43.081Z [INFO] auth-service - Operation: cache_hit - Processing time: 235ms - RequestID: sq2eomruwzn +2025-06-18T14:25:43.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1001 - IP: 192.168.44.5 - RequestID: uvqptcdac5 +2025-06-18T14:25:43.281Z [INFO] payment-service - Auth event: logout - User: user_1000 - IP: 192.168.181.225 - RequestID: 48ezfez2dw3 +2025-06-18T14:25:43.381Z [INFO] inventory-service - Auth event: logout - User: user_1093 - IP: 192.168.170.215 - RequestID: w396k5ivfq +2025-06-18T14:25:43.481Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 201 - Response time: 1445ms - IP: 192.168.158.144 - User: user_1097 - RequestID: 22vdq71pj3k +2025-06-18T14:25:43.581Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 150ms - Rows affected: 20 - RequestID: 6cw806jjief +2025-06-18T14:25:43.681Z [TRACE] user-service - Database UPDATE on users - Execution time: 476ms - Rows affected: 92 - RequestID: srksyv91vzr +2025-06-18T14:25:43.781Z [INFO] notification-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.104.37 - RequestID: q619ulmhq6d +2025-06-18T14:25:43.881Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 400 - Response time: 124ms - IP: 192.168.32.38 - User: user_1077 - RequestID: n8j2eqjusfa +2025-06-18T14:25:43.981Z [INFO] order-service - Operation: payment_processed - Processing time: 246ms - RequestID: j7wwg7z8z1 +2025-06-18T14:25:44.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.14.77 - RequestID: iko74srz5bt +2025-06-18T14:25:44.181Z [TRACE] auth-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.32.38 - RequestID: qwnbzdr0cw +2025-06-18T14:25:44.281Z [DEBUG] order-service - Operation: order_created - Processing time: 272ms - RequestID: 8eogejm2c65 +2025-06-18T14:25:44.381Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 500 - Response time: 773ms - IP: 192.168.36.218 - User: user_1001 - RequestID: 1rddmgk8xab +2025-06-18T14:25:44.481Z [INFO] inventory-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.174.114 - RequestID: ztz9v0e7pkd +2025-06-18T14:25:44.581Z [INFO] order-service - Operation: payment_processed - Processing time: 182ms - RequestID: 3ho8gi5d35z +2025-06-18T14:25:44.681Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 669ms - IP: 192.168.36.218 - User: user_1029 - RequestID: lqzxtnz2pkd +2025-06-18T14:25:44.781Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 182ms - Rows affected: 16 - RequestID: zfgnvwvkf9 +2025-06-18T14:25:44.881Z [TRACE] user-service - Auth event: login_failed - User: user_1059 - IP: 192.168.10.184 - RequestID: 7w2myxgbfal +2025-06-18T14:25:44.981Z [TRACE] payment-service - Auth event: logout - User: user_1057 - IP: 192.168.79.141 - RequestID: 4x57vbmxowf +2025-06-18T14:25:45.081Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 412ms - Rows affected: 8 - RequestID: rihsrb5ul3 +2025-06-18T14:25:45.181Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 399ms - Rows affected: 7 - RequestID: jk88h2yjqx +2025-06-18T14:25:45.281Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 217ms - IP: 192.168.85.229 - User: user_1077 - RequestID: afhw64va3ia +2025-06-18T14:25:45.381Z [INFO] notification-service - Database INSERT on sessions - Execution time: 38ms - Rows affected: 65 - RequestID: vevtq5e34w7 +2025-06-18T14:25:45.481Z [INFO] auth-service - Operation: payment_processed - Processing time: 541ms - RequestID: nq5saswnkg7 +2025-06-18T14:25:45.581Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 257ms - IP: 192.168.138.123 - User: user_1050 - RequestID: 9fp85faaft +2025-06-18T14:25:45.681Z [TRACE] payment-service - PATCH /api/v1/users - Status: 503 - Response time: 342ms - IP: 192.168.79.116 - User: user_1020 - RequestID: vdlu2qzj4j +2025-06-18T14:25:45.781Z [DEBUG] order-service - Auth event: login_success - User: user_1093 - IP: 192.168.97.87 - RequestID: 1aiqde4f6hr +2025-06-18T14:25:45.881Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 404 - Response time: 180ms - IP: 192.168.64.33 - User: user_1094 - RequestID: 7rj17yx62in +2025-06-18T14:25:45.981Z [DEBUG] inventory-service - Auth event: password_change - User: user_1061 - IP: 192.168.158.144 - RequestID: tqr5301m2k +2025-06-18T14:25:46.081Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 404 - Response time: 1029ms - IP: 192.168.14.77 - User: user_1091 - RequestID: dy10hjgthpp +2025-06-18T14:25:46.181Z [TRACE] user-service - Operation: email_sent - Processing time: 771ms - RequestID: fmlhpzjpttn +2025-06-18T14:25:46.281Z [INFO] order-service - Operation: payment_processed - Processing time: 820ms - RequestID: fjsd8oxk2xq +2025-06-18T14:25:46.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.235.117 - RequestID: 5egdrxoz0g7 +2025-06-18T14:25:46.481Z [INFO] user-service - Operation: payment_processed - Processing time: 706ms - RequestID: eyerhi1vqn5 +2025-06-18T14:25:46.581Z [TRACE] user-service - GET /api/v1/orders - Status: 200 - Response time: 762ms - IP: 192.168.144.38 - User: user_1070 - RequestID: 68w6hvsc2k8 +2025-06-18T14:25:46.681Z [DEBUG] order-service - Auth event: login_success - User: user_1048 - IP: 192.168.113.218 - RequestID: iv50no9t4oe +2025-06-18T14:25:46.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 244ms - RequestID: 1uxgtu6g1i3 +2025-06-18T14:25:46.881Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 200 - Response time: 1362ms - IP: 192.168.28.146 - User: user_1005 - RequestID: sjnz0equr6e +2025-06-18T14:25:46.981Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 322ms - RequestID: sj3uhlt55t +2025-06-18T14:25:47.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1088 - IP: 192.168.229.123 - RequestID: cki8wtodfy7 +2025-06-18T14:25:47.181Z [TRACE] notification-service - Database DELETE on orders - Execution time: 376ms - Rows affected: 28 - RequestID: 6z1efrkt6b5 +2025-06-18T14:25:47.281Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 959ms - RequestID: a4zduvp6np +2025-06-18T14:25:47.381Z [DEBUG] order-service - Auth event: login_success - User: user_1052 - IP: 192.168.79.141 - RequestID: jzp39dpftd9 +2025-06-18T14:25:47.481Z [TRACE] order-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.187.199 - RequestID: w13op0l1vil +2025-06-18T14:25:47.581Z [INFO] notification-service - Database SELECT on products - Execution time: 199ms - Rows affected: 35 - RequestID: a655dqxqvyu +2025-06-18T14:25:47.681Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 175ms - Rows affected: 23 - RequestID: 1jxilcr9hbf +2025-06-18T14:25:47.781Z [INFO] user-service - POST /api/v1/auth/logout - Status: 400 - Response time: 792ms - IP: 192.168.11.60 - User: user_1043 - RequestID: f05a5sz5h3u +2025-06-18T14:25:47.881Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 643ms - IP: 192.168.53.133 - User: user_1020 - RequestID: 216h41e1xip +2025-06-18T14:25:47.981Z [INFO] payment-service - Operation: notification_queued - Processing time: 805ms - RequestID: r3h0051jd1m +2025-06-18T14:25:48.081Z [INFO] order-service - Auth event: password_change - User: user_1029 - IP: 192.168.79.141 - RequestID: s65rosc2ua +2025-06-18T14:25:48.181Z [INFO] user-service - Operation: email_sent - Processing time: 425ms - RequestID: aoaostb2vls +2025-06-18T14:25:48.281Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 211ms - Rows affected: 0 - RequestID: 0rial00n5emp +2025-06-18T14:25:48.381Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1750ms - IP: 192.168.113.218 - User: user_1014 - RequestID: ahpa5j2ql09 +2025-06-18T14:25:48.481Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 672ms - IP: 192.168.79.116 - User: user_1040 - RequestID: h8cv0pvx3en +2025-06-18T14:25:48.581Z [INFO] notification-service - PUT /api/v1/payments - Status: 200 - Response time: 1383ms - IP: 192.168.240.169 - User: user_1081 - RequestID: 04n7jfe4d9bp +2025-06-18T14:25:48.681Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 39ms - Rows affected: 69 - RequestID: 8d2gvyqeauh +2025-06-18T14:25:48.781Z [INFO] user-service - Database UPDATE on orders - Execution time: 280ms - Rows affected: 8 - RequestID: phw3mr9ivv +2025-06-18T14:25:48.881Z [TRACE] inventory-service - POST /api/v1/users - Status: 502 - Response time: 1095ms - IP: 192.168.170.215 - User: user_1086 - RequestID: 38o7l7jwc9b +2025-06-18T14:25:48.981Z [INFO] auth-service - GET /api/v1/payments - Status: 403 - Response time: 1235ms - IP: 192.168.79.116 - User: user_1039 - RequestID: jp2s7j0qdra +2025-06-18T14:25:49.081Z [INFO] user-service - GET /api/v1/payments - Status: 500 - Response time: 1831ms - IP: 192.168.113.218 - User: user_1092 - RequestID: i2l4iq1l8ng +2025-06-18T14:25:49.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 914ms - RequestID: aa8dvzo2eek +2025-06-18T14:25:49.281Z [TRACE] user-service - Operation: order_created - Processing time: 451ms - RequestID: 09vo6l4mp08s +2025-06-18T14:25:49.381Z [DEBUG] user-service - Database DELETE on orders - Execution time: 283ms - Rows affected: 94 - RequestID: 3ag59r4xjf +2025-06-18T14:25:49.481Z [INFO] inventory-service - Database INSERT on products - Execution time: 71ms - Rows affected: 56 - RequestID: jd4g8ziijf +2025-06-18T14:25:49.581Z [INFO] user-service - Operation: order_created - Processing time: 232ms - RequestID: 0ixih70ihinv +2025-06-18T14:25:49.681Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 401ms - RequestID: ti38z197e6 +2025-06-18T14:25:49.781Z [INFO] order-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.194.41 - RequestID: wytu1u2tkd +2025-06-18T14:25:49.881Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 154ms - IP: 192.168.227.77 - User: user_1031 - RequestID: doovjw77qow +2025-06-18T14:25:49.981Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 829ms - RequestID: yzepm677mh +2025-06-18T14:25:50.081Z [INFO] notification-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.196.226 - RequestID: r3qagnxo9ac +2025-06-18T14:25:50.181Z [DEBUG] order-service - Auth event: logout - User: user_1094 - IP: 192.168.11.60 - RequestID: 5u8cgtr5lal +2025-06-18T14:25:50.281Z [TRACE] auth-service - Operation: cache_miss - Processing time: 778ms - RequestID: 24ka3v9qe8g +2025-06-18T14:25:50.381Z [TRACE] payment-service - Auth event: login_success - User: user_1001 - IP: 192.168.79.141 - RequestID: vl6d4a7m0kh +2025-06-18T14:25:50.481Z [INFO] payment-service - Auth event: login_success - User: user_1025 - IP: 192.168.100.240 - RequestID: j4s8ronqrwe +2025-06-18T14:25:50.581Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 32ms - Rows affected: 66 - RequestID: ur6hf2l6r0m +2025-06-18T14:25:50.681Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 390ms - Rows affected: 53 - RequestID: hncw0yfmrd +2025-06-18T14:25:50.781Z [INFO] notification-service - Auth event: login_success - User: user_1082 - IP: 192.168.13.72 - RequestID: sq3gv70uko9 +2025-06-18T14:25:50.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1015 - IP: 192.168.227.233 - RequestID: zffx1yl5rpa +2025-06-18T14:25:50.981Z [INFO] notification-service - Auth event: logout - User: user_1095 - IP: 192.168.167.32 - RequestID: i64pfzm366 +2025-06-18T14:25:51.081Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 486ms - RequestID: latl29mhx1 +2025-06-18T14:25:51.181Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1314ms - IP: 192.168.44.5 - User: user_1073 - RequestID: yyr1luzp2hf +2025-06-18T14:25:51.281Z [INFO] auth-service - Database INSERT on users - Execution time: 122ms - Rows affected: 85 - RequestID: om1w449i7kg +2025-06-18T14:25:51.381Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 187ms - Rows affected: 94 - RequestID: x99p4kqv07 +2025-06-18T14:25:51.481Z [TRACE] auth-service - Database UPDATE on users - Execution time: 40ms - Rows affected: 39 - RequestID: f0azclz9p9f +2025-06-18T14:25:51.581Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 161ms - Rows affected: 39 - RequestID: v5hzbh3d37o +2025-06-18T14:25:51.681Z [TRACE] auth-service - Operation: payment_processed - Processing time: 757ms - RequestID: 2pl0u0940fy +2025-06-18T14:25:51.781Z [DEBUG] payment-service - Database INSERT on users - Execution time: 467ms - Rows affected: 27 - RequestID: gjxnrtpr94 +2025-06-18T14:25:51.881Z [INFO] order-service - POST /api/v1/payments - Status: 404 - Response time: 520ms - IP: 192.168.68.128 - User: user_1086 - RequestID: f9b8ptl7b5n +2025-06-18T14:25:51.981Z [INFO] auth-service - Database INSERT on orders - Execution time: 377ms - Rows affected: 90 - RequestID: ii5afoj19f9 +2025-06-18T14:25:52.081Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 759ms - IP: 192.168.79.116 - User: user_1072 - RequestID: fgq1d8lmhr +2025-06-18T14:25:52.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.227.77 - RequestID: 2m6vqm3cng5 +2025-06-18T14:25:52.281Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1118ms - IP: 192.168.31.117 - User: user_1011 - RequestID: ch6ii60b3l +2025-06-18T14:25:52.381Z [TRACE] notification-service - Database DELETE on orders - Execution time: 22ms - Rows affected: 36 - RequestID: n6jalufhywt +2025-06-18T14:25:52.481Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1156ms - IP: 192.168.138.123 - User: user_1051 - RequestID: 8dpdabahde5 +2025-06-18T14:25:52.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.181.225 - RequestID: vl500sryo5 +2025-06-18T14:25:52.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1064 - IP: 192.168.104.37 - RequestID: rzc6ntwetuj +2025-06-18T14:25:52.781Z [TRACE] auth-service - Operation: cache_miss - Processing time: 828ms - RequestID: e1ycw0t6ngb +2025-06-18T14:25:52.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 558ms - RequestID: lrl15hdwyn +2025-06-18T14:25:52.981Z [TRACE] user-service - Auth event: login_success - User: user_1052 - IP: 192.168.189.103 - RequestID: bpp0kgn9j2m +2025-06-18T14:25:53.081Z [INFO] user-service - POST /api/v1/auth/login - Status: 200 - Response time: 1632ms - IP: 192.168.227.233 - User: user_1015 - RequestID: klshofwkdv +2025-06-18T14:25:53.181Z [TRACE] user-service - Operation: notification_queued - Processing time: 715ms - RequestID: vvrfsyfa1ba +2025-06-18T14:25:53.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 271ms - RequestID: y3ehxjanqnj +2025-06-18T14:25:53.381Z [TRACE] payment-service - POST /api/v1/payments - Status: 201 - Response time: 1415ms - IP: 192.168.147.171 - User: user_1038 - RequestID: 1ki93lcm4e7 +2025-06-18T14:25:53.481Z [TRACE] auth-service - Auth event: logout - User: user_1004 - IP: 192.168.53.133 - RequestID: pco8qc1sgni +2025-06-18T14:25:53.581Z [INFO] notification-service - Auth event: password_change - User: user_1073 - IP: 192.168.100.240 - RequestID: h4egpszbaib +2025-06-18T14:25:53.681Z [INFO] user-service - Auth event: password_change - User: user_1063 - IP: 192.168.85.229 - RequestID: d1mnqljq1fc +2025-06-18T14:25:53.781Z [DEBUG] payment-service - Database INSERT on users - Execution time: 326ms - Rows affected: 43 - RequestID: 59qsrltbrk8 +2025-06-18T14:25:53.881Z [INFO] notification-service - Operation: order_created - Processing time: 887ms - RequestID: xqnbawfgc8f +2025-06-18T14:25:53.981Z [INFO] inventory-service - POST /api/v1/users - Status: 400 - Response time: 683ms - IP: 192.168.14.77 - User: user_1020 - RequestID: nkf9z4ggruq +2025-06-18T14:25:54.081Z [DEBUG] order-service - Operation: email_sent - Processing time: 155ms - RequestID: ywuuxqjemo +2025-06-18T14:25:54.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.232.72 - RequestID: vjcwab9270l +2025-06-18T14:25:54.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 705ms - RequestID: k3m6aeao6ak +2025-06-18T14:25:54.381Z [INFO] payment-service - Auth event: login_success - User: user_1076 - IP: 192.168.104.37 - RequestID: kx6jindruh +2025-06-18T14:25:54.481Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 401 - Response time: 1982ms - IP: 192.168.189.103 - User: user_1006 - RequestID: hz6u97c0vdh +2025-06-18T14:25:54.581Z [INFO] inventory-service - GET /api/v1/users - Status: 502 - Response time: 198ms - IP: 192.168.30.79 - User: user_1011 - RequestID: pyubjocq9f +2025-06-18T14:25:54.681Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 403 - Response time: 162ms - IP: 192.168.10.184 - User: user_1080 - RequestID: y4czzjt4b4l +2025-06-18T14:25:54.781Z [INFO] user-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.133.7 - RequestID: xzzihy4q9io +2025-06-18T14:25:54.881Z [INFO] auth-service - DELETE /api/v1/payments - Status: 403 - Response time: 450ms - IP: 192.168.46.63 - User: user_1099 - RequestID: kh77i1zzpn +2025-06-18T14:25:54.981Z [INFO] payment-service - Operation: payment_processed - Processing time: 315ms - RequestID: lhxnnimy6p +2025-06-18T14:25:55.081Z [INFO] inventory-service - Auth event: login_success - User: user_1007 - IP: 192.168.133.7 - RequestID: thiwhirtd3 +2025-06-18T14:25:55.181Z [DEBUG] inventory-service - Auth event: login_success - User: user_1043 - IP: 192.168.30.79 - RequestID: vkt7rdhl99 +2025-06-18T14:25:55.281Z [TRACE] inventory-service - Operation: order_created - Processing time: 281ms - RequestID: 7g88iqw4hve +2025-06-18T14:25:55.381Z [DEBUG] payment-service - Operation: order_created - Processing time: 1001ms - RequestID: wazo5kofjbj +2025-06-18T14:25:55.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1059 - IP: 192.168.167.32 - RequestID: kivscbpn4y +2025-06-18T14:25:55.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 1044ms - RequestID: abqbh89340a +2025-06-18T14:25:55.681Z [DEBUG] notification-service - Auth event: password_change - User: user_1072 - IP: 192.168.14.77 - RequestID: j024t2i53eq +2025-06-18T14:25:55.781Z [INFO] notification-service - Operation: payment_processed - Processing time: 985ms - RequestID: wk0z7lzekeg +2025-06-18T14:25:55.881Z [INFO] order-service - Auth event: login_failed - User: user_1083 - IP: 192.168.1.152 - RequestID: phyli7o4zpp +2025-06-18T14:25:55.981Z [INFO] inventory-service - Database SELECT on payments - Execution time: 387ms - Rows affected: 5 - RequestID: a0otz77im9e +2025-06-18T14:25:56.081Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1665ms - IP: 192.168.46.63 - User: user_1015 - RequestID: mwafrg0yff9 +2025-06-18T14:25:56.181Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1029 - IP: 192.168.227.233 - RequestID: 5lao1lq3j5v +2025-06-18T14:25:56.281Z [DEBUG] user-service - Auth event: password_change - User: user_1061 - IP: 192.168.189.103 - RequestID: dj0fg66r036 +2025-06-18T14:25:56.381Z [TRACE] notification-service - Operation: cache_miss - Processing time: 177ms - RequestID: k7agf7a942r +2025-06-18T14:25:56.481Z [TRACE] auth-service - POST /api/v1/inventory - Status: 503 - Response time: 1679ms - IP: 192.168.36.218 - User: user_1099 - RequestID: oaev0p7w6be +2025-06-18T14:25:56.581Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 503 - Response time: 1439ms - IP: 192.168.104.37 - User: user_1089 - RequestID: j3n35lj7hle +2025-06-18T14:25:56.681Z [DEBUG] inventory-service - Auth event: login_success - User: user_1061 - IP: 192.168.235.117 - RequestID: m4w6uozwm3n +2025-06-18T14:25:56.781Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1579ms - IP: 192.168.104.37 - User: user_1014 - RequestID: jrqngm6lshs +2025-06-18T14:25:56.881Z [TRACE] payment-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.33.76 - RequestID: qzxk48j978d +2025-06-18T14:25:56.981Z [INFO] notification-service - Auth event: login_success - User: user_1070 - IP: 192.168.44.5 - RequestID: ma0ulczjnh +2025-06-18T14:25:57.081Z [DEBUG] auth-service - Auth event: logout - User: user_1006 - IP: 192.168.144.38 - RequestID: vna5la076s +2025-06-18T14:25:57.181Z [DEBUG] order-service - Operation: cache_miss - Processing time: 845ms - RequestID: 4djxhkfar39 +2025-06-18T14:25:57.281Z [INFO] notification-service - Database UPDATE on payments - Execution time: 5ms - Rows affected: 98 - RequestID: b2k3aflw66b +2025-06-18T14:25:57.381Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 54ms - Rows affected: 73 - RequestID: j7ruxhuu7l +2025-06-18T14:25:57.481Z [DEBUG] user-service - Auth event: logout - User: user_1038 - IP: 192.168.85.229 - RequestID: 603ed28yo26 +2025-06-18T14:25:57.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1046 - IP: 192.168.46.63 - RequestID: bpgehfj3r +2025-06-18T14:25:57.681Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 404 - Response time: 136ms - IP: 192.168.68.128 - User: user_1088 - RequestID: yw5x7ia7gh8 +2025-06-18T14:25:57.781Z [TRACE] auth-service - Auth event: login_success - User: user_1011 - IP: 192.168.144.38 - RequestID: v0046ok9ghl +2025-06-18T14:25:57.881Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1884ms - IP: 192.168.189.103 - User: user_1072 - RequestID: mwpl5jj1xzq +2025-06-18T14:25:57.981Z [INFO] order-service - Auth event: logout - User: user_1028 - IP: 192.168.30.79 - RequestID: e9byjmtjrrt +2025-06-18T14:25:58.081Z [INFO] user-service - PATCH /api/v1/payments - Status: 404 - Response time: 1997ms - IP: 192.168.247.134 - User: user_1047 - RequestID: 3nqjdtzlyj7 +2025-06-18T14:25:58.181Z [TRACE] user-service - Operation: order_created - Processing time: 533ms - RequestID: rt57fhitgi +2025-06-18T14:25:58.281Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 573ms - RequestID: 51egi9oohj +2025-06-18T14:25:58.381Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 403 - Response time: 409ms - IP: 192.168.147.171 - User: user_1033 - RequestID: 8c9ztuj6jlk +2025-06-18T14:25:58.481Z [TRACE] order-service - Auth event: password_change - User: user_1066 - IP: 192.168.53.133 - RequestID: avebybfurnk +2025-06-18T14:25:58.581Z [TRACE] order-service - POST /api/v1/payments - Status: 400 - Response time: 187ms - IP: 192.168.68.158 - User: user_1058 - RequestID: 91zzj4fp5xk +2025-06-18T14:25:58.681Z [INFO] user-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1465ms - IP: 192.168.235.117 - User: user_1050 - RequestID: 35xptz88eik +2025-06-18T14:25:58.781Z [INFO] payment-service - Operation: notification_queued - Processing time: 333ms - RequestID: j6jhqyuic8m +2025-06-18T14:25:58.881Z [TRACE] notification-service - Auth event: login_success - User: user_1015 - IP: 192.168.31.117 - RequestID: i3ljlqfuueb +2025-06-18T14:25:58.981Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 177ms - Rows affected: 52 - RequestID: k8flnjjy4rj +2025-06-18T14:25:59.081Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 441ms - Rows affected: 97 - RequestID: 6rd9jl18qfj +2025-06-18T14:25:59.181Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 587ms - RequestID: xrcxsxcqs5 +2025-06-18T14:25:59.281Z [INFO] user-service - PATCH /api/v1/orders - Status: 400 - Response time: 22ms - IP: 192.168.242.165 - User: user_1077 - RequestID: a2qn2e185w9 +2025-06-18T14:25:59.381Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 31ms - Rows affected: 56 - RequestID: e3fjtt5r57s +2025-06-18T14:25:59.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 415ms - RequestID: 2fwxk4ntgvh +2025-06-18T14:25:59.581Z [TRACE] notification-service - Auth event: login_failed - User: user_1001 - IP: 192.168.10.184 - RequestID: q3v5yf639ed +2025-06-18T14:25:59.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 876ms - RequestID: w949bc300n +2025-06-18T14:25:59.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 604ms - RequestID: siirmhi5to +2025-06-18T14:25:59.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 815ms - RequestID: tyi7qq41ro +2025-06-18T14:25:59.981Z [TRACE] order-service - Auth event: login_success - User: user_1091 - IP: 192.168.211.72 - RequestID: io1mxckbxe +2025-06-18T14:26:00.081Z [DEBUG] user-service - Database DELETE on products - Execution time: 459ms - Rows affected: 71 - RequestID: 1k3gdwnjd97 +2025-06-18T14:26:00.181Z [DEBUG] notification-service - Operation: order_created - Processing time: 333ms - RequestID: he4u7nde6wh +2025-06-18T14:26:00.281Z [TRACE] auth-service - Operation: order_created - Processing time: 944ms - RequestID: xnc7vn6r9qp +2025-06-18T14:26:00.381Z [DEBUG] order-service - Auth event: logout - User: user_1082 - IP: 192.168.242.165 - RequestID: cy5xogiym2 +2025-06-18T14:26:00.481Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 62ms - Rows affected: 17 - RequestID: coydhls8jt +2025-06-18T14:26:00.581Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.33.76 - RequestID: nzu8bu5hrtd +2025-06-18T14:26:00.681Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 318ms - Rows affected: 61 - RequestID: 7n48317wk04 +2025-06-18T14:26:00.781Z [INFO] order-service - Database DELETE on users - Execution time: 236ms - Rows affected: 27 - RequestID: xzdy3ddnrjs +2025-06-18T14:26:00.881Z [TRACE] auth-service - Operation: order_created - Processing time: 529ms - RequestID: w1ibtap4lbq +2025-06-18T14:26:00.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1082 - IP: 192.168.167.32 - RequestID: 3wau35z1cs2 +2025-06-18T14:26:01.081Z [DEBUG] inventory-service - Operation: order_created - Processing time: 351ms - RequestID: j699wdmc9l +2025-06-18T14:26:01.181Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 775ms - RequestID: mvf9e66j1l +2025-06-18T14:26:01.281Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 502 - Response time: 785ms - IP: 192.168.13.72 - User: user_1082 - RequestID: pvqam6rl41b +2025-06-18T14:26:01.381Z [INFO] order-service - Database UPDATE on orders - Execution time: 435ms - Rows affected: 85 - RequestID: snuhwf10is +2025-06-18T14:26:01.481Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 275ms - Rows affected: 34 - RequestID: sd3uee43p8 +2025-06-18T14:26:01.581Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 1015ms - RequestID: siig446f66d +2025-06-18T14:26:01.681Z [TRACE] order-service - Operation: cache_hit - Processing time: 495ms - RequestID: oyvyq4c33a +2025-06-18T14:26:01.781Z [INFO] payment-service - Auth event: login_failed - User: user_1093 - IP: 192.168.133.7 - RequestID: 32e51n5p03t +2025-06-18T14:26:01.881Z [DEBUG] payment-service - Database SELECT on products - Execution time: 215ms - Rows affected: 40 - RequestID: ly3of1ukb1k +2025-06-18T14:26:01.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1040 - IP: 192.168.10.184 - RequestID: 1btiwn348bs +2025-06-18T14:26:02.081Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 160ms - Rows affected: 18 - RequestID: wtrptcndk1o +2025-06-18T14:26:02.181Z [INFO] inventory-service - POST /api/v1/payments - Status: 400 - Response time: 62ms - IP: 192.168.97.87 - User: user_1048 - RequestID: 4uh653fw6l3 +2025-06-18T14:26:02.281Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1459ms - IP: 192.168.187.199 - User: user_1053 - RequestID: dqgvie24o95 +2025-06-18T14:26:02.381Z [TRACE] notification-service - Auth event: login_success - User: user_1096 - IP: 192.168.170.215 - RequestID: 0d64hfixxre +2025-06-18T14:26:02.481Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 484ms - Rows affected: 2 - RequestID: ta8xjmwbvo9 +2025-06-18T14:26:02.581Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1841ms - IP: 192.168.159.94 - User: user_1080 - RequestID: f634jjsq0j +2025-06-18T14:26:02.681Z [TRACE] order-service - Database SELECT on sessions - Execution time: 146ms - Rows affected: 1 - RequestID: 4shsyk9dxsp +2025-06-18T14:26:02.781Z [INFO] order-service - Database UPDATE on sessions - Execution time: 43ms - Rows affected: 77 - RequestID: pntggx0rrd +2025-06-18T14:26:02.881Z [INFO] notification-service - Auth event: password_change - User: user_1092 - IP: 192.168.187.199 - RequestID: 7vcia53vwvc +2025-06-18T14:26:02.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 162ms - RequestID: z1m81ovma19 +2025-06-18T14:26:03.081Z [TRACE] order-service - Operation: payment_processed - Processing time: 620ms - RequestID: mtbrjaievx +2025-06-18T14:26:03.181Z [DEBUG] auth-service - Database INSERT on users - Execution time: 488ms - Rows affected: 94 - RequestID: d8se5hgw7ie +2025-06-18T14:26:03.281Z [DEBUG] notification-service - Auth event: logout - User: user_1085 - IP: 192.168.13.72 - RequestID: qjtixgb7m +2025-06-18T14:26:03.381Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 225ms - RequestID: u3y9qmf7pol +2025-06-18T14:26:03.481Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 276ms - Rows affected: 64 - RequestID: ibgjq7vsv7e +2025-06-18T14:26:03.581Z [DEBUG] payment-service - Database SELECT on products - Execution time: 236ms - Rows affected: 66 - RequestID: fvesxusmsxu +2025-06-18T14:26:03.681Z [TRACE] payment-service - Database SELECT on products - Execution time: 74ms - Rows affected: 68 - RequestID: 8i314hizowy +2025-06-18T14:26:03.781Z [INFO] inventory-service - Auth event: password_change - User: user_1022 - IP: 192.168.242.165 - RequestID: an9i7tphept +2025-06-18T14:26:03.881Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 441ms - Rows affected: 66 - RequestID: sszdzcqa13 +2025-06-18T14:26:03.981Z [DEBUG] order-service - Operation: cache_hit - Processing time: 601ms - RequestID: 94nxhk1veo9 +2025-06-18T14:26:04.081Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 191ms - Rows affected: 38 - RequestID: 7hb5zsnxzvj +2025-06-18T14:26:04.181Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 403 - Response time: 147ms - IP: 192.168.79.141 - User: user_1093 - RequestID: b22kuvxx63 +2025-06-18T14:26:04.281Z [INFO] inventory-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.211.72 - RequestID: c7sbzkcai69 +2025-06-18T14:26:04.381Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 389ms - Rows affected: 39 - RequestID: k3yr7sf77id +2025-06-18T14:26:04.481Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 263ms - Rows affected: 63 - RequestID: 5m3xj7tkhm3 +2025-06-18T14:26:04.581Z [INFO] order-service - Operation: webhook_sent - Processing time: 177ms - RequestID: 3rrormtsop1 +2025-06-18T14:26:04.681Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 226ms - Rows affected: 95 - RequestID: b98e6utt5rc +2025-06-18T14:26:04.781Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 200 - Response time: 1040ms - IP: 192.168.235.117 - User: user_1029 - RequestID: h0k9a1poqqq +2025-06-18T14:26:04.881Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.68.158 - RequestID: nnmwdcls2rq +2025-06-18T14:26:04.981Z [INFO] inventory-service - Auth event: login_failed - User: user_1031 - IP: 192.168.31.117 - RequestID: hlkt0l2w5n +2025-06-18T14:26:05.081Z [TRACE] user-service - Operation: email_sent - Processing time: 780ms - RequestID: 5oaljsco93l +2025-06-18T14:26:05.181Z [TRACE] order-service - Auth event: login_success - User: user_1069 - IP: 192.168.33.76 - RequestID: fvzeaw9gld8 +2025-06-18T14:26:05.281Z [DEBUG] user-service - Operation: payment_processed - Processing time: 938ms - RequestID: pgw5ygn9ler +2025-06-18T14:26:05.381Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 237ms - Rows affected: 90 - RequestID: zo03yla3eo +2025-06-18T14:26:05.481Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 178ms - Rows affected: 43 - RequestID: mz2ahiu3ez +2025-06-18T14:26:05.581Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 219ms - RequestID: 9qxumrerh7d +2025-06-18T14:26:05.681Z [INFO] auth-service - POST /api/v1/payments - Status: 500 - Response time: 1568ms - IP: 192.168.247.134 - User: user_1081 - RequestID: ir8e5c0dooi +2025-06-18T14:26:05.781Z [TRACE] notification-service - Operation: payment_processed - Processing time: 53ms - RequestID: 9sqc1pwjypb +2025-06-18T14:26:05.881Z [TRACE] order-service - GET /api/v1/users - Status: 400 - Response time: 1880ms - IP: 192.168.85.229 - User: user_1005 - RequestID: 5nu91mytryt +2025-06-18T14:26:05.981Z [TRACE] auth-service - Database SELECT on orders - Execution time: 26ms - Rows affected: 25 - RequestID: z48xslltvb +2025-06-18T14:26:06.081Z [TRACE] order-service - Database UPDATE on payments - Execution time: 139ms - Rows affected: 35 - RequestID: 2xwfv4axub3 +2025-06-18T14:26:06.181Z [TRACE] order-service - Database SELECT on users - Execution time: 65ms - Rows affected: 78 - RequestID: ig5zz0d56br +2025-06-18T14:26:06.281Z [INFO] user-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.170.215 - RequestID: 3xnkpso6sge +2025-06-18T14:26:06.381Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.32.38 - RequestID: 24l05n1xphh +2025-06-18T14:26:06.481Z [INFO] auth-service - PUT /api/v1/orders - Status: 503 - Response time: 593ms - IP: 192.168.211.72 - User: user_1063 - RequestID: ja7s9wmptn +2025-06-18T14:26:06.581Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 670ms - RequestID: sp93ndeqot +2025-06-18T14:26:06.681Z [TRACE] user-service - Database INSERT on sessions - Execution time: 215ms - Rows affected: 90 - RequestID: 6vg5bcuwp2n +2025-06-18T14:26:06.781Z [DEBUG] notification-service - Auth event: password_change - User: user_1090 - IP: 192.168.113.218 - RequestID: vq4gmbj4syi +2025-06-18T14:26:06.881Z [DEBUG] user-service - Operation: payment_processed - Processing time: 404ms - RequestID: 88fqjmju6js +2025-06-18T14:26:06.981Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 401ms - Rows affected: 44 - RequestID: epyn0i8jux +2025-06-18T14:26:07.081Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 804ms - IP: 192.168.1.152 - User: user_1035 - RequestID: gnvzedm5fft +2025-06-18T14:26:07.181Z [TRACE] order-service - Database UPDATE on orders - Execution time: 251ms - Rows affected: 5 - RequestID: w7q9yfrl0pm +2025-06-18T14:26:07.281Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 358ms - RequestID: r465zgygs9 +2025-06-18T14:26:07.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1065 - IP: 192.168.97.87 - RequestID: 01wubh91ei3u +2025-06-18T14:26:07.481Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 200 - Response time: 984ms - IP: 192.168.97.87 - User: user_1066 - RequestID: ddqchsd3np9 +2025-06-18T14:26:07.581Z [DEBUG] payment-service - Auth event: password_change - User: user_1091 - IP: 192.168.33.76 - RequestID: 9xlwge466ci +2025-06-18T14:26:07.681Z [TRACE] order-service - POST /api/v1/orders - Status: 201 - Response time: 453ms - IP: 192.168.30.79 - User: user_1007 - RequestID: bhre7p9wubd +2025-06-18T14:26:07.781Z [DEBUG] order-service - Operation: cache_miss - Processing time: 90ms - RequestID: 71x5k0rdea7 +2025-06-18T14:26:07.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.187.199 - RequestID: o9ikj5o61o +2025-06-18T14:26:07.981Z [TRACE] payment-service - Database INSERT on users - Execution time: 396ms - Rows affected: 14 - RequestID: rzszt48xcrl +2025-06-18T14:26:08.081Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 698ms - RequestID: 8dkpjhd9g5k +2025-06-18T14:26:08.181Z [INFO] notification-service - Auth event: login_failed - User: user_1000 - IP: 192.168.85.229 - RequestID: 28bgljehiew +2025-06-18T14:26:08.281Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 822ms - IP: 192.168.240.169 - User: user_1012 - RequestID: 56e09kvruvx +2025-06-18T14:26:08.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1003 - IP: 192.168.227.77 - RequestID: z50zkytt46s +2025-06-18T14:26:08.481Z [TRACE] user-service - Database INSERT on users - Execution time: 35ms - Rows affected: 80 - RequestID: 50446z2biop +2025-06-18T14:26:08.581Z [DEBUG] auth-service - Operation: order_created - Processing time: 547ms - RequestID: m53uwudhm4l +2025-06-18T14:26:08.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.68.128 - RequestID: s0eqd374fl +2025-06-18T14:26:08.781Z [TRACE] notification-service - GET /api/v1/orders - Status: 201 - Response time: 1936ms - IP: 192.168.194.41 - User: user_1096 - RequestID: 1wr8xij2ja4 +2025-06-18T14:26:08.881Z [DEBUG] user-service - Database INSERT on orders - Execution time: 47ms - Rows affected: 15 - RequestID: npaqcbe9hcl +2025-06-18T14:26:08.981Z [INFO] payment-service - Auth event: login_failed - User: user_1077 - IP: 192.168.81.206 - RequestID: 4bbqj61s9yx +2025-06-18T14:26:09.081Z [TRACE] payment-service - Database UPDATE on users - Execution time: 414ms - Rows affected: 97 - RequestID: omturehrbu +2025-06-18T14:26:09.181Z [TRACE] user-service - Database SELECT on orders - Execution time: 454ms - Rows affected: 29 - RequestID: flmyijirk5n +2025-06-18T14:26:09.281Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 387ms - Rows affected: 67 - RequestID: zu1lhsjp21 +2025-06-18T14:26:09.381Z [INFO] auth-service - PUT /api/v1/users - Status: 500 - Response time: 1471ms - IP: 192.168.79.141 - User: user_1067 - RequestID: pv84i9syif +2025-06-18T14:26:09.481Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 502 - Response time: 569ms - IP: 192.168.31.117 - User: user_1056 - RequestID: giaqigwbprh +2025-06-18T14:26:09.581Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 401 - Response time: 1639ms - IP: 192.168.211.72 - User: user_1038 - RequestID: lyqaxue12t9 +2025-06-18T14:26:09.681Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 495ms - Rows affected: 58 - RequestID: t40cdlg6tb +2025-06-18T14:26:09.781Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 52ms - Rows affected: 15 - RequestID: 3pbcz1wrfp7 +2025-06-18T14:26:09.881Z [INFO] order-service - GET /api/v1/inventory - Status: 200 - Response time: 225ms - IP: 192.168.189.103 - User: user_1081 - RequestID: 21axnu44i3i +2025-06-18T14:26:09.981Z [DEBUG] user-service - Auth event: password_change - User: user_1013 - IP: 192.168.211.72 - RequestID: wxk23wk4aj +2025-06-18T14:26:10.081Z [DEBUG] order-service - Operation: cache_hit - Processing time: 983ms - RequestID: agp0himgjlm +2025-06-18T14:26:10.181Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 423ms - Rows affected: 71 - RequestID: 1uvc5ey084 +2025-06-18T14:26:10.281Z [INFO] payment-service - Database SELECT on payments - Execution time: 234ms - Rows affected: 45 - RequestID: qo0t37y62wg +2025-06-18T14:26:10.381Z [DEBUG] notification-service - Operation: email_sent - Processing time: 653ms - RequestID: rca71wdcss +2025-06-18T14:26:10.481Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 201 - Response time: 1365ms - IP: 192.168.97.87 - User: user_1040 - RequestID: 17j2sfg2kqh +2025-06-18T14:26:10.581Z [TRACE] user-service - Operation: order_created - Processing time: 674ms - RequestID: piurr6y4g7n +2025-06-18T14:26:10.681Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 1023ms - RequestID: v8678omzqhp +2025-06-18T14:26:10.781Z [DEBUG] order-service - DELETE /api/v1/users - Status: 404 - Response time: 46ms - IP: 192.168.100.240 - User: user_1094 - RequestID: 5i09loqw12p +2025-06-18T14:26:10.881Z [TRACE] user-service - PUT /api/v1/orders - Status: 200 - Response time: 1357ms - IP: 192.168.36.218 - User: user_1087 - RequestID: i8r1ogxhk9 +2025-06-18T14:26:10.981Z [INFO] order-service - Database UPDATE on products - Execution time: 135ms - Rows affected: 8 - RequestID: mt8995q82ji +2025-06-18T14:26:11.081Z [TRACE] notification-service - Operation: notification_queued - Processing time: 890ms - RequestID: rp1vc2bzb28 +2025-06-18T14:26:11.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 595ms - RequestID: mzf076p6zc8 +2025-06-18T14:26:11.281Z [DEBUG] order-service - Auth event: login_success - User: user_1088 - IP: 192.168.247.134 - RequestID: i21xav679bs +2025-06-18T14:26:11.381Z [TRACE] payment-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.79.116 - RequestID: e8e0ct9q96 +2025-06-18T14:26:11.481Z [TRACE] payment-service - Auth event: login_success - User: user_1064 - IP: 192.168.181.225 - RequestID: 2ubn37mbf5r +2025-06-18T14:26:11.581Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 673ms - IP: 192.168.159.94 - User: user_1031 - RequestID: 2wo8bp11e6q +2025-06-18T14:26:11.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1082 - IP: 192.168.30.79 - RequestID: 9kw3ls200kv +2025-06-18T14:26:11.781Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 986ms - IP: 192.168.174.114 - User: user_1007 - RequestID: urggva8f7la +2025-06-18T14:26:11.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1017 - IP: 192.168.53.133 - RequestID: 5nh9afibc0r +2025-06-18T14:26:11.981Z [INFO] inventory-service - Database DELETE on orders - Execution time: 157ms - Rows affected: 42 - RequestID: v4b5ezgkcnn +2025-06-18T14:26:12.081Z [TRACE] user-service - Auth event: login_success - User: user_1054 - IP: 192.168.68.158 - RequestID: o1ukh2zbkbc +2025-06-18T14:26:12.181Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1970ms - IP: 192.168.235.117 - User: user_1042 - RequestID: u90y832hop9 +2025-06-18T14:26:12.281Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 735ms - RequestID: nut96gv4imk +2025-06-18T14:26:12.381Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.32.38 - RequestID: ppimb3tg3t8 +2025-06-18T14:26:12.481Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 728ms - IP: 192.168.79.141 - User: user_1008 - RequestID: 1tsj96o183w +2025-06-18T14:26:12.581Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 414ms - Rows affected: 84 - RequestID: z961gmf2ib +2025-06-18T14:26:12.681Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 862ms - RequestID: v9obcizbcg +2025-06-18T14:26:12.781Z [INFO] notification-service - PATCH /api/v1/users - Status: 500 - Response time: 933ms - IP: 192.168.97.87 - User: user_1020 - RequestID: fjtzmls0f6g +2025-06-18T14:26:12.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 530ms - RequestID: nmzi6drdnto +2025-06-18T14:26:12.981Z [DEBUG] order-service - Operation: payment_processed - Processing time: 115ms - RequestID: gar0cb7ibd4 +2025-06-18T14:26:13.081Z [TRACE] order-service - Operation: cache_miss - Processing time: 143ms - RequestID: sntxykx2q6f +2025-06-18T14:26:13.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1060 - IP: 192.168.1.152 - RequestID: ujj35j96o5c +2025-06-18T14:26:13.281Z [TRACE] notification-service - GET /api/v1/orders - Status: 401 - Response time: 691ms - IP: 192.168.181.225 - User: user_1066 - RequestID: tjqygxtym5 +2025-06-18T14:26:13.381Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 89ms - Rows affected: 48 - RequestID: 7wpnahqxjdl +2025-06-18T14:26:13.481Z [DEBUG] order-service - Database SELECT on payments - Execution time: 343ms - Rows affected: 65 - RequestID: siba8lp9ayj +2025-06-18T14:26:13.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 415ms - RequestID: auyco2siio7 +2025-06-18T14:26:13.681Z [TRACE] auth-service - Operation: notification_queued - Processing time: 394ms - RequestID: 9e2ydhcv1yu +2025-06-18T14:26:13.781Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 713ms - RequestID: 4zlj6qwl8eq +2025-06-18T14:26:13.881Z [INFO] notification-service - Database UPDATE on payments - Execution time: 394ms - Rows affected: 80 - RequestID: 8xv6vml3fi4 +2025-06-18T14:26:13.981Z [INFO] notification-service - Operation: email_sent - Processing time: 464ms - RequestID: vfij1amp3q +2025-06-18T14:26:14.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1050 - IP: 192.168.79.116 - RequestID: 0yjdstzlob3 +2025-06-18T14:26:14.181Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 227ms - Rows affected: 3 - RequestID: y6xonosjcrk +2025-06-18T14:26:14.281Z [TRACE] notification-service - Auth event: login_failed - User: user_1023 - IP: 192.168.28.146 - RequestID: on3nhwalx4l +2025-06-18T14:26:14.381Z [TRACE] payment-service - Operation: order_created - Processing time: 362ms - RequestID: qbf55mv8le +2025-06-18T14:26:14.481Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 404 - Response time: 14ms - IP: 192.168.196.226 - User: user_1001 - RequestID: vjdn878dma +2025-06-18T14:26:14.581Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 930ms - RequestID: zuo9nj2qbhj +2025-06-18T14:26:14.681Z [TRACE] inventory-service - Operation: order_created - Processing time: 556ms - RequestID: hjueojjnvdd +2025-06-18T14:26:14.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1053 - IP: 192.168.240.169 - RequestID: uxcvtztumem +2025-06-18T14:26:14.881Z [INFO] payment-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.79.143 - RequestID: 8d3oy2rz2ni +2025-06-18T14:26:14.981Z [DEBUG] auth-service - GET /api/v1/orders - Status: 404 - Response time: 456ms - IP: 192.168.229.123 - User: user_1067 - RequestID: 4th4u0gwp09 +2025-06-18T14:26:15.081Z [INFO] user-service - Auth event: login_success - User: user_1003 - IP: 192.168.229.123 - RequestID: l0fz16yn9l +2025-06-18T14:26:15.181Z [INFO] user-service - Database DELETE on orders - Execution time: 157ms - Rows affected: 17 - RequestID: 1oqx27tt6fr +2025-06-18T14:26:15.281Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 611ms - IP: 192.168.11.60 - User: user_1014 - RequestID: whlmozmnb0m +2025-06-18T14:26:15.381Z [TRACE] payment-service - Auth event: logout - User: user_1046 - IP: 192.168.64.33 - RequestID: 1lctd6w0g9o +2025-06-18T14:26:15.481Z [INFO] user-service - PUT /api/v1/payments - Status: 500 - Response time: 509ms - IP: 192.168.242.165 - User: user_1003 - RequestID: fgstpf2zj8m +2025-06-18T14:26:15.581Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 348ms - Rows affected: 27 - RequestID: 8mhoqcjfjpt +2025-06-18T14:26:15.681Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 200 - Response time: 283ms - IP: 192.168.196.226 - User: user_1061 - RequestID: zibfzwu15i +2025-06-18T14:26:15.781Z [TRACE] auth-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.240.169 - RequestID: x1orh2iw8a +2025-06-18T14:26:15.881Z [TRACE] payment-service - Operation: cache_hit - Processing time: 330ms - RequestID: z4xagqe2cu +2025-06-18T14:26:15.981Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 300ms - RequestID: 271x5jgdnre +2025-06-18T14:26:16.081Z [INFO] notification-service - Database UPDATE on users - Execution time: 274ms - Rows affected: 98 - RequestID: d034bhuyy7t +2025-06-18T14:26:16.181Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 269ms - Rows affected: 83 - RequestID: 9fby8y9493l +2025-06-18T14:26:16.281Z [TRACE] notification-service - Auth event: login_failed - User: user_1016 - IP: 192.168.211.72 - RequestID: s0swyx97d3q +2025-06-18T14:26:16.381Z [INFO] user-service - GET /api/v1/orders - Status: 404 - Response time: 1712ms - IP: 192.168.79.116 - User: user_1043 - RequestID: cqbgt9sdvrm +2025-06-18T14:26:16.481Z [TRACE] order-service - Operation: payment_processed - Processing time: 610ms - RequestID: ixz78ky08p +2025-06-18T14:26:16.581Z [TRACE] auth-service - Operation: order_created - Processing time: 369ms - RequestID: 0kypfbfjhtg +2025-06-18T14:26:16.681Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 611ms - RequestID: mv1mnnpndnf +2025-06-18T14:26:16.781Z [DEBUG] user-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.242.165 - RequestID: 7px8dbd6tg6 +2025-06-18T14:26:16.881Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.167.32 - RequestID: yc50rtnuogr +2025-06-18T14:26:16.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1027 - IP: 192.168.11.60 - RequestID: byp6qsvxff6 +2025-06-18T14:26:17.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.79.143 - RequestID: zeoxu4cg6sf +2025-06-18T14:26:17.181Z [TRACE] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 1139ms - IP: 192.168.227.77 - User: user_1083 - RequestID: ikw40ul25j +2025-06-18T14:26:17.281Z [DEBUG] order-service - Database DELETE on payments - Execution time: 471ms - Rows affected: 54 - RequestID: ify9el7of6p +2025-06-18T14:26:17.381Z [DEBUG] user-service - Auth event: password_change - User: user_1076 - IP: 192.168.97.87 - RequestID: c2a4s8nset7 +2025-06-18T14:26:17.481Z [TRACE] auth-service - Auth event: password_change - User: user_1095 - IP: 192.168.11.60 - RequestID: grxrqgvq7b +2025-06-18T14:26:17.581Z [TRACE] user-service - Auth event: login_success - User: user_1016 - IP: 192.168.53.133 - RequestID: 5xe6mxxt8gr +2025-06-18T14:26:17.681Z [DEBUG] payment-service - Database DELETE on users - Execution time: 366ms - Rows affected: 15 - RequestID: docbjpu2mll +2025-06-18T14:26:17.781Z [TRACE] user-service - GET /api/v1/inventory - Status: 401 - Response time: 860ms - IP: 192.168.227.77 - User: user_1087 - RequestID: yeyc85w5naa +2025-06-18T14:26:17.881Z [INFO] user-service - Operation: payment_processed - Processing time: 484ms - RequestID: vek1ila1ei +2025-06-18T14:26:17.981Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 233ms - RequestID: xn7lrat089o +2025-06-18T14:26:18.081Z [INFO] notification-service - GET /api/v1/payments - Status: 503 - Response time: 50ms - IP: 192.168.100.240 - User: user_1070 - RequestID: w0mvh4tcurq +2025-06-18T14:26:18.181Z [TRACE] user-service - Database UPDATE on users - Execution time: 39ms - Rows affected: 75 - RequestID: 41xfo2q771t +2025-06-18T14:26:18.281Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.68.158 - RequestID: xo0y5s33r6 +2025-06-18T14:26:18.381Z [TRACE] payment-service - Database UPDATE on users - Execution time: 36ms - Rows affected: 84 - RequestID: 7lrmbekcz8j +2025-06-18T14:26:18.481Z [TRACE] user-service - Operation: cache_miss - Processing time: 54ms - RequestID: iz3jcabcz +2025-06-18T14:26:18.581Z [TRACE] order-service - Auth event: login_success - User: user_1068 - IP: 192.168.30.79 - RequestID: 4zktr96r8dy +2025-06-18T14:26:18.681Z [TRACE] payment-service - PUT /api/v1/payments - Status: 401 - Response time: 1550ms - IP: 192.168.181.225 - User: user_1069 - RequestID: l3d4lzqp3m +2025-06-18T14:26:18.781Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 242ms - RequestID: qvyn7hzd92 +2025-06-18T14:26:18.881Z [DEBUG] notification-service - Operation: order_created - Processing time: 562ms - RequestID: 5gcbw3rg3ix +2025-06-18T14:26:18.981Z [DEBUG] user-service - POST /api/v1/users - Status: 201 - Response time: 1629ms - IP: 192.168.240.169 - User: user_1049 - RequestID: 7hy7iiofe4c +2025-06-18T14:26:19.081Z [INFO] order-service - GET /api/v1/auth/logout - Status: 401 - Response time: 563ms - IP: 192.168.36.218 - User: user_1004 - RequestID: b1kmqfunlhe +2025-06-18T14:26:19.181Z [TRACE] payment-service - PATCH /api/v1/users - Status: 400 - Response time: 1756ms - IP: 192.168.113.218 - User: user_1054 - RequestID: gwvlfhhe8w +2025-06-18T14:26:19.281Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 866ms - RequestID: 3q2kh6bxras +2025-06-18T14:26:19.381Z [TRACE] order-service - Auth event: password_change - User: user_1077 - IP: 192.168.144.38 - RequestID: rgg9ztg1738 +2025-06-18T14:26:19.481Z [INFO] notification-service - Operation: cache_hit - Processing time: 332ms - RequestID: 8fqur50yfjp +2025-06-18T14:26:19.581Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 93ms - Rows affected: 31 - RequestID: ojsdcndzfp +2025-06-18T14:26:19.681Z [INFO] order-service - Auth event: login_failed - User: user_1026 - IP: 192.168.159.94 - RequestID: 4ll15oonpnm +2025-06-18T14:26:19.781Z [INFO] payment-service - Operation: order_created - Processing time: 141ms - RequestID: n8jxeeo2in +2025-06-18T14:26:19.881Z [TRACE] auth-service - PUT /api/v1/users - Status: 201 - Response time: 801ms - IP: 192.168.187.199 - User: user_1055 - RequestID: mfwtftenhcf +2025-06-18T14:26:19.981Z [DEBUG] payment-service - Auth event: login_success - User: user_1091 - IP: 192.168.138.123 - RequestID: n5uvbs45tb +2025-06-18T14:26:20.081Z [TRACE] order-service - Operation: order_created - Processing time: 375ms - RequestID: 9l4ziyejyb +2025-06-18T14:26:20.181Z [TRACE] user-service - Database INSERT on sessions - Execution time: 157ms - Rows affected: 86 - RequestID: o61jkhf7hr +2025-06-18T14:26:20.281Z [INFO] auth-service - Operation: webhook_sent - Processing time: 611ms - RequestID: gjtgl0u719a +2025-06-18T14:26:20.381Z [DEBUG] payment-service - Database SELECT on products - Execution time: 87ms - Rows affected: 75 - RequestID: ndm4axkia2 +2025-06-18T14:26:20.481Z [DEBUG] user-service - Operation: notification_queued - Processing time: 705ms - RequestID: 3f26mwoyz4a +2025-06-18T14:26:20.581Z [DEBUG] order-service - GET /api/v1/users - Status: 403 - Response time: 844ms - IP: 192.168.235.117 - User: user_1075 - RequestID: 6evhbmbu7vq +2025-06-18T14:26:20.681Z [TRACE] auth-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.159.94 - RequestID: 1j7ta2nwzrr +2025-06-18T14:26:20.781Z [TRACE] inventory-service - Operation: email_sent - Processing time: 690ms - RequestID: 9cm2p1fq83g +2025-06-18T14:26:20.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1066 - IP: 192.168.113.218 - RequestID: o9wle6x26d +2025-06-18T14:26:20.981Z [DEBUG] order-service - Auth event: login_failed - User: user_1097 - IP: 192.168.147.171 - RequestID: wl7iba4a3ej +2025-06-18T14:26:21.081Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 106ms - Rows affected: 92 - RequestID: 23l8hvz6j0r +2025-06-18T14:26:21.181Z [TRACE] order-service - Auth event: login_success - User: user_1011 - IP: 192.168.100.240 - RequestID: 0q1fi4yf78ua +2025-06-18T14:26:21.281Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 400 - Response time: 718ms - IP: 192.168.10.184 - User: user_1062 - RequestID: rsvn3knvm3 +2025-06-18T14:26:21.381Z [TRACE] inventory-service - Database SELECT on users - Execution time: 308ms - Rows affected: 81 - RequestID: 83pav5ctl7i +2025-06-18T14:26:21.481Z [TRACE] auth-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.147.171 - RequestID: 56ydg2l4p6s +2025-06-18T14:26:21.581Z [INFO] payment-service - Auth event: login_success - User: user_1092 - IP: 192.168.104.37 - RequestID: apfmeww5519 +2025-06-18T14:26:21.681Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1371ms - IP: 192.168.194.41 - User: user_1084 - RequestID: 0vg1dfb3k8q +2025-06-18T14:26:21.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.79.141 - RequestID: mq7388twqk +2025-06-18T14:26:21.881Z [INFO] user-service - GET /api/v1/auth/logout - Status: 500 - Response time: 890ms - IP: 192.168.158.144 - User: user_1020 - RequestID: 2rsdj9jka6 +2025-06-18T14:26:21.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.196.226 - RequestID: b9731nvwvxn +2025-06-18T14:26:22.081Z [INFO] auth-service - Operation: email_sent - Processing time: 134ms - RequestID: 4hk5ehq1ggq +2025-06-18T14:26:22.181Z [TRACE] auth-service - GET /api/v1/users - Status: 201 - Response time: 1739ms - IP: 192.168.144.38 - User: user_1004 - RequestID: ytpemee5yy9 +2025-06-18T14:26:22.281Z [INFO] payment-service - Auth event: login_success - User: user_1088 - IP: 192.168.232.72 - RequestID: 14fpdw4z0ky +2025-06-18T14:26:22.381Z [TRACE] order-service - Operation: notification_queued - Processing time: 119ms - RequestID: ktfwvc5b5dn +2025-06-18T14:26:22.481Z [TRACE] user-service - Auth event: login_failed - User: user_1057 - IP: 192.168.138.123 - RequestID: a3y4q9ch1m6 +2025-06-18T14:26:22.581Z [INFO] user-service - Database INSERT on sessions - Execution time: 376ms - Rows affected: 18 - RequestID: p3w9rtz6yy +2025-06-18T14:26:22.681Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.14.77 - RequestID: 0n6es1ed06u +2025-06-18T14:26:22.781Z [INFO] order-service - Auth event: password_change - User: user_1004 - IP: 192.168.167.32 - RequestID: vkrfof9h5n9 +2025-06-18T14:26:22.881Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 109ms - Rows affected: 20 - RequestID: ga1sdrz6lx6 +2025-06-18T14:26:22.981Z [INFO] user-service - Operation: email_sent - Processing time: 696ms - RequestID: 1974caaz4a +2025-06-18T14:26:23.081Z [INFO] auth-service - Database SELECT on payments - Execution time: 395ms - Rows affected: 65 - RequestID: 7xk5885tiy +2025-06-18T14:26:23.181Z [TRACE] notification-service - Operation: cache_miss - Processing time: 431ms - RequestID: sg3wclpf99 +2025-06-18T14:26:23.281Z [DEBUG] payment-service - PUT /api/v1/users - Status: 503 - Response time: 1834ms - IP: 192.168.113.218 - User: user_1074 - RequestID: xpxxgbi5qiq +2025-06-18T14:26:23.381Z [TRACE] user-service - Auth event: password_change - User: user_1070 - IP: 192.168.211.72 - RequestID: ze18yes7iri +2025-06-18T14:26:23.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1010 - IP: 192.168.53.133 - RequestID: l5jpxarvju +2025-06-18T14:26:23.581Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1284ms - IP: 192.168.113.218 - User: user_1080 - RequestID: kdd80g2oghi +2025-06-18T14:26:23.681Z [INFO] auth-service - Database DELETE on products - Execution time: 314ms - Rows affected: 81 - RequestID: ww64qaxuun9 +2025-06-18T14:26:23.781Z [INFO] order-service - GET /api/v1/payments - Status: 200 - Response time: 264ms - IP: 192.168.235.117 - User: user_1007 - RequestID: rnpmk1vfif +2025-06-18T14:26:23.881Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 599ms - RequestID: yy4vbb0doj +2025-06-18T14:26:23.981Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 439ms - Rows affected: 7 - RequestID: b2fv2u7goqb +2025-06-18T14:26:24.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 255ms - RequestID: 4e1203i4gqz +2025-06-18T14:26:24.181Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 503 - Response time: 1530ms - IP: 192.168.97.87 - User: user_1041 - RequestID: tu4h9iufud +2025-06-18T14:26:24.281Z [TRACE] auth-service - Operation: email_sent - Processing time: 1033ms - RequestID: f1p9dvec8ln +2025-06-18T14:26:24.381Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 465ms - RequestID: cciey69j1co +2025-06-18T14:26:24.481Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 201 - Response time: 124ms - IP: 192.168.10.184 - User: user_1013 - RequestID: 9r74dr3k3z +2025-06-18T14:26:24.581Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 226ms - RequestID: fo428ljh5sj +2025-06-18T14:26:24.681Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 475ms - Rows affected: 94 - RequestID: 8s78nbdn74g +2025-06-18T14:26:24.781Z [DEBUG] user-service - GET /api/v1/payments - Status: 200 - Response time: 920ms - IP: 192.168.33.76 - User: user_1019 - RequestID: ksnzm25aied +2025-06-18T14:26:24.881Z [INFO] order-service - Operation: webhook_sent - Processing time: 606ms - RequestID: ilknydb7zwk +2025-06-18T14:26:24.981Z [DEBUG] user-service - Auth event: password_change - User: user_1078 - IP: 192.168.97.87 - RequestID: i81n58k4wbp +2025-06-18T14:26:25.081Z [INFO] user-service - Operation: cache_hit - Processing time: 485ms - RequestID: qqow4t1r4ue +2025-06-18T14:26:25.181Z [INFO] auth-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.79.116 - RequestID: c07c2724kcn +2025-06-18T14:26:25.281Z [TRACE] order-service - GET /api/v1/users - Status: 403 - Response time: 657ms - IP: 192.168.79.143 - User: user_1012 - RequestID: 8yltfo9qf1c +2025-06-18T14:26:25.381Z [TRACE] auth-service - Database DELETE on products - Execution time: 87ms - Rows affected: 65 - RequestID: zs439y9ouy +2025-06-18T14:26:25.481Z [TRACE] order-service - POST /api/v1/orders - Status: 401 - Response time: 1330ms - IP: 192.168.227.77 - User: user_1094 - RequestID: 9kpmcve8i7 +2025-06-18T14:26:25.581Z [TRACE] user-service - Database INSERT on users - Execution time: 378ms - Rows affected: 38 - RequestID: 5b2rnkxx1kf +2025-06-18T14:26:25.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.158.144 - RequestID: gisj9icy8b8 +2025-06-18T14:26:25.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.144.38 - RequestID: 1qrfagbsr0a +2025-06-18T14:26:25.881Z [DEBUG] payment-service - Auth event: logout - User: user_1098 - IP: 192.168.227.233 - RequestID: uxrs1dfcp3 +2025-06-18T14:26:25.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 524ms - RequestID: 5rs17if1b1p +2025-06-18T14:26:26.081Z [DEBUG] auth-service - Database DELETE on products - Execution time: 94ms - Rows affected: 34 - RequestID: c30iapx5ndk +2025-06-18T14:26:26.181Z [TRACE] inventory-service - Database INSERT on products - Execution time: 450ms - Rows affected: 87 - RequestID: 4ba96zerd7g +2025-06-18T14:26:26.281Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 1810ms - IP: 192.168.232.72 - User: user_1004 - RequestID: 6rxzku5w54p +2025-06-18T14:26:26.381Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 87ms - RequestID: 0z7cttm9ji6k +2025-06-18T14:26:26.481Z [TRACE] notification-service - Operation: cache_miss - Processing time: 1031ms - RequestID: 51a30u0l1or +2025-06-18T14:26:26.581Z [INFO] order-service - Auth event: login_failed - User: user_1069 - IP: 192.168.229.123 - RequestID: 408eyn87lt6 +2025-06-18T14:26:26.681Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 487ms - Rows affected: 6 - RequestID: 8grk27gdbzk +2025-06-18T14:26:26.781Z [TRACE] user-service - PATCH /api/v1/orders - Status: 200 - Response time: 154ms - IP: 192.168.79.143 - User: user_1050 - RequestID: w5ws2e49qnq +2025-06-18T14:26:26.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1052 - IP: 192.168.247.134 - RequestID: n8h32irmpa +2025-06-18T14:26:26.981Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 189ms - Rows affected: 9 - RequestID: u19tidl318 +2025-06-18T14:26:27.081Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 403 - Response time: 1708ms - IP: 192.168.28.146 - User: user_1016 - RequestID: xpe6qfvhia8 +2025-06-18T14:26:27.181Z [INFO] user-service - POST /api/v1/users - Status: 201 - Response time: 1185ms - IP: 192.168.141.100 - User: user_1089 - RequestID: 9atb9xl9kra +2025-06-18T14:26:27.281Z [INFO] user-service - Operation: email_sent - Processing time: 947ms - RequestID: 8m39ya5x15k +2025-06-18T14:26:27.381Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 269ms - RequestID: deh2kzbmv +2025-06-18T14:26:27.481Z [INFO] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 206ms - IP: 192.168.53.133 - User: user_1011 - RequestID: yxrluyo1ivg +2025-06-18T14:26:27.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.1.152 - RequestID: q6u62yqvcrr +2025-06-18T14:26:27.681Z [DEBUG] user-service - Database INSERT on orders - Execution time: 58ms - Rows affected: 25 - RequestID: 9yi1fqr33m +2025-06-18T14:26:27.781Z [TRACE] auth-service - GET /api/v1/users - Status: 401 - Response time: 1025ms - IP: 192.168.138.123 - User: user_1011 - RequestID: 1gefprc4r1m +2025-06-18T14:26:27.881Z [TRACE] notification-service - Operation: email_sent - Processing time: 607ms - RequestID: 5w9hkkpil5e +2025-06-18T14:26:27.981Z [TRACE] order-service - Database INSERT on products - Execution time: 113ms - Rows affected: 81 - RequestID: 8sb0fn35s75 +2025-06-18T14:26:28.081Z [TRACE] order-service - DELETE /api/v1/orders - Status: 503 - Response time: 945ms - IP: 192.168.181.225 - User: user_1086 - RequestID: fh8h6g2xr5n +2025-06-18T14:26:28.181Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 503 - Response time: 538ms - IP: 192.168.158.144 - User: user_1031 - RequestID: yw8wujjjuz +2025-06-18T14:26:28.281Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 409ms - RequestID: lfsmwh7k3lc +2025-06-18T14:26:28.381Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 643ms - RequestID: wea11oy8y3 +2025-06-18T14:26:28.481Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 356ms - IP: 192.168.242.165 - User: user_1031 - RequestID: rbq6id24hxf +2025-06-18T14:26:28.581Z [INFO] payment-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.174.114 - RequestID: fbh8ja4uwnj +2025-06-18T14:26:28.681Z [TRACE] user-service - Operation: payment_processed - Processing time: 634ms - RequestID: zo8n7m0we59 +2025-06-18T14:26:28.781Z [DEBUG] order-service - Auth event: password_change - User: user_1017 - IP: 192.168.232.72 - RequestID: pcbd8xb0lts +2025-06-18T14:26:28.881Z [TRACE] notification-service - PUT /api/v1/payments - Status: 201 - Response time: 1631ms - IP: 192.168.242.165 - User: user_1010 - RequestID: 190hfuxu14p +2025-06-18T14:26:28.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 981ms - RequestID: bc7chm7r90c +2025-06-18T14:26:29.081Z [TRACE] payment-service - POST /api/v1/payments - Status: 200 - Response time: 1441ms - IP: 192.168.141.100 - User: user_1063 - RequestID: e8whu3c72ls +2025-06-18T14:26:29.181Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1772ms - IP: 192.168.187.199 - User: user_1075 - RequestID: 4v8kbhj0xzg +2025-06-18T14:26:29.281Z [INFO] notification-service - PUT /api/v1/inventory - Status: 502 - Response time: 1662ms - IP: 192.168.11.60 - User: user_1076 - RequestID: 4u3cnky1erc +2025-06-18T14:26:29.381Z [TRACE] payment-service - POST /api/v1/users - Status: 400 - Response time: 132ms - IP: 192.168.33.76 - User: user_1068 - RequestID: 1lkponkl5f8 +2025-06-18T14:26:29.481Z [INFO] notification-service - Database UPDATE on users - Execution time: 430ms - Rows affected: 98 - RequestID: pd75ogaklgr +2025-06-18T14:26:29.581Z [INFO] notification-service - Auth event: login_success - User: user_1035 - IP: 192.168.229.123 - RequestID: 1m617dm66uz +2025-06-18T14:26:29.681Z [INFO] notification-service - Operation: notification_queued - Processing time: 52ms - RequestID: i5dzqeummyd +2025-06-18T14:26:29.781Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 152ms - RequestID: b3ld8ckyw7g +2025-06-18T14:26:29.881Z [TRACE] inventory-service - Auth event: password_change - User: user_1088 - IP: 192.168.194.41 - RequestID: tbilg8a766 +2025-06-18T14:26:29.981Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 404 - Response time: 724ms - IP: 192.168.1.152 - User: user_1009 - RequestID: dqw5e15j1eu +2025-06-18T14:26:30.081Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 503 - Response time: 414ms - IP: 192.168.174.114 - User: user_1055 - RequestID: 5m4henkklfo +2025-06-18T14:26:30.181Z [INFO] notification-service - Operation: payment_processed - Processing time: 578ms - RequestID: j5fidcbca4n +2025-06-18T14:26:30.281Z [TRACE] auth-service - Auth event: logout - User: user_1099 - IP: 192.168.227.77 - RequestID: 2s49bwoluav +2025-06-18T14:26:30.381Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1973ms - IP: 192.168.174.114 - User: user_1025 - RequestID: a199snhklsp +2025-06-18T14:26:30.481Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 122ms - RequestID: nlutweepl1o +2025-06-18T14:26:30.581Z [TRACE] notification-service - Auth event: login_failed - User: user_1076 - IP: 192.168.159.94 - RequestID: i06yzp2qdu9 +2025-06-18T14:26:30.681Z [DEBUG] auth-service - GET /api/v1/users - Status: 400 - Response time: 242ms - IP: 192.168.68.128 - User: user_1085 - RequestID: dmlld5lgw3a +2025-06-18T14:26:30.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1048 - IP: 192.168.46.63 - RequestID: z05segp0bj +2025-06-18T14:26:30.881Z [INFO] notification-service - Operation: order_created - Processing time: 961ms - RequestID: pyx20r68j4h +2025-06-18T14:26:30.981Z [INFO] auth-service - Database SELECT on users - Execution time: 361ms - Rows affected: 1 - RequestID: livyg5zxyi +2025-06-18T14:26:31.081Z [TRACE] payment-service - POST /api/v1/inventory - Status: 400 - Response time: 683ms - IP: 192.168.167.32 - User: user_1018 - RequestID: sak2x5mv9k8 +2025-06-18T14:26:31.181Z [INFO] auth-service - Operation: order_created - Processing time: 470ms - RequestID: cy5kgd3jier +2025-06-18T14:26:31.281Z [INFO] order-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1697ms - IP: 192.168.235.117 - User: user_1096 - RequestID: 2vcoes6ad1k +2025-06-18T14:26:31.381Z [INFO] payment-service - Operation: notification_queued - Processing time: 289ms - RequestID: j2xyii9v3bo +2025-06-18T14:26:31.481Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 1015ms - RequestID: fwg535ctnw +2025-06-18T14:26:31.581Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 413ms - Rows affected: 90 - RequestID: 4h7wxzfpxwf +2025-06-18T14:26:31.681Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 503 - Response time: 655ms - IP: 192.168.36.218 - User: user_1072 - RequestID: rhsw26f244 +2025-06-18T14:26:31.781Z [INFO] user-service - Operation: inventory_updated - Processing time: 1021ms - RequestID: 0y21lt9h0exc +2025-06-18T14:26:31.881Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 486ms - Rows affected: 80 - RequestID: gg61gikzrtk +2025-06-18T14:26:31.981Z [INFO] user-service - Database DELETE on users - Execution time: 395ms - Rows affected: 69 - RequestID: ccle5o7pjvk +2025-06-18T14:26:32.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.235.117 - RequestID: jy9voxh6eff +2025-06-18T14:26:32.181Z [INFO] user-service - GET /api/v1/inventory - Status: 404 - Response time: 248ms - IP: 192.168.227.77 - User: user_1046 - RequestID: iesal1lu0w9 +2025-06-18T14:26:32.281Z [INFO] user-service - PUT /api/v1/orders - Status: 200 - Response time: 1172ms - IP: 192.168.53.133 - User: user_1090 - RequestID: aizra9134bk +2025-06-18T14:26:32.381Z [INFO] payment-service - GET /api/v1/inventory - Status: 400 - Response time: 1033ms - IP: 192.168.28.146 - User: user_1058 - RequestID: mcmxi23wohr +2025-06-18T14:26:32.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 178ms - RequestID: yq5u7a7tqsa +2025-06-18T14:26:32.581Z [INFO] user-service - Operation: inventory_updated - Processing time: 88ms - RequestID: ah8npbruz8 +2025-06-18T14:26:32.681Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 80ms - Rows affected: 10 - RequestID: 9b0tz8j67t4 +2025-06-18T14:26:32.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.174.114 - RequestID: 1ra8xgz150b +2025-06-18T14:26:32.881Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 500 - Response time: 1713ms - IP: 192.168.81.206 - User: user_1043 - RequestID: xof0xnaiaz +2025-06-18T14:26:32.981Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 111ms - Rows affected: 78 - RequestID: cyppjwkg62u +2025-06-18T14:26:33.081Z [DEBUG] notification-service - GET /api/v1/payments - Status: 403 - Response time: 2008ms - IP: 192.168.32.38 - User: user_1044 - RequestID: i2yip4tzito +2025-06-18T14:26:33.181Z [INFO] inventory-service - Operation: payment_processed - Processing time: 610ms - RequestID: 3nli9ljdmxw +2025-06-18T14:26:33.281Z [TRACE] user-service - Operation: cache_hit - Processing time: 746ms - RequestID: 3otkvg0ijp7 +2025-06-18T14:26:33.381Z [TRACE] notification-service - Operation: cache_miss - Processing time: 188ms - RequestID: gzwvxou10ca +2025-06-18T14:26:33.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.189.103 - RequestID: gtsxvs55nxs +2025-06-18T14:26:33.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.196.226 - RequestID: df654eaem98 +2025-06-18T14:26:33.681Z [DEBUG] auth-service - Operation: email_sent - Processing time: 530ms - RequestID: q11oxo3gnnd +2025-06-18T14:26:33.781Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 96ms - RequestID: lo6hq8pik2n +2025-06-18T14:26:33.881Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 34ms - Rows affected: 16 - RequestID: fo9aputduh +2025-06-18T14:26:33.981Z [INFO] user-service - DELETE /api/v1/inventory - Status: 403 - Response time: 893ms - IP: 192.168.147.171 - User: user_1014 - RequestID: 0pvkhebgyu9 +2025-06-18T14:26:34.081Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 224ms - Rows affected: 76 - RequestID: epamntf6nq8 +2025-06-18T14:26:34.181Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 183ms - Rows affected: 24 - RequestID: ebe83u83a2 +2025-06-18T14:26:34.281Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1103ms - IP: 192.168.97.87 - User: user_1040 - RequestID: 4ijfpeai7gb +2025-06-18T14:26:34.381Z [INFO] auth-service - Operation: webhook_sent - Processing time: 494ms - RequestID: 92gc05mzcz +2025-06-18T14:26:34.481Z [DEBUG] user-service - Database SELECT on users - Execution time: 41ms - Rows affected: 57 - RequestID: o9c2fqefcpf +2025-06-18T14:26:34.581Z [TRACE] notification-service - Auth event: password_change - User: user_1045 - IP: 192.168.189.103 - RequestID: 5kn84i8ap3e +2025-06-18T14:26:34.681Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 397ms - RequestID: c11pgf06yvv +2025-06-18T14:26:34.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.53.133 - RequestID: zdme5gkqoik +2025-06-18T14:26:34.881Z [DEBUG] order-service - GET /api/v1/orders - Status: 502 - Response time: 568ms - IP: 192.168.32.38 - User: user_1082 - RequestID: 7nthjyfxs45 +2025-06-18T14:26:34.981Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 356ms - Rows affected: 13 - RequestID: rc8m337lpd +2025-06-18T14:26:35.081Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1999ms - IP: 192.168.100.240 - User: user_1070 - RequestID: 4lxgxerp4c +2025-06-18T14:26:35.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.232.72 - RequestID: n9jmzfj56i +2025-06-18T14:26:35.281Z [INFO] user-service - Auth event: logout - User: user_1079 - IP: 192.168.28.146 - RequestID: djtzohqezti +2025-06-18T14:26:35.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.31.117 - RequestID: b4c928oipus +2025-06-18T14:26:35.481Z [TRACE] payment-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.247.134 - RequestID: u3i5hhkiv9s +2025-06-18T14:26:35.581Z [INFO] inventory-service - POST /api/v1/payments - Status: 502 - Response time: 1805ms - IP: 192.168.31.117 - User: user_1067 - RequestID: ot3kvwz5ihm +2025-06-18T14:26:35.681Z [INFO] auth-service - Operation: inventory_updated - Processing time: 694ms - RequestID: xck9ade3e5b +2025-06-18T14:26:35.781Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 400 - Response time: 712ms - IP: 192.168.227.77 - User: user_1064 - RequestID: glpf97sfwpt +2025-06-18T14:26:35.881Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 400 - Response time: 1563ms - IP: 192.168.11.60 - User: user_1073 - RequestID: 4iztku4eriu +2025-06-18T14:26:35.981Z [TRACE] user-service - Auth event: logout - User: user_1087 - IP: 192.168.81.206 - RequestID: sz4jf3vt7cj +2025-06-18T14:26:36.081Z [DEBUG] order-service - Auth event: password_change - User: user_1049 - IP: 192.168.174.114 - RequestID: bwsfiupzivc +2025-06-18T14:26:36.181Z [INFO] auth-service - Operation: notification_queued - Processing time: 884ms - RequestID: 74vubhj6lrc +2025-06-18T14:26:36.281Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 764ms - RequestID: i7uvyxzx83 +2025-06-18T14:26:36.381Z [TRACE] user-service - POST /api/v1/payments - Status: 200 - Response time: 772ms - IP: 192.168.247.134 - User: user_1086 - RequestID: 55t6d96vm3t +2025-06-18T14:26:36.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 211ms - RequestID: 5sz9tvjuhp4 +2025-06-18T14:26:36.581Z [INFO] auth-service - DELETE /api/v1/users - Status: 502 - Response time: 1729ms - IP: 192.168.79.143 - User: user_1089 - RequestID: ly8uo5ffbko +2025-06-18T14:26:36.681Z [DEBUG] notification-service - Database INSERT on products - Execution time: 98ms - Rows affected: 77 - RequestID: l42fe6sujh +2025-06-18T14:26:36.781Z [TRACE] auth-service - Operation: cache_hit - Processing time: 651ms - RequestID: 6oplm9pqxco +2025-06-18T14:26:36.881Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1349ms - IP: 192.168.181.225 - User: user_1039 - RequestID: l9zg0kd0t3 +2025-06-18T14:26:36.981Z [TRACE] order-service - Operation: cache_hit - Processing time: 768ms - RequestID: mihin86dq5 +2025-06-18T14:26:37.081Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 400 - Response time: 443ms - IP: 192.168.64.33 - User: user_1041 - RequestID: gjd4xsdh4u +2025-06-18T14:26:37.181Z [INFO] user-service - Operation: notification_queued - Processing time: 1012ms - RequestID: xqj7wtg247l +2025-06-18T14:26:37.281Z [INFO] notification-service - Database INSERT on sessions - Execution time: 184ms - Rows affected: 28 - RequestID: ij3adwqc3ck +2025-06-18T14:26:37.381Z [TRACE] auth-service - PUT /api/v1/payments - Status: 401 - Response time: 1279ms - IP: 192.168.14.77 - User: user_1088 - RequestID: u10lygg9g3 +2025-06-18T14:26:37.481Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 186ms - Rows affected: 16 - RequestID: rqgv2n3gg8l +2025-06-18T14:26:37.581Z [TRACE] order-service - GET /api/v1/users - Status: 503 - Response time: 1078ms - IP: 192.168.138.123 - User: user_1007 - RequestID: 68dtom0h2e2 +2025-06-18T14:26:37.681Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 12ms - Rows affected: 25 - RequestID: w65k7gfars +2025-06-18T14:26:37.781Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1664ms - IP: 192.168.11.60 - User: user_1071 - RequestID: 7csocr9l4r +2025-06-18T14:26:37.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1094 - IP: 192.168.33.76 - RequestID: ncpaj1k43x +2025-06-18T14:26:37.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.14.77 - RequestID: h2qdtjjwni7 +2025-06-18T14:26:38.081Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 282ms - Rows affected: 12 - RequestID: lk9k54n9td +2025-06-18T14:26:38.181Z [DEBUG] user-service - Database DELETE on users - Execution time: 286ms - Rows affected: 36 - RequestID: flgnr244dp +2025-06-18T14:26:38.281Z [DEBUG] user-service - Operation: order_created - Processing time: 141ms - RequestID: 5utyv2rkr8g +2025-06-18T14:26:38.381Z [TRACE] auth-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.187.199 - RequestID: 4etc1n4vvio +2025-06-18T14:26:38.481Z [TRACE] user-service - Database SELECT on products - Execution time: 429ms - Rows affected: 45 - RequestID: dzzgnh3vrre +2025-06-18T14:26:38.581Z [INFO] user-service - POST /api/v1/orders - Status: 401 - Response time: 1212ms - IP: 192.168.147.171 - User: user_1026 - RequestID: 0wmihr2gqau +2025-06-18T14:26:38.681Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 404 - Response time: 288ms - IP: 192.168.1.152 - User: user_1057 - RequestID: k7yooqwlk5q +2025-06-18T14:26:38.781Z [TRACE] notification-service - Auth event: password_change - User: user_1092 - IP: 192.168.189.103 - RequestID: nl5sdwpkdl +2025-06-18T14:26:38.881Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 313ms - Rows affected: 19 - RequestID: lr0ok6faqr +2025-06-18T14:26:38.981Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1801ms - IP: 192.168.68.128 - User: user_1050 - RequestID: zv0tny2jl5e +2025-06-18T14:26:39.081Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 74ms - RequestID: kuldr4dl21l +2025-06-18T14:26:39.181Z [INFO] payment-service - Operation: notification_queued - Processing time: 575ms - RequestID: sfhxsmkznro +2025-06-18T14:26:39.281Z [DEBUG] user-service - Auth event: login_failed - User: user_1079 - IP: 192.168.170.215 - RequestID: gq2fbct5zna +2025-06-18T14:26:39.381Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 345ms - Rows affected: 59 - RequestID: polelm63swr +2025-06-18T14:26:39.481Z [INFO] order-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.68.128 - RequestID: xzpyswzpsam +2025-06-18T14:26:39.581Z [INFO] payment-service - Operation: inventory_updated - Processing time: 195ms - RequestID: y5mgqbhftn +2025-06-18T14:26:39.681Z [INFO] notification-service - PUT /api/v1/users - Status: 500 - Response time: 1589ms - IP: 192.168.44.5 - User: user_1086 - RequestID: km92mxjcqfo +2025-06-18T14:26:39.781Z [DEBUG] user-service - Operation: order_created - Processing time: 961ms - RequestID: hlk15o843e +2025-06-18T14:26:39.881Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1889ms - IP: 192.168.211.72 - User: user_1099 - RequestID: 0oobgx55kiig +2025-06-18T14:26:39.981Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 418ms - Rows affected: 63 - RequestID: 2wss8b1bewv +2025-06-18T14:26:40.081Z [INFO] order-service - Operation: payment_processed - Processing time: 289ms - RequestID: h9ujx0rb51c +2025-06-18T14:26:40.181Z [INFO] user-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.68.128 - RequestID: 1vhh3wqxzvs +2025-06-18T14:26:40.281Z [DEBUG] payment-service - PUT /api/v1/users - Status: 502 - Response time: 990ms - IP: 192.168.31.117 - User: user_1017 - RequestID: up0k1xqoa1o +2025-06-18T14:26:40.381Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 200 - Response time: 1417ms - IP: 192.168.113.218 - User: user_1031 - RequestID: 0n3gyoc98xi +2025-06-18T14:26:40.481Z [TRACE] order-service - GET /api/v1/orders - Status: 404 - Response time: 151ms - IP: 192.168.81.206 - User: user_1034 - RequestID: zp76s0qkn9n +2025-06-18T14:26:40.581Z [INFO] auth-service - Database DELETE on products - Execution time: 374ms - Rows affected: 71 - RequestID: jqzbd9rp58s +2025-06-18T14:26:40.681Z [TRACE] user-service - Database UPDATE on orders - Execution time: 361ms - Rows affected: 84 - RequestID: gef8zmcx5g +2025-06-18T14:26:40.781Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 926ms - RequestID: u51air0sgv +2025-06-18T14:26:40.881Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 401 - Response time: 1206ms - IP: 192.168.46.63 - User: user_1096 - RequestID: 4y0kv8fc15p +2025-06-18T14:26:40.981Z [INFO] notification-service - Operation: inventory_updated - Processing time: 888ms - RequestID: zh840rxj6wq +2025-06-18T14:26:41.081Z [TRACE] auth-service - Operation: email_sent - Processing time: 429ms - RequestID: sigk10scmxg +2025-06-18T14:26:41.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 237ms - RequestID: 586vk5mrnul +2025-06-18T14:26:41.281Z [DEBUG] user-service - PUT /api/v1/payments - Status: 401 - Response time: 1260ms - IP: 192.168.147.171 - User: user_1081 - RequestID: wjnuc0e2vv +2025-06-18T14:26:41.381Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 172ms - IP: 192.168.85.229 - User: user_1023 - RequestID: hfn3e1omkav +2025-06-18T14:26:41.481Z [INFO] order-service - Operation: webhook_sent - Processing time: 112ms - RequestID: fa6xfcdekf +2025-06-18T14:26:41.581Z [TRACE] auth-service - Database INSERT on payments - Execution time: 2ms - Rows affected: 54 - RequestID: 7vgyb935rbm +2025-06-18T14:26:41.681Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 77ms - Rows affected: 4 - RequestID: udjqgh83mq +2025-06-18T14:26:41.781Z [TRACE] notification-service - GET /api/v1/inventory - Status: 500 - Response time: 1280ms - IP: 192.168.53.133 - User: user_1059 - RequestID: 7r4cfvk4h1y +2025-06-18T14:26:41.881Z [TRACE] inventory-service - Database DELETE on users - Execution time: 400ms - Rows affected: 44 - RequestID: but5a8fx0tk +2025-06-18T14:26:41.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 572ms - RequestID: we5lxzgs9y +2025-06-18T14:26:42.081Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 180ms - Rows affected: 12 - RequestID: pne6s11ecf +2025-06-18T14:26:42.181Z [TRACE] user-service - Auth event: logout - User: user_1049 - IP: 192.168.227.233 - RequestID: haxw4fmyy8t +2025-06-18T14:26:42.281Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 311ms - Rows affected: 51 - RequestID: datpjph7oo +2025-06-18T14:26:42.381Z [TRACE] order-service - Auth event: password_change - User: user_1068 - IP: 192.168.170.215 - RequestID: lg1bvdb7aja +2025-06-18T14:26:42.481Z [INFO] payment-service - Auth event: login_success - User: user_1099 - IP: 192.168.227.233 - RequestID: nhcg0go1vnm +2025-06-18T14:26:42.581Z [DEBUG] order-service - Operation: payment_processed - Processing time: 560ms - RequestID: svwswnaxd4d +2025-06-18T14:26:42.681Z [INFO] user-service - Auth event: login_success - User: user_1064 - IP: 192.168.211.72 - RequestID: 0d17ci47wezo +2025-06-18T14:26:42.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1007 - IP: 192.168.174.114 - RequestID: 9b7h4zi3h4g +2025-06-18T14:26:42.881Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 23ms - Rows affected: 29 - RequestID: c2ffl9qpc3e +2025-06-18T14:26:42.981Z [TRACE] order-service - PATCH /api/v1/users - Status: 400 - Response time: 487ms - IP: 192.168.159.94 - User: user_1076 - RequestID: 2ywwz722en9 +2025-06-18T14:26:43.081Z [INFO] order-service - DELETE /api/v1/inventory - Status: 403 - Response time: 359ms - IP: 192.168.170.215 - User: user_1098 - RequestID: 38o7c0kvex9 +2025-06-18T14:26:43.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 91ms - RequestID: intt5r0ig4c +2025-06-18T14:26:43.281Z [TRACE] inventory-service - Auth event: password_change - User: user_1074 - IP: 192.168.133.7 - RequestID: l613e3a4wob +2025-06-18T14:26:43.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 232ms - RequestID: jo14pbgatm +2025-06-18T14:26:43.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 390ms - RequestID: qwvy1wzfwt +2025-06-18T14:26:43.581Z [TRACE] notification-service - Auth event: login_failed - User: user_1029 - IP: 192.168.229.123 - RequestID: ou14cnvtza +2025-06-18T14:26:43.681Z [INFO] inventory-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.158.144 - RequestID: w2erfzm30jd +2025-06-18T14:26:43.781Z [DEBUG] order-service - Auth event: logout - User: user_1053 - IP: 192.168.100.240 - RequestID: eu052j8ssjm +2025-06-18T14:26:43.881Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 201 - Response time: 621ms - IP: 192.168.36.218 - User: user_1053 - RequestID: ktcdod1tk3 +2025-06-18T14:26:43.981Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 117ms - RequestID: hlar5631vam +2025-06-18T14:26:44.081Z [TRACE] user-service - Operation: notification_queued - Processing time: 771ms - RequestID: i83wo9f23ps +2025-06-18T14:26:44.181Z [TRACE] user-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.28.146 - RequestID: 9w55wfwrzd5 +2025-06-18T14:26:44.281Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 422ms - RequestID: gav8v0tqbka +2025-06-18T14:26:44.381Z [INFO] order-service - Operation: notification_queued - Processing time: 954ms - RequestID: tnbyk74sueg +2025-06-18T14:26:44.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.158.144 - RequestID: 0vbphdy4xun +2025-06-18T14:26:44.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.174.114 - RequestID: expoejw4ykc +2025-06-18T14:26:44.681Z [INFO] order-service - POST /api/v1/payments - Status: 400 - Response time: 606ms - IP: 192.168.32.38 - User: user_1053 - RequestID: csozzq5tdtu +2025-06-18T14:26:44.781Z [INFO] payment-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.53.133 - RequestID: jzqyekm2pze +2025-06-18T14:26:44.881Z [INFO] auth-service - Database UPDATE on users - Execution time: 115ms - Rows affected: 11 - RequestID: 18cv4i3y375 +2025-06-18T14:26:44.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 811ms - RequestID: wcf6v9x61te +2025-06-18T14:26:45.081Z [INFO] payment-service - POST /api/v1/users - Status: 400 - Response time: 363ms - IP: 192.168.64.33 - User: user_1002 - RequestID: vhn0zkx4ken +2025-06-18T14:26:45.181Z [INFO] order-service - DELETE /api/v1/payments - Status: 400 - Response time: 1498ms - IP: 192.168.11.60 - User: user_1063 - RequestID: 124t2jp4o08 +2025-06-18T14:26:45.281Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 200 - Response time: 224ms - IP: 192.168.100.240 - User: user_1017 - RequestID: shx7aylwi7n +2025-06-18T14:26:45.381Z [INFO] user-service - Auth event: logout - User: user_1061 - IP: 192.168.147.171 - RequestID: 49nwu57zj7q +2025-06-18T14:26:45.481Z [TRACE] inventory-service - Auth event: password_change - User: user_1085 - IP: 192.168.170.215 - RequestID: j2fq60g901n +2025-06-18T14:26:45.581Z [DEBUG] user-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.227.233 - RequestID: wtzci3yhig8 +2025-06-18T14:26:45.681Z [INFO] notification-service - Operation: email_sent - Processing time: 1007ms - RequestID: 8qs33a88g5d +2025-06-18T14:26:45.781Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 503 - Response time: 473ms - IP: 192.168.46.63 - User: user_1015 - RequestID: jiula35efle +2025-06-18T14:26:45.881Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 684ms - RequestID: zxwqpgvmmx8 +2025-06-18T14:26:45.981Z [INFO] payment-service - Operation: email_sent - Processing time: 747ms - RequestID: ekhl2kbrruk +2025-06-18T14:26:46.081Z [INFO] notification-service - PUT /api/v1/inventory - Status: 403 - Response time: 59ms - IP: 192.168.30.79 - User: user_1037 - RequestID: ija412csa4 +2025-06-18T14:26:46.181Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 935ms - RequestID: 1bu75unwnq7 +2025-06-18T14:26:46.281Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 292ms - Rows affected: 3 - RequestID: j18ef6vgll +2025-06-18T14:26:46.381Z [DEBUG] order-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.68.158 - RequestID: m4knalnamy +2025-06-18T14:26:46.481Z [INFO] auth-service - Auth event: password_change - User: user_1085 - IP: 192.168.247.134 - RequestID: 0783gflehsi5 +2025-06-18T14:26:46.581Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 371ms - Rows affected: 97 - RequestID: heg7zddpv4a +2025-06-18T14:26:46.681Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1322ms - IP: 192.168.138.123 - User: user_1065 - RequestID: x2gvs32f3r +2025-06-18T14:26:46.781Z [INFO] user-service - POST /api/v1/payments - Status: 502 - Response time: 1190ms - IP: 192.168.196.226 - User: user_1055 - RequestID: c6g65nfo69 +2025-06-18T14:26:46.881Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 335ms - Rows affected: 10 - RequestID: jy80pvkbnvg +2025-06-18T14:26:46.981Z [TRACE] order-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.147.171 - RequestID: x7erom3ubw9 +2025-06-18T14:26:47.081Z [DEBUG] user-service - Database DELETE on payments - Execution time: 372ms - Rows affected: 25 - RequestID: nsup144abxf +2025-06-18T14:26:47.181Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 500 - Response time: 543ms - IP: 192.168.68.158 - User: user_1004 - RequestID: b0ykg5jx2bt +2025-06-18T14:26:47.281Z [INFO] notification-service - Auth event: logout - User: user_1044 - IP: 192.168.174.114 - RequestID: f2y5ymutzfh +2025-06-18T14:26:47.381Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 1002ms - RequestID: rf6ji8fyv7o +2025-06-18T14:26:47.481Z [TRACE] notification-service - Database DELETE on products - Execution time: 455ms - Rows affected: 4 - RequestID: 8c9qjphq8h2 +2025-06-18T14:26:47.581Z [DEBUG] user-service - Operation: order_created - Processing time: 54ms - RequestID: e3k77wbc7w +2025-06-18T14:26:47.681Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 1034ms - RequestID: 1h0yvp8vu7e +2025-06-18T14:26:47.781Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.181.225 - RequestID: 1gw38i7affe +2025-06-18T14:26:47.881Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1333ms - IP: 192.168.13.72 - User: user_1064 - RequestID: k2jd97j97e +2025-06-18T14:26:47.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 603ms - RequestID: afr7vdh5nwl +2025-06-18T14:26:48.081Z [DEBUG] notification-service - Operation: email_sent - Processing time: 448ms - RequestID: 50jhg53nck9 +2025-06-18T14:26:48.181Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 40ms - Rows affected: 67 - RequestID: fvthve9kfi +2025-06-18T14:26:48.281Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 286ms - RequestID: aou0phn188j +2025-06-18T14:26:48.381Z [INFO] notification-service - PATCH /api/v1/orders - Status: 201 - Response time: 1825ms - IP: 192.168.30.79 - User: user_1007 - RequestID: zyjdvuu88te +2025-06-18T14:26:48.481Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 435ms - RequestID: 7gj0xoguf9w +2025-06-18T14:26:48.581Z [INFO] payment-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.147.171 - RequestID: bfawm726f +2025-06-18T14:26:48.681Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 293ms - Rows affected: 69 - RequestID: h5b5glz0nkj +2025-06-18T14:26:48.781Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 318ms - RequestID: 7j5g5cytw6p +2025-06-18T14:26:48.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 640ms - RequestID: v0tltg3pv4 +2025-06-18T14:26:48.981Z [INFO] inventory-service - Auth event: password_change - User: user_1037 - IP: 192.168.240.169 - RequestID: rmelfgahqvj +2025-06-18T14:26:49.081Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 930ms - RequestID: 50i0o35zed4 +2025-06-18T14:26:49.181Z [TRACE] auth-service - Database DELETE on products - Execution time: 298ms - Rows affected: 32 - RequestID: fp57mif6lil +2025-06-18T14:26:49.281Z [INFO] user-service - Operation: order_created - Processing time: 614ms - RequestID: cjil0pnn556 +2025-06-18T14:26:49.381Z [DEBUG] order-service - Auth event: login_failed - User: user_1053 - IP: 192.168.158.144 - RequestID: x0xmha3qkf +2025-06-18T14:26:49.481Z [INFO] auth-service - Database DELETE on orders - Execution time: 206ms - Rows affected: 67 - RequestID: ybu1dsq85qd +2025-06-18T14:26:49.581Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1659ms - IP: 192.168.64.33 - User: user_1094 - RequestID: sbcrbg3svh +2025-06-18T14:26:49.681Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 471ms - Rows affected: 6 - RequestID: 3kbvughsfz9 +2025-06-18T14:26:49.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.32.38 - RequestID: flhhwk9klv4 +2025-06-18T14:26:49.881Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 340ms - RequestID: i3cp6d3ossc +2025-06-18T14:26:49.981Z [INFO] order-service - Database UPDATE on products - Execution time: 85ms - Rows affected: 18 - RequestID: 2vvkrj13ij1 +2025-06-18T14:26:50.081Z [INFO] order-service - Database DELETE on sessions - Execution time: 36ms - Rows affected: 16 - RequestID: ykw6qxie9t +2025-06-18T14:26:50.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 488ms - RequestID: 7k9gt7jja5d +2025-06-18T14:26:50.281Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 272ms - Rows affected: 18 - RequestID: 0ch1daf7r7fl +2025-06-18T14:26:50.381Z [INFO] notification-service - Database DELETE on sessions - Execution time: 233ms - Rows affected: 92 - RequestID: hbfutalalt +2025-06-18T14:26:50.481Z [INFO] payment-service - Database UPDATE on payments - Execution time: 87ms - Rows affected: 9 - RequestID: bbrf2tvfu4w +2025-06-18T14:26:50.581Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 200 - Response time: 778ms - IP: 192.168.133.7 - User: user_1023 - RequestID: ptnmjqd4zu +2025-06-18T14:26:50.681Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 503 - Response time: 1608ms - IP: 192.168.235.117 - User: user_1033 - RequestID: rpb552igxrs +2025-06-18T14:26:50.781Z [INFO] user-service - Database SELECT on payments - Execution time: 147ms - Rows affected: 67 - RequestID: eg4cwadged +2025-06-18T14:26:50.881Z [INFO] inventory-service - Auth event: login_success - User: user_1004 - IP: 192.168.189.103 - RequestID: 4e943oe6tqu +2025-06-18T14:26:50.981Z [INFO] user-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.85.229 - RequestID: e4sqs7j73b +2025-06-18T14:26:51.081Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 115ms - Rows affected: 97 - RequestID: 9ugom3dh62p +2025-06-18T14:26:51.181Z [TRACE] user-service - Operation: cache_miss - Processing time: 63ms - RequestID: g5wxsfvglh +2025-06-18T14:26:51.281Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 400 - Response time: 1085ms - IP: 192.168.174.114 - User: user_1037 - RequestID: wg93n97uzg +2025-06-18T14:26:51.381Z [TRACE] user-service - Database INSERT on payments - Execution time: 143ms - Rows affected: 85 - RequestID: bijl3m49zy9 +2025-06-18T14:26:51.481Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 641ms - RequestID: 0fast99gphdq +2025-06-18T14:26:51.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 485ms - RequestID: 4r0dbj843ma +2025-06-18T14:26:51.681Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 401 - Response time: 1952ms - IP: 192.168.79.116 - User: user_1087 - RequestID: iyly182cofg +2025-06-18T14:26:51.781Z [INFO] payment-service - Database SELECT on users - Execution time: 310ms - Rows affected: 62 - RequestID: 7mxe4dnvbzf +2025-06-18T14:26:51.881Z [DEBUG] order-service - Operation: cache_hit - Processing time: 245ms - RequestID: oeaprwce9nn +2025-06-18T14:26:51.981Z [DEBUG] user-service - Database SELECT on orders - Execution time: 48ms - Rows affected: 13 - RequestID: ixzor4y03b +2025-06-18T14:26:52.081Z [TRACE] notification-service - Database INSERT on orders - Execution time: 322ms - Rows affected: 0 - RequestID: 28p1d3t3nuk +2025-06-18T14:26:52.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1023 - IP: 192.168.79.116 - RequestID: xuvqmi692va +2025-06-18T14:26:52.281Z [INFO] payment-service - GET /api/v1/auth/login - Status: 201 - Response time: 1808ms - IP: 192.168.141.100 - User: user_1008 - RequestID: adj88nmiuzo +2025-06-18T14:26:52.381Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 218ms - Rows affected: 54 - RequestID: gch37cnhre9 +2025-06-18T14:26:52.481Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 307ms - Rows affected: 89 - RequestID: jv2v6cpmjtg +2025-06-18T14:26:52.581Z [TRACE] order-service - Database SELECT on sessions - Execution time: 45ms - Rows affected: 72 - RequestID: 36a44aeivit +2025-06-18T14:26:52.681Z [DEBUG] order-service - Auth event: login_success - User: user_1073 - IP: 192.168.211.72 - RequestID: h7atwjzvd2 +2025-06-18T14:26:52.781Z [INFO] notification-service - POST /api/v1/auth/login - Status: 201 - Response time: 173ms - IP: 192.168.36.218 - User: user_1016 - RequestID: t499d6es9ei +2025-06-18T14:26:52.881Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 425ms - Rows affected: 5 - RequestID: njkie5w28nr +2025-06-18T14:26:52.981Z [INFO] order-service - POST /api/v1/users - Status: 500 - Response time: 1021ms - IP: 192.168.189.103 - User: user_1025 - RequestID: d7lw683b3tb +2025-06-18T14:26:53.081Z [TRACE] notification-service - Auth event: logout - User: user_1081 - IP: 192.168.104.37 - RequestID: 8uuqbml8h5q +2025-06-18T14:26:53.181Z [INFO] payment-service - Operation: notification_queued - Processing time: 278ms - RequestID: ggm5pt1zzvd +2025-06-18T14:26:53.281Z [TRACE] auth-service - Auth event: password_change - User: user_1000 - IP: 192.168.181.225 - RequestID: quyhx6dup9t +2025-06-18T14:26:53.381Z [INFO] payment-service - PUT /api/v1/users - Status: 500 - Response time: 433ms - IP: 192.168.85.229 - User: user_1036 - RequestID: cyrzyak9il +2025-06-18T14:26:53.481Z [TRACE] user-service - Database DELETE on orders - Execution time: 4ms - Rows affected: 41 - RequestID: ubld9ec5u3 +2025-06-18T14:26:53.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.32.38 - RequestID: ts4pvn693fn +2025-06-18T14:26:53.681Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 144ms - Rows affected: 62 - RequestID: s7t149xeib +2025-06-18T14:26:53.781Z [TRACE] inventory-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1747ms - IP: 192.168.32.38 - User: user_1076 - RequestID: nxrckutr7zm +2025-06-18T14:26:53.881Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1367ms - IP: 192.168.85.229 - User: user_1034 - RequestID: ilzst7pmfa +2025-06-18T14:26:53.981Z [TRACE] inventory-service - Auth event: password_change - User: user_1093 - IP: 192.168.10.184 - RequestID: nsl7239q52m +2025-06-18T14:26:54.081Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1865ms - IP: 192.168.97.87 - User: user_1097 - RequestID: 6mgh5q82bf2 +2025-06-18T14:26:54.181Z [INFO] payment-service - Database SELECT on orders - Execution time: 86ms - Rows affected: 29 - RequestID: v8u8xvsgnam +2025-06-18T14:26:54.281Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 500 - Response time: 396ms - IP: 192.168.36.218 - User: user_1094 - RequestID: sh5g46rroam +2025-06-18T14:26:54.381Z [TRACE] notification-service - POST /api/v1/orders - Status: 403 - Response time: 613ms - IP: 192.168.235.117 - User: user_1075 - RequestID: j818w3pxacq +2025-06-18T14:26:54.481Z [INFO] order-service - Auth event: logout - User: user_1033 - IP: 192.168.68.158 - RequestID: s021pnmh0hh +2025-06-18T14:26:54.581Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 75ms - IP: 192.168.189.103 - User: user_1065 - RequestID: te3cj4n59 +2025-06-18T14:26:54.681Z [DEBUG] user-service - Operation: payment_processed - Processing time: 981ms - RequestID: 1llkzp0pruh +2025-06-18T14:26:54.781Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 400 - Response time: 1356ms - IP: 192.168.28.146 - User: user_1029 - RequestID: nxqhk3vhlu +2025-06-18T14:26:54.881Z [INFO] order-service - Database INSERT on orders - Execution time: 318ms - Rows affected: 77 - RequestID: bsqh0sdgels +2025-06-18T14:26:54.981Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 502 - Response time: 370ms - IP: 192.168.170.215 - User: user_1049 - RequestID: xqcw8de6aab +2025-06-18T14:26:55.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.170.215 - RequestID: kus8ufmcgj +2025-06-18T14:26:55.181Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 283ms - RequestID: v3v049fj09c +2025-06-18T14:26:55.281Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 158ms - Rows affected: 71 - RequestID: slo0mog7oc +2025-06-18T14:26:55.381Z [DEBUG] payment-service - POST /api/v1/payments - Status: 401 - Response time: 1191ms - IP: 192.168.13.72 - User: user_1002 - RequestID: dl0wjfdjkz9 +2025-06-18T14:26:55.481Z [TRACE] user-service - Auth event: login_failed - User: user_1093 - IP: 192.168.158.144 - RequestID: h8syfae4rcl +2025-06-18T14:26:55.581Z [INFO] order-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.14.77 - RequestID: 48gnrwm1vde +2025-06-18T14:26:55.681Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 653ms - RequestID: itjzit6lzme +2025-06-18T14:26:55.781Z [TRACE] auth-service - Database DELETE on products - Execution time: 405ms - Rows affected: 9 - RequestID: ivd3ca7ewmk +2025-06-18T14:26:55.881Z [INFO] user-service - Operation: webhook_sent - Processing time: 638ms - RequestID: w7a3pgp22tb +2025-06-18T14:26:55.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1053 - IP: 192.168.141.100 - RequestID: 3g1pr4i1emw +2025-06-18T14:26:56.081Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 172ms - Rows affected: 98 - RequestID: qlmf7kn069 +2025-06-18T14:26:56.181Z [INFO] payment-service - GET /api/v1/auth/login - Status: 500 - Response time: 1369ms - IP: 192.168.159.94 - User: user_1069 - RequestID: dcmvsycled +2025-06-18T14:26:56.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.44.5 - RequestID: anws1kgxo4p +2025-06-18T14:26:56.381Z [INFO] payment-service - Database SELECT on products - Execution time: 300ms - Rows affected: 49 - RequestID: cb88q99873v +2025-06-18T14:26:56.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.68.128 - RequestID: i6ujr9q644 +2025-06-18T14:26:56.581Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 320ms - IP: 192.168.194.41 - User: user_1034 - RequestID: 624cza8noe +2025-06-18T14:26:56.681Z [TRACE] auth-service - Database INSERT on orders - Execution time: 47ms - Rows affected: 51 - RequestID: 1k6gwttu4ky +2025-06-18T14:26:56.781Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 60ms - Rows affected: 16 - RequestID: direzmtrbk +2025-06-18T14:26:56.881Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 358ms - RequestID: ovspfuni6zs +2025-06-18T14:26:56.981Z [DEBUG] user-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.11.60 - RequestID: syj4ely8he7 +2025-06-18T14:26:57.081Z [DEBUG] auth-service - Database INSERT on users - Execution time: 320ms - Rows affected: 25 - RequestID: r4bw2v1vnrh +2025-06-18T14:26:57.181Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 121ms - RequestID: ovf3kqvsw5b +2025-06-18T14:26:57.281Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 85ms - RequestID: 7kqww9emu6p +2025-06-18T14:26:57.381Z [INFO] user-service - Database SELECT on payments - Execution time: 303ms - Rows affected: 11 - RequestID: lnjfe2vbhf +2025-06-18T14:26:57.481Z [DEBUG] order-service - Operation: order_created - Processing time: 1036ms - RequestID: o9gget8xypb +2025-06-18T14:26:57.581Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 137ms - Rows affected: 2 - RequestID: dy7unzrg92o +2025-06-18T14:26:57.681Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 404 - Response time: 1753ms - IP: 192.168.170.215 - User: user_1080 - RequestID: pqyxbqi37t +2025-06-18T14:26:57.781Z [TRACE] user-service - Operation: payment_processed - Processing time: 190ms - RequestID: adli06g5d4 +2025-06-18T14:26:57.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.44.5 - RequestID: v8icc8ys0yb +2025-06-18T14:26:57.981Z [DEBUG] notification-service - Auth event: password_change - User: user_1061 - IP: 192.168.211.72 - RequestID: qh6y4yocmzg +2025-06-18T14:26:58.081Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 764ms - RequestID: s1f78yijsqp +2025-06-18T14:26:58.181Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1049 - IP: 192.168.11.60 - RequestID: jcor8ramrn +2025-06-18T14:26:58.281Z [DEBUG] notification-service - POST /api/v1/payments - Status: 400 - Response time: 634ms - IP: 192.168.229.123 - User: user_1088 - RequestID: aljqcfrw0l7 +2025-06-18T14:26:58.381Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 766ms - RequestID: 8esr1gdwrh8 +2025-06-18T14:26:58.481Z [TRACE] user-service - Operation: email_sent - Processing time: 343ms - RequestID: m9e4mq7gke +2025-06-18T14:26:58.581Z [INFO] payment-service - GET /api/v1/auth/login - Status: 500 - Response time: 546ms - IP: 192.168.68.158 - User: user_1035 - RequestID: itqp0t78iu +2025-06-18T14:26:58.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 977ms - RequestID: 0lnf3bji4ixk +2025-06-18T14:26:58.781Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 500 - Response time: 1696ms - IP: 192.168.1.152 - User: user_1048 - RequestID: khb14nbfcvh +2025-06-18T14:26:58.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1005 - IP: 192.168.158.144 - RequestID: w80uy7lbml +2025-06-18T14:26:58.981Z [INFO] notification-service - PUT /api/v1/payments - Status: 500 - Response time: 19ms - IP: 192.168.85.229 - User: user_1091 - RequestID: mjm1meilfs +2025-06-18T14:26:59.081Z [TRACE] notification-service - Auth event: login_success - User: user_1089 - IP: 192.168.64.33 - RequestID: aqqil4xsei +2025-06-18T14:26:59.181Z [DEBUG] payment-service - Auth event: password_change - User: user_1024 - IP: 192.168.30.79 - RequestID: aelpvqai4qf +2025-06-18T14:26:59.281Z [TRACE] payment-service - Auth event: login_failed - User: user_1059 - IP: 192.168.53.133 - RequestID: cbjhbaqkfvk +2025-06-18T14:26:59.381Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 400 - Response time: 1900ms - IP: 192.168.211.72 - User: user_1045 - RequestID: fyk9gknbyy +2025-06-18T14:26:59.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 631ms - RequestID: 6loj5am7su2 +2025-06-18T14:26:59.581Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 461ms - Rows affected: 43 - RequestID: 728qwi4h4nc +2025-06-18T14:26:59.681Z [INFO] user-service - Operation: inventory_updated - Processing time: 405ms - RequestID: bcz2rray6lk +2025-06-18T14:26:59.781Z [INFO] payment-service - Database INSERT on products - Execution time: 110ms - Rows affected: 21 - RequestID: 31q8gtwkxqc +2025-06-18T14:26:59.881Z [INFO] user-service - Database UPDATE on users - Execution time: 372ms - Rows affected: 36 - RequestID: nwkpp5ejgls +2025-06-18T14:26:59.981Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 579ms - IP: 192.168.158.144 - User: user_1047 - RequestID: kcgoe5glfu +2025-06-18T14:27:00.081Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 471ms - Rows affected: 38 - RequestID: z8opcb3qzr +2025-06-18T14:27:00.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.147.171 - RequestID: me017l9dkc8 +2025-06-18T14:27:00.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1016 - IP: 192.168.113.218 - RequestID: z3i9agm6wfs +2025-06-18T14:27:00.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 242ms - RequestID: gheprbjxjo5 +2025-06-18T14:27:00.481Z [TRACE] payment-service - PUT /api/v1/users - Status: 200 - Response time: 1804ms - IP: 192.168.10.184 - User: user_1042 - RequestID: fgm261ok4g +2025-06-18T14:27:00.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 609ms - RequestID: k48ekimnen +2025-06-18T14:27:00.681Z [TRACE] payment-service - Database INSERT on orders - Execution time: 258ms - Rows affected: 99 - RequestID: rg88lare9t9 +2025-06-18T14:27:00.781Z [INFO] auth-service - Auth event: login_failed - User: user_1042 - IP: 192.168.133.7 - RequestID: g87o6we29ui +2025-06-18T14:27:00.881Z [INFO] user-service - Database UPDATE on users - Execution time: 3ms - Rows affected: 79 - RequestID: u59uqfyaqmq +2025-06-18T14:27:00.981Z [INFO] order-service - Database SELECT on users - Execution time: 298ms - Rows affected: 72 - RequestID: v5hz7xsmmym +2025-06-18T14:27:01.081Z [INFO] inventory-service - Operation: cache_hit - Processing time: 789ms - RequestID: vdp7lsoi0gq +2025-06-18T14:27:01.181Z [TRACE] user-service - Database UPDATE on payments - Execution time: 282ms - Rows affected: 14 - RequestID: j67timzg29 +2025-06-18T14:27:01.281Z [INFO] payment-service - Auth event: login_success - User: user_1009 - IP: 192.168.85.229 - RequestID: cdhvtj594b6 +2025-06-18T14:27:01.381Z [INFO] inventory-service - Database UPDATE on users - Execution time: 41ms - Rows affected: 13 - RequestID: xia4xwzinc +2025-06-18T14:27:01.481Z [TRACE] auth-service - Operation: notification_queued - Processing time: 527ms - RequestID: 077ba5puco09 +2025-06-18T14:27:01.581Z [INFO] inventory-service - POST /api/v1/users - Status: 503 - Response time: 447ms - IP: 192.168.97.87 - User: user_1092 - RequestID: 0aaie872ibt6 +2025-06-18T14:27:01.681Z [INFO] payment-service - Operation: payment_processed - Processing time: 373ms - RequestID: 33tp4f7tqj7 +2025-06-18T14:27:01.781Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 435ms - Rows affected: 90 - RequestID: jpbmxbc07u +2025-06-18T14:27:01.881Z [INFO] user-service - POST /api/v1/auth/logout - Status: 201 - Response time: 305ms - IP: 192.168.32.38 - User: user_1097 - RequestID: y22iqyn2roo +2025-06-18T14:27:01.981Z [TRACE] user-service - Auth event: password_change - User: user_1097 - IP: 192.168.46.63 - RequestID: nnub99jeeip +2025-06-18T14:27:02.081Z [INFO] payment-service - Operation: cache_miss - Processing time: 869ms - RequestID: 4fkbq0jdsz9 +2025-06-18T14:27:02.181Z [TRACE] inventory-service - Database SELECT on users - Execution time: 118ms - Rows affected: 6 - RequestID: niwjuozzlcb +2025-06-18T14:27:02.281Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 400 - Response time: 337ms - IP: 192.168.194.41 - User: user_1094 - RequestID: pjfk372iidr +2025-06-18T14:27:02.381Z [TRACE] inventory-service - Operation: order_created - Processing time: 406ms - RequestID: jsptkmppfoj +2025-06-18T14:27:02.481Z [INFO] order-service - POST /api/v1/auth/logout - Status: 404 - Response time: 354ms - IP: 192.168.240.169 - User: user_1086 - RequestID: hd424gjiszd +2025-06-18T14:27:02.581Z [TRACE] payment-service - Auth event: login_success - User: user_1025 - IP: 192.168.85.229 - RequestID: 3sq0rbtdzxx +2025-06-18T14:27:02.681Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 359ms - Rows affected: 29 - RequestID: 808r2g8jtlh +2025-06-18T14:27:02.781Z [TRACE] payment-service - Operation: order_created - Processing time: 922ms - RequestID: tkoijqssip +2025-06-18T14:27:02.881Z [INFO] payment-service - Operation: order_created - Processing time: 1047ms - RequestID: k2epqfog5a +2025-06-18T14:27:02.981Z [TRACE] notification-service - Auth event: login_success - User: user_1031 - IP: 192.168.235.117 - RequestID: 08v0z3w76mej +2025-06-18T14:27:03.081Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.242.165 - RequestID: y522afckdg +2025-06-18T14:27:03.181Z [INFO] auth-service - Auth event: login_failed - User: user_1053 - IP: 192.168.36.218 - RequestID: 3ptx3e0lk63 +2025-06-18T14:27:03.281Z [INFO] order-service - POST /api/v1/payments - Status: 500 - Response time: 1914ms - IP: 192.168.187.199 - User: user_1062 - RequestID: 2nqty8gtomd +2025-06-18T14:27:03.381Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 403 - Response time: 464ms - IP: 192.168.141.100 - User: user_1035 - RequestID: d7q3p1xrr8f +2025-06-18T14:27:03.481Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 171ms - Rows affected: 31 - RequestID: 72dfigdge1y +2025-06-18T14:27:03.581Z [TRACE] inventory-service - Auth event: logout - User: user_1009 - IP: 192.168.240.169 - RequestID: u1pqr8a8j4 +2025-06-18T14:27:03.681Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1755ms - IP: 192.168.181.225 - User: user_1056 - RequestID: sccok7z0w5 +2025-06-18T14:27:03.781Z [DEBUG] user-service - PUT /api/v1/users - Status: 403 - Response time: 301ms - IP: 192.168.68.158 - User: user_1034 - RequestID: 5f8jod6y31g +2025-06-18T14:27:03.881Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 401 - Response time: 1007ms - IP: 192.168.167.32 - User: user_1082 - RequestID: zdse1qmb72j +2025-06-18T14:27:03.981Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.227.77 - RequestID: 0l524twz1uu +2025-06-18T14:27:04.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1094 - IP: 192.168.100.240 - RequestID: ymdcyw7ifq +2025-06-18T14:27:04.181Z [TRACE] auth-service - PUT /api/v1/orders - Status: 200 - Response time: 1767ms - IP: 192.168.170.215 - User: user_1092 - RequestID: md0epij7t9 +2025-06-18T14:27:04.281Z [TRACE] notification-service - Auth event: password_change - User: user_1044 - IP: 192.168.44.5 - RequestID: mqe7emm0nl +2025-06-18T14:27:04.381Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1505ms - IP: 192.168.44.5 - User: user_1096 - RequestID: xeoe9drfuc +2025-06-18T14:27:04.481Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 114ms - Rows affected: 16 - RequestID: egcc31tcfc +2025-06-18T14:27:04.581Z [INFO] order-service - PUT /api/v1/orders - Status: 503 - Response time: 285ms - IP: 192.168.36.218 - User: user_1004 - RequestID: 41i07sq6avm +2025-06-18T14:27:04.681Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 785ms - IP: 192.168.10.184 - User: user_1014 - RequestID: gh810ubvb07 +2025-06-18T14:27:04.781Z [DEBUG] inventory-service - POST /api/v1/users - Status: 200 - Response time: 1474ms - IP: 192.168.158.144 - User: user_1046 - RequestID: xn49gq642t7 +2025-06-18T14:27:04.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.247.134 - RequestID: cux8ex15qgl +2025-06-18T14:27:04.981Z [TRACE] order-service - DELETE /api/v1/users - Status: 500 - Response time: 208ms - IP: 192.168.181.225 - User: user_1096 - RequestID: tf3u2jchkth +2025-06-18T14:27:05.081Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 202ms - Rows affected: 90 - RequestID: f9s7omohd9n +2025-06-18T14:27:05.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.68.128 - RequestID: apc7ypmq9v4 +2025-06-18T14:27:05.281Z [TRACE] payment-service - Auth event: login_success - User: user_1095 - IP: 192.168.13.72 - RequestID: cydvhaxry9a +2025-06-18T14:27:05.381Z [DEBUG] payment-service - Database INSERT on users - Execution time: 207ms - Rows affected: 90 - RequestID: vifz05xsu9 +2025-06-18T14:27:05.481Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.144.38 - RequestID: 6rdpnjqme7l +2025-06-18T14:27:05.581Z [TRACE] auth-service - Database INSERT on products - Execution time: 278ms - Rows affected: 92 - RequestID: 6gcsmcz8nla +2025-06-18T14:27:05.681Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 907ms - RequestID: jm2dpfnb5zl +2025-06-18T14:27:05.781Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 45ms - Rows affected: 86 - RequestID: vqli8s9wij +2025-06-18T14:27:05.881Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 201 - Response time: 1638ms - IP: 192.168.30.79 - User: user_1054 - RequestID: vhfdnp0o8k +2025-06-18T14:27:05.981Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 80ms - IP: 192.168.232.72 - User: user_1015 - RequestID: 32lnkifc2hp +2025-06-18T14:27:06.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.28.146 - RequestID: 582xln0gfrk +2025-06-18T14:27:06.181Z [INFO] auth-service - Database INSERT on payments - Execution time: 138ms - Rows affected: 8 - RequestID: k1esuoast5 +2025-06-18T14:27:06.281Z [DEBUG] payment-service - Operation: email_sent - Processing time: 371ms - RequestID: s5idphkj5v +2025-06-18T14:27:06.381Z [TRACE] payment-service - Database INSERT on orders - Execution time: 51ms - Rows affected: 96 - RequestID: oepbh3jq1o +2025-06-18T14:27:06.481Z [DEBUG] order-service - Auth event: login_success - User: user_1080 - IP: 192.168.79.116 - RequestID: d0src43g0q5 +2025-06-18T14:27:06.581Z [TRACE] order-service - Operation: webhook_sent - Processing time: 640ms - RequestID: gnw7b939rln +2025-06-18T14:27:06.681Z [TRACE] order-service - Operation: payment_processed - Processing time: 981ms - RequestID: z2bb3mj9kw +2025-06-18T14:27:06.781Z [INFO] user-service - Database SELECT on sessions - Execution time: 325ms - Rows affected: 74 - RequestID: kfule2avka9 +2025-06-18T14:27:06.881Z [DEBUG] order-service - Operation: cache_miss - Processing time: 531ms - RequestID: wxich2d8xl +2025-06-18T14:27:06.981Z [TRACE] user-service - Database UPDATE on orders - Execution time: 183ms - Rows affected: 60 - RequestID: wjkjllv2yca +2025-06-18T14:27:07.081Z [TRACE] order-service - Operation: inventory_updated - Processing time: 906ms - RequestID: plfhzt4z97t +2025-06-18T14:27:07.181Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 74ms - RequestID: 75fmzjf548c +2025-06-18T14:27:07.281Z [INFO] order-service - Operation: inventory_updated - Processing time: 955ms - RequestID: qvkbkd3u5te +2025-06-18T14:27:07.381Z [TRACE] user-service - Auth event: logout - User: user_1025 - IP: 192.168.144.38 - RequestID: ze56q5x0hk +2025-06-18T14:27:07.481Z [INFO] auth-service - Auth event: password_change - User: user_1092 - IP: 192.168.13.72 - RequestID: 81x9f0xyint +2025-06-18T14:27:07.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 297ms - RequestID: 1rdnwtojo8m +2025-06-18T14:27:07.681Z [INFO] order-service - Operation: order_created - Processing time: 731ms - RequestID: krnewsah2j +2025-06-18T14:27:07.781Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 560ms - RequestID: 57m2ayvlc05 +2025-06-18T14:27:07.881Z [TRACE] order-service - DELETE /api/v1/users - Status: 503 - Response time: 699ms - IP: 192.168.240.169 - User: user_1049 - RequestID: z4ga0gq1659 +2025-06-18T14:27:07.981Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 245ms - Rows affected: 30 - RequestID: 2meb7fpqylv +2025-06-18T14:27:08.081Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 1023ms - RequestID: 31ypbhofyze +2025-06-18T14:27:08.181Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 404 - Response time: 1617ms - IP: 192.168.194.41 - User: user_1028 - RequestID: n0154ehvne +2025-06-18T14:27:08.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 692ms - RequestID: bf8w8mqw9cg +2025-06-18T14:27:08.381Z [DEBUG] auth-service - Operation: email_sent - Processing time: 199ms - RequestID: k2ceotb29pf +2025-06-18T14:27:08.481Z [DEBUG] inventory-service - GET /api/v1/users - Status: 200 - Response time: 292ms - IP: 192.168.196.226 - User: user_1013 - RequestID: hc95fjpjeco +2025-06-18T14:27:08.581Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 403 - Response time: 775ms - IP: 192.168.187.199 - User: user_1032 - RequestID: sluikxzmww +2025-06-18T14:27:08.681Z [INFO] inventory-service - Database DELETE on payments - Execution time: 493ms - Rows affected: 40 - RequestID: nnrb3bonq8a +2025-06-18T14:27:08.781Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 95ms - Rows affected: 38 - RequestID: 180f9107aym +2025-06-18T14:27:08.881Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 139ms - Rows affected: 97 - RequestID: nh13itbk7js +2025-06-18T14:27:08.981Z [TRACE] notification-service - Auth event: password_change - User: user_1094 - IP: 192.168.196.226 - RequestID: s7xks0e5suf +2025-06-18T14:27:09.081Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 503 - Response time: 1707ms - IP: 192.168.30.79 - User: user_1081 - RequestID: qlbbzqocd6 +2025-06-18T14:27:09.181Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 403 - Response time: 55ms - IP: 192.168.64.33 - User: user_1009 - RequestID: v1j0ogrh6ee +2025-06-18T14:27:09.281Z [INFO] inventory-service - Operation: cache_miss - Processing time: 918ms - RequestID: v3w4g3vlinm +2025-06-18T14:27:09.381Z [DEBUG] auth-service - Database INSERT on users - Execution time: 292ms - Rows affected: 38 - RequestID: 1wtkq7vcyp8 +2025-06-18T14:27:09.481Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 503 - Response time: 1618ms - IP: 192.168.170.215 - User: user_1048 - RequestID: fknly3z52q +2025-06-18T14:27:09.581Z [INFO] order-service - Operation: email_sent - Processing time: 187ms - RequestID: og5bkm1ec9 +2025-06-18T14:27:09.681Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 63ms - Rows affected: 57 - RequestID: c2ei8i3chz7 +2025-06-18T14:27:09.781Z [TRACE] user-service - Auth event: login_failed - User: user_1075 - IP: 192.168.44.5 - RequestID: 1ez1aohxp1x +2025-06-18T14:27:09.881Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 503 - Response time: 670ms - IP: 192.168.227.77 - User: user_1055 - RequestID: 2mjxr55evpe +2025-06-18T14:27:09.981Z [INFO] inventory-service - Auth event: password_change - User: user_1094 - IP: 192.168.97.87 - RequestID: utescrc5phl +2025-06-18T14:27:10.081Z [INFO] inventory-service - Database SELECT on products - Execution time: 419ms - Rows affected: 74 - RequestID: b9rlnhiwble +2025-06-18T14:27:10.181Z [TRACE] user-service - Auth event: logout - User: user_1084 - IP: 192.168.181.225 - RequestID: sbh485cypq +2025-06-18T14:27:10.281Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 404 - Response time: 619ms - IP: 192.168.187.199 - User: user_1051 - RequestID: ue6xuyq1nrm +2025-06-18T14:27:10.381Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 300ms - Rows affected: 0 - RequestID: 0zjeahtoxez +2025-06-18T14:27:10.481Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 427ms - Rows affected: 95 - RequestID: isc2g4pgq2 +2025-06-18T14:27:10.581Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 869ms - RequestID: 4fuws63ay3s +2025-06-18T14:27:10.681Z [INFO] notification-service - Database SELECT on payments - Execution time: 242ms - Rows affected: 35 - RequestID: ddulnqmbcnd +2025-06-18T14:27:10.781Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 311ms - Rows affected: 73 - RequestID: wsvfw4f6pyr +2025-06-18T14:27:10.881Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 287ms - RequestID: 0pxqpohv73a +2025-06-18T14:27:10.981Z [DEBUG] notification-service - Auth event: logout - User: user_1019 - IP: 192.168.30.79 - RequestID: q2wbuns5jw8 +2025-06-18T14:27:11.081Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 401 - Response time: 930ms - IP: 192.168.104.37 - User: user_1011 - RequestID: i47iyejqj2p +2025-06-18T14:27:11.181Z [TRACE] payment-service - Auth event: login_success - User: user_1009 - IP: 192.168.10.184 - RequestID: 2ufnu5447pd +2025-06-18T14:27:11.281Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 207ms - Rows affected: 20 - RequestID: 784nkh3v0r +2025-06-18T14:27:11.381Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1993ms - IP: 192.168.100.240 - User: user_1091 - RequestID: rspkxghto +2025-06-18T14:27:11.481Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 318ms - Rows affected: 55 - RequestID: ag8v919kcuo +2025-06-18T14:27:11.581Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 159ms - Rows affected: 86 - RequestID: 0v1dxwqbme1 +2025-06-18T14:27:11.681Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 349ms - Rows affected: 73 - RequestID: 4n3ouj622dr +2025-06-18T14:27:11.781Z [DEBUG] auth-service - Operation: order_created - Processing time: 902ms - RequestID: dwgk3lq0b4i +2025-06-18T14:27:11.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.229.123 - RequestID: 2sf3pd1sim +2025-06-18T14:27:11.981Z [INFO] auth-service - Operation: cache_miss - Processing time: 923ms - RequestID: g78kt8fl2hv +2025-06-18T14:27:12.081Z [DEBUG] user-service - DELETE /api/v1/users - Status: 401 - Response time: 320ms - IP: 192.168.36.218 - User: user_1037 - RequestID: 6bj29xngpqt +2025-06-18T14:27:12.181Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 852ms - RequestID: 6ce6ad4quqi +2025-06-18T14:27:12.281Z [INFO] order-service - Database INSERT on users - Execution time: 485ms - Rows affected: 42 - RequestID: yyzfiuwzc4h +2025-06-18T14:27:12.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1069 - IP: 192.168.196.226 - RequestID: w3tn502skaf +2025-06-18T14:27:12.481Z [TRACE] user-service - Auth event: login_failed - User: user_1005 - IP: 192.168.235.117 - RequestID: eso60belozm +2025-06-18T14:27:12.581Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 989ms - IP: 192.168.227.77 - User: user_1012 - RequestID: 42yf50h9ibu +2025-06-18T14:27:12.681Z [TRACE] order-service - Auth event: logout - User: user_1009 - IP: 192.168.147.171 - RequestID: jftbanqpczi +2025-06-18T14:27:12.781Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 500 - Response time: 973ms - IP: 192.168.235.117 - User: user_1033 - RequestID: hkp62pum15 +2025-06-18T14:27:12.881Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.227.233 - RequestID: dm74bze1v84 +2025-06-18T14:27:12.981Z [TRACE] order-service - Operation: email_sent - Processing time: 989ms - RequestID: 4brcro1r5j5 +2025-06-18T14:27:13.081Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 171ms - RequestID: wpcpvucxrp +2025-06-18T14:27:13.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 61ms - RequestID: of07lhdumnj +2025-06-18T14:27:13.281Z [TRACE] order-service - Operation: order_created - Processing time: 447ms - RequestID: fhvzpivmkd6 +2025-06-18T14:27:13.381Z [INFO] auth-service - Auth event: login_failed - User: user_1041 - IP: 192.168.227.233 - RequestID: ypqaospp6aq +2025-06-18T14:27:13.481Z [TRACE] payment-service - Database DELETE on users - Execution time: 139ms - Rows affected: 87 - RequestID: j4u8bqmejo +2025-06-18T14:27:13.581Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 167ms - IP: 192.168.187.199 - User: user_1084 - RequestID: rzro8k8c6e +2025-06-18T14:27:13.681Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 403 - Response time: 1620ms - IP: 192.168.79.143 - User: user_1043 - RequestID: 4tbzw890nav +2025-06-18T14:27:13.781Z [DEBUG] payment-service - Operation: order_created - Processing time: 300ms - RequestID: bnma8jcsyy +2025-06-18T14:27:13.881Z [INFO] auth-service - Database UPDATE on payments - Execution time: 163ms - Rows affected: 80 - RequestID: s88sg2yh46l +2025-06-18T14:27:13.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1023 - IP: 192.168.232.72 - RequestID: s7o4edflcl +2025-06-18T14:27:14.081Z [TRACE] inventory-service - Operation: email_sent - Processing time: 640ms - RequestID: 6lhvzh5h0g8 +2025-06-18T14:27:14.181Z [TRACE] auth-service - Database DELETE on users - Execution time: 325ms - Rows affected: 5 - RequestID: j2zemvpwkur +2025-06-18T14:27:14.281Z [DEBUG] user-service - Database UPDATE on users - Execution time: 391ms - Rows affected: 31 - RequestID: tqc1wyqvhvs +2025-06-18T14:27:14.381Z [TRACE] notification-service - GET /api/v1/payments - Status: 502 - Response time: 95ms - IP: 192.168.170.215 - User: user_1010 - RequestID: zrw7xb8m9l +2025-06-18T14:27:14.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.100.240 - RequestID: o7p9ob0bfrp +2025-06-18T14:27:14.581Z [TRACE] user-service - Operation: cache_hit - Processing time: 899ms - RequestID: b9b2f23ot45 +2025-06-18T14:27:14.681Z [INFO] inventory-service - Auth event: logout - User: user_1015 - IP: 192.168.1.152 - RequestID: g4uyzy6so8a +2025-06-18T14:27:14.781Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 758ms - RequestID: rlhur5svtue +2025-06-18T14:27:14.881Z [DEBUG] auth-service - Operation: order_created - Processing time: 544ms - RequestID: 3pbrs7laeuc +2025-06-18T14:27:14.981Z [DEBUG] user-service - Operation: order_created - Processing time: 929ms - RequestID: 5ysukvnslr +2025-06-18T14:27:15.081Z [INFO] order-service - Database UPDATE on payments - Execution time: 106ms - Rows affected: 42 - RequestID: edhisn16bgd +2025-06-18T14:27:15.181Z [DEBUG] notification-service - Database INSERT on products - Execution time: 300ms - Rows affected: 36 - RequestID: lyge2w74zwr +2025-06-18T14:27:15.281Z [INFO] payment-service - POST /api/v1/auth/login - Status: 400 - Response time: 1947ms - IP: 192.168.64.33 - User: user_1029 - RequestID: pbbw9vj0tc +2025-06-18T14:27:15.381Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 37ms - Rows affected: 74 - RequestID: fzcqnqlgedf +2025-06-18T14:27:15.481Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 281ms - Rows affected: 16 - RequestID: zjcblrpi3m +2025-06-18T14:27:15.581Z [TRACE] auth-service - Operation: order_created - Processing time: 960ms - RequestID: 9cb0asvuhq7 +2025-06-18T14:27:15.681Z [INFO] order-service - Auth event: login_failed - User: user_1082 - IP: 192.168.174.114 - RequestID: zn0onthyi1h +2025-06-18T14:27:15.781Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 571ms - IP: 192.168.30.79 - User: user_1016 - RequestID: osr48omdc2m +2025-06-18T14:27:15.881Z [INFO] user-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.194.41 - RequestID: 6zyhhtglokj +2025-06-18T14:27:15.981Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1655ms - IP: 192.168.36.218 - User: user_1050 - RequestID: df9wnik67b8 +2025-06-18T14:27:16.081Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 389ms - Rows affected: 30 - RequestID: 7e3vlo6vyoe +2025-06-18T14:27:16.181Z [TRACE] inventory-service - GET /api/v1/payments - Status: 404 - Response time: 1964ms - IP: 192.168.138.123 - User: user_1027 - RequestID: 5mhna6zf9mg +2025-06-18T14:27:16.281Z [TRACE] auth-service - Operation: cache_hit - Processing time: 173ms - RequestID: 2cb3llz25v7 +2025-06-18T14:27:16.381Z [TRACE] auth-service - Database SELECT on payments - Execution time: 198ms - Rows affected: 38 - RequestID: xsm3m7azs8f +2025-06-18T14:27:16.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.113.218 - RequestID: kujdjbip3dk +2025-06-18T14:27:16.581Z [TRACE] order-service - Database SELECT on payments - Execution time: 48ms - Rows affected: 22 - RequestID: pszmhnmrr9 +2025-06-18T14:27:16.681Z [DEBUG] user-service - GET /api/v1/payments - Status: 401 - Response time: 1643ms - IP: 192.168.196.226 - User: user_1002 - RequestID: 5w6wcwsyt9x +2025-06-18T14:27:16.781Z [INFO] payment-service - Auth event: logout - User: user_1023 - IP: 192.168.32.38 - RequestID: vzqlnq3xze +2025-06-18T14:27:16.881Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 961ms - RequestID: m4jv881ccvs +2025-06-18T14:27:16.981Z [DEBUG] payment-service - Auth event: logout - User: user_1004 - IP: 192.168.28.146 - RequestID: btme1xfg1 +2025-06-18T14:27:17.081Z [TRACE] payment-service - Operation: cache_miss - Processing time: 272ms - RequestID: gukbgdfw7g6 +2025-06-18T14:27:17.181Z [INFO] payment-service - Operation: cache_miss - Processing time: 381ms - RequestID: w29fkf95j48 +2025-06-18T14:27:17.281Z [INFO] payment-service - Operation: email_sent - Processing time: 437ms - RequestID: v4s0s50zbv +2025-06-18T14:27:17.381Z [TRACE] order-service - Database INSERT on payments - Execution time: 273ms - Rows affected: 27 - RequestID: djkfjkjjhe +2025-06-18T14:27:17.481Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 130ms - Rows affected: 75 - RequestID: 3j7sr3ymxr5 +2025-06-18T14:27:17.581Z [INFO] inventory-service - Database UPDATE on users - Execution time: 486ms - Rows affected: 8 - RequestID: gwcdes20ojq +2025-06-18T14:27:17.681Z [DEBUG] payment-service - GET /api/v1/payments - Status: 401 - Response time: 365ms - IP: 192.168.28.146 - User: user_1016 - RequestID: yote6i3jita +2025-06-18T14:27:17.781Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 283ms - Rows affected: 86 - RequestID: pcmc1bzafb +2025-06-18T14:27:17.881Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 194ms - Rows affected: 40 - RequestID: kr5xtk9hbvp +2025-06-18T14:27:17.981Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 380ms - Rows affected: 98 - RequestID: j1m6bpiddxq +2025-06-18T14:27:18.081Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 249ms - Rows affected: 83 - RequestID: u7cxxlvwbyc +2025-06-18T14:27:18.181Z [DEBUG] order-service - GET /api/v1/orders - Status: 500 - Response time: 31ms - IP: 192.168.113.218 - User: user_1073 - RequestID: todi9l8yz0m +2025-06-18T14:27:18.281Z [TRACE] user-service - PUT /api/v1/inventory - Status: 200 - Response time: 1255ms - IP: 192.168.79.143 - User: user_1015 - RequestID: wt5f5zxu6r +2025-06-18T14:27:18.381Z [TRACE] user-service - Operation: payment_processed - Processing time: 456ms - RequestID: 2gaouj1el8p +2025-06-18T14:27:18.481Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 502 - Response time: 1561ms - IP: 192.168.113.218 - User: user_1039 - RequestID: 9w0nww4y18t +2025-06-18T14:27:18.581Z [TRACE] auth-service - POST /api/v1/inventory - Status: 503 - Response time: 465ms - IP: 192.168.138.123 - User: user_1039 - RequestID: mknz5mtzxv +2025-06-18T14:27:18.681Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1790ms - IP: 192.168.104.37 - User: user_1031 - RequestID: 5djv3ni3br +2025-06-18T14:27:18.781Z [INFO] user-service - Operation: notification_queued - Processing time: 615ms - RequestID: 38rh5ps9xqy +2025-06-18T14:27:18.881Z [INFO] user-service - Database INSERT on orders - Execution time: 288ms - Rows affected: 16 - RequestID: njcnxz800uo +2025-06-18T14:27:18.981Z [DEBUG] order-service - Operation: order_created - Processing time: 405ms - RequestID: okxteoh2pl +2025-06-18T14:27:19.081Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 235ms - Rows affected: 81 - RequestID: b0e1zzdhxbh +2025-06-18T14:27:19.181Z [TRACE] user-service - Operation: inventory_updated - Processing time: 282ms - RequestID: f8o65mbeo0s +2025-06-18T14:27:19.281Z [TRACE] auth-service - Operation: email_sent - Processing time: 914ms - RequestID: qqs4zub14do +2025-06-18T14:27:19.381Z [DEBUG] user-service - Operation: notification_queued - Processing time: 59ms - RequestID: 27mu2euc5sj +2025-06-18T14:27:19.481Z [TRACE] inventory-service - Auth event: password_change - User: user_1014 - IP: 192.168.187.199 - RequestID: 6gspk4rq33c +2025-06-18T14:27:19.581Z [TRACE] order-service - Operation: inventory_updated - Processing time: 319ms - RequestID: fgrx9gz90bg +2025-06-18T14:27:19.681Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 181ms - Rows affected: 94 - RequestID: cvhsagidcgl +2025-06-18T14:27:19.781Z [INFO] user-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.28.146 - RequestID: dytmmtyglp6 +2025-06-18T14:27:19.881Z [DEBUG] order-service - Auth event: logout - User: user_1038 - IP: 192.168.247.134 - RequestID: oy1xl1tkdu +2025-06-18T14:27:19.981Z [INFO] payment-service - Auth event: login_success - User: user_1061 - IP: 192.168.138.123 - RequestID: uu86djgvlrb +2025-06-18T14:27:20.081Z [INFO] order-service - Database SELECT on orders - Execution time: 464ms - Rows affected: 7 - RequestID: p3mo33veor +2025-06-18T14:27:20.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1068 - IP: 192.168.104.37 - RequestID: o797wfo5i +2025-06-18T14:27:20.281Z [INFO] auth-service - PUT /api/v1/inventory - Status: 403 - Response time: 71ms - IP: 192.168.31.117 - User: user_1042 - RequestID: lj2za70j90o +2025-06-18T14:27:20.381Z [DEBUG] notification-service - Database INSERT on users - Execution time: 306ms - Rows affected: 80 - RequestID: 4weksugmjph +2025-06-18T14:27:20.481Z [TRACE] order-service - Database DELETE on orders - Execution time: 400ms - Rows affected: 63 - RequestID: jemy74rgc88 +2025-06-18T14:27:20.581Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 503 - Response time: 1184ms - IP: 192.168.100.240 - User: user_1084 - RequestID: wvmaiuxv3y8 +2025-06-18T14:27:20.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.64.33 - RequestID: wgx90h60wrp +2025-06-18T14:27:20.781Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 895ms - RequestID: ef5eh8t8hxi +2025-06-18T14:27:20.881Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 328ms - Rows affected: 5 - RequestID: m582mdgy23 +2025-06-18T14:27:20.981Z [INFO] payment-service - GET /api/v1/payments - Status: 200 - Response time: 1500ms - IP: 192.168.33.76 - User: user_1009 - RequestID: luh1jpucl8f +2025-06-18T14:27:21.081Z [INFO] payment-service - Database SELECT on payments - Execution time: 97ms - Rows affected: 19 - RequestID: t4amfgz888 +2025-06-18T14:27:21.181Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 400 - Response time: 1285ms - IP: 192.168.174.114 - User: user_1073 - RequestID: 1yu0sa9p0jj +2025-06-18T14:27:21.281Z [TRACE] notification-service - Database INSERT on users - Execution time: 119ms - Rows affected: 64 - RequestID: 0rnynyyoxuok +2025-06-18T14:27:21.381Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 471ms - Rows affected: 90 - RequestID: f3gyndsf0dr +2025-06-18T14:27:21.481Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 174ms - IP: 192.168.28.146 - User: user_1042 - RequestID: gct8g8z6wh9 +2025-06-18T14:27:21.581Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 339ms - Rows affected: 75 - RequestID: 21ne2egl9zkh +2025-06-18T14:27:21.681Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 46ms - Rows affected: 4 - RequestID: 7p7z21gowcw +2025-06-18T14:27:21.781Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 502 - Response time: 622ms - IP: 192.168.13.72 - User: user_1010 - RequestID: rnkf4zidbc +2025-06-18T14:27:21.881Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1691ms - IP: 192.168.28.146 - User: user_1011 - RequestID: aehkp9fpufq +2025-06-18T14:27:21.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 81ms - RequestID: ualcnbdks7 +2025-06-18T14:27:22.081Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1769ms - IP: 192.168.247.134 - User: user_1098 - RequestID: td37xzi0jxa +2025-06-18T14:27:22.181Z [INFO] order-service - Auth event: login_failed - User: user_1005 - IP: 192.168.33.76 - RequestID: p09904v8f8o +2025-06-18T14:27:22.281Z [DEBUG] notification-service - Database SELECT on users - Execution time: 430ms - Rows affected: 90 - RequestID: albnzc4ydiq +2025-06-18T14:27:22.381Z [INFO] order-service - POST /api/v1/auth/logout - Status: 500 - Response time: 845ms - IP: 192.168.13.72 - User: user_1002 - RequestID: tlvqbsiwfd +2025-06-18T14:27:22.481Z [INFO] payment-service - Operation: cache_miss - Processing time: 170ms - RequestID: bdcgzq0ymfg +2025-06-18T14:27:22.581Z [TRACE] payment-service - Auth event: login_success - User: user_1021 - IP: 192.168.167.32 - RequestID: fky2ib1bw0a +2025-06-18T14:27:22.681Z [TRACE] user-service - Database DELETE on payments - Execution time: 195ms - Rows affected: 11 - RequestID: 18csjzsxd4w +2025-06-18T14:27:22.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 196ms - RequestID: fapres3b2y +2025-06-18T14:27:22.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1079 - IP: 192.168.33.76 - RequestID: 19fqx1l3qdt +2025-06-18T14:27:22.981Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 274ms - Rows affected: 90 - RequestID: 9spukxviif7 +2025-06-18T14:27:23.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.36.218 - RequestID: ulyrazamqhj +2025-06-18T14:27:23.181Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 500 - Response time: 793ms - IP: 192.168.232.72 - User: user_1082 - RequestID: tlpwhrxe8vo +2025-06-18T14:27:23.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 959ms - RequestID: lbron0yib0q +2025-06-18T14:27:23.381Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 365ms - Rows affected: 25 - RequestID: c6bd3w3zt0d +2025-06-18T14:27:23.481Z [TRACE] auth-service - Operation: payment_processed - Processing time: 996ms - RequestID: mwb5dzu5qf +2025-06-18T14:27:23.581Z [TRACE] user-service - Operation: order_created - Processing time: 295ms - RequestID: q21i77h42s +2025-06-18T14:27:23.681Z [INFO] order-service - Auth event: login_failed - User: user_1070 - IP: 192.168.147.171 - RequestID: okqjoez4fv +2025-06-18T14:27:23.781Z [TRACE] order-service - Database SELECT on payments - Execution time: 200ms - Rows affected: 95 - RequestID: pb2sh2jm2v9 +2025-06-18T14:27:23.881Z [TRACE] auth-service - Operation: cache_hit - Processing time: 656ms - RequestID: at9jqawgt9 +2025-06-18T14:27:23.981Z [TRACE] user-service - Database INSERT on products - Execution time: 132ms - Rows affected: 31 - RequestID: 3vnnnj6a64f +2025-06-18T14:27:24.081Z [DEBUG] user-service - PUT /api/v1/users - Status: 200 - Response time: 45ms - IP: 192.168.14.77 - User: user_1043 - RequestID: uzaka1cref +2025-06-18T14:27:24.181Z [INFO] notification-service - Operation: cache_hit - Processing time: 1039ms - RequestID: rbz5wr2nzhe +2025-06-18T14:27:24.281Z [INFO] user-service - Operation: notification_queued - Processing time: 478ms - RequestID: gb5ep4mxmm5 +2025-06-18T14:27:24.381Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 617ms - RequestID: drt9lqzovfb +2025-06-18T14:27:24.481Z [TRACE] user-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.79.143 - RequestID: ody3e97nutk +2025-06-18T14:27:24.581Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 792ms - RequestID: u2v283qiopr +2025-06-18T14:27:24.681Z [INFO] notification-service - PATCH /api/v1/payments - Status: 404 - Response time: 1361ms - IP: 192.168.189.103 - User: user_1008 - RequestID: m6hznh394tb +2025-06-18T14:27:24.781Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 570ms - RequestID: xymac5xlkcs +2025-06-18T14:27:24.881Z [DEBUG] order-service - Auth event: login_failed - User: user_1077 - IP: 192.168.14.77 - RequestID: scz05vrkt6h +2025-06-18T14:27:24.981Z [TRACE] inventory-service - Auth event: password_change - User: user_1014 - IP: 192.168.14.77 - RequestID: yqcq9mf8v1j +2025-06-18T14:27:25.081Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 92ms - RequestID: vv64roqj15 +2025-06-18T14:27:25.181Z [TRACE] notification-service - Database INSERT on products - Execution time: 338ms - Rows affected: 48 - RequestID: vlex5tzhgjn +2025-06-18T14:27:25.281Z [INFO] payment-service - GET /api/v1/auth/login - Status: 503 - Response time: 756ms - IP: 192.168.64.33 - User: user_1024 - RequestID: 3i4utogd9je +2025-06-18T14:27:25.381Z [DEBUG] user-service - Operation: cache_miss - Processing time: 678ms - RequestID: w24bkf4voqo +2025-06-18T14:27:25.481Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 146ms - RequestID: f8cz1q37t0p +2025-06-18T14:27:25.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.187.199 - RequestID: xei445a51fi +2025-06-18T14:27:25.681Z [TRACE] user-service - Operation: webhook_sent - Processing time: 750ms - RequestID: w6cxt4zi35 +2025-06-18T14:27:25.781Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.235.117 - RequestID: qm0eygw3zvi +2025-06-18T14:27:25.881Z [DEBUG] notification-service - Operation: order_created - Processing time: 922ms - RequestID: 7lgkrzxzdfv +2025-06-18T14:27:25.981Z [INFO] order-service - Operation: order_created - Processing time: 357ms - RequestID: vyj1ep650cm +2025-06-18T14:27:26.081Z [INFO] inventory-service - Database SELECT on users - Execution time: 196ms - Rows affected: 2 - RequestID: m29uavdljis +2025-06-18T14:27:26.181Z [TRACE] payment-service - PUT /api/v1/payments - Status: 400 - Response time: 1363ms - IP: 192.168.232.72 - User: user_1019 - RequestID: 7nqml8wvl99 +2025-06-18T14:27:26.281Z [TRACE] notification-service - Auth event: password_change - User: user_1095 - IP: 192.168.235.117 - RequestID: ugrqrl058v +2025-06-18T14:27:26.381Z [INFO] notification-service - Auth event: login_success - User: user_1071 - IP: 192.168.196.226 - RequestID: vot5fouk0d8 +2025-06-18T14:27:26.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1081 - IP: 192.168.33.76 - RequestID: omdv0g7rcq +2025-06-18T14:27:26.581Z [INFO] order-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1619ms - IP: 192.168.1.152 - User: user_1080 - RequestID: h5sdsjxquw +2025-06-18T14:27:26.681Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 329ms - Rows affected: 78 - RequestID: izg3xl55irf +2025-06-18T14:27:26.781Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 401 - Response time: 88ms - IP: 192.168.229.123 - User: user_1005 - RequestID: r0yl0133px9 +2025-06-18T14:27:26.881Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 651ms - RequestID: sx7mkrj65dk +2025-06-18T14:27:26.981Z [DEBUG] notification-service - Operation: email_sent - Processing time: 114ms - RequestID: 3gbpzpmpdcq +2025-06-18T14:27:27.081Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.113.218 - RequestID: dfqxdbkpjab +2025-06-18T14:27:27.181Z [DEBUG] order-service - POST /api/v1/users - Status: 500 - Response time: 488ms - IP: 192.168.79.141 - User: user_1074 - RequestID: 7j6nm2gvuti +2025-06-18T14:27:27.281Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 201 - Response time: 903ms - IP: 192.168.227.233 - User: user_1057 - RequestID: gacx13pv557 +2025-06-18T14:27:27.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.141.100 - RequestID: 5qbkre88io +2025-06-18T14:27:27.481Z [TRACE] inventory-service - Database SELECT on users - Execution time: 243ms - Rows affected: 55 - RequestID: 102vqzzsrhvk +2025-06-18T14:27:27.581Z [TRACE] user-service - GET /api/v1/users - Status: 201 - Response time: 118ms - IP: 192.168.174.114 - User: user_1003 - RequestID: evtl750qfqi +2025-06-18T14:27:27.681Z [INFO] order-service - GET /api/v1/inventory - Status: 200 - Response time: 1558ms - IP: 192.168.104.37 - User: user_1077 - RequestID: 23v2lqksyhcj +2025-06-18T14:27:27.781Z [TRACE] user-service - Database INSERT on sessions - Execution time: 2ms - Rows affected: 85 - RequestID: ujv8zozoswa +2025-06-18T14:27:27.881Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 1029ms - RequestID: lum6qv8u60l +2025-06-18T14:27:27.981Z [TRACE] inventory-service - Database DELETE on products - Execution time: 371ms - Rows affected: 30 - RequestID: ob8ialvfd8 +2025-06-18T14:27:28.081Z [INFO] auth-service - POST /api/v1/inventory - Status: 201 - Response time: 149ms - IP: 192.168.14.77 - User: user_1044 - RequestID: jo0yoe6bztj +2025-06-18T14:27:28.181Z [DEBUG] user-service - Database UPDATE on products - Execution time: 268ms - Rows affected: 29 - RequestID: zk7x2gdaq3k +2025-06-18T14:27:28.281Z [INFO] order-service - Operation: notification_queued - Processing time: 1002ms - RequestID: yhaqc3gluzm +2025-06-18T14:27:28.381Z [INFO] notification-service - Database INSERT on users - Execution time: 276ms - Rows affected: 83 - RequestID: m20iqe1ktm +2025-06-18T14:27:28.481Z [TRACE] auth-service - Operation: order_created - Processing time: 243ms - RequestID: l4mfghwrw +2025-06-18T14:27:28.581Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1881ms - IP: 192.168.81.206 - User: user_1082 - RequestID: 0g80eoe3yjzk +2025-06-18T14:27:28.681Z [TRACE] notification-service - Database DELETE on products - Execution time: 16ms - Rows affected: 84 - RequestID: ccul6vuhzaj +2025-06-18T14:27:28.781Z [INFO] payment-service - PUT /api/v1/inventory - Status: 500 - Response time: 1951ms - IP: 192.168.31.117 - User: user_1021 - RequestID: as4ljctio5r +2025-06-18T14:27:28.881Z [INFO] user-service - Database SELECT on users - Execution time: 183ms - Rows affected: 15 - RequestID: sznkvwpnp3s +2025-06-18T14:27:28.981Z [INFO] user-service - Database SELECT on sessions - Execution time: 158ms - Rows affected: 47 - RequestID: k5kul5ynh2 +2025-06-18T14:27:29.081Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1348ms - IP: 192.168.97.87 - User: user_1035 - RequestID: 5vr901xzmqx +2025-06-18T14:27:29.181Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 1ms - Rows affected: 20 - RequestID: oosaj85hesl +2025-06-18T14:27:29.281Z [DEBUG] auth-service - Auth event: logout - User: user_1031 - IP: 192.168.247.134 - RequestID: xbiceof0hti +2025-06-18T14:27:29.381Z [DEBUG] auth-service - Auth event: login_failed - User: user_1052 - IP: 192.168.189.103 - RequestID: bd007tiucw +2025-06-18T14:27:29.481Z [TRACE] inventory-service - Auth event: password_change - User: user_1067 - IP: 192.168.113.218 - RequestID: vemdeek8bdk +2025-06-18T14:27:29.581Z [TRACE] notification-service - Operation: cache_hit - Processing time: 255ms - RequestID: rhqeia2arb +2025-06-18T14:27:29.681Z [INFO] payment-service - Auth event: logout - User: user_1030 - IP: 192.168.181.225 - RequestID: gd5mzn2bdxl +2025-06-18T14:27:29.781Z [INFO] user-service - Database DELETE on payments - Execution time: 343ms - Rows affected: 66 - RequestID: pufne07gazm +2025-06-18T14:27:29.881Z [TRACE] notification-service - Database INSERT on products - Execution time: 398ms - Rows affected: 9 - RequestID: nfrmik4m19e +2025-06-18T14:27:29.981Z [INFO] order-service - Auth event: logout - User: user_1074 - IP: 192.168.13.72 - RequestID: e5yklov1ty +2025-06-18T14:27:30.081Z [INFO] payment-service - Database DELETE on users - Execution time: 14ms - Rows affected: 43 - RequestID: nq7549ce83 +2025-06-18T14:27:30.181Z [INFO] auth-service - POST /api/v1/inventory - Status: 502 - Response time: 1666ms - IP: 192.168.196.226 - User: user_1073 - RequestID: 8jku1ieswpg +2025-06-18T14:27:30.281Z [TRACE] notification-service - Auth event: login_success - User: user_1018 - IP: 192.168.133.7 - RequestID: 1yh1g488mft +2025-06-18T14:27:30.381Z [TRACE] payment-service - Database DELETE on products - Execution time: 176ms - Rows affected: 20 - RequestID: 4w7coxkd3cw +2025-06-18T14:27:30.481Z [DEBUG] user-service - Database DELETE on payments - Execution time: 21ms - Rows affected: 64 - RequestID: 20le9zl82f7 +2025-06-18T14:27:30.581Z [INFO] notification-service - Database INSERT on payments - Execution time: 148ms - Rows affected: 85 - RequestID: mq1utqdc35h +2025-06-18T14:27:30.681Z [TRACE] order-service - PATCH /api/v1/payments - Status: 404 - Response time: 1775ms - IP: 192.168.13.72 - User: user_1074 - RequestID: cwswb9rl9a +2025-06-18T14:27:30.781Z [INFO] inventory-service - Database DELETE on products - Execution time: 416ms - Rows affected: 60 - RequestID: c13y2vk8v6 +2025-06-18T14:27:30.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1011 - IP: 192.168.138.123 - RequestID: 8aj3ghr0jgd +2025-06-18T14:27:30.981Z [INFO] inventory-service - Auth event: password_change - User: user_1011 - IP: 192.168.33.76 - RequestID: uqr78iuk4yf +2025-06-18T14:27:31.081Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 252ms - Rows affected: 78 - RequestID: 4jspx0kjso6 +2025-06-18T14:27:31.181Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1451ms - IP: 192.168.229.123 - User: user_1003 - RequestID: rh1ryt6ddf9 +2025-06-18T14:27:31.281Z [INFO] order-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.158.144 - RequestID: 8y67nyvjlyv +2025-06-18T14:27:31.381Z [DEBUG] order-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.174.114 - RequestID: 437q7064pbw +2025-06-18T14:27:31.481Z [TRACE] inventory-service - Auth event: login_failed - User: user_1049 - IP: 192.168.33.76 - RequestID: o197i8g44wo +2025-06-18T14:27:31.581Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 223ms - Rows affected: 78 - RequestID: 9sde1pjjhy +2025-06-18T14:27:31.681Z [TRACE] payment-service - GET /api/v1/orders - Status: 200 - Response time: 1532ms - IP: 192.168.11.60 - User: user_1078 - RequestID: wxxydp1hrv +2025-06-18T14:27:31.781Z [TRACE] notification-service - PATCH /api/v1/users - Status: 503 - Response time: 1221ms - IP: 192.168.227.233 - User: user_1031 - RequestID: hw2eiush0of +2025-06-18T14:27:31.881Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 486ms - Rows affected: 77 - RequestID: donk37q1qhl +2025-06-18T14:27:31.981Z [INFO] order-service - Database UPDATE on users - Execution time: 175ms - Rows affected: 23 - RequestID: jr1flo2awkl +2025-06-18T14:27:32.081Z [INFO] payment-service - Operation: webhook_sent - Processing time: 495ms - RequestID: 2t8amkla2z2 +2025-06-18T14:27:32.181Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1771ms - IP: 192.168.138.123 - User: user_1089 - RequestID: vqpf56x9i4 +2025-06-18T14:27:32.281Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 647ms - IP: 192.168.181.225 - User: user_1028 - RequestID: 0z2i13j2u3u +2025-06-18T14:27:32.381Z [TRACE] order-service - Operation: webhook_sent - Processing time: 882ms - RequestID: zjziqqkyz2g +2025-06-18T14:27:32.481Z [INFO] order-service - Operation: inventory_updated - Processing time: 191ms - RequestID: 2h09p0g2kb3 +2025-06-18T14:27:32.581Z [INFO] user-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.141.100 - RequestID: 0rizbuepoclm +2025-06-18T14:27:32.681Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 500 - Response time: 308ms - IP: 192.168.85.229 - User: user_1073 - RequestID: 1oln0t0dvog +2025-06-18T14:27:32.781Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 404 - Response time: 1134ms - IP: 192.168.1.152 - User: user_1032 - RequestID: 8sou9hxd6ux +2025-06-18T14:27:32.881Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 39ms - Rows affected: 26 - RequestID: 7ul3geik2ak +2025-06-18T14:27:32.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1081 - IP: 192.168.46.63 - RequestID: b4zovk17v25 +2025-06-18T14:27:33.081Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 203ms - Rows affected: 74 - RequestID: 7kko05gulq9 +2025-06-18T14:27:33.181Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1142ms - IP: 192.168.14.77 - User: user_1061 - RequestID: 982l03k4gp4 +2025-06-18T14:27:33.281Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1535ms - IP: 192.168.235.117 - User: user_1045 - RequestID: w8ilx2dii3 +2025-06-18T14:27:33.381Z [INFO] notification-service - Database UPDATE on payments - Execution time: 403ms - Rows affected: 18 - RequestID: dfg577010p +2025-06-18T14:27:33.481Z [INFO] auth-service - Database SELECT on users - Execution time: 40ms - Rows affected: 75 - RequestID: jp9vvm59gf +2025-06-18T14:27:33.581Z [INFO] notification-service - PUT /api/v1/users - Status: 403 - Response time: 1034ms - IP: 192.168.138.123 - User: user_1094 - RequestID: m42p3lg09ug +2025-06-18T14:27:33.681Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 404 - Response time: 1692ms - IP: 192.168.53.133 - User: user_1086 - RequestID: fskk8ot70yl +2025-06-18T14:27:33.781Z [INFO] user-service - Database UPDATE on payments - Execution time: 68ms - Rows affected: 74 - RequestID: ttt4sfcg13m +2025-06-18T14:27:33.881Z [INFO] notification-service - Database INSERT on sessions - Execution time: 226ms - Rows affected: 89 - RequestID: 6g71zinkj97 +2025-06-18T14:27:33.981Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1305ms - IP: 192.168.33.76 - User: user_1048 - RequestID: fnloejlusro +2025-06-18T14:27:34.081Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1721ms - IP: 192.168.167.32 - User: user_1083 - RequestID: e2jqc8bjin +2025-06-18T14:27:34.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.44.5 - RequestID: dsulrfempwc +2025-06-18T14:27:34.281Z [INFO] auth-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.44.5 - RequestID: sscj93t78w +2025-06-18T14:27:34.381Z [DEBUG] order-service - Auth event: logout - User: user_1026 - IP: 192.168.79.116 - RequestID: tyvfkpj03s +2025-06-18T14:27:34.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 783ms - RequestID: ky7a4wqc9b8 +2025-06-18T14:27:34.581Z [TRACE] auth-service - Operation: payment_processed - Processing time: 362ms - RequestID: 6qxb9bp111l +2025-06-18T14:27:34.681Z [TRACE] user-service - Operation: cache_hit - Processing time: 701ms - RequestID: 2lqyu2xckff +2025-06-18T14:27:34.781Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 404 - Response time: 1534ms - IP: 192.168.31.117 - User: user_1041 - RequestID: no40bw7t1do +2025-06-18T14:27:34.881Z [DEBUG] order-service - Auth event: login_success - User: user_1050 - IP: 192.168.68.128 - RequestID: 8xm226ubi1q +2025-06-18T14:27:34.981Z [INFO] notification-service - Operation: cache_hit - Processing time: 111ms - RequestID: 5v0wfk36ky +2025-06-18T14:27:35.081Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 17ms - IP: 192.168.10.184 - User: user_1079 - RequestID: m7a9mnlazul +2025-06-18T14:27:35.181Z [INFO] payment-service - Operation: inventory_updated - Processing time: 998ms - RequestID: hugmq5pewz5 +2025-06-18T14:27:35.281Z [INFO] notification-service - Database UPDATE on products - Execution time: 279ms - Rows affected: 64 - RequestID: gxbs068saju +2025-06-18T14:27:35.381Z [TRACE] order-service - Database SELECT on orders - Execution time: 241ms - Rows affected: 28 - RequestID: 7y1sqpvmg9s +2025-06-18T14:27:35.481Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1472ms - IP: 192.168.14.77 - User: user_1007 - RequestID: xgt7efnkjv +2025-06-18T14:27:35.581Z [DEBUG] user-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.100.240 - RequestID: otscdzlzrk +2025-06-18T14:27:35.681Z [TRACE] notification-service - Operation: cache_miss - Processing time: 781ms - RequestID: pmhozejpjcj +2025-06-18T14:27:35.781Z [TRACE] order-service - Auth event: logout - User: user_1053 - IP: 192.168.144.38 - RequestID: p0b64jezx2n +2025-06-18T14:27:35.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 885ms - RequestID: tj4a8m8ght +2025-06-18T14:27:35.981Z [INFO] order-service - Database INSERT on orders - Execution time: 11ms - Rows affected: 4 - RequestID: dge58to89uo +2025-06-18T14:27:36.081Z [DEBUG] user-service - Database DELETE on payments - Execution time: 136ms - Rows affected: 97 - RequestID: dt2xcf5uo4l +2025-06-18T14:27:36.181Z [TRACE] notification-service - PUT /api/v1/payments - Status: 401 - Response time: 553ms - IP: 192.168.187.199 - User: user_1084 - RequestID: eh0c9tgutd9 +2025-06-18T14:27:36.281Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 200 - Response time: 985ms - IP: 192.168.11.60 - User: user_1010 - RequestID: 5hjc4g6pi7p +2025-06-18T14:27:36.381Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 397ms - Rows affected: 81 - RequestID: zpdofq8tkzo +2025-06-18T14:27:36.481Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1574ms - IP: 192.168.10.184 - User: user_1035 - RequestID: r0t9drrpytn +2025-06-18T14:27:36.581Z [INFO] payment-service - DELETE /api/v1/payments - Status: 200 - Response time: 106ms - IP: 192.168.81.206 - User: user_1084 - RequestID: wse15hcuksl +2025-06-18T14:27:36.681Z [DEBUG] order-service - Operation: notification_queued - Processing time: 78ms - RequestID: 3u8ywjfr1d7 +2025-06-18T14:27:36.781Z [INFO] order-service - GET /api/v1/orders - Status: 200 - Response time: 615ms - IP: 192.168.30.79 - User: user_1030 - RequestID: egz0a72yo7 +2025-06-18T14:27:36.881Z [TRACE] order-service - Database INSERT on payments - Execution time: 272ms - Rows affected: 38 - RequestID: 7137cmexslv +2025-06-18T14:27:36.981Z [INFO] payment-service - DELETE /api/v1/users - Status: 401 - Response time: 1497ms - IP: 192.168.97.87 - User: user_1084 - RequestID: 6dv3ll0lyfm +2025-06-18T14:27:37.081Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 894ms - RequestID: bgjq2bxg78p +2025-06-18T14:27:37.181Z [INFO] notification-service - Operation: cache_miss - Processing time: 114ms - RequestID: lhj55rginn +2025-06-18T14:27:37.281Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 799ms - RequestID: 45vxdqtjy2l +2025-06-18T14:27:37.381Z [TRACE] user-service - PUT /api/v1/users - Status: 403 - Response time: 714ms - IP: 192.168.11.60 - User: user_1083 - RequestID: 6w5r3uckaco +2025-06-18T14:27:37.481Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.100.240 - RequestID: b870xygz9hm +2025-06-18T14:27:37.581Z [DEBUG] user-service - Auth event: logout - User: user_1019 - IP: 192.168.1.152 - RequestID: 05s07or3mjae +2025-06-18T14:27:37.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.32.38 - RequestID: adomwqg7me9 +2025-06-18T14:27:37.781Z [INFO] user-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.28.146 - RequestID: zubilvhwpc +2025-06-18T14:27:37.881Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 10ms - Rows affected: 62 - RequestID: s4kt5dysd5b +2025-06-18T14:27:37.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1054 - IP: 192.168.14.77 - RequestID: ba8yp0h2x55 +2025-06-18T14:27:38.081Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 92ms - Rows affected: 66 - RequestID: h24lgn85nec +2025-06-18T14:27:38.181Z [DEBUG] user-service - Operation: payment_processed - Processing time: 135ms - RequestID: omvpbroa06 +2025-06-18T14:27:38.281Z [INFO] order-service - Auth event: logout - User: user_1051 - IP: 192.168.133.7 - RequestID: 6znqtqxfjzt +2025-06-18T14:27:38.381Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 401 - Response time: 613ms - IP: 192.168.30.79 - User: user_1019 - RequestID: gr2ci5n513h +2025-06-18T14:27:38.481Z [INFO] order-service - Operation: cache_miss - Processing time: 149ms - RequestID: ueaaewqftys +2025-06-18T14:27:38.581Z [INFO] auth-service - PUT /api/v1/users - Status: 403 - Response time: 1138ms - IP: 192.168.242.165 - User: user_1072 - RequestID: 7xl3h88k5xo +2025-06-18T14:27:38.681Z [INFO] payment-service - Database UPDATE on products - Execution time: 116ms - Rows affected: 83 - RequestID: 9j383z81s38 +2025-06-18T14:27:38.781Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 411ms - Rows affected: 17 - RequestID: rnv4rlp5ct +2025-06-18T14:27:38.881Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 110ms - Rows affected: 9 - RequestID: 3jfxz1zplln +2025-06-18T14:27:38.981Z [INFO] order-service - Auth event: login_failed - User: user_1038 - IP: 192.168.240.169 - RequestID: mply5vnc4b +2025-06-18T14:27:39.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.13.72 - RequestID: xrunmqsiyln +2025-06-18T14:27:39.181Z [TRACE] user-service - Database SELECT on orders - Execution time: 454ms - Rows affected: 71 - RequestID: nu7qqtke67s +2025-06-18T14:27:39.281Z [INFO] notification-service - Database SELECT on users - Execution time: 38ms - Rows affected: 36 - RequestID: 8nj4jttjvcc +2025-06-18T14:27:39.381Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 384ms - Rows affected: 67 - RequestID: pikcyvfra0j +2025-06-18T14:27:39.481Z [TRACE] auth-service - PATCH /api/v1/users - Status: 503 - Response time: 559ms - IP: 192.168.46.63 - User: user_1099 - RequestID: 6ycg4jn13no +2025-06-18T14:27:39.581Z [TRACE] order-service - Database DELETE on products - Execution time: 176ms - Rows affected: 6 - RequestID: kmaqt6n4pkn +2025-06-18T14:27:39.681Z [TRACE] payment-service - Auth event: logout - User: user_1042 - IP: 192.168.158.144 - RequestID: 6cda5gwni4t +2025-06-18T14:27:39.781Z [TRACE] inventory-service - Auth event: login_failed - User: user_1072 - IP: 192.168.10.184 - RequestID: a94v0qzffjl +2025-06-18T14:27:39.881Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.36.218 - RequestID: jn77v42632i +2025-06-18T14:27:39.981Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 117ms - RequestID: a6921762maq +2025-06-18T14:27:40.081Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 396ms - Rows affected: 14 - RequestID: irumk2clkfn +2025-06-18T14:27:40.181Z [TRACE] user-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.10.184 - RequestID: wz1msxcuas +2025-06-18T14:27:40.281Z [INFO] user-service - Operation: email_sent - Processing time: 102ms - RequestID: 9quzpshbugq +2025-06-18T14:27:40.381Z [INFO] payment-service - Database SELECT on products - Execution time: 293ms - Rows affected: 13 - RequestID: 9gtsagbc485 +2025-06-18T14:27:40.481Z [TRACE] user-service - Auth event: logout - User: user_1050 - IP: 192.168.167.32 - RequestID: re1ps0ux1c +2025-06-18T14:27:40.581Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 404 - Response time: 893ms - IP: 192.168.10.184 - User: user_1093 - RequestID: ixe63foufs +2025-06-18T14:27:40.681Z [TRACE] order-service - Operation: cache_miss - Processing time: 319ms - RequestID: zj5c3bjwl3 +2025-06-18T14:27:40.781Z [INFO] notification-service - Database SELECT on payments - Execution time: 166ms - Rows affected: 41 - RequestID: wqv7080tnf8 +2025-06-18T14:27:40.881Z [INFO] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 1465ms - IP: 192.168.44.5 - User: user_1095 - RequestID: 0kxcf2zxf4el +2025-06-18T14:27:40.981Z [INFO] notification-service - Operation: notification_queued - Processing time: 196ms - RequestID: zvb0kn4ab0k +2025-06-18T14:27:41.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 305ms - RequestID: u4ce4dsgu5l +2025-06-18T14:27:41.181Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 914ms - RequestID: z6fe9egcr1 +2025-06-18T14:27:41.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1004 - IP: 192.168.10.184 - RequestID: lsllepknd2g +2025-06-18T14:27:41.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1098 - IP: 192.168.68.158 - RequestID: qc952bf1wg +2025-06-18T14:27:41.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1006 - IP: 192.168.30.79 - RequestID: e3ig7n05uvm +2025-06-18T14:27:41.581Z [TRACE] order-service - Operation: cache_miss - Processing time: 394ms - RequestID: n3k6hywrzm +2025-06-18T14:27:41.681Z [TRACE] user-service - Auth event: login_success - User: user_1004 - IP: 192.168.187.199 - RequestID: q5l6tx1hine +2025-06-18T14:27:41.781Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 244ms - Rows affected: 61 - RequestID: r95o4l2tpaq +2025-06-18T14:27:41.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 544ms - RequestID: fptp2s67oqa +2025-06-18T14:27:41.981Z [TRACE] inventory-service - GET /api/v1/payments - Status: 404 - Response time: 867ms - IP: 192.168.46.63 - User: user_1027 - RequestID: 4pmvyoqhtli +2025-06-18T14:27:42.081Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 500 - Response time: 286ms - IP: 192.168.174.114 - User: user_1078 - RequestID: 6bv51rqjfzq +2025-06-18T14:27:42.181Z [DEBUG] order-service - Operation: email_sent - Processing time: 633ms - RequestID: 4kh41r7ocuh +2025-06-18T14:27:42.281Z [INFO] inventory-service - Operation: order_created - Processing time: 772ms - RequestID: qf3cb42eocj +2025-06-18T14:27:42.381Z [TRACE] user-service - Auth event: login_failed - User: user_1032 - IP: 192.168.13.72 - RequestID: urom6k7c0t +2025-06-18T14:27:42.481Z [TRACE] auth-service - Operation: payment_processed - Processing time: 582ms - RequestID: 1c8cn8o73oi +2025-06-18T14:27:42.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 437ms - RequestID: 2r9j3mkqhem +2025-06-18T14:27:42.681Z [INFO] notification-service - Auth event: login_failed - User: user_1068 - IP: 192.168.100.240 - RequestID: tdeb2s23tig +2025-06-18T14:27:42.781Z [DEBUG] auth-service - Auth event: logout - User: user_1009 - IP: 192.168.133.7 - RequestID: dcjkfknqh1r +2025-06-18T14:27:42.881Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 39ms - Rows affected: 16 - RequestID: rseys4exz +2025-06-18T14:27:42.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1095 - IP: 192.168.68.128 - RequestID: fn4fok7yt6e +2025-06-18T14:27:43.081Z [INFO] payment-service - Auth event: logout - User: user_1096 - IP: 192.168.232.72 - RequestID: 9jrgwzfxpig +2025-06-18T14:27:43.181Z [TRACE] payment-service - Operation: email_sent - Processing time: 482ms - RequestID: 4xaigf75cpv +2025-06-18T14:27:43.281Z [INFO] order-service - Database SELECT on users - Execution time: 272ms - Rows affected: 79 - RequestID: y266f7pn79 +2025-06-18T14:27:43.381Z [INFO] notification-service - Database SELECT on orders - Execution time: 232ms - Rows affected: 64 - RequestID: nnckwlhyn5 +2025-06-18T14:27:43.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1026 - IP: 192.168.28.146 - RequestID: w4xh3xif9uh +2025-06-18T14:27:43.581Z [INFO] auth-service - Auth event: logout - User: user_1024 - IP: 192.168.1.152 - RequestID: 93wlxmbsgo7 +2025-06-18T14:27:43.681Z [INFO] user-service - Database INSERT on sessions - Execution time: 38ms - Rows affected: 23 - RequestID: 6echc7d9pxi +2025-06-18T14:27:43.781Z [INFO] inventory-service - Auth event: password_change - User: user_1056 - IP: 192.168.187.199 - RequestID: ayudi29jvx6 +2025-06-18T14:27:43.881Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 130ms - Rows affected: 34 - RequestID: pjtx7hjae8 +2025-06-18T14:27:43.981Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 437ms - Rows affected: 74 - RequestID: zwju4gcwt27 +2025-06-18T14:27:44.081Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 357ms - IP: 192.168.181.225 - User: user_1080 - RequestID: b4qnum05u8g +2025-06-18T14:27:44.181Z [INFO] order-service - POST /api/v1/users - Status: 200 - Response time: 19ms - IP: 192.168.187.199 - User: user_1081 - RequestID: 7kdagnpwof +2025-06-18T14:27:44.281Z [INFO] payment-service - Auth event: login_success - User: user_1017 - IP: 192.168.235.117 - RequestID: ugd4y3m346 +2025-06-18T14:27:44.381Z [INFO] user-service - Database DELETE on payments - Execution time: 434ms - Rows affected: 71 - RequestID: mbklksdvor +2025-06-18T14:27:44.481Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 141ms - Rows affected: 41 - RequestID: ba03s57rn5r +2025-06-18T14:27:44.581Z [DEBUG] user-service - Auth event: logout - User: user_1054 - IP: 192.168.187.199 - RequestID: itemawwk7tf +2025-06-18T14:27:44.681Z [DEBUG] order-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.31.117 - RequestID: azin8itjbj +2025-06-18T14:27:44.781Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 196ms - RequestID: vrep5k49s1r +2025-06-18T14:27:44.881Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 53ms - Rows affected: 0 - RequestID: lcssm2i9xn8 +2025-06-18T14:27:44.981Z [INFO] inventory-service - Operation: email_sent - Processing time: 447ms - RequestID: d3kefgl9zg7 +2025-06-18T14:27:45.081Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 398ms - RequestID: 6xrocbwgccm +2025-06-18T14:27:45.181Z [INFO] payment-service - Operation: email_sent - Processing time: 741ms - RequestID: luv5j8xzjzr +2025-06-18T14:27:45.281Z [INFO] order-service - Database INSERT on orders - Execution time: 91ms - Rows affected: 80 - RequestID: xwjwzrqzbvf +2025-06-18T14:27:45.381Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 1012ms - RequestID: 0wmsfs31prpj +2025-06-18T14:27:45.481Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 277ms - Rows affected: 64 - RequestID: rnlyqwjrpln +2025-06-18T14:27:45.581Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 500 - Response time: 1656ms - IP: 192.168.79.143 - User: user_1055 - RequestID: zg2dxp1k3th +2025-06-18T14:27:45.681Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 401 - Response time: 1732ms - IP: 192.168.68.128 - User: user_1037 - RequestID: y85xqrbqkfe +2025-06-18T14:27:45.781Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 1778ms - IP: 192.168.64.33 - User: user_1098 - RequestID: 905d0a3cwrr +2025-06-18T14:27:45.881Z [DEBUG] user-service - PUT /api/v1/payments - Status: 201 - Response time: 180ms - IP: 192.168.11.60 - User: user_1003 - RequestID: ckcqv935exo +2025-06-18T14:27:45.981Z [DEBUG] user-service - Operation: cache_miss - Processing time: 338ms - RequestID: cp2s8frvwlv +2025-06-18T14:27:46.081Z [INFO] user-service - Operation: webhook_sent - Processing time: 735ms - RequestID: 6t4jzsf3wxe +2025-06-18T14:27:46.181Z [INFO] payment-service - Operation: notification_queued - Processing time: 991ms - RequestID: 6msnxwy3nga +2025-06-18T14:27:46.281Z [INFO] auth-service - Database DELETE on payments - Execution time: 248ms - Rows affected: 57 - RequestID: 6ha9773anpr +2025-06-18T14:27:46.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 316ms - RequestID: pslvd60ikd +2025-06-18T14:27:46.481Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.11.60 - RequestID: g4jt98rdxn +2025-06-18T14:27:46.581Z [TRACE] notification-service - Auth event: login_success - User: user_1009 - IP: 192.168.227.77 - RequestID: qikth5y4zt +2025-06-18T14:27:46.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.68.128 - RequestID: dbwdhotqu5o +2025-06-18T14:27:46.781Z [INFO] inventory-service - Database INSERT on users - Execution time: 364ms - Rows affected: 34 - RequestID: mvmfdr8cyxa +2025-06-18T14:27:46.881Z [INFO] payment-service - Operation: payment_processed - Processing time: 939ms - RequestID: cee0qb4w8sw +2025-06-18T14:27:46.981Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 429ms - Rows affected: 41 - RequestID: 38djl4ohwpe +2025-06-18T14:27:47.081Z [INFO] auth-service - Auth event: login_failed - User: user_1083 - IP: 192.168.97.87 - RequestID: 9kce0l9v2n6 +2025-06-18T14:27:47.181Z [INFO] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 905ms - IP: 192.168.104.37 - User: user_1094 - RequestID: gh8wm1ffng +2025-06-18T14:27:47.281Z [INFO] notification-service - Database UPDATE on users - Execution time: 487ms - Rows affected: 68 - RequestID: sltsybihdke +2025-06-18T14:27:47.381Z [INFO] order-service - Database DELETE on products - Execution time: 389ms - Rows affected: 62 - RequestID: 0l0rwa7e98un +2025-06-18T14:27:47.481Z [TRACE] inventory-service - Operation: order_created - Processing time: 1042ms - RequestID: dyykvvmnhzh +2025-06-18T14:27:47.581Z [INFO] order-service - Database DELETE on payments - Execution time: 15ms - Rows affected: 33 - RequestID: 9dtorviks07 +2025-06-18T14:27:47.681Z [INFO] order-service - Database INSERT on payments - Execution time: 163ms - Rows affected: 16 - RequestID: qu4sflk9p5 +2025-06-18T14:27:47.781Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1062ms - IP: 192.168.181.225 - User: user_1008 - RequestID: rtv597cswn +2025-06-18T14:27:47.881Z [TRACE] inventory-service - Auth event: logout - User: user_1095 - IP: 192.168.227.233 - RequestID: drk56svqjzw +2025-06-18T14:27:47.981Z [TRACE] notification-service - PUT /api/v1/orders - Status: 503 - Response time: 1672ms - IP: 192.168.159.94 - User: user_1070 - RequestID: 2jtbnoevlzs +2025-06-18T14:27:48.081Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 201ms - Rows affected: 85 - RequestID: dxnocq6qxai +2025-06-18T14:27:48.181Z [TRACE] auth-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.30.79 - RequestID: r3utpgcbmod +2025-06-18T14:27:48.281Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 404 - Response time: 1922ms - IP: 192.168.30.79 - User: user_1009 - RequestID: 810uke3vh7p +2025-06-18T14:27:48.381Z [TRACE] notification-service - POST /api/v1/users - Status: 201 - Response time: 578ms - IP: 192.168.138.123 - User: user_1072 - RequestID: h29djl78z2v +2025-06-18T14:27:48.481Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 361ms - Rows affected: 55 - RequestID: uj9h66403s9 +2025-06-18T14:27:48.581Z [DEBUG] user-service - Auth event: password_change - User: user_1064 - IP: 192.168.31.117 - RequestID: h8stuuih0fv +2025-06-18T14:27:48.681Z [INFO] inventory-service - GET /api/v1/payments - Status: 400 - Response time: 1338ms - IP: 192.168.30.79 - User: user_1036 - RequestID: rcjzlzxdr3s +2025-06-18T14:27:48.781Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 216ms - Rows affected: 20 - RequestID: 83ur63qf9kx +2025-06-18T14:27:48.881Z [INFO] payment-service - GET /api/v1/payments - Status: 503 - Response time: 138ms - IP: 192.168.196.226 - User: user_1097 - RequestID: qg98we6kubs +2025-06-18T14:27:48.981Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 343ms - Rows affected: 98 - RequestID: lh7x5929bj +2025-06-18T14:27:49.081Z [INFO] inventory-service - Auth event: login_success - User: user_1036 - IP: 192.168.14.77 - RequestID: kqnpwli967c +2025-06-18T14:27:49.181Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1713ms - IP: 192.168.113.218 - User: user_1033 - RequestID: sezewvjvpn +2025-06-18T14:27:49.281Z [INFO] notification-service - Operation: notification_queued - Processing time: 166ms - RequestID: yci8b449zeb +2025-06-18T14:27:49.381Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 772ms - RequestID: cxi5wmp8lll +2025-06-18T14:27:49.481Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 200 - Response time: 316ms - IP: 192.168.229.123 - User: user_1083 - RequestID: 28lat171wyg +2025-06-18T14:27:49.581Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 238ms - Rows affected: 77 - RequestID: gn5ktlnhvcw +2025-06-18T14:27:49.681Z [INFO] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 1383ms - IP: 192.168.97.87 - User: user_1008 - RequestID: mztig4r1xm +2025-06-18T14:27:49.781Z [TRACE] user-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.170.215 - RequestID: eknu9fkhu16 +2025-06-18T14:27:49.881Z [INFO] notification-service - Database UPDATE on payments - Execution time: 312ms - Rows affected: 71 - RequestID: 0299uf009ya5 +2025-06-18T14:27:49.981Z [INFO] inventory-service - Database INSERT on orders - Execution time: 251ms - Rows affected: 31 - RequestID: 01p26n7debhb +2025-06-18T14:27:50.081Z [DEBUG] order-service - Operation: notification_queued - Processing time: 932ms - RequestID: z8iztm9m00r +2025-06-18T14:27:50.181Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 887ms - RequestID: uejilgn9r2 +2025-06-18T14:27:50.281Z [INFO] auth-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.235.117 - RequestID: axi3temgger +2025-06-18T14:27:50.381Z [TRACE] user-service - Operation: email_sent - Processing time: 303ms - RequestID: u3pzzjobt6d +2025-06-18T14:27:50.481Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 83ms - IP: 192.168.30.79 - User: user_1071 - RequestID: kcqwxfm41z +2025-06-18T14:27:50.581Z [INFO] order-service - POST /api/v1/payments - Status: 502 - Response time: 1612ms - IP: 192.168.53.133 - User: user_1030 - RequestID: cwvhvhmhjdn +2025-06-18T14:27:50.681Z [TRACE] payment-service - Auth event: login_success - User: user_1015 - IP: 192.168.36.218 - RequestID: 2nqb9d66pnh +2025-06-18T14:27:50.781Z [INFO] user-service - PATCH /api/v1/payments - Status: 400 - Response time: 1956ms - IP: 192.168.104.37 - User: user_1084 - RequestID: ul9xwcpwv1 +2025-06-18T14:27:50.881Z [TRACE] user-service - PUT /api/v1/users - Status: 200 - Response time: 1578ms - IP: 192.168.79.143 - User: user_1046 - RequestID: knkqsqx70br +2025-06-18T14:27:50.981Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1912ms - IP: 192.168.30.79 - User: user_1088 - RequestID: 30fc6y8mixw +2025-06-18T14:27:51.081Z [DEBUG] inventory-service - Operation: order_created - Processing time: 810ms - RequestID: nljex4dvoxa +2025-06-18T14:27:51.181Z [TRACE] auth-service - Auth event: password_change - User: user_1087 - IP: 192.168.81.206 - RequestID: vzcsdyxxdag +2025-06-18T14:27:51.281Z [INFO] auth-service - Operation: order_created - Processing time: 73ms - RequestID: 2hhtg3f5tjv +2025-06-18T14:27:51.381Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 200 - Response time: 1687ms - IP: 192.168.229.123 - User: user_1080 - RequestID: pnodylwne9a +2025-06-18T14:27:51.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1041 - IP: 192.168.36.218 - RequestID: npr9klrrbwd +2025-06-18T14:27:51.581Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 12ms - Rows affected: 88 - RequestID: aev5ackpqs +2025-06-18T14:27:51.681Z [INFO] notification-service - Database UPDATE on products - Execution time: 80ms - Rows affected: 84 - RequestID: nyso0yxnuq +2025-06-18T14:27:51.781Z [TRACE] auth-service - Auth event: login_success - User: user_1017 - IP: 192.168.159.94 - RequestID: n1hbju6305r +2025-06-18T14:27:51.881Z [TRACE] order-service - Database INSERT on users - Execution time: 120ms - Rows affected: 82 - RequestID: 85uu7exvfb +2025-06-18T14:27:51.981Z [INFO] inventory-service - Database UPDATE on users - Execution time: 309ms - Rows affected: 71 - RequestID: 8r1gfqlc1y8 +2025-06-18T14:27:52.081Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 502 - Response time: 934ms - IP: 192.168.187.199 - User: user_1036 - RequestID: t6e4e4snst +2025-06-18T14:27:52.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 544ms - RequestID: df6qni4jw8a +2025-06-18T14:27:52.281Z [DEBUG] order-service - Database DELETE on orders - Execution time: 294ms - Rows affected: 3 - RequestID: v36pxsouseo +2025-06-18T14:27:52.381Z [INFO] payment-service - POST /api/v1/users - Status: 200 - Response time: 1436ms - IP: 192.168.79.116 - User: user_1041 - RequestID: xkek2sr645 +2025-06-18T14:27:52.481Z [DEBUG] auth-service - Auth event: login_failed - User: user_1074 - IP: 192.168.194.41 - RequestID: rgbis3872bm +2025-06-18T14:27:52.581Z [INFO] payment-service - Auth event: login_success - User: user_1047 - IP: 192.168.211.72 - RequestID: 1bpk6z1yau2 +2025-06-18T14:27:52.681Z [INFO] notification-service - Auth event: password_change - User: user_1037 - IP: 192.168.10.184 - RequestID: zurn6puwj7 +2025-06-18T14:27:52.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1085 - IP: 192.168.13.72 - RequestID: l99p57ponc +2025-06-18T14:27:52.881Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 443ms - Rows affected: 53 - RequestID: umtunz5nka +2025-06-18T14:27:52.981Z [TRACE] auth-service - PUT /api/v1/users - Status: 201 - Response time: 752ms - IP: 192.168.189.103 - User: user_1079 - RequestID: xazsauivqfn +2025-06-18T14:27:53.081Z [DEBUG] order-service - GET /api/v1/payments - Status: 201 - Response time: 1501ms - IP: 192.168.247.134 - User: user_1026 - RequestID: mkq19db3cpi +2025-06-18T14:27:53.181Z [INFO] order-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.104.37 - RequestID: 9rv9xb3xl7a +2025-06-18T14:27:53.281Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 404 - Response time: 1233ms - IP: 192.168.189.103 - User: user_1080 - RequestID: f9j6nfr8u8p +2025-06-18T14:27:53.381Z [INFO] notification-service - Auth event: logout - User: user_1035 - IP: 192.168.229.123 - RequestID: ezf416rhlh6 +2025-06-18T14:27:53.481Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 235ms - Rows affected: 6 - RequestID: 66f3agyiiee +2025-06-18T14:27:53.581Z [INFO] notification-service - Auth event: login_failed - User: user_1001 - IP: 192.168.196.226 - RequestID: lshxsb8d2i +2025-06-18T14:27:53.681Z [DEBUG] notification-service - Database SELECT on products - Execution time: 137ms - Rows affected: 57 - RequestID: jr0facgl9gi +2025-06-18T14:27:53.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.64.33 - RequestID: vpqohqz4sjo +2025-06-18T14:27:53.881Z [INFO] user-service - Database UPDATE on products - Execution time: 133ms - Rows affected: 54 - RequestID: lm07mquvfmi +2025-06-18T14:27:53.981Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 501ms - RequestID: y2j807ro9oc +2025-06-18T14:27:54.081Z [TRACE] payment-service - Auth event: logout - User: user_1084 - IP: 192.168.100.240 - RequestID: my68uq4vzzl +2025-06-18T14:27:54.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 1024ms - RequestID: dnxtj7vsiid +2025-06-18T14:27:54.281Z [INFO] user-service - Database SELECT on payments - Execution time: 107ms - Rows affected: 85 - RequestID: vzy2qgsobho +2025-06-18T14:27:54.381Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 145ms - IP: 192.168.232.72 - User: user_1081 - RequestID: 8osf91d0ki +2025-06-18T14:27:54.481Z [TRACE] order-service - Auth event: password_change - User: user_1005 - IP: 192.168.14.77 - RequestID: xk0jbxiv9es +2025-06-18T14:27:54.581Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 403 - Response time: 1469ms - IP: 192.168.11.60 - User: user_1032 - RequestID: xaaylqqs9j +2025-06-18T14:27:54.681Z [INFO] user-service - GET /api/v1/users - Status: 404 - Response time: 1959ms - IP: 192.168.68.158 - User: user_1038 - RequestID: ssalx84ysnl +2025-06-18T14:27:54.781Z [TRACE] order-service - Operation: order_created - Processing time: 699ms - RequestID: qkbrh38ai89 +2025-06-18T14:27:54.881Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 401 - Response time: 271ms - IP: 192.168.167.32 - User: user_1023 - RequestID: 66tw8bb9dhc +2025-06-18T14:27:54.981Z [DEBUG] payment-service - Auth event: logout - User: user_1035 - IP: 192.168.144.38 - RequestID: iig5muzy02 +2025-06-18T14:27:55.081Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 687ms - RequestID: encvqme8snd +2025-06-18T14:27:55.181Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 105ms - Rows affected: 34 - RequestID: daaetq7exz +2025-06-18T14:27:55.281Z [DEBUG] payment-service - Database SELECT on products - Execution time: 165ms - Rows affected: 57 - RequestID: mjb3u6z34xk +2025-06-18T14:27:55.381Z [INFO] order-service - Database SELECT on products - Execution time: 408ms - Rows affected: 34 - RequestID: f41n1m66lan +2025-06-18T14:27:55.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.46.63 - RequestID: u60jep0vpr +2025-06-18T14:27:55.581Z [TRACE] order-service - Operation: cache_hit - Processing time: 343ms - RequestID: 8s4w6o102h8 +2025-06-18T14:27:55.681Z [INFO] payment-service - Database DELETE on orders - Execution time: 76ms - Rows affected: 67 - RequestID: z1ku8jim1vq +2025-06-18T14:27:55.781Z [DEBUG] payment-service - Auth event: login_failed - User: user_1065 - IP: 192.168.181.225 - RequestID: 4jjwwxrbjrr +2025-06-18T14:27:55.881Z [INFO] inventory-service - Database SELECT on products - Execution time: 286ms - Rows affected: 81 - RequestID: dpmz5otn2yk +2025-06-18T14:27:55.981Z [INFO] auth-service - Database SELECT on products - Execution time: 338ms - Rows affected: 21 - RequestID: 8nruj5mtq35 +2025-06-18T14:27:56.081Z [INFO] payment-service - Operation: email_sent - Processing time: 436ms - RequestID: hifas543tvb +2025-06-18T14:27:56.181Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 4ms - Rows affected: 0 - RequestID: cusq5zc0hz7 +2025-06-18T14:27:56.281Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 459ms - Rows affected: 21 - RequestID: grqsywbrjpq +2025-06-18T14:27:56.381Z [INFO] order-service - DELETE /api/v1/inventory - Status: 401 - Response time: 591ms - IP: 192.168.28.146 - User: user_1071 - RequestID: c4ofapwj48a +2025-06-18T14:27:56.481Z [INFO] auth-service - Auth event: login_failed - User: user_1068 - IP: 192.168.158.144 - RequestID: hej4o958f7r +2025-06-18T14:27:56.581Z [INFO] auth-service - Database UPDATE on orders - Execution time: 469ms - Rows affected: 18 - RequestID: y4ggufcqda9 +2025-06-18T14:27:56.681Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 445ms - RequestID: qc8n1pxoze +2025-06-18T14:27:56.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1025 - IP: 192.168.170.215 - RequestID: bg8flxpq4k9 +2025-06-18T14:27:56.881Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1011 - IP: 192.168.68.158 - RequestID: pgdxm80krc +2025-06-18T14:27:56.981Z [INFO] user-service - PATCH /api/v1/inventory - Status: 201 - Response time: 584ms - IP: 192.168.97.87 - User: user_1018 - RequestID: e21p56dlbde +2025-06-18T14:27:57.081Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 401 - Response time: 625ms - IP: 192.168.10.184 - User: user_1032 - RequestID: o088u03tmll +2025-06-18T14:27:57.181Z [INFO] notification-service - Operation: payment_processed - Processing time: 469ms - RequestID: jtxnssends +2025-06-18T14:27:57.281Z [DEBUG] user-service - Auth event: login_success - User: user_1091 - IP: 192.168.28.146 - RequestID: k6pieypg06 +2025-06-18T14:27:57.381Z [TRACE] order-service - Auth event: login_success - User: user_1086 - IP: 192.168.232.72 - RequestID: j70aznpew9 +2025-06-18T14:27:57.481Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 200 - Response time: 1488ms - IP: 192.168.240.169 - User: user_1062 - RequestID: y4bqgf36u5 +2025-06-18T14:27:57.581Z [DEBUG] payment-service - Database DELETE on users - Execution time: 16ms - Rows affected: 88 - RequestID: ld2wnv58pt +2025-06-18T14:27:57.681Z [INFO] notification-service - PATCH /api/v1/payments - Status: 400 - Response time: 609ms - IP: 192.168.104.37 - User: user_1044 - RequestID: eb7og6jpxhf +2025-06-18T14:27:57.781Z [TRACE] order-service - Database SELECT on products - Execution time: 410ms - Rows affected: 84 - RequestID: bd6csn7eafu +2025-06-18T14:27:57.881Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 201 - Response time: 1570ms - IP: 192.168.64.33 - User: user_1069 - RequestID: 5o6rkgogj3 +2025-06-18T14:27:57.981Z [TRACE] user-service - PATCH /api/v1/payments - Status: 201 - Response time: 1948ms - IP: 192.168.11.60 - User: user_1089 - RequestID: tuhznzuefos +2025-06-18T14:27:58.081Z [INFO] payment-service - Database SELECT on orders - Execution time: 494ms - Rows affected: 59 - RequestID: nel48dfzyk +2025-06-18T14:27:58.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1007 - IP: 192.168.11.60 - RequestID: i27at7hi5d +2025-06-18T14:27:58.281Z [INFO] auth-service - Auth event: login_success - User: user_1024 - IP: 192.168.46.63 - RequestID: pj1px3fljns +2025-06-18T14:27:58.381Z [INFO] notification-service - Database INSERT on orders - Execution time: 360ms - Rows affected: 14 - RequestID: vzev41mb86 +2025-06-18T14:27:58.481Z [TRACE] order-service - Auth event: logout - User: user_1028 - IP: 192.168.79.143 - RequestID: xwv9ceglujl +2025-06-18T14:27:58.581Z [INFO] order-service - Database UPDATE on payments - Execution time: 386ms - Rows affected: 66 - RequestID: 68n5qv2olr8 +2025-06-18T14:27:58.681Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 115ms - RequestID: fh9qms0pss8 +2025-06-18T14:27:58.781Z [INFO] payment-service - Database SELECT on payments - Execution time: 154ms - Rows affected: 56 - RequestID: 51pfo3zw9h6 +2025-06-18T14:27:58.881Z [TRACE] order-service - PUT /api/v1/orders - Status: 201 - Response time: 423ms - IP: 192.168.232.72 - User: user_1071 - RequestID: cbyd17oodyb +2025-06-18T14:27:58.981Z [INFO] user-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.159.94 - RequestID: q38u3fwth3 +2025-06-18T14:27:59.081Z [INFO] notification-service - Operation: webhook_sent - Processing time: 824ms - RequestID: 7l96zqyt3j +2025-06-18T14:27:59.181Z [INFO] payment-service - Auth event: logout - User: user_1009 - IP: 192.168.167.32 - RequestID: 62kvrvvlsd6 +2025-06-18T14:27:59.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.11.60 - RequestID: 653gi96gw0b +2025-06-18T14:27:59.381Z [INFO] payment-service - Database DELETE on users - Execution time: 265ms - Rows affected: 60 - RequestID: s2quxrci3qj +2025-06-18T14:27:59.481Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 168ms - Rows affected: 28 - RequestID: uh4cu7sldqf +2025-06-18T14:27:59.581Z [INFO] inventory-service - PUT /api/v1/payments - Status: 403 - Response time: 383ms - IP: 192.168.170.215 - User: user_1020 - RequestID: 99ckmn64a5h +2025-06-18T14:27:59.681Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 604ms - RequestID: 2kr3exms6za +2025-06-18T14:27:59.781Z [TRACE] auth-service - Database DELETE on orders - Execution time: 495ms - Rows affected: 90 - RequestID: i7w2sm5jzfg +2025-06-18T14:27:59.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1025 - IP: 192.168.240.169 - RequestID: aj9ltoeov4t +2025-06-18T14:27:59.981Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 651ms - RequestID: 6rya64j1nq9 +2025-06-18T14:28:00.081Z [INFO] order-service - Operation: inventory_updated - Processing time: 616ms - RequestID: 8omwp3d16ll +2025-06-18T14:28:00.181Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1159ms - IP: 192.168.113.218 - User: user_1033 - RequestID: epeugpzcjnf +2025-06-18T14:28:00.281Z [INFO] payment-service - Database SELECT on payments - Execution time: 340ms - Rows affected: 79 - RequestID: 871qyrwz1x +2025-06-18T14:28:00.381Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.14.77 - RequestID: fjk3t2xc19t +2025-06-18T14:28:00.481Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1063ms - IP: 192.168.181.225 - User: user_1082 - RequestID: lnrwvr7ibin +2025-06-18T14:28:00.581Z [INFO] notification-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.227.233 - RequestID: qqjz8wr14ca +2025-06-18T14:28:00.681Z [INFO] inventory-service - Auth event: logout - User: user_1034 - IP: 192.168.141.100 - RequestID: i7omws3y8s9 +2025-06-18T14:28:00.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1032 - IP: 192.168.170.215 - RequestID: epm7kqx7cur +2025-06-18T14:28:00.881Z [INFO] user-service - Database SELECT on payments - Execution time: 156ms - Rows affected: 87 - RequestID: doj6zcgek4t +2025-06-18T14:28:00.981Z [INFO] notification-service - POST /api/v1/inventory - Status: 200 - Response time: 40ms - IP: 192.168.181.225 - User: user_1089 - RequestID: tutwsxi1zf +2025-06-18T14:28:01.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.227.77 - RequestID: 4ph5aiew8a2 +2025-06-18T14:28:01.181Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 625ms - RequestID: 1enjjwrxqcl +2025-06-18T14:28:01.281Z [INFO] order-service - Database INSERT on products - Execution time: 169ms - Rows affected: 72 - RequestID: f86qlom7g7l +2025-06-18T14:28:01.381Z [INFO] inventory-service - Operation: cache_hit - Processing time: 718ms - RequestID: 7v4b5i6v4vk +2025-06-18T14:28:01.481Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1578ms - IP: 192.168.1.152 - User: user_1092 - RequestID: sp1lwje58ek +2025-06-18T14:28:01.581Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 400 - Response time: 636ms - IP: 192.168.1.152 - User: user_1022 - RequestID: oea2a60jrb +2025-06-18T14:28:01.681Z [TRACE] order-service - POST /api/v1/users - Status: 400 - Response time: 1463ms - IP: 192.168.30.79 - User: user_1097 - RequestID: tny4yeu9uqc +2025-06-18T14:28:01.781Z [DEBUG] auth-service - GET /api/v1/payments - Status: 201 - Response time: 295ms - IP: 192.168.68.128 - User: user_1051 - RequestID: mec8od3pvep +2025-06-18T14:28:01.881Z [DEBUG] order-service - Auth event: logout - User: user_1073 - IP: 192.168.79.141 - RequestID: q914fiqypo +2025-06-18T14:28:01.981Z [DEBUG] order-service - Operation: cache_miss - Processing time: 447ms - RequestID: z6uv72b39 +2025-06-18T14:28:02.081Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 403 - Response time: 1475ms - IP: 192.168.159.94 - User: user_1073 - RequestID: ta3qqladzx +2025-06-18T14:28:02.181Z [INFO] notification-service - Auth event: login_success - User: user_1069 - IP: 192.168.11.60 - RequestID: 62emubwyzfi +2025-06-18T14:28:02.281Z [DEBUG] notification-service - PUT /api/v1/users - Status: 403 - Response time: 1014ms - IP: 192.168.138.123 - User: user_1002 - RequestID: i8xr3xkts8e +2025-06-18T14:28:02.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 798ms - RequestID: spfqcoi72l +2025-06-18T14:28:02.481Z [TRACE] order-service - POST /api/v1/payments - Status: 201 - Response time: 1799ms - IP: 192.168.138.123 - User: user_1089 - RequestID: 0ddqdwpfa17u +2025-06-18T14:28:02.581Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 768ms - RequestID: lg6vlzha8f +2025-06-18T14:28:02.681Z [TRACE] order-service - Operation: cache_miss - Processing time: 193ms - RequestID: xigzui651tl +2025-06-18T14:28:02.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.144.38 - RequestID: n6722fs3usk +2025-06-18T14:28:02.881Z [INFO] auth-service - Operation: payment_processed - Processing time: 222ms - RequestID: dmj9hr6q4t4 +2025-06-18T14:28:02.981Z [INFO] payment-service - PUT /api/v1/inventory - Status: 201 - Response time: 617ms - IP: 192.168.32.38 - User: user_1048 - RequestID: v62ojeljj1 +2025-06-18T14:28:03.081Z [TRACE] user-service - Operation: email_sent - Processing time: 511ms - RequestID: wnetlkmdf9 +2025-06-18T14:28:03.181Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 502 - Response time: 494ms - IP: 192.168.181.225 - User: user_1046 - RequestID: 1ks8x3v3jkx +2025-06-18T14:28:03.281Z [INFO] notification-service - Operation: cache_miss - Processing time: 359ms - RequestID: ue22macazak +2025-06-18T14:28:03.381Z [INFO] order-service - Database UPDATE on users - Execution time: 196ms - Rows affected: 37 - RequestID: 8nzsrf4ht5c +2025-06-18T14:28:03.481Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 403ms - Rows affected: 98 - RequestID: kc4o0ufw24b +2025-06-18T14:28:03.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.31.117 - RequestID: tdrct9lnhdo +2025-06-18T14:28:03.681Z [INFO] notification-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.68.158 - RequestID: okynv0o0fll +2025-06-18T14:28:03.781Z [TRACE] payment-service - GET /api/v1/payments - Status: 401 - Response time: 1992ms - IP: 192.168.141.100 - User: user_1081 - RequestID: r36j43cpuab +2025-06-18T14:28:03.881Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 374ms - Rows affected: 63 - RequestID: cprqqntabv +2025-06-18T14:28:03.981Z [INFO] inventory-service - PUT /api/v1/orders - Status: 401 - Response time: 1653ms - IP: 192.168.138.123 - User: user_1071 - RequestID: r8mrp879dzc +2025-06-18T14:28:04.081Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 741ms - RequestID: e9z550t268m +2025-06-18T14:28:04.181Z [INFO] auth-service - Database SELECT on products - Execution time: 455ms - Rows affected: 29 - RequestID: mtzfazwy9v +2025-06-18T14:28:04.281Z [TRACE] auth-service - Operation: notification_queued - Processing time: 74ms - RequestID: noymhtkt2nm +2025-06-18T14:28:04.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.174.114 - RequestID: px486s36o +2025-06-18T14:28:04.481Z [DEBUG] user-service - Operation: notification_queued - Processing time: 500ms - RequestID: vsu9oc5moya +2025-06-18T14:28:04.581Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 307ms - Rows affected: 33 - RequestID: yf6vxqf1wph +2025-06-18T14:28:04.681Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 15ms - Rows affected: 43 - RequestID: 9g5olrxjwpt +2025-06-18T14:28:04.781Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 367ms - Rows affected: 96 - RequestID: wqjds6ub0o +2025-06-18T14:28:04.881Z [TRACE] user-service - Database INSERT on products - Execution time: 381ms - Rows affected: 50 - RequestID: 44x50i6hg7o +2025-06-18T14:28:04.981Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 244ms - Rows affected: 61 - RequestID: 4hcekka03t3 +2025-06-18T14:28:05.081Z [DEBUG] inventory-service - POST /api/v1/users - Status: 200 - Response time: 283ms - IP: 192.168.36.218 - User: user_1027 - RequestID: qoqljuyut9d +2025-06-18T14:28:05.181Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 404 - Response time: 272ms - IP: 192.168.147.171 - User: user_1066 - RequestID: 8mnw45j3xkw +2025-06-18T14:28:05.281Z [TRACE] user-service - Database INSERT on sessions - Execution time: 495ms - Rows affected: 53 - RequestID: cicsvr4lvvl +2025-06-18T14:28:05.381Z [INFO] order-service - Database INSERT on payments - Execution time: 451ms - Rows affected: 89 - RequestID: pr703uc4j2o +2025-06-18T14:28:05.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1022 - IP: 192.168.138.123 - RequestID: kz81iyzm2vd +2025-06-18T14:28:05.581Z [INFO] notification-service - Database UPDATE on products - Execution time: 231ms - Rows affected: 2 - RequestID: jlpm1g1mg7 +2025-06-18T14:28:05.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.13.72 - RequestID: t302e7pthxh +2025-06-18T14:28:05.781Z [INFO] user-service - Database SELECT on products - Execution time: 247ms - Rows affected: 35 - RequestID: cnoh4ukk1eg +2025-06-18T14:28:05.881Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 23ms - IP: 192.168.227.233 - User: user_1044 - RequestID: hh0q2elauj +2025-06-18T14:28:05.981Z [INFO] user-service - Database INSERT on orders - Execution time: 251ms - Rows affected: 95 - RequestID: cmh6ydsowwe +2025-06-18T14:28:06.081Z [INFO] payment-service - Auth event: password_change - User: user_1052 - IP: 192.168.138.123 - RequestID: zhnlhi093bf +2025-06-18T14:28:06.181Z [INFO] notification-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.79.116 - RequestID: jtbfrfw9mhl +2025-06-18T14:28:06.281Z [INFO] order-service - Database UPDATE on users - Execution time: 368ms - Rows affected: 56 - RequestID: 5of1ih7g1u8 +2025-06-18T14:28:06.381Z [INFO] notification-service - Database UPDATE on products - Execution time: 403ms - Rows affected: 91 - RequestID: 40e3tksckr5 +2025-06-18T14:28:06.481Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 145ms - Rows affected: 96 - RequestID: u88ua3wa25i +2025-06-18T14:28:06.581Z [TRACE] notification-service - Operation: cache_hit - Processing time: 140ms - RequestID: jdkitt24o3 +2025-06-18T14:28:06.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.229.123 - RequestID: pqbnmat2hzo +2025-06-18T14:28:06.781Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 503 - Response time: 892ms - IP: 192.168.247.134 - User: user_1079 - RequestID: xgoshl09bc +2025-06-18T14:28:06.881Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 403 - Response time: 1963ms - IP: 192.168.174.114 - User: user_1058 - RequestID: l5gt9l19ok +2025-06-18T14:28:06.981Z [INFO] auth-service - Database INSERT on sessions - Execution time: 113ms - Rows affected: 23 - RequestID: 555qhsc926d +2025-06-18T14:28:07.081Z [INFO] notification-service - Operation: email_sent - Processing time: 732ms - RequestID: cm5ekqep817 +2025-06-18T14:28:07.181Z [INFO] order-service - Database DELETE on users - Execution time: 227ms - Rows affected: 78 - RequestID: dhurc5a0jg +2025-06-18T14:28:07.281Z [DEBUG] inventory-service - Operation: order_created - Processing time: 630ms - RequestID: i7qe8cfgt8 +2025-06-18T14:28:07.381Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 1413ms - IP: 192.168.141.100 - User: user_1060 - RequestID: 23q1vk2ghz9 +2025-06-18T14:28:07.481Z [TRACE] inventory-service - Database INSERT on products - Execution time: 498ms - Rows affected: 66 - RequestID: bibh10hjy +2025-06-18T14:28:07.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.68.158 - RequestID: 50bceg8byzo +2025-06-18T14:28:07.681Z [TRACE] order-service - Operation: order_created - Processing time: 217ms - RequestID: 6l927er1i +2025-06-18T14:28:07.781Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 243ms - RequestID: xp9ojaor43 +2025-06-18T14:28:07.881Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 266ms - Rows affected: 75 - RequestID: e0j4gh7k2me +2025-06-18T14:28:07.981Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 70ms - RequestID: tg5mcevk1vf +2025-06-18T14:28:08.081Z [TRACE] inventory-service - Auth event: logout - User: user_1094 - IP: 192.168.242.165 - RequestID: ea7yq88bqoh +2025-06-18T14:28:08.181Z [DEBUG] user-service - Operation: cache_hit - Processing time: 438ms - RequestID: 9p3yo2ua0y +2025-06-18T14:28:08.281Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.167.32 - RequestID: xk2qfx8bog +2025-06-18T14:28:08.381Z [INFO] auth-service - Auth event: logout - User: user_1065 - IP: 192.168.138.123 - RequestID: n01d2n0eeuq +2025-06-18T14:28:08.481Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 1001ms - RequestID: 33qr54toavd +2025-06-18T14:28:08.581Z [TRACE] user-service - Operation: cache_miss - Processing time: 423ms - RequestID: ag9urri6y4a +2025-06-18T14:28:08.681Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 111ms - Rows affected: 42 - RequestID: us9yhtzxyhq +2025-06-18T14:28:08.781Z [TRACE] payment-service - Database INSERT on users - Execution time: 96ms - Rows affected: 27 - RequestID: g3qx139inbj +2025-06-18T14:28:08.881Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1566ms - IP: 192.168.79.143 - User: user_1007 - RequestID: dy2tfl4djk6 +2025-06-18T14:28:08.981Z [INFO] user-service - Auth event: login_failed - User: user_1034 - IP: 192.168.64.33 - RequestID: wfejxi4vvkd +2025-06-18T14:28:09.081Z [INFO] user-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.1.152 - RequestID: agq0ph4fd0q +2025-06-18T14:28:09.181Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 66ms - Rows affected: 43 - RequestID: 851xs0y4pjt +2025-06-18T14:28:09.281Z [TRACE] payment-service - Database DELETE on users - Execution time: 297ms - Rows affected: 4 - RequestID: ox0fzmzebxf +2025-06-18T14:28:09.381Z [TRACE] auth-service - Auth event: password_change - User: user_1010 - IP: 192.168.33.76 - RequestID: 4hf65c4ostt +2025-06-18T14:28:09.481Z [TRACE] inventory-service - Database INSERT on users - Execution time: 152ms - Rows affected: 91 - RequestID: 3xpnclj2un7 +2025-06-18T14:28:09.581Z [INFO] notification-service - Database SELECT on sessions - Execution time: 461ms - Rows affected: 62 - RequestID: ik3tghhhn8 +2025-06-18T14:28:09.681Z [TRACE] inventory-service - Database SELECT on products - Execution time: 106ms - Rows affected: 58 - RequestID: efs90w4jvsu +2025-06-18T14:28:09.781Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 635ms - RequestID: whavx0v2m68 +2025-06-18T14:28:09.881Z [INFO] inventory-service - Auth event: password_change - User: user_1089 - IP: 192.168.100.240 - RequestID: 26mruglye29 +2025-06-18T14:28:09.981Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 350ms - Rows affected: 70 - RequestID: d0cu1ukgw35 +2025-06-18T14:28:10.081Z [INFO] payment-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.133.7 - RequestID: gnopzaankra +2025-06-18T14:28:10.181Z [INFO] user-service - Operation: cache_miss - Processing time: 761ms - RequestID: 5vnlvf84u0o +2025-06-18T14:28:10.281Z [INFO] notification-service - Database UPDATE on payments - Execution time: 202ms - Rows affected: 91 - RequestID: be679lic1ig +2025-06-18T14:28:10.381Z [DEBUG] auth-service - Database SELECT on users - Execution time: 138ms - Rows affected: 20 - RequestID: srzrtm0mvni +2025-06-18T14:28:10.481Z [INFO] user-service - Auth event: logout - User: user_1094 - IP: 192.168.141.100 - RequestID: 6xuquke62xx +2025-06-18T14:28:10.581Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 417ms - Rows affected: 18 - RequestID: dcsb6kp56nk +2025-06-18T14:28:10.681Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 502 - Response time: 811ms - IP: 192.168.138.123 - User: user_1035 - RequestID: v2elzfytuv +2025-06-18T14:28:10.781Z [DEBUG] user-service - Auth event: logout - User: user_1046 - IP: 192.168.240.169 - RequestID: xdzbb7fs0fg +2025-06-18T14:28:10.881Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.31.117 - RequestID: 6wk9q0g3raj +2025-06-18T14:28:10.981Z [TRACE] payment-service - Auth event: logout - User: user_1027 - IP: 192.168.167.32 - RequestID: stidu3r36bq +2025-06-18T14:28:11.081Z [TRACE] auth-service - Operation: notification_queued - Processing time: 265ms - RequestID: 7ieaeo36ts +2025-06-18T14:28:11.181Z [INFO] user-service - POST /api/v1/auth/login - Status: 400 - Response time: 462ms - IP: 192.168.68.158 - User: user_1013 - RequestID: xy70awpltd +2025-06-18T14:28:11.281Z [DEBUG] auth-service - Database DELETE on products - Execution time: 155ms - Rows affected: 11 - RequestID: ko3cufldbyo +2025-06-18T14:28:11.381Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 1809ms - IP: 192.168.44.5 - User: user_1074 - RequestID: gcwq1idn7p8 +2025-06-18T14:28:11.481Z [INFO] user-service - Auth event: login_failed - User: user_1043 - IP: 192.168.44.5 - RequestID: iy39d9upksn +2025-06-18T14:28:11.581Z [INFO] auth-service - Operation: email_sent - Processing time: 340ms - RequestID: q5z4n4atjs +2025-06-18T14:28:11.681Z [TRACE] payment-service - Database INSERT on products - Execution time: 186ms - Rows affected: 56 - RequestID: vqnm5e1ith8 +2025-06-18T14:28:11.781Z [INFO] notification-service - Auth event: logout - User: user_1017 - IP: 192.168.194.41 - RequestID: lys9rz83bz +2025-06-18T14:28:11.881Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 500 - Response time: 199ms - IP: 192.168.11.60 - User: user_1088 - RequestID: hwcw8ke7hzf +2025-06-18T14:28:11.981Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 200 - Response time: 59ms - IP: 192.168.147.171 - User: user_1003 - RequestID: umoz1y4lp8 +2025-06-18T14:28:12.081Z [TRACE] user-service - Auth event: login_failed - User: user_1013 - IP: 192.168.53.133 - RequestID: jawv2n58pv +2025-06-18T14:28:12.181Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 61ms - IP: 192.168.79.116 - User: user_1071 - RequestID: f8zazy882l +2025-06-18T14:28:12.281Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1326ms - IP: 192.168.235.117 - User: user_1059 - RequestID: q0ozoifyu +2025-06-18T14:28:12.381Z [INFO] notification-service - Operation: cache_hit - Processing time: 534ms - RequestID: d09r1n4fp7w +2025-06-18T14:28:12.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 897ms - RequestID: dmq1fuoouhd +2025-06-18T14:28:12.581Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 644ms - IP: 192.168.79.141 - User: user_1016 - RequestID: k82po3e0m +2025-06-18T14:28:12.681Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 200 - Response time: 1422ms - IP: 192.168.100.240 - User: user_1011 - RequestID: fobu26plahi +2025-06-18T14:28:12.781Z [INFO] payment-service - Auth event: password_change - User: user_1056 - IP: 192.168.68.158 - RequestID: c6rxdmlvdyl +2025-06-18T14:28:12.881Z [INFO] order-service - Operation: cache_miss - Processing time: 1038ms - RequestID: b3651nq7azo +2025-06-18T14:28:12.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1092 - IP: 192.168.68.128 - RequestID: vc93ardy7g +2025-06-18T14:28:13.081Z [DEBUG] auth-service - Operation: email_sent - Processing time: 421ms - RequestID: czcax3ktthj +2025-06-18T14:28:13.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1039 - IP: 192.168.97.87 - RequestID: 0mxzjh4520w9 +2025-06-18T14:28:13.281Z [INFO] user-service - Operation: order_created - Processing time: 897ms - RequestID: mtnu6nqon7g +2025-06-18T14:28:13.381Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 286ms - Rows affected: 54 - RequestID: n4saoro3noj +2025-06-18T14:28:13.481Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 512ms - RequestID: krwtobbyey +2025-06-18T14:28:13.581Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 447ms - Rows affected: 42 - RequestID: 3u1so7gbsv3 +2025-06-18T14:28:13.681Z [DEBUG] user-service - GET /api/v1/users - Status: 403 - Response time: 1016ms - IP: 192.168.79.116 - User: user_1035 - RequestID: 0edrywpasv9s +2025-06-18T14:28:13.781Z [INFO] user-service - Database UPDATE on products - Execution time: 379ms - Rows affected: 92 - RequestID: ieb6ng29lkp +2025-06-18T14:28:13.881Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 544ms - IP: 192.168.181.225 - User: user_1069 - RequestID: 156zy4ql22a +2025-06-18T14:28:13.981Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1524ms - IP: 192.168.44.5 - User: user_1026 - RequestID: cednsy6uw0g +2025-06-18T14:28:14.081Z [INFO] order-service - Database INSERT on sessions - Execution time: 212ms - Rows affected: 27 - RequestID: c1n41c1yfaf +2025-06-18T14:28:14.181Z [DEBUG] payment-service - Database SELECT on products - Execution time: 487ms - Rows affected: 76 - RequestID: lixeg8d02b +2025-06-18T14:28:14.281Z [TRACE] payment-service - Operation: cache_hit - Processing time: 136ms - RequestID: eu04og8u8s9 +2025-06-18T14:28:14.381Z [TRACE] user-service - Auth event: login_failed - User: user_1008 - IP: 192.168.79.141 - RequestID: 85ftit6fmuv +2025-06-18T14:28:14.481Z [INFO] notification-service - Database UPDATE on orders - Execution time: 184ms - Rows affected: 41 - RequestID: 22qc87fnfrr +2025-06-18T14:28:14.581Z [TRACE] notification-service - Auth event: login_failed - User: user_1089 - IP: 192.168.97.87 - RequestID: 540e9k9dng2 +2025-06-18T14:28:14.681Z [INFO] payment-service - Operation: payment_processed - Processing time: 180ms - RequestID: bpp8aftbin +2025-06-18T14:28:14.781Z [INFO] user-service - Auth event: login_failed - User: user_1097 - IP: 192.168.85.229 - RequestID: 5uv4v00wy3m +2025-06-18T14:28:14.881Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 151ms - RequestID: 24o5mez1uvg +2025-06-18T14:28:14.981Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 200 - Response time: 137ms - IP: 192.168.229.123 - User: user_1007 - RequestID: j1cmhxvt06j +2025-06-18T14:28:15.081Z [INFO] inventory-service - Operation: cache_hit - Processing time: 430ms - RequestID: t2wt46tjv98 +2025-06-18T14:28:15.181Z [TRACE] inventory-service - Auth event: login_success - User: user_1093 - IP: 192.168.64.33 - RequestID: j3i23mdxve +2025-06-18T14:28:15.281Z [INFO] auth-service - Auth event: login_success - User: user_1007 - IP: 192.168.30.79 - RequestID: b1fmer86m3i +2025-06-18T14:28:15.381Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 873ms - RequestID: 2cd0p9z0x1g +2025-06-18T14:28:15.481Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 424ms - Rows affected: 37 - RequestID: lccdqtpgmxb +2025-06-18T14:28:15.581Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 76ms - Rows affected: 2 - RequestID: s21f9mkypz +2025-06-18T14:28:15.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.68.128 - RequestID: 37zcecal2bg +2025-06-18T14:28:15.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.97.87 - RequestID: yghhcag8gwi +2025-06-18T14:28:15.881Z [INFO] notification-service - Operation: payment_processed - Processing time: 769ms - RequestID: rty27h1nkb +2025-06-18T14:28:15.981Z [TRACE] inventory-service - Database DELETE on products - Execution time: 283ms - Rows affected: 66 - RequestID: clmm49chqx +2025-06-18T14:28:16.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 761ms - RequestID: 2452628a1hg +2025-06-18T14:28:16.181Z [TRACE] notification-service - Auth event: login_success - User: user_1028 - IP: 192.168.32.38 - RequestID: t0n2k3il0qc +2025-06-18T14:28:16.281Z [TRACE] order-service - Database UPDATE on payments - Execution time: 135ms - Rows affected: 85 - RequestID: 81abq1c5re +2025-06-18T14:28:16.381Z [INFO] notification-service - Auth event: password_change - User: user_1098 - IP: 192.168.81.206 - RequestID: ktudbotnlcm +2025-06-18T14:28:16.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1029 - IP: 192.168.30.79 - RequestID: 75mhp7kg75r +2025-06-18T14:28:16.581Z [TRACE] order-service - Database UPDATE on payments - Execution time: 21ms - Rows affected: 60 - RequestID: iq0jroal7f +2025-06-18T14:28:16.681Z [INFO] order-service - Database UPDATE on payments - Execution time: 143ms - Rows affected: 86 - RequestID: srkwl6y7b6 +2025-06-18T14:28:16.781Z [TRACE] order-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.1.152 - RequestID: 34v2g886f53 +2025-06-18T14:28:16.881Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 6ms - Rows affected: 45 - RequestID: whxte6n6jj +2025-06-18T14:28:16.981Z [TRACE] user-service - Database INSERT on products - Execution time: 114ms - Rows affected: 47 - RequestID: j8mhq1hps4q +2025-06-18T14:28:17.081Z [INFO] inventory-service - Auth event: login_failed - User: user_1035 - IP: 192.168.30.79 - RequestID: zupivnakdu +2025-06-18T14:28:17.181Z [INFO] user-service - PATCH /api/v1/users - Status: 502 - Response time: 1438ms - IP: 192.168.159.94 - User: user_1023 - RequestID: cug2tsk6cna +2025-06-18T14:28:17.281Z [INFO] user-service - Operation: order_created - Processing time: 214ms - RequestID: k63l4sw3h8 +2025-06-18T14:28:17.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1072 - IP: 192.168.232.72 - RequestID: ky3lvro4g7 +2025-06-18T14:28:17.481Z [INFO] user-service - Auth event: logout - User: user_1093 - IP: 192.168.170.215 - RequestID: hthcr3jf27c +2025-06-18T14:28:17.581Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 361ms - Rows affected: 49 - RequestID: rwg3u9iizx +2025-06-18T14:28:17.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 931ms - RequestID: gqjwlqr963g +2025-06-18T14:28:17.781Z [DEBUG] user-service - Auth event: login_success - User: user_1095 - IP: 192.168.79.141 - RequestID: v8gus4nge9q +2025-06-18T14:28:17.881Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 198ms - Rows affected: 39 - RequestID: neofy2z4lzr +2025-06-18T14:28:17.981Z [INFO] user-service - Operation: payment_processed - Processing time: 714ms - RequestID: ltcap75k1a +2025-06-18T14:28:18.081Z [INFO] notification-service - Operation: order_created - Processing time: 521ms - RequestID: oyciu6b1mo +2025-06-18T14:28:18.181Z [INFO] notification-service - Operation: inventory_updated - Processing time: 428ms - RequestID: aa4u5roe7qs +2025-06-18T14:28:18.281Z [TRACE] order-service - Operation: cache_hit - Processing time: 912ms - RequestID: 9qpzecjql09 +2025-06-18T14:28:18.381Z [TRACE] user-service - Database INSERT on products - Execution time: 314ms - Rows affected: 56 - RequestID: avc9dn3cwy +2025-06-18T14:28:18.481Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 919ms - RequestID: 7ifo4ffmwrm +2025-06-18T14:28:18.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.211.72 - RequestID: wworuhn091d +2025-06-18T14:28:18.681Z [TRACE] order-service - Auth event: password_change - User: user_1081 - IP: 192.168.167.32 - RequestID: pwa23kqvjy +2025-06-18T14:28:18.781Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1319ms - IP: 192.168.144.38 - User: user_1079 - RequestID: 30o1ub80tmn +2025-06-18T14:28:18.881Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 404 - Response time: 492ms - IP: 192.168.85.229 - User: user_1053 - RequestID: 0hl9fr2qd3l +2025-06-18T14:28:18.981Z [DEBUG] auth-service - POST /api/v1/users - Status: 200 - Response time: 1528ms - IP: 192.168.211.72 - User: user_1090 - RequestID: 3rs74net0q3 +2025-06-18T14:28:19.081Z [INFO] auth-service - Auth event: password_change - User: user_1040 - IP: 192.168.85.229 - RequestID: hm5bby2i0c8 +2025-06-18T14:28:19.181Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 831ms - RequestID: mh90fbvkscp +2025-06-18T14:28:19.281Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 961ms - RequestID: ypexrn0o8bb +2025-06-18T14:28:19.381Z [TRACE] auth-service - Auth event: login_failed - User: user_1034 - IP: 192.168.247.134 - RequestID: 2ye3uo1cfd3 +2025-06-18T14:28:19.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 544ms - RequestID: qk2mslhzssr +2025-06-18T14:28:19.581Z [TRACE] payment-service - Auth event: login_failed - User: user_1049 - IP: 192.168.211.72 - RequestID: csbh1k5wo7h +2025-06-18T14:28:19.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 360ms - RequestID: iy4lv9ow26i +2025-06-18T14:28:19.781Z [INFO] notification-service - Database UPDATE on users - Execution time: 339ms - Rows affected: 51 - RequestID: 8yipqq49ads +2025-06-18T14:28:19.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1071 - IP: 192.168.242.165 - RequestID: zbpoaqpfo4i +2025-06-18T14:28:19.981Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 93ms - RequestID: z3f0puds2uo +2025-06-18T14:28:20.081Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 52ms - Rows affected: 62 - RequestID: yk5iywvpk9s +2025-06-18T14:28:20.181Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 414ms - Rows affected: 84 - RequestID: 4mdx6gj3fv +2025-06-18T14:28:20.281Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1332ms - IP: 192.168.141.100 - User: user_1062 - RequestID: eu6an1f7ba +2025-06-18T14:28:20.381Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 212ms - IP: 192.168.211.72 - User: user_1071 - RequestID: osmyas0k1d +2025-06-18T14:28:20.481Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 406ms - Rows affected: 63 - RequestID: qe7uzuvuv0g +2025-06-18T14:28:20.581Z [TRACE] user-service - Database DELETE on users - Execution time: 362ms - Rows affected: 35 - RequestID: xjhwb01yfd +2025-06-18T14:28:20.681Z [DEBUG] auth-service - Operation: order_created - Processing time: 851ms - RequestID: 6y2rhf49jik +2025-06-18T14:28:20.781Z [INFO] payment-service - Operation: webhook_sent - Processing time: 353ms - RequestID: j8f3heseo1m +2025-06-18T14:28:20.881Z [TRACE] payment-service - Database SELECT on orders - Execution time: 482ms - Rows affected: 87 - RequestID: blshf2sc80b +2025-06-18T14:28:20.981Z [TRACE] order-service - Operation: cache_miss - Processing time: 1035ms - RequestID: tu4m7g2b3xd +2025-06-18T14:28:21.081Z [INFO] auth-service - Auth event: password_change - User: user_1030 - IP: 192.168.11.60 - RequestID: m5o1an91wvj +2025-06-18T14:28:21.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1064 - IP: 192.168.85.229 - RequestID: sgw8umzv5bi +2025-06-18T14:28:21.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1062 - IP: 192.168.30.79 - RequestID: ucysiyn1gu +2025-06-18T14:28:21.381Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 2ms - Rows affected: 84 - RequestID: jzgwldx0u4n +2025-06-18T14:28:21.481Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 377ms - Rows affected: 86 - RequestID: gtafvaeejw4 +2025-06-18T14:28:21.581Z [TRACE] notification-service - Auth event: logout - User: user_1057 - IP: 192.168.194.41 - RequestID: dcp6ir11pyu +2025-06-18T14:28:21.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.174.114 - RequestID: qn0a525lyhh +2025-06-18T14:28:21.781Z [TRACE] auth-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.170.215 - RequestID: xzqktx77f3f +2025-06-18T14:28:21.881Z [INFO] order-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.113.218 - RequestID: n8z535dbfse +2025-06-18T14:28:21.981Z [DEBUG] payment-service - Operation: email_sent - Processing time: 244ms - RequestID: gyzlg06jryi +2025-06-18T14:28:22.081Z [TRACE] payment-service - Operation: email_sent - Processing time: 892ms - RequestID: nrmoim4890f +2025-06-18T14:28:22.181Z [INFO] auth-service - PUT /api/v1/users - Status: 200 - Response time: 1783ms - IP: 192.168.229.123 - User: user_1031 - RequestID: g7ylo9ikqib +2025-06-18T14:28:22.281Z [DEBUG] order-service - Operation: payment_processed - Processing time: 612ms - RequestID: lornk96pdf +2025-06-18T14:28:22.381Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 400 - Response time: 1846ms - IP: 192.168.144.38 - User: user_1031 - RequestID: fbshhamuz6h +2025-06-18T14:28:22.481Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1166ms - IP: 192.168.36.218 - User: user_1001 - RequestID: risk9o64pw +2025-06-18T14:28:22.581Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 322ms - Rows affected: 56 - RequestID: rxpahdibk +2025-06-18T14:28:22.681Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 403 - Response time: 171ms - IP: 192.168.53.133 - User: user_1037 - RequestID: vc24c65puxj +2025-06-18T14:28:22.781Z [TRACE] auth-service - GET /api/v1/payments - Status: 500 - Response time: 1654ms - IP: 192.168.85.229 - User: user_1087 - RequestID: k4dabcd5x +2025-06-18T14:28:22.881Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 503 - Response time: 1395ms - IP: 192.168.79.143 - User: user_1073 - RequestID: ut6izztx067 +2025-06-18T14:28:22.981Z [TRACE] inventory-service - Auth event: logout - User: user_1059 - IP: 192.168.187.199 - RequestID: zja4yey5l28 +2025-06-18T14:28:23.081Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 503 - Response time: 50ms - IP: 192.168.196.226 - User: user_1007 - RequestID: qbn2q1q8c2k +2025-06-18T14:28:23.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 981ms - RequestID: dyzan3ufbnh +2025-06-18T14:28:23.281Z [INFO] auth-service - Database UPDATE on users - Execution time: 13ms - Rows affected: 84 - RequestID: flsvv88sklu +2025-06-18T14:28:23.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.28.146 - RequestID: 88xd25mjkds +2025-06-18T14:28:23.481Z [DEBUG] auth-service - Auth event: login_failed - User: user_1044 - IP: 192.168.227.77 - RequestID: e03214ml5xr +2025-06-18T14:28:23.581Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 613ms - IP: 192.168.79.143 - User: user_1018 - RequestID: ozfqbmisp6h +2025-06-18T14:28:23.681Z [INFO] user-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.79.143 - RequestID: vu2hl4t4flq +2025-06-18T14:28:23.781Z [TRACE] inventory-service - Operation: email_sent - Processing time: 661ms - RequestID: gz8wxzu1st6 +2025-06-18T14:28:23.881Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1184ms - IP: 192.168.100.240 - User: user_1080 - RequestID: 38tk5ln86g9 +2025-06-18T14:28:23.981Z [TRACE] notification-service - Operation: cache_hit - Processing time: 691ms - RequestID: 1dstua3ppw3 +2025-06-18T14:28:24.081Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 218ms - Rows affected: 84 - RequestID: 3h451h6wfb1 +2025-06-18T14:28:24.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.46.63 - RequestID: 9vc85skhjew +2025-06-18T14:28:24.281Z [INFO] payment-service - Auth event: login_failed - User: user_1025 - IP: 192.168.85.229 - RequestID: q33ououfnqg +2025-06-18T14:28:24.381Z [TRACE] payment-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.227.77 - RequestID: 43v79n9z416 +2025-06-18T14:28:24.481Z [DEBUG] notification-service - GET /api/v1/orders - Status: 400 - Response time: 1920ms - IP: 192.168.97.87 - User: user_1027 - RequestID: acghm2frga8 +2025-06-18T14:28:24.581Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 403 - Response time: 1838ms - IP: 192.168.32.38 - User: user_1057 - RequestID: ulo678iwc3p +2025-06-18T14:28:24.681Z [INFO] user-service - PUT /api/v1/payments - Status: 201 - Response time: 203ms - IP: 192.168.79.116 - User: user_1072 - RequestID: nkw7mzzkoof +2025-06-18T14:28:24.781Z [TRACE] user-service - GET /api/v1/inventory - Status: 201 - Response time: 1152ms - IP: 192.168.79.143 - User: user_1068 - RequestID: lvz0gle9vv +2025-06-18T14:28:24.881Z [TRACE] notification-service - Database SELECT on products - Execution time: 454ms - Rows affected: 59 - RequestID: g2u1ca00ssk +2025-06-18T14:28:24.981Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 867ms - IP: 192.168.36.218 - User: user_1047 - RequestID: 7hwi6j8j9fs +2025-06-18T14:28:25.081Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1541ms - IP: 192.168.31.117 - User: user_1060 - RequestID: qjojvopksn +2025-06-18T14:28:25.181Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 406ms - Rows affected: 22 - RequestID: dk3000te4u +2025-06-18T14:28:25.281Z [INFO] user-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.81.206 - RequestID: w8nu5c40ki9 +2025-06-18T14:28:25.381Z [TRACE] inventory-service - POST /api/v1/orders - Status: 400 - Response time: 1570ms - IP: 192.168.28.146 - User: user_1047 - RequestID: a4zbymm8icp +2025-06-18T14:28:25.481Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 276ms - RequestID: d4bgi46j3fg +2025-06-18T14:28:25.581Z [INFO] payment-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.229.123 - RequestID: 4qic3ibhz3o +2025-06-18T14:28:25.681Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 846ms - IP: 192.168.46.63 - User: user_1028 - RequestID: m524av065s +2025-06-18T14:28:25.781Z [INFO] auth-service - Operation: webhook_sent - Processing time: 636ms - RequestID: 766a7fum8j8 +2025-06-18T14:28:25.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1005 - IP: 192.168.133.7 - RequestID: udj1xplrq8 +2025-06-18T14:28:25.981Z [DEBUG] order-service - Operation: order_created - Processing time: 807ms - RequestID: k5zeiiolpyi +2025-06-18T14:28:26.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.68.158 - RequestID: l6scjew90k +2025-06-18T14:28:26.181Z [TRACE] notification-service - Operation: cache_hit - Processing time: 732ms - RequestID: mch1optf2qb +2025-06-18T14:28:26.281Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 472ms - Rows affected: 99 - RequestID: os4065kl0oq +2025-06-18T14:28:26.381Z [INFO] order-service - Auth event: logout - User: user_1073 - IP: 192.168.1.152 - RequestID: rwxomiv8o3 +2025-06-18T14:28:26.481Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 374ms - RequestID: reipz4mvfw +2025-06-18T14:28:26.581Z [INFO] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 174ms - IP: 192.168.44.5 - User: user_1005 - RequestID: m7g432pq1ug +2025-06-18T14:28:26.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 233ms - RequestID: 31hltjdhcp7 +2025-06-18T14:28:26.781Z [INFO] order-service - Auth event: logout - User: user_1008 - IP: 192.168.14.77 - RequestID: yedzo0r6hqb +2025-06-18T14:28:26.881Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 500 - Response time: 112ms - IP: 192.168.30.79 - User: user_1027 - RequestID: z271nusg0h +2025-06-18T14:28:26.981Z [INFO] auth-service - Database UPDATE on payments - Execution time: 34ms - Rows affected: 90 - RequestID: zdqyv35p6oq +2025-06-18T14:28:27.081Z [INFO] notification-service - Database SELECT on orders - Execution time: 389ms - Rows affected: 45 - RequestID: zjd53k8r9xe +2025-06-18T14:28:27.181Z [TRACE] order-service - Database SELECT on sessions - Execution time: 292ms - Rows affected: 79 - RequestID: 81wbt6iwgrp +2025-06-18T14:28:27.281Z [INFO] payment-service - Operation: inventory_updated - Processing time: 584ms - RequestID: v7adjei9k5 +2025-06-18T14:28:27.381Z [DEBUG] notification-service - Auth event: login_success - User: user_1089 - IP: 192.168.133.7 - RequestID: 6qe65msbuv +2025-06-18T14:28:27.481Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 324ms - IP: 192.168.97.87 - User: user_1034 - RequestID: rtqq9gwjx79 +2025-06-18T14:28:27.581Z [INFO] auth-service - Database DELETE on users - Execution time: 228ms - Rows affected: 73 - RequestID: 20735hinc5f +2025-06-18T14:28:27.681Z [DEBUG] payment-service - PUT /api/v1/users - Status: 200 - Response time: 297ms - IP: 192.168.174.114 - User: user_1026 - RequestID: wd3do621cwn +2025-06-18T14:28:27.781Z [INFO] order-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1888ms - IP: 192.168.53.133 - User: user_1047 - RequestID: 1elo2yic0l6g +2025-06-18T14:28:27.881Z [DEBUG] user-service - Database UPDATE on users - Execution time: 143ms - Rows affected: 55 - RequestID: rjbd11rbndr +2025-06-18T14:28:27.981Z [INFO] payment-service - Database INSERT on orders - Execution time: 96ms - Rows affected: 72 - RequestID: 689roxh4qkn +2025-06-18T14:28:28.081Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1215ms - IP: 192.168.141.100 - User: user_1041 - RequestID: g7x3wpplxn7 +2025-06-18T14:28:28.181Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 12ms - Rows affected: 12 - RequestID: 6pzjj2rst79 +2025-06-18T14:28:28.281Z [INFO] payment-service - Database INSERT on orders - Execution time: 105ms - Rows affected: 97 - RequestID: 4ef5v266psm +2025-06-18T14:28:28.381Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.229.123 - RequestID: ewmxdiohjmk +2025-06-18T14:28:28.481Z [INFO] order-service - Database DELETE on users - Execution time: 481ms - Rows affected: 69 - RequestID: 91fxw7bpjvv +2025-06-18T14:28:28.581Z [INFO] inventory-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.181.225 - RequestID: 5qsldzhpv0h +2025-06-18T14:28:28.681Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 27ms - Rows affected: 56 - RequestID: f82ps96evzu +2025-06-18T14:28:28.781Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1951ms - IP: 192.168.28.146 - User: user_1064 - RequestID: pmeel18i1z +2025-06-18T14:28:28.881Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 332ms - Rows affected: 28 - RequestID: fxhk6i99qcw +2025-06-18T14:28:28.981Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 160ms - IP: 192.168.174.114 - User: user_1075 - RequestID: uk2fph8ek0h +2025-06-18T14:28:29.081Z [INFO] user-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1341ms - IP: 192.168.32.38 - User: user_1084 - RequestID: nk9paqk61r +2025-06-18T14:28:29.181Z [TRACE] notification-service - Operation: cache_miss - Processing time: 383ms - RequestID: b2tvo2q64rv +2025-06-18T14:28:29.281Z [TRACE] inventory-service - Operation: order_created - Processing time: 441ms - RequestID: anlx74awt7a +2025-06-18T14:28:29.381Z [INFO] auth-service - Operation: webhook_sent - Processing time: 415ms - RequestID: qddf1zb6nde +2025-06-18T14:28:29.481Z [TRACE] auth-service - GET /api/v1/users - Status: 200 - Response time: 884ms - IP: 192.168.33.76 - User: user_1060 - RequestID: vamru4kd10e +2025-06-18T14:28:29.581Z [INFO] order-service - PATCH /api/v1/users - Status: 400 - Response time: 1928ms - IP: 192.168.181.225 - User: user_1092 - RequestID: z9dei6t7gzb +2025-06-18T14:28:29.681Z [DEBUG] order-service - GET /api/v1/inventory - Status: 201 - Response time: 110ms - IP: 192.168.85.229 - User: user_1093 - RequestID: egg6xgury8c +2025-06-18T14:28:29.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 990ms - RequestID: sb1t9eguoq +2025-06-18T14:28:29.881Z [TRACE] order-service - Auth event: logout - User: user_1073 - IP: 192.168.81.206 - RequestID: fqbo9p2ep8b +2025-06-18T14:28:29.981Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 253ms - Rows affected: 68 - RequestID: l4mo2r95tko +2025-06-18T14:28:30.081Z [TRACE] payment-service - Database DELETE on products - Execution time: 378ms - Rows affected: 89 - RequestID: 99ppsgkij2h +2025-06-18T14:28:30.181Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 500 - Response time: 953ms - IP: 192.168.189.103 - User: user_1073 - RequestID: 88f6kiudcri +2025-06-18T14:28:30.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.32.38 - RequestID: 4urrrhlkx1m +2025-06-18T14:28:30.381Z [INFO] auth-service - Database INSERT on payments - Execution time: 437ms - Rows affected: 52 - RequestID: uuaowz10w1 +2025-06-18T14:28:30.481Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1698ms - IP: 192.168.159.94 - User: user_1049 - RequestID: rk1ripqw0g +2025-06-18T14:28:30.581Z [INFO] order-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.81.206 - RequestID: bhd5qraxbk6 +2025-06-18T14:28:30.681Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1864ms - IP: 192.168.64.33 - User: user_1036 - RequestID: iit0cjkdcea +2025-06-18T14:28:30.781Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 418ms - Rows affected: 1 - RequestID: xe9ut0pgf9d +2025-06-18T14:28:30.881Z [TRACE] auth-service - Operation: payment_processed - Processing time: 1032ms - RequestID: 6wg6ork1hwi +2025-06-18T14:28:30.981Z [INFO] order-service - Auth event: password_change - User: user_1069 - IP: 192.168.11.60 - RequestID: wmrpf3azvt +2025-06-18T14:28:31.081Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1538ms - IP: 192.168.144.38 - User: user_1092 - RequestID: k2hbblbi0na +2025-06-18T14:28:31.181Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 144ms - RequestID: h7t7g1dnzyk +2025-06-18T14:28:31.281Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 118ms - Rows affected: 58 - RequestID: gqkhdgbqgw9 +2025-06-18T14:28:31.381Z [TRACE] notification-service - Operation: notification_queued - Processing time: 924ms - RequestID: zwzirh4cmk +2025-06-18T14:28:31.481Z [INFO] order-service - Operation: notification_queued - Processing time: 397ms - RequestID: klgav5eg4q +2025-06-18T14:28:31.581Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 723ms - RequestID: 904alt3msrs +2025-06-18T14:28:31.681Z [DEBUG] payment-service - Database DELETE on users - Execution time: 333ms - Rows affected: 96 - RequestID: mmg4coqxzwo +2025-06-18T14:28:31.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 312ms - RequestID: wypciaonld +2025-06-18T14:28:31.881Z [INFO] inventory-service - POST /api/v1/users - Status: 403 - Response time: 1584ms - IP: 192.168.158.144 - User: user_1060 - RequestID: vc27y8un25l +2025-06-18T14:28:31.981Z [TRACE] order-service - DELETE /api/v1/orders - Status: 201 - Response time: 1741ms - IP: 192.168.28.146 - User: user_1085 - RequestID: aksc0m1b04e +2025-06-18T14:28:32.081Z [DEBUG] notification-service - Database INSERT on users - Execution time: 117ms - Rows affected: 0 - RequestID: m6csjmn8k0g +2025-06-18T14:28:32.181Z [DEBUG] user-service - Auth event: logout - User: user_1069 - IP: 192.168.44.5 - RequestID: f6zu5fqu3f4 +2025-06-18T14:28:32.281Z [INFO] notification-service - POST /api/v1/users - Status: 404 - Response time: 1044ms - IP: 192.168.31.117 - User: user_1024 - RequestID: hfcmq3j33jn +2025-06-18T14:28:32.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.138.123 - RequestID: uahgrnebrxh +2025-06-18T14:28:32.481Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 951ms - RequestID: tgo5j7mf62 +2025-06-18T14:28:32.581Z [TRACE] order-service - Auth event: login_failed - User: user_1004 - IP: 192.168.36.218 - RequestID: jdlw2oxph3 +2025-06-18T14:28:32.681Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1998ms - IP: 192.168.240.169 - User: user_1068 - RequestID: 0zvrc9qmoap +2025-06-18T14:28:32.781Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 489ms - Rows affected: 15 - RequestID: vjg1fqglbde +2025-06-18T14:28:32.881Z [TRACE] auth-service - Operation: payment_processed - Processing time: 603ms - RequestID: 12bkt9xla3z +2025-06-18T14:28:32.981Z [INFO] inventory-service - Auth event: password_change - User: user_1052 - IP: 192.168.232.72 - RequestID: r0dtsi7lzyp +2025-06-18T14:28:33.081Z [INFO] inventory-service - Operation: order_created - Processing time: 980ms - RequestID: 3pyp7hwvu2p +2025-06-18T14:28:33.181Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 310ms - Rows affected: 33 - RequestID: lxhp4v2fcyj +2025-06-18T14:28:33.281Z [DEBUG] user-service - POST /api/v1/inventory - Status: 401 - Response time: 965ms - IP: 192.168.68.128 - User: user_1035 - RequestID: wimcyetp31e +2025-06-18T14:28:33.381Z [DEBUG] order-service - Database INSERT on orders - Execution time: 394ms - Rows affected: 20 - RequestID: jvg1vsvr64 +2025-06-18T14:28:33.481Z [TRACE] user-service - Operation: payment_processed - Processing time: 750ms - RequestID: oedv0u6r2qf +2025-06-18T14:28:33.581Z [INFO] user-service - Database INSERT on payments - Execution time: 274ms - Rows affected: 2 - RequestID: rh2ew598alb +2025-06-18T14:28:33.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.28.146 - RequestID: xkkgxpqlty +2025-06-18T14:28:33.781Z [DEBUG] user-service - Operation: notification_queued - Processing time: 71ms - RequestID: yzrdzquywl8 +2025-06-18T14:28:33.881Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 201 - Response time: 970ms - IP: 192.168.227.77 - User: user_1036 - RequestID: nwczozcprn8 +2025-06-18T14:28:33.981Z [INFO] order-service - Operation: webhook_sent - Processing time: 377ms - RequestID: fql059ec14 +2025-06-18T14:28:34.081Z [INFO] payment-service - Operation: cache_miss - Processing time: 251ms - RequestID: 6skt6w1j5j8 +2025-06-18T14:28:34.181Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 274ms - RequestID: b96s4ln1bnu +2025-06-18T14:28:34.281Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 1013ms - RequestID: ceedvr8q8aq +2025-06-18T14:28:34.381Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 283ms - RequestID: 0jiyqnxvcica +2025-06-18T14:28:34.481Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 502 - Response time: 323ms - IP: 192.168.32.38 - User: user_1027 - RequestID: lw8qwzako6 +2025-06-18T14:28:34.581Z [DEBUG] payment-service - GET /api/v1/orders - Status: 403 - Response time: 281ms - IP: 192.168.46.63 - User: user_1019 - RequestID: ilfx94384o +2025-06-18T14:28:34.681Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 145ms - Rows affected: 47 - RequestID: mapikd07vt +2025-06-18T14:28:34.781Z [TRACE] order-service - Database DELETE on payments - Execution time: 483ms - Rows affected: 44 - RequestID: 8d9n2ds2xl9 +2025-06-18T14:28:34.881Z [DEBUG] user-service - Database INSERT on products - Execution time: 150ms - Rows affected: 51 - RequestID: 08adnen47hz8 +2025-06-18T14:28:34.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.30.79 - RequestID: m6pkwtcned +2025-06-18T14:28:35.081Z [INFO] order-service - PUT /api/v1/orders - Status: 401 - Response time: 294ms - IP: 192.168.159.94 - User: user_1025 - RequestID: 0fcyynldrodv +2025-06-18T14:28:35.181Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 503 - Response time: 1373ms - IP: 192.168.79.116 - User: user_1019 - RequestID: alnie0tgq18 +2025-06-18T14:28:35.281Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 544ms - RequestID: uetlbz2bq5 +2025-06-18T14:28:35.381Z [INFO] inventory-service - Auth event: login_success - User: user_1096 - IP: 192.168.64.33 - RequestID: wc8k361bh2e +2025-06-18T14:28:35.481Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 493ms - Rows affected: 7 - RequestID: 35xzfnmskok +2025-06-18T14:28:35.581Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1974ms - IP: 192.168.79.143 - User: user_1018 - RequestID: buqoz3h0szg +2025-06-18T14:28:35.681Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1035 - IP: 192.168.64.33 - RequestID: r38dd502gh +2025-06-18T14:28:35.781Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 493ms - Rows affected: 1 - RequestID: v5q18ptjuw8 +2025-06-18T14:28:35.881Z [TRACE] inventory-service - Auth event: password_change - User: user_1072 - IP: 192.168.1.152 - RequestID: jng70a3j82i +2025-06-18T14:28:35.981Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 445ms - Rows affected: 58 - RequestID: unoc1auq1ok +2025-06-18T14:28:36.081Z [TRACE] user-service - Database DELETE on payments - Execution time: 106ms - Rows affected: 74 - RequestID: dsz1evr5exd +2025-06-18T14:28:36.181Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.170.215 - RequestID: nn7ssd39tni +2025-06-18T14:28:36.281Z [TRACE] order-service - Operation: notification_queued - Processing time: 585ms - RequestID: 3aaploujnwe +2025-06-18T14:28:36.381Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 401 - Response time: 693ms - IP: 192.168.100.240 - User: user_1032 - RequestID: ohh6yuilbef +2025-06-18T14:28:36.481Z [DEBUG] payment-service - Database SELECT on users - Execution time: 467ms - Rows affected: 10 - RequestID: rcz4e23rngs +2025-06-18T14:28:36.581Z [INFO] auth-service - Database INSERT on products - Execution time: 115ms - Rows affected: 54 - RequestID: mzvfgqvp3 +2025-06-18T14:28:36.681Z [TRACE] payment-service - Database INSERT on payments - Execution time: 67ms - Rows affected: 13 - RequestID: brhp0xcr26o +2025-06-18T14:28:36.781Z [INFO] inventory-service - Operation: cache_hit - Processing time: 373ms - RequestID: 1pz445syajo +2025-06-18T14:28:36.881Z [TRACE] payment-service - POST /api/v1/payments - Status: 503 - Response time: 883ms - IP: 192.168.46.63 - User: user_1034 - RequestID: ywvm96ocvl +2025-06-18T14:28:36.981Z [INFO] notification-service - Database DELETE on payments - Execution time: 99ms - Rows affected: 56 - RequestID: raj8a9t7un +2025-06-18T14:28:37.081Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 502 - Response time: 259ms - IP: 192.168.11.60 - User: user_1050 - RequestID: m87q14cjh5 +2025-06-18T14:28:37.181Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 791ms - RequestID: 3yfead4ds4v +2025-06-18T14:28:37.281Z [INFO] notification-service - POST /api/v1/users - Status: 404 - Response time: 90ms - IP: 192.168.167.32 - User: user_1065 - RequestID: py05cqrajj +2025-06-18T14:28:37.381Z [INFO] user-service - GET /api/v1/users - Status: 404 - Response time: 861ms - IP: 192.168.232.72 - User: user_1082 - RequestID: t9b8fbvrhab +2025-06-18T14:28:37.481Z [INFO] notification-service - Auth event: login_success - User: user_1032 - IP: 192.168.104.37 - RequestID: wbw2ajqgqz +2025-06-18T14:28:37.581Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1008ms - IP: 192.168.36.218 - User: user_1060 - RequestID: 6nun0g4x6fs +2025-06-18T14:28:37.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.227.77 - RequestID: 12fm6v5olxga +2025-06-18T14:28:37.781Z [INFO] auth-service - Auth event: login_success - User: user_1078 - IP: 192.168.187.199 - RequestID: j941g0aa03a +2025-06-18T14:28:37.881Z [TRACE] order-service - PUT /api/v1/inventory - Status: 401 - Response time: 847ms - IP: 192.168.174.114 - User: user_1056 - RequestID: xf29huly5yo +2025-06-18T14:28:37.981Z [TRACE] payment-service - Operation: notification_queued - Processing time: 97ms - RequestID: un4rckdk89 +2025-06-18T14:28:38.081Z [TRACE] auth-service - Auth event: password_change - User: user_1055 - IP: 192.168.36.218 - RequestID: ox0f2ezmnqr +2025-06-18T14:28:38.181Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 400 - Response time: 48ms - IP: 192.168.97.87 - User: user_1016 - RequestID: wwthxgsdhib +2025-06-18T14:28:38.281Z [INFO] order-service - Database INSERT on payments - Execution time: 315ms - Rows affected: 94 - RequestID: dxljzuc4kqg +2025-06-18T14:28:38.381Z [TRACE] order-service - GET /api/v1/auth/login - Status: 400 - Response time: 191ms - IP: 192.168.36.218 - User: user_1006 - RequestID: 2b7wxy8nfo6 +2025-06-18T14:28:38.481Z [TRACE] notification-service - Operation: cache_miss - Processing time: 667ms - RequestID: wr6nl433g3m +2025-06-18T14:28:38.581Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1755ms - IP: 192.168.97.87 - User: user_1080 - RequestID: b5q8qhj5225 +2025-06-18T14:28:38.681Z [DEBUG] inventory-service - Operation: order_created - Processing time: 312ms - RequestID: l5csbycuwb +2025-06-18T14:28:38.781Z [TRACE] notification-service - Operation: cache_hit - Processing time: 723ms - RequestID: ndmrdu5gl6o +2025-06-18T14:28:38.881Z [INFO] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 1107ms - IP: 192.168.32.38 - User: user_1032 - RequestID: 12p6zi6qwtpj +2025-06-18T14:28:38.981Z [DEBUG] order-service - DELETE /api/v1/users - Status: 502 - Response time: 1247ms - IP: 192.168.167.32 - User: user_1002 - RequestID: 63izp0830fw +2025-06-18T14:28:39.081Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 500 - Response time: 238ms - IP: 192.168.79.141 - User: user_1085 - RequestID: cen5d3cumwg +2025-06-18T14:28:39.181Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 343ms - Rows affected: 67 - RequestID: kmr9gseiitq +2025-06-18T14:28:39.281Z [TRACE] user-service - Database DELETE on products - Execution time: 216ms - Rows affected: 92 - RequestID: 3jj1dzazxks +2025-06-18T14:28:39.381Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.211.72 - RequestID: v860jqu6g6k +2025-06-18T14:28:39.481Z [DEBUG] order-service - PUT /api/v1/orders - Status: 403 - Response time: 1118ms - IP: 192.168.167.32 - User: user_1014 - RequestID: bs6bhjlfr3r +2025-06-18T14:28:39.581Z [DEBUG] notification-service - Auth event: password_change - User: user_1067 - IP: 192.168.10.184 - RequestID: q8uf2zzj0c8 +2025-06-18T14:28:39.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1049 - IP: 192.168.81.206 - RequestID: j2ggarr3sh +2025-06-18T14:28:39.781Z [INFO] notification-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.28.146 - RequestID: 2ugpcf8i2ev +2025-06-18T14:28:39.881Z [DEBUG] payment-service - Operation: email_sent - Processing time: 360ms - RequestID: mvi22h7hg7c +2025-06-18T14:28:39.981Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 465ms - Rows affected: 66 - RequestID: wuu92e0yku +2025-06-18T14:28:40.081Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 1017ms - RequestID: 6w77qh11ing +2025-06-18T14:28:40.181Z [TRACE] inventory-service - PUT /api/v1/users - Status: 500 - Response time: 630ms - IP: 192.168.159.94 - User: user_1012 - RequestID: t29ywg4m6vl +2025-06-18T14:28:40.281Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 327ms - Rows affected: 80 - RequestID: mx7fok7wrd +2025-06-18T14:28:40.381Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 199ms - Rows affected: 31 - RequestID: qyvb59g59ye +2025-06-18T14:28:40.481Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 502 - Response time: 946ms - IP: 192.168.46.63 - User: user_1073 - RequestID: 3mvdj34xfyv +2025-06-18T14:28:40.581Z [INFO] notification-service - PUT /api/v1/users - Status: 200 - Response time: 1828ms - IP: 192.168.227.77 - User: user_1062 - RequestID: a0s9he6ef2 +2025-06-18T14:28:40.681Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 274ms - RequestID: wb869glg0ya +2025-06-18T14:28:40.781Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1079ms - IP: 192.168.211.72 - User: user_1025 - RequestID: txbjx6llsnh +2025-06-18T14:28:40.881Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 401 - Response time: 452ms - IP: 192.168.242.165 - User: user_1070 - RequestID: hi5iqux38sj +2025-06-18T14:28:40.981Z [TRACE] notification-service - GET /api/v1/orders - Status: 201 - Response time: 475ms - IP: 192.168.138.123 - User: user_1034 - RequestID: c2ofl4nu8ya +2025-06-18T14:28:41.081Z [TRACE] payment-service - Auth event: logout - User: user_1097 - IP: 192.168.100.240 - RequestID: pmq2t3ya81e +2025-06-18T14:28:41.181Z [TRACE] user-service - PUT /api/v1/orders - Status: 401 - Response time: 817ms - IP: 192.168.79.116 - User: user_1038 - RequestID: dh98hvo3neo +2025-06-18T14:28:41.281Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 168ms - Rows affected: 72 - RequestID: bkx1i1dai1e +2025-06-18T14:28:41.381Z [DEBUG] order-service - Operation: email_sent - Processing time: 170ms - RequestID: b1zmvrpkm0q +2025-06-18T14:28:41.481Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 503 - Response time: 1688ms - IP: 192.168.189.103 - User: user_1002 - RequestID: cxdnoykquss +2025-06-18T14:28:41.581Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 468ms - Rows affected: 12 - RequestID: qk3zee8ibxj +2025-06-18T14:28:41.681Z [INFO] inventory-service - Auth event: login_failed - User: user_1063 - IP: 192.168.33.76 - RequestID: 8hbnuyiytkn +2025-06-18T14:28:41.781Z [INFO] order-service - Operation: cache_hit - Processing time: 244ms - RequestID: 59415y1adp3 +2025-06-18T14:28:41.881Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1314ms - IP: 192.168.196.226 - User: user_1014 - RequestID: 223jrpqwcon +2025-06-18T14:28:41.981Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 503 - Response time: 125ms - IP: 192.168.32.38 - User: user_1004 - RequestID: ev81o9zeaol +2025-06-18T14:28:42.081Z [INFO] auth-service - PATCH /api/v1/orders - Status: 500 - Response time: 1544ms - IP: 192.168.242.165 - User: user_1026 - RequestID: y9e1fu21rnl +2025-06-18T14:28:42.181Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 500 - Response time: 485ms - IP: 192.168.174.114 - User: user_1065 - RequestID: 2oajl5xznjo +2025-06-18T14:28:42.281Z [INFO] inventory-service - Auth event: logout - User: user_1003 - IP: 192.168.32.38 - RequestID: lbtyuo830li +2025-06-18T14:28:42.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.53.133 - RequestID: 30y9352njxx +2025-06-18T14:28:42.481Z [DEBUG] notification-service - Database INSERT on users - Execution time: 183ms - Rows affected: 80 - RequestID: psgwda82wcd +2025-06-18T14:28:42.581Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 63ms - Rows affected: 80 - RequestID: 4p7ilr61rr +2025-06-18T14:28:42.681Z [DEBUG] user-service - PUT /api/v1/orders - Status: 404 - Response time: 168ms - IP: 192.168.181.225 - User: user_1098 - RequestID: beb96a53lwc +2025-06-18T14:28:42.781Z [DEBUG] order-service - PATCH /api/v1/users - Status: 403 - Response time: 810ms - IP: 192.168.138.123 - User: user_1089 - RequestID: zg4wl4vo67 +2025-06-18T14:28:42.881Z [TRACE] notification-service - Operation: cache_miss - Processing time: 226ms - RequestID: yn1j7jyvne8 +2025-06-18T14:28:42.981Z [DEBUG] user-service - Operation: payment_processed - Processing time: 308ms - RequestID: mxn6rsvikih +2025-06-18T14:28:43.081Z [INFO] inventory-service - Database SELECT on users - Execution time: 489ms - Rows affected: 50 - RequestID: li8fkrh04m +2025-06-18T14:28:43.181Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 226ms - Rows affected: 99 - RequestID: 7wljjqjrkex +2025-06-18T14:28:43.281Z [DEBUG] order-service - Database SELECT on orders - Execution time: 95ms - Rows affected: 74 - RequestID: or0ggy7755d +2025-06-18T14:28:43.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.46.63 - RequestID: jm3jamkij9 +2025-06-18T14:28:43.481Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 371ms - Rows affected: 7 - RequestID: lh1uea84pxl +2025-06-18T14:28:43.581Z [TRACE] payment-service - Auth event: password_change - User: user_1088 - IP: 192.168.167.32 - RequestID: fwnw9j47lh +2025-06-18T14:28:43.681Z [INFO] auth-service - POST /api/v1/auth/login - Status: 404 - Response time: 1305ms - IP: 192.168.235.117 - User: user_1046 - RequestID: b8i93bfaz7c +2025-06-18T14:28:43.781Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 158ms - Rows affected: 28 - RequestID: yjtvi02vx4 +2025-06-18T14:28:43.881Z [INFO] order-service - PUT /api/v1/orders - Status: 500 - Response time: 216ms - IP: 192.168.97.87 - User: user_1008 - RequestID: wr1xoz188qb +2025-06-18T14:28:43.981Z [INFO] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 1876ms - IP: 192.168.187.199 - User: user_1082 - RequestID: kciurdfcfrc +2025-06-18T14:28:44.081Z [TRACE] auth-service - Auth event: login_success - User: user_1021 - IP: 192.168.11.60 - RequestID: di0mr1lahhk +2025-06-18T14:28:44.181Z [TRACE] order-service - POST /api/v1/users - Status: 401 - Response time: 1995ms - IP: 192.168.158.144 - User: user_1050 - RequestID: twnzxl4oy9f +2025-06-18T14:28:44.281Z [INFO] auth-service - Database UPDATE on payments - Execution time: 182ms - Rows affected: 14 - RequestID: o0dzlsqnz1 +2025-06-18T14:28:44.381Z [TRACE] inventory-service - Auth event: logout - User: user_1052 - IP: 192.168.13.72 - RequestID: 23g4wbr93bd +2025-06-18T14:28:44.481Z [TRACE] auth-service - GET /api/v1/payments - Status: 500 - Response time: 30ms - IP: 192.168.227.77 - User: user_1017 - RequestID: njjwhsfc1ff +2025-06-18T14:28:44.581Z [INFO] order-service - GET /api/v1/users - Status: 503 - Response time: 1817ms - IP: 192.168.10.184 - User: user_1032 - RequestID: 4huyc7z109e +2025-06-18T14:28:44.681Z [TRACE] auth-service - PATCH /api/v1/users - Status: 403 - Response time: 173ms - IP: 192.168.1.152 - User: user_1050 - RequestID: 1863512qztr +2025-06-18T14:28:44.781Z [INFO] user-service - Database UPDATE on users - Execution time: 277ms - Rows affected: 25 - RequestID: r2qs3pc73pa +2025-06-18T14:28:44.881Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 400 - Response time: 681ms - IP: 192.168.235.117 - User: user_1051 - RequestID: 9v9ct5hq4tr +2025-06-18T14:28:44.981Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 436ms - RequestID: 9z5xtrc99wm +2025-06-18T14:28:45.081Z [INFO] payment-service - Auth event: login_success - User: user_1037 - IP: 192.168.159.94 - RequestID: 4mm6tap10nt +2025-06-18T14:28:45.181Z [INFO] notification-service - Operation: cache_hit - Processing time: 519ms - RequestID: cjt14iygunu +2025-06-18T14:28:45.281Z [TRACE] auth-service - Database UPDATE on users - Execution time: 172ms - Rows affected: 12 - RequestID: k4pkcvjjhnp +2025-06-18T14:28:45.381Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 99ms - Rows affected: 59 - RequestID: ip36ir93t1c +2025-06-18T14:28:45.481Z [INFO] notification-service - Database DELETE on users - Execution time: 408ms - Rows affected: 48 - RequestID: 5zkm8a068js +2025-06-18T14:28:45.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.32.38 - RequestID: 72d8kzkjaqm +2025-06-18T14:28:45.681Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 298ms - RequestID: e3c8e7xjped +2025-06-18T14:28:45.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1087 - IP: 192.168.44.5 - RequestID: 6v9cu4szq2t +2025-06-18T14:28:45.881Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 201 - Response time: 878ms - IP: 192.168.196.226 - User: user_1094 - RequestID: ttg4b4gele8 +2025-06-18T14:28:45.981Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 287ms - Rows affected: 3 - RequestID: 85v6flqnhf9 +2025-06-18T14:28:46.081Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 294ms - Rows affected: 21 - RequestID: icd437qprq +2025-06-18T14:28:46.181Z [INFO] inventory-service - Operation: cache_miss - Processing time: 457ms - RequestID: nfocghanne +2025-06-18T14:28:46.281Z [INFO] auth-service - Operation: cache_hit - Processing time: 585ms - RequestID: 1eptcs6as5v +2025-06-18T14:28:46.381Z [INFO] user-service - PUT /api/v1/inventory - Status: 401 - Response time: 1809ms - IP: 192.168.211.72 - User: user_1054 - RequestID: y0lol3q3gt +2025-06-18T14:28:46.481Z [INFO] inventory-service - Database SELECT on orders - Execution time: 484ms - Rows affected: 24 - RequestID: 9r5rg1wl5ds +2025-06-18T14:28:46.581Z [INFO] auth-service - GET /api/v1/payments - Status: 500 - Response time: 1460ms - IP: 192.168.194.41 - User: user_1023 - RequestID: mjtv7ydaqqe +2025-06-18T14:28:46.681Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 200 - Response time: 1759ms - IP: 192.168.167.32 - User: user_1063 - RequestID: jyg7qtutq0o +2025-06-18T14:28:46.781Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 601ms - IP: 192.168.170.215 - User: user_1031 - RequestID: g1f6rj3fwhh +2025-06-18T14:28:46.881Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 823ms - RequestID: 6mhm0z0aus +2025-06-18T14:28:46.981Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 200ms - IP: 192.168.1.152 - User: user_1032 - RequestID: gu5xrcqtlxd +2025-06-18T14:28:47.081Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 400 - Response time: 378ms - IP: 192.168.189.103 - User: user_1089 - RequestID: bvsw5q6n0bb +2025-06-18T14:28:47.181Z [INFO] notification-service - PATCH /api/v1/orders - Status: 502 - Response time: 1169ms - IP: 192.168.85.229 - User: user_1086 - RequestID: gc5g9f220xu +2025-06-18T14:28:47.281Z [INFO] inventory-service - POST /api/v1/orders - Status: 201 - Response time: 216ms - IP: 192.168.158.144 - User: user_1088 - RequestID: pn8jdohis9a +2025-06-18T14:28:47.381Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 400 - Response time: 928ms - IP: 192.168.159.94 - User: user_1094 - RequestID: 3l8u74i4vs3 +2025-06-18T14:28:47.481Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 401 - Response time: 683ms - IP: 192.168.97.87 - User: user_1000 - RequestID: udma0hzwtod +2025-06-18T14:28:47.581Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1365ms - IP: 192.168.104.37 - User: user_1089 - RequestID: 8q7f2ycuu8 +2025-06-18T14:28:47.681Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 342ms - Rows affected: 81 - RequestID: sei66x8i3s +2025-06-18T14:28:47.781Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 293ms - Rows affected: 10 - RequestID: f86fs4t6tml +2025-06-18T14:28:47.881Z [INFO] notification-service - Database SELECT on orders - Execution time: 137ms - Rows affected: 93 - RequestID: 26knm4g6dyjh +2025-06-18T14:28:47.981Z [TRACE] notification-service - Database INSERT on users - Execution time: 410ms - Rows affected: 35 - RequestID: 1uupjprsy45h +2025-06-18T14:28:48.081Z [INFO] order-service - Database UPDATE on sessions - Execution time: 479ms - Rows affected: 99 - RequestID: 70gk5ezkz1k +2025-06-18T14:28:48.181Z [TRACE] user-service - Database DELETE on users - Execution time: 8ms - Rows affected: 98 - RequestID: c4hkzp1jl +2025-06-18T14:28:48.281Z [TRACE] payment-service - Operation: cache_hit - Processing time: 100ms - RequestID: sddnnfqo7c +2025-06-18T14:28:48.381Z [TRACE] order-service - GET /api/v1/payments - Status: 401 - Response time: 801ms - IP: 192.168.194.41 - User: user_1057 - RequestID: dk6t037wk9 +2025-06-18T14:28:48.481Z [DEBUG] order-service - Operation: order_created - Processing time: 553ms - RequestID: 1ljsozf7e51 +2025-06-18T14:28:48.581Z [DEBUG] order-service - Operation: cache_miss - Processing time: 380ms - RequestID: 1rxdnrzoh65 +2025-06-18T14:28:48.681Z [INFO] notification-service - Operation: webhook_sent - Processing time: 206ms - RequestID: 9tcs86v64xm +2025-06-18T14:28:48.781Z [TRACE] payment-service - Operation: cache_hit - Processing time: 952ms - RequestID: 1d9xcjma4y1 +2025-06-18T14:28:48.881Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 400 - Response time: 283ms - IP: 192.168.79.141 - User: user_1092 - RequestID: 385vw7dbrzl +2025-06-18T14:28:48.981Z [TRACE] order-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.187.199 - RequestID: 2n3223yr4cl +2025-06-18T14:28:49.081Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 617ms - RequestID: c3mmkjmu31r +2025-06-18T14:28:49.181Z [DEBUG] notification-service - PUT /api/v1/users - Status: 403 - Response time: 389ms - IP: 192.168.100.240 - User: user_1099 - RequestID: ns42ssuyi8c +2025-06-18T14:28:49.281Z [INFO] auth-service - POST /api/v1/inventory - Status: 400 - Response time: 921ms - IP: 192.168.44.5 - User: user_1004 - RequestID: yfgfabum9ub +2025-06-18T14:28:49.381Z [TRACE] notification-service - Database INSERT on products - Execution time: 91ms - Rows affected: 63 - RequestID: bkobi90ylf6 +2025-06-18T14:28:49.481Z [DEBUG] notification-service - GET /api/v1/orders - Status: 400 - Response time: 1947ms - IP: 192.168.33.76 - User: user_1058 - RequestID: t22nxkd64j9 +2025-06-18T14:28:49.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 1010ms - RequestID: g4pruney0dr +2025-06-18T14:28:49.681Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 307ms - Rows affected: 98 - RequestID: td0hgm60to8 +2025-06-18T14:28:49.781Z [DEBUG] auth-service - Operation: email_sent - Processing time: 476ms - RequestID: u5amhpsl4qc +2025-06-18T14:28:49.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.181.225 - RequestID: cgmnw0j0i5l +2025-06-18T14:28:49.981Z [INFO] inventory-service - Operation: email_sent - Processing time: 614ms - RequestID: 18d61qqqy0y +2025-06-18T14:28:50.081Z [TRACE] user-service - Operation: webhook_sent - Processing time: 715ms - RequestID: flw2w8tw52 +2025-06-18T14:28:50.181Z [INFO] inventory-service - Auth event: password_change - User: user_1099 - IP: 192.168.11.60 - RequestID: jzl9bgdrv8r +2025-06-18T14:28:50.281Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 641ms - RequestID: 9d2raezm9f9 +2025-06-18T14:28:50.381Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 497ms - Rows affected: 59 - RequestID: q0lfncybo4e +2025-06-18T14:28:50.481Z [DEBUG] user-service - Operation: payment_processed - Processing time: 371ms - RequestID: udja1qr1t1 +2025-06-18T14:28:50.581Z [INFO] user-service - Database SELECT on users - Execution time: 348ms - Rows affected: 1 - RequestID: gxbjoqtoxxm +2025-06-18T14:28:50.681Z [TRACE] user-service - Database UPDATE on users - Execution time: 183ms - Rows affected: 89 - RequestID: qmizlbcl63i +2025-06-18T14:28:50.781Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 400 - Response time: 292ms - IP: 192.168.247.134 - User: user_1034 - RequestID: qraso8q9me +2025-06-18T14:28:50.881Z [DEBUG] notification-service - Auth event: logout - User: user_1086 - IP: 192.168.46.63 - RequestID: c176gikdgwv +2025-06-18T14:28:50.981Z [TRACE] order-service - Operation: order_created - Processing time: 381ms - RequestID: 034vv3zkxp46 +2025-06-18T14:28:51.081Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1653ms - IP: 192.168.247.134 - User: user_1072 - RequestID: thaza4dx04r +2025-06-18T14:28:51.181Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 171ms - Rows affected: 6 - RequestID: h8kmmc9rjxl +2025-06-18T14:28:51.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.10.184 - RequestID: tpe3dij8re +2025-06-18T14:28:51.381Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.53.133 - RequestID: 7qg47ccvcy +2025-06-18T14:28:51.481Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 503 - Response time: 183ms - IP: 192.168.170.215 - User: user_1085 - RequestID: ft5kq7pwsp +2025-06-18T14:28:51.581Z [TRACE] order-service - Auth event: login_failed - User: user_1065 - IP: 192.168.138.123 - RequestID: vb83eajfhum +2025-06-18T14:28:51.681Z [TRACE] notification-service - Auth event: logout - User: user_1064 - IP: 192.168.79.116 - RequestID: qcim6zh2tda +2025-06-18T14:28:51.781Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 21ms - Rows affected: 28 - RequestID: 4w261nlakrd +2025-06-18T14:28:51.881Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.170.215 - RequestID: 18vptu5bft9 +2025-06-18T14:28:51.981Z [TRACE] order-service - Operation: cache_hit - Processing time: 212ms - RequestID: 2rcnpl2mrah +2025-06-18T14:28:52.081Z [TRACE] auth-service - DELETE /api/v1/users - Status: 403 - Response time: 1309ms - IP: 192.168.113.218 - User: user_1022 - RequestID: ebgllm0jnig +2025-06-18T14:28:52.181Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 342ms - Rows affected: 50 - RequestID: tocw8yuiui +2025-06-18T14:28:52.281Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 363ms - Rows affected: 61 - RequestID: hpt4cjt0sv +2025-06-18T14:28:52.381Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 769ms - RequestID: 4857yd8sbma +2025-06-18T14:28:52.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.227.233 - RequestID: s6ugijk58f +2025-06-18T14:28:52.581Z [TRACE] notification-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.158.144 - RequestID: 96czwmrtdxs +2025-06-18T14:28:52.681Z [TRACE] payment-service - Database SELECT on payments - Execution time: 367ms - Rows affected: 88 - RequestID: 2vbw5z6b9lp +2025-06-18T14:28:52.781Z [DEBUG] user-service - Operation: payment_processed - Processing time: 235ms - RequestID: rd6nrw1en2 +2025-06-18T14:28:52.881Z [TRACE] user-service - Operation: cache_miss - Processing time: 825ms - RequestID: 8s4th2oo9y4 +2025-06-18T14:28:52.981Z [INFO] user-service - Operation: webhook_sent - Processing time: 314ms - RequestID: c3h6379ba6r +2025-06-18T14:28:53.081Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 182ms - Rows affected: 1 - RequestID: dkmn0a8rgj +2025-06-18T14:28:53.181Z [INFO] inventory-service - PATCH /api/v1/users - Status: 502 - Response time: 809ms - IP: 192.168.229.123 - User: user_1081 - RequestID: 9dk9d5h2ygp +2025-06-18T14:28:53.281Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 461ms - Rows affected: 30 - RequestID: 7fcoo2l2b8t +2025-06-18T14:28:53.381Z [INFO] order-service - Database SELECT on orders - Execution time: 36ms - Rows affected: 13 - RequestID: x0erl67bjt8 +2025-06-18T14:28:53.481Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 141ms - Rows affected: 7 - RequestID: 8uyxxjnvv6 +2025-06-18T14:28:53.581Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 423ms - Rows affected: 23 - RequestID: rotqmmbvou +2025-06-18T14:28:53.681Z [INFO] payment-service - Database SELECT on products - Execution time: 159ms - Rows affected: 65 - RequestID: dxgtt80shio +2025-06-18T14:28:53.781Z [INFO] payment-service - Database DELETE on sessions - Execution time: 131ms - Rows affected: 53 - RequestID: d17u6hjf8ik +2025-06-18T14:28:53.881Z [INFO] order-service - PUT /api/v1/auth/login - Status: 201 - Response time: 919ms - IP: 192.168.44.5 - User: user_1075 - RequestID: zl8rwlxmr2 +2025-06-18T14:28:53.981Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 217ms - Rows affected: 49 - RequestID: z6wqy26hgv +2025-06-18T14:28:54.081Z [TRACE] order-service - Database UPDATE on orders - Execution time: 348ms - Rows affected: 4 - RequestID: eipvwtbpc0u +2025-06-18T14:28:54.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.14.77 - RequestID: 7engme85y4i +2025-06-18T14:28:54.281Z [TRACE] notification-service - Auth event: password_change - User: user_1094 - IP: 192.168.14.77 - RequestID: yuq17jdf6e +2025-06-18T14:28:54.381Z [TRACE] order-service - Database INSERT on products - Execution time: 220ms - Rows affected: 19 - RequestID: vz6dnpxj2m +2025-06-18T14:28:54.481Z [DEBUG] auth-service - Operation: email_sent - Processing time: 738ms - RequestID: mqrs7ipzyn +2025-06-18T14:28:54.581Z [INFO] notification-service - DELETE /api/v1/payments - Status: 404 - Response time: 551ms - IP: 192.168.194.41 - User: user_1099 - RequestID: vexhpvnthv +2025-06-18T14:28:54.681Z [TRACE] auth-service - Database SELECT on products - Execution time: 262ms - Rows affected: 99 - RequestID: 245ii7s166h +2025-06-18T14:28:54.781Z [INFO] inventory-service - Operation: notification_queued - Processing time: 579ms - RequestID: s2ch39103yn +2025-06-18T14:28:54.881Z [TRACE] notification-service - Auth event: password_change - User: user_1011 - IP: 192.168.46.63 - RequestID: yfgqv12zdzc +2025-06-18T14:28:54.981Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 281ms - Rows affected: 60 - RequestID: p6r7yezgp1d +2025-06-18T14:28:55.081Z [INFO] notification-service - Auth event: logout - User: user_1022 - IP: 192.168.174.114 - RequestID: vg4zdc8w71 +2025-06-18T14:28:55.181Z [TRACE] auth-service - Database UPDATE on products - Execution time: 189ms - Rows affected: 74 - RequestID: szpv1afatfg +2025-06-18T14:28:55.281Z [TRACE] order-service - Database SELECT on users - Execution time: 283ms - Rows affected: 70 - RequestID: hbr6kw9prv +2025-06-18T14:28:55.381Z [INFO] notification-service - Auth event: logout - User: user_1045 - IP: 192.168.133.7 - RequestID: uhqi05274b +2025-06-18T14:28:55.481Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 417ms - RequestID: t2489u5epb8 +2025-06-18T14:28:55.581Z [TRACE] order-service - Auth event: login_success - User: user_1017 - IP: 192.168.104.37 - RequestID: 4c4baw6fcw +2025-06-18T14:28:55.681Z [TRACE] user-service - Auth event: logout - User: user_1000 - IP: 192.168.81.206 - RequestID: 6aqtex9bbm5 +2025-06-18T14:28:55.781Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 416ms - Rows affected: 62 - RequestID: kffjx8yptv +2025-06-18T14:28:55.881Z [INFO] auth-service - Operation: notification_queued - Processing time: 323ms - RequestID: we93qq77fq +2025-06-18T14:28:55.981Z [INFO] order-service - Operation: notification_queued - Processing time: 452ms - RequestID: ur550w5wl1e +2025-06-18T14:28:56.081Z [TRACE] order-service - Database SELECT on users - Execution time: 51ms - Rows affected: 92 - RequestID: ocxx0zxi8hc +2025-06-18T14:28:56.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.194.41 - RequestID: d5ptwz2dap +2025-06-18T14:28:56.281Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 485ms - RequestID: 8phnirxnium +2025-06-18T14:28:56.381Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 36ms - IP: 192.168.10.184 - User: user_1058 - RequestID: xzpwbt3l2v +2025-06-18T14:28:56.481Z [TRACE] inventory-service - Database SELECT on users - Execution time: 492ms - Rows affected: 14 - RequestID: ywf9r0anm9n +2025-06-18T14:28:56.581Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 12ms - Rows affected: 64 - RequestID: swxu24go8x +2025-06-18T14:28:56.681Z [DEBUG] notification-service - Auth event: password_change - User: user_1080 - IP: 192.168.13.72 - RequestID: wgnry800ois +2025-06-18T14:28:56.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 723ms - RequestID: zckxtnd8lao +2025-06-18T14:28:56.881Z [TRACE] user-service - POST /api/v1/payments - Status: 400 - Response time: 258ms - IP: 192.168.194.41 - User: user_1002 - RequestID: 9uqqoq0o2s +2025-06-18T14:28:56.981Z [INFO] payment-service - DELETE /api/v1/orders - Status: 201 - Response time: 429ms - IP: 192.168.100.240 - User: user_1005 - RequestID: ned1hvwn8po +2025-06-18T14:28:57.081Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 662ms - RequestID: lj26ptsm2de +2025-06-18T14:28:57.181Z [DEBUG] user-service - Auth event: login_success - User: user_1017 - IP: 192.168.235.117 - RequestID: 5h2ye0s2lug +2025-06-18T14:28:57.281Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 154ms - Rows affected: 51 - RequestID: l3cpm4ucvu +2025-06-18T14:28:57.381Z [INFO] payment-service - Database INSERT on sessions - Execution time: 1ms - Rows affected: 41 - RequestID: 69j3owkp3fj +2025-06-18T14:28:57.481Z [TRACE] notification-service - GET /api/v1/users - Status: 200 - Response time: 1468ms - IP: 192.168.64.33 - User: user_1094 - RequestID: yault9pp6ss +2025-06-18T14:28:57.581Z [INFO] user-service - Auth event: login_failed - User: user_1070 - IP: 192.168.13.72 - RequestID: kzpgjgiekw +2025-06-18T14:28:57.681Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 503 - Response time: 96ms - IP: 192.168.33.76 - User: user_1073 - RequestID: 9fpkdcnm5b9 +2025-06-18T14:28:57.781Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 321ms - RequestID: 2eiocbc5jad +2025-06-18T14:28:57.881Z [TRACE] auth-service - Auth event: password_change - User: user_1048 - IP: 192.168.158.144 - RequestID: uzq15ys7hdq +2025-06-18T14:28:57.981Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 57ms - Rows affected: 11 - RequestID: c6ryyq60sbl +2025-06-18T14:28:58.081Z [INFO] notification-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.141.100 - RequestID: gc1rp2extpj +2025-06-18T14:28:58.181Z [TRACE] auth-service - Auth event: login_success - User: user_1022 - IP: 192.168.36.218 - RequestID: ra9loyuez3 +2025-06-18T14:28:58.281Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 145ms - Rows affected: 51 - RequestID: rec4pfo48t +2025-06-18T14:28:58.381Z [TRACE] order-service - Database INSERT on products - Execution time: 8ms - Rows affected: 16 - RequestID: riounq2ry3n +2025-06-18T14:28:58.481Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 443ms - Rows affected: 32 - RequestID: 5fdj3hb3pug +2025-06-18T14:28:58.581Z [TRACE] notification-service - Database INSERT on products - Execution time: 137ms - Rows affected: 70 - RequestID: 5sz6hith3vm +2025-06-18T14:28:58.681Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 272ms - Rows affected: 41 - RequestID: qm9ca0b746 +2025-06-18T14:28:58.781Z [INFO] payment-service - Database DELETE on payments - Execution time: 353ms - Rows affected: 77 - RequestID: geys3scbc4q +2025-06-18T14:28:58.881Z [INFO] notification-service - Auth event: password_change - User: user_1058 - IP: 192.168.14.77 - RequestID: ie58cpunur +2025-06-18T14:28:58.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1070 - IP: 192.168.194.41 - RequestID: d40k6xp77qg +2025-06-18T14:28:59.081Z [TRACE] order-service - Database SELECT on users - Execution time: 44ms - Rows affected: 19 - RequestID: bfelyrhremr +2025-06-18T14:28:59.181Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 196ms - RequestID: 7tah1qw1xg7 +2025-06-18T14:28:59.281Z [INFO] notification-service - GET /api/v1/orders - Status: 503 - Response time: 1355ms - IP: 192.168.10.184 - User: user_1030 - RequestID: ebscxbrj5bi +2025-06-18T14:28:59.381Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 533ms - RequestID: 1xt0dnqp780h +2025-06-18T14:28:59.481Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 226ms - Rows affected: 10 - RequestID: rx0nvf0rzic +2025-06-18T14:28:59.581Z [TRACE] order-service - Auth event: login_success - User: user_1032 - IP: 192.168.181.225 - RequestID: ibph3vld9hn +2025-06-18T14:28:59.681Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1327ms - IP: 192.168.79.116 - User: user_1077 - RequestID: iah0h48uhwd +2025-06-18T14:28:59.781Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 227ms - Rows affected: 87 - RequestID: 7x402xajlaa +2025-06-18T14:28:59.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1021 - IP: 192.168.167.32 - RequestID: jkoa4525tzk +2025-06-18T14:28:59.981Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 1020ms - RequestID: 3t2axrdmxtp +2025-06-18T14:29:00.081Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 70ms - Rows affected: 32 - RequestID: au0co1ogjuh +2025-06-18T14:29:00.181Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1022 - IP: 192.168.147.171 - RequestID: lyfn8u9bwor +2025-06-18T14:29:00.281Z [INFO] payment-service - Auth event: logout - User: user_1097 - IP: 192.168.33.76 - RequestID: z712k5gkfz9 +2025-06-18T14:29:00.381Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 500 - Response time: 56ms - IP: 192.168.196.226 - User: user_1090 - RequestID: 0qs8k6pik71 +2025-06-18T14:29:00.481Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 639ms - RequestID: 1tqcuazt0tt +2025-06-18T14:29:00.581Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 778ms - RequestID: w24ubs3542i +2025-06-18T14:29:00.681Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 682ms - IP: 192.168.133.7 - User: user_1067 - RequestID: ii0mrtdov2m +2025-06-18T14:29:00.781Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 334ms - RequestID: ku0jxvync2l +2025-06-18T14:29:00.881Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 503 - Response time: 846ms - IP: 192.168.187.199 - User: user_1032 - RequestID: ngxc08hwt6a +2025-06-18T14:29:00.981Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 120ms - Rows affected: 70 - RequestID: 898y8wwxg8j +2025-06-18T14:29:01.081Z [TRACE] auth-service - Operation: email_sent - Processing time: 976ms - RequestID: g9xt95ozey4 +2025-06-18T14:29:01.181Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1689ms - IP: 192.168.81.206 - User: user_1083 - RequestID: elk9a695tj +2025-06-18T14:29:01.281Z [INFO] user-service - Database SELECT on users - Execution time: 337ms - Rows affected: 22 - RequestID: pdhk0gpp4dj +2025-06-18T14:29:01.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 740ms - RequestID: ashl4zwal9h +2025-06-18T14:29:01.481Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 404 - Response time: 544ms - IP: 192.168.28.146 - User: user_1040 - RequestID: vbdgt4pawnk +2025-06-18T14:29:01.581Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 229ms - Rows affected: 73 - RequestID: qgtv0ah1hd +2025-06-18T14:29:01.681Z [INFO] inventory-service - Auth event: login_success - User: user_1032 - IP: 192.168.167.32 - RequestID: dgzko57c7ni +2025-06-18T14:29:01.781Z [TRACE] user-service - Database SELECT on products - Execution time: 57ms - Rows affected: 69 - RequestID: qjhbirvku1k +2025-06-18T14:29:01.881Z [INFO] inventory-service - Auth event: password_change - User: user_1024 - IP: 192.168.170.215 - RequestID: 0nu7lbv7azp +2025-06-18T14:29:01.981Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 502 - Response time: 429ms - IP: 192.168.81.206 - User: user_1088 - RequestID: d6w711v7x5f +2025-06-18T14:29:02.081Z [INFO] payment-service - Auth event: password_change - User: user_1015 - IP: 192.168.13.72 - RequestID: 7oik296l5wb +2025-06-18T14:29:02.181Z [TRACE] notification-service - PUT /api/v1/payments - Status: 404 - Response time: 438ms - IP: 192.168.158.144 - User: user_1068 - RequestID: 8sni2p1m5zx +2025-06-18T14:29:02.281Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 500 - Response time: 402ms - IP: 192.168.187.199 - User: user_1049 - RequestID: nnw11zz35th +2025-06-18T14:29:02.381Z [DEBUG] user-service - Auth event: logout - User: user_1011 - IP: 192.168.144.38 - RequestID: m35puab5mu7 +2025-06-18T14:29:02.481Z [DEBUG] auth-service - POST /api/v1/payments - Status: 500 - Response time: 1987ms - IP: 192.168.64.33 - User: user_1042 - RequestID: r2ockhxxi7 +2025-06-18T14:29:02.581Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 805ms - RequestID: ip83mlxjmsm +2025-06-18T14:29:02.681Z [TRACE] payment-service - Database SELECT on users - Execution time: 198ms - Rows affected: 99 - RequestID: jemfg0uqz5 +2025-06-18T14:29:02.781Z [TRACE] payment-service - Database SELECT on payments - Execution time: 345ms - Rows affected: 5 - RequestID: bai3zoi6nga +2025-06-18T14:29:02.881Z [INFO] notification-service - Database SELECT on products - Execution time: 401ms - Rows affected: 64 - RequestID: mizo32ui83 +2025-06-18T14:29:02.981Z [INFO] user-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1890ms - IP: 192.168.104.37 - User: user_1021 - RequestID: bbgmf11tmu +2025-06-18T14:29:03.081Z [INFO] auth-service - Database UPDATE on payments - Execution time: 105ms - Rows affected: 48 - RequestID: dok89m3rels +2025-06-18T14:29:03.181Z [INFO] inventory-service - GET /api/v1/users - Status: 502 - Response time: 225ms - IP: 192.168.10.184 - User: user_1018 - RequestID: 8po5nq0g0a +2025-06-18T14:29:03.281Z [TRACE] order-service - Database UPDATE on products - Execution time: 384ms - Rows affected: 26 - RequestID: pdhd8vgbajb +2025-06-18T14:29:03.381Z [DEBUG] notification-service - Operation: order_created - Processing time: 725ms - RequestID: buex4lk9zka +2025-06-18T14:29:03.481Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 518ms - RequestID: 5emfvwq33nj +2025-06-18T14:29:03.581Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 472ms - Rows affected: 88 - RequestID: 1cbw47ku9os +2025-06-18T14:29:03.681Z [TRACE] order-service - Database SELECT on products - Execution time: 144ms - Rows affected: 33 - RequestID: bhlmopyzppk +2025-06-18T14:29:03.781Z [INFO] user-service - Operation: notification_queued - Processing time: 268ms - RequestID: h2y2hw7he4n +2025-06-18T14:29:03.881Z [TRACE] notification-service - Auth event: login_success - User: user_1012 - IP: 192.168.229.123 - RequestID: izavqrobkhb +2025-06-18T14:29:03.981Z [DEBUG] notification-service - Auth event: login_success - User: user_1071 - IP: 192.168.187.199 - RequestID: zuykxptjojn +2025-06-18T14:29:04.081Z [TRACE] user-service - Auth event: login_failed - User: user_1003 - IP: 192.168.32.38 - RequestID: a22m6wh9abh +2025-06-18T14:29:04.181Z [TRACE] notification-service - Operation: cache_miss - Processing time: 428ms - RequestID: o5d09qlkmb +2025-06-18T14:29:04.281Z [INFO] inventory-service - POST /api/v1/users - Status: 401 - Response time: 1468ms - IP: 192.168.44.5 - User: user_1066 - RequestID: 3sbwkzk15od +2025-06-18T14:29:04.381Z [INFO] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 675ms - IP: 192.168.174.114 - User: user_1039 - RequestID: utf5niy5zu9 +2025-06-18T14:29:04.481Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 374ms - Rows affected: 28 - RequestID: pjkgbw0nrt +2025-06-18T14:29:04.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 608ms - RequestID: cd5evpc7kvu +2025-06-18T14:29:04.681Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 357ms - RequestID: s4nkebyuv9r +2025-06-18T14:29:04.781Z [TRACE] user-service - POST /api/v1/inventory - Status: 401 - Response time: 578ms - IP: 192.168.53.133 - User: user_1079 - RequestID: hwm1z1imsdh +2025-06-18T14:29:04.881Z [INFO] payment-service - Operation: cache_miss - Processing time: 331ms - RequestID: 3cm7lm6hjz6 +2025-06-18T14:29:04.981Z [INFO] auth-service - PATCH /api/v1/orders - Status: 200 - Response time: 1923ms - IP: 192.168.167.32 - User: user_1094 - RequestID: x9a0hdwklwt +2025-06-18T14:29:05.081Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 408ms - Rows affected: 95 - RequestID: g2fi9up2a06 +2025-06-18T14:29:05.181Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 401 - Response time: 903ms - IP: 192.168.11.60 - User: user_1093 - RequestID: ladb1l1brsr +2025-06-18T14:29:05.281Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 474ms - Rows affected: 71 - RequestID: dx0n8bp5ced +2025-06-18T14:29:05.381Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1756ms - IP: 192.168.97.87 - User: user_1088 - RequestID: ytrknytbp7r +2025-06-18T14:29:05.481Z [TRACE] user-service - Database UPDATE on products - Execution time: 160ms - Rows affected: 9 - RequestID: 6x54ouk8ktj +2025-06-18T14:29:05.581Z [DEBUG] user-service - POST /api/v1/payments - Status: 200 - Response time: 726ms - IP: 192.168.174.114 - User: user_1057 - RequestID: 61kltk892zk +2025-06-18T14:29:05.681Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 212ms - Rows affected: 55 - RequestID: 6mlicac6pc6 +2025-06-18T14:29:05.781Z [INFO] order-service - Database DELETE on sessions - Execution time: 218ms - Rows affected: 14 - RequestID: sz3q0cpl3vm +2025-06-18T14:29:05.881Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1578ms - IP: 192.168.240.169 - User: user_1078 - RequestID: hcpkgmq6uwt +2025-06-18T14:29:05.981Z [INFO] inventory-service - GET /api/v1/users - Status: 401 - Response time: 607ms - IP: 192.168.79.143 - User: user_1003 - RequestID: ry49od1rzro +2025-06-18T14:29:06.081Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 403ms - Rows affected: 44 - RequestID: l1ncy9htycn +2025-06-18T14:29:06.181Z [TRACE] auth-service - Database DELETE on products - Execution time: 171ms - Rows affected: 47 - RequestID: esg5e910p8t +2025-06-18T14:29:06.281Z [INFO] user-service - Database DELETE on orders - Execution time: 399ms - Rows affected: 86 - RequestID: 1rbuzcxdhfs +2025-06-18T14:29:06.381Z [TRACE] user-service - Operation: inventory_updated - Processing time: 616ms - RequestID: qdaxnhcepz +2025-06-18T14:29:06.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1054 - IP: 192.168.81.206 - RequestID: ya30gf603e9 +2025-06-18T14:29:06.581Z [INFO] user-service - Operation: order_created - Processing time: 342ms - RequestID: kqxmyxwraf +2025-06-18T14:29:06.681Z [TRACE] auth-service - Auth event: password_change - User: user_1039 - IP: 192.168.10.184 - RequestID: 3m2j9gsygfh +2025-06-18T14:29:06.781Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 401 - Response time: 842ms - IP: 192.168.227.77 - User: user_1049 - RequestID: 95ud6uh202f +2025-06-18T14:29:06.881Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 622ms - RequestID: 2zci1hlt1n7 +2025-06-18T14:29:06.981Z [DEBUG] order-service - Auth event: logout - User: user_1088 - IP: 192.168.64.33 - RequestID: tpx66eiwcj +2025-06-18T14:29:07.081Z [INFO] order-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1497ms - IP: 192.168.11.60 - User: user_1085 - RequestID: jik90j5owsd +2025-06-18T14:29:07.181Z [DEBUG] order-service - Operation: email_sent - Processing time: 307ms - RequestID: 8v8j7t5m219 +2025-06-18T14:29:07.281Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.196.226 - RequestID: yjrqcpcyia +2025-06-18T14:29:07.381Z [INFO] payment-service - Database UPDATE on orders - Execution time: 454ms - Rows affected: 52 - RequestID: vrhqla258n +2025-06-18T14:29:07.481Z [TRACE] order-service - Database SELECT on sessions - Execution time: 424ms - Rows affected: 51 - RequestID: jwrlh2odcq +2025-06-18T14:29:07.581Z [INFO] payment-service - Operation: payment_processed - Processing time: 839ms - RequestID: d823rbl7sxi +2025-06-18T14:29:07.681Z [INFO] inventory-service - Database DELETE on orders - Execution time: 207ms - Rows affected: 66 - RequestID: ohj28asuxx +2025-06-18T14:29:07.781Z [TRACE] payment-service - Database UPDATE on users - Execution time: 268ms - Rows affected: 64 - RequestID: 5ysc3yccvvx +2025-06-18T14:29:07.881Z [INFO] user-service - Operation: cache_hit - Processing time: 632ms - RequestID: 9zcjycgmdpl +2025-06-18T14:29:07.981Z [INFO] notification-service - PUT /api/v1/payments - Status: 200 - Response time: 1009ms - IP: 192.168.79.141 - User: user_1017 - RequestID: qvur04vdn4c +2025-06-18T14:29:08.081Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 227ms - Rows affected: 99 - RequestID: 429a9iuzrd4 +2025-06-18T14:29:08.181Z [TRACE] notification-service - Auth event: password_change - User: user_1028 - IP: 192.168.81.206 - RequestID: mhb7am3o2mj +2025-06-18T14:29:08.281Z [TRACE] auth-service - Operation: payment_processed - Processing time: 189ms - RequestID: mynbzvvw6mi +2025-06-18T14:29:08.381Z [INFO] inventory-service - PATCH /api/v1/users - Status: 200 - Response time: 253ms - IP: 192.168.147.171 - User: user_1087 - RequestID: nqdebg8cik +2025-06-18T14:29:08.481Z [TRACE] payment-service - Auth event: password_change - User: user_1026 - IP: 192.168.133.7 - RequestID: sf567jkxm5f +2025-06-18T14:29:08.581Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 185ms - Rows affected: 79 - RequestID: s8ctrq09nu +2025-06-18T14:29:08.681Z [INFO] user-service - Database INSERT on payments - Execution time: 133ms - Rows affected: 20 - RequestID: zrmlnx1rbh +2025-06-18T14:29:08.781Z [INFO] auth-service - POST /api/v1/orders - Status: 401 - Response time: 691ms - IP: 192.168.33.76 - User: user_1008 - RequestID: duvwmxp8sd +2025-06-18T14:29:08.881Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 363ms - RequestID: d65n6z8ccow +2025-06-18T14:29:08.981Z [DEBUG] auth-service - Auth event: logout - User: user_1063 - IP: 192.168.1.152 - RequestID: efv3uz6g91 +2025-06-18T14:29:09.081Z [TRACE] user-service - POST /api/v1/auth/login - Status: 200 - Response time: 650ms - IP: 192.168.189.103 - User: user_1000 - RequestID: xzjg4z0udp +2025-06-18T14:29:09.181Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1759ms - IP: 192.168.32.38 - User: user_1015 - RequestID: shfa2d7b4s +2025-06-18T14:29:09.281Z [INFO] user-service - Database DELETE on users - Execution time: 344ms - Rows affected: 39 - RequestID: 29l0w69iasi +2025-06-18T14:29:09.381Z [TRACE] auth-service - Database SELECT on orders - Execution time: 114ms - Rows affected: 1 - RequestID: jhl2zzkk5q +2025-06-18T14:29:09.481Z [INFO] inventory-service - Auth event: login_success - User: user_1001 - IP: 192.168.138.123 - RequestID: 1totthgwf3jj +2025-06-18T14:29:09.581Z [TRACE] order-service - POST /api/v1/inventory - Status: 500 - Response time: 1522ms - IP: 192.168.68.158 - User: user_1050 - RequestID: 8o135os80p4 +2025-06-18T14:29:09.681Z [TRACE] order-service - GET /api/v1/payments - Status: 404 - Response time: 1411ms - IP: 192.168.242.165 - User: user_1094 - RequestID: eppxcgqwqjs +2025-06-18T14:29:09.781Z [DEBUG] order-service - Auth event: login_success - User: user_1028 - IP: 192.168.13.72 - RequestID: h9wgqnhacmc +2025-06-18T14:29:09.881Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 104ms - Rows affected: 58 - RequestID: dslr6n2svk +2025-06-18T14:29:09.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.167.32 - RequestID: r7te52sq14 +2025-06-18T14:29:10.081Z [INFO] user-service - Database DELETE on products - Execution time: 131ms - Rows affected: 73 - RequestID: tnm4wkqo8e +2025-06-18T14:29:10.181Z [INFO] inventory-service - Database SELECT on users - Execution time: 94ms - Rows affected: 39 - RequestID: qu6vs40yt6 +2025-06-18T14:29:10.281Z [INFO] payment-service - Database SELECT on sessions - Execution time: 101ms - Rows affected: 43 - RequestID: 9wyhzkgwbt8 +2025-06-18T14:29:10.381Z [INFO] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 203ms - IP: 192.168.33.76 - User: user_1063 - RequestID: a85t224u12q +2025-06-18T14:29:10.481Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 654ms - IP: 192.168.232.72 - User: user_1039 - RequestID: dj1facyg2mt +2025-06-18T14:29:10.581Z [DEBUG] order-service - POST /api/v1/payments - Status: 503 - Response time: 1272ms - IP: 192.168.113.218 - User: user_1070 - RequestID: n2xk2g0pcg +2025-06-18T14:29:10.681Z [DEBUG] user-service - Operation: order_created - Processing time: 391ms - RequestID: i3d28vhhob +2025-06-18T14:29:10.781Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 503 - Response time: 506ms - IP: 192.168.81.206 - User: user_1088 - RequestID: bcjqr2ge1nr +2025-06-18T14:29:10.881Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 180ms - Rows affected: 59 - RequestID: 88hs3zqbhvl +2025-06-18T14:29:10.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.174.114 - RequestID: 8lfcuhcw37v +2025-06-18T14:29:11.081Z [INFO] payment-service - Auth event: login_failed - User: user_1045 - IP: 192.168.196.226 - RequestID: xt73jg4nwzp +2025-06-18T14:29:11.181Z [TRACE] order-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.30.79 - RequestID: db5kn3mmvd +2025-06-18T14:29:11.281Z [TRACE] auth-service - Database DELETE on orders - Execution time: 180ms - Rows affected: 90 - RequestID: nbzkoq554oo +2025-06-18T14:29:11.381Z [TRACE] notification-service - Database DELETE on users - Execution time: 52ms - Rows affected: 34 - RequestID: il7sxm66typ +2025-06-18T14:29:11.481Z [INFO] user-service - Database DELETE on sessions - Execution time: 98ms - Rows affected: 53 - RequestID: oejhbhze06 +2025-06-18T14:29:11.581Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 401 - Response time: 1939ms - IP: 192.168.247.134 - User: user_1003 - RequestID: 4lx74oab2a +2025-06-18T14:29:11.681Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 405ms - Rows affected: 22 - RequestID: ide5qj713s +2025-06-18T14:29:11.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1054 - IP: 192.168.232.72 - RequestID: i80txo631rl +2025-06-18T14:29:11.881Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1444ms - IP: 192.168.170.215 - User: user_1029 - RequestID: sqoou0qzq5 +2025-06-18T14:29:11.981Z [INFO] inventory-service - Auth event: logout - User: user_1037 - IP: 192.168.147.171 - RequestID: c17njf77yph +2025-06-18T14:29:12.081Z [INFO] payment-service - PUT /api/v1/users - Status: 403 - Response time: 1685ms - IP: 192.168.158.144 - User: user_1071 - RequestID: zie97pher1r +2025-06-18T14:29:12.181Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 201 - Response time: 1272ms - IP: 192.168.1.152 - User: user_1010 - RequestID: e9ty42h5pdm +2025-06-18T14:29:12.281Z [INFO] notification-service - Operation: inventory_updated - Processing time: 185ms - RequestID: embmxurhkip +2025-06-18T14:29:12.381Z [DEBUG] payment-service - Auth event: logout - User: user_1079 - IP: 192.168.227.233 - RequestID: 6ngllpjk6nd +2025-06-18T14:29:12.481Z [TRACE] inventory-service - Database INSERT on products - Execution time: 101ms - Rows affected: 92 - RequestID: pbj3q2976zj +2025-06-18T14:29:12.581Z [DEBUG] notification-service - Operation: order_created - Processing time: 854ms - RequestID: 0sdgrryg5n6m +2025-06-18T14:29:12.681Z [TRACE] order-service - Auth event: login_failed - User: user_1036 - IP: 192.168.79.141 - RequestID: o39mp5rot4 +2025-06-18T14:29:12.781Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 912ms - RequestID: 3glv5cfyid4 +2025-06-18T14:29:12.881Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.196.226 - RequestID: 85xp59lifha +2025-06-18T14:29:12.981Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 503 - Response time: 547ms - IP: 192.168.11.60 - User: user_1047 - RequestID: tgwqrsks3j +2025-06-18T14:29:13.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.79.143 - RequestID: 5g7eiftvttq +2025-06-18T14:29:13.181Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1639ms - IP: 192.168.147.171 - User: user_1086 - RequestID: o5p1z5yk8dd +2025-06-18T14:29:13.281Z [INFO] inventory-service - Database INSERT on users - Execution time: 92ms - Rows affected: 70 - RequestID: mivvil257l +2025-06-18T14:29:13.381Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 500 - Response time: 1304ms - IP: 192.168.170.215 - User: user_1044 - RequestID: vlgd39vcf28 +2025-06-18T14:29:13.481Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 46ms - Rows affected: 24 - RequestID: yaexghnh9um +2025-06-18T14:29:13.581Z [TRACE] inventory-service - POST /api/v1/orders - Status: 201 - Response time: 350ms - IP: 192.168.138.123 - User: user_1053 - RequestID: b9mp4mktrn +2025-06-18T14:29:13.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.174.114 - RequestID: 392hx0xubo6 +2025-06-18T14:29:13.781Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 942ms - IP: 192.168.159.94 - User: user_1094 - RequestID: osa2y1e9mhi +2025-06-18T14:29:13.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 240ms - RequestID: e90z8gek274 +2025-06-18T14:29:13.981Z [TRACE] user-service - PUT /api/v1/payments - Status: 403 - Response time: 934ms - IP: 192.168.68.158 - User: user_1079 - RequestID: gbavdrg8nvg +2025-06-18T14:29:14.081Z [INFO] order-service - Auth event: password_change - User: user_1001 - IP: 192.168.68.158 - RequestID: 33qnhnewe3p +2025-06-18T14:29:14.181Z [TRACE] user-service - Database SELECT on products - Execution time: 397ms - Rows affected: 5 - RequestID: xyhuefqwx8 +2025-06-18T14:29:14.281Z [INFO] user-service - PATCH /api/v1/orders - Status: 201 - Response time: 183ms - IP: 192.168.196.226 - User: user_1088 - RequestID: jz62qaq8kvc +2025-06-18T14:29:14.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 736ms - RequestID: vbe33lgg5ml +2025-06-18T14:29:14.481Z [TRACE] user-service - Database INSERT on payments - Execution time: 186ms - Rows affected: 2 - RequestID: 45b5n81rk5k +2025-06-18T14:29:14.581Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 203ms - Rows affected: 37 - RequestID: 0k3ob8zdblqh +2025-06-18T14:29:14.681Z [INFO] user-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.79.141 - RequestID: ajomsvpshes +2025-06-18T14:29:14.781Z [TRACE] auth-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.104.37 - RequestID: 4h7gmd6ouhj +2025-06-18T14:29:14.881Z [TRACE] order-service - Database UPDATE on users - Execution time: 158ms - Rows affected: 8 - RequestID: miraw0t3bk8 +2025-06-18T14:29:14.981Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 40ms - Rows affected: 53 - RequestID: afvbq0q28ic +2025-06-18T14:29:15.081Z [DEBUG] user-service - Database DELETE on orders - Execution time: 483ms - Rows affected: 76 - RequestID: 4zvndw7keh4 +2025-06-18T14:29:15.181Z [TRACE] user-service - Database DELETE on users - Execution time: 225ms - Rows affected: 70 - RequestID: vn67dy61eg +2025-06-18T14:29:15.281Z [INFO] auth-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.167.32 - RequestID: 50lq2zxczxd +2025-06-18T14:29:15.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.189.103 - RequestID: p8pqbgpw5c8 +2025-06-18T14:29:15.481Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 29ms - Rows affected: 10 - RequestID: zb5114s112 +2025-06-18T14:29:15.581Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 400 - Response time: 103ms - IP: 192.168.30.79 - User: user_1097 - RequestID: fby737uivb4 +2025-06-18T14:29:15.681Z [TRACE] order-service - Operation: order_created - Processing time: 159ms - RequestID: zjghr8uv6dj +2025-06-18T14:29:15.781Z [INFO] order-service - POST /api/v1/auth/login - Status: 503 - Response time: 805ms - IP: 192.168.10.184 - User: user_1077 - RequestID: sr0idm4c2r +2025-06-18T14:29:15.881Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 461ms - RequestID: bwlyxthkt07 +2025-06-18T14:29:15.981Z [INFO] order-service - PATCH /api/v1/payments - Status: 503 - Response time: 442ms - IP: 192.168.181.225 - User: user_1087 - RequestID: dvipqc3840t +2025-06-18T14:29:16.081Z [TRACE] user-service - Database UPDATE on users - Execution time: 85ms - Rows affected: 81 - RequestID: cmdgbat6iua +2025-06-18T14:29:16.181Z [DEBUG] user-service - Auth event: logout - User: user_1003 - IP: 192.168.141.100 - RequestID: m6h91pwybg +2025-06-18T14:29:16.281Z [TRACE] order-service - Operation: inventory_updated - Processing time: 263ms - RequestID: v7naexol0td +2025-06-18T14:29:16.381Z [TRACE] auth-service - GET /api/v1/inventory - Status: 401 - Response time: 975ms - IP: 192.168.227.233 - User: user_1008 - RequestID: 0vbmd5jihuw9 +2025-06-18T14:29:16.481Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 200 - Response time: 337ms - IP: 192.168.79.141 - User: user_1056 - RequestID: o29fef1z2vq +2025-06-18T14:29:16.581Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 200 - Response time: 919ms - IP: 192.168.30.79 - User: user_1099 - RequestID: v9rw3io7e4d +2025-06-18T14:29:16.681Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 63ms - Rows affected: 37 - RequestID: 64smv7w2nq +2025-06-18T14:29:16.781Z [TRACE] payment-service - Operation: order_created - Processing time: 846ms - RequestID: 8350a0tvm2l +2025-06-18T14:29:16.881Z [INFO] notification-service - Operation: webhook_sent - Processing time: 1029ms - RequestID: qhr7xkut7jb +2025-06-18T14:29:16.981Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 52ms - RequestID: s3xdk7sjv5 +2025-06-18T14:29:17.081Z [INFO] order-service - Operation: email_sent - Processing time: 331ms - RequestID: 5cpx895khv5 +2025-06-18T14:29:17.181Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 212ms - Rows affected: 85 - RequestID: 8dy8nivg6o5 +2025-06-18T14:29:17.281Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 403 - Response time: 973ms - IP: 192.168.100.240 - User: user_1081 - RequestID: orkket8fjph +2025-06-18T14:29:17.381Z [INFO] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 992ms - IP: 192.168.159.94 - User: user_1002 - RequestID: sju49b1124 +2025-06-18T14:29:17.481Z [DEBUG] notification-service - Database SELECT on products - Execution time: 437ms - Rows affected: 87 - RequestID: y7hbt0n8lse +2025-06-18T14:29:17.581Z [DEBUG] notification-service - Auth event: logout - User: user_1027 - IP: 192.168.187.199 - RequestID: 8ymxa5raldw +2025-06-18T14:29:17.681Z [INFO] inventory-service - GET /api/v1/payments - Status: 503 - Response time: 19ms - IP: 192.168.68.128 - User: user_1004 - RequestID: 8m0cwzkdbba +2025-06-18T14:29:17.781Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 332ms - Rows affected: 37 - RequestID: 2tvl2vcjz02 +2025-06-18T14:29:17.881Z [TRACE] order-service - GET /api/v1/orders - Status: 401 - Response time: 1173ms - IP: 192.168.13.72 - User: user_1025 - RequestID: bfkwnvqzdb6 +2025-06-18T14:29:17.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.187.199 - RequestID: exusmmvs5ma +2025-06-18T14:29:18.081Z [TRACE] notification-service - Database SELECT on orders - Execution time: 431ms - Rows affected: 20 - RequestID: ouu2bcyhbo +2025-06-18T14:29:18.181Z [TRACE] auth-service - Operation: cache_hit - Processing time: 371ms - RequestID: a819b4oszmg +2025-06-18T14:29:18.281Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 368ms - Rows affected: 3 - RequestID: yzmtpccjb5b +2025-06-18T14:29:18.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1018 - IP: 192.168.11.60 - RequestID: wtd5mmj4mn9 +2025-06-18T14:29:18.481Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 432ms - IP: 192.168.211.72 - User: user_1088 - RequestID: rk82vtzvh4 +2025-06-18T14:29:18.581Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 427ms - Rows affected: 62 - RequestID: 23h1kjg5xkq +2025-06-18T14:29:18.681Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1182ms - IP: 192.168.147.171 - User: user_1030 - RequestID: uavjve04i0a +2025-06-18T14:29:18.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 675ms - RequestID: 47pr1yt69b8 +2025-06-18T14:29:18.881Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 585ms - RequestID: ys0w3gzicq +2025-06-18T14:29:18.981Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 400 - Response time: 476ms - IP: 192.168.31.117 - User: user_1057 - RequestID: kssebc6gvnp +2025-06-18T14:29:19.081Z [DEBUG] order-service - Operation: payment_processed - Processing time: 276ms - RequestID: 0684gw1o6p8f +2025-06-18T14:29:19.181Z [INFO] auth-service - Database UPDATE on users - Execution time: 108ms - Rows affected: 66 - RequestID: b2feusc3i7v +2025-06-18T14:29:19.281Z [DEBUG] order-service - Database INSERT on products - Execution time: 457ms - Rows affected: 71 - RequestID: f793uodmspq +2025-06-18T14:29:19.381Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 404 - Response time: 170ms - IP: 192.168.247.134 - User: user_1036 - RequestID: s0wf3a6jbr +2025-06-18T14:29:19.481Z [INFO] order-service - DELETE /api/v1/payments - Status: 503 - Response time: 670ms - IP: 192.168.229.123 - User: user_1061 - RequestID: by9rhn3rft4 +2025-06-18T14:29:19.581Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 1045ms - RequestID: wdko14fzxkc +2025-06-18T14:29:19.681Z [TRACE] inventory-service - Auth event: password_change - User: user_1026 - IP: 192.168.13.72 - RequestID: 86upal934j4 +2025-06-18T14:29:19.781Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 148ms - Rows affected: 42 - RequestID: tzpafunaij9 +2025-06-18T14:29:19.881Z [INFO] user-service - Database SELECT on orders - Execution time: 51ms - Rows affected: 30 - RequestID: vh97vgz3k6 +2025-06-18T14:29:19.981Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 272ms - Rows affected: 99 - RequestID: 1tewk5xsc3l +2025-06-18T14:29:20.081Z [INFO] inventory-service - Auth event: login_failed - User: user_1044 - IP: 192.168.1.152 - RequestID: do2mgoh3hf +2025-06-18T14:29:20.181Z [INFO] order-service - Database UPDATE on orders - Execution time: 131ms - Rows affected: 13 - RequestID: g5be2tscekj +2025-06-18T14:29:20.281Z [INFO] notification-service - GET /api/v1/auth/login - Status: 201 - Response time: 897ms - IP: 192.168.232.72 - User: user_1000 - RequestID: kvqyq0kzgz +2025-06-18T14:29:20.381Z [TRACE] auth-service - Database UPDATE on products - Execution time: 271ms - Rows affected: 44 - RequestID: e8bp8kc9vnq +2025-06-18T14:29:20.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.174.114 - RequestID: x9d3t9gwmlr +2025-06-18T14:29:20.581Z [DEBUG] order-service - Operation: cache_hit - Processing time: 908ms - RequestID: za4n058t74s +2025-06-18T14:29:20.681Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 431ms - Rows affected: 89 - RequestID: i79n1curdq +2025-06-18T14:29:20.781Z [TRACE] notification-service - Operation: payment_processed - Processing time: 861ms - RequestID: ab1nv92t3cs +2025-06-18T14:29:20.881Z [TRACE] payment-service - Database INSERT on payments - Execution time: 478ms - Rows affected: 74 - RequestID: z62jww03wx +2025-06-18T14:29:20.981Z [INFO] user-service - Auth event: password_change - User: user_1002 - IP: 192.168.104.37 - RequestID: x6lnwct6nl +2025-06-18T14:29:21.081Z [DEBUG] inventory-service - GET /api/v1/users - Status: 404 - Response time: 1642ms - IP: 192.168.211.72 - User: user_1056 - RequestID: odw3nb2oyuk +2025-06-18T14:29:21.181Z [INFO] order-service - PUT /api/v1/users - Status: 401 - Response time: 419ms - IP: 192.168.100.240 - User: user_1056 - RequestID: kla5srbr4kj +2025-06-18T14:29:21.281Z [INFO] order-service - Auth event: logout - User: user_1022 - IP: 192.168.33.76 - RequestID: wxbk2u2sdx +2025-06-18T14:29:21.381Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 272ms - Rows affected: 85 - RequestID: uh1ogvpptu +2025-06-18T14:29:21.481Z [TRACE] payment-service - Operation: payment_processed - Processing time: 750ms - RequestID: ihred3gjg4 +2025-06-18T14:29:21.581Z [INFO] user-service - Database UPDATE on sessions - Execution time: 338ms - Rows affected: 56 - RequestID: ph29lq2pn3e +2025-06-18T14:29:21.681Z [TRACE] payment-service - Database UPDATE on products - Execution time: 417ms - Rows affected: 72 - RequestID: z5ixjgqzjv +2025-06-18T14:29:21.781Z [TRACE] inventory-service - Auth event: logout - User: user_1079 - IP: 192.168.11.60 - RequestID: tmzverfmidk +2025-06-18T14:29:21.881Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 320ms - Rows affected: 80 - RequestID: 5ow20neyy6q +2025-06-18T14:29:21.981Z [INFO] notification-service - Auth event: password_change - User: user_1094 - IP: 192.168.100.240 - RequestID: 6u5t7uq0mq3 +2025-06-18T14:29:22.081Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.28.146 - RequestID: 8o4wb9p8xq7 +2025-06-18T14:29:22.181Z [INFO] inventory-service - Auth event: logout - User: user_1060 - IP: 192.168.11.60 - RequestID: 1e174kabq19 +2025-06-18T14:29:22.281Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1555ms - IP: 192.168.44.5 - User: user_1093 - RequestID: zvgy37zeaaa +2025-06-18T14:29:22.381Z [DEBUG] user-service - GET /api/v1/payments - Status: 500 - Response time: 1148ms - IP: 192.168.113.218 - User: user_1029 - RequestID: y0sa14lldu +2025-06-18T14:29:22.481Z [INFO] notification-service - Auth event: password_change - User: user_1009 - IP: 192.168.158.144 - RequestID: dyq7yjfybh7 +2025-06-18T14:29:22.581Z [DEBUG] order-service - Auth event: logout - User: user_1053 - IP: 192.168.53.133 - RequestID: iempb18i44 +2025-06-18T14:29:22.681Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 1030ms - RequestID: i34uww4vvn +2025-06-18T14:29:22.781Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 479ms - Rows affected: 36 - RequestID: ux72zhwa168 +2025-06-18T14:29:22.881Z [TRACE] order-service - Database UPDATE on users - Execution time: 90ms - Rows affected: 1 - RequestID: c21nqdnx7bi +2025-06-18T14:29:22.981Z [INFO] notification-service - Database INSERT on products - Execution time: 271ms - Rows affected: 46 - RequestID: 5co4y8022b9 +2025-06-18T14:29:23.081Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 500 - Response time: 328ms - IP: 192.168.31.117 - User: user_1025 - RequestID: sb5padwsbe +2025-06-18T14:29:23.181Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 68ms - RequestID: f41plaf0vfh +2025-06-18T14:29:23.281Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.81.206 - RequestID: 3bx4d4wgvr4 +2025-06-18T14:29:23.381Z [TRACE] notification-service - GET /api/v1/inventory - Status: 403 - Response time: 1422ms - IP: 192.168.187.199 - User: user_1052 - RequestID: d82nkxd3k1p +2025-06-18T14:29:23.481Z [INFO] order-service - Operation: cache_hit - Processing time: 443ms - RequestID: ttfgycvjwr9 +2025-06-18T14:29:23.581Z [INFO] notification-service - PATCH /api/v1/payments - Status: 403 - Response time: 1156ms - IP: 192.168.33.76 - User: user_1074 - RequestID: k2622jxrsv +2025-06-18T14:29:23.681Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 227ms - Rows affected: 42 - RequestID: 202t8pr7wyf +2025-06-18T14:29:23.781Z [INFO] user-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.85.229 - RequestID: mia3bzj2yad +2025-06-18T14:29:23.881Z [TRACE] payment-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.229.123 - RequestID: f8id4v09q5i +2025-06-18T14:29:23.981Z [TRACE] inventory-service - Operation: order_created - Processing time: 448ms - RequestID: af1f2s55yv7 +2025-06-18T14:29:24.081Z [TRACE] user-service - Auth event: password_change - User: user_1059 - IP: 192.168.240.169 - RequestID: xfqcck75vx +2025-06-18T14:29:24.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1062 - IP: 192.168.159.94 - RequestID: ngzzci6jwfo +2025-06-18T14:29:24.281Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 92ms - IP: 192.168.141.100 - User: user_1041 - RequestID: p0zpzilbi59 +2025-06-18T14:29:24.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.79.143 - RequestID: jieacn5zxcp +2025-06-18T14:29:24.481Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1098ms - IP: 192.168.53.133 - User: user_1080 - RequestID: 9rd4h2htun +2025-06-18T14:29:24.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 860ms - RequestID: r9kdfk8dweb +2025-06-18T14:29:24.681Z [INFO] order-service - Database UPDATE on sessions - Execution time: 493ms - Rows affected: 85 - RequestID: ftxr2n1skqe +2025-06-18T14:29:24.781Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.11.60 - RequestID: xb6c67l53fg +2025-06-18T14:29:24.881Z [TRACE] payment-service - Database UPDATE on users - Execution time: 237ms - Rows affected: 38 - RequestID: v38liqso8w +2025-06-18T14:29:24.981Z [INFO] order-service - Database INSERT on payments - Execution time: 7ms - Rows affected: 84 - RequestID: njnd1ececes +2025-06-18T14:29:25.081Z [TRACE] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 1032ms - IP: 192.168.97.87 - User: user_1049 - RequestID: fqkfyf1qqka +2025-06-18T14:29:25.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 175ms - RequestID: mnjz5rim05c +2025-06-18T14:29:25.281Z [INFO] auth-service - Auth event: password_change - User: user_1006 - IP: 192.168.133.7 - RequestID: jk69m6p24lp +2025-06-18T14:29:25.381Z [TRACE] payment-service - Operation: cache_hit - Processing time: 527ms - RequestID: un170uq2qwe +2025-06-18T14:29:25.481Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 452ms - RequestID: ybpjdoipcij +2025-06-18T14:29:25.581Z [INFO] auth-service - Database INSERT on products - Execution time: 145ms - Rows affected: 93 - RequestID: n82l108i1gs +2025-06-18T14:29:25.681Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 399ms - RequestID: oqqs9cfthk +2025-06-18T14:29:25.781Z [INFO] user-service - Operation: payment_processed - Processing time: 902ms - RequestID: cll89leoav +2025-06-18T14:29:25.881Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 403 - Response time: 958ms - IP: 192.168.141.100 - User: user_1053 - RequestID: g47k3hu022u +2025-06-18T14:29:25.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.181.225 - RequestID: 1oddrxcoyv4 +2025-06-18T14:29:26.081Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1761ms - IP: 192.168.211.72 - User: user_1078 - RequestID: k3e2gidul69 +2025-06-18T14:29:26.181Z [INFO] order-service - Database UPDATE on users - Execution time: 452ms - Rows affected: 25 - RequestID: fx3z3u11mrf +2025-06-18T14:29:26.281Z [INFO] payment-service - Database SELECT on products - Execution time: 494ms - Rows affected: 21 - RequestID: mnijlvkv1c +2025-06-18T14:29:26.381Z [DEBUG] notification-service - POST /api/v1/payments - Status: 401 - Response time: 1723ms - IP: 192.168.36.218 - User: user_1029 - RequestID: gorepx8rmfd +2025-06-18T14:29:26.481Z [TRACE] inventory-service - Auth event: password_change - User: user_1098 - IP: 192.168.211.72 - RequestID: ued98g40vfb +2025-06-18T14:29:26.581Z [INFO] order-service - Auth event: logout - User: user_1000 - IP: 192.168.189.103 - RequestID: wqelytc0bbn +2025-06-18T14:29:26.681Z [INFO] inventory-service - Auth event: logout - User: user_1027 - IP: 192.168.159.94 - RequestID: 6wffi1c98ua +2025-06-18T14:29:26.781Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 247ms - Rows affected: 41 - RequestID: cp5hds6bc6d +2025-06-18T14:29:26.881Z [TRACE] order-service - Database UPDATE on orders - Execution time: 251ms - Rows affected: 90 - RequestID: y70urd6wg7 +2025-06-18T14:29:26.981Z [TRACE] auth-service - Operation: cache_miss - Processing time: 127ms - RequestID: vuo35ace92e +2025-06-18T14:29:27.081Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1594ms - IP: 192.168.170.215 - User: user_1026 - RequestID: rmcy3hu1id +2025-06-18T14:29:27.181Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 1142ms - IP: 192.168.232.72 - User: user_1052 - RequestID: liax1o5jegg +2025-06-18T14:29:27.281Z [DEBUG] auth-service - Auth event: logout - User: user_1083 - IP: 192.168.44.5 - RequestID: sa1bk9woyc +2025-06-18T14:29:27.381Z [INFO] user-service - POST /api/v1/orders - Status: 503 - Response time: 25ms - IP: 192.168.68.158 - User: user_1003 - RequestID: pki6a7x185b +2025-06-18T14:29:27.481Z [INFO] inventory-service - Auth event: password_change - User: user_1011 - IP: 192.168.211.72 - RequestID: qs1itho77hj +2025-06-18T14:29:27.581Z [INFO] inventory-service - Operation: notification_queued - Processing time: 444ms - RequestID: pf2dth2fqwr +2025-06-18T14:29:27.681Z [DEBUG] user-service - Operation: cache_hit - Processing time: 357ms - RequestID: 9zciyag1oaf +2025-06-18T14:29:27.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.211.72 - RequestID: 7q2l8nb4iar +2025-06-18T14:29:27.881Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 349ms - Rows affected: 43 - RequestID: 7g8hkyrfpdg +2025-06-18T14:29:27.981Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 176ms - RequestID: m5fiwpuimf +2025-06-18T14:29:28.081Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1823ms - IP: 192.168.147.171 - User: user_1017 - RequestID: vh5awsicsb9 +2025-06-18T14:29:28.181Z [INFO] user-service - Database SELECT on orders - Execution time: 271ms - Rows affected: 21 - RequestID: ta2u4x91ihg +2025-06-18T14:29:28.281Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 403 - Response time: 1502ms - IP: 192.168.81.206 - User: user_1003 - RequestID: rrsghdg999 +2025-06-18T14:29:28.381Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 961ms - IP: 192.168.235.117 - User: user_1049 - RequestID: n9wem1ldl8f +2025-06-18T14:29:28.481Z [INFO] order-service - Database UPDATE on products - Execution time: 76ms - Rows affected: 19 - RequestID: 6oepxsyubth +2025-06-18T14:29:28.581Z [DEBUG] order-service - Auth event: logout - User: user_1095 - IP: 192.168.31.117 - RequestID: bpsgg02pf89 +2025-06-18T14:29:28.681Z [TRACE] order-service - Operation: order_created - Processing time: 336ms - RequestID: hxggxgzgfbv +2025-06-18T14:29:28.781Z [INFO] auth-service - Auth event: login_success - User: user_1015 - IP: 192.168.68.128 - RequestID: fb5w3wmip4s +2025-06-18T14:29:28.881Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 163ms - Rows affected: 18 - RequestID: pgcufpcs9ac +2025-06-18T14:29:28.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 785ms - RequestID: k2m5805m0cj +2025-06-18T14:29:29.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 136ms - RequestID: 5lpxx55p0as +2025-06-18T14:29:29.181Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 888ms - IP: 192.168.33.76 - User: user_1097 - RequestID: z73dt494dap +2025-06-18T14:29:29.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1050 - IP: 192.168.36.218 - RequestID: 42hyjyysy4l +2025-06-18T14:29:29.381Z [INFO] order-service - Operation: webhook_sent - Processing time: 810ms - RequestID: sct48dc245 +2025-06-18T14:29:29.481Z [INFO] user-service - Operation: email_sent - Processing time: 598ms - RequestID: 73y6jr7bqvx +2025-06-18T14:29:29.581Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 401 - Response time: 1841ms - IP: 192.168.79.116 - User: user_1019 - RequestID: eezew5yqgen +2025-06-18T14:29:29.681Z [TRACE] user-service - Auth event: login_success - User: user_1062 - IP: 192.168.79.141 - RequestID: dckhsxzh2q +2025-06-18T14:29:29.781Z [TRACE] order-service - Database INSERT on products - Execution time: 193ms - Rows affected: 52 - RequestID: f2f2wfzzago +2025-06-18T14:29:29.881Z [TRACE] payment-service - Operation: notification_queued - Processing time: 416ms - RequestID: wwtljm5242 +2025-06-18T14:29:29.981Z [INFO] inventory-service - PUT /api/v1/payments - Status: 401 - Response time: 395ms - IP: 192.168.30.79 - User: user_1031 - RequestID: 00f77c8zss7do +2025-06-18T14:29:30.081Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1052ms - IP: 192.168.181.225 - User: user_1001 - RequestID: lhl6ejp9nu +2025-06-18T14:29:30.181Z [TRACE] notification-service - Auth event: password_change - User: user_1035 - IP: 192.168.30.79 - RequestID: bo9wzev2hrk +2025-06-18T14:29:30.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.174.114 - RequestID: 68kn9bejhjf +2025-06-18T14:29:30.381Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 500 - Response time: 597ms - IP: 192.168.242.165 - User: user_1000 - RequestID: ng04xjl75h +2025-06-18T14:29:30.481Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1080ms - IP: 192.168.133.7 - User: user_1066 - RequestID: sx07znpzwy +2025-06-18T14:29:30.581Z [TRACE] notification-service - Auth event: password_change - User: user_1006 - IP: 192.168.81.206 - RequestID: 0ry524vxzunm +2025-06-18T14:29:30.681Z [TRACE] user-service - GET /api/v1/auth/login - Status: 500 - Response time: 1869ms - IP: 192.168.158.144 - User: user_1069 - RequestID: hz1p469p9b +2025-06-18T14:29:30.781Z [INFO] notification-service - Database DELETE on payments - Execution time: 319ms - Rows affected: 91 - RequestID: uchze7xipbs +2025-06-18T14:29:30.881Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 188ms - Rows affected: 90 - RequestID: gvkhrlkw75s +2025-06-18T14:29:30.981Z [INFO] order-service - Auth event: login_failed - User: user_1094 - IP: 192.168.46.63 - RequestID: tqu7ybh721 +2025-06-18T14:29:31.081Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 404 - Response time: 456ms - IP: 192.168.181.225 - User: user_1007 - RequestID: eqj3ii37z9 +2025-06-18T14:29:31.181Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 70ms - Rows affected: 14 - RequestID: pjz212xkx4i +2025-06-18T14:29:31.281Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1813ms - IP: 192.168.247.134 - User: user_1050 - RequestID: pz5b69w9v9a +2025-06-18T14:29:31.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1020 - IP: 192.168.81.206 - RequestID: 2qa2l91eoer +2025-06-18T14:29:31.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 540ms - RequestID: uoz0c11a0w7 +2025-06-18T14:29:31.581Z [INFO] auth-service - Auth event: login_success - User: user_1010 - IP: 192.168.232.72 - RequestID: gtdfs41csa +2025-06-18T14:29:31.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.68.128 - RequestID: e6ppneddzd9 +2025-06-18T14:29:31.781Z [INFO] inventory-service - Operation: cache_hit - Processing time: 298ms - RequestID: 1262wk5ts41q +2025-06-18T14:29:31.881Z [INFO] inventory-service - Auth event: logout - User: user_1065 - IP: 192.168.113.218 - RequestID: cdqoaga0urk +2025-06-18T14:29:31.981Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1157ms - IP: 192.168.167.32 - User: user_1012 - RequestID: twjnjkhkz2e +2025-06-18T14:29:32.081Z [TRACE] auth-service - Operation: payment_processed - Processing time: 854ms - RequestID: 1zfhs2c9jxt +2025-06-18T14:29:32.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.64.33 - RequestID: f70vivr3d8 +2025-06-18T14:29:32.281Z [INFO] notification-service - Auth event: login_failed - User: user_1025 - IP: 192.168.159.94 - RequestID: omdjp57zycp +2025-06-18T14:29:32.381Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 300ms - IP: 192.168.30.79 - User: user_1059 - RequestID: 4bwywp8z315 +2025-06-18T14:29:32.481Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 261ms - Rows affected: 73 - RequestID: cyit7pm8al6 +2025-06-18T14:29:32.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.232.72 - RequestID: zdm9h17jc2r +2025-06-18T14:29:32.681Z [DEBUG] notification-service - Database SELECT on users - Execution time: 379ms - Rows affected: 79 - RequestID: joqz7gr0op +2025-06-18T14:29:32.781Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 299ms - Rows affected: 75 - RequestID: ti28goc61gs +2025-06-18T14:29:32.881Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 583ms - RequestID: 4oii338fa9u +2025-06-18T14:29:32.981Z [INFO] notification-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.11.60 - RequestID: 6barmcjk5g4 +2025-06-18T14:29:33.081Z [TRACE] order-service - PUT /api/v1/payments - Status: 401 - Response time: 1118ms - IP: 192.168.1.152 - User: user_1028 - RequestID: xhg6ddsv1fg +2025-06-18T14:29:33.181Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 688ms - IP: 192.168.85.229 - User: user_1046 - RequestID: 5y075a5nkfa +2025-06-18T14:29:33.281Z [INFO] user-service - POST /api/v1/payments - Status: 500 - Response time: 154ms - IP: 192.168.68.158 - User: user_1057 - RequestID: orpj70n29bn +2025-06-18T14:29:33.381Z [DEBUG] user-service - Database INSERT on orders - Execution time: 171ms - Rows affected: 33 - RequestID: dtakqksyj85 +2025-06-18T14:29:33.481Z [TRACE] order-service - Database SELECT on sessions - Execution time: 295ms - Rows affected: 88 - RequestID: 9fipq36cmj +2025-06-18T14:29:33.581Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 524ms - RequestID: cq16o6tmfvf +2025-06-18T14:29:33.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 766ms - RequestID: 2j36cih5obq +2025-06-18T14:29:33.781Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 502 - Response time: 332ms - IP: 192.168.68.128 - User: user_1005 - RequestID: 7g97q4caehs +2025-06-18T14:29:33.881Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 142ms - Rows affected: 13 - RequestID: od4zm5yqkf +2025-06-18T14:29:33.981Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 503 - Response time: 540ms - IP: 192.168.247.134 - User: user_1098 - RequestID: 6szekn7uvk +2025-06-18T14:29:34.081Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 400 - Response time: 919ms - IP: 192.168.158.144 - User: user_1009 - RequestID: sdd6mmya05k +2025-06-18T14:29:34.181Z [TRACE] order-service - PUT /api/v1/orders - Status: 401 - Response time: 1081ms - IP: 192.168.138.123 - User: user_1085 - RequestID: 0sgcvdmjxuu +2025-06-18T14:29:34.281Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1543ms - IP: 192.168.11.60 - User: user_1057 - RequestID: g5qn0iv8k16 +2025-06-18T14:29:34.381Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 410ms - Rows affected: 17 - RequestID: 8edq1118mqa +2025-06-18T14:29:34.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 786ms - RequestID: wiccizr6s1n +2025-06-18T14:29:34.581Z [INFO] notification-service - Operation: email_sent - Processing time: 898ms - RequestID: 4fzof7zxisu +2025-06-18T14:29:34.681Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 203ms - Rows affected: 56 - RequestID: g1up04f38c7 +2025-06-18T14:29:34.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.53.133 - RequestID: lfnu90whvw +2025-06-18T14:29:34.881Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 338ms - Rows affected: 76 - RequestID: ymif9p4yoe +2025-06-18T14:29:34.981Z [INFO] auth-service - Auth event: logout - User: user_1075 - IP: 192.168.33.76 - RequestID: 01io8duk5xhu +2025-06-18T14:29:35.081Z [DEBUG] order-service - Operation: payment_processed - Processing time: 847ms - RequestID: xbkrvo8luhm +2025-06-18T14:29:35.181Z [DEBUG] user-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.147.171 - RequestID: ph42kkd95ho +2025-06-18T14:29:35.281Z [INFO] order-service - Auth event: login_success - User: user_1005 - IP: 192.168.68.128 - RequestID: 8k3uhsikx1d +2025-06-18T14:29:35.381Z [INFO] notification-service - GET /api/v1/orders - Status: 403 - Response time: 774ms - IP: 192.168.194.41 - User: user_1078 - RequestID: 0u7gho2twyb +2025-06-18T14:29:35.481Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 269ms - Rows affected: 36 - RequestID: 0xiwbp3s9uxk +2025-06-18T14:29:35.581Z [INFO] order-service - Database UPDATE on products - Execution time: 355ms - Rows affected: 46 - RequestID: v2pehucj7j +2025-06-18T14:29:35.681Z [INFO] payment-service - Auth event: login_failed - User: user_1016 - IP: 192.168.133.7 - RequestID: 6e4lslb4iia +2025-06-18T14:29:35.781Z [DEBUG] order-service - Operation: payment_processed - Processing time: 1036ms - RequestID: ryxsn5f729 +2025-06-18T14:29:35.881Z [INFO] payment-service - Operation: payment_processed - Processing time: 664ms - RequestID: ncd0j4fv6ir +2025-06-18T14:29:35.981Z [INFO] inventory-service - Auth event: login_success - User: user_1038 - IP: 192.168.13.72 - RequestID: 1jwb14fji4s +2025-06-18T14:29:36.081Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 213ms - Rows affected: 15 - RequestID: qx9mun0hw0f +2025-06-18T14:29:36.181Z [TRACE] notification-service - Operation: cache_miss - Processing time: 622ms - RequestID: jx99024ben +2025-06-18T14:29:36.281Z [TRACE] order-service - Operation: cache_hit - Processing time: 345ms - RequestID: 4mpuy9tk9l5 +2025-06-18T14:29:36.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.33.76 - RequestID: jp3727qsgg +2025-06-18T14:29:36.481Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 401 - Response time: 903ms - IP: 192.168.46.63 - User: user_1090 - RequestID: p3hauvpzrq9 +2025-06-18T14:29:36.581Z [INFO] payment-service - Operation: notification_queued - Processing time: 246ms - RequestID: 1fc6pnftt0g +2025-06-18T14:29:36.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1006 - IP: 192.168.144.38 - RequestID: djcx09qmwmo +2025-06-18T14:29:36.781Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1683ms - IP: 192.168.211.72 - User: user_1033 - RequestID: m0jitn8t3w +2025-06-18T14:29:36.881Z [TRACE] user-service - GET /api/v1/inventory - Status: 503 - Response time: 1379ms - IP: 192.168.159.94 - User: user_1014 - RequestID: 852lqidnra6 +2025-06-18T14:29:36.981Z [INFO] user-service - Auth event: password_change - User: user_1024 - IP: 192.168.113.218 - RequestID: l9oiqjvi9v +2025-06-18T14:29:37.081Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 397ms - RequestID: cqtlyzdfmzu +2025-06-18T14:29:37.181Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 329ms - IP: 192.168.211.72 - User: user_1091 - RequestID: gd0xpzgidi +2025-06-18T14:29:37.281Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 503 - Response time: 1031ms - IP: 192.168.194.41 - User: user_1003 - RequestID: 2lvi67z27d2 +2025-06-18T14:29:37.381Z [DEBUG] notification-service - GET /api/v1/orders - Status: 200 - Response time: 908ms - IP: 192.168.170.215 - User: user_1040 - RequestID: 5djmeps5uy8 +2025-06-18T14:29:37.481Z [INFO] inventory-service - Operation: order_created - Processing time: 441ms - RequestID: ofzppp2onlf +2025-06-18T14:29:37.581Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 400 - Response time: 1542ms - IP: 192.168.227.233 - User: user_1085 - RequestID: z6y6km9mdch +2025-06-18T14:29:37.681Z [DEBUG] payment-service - PUT /api/v1/users - Status: 500 - Response time: 191ms - IP: 192.168.247.134 - User: user_1017 - RequestID: ipwmjrledzb +2025-06-18T14:29:37.781Z [TRACE] user-service - Operation: payment_processed - Processing time: 596ms - RequestID: ol8q0kdp0cn +2025-06-18T14:29:37.881Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 294ms - Rows affected: 62 - RequestID: nvb9112jt8r +2025-06-18T14:29:37.981Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 500 - Response time: 214ms - IP: 192.168.133.7 - User: user_1086 - RequestID: q073u5mxgt +2025-06-18T14:29:38.081Z [INFO] payment-service - GET /api/v1/payments - Status: 401 - Response time: 543ms - IP: 192.168.235.117 - User: user_1065 - RequestID: yvsg6o4rj2 +2025-06-18T14:29:38.181Z [TRACE] notification-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.10.184 - RequestID: d0nxqqy9u89 +2025-06-18T14:29:38.281Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 502 - Response time: 1211ms - IP: 192.168.211.72 - User: user_1066 - RequestID: ubpneg68rm +2025-06-18T14:29:38.381Z [TRACE] auth-service - POST /api/v1/orders - Status: 500 - Response time: 1230ms - IP: 192.168.30.79 - User: user_1057 - RequestID: tbr4g28ywsn +2025-06-18T14:29:38.481Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 964ms - IP: 192.168.235.117 - User: user_1096 - RequestID: 8ui090hddo4 +2025-06-18T14:29:38.581Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 146ms - Rows affected: 73 - RequestID: e5zgg6dpj8p +2025-06-18T14:29:38.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.13.72 - RequestID: k2ucl0713te +2025-06-18T14:29:38.781Z [INFO] notification-service - Operation: inventory_updated - Processing time: 190ms - RequestID: d4uqag9vhuk +2025-06-18T14:29:38.881Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 814ms - IP: 192.168.196.226 - User: user_1024 - RequestID: 9m6w952cux +2025-06-18T14:29:38.981Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 1043ms - RequestID: wi14nhnoyik +2025-06-18T14:29:39.081Z [DEBUG] order-service - Database UPDATE on products - Execution time: 240ms - Rows affected: 3 - RequestID: odcy4md89ha +2025-06-18T14:29:39.181Z [TRACE] payment-service - Database DELETE on orders - Execution time: 321ms - Rows affected: 91 - RequestID: q5m5v5tinh +2025-06-18T14:29:39.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.194.41 - RequestID: 1rhpodxf2kr +2025-06-18T14:29:39.381Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 502 - Response time: 406ms - IP: 192.168.138.123 - User: user_1065 - RequestID: f7fgcszvnts +2025-06-18T14:29:39.481Z [DEBUG] user-service - Auth event: logout - User: user_1059 - IP: 192.168.30.79 - RequestID: u3hau92031e +2025-06-18T14:29:39.581Z [TRACE] auth-service - GET /api/v1/orders - Status: 201 - Response time: 1841ms - IP: 192.168.144.38 - User: user_1076 - RequestID: m1e76n2hz9r +2025-06-18T14:29:39.681Z [DEBUG] notification-service - Operation: order_created - Processing time: 87ms - RequestID: w9gm871aaua +2025-06-18T14:29:39.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 674ms - RequestID: 2ra37glqg7 +2025-06-18T14:29:39.881Z [TRACE] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 415ms - IP: 192.168.159.94 - User: user_1096 - RequestID: 5dq7cvt4ph4 +2025-06-18T14:29:39.981Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 133ms - Rows affected: 79 - RequestID: 58hl2af9ky4 +2025-06-18T14:29:40.081Z [DEBUG] order-service - PUT /api/v1/orders - Status: 401 - Response time: 1621ms - IP: 192.168.1.152 - User: user_1042 - RequestID: 7b6v49ekuk3 +2025-06-18T14:29:40.181Z [INFO] user-service - Auth event: logout - User: user_1062 - IP: 192.168.242.165 - RequestID: jj0bd4u6r4i +2025-06-18T14:29:40.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.211.72 - RequestID: 0rqfwgtv0jfn +2025-06-18T14:29:40.381Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 401 - Response time: 1747ms - IP: 192.168.10.184 - User: user_1070 - RequestID: apddp0gy8v +2025-06-18T14:29:40.481Z [DEBUG] user-service - Operation: payment_processed - Processing time: 968ms - RequestID: x4vboydmblj +2025-06-18T14:29:40.581Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1324ms - IP: 192.168.196.226 - User: user_1057 - RequestID: f8ljjdxo54o +2025-06-18T14:29:40.681Z [INFO] auth-service - Auth event: login_success - User: user_1092 - IP: 192.168.227.77 - RequestID: dd6iyiwrtyh +2025-06-18T14:29:40.781Z [INFO] auth-service - POST /api/v1/orders - Status: 503 - Response time: 1545ms - IP: 192.168.174.114 - User: user_1063 - RequestID: hnwxyyxukqt +2025-06-18T14:29:40.881Z [DEBUG] auth-service - Database DELETE on users - Execution time: 395ms - Rows affected: 51 - RequestID: 6gjya1tmy3p +2025-06-18T14:29:40.981Z [DEBUG] order-service - POST /api/v1/inventory - Status: 201 - Response time: 1404ms - IP: 192.168.1.152 - User: user_1089 - RequestID: 0c4q48k680kk +2025-06-18T14:29:41.081Z [INFO] auth-service - Database SELECT on orders - Execution time: 187ms - Rows affected: 49 - RequestID: j0ktdhcjd5m +2025-06-18T14:29:41.181Z [DEBUG] order-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.113.218 - RequestID: 4eefrt1mokj +2025-06-18T14:29:41.281Z [TRACE] notification-service - Operation: notification_queued - Processing time: 823ms - RequestID: 712ddkl41it +2025-06-18T14:29:41.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.31.117 - RequestID: 9gksykde5mc +2025-06-18T14:29:41.481Z [DEBUG] user-service - Auth event: logout - User: user_1069 - IP: 192.168.68.128 - RequestID: yg9uwr9vxvs +2025-06-18T14:29:41.581Z [TRACE] auth-service - Operation: cache_miss - Processing time: 245ms - RequestID: 8nwwisnma4a +2025-06-18T14:29:41.681Z [INFO] notification-service - POST /api/v1/inventory - Status: 503 - Response time: 1286ms - IP: 192.168.247.134 - User: user_1071 - RequestID: j1xeiflzzcp +2025-06-18T14:29:41.781Z [TRACE] user-service - DELETE /api/v1/users - Status: 201 - Response time: 81ms - IP: 192.168.68.158 - User: user_1042 - RequestID: e17o255hkqc +2025-06-18T14:29:41.881Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 208ms - Rows affected: 82 - RequestID: 6scse7qny0n +2025-06-18T14:29:41.981Z [DEBUG] auth-service - Database INSERT on users - Execution time: 173ms - Rows affected: 52 - RequestID: pzi7ovg6va +2025-06-18T14:29:42.081Z [INFO] auth-service - Auth event: password_change - User: user_1070 - IP: 192.168.158.144 - RequestID: 6kpasq6dw3j +2025-06-18T14:29:42.181Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 311ms - Rows affected: 50 - RequestID: 3deq1k310qj +2025-06-18T14:29:42.281Z [INFO] inventory-service - Auth event: logout - User: user_1047 - IP: 192.168.167.32 - RequestID: h1i6akn26at +2025-06-18T14:29:42.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.97.87 - RequestID: 7wst6ofolt4 +2025-06-18T14:29:42.481Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 232ms - Rows affected: 0 - RequestID: 702nudf5j4v +2025-06-18T14:29:42.581Z [INFO] user-service - PATCH /api/v1/users - Status: 201 - Response time: 844ms - IP: 192.168.11.60 - User: user_1024 - RequestID: 3782igit7tb +2025-06-18T14:29:42.681Z [INFO] notification-service - PUT /api/v1/orders - Status: 200 - Response time: 1713ms - IP: 192.168.158.144 - User: user_1004 - RequestID: vwhuu6lj1cp +2025-06-18T14:29:42.781Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 468ms - Rows affected: 57 - RequestID: 812ovbpu0q +2025-06-18T14:29:42.881Z [INFO] notification-service - POST /api/v1/users - Status: 500 - Response time: 1441ms - IP: 192.168.181.225 - User: user_1019 - RequestID: o89f2fct7kg +2025-06-18T14:29:42.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.46.63 - RequestID: r6yy1pbcuqi +2025-06-18T14:29:43.081Z [DEBUG] order-service - Operation: payment_processed - Processing time: 529ms - RequestID: 0f5ypv2a24x5 +2025-06-18T14:29:43.181Z [TRACE] user-service - Auth event: login_success - User: user_1041 - IP: 192.168.144.38 - RequestID: qnzo5ynnm7d +2025-06-18T14:29:43.281Z [TRACE] auth-service - Operation: email_sent - Processing time: 728ms - RequestID: 09smihe0lqsf +2025-06-18T14:29:43.381Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 414ms - Rows affected: 53 - RequestID: vuit49r2yw +2025-06-18T14:29:43.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 983ms - RequestID: 9wprgqro30k +2025-06-18T14:29:43.581Z [TRACE] notification-service - Operation: payment_processed - Processing time: 719ms - RequestID: rwumkrb2hdr +2025-06-18T14:29:43.681Z [DEBUG] notification-service - POST /api/v1/users - Status: 201 - Response time: 430ms - IP: 192.168.79.116 - User: user_1018 - RequestID: 7pbrtzo7uwi +2025-06-18T14:29:43.781Z [INFO] auth-service - Auth event: login_failed - User: user_1034 - IP: 192.168.100.240 - RequestID: lfwbubao18b +2025-06-18T14:29:43.881Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 487ms - Rows affected: 40 - RequestID: dber9neqlub +2025-06-18T14:29:43.981Z [TRACE] payment-service - Operation: notification_queued - Processing time: 757ms - RequestID: 83n3u7ujdr9 +2025-06-18T14:29:44.081Z [TRACE] payment-service - GET /api/v1/inventory - Status: 403 - Response time: 1621ms - IP: 192.168.242.165 - User: user_1007 - RequestID: o40s2p0buah +2025-06-18T14:29:44.181Z [TRACE] auth-service - Auth event: logout - User: user_1018 - IP: 192.168.141.100 - RequestID: 6rgz33d00a +2025-06-18T14:29:44.281Z [INFO] order-service - Operation: payment_processed - Processing time: 787ms - RequestID: 2mprsaj0oma +2025-06-18T14:29:44.381Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 947ms - RequestID: hkmxdxada3m +2025-06-18T14:29:44.481Z [INFO] notification-service - Database INSERT on sessions - Execution time: 430ms - Rows affected: 71 - RequestID: tx0gpekh96n +2025-06-18T14:29:44.581Z [TRACE] user-service - Operation: order_created - Processing time: 264ms - RequestID: hnwg9pqle7g +2025-06-18T14:29:44.681Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 503 - Response time: 629ms - IP: 192.168.227.233 - User: user_1014 - RequestID: 0e2zpa2iiik +2025-06-18T14:29:44.781Z [TRACE] order-service - Database INSERT on products - Execution time: 497ms - Rows affected: 21 - RequestID: ya39gl9ig9m +2025-06-18T14:29:44.881Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.240.169 - RequestID: 2pdd60z2h7y +2025-06-18T14:29:44.981Z [INFO] notification-service - Auth event: login_success - User: user_1051 - IP: 192.168.68.158 - RequestID: nttwxjkyv4l +2025-06-18T14:29:45.081Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 435ms - Rows affected: 90 - RequestID: 8y5j5r7irfi +2025-06-18T14:29:45.181Z [INFO] inventory-service - Database INSERT on payments - Execution time: 469ms - Rows affected: 52 - RequestID: 35ourvwhdc6 +2025-06-18T14:29:45.281Z [INFO] order-service - Operation: webhook_sent - Processing time: 408ms - RequestID: pucvtgr4ndq +2025-06-18T14:29:45.381Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 926ms - RequestID: dmam1tha7tw +2025-06-18T14:29:45.481Z [DEBUG] order-service - Auth event: password_change - User: user_1019 - IP: 192.168.13.72 - RequestID: mr1s672mb8 +2025-06-18T14:29:45.581Z [DEBUG] order-service - Database UPDATE on users - Execution time: 373ms - Rows affected: 83 - RequestID: 48aomsjsnm6 +2025-06-18T14:29:45.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.170.215 - RequestID: c2nfe72xg7q +2025-06-18T14:29:45.781Z [DEBUG] order-service - Operation: payment_processed - Processing time: 350ms - RequestID: j9k8nq8cco +2025-06-18T14:29:45.881Z [TRACE] user-service - Operation: payment_processed - Processing time: 186ms - RequestID: o9cqv0zpod8 +2025-06-18T14:29:45.981Z [TRACE] notification-service - Operation: payment_processed - Processing time: 677ms - RequestID: ic9880oubyj +2025-06-18T14:29:46.081Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1341ms - IP: 192.168.196.226 - User: user_1018 - RequestID: 22jdgfmdfqu +2025-06-18T14:29:46.181Z [TRACE] notification-service - Operation: payment_processed - Processing time: 262ms - RequestID: q91gb2ijv4g +2025-06-18T14:29:46.281Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 100ms - Rows affected: 7 - RequestID: zpi6jgj1vcb +2025-06-18T14:29:46.381Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 1102ms - IP: 192.168.133.7 - User: user_1007 - RequestID: 4oamj8z3exg +2025-06-18T14:29:46.481Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 502 - Response time: 1250ms - IP: 192.168.14.77 - User: user_1040 - RequestID: wazbu3zj8sg +2025-06-18T14:29:46.581Z [INFO] auth-service - GET /api/v1/auth/login - Status: 401 - Response time: 344ms - IP: 192.168.81.206 - User: user_1043 - RequestID: h75sce3de19 +2025-06-18T14:29:46.681Z [INFO] notification-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.79.141 - RequestID: dan7zbtltr4 +2025-06-18T14:29:46.781Z [INFO] order-service - Database SELECT on orders - Execution time: 91ms - Rows affected: 58 - RequestID: gahzavrwupw +2025-06-18T14:29:46.881Z [TRACE] payment-service - Database SELECT on payments - Execution time: 398ms - Rows affected: 89 - RequestID: 2szbc5ozgr4 +2025-06-18T14:29:46.981Z [INFO] inventory-service - Operation: payment_processed - Processing time: 981ms - RequestID: 9offuk0o3nn +2025-06-18T14:29:47.081Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 557ms - RequestID: ypnuxhv8xmr +2025-06-18T14:29:47.181Z [INFO] inventory-service - POST /api/v1/payments - Status: 500 - Response time: 1859ms - IP: 192.168.158.144 - User: user_1085 - RequestID: wm7wveq9h8c +2025-06-18T14:29:47.281Z [DEBUG] auth-service - Operation: email_sent - Processing time: 55ms - RequestID: hvt6318wzyl +2025-06-18T14:29:47.381Z [INFO] inventory-service - Database SELECT on products - Execution time: 139ms - Rows affected: 90 - RequestID: lcmvyna7pth +2025-06-18T14:29:47.481Z [TRACE] order-service - POST /api/v1/inventory - Status: 401 - Response time: 2007ms - IP: 192.168.31.117 - User: user_1040 - RequestID: y9pgl1ot2zq +2025-06-18T14:29:47.581Z [DEBUG] user-service - Database SELECT on products - Execution time: 206ms - Rows affected: 75 - RequestID: r99ffpa567 +2025-06-18T14:29:47.681Z [DEBUG] order-service - Operation: payment_processed - Processing time: 452ms - RequestID: oppslmi6sb +2025-06-18T14:29:47.781Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1211ms - IP: 192.168.97.87 - User: user_1020 - RequestID: 0kedcgv0zb3 +2025-06-18T14:29:47.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 505ms - RequestID: 16s21f81lge +2025-06-18T14:29:47.981Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 19ms - Rows affected: 55 - RequestID: nmxw36gcl3h +2025-06-18T14:29:48.081Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 218ms - Rows affected: 93 - RequestID: 8u3k7p5yffl +2025-06-18T14:29:48.181Z [TRACE] user-service - Operation: webhook_sent - Processing time: 766ms - RequestID: nlxy0g1s95f +2025-06-18T14:29:48.281Z [INFO] inventory-service - Auth event: logout - User: user_1066 - IP: 192.168.28.146 - RequestID: vre2zktgue +2025-06-18T14:29:48.381Z [TRACE] inventory-service - GET /api/v1/orders - Status: 502 - Response time: 882ms - IP: 192.168.11.60 - User: user_1095 - RequestID: q6kyx65gktb +2025-06-18T14:29:48.481Z [INFO] order-service - Operation: payment_processed - Processing time: 88ms - RequestID: 6yh69y2ghok +2025-06-18T14:29:48.581Z [DEBUG] user-service - Auth event: login_success - User: user_1068 - IP: 192.168.44.5 - RequestID: sgpqvq1s0u +2025-06-18T14:29:48.681Z [INFO] inventory-service - POST /api/v1/payments - Status: 201 - Response time: 2002ms - IP: 192.168.44.5 - User: user_1071 - RequestID: bd8p45ch8q7 +2025-06-18T14:29:48.781Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 493ms - Rows affected: 96 - RequestID: 73bckxih5hk +2025-06-18T14:29:48.881Z [TRACE] user-service - Operation: inventory_updated - Processing time: 659ms - RequestID: w5poqaguhid +2025-06-18T14:29:48.981Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 115ms - Rows affected: 8 - RequestID: t1fscumiy4 +2025-06-18T14:29:49.081Z [INFO] order-service - Database INSERT on sessions - Execution time: 378ms - Rows affected: 99 - RequestID: tzfv3tv29k +2025-06-18T14:29:49.181Z [TRACE] notification-service - Database SELECT on orders - Execution time: 167ms - Rows affected: 72 - RequestID: hwrcjv0iz0l +2025-06-18T14:29:49.281Z [INFO] order-service - Database DELETE on orders - Execution time: 500ms - Rows affected: 95 - RequestID: xguatrshesi +2025-06-18T14:29:49.381Z [DEBUG] payment-service - Operation: email_sent - Processing time: 920ms - RequestID: vxd234ouqwn +2025-06-18T14:29:49.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.167.32 - RequestID: 3htrq1wq0dq +2025-06-18T14:29:49.581Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 49ms - IP: 192.168.232.72 - User: user_1016 - RequestID: wti003agedo +2025-06-18T14:29:49.681Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 503 - Response time: 797ms - IP: 192.168.227.77 - User: user_1078 - RequestID: 3gnlgoio874 +2025-06-18T14:29:49.781Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 404 - Response time: 1175ms - IP: 192.168.181.225 - User: user_1020 - RequestID: gmos9fbubvi +2025-06-18T14:29:49.881Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1314ms - IP: 192.168.13.72 - User: user_1075 - RequestID: 9vlttexzyzu +2025-06-18T14:29:49.981Z [INFO] order-service - POST /api/v1/auth/logout - Status: 503 - Response time: 143ms - IP: 192.168.81.206 - User: user_1085 - RequestID: c4523wvzijg +2025-06-18T14:29:50.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.104.37 - RequestID: 4k9v33u61d3 +2025-06-18T14:29:50.181Z [TRACE] payment-service - Auth event: password_change - User: user_1075 - IP: 192.168.141.100 - RequestID: 6cs9xkg7wog +2025-06-18T14:29:50.281Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 937ms - IP: 192.168.144.38 - User: user_1097 - RequestID: 6xq8n9npkir +2025-06-18T14:29:50.381Z [INFO] user-service - PUT /api/v1/users - Status: 502 - Response time: 1206ms - IP: 192.168.11.60 - User: user_1005 - RequestID: 993yr10g5e4 +2025-06-18T14:29:50.481Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 645ms - RequestID: imomhl2b0w9 +2025-06-18T14:29:50.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.79.141 - RequestID: eann8n5vgtt +2025-06-18T14:29:50.681Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 484ms - RequestID: h2x6qffm658 +2025-06-18T14:29:50.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.32.38 - RequestID: glu4xwgg80q +2025-06-18T14:29:50.881Z [INFO] auth-service - GET /api/v1/users - Status: 503 - Response time: 1948ms - IP: 192.168.194.41 - User: user_1013 - RequestID: dbwizkfiie +2025-06-18T14:29:50.981Z [INFO] payment-service - Database INSERT on sessions - Execution time: 478ms - Rows affected: 16 - RequestID: hausiam21rb +2025-06-18T14:29:51.081Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 185ms - Rows affected: 68 - RequestID: 6lbwkpue8nu +2025-06-18T14:29:51.181Z [INFO] user-service - Auth event: logout - User: user_1041 - IP: 192.168.81.206 - RequestID: qx7df4u69m7 +2025-06-18T14:29:51.281Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 502 - Response time: 780ms - IP: 192.168.68.158 - User: user_1001 - RequestID: uc6q1g7kxa +2025-06-18T14:29:51.381Z [DEBUG] order-service - Database INSERT on payments - Execution time: 453ms - Rows affected: 80 - RequestID: bkjj7h5wpw +2025-06-18T14:29:51.481Z [TRACE] inventory-service - Auth event: login_failed - User: user_1011 - IP: 192.168.235.117 - RequestID: fd3ccsa8skd +2025-06-18T14:29:51.581Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 105ms - Rows affected: 60 - RequestID: wxclrfun5r +2025-06-18T14:29:51.681Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 441ms - RequestID: dyjx6za4hmn +2025-06-18T14:29:51.781Z [INFO] notification-service - Database DELETE on users - Execution time: 114ms - Rows affected: 35 - RequestID: htx2uaaesj6 +2025-06-18T14:29:51.881Z [INFO] user-service - Operation: order_created - Processing time: 693ms - RequestID: cez8l9bap1a +2025-06-18T14:29:51.981Z [INFO] inventory-service - PATCH /api/v1/users - Status: 404 - Response time: 1205ms - IP: 192.168.187.199 - User: user_1079 - RequestID: x23x1cxv79 +2025-06-18T14:29:52.081Z [INFO] payment-service - Operation: email_sent - Processing time: 718ms - RequestID: r5jf0zmqbwp +2025-06-18T14:29:52.181Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 467ms - Rows affected: 29 - RequestID: 2ltp70yx0dr +2025-06-18T14:29:52.281Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 612ms - RequestID: urknqo8vow +2025-06-18T14:29:52.381Z [INFO] payment-service - Operation: inventory_updated - Processing time: 125ms - RequestID: f7jmkr9gne6 +2025-06-18T14:29:52.481Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 200 - Response time: 1013ms - IP: 192.168.211.72 - User: user_1065 - RequestID: qj1lci3433 +2025-06-18T14:29:52.581Z [TRACE] inventory-service - Auth event: login_failed - User: user_1067 - IP: 192.168.14.77 - RequestID: 0c1vfm2dd4qe +2025-06-18T14:29:52.681Z [TRACE] payment-service - POST /api/v1/orders - Status: 403 - Response time: 1268ms - IP: 192.168.10.184 - User: user_1036 - RequestID: vofohyipbqd +2025-06-18T14:29:52.781Z [TRACE] payment-service - Auth event: logout - User: user_1065 - IP: 192.168.64.33 - RequestID: xn96m0yo2y +2025-06-18T14:29:52.881Z [INFO] user-service - Database INSERT on products - Execution time: 88ms - Rows affected: 94 - RequestID: ckwzbuwsymh +2025-06-18T14:29:52.981Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 241ms - RequestID: twbli6njm5 +2025-06-18T14:29:53.081Z [INFO] notification-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.33.76 - RequestID: 3ze5kb37p75 +2025-06-18T14:29:53.181Z [TRACE] user-service - Operation: notification_queued - Processing time: 399ms - RequestID: ncx6vtqhle +2025-06-18T14:29:53.281Z [DEBUG] user-service - Operation: cache_hit - Processing time: 386ms - RequestID: tsnob8buqc +2025-06-18T14:29:53.381Z [INFO] notification-service - Database DELETE on users - Execution time: 429ms - Rows affected: 89 - RequestID: u8rpp0wqc89 +2025-06-18T14:29:53.481Z [TRACE] user-service - Operation: email_sent - Processing time: 132ms - RequestID: dfvfv2lc89 +2025-06-18T14:29:53.581Z [INFO] order-service - Database UPDATE on orders - Execution time: 483ms - Rows affected: 47 - RequestID: 5b7wu9qwpic +2025-06-18T14:29:53.681Z [INFO] notification-service - PUT /api/v1/users - Status: 401 - Response time: 131ms - IP: 192.168.36.218 - User: user_1064 - RequestID: 6kudq27n7hh +2025-06-18T14:29:53.781Z [INFO] order-service - Database DELETE on users - Execution time: 92ms - Rows affected: 25 - RequestID: 1f1gx6r21vq +2025-06-18T14:29:53.881Z [TRACE] order-service - Auth event: logout - User: user_1051 - IP: 192.168.242.165 - RequestID: qdvomdvp2m +2025-06-18T14:29:53.981Z [INFO] notification-service - Auth event: password_change - User: user_1049 - IP: 192.168.44.5 - RequestID: jy3xdoejmj9 +2025-06-18T14:29:54.081Z [DEBUG] user-service - POST /api/v1/orders - Status: 201 - Response time: 1762ms - IP: 192.168.14.77 - User: user_1072 - RequestID: lpvpcaq9x5o +2025-06-18T14:29:54.181Z [TRACE] order-service - DELETE /api/v1/orders - Status: 201 - Response time: 1280ms - IP: 192.168.158.144 - User: user_1001 - RequestID: vs63scy9hy +2025-06-18T14:29:54.281Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 502 - Response time: 103ms - IP: 192.168.240.169 - User: user_1004 - RequestID: j4b6fmzzf0s +2025-06-18T14:29:54.381Z [DEBUG] order-service - Auth event: login_failed - User: user_1035 - IP: 192.168.158.144 - RequestID: nb7m6t6fe2g +2025-06-18T14:29:54.481Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 852ms - RequestID: dfakxksmxli +2025-06-18T14:29:54.581Z [DEBUG] auth-service - Database INSERT on products - Execution time: 112ms - Rows affected: 31 - RequestID: gd208tq8s6q +2025-06-18T14:29:54.681Z [TRACE] auth-service - Auth event: logout - User: user_1036 - IP: 192.168.144.38 - RequestID: 5s2qie5rwon +2025-06-18T14:29:54.781Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 400 - Response time: 1692ms - IP: 192.168.247.134 - User: user_1082 - RequestID: 7a125qyn7ws +2025-06-18T14:29:54.881Z [INFO] payment-service - Operation: notification_queued - Processing time: 158ms - RequestID: hs26ggbblt +2025-06-18T14:29:54.981Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 38ms - Rows affected: 48 - RequestID: chp5ct32347 +2025-06-18T14:29:55.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.138.123 - RequestID: 16k0x8c2gtn +2025-06-18T14:29:55.181Z [DEBUG] notification-service - Auth event: logout - User: user_1042 - IP: 192.168.46.63 - RequestID: efcupsqoatt +2025-06-18T14:29:55.281Z [TRACE] user-service - Auth event: logout - User: user_1013 - IP: 192.168.227.77 - RequestID: na3mwchjr2m +2025-06-18T14:29:55.381Z [INFO] inventory-service - Operation: cache_miss - Processing time: 1016ms - RequestID: lcskkkxotaf +2025-06-18T14:29:55.481Z [INFO] order-service - PATCH /api/v1/payments - Status: 502 - Response time: 1025ms - IP: 192.168.68.128 - User: user_1001 - RequestID: hrbx494tvpl +2025-06-18T14:29:55.581Z [INFO] user-service - PATCH /api/v1/orders - Status: 200 - Response time: 1518ms - IP: 192.168.187.199 - User: user_1025 - RequestID: ouk6lq9bi09 +2025-06-18T14:29:55.681Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 503 - Response time: 1651ms - IP: 192.168.240.169 - User: user_1050 - RequestID: 85ztnk4mzb +2025-06-18T14:29:55.781Z [INFO] payment-service - Database DELETE on sessions - Execution time: 102ms - Rows affected: 94 - RequestID: chp1d00184i +2025-06-18T14:29:55.881Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.33.76 - RequestID: vzjks5l7mib +2025-06-18T14:29:55.981Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 404 - Response time: 538ms - IP: 192.168.33.76 - User: user_1090 - RequestID: w73hg5k0b8c +2025-06-18T14:29:56.081Z [INFO] notification-service - Operation: email_sent - Processing time: 887ms - RequestID: zqquwoublpf +2025-06-18T14:29:56.181Z [INFO] notification-service - Auth event: logout - User: user_1058 - IP: 192.168.138.123 - RequestID: rp5m1s6v05f +2025-06-18T14:29:56.281Z [DEBUG] user-service - Auth event: login_success - User: user_1065 - IP: 192.168.13.72 - RequestID: acb647g6kx6 +2025-06-18T14:29:56.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1050 - IP: 192.168.187.199 - RequestID: p81j3p9qdps +2025-06-18T14:29:56.481Z [DEBUG] user-service - Operation: cache_miss - Processing time: 619ms - RequestID: 563d4rku8hq +2025-06-18T14:29:56.581Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 525ms - RequestID: z4p2ki75hws +2025-06-18T14:29:56.681Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 17ms - Rows affected: 53 - RequestID: 4yp0mdh0bn9 +2025-06-18T14:29:56.781Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1474ms - IP: 192.168.138.123 - User: user_1034 - RequestID: 702pjzv6knr +2025-06-18T14:29:56.881Z [INFO] notification-service - Auth event: password_change - User: user_1093 - IP: 192.168.227.77 - RequestID: xdo25bvhhs +2025-06-18T14:29:56.981Z [TRACE] user-service - Database SELECT on products - Execution time: 243ms - Rows affected: 87 - RequestID: rekcame92y8 +2025-06-18T14:29:57.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 829ms - RequestID: 5vz1sqv2f6m +2025-06-18T14:29:57.181Z [INFO] order-service - Operation: order_created - Processing time: 995ms - RequestID: whgq2fyrgus +2025-06-18T14:29:57.281Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1500ms - IP: 192.168.1.152 - User: user_1005 - RequestID: nthyta1rwm +2025-06-18T14:29:57.381Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 575ms - RequestID: bhhoxfcnw05 +2025-06-18T14:29:57.481Z [INFO] auth-service - Operation: webhook_sent - Processing time: 398ms - RequestID: 5iu19m84bjg +2025-06-18T14:29:57.581Z [DEBUG] user-service - GET /api/v1/inventory - Status: 403 - Response time: 1688ms - IP: 192.168.97.87 - User: user_1084 - RequestID: om2w9xhh5v +2025-06-18T14:29:57.681Z [TRACE] auth-service - Database DELETE on orders - Execution time: 27ms - Rows affected: 8 - RequestID: o90dkbf966k +2025-06-18T14:29:57.781Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 59ms - RequestID: 3cspaprw46g +2025-06-18T14:29:57.881Z [INFO] inventory-service - Operation: cache_miss - Processing time: 397ms - RequestID: 1gfxt1e4qyt +2025-06-18T14:29:57.981Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 201 - Response time: 1277ms - IP: 192.168.187.199 - User: user_1050 - RequestID: sjh8uizzlpm +2025-06-18T14:29:58.081Z [DEBUG] auth-service - Database SELECT on products - Execution time: 165ms - Rows affected: 29 - RequestID: 3cpssi00oyk +2025-06-18T14:29:58.181Z [INFO] notification-service - GET /api/v1/payments - Status: 200 - Response time: 1791ms - IP: 192.168.159.94 - User: user_1045 - RequestID: w7mhrg4lcja +2025-06-18T14:29:58.281Z [DEBUG] order-service - Operation: payment_processed - Processing time: 394ms - RequestID: xhlchxkghym +2025-06-18T14:29:58.381Z [INFO] payment-service - GET /api/v1/payments - Status: 503 - Response time: 1039ms - IP: 192.168.97.87 - User: user_1021 - RequestID: wi872iv7st +2025-06-18T14:29:58.481Z [INFO] auth-service - Operation: webhook_sent - Processing time: 427ms - RequestID: x13qij41z3 +2025-06-18T14:29:58.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.144.38 - RequestID: jvp8tlcdvc +2025-06-18T14:29:58.681Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 474ms - Rows affected: 23 - RequestID: 5sc3o906q9g +2025-06-18T14:29:58.781Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 342ms - Rows affected: 30 - RequestID: pxkw0gvss78 +2025-06-18T14:29:58.881Z [TRACE] auth-service - POST /api/v1/inventory - Status: 503 - Response time: 770ms - IP: 192.168.32.38 - User: user_1078 - RequestID: e0gtwurek65 +2025-06-18T14:29:58.981Z [DEBUG] payment-service - Auth event: logout - User: user_1084 - IP: 192.168.240.169 - RequestID: 0pgdfj5raz2q +2025-06-18T14:29:59.081Z [INFO] payment-service - PUT /api/v1/payments - Status: 200 - Response time: 1711ms - IP: 192.168.79.116 - User: user_1093 - RequestID: aqhiu56dmq5 +2025-06-18T14:29:59.181Z [INFO] inventory-service - Operation: order_created - Processing time: 827ms - RequestID: vs3ut6rdhbe +2025-06-18T14:29:59.281Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 500 - Response time: 717ms - IP: 192.168.181.225 - User: user_1030 - RequestID: p1xgtkc0me +2025-06-18T14:29:59.381Z [TRACE] auth-service - Database DELETE on users - Execution time: 426ms - Rows affected: 47 - RequestID: f78wu7e1o0e +2025-06-18T14:29:59.481Z [DEBUG] order-service - POST /api/v1/users - Status: 200 - Response time: 1309ms - IP: 192.168.147.171 - User: user_1015 - RequestID: xv48fafobrh +2025-06-18T14:29:59.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.133.7 - RequestID: xmddvtp16z +2025-06-18T14:29:59.681Z [DEBUG] inventory-service - Operation: order_created - Processing time: 451ms - RequestID: hs2uh87yz68 +2025-06-18T14:29:59.781Z [INFO] payment-service - Operation: notification_queued - Processing time: 325ms - RequestID: iv8a8u6hwh +2025-06-18T14:29:59.881Z [TRACE] order-service - Database INSERT on payments - Execution time: 241ms - Rows affected: 5 - RequestID: e9bl7an3qf +2025-06-18T14:29:59.981Z [TRACE] order-service - Operation: cache_miss - Processing time: 564ms - RequestID: 5eq7qi6bdsr +2025-06-18T14:30:00.081Z [INFO] notification-service - Auth event: login_failed - User: user_1066 - IP: 192.168.211.72 - RequestID: 3jmvxwlk1bb +2025-06-18T14:30:00.181Z [INFO] auth-service - Operation: payment_processed - Processing time: 1044ms - RequestID: s3kwzio47f +2025-06-18T14:30:00.281Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 720ms - RequestID: purmt1ri7pf +2025-06-18T14:30:00.381Z [TRACE] order-service - Database SELECT on sessions - Execution time: 416ms - Rows affected: 68 - RequestID: pd8mass1bu9 +2025-06-18T14:30:00.481Z [TRACE] inventory-service - Operation: email_sent - Processing time: 231ms - RequestID: zuq488of9a +2025-06-18T14:30:00.581Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 400 - Response time: 1803ms - IP: 192.168.32.38 - User: user_1004 - RequestID: ls2lueijm5l +2025-06-18T14:30:00.681Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 84ms - Rows affected: 18 - RequestID: pgqcfvdim +2025-06-18T14:30:00.781Z [INFO] auth-service - Operation: inventory_updated - Processing time: 414ms - RequestID: ajo38fxmg45 +2025-06-18T14:30:00.881Z [DEBUG] notification-service - Operation: email_sent - Processing time: 891ms - RequestID: r3y8azsv8ci +2025-06-18T14:30:00.981Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 5ms - Rows affected: 34 - RequestID: yttymb4mlmk +2025-06-18T14:30:01.081Z [TRACE] order-service - Operation: cache_miss - Processing time: 888ms - RequestID: o9zqhz048lt +2025-06-18T14:30:01.181Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 336ms - RequestID: bxwcd9nbur +2025-06-18T14:30:01.281Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1146ms - IP: 192.168.196.226 - User: user_1034 - RequestID: ahpctxgj8jr +2025-06-18T14:30:01.381Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 169ms - Rows affected: 30 - RequestID: a9ab07p1yep +2025-06-18T14:30:01.481Z [DEBUG] order-service - Database UPDATE on products - Execution time: 228ms - Rows affected: 2 - RequestID: xhqdo92pzeq +2025-06-18T14:30:01.581Z [TRACE] payment-service - Operation: payment_processed - Processing time: 479ms - RequestID: 4rgj6d4mynd +2025-06-18T14:30:01.681Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 1040ms - RequestID: f26rdlfgwmd +2025-06-18T14:30:01.781Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 312ms - Rows affected: 32 - RequestID: pexn28fma7e +2025-06-18T14:30:01.881Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 932ms - RequestID: 4vjg1ouq6xd +2025-06-18T14:30:01.981Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 827ms - IP: 192.168.232.72 - User: user_1034 - RequestID: hnfvuwlkh5 +2025-06-18T14:30:02.081Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 447ms - Rows affected: 92 - RequestID: fdsawp42tpd +2025-06-18T14:30:02.181Z [INFO] order-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.31.117 - RequestID: jy1lfckhjrf +2025-06-18T14:30:02.281Z [DEBUG] order-service - GET /api/v1/inventory - Status: 500 - Response time: 1054ms - IP: 192.168.147.171 - User: user_1082 - RequestID: uk6gzgi3npo +2025-06-18T14:30:02.381Z [INFO] inventory-service - Operation: cache_hit - Processing time: 754ms - RequestID: dazf26uixug +2025-06-18T14:30:02.481Z [INFO] order-service - Database UPDATE on products - Execution time: 388ms - Rows affected: 54 - RequestID: 5s2aj30ejaa +2025-06-18T14:30:02.581Z [TRACE] user-service - Operation: cache_hit - Processing time: 269ms - RequestID: fxehc32rrmc +2025-06-18T14:30:02.681Z [INFO] order-service - Database SELECT on users - Execution time: 98ms - Rows affected: 4 - RequestID: vs8iksc4ax +2025-06-18T14:30:02.781Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 881ms - RequestID: 9aei4bcsh9d +2025-06-18T14:30:02.881Z [INFO] payment-service - Operation: order_created - Processing time: 574ms - RequestID: 1prabwdleow +2025-06-18T14:30:02.981Z [INFO] auth-service - Database INSERT on users - Execution time: 148ms - Rows affected: 1 - RequestID: hf5eeagk6sn +2025-06-18T14:30:03.081Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 404 - Response time: 857ms - IP: 192.168.196.226 - User: user_1018 - RequestID: q9t0wj3lc5 +2025-06-18T14:30:03.181Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 401 - Response time: 902ms - IP: 192.168.240.169 - User: user_1037 - RequestID: n7b9oy5hk7h +2025-06-18T14:30:03.281Z [INFO] auth-service - Operation: cache_hit - Processing time: 201ms - RequestID: ui5851phnds +2025-06-18T14:30:03.381Z [DEBUG] user-service - Database SELECT on products - Execution time: 357ms - Rows affected: 31 - RequestID: rnml8lxrt1 +2025-06-18T14:30:03.481Z [TRACE] user-service - Auth event: login_success - User: user_1084 - IP: 192.168.44.5 - RequestID: 0zt1264jbayk +2025-06-18T14:30:03.581Z [DEBUG] user-service - Operation: payment_processed - Processing time: 602ms - RequestID: kgcu08wm85n +2025-06-18T14:30:03.681Z [INFO] payment-service - Auth event: logout - User: user_1007 - IP: 192.168.79.143 - RequestID: x6qrwtj2p +2025-06-18T14:30:03.781Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 229ms - Rows affected: 54 - RequestID: drm6nv9mtdi +2025-06-18T14:30:03.881Z [TRACE] user-service - Database UPDATE on payments - Execution time: 367ms - Rows affected: 17 - RequestID: us3el9a6h1a +2025-06-18T14:30:03.981Z [INFO] notification-service - Auth event: logout - User: user_1084 - IP: 192.168.196.226 - RequestID: jmz9afv1swb +2025-06-18T14:30:04.081Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 859ms - RequestID: 9o9n3kein9u +2025-06-18T14:30:04.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 859ms - RequestID: az1qsxslyyf +2025-06-18T14:30:04.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.247.134 - RequestID: sra176q11n +2025-06-18T14:30:04.381Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1933ms - IP: 192.168.68.158 - User: user_1076 - RequestID: z856164nmz +2025-06-18T14:30:04.481Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 432ms - Rows affected: 38 - RequestID: bgiuvlnjv3l +2025-06-18T14:30:04.581Z [DEBUG] order-service - PATCH /api/v1/users - Status: 404 - Response time: 500ms - IP: 192.168.46.63 - User: user_1034 - RequestID: 5lq9nbvxqn7 +2025-06-18T14:30:04.681Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 778ms - RequestID: 71jwu0b4ris +2025-06-18T14:30:04.781Z [TRACE] payment-service - Operation: notification_queued - Processing time: 808ms - RequestID: ii0trie0bfi +2025-06-18T14:30:04.881Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 200 - Response time: 1591ms - IP: 192.168.85.229 - User: user_1066 - RequestID: 1l8xkmnotts +2025-06-18T14:30:04.981Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 404 - Response time: 1726ms - IP: 192.168.30.79 - User: user_1091 - RequestID: kasgt41pytf +2025-06-18T14:30:05.081Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 891ms - IP: 192.168.14.77 - User: user_1094 - RequestID: ji0dk2ct129 +2025-06-18T14:30:05.181Z [INFO] auth-service - Database DELETE on payments - Execution time: 323ms - Rows affected: 44 - RequestID: j4cc322nfo8 +2025-06-18T14:30:05.281Z [TRACE] user-service - Operation: cache_hit - Processing time: 301ms - RequestID: jeul7exlr2q +2025-06-18T14:30:05.381Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 401 - Response time: 1937ms - IP: 192.168.141.100 - User: user_1085 - RequestID: 3dblft9imak +2025-06-18T14:30:05.481Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1871ms - IP: 192.168.240.169 - User: user_1097 - RequestID: canqe30nm3a +2025-06-18T14:30:05.581Z [INFO] inventory-service - Auth event: logout - User: user_1019 - IP: 192.168.68.128 - RequestID: gf8axwvdza +2025-06-18T14:30:05.681Z [TRACE] notification-service - Operation: cache_hit - Processing time: 675ms - RequestID: llc1til8wv +2025-06-18T14:30:05.781Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 500 - Response time: 1998ms - IP: 192.168.33.76 - User: user_1074 - RequestID: fwriuvpp9x9 +2025-06-18T14:30:05.881Z [DEBUG] order-service - Database DELETE on products - Execution time: 86ms - Rows affected: 67 - RequestID: us95rla7j1 +2025-06-18T14:30:05.981Z [INFO] notification-service - Auth event: login_failed - User: user_1094 - IP: 192.168.211.72 - RequestID: tihpwdj9cng +2025-06-18T14:30:06.081Z [DEBUG] order-service - Operation: order_created - Processing time: 239ms - RequestID: ombtp23fokt +2025-06-18T14:30:06.181Z [INFO] payment-service - Auth event: login_success - User: user_1038 - IP: 192.168.81.206 - RequestID: ir3p08lgwb +2025-06-18T14:30:06.281Z [INFO] order-service - POST /api/v1/users - Status: 502 - Response time: 352ms - IP: 192.168.194.41 - User: user_1046 - RequestID: hkl81c7g105 +2025-06-18T14:30:06.381Z [TRACE] user-service - GET /api/v1/users - Status: 200 - Response time: 387ms - IP: 192.168.46.63 - User: user_1088 - RequestID: k5brtxsf98b +2025-06-18T14:30:06.481Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 205ms - Rows affected: 57 - RequestID: i767q8sl23 +2025-06-18T14:30:06.581Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 115ms - Rows affected: 92 - RequestID: pd7xqdtzrqn +2025-06-18T14:30:06.681Z [DEBUG] inventory-service - Auth event: login_success - User: user_1008 - IP: 192.168.14.77 - RequestID: 62e1f053aq5 +2025-06-18T14:30:06.781Z [INFO] auth-service - Database SELECT on users - Execution time: 475ms - Rows affected: 37 - RequestID: 7j1r062kly7 +2025-06-18T14:30:06.881Z [INFO] auth-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.104.37 - RequestID: yu1rf5h8uqa +2025-06-18T14:30:06.981Z [INFO] notification-service - Database UPDATE on payments - Execution time: 348ms - Rows affected: 18 - RequestID: 12ittzcwtzwp +2025-06-18T14:30:07.081Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 34ms - Rows affected: 91 - RequestID: mfckqqjkyln +2025-06-18T14:30:07.181Z [INFO] order-service - Operation: cache_miss - Processing time: 75ms - RequestID: rgiclbakyp +2025-06-18T14:30:07.281Z [INFO] auth-service - Auth event: login_success - User: user_1043 - IP: 192.168.36.218 - RequestID: gp7m9aldgde +2025-06-18T14:30:07.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 861ms - RequestID: u6y5xuiw1 +2025-06-18T14:30:07.481Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 201 - Response time: 973ms - IP: 192.168.159.94 - User: user_1077 - RequestID: 55i53r69x6m +2025-06-18T14:30:07.581Z [TRACE] inventory-service - Auth event: login_success - User: user_1005 - IP: 192.168.53.133 - RequestID: mbzrj4xqyu +2025-06-18T14:30:07.681Z [INFO] notification-service - PUT /api/v1/payments - Status: 500 - Response time: 1684ms - IP: 192.168.32.38 - User: user_1053 - RequestID: gd27dcucoug +2025-06-18T14:30:07.781Z [TRACE] payment-service - Auth event: logout - User: user_1085 - IP: 192.168.13.72 - RequestID: 7qaw5b5dr58 +2025-06-18T14:30:07.881Z [TRACE] auth-service - GET /api/v1/users - Status: 200 - Response time: 1972ms - IP: 192.168.227.233 - User: user_1032 - RequestID: xybjc5lrhx +2025-06-18T14:30:07.981Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1090ms - IP: 192.168.240.169 - User: user_1026 - RequestID: tob6j1h4fn +2025-06-18T14:30:08.081Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 640ms - RequestID: yjo6xxduvcs +2025-06-18T14:30:08.181Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 584ms - RequestID: nb4bhj5crwo +2025-06-18T14:30:08.281Z [INFO] order-service - Database INSERT on products - Execution time: 485ms - Rows affected: 84 - RequestID: jfx9phd3o1 +2025-06-18T14:30:08.381Z [DEBUG] order-service - Database DELETE on orders - Execution time: 158ms - Rows affected: 2 - RequestID: so75tm7loc +2025-06-18T14:30:08.481Z [TRACE] order-service - GET /api/v1/orders - Status: 401 - Response time: 1056ms - IP: 192.168.104.37 - User: user_1032 - RequestID: 45kbx00q6yw +2025-06-18T14:30:08.581Z [INFO] payment-service - Database INSERT on orders - Execution time: 2ms - Rows affected: 45 - RequestID: wwzggitqxug +2025-06-18T14:30:08.681Z [INFO] user-service - Auth event: logout - User: user_1053 - IP: 192.168.68.158 - RequestID: l4dregh1yxq +2025-06-18T14:30:08.781Z [TRACE] inventory-service - Auth event: login_failed - User: user_1032 - IP: 192.168.158.144 - RequestID: qm98pi4rei +2025-06-18T14:30:08.881Z [INFO] notification-service - Database UPDATE on orders - Execution time: 153ms - Rows affected: 41 - RequestID: 8mnxvz40jyb +2025-06-18T14:30:08.981Z [TRACE] order-service - PUT /api/v1/orders - Status: 403 - Response time: 356ms - IP: 192.168.133.7 - User: user_1016 - RequestID: fj1m4wo742o +2025-06-18T14:30:09.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1053 - IP: 192.168.31.117 - RequestID: cn2fr4olhv +2025-06-18T14:30:09.181Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 799ms - RequestID: ibwdxpd1cth +2025-06-18T14:30:09.281Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 193ms - Rows affected: 38 - RequestID: 9x35j93u8tk +2025-06-18T14:30:09.381Z [INFO] auth-service - Database INSERT on sessions - Execution time: 483ms - Rows affected: 43 - RequestID: ymf1ptz26l +2025-06-18T14:30:09.481Z [INFO] order-service - Operation: email_sent - Processing time: 1004ms - RequestID: egw9cxdjk3 +2025-06-18T14:30:09.581Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 166ms - Rows affected: 0 - RequestID: d9bjed5dxmg +2025-06-18T14:30:09.681Z [TRACE] payment-service - Operation: notification_queued - Processing time: 384ms - RequestID: vgioiu0oif +2025-06-18T14:30:09.781Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 118ms - RequestID: r24hh06lye +2025-06-18T14:30:09.881Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 90ms - Rows affected: 23 - RequestID: aytexdq128 +2025-06-18T14:30:09.981Z [INFO] auth-service - Auth event: password_change - User: user_1034 - IP: 192.168.79.143 - RequestID: svpi2oib6up +2025-06-18T14:30:10.081Z [TRACE] user-service - Operation: cache_miss - Processing time: 910ms - RequestID: xqm5x28qdi +2025-06-18T14:30:10.181Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 1018ms - RequestID: cx1k7e6ixmo +2025-06-18T14:30:10.281Z [INFO] order-service - Operation: cache_hit - Processing time: 159ms - RequestID: ibyd3431ec9 +2025-06-18T14:30:10.381Z [INFO] order-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.79.143 - RequestID: znuz5g7ttdi +2025-06-18T14:30:10.481Z [INFO] order-service - Auth event: logout - User: user_1004 - IP: 192.168.158.144 - RequestID: mprez13dg9 +2025-06-18T14:30:10.581Z [TRACE] user-service - Operation: cache_miss - Processing time: 794ms - RequestID: 40m0bxm57pl +2025-06-18T14:30:10.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.13.72 - RequestID: 4w17uw3p5hq +2025-06-18T14:30:10.781Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1096ms - IP: 192.168.13.72 - User: user_1029 - RequestID: xvbru8jssq +2025-06-18T14:30:10.881Z [INFO] inventory-service - Operation: email_sent - Processing time: 539ms - RequestID: 9k3tb6wuz0l +2025-06-18T14:30:10.981Z [TRACE] inventory-service - Database SELECT on products - Execution time: 26ms - Rows affected: 33 - RequestID: dld2m5fhicw +2025-06-18T14:30:11.081Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 401 - Response time: 591ms - IP: 192.168.31.117 - User: user_1091 - RequestID: lmn3z4xvq8e +2025-06-18T14:30:11.181Z [DEBUG] order-service - Database SELECT on products - Execution time: 94ms - Rows affected: 86 - RequestID: 291khr4y526 +2025-06-18T14:30:11.281Z [INFO] user-service - Database UPDATE on users - Execution time: 28ms - Rows affected: 48 - RequestID: g5zysg08sj4 +2025-06-18T14:30:11.381Z [INFO] inventory-service - Auth event: logout - User: user_1076 - IP: 192.168.196.226 - RequestID: 5k1vk5u8587 +2025-06-18T14:30:11.481Z [TRACE] payment-service - GET /api/v1/users - Status: 401 - Response time: 662ms - IP: 192.168.79.143 - User: user_1027 - RequestID: etb04ltenl +2025-06-18T14:30:11.581Z [DEBUG] payment-service - POST /api/v1/users - Status: 401 - Response time: 1743ms - IP: 192.168.10.184 - User: user_1009 - RequestID: o8heay2rlbq +2025-06-18T14:30:11.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 776ms - RequestID: 187mwujuov +2025-06-18T14:30:11.781Z [INFO] notification-service - Operation: inventory_updated - Processing time: 1006ms - RequestID: 6j609qhshsr +2025-06-18T14:30:11.881Z [TRACE] order-service - Database SELECT on sessions - Execution time: 209ms - Rows affected: 76 - RequestID: jw8ja8gyem +2025-06-18T14:30:11.981Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 500 - Response time: 1236ms - IP: 192.168.232.72 - User: user_1069 - RequestID: nltcvyjv73i +2025-06-18T14:30:12.081Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1780ms - IP: 192.168.11.60 - User: user_1083 - RequestID: lvs70agepn +2025-06-18T14:30:12.181Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 222ms - Rows affected: 62 - RequestID: ac89lq59zbm +2025-06-18T14:30:12.281Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 299ms - RequestID: 93o5iwk3b9w +2025-06-18T14:30:12.381Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.53.133 - RequestID: o4tdbbn7e6 +2025-06-18T14:30:12.481Z [INFO] order-service - PATCH /api/v1/users - Status: 401 - Response time: 300ms - IP: 192.168.30.79 - User: user_1040 - RequestID: 69hyjrvpvn5 +2025-06-18T14:30:12.581Z [DEBUG] auth-service - Database DELETE on users - Execution time: 74ms - Rows affected: 22 - RequestID: m0bwskwezpi +2025-06-18T14:30:12.681Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1942ms - IP: 192.168.240.169 - User: user_1009 - RequestID: we0858k4jbg +2025-06-18T14:30:12.781Z [INFO] order-service - PATCH /api/v1/payments - Status: 201 - Response time: 332ms - IP: 192.168.240.169 - User: user_1090 - RequestID: j0uoorxxoos +2025-06-18T14:30:12.881Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 149ms - RequestID: up29t2mk4qh +2025-06-18T14:30:12.981Z [DEBUG] order-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.167.32 - RequestID: s3eykix99xl +2025-06-18T14:30:13.081Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 18ms - Rows affected: 92 - RequestID: l2hkx76e2bo +2025-06-18T14:30:13.181Z [DEBUG] payment-service - Operation: order_created - Processing time: 516ms - RequestID: 6qb6ffxqmi +2025-06-18T14:30:13.281Z [TRACE] order-service - Operation: notification_queued - Processing time: 195ms - RequestID: vl81myjxs8t +2025-06-18T14:30:13.381Z [INFO] order-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.13.72 - RequestID: tl0szrx29dd +2025-06-18T14:30:13.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 615ms - RequestID: a2snh65w9hp +2025-06-18T14:30:13.581Z [TRACE] user-service - Database DELETE on sessions - Execution time: 285ms - Rows affected: 77 - RequestID: zqat1isf7uq +2025-06-18T14:30:13.681Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 432ms - Rows affected: 25 - RequestID: 1qqka7u7viy +2025-06-18T14:30:13.781Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1843ms - IP: 192.168.31.117 - User: user_1071 - RequestID: ftfulyjm6il +2025-06-18T14:30:13.881Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.133.7 - RequestID: 7tuba9x10v8 +2025-06-18T14:30:13.981Z [TRACE] payment-service - PUT /api/v1/users - Status: 200 - Response time: 14ms - IP: 192.168.147.171 - User: user_1087 - RequestID: otpg82tzxo +2025-06-18T14:30:14.081Z [TRACE] auth-service - Database INSERT on orders - Execution time: 28ms - Rows affected: 44 - RequestID: 24g74p1batd +2025-06-18T14:30:14.181Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1956ms - IP: 192.168.174.114 - User: user_1053 - RequestID: 0caxk0rd83o +2025-06-18T14:30:14.281Z [TRACE] auth-service - Operation: cache_hit - Processing time: 60ms - RequestID: m607pxzpy3 +2025-06-18T14:30:14.381Z [INFO] user-service - Database INSERT on products - Execution time: 35ms - Rows affected: 46 - RequestID: tewytdeapmi +2025-06-18T14:30:14.481Z [DEBUG] notification-service - Operation: order_created - Processing time: 590ms - RequestID: ex85fmbgkvs +2025-06-18T14:30:14.581Z [INFO] inventory-service - Operation: cache_miss - Processing time: 513ms - RequestID: i1dog4z0wcl +2025-06-18T14:30:14.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.68.128 - RequestID: 1x9g3408c4w +2025-06-18T14:30:14.781Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 333ms - RequestID: p5j9xnbuumd +2025-06-18T14:30:14.881Z [TRACE] order-service - GET /api/v1/users - Status: 401 - Response time: 890ms - IP: 192.168.79.141 - User: user_1093 - RequestID: rqn19jwfjbo +2025-06-18T14:30:14.981Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 503 - Response time: 451ms - IP: 192.168.174.114 - User: user_1098 - RequestID: 6xtl8s2e3s +2025-06-18T14:30:15.081Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 503 - Response time: 529ms - IP: 192.168.64.33 - User: user_1011 - RequestID: anhrlu8y7rf +2025-06-18T14:30:15.181Z [TRACE] payment-service - Database SELECT on payments - Execution time: 261ms - Rows affected: 83 - RequestID: lx8yxfwwgt +2025-06-18T14:30:15.281Z [INFO] order-service - Operation: cache_miss - Processing time: 722ms - RequestID: x317uk43amo +2025-06-18T14:30:15.381Z [INFO] payment-service - Database INSERT on products - Execution time: 124ms - Rows affected: 64 - RequestID: 9caz7k5or37 +2025-06-18T14:30:15.481Z [INFO] order-service - Operation: payment_processed - Processing time: 673ms - RequestID: 0jhr958ldn8r +2025-06-18T14:30:15.581Z [TRACE] notification-service - GET /api/v1/inventory - Status: 502 - Response time: 1577ms - IP: 192.168.174.114 - User: user_1044 - RequestID: 83ppu9ax0w +2025-06-18T14:30:15.681Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 458ms - Rows affected: 59 - RequestID: vgnatpjq6nl +2025-06-18T14:30:15.781Z [DEBUG] notification-service - Auth event: password_change - User: user_1067 - IP: 192.168.133.7 - RequestID: 6zvmiu1zvtl +2025-06-18T14:30:15.881Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 2007ms - IP: 192.168.240.169 - User: user_1045 - RequestID: ommc5l3mu0l +2025-06-18T14:30:15.981Z [INFO] payment-service - Operation: notification_queued - Processing time: 492ms - RequestID: lw0gnr24ax +2025-06-18T14:30:16.081Z [INFO] order-service - Operation: inventory_updated - Processing time: 229ms - RequestID: eg532vqxc4 +2025-06-18T14:30:16.181Z [DEBUG] user-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.36.218 - RequestID: qbau24z3bqn +2025-06-18T14:30:16.281Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1513ms - IP: 192.168.227.77 - User: user_1023 - RequestID: blswdzhpoyu +2025-06-18T14:30:16.381Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 426ms - Rows affected: 73 - RequestID: gkwjon562x6 +2025-06-18T14:30:16.481Z [TRACE] inventory-service - Auth event: login_success - User: user_1049 - IP: 192.168.1.152 - RequestID: e3iij58wnbf +2025-06-18T14:30:16.581Z [INFO] inventory-service - Operation: notification_queued - Processing time: 51ms - RequestID: avezpa17u0l +2025-06-18T14:30:16.681Z [DEBUG] order-service - POST /api/v1/orders - Status: 403 - Response time: 1629ms - IP: 192.168.31.117 - User: user_1081 - RequestID: yc214pens8 +2025-06-18T14:30:16.781Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.68.158 - RequestID: x2hafpoe33 +2025-06-18T14:30:16.881Z [TRACE] order-service - Database INSERT on products - Execution time: 222ms - Rows affected: 4 - RequestID: jmlhltrqvb +2025-06-18T14:30:16.981Z [INFO] order-service - Auth event: login_failed - User: user_1065 - IP: 192.168.189.103 - RequestID: m9kxqvs21aa +2025-06-18T14:30:17.081Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 308ms - Rows affected: 74 - RequestID: 0g3ngof3gyut +2025-06-18T14:30:17.181Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1440ms - IP: 192.168.144.38 - User: user_1057 - RequestID: o33wyfgup2l +2025-06-18T14:30:17.281Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 756ms - RequestID: z29s5fiiav9 +2025-06-18T14:30:17.381Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 401 - Response time: 1694ms - IP: 192.168.104.37 - User: user_1003 - RequestID: cd7twm8cfna +2025-06-18T14:30:17.481Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 401 - Response time: 130ms - IP: 192.168.68.128 - User: user_1083 - RequestID: vg7t4nwma2 +2025-06-18T14:30:17.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.240.169 - RequestID: 4vqpe8rf194 +2025-06-18T14:30:17.681Z [TRACE] payment-service - Database INSERT on products - Execution time: 8ms - Rows affected: 91 - RequestID: uinabs4i65b +2025-06-18T14:30:17.781Z [TRACE] auth-service - Operation: email_sent - Processing time: 869ms - RequestID: 1xjyfhzeco5 +2025-06-18T14:30:17.881Z [INFO] payment-service - Auth event: login_failed - User: user_1054 - IP: 192.168.158.144 - RequestID: 20if90mgtrw +2025-06-18T14:30:17.981Z [TRACE] user-service - PUT /api/v1/inventory - Status: 400 - Response time: 1094ms - IP: 192.168.144.38 - User: user_1066 - RequestID: m1j8tu6wj8c +2025-06-18T14:30:18.081Z [TRACE] auth-service - Operation: email_sent - Processing time: 553ms - RequestID: ls6tntbywuj +2025-06-18T14:30:18.181Z [DEBUG] user-service - Operation: payment_processed - Processing time: 467ms - RequestID: vsxgi6uvmef +2025-06-18T14:30:18.281Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1755ms - IP: 192.168.227.233 - User: user_1023 - RequestID: 36ji1rchufj +2025-06-18T14:30:18.381Z [INFO] order-service - Database SELECT on users - Execution time: 138ms - Rows affected: 91 - RequestID: 40hv4ffh7b +2025-06-18T14:30:18.481Z [TRACE] order-service - Operation: webhook_sent - Processing time: 411ms - RequestID: 5oqnysl03q4 +2025-06-18T14:30:18.581Z [TRACE] order-service - Operation: order_created - Processing time: 863ms - RequestID: 5uee07pyq3d +2025-06-18T14:30:18.681Z [TRACE] order-service - Operation: order_created - Processing time: 385ms - RequestID: wag5djzhk8 +2025-06-18T14:30:18.781Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 183ms - Rows affected: 45 - RequestID: c2zzelxlbx5 +2025-06-18T14:30:18.881Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 185ms - Rows affected: 92 - RequestID: 8byrw4v9lh6 +2025-06-18T14:30:18.981Z [INFO] user-service - Operation: cache_hit - Processing time: 768ms - RequestID: 5t7gia4jo33 +2025-06-18T14:30:19.081Z [INFO] payment-service - Auth event: login_failed - User: user_1024 - IP: 192.168.44.5 - RequestID: 6v4ba61yfy6 +2025-06-18T14:30:19.181Z [TRACE] payment-service - Auth event: logout - User: user_1076 - IP: 192.168.68.128 - RequestID: ih8f09ttb7h +2025-06-18T14:30:19.281Z [DEBUG] payment-service - Auth event: password_change - User: user_1091 - IP: 192.168.28.146 - RequestID: h3b8c4d6z +2025-06-18T14:30:19.381Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 448ms - Rows affected: 24 - RequestID: javngf1u5nq +2025-06-18T14:30:19.481Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 141ms - IP: 192.168.81.206 - User: user_1034 - RequestID: 28d1w05l869 +2025-06-18T14:30:19.581Z [INFO] notification-service - Auth event: logout - User: user_1031 - IP: 192.168.10.184 - RequestID: kftxa8m077c +2025-06-18T14:30:19.681Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 473ms - RequestID: q6z22il597 +2025-06-18T14:30:19.781Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 249ms - Rows affected: 99 - RequestID: zk8r0imlaw8 +2025-06-18T14:30:19.881Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 727ms - IP: 192.168.147.171 - User: user_1046 - RequestID: n30wn9at31 +2025-06-18T14:30:19.981Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 111ms - IP: 192.168.79.141 - User: user_1045 - RequestID: uzr83fvqyoh +2025-06-18T14:30:20.081Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 369ms - RequestID: 9qf09bjge6b +2025-06-18T14:30:20.181Z [INFO] auth-service - Database DELETE on users - Execution time: 269ms - Rows affected: 3 - RequestID: d32sgn5x07 +2025-06-18T14:30:20.281Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 401 - Response time: 1521ms - IP: 192.168.147.171 - User: user_1023 - RequestID: 7bgkapi9lpj +2025-06-18T14:30:20.381Z [TRACE] notification-service - Database UPDATE on users - Execution time: 370ms - Rows affected: 16 - RequestID: p8h0og9r4sd +2025-06-18T14:30:20.481Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 144ms - Rows affected: 46 - RequestID: vras5jftje +2025-06-18T14:30:20.581Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 18ms - Rows affected: 70 - RequestID: xb0wlicj759 +2025-06-18T14:30:20.681Z [INFO] inventory-service - Auth event: login_success - User: user_1011 - IP: 192.168.189.103 - RequestID: t6ri86j2lih +2025-06-18T14:30:20.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 460ms - RequestID: scowusts1nq +2025-06-18T14:30:20.881Z [DEBUG] order-service - Operation: cache_hit - Processing time: 142ms - RequestID: hfh8q3ul2tc +2025-06-18T14:30:20.981Z [INFO] user-service - Auth event: logout - User: user_1096 - IP: 192.168.189.103 - RequestID: 8uzwc2npq2r +2025-06-18T14:30:21.081Z [INFO] inventory-service - Auth event: logout - User: user_1005 - IP: 192.168.158.144 - RequestID: cz0zz7l9i14 +2025-06-18T14:30:21.181Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 108ms - RequestID: avnpccwwet +2025-06-18T14:30:21.281Z [TRACE] order-service - Auth event: login_success - User: user_1033 - IP: 192.168.13.72 - RequestID: g79ssmieb0a +2025-06-18T14:30:21.381Z [INFO] order-service - POST /api/v1/orders - Status: 201 - Response time: 962ms - IP: 192.168.227.233 - User: user_1061 - RequestID: wzzpetwhzr +2025-06-18T14:30:21.481Z [DEBUG] user-service - Auth event: password_change - User: user_1089 - IP: 192.168.147.171 - RequestID: 53eyj5pxwpb +2025-06-18T14:30:21.581Z [TRACE] order-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.242.165 - RequestID: x1ykar31ye +2025-06-18T14:30:21.681Z [INFO] payment-service - Operation: cache_hit - Processing time: 318ms - RequestID: gvrffsf2osj +2025-06-18T14:30:21.781Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 392ms - Rows affected: 28 - RequestID: 2u7hbwa88js +2025-06-18T14:30:21.881Z [INFO] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 893ms - IP: 192.168.247.134 - User: user_1096 - RequestID: s2v49vfyd2 +2025-06-18T14:30:21.981Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 1003ms - RequestID: ujgce748j9p +2025-06-18T14:30:22.081Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 400 - Response time: 1291ms - IP: 192.168.189.103 - User: user_1036 - RequestID: sc9r2kyf6ng +2025-06-18T14:30:22.181Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 403 - Response time: 105ms - IP: 192.168.32.38 - User: user_1075 - RequestID: svfzqzru1h +2025-06-18T14:30:22.281Z [DEBUG] payment-service - Auth event: login_success - User: user_1079 - IP: 192.168.133.7 - RequestID: bk59cja7gn7 +2025-06-18T14:30:22.381Z [INFO] user-service - Database DELETE on payments - Execution time: 349ms - Rows affected: 42 - RequestID: owmo61szen +2025-06-18T14:30:22.481Z [INFO] user-service - Operation: payment_processed - Processing time: 642ms - RequestID: xooyytyfsoi +2025-06-18T14:30:22.581Z [DEBUG] order-service - GET /api/v1/orders - Status: 500 - Response time: 931ms - IP: 192.168.44.5 - User: user_1075 - RequestID: 88my7nbyaun +2025-06-18T14:30:22.681Z [INFO] payment-service - Database INSERT on orders - Execution time: 59ms - Rows affected: 54 - RequestID: 806qxbfcxs3 +2025-06-18T14:30:22.781Z [INFO] order-service - Database UPDATE on sessions - Execution time: 362ms - Rows affected: 5 - RequestID: guzsnna4hl9 +2025-06-18T14:30:22.881Z [INFO] order-service - Operation: inventory_updated - Processing time: 492ms - RequestID: 8v58ezpmh3h +2025-06-18T14:30:22.981Z [TRACE] order-service - DELETE /api/v1/users - Status: 403 - Response time: 1129ms - IP: 192.168.158.144 - User: user_1032 - RequestID: fhrd6149cdf +2025-06-18T14:30:23.081Z [TRACE] payment-service - Operation: order_created - Processing time: 118ms - RequestID: tfrpk4bkrjd +2025-06-18T14:30:23.181Z [INFO] user-service - Database INSERT on users - Execution time: 244ms - Rows affected: 18 - RequestID: p05lcmji7x +2025-06-18T14:30:23.281Z [TRACE] payment-service - Auth event: login_success - User: user_1058 - IP: 192.168.229.123 - RequestID: hf9c91c0l0r +2025-06-18T14:30:23.381Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1756ms - IP: 192.168.141.100 - User: user_1067 - RequestID: e0778hsayn +2025-06-18T14:30:23.481Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 146ms - RequestID: 6ou6uzrotrv +2025-06-18T14:30:23.581Z [DEBUG] payment-service - Auth event: login_failed - User: user_1054 - IP: 192.168.68.158 - RequestID: zzxwx849lb +2025-06-18T14:30:23.681Z [INFO] inventory-service - Database DELETE on payments - Execution time: 74ms - Rows affected: 94 - RequestID: y5cdsf6xwe +2025-06-18T14:30:23.781Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 404 - Response time: 1126ms - IP: 192.168.64.33 - User: user_1011 - RequestID: 7s8541bdhi3 +2025-06-18T14:30:23.881Z [INFO] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 460ms - IP: 192.168.79.141 - User: user_1077 - RequestID: jn87m4ehzwd +2025-06-18T14:30:23.981Z [INFO] auth-service - Database INSERT on sessions - Execution time: 232ms - Rows affected: 39 - RequestID: g6f1f0h9lf4 +2025-06-18T14:30:24.081Z [INFO] inventory-service - Database DELETE on orders - Execution time: 165ms - Rows affected: 14 - RequestID: 2k1a8hxuwl +2025-06-18T14:30:24.181Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 435ms - Rows affected: 26 - RequestID: 1lthsj7hrnhh +2025-06-18T14:30:24.281Z [TRACE] user-service - Operation: notification_queued - Processing time: 954ms - RequestID: i0zwqswr4vb +2025-06-18T14:30:24.381Z [DEBUG] payment-service - Operation: email_sent - Processing time: 744ms - RequestID: qw811004o6f +2025-06-18T14:30:24.481Z [TRACE] notification-service - Operation: notification_queued - Processing time: 309ms - RequestID: ii9zpjjnzqm +2025-06-18T14:30:24.581Z [TRACE] notification-service - Operation: cache_hit - Processing time: 570ms - RequestID: xiu4tq0xlz +2025-06-18T14:30:24.681Z [DEBUG] user-service - Auth event: logout - User: user_1021 - IP: 192.168.64.33 - RequestID: dczjl85nw3c +2025-06-18T14:30:24.781Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 163ms - Rows affected: 20 - RequestID: 44vv5ib0psg +2025-06-18T14:30:24.881Z [DEBUG] order-service - Auth event: password_change - User: user_1029 - IP: 192.168.141.100 - RequestID: 2r7e8axiwsr +2025-06-18T14:30:24.981Z [DEBUG] inventory-service - Operation: order_created - Processing time: 1018ms - RequestID: ygoacvy7b6c +2025-06-18T14:30:25.081Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1030ms - IP: 192.168.189.103 - User: user_1038 - RequestID: 618uaulaqy5 +2025-06-18T14:30:25.181Z [INFO] user-service - Auth event: logout - User: user_1057 - IP: 192.168.170.215 - RequestID: eao278knala +2025-06-18T14:30:25.281Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 382ms - Rows affected: 10 - RequestID: nxlq4pfc1mp +2025-06-18T14:30:25.381Z [INFO] payment-service - Operation: order_created - Processing time: 932ms - RequestID: ed3svkocb6t +2025-06-18T14:30:25.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 489ms - RequestID: raj53hacfyb +2025-06-18T14:30:25.581Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 615ms - IP: 192.168.64.33 - User: user_1061 - RequestID: b7mipnyz87 +2025-06-18T14:30:25.681Z [TRACE] user-service - Operation: cache_miss - Processing time: 853ms - RequestID: 30koy7fj9t +2025-06-18T14:30:25.781Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 400 - Response time: 314ms - IP: 192.168.147.171 - User: user_1070 - RequestID: liiestfvks +2025-06-18T14:30:25.881Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1810ms - IP: 192.168.79.141 - User: user_1017 - RequestID: qcmx5337u3j +2025-06-18T14:30:25.981Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 323ms - Rows affected: 22 - RequestID: aecd93sif78 +2025-06-18T14:30:26.081Z [DEBUG] order-service - Database SELECT on products - Execution time: 65ms - Rows affected: 75 - RequestID: ou8f7500id +2025-06-18T14:30:26.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.196.226 - RequestID: 35qi1zz6hat +2025-06-18T14:30:26.281Z [DEBUG] order-service - POST /api/v1/inventory - Status: 201 - Response time: 561ms - IP: 192.168.14.77 - User: user_1007 - RequestID: m0j345myrm +2025-06-18T14:30:26.381Z [INFO] order-service - Auth event: logout - User: user_1014 - IP: 192.168.32.38 - RequestID: lvkvvr3wpf +2025-06-18T14:30:26.481Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1427ms - IP: 192.168.187.199 - User: user_1060 - RequestID: lzdjx6tf1il +2025-06-18T14:30:26.581Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1691ms - IP: 192.168.31.117 - User: user_1059 - RequestID: 3r8ty99jst +2025-06-18T14:30:26.681Z [TRACE] payment-service - Auth event: login_success - User: user_1035 - IP: 192.168.104.37 - RequestID: omfajv7a6l +2025-06-18T14:30:26.781Z [INFO] auth-service - DELETE /api/v1/orders - Status: 201 - Response time: 49ms - IP: 192.168.229.123 - User: user_1004 - RequestID: nhmdzst74s +2025-06-18T14:30:26.881Z [TRACE] order-service - Database DELETE on products - Execution time: 323ms - Rows affected: 67 - RequestID: ynw8sbyn0cm +2025-06-18T14:30:26.981Z [INFO] inventory-service - Database INSERT on orders - Execution time: 174ms - Rows affected: 12 - RequestID: ok54mlec1x +2025-06-18T14:30:27.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1014 - IP: 192.168.44.5 - RequestID: dzjych7ew25 +2025-06-18T14:30:27.181Z [DEBUG] payment-service - Database DELETE on users - Execution time: 38ms - Rows affected: 79 - RequestID: ekz6mj2x6wg +2025-06-18T14:30:27.281Z [TRACE] order-service - Operation: email_sent - Processing time: 660ms - RequestID: vjap8okrr5h +2025-06-18T14:30:27.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.240.169 - RequestID: culafrd47z +2025-06-18T14:30:27.481Z [INFO] order-service - Auth event: login_failed - User: user_1035 - IP: 192.168.138.123 - RequestID: lxkf5gucoio +2025-06-18T14:30:27.581Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 71ms - Rows affected: 54 - RequestID: t38h8b7snu +2025-06-18T14:30:27.681Z [INFO] notification-service - Operation: webhook_sent - Processing time: 165ms - RequestID: g7p94ig35g +2025-06-18T14:30:27.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.13.72 - RequestID: 9ajqbfqlk4j +2025-06-18T14:30:27.881Z [TRACE] inventory-service - Auth event: logout - User: user_1050 - IP: 192.168.79.143 - RequestID: bygyp6o83oa +2025-06-18T14:30:27.981Z [DEBUG] order-service - Database SELECT on orders - Execution time: 114ms - Rows affected: 1 - RequestID: dawtdkey6p8 +2025-06-18T14:30:28.081Z [DEBUG] auth-service - Auth event: login_success - User: user_1023 - IP: 192.168.46.63 - RequestID: yzfo149lie +2025-06-18T14:30:28.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 577ms - RequestID: zg41idfu7ul +2025-06-18T14:30:28.281Z [INFO] notification-service - Auth event: password_change - User: user_1058 - IP: 192.168.194.41 - RequestID: k1dqqixdivk +2025-06-18T14:30:28.381Z [DEBUG] order-service - POST /api/v1/orders - Status: 500 - Response time: 898ms - IP: 192.168.147.171 - User: user_1031 - RequestID: 0jx3hoz2ho8h +2025-06-18T14:30:28.481Z [INFO] payment-service - Database UPDATE on orders - Execution time: 64ms - Rows affected: 25 - RequestID: th6vh7achdp +2025-06-18T14:30:28.581Z [INFO] inventory-service - PUT /api/v1/orders - Status: 200 - Response time: 85ms - IP: 192.168.247.134 - User: user_1085 - RequestID: x5sltjijwxo +2025-06-18T14:30:28.681Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 403 - Response time: 780ms - IP: 192.168.174.114 - User: user_1076 - RequestID: qoiqrsbmams +2025-06-18T14:30:28.781Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 182ms - Rows affected: 93 - RequestID: d80fxfhfi1q +2025-06-18T14:30:28.881Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1909ms - IP: 192.168.167.32 - User: user_1084 - RequestID: 0j6j5ldx1lxp +2025-06-18T14:30:28.981Z [TRACE] user-service - Operation: cache_miss - Processing time: 411ms - RequestID: 9y8n1j06jp +2025-06-18T14:30:29.081Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 503 - Response time: 988ms - IP: 192.168.79.141 - User: user_1097 - RequestID: zt6wy6vona +2025-06-18T14:30:29.181Z [TRACE] auth-service - PUT /api/v1/orders - Status: 503 - Response time: 666ms - IP: 192.168.79.143 - User: user_1011 - RequestID: za6ywk3dags +2025-06-18T14:30:29.281Z [INFO] user-service - DELETE /api/v1/users - Status: 200 - Response time: 1278ms - IP: 192.168.242.165 - User: user_1045 - RequestID: qzgyyuuz6rh +2025-06-18T14:30:29.381Z [DEBUG] order-service - POST /api/v1/orders - Status: 200 - Response time: 1679ms - IP: 192.168.144.38 - User: user_1080 - RequestID: vyutmpftei +2025-06-18T14:30:29.481Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 99ms - IP: 192.168.36.218 - User: user_1044 - RequestID: f7i9w1kjmlk +2025-06-18T14:30:29.581Z [INFO] notification-service - Database DELETE on users - Execution time: 215ms - Rows affected: 42 - RequestID: 4i308arj3wo +2025-06-18T14:30:29.681Z [TRACE] auth-service - Auth event: login_failed - User: user_1011 - IP: 192.168.133.7 - RequestID: 1dpp8zxx3zo +2025-06-18T14:30:29.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 339ms - RequestID: 5qxm088g8od +2025-06-18T14:30:29.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 597ms - RequestID: kcyo24d3rf +2025-06-18T14:30:29.981Z [DEBUG] user-service - Auth event: login_failed - User: user_1047 - IP: 192.168.10.184 - RequestID: n2b68epdr4k +2025-06-18T14:30:30.081Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 158ms - Rows affected: 14 - RequestID: 8z1j3hop418 +2025-06-18T14:30:30.181Z [DEBUG] auth-service - Auth event: password_change - User: user_1096 - IP: 192.168.147.171 - RequestID: 6hhbs6346pp +2025-06-18T14:30:30.281Z [INFO] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 649ms - IP: 192.168.33.76 - User: user_1089 - RequestID: i6h03w1oaqa +2025-06-18T14:30:30.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 474ms - RequestID: j44opooohqk +2025-06-18T14:30:30.481Z [INFO] order-service - Database DELETE on sessions - Execution time: 205ms - Rows affected: 34 - RequestID: elr88qfmgyi +2025-06-18T14:30:30.581Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 97ms - Rows affected: 61 - RequestID: 2r4ftjuq2k +2025-06-18T14:30:30.681Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1557ms - IP: 192.168.229.123 - User: user_1092 - RequestID: jwbxtg509yk +2025-06-18T14:30:30.781Z [INFO] payment-service - Database DELETE on payments - Execution time: 219ms - Rows affected: 5 - RequestID: no8uwqmmgp +2025-06-18T14:30:30.881Z [DEBUG] user-service - Auth event: password_change - User: user_1092 - IP: 192.168.187.199 - RequestID: yo97a0d1rgb +2025-06-18T14:30:30.981Z [INFO] notification-service - Operation: webhook_sent - Processing time: 448ms - RequestID: kij56dpvgg +2025-06-18T14:30:31.081Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 403 - Response time: 1423ms - IP: 192.168.104.37 - User: user_1047 - RequestID: g16ty3euza +2025-06-18T14:30:31.181Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 87ms - Rows affected: 84 - RequestID: iiy68ps30g9 +2025-06-18T14:30:31.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.170.215 - RequestID: s4xrdkb1wlo +2025-06-18T14:30:31.381Z [DEBUG] auth-service - Operation: email_sent - Processing time: 769ms - RequestID: ioolwqrsyj +2025-06-18T14:30:31.481Z [TRACE] notification-service - Auth event: logout - User: user_1071 - IP: 192.168.144.38 - RequestID: vzgk2bpvzmr +2025-06-18T14:30:31.581Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 197ms - RequestID: c4epqquqxu +2025-06-18T14:30:31.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 876ms - RequestID: xit1mqqsl8t +2025-06-18T14:30:31.781Z [TRACE] auth-service - PUT /api/v1/users - Status: 502 - Response time: 156ms - IP: 192.168.138.123 - User: user_1043 - RequestID: pps3amyzmm +2025-06-18T14:30:31.881Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.138.123 - RequestID: bbwx3ozonuv +2025-06-18T14:30:31.981Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 736ms - IP: 192.168.68.128 - User: user_1023 - RequestID: 490t0bpfomh +2025-06-18T14:30:32.081Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 953ms - RequestID: 33rkblpq2qy +2025-06-18T14:30:32.181Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 200 - Response time: 509ms - IP: 192.168.100.240 - User: user_1027 - RequestID: k0ityypfmq +2025-06-18T14:30:32.281Z [INFO] inventory-service - Database UPDATE on users - Execution time: 173ms - Rows affected: 52 - RequestID: 08h7l1ly2ot3 +2025-06-18T14:30:32.381Z [INFO] user-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.11.60 - RequestID: svbsd17sy6c +2025-06-18T14:30:32.481Z [INFO] inventory-service - Database INSERT on payments - Execution time: 367ms - Rows affected: 29 - RequestID: fhoz6kd4ypc +2025-06-18T14:30:32.581Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 731ms - RequestID: kd4wdpaauy +2025-06-18T14:30:32.681Z [TRACE] order-service - GET /api/v1/auth/login - Status: 503 - Response time: 126ms - IP: 192.168.100.240 - User: user_1053 - RequestID: c3ugpqb4qnk +2025-06-18T14:30:32.781Z [INFO] payment-service - PUT /api/v1/orders - Status: 400 - Response time: 1484ms - IP: 192.168.194.41 - User: user_1067 - RequestID: uvjm4g641y +2025-06-18T14:30:32.881Z [TRACE] auth-service - Database INSERT on payments - Execution time: 187ms - Rows affected: 99 - RequestID: hcygf74oogm +2025-06-18T14:30:32.981Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1624ms - IP: 192.168.81.206 - User: user_1037 - RequestID: czza0wf304m +2025-06-18T14:30:33.081Z [TRACE] payment-service - Operation: payment_processed - Processing time: 760ms - RequestID: 52nub3fke8t +2025-06-18T14:30:33.181Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 126ms - RequestID: 13xwf6zavg2 +2025-06-18T14:30:33.281Z [INFO] notification-service - Auth event: logout - User: user_1080 - IP: 192.168.28.146 - RequestID: zsuhdp4kack +2025-06-18T14:30:33.381Z [INFO] payment-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.28.146 - RequestID: 6ggweudysoh +2025-06-18T14:30:33.481Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 277ms - Rows affected: 0 - RequestID: kwk50sijpqf +2025-06-18T14:30:33.581Z [INFO] user-service - Operation: order_created - Processing time: 388ms - RequestID: 9e9uoe8hj5j +2025-06-18T14:30:33.681Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 403 - Response time: 1892ms - IP: 192.168.144.38 - User: user_1066 - RequestID: 9ehty9oyeec +2025-06-18T14:30:33.781Z [TRACE] order-service - Database UPDATE on payments - Execution time: 368ms - Rows affected: 54 - RequestID: r0ibv8iliuo +2025-06-18T14:30:33.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1097 - IP: 192.168.32.38 - RequestID: bn7n74052b8 +2025-06-18T14:30:33.981Z [DEBUG] order-service - GET /api/v1/payments - Status: 401 - Response time: 533ms - IP: 192.168.147.171 - User: user_1077 - RequestID: sf1v09q55v +2025-06-18T14:30:34.081Z [INFO] auth-service - Auth event: password_change - User: user_1003 - IP: 192.168.13.72 - RequestID: tm2iosadkf +2025-06-18T14:30:34.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.158.144 - RequestID: ua8ujy8ncb +2025-06-18T14:30:34.281Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 100ms - RequestID: m17hydejk3i +2025-06-18T14:30:34.381Z [INFO] auth-service - GET /api/v1/auth/login - Status: 401 - Response time: 1549ms - IP: 192.168.141.100 - User: user_1057 - RequestID: 2w5l9b36b5c +2025-06-18T14:30:34.481Z [DEBUG] notification-service - Operation: email_sent - Processing time: 1019ms - RequestID: euj7jn018ys +2025-06-18T14:30:34.581Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 574ms - RequestID: lrs8kduj9on +2025-06-18T14:30:34.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1091 - IP: 192.168.68.158 - RequestID: 26x8nidebevh +2025-06-18T14:30:34.781Z [DEBUG] notification-service - Database DELETE on products - Execution time: 322ms - Rows affected: 48 - RequestID: dbogype27o7 +2025-06-18T14:30:34.881Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 840ms - IP: 192.168.1.152 - User: user_1002 - RequestID: 38t33josrep +2025-06-18T14:30:34.981Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 424ms - Rows affected: 45 - RequestID: 408sdb2p3zw +2025-06-18T14:30:35.081Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 200 - Response time: 361ms - IP: 192.168.85.229 - User: user_1051 - RequestID: 4p3xcvbbi2f +2025-06-18T14:30:35.181Z [INFO] notification-service - Database UPDATE on payments - Execution time: 203ms - Rows affected: 10 - RequestID: d5pyylcpl7d +2025-06-18T14:30:35.281Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 810ms - RequestID: ljrtaum2vn9 +2025-06-18T14:30:35.381Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 264ms - RequestID: ma8r49bzvqs +2025-06-18T14:30:35.481Z [TRACE] auth-service - GET /api/v1/users - Status: 503 - Response time: 430ms - IP: 192.168.159.94 - User: user_1050 - RequestID: 2zawluxed1i +2025-06-18T14:30:35.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 347ms - RequestID: 6dmjzbu6zxw +2025-06-18T14:30:35.681Z [DEBUG] user-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.113.218 - RequestID: c6uloj2q0p +2025-06-18T14:30:35.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.97.87 - RequestID: ds9swfrgvhp +2025-06-18T14:30:35.881Z [INFO] notification-service - Auth event: password_change - User: user_1018 - IP: 192.168.53.133 - RequestID: jsv6vswayjk +2025-06-18T14:30:35.981Z [DEBUG] payment-service - Auth event: logout - User: user_1068 - IP: 192.168.104.37 - RequestID: nwtkk8tetna +2025-06-18T14:30:36.081Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 763ms - RequestID: tsz53ltfrtq +2025-06-18T14:30:36.181Z [INFO] notification-service - Auth event: password_change - User: user_1039 - IP: 192.168.227.233 - RequestID: ixzac6vqeg +2025-06-18T14:30:36.281Z [TRACE] auth-service - Auth event: login_success - User: user_1090 - IP: 192.168.181.225 - RequestID: quofowo24gs +2025-06-18T14:30:36.381Z [TRACE] auth-service - Auth event: login_success - User: user_1035 - IP: 192.168.11.60 - RequestID: xc6a797nbgh +2025-06-18T14:30:36.481Z [INFO] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 141ms - IP: 192.168.33.76 - User: user_1004 - RequestID: 2vmof2e1qc4 +2025-06-18T14:30:36.581Z [INFO] order-service - Auth event: login_success - User: user_1052 - IP: 192.168.33.76 - RequestID: 6j8nsu5sjvs +2025-06-18T14:30:36.681Z [INFO] payment-service - Database SELECT on users - Execution time: 291ms - Rows affected: 70 - RequestID: vbwelevd0ze +2025-06-18T14:30:36.781Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 271ms - IP: 192.168.167.32 - User: user_1055 - RequestID: r6golofshor +2025-06-18T14:30:36.881Z [INFO] inventory-service - Operation: cache_hit - Processing time: 465ms - RequestID: y0gg1gsqs3 +2025-06-18T14:30:36.981Z [DEBUG] order-service - Database SELECT on users - Execution time: 223ms - Rows affected: 62 - RequestID: 7tpocf9lqyk +2025-06-18T14:30:37.081Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 381ms - Rows affected: 43 - RequestID: rg238md7fqj +2025-06-18T14:30:37.181Z [INFO] notification-service - Auth event: password_change - User: user_1001 - IP: 192.168.11.60 - RequestID: 387em7y43ed +2025-06-18T14:30:37.281Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 359ms - RequestID: zrkm8yhojrr +2025-06-18T14:30:37.381Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1484ms - IP: 192.168.242.165 - User: user_1064 - RequestID: lz8dnz3juwh +2025-06-18T14:30:37.481Z [TRACE] inventory-service - Auth event: password_change - User: user_1015 - IP: 192.168.28.146 - RequestID: 7kk01p5fr2i +2025-06-18T14:30:37.581Z [TRACE] user-service - Operation: email_sent - Processing time: 211ms - RequestID: 0skm3jyu2kxo +2025-06-18T14:30:37.681Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 183ms - Rows affected: 73 - RequestID: i070fu2z7 +2025-06-18T14:30:37.781Z [INFO] inventory-service - Database SELECT on orders - Execution time: 23ms - Rows affected: 69 - RequestID: o7d1j0ep2po +2025-06-18T14:30:37.881Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 401 - Response time: 132ms - IP: 192.168.33.76 - User: user_1063 - RequestID: xd746zrv3ij +2025-06-18T14:30:37.981Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1174ms - IP: 192.168.81.206 - User: user_1094 - RequestID: p912l1yp9sh +2025-06-18T14:30:38.081Z [TRACE] notification-service - Operation: cache_miss - Processing time: 862ms - RequestID: p81bupdb6b +2025-06-18T14:30:38.181Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 401 - Response time: 90ms - IP: 192.168.229.123 - User: user_1020 - RequestID: 4smwxnl64pb +2025-06-18T14:30:38.281Z [TRACE] notification-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.97.87 - RequestID: ci22psqmwhj +2025-06-18T14:30:38.381Z [INFO] user-service - POST /api/v1/inventory - Status: 404 - Response time: 1236ms - IP: 192.168.31.117 - User: user_1038 - RequestID: o4snoutlq4p +2025-06-18T14:30:38.481Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1345ms - IP: 192.168.227.233 - User: user_1039 - RequestID: 2kqdfmxto32 +2025-06-18T14:30:38.581Z [DEBUG] notification-service - Database SELECT on users - Execution time: 426ms - Rows affected: 19 - RequestID: 1j9q3um115b +2025-06-18T14:30:38.681Z [INFO] order-service - POST /api/v1/orders - Status: 201 - Response time: 495ms - IP: 192.168.141.100 - User: user_1006 - RequestID: yyr2dbjdlb +2025-06-18T14:30:38.781Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 493ms - Rows affected: 4 - RequestID: y942gib35j +2025-06-18T14:30:38.881Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 216ms - RequestID: wpc7hkyhea +2025-06-18T14:30:38.981Z [DEBUG] order-service - Database SELECT on products - Execution time: 59ms - Rows affected: 44 - RequestID: m8mpf3tw80i +2025-06-18T14:30:39.081Z [DEBUG] order-service - Operation: cache_miss - Processing time: 828ms - RequestID: 4icw4q359s +2025-06-18T14:30:39.181Z [TRACE] notification-service - GET /api/v1/orders - Status: 503 - Response time: 1510ms - IP: 192.168.167.32 - User: user_1033 - RequestID: fpap7dwjuyh +2025-06-18T14:30:39.281Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 900ms - RequestID: 4m8dffsomeq +2025-06-18T14:30:39.381Z [TRACE] auth-service - Database INSERT on users - Execution time: 375ms - Rows affected: 1 - RequestID: qosjo7lvm0h +2025-06-18T14:30:39.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 196ms - RequestID: oky3f4ri7jj +2025-06-18T14:30:39.581Z [INFO] order-service - Operation: cache_miss - Processing time: 360ms - RequestID: odd5ijw190e +2025-06-18T14:30:39.681Z [INFO] notification-service - Operation: inventory_updated - Processing time: 888ms - RequestID: ntkxykzodod +2025-06-18T14:30:39.781Z [TRACE] user-service - Operation: inventory_updated - Processing time: 988ms - RequestID: z9wp2fdb35 +2025-06-18T14:30:39.881Z [TRACE] user-service - POST /api/v1/inventory - Status: 503 - Response time: 1342ms - IP: 192.168.113.218 - User: user_1098 - RequestID: zu795gpi8hk +2025-06-18T14:30:39.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.181.225 - RequestID: i50xn3sn89p +2025-06-18T14:30:40.081Z [TRACE] user-service - DELETE /api/v1/orders - Status: 503 - Response time: 1419ms - IP: 192.168.68.128 - User: user_1074 - RequestID: vsupcaagqch +2025-06-18T14:30:40.181Z [INFO] user-service - Operation: notification_queued - Processing time: 936ms - RequestID: cuwt4ahqkbd +2025-06-18T14:30:40.281Z [TRACE] user-service - POST /api/v1/auth/login - Status: 503 - Response time: 438ms - IP: 192.168.227.77 - User: user_1031 - RequestID: zoawi55y0g +2025-06-18T14:30:40.381Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 49ms - Rows affected: 9 - RequestID: ugr5uwovuh +2025-06-18T14:30:40.481Z [INFO] order-service - POST /api/v1/auth/login - Status: 401 - Response time: 417ms - IP: 192.168.167.32 - User: user_1095 - RequestID: gca7a231fcd +2025-06-18T14:30:40.581Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 222ms - Rows affected: 34 - RequestID: uy9e4972cfk +2025-06-18T14:30:40.681Z [DEBUG] notification-service - Database INSERT on users - Execution time: 105ms - Rows affected: 93 - RequestID: j2ynjawiooc +2025-06-18T14:30:40.781Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 503 - Response time: 40ms - IP: 192.168.196.226 - User: user_1085 - RequestID: tuk3y19xuyg +2025-06-18T14:30:40.881Z [INFO] auth-service - Database INSERT on sessions - Execution time: 81ms - Rows affected: 71 - RequestID: 0u42griegwv +2025-06-18T14:30:40.981Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1686ms - IP: 192.168.79.116 - User: user_1048 - RequestID: 4atfbhq5fm6 +2025-06-18T14:30:41.081Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 448ms - Rows affected: 64 - RequestID: 24ryg5j7xwi +2025-06-18T14:30:41.181Z [DEBUG] payment-service - Auth event: password_change - User: user_1050 - IP: 192.168.247.134 - RequestID: xiv43uyyqd +2025-06-18T14:30:41.281Z [INFO] order-service - Auth event: password_change - User: user_1085 - IP: 192.168.79.141 - RequestID: 0v619swp5w6i +2025-06-18T14:30:41.381Z [DEBUG] payment-service - POST /api/v1/orders - Status: 200 - Response time: 353ms - IP: 192.168.235.117 - User: user_1089 - RequestID: g4ewwfghczs +2025-06-18T14:30:41.481Z [INFO] payment-service - Database UPDATE on payments - Execution time: 421ms - Rows affected: 37 - RequestID: ahw2lnpw79k +2025-06-18T14:30:41.581Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 201 - Response time: 254ms - IP: 192.168.79.116 - User: user_1035 - RequestID: o09c173gst +2025-06-18T14:30:41.681Z [INFO] auth-service - Operation: order_created - Processing time: 560ms - RequestID: x13nnjrxs2d +2025-06-18T14:30:41.781Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 404 - Response time: 1077ms - IP: 192.168.144.38 - User: user_1018 - RequestID: 6e3q6n551zy +2025-06-18T14:30:41.881Z [INFO] inventory-service - Operation: email_sent - Processing time: 416ms - RequestID: q7khhgavhlc +2025-06-18T14:30:41.981Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 404 - Response time: 25ms - IP: 192.168.187.199 - User: user_1095 - RequestID: qqypqbtpc2n +2025-06-18T14:30:42.081Z [TRACE] notification-service - Database UPDATE on products - Execution time: 275ms - Rows affected: 82 - RequestID: ybqpb3zbigd +2025-06-18T14:30:42.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 110ms - RequestID: decmiunbf0l +2025-06-18T14:30:42.281Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 414ms - Rows affected: 99 - RequestID: z41hh2t0tb +2025-06-18T14:30:42.381Z [TRACE] order-service - Database DELETE on users - Execution time: 228ms - Rows affected: 0 - RequestID: 8w927528tem +2025-06-18T14:30:42.481Z [TRACE] user-service - Operation: inventory_updated - Processing time: 265ms - RequestID: cx93e7jkd3m +2025-06-18T14:30:42.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.240.169 - RequestID: zzq98kqh8ud +2025-06-18T14:30:42.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1060 - IP: 192.168.141.100 - RequestID: pnimum9rjwf +2025-06-18T14:30:42.781Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1770ms - IP: 192.168.33.76 - User: user_1008 - RequestID: ytle39llo28 +2025-06-18T14:30:42.881Z [DEBUG] auth-service - PUT /api/v1/users - Status: 200 - Response time: 507ms - IP: 192.168.232.72 - User: user_1051 - RequestID: 9l6kjz2x85 +2025-06-18T14:30:42.981Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 294ms - RequestID: f78sc88dy37 +2025-06-18T14:30:43.081Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 41ms - IP: 192.168.242.165 - User: user_1008 - RequestID: ze48go82lwl +2025-06-18T14:30:43.181Z [INFO] payment-service - Auth event: login_failed - User: user_1088 - IP: 192.168.100.240 - RequestID: y3gy5fs8a39 +2025-06-18T14:30:43.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 800ms - RequestID: 1vgilrc1qgkj +2025-06-18T14:30:43.381Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 502 - Response time: 1452ms - IP: 192.168.28.146 - User: user_1073 - RequestID: l9a17i0luwo +2025-06-18T14:30:43.481Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 193ms - Rows affected: 31 - RequestID: 8038f6ww0qk +2025-06-18T14:30:43.581Z [TRACE] payment-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.68.128 - RequestID: 70fpkkv084x +2025-06-18T14:30:43.681Z [DEBUG] order-service - Database SELECT on users - Execution time: 232ms - Rows affected: 0 - RequestID: nyec480m0u +2025-06-18T14:30:43.781Z [INFO] notification-service - Operation: order_created - Processing time: 889ms - RequestID: tm9zg8e9la +2025-06-18T14:30:43.881Z [DEBUG] user-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.85.229 - RequestID: 4s27hh3xibk +2025-06-18T14:30:43.981Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 386ms - IP: 192.168.170.215 - User: user_1063 - RequestID: ubb6u241rfs +2025-06-18T14:30:44.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.79.143 - RequestID: qzyqipai5y +2025-06-18T14:30:44.181Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 499ms - Rows affected: 83 - RequestID: 2bh7vne8tak +2025-06-18T14:30:44.281Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 400 - Response time: 243ms - IP: 192.168.33.76 - User: user_1028 - RequestID: 058i49yxwc2h +2025-06-18T14:30:44.381Z [DEBUG] order-service - Database DELETE on products - Execution time: 205ms - Rows affected: 2 - RequestID: rma1ye6n22o +2025-06-18T14:30:44.481Z [INFO] user-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.158.144 - RequestID: 9rbpt194u2c +2025-06-18T14:30:44.581Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 400 - Response time: 1917ms - IP: 192.168.79.141 - User: user_1069 - RequestID: bpyx9qxgo96 +2025-06-18T14:30:44.681Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 66ms - Rows affected: 97 - RequestID: xkjvchg5rp +2025-06-18T14:30:44.781Z [INFO] order-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1467ms - IP: 192.168.167.32 - User: user_1065 - RequestID: 4i68g9x86iu +2025-06-18T14:30:44.881Z [DEBUG] order-service - Auth event: login_failed - User: user_1026 - IP: 192.168.46.63 - RequestID: 43cte620itn +2025-06-18T14:30:44.981Z [INFO] order-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.79.141 - RequestID: b0ekcpbe7w +2025-06-18T14:30:45.081Z [TRACE] user-service - Database UPDATE on products - Execution time: 15ms - Rows affected: 87 - RequestID: mhxw0evv68 +2025-06-18T14:30:45.181Z [TRACE] order-service - DELETE /api/v1/payments - Status: 401 - Response time: 1047ms - IP: 192.168.31.117 - User: user_1061 - RequestID: 74dblzgzb9s +2025-06-18T14:30:45.281Z [TRACE] auth-service - Database DELETE on payments - Execution time: 98ms - Rows affected: 67 - RequestID: 44dr9529wdf +2025-06-18T14:30:45.381Z [TRACE] notification-service - GET /api/v1/payments - Status: 200 - Response time: 1562ms - IP: 192.168.181.225 - User: user_1061 - RequestID: al02zwmxxpn +2025-06-18T14:30:45.481Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 502 - Response time: 782ms - IP: 192.168.240.169 - User: user_1015 - RequestID: qdrso3rf2v +2025-06-18T14:30:45.581Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 376ms - Rows affected: 85 - RequestID: pql9ya2uxje +2025-06-18T14:30:45.681Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 404 - Response time: 636ms - IP: 192.168.68.158 - User: user_1082 - RequestID: cygt7fsgme +2025-06-18T14:30:45.781Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 268ms - Rows affected: 66 - RequestID: 26g0mnw422l +2025-06-18T14:30:45.881Z [INFO] order-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1244ms - IP: 192.168.158.144 - User: user_1039 - RequestID: 3mhrut6s25o +2025-06-18T14:30:45.981Z [INFO] order-service - GET /api/v1/inventory - Status: 500 - Response time: 529ms - IP: 192.168.44.5 - User: user_1013 - RequestID: qb1ebiroz7j +2025-06-18T14:30:46.081Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 500 - Response time: 500ms - IP: 192.168.10.184 - User: user_1022 - RequestID: 8iditym2izl +2025-06-18T14:30:46.181Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 689ms - RequestID: 70vi5cu1rp +2025-06-18T14:30:46.281Z [TRACE] inventory-service - Auth event: login_success - User: user_1040 - IP: 192.168.158.144 - RequestID: huoqnfcq2c +2025-06-18T14:30:46.381Z [TRACE] order-service - PUT /api/v1/users - Status: 401 - Response time: 397ms - IP: 192.168.187.199 - User: user_1040 - RequestID: lswh2g3myvj +2025-06-18T14:30:46.481Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 249ms - IP: 192.168.174.114 - User: user_1019 - RequestID: tmkmgg4xytd +2025-06-18T14:30:46.581Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 10ms - Rows affected: 73 - RequestID: 32hymu36r4c +2025-06-18T14:30:46.681Z [INFO] notification-service - Database UPDATE on orders - Execution time: 467ms - Rows affected: 4 - RequestID: u5jnlh2x5vb +2025-06-18T14:30:46.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1068 - IP: 192.168.68.128 - RequestID: gey67xyc0p +2025-06-18T14:30:46.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.64.33 - RequestID: gzqgcfeq8l +2025-06-18T14:30:46.981Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 172ms - Rows affected: 0 - RequestID: 4y7l86n1c0a +2025-06-18T14:30:47.081Z [DEBUG] auth-service - Auth event: login_success - User: user_1025 - IP: 192.168.133.7 - RequestID: dv22x113gh6 +2025-06-18T14:30:47.181Z [TRACE] inventory-service - Operation: order_created - Processing time: 295ms - RequestID: j09jiz4jbi +2025-06-18T14:30:47.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1086 - IP: 192.168.187.199 - RequestID: dzgbsfygo +2025-06-18T14:30:47.381Z [INFO] auth-service - GET /api/v1/orders - Status: 404 - Response time: 1570ms - IP: 192.168.247.134 - User: user_1068 - RequestID: 1t01zlnhycxh +2025-06-18T14:30:47.481Z [TRACE] payment-service - GET /api/v1/inventory - Status: 400 - Response time: 1406ms - IP: 192.168.211.72 - User: user_1096 - RequestID: dvpp8axds5i +2025-06-18T14:30:47.581Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 266ms - Rows affected: 1 - RequestID: 0vl8d8qjhy2h +2025-06-18T14:30:47.681Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 608ms - RequestID: erm1cyz06r +2025-06-18T14:30:47.781Z [INFO] payment-service - GET /api/v1/users - Status: 400 - Response time: 1490ms - IP: 192.168.159.94 - User: user_1099 - RequestID: fx4kla81iwh +2025-06-18T14:30:47.881Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 1838ms - IP: 192.168.100.240 - User: user_1013 - RequestID: mxcdc12wo1j +2025-06-18T14:30:47.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 996ms - RequestID: 7igcqrxxc3f +2025-06-18T14:30:48.081Z [DEBUG] auth-service - Operation: order_created - Processing time: 167ms - RequestID: w9roxk4e1tk +2025-06-18T14:30:48.181Z [INFO] inventory-service - Operation: cache_miss - Processing time: 284ms - RequestID: 5cbkgwa6nam +2025-06-18T14:30:48.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.227.233 - RequestID: 0ge92q3ng9dr +2025-06-18T14:30:48.381Z [DEBUG] order-service - Auth event: logout - User: user_1074 - IP: 192.168.189.103 - RequestID: qoh7b2dtfk +2025-06-18T14:30:48.481Z [INFO] user-service - Operation: notification_queued - Processing time: 286ms - RequestID: xvfd2iraxqk +2025-06-18T14:30:48.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.14.77 - RequestID: dn2ohoxhpys +2025-06-18T14:30:48.681Z [INFO] notification-service - Database DELETE on payments - Execution time: 10ms - Rows affected: 99 - RequestID: mfugqf8vet9 +2025-06-18T14:30:48.781Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1455ms - IP: 192.168.159.94 - User: user_1047 - RequestID: vkzgwzdhiug +2025-06-18T14:30:48.881Z [DEBUG] auth-service - Database SELECT on users - Execution time: 415ms - Rows affected: 17 - RequestID: v15t97l3ibs +2025-06-18T14:30:48.981Z [INFO] user-service - Operation: inventory_updated - Processing time: 367ms - RequestID: gewyg8g7ix6 +2025-06-18T14:30:49.081Z [TRACE] user-service - Operation: notification_queued - Processing time: 686ms - RequestID: 73wa603fxtm +2025-06-18T14:30:49.181Z [INFO] order-service - DELETE /api/v1/users - Status: 503 - Response time: 895ms - IP: 192.168.31.117 - User: user_1085 - RequestID: filwb7mm8wp +2025-06-18T14:30:49.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.79.143 - RequestID: vndqspx9be9 +2025-06-18T14:30:49.381Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 53ms - Rows affected: 47 - RequestID: 8kxsuli7qve +2025-06-18T14:30:49.481Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 492ms - Rows affected: 57 - RequestID: cfoxm0qzdl4 +2025-06-18T14:30:49.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.1.152 - RequestID: fuuvh23w8dd +2025-06-18T14:30:49.681Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 693ms - RequestID: 39qwkza6li7 +2025-06-18T14:30:49.781Z [INFO] order-service - POST /api/v1/payments - Status: 400 - Response time: 1353ms - IP: 192.168.189.103 - User: user_1083 - RequestID: v2j3vy7a7nb +2025-06-18T14:30:49.881Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1576ms - IP: 192.168.235.117 - User: user_1022 - RequestID: 5owu1ik9mis +2025-06-18T14:30:49.981Z [INFO] payment-service - Operation: payment_processed - Processing time: 717ms - RequestID: p9n7muttktn +2025-06-18T14:30:50.081Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 200 - Response time: 702ms - IP: 192.168.187.199 - User: user_1046 - RequestID: wpl5wox9m6 +2025-06-18T14:30:50.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.85.229 - RequestID: iuq543uxf5r +2025-06-18T14:30:50.281Z [TRACE] auth-service - Operation: email_sent - Processing time: 542ms - RequestID: uxbj9qdm098 +2025-06-18T14:30:50.381Z [TRACE] order-service - Operation: cache_hit - Processing time: 609ms - RequestID: hoa3y1ncci7 +2025-06-18T14:30:50.481Z [INFO] user-service - POST /api/v1/auth/login - Status: 502 - Response time: 674ms - IP: 192.168.113.218 - User: user_1008 - RequestID: y8tbti244k8 +2025-06-18T14:30:50.581Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1060ms - IP: 192.168.10.184 - User: user_1081 - RequestID: 7dmcf6a6ng4 +2025-06-18T14:30:50.681Z [DEBUG] order-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.10.184 - RequestID: wskqhrnnvv8 +2025-06-18T14:30:50.781Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 901ms - RequestID: hjhq9psx3wv +2025-06-18T14:30:50.881Z [INFO] auth-service - GET /api/v1/users - Status: 403 - Response time: 1967ms - IP: 192.168.14.77 - User: user_1026 - RequestID: yra4e1pl83l +2025-06-18T14:30:50.981Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 126ms - Rows affected: 73 - RequestID: wlee682856n +2025-06-18T14:30:51.081Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1734ms - IP: 192.168.141.100 - User: user_1058 - RequestID: fc1jy34b1g4 +2025-06-18T14:30:51.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.232.72 - RequestID: g7tvdflabee +2025-06-18T14:30:51.281Z [INFO] user-service - Operation: payment_processed - Processing time: 336ms - RequestID: 32kkvnu2p6a +2025-06-18T14:30:51.381Z [TRACE] payment-service - Operation: payment_processed - Processing time: 907ms - RequestID: jtmpm7yiy8 +2025-06-18T14:30:51.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.133.7 - RequestID: guh5j36kptj +2025-06-18T14:30:51.581Z [TRACE] order-service - Operation: webhook_sent - Processing time: 707ms - RequestID: yl3wik39sf +2025-06-18T14:30:51.681Z [INFO] payment-service - GET /api/v1/users - Status: 400 - Response time: 1350ms - IP: 192.168.159.94 - User: user_1086 - RequestID: swqozg0ryff +2025-06-18T14:30:51.781Z [INFO] order-service - GET /api/v1/payments - Status: 503 - Response time: 105ms - IP: 192.168.196.226 - User: user_1026 - RequestID: 8b41f4i0ese +2025-06-18T14:30:51.881Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 283ms - Rows affected: 16 - RequestID: ggcwnink6hs +2025-06-18T14:30:51.981Z [INFO] auth-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.79.116 - RequestID: l9a9d91iuq +2025-06-18T14:30:52.081Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 387ms - IP: 192.168.147.171 - User: user_1077 - RequestID: oy8km3rmac +2025-06-18T14:30:52.181Z [TRACE] inventory-service - GET /api/v1/orders - Status: 201 - Response time: 1624ms - IP: 192.168.113.218 - User: user_1093 - RequestID: yxx5abyf8p9 +2025-06-18T14:30:52.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1096 - IP: 192.168.46.63 - RequestID: 03xai4296ovb +2025-06-18T14:30:52.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1050 - IP: 192.168.33.76 - RequestID: zqvvt8h7sp +2025-06-18T14:30:52.481Z [TRACE] inventory-service - Auth event: login_success - User: user_1044 - IP: 192.168.85.229 - RequestID: g2gi7fckold +2025-06-18T14:30:52.581Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 858ms - RequestID: nmlk5eivho9 +2025-06-18T14:30:52.681Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 168ms - RequestID: tw93pjy1hve +2025-06-18T14:30:52.781Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 686ms - RequestID: pn3tqnmt77 +2025-06-18T14:30:52.881Z [DEBUG] notification-service - Auth event: logout - User: user_1086 - IP: 192.168.159.94 - RequestID: 4b2ojp62gqm +2025-06-18T14:30:52.981Z [TRACE] order-service - Operation: notification_queued - Processing time: 846ms - RequestID: adafbrk3mre +2025-06-18T14:30:53.081Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 251ms - Rows affected: 54 - RequestID: tznhccn817 +2025-06-18T14:30:53.181Z [TRACE] inventory-service - Database SELECT on products - Execution time: 81ms - Rows affected: 20 - RequestID: cqqfdym0jq7 +2025-06-18T14:30:53.281Z [TRACE] notification-service - GET /api/v1/inventory - Status: 404 - Response time: 1805ms - IP: 192.168.85.229 - User: user_1026 - RequestID: ydc77gf279 +2025-06-18T14:30:53.381Z [TRACE] order-service - Database INSERT on sessions - Execution time: 97ms - Rows affected: 14 - RequestID: riznjbaxxi8 +2025-06-18T14:30:53.481Z [DEBUG] order-service - Operation: email_sent - Processing time: 217ms - RequestID: iokxfi711r +2025-06-18T14:30:53.581Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 599ms - RequestID: qnwzi2b6tu +2025-06-18T14:30:53.681Z [TRACE] order-service - Operation: order_created - Processing time: 956ms - RequestID: xcjefdz57w +2025-06-18T14:30:53.781Z [TRACE] payment-service - Operation: email_sent - Processing time: 82ms - RequestID: df7r8nt07tk +2025-06-18T14:30:53.881Z [DEBUG] notification-service - Auth event: logout - User: user_1016 - IP: 192.168.113.218 - RequestID: q2icm34h6a +2025-06-18T14:30:53.981Z [TRACE] user-service - Database INSERT on users - Execution time: 301ms - Rows affected: 1 - RequestID: ae80jhdqi9k +2025-06-18T14:30:54.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 679ms - RequestID: tpy3lgv3yj +2025-06-18T14:30:54.181Z [INFO] user-service - Operation: payment_processed - Processing time: 876ms - RequestID: csliq5g6pys +2025-06-18T14:30:54.281Z [INFO] auth-service - Operation: order_created - Processing time: 617ms - RequestID: b9g4basu78t +2025-06-18T14:30:54.381Z [DEBUG] order-service - Auth event: password_change - User: user_1098 - IP: 192.168.141.100 - RequestID: k8g5jax42ri +2025-06-18T14:30:54.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 820ms - RequestID: okmdyztkc1 +2025-06-18T14:30:54.581Z [INFO] auth-service - Operation: email_sent - Processing time: 172ms - RequestID: 8sk5ss27ehb +2025-06-18T14:30:54.681Z [TRACE] order-service - Database UPDATE on users - Execution time: 181ms - Rows affected: 87 - RequestID: quxnxjqqeg +2025-06-18T14:30:54.781Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 399ms - Rows affected: 25 - RequestID: dojyaa86thm +2025-06-18T14:30:54.881Z [INFO] order-service - Database SELECT on sessions - Execution time: 113ms - Rows affected: 50 - RequestID: a644nu2evwk +2025-06-18T14:30:54.981Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 372ms - Rows affected: 17 - RequestID: g7zmv5h5uy +2025-06-18T14:30:55.081Z [DEBUG] auth-service - Operation: email_sent - Processing time: 1047ms - RequestID: hhsa6fhwa2i +2025-06-18T14:30:55.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 249ms - RequestID: xki5uhe5naf +2025-06-18T14:30:55.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.113.218 - RequestID: 5f9q68c7mld +2025-06-18T14:30:55.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 756ms - RequestID: e21sz3t3u1s +2025-06-18T14:30:55.481Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 461ms - Rows affected: 89 - RequestID: xxn1yh8w1w +2025-06-18T14:30:55.581Z [TRACE] payment-service - GET /api/v1/users - Status: 201 - Response time: 1363ms - IP: 192.168.235.117 - User: user_1092 - RequestID: wyu52tx1tkm +2025-06-18T14:30:55.681Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 560ms - IP: 192.168.79.141 - User: user_1042 - RequestID: s9pf6uwdhmm +2025-06-18T14:30:55.781Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 74ms - Rows affected: 90 - RequestID: l2fwrj1sita +2025-06-18T14:30:55.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.227.233 - RequestID: kjbh880yfa +2025-06-18T14:30:55.981Z [INFO] user-service - Database SELECT on users - Execution time: 155ms - Rows affected: 7 - RequestID: dhhlazlkag +2025-06-18T14:30:56.081Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 994ms - RequestID: 0zadxw761sd +2025-06-18T14:30:56.181Z [TRACE] notification-service - Database DELETE on users - Execution time: 371ms - Rows affected: 14 - RequestID: 1m26w2bxn5d +2025-06-18T14:30:56.281Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 200 - Response time: 630ms - IP: 192.168.31.117 - User: user_1094 - RequestID: tgpq6wdw1gm +2025-06-18T14:30:56.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.138.123 - RequestID: kqyh1tuv6go +2025-06-18T14:30:56.481Z [INFO] notification-service - Database INSERT on products - Execution time: 356ms - Rows affected: 1 - RequestID: i38tspk4mc9 +2025-06-18T14:30:56.581Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1329ms - IP: 192.168.33.76 - User: user_1005 - RequestID: htdq4xx0jc5 +2025-06-18T14:30:56.681Z [DEBUG] order-service - Operation: notification_queued - Processing time: 376ms - RequestID: yflx6xf1pb +2025-06-18T14:30:56.781Z [INFO] auth-service - Database INSERT on payments - Execution time: 120ms - Rows affected: 69 - RequestID: ms0wugwjo4m +2025-06-18T14:30:56.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1040 - IP: 192.168.159.94 - RequestID: z9438qo8nnk +2025-06-18T14:30:56.981Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 401 - Response time: 597ms - IP: 192.168.189.103 - User: user_1084 - RequestID: mlsajd76h4 +2025-06-18T14:30:57.081Z [DEBUG] order-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.240.169 - RequestID: k0p1solhst9 +2025-06-18T14:30:57.181Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 383ms - Rows affected: 43 - RequestID: wymvzel0c1 +2025-06-18T14:30:57.281Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 377ms - Rows affected: 47 - RequestID: to57vuvr4b +2025-06-18T14:30:57.381Z [INFO] user-service - Database UPDATE on users - Execution time: 39ms - Rows affected: 36 - RequestID: arrspc42wl4 +2025-06-18T14:30:57.481Z [INFO] inventory-service - POST /api/v1/orders - Status: 503 - Response time: 1250ms - IP: 192.168.133.7 - User: user_1031 - RequestID: 6oby64jh7pd +2025-06-18T14:30:57.581Z [INFO] user-service - Operation: payment_processed - Processing time: 207ms - RequestID: l1kgwkzmtm +2025-06-18T14:30:57.681Z [TRACE] payment-service - POST /api/v1/users - Status: 500 - Response time: 1212ms - IP: 192.168.79.143 - User: user_1014 - RequestID: g0ay632hfis +2025-06-18T14:30:57.781Z [TRACE] order-service - Operation: notification_queued - Processing time: 661ms - RequestID: vm63nv7rlje +2025-06-18T14:30:57.881Z [INFO] payment-service - Operation: payment_processed - Processing time: 890ms - RequestID: byi646hk9ls +2025-06-18T14:30:57.981Z [TRACE] order-service - Auth event: login_failed - User: user_1050 - IP: 192.168.28.146 - RequestID: dnlzlotasn8 +2025-06-18T14:30:58.081Z [TRACE] notification-service - Operation: payment_processed - Processing time: 393ms - RequestID: bgsrhupyc5o +2025-06-18T14:30:58.181Z [INFO] order-service - Operation: inventory_updated - Processing time: 978ms - RequestID: q657rlq68g +2025-06-18T14:30:58.281Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 938ms - RequestID: 76dfo0l16w5 +2025-06-18T14:30:58.381Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 404 - Response time: 886ms - IP: 192.168.30.79 - User: user_1086 - RequestID: ejzdfb68fl +2025-06-18T14:30:58.481Z [INFO] payment-service - Auth event: login_success - User: user_1009 - IP: 192.168.44.5 - RequestID: n5de45xotk +2025-06-18T14:30:58.581Z [TRACE] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 954ms - IP: 192.168.104.37 - User: user_1077 - RequestID: pg167glye6 +2025-06-18T14:30:58.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.174.114 - RequestID: hpugsd3hh5g +2025-06-18T14:30:58.781Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 160ms - Rows affected: 28 - RequestID: tax2q302eeb +2025-06-18T14:30:58.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 528ms - RequestID: k9112jlfrjk +2025-06-18T14:30:58.981Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 188ms - Rows affected: 54 - RequestID: t6q3fblzvz +2025-06-18T14:30:59.081Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 915ms - RequestID: cytcl3jv5y +2025-06-18T14:30:59.181Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 83ms - Rows affected: 4 - RequestID: i95r2ofncil +2025-06-18T14:30:59.281Z [INFO] order-service - Operation: webhook_sent - Processing time: 392ms - RequestID: wimmm3m1ty +2025-06-18T14:30:59.381Z [DEBUG] order-service - Operation: email_sent - Processing time: 701ms - RequestID: venfj857ntp +2025-06-18T14:30:59.481Z [INFO] order-service - Operation: email_sent - Processing time: 540ms - RequestID: cvfweil41gv +2025-06-18T14:30:59.581Z [INFO] auth-service - Database DELETE on sessions - Execution time: 209ms - Rows affected: 95 - RequestID: djrdngoqk1f +2025-06-18T14:30:59.681Z [INFO] notification-service - Auth event: login_success - User: user_1035 - IP: 192.168.141.100 - RequestID: 8xj8j99wqbt +2025-06-18T14:30:59.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.79.116 - RequestID: yaysoijv11j +2025-06-18T14:30:59.881Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 807ms - IP: 192.168.181.225 - User: user_1035 - RequestID: r3kfc9hjhbg +2025-06-18T14:30:59.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.104.37 - RequestID: 63n8mx27c4b +2025-06-18T14:31:00.081Z [TRACE] notification-service - Auth event: login_failed - User: user_1014 - IP: 192.168.138.123 - RequestID: sfp55845sc +2025-06-18T14:31:00.181Z [TRACE] order-service - PUT /api/v1/inventory - Status: 200 - Response time: 575ms - IP: 192.168.194.41 - User: user_1097 - RequestID: 1yh4weyt1y8 +2025-06-18T14:31:00.281Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 951ms - RequestID: u4vcc9ue7 +2025-06-18T14:31:00.381Z [INFO] notification-service - Operation: inventory_updated - Processing time: 592ms - RequestID: 2i4aaux0om3 +2025-06-18T14:31:00.481Z [TRACE] order-service - Auth event: password_change - User: user_1098 - IP: 192.168.187.199 - RequestID: p8nirqdbvti +2025-06-18T14:31:00.581Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 119ms - Rows affected: 27 - RequestID: m1ye89vuk0n +2025-06-18T14:31:00.681Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 436ms - Rows affected: 23 - RequestID: 34w5gmxd9wy +2025-06-18T14:31:00.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 404ms - RequestID: n5rht5es0er +2025-06-18T14:31:00.881Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 222ms - Rows affected: 62 - RequestID: s4zwrjff6d +2025-06-18T14:31:00.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 138ms - RequestID: 0068yjw9cordf +2025-06-18T14:31:01.081Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1033ms - IP: 192.168.13.72 - User: user_1029 - RequestID: wuqq1k4iyu8 +2025-06-18T14:31:01.181Z [INFO] order-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.11.60 - RequestID: 0685fn3gvmc +2025-06-18T14:31:01.281Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 404 - Response time: 647ms - IP: 192.168.85.229 - User: user_1093 - RequestID: mifp7f1ctn +2025-06-18T14:31:01.381Z [INFO] payment-service - Auth event: password_change - User: user_1014 - IP: 192.168.227.233 - RequestID: u21e5lscc2j +2025-06-18T14:31:01.481Z [INFO] user-service - Auth event: login_success - User: user_1009 - IP: 192.168.133.7 - RequestID: c3aspcj08mh +2025-06-18T14:31:01.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.211.72 - RequestID: iysc5g47pms +2025-06-18T14:31:01.681Z [DEBUG] notification-service - Database DELETE on products - Execution time: 238ms - Rows affected: 75 - RequestID: bop7iq91rgb +2025-06-18T14:31:01.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 315ms - RequestID: 1ya6ww9prda +2025-06-18T14:31:01.881Z [DEBUG] user-service - Auth event: password_change - User: user_1019 - IP: 192.168.30.79 - RequestID: mdn5q2kvywe +2025-06-18T14:31:01.981Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 176ms - IP: 192.168.138.123 - User: user_1008 - RequestID: 665h7wbzzwy +2025-06-18T14:31:02.081Z [INFO] user-service - Operation: payment_processed - Processing time: 816ms - RequestID: qmjevam2ths +2025-06-18T14:31:02.181Z [INFO] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 668ms - IP: 192.168.33.76 - User: user_1033 - RequestID: 0260womgpf0z +2025-06-18T14:31:02.281Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 400 - Response time: 1358ms - IP: 192.168.235.117 - User: user_1039 - RequestID: burx82xl6za +2025-06-18T14:31:02.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1007 - IP: 192.168.159.94 - RequestID: k50eq3b8ftf +2025-06-18T14:31:02.481Z [INFO] order-service - Database UPDATE on payments - Execution time: 416ms - Rows affected: 49 - RequestID: r28zdh0y8ff +2025-06-18T14:31:02.581Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 884ms - RequestID: ctcrtao3y3q +2025-06-18T14:31:02.681Z [TRACE] auth-service - Database INSERT on users - Execution time: 427ms - Rows affected: 73 - RequestID: 2xkf22lkyis +2025-06-18T14:31:02.781Z [DEBUG] user-service - PUT /api/v1/users - Status: 401 - Response time: 1399ms - IP: 192.168.85.229 - User: user_1028 - RequestID: 1hrexqf8p62 +2025-06-18T14:31:02.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1081 - IP: 192.168.28.146 - RequestID: yun2ff7996f +2025-06-18T14:31:02.981Z [INFO] notification-service - Auth event: logout - User: user_1022 - IP: 192.168.240.169 - RequestID: lmn9uzfx4f +2025-06-18T14:31:03.081Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 944ms - RequestID: y5ip6zu5by +2025-06-18T14:31:03.181Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 471ms - Rows affected: 10 - RequestID: 7ws797u3rbo +2025-06-18T14:31:03.281Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1507ms - IP: 192.168.242.165 - User: user_1045 - RequestID: gtgt3y973mj +2025-06-18T14:31:03.381Z [TRACE] user-service - GET /api/v1/users - Status: 201 - Response time: 1787ms - IP: 192.168.227.233 - User: user_1067 - RequestID: ixe0eyzkf1 +2025-06-18T14:31:03.481Z [INFO] notification-service - Database INSERT on users - Execution time: 442ms - Rows affected: 8 - RequestID: eypxlqkudgo +2025-06-18T14:31:03.581Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1165ms - IP: 192.168.147.171 - User: user_1035 - RequestID: f3h89nijbss +2025-06-18T14:31:03.681Z [TRACE] order-service - Auth event: logout - User: user_1000 - IP: 192.168.13.72 - RequestID: i7uwfc4pber +2025-06-18T14:31:03.781Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 200 - Response time: 1445ms - IP: 192.168.68.128 - User: user_1000 - RequestID: gr8s9vo7co +2025-06-18T14:31:03.881Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 301ms - RequestID: uxzh0sqc1t +2025-06-18T14:31:03.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1031 - IP: 192.168.147.171 - RequestID: 1au43fqzijr +2025-06-18T14:31:04.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.79.116 - RequestID: pi7vc8uoqpc +2025-06-18T14:31:04.181Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 516ms - RequestID: ruqjh6xg9rr +2025-06-18T14:31:04.281Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 215ms - IP: 192.168.158.144 - User: user_1000 - RequestID: sor8jyqmv9 +2025-06-18T14:31:04.381Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 294ms - Rows affected: 77 - RequestID: us28aslsp3 +2025-06-18T14:31:04.481Z [DEBUG] payment-service - Operation: email_sent - Processing time: 68ms - RequestID: e0w4xmusbkt +2025-06-18T14:31:04.581Z [TRACE] order-service - Database UPDATE on orders - Execution time: 400ms - Rows affected: 45 - RequestID: 3elrw7gqmgj +2025-06-18T14:31:04.681Z [INFO] notification-service - Database UPDATE on users - Execution time: 226ms - Rows affected: 29 - RequestID: 7n8fovlztb2 +2025-06-18T14:31:04.781Z [TRACE] auth-service - Operation: cache_hit - Processing time: 878ms - RequestID: qrs4eleeh +2025-06-18T14:31:04.881Z [TRACE] user-service - Operation: order_created - Processing time: 589ms - RequestID: xrg8jxt7hs9 +2025-06-18T14:31:04.981Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 403 - Response time: 52ms - IP: 192.168.10.184 - User: user_1064 - RequestID: ur3035ffq6 +2025-06-18T14:31:05.081Z [INFO] notification-service - POST /api/v1/auth/login - Status: 502 - Response time: 1861ms - IP: 192.168.104.37 - User: user_1023 - RequestID: 7d4k9gidi5v +2025-06-18T14:31:05.181Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1869ms - IP: 192.168.167.32 - User: user_1072 - RequestID: oj9iccurrj +2025-06-18T14:31:05.281Z [DEBUG] order-service - GET /api/v1/orders - Status: 200 - Response time: 926ms - IP: 192.168.138.123 - User: user_1090 - RequestID: 4poh93ccy9 +2025-06-18T14:31:05.381Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 154ms - RequestID: wqjscycksdb +2025-06-18T14:31:05.481Z [DEBUG] payment-service - Auth event: login_failed - User: user_1043 - IP: 192.168.100.240 - RequestID: fh5cakbpfp +2025-06-18T14:31:05.581Z [DEBUG] user-service - Auth event: login_failed - User: user_1092 - IP: 192.168.31.117 - RequestID: lxilyb1ls4k +2025-06-18T14:31:05.681Z [TRACE] auth-service - GET /api/v1/orders - Status: 404 - Response time: 1171ms - IP: 192.168.13.72 - User: user_1072 - RequestID: wtna9r3pgaf +2025-06-18T14:31:05.781Z [INFO] inventory-service - Operation: order_created - Processing time: 1044ms - RequestID: omf8jqcc5u +2025-06-18T14:31:05.881Z [INFO] inventory-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.189.103 - RequestID: v99vppb6hup +2025-06-18T14:31:05.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.187.199 - RequestID: zcdskwi9ywb +2025-06-18T14:31:06.081Z [TRACE] order-service - Auth event: password_change - User: user_1084 - IP: 192.168.240.169 - RequestID: f2w601sriai +2025-06-18T14:31:06.181Z [INFO] notification-service - Auth event: login_success - User: user_1039 - IP: 192.168.68.158 - RequestID: dg2hj4wf4l7 +2025-06-18T14:31:06.281Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 179ms - Rows affected: 77 - RequestID: 29r6jlo3kik +2025-06-18T14:31:06.381Z [INFO] order-service - POST /api/v1/users - Status: 200 - Response time: 649ms - IP: 192.168.81.206 - User: user_1009 - RequestID: hcu9iu2j8rg +2025-06-18T14:31:06.481Z [TRACE] user-service - Database INSERT on sessions - Execution time: 283ms - Rows affected: 33 - RequestID: 8vfe8oa2wln +2025-06-18T14:31:06.581Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 201 - Response time: 817ms - IP: 192.168.32.38 - User: user_1031 - RequestID: guvjqvwy7r +2025-06-18T14:31:06.681Z [INFO] order-service - GET /api/v1/users - Status: 400 - Response time: 1138ms - IP: 192.168.68.158 - User: user_1036 - RequestID: 9rl52r6mcd +2025-06-18T14:31:06.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.240.169 - RequestID: 8s5x7065mb7 +2025-06-18T14:31:06.881Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 57ms - Rows affected: 3 - RequestID: d1kzler3wdv +2025-06-18T14:31:06.981Z [INFO] notification-service - Operation: cache_miss - Processing time: 224ms - RequestID: qhnedu3pyh +2025-06-18T14:31:07.081Z [INFO] order-service - Operation: notification_queued - Processing time: 332ms - RequestID: 2rsedhzrzv5 +2025-06-18T14:31:07.181Z [INFO] auth-service - Operation: payment_processed - Processing time: 1012ms - RequestID: wdbwkbcswrb +2025-06-18T14:31:07.281Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 266ms - Rows affected: 36 - RequestID: an8765d3nl +2025-06-18T14:31:07.381Z [INFO] notification-service - Auth event: login_success - User: user_1062 - IP: 192.168.33.76 - RequestID: fi18nb2lcu4 +2025-06-18T14:31:07.481Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1474ms - IP: 192.168.44.5 - User: user_1089 - RequestID: ilr4g12hnjh +2025-06-18T14:31:07.581Z [DEBUG] user-service - Auth event: password_change - User: user_1004 - IP: 192.168.68.158 - RequestID: ub4cmc1bmu8 +2025-06-18T14:31:07.681Z [TRACE] order-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.189.103 - RequestID: wlcvajgx6ma +2025-06-18T14:31:07.781Z [DEBUG] user-service - Operation: order_created - Processing time: 457ms - RequestID: hpse7kq3yyg +2025-06-18T14:31:07.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.147.171 - RequestID: 34b1381pntz +2025-06-18T14:31:07.981Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.189.103 - RequestID: 6q6iuphlder +2025-06-18T14:31:08.081Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 403 - Response time: 298ms - IP: 192.168.97.87 - User: user_1012 - RequestID: m8l6mf83r8 +2025-06-18T14:31:08.181Z [TRACE] order-service - DELETE /api/v1/orders - Status: 502 - Response time: 1023ms - IP: 192.168.79.141 - User: user_1040 - RequestID: zn19mdcfa6i +2025-06-18T14:31:08.281Z [INFO] inventory-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.141.100 - RequestID: x7ngiyhjwce +2025-06-18T14:31:08.381Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 35ms - Rows affected: 40 - RequestID: tfrmaboq59b +2025-06-18T14:31:08.481Z [TRACE] payment-service - Database SELECT on products - Execution time: 286ms - Rows affected: 44 - RequestID: xhgzbqxmwcr +2025-06-18T14:31:08.581Z [INFO] user-service - Auth event: login_failed - User: user_1084 - IP: 192.168.79.116 - RequestID: p85ygvl07pp +2025-06-18T14:31:08.681Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 400 - Response time: 520ms - IP: 192.168.247.134 - User: user_1066 - RequestID: 7pgx7r291m7 +2025-06-18T14:31:08.781Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1120ms - IP: 192.168.11.60 - User: user_1053 - RequestID: vv89biigc7 +2025-06-18T14:31:08.881Z [DEBUG] order-service - Auth event: login_failed - User: user_1051 - IP: 192.168.187.199 - RequestID: i2eh7r965fo +2025-06-18T14:31:08.981Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 247ms - Rows affected: 87 - RequestID: uta85exyfz +2025-06-18T14:31:09.081Z [TRACE] auth-service - PATCH /api/v1/users - Status: 201 - Response time: 1604ms - IP: 192.168.81.206 - User: user_1003 - RequestID: kgm5knq27ks +2025-06-18T14:31:09.181Z [TRACE] notification-service - Auth event: logout - User: user_1041 - IP: 192.168.196.226 - RequestID: yw2j7lxrqw +2025-06-18T14:31:09.281Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 419ms - Rows affected: 11 - RequestID: z1edgkgdips +2025-06-18T14:31:09.381Z [TRACE] order-service - Auth event: login_failed - User: user_1032 - IP: 192.168.32.38 - RequestID: qjcn8761igo +2025-06-18T14:31:09.481Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 400 - Response time: 349ms - IP: 192.168.13.72 - User: user_1030 - RequestID: plmpg7xzbel +2025-06-18T14:31:09.581Z [TRACE] payment-service - Database INSERT on orders - Execution time: 125ms - Rows affected: 76 - RequestID: uz6ddtc937g +2025-06-18T14:31:09.681Z [DEBUG] order-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.211.72 - RequestID: bbdu5e3lg4 +2025-06-18T14:31:09.781Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 165ms - Rows affected: 42 - RequestID: 41il1hikiqi +2025-06-18T14:31:09.881Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 410ms - Rows affected: 86 - RequestID: r6oa0dom51c +2025-06-18T14:31:09.981Z [INFO] order-service - Operation: notification_queued - Processing time: 177ms - RequestID: i3raik5e6ca +2025-06-18T14:31:10.081Z [TRACE] user-service - Database INSERT on orders - Execution time: 310ms - Rows affected: 98 - RequestID: rdabfkc8joi +2025-06-18T14:31:10.181Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 494ms - RequestID: flelp1z9den +2025-06-18T14:31:10.281Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 414ms - RequestID: yskmkevahx +2025-06-18T14:31:10.381Z [DEBUG] order-service - Operation: email_sent - Processing time: 562ms - RequestID: g84rk03ysen +2025-06-18T14:31:10.481Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 460ms - Rows affected: 18 - RequestID: kvtq3u8xyj +2025-06-18T14:31:10.581Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 258ms - IP: 192.168.81.206 - User: user_1094 - RequestID: fyh4we0vfcb +2025-06-18T14:31:10.681Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 114ms - Rows affected: 21 - RequestID: fbxgej0ob68 +2025-06-18T14:31:10.781Z [INFO] notification-service - Auth event: login_success - User: user_1052 - IP: 192.168.133.7 - RequestID: efhlkwo98u8 +2025-06-18T14:31:10.881Z [INFO] order-service - Database INSERT on users - Execution time: 214ms - Rows affected: 74 - RequestID: nxr3uziz7bj +2025-06-18T14:31:10.981Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 81ms - Rows affected: 48 - RequestID: 01wkhw6maljr +2025-06-18T14:31:11.081Z [TRACE] order-service - Auth event: login_failed - User: user_1065 - IP: 192.168.81.206 - RequestID: td09yr0tk9 +2025-06-18T14:31:11.181Z [TRACE] user-service - Database UPDATE on payments - Execution time: 229ms - Rows affected: 35 - RequestID: kgccmaq18ja +2025-06-18T14:31:11.281Z [INFO] order-service - POST /api/v1/payments - Status: 502 - Response time: 1771ms - IP: 192.168.11.60 - User: user_1069 - RequestID: adfw787pl5 +2025-06-18T14:31:11.381Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 418ms - Rows affected: 32 - RequestID: axr9bnp5v7s +2025-06-18T14:31:11.481Z [TRACE] user-service - Database SELECT on users - Execution time: 125ms - Rows affected: 71 - RequestID: 92woetarg +2025-06-18T14:31:11.581Z [DEBUG] inventory-service - Auth event: password_change - User: user_1015 - IP: 192.168.79.141 - RequestID: p0s0cnaugz +2025-06-18T14:31:11.681Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 401 - Response time: 1596ms - IP: 192.168.46.63 - User: user_1065 - RequestID: u54658m8ma +2025-06-18T14:31:11.781Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 261ms - RequestID: ot0izsdhonk +2025-06-18T14:31:11.881Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 260ms - Rows affected: 49 - RequestID: 1z487whyzzm +2025-06-18T14:31:11.981Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 392ms - Rows affected: 14 - RequestID: ogbas6zcicd +2025-06-18T14:31:12.081Z [DEBUG] payment-service - Database DELETE on users - Execution time: 226ms - Rows affected: 81 - RequestID: umcmwjfx4fk +2025-06-18T14:31:12.181Z [INFO] auth-service - Operation: order_created - Processing time: 526ms - RequestID: wo4wbmf0wpj +2025-06-18T14:31:12.281Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 74ms - Rows affected: 37 - RequestID: i4k5vkkm39 +2025-06-18T14:31:12.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.144.38 - RequestID: q722qoid8l +2025-06-18T14:31:12.481Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 198ms - RequestID: 5fegkn3vdsr +2025-06-18T14:31:12.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.170.215 - RequestID: zn47vj1x7y +2025-06-18T14:31:12.681Z [TRACE] order-service - Auth event: login_success - User: user_1079 - IP: 192.168.11.60 - RequestID: 1ma61zm0kca +2025-06-18T14:31:12.781Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 85ms - Rows affected: 12 - RequestID: ljmr6jjl3wg +2025-06-18T14:31:12.881Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 821ms - IP: 192.168.79.143 - User: user_1072 - RequestID: 9u3dpy09jbd +2025-06-18T14:31:12.981Z [TRACE] auth-service - Auth event: login_success - User: user_1030 - IP: 192.168.113.218 - RequestID: ci86uyvjlms +2025-06-18T14:31:13.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.196.226 - RequestID: 4yj2t30fj4f +2025-06-18T14:31:13.181Z [INFO] notification-service - Operation: payment_processed - Processing time: 545ms - RequestID: p75zq9ukn5p +2025-06-18T14:31:13.281Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1305ms - IP: 192.168.68.128 - User: user_1050 - RequestID: 5tm5w9n98mi +2025-06-18T14:31:13.381Z [INFO] inventory-service - Operation: order_created - Processing time: 989ms - RequestID: b1q39q95sjq +2025-06-18T14:31:13.481Z [DEBUG] inventory-service - Operation: order_created - Processing time: 279ms - RequestID: ct8mdvbtlh +2025-06-18T14:31:13.581Z [TRACE] notification-service - PUT /api/v1/users - Status: 503 - Response time: 703ms - IP: 192.168.187.199 - User: user_1049 - RequestID: 3i0s96amla3 +2025-06-18T14:31:13.681Z [TRACE] inventory-service - GET /api/v1/orders - Status: 502 - Response time: 1677ms - IP: 192.168.159.94 - User: user_1015 - RequestID: effoq1gy5ph +2025-06-18T14:31:13.781Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 502 - Response time: 1664ms - IP: 192.168.158.144 - User: user_1022 - RequestID: dl9xm14zjd +2025-06-18T14:31:13.881Z [INFO] payment-service - Operation: inventory_updated - Processing time: 1040ms - RequestID: 7kt324mg5mb +2025-06-18T14:31:13.981Z [INFO] auth-service - Operation: cache_hit - Processing time: 805ms - RequestID: wiz1f9i9nyd +2025-06-18T14:31:14.081Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 310ms - Rows affected: 96 - RequestID: 5lt5o9x7tfo +2025-06-18T14:31:14.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.30.79 - RequestID: che4r4c9vn +2025-06-18T14:31:14.281Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 404 - Response time: 384ms - IP: 192.168.79.141 - User: user_1019 - RequestID: qj43b8i1hcn +2025-06-18T14:31:14.381Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 711ms - RequestID: g3f91hncf1p +2025-06-18T14:31:14.481Z [DEBUG] order-service - Auth event: logout - User: user_1031 - IP: 192.168.68.128 - RequestID: o1b0phsv0y8 +2025-06-18T14:31:14.581Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 222ms - Rows affected: 21 - RequestID: 8hai8o09kd7 +2025-06-18T14:31:14.681Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 483ms - Rows affected: 13 - RequestID: vs2viohwc28 +2025-06-18T14:31:14.781Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 346ms - RequestID: fbzz7557het +2025-06-18T14:31:14.881Z [INFO] order-service - Auth event: login_failed - User: user_1052 - IP: 192.168.159.94 - RequestID: 58ptznox81d +2025-06-18T14:31:14.981Z [DEBUG] payment-service - Operation: email_sent - Processing time: 430ms - RequestID: q85r5pi9qe +2025-06-18T14:31:15.081Z [INFO] auth-service - Operation: cache_miss - Processing time: 849ms - RequestID: vstjeigdp7b +2025-06-18T14:31:15.181Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1046ms - IP: 192.168.79.116 - User: user_1047 - RequestID: 13mg7h9gq5c +2025-06-18T14:31:15.281Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 352ms - Rows affected: 78 - RequestID: ucemgrwl2bm +2025-06-18T14:31:15.381Z [INFO] auth-service - Database SELECT on payments - Execution time: 452ms - Rows affected: 32 - RequestID: tlz5qxym92 +2025-06-18T14:31:15.481Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 195ms - Rows affected: 58 - RequestID: 2i4yyqi5nvj +2025-06-18T14:31:15.581Z [TRACE] auth-service - Operation: cache_miss - Processing time: 318ms - RequestID: aop11jv8vjr +2025-06-18T14:31:15.681Z [INFO] notification-service - Operation: email_sent - Processing time: 233ms - RequestID: s1bcdfymeje +2025-06-18T14:31:15.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.227.77 - RequestID: un2c6hnvzw +2025-06-18T14:31:15.881Z [INFO] user-service - Operation: cache_miss - Processing time: 181ms - RequestID: e1c52jpzt8i +2025-06-18T14:31:15.981Z [INFO] auth-service - Operation: cache_miss - Processing time: 190ms - RequestID: m2tmcme4b9 +2025-06-18T14:31:16.081Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 436ms - Rows affected: 95 - RequestID: zojib84sda8 +2025-06-18T14:31:16.181Z [TRACE] payment-service - Database UPDATE on products - Execution time: 72ms - Rows affected: 88 - RequestID: feh3ukubqv +2025-06-18T14:31:16.281Z [TRACE] user-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.133.7 - RequestID: gvzx43e2zmw +2025-06-18T14:31:16.381Z [INFO] notification-service - Database INSERT on products - Execution time: 255ms - Rows affected: 31 - RequestID: uvmvxzaqrek +2025-06-18T14:31:16.481Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 15ms - Rows affected: 98 - RequestID: tg9xt6yqup +2025-06-18T14:31:16.581Z [DEBUG] payment-service - Auth event: login_success - User: user_1069 - IP: 192.168.14.77 - RequestID: dojshoz8n9m +2025-06-18T14:31:16.681Z [TRACE] user-service - Operation: payment_processed - Processing time: 882ms - RequestID: 0ym5qm7l3c1 +2025-06-18T14:31:16.781Z [INFO] order-service - Operation: inventory_updated - Processing time: 493ms - RequestID: mizxp1rxgb +2025-06-18T14:31:16.881Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 365ms - Rows affected: 73 - RequestID: qh2hc40r8fk +2025-06-18T14:31:16.981Z [INFO] order-service - Auth event: logout - User: user_1044 - IP: 192.168.181.225 - RequestID: b11v3eiry06 +2025-06-18T14:31:17.081Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 115ms - Rows affected: 34 - RequestID: osb3lzvps5s +2025-06-18T14:31:17.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.30.79 - RequestID: oovzw762vw +2025-06-18T14:31:17.281Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 671ms - IP: 192.168.64.33 - User: user_1023 - RequestID: ql8my9ycf1k +2025-06-18T14:31:17.381Z [DEBUG] user-service - Auth event: password_change - User: user_1019 - IP: 192.168.28.146 - RequestID: gy1auofyce +2025-06-18T14:31:17.481Z [INFO] order-service - POST /api/v1/auth/logout - Status: 500 - Response time: 806ms - IP: 192.168.79.143 - User: user_1022 - RequestID: 963dwmhr21w +2025-06-18T14:31:17.581Z [TRACE] inventory-service - Auth event: logout - User: user_1062 - IP: 192.168.247.134 - RequestID: 7lh3rnczvss +2025-06-18T14:31:17.681Z [INFO] payment-service - Operation: webhook_sent - Processing time: 82ms - RequestID: dosyzidf2ih +2025-06-18T14:31:17.781Z [TRACE] notification-service - Operation: cache_hit - Processing time: 727ms - RequestID: s6e8bnh8s4 +2025-06-18T14:31:17.881Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 449ms - RequestID: luhrl5jbe9n +2025-06-18T14:31:17.981Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 391ms - Rows affected: 50 - RequestID: j8vfzqvlzbj +2025-06-18T14:31:18.081Z [INFO] user-service - Database UPDATE on products - Execution time: 493ms - Rows affected: 8 - RequestID: 5bz0or3yj79 +2025-06-18T14:31:18.181Z [DEBUG] user-service - Auth event: password_change - User: user_1095 - IP: 192.168.144.38 - RequestID: n082cvrgnzg +2025-06-18T14:31:18.281Z [DEBUG] user-service - Operation: email_sent - Processing time: 356ms - RequestID: q2gy88nx87 +2025-06-18T14:31:18.381Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 500 - Response time: 367ms - IP: 192.168.138.123 - User: user_1017 - RequestID: 5bsakvifmyy +2025-06-18T14:31:18.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.100.240 - RequestID: 1tl2kfq7v43 +2025-06-18T14:31:18.581Z [INFO] payment-service - PATCH /api/v1/payments - Status: 201 - Response time: 624ms - IP: 192.168.242.165 - User: user_1015 - RequestID: nutgp8usjf +2025-06-18T14:31:18.681Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 503 - Response time: 237ms - IP: 192.168.159.94 - User: user_1053 - RequestID: pf9opv27q1n +2025-06-18T14:31:18.781Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 402ms - Rows affected: 36 - RequestID: v45zuntw6t +2025-06-18T14:31:18.881Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1401ms - IP: 192.168.33.76 - User: user_1020 - RequestID: q0swt2zjnk +2025-06-18T14:31:18.981Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 503 - Response time: 770ms - IP: 192.168.211.72 - User: user_1066 - RequestID: 3ayjlovbi1r +2025-06-18T14:31:19.081Z [INFO] user-service - Operation: cache_miss - Processing time: 239ms - RequestID: 63199inn21e +2025-06-18T14:31:19.181Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 152ms - IP: 192.168.68.128 - User: user_1088 - RequestID: jxrcrd1znqa +2025-06-18T14:31:19.281Z [INFO] auth-service - DELETE /api/v1/payments - Status: 503 - Response time: 1082ms - IP: 192.168.30.79 - User: user_1003 - RequestID: j0w82ilrlsp +2025-06-18T14:31:19.381Z [DEBUG] notification-service - Auth event: login_success - User: user_1074 - IP: 192.168.232.72 - RequestID: rr2h3dnmeg +2025-06-18T14:31:19.481Z [INFO] payment-service - Auth event: logout - User: user_1018 - IP: 192.168.147.171 - RequestID: pobw40l7rl +2025-06-18T14:31:19.581Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 155ms - RequestID: 5o3m6u0ww5e +2025-06-18T14:31:19.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.181.225 - RequestID: ip6njf6shta +2025-06-18T14:31:19.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 684ms - RequestID: y65o38ivv59 +2025-06-18T14:31:19.881Z [INFO] user-service - Operation: order_created - Processing time: 831ms - RequestID: c18erazq83w +2025-06-18T14:31:19.981Z [TRACE] order-service - Database DELETE on products - Execution time: 374ms - Rows affected: 33 - RequestID: 3o54n2r9akv +2025-06-18T14:31:20.081Z [INFO] payment-service - GET /api/v1/orders - Status: 401 - Response time: 946ms - IP: 192.168.53.133 - User: user_1010 - RequestID: b0lgrbxy8ow +2025-06-18T14:31:20.181Z [TRACE] order-service - Auth event: login_success - User: user_1048 - IP: 192.168.235.117 - RequestID: rtcgoqg2gaa +2025-06-18T14:31:20.281Z [INFO] user-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.44.5 - RequestID: xtl9z31k7p9 +2025-06-18T14:31:20.381Z [INFO] user-service - Database SELECT on sessions - Execution time: 29ms - Rows affected: 32 - RequestID: 9t1eg746wj +2025-06-18T14:31:20.481Z [TRACE] auth-service - GET /api/v1/orders - Status: 502 - Response time: 1306ms - IP: 192.168.159.94 - User: user_1002 - RequestID: 58kes4a6u7o +2025-06-18T14:31:20.581Z [DEBUG] notification-service - Auth event: password_change - User: user_1085 - IP: 192.168.79.143 - RequestID: sre6lyfxdl +2025-06-18T14:31:20.681Z [INFO] notification-service - Operation: notification_queued - Processing time: 917ms - RequestID: 10hyi0ukmaq +2025-06-18T14:31:20.781Z [DEBUG] user-service - Auth event: login_success - User: user_1041 - IP: 192.168.13.72 - RequestID: 9lxf8ut1kup +2025-06-18T14:31:20.881Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 133ms - RequestID: dg3pqeq2sz +2025-06-18T14:31:20.981Z [DEBUG] user-service - Auth event: logout - User: user_1038 - IP: 192.168.240.169 - RequestID: ik74wfj1ttq +2025-06-18T14:31:21.081Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 377ms - Rows affected: 91 - RequestID: urgzbnfp0un +2025-06-18T14:31:21.181Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 993ms - RequestID: u2g7tpd9oo +2025-06-18T14:31:21.281Z [DEBUG] user-service - Operation: cache_hit - Processing time: 914ms - RequestID: 1ma7uqxfds6 +2025-06-18T14:31:21.381Z [INFO] user-service - GET /api/v1/auth/login - Status: 201 - Response time: 1081ms - IP: 192.168.196.226 - User: user_1002 - RequestID: 1fv3u16zhc5 +2025-06-18T14:31:21.481Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 151ms - Rows affected: 51 - RequestID: shlkyecse8k +2025-06-18T14:31:21.581Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 777ms - IP: 192.168.187.199 - User: user_1004 - RequestID: q6v7n7wihe +2025-06-18T14:31:21.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 374ms - RequestID: cl5x4lckk59 +2025-06-18T14:31:21.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 109ms - RequestID: ywm5uxq9w2j +2025-06-18T14:31:21.881Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 503 - Response time: 1739ms - IP: 192.168.242.165 - User: user_1081 - RequestID: d6thvadmg4u +2025-06-18T14:31:21.981Z [INFO] auth-service - Auth event: logout - User: user_1027 - IP: 192.168.68.158 - RequestID: jdhd2ty92l +2025-06-18T14:31:22.081Z [DEBUG] order-service - Auth event: password_change - User: user_1079 - IP: 192.168.46.63 - RequestID: izrs7vefcz +2025-06-18T14:31:22.181Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 503 - Response time: 958ms - IP: 192.168.31.117 - User: user_1039 - RequestID: d1467oakvm +2025-06-18T14:31:22.281Z [INFO] user-service - DELETE /api/v1/payments - Status: 400 - Response time: 1704ms - IP: 192.168.196.226 - User: user_1071 - RequestID: mfxd4nu86xs +2025-06-18T14:31:22.381Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 364ms - IP: 192.168.181.225 - User: user_1023 - RequestID: o64l9xslw6g +2025-06-18T14:31:22.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 964ms - RequestID: 44y4pv0cymt +2025-06-18T14:31:22.581Z [TRACE] user-service - Database DELETE on users - Execution time: 488ms - Rows affected: 3 - RequestID: q90vf0qofwr +2025-06-18T14:31:22.681Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 1028ms - RequestID: 67hnex3h8nm +2025-06-18T14:31:22.781Z [TRACE] user-service - Database UPDATE on products - Execution time: 70ms - Rows affected: 4 - RequestID: cunctrtdx39 +2025-06-18T14:31:22.881Z [TRACE] order-service - Database DELETE on users - Execution time: 322ms - Rows affected: 24 - RequestID: mgs1yy3sdv +2025-06-18T14:31:22.981Z [DEBUG] payment-service - Auth event: login_success - User: user_1073 - IP: 192.168.133.7 - RequestID: cbbdygorpv +2025-06-18T14:31:23.081Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.85.229 - RequestID: 0vohbcxd04ya +2025-06-18T14:31:23.181Z [INFO] user-service - PATCH /api/v1/inventory - Status: 404 - Response time: 364ms - IP: 192.168.30.79 - User: user_1028 - RequestID: 6zdrwz3y7yb +2025-06-18T14:31:23.281Z [INFO] order-service - Auth event: logout - User: user_1027 - IP: 192.168.187.199 - RequestID: 0r0mm32iwmh +2025-06-18T14:31:23.381Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 52ms - RequestID: mxfpijhnzs +2025-06-18T14:31:23.481Z [INFO] payment-service - Auth event: login_failed - User: user_1002 - IP: 192.168.32.38 - RequestID: zlgrvfltamk +2025-06-18T14:31:23.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1015 - IP: 192.168.227.77 - RequestID: iyof2zwzsjl +2025-06-18T14:31:23.681Z [INFO] payment-service - Database INSERT on products - Execution time: 418ms - Rows affected: 78 - RequestID: kvkhccdnjl +2025-06-18T14:31:23.781Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 503 - Response time: 339ms - IP: 192.168.44.5 - User: user_1065 - RequestID: 19yvjx49af6 +2025-06-18T14:31:23.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 904ms - RequestID: vum4tdgifn +2025-06-18T14:31:23.981Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 399ms - Rows affected: 58 - RequestID: 3avu1n0ydht +2025-06-18T14:31:24.081Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1928ms - IP: 192.168.30.79 - User: user_1024 - RequestID: xloitaj2mz +2025-06-18T14:31:24.181Z [TRACE] order-service - Auth event: login_success - User: user_1018 - IP: 192.168.227.77 - RequestID: zsckob0vq3 +2025-06-18T14:31:24.281Z [DEBUG] user-service - Operation: payment_processed - Processing time: 995ms - RequestID: 6pug63sems7 +2025-06-18T14:31:24.381Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 227ms - Rows affected: 95 - RequestID: r4n9z05uqtd +2025-06-18T14:31:24.481Z [INFO] auth-service - Auth event: logout - User: user_1006 - IP: 192.168.133.7 - RequestID: 4rjod4otqcp +2025-06-18T14:31:24.581Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 2007ms - IP: 192.168.53.133 - User: user_1001 - RequestID: d1coq1yz8vr +2025-06-18T14:31:24.681Z [TRACE] auth-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.10.184 - RequestID: f3gor7l7v6w +2025-06-18T14:31:24.781Z [TRACE] order-service - Database INSERT on payments - Execution time: 458ms - Rows affected: 91 - RequestID: 06pmncmid1qc +2025-06-18T14:31:24.881Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1386ms - IP: 192.168.167.32 - User: user_1066 - RequestID: u137i1pkf6h +2025-06-18T14:31:24.981Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 248ms - Rows affected: 3 - RequestID: aka1i0gclwe +2025-06-18T14:31:25.081Z [INFO] order-service - GET /api/v1/users - Status: 400 - Response time: 1251ms - IP: 192.168.79.116 - User: user_1065 - RequestID: vnfaf7rks3r +2025-06-18T14:31:25.181Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.14.77 - RequestID: xikz3y90tl +2025-06-18T14:31:25.281Z [INFO] auth-service - Operation: email_sent - Processing time: 74ms - RequestID: zf0awwpt8g +2025-06-18T14:31:25.381Z [INFO] payment-service - Auth event: logout - User: user_1014 - IP: 192.168.189.103 - RequestID: rttzpk6pugk +2025-06-18T14:31:25.481Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.11.60 - RequestID: 90i8n6ewzu +2025-06-18T14:31:25.581Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1807ms - IP: 192.168.97.87 - User: user_1063 - RequestID: 0txhgf560pwb +2025-06-18T14:31:25.681Z [INFO] user-service - Database DELETE on sessions - Execution time: 469ms - Rows affected: 2 - RequestID: s0g69lcm45 +2025-06-18T14:31:25.781Z [INFO] inventory-service - DELETE /api/v1/users - Status: 503 - Response time: 1329ms - IP: 192.168.11.60 - User: user_1006 - RequestID: l2hmxtlre1o +2025-06-18T14:31:25.881Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 502 - Response time: 844ms - IP: 192.168.138.123 - User: user_1007 - RequestID: zopgu1sng59 +2025-06-18T14:31:25.981Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 666ms - IP: 192.168.158.144 - User: user_1046 - RequestID: 0uthven0ye +2025-06-18T14:31:26.081Z [TRACE] user-service - Database SELECT on products - Execution time: 190ms - Rows affected: 32 - RequestID: xh9nei030cm +2025-06-18T14:31:26.181Z [INFO] order-service - Database UPDATE on sessions - Execution time: 420ms - Rows affected: 88 - RequestID: 4fg3zt4mfbp +2025-06-18T14:31:26.281Z [DEBUG] inventory-service - POST /api/v1/users - Status: 502 - Response time: 1456ms - IP: 192.168.104.37 - User: user_1043 - RequestID: 84fu18vsgiu +2025-06-18T14:31:26.381Z [DEBUG] payment-service - Auth event: logout - User: user_1088 - IP: 192.168.242.165 - RequestID: x4lgeq5u2ej +2025-06-18T14:31:26.481Z [INFO] notification-service - Database INSERT on orders - Execution time: 242ms - Rows affected: 36 - RequestID: bqxx5t5t55c +2025-06-18T14:31:26.581Z [DEBUG] order-service - Auth event: password_change - User: user_1076 - IP: 192.168.10.184 - RequestID: 7faj2w2bdow +2025-06-18T14:31:26.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.138.123 - RequestID: t0fkrre8or +2025-06-18T14:31:26.781Z [TRACE] auth-service - Database INSERT on payments - Execution time: 44ms - Rows affected: 92 - RequestID: pyfyr8ufzv +2025-06-18T14:31:26.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 500ms - RequestID: igs4lc3f8iq +2025-06-18T14:31:26.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.44.5 - RequestID: ewsin0j974 +2025-06-18T14:31:27.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 286ms - RequestID: au8uu0autd9 +2025-06-18T14:31:27.181Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 261ms - IP: 192.168.28.146 - User: user_1004 - RequestID: 8kqqbsbbind +2025-06-18T14:31:27.281Z [INFO] notification-service - PATCH /api/v1/users - Status: 403 - Response time: 87ms - IP: 192.168.229.123 - User: user_1006 - RequestID: 2er773y0gat +2025-06-18T14:31:27.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1004 - IP: 192.168.36.218 - RequestID: t0c5b892kxe +2025-06-18T14:31:27.481Z [TRACE] payment-service - Database SELECT on users - Execution time: 238ms - Rows affected: 12 - RequestID: nyohfoenat +2025-06-18T14:31:27.581Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 48ms - Rows affected: 61 - RequestID: 4wx9tfce4bc +2025-06-18T14:31:27.681Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 400 - Response time: 1395ms - IP: 192.168.227.233 - User: user_1002 - RequestID: 5i1zoffcmya +2025-06-18T14:31:27.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1072 - IP: 192.168.53.133 - RequestID: fpz7lu64upi +2025-06-18T14:31:27.881Z [INFO] auth-service - DELETE /api/v1/orders - Status: 200 - Response time: 1521ms - IP: 192.168.10.184 - User: user_1026 - RequestID: k0jxymclp3 +2025-06-18T14:31:27.981Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1322ms - IP: 192.168.227.233 - User: user_1047 - RequestID: tbbueydu4k +2025-06-18T14:31:28.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1037 - IP: 192.168.33.76 - RequestID: asl3kytqc2j +2025-06-18T14:31:28.181Z [TRACE] notification-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.144.38 - RequestID: tj4o4eeghw +2025-06-18T14:31:28.281Z [INFO] payment-service - Database DELETE on payments - Execution time: 75ms - Rows affected: 9 - RequestID: 0pmvda6ud9l +2025-06-18T14:31:28.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1032 - IP: 192.168.247.134 - RequestID: et8q228elu +2025-06-18T14:31:28.481Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 462ms - Rows affected: 58 - RequestID: tcltfuaq3mo +2025-06-18T14:31:28.581Z [INFO] payment-service - Operation: payment_processed - Processing time: 794ms - RequestID: tn12tufjlk8 +2025-06-18T14:31:28.681Z [INFO] notification-service - Database DELETE on payments - Execution time: 477ms - Rows affected: 95 - RequestID: yca3b8nr6zq +2025-06-18T14:31:28.781Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 403 - Response time: 1487ms - IP: 192.168.187.199 - User: user_1011 - RequestID: bzu5uaiq68 +2025-06-18T14:31:28.881Z [INFO] inventory-service - Database INSERT on orders - Execution time: 95ms - Rows affected: 86 - RequestID: tu5j4j931f +2025-06-18T14:31:28.981Z [INFO] user-service - DELETE /api/v1/users - Status: 500 - Response time: 1914ms - IP: 192.168.28.146 - User: user_1017 - RequestID: qieq7x3tui +2025-06-18T14:31:29.081Z [INFO] order-service - Auth event: login_failed - User: user_1065 - IP: 192.168.141.100 - RequestID: egsutps8xwv +2025-06-18T14:31:29.181Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1148ms - IP: 192.168.79.116 - User: user_1082 - RequestID: 0v772vh0etuc +2025-06-18T14:31:29.281Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 476ms - Rows affected: 79 - RequestID: 1qfs06iolz2 +2025-06-18T14:31:29.381Z [INFO] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 159ms - IP: 192.168.133.7 - User: user_1093 - RequestID: ycu2meicmb +2025-06-18T14:31:29.481Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 80ms - Rows affected: 79 - RequestID: mwdgc8lbdp +2025-06-18T14:31:29.581Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 503 - Response time: 181ms - IP: 192.168.174.114 - User: user_1004 - RequestID: 2d4pqeip54n +2025-06-18T14:31:29.681Z [INFO] order-service - Auth event: logout - User: user_1009 - IP: 192.168.240.169 - RequestID: lc0bvpj5am +2025-06-18T14:31:29.781Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 343ms - IP: 192.168.174.114 - User: user_1098 - RequestID: rlxr0ic8mba +2025-06-18T14:31:29.881Z [INFO] order-service - Operation: notification_queued - Processing time: 986ms - RequestID: 9b6mifx32mu +2025-06-18T14:31:29.981Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 201 - Response time: 214ms - IP: 192.168.11.60 - User: user_1049 - RequestID: 8ap3p2e2cfq +2025-06-18T14:31:30.081Z [DEBUG] user-service - PATCH /api/v1/users - Status: 400 - Response time: 1692ms - IP: 192.168.31.117 - User: user_1062 - RequestID: 16xpsebkkoa +2025-06-18T14:31:30.181Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 666ms - IP: 192.168.14.77 - User: user_1063 - RequestID: urmie2sbrxk +2025-06-18T14:31:30.281Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 1851ms - IP: 192.168.158.144 - User: user_1028 - RequestID: mxlw586brai +2025-06-18T14:31:30.381Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.79.116 - RequestID: grkw2t4uonm +2025-06-18T14:31:30.481Z [DEBUG] order-service - Database DELETE on products - Execution time: 441ms - Rows affected: 29 - RequestID: ybddqkyayfn +2025-06-18T14:31:30.581Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 913ms - IP: 192.168.189.103 - User: user_1061 - RequestID: 2capvq5v613 +2025-06-18T14:31:30.681Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1969ms - IP: 192.168.44.5 - User: user_1070 - RequestID: 2orw48qg4ff +2025-06-18T14:31:30.781Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 826ms - RequestID: kao7yheojw +2025-06-18T14:31:30.881Z [DEBUG] order-service - Database UPDATE on products - Execution time: 76ms - Rows affected: 32 - RequestID: ddbjp3w83vh +2025-06-18T14:31:30.981Z [INFO] user-service - Operation: order_created - Processing time: 844ms - RequestID: cdpewl2qk8s +2025-06-18T14:31:31.081Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 1032ms - RequestID: xrteaai306h +2025-06-18T14:31:31.181Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 201 - Response time: 308ms - IP: 192.168.235.117 - User: user_1009 - RequestID: azicxfxwit9 +2025-06-18T14:31:31.281Z [INFO] notification-service - Operation: notification_queued - Processing time: 512ms - RequestID: obrh03n3j3s +2025-06-18T14:31:31.381Z [DEBUG] notification-service - Auth event: logout - User: user_1030 - IP: 192.168.10.184 - RequestID: e140qe1b8p +2025-06-18T14:31:31.481Z [INFO] user-service - Database UPDATE on payments - Execution time: 80ms - Rows affected: 25 - RequestID: 3qyeyp71sfa +2025-06-18T14:31:31.581Z [INFO] notification-service - POST /api/v1/payments - Status: 200 - Response time: 405ms - IP: 192.168.196.226 - User: user_1031 - RequestID: f68du46cduo +2025-06-18T14:31:31.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 730ms - RequestID: wdi8n4jpr2e +2025-06-18T14:31:31.781Z [INFO] payment-service - PUT /api/v1/users - Status: 400 - Response time: 1234ms - IP: 192.168.232.72 - User: user_1002 - RequestID: 0i5bmkdkugsa +2025-06-18T14:31:31.881Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 378ms - Rows affected: 60 - RequestID: 9abx8km6je +2025-06-18T14:31:31.981Z [INFO] inventory-service - Auth event: password_change - User: user_1090 - IP: 192.168.181.225 - RequestID: oge9ruk68ho +2025-06-18T14:31:32.081Z [TRACE] auth-service - Auth event: password_change - User: user_1067 - IP: 192.168.11.60 - RequestID: ndcr8f44me +2025-06-18T14:31:32.181Z [INFO] payment-service - Auth event: login_success - User: user_1067 - IP: 192.168.170.215 - RequestID: k855xte7ynq +2025-06-18T14:31:32.281Z [TRACE] order-service - Auth event: login_success - User: user_1004 - IP: 192.168.167.32 - RequestID: x0a0gyw3j0b +2025-06-18T14:31:32.381Z [INFO] payment-service - Operation: cache_miss - Processing time: 754ms - RequestID: erd2rlhk47k +2025-06-18T14:31:32.481Z [TRACE] auth-service - Operation: order_created - Processing time: 828ms - RequestID: bwm4fluofdc +2025-06-18T14:31:32.581Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1601ms - IP: 192.168.227.77 - User: user_1083 - RequestID: eweldt5q6gb +2025-06-18T14:31:32.681Z [INFO] user-service - DELETE /api/v1/payments - Status: 502 - Response time: 126ms - IP: 192.168.79.143 - User: user_1070 - RequestID: r31k7bjqi8 +2025-06-18T14:31:32.781Z [INFO] order-service - PUT /api/v1/users - Status: 400 - Response time: 1114ms - IP: 192.168.79.141 - User: user_1055 - RequestID: vfvbrv6fe1 +2025-06-18T14:31:32.881Z [INFO] order-service - Operation: webhook_sent - Processing time: 898ms - RequestID: fen5bso0l8n +2025-06-18T14:31:32.981Z [INFO] user-service - GET /api/v1/payments - Status: 502 - Response time: 1429ms - IP: 192.168.30.79 - User: user_1009 - RequestID: wy4tsz1ir0k +2025-06-18T14:31:33.081Z [INFO] payment-service - Auth event: login_failed - User: user_1022 - IP: 192.168.144.38 - RequestID: gy5qppct2w5 +2025-06-18T14:31:33.181Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1851ms - IP: 192.168.81.206 - User: user_1036 - RequestID: e7je8ptn81r +2025-06-18T14:31:33.281Z [INFO] order-service - Auth event: login_success - User: user_1073 - IP: 192.168.147.171 - RequestID: a36xh8grz9j +2025-06-18T14:31:33.381Z [DEBUG] payment-service - Database INSERT on users - Execution time: 391ms - Rows affected: 45 - RequestID: ofse5g7nom +2025-06-18T14:31:33.481Z [INFO] order-service - Auth event: login_failed - User: user_1089 - IP: 192.168.97.87 - RequestID: 4kki23w7r7j +2025-06-18T14:31:33.581Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 92ms - IP: 192.168.100.240 - User: user_1066 - RequestID: yvan2g5dngr +2025-06-18T14:31:33.681Z [TRACE] payment-service - Operation: payment_processed - Processing time: 271ms - RequestID: snvn7ecoqs +2025-06-18T14:31:33.781Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 324ms - Rows affected: 76 - RequestID: se9upgxqi1 +2025-06-18T14:31:33.881Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 303ms - RequestID: ikwuqmn0z2 +2025-06-18T14:31:33.981Z [TRACE] user-service - GET /api/v1/orders - Status: 200 - Response time: 1925ms - IP: 192.168.11.60 - User: user_1099 - RequestID: 64fo5papbl4 +2025-06-18T14:31:34.081Z [DEBUG] auth-service - POST /api/v1/orders - Status: 403 - Response time: 1988ms - IP: 192.168.141.100 - User: user_1006 - RequestID: gnpdf3qb63a +2025-06-18T14:31:34.181Z [TRACE] payment-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.170.215 - RequestID: 5v3rrqmxu18 +2025-06-18T14:31:34.281Z [TRACE] payment-service - Auth event: login_failed - User: user_1072 - IP: 192.168.138.123 - RequestID: xo8j8wfui9 +2025-06-18T14:31:34.381Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 592ms - RequestID: jx18wp1wkf +2025-06-18T14:31:34.481Z [INFO] user-service - Database SELECT on orders - Execution time: 474ms - Rows affected: 63 - RequestID: vdj10esjden +2025-06-18T14:31:34.581Z [TRACE] auth-service - Operation: email_sent - Processing time: 920ms - RequestID: gxl26z5rbw +2025-06-18T14:31:34.681Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 404 - Response time: 943ms - IP: 192.168.227.233 - User: user_1048 - RequestID: 7j2a3f9tf9a +2025-06-18T14:31:34.781Z [INFO] notification-service - GET /api/v1/users - Status: 404 - Response time: 711ms - IP: 192.168.10.184 - User: user_1094 - RequestID: 8p6owaisnb7 +2025-06-18T14:31:34.881Z [TRACE] user-service - Auth event: login_failed - User: user_1052 - IP: 192.168.53.133 - RequestID: ohd75gx4xs +2025-06-18T14:31:34.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.229.123 - RequestID: de972ijtmom +2025-06-18T14:31:35.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 151ms - RequestID: k4qect6r8mr +2025-06-18T14:31:35.181Z [TRACE] user-service - PUT /api/v1/payments - Status: 200 - Response time: 1244ms - IP: 192.168.227.77 - User: user_1061 - RequestID: o6gs1g0vk2b +2025-06-18T14:31:35.281Z [TRACE] user-service - Auth event: logout - User: user_1060 - IP: 192.168.227.233 - RequestID: teu17szeh1q +2025-06-18T14:31:35.381Z [INFO] order-service - Auth event: password_change - User: user_1034 - IP: 192.168.32.38 - RequestID: 44g2x55oubo +2025-06-18T14:31:35.481Z [TRACE] auth-service - Database SELECT on orders - Execution time: 214ms - Rows affected: 45 - RequestID: 4ff40x1lsq1 +2025-06-18T14:31:35.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1084 - IP: 192.168.32.38 - RequestID: yfv8minpvdn +2025-06-18T14:31:35.681Z [TRACE] user-service - Auth event: logout - User: user_1005 - IP: 192.168.79.143 - RequestID: v2xttgnlxr +2025-06-18T14:31:35.781Z [TRACE] notification-service - Operation: order_created - Processing time: 474ms - RequestID: kzg9tk43wwl +2025-06-18T14:31:35.881Z [TRACE] order-service - POST /api/v1/payments - Status: 500 - Response time: 1752ms - IP: 192.168.14.77 - User: user_1087 - RequestID: bg0jvu2ya8 +2025-06-18T14:31:35.981Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 500 - Response time: 425ms - IP: 192.168.158.144 - User: user_1084 - RequestID: ymi1fhd2umr +2025-06-18T14:31:36.081Z [DEBUG] user-service - PATCH /api/v1/users - Status: 502 - Response time: 1431ms - IP: 192.168.36.218 - User: user_1070 - RequestID: sf5enbjvmal +2025-06-18T14:31:36.181Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 403 - Response time: 2001ms - IP: 192.168.30.79 - User: user_1093 - RequestID: yp6dzmriw3s +2025-06-18T14:31:36.281Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 493ms - IP: 192.168.79.143 - User: user_1076 - RequestID: f46awzw4eqp +2025-06-18T14:31:36.381Z [TRACE] notification-service - Database UPDATE on products - Execution time: 223ms - Rows affected: 80 - RequestID: 8yxd2kfr7gq +2025-06-18T14:31:36.481Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 403 - Response time: 609ms - IP: 192.168.144.38 - User: user_1050 - RequestID: 5ehdxa9td6a +2025-06-18T14:31:36.581Z [TRACE] order-service - Auth event: password_change - User: user_1097 - IP: 192.168.30.79 - RequestID: orbk9cxqaso +2025-06-18T14:31:36.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 869ms - RequestID: tv2ip1rp6kp +2025-06-18T14:31:36.781Z [INFO] user-service - Auth event: login_failed - User: user_1034 - IP: 192.168.36.218 - RequestID: tzwxiet0jp +2025-06-18T14:31:36.881Z [DEBUG] order-service - Database UPDATE on users - Execution time: 21ms - Rows affected: 62 - RequestID: rqzmp1zfcj +2025-06-18T14:31:36.981Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 183ms - Rows affected: 64 - RequestID: flj0aafh10h +2025-06-18T14:31:37.081Z [INFO] user-service - Auth event: login_failed - User: user_1025 - IP: 192.168.31.117 - RequestID: slm5zec11j +2025-06-18T14:31:37.181Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 81ms - Rows affected: 48 - RequestID: 96nq86jrbtu +2025-06-18T14:31:37.281Z [INFO] inventory-service - Operation: cache_miss - Processing time: 252ms - RequestID: zojh9osucs +2025-06-18T14:31:37.381Z [TRACE] auth-service - Auth event: logout - User: user_1083 - IP: 192.168.167.32 - RequestID: mlevn1fzpf +2025-06-18T14:31:37.481Z [INFO] payment-service - PUT /api/v1/users - Status: 400 - Response time: 770ms - IP: 192.168.13.72 - User: user_1031 - RequestID: tjcnx13xhbd +2025-06-18T14:31:37.581Z [INFO] payment-service - Auth event: login_failed - User: user_1053 - IP: 192.168.28.146 - RequestID: 38ygnghbnut +2025-06-18T14:31:37.681Z [DEBUG] order-service - Operation: cache_hit - Processing time: 1043ms - RequestID: fvjgsevejdf +2025-06-18T14:31:37.781Z [TRACE] user-service - Auth event: login_failed - User: user_1013 - IP: 192.168.32.38 - RequestID: b4j4m2d8uoh +2025-06-18T14:31:37.881Z [DEBUG] user-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.227.233 - RequestID: 3isrzmctrxu +2025-06-18T14:31:37.981Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 483ms - Rows affected: 86 - RequestID: 5v6gb8x11n3 +2025-06-18T14:31:38.081Z [TRACE] notification-service - Operation: order_created - Processing time: 630ms - RequestID: 9j437tya8t6 +2025-06-18T14:31:38.181Z [DEBUG] user-service - Operation: email_sent - Processing time: 954ms - RequestID: y89i0qh9m1q +2025-06-18T14:31:38.281Z [TRACE] user-service - Database UPDATE on users - Execution time: 41ms - Rows affected: 13 - RequestID: yi57kmq486 +2025-06-18T14:31:38.381Z [TRACE] inventory-service - POST /api/v1/orders - Status: 200 - Response time: 1690ms - IP: 192.168.187.199 - User: user_1032 - RequestID: c3qfe4ibwet +2025-06-18T14:31:38.481Z [INFO] inventory-service - Database UPDATE on users - Execution time: 213ms - Rows affected: 15 - RequestID: k36ts8qem8q +2025-06-18T14:31:38.581Z [TRACE] payment-service - Operation: payment_processed - Processing time: 528ms - RequestID: g2z2uxvu1ul +2025-06-18T14:31:38.681Z [DEBUG] user-service - POST /api/v1/users - Status: 201 - Response time: 904ms - IP: 192.168.240.169 - User: user_1007 - RequestID: ewwxtcfo3z8 +2025-06-18T14:31:38.781Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 195ms - RequestID: 5dwpb12d4xm +2025-06-18T14:31:38.881Z [TRACE] user-service - Auth event: login_failed - User: user_1051 - IP: 192.168.13.72 - RequestID: dmsmli9gwq5 +2025-06-18T14:31:38.981Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 324ms - IP: 192.168.227.233 - User: user_1044 - RequestID: mjpqterv7j +2025-06-18T14:31:39.081Z [TRACE] notification-service - GET /api/v1/payments - Status: 200 - Response time: 1816ms - IP: 192.168.247.134 - User: user_1054 - RequestID: h1purb21km +2025-06-18T14:31:39.181Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 287ms - Rows affected: 0 - RequestID: 4jb7liwfrnv +2025-06-18T14:31:39.281Z [INFO] auth-service - Database DELETE on users - Execution time: 417ms - Rows affected: 93 - RequestID: 6c797sqdu8u +2025-06-18T14:31:39.381Z [INFO] inventory-service - PUT /api/v1/payments - Status: 403 - Response time: 349ms - IP: 192.168.100.240 - User: user_1040 - RequestID: cdbrow4ehzj +2025-06-18T14:31:39.481Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 247ms - RequestID: 5lkbagebas3 +2025-06-18T14:31:39.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 76ms - RequestID: 5cere3569et +2025-06-18T14:31:39.681Z [INFO] order-service - Auth event: login_success - User: user_1003 - IP: 192.168.79.141 - RequestID: 1tqx8izo1tv +2025-06-18T14:31:39.781Z [TRACE] auth-service - Auth event: login_success - User: user_1054 - IP: 192.168.229.123 - RequestID: hwinhp5r9y +2025-06-18T14:31:39.881Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 301ms - Rows affected: 73 - RequestID: oqtchha824d +2025-06-18T14:31:39.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.159.94 - RequestID: ydw7x5u8c4 +2025-06-18T14:31:40.081Z [DEBUG] user-service - Database DELETE on users - Execution time: 38ms - Rows affected: 80 - RequestID: 54zbs2k6dty +2025-06-18T14:31:40.181Z [DEBUG] inventory-service - GET /api/v1/users - Status: 500 - Response time: 237ms - IP: 192.168.174.114 - User: user_1038 - RequestID: 9ztko0qub2s +2025-06-18T14:31:40.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.10.184 - RequestID: e8t1ixtufrw +2025-06-18T14:31:40.381Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 349ms - Rows affected: 20 - RequestID: 0d6uke0ndyxa +2025-06-18T14:31:40.481Z [TRACE] order-service - Operation: email_sent - Processing time: 564ms - RequestID: eojgmk2injl +2025-06-18T14:31:40.581Z [DEBUG] auth-service - Auth event: password_change - User: user_1053 - IP: 192.168.36.218 - RequestID: 85znnjshurv +2025-06-18T14:31:40.681Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 23ms - Rows affected: 56 - RequestID: 601b7pblarg +2025-06-18T14:31:40.781Z [DEBUG] payment-service - Auth event: login_failed - User: user_1079 - IP: 192.168.97.87 - RequestID: asaj1f4ohte +2025-06-18T14:31:40.881Z [INFO] inventory-service - PUT /api/v1/users - Status: 404 - Response time: 1847ms - IP: 192.168.44.5 - User: user_1023 - RequestID: 7qc9zwa98d7 +2025-06-18T14:31:40.981Z [INFO] auth-service - Auth event: logout - User: user_1066 - IP: 192.168.44.5 - RequestID: vnxyleybpo8 +2025-06-18T14:31:41.081Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1590ms - IP: 192.168.31.117 - User: user_1015 - RequestID: o94iw82861 +2025-06-18T14:31:41.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.53.133 - RequestID: 4614o987da5 +2025-06-18T14:31:41.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 709ms - RequestID: 1c12ilvjqwx +2025-06-18T14:31:41.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1048 - IP: 192.168.144.38 - RequestID: ky9ep6z2flf +2025-06-18T14:31:41.481Z [INFO] inventory-service - Database SELECT on payments - Execution time: 293ms - Rows affected: 72 - RequestID: a0nqqxzjw1q +2025-06-18T14:31:41.581Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1172ms - IP: 192.168.235.117 - User: user_1044 - RequestID: k1bb9iiiah +2025-06-18T14:31:41.681Z [TRACE] payment-service - GET /api/v1/inventory - Status: 200 - Response time: 989ms - IP: 192.168.81.206 - User: user_1097 - RequestID: cgnmq5gh55g +2025-06-18T14:31:41.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1024 - IP: 192.168.240.169 - RequestID: t12m3ghud +2025-06-18T14:31:41.881Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 18ms - Rows affected: 69 - RequestID: 4w346hz8yfc +2025-06-18T14:31:41.981Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 70ms - Rows affected: 16 - RequestID: vzn6xdfqa9b +2025-06-18T14:31:42.081Z [TRACE] auth-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.133.7 - RequestID: 8zn8edajcxn +2025-06-18T14:31:42.181Z [INFO] inventory-service - Database INSERT on payments - Execution time: 370ms - Rows affected: 24 - RequestID: p1ld3z5wk5 +2025-06-18T14:31:42.281Z [DEBUG] user-service - Auth event: login_failed - User: user_1065 - IP: 192.168.235.117 - RequestID: 3688n3n04e2 +2025-06-18T14:31:42.381Z [INFO] notification-service - Auth event: login_success - User: user_1095 - IP: 192.168.167.32 - RequestID: 5qhvst4hwc8 +2025-06-18T14:31:42.481Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 423ms - Rows affected: 60 - RequestID: 24cqjst6qbt +2025-06-18T14:31:42.581Z [TRACE] auth-service - Operation: order_created - Processing time: 348ms - RequestID: 4vq5ucgwfga +2025-06-18T14:31:42.681Z [DEBUG] user-service - GET /api/v1/orders - Status: 404 - Response time: 1668ms - IP: 192.168.30.79 - User: user_1045 - RequestID: 73fv1y45ifk +2025-06-18T14:31:42.781Z [TRACE] order-service - Auth event: login_failed - User: user_1009 - IP: 192.168.211.72 - RequestID: 03chia4cz5x +2025-06-18T14:31:42.881Z [DEBUG] order-service - Operation: order_created - Processing time: 291ms - RequestID: b99ea6aooal +2025-06-18T14:31:42.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1068 - IP: 192.168.144.38 - RequestID: rgvkqcgzti +2025-06-18T14:31:43.081Z [TRACE] inventory-service - Auth event: logout - User: user_1061 - IP: 192.168.170.215 - RequestID: 41bxusmqi3m +2025-06-18T14:31:43.181Z [INFO] order-service - Database UPDATE on sessions - Execution time: 426ms - Rows affected: 15 - RequestID: z5ag0c1b7qc +2025-06-18T14:31:43.281Z [INFO] notification-service - Operation: email_sent - Processing time: 609ms - RequestID: 32ncwp6cej1 +2025-06-18T14:31:43.381Z [DEBUG] payment-service - Operation: order_created - Processing time: 100ms - RequestID: 07u8f0kq7mpu +2025-06-18T14:31:43.481Z [INFO] order-service - Operation: cache_miss - Processing time: 456ms - RequestID: 88x8rd8y9i2 +2025-06-18T14:31:43.581Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.144.38 - RequestID: ojq3n8v7wn7 +2025-06-18T14:31:43.681Z [TRACE] order-service - Database INSERT on products - Execution time: 472ms - Rows affected: 72 - RequestID: 7pssrcoywu5 +2025-06-18T14:31:43.781Z [DEBUG] payment-service - Auth event: logout - User: user_1055 - IP: 192.168.30.79 - RequestID: m4pba0nxfsd +2025-06-18T14:31:43.881Z [INFO] payment-service - Operation: cache_hit - Processing time: 249ms - RequestID: 61ofmntg0mt +2025-06-18T14:31:43.981Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1037ms - IP: 192.168.158.144 - User: user_1096 - RequestID: xdlho5b7jld +2025-06-18T14:31:44.081Z [DEBUG] user-service - Auth event: login_failed - User: user_1006 - IP: 192.168.68.158 - RequestID: vdoevy4hv8e +2025-06-18T14:31:44.181Z [TRACE] order-service - Database INSERT on orders - Execution time: 476ms - Rows affected: 71 - RequestID: x5c3pydurfi +2025-06-18T14:31:44.281Z [TRACE] user-service - PATCH /api/v1/orders - Status: 200 - Response time: 447ms - IP: 192.168.196.226 - User: user_1062 - RequestID: 6u8auoif3ra +2025-06-18T14:31:44.381Z [TRACE] user-service - Database DELETE on sessions - Execution time: 231ms - Rows affected: 33 - RequestID: 5gcv4twj0vw +2025-06-18T14:31:44.481Z [INFO] order-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.187.199 - RequestID: 9119b3op0s4 +2025-06-18T14:31:44.581Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 533ms - RequestID: ieg1efozcob +2025-06-18T14:31:44.681Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1731ms - IP: 192.168.44.5 - User: user_1050 - RequestID: 0fzavw7ydbz +2025-06-18T14:31:44.781Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 403 - Response time: 11ms - IP: 192.168.79.116 - User: user_1082 - RequestID: s6d4kmuoju +2025-06-18T14:31:44.881Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.81.206 - RequestID: 794y4o63xvn +2025-06-18T14:31:44.981Z [DEBUG] user-service - Database SELECT on users - Execution time: 225ms - Rows affected: 86 - RequestID: w9jmwn7fs2b +2025-06-18T14:31:45.081Z [INFO] payment-service - PUT /api/v1/inventory - Status: 401 - Response time: 1819ms - IP: 192.168.240.169 - User: user_1084 - RequestID: lm1gnn2262 +2025-06-18T14:31:45.181Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1202ms - IP: 192.168.113.218 - User: user_1042 - RequestID: 9u5cx6ug9fl +2025-06-18T14:31:45.281Z [TRACE] notification-service - Auth event: password_change - User: user_1047 - IP: 192.168.28.146 - RequestID: v84comhccq +2025-06-18T14:31:45.381Z [INFO] payment-service - PUT /api/v1/inventory - Status: 200 - Response time: 455ms - IP: 192.168.235.117 - User: user_1008 - RequestID: 9chk9a1lghk +2025-06-18T14:31:45.481Z [INFO] payment-service - Database INSERT on products - Execution time: 200ms - Rows affected: 65 - RequestID: yuvp9cw94ug +2025-06-18T14:31:45.581Z [DEBUG] user-service - Auth event: login_failed - User: user_1039 - IP: 192.168.181.225 - RequestID: pm5qme6aeo9 +2025-06-18T14:31:45.681Z [INFO] payment-service - Auth event: login_failed - User: user_1061 - IP: 192.168.33.76 - RequestID: 82b0strw3u8 +2025-06-18T14:31:45.781Z [INFO] notification-service - PATCH /api/v1/users - Status: 502 - Response time: 655ms - IP: 192.168.1.152 - User: user_1009 - RequestID: gsrhqx2jaw7 +2025-06-18T14:31:45.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1023 - IP: 192.168.13.72 - RequestID: k75m2l62vh +2025-06-18T14:31:45.981Z [DEBUG] payment-service - Database DELETE on users - Execution time: 282ms - Rows affected: 88 - RequestID: t27hto45n27 +2025-06-18T14:31:46.081Z [TRACE] user-service - Operation: inventory_updated - Processing time: 459ms - RequestID: gjta2cf80hs +2025-06-18T14:31:46.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 407ms - RequestID: adowp5x5uje +2025-06-18T14:31:46.281Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.181.225 - RequestID: lnr6zpcqtn +2025-06-18T14:31:46.381Z [DEBUG] user-service - Operation: cache_miss - Processing time: 319ms - RequestID: i0p2ke4lfdn +2025-06-18T14:31:46.481Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 127ms - Rows affected: 43 - RequestID: 51lrha42xjq +2025-06-18T14:31:46.581Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 440ms - Rows affected: 19 - RequestID: n1lqbxbuw99 +2025-06-18T14:31:46.681Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 1020ms - RequestID: kn8a6wabz1 +2025-06-18T14:31:46.781Z [TRACE] user-service - GET /api/v1/auth/login - Status: 400 - Response time: 530ms - IP: 192.168.133.7 - User: user_1084 - RequestID: upr1s0lrla +2025-06-18T14:31:46.881Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 400 - Response time: 2004ms - IP: 192.168.68.158 - User: user_1017 - RequestID: vtm4s36vzdc +2025-06-18T14:31:46.981Z [TRACE] order-service - Database SELECT on users - Execution time: 492ms - Rows affected: 66 - RequestID: 6c0lyr53nf +2025-06-18T14:31:47.081Z [TRACE] order-service - Operation: cache_hit - Processing time: 242ms - RequestID: ofytryo15c8 +2025-06-18T14:31:47.181Z [INFO] user-service - Auth event: login_failed - User: user_1054 - IP: 192.168.113.218 - RequestID: d026twnafmj +2025-06-18T14:31:47.281Z [DEBUG] auth-service - Operation: email_sent - Processing time: 541ms - RequestID: hyb0wy7ws1q +2025-06-18T14:31:47.381Z [DEBUG] payment-service - GET /api/v1/orders - Status: 502 - Response time: 145ms - IP: 192.168.32.38 - User: user_1046 - RequestID: lpm21ex9m0c +2025-06-18T14:31:47.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 388ms - RequestID: 3e5bfgawa53 +2025-06-18T14:31:47.581Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 500ms - Rows affected: 54 - RequestID: 9kw72f1ncul +2025-06-18T14:31:47.681Z [TRACE] user-service - Database DELETE on products - Execution time: 199ms - Rows affected: 82 - RequestID: xdhypskdn1r +2025-06-18T14:31:47.781Z [TRACE] inventory-service - POST /api/v1/payments - Status: 500 - Response time: 1186ms - IP: 192.168.167.32 - User: user_1083 - RequestID: 8fx63g9clvp +2025-06-18T14:31:47.881Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 400 - Response time: 1502ms - IP: 192.168.174.114 - User: user_1007 - RequestID: 48d62f74nkj +2025-06-18T14:31:47.981Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 369ms - RequestID: cs6xj0x4va +2025-06-18T14:31:48.081Z [TRACE] notification-service - PUT /api/v1/users - Status: 500 - Response time: 1344ms - IP: 192.168.32.38 - User: user_1020 - RequestID: z5kgn52pbs +2025-06-18T14:31:48.181Z [TRACE] user-service - Operation: notification_queued - Processing time: 420ms - RequestID: sybrtafgi3g +2025-06-18T14:31:48.281Z [TRACE] order-service - Database SELECT on payments - Execution time: 424ms - Rows affected: 88 - RequestID: s26740hh3ef +2025-06-18T14:31:48.381Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 401 - Response time: 933ms - IP: 192.168.133.7 - User: user_1098 - RequestID: sms121nu7mg +2025-06-18T14:31:48.481Z [TRACE] order-service - Auth event: password_change - User: user_1070 - IP: 192.168.181.225 - RequestID: ny3bw052zj +2025-06-18T14:31:48.581Z [TRACE] user-service - Operation: webhook_sent - Processing time: 781ms - RequestID: nelk2i8z4d +2025-06-18T14:31:48.681Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 500 - Response time: 651ms - IP: 192.168.242.165 - User: user_1068 - RequestID: 8inwahy2z6x +2025-06-18T14:31:48.781Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 500 - Response time: 636ms - IP: 192.168.85.229 - User: user_1096 - RequestID: qqk0633k9os +2025-06-18T14:31:48.881Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 500 - Response time: 788ms - IP: 192.168.81.206 - User: user_1046 - RequestID: 4y22a0dz65h +2025-06-18T14:31:48.981Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1131ms - IP: 192.168.240.169 - User: user_1031 - RequestID: eh4bmjz7efp +2025-06-18T14:31:49.081Z [TRACE] user-service - Auth event: login_success - User: user_1000 - IP: 192.168.196.226 - RequestID: 1pfabuwxkgwh +2025-06-18T14:31:49.181Z [TRACE] payment-service - Operation: email_sent - Processing time: 579ms - RequestID: nl98m0qyxzf +2025-06-18T14:31:49.281Z [TRACE] order-service - Operation: payment_processed - Processing time: 1047ms - RequestID: tcdso2qxvu +2025-06-18T14:31:49.381Z [DEBUG] payment-service - Auth event: login_success - User: user_1097 - IP: 192.168.240.169 - RequestID: u4vq8ol210d +2025-06-18T14:31:49.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 417ms - RequestID: gqh6ggmezk8 +2025-06-18T14:31:49.581Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 388ms - IP: 192.168.181.225 - User: user_1068 - RequestID: ae78e32kp4 +2025-06-18T14:31:49.681Z [TRACE] auth-service - Operation: email_sent - Processing time: 228ms - RequestID: iuschzge5bc +2025-06-18T14:31:49.781Z [TRACE] user-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.196.226 - RequestID: wo2hp2fo8k +2025-06-18T14:31:49.881Z [INFO] user-service - Auth event: password_change - User: user_1051 - IP: 192.168.196.226 - RequestID: 5hd8cmrrntx +2025-06-18T14:31:49.981Z [TRACE] order-service - Operation: order_created - Processing time: 361ms - RequestID: t5n3lfgftbl +2025-06-18T14:31:50.081Z [DEBUG] user-service - POST /api/v1/inventory - Status: 502 - Response time: 1920ms - IP: 192.168.64.33 - User: user_1025 - RequestID: wkbqzben2r +2025-06-18T14:31:50.181Z [DEBUG] payment-service - Database DELETE on products - Execution time: 331ms - Rows affected: 7 - RequestID: gfk0zjg58n +2025-06-18T14:31:50.281Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 104ms - IP: 192.168.181.225 - User: user_1064 - RequestID: wn8a6jcri +2025-06-18T14:31:50.381Z [INFO] order-service - PATCH /api/v1/payments - Status: 201 - Response time: 532ms - IP: 192.168.81.206 - User: user_1040 - RequestID: 6jdz78bz2k +2025-06-18T14:31:50.481Z [TRACE] auth-service - Operation: email_sent - Processing time: 711ms - RequestID: 8f0dhjlzb89 +2025-06-18T14:31:50.581Z [TRACE] user-service - PUT /api/v1/users - Status: 201 - Response time: 1768ms - IP: 192.168.147.171 - User: user_1000 - RequestID: sp2z5oy95i +2025-06-18T14:31:50.681Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 117ms - Rows affected: 91 - RequestID: v9gwyu51z2n +2025-06-18T14:31:50.781Z [DEBUG] notification-service - Operation: order_created - Processing time: 986ms - RequestID: ns9wf35kiyh +2025-06-18T14:31:50.881Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 403 - Response time: 1234ms - IP: 192.168.242.165 - User: user_1010 - RequestID: r7vajtk4ca9 +2025-06-18T14:31:50.981Z [TRACE] payment-service - Database DELETE on users - Execution time: 118ms - Rows affected: 23 - RequestID: extrp88iava +2025-06-18T14:31:51.081Z [TRACE] notification-service - Database DELETE on products - Execution time: 436ms - Rows affected: 76 - RequestID: g9608fsgm5i +2025-06-18T14:31:51.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1022 - IP: 192.168.10.184 - RequestID: o6jd37q7y1 +2025-06-18T14:31:51.281Z [TRACE] order-service - Database SELECT on sessions - Execution time: 69ms - Rows affected: 63 - RequestID: jvwmljx6p5p +2025-06-18T14:31:51.381Z [INFO] order-service - PATCH /api/v1/payments - Status: 403 - Response time: 429ms - IP: 192.168.31.117 - User: user_1053 - RequestID: kqq3rytvubp +2025-06-18T14:31:51.481Z [TRACE] order-service - Auth event: logout - User: user_1090 - IP: 192.168.227.233 - RequestID: zugb1cmngo +2025-06-18T14:31:51.581Z [TRACE] notification-service - Database DELETE on products - Execution time: 137ms - Rows affected: 48 - RequestID: osog1gbmsc +2025-06-18T14:31:51.681Z [INFO] order-service - Operation: notification_queued - Processing time: 598ms - RequestID: g3vhz5724hl +2025-06-18T14:31:51.781Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1638ms - IP: 192.168.138.123 - User: user_1022 - RequestID: axjr833jymi +2025-06-18T14:31:51.881Z [INFO] payment-service - Database SELECT on sessions - Execution time: 199ms - Rows affected: 86 - RequestID: 1b7c8jpdn7u +2025-06-18T14:31:51.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.196.226 - RequestID: nih4vx99wak +2025-06-18T14:31:52.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.33.76 - RequestID: t1xmww7cnni +2025-06-18T14:31:52.181Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 496ms - Rows affected: 25 - RequestID: qcdu83x9im +2025-06-18T14:31:52.281Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 1824ms - IP: 192.168.240.169 - User: user_1022 - RequestID: ww8bz056jw +2025-06-18T14:31:52.381Z [TRACE] payment-service - Auth event: login_success - User: user_1015 - IP: 192.168.138.123 - RequestID: 771k5tduuzt +2025-06-18T14:31:52.481Z [TRACE] order-service - Operation: order_created - Processing time: 393ms - RequestID: bzlrb65m5bb +2025-06-18T14:31:52.581Z [DEBUG] user-service - Database DELETE on orders - Execution time: 222ms - Rows affected: 36 - RequestID: xomxa73khjr +2025-06-18T14:31:52.681Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 403 - Response time: 824ms - IP: 192.168.10.184 - User: user_1081 - RequestID: 5m5i95wiere +2025-06-18T14:31:52.781Z [INFO] payment-service - Database DELETE on orders - Execution time: 398ms - Rows affected: 82 - RequestID: 9lshvws4la +2025-06-18T14:31:52.881Z [TRACE] order-service - Auth event: logout - User: user_1048 - IP: 192.168.13.72 - RequestID: kwr4gtxr7ck +2025-06-18T14:31:52.981Z [TRACE] auth-service - GET /api/v1/payments - Status: 500 - Response time: 1662ms - IP: 192.168.79.141 - User: user_1031 - RequestID: mhsqz2u22zq +2025-06-18T14:31:53.081Z [INFO] inventory-service - Database UPDATE on users - Execution time: 331ms - Rows affected: 51 - RequestID: h0tyl42yrao +2025-06-18T14:31:53.181Z [INFO] user-service - Operation: cache_hit - Processing time: 760ms - RequestID: ry8784xipqm +2025-06-18T14:31:53.281Z [TRACE] notification-service - Operation: cache_miss - Processing time: 951ms - RequestID: oepfeg09c2 +2025-06-18T14:31:53.381Z [INFO] auth-service - Operation: email_sent - Processing time: 212ms - RequestID: gleuxhmmvgn +2025-06-18T14:31:53.481Z [INFO] user-service - Operation: webhook_sent - Processing time: 390ms - RequestID: 53954um84vx +2025-06-18T14:31:53.581Z [DEBUG] auth-service - Database SELECT on users - Execution time: 444ms - Rows affected: 71 - RequestID: qu8xd5mzssm +2025-06-18T14:31:53.681Z [DEBUG] order-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.1.152 - RequestID: zx57n27itld +2025-06-18T14:31:53.781Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 356ms - Rows affected: 32 - RequestID: tqircs43bhg +2025-06-18T14:31:53.881Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 26ms - Rows affected: 38 - RequestID: dg2dudwfdar +2025-06-18T14:31:53.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.31.117 - RequestID: 23kjf48gepa +2025-06-18T14:31:54.081Z [INFO] order-service - PUT /api/v1/inventory - Status: 404 - Response time: 233ms - IP: 192.168.11.60 - User: user_1037 - RequestID: 8j848j62fpy +2025-06-18T14:31:54.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 729ms - RequestID: jgve1hh9p6o +2025-06-18T14:31:54.281Z [TRACE] order-service - Operation: cache_hit - Processing time: 272ms - RequestID: bhqfdc7evn +2025-06-18T14:31:54.381Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1093ms - IP: 192.168.28.146 - User: user_1060 - RequestID: 6ki8e05p6i7 +2025-06-18T14:31:54.481Z [DEBUG] order-service - PUT /api/v1/orders - Status: 404 - Response time: 923ms - IP: 192.168.159.94 - User: user_1044 - RequestID: fuoynxo62vp +2025-06-18T14:31:54.581Z [DEBUG] auth-service - Auth event: login_success - User: user_1062 - IP: 192.168.30.79 - RequestID: fga54vif0cj +2025-06-18T14:31:54.681Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 401 - Response time: 637ms - IP: 192.168.181.225 - User: user_1051 - RequestID: tjgmhmh48w +2025-06-18T14:31:54.781Z [INFO] auth-service - Operation: email_sent - Processing time: 541ms - RequestID: 9hrienpxvyk +2025-06-18T14:31:54.881Z [DEBUG] user-service - Operation: order_created - Processing time: 1012ms - RequestID: 855mxnc1y26 +2025-06-18T14:31:54.981Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 107ms - Rows affected: 42 - RequestID: hxx2lrfapb +2025-06-18T14:31:55.081Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 878ms - RequestID: fqye0cmdavw +2025-06-18T14:31:55.181Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 458ms - Rows affected: 56 - RequestID: 196ih5oqur +2025-06-18T14:31:55.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 481ms - RequestID: 7tk5sxcp3oy +2025-06-18T14:31:55.381Z [INFO] inventory-service - Auth event: login_failed - User: user_1053 - IP: 192.168.144.38 - RequestID: uip9hl71tt +2025-06-18T14:31:55.481Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 137ms - Rows affected: 52 - RequestID: dpo4z7ld7h +2025-06-18T14:31:55.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1005 - IP: 192.168.227.233 - RequestID: k9lxv7ov01 +2025-06-18T14:31:55.681Z [TRACE] notification-service - POST /api/v1/users - Status: 201 - Response time: 117ms - IP: 192.168.240.169 - User: user_1030 - RequestID: 7w1q080ov7x +2025-06-18T14:31:55.781Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 110ms - Rows affected: 15 - RequestID: 8b5aio1nlak +2025-06-18T14:31:55.881Z [INFO] user-service - Operation: cache_miss - Processing time: 163ms - RequestID: 838fwseolod +2025-06-18T14:31:55.981Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 258ms - Rows affected: 85 - RequestID: s5qlunwlsmg +2025-06-18T14:31:56.081Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 378ms - RequestID: pjuew2mzvkl +2025-06-18T14:31:56.181Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1046ms - IP: 192.168.97.87 - User: user_1056 - RequestID: 3n1zoql85jb +2025-06-18T14:31:56.281Z [TRACE] notification-service - Auth event: logout - User: user_1040 - IP: 192.168.138.123 - RequestID: 6enulk3x4i3 +2025-06-18T14:31:56.381Z [INFO] order-service - Operation: cache_hit - Processing time: 1046ms - RequestID: 1e814hx7tee +2025-06-18T14:31:56.481Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 173ms - RequestID: lmg7o3vvd1d +2025-06-18T14:31:56.581Z [INFO] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 1649ms - IP: 192.168.79.143 - User: user_1088 - RequestID: mfwpt0lp02g +2025-06-18T14:31:56.681Z [DEBUG] order-service - Operation: cache_miss - Processing time: 228ms - RequestID: 81iqbsvy2oh +2025-06-18T14:31:56.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.104.37 - RequestID: o3rgoekrr1k +2025-06-18T14:31:56.881Z [DEBUG] payment-service - Operation: email_sent - Processing time: 514ms - RequestID: wsla9i4uk3e +2025-06-18T14:31:56.981Z [TRACE] notification-service - Database UPDATE on users - Execution time: 500ms - Rows affected: 8 - RequestID: p6wwtvj7728 +2025-06-18T14:31:57.081Z [TRACE] user-service - Auth event: login_failed - User: user_1086 - IP: 192.168.147.171 - RequestID: evkdru9pte +2025-06-18T14:31:57.181Z [INFO] order-service - POST /api/v1/inventory - Status: 403 - Response time: 158ms - IP: 192.168.187.199 - User: user_1048 - RequestID: 724og476u5i +2025-06-18T14:31:57.281Z [TRACE] order-service - Operation: order_created - Processing time: 574ms - RequestID: l7mwcmcs0ir +2025-06-18T14:31:57.381Z [DEBUG] user-service - PUT /api/v1/users - Status: 403 - Response time: 1459ms - IP: 192.168.53.133 - User: user_1036 - RequestID: alpnks1t5g +2025-06-18T14:31:57.481Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 503 - Response time: 46ms - IP: 192.168.229.123 - User: user_1097 - RequestID: uw3w71ga9mk +2025-06-18T14:31:57.581Z [DEBUG] user-service - Auth event: login_failed - User: user_1045 - IP: 192.168.232.72 - RequestID: jta5l5403w +2025-06-18T14:31:57.681Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 725ms - IP: 192.168.44.5 - User: user_1036 - RequestID: 66ixra3u3l +2025-06-18T14:31:57.781Z [TRACE] user-service - Database UPDATE on users - Execution time: 183ms - Rows affected: 67 - RequestID: iarv6vvhkxs +2025-06-18T14:31:57.881Z [TRACE] inventory-service - GET /api/v1/users - Status: 503 - Response time: 1737ms - IP: 192.168.232.72 - User: user_1040 - RequestID: f35rymwxmh9 +2025-06-18T14:31:57.981Z [TRACE] order-service - Database SELECT on orders - Execution time: 361ms - Rows affected: 20 - RequestID: fnzkmfaqnmc +2025-06-18T14:31:58.081Z [INFO] auth-service - Database UPDATE on payments - Execution time: 325ms - Rows affected: 55 - RequestID: x37nkyxp5ba +2025-06-18T14:31:58.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 403ms - RequestID: 8no2ls5phpd +2025-06-18T14:31:58.281Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 200 - Response time: 96ms - IP: 192.168.11.60 - User: user_1067 - RequestID: 4vi4ok8srvu +2025-06-18T14:31:58.381Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 206ms - Rows affected: 42 - RequestID: zbn00pdjxni +2025-06-18T14:31:58.481Z [TRACE] notification-service - POST /api/v1/users - Status: 503 - Response time: 194ms - IP: 192.168.133.7 - User: user_1014 - RequestID: 4n9yxrrzwhk +2025-06-18T14:31:58.581Z [INFO] auth-service - DELETE /api/v1/orders - Status: 502 - Response time: 59ms - IP: 192.168.159.94 - User: user_1045 - RequestID: iyglcfr9grc +2025-06-18T14:31:58.681Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 88ms - Rows affected: 71 - RequestID: 1lea17d6cwc +2025-06-18T14:31:58.781Z [INFO] order-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1356ms - IP: 192.168.68.128 - User: user_1029 - RequestID: cpbp9xwwb8r +2025-06-18T14:31:58.881Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 580ms - IP: 192.168.187.199 - User: user_1032 - RequestID: 4236knjv4n6 +2025-06-18T14:31:58.981Z [INFO] auth-service - Auth event: login_failed - User: user_1005 - IP: 192.168.227.233 - RequestID: bp39zu23gp +2025-06-18T14:31:59.081Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1938ms - IP: 192.168.196.226 - User: user_1083 - RequestID: ulafzwxbumi +2025-06-18T14:31:59.181Z [INFO] inventory-service - Operation: email_sent - Processing time: 911ms - RequestID: 44b1vxzedxm +2025-06-18T14:31:59.281Z [INFO] order-service - Operation: payment_processed - Processing time: 688ms - RequestID: 8pgdj7k8kyv +2025-06-18T14:31:59.381Z [DEBUG] order-service - Auth event: login_success - User: user_1013 - IP: 192.168.14.77 - RequestID: s8yrcvgjb3i +2025-06-18T14:31:59.481Z [INFO] auth-service - Operation: order_created - Processing time: 237ms - RequestID: 53xv3d59eq2 +2025-06-18T14:31:59.581Z [TRACE] inventory-service - Auth event: logout - User: user_1019 - IP: 192.168.141.100 - RequestID: ceuu1gbdzil +2025-06-18T14:31:59.681Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1030ms - IP: 192.168.138.123 - User: user_1005 - RequestID: l2qd76y5os9 +2025-06-18T14:31:59.781Z [INFO] auth-service - Operation: notification_queued - Processing time: 256ms - RequestID: 04hkuksy5gly +2025-06-18T14:31:59.881Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 185ms - Rows affected: 60 - RequestID: z5tw99ko3m +2025-06-18T14:31:59.981Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 481ms - Rows affected: 72 - RequestID: vrfeq3f0vvj +2025-06-18T14:32:00.081Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1445ms - IP: 192.168.141.100 - User: user_1081 - RequestID: c7gcrm22wrh +2025-06-18T14:32:00.181Z [TRACE] order-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.100.240 - RequestID: 8aeyox7vvgr +2025-06-18T14:32:00.281Z [INFO] auth-service - PATCH /api/v1/users - Status: 503 - Response time: 932ms - IP: 192.168.33.76 - User: user_1057 - RequestID: aqbrctrfa77 +2025-06-18T14:32:00.381Z [TRACE] auth-service - Auth event: login_failed - User: user_1010 - IP: 192.168.144.38 - RequestID: o374tc9zvhk +2025-06-18T14:32:00.481Z [TRACE] user-service - Auth event: logout - User: user_1050 - IP: 192.168.227.233 - RequestID: svklfmie64q +2025-06-18T14:32:00.581Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 200 - Response time: 526ms - IP: 192.168.97.87 - User: user_1053 - RequestID: heoq9kq8oup +2025-06-18T14:32:00.681Z [TRACE] order-service - Operation: inventory_updated - Processing time: 273ms - RequestID: 4gj84obicva +2025-06-18T14:32:00.781Z [DEBUG] auth-service - Operation: email_sent - Processing time: 866ms - RequestID: rk4xrzs8l5o +2025-06-18T14:32:00.881Z [TRACE] order-service - Auth event: login_success - User: user_1037 - IP: 192.168.133.7 - RequestID: pij1zscozpc +2025-06-18T14:32:00.981Z [DEBUG] payment-service - Auth event: login_success - User: user_1016 - IP: 192.168.79.141 - RequestID: 6to14tcurgv +2025-06-18T14:32:01.081Z [TRACE] user-service - POST /api/v1/inventory - Status: 200 - Response time: 1462ms - IP: 192.168.227.233 - User: user_1056 - RequestID: 9i571k34z9g +2025-06-18T14:32:01.181Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 882ms - IP: 192.168.113.218 - User: user_1047 - RequestID: 4b7qqubz1sp +2025-06-18T14:32:01.281Z [TRACE] auth-service - Database INSERT on users - Execution time: 126ms - Rows affected: 99 - RequestID: 5rpyygl3f35 +2025-06-18T14:32:01.381Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1912ms - IP: 192.168.53.133 - User: user_1078 - RequestID: gn5be3npalq +2025-06-18T14:32:01.481Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 224ms - IP: 192.168.44.5 - User: user_1035 - RequestID: gakdom94vbu +2025-06-18T14:32:01.581Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 859ms - RequestID: spk7loy6bt8 +2025-06-18T14:32:01.681Z [DEBUG] payment-service - Auth event: login_success - User: user_1039 - IP: 192.168.14.77 - RequestID: 96b1pmmgwsu +2025-06-18T14:32:01.781Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 274ms - Rows affected: 50 - RequestID: 0s497pjjgcdc +2025-06-18T14:32:01.881Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 446ms - Rows affected: 49 - RequestID: zhhqcvo6lgk +2025-06-18T14:32:01.981Z [TRACE] order-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.85.229 - RequestID: owtqa7eaw5 +2025-06-18T14:32:02.081Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 438ms - Rows affected: 13 - RequestID: e4tjkgcp058 +2025-06-18T14:32:02.181Z [INFO] payment-service - Operation: cache_hit - Processing time: 368ms - RequestID: oa6sex5tmm9 +2025-06-18T14:32:02.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 560ms - RequestID: v9t73c16qnk +2025-06-18T14:32:02.381Z [TRACE] payment-service - Database INSERT on orders - Execution time: 490ms - Rows affected: 42 - RequestID: i53zpplpxir +2025-06-18T14:32:02.481Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 201 - Response time: 727ms - IP: 192.168.11.60 - User: user_1020 - RequestID: y48j6jueqca +2025-06-18T14:32:02.581Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 450ms - Rows affected: 6 - RequestID: kriv8y3h19a +2025-06-18T14:32:02.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 779ms - RequestID: 8y92g30u9vm +2025-06-18T14:32:02.781Z [INFO] user-service - POST /api/v1/auth/logout - Status: 400 - Response time: 184ms - IP: 192.168.1.152 - User: user_1007 - RequestID: hm8x3uzx7hf +2025-06-18T14:32:02.881Z [DEBUG] user-service - POST /api/v1/inventory - Status: 500 - Response time: 852ms - IP: 192.168.235.117 - User: user_1068 - RequestID: i4nmz1o3wj +2025-06-18T14:32:02.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.30.79 - RequestID: 3e0xheq2t5k +2025-06-18T14:32:03.081Z [TRACE] notification-service - GET /api/v1/payments - Status: 200 - Response time: 1892ms - IP: 192.168.113.218 - User: user_1083 - RequestID: mjihbcytkb +2025-06-18T14:32:03.181Z [INFO] payment-service - Operation: cache_hit - Processing time: 925ms - RequestID: qz72liw2ddg +2025-06-18T14:32:03.281Z [TRACE] user-service - Auth event: logout - User: user_1052 - IP: 192.168.133.7 - RequestID: 2mnocflutvg +2025-06-18T14:32:03.381Z [TRACE] order-service - GET /api/v1/users - Status: 502 - Response time: 898ms - IP: 192.168.30.79 - User: user_1052 - RequestID: dpa4unki25l +2025-06-18T14:32:03.481Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 502 - Response time: 616ms - IP: 192.168.100.240 - User: user_1029 - RequestID: n81appmy3a +2025-06-18T14:32:03.581Z [INFO] payment-service - Operation: cache_hit - Processing time: 625ms - RequestID: pbl5emsp8me +2025-06-18T14:32:03.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 73ms - RequestID: w15s06gs6lf +2025-06-18T14:32:03.781Z [INFO] user-service - Operation: order_created - Processing time: 693ms - RequestID: xgumir6uabs +2025-06-18T14:32:03.881Z [TRACE] order-service - Operation: order_created - Processing time: 652ms - RequestID: yijhtvhvqv +2025-06-18T14:32:03.981Z [INFO] notification-service - Auth event: login_failed - User: user_1025 - IP: 192.168.240.169 - RequestID: a5nq8af15rk +2025-06-18T14:32:04.081Z [INFO] user-service - Operation: webhook_sent - Processing time: 758ms - RequestID: 856blx309sy +2025-06-18T14:32:04.181Z [INFO] payment-service - GET /api/v1/inventory - Status: 404 - Response time: 1346ms - IP: 192.168.194.41 - User: user_1042 - RequestID: 7j2w50sdn1c +2025-06-18T14:32:04.281Z [TRACE] auth-service - Operation: payment_processed - Processing time: 228ms - RequestID: 64m5swzgv8c +2025-06-18T14:32:04.381Z [INFO] auth-service - Auth event: password_change - User: user_1039 - IP: 192.168.33.76 - RequestID: c8jlrajcf9g +2025-06-18T14:32:04.481Z [INFO] order-service - Operation: cache_miss - Processing time: 717ms - RequestID: c7x1s9xzpxj +2025-06-18T14:32:04.581Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 316ms - Rows affected: 11 - RequestID: ftvipwtbkdr +2025-06-18T14:32:04.681Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 494ms - Rows affected: 1 - RequestID: r920q5sfoeq +2025-06-18T14:32:04.781Z [TRACE] auth-service - Operation: order_created - Processing time: 876ms - RequestID: pncqzd6y5mh +2025-06-18T14:32:04.881Z [TRACE] notification-service - Auth event: logout - User: user_1056 - IP: 192.168.11.60 - RequestID: 3xfdcy8qyx1 +2025-06-18T14:32:04.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1061 - IP: 192.168.147.171 - RequestID: k0pcdsl8ulc +2025-06-18T14:32:05.081Z [TRACE] auth-service - Operation: cache_hit - Processing time: 70ms - RequestID: 01mewtt4xsyi +2025-06-18T14:32:05.181Z [TRACE] order-service - Auth event: login_success - User: user_1041 - IP: 192.168.10.184 - RequestID: rmejw4fnjns +2025-06-18T14:32:05.281Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 270ms - Rows affected: 73 - RequestID: qx4k0yaccfo +2025-06-18T14:32:05.381Z [INFO] inventory-service - Database DELETE on products - Execution time: 263ms - Rows affected: 59 - RequestID: uw9woojqzri +2025-06-18T14:32:05.481Z [INFO] order-service - PATCH /api/v1/users - Status: 500 - Response time: 1762ms - IP: 192.168.79.143 - User: user_1032 - RequestID: gb2qpzire4 +2025-06-18T14:32:05.581Z [TRACE] order-service - Operation: email_sent - Processing time: 573ms - RequestID: zp1ry6jjr98 +2025-06-18T14:32:05.681Z [INFO] auth-service - Database SELECT on sessions - Execution time: 93ms - Rows affected: 56 - RequestID: c27989vwtrj +2025-06-18T14:32:05.781Z [DEBUG] order-service - Auth event: login_success - User: user_1027 - IP: 192.168.189.103 - RequestID: h5khfvr34jo +2025-06-18T14:32:05.881Z [DEBUG] user-service - Database DELETE on payments - Execution time: 200ms - Rows affected: 3 - RequestID: 0e6qz05fw417 +2025-06-18T14:32:05.981Z [INFO] user-service - Operation: order_created - Processing time: 247ms - RequestID: ysazvbxvvjp +2025-06-18T14:32:06.081Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 162ms - RequestID: kuzh6aohu2i +2025-06-18T14:32:06.181Z [TRACE] payment-service - Database DELETE on users - Execution time: 386ms - Rows affected: 20 - RequestID: r6lqh89doll +2025-06-18T14:32:06.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 462ms - RequestID: xv86f8kjofi +2025-06-18T14:32:06.381Z [TRACE] notification-service - Database INSERT on products - Execution time: 93ms - Rows affected: 29 - RequestID: i988lfm2u6o +2025-06-18T14:32:06.481Z [INFO] inventory-service - Auth event: login_failed - User: user_1055 - IP: 192.168.211.72 - RequestID: jx760hvfacc +2025-06-18T14:32:06.581Z [DEBUG] payment-service - POST /api/v1/users - Status: 200 - Response time: 421ms - IP: 192.168.30.79 - User: user_1046 - RequestID: a7o6dk2ofap +2025-06-18T14:32:06.681Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 192ms - Rows affected: 62 - RequestID: x69k9qcxn4 +2025-06-18T14:32:06.781Z [TRACE] user-service - Auth event: logout - User: user_1051 - IP: 192.168.79.141 - RequestID: oi38u0yb5ea +2025-06-18T14:32:06.881Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 76ms - IP: 192.168.100.240 - User: user_1030 - RequestID: yphjkondtm +2025-06-18T14:32:06.981Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 500 - Response time: 1299ms - IP: 192.168.147.171 - User: user_1088 - RequestID: hiz6fmxgul +2025-06-18T14:32:07.081Z [TRACE] notification-service - Database INSERT on payments - Execution time: 358ms - Rows affected: 47 - RequestID: b2kd960zjj6 +2025-06-18T14:32:07.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 789ms - RequestID: 4tn00df4kk +2025-06-18T14:32:07.281Z [INFO] notification-service - Operation: notification_queued - Processing time: 803ms - RequestID: oxuwax8f6h +2025-06-18T14:32:07.381Z [INFO] order-service - Database SELECT on orders - Execution time: 113ms - Rows affected: 25 - RequestID: u9aqd3xz0r +2025-06-18T14:32:07.481Z [INFO] user-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.85.229 - RequestID: 6bc7kwkmmhp +2025-06-18T14:32:07.581Z [DEBUG] payment-service - Auth event: login_failed - User: user_1057 - IP: 192.168.158.144 - RequestID: thrafc91hss +2025-06-18T14:32:07.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.147.171 - RequestID: sf094tw68q +2025-06-18T14:32:07.781Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 355ms - RequestID: 9g96d4e0qvu +2025-06-18T14:32:07.881Z [TRACE] payment-service - Auth event: login_success - User: user_1079 - IP: 192.168.247.134 - RequestID: r0ou2iqws5 +2025-06-18T14:32:07.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 338ms - RequestID: fkj4mleq4ct +2025-06-18T14:32:08.081Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 1033ms - RequestID: 5zmuw6j6ge +2025-06-18T14:32:08.181Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1676ms - IP: 192.168.100.240 - User: user_1065 - RequestID: 93bcy3t11cq +2025-06-18T14:32:08.281Z [INFO] payment-service - Auth event: login_success - User: user_1065 - IP: 192.168.189.103 - RequestID: 5ghme04tt8j +2025-06-18T14:32:08.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.97.87 - RequestID: a9u2mkdd4km +2025-06-18T14:32:08.481Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 284ms - RequestID: fx99xqnjdsv +2025-06-18T14:32:08.581Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 401 - Response time: 1198ms - IP: 192.168.227.77 - User: user_1093 - RequestID: fpthsbkg1qg +2025-06-18T14:32:08.681Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 852ms - IP: 192.168.211.72 - User: user_1051 - RequestID: ub9t3ndtsyg +2025-06-18T14:32:08.781Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1063ms - IP: 192.168.79.116 - User: user_1009 - RequestID: mr5x8gvkgtb +2025-06-18T14:32:08.881Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 122ms - Rows affected: 69 - RequestID: cuahtf1q1ld +2025-06-18T14:32:08.981Z [INFO] inventory-service - POST /api/v1/users - Status: 503 - Response time: 1006ms - IP: 192.168.174.114 - User: user_1035 - RequestID: sujzxwkjcd +2025-06-18T14:32:09.081Z [DEBUG] order-service - POST /api/v1/users - Status: 401 - Response time: 59ms - IP: 192.168.13.72 - User: user_1024 - RequestID: mzzgk67ukh +2025-06-18T14:32:09.181Z [TRACE] user-service - Database UPDATE on payments - Execution time: 458ms - Rows affected: 67 - RequestID: k17cp49lr0m +2025-06-18T14:32:09.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.147.171 - RequestID: knel3lq7a3c +2025-06-18T14:32:09.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 505ms - RequestID: a0glr9amlk4 +2025-06-18T14:32:09.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 616ms - RequestID: jggheeg4j88 +2025-06-18T14:32:09.581Z [TRACE] user-service - Operation: order_created - Processing time: 557ms - RequestID: 4l7zhrpaqg5 +2025-06-18T14:32:09.681Z [TRACE] auth-service - Auth event: login_success - User: user_1041 - IP: 192.168.30.79 - RequestID: 1wq18dvrdpuj +2025-06-18T14:32:09.781Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1050ms - IP: 192.168.10.184 - User: user_1057 - RequestID: hsyhl67y9pf +2025-06-18T14:32:09.881Z [DEBUG] order-service - Auth event: password_change - User: user_1033 - IP: 192.168.97.87 - RequestID: mso6cgvtno +2025-06-18T14:32:09.981Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 228ms - Rows affected: 28 - RequestID: fw9faj9m2gv +2025-06-18T14:32:10.081Z [TRACE] payment-service - Operation: notification_queued - Processing time: 419ms - RequestID: ekjeglo4y1h +2025-06-18T14:32:10.181Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 212ms - Rows affected: 66 - RequestID: vspr3x5cg +2025-06-18T14:32:10.281Z [TRACE] user-service - Operation: cache_hit - Processing time: 1029ms - RequestID: 9n6fu66wrc4 +2025-06-18T14:32:10.381Z [TRACE] order-service - POST /api/v1/users - Status: 200 - Response time: 942ms - IP: 192.168.14.77 - User: user_1073 - RequestID: quslhohvv1 +2025-06-18T14:32:10.481Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 995ms - IP: 192.168.138.123 - User: user_1058 - RequestID: fkaesytp3r +2025-06-18T14:32:10.581Z [INFO] payment-service - Operation: cache_hit - Processing time: 1002ms - RequestID: jawsbm0xpst +2025-06-18T14:32:10.681Z [INFO] inventory-service - Operation: email_sent - Processing time: 572ms - RequestID: 4wzi13kd7w +2025-06-18T14:32:10.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 463ms - RequestID: e9ps6fe6dq +2025-06-18T14:32:10.881Z [DEBUG] payment-service - POST /api/v1/payments - Status: 400 - Response time: 766ms - IP: 192.168.30.79 - User: user_1066 - RequestID: 35uy1pci4y5 +2025-06-18T14:32:10.981Z [DEBUG] user-service - PUT /api/v1/payments - Status: 503 - Response time: 443ms - IP: 192.168.44.5 - User: user_1094 - RequestID: nw3zi06tbse +2025-06-18T14:32:11.081Z [DEBUG] user-service - GET /api/v1/inventory - Status: 503 - Response time: 1901ms - IP: 192.168.13.72 - User: user_1094 - RequestID: z63ko8j4a2n +2025-06-18T14:32:11.181Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 503 - Response time: 530ms - IP: 192.168.194.41 - User: user_1038 - RequestID: br66zsnd4o6 +2025-06-18T14:32:11.281Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 449ms - Rows affected: 51 - RequestID: 6pig0ewark5 +2025-06-18T14:32:11.381Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.64.33 - RequestID: 9xjhigqunc +2025-06-18T14:32:11.481Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 201 - Response time: 1956ms - IP: 192.168.227.77 - User: user_1071 - RequestID: hudo91iu0g +2025-06-18T14:32:11.581Z [INFO] auth-service - Operation: cache_miss - Processing time: 361ms - RequestID: cld1e0j8pvg +2025-06-18T14:32:11.681Z [DEBUG] payment-service - GET /api/v1/orders - Status: 404 - Response time: 1710ms - IP: 192.168.187.199 - User: user_1065 - RequestID: ci6qq5d8p2t +2025-06-18T14:32:11.781Z [TRACE] auth-service - GET /api/v1/orders - Status: 502 - Response time: 943ms - IP: 192.168.187.199 - User: user_1094 - RequestID: q9recb41stp +2025-06-18T14:32:11.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 104ms - RequestID: bcthfrjwh9k +2025-06-18T14:32:11.981Z [TRACE] order-service - Database DELETE on sessions - Execution time: 405ms - Rows affected: 72 - RequestID: x71z5ln0dle +2025-06-18T14:32:12.081Z [INFO] user-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.133.7 - RequestID: 202fm1tn7qf +2025-06-18T14:32:12.181Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 404 - Response time: 522ms - IP: 192.168.31.117 - User: user_1097 - RequestID: xy35wbeplkj +2025-06-18T14:32:12.281Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 299ms - Rows affected: 77 - RequestID: wuntbbciz8 +2025-06-18T14:32:12.381Z [INFO] inventory-service - Operation: cache_hit - Processing time: 84ms - RequestID: 7yg3udb8246 +2025-06-18T14:32:12.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1038 - IP: 192.168.68.158 - RequestID: 1b465ha0ny6 +2025-06-18T14:32:12.581Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 461ms - Rows affected: 83 - RequestID: 5u04ua687vt +2025-06-18T14:32:12.681Z [DEBUG] auth-service - Auth event: login_failed - User: user_1017 - IP: 192.168.1.152 - RequestID: 7xe5w55mpx2 +2025-06-18T14:32:12.781Z [INFO] notification-service - Database UPDATE on products - Execution time: 189ms - Rows affected: 48 - RequestID: rfnsx0rbmxm +2025-06-18T14:32:12.881Z [TRACE] order-service - Operation: cache_hit - Processing time: 985ms - RequestID: gj82gq97jtm +2025-06-18T14:32:12.981Z [TRACE] payment-service - Database UPDATE on products - Execution time: 171ms - Rows affected: 26 - RequestID: bjmfol7vqqu +2025-06-18T14:32:13.081Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 503 - Response time: 1293ms - IP: 192.168.232.72 - User: user_1052 - RequestID: krqcckb797b +2025-06-18T14:32:13.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1008 - IP: 192.168.242.165 - RequestID: glfiluxqk9t +2025-06-18T14:32:13.281Z [DEBUG] auth-service - Auth event: login_failed - User: user_1019 - IP: 192.168.46.63 - RequestID: bwv0bjs0a54 +2025-06-18T14:32:13.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 997ms - RequestID: tcwkv98els +2025-06-18T14:32:13.481Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 90ms - Rows affected: 30 - RequestID: lkk0ur540cb +2025-06-18T14:32:13.581Z [TRACE] notification-service - Database UPDATE on products - Execution time: 138ms - Rows affected: 68 - RequestID: l9l687ydeah +2025-06-18T14:32:13.681Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 1919ms - IP: 192.168.79.141 - User: user_1089 - RequestID: nfcxi8zhxz +2025-06-18T14:32:13.781Z [DEBUG] order-service - Auth event: login_success - User: user_1008 - IP: 192.168.79.116 - RequestID: iwdy76sew9n +2025-06-18T14:32:13.881Z [DEBUG] user-service - Auth event: logout - User: user_1037 - IP: 192.168.141.100 - RequestID: l4yle4mgdo +2025-06-18T14:32:13.981Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.113.218 - RequestID: e6eyeo59uqi +2025-06-18T14:32:14.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.232.72 - RequestID: hv6c3nrce2g +2025-06-18T14:32:14.181Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1016 - IP: 192.168.68.128 - RequestID: gu63q531v8l +2025-06-18T14:32:14.281Z [INFO] user-service - PUT /api/v1/auth/login - Status: 401 - Response time: 181ms - IP: 192.168.158.144 - User: user_1073 - RequestID: an8ifhr5fwp +2025-06-18T14:32:14.381Z [TRACE] payment-service - Database DELETE on users - Execution time: 30ms - Rows affected: 65 - RequestID: p3d8baa5va +2025-06-18T14:32:14.481Z [INFO] notification-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.85.229 - RequestID: ad3op8bt8wa +2025-06-18T14:32:14.581Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 839ms - IP: 192.168.33.76 - User: user_1099 - RequestID: 6fckk937xsy +2025-06-18T14:32:14.681Z [DEBUG] notification-service - Database INSERT on products - Execution time: 278ms - Rows affected: 52 - RequestID: 3wsapbnbfdw +2025-06-18T14:32:14.781Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 736ms - RequestID: k41inlndby +2025-06-18T14:32:14.881Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 175ms - RequestID: 11dncbcr9ei +2025-06-18T14:32:14.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.232.72 - RequestID: o30zbuo3ej +2025-06-18T14:32:15.081Z [TRACE] order-service - Database INSERT on products - Execution time: 89ms - Rows affected: 10 - RequestID: xpmtpvw037 +2025-06-18T14:32:15.181Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1437ms - IP: 192.168.194.41 - User: user_1086 - RequestID: 2mz4f51vmwv +2025-06-18T14:32:15.281Z [INFO] user-service - Auth event: password_change - User: user_1082 - IP: 192.168.36.218 - RequestID: umsnw6acgxg +2025-06-18T14:32:15.381Z [TRACE] user-service - Database SELECT on products - Execution time: 363ms - Rows affected: 37 - RequestID: jofryuxkuh +2025-06-18T14:32:15.481Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 320ms - RequestID: pl3817k0quc +2025-06-18T14:32:15.581Z [INFO] auth-service - Operation: inventory_updated - Processing time: 722ms - RequestID: 16kfgr4lok4 +2025-06-18T14:32:15.681Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1119ms - IP: 192.168.159.94 - User: user_1068 - RequestID: 7hi9dev8rd3 +2025-06-18T14:32:15.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.31.117 - RequestID: sk2m6eyjwl +2025-06-18T14:32:15.881Z [INFO] auth-service - Database INSERT on orders - Execution time: 113ms - Rows affected: 61 - RequestID: u94x0luy0g +2025-06-18T14:32:15.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1032 - IP: 192.168.181.225 - RequestID: j4bl3wrn29 +2025-06-18T14:32:16.081Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.240.169 - RequestID: l17koz195m +2025-06-18T14:32:16.181Z [TRACE] user-service - Database SELECT on products - Execution time: 382ms - Rows affected: 41 - RequestID: 877i9scufsx +2025-06-18T14:32:16.281Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 186ms - RequestID: iyca4zcinnr +2025-06-18T14:32:16.381Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 111ms - Rows affected: 57 - RequestID: ox6bw9pwpkn +2025-06-18T14:32:16.481Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 500 - Response time: 186ms - IP: 192.168.227.233 - User: user_1036 - RequestID: x0pq9w5win +2025-06-18T14:32:16.581Z [INFO] order-service - Operation: email_sent - Processing time: 914ms - RequestID: lzbmq1j1fo8 +2025-06-18T14:32:16.681Z [TRACE] user-service - DELETE /api/v1/payments - Status: 403 - Response time: 530ms - IP: 192.168.28.146 - User: user_1092 - RequestID: 37nn1u7q99h +2025-06-18T14:32:16.781Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 846ms - RequestID: 25ubr6hdte +2025-06-18T14:32:16.881Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 401 - Response time: 399ms - IP: 192.168.138.123 - User: user_1078 - RequestID: c7j14xc31ip +2025-06-18T14:32:16.981Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 243ms - Rows affected: 81 - RequestID: tg7meseeod +2025-06-18T14:32:17.081Z [INFO] user-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.181.225 - RequestID: vwn6slisje +2025-06-18T14:32:17.181Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 400 - Response time: 1799ms - IP: 192.168.242.165 - User: user_1036 - RequestID: 96tg92gbq +2025-06-18T14:32:17.281Z [INFO] order-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.100.240 - RequestID: of8doswy4xq +2025-06-18T14:32:17.381Z [DEBUG] order-service - Database DELETE on payments - Execution time: 274ms - Rows affected: 83 - RequestID: 4z7gy3yd3b9 +2025-06-18T14:32:17.481Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 853ms - IP: 192.168.196.226 - User: user_1059 - RequestID: 8b53jdjj5cd +2025-06-18T14:32:17.581Z [TRACE] order-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.189.103 - RequestID: 0efc3wnljtml +2025-06-18T14:32:17.681Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 502 - Response time: 1272ms - IP: 192.168.68.158 - User: user_1066 - RequestID: yigjt56w4ha +2025-06-18T14:32:17.781Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 430ms - RequestID: kcg3rn3g6ig +2025-06-18T14:32:17.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 208ms - RequestID: 5p9w1b2yfrh +2025-06-18T14:32:17.981Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 147ms - RequestID: 6zopefvkk1p +2025-06-18T14:32:18.081Z [DEBUG] user-service - Auth event: password_change - User: user_1037 - IP: 192.168.187.199 - RequestID: 7u93emxoxp3 +2025-06-18T14:32:18.181Z [TRACE] inventory-service - Database INSERT on users - Execution time: 496ms - Rows affected: 71 - RequestID: sxfmnakoidj +2025-06-18T14:32:18.281Z [DEBUG] order-service - PATCH /api/v1/users - Status: 200 - Response time: 1605ms - IP: 192.168.229.123 - User: user_1097 - RequestID: d5cutdwapc +2025-06-18T14:32:18.381Z [INFO] payment-service - Database INSERT on users - Execution time: 439ms - Rows affected: 48 - RequestID: uvxm1n61bd +2025-06-18T14:32:18.481Z [DEBUG] notification-service - Database INSERT on users - Execution time: 115ms - Rows affected: 78 - RequestID: ek6vskxsee6 +2025-06-18T14:32:18.581Z [TRACE] notification-service - Auth event: login_success - User: user_1034 - IP: 192.168.147.171 - RequestID: 5of81lfjef +2025-06-18T14:32:18.681Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 374ms - Rows affected: 18 - RequestID: isl3mhiuuz +2025-06-18T14:32:18.781Z [TRACE] auth-service - Database DELETE on products - Execution time: 310ms - Rows affected: 5 - RequestID: f9vgw4z0jm +2025-06-18T14:32:18.881Z [TRACE] user-service - Database SELECT on payments - Execution time: 387ms - Rows affected: 4 - RequestID: fpioi6vej9u +2025-06-18T14:32:18.981Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 196ms - Rows affected: 63 - RequestID: 2x7w3lzx10w +2025-06-18T14:32:19.081Z [INFO] user-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.64.33 - RequestID: 2iyv741pog2 +2025-06-18T14:32:19.181Z [INFO] notification-service - Auth event: password_change - User: user_1000 - IP: 192.168.242.165 - RequestID: vwep2snyrwj +2025-06-18T14:32:19.281Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.138.123 - RequestID: qluqa2syzsr +2025-06-18T14:32:19.381Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 690ms - RequestID: d6gr3nzaupv +2025-06-18T14:32:19.481Z [INFO] notification-service - Operation: inventory_updated - Processing time: 989ms - RequestID: 9h2hxj65p2 +2025-06-18T14:32:19.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 350ms - RequestID: jjf5x3ydvy +2025-06-18T14:32:19.681Z [TRACE] notification-service - Operation: notification_queued - Processing time: 974ms - RequestID: clt903ego5s +2025-06-18T14:32:19.781Z [INFO] order-service - Operation: notification_queued - Processing time: 906ms - RequestID: 31dd89p5pru +2025-06-18T14:32:19.881Z [INFO] auth-service - Auth event: password_change - User: user_1009 - IP: 192.168.194.41 - RequestID: px60z9uzk4 +2025-06-18T14:32:19.981Z [TRACE] payment-service - Auth event: login_failed - User: user_1034 - IP: 192.168.31.117 - RequestID: nbq4ahk0ev +2025-06-18T14:32:20.081Z [INFO] payment-service - Auth event: password_change - User: user_1000 - IP: 192.168.10.184 - RequestID: lojl4bvanrp +2025-06-18T14:32:20.181Z [TRACE] notification-service - Database SELECT on payments - Execution time: 300ms - Rows affected: 78 - RequestID: le6jkfglobp +2025-06-18T14:32:20.281Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 917ms - IP: 192.168.14.77 - User: user_1087 - RequestID: 6hjb960mnxk +2025-06-18T14:32:20.381Z [DEBUG] user-service - GET /api/v1/payments - Status: 404 - Response time: 125ms - IP: 192.168.33.76 - User: user_1091 - RequestID: cldlg34ta2i +2025-06-18T14:32:20.481Z [TRACE] order-service - GET /api/v1/orders - Status: 401 - Response time: 492ms - IP: 192.168.240.169 - User: user_1089 - RequestID: ujs2rg6piuh +2025-06-18T14:32:20.581Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 272ms - IP: 192.168.10.184 - User: user_1024 - RequestID: 7xpdliizs0n +2025-06-18T14:32:20.681Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 323ms - Rows affected: 67 - RequestID: 9hypr9qn054 +2025-06-18T14:32:20.781Z [INFO] user-service - Database DELETE on orders - Execution time: 269ms - Rows affected: 34 - RequestID: qq6mzr5wuv +2025-06-18T14:32:20.881Z [DEBUG] auth-service - Auth event: login_failed - User: user_1098 - IP: 192.168.144.38 - RequestID: 9qvkblzoyjb +2025-06-18T14:32:20.981Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 935ms - IP: 192.168.97.87 - User: user_1076 - RequestID: zrrcgh01lgp +2025-06-18T14:32:21.081Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 435ms - Rows affected: 65 - RequestID: o3jeb4ki6q +2025-06-18T14:32:21.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.147.171 - RequestID: tceckhwvxb +2025-06-18T14:32:21.281Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 315ms - RequestID: guvkbi0q8vd +2025-06-18T14:32:21.381Z [TRACE] inventory-service - Operation: order_created - Processing time: 181ms - RequestID: ufsvowddhme +2025-06-18T14:32:21.481Z [DEBUG] auth-service - Auth event: login_failed - User: user_1007 - IP: 192.168.194.41 - RequestID: 7w4rf7vyi +2025-06-18T14:32:21.581Z [INFO] inventory-service - Database UPDATE on products - Execution time: 488ms - Rows affected: 25 - RequestID: fcffm0qj1eb +2025-06-18T14:32:21.681Z [INFO] notification-service - Operation: order_created - Processing time: 660ms - RequestID: bci9ng8n3bd +2025-06-18T14:32:21.781Z [DEBUG] notification-service - Auth event: logout - User: user_1017 - IP: 192.168.242.165 - RequestID: 9q9br22rk5t +2025-06-18T14:32:21.881Z [TRACE] auth-service - PUT /api/v1/payments - Status: 403 - Response time: 1523ms - IP: 192.168.32.38 - User: user_1068 - RequestID: 7b1j9diqtrv +2025-06-18T14:32:21.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.141.100 - RequestID: 29xyj3zifbp +2025-06-18T14:32:22.081Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 520ms - RequestID: jgheq1r1hrk +2025-06-18T14:32:22.181Z [INFO] auth-service - GET /api/v1/orders - Status: 400 - Response time: 23ms - IP: 192.168.240.169 - User: user_1055 - RequestID: t7i86dz0z8b +2025-06-18T14:32:22.281Z [INFO] order-service - PUT /api/v1/orders - Status: 400 - Response time: 1264ms - IP: 192.168.104.37 - User: user_1008 - RequestID: 89e5wrtw9f8 +2025-06-18T14:32:22.381Z [INFO] payment-service - PATCH /api/v1/users - Status: 503 - Response time: 837ms - IP: 192.168.194.41 - User: user_1091 - RequestID: ct9a9wnqsmp +2025-06-18T14:32:22.481Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 178ms - IP: 192.168.133.7 - User: user_1043 - RequestID: tekhkwmjdaq +2025-06-18T14:32:22.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 860ms - RequestID: horrsis9sk +2025-06-18T14:32:22.681Z [INFO] payment-service - Database SELECT on payments - Execution time: 105ms - Rows affected: 51 - RequestID: x1tm6xozak8 +2025-06-18T14:32:22.781Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 286ms - Rows affected: 66 - RequestID: til5g9sf87 +2025-06-18T14:32:22.881Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 210ms - Rows affected: 40 - RequestID: 15ebqz6ifwe +2025-06-18T14:32:22.981Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 401 - Response time: 1014ms - IP: 192.168.242.165 - User: user_1027 - RequestID: uuhqp4mwvw +2025-06-18T14:32:23.081Z [INFO] payment-service - Auth event: login_success - User: user_1096 - IP: 192.168.247.134 - RequestID: s2y6od4dopm +2025-06-18T14:32:23.181Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 51ms - Rows affected: 99 - RequestID: 0ow3ud88kxi +2025-06-18T14:32:23.281Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1781ms - IP: 192.168.159.94 - User: user_1022 - RequestID: e7128bu9tv +2025-06-18T14:32:23.381Z [INFO] order-service - Database DELETE on orders - Execution time: 256ms - Rows affected: 87 - RequestID: um0iajymt9h +2025-06-18T14:32:23.481Z [DEBUG] payment-service - POST /api/v1/payments - Status: 404 - Response time: 1920ms - IP: 192.168.68.158 - User: user_1040 - RequestID: rf3miob00wa +2025-06-18T14:32:23.581Z [INFO] inventory-service - Auth event: login_success - User: user_1070 - IP: 192.168.170.215 - RequestID: krmwuznitik +2025-06-18T14:32:23.681Z [TRACE] notification-service - Database UPDATE on products - Execution time: 317ms - Rows affected: 49 - RequestID: 7uvr5yuvxxl +2025-06-18T14:32:23.781Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 106ms - RequestID: ay9uyey1uh5 +2025-06-18T14:32:23.881Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 391ms - Rows affected: 69 - RequestID: tyjcsps71eq +2025-06-18T14:32:23.981Z [INFO] order-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.187.199 - RequestID: nt02bllhx7 +2025-06-18T14:32:24.081Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 500 - Response time: 459ms - IP: 192.168.97.87 - User: user_1097 - RequestID: kmr3izvvird +2025-06-18T14:32:24.181Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 86ms - Rows affected: 56 - RequestID: v6jqa22lt9c +2025-06-18T14:32:24.281Z [INFO] user-service - DELETE /api/v1/payments - Status: 201 - Response time: 1944ms - IP: 192.168.81.206 - User: user_1037 - RequestID: kbhedk128q +2025-06-18T14:32:24.381Z [INFO] inventory-service - Database INSERT on users - Execution time: 450ms - Rows affected: 85 - RequestID: ahtqh1czbed +2025-06-18T14:32:24.481Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.79.143 - RequestID: k4rj36givy +2025-06-18T14:32:24.581Z [INFO] notification-service - Database INSERT on products - Execution time: 420ms - Rows affected: 29 - RequestID: m5po96vpc5 +2025-06-18T14:32:24.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1034 - IP: 192.168.187.199 - RequestID: ixnopygmlz +2025-06-18T14:32:24.781Z [TRACE] user-service - Auth event: login_success - User: user_1094 - IP: 192.168.10.184 - RequestID: i2daxchawk +2025-06-18T14:32:24.881Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1624ms - IP: 192.168.181.225 - User: user_1046 - RequestID: pszgsnbsn9 +2025-06-18T14:32:24.981Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 171ms - IP: 192.168.79.116 - User: user_1023 - RequestID: eovu3n5js9g +2025-06-18T14:32:25.081Z [DEBUG] order-service - Operation: order_created - Processing time: 518ms - RequestID: i4hh9kkuyb +2025-06-18T14:32:25.181Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 400 - Response time: 182ms - IP: 192.168.189.103 - User: user_1058 - RequestID: ioijvnnf8ik +2025-06-18T14:32:25.281Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 201 - Response time: 570ms - IP: 192.168.133.7 - User: user_1055 - RequestID: kia0zs31erm +2025-06-18T14:32:25.381Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 307ms - RequestID: 9mvg5eoh7u +2025-06-18T14:32:25.481Z [TRACE] notification-service - Auth event: logout - User: user_1008 - IP: 192.168.85.229 - RequestID: jd8tvvx9rf +2025-06-18T14:32:25.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 605ms - RequestID: ev56uvch6qv +2025-06-18T14:32:25.681Z [INFO] user-service - POST /api/v1/payments - Status: 502 - Response time: 1720ms - IP: 192.168.240.169 - User: user_1087 - RequestID: kejjnp8pbzn +2025-06-18T14:32:25.781Z [INFO] notification-service - Operation: order_created - Processing time: 431ms - RequestID: 689m6u7zcng +2025-06-18T14:32:25.881Z [INFO] user-service - Auth event: login_failed - User: user_1039 - IP: 192.168.28.146 - RequestID: ps1iovoxge +2025-06-18T14:32:25.981Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 200 - Response time: 1946ms - IP: 192.168.170.215 - User: user_1014 - RequestID: ab7tvg0qfd4 +2025-06-18T14:32:26.081Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 404 - Response time: 1656ms - IP: 192.168.159.94 - User: user_1006 - RequestID: eel5cgji63 +2025-06-18T14:32:26.181Z [INFO] notification-service - Database DELETE on sessions - Execution time: 69ms - Rows affected: 96 - RequestID: pgrbjiey1k +2025-06-18T14:32:26.281Z [INFO] notification-service - Operation: payment_processed - Processing time: 574ms - RequestID: xrotnfgnv1d +2025-06-18T14:32:26.381Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 404 - Response time: 476ms - IP: 192.168.68.158 - User: user_1006 - RequestID: klt466guy9e +2025-06-18T14:32:26.481Z [INFO] inventory-service - Database SELECT on orders - Execution time: 484ms - Rows affected: 91 - RequestID: gcdqdsp5e6m +2025-06-18T14:32:26.581Z [INFO] notification-service - Auth event: password_change - User: user_1046 - IP: 192.168.227.77 - RequestID: kwjzouz4m98 +2025-06-18T14:32:26.681Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 963ms - RequestID: 1m2ps4w9uul +2025-06-18T14:32:26.781Z [INFO] payment-service - PUT /api/v1/users - Status: 502 - Response time: 1738ms - IP: 192.168.53.133 - User: user_1033 - RequestID: ktsnsiu6cw +2025-06-18T14:32:26.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 93ms - RequestID: 6imi4z91n0w +2025-06-18T14:32:26.981Z [DEBUG] user-service - Database UPDATE on users - Execution time: 273ms - Rows affected: 0 - RequestID: dr7looq0lg4 +2025-06-18T14:32:27.081Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 385ms - Rows affected: 41 - RequestID: 46brv0jxiz7 +2025-06-18T14:32:27.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1043 - IP: 192.168.133.7 - RequestID: 0jzcxc4xodea +2025-06-18T14:32:27.281Z [INFO] notification-service - Auth event: logout - User: user_1048 - IP: 192.168.79.143 - RequestID: vd3d3tfscu +2025-06-18T14:32:27.381Z [INFO] order-service - Operation: notification_queued - Processing time: 502ms - RequestID: h9nw3oku85 +2025-06-18T14:32:27.481Z [INFO] auth-service - GET /api/v1/inventory - Status: 403 - Response time: 573ms - IP: 192.168.196.226 - User: user_1087 - RequestID: lltn3ej3oi +2025-06-18T14:32:27.581Z [INFO] order-service - Auth event: logout - User: user_1051 - IP: 192.168.33.76 - RequestID: 96skpuhgtg +2025-06-18T14:32:27.681Z [DEBUG] order-service - Auth event: password_change - User: user_1064 - IP: 192.168.33.76 - RequestID: ms12qb5lroa +2025-06-18T14:32:27.781Z [DEBUG] order-service - Auth event: logout - User: user_1093 - IP: 192.168.28.146 - RequestID: 70cci31dhl6 +2025-06-18T14:32:27.881Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 356ms - RequestID: wqwh3sxou7m +2025-06-18T14:32:27.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.44.5 - RequestID: xqddxht04jq +2025-06-18T14:32:28.081Z [DEBUG] payment-service - Auth event: logout - User: user_1051 - IP: 192.168.235.117 - RequestID: 870wtlj0cme +2025-06-18T14:32:28.181Z [DEBUG] notification-service - Database DELETE on products - Execution time: 282ms - Rows affected: 18 - RequestID: omxmmkhm8x +2025-06-18T14:32:28.281Z [INFO] user-service - Operation: cache_miss - Processing time: 580ms - RequestID: aw3njpqtbi +2025-06-18T14:32:28.381Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 311ms - Rows affected: 68 - RequestID: rbwnwd9t1fi +2025-06-18T14:32:28.481Z [TRACE] auth-service - Auth event: login_success - User: user_1029 - IP: 192.168.46.63 - RequestID: y51dycpe6ai +2025-06-18T14:32:28.581Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 448ms - Rows affected: 62 - RequestID: lijgem2cqd +2025-06-18T14:32:28.681Z [INFO] auth-service - Operation: inventory_updated - Processing time: 271ms - RequestID: 129e4sxolu3r +2025-06-18T14:32:28.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.240.169 - RequestID: dhimep8zfmk +2025-06-18T14:32:28.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1042 - IP: 192.168.141.100 - RequestID: edq04sdgmpo +2025-06-18T14:32:28.981Z [TRACE] payment-service - Operation: cache_miss - Processing time: 590ms - RequestID: aubtwno134h +2025-06-18T14:32:29.081Z [INFO] inventory-service - Database INSERT on products - Execution time: 394ms - Rows affected: 8 - RequestID: if9jxfkii2p +2025-06-18T14:32:29.181Z [INFO] notification-service - Database DELETE on orders - Execution time: 246ms - Rows affected: 29 - RequestID: uawxu5urcp +2025-06-18T14:32:29.281Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 3ms - Rows affected: 99 - RequestID: 6uk89ji7t0v +2025-06-18T14:32:29.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1076 - IP: 192.168.159.94 - RequestID: 2di2dokd0xr +2025-06-18T14:32:29.481Z [INFO] auth-service - POST /api/v1/orders - Status: 403 - Response time: 1003ms - IP: 192.168.227.233 - User: user_1059 - RequestID: sond8sz2v4 +2025-06-18T14:32:29.581Z [DEBUG] payment-service - POST /api/v1/orders - Status: 400 - Response time: 253ms - IP: 192.168.31.117 - User: user_1055 - RequestID: 12z05wky9op +2025-06-18T14:32:29.681Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 294ms - Rows affected: 46 - RequestID: 67tsfubq5l +2025-06-18T14:32:29.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.189.103 - RequestID: ilry21dbecr +2025-06-18T14:32:29.881Z [INFO] order-service - Operation: email_sent - Processing time: 261ms - RequestID: qshm16n95xa +2025-06-18T14:32:29.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.68.128 - RequestID: pful3dsaggp +2025-06-18T14:32:30.081Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 404 - Response time: 905ms - IP: 192.168.13.72 - User: user_1041 - RequestID: xmq43sfyxqc +2025-06-18T14:32:30.181Z [DEBUG] payment-service - POST /api/v1/orders - Status: 404 - Response time: 1402ms - IP: 192.168.138.123 - User: user_1038 - RequestID: 6rzpehe97l8 +2025-06-18T14:32:30.281Z [TRACE] auth-service - Operation: order_created - Processing time: 555ms - RequestID: w1u217m7yns +2025-06-18T14:32:30.381Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1089 - IP: 192.168.240.169 - RequestID: pvu5odecp6 +2025-06-18T14:32:30.481Z [DEBUG] user-service - Operation: payment_processed - Processing time: 299ms - RequestID: elk80x7uqeg +2025-06-18T14:32:30.581Z [INFO] payment-service - Operation: inventory_updated - Processing time: 998ms - RequestID: uh66wtoiky +2025-06-18T14:32:30.681Z [INFO] auth-service - Operation: payment_processed - Processing time: 952ms - RequestID: 59bl0ia76f6 +2025-06-18T14:32:30.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1001 - IP: 192.168.68.158 - RequestID: fi01o465vmu +2025-06-18T14:32:30.881Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 1444ms - IP: 192.168.33.76 - User: user_1025 - RequestID: qcepi7yrwt +2025-06-18T14:32:30.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 888ms - RequestID: 8yh0m42xyxu +2025-06-18T14:32:31.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.79.141 - RequestID: 3397gr8hi6m +2025-06-18T14:32:31.181Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 572ms - RequestID: 80dp365dvmn +2025-06-18T14:32:31.281Z [TRACE] user-service - DELETE /api/v1/payments - Status: 400 - Response time: 1544ms - IP: 192.168.1.152 - User: user_1009 - RequestID: 8tuqdsofhn +2025-06-18T14:32:31.381Z [INFO] user-service - Operation: email_sent - Processing time: 878ms - RequestID: nkda77ylh4 +2025-06-18T14:32:31.481Z [TRACE] notification-service - Database INSERT on products - Execution time: 69ms - Rows affected: 27 - RequestID: foyai1gi85u +2025-06-18T14:32:31.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 180ms - RequestID: r0p7u8vbd5 +2025-06-18T14:32:31.681Z [TRACE] user-service - Auth event: logout - User: user_1092 - IP: 192.168.247.134 - RequestID: ugu458ktga8 +2025-06-18T14:32:31.781Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1040ms - IP: 192.168.232.72 - User: user_1044 - RequestID: j8u4hp5zhfo +2025-06-18T14:32:31.881Z [INFO] auth-service - Auth event: logout - User: user_1030 - IP: 192.168.133.7 - RequestID: etu85uo2e36 +2025-06-18T14:32:31.981Z [TRACE] notification-service - GET /api/v1/orders - Status: 201 - Response time: 1838ms - IP: 192.168.36.218 - User: user_1030 - RequestID: cimyt011fmh +2025-06-18T14:32:32.081Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 403 - Response time: 232ms - IP: 192.168.170.215 - User: user_1027 - RequestID: ngivc5l0o1k +2025-06-18T14:32:32.181Z [INFO] auth-service - Database SELECT on sessions - Execution time: 72ms - Rows affected: 1 - RequestID: t6rewzcpjcj +2025-06-18T14:32:32.281Z [TRACE] notification-service - Auth event: password_change - User: user_1029 - IP: 192.168.85.229 - RequestID: u8y847sx0fi +2025-06-18T14:32:32.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1098 - IP: 192.168.211.72 - RequestID: 37tbnxpgq7e +2025-06-18T14:32:32.481Z [TRACE] auth-service - Auth event: login_failed - User: user_1021 - IP: 192.168.138.123 - RequestID: 14kyhnh8d0l +2025-06-18T14:32:32.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.79.143 - RequestID: r3gdms8lta +2025-06-18T14:32:32.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.85.229 - RequestID: yfmqjfyk25 +2025-06-18T14:32:32.781Z [TRACE] user-service - Operation: inventory_updated - Processing time: 732ms - RequestID: 73sa8a9s0gc +2025-06-18T14:32:32.881Z [INFO] notification-service - Operation: order_created - Processing time: 183ms - RequestID: 5vjydi4lgp +2025-06-18T14:32:32.981Z [INFO] payment-service - Operation: webhook_sent - Processing time: 698ms - RequestID: pxj7qk0rm6 +2025-06-18T14:32:33.081Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 492ms - Rows affected: 12 - RequestID: x5crtt1hyc +2025-06-18T14:32:33.181Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1763ms - IP: 192.168.10.184 - User: user_1084 - RequestID: 5ctu1mwfm7 +2025-06-18T14:32:33.281Z [INFO] auth-service - Database DELETE on products - Execution time: 411ms - Rows affected: 90 - RequestID: olwsht02vvm +2025-06-18T14:32:33.381Z [DEBUG] notification-service - Auth event: login_failed - User: user_1048 - IP: 192.168.147.171 - RequestID: pulkx3rjtff +2025-06-18T14:32:33.481Z [INFO] payment-service - POST /api/v1/users - Status: 502 - Response time: 716ms - IP: 192.168.211.72 - User: user_1081 - RequestID: 4gt9itu7b4 +2025-06-18T14:32:33.581Z [TRACE] order-service - Operation: order_created - Processing time: 726ms - RequestID: guqj5og1arl +2025-06-18T14:32:33.681Z [TRACE] notification-service - PATCH /api/v1/users - Status: 404 - Response time: 922ms - IP: 192.168.181.225 - User: user_1012 - RequestID: fl9m35uiahn +2025-06-18T14:32:33.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1002 - IP: 192.168.189.103 - RequestID: ob843mar6be +2025-06-18T14:32:33.881Z [DEBUG] notification-service - POST /api/v1/payments - Status: 401 - Response time: 1535ms - IP: 192.168.104.37 - User: user_1082 - RequestID: b2i7pqnd8ok +2025-06-18T14:32:33.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1053 - IP: 192.168.133.7 - RequestID: pthayxbkhvi +2025-06-18T14:32:34.081Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 352ms - RequestID: bygda1bk8av +2025-06-18T14:32:34.181Z [TRACE] order-service - Database INSERT on orders - Execution time: 313ms - Rows affected: 35 - RequestID: d7v26oll3nw +2025-06-18T14:32:34.281Z [DEBUG] user-service - Database SELECT on payments - Execution time: 95ms - Rows affected: 93 - RequestID: kn4167ystgd +2025-06-18T14:32:34.381Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1041 - IP: 192.168.235.117 - RequestID: x1sve4ic5s +2025-06-18T14:32:34.481Z [INFO] payment-service - Auth event: password_change - User: user_1099 - IP: 192.168.247.134 - RequestID: wbhjnmfruf +2025-06-18T14:32:34.581Z [DEBUG] order-service - Operation: cache_hit - Processing time: 866ms - RequestID: rcsaung1ik +2025-06-18T14:32:34.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1061 - IP: 192.168.159.94 - RequestID: ud4hw4qtc6k +2025-06-18T14:32:34.781Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 277ms - Rows affected: 86 - RequestID: ikmpsbi8q0n +2025-06-18T14:32:34.881Z [TRACE] order-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.174.114 - RequestID: auqng1784dw +2025-06-18T14:32:34.981Z [INFO] auth-service - Operation: email_sent - Processing time: 283ms - RequestID: m1166rycwkb +2025-06-18T14:32:35.081Z [INFO] auth-service - Operation: email_sent - Processing time: 763ms - RequestID: cvagno8ku6c +2025-06-18T14:32:35.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.14.77 - RequestID: qxfke1j7qbc +2025-06-18T14:32:35.281Z [DEBUG] order-service - Auth event: login_failed - User: user_1062 - IP: 192.168.46.63 - RequestID: kspsqaq34dp +2025-06-18T14:32:35.381Z [TRACE] order-service - Database SELECT on orders - Execution time: 243ms - Rows affected: 7 - RequestID: z92ol8q86l +2025-06-18T14:32:35.481Z [INFO] auth-service - GET /api/v1/inventory - Status: 401 - Response time: 58ms - IP: 192.168.187.199 - User: user_1089 - RequestID: oisyq7qzwxm +2025-06-18T14:32:35.581Z [INFO] order-service - Database INSERT on users - Execution time: 78ms - Rows affected: 23 - RequestID: 33lp202zpej +2025-06-18T14:32:35.681Z [TRACE] payment-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.81.206 - RequestID: r74s154gyf +2025-06-18T14:32:35.781Z [INFO] notification-service - Operation: inventory_updated - Processing time: 282ms - RequestID: htjlpscwjtw +2025-06-18T14:32:35.881Z [INFO] payment-service - Auth event: login_failed - User: user_1040 - IP: 192.168.11.60 - RequestID: ioa9hadbqg +2025-06-18T14:32:35.981Z [INFO] order-service - DELETE /api/v1/orders - Status: 403 - Response time: 519ms - IP: 192.168.133.7 - User: user_1004 - RequestID: p3lr2b5om8 +2025-06-18T14:32:36.081Z [TRACE] notification-service - Database DELETE on payments - Execution time: 499ms - Rows affected: 70 - RequestID: s2e9vijento +2025-06-18T14:32:36.181Z [DEBUG] auth-service - Database DELETE on users - Execution time: 108ms - Rows affected: 57 - RequestID: m11vmbyhoe +2025-06-18T14:32:36.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1038 - IP: 192.168.13.72 - RequestID: 6iaf3t2snyq +2025-06-18T14:32:36.381Z [DEBUG] notification-service - GET /api/v1/orders - Status: 500 - Response time: 554ms - IP: 192.168.232.72 - User: user_1043 - RequestID: 340572rrtax +2025-06-18T14:32:36.481Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 404 - Response time: 989ms - IP: 192.168.11.60 - User: user_1041 - RequestID: lzzip5quv2 +2025-06-18T14:32:36.581Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 129ms - Rows affected: 43 - RequestID: 71fq3dimc07 +2025-06-18T14:32:36.681Z [INFO] inventory-service - Operation: order_created - Processing time: 661ms - RequestID: rk3n2vdexs8 +2025-06-18T14:32:36.781Z [TRACE] auth-service - Auth event: password_change - User: user_1092 - IP: 192.168.10.184 - RequestID: htzh3xgqm7 +2025-06-18T14:32:36.881Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 452ms - Rows affected: 93 - RequestID: kakw1rkvevs +2025-06-18T14:32:36.981Z [INFO] order-service - Operation: notification_queued - Processing time: 803ms - RequestID: dk1ldnnui8d +2025-06-18T14:32:37.081Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 400 - Response time: 1375ms - IP: 192.168.242.165 - User: user_1065 - RequestID: as4dze09ax5 +2025-06-18T14:32:37.181Z [TRACE] inventory-service - Database INSERT on users - Execution time: 52ms - Rows affected: 97 - RequestID: rrlxsnmakls +2025-06-18T14:32:37.281Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 214ms - Rows affected: 15 - RequestID: wqyrnwo7z9i +2025-06-18T14:32:37.381Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 644ms - IP: 192.168.14.77 - User: user_1088 - RequestID: dz20hix679h +2025-06-18T14:32:37.481Z [DEBUG] user-service - Auth event: password_change - User: user_1038 - IP: 192.168.32.38 - RequestID: zfsk0yliwu8 +2025-06-18T14:32:37.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 324ms - RequestID: 3dwnx2a7vno +2025-06-18T14:32:37.681Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 174ms - Rows affected: 42 - RequestID: r6tcpiy3dr +2025-06-18T14:32:37.781Z [INFO] payment-service - PUT /api/v1/inventory - Status: 502 - Response time: 1391ms - IP: 192.168.33.76 - User: user_1077 - RequestID: mdy393xlaj +2025-06-18T14:32:37.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1034 - IP: 192.168.10.184 - RequestID: tsfpem7nl9p +2025-06-18T14:32:37.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.31.117 - RequestID: ysvl0f9xmr +2025-06-18T14:32:38.081Z [TRACE] auth-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.13.72 - RequestID: wwj94xn8h4c +2025-06-18T14:32:38.181Z [INFO] payment-service - GET /api/v1/payments - Status: 400 - Response time: 245ms - IP: 192.168.28.146 - User: user_1096 - RequestID: cnvce5105g +2025-06-18T14:32:38.281Z [TRACE] inventory-service - Auth event: logout - User: user_1094 - IP: 192.168.170.215 - RequestID: orqizel0dvg +2025-06-18T14:32:38.381Z [INFO] notification-service - Auth event: login_success - User: user_1079 - IP: 192.168.235.117 - RequestID: fg9znsgoovi +2025-06-18T14:32:38.481Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 311ms - Rows affected: 93 - RequestID: 4bat3v63pet +2025-06-18T14:32:38.581Z [INFO] user-service - GET /api/v1/users - Status: 400 - Response time: 166ms - IP: 192.168.133.7 - User: user_1009 - RequestID: j7u5dvno54s +2025-06-18T14:32:38.681Z [TRACE] user-service - Database INSERT on orders - Execution time: 187ms - Rows affected: 93 - RequestID: drvqtzff05 +2025-06-18T14:32:38.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1042 - IP: 192.168.79.143 - RequestID: 0m12h5u5p519 +2025-06-18T14:32:38.881Z [INFO] auth-service - POST /api/v1/users - Status: 500 - Response time: 1894ms - IP: 192.168.79.116 - User: user_1003 - RequestID: au5jec6k629 +2025-06-18T14:32:38.981Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 547ms - RequestID: dcbsly8l43l +2025-06-18T14:32:39.081Z [DEBUG] payment-service - Database DELETE on users - Execution time: 450ms - Rows affected: 24 - RequestID: 26bdq2mkkup +2025-06-18T14:32:39.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.32.38 - RequestID: 5canyd5ru5a +2025-06-18T14:32:39.281Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 400 - Response time: 1800ms - IP: 192.168.10.184 - User: user_1094 - RequestID: 14rdui5x3mw +2025-06-18T14:32:39.381Z [TRACE] order-service - Database INSERT on sessions - Execution time: 211ms - Rows affected: 56 - RequestID: 11cgmg4jmtc +2025-06-18T14:32:39.481Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 199ms - RequestID: 9mpy4chwoja +2025-06-18T14:32:39.581Z [INFO] order-service - DELETE /api/v1/orders - Status: 403 - Response time: 1126ms - IP: 192.168.46.63 - User: user_1001 - RequestID: tsmu3vyg7ih +2025-06-18T14:32:39.681Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 224ms - Rows affected: 58 - RequestID: qppov1uykq +2025-06-18T14:32:39.781Z [INFO] notification-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.46.63 - RequestID: d7nwep3zz0v +2025-06-18T14:32:39.881Z [DEBUG] payment-service - Database INSERT on products - Execution time: 10ms - Rows affected: 77 - RequestID: a6ncon28wc +2025-06-18T14:32:39.981Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 503 - Response time: 596ms - IP: 192.168.32.38 - User: user_1004 - RequestID: a2t1qzsgaej +2025-06-18T14:32:40.081Z [INFO] inventory-service - Auth event: login_success - User: user_1089 - IP: 192.168.36.218 - RequestID: icagechifec +2025-06-18T14:32:40.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.194.41 - RequestID: 2yud09suu07 +2025-06-18T14:32:40.281Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 159ms - Rows affected: 48 - RequestID: h4sjrk3xgk9 +2025-06-18T14:32:40.381Z [DEBUG] user-service - Database SELECT on orders - Execution time: 464ms - Rows affected: 83 - RequestID: 6jw1l33c049 +2025-06-18T14:32:40.481Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 400ms - Rows affected: 74 - RequestID: f5fvb35z3m +2025-06-18T14:32:40.581Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 340ms - IP: 192.168.79.141 - User: user_1047 - RequestID: ph0wadnco1o +2025-06-18T14:32:40.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.133.7 - RequestID: lr6mwxsuso +2025-06-18T14:32:40.781Z [INFO] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 870ms - IP: 192.168.79.141 - User: user_1013 - RequestID: 16pdmtajbv8j +2025-06-18T14:32:40.881Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1430ms - IP: 192.168.189.103 - User: user_1077 - RequestID: h22dc81n4ys +2025-06-18T14:32:40.981Z [INFO] inventory-service - Database DELETE on products - Execution time: 274ms - Rows affected: 51 - RequestID: r9jq1w1sw3o +2025-06-18T14:32:41.081Z [INFO] order-service - Auth event: logout - User: user_1046 - IP: 192.168.147.171 - RequestID: 66q6oujcg2i +2025-06-18T14:32:41.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.144.38 - RequestID: yuww6d5n98 +2025-06-18T14:32:41.281Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.235.117 - RequestID: pgmi5f1ky6h +2025-06-18T14:32:41.381Z [INFO] auth-service - Operation: cache_hit - Processing time: 529ms - RequestID: tfcao27ux0g +2025-06-18T14:32:41.481Z [TRACE] user-service - Database DELETE on payments - Execution time: 19ms - Rows affected: 11 - RequestID: v3an4kcl2fa +2025-06-18T14:32:41.581Z [INFO] notification-service - Operation: inventory_updated - Processing time: 256ms - RequestID: mij3llvv2s +2025-06-18T14:32:41.681Z [TRACE] user-service - Operation: notification_queued - Processing time: 415ms - RequestID: uohcaep0a3 +2025-06-18T14:32:41.781Z [INFO] inventory-service - Operation: cache_hit - Processing time: 519ms - RequestID: ryo5pdu6vf +2025-06-18T14:32:41.881Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 294ms - Rows affected: 75 - RequestID: pg6xb3tqygi +2025-06-18T14:32:41.981Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 473ms - Rows affected: 60 - RequestID: z1swezthxg +2025-06-18T14:32:42.081Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 746ms - RequestID: iogyihsncj8 +2025-06-18T14:32:42.181Z [INFO] user-service - Auth event: login_failed - User: user_1061 - IP: 192.168.159.94 - RequestID: 58vp41xonpf +2025-06-18T14:32:42.281Z [INFO] payment-service - Operation: email_sent - Processing time: 128ms - RequestID: cw1a3xojh6w +2025-06-18T14:32:42.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 138ms - RequestID: chfsjt6ih3 +2025-06-18T14:32:42.481Z [TRACE] order-service - Auth event: logout - User: user_1063 - IP: 192.168.181.225 - RequestID: mr5jyz03u3q +2025-06-18T14:32:42.581Z [INFO] notification-service - Database INSERT on products - Execution time: 284ms - Rows affected: 97 - RequestID: xnd8da4u5v9 +2025-06-18T14:32:42.681Z [TRACE] order-service - POST /api/v1/inventory - Status: 404 - Response time: 2007ms - IP: 192.168.147.171 - User: user_1068 - RequestID: 67vtwwd6c8n +2025-06-18T14:32:42.781Z [INFO] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 836ms - IP: 192.168.44.5 - User: user_1037 - RequestID: 4xq74ohw8qb +2025-06-18T14:32:42.881Z [TRACE] user-service - Operation: email_sent - Processing time: 913ms - RequestID: wnwiauak4nl +2025-06-18T14:32:42.981Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 500 - Response time: 683ms - IP: 192.168.159.94 - User: user_1001 - RequestID: qb4dx3i92s8 +2025-06-18T14:32:43.081Z [INFO] auth-service - POST /api/v1/users - Status: 400 - Response time: 337ms - IP: 192.168.196.226 - User: user_1044 - RequestID: faog1i2sxkc +2025-06-18T14:32:43.181Z [TRACE] user-service - Database UPDATE on users - Execution time: 70ms - Rows affected: 12 - RequestID: hfcr7ldl5sv +2025-06-18T14:32:43.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 997ms - RequestID: p0oal5j5rdi +2025-06-18T14:32:43.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.247.134 - RequestID: 4cv2qhgv16e +2025-06-18T14:32:43.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 509ms - RequestID: g3hhq8e8i1 +2025-06-18T14:32:43.581Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 88ms - Rows affected: 98 - RequestID: lkwsw96b5i7 +2025-06-18T14:32:43.681Z [TRACE] user-service - Auth event: logout - User: user_1091 - IP: 192.168.79.143 - RequestID: gwuphk5i2m +2025-06-18T14:32:43.781Z [TRACE] auth-service - Operation: notification_queued - Processing time: 227ms - RequestID: iox9k246cwa +2025-06-18T14:32:43.881Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 502 - Response time: 1419ms - IP: 192.168.187.199 - User: user_1072 - RequestID: vzzdlqad71d +2025-06-18T14:32:43.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.144.38 - RequestID: j8srgkrva +2025-06-18T14:32:44.081Z [INFO] inventory-service - Operation: payment_processed - Processing time: 324ms - RequestID: 5ceg0gh6by3 +2025-06-18T14:32:44.181Z [INFO] payment-service - Operation: order_created - Processing time: 432ms - RequestID: 07tziezkw4px +2025-06-18T14:32:44.281Z [INFO] payment-service - Operation: cache_hit - Processing time: 445ms - RequestID: z53vzvygsbb +2025-06-18T14:32:44.381Z [TRACE] payment-service - GET /api/v1/users - Status: 200 - Response time: 394ms - IP: 192.168.141.100 - User: user_1067 - RequestID: i3i373d7tch +2025-06-18T14:32:44.481Z [INFO] order-service - GET /api/v1/orders - Status: 502 - Response time: 1538ms - IP: 192.168.79.116 - User: user_1021 - RequestID: 8k6weihmjb3 +2025-06-18T14:32:44.581Z [INFO] notification-service - Operation: email_sent - Processing time: 800ms - RequestID: 5erwf6ah4v +2025-06-18T14:32:44.681Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 24ms - Rows affected: 33 - RequestID: 3bfqd6zg81 +2025-06-18T14:32:44.781Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 307ms - RequestID: 2duokdib2oj +2025-06-18T14:32:44.881Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.31.117 - RequestID: ezsfwzoo5kc +2025-06-18T14:32:44.981Z [INFO] notification-service - Database INSERT on orders - Execution time: 139ms - Rows affected: 36 - RequestID: 191vgb55m2v +2025-06-18T14:32:45.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.11.60 - RequestID: z120u4d9ffo +2025-06-18T14:32:45.181Z [INFO] inventory-service - Auth event: login_success - User: user_1072 - IP: 192.168.194.41 - RequestID: nqftfaeasvh +2025-06-18T14:32:45.281Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 114ms - Rows affected: 38 - RequestID: 1mxbss57h45 +2025-06-18T14:32:45.381Z [TRACE] user-service - Auth event: logout - User: user_1077 - IP: 192.168.113.218 - RequestID: tudziux96ad +2025-06-18T14:32:45.481Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 201 - Response time: 101ms - IP: 192.168.133.7 - User: user_1042 - RequestID: cnw2mj5a7pm +2025-06-18T14:32:45.581Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 33ms - Rows affected: 94 - RequestID: 0671xsr20sfc +2025-06-18T14:32:45.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 279ms - RequestID: ke42p9kfkvb +2025-06-18T14:32:45.781Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 114ms - RequestID: scz9zcnitq +2025-06-18T14:32:45.881Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 201ms - Rows affected: 56 - RequestID: 2wtmryxjjql +2025-06-18T14:32:45.981Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 285ms - Rows affected: 67 - RequestID: 4vtw1pkqv52 +2025-06-18T14:32:46.081Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1034ms - RequestID: cexy99b48qs +2025-06-18T14:32:46.181Z [INFO] order-service - Operation: payment_processed - Processing time: 149ms - RequestID: x09wlzgx7w +2025-06-18T14:32:46.281Z [INFO] user-service - Database SELECT on payments - Execution time: 251ms - Rows affected: 97 - RequestID: 4qtb3w0w5zl +2025-06-18T14:32:46.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.30.79 - RequestID: qa6seqerr9m +2025-06-18T14:32:46.481Z [TRACE] inventory-service - Auth event: logout - User: user_1024 - IP: 192.168.194.41 - RequestID: 5gcspnxczqe +2025-06-18T14:32:46.581Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 401 - Response time: 1871ms - IP: 192.168.187.199 - User: user_1037 - RequestID: zhcgdw0zad +2025-06-18T14:32:46.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1007 - IP: 192.168.100.240 - RequestID: kbw15a72avl +2025-06-18T14:32:46.781Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1332ms - IP: 192.168.194.41 - User: user_1043 - RequestID: 2d55xlthduj +2025-06-18T14:32:46.881Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1174ms - IP: 192.168.81.206 - User: user_1065 - RequestID: cwkp18bs9n7 +2025-06-18T14:32:46.981Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 422ms - Rows affected: 53 - RequestID: 8w9safpnykn +2025-06-18T14:32:47.081Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 349ms - Rows affected: 76 - RequestID: 5yimysam0nn +2025-06-18T14:32:47.181Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 665ms - RequestID: 8w70x3ajhak +2025-06-18T14:32:47.281Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 479ms - Rows affected: 13 - RequestID: 7bu1rawk2ia +2025-06-18T14:32:47.381Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.68.128 - RequestID: b3ktk7nikv +2025-06-18T14:32:47.481Z [INFO] user-service - Database UPDATE on users - Execution time: 431ms - Rows affected: 51 - RequestID: 5j35g4n7aw3 +2025-06-18T14:32:47.581Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.196.226 - RequestID: axw6zy51p2o +2025-06-18T14:32:47.681Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 904ms - RequestID: a6o6fndctwm +2025-06-18T14:32:47.781Z [TRACE] order-service - Database UPDATE on users - Execution time: 58ms - Rows affected: 69 - RequestID: w68xu8064j +2025-06-18T14:32:47.881Z [INFO] order-service - Database UPDATE on orders - Execution time: 114ms - Rows affected: 18 - RequestID: qb8r8mvwl6a +2025-06-18T14:32:47.981Z [INFO] auth-service - Operation: webhook_sent - Processing time: 1039ms - RequestID: ulj59w3aoaq +2025-06-18T14:32:48.081Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 404 - Response time: 402ms - IP: 192.168.229.123 - User: user_1066 - RequestID: li8en81lfis +2025-06-18T14:32:48.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.229.123 - RequestID: fkz6iyd5n8s +2025-06-18T14:32:48.281Z [INFO] user-service - Database INSERT on sessions - Execution time: 44ms - Rows affected: 23 - RequestID: t3nxi7tb9n +2025-06-18T14:32:48.381Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 201 - Response time: 796ms - IP: 192.168.79.141 - User: user_1051 - RequestID: 56jas5j89r9 +2025-06-18T14:32:48.481Z [TRACE] auth-service - Auth event: logout - User: user_1022 - IP: 192.168.229.123 - RequestID: hggbxly31cg +2025-06-18T14:32:48.581Z [TRACE] inventory-service - Auth event: logout - User: user_1086 - IP: 192.168.247.134 - RequestID: wzh8qdggu8o +2025-06-18T14:32:48.681Z [INFO] order-service - Auth event: login_success - User: user_1030 - IP: 192.168.33.76 - RequestID: ec4hshw6qq9 +2025-06-18T14:32:48.781Z [TRACE] notification-service - POST /api/v1/orders - Status: 403 - Response time: 100ms - IP: 192.168.100.240 - User: user_1097 - RequestID: 8akrvkd90lr +2025-06-18T14:32:48.881Z [INFO] order-service - Operation: cache_miss - Processing time: 482ms - RequestID: a22quetei58 +2025-06-18T14:32:48.981Z [TRACE] inventory-service - Auth event: password_change - User: user_1070 - IP: 192.168.68.128 - RequestID: uo7bjx636ol +2025-06-18T14:32:49.081Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1029 - IP: 192.168.1.152 - RequestID: mjgl567rfu8 +2025-06-18T14:32:49.181Z [INFO] inventory-service - GET /api/v1/orders - Status: 502 - Response time: 73ms - IP: 192.168.229.123 - User: user_1091 - RequestID: 6xo4w6s1pl +2025-06-18T14:32:49.281Z [DEBUG] notification-service - Database DELETE on products - Execution time: 21ms - Rows affected: 84 - RequestID: uanybcuhz2n +2025-06-18T14:32:49.381Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 184ms - RequestID: 04t4rrdl064j +2025-06-18T14:32:49.481Z [INFO] notification-service - POST /api/v1/payments - Status: 500 - Response time: 1823ms - IP: 192.168.46.63 - User: user_1074 - RequestID: g6av9unwpq9 +2025-06-18T14:32:49.581Z [TRACE] notification-service - Database INSERT on users - Execution time: 140ms - Rows affected: 18 - RequestID: eeq72vqijup +2025-06-18T14:32:49.681Z [DEBUG] user-service - PUT /api/v1/orders - Status: 503 - Response time: 1405ms - IP: 192.168.174.114 - User: user_1037 - RequestID: e6tk178oadc +2025-06-18T14:32:49.781Z [INFO] payment-service - Operation: notification_queued - Processing time: 471ms - RequestID: pmi7sbyccz8 +2025-06-18T14:32:49.881Z [DEBUG] user-service - POST /api/v1/payments - Status: 500 - Response time: 756ms - IP: 192.168.68.158 - User: user_1040 - RequestID: o5mtcrh77nf +2025-06-18T14:32:49.981Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 434ms - Rows affected: 51 - RequestID: 1fal7xx8i2n +2025-06-18T14:32:50.081Z [INFO] auth-service - Auth event: login_failed - User: user_1021 - IP: 192.168.79.143 - RequestID: vptee9v2ny +2025-06-18T14:32:50.181Z [TRACE] order-service - Operation: email_sent - Processing time: 730ms - RequestID: gu3ilplh3lu +2025-06-18T14:32:50.281Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 19ms - IP: 192.168.104.37 - User: user_1062 - RequestID: l3dn0aj29xl +2025-06-18T14:32:50.381Z [TRACE] user-service - DELETE /api/v1/users - Status: 500 - Response time: 164ms - IP: 192.168.68.128 - User: user_1071 - RequestID: js00rgiau7g +2025-06-18T14:32:50.481Z [TRACE] user-service - Database UPDATE on products - Execution time: 41ms - Rows affected: 97 - RequestID: 70lvn2nma74 +2025-06-18T14:32:50.581Z [TRACE] auth-service - Operation: notification_queued - Processing time: 230ms - RequestID: cu6ghjm6rwe +2025-06-18T14:32:50.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.104.37 - RequestID: kxy40iecmr9 +2025-06-18T14:32:50.781Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 385ms - IP: 192.168.138.123 - User: user_1072 - RequestID: 2sborfsy10v +2025-06-18T14:32:50.881Z [INFO] notification-service - POST /api/v1/auth/login - Status: 400 - Response time: 1158ms - IP: 192.168.104.37 - User: user_1056 - RequestID: 244ogiblk5n +2025-06-18T14:32:50.981Z [TRACE] order-service - Database UPDATE on products - Execution time: 455ms - Rows affected: 73 - RequestID: 42a5hz133fl +2025-06-18T14:32:51.081Z [INFO] auth-service - POST /api/v1/inventory - Status: 200 - Response time: 296ms - IP: 192.168.68.158 - User: user_1097 - RequestID: be4cyi57on6 +2025-06-18T14:32:51.181Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 452ms - Rows affected: 90 - RequestID: pdq2sb53ue +2025-06-18T14:32:51.281Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 386ms - RequestID: 6g2rwhbvhqh +2025-06-18T14:32:51.381Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 177ms - Rows affected: 6 - RequestID: ng2ndf7r0cj +2025-06-18T14:32:51.481Z [DEBUG] user-service - PUT /api/v1/users - Status: 503 - Response time: 1129ms - IP: 192.168.79.141 - User: user_1068 - RequestID: gle792wgs8h +2025-06-18T14:32:51.581Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 201 - Response time: 570ms - IP: 192.168.10.184 - User: user_1083 - RequestID: t9h71k7wyx +2025-06-18T14:32:51.681Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1968ms - IP: 192.168.81.206 - User: user_1046 - RequestID: iib1cozzxg +2025-06-18T14:32:51.781Z [DEBUG] payment-service - Operation: order_created - Processing time: 604ms - RequestID: 7j0u55lh38d +2025-06-18T14:32:51.881Z [INFO] order-service - Database INSERT on sessions - Execution time: 224ms - Rows affected: 96 - RequestID: c0qvjshnf7t +2025-06-18T14:32:51.981Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 269ms - Rows affected: 57 - RequestID: 1btwje9d5oy +2025-06-18T14:32:52.081Z [DEBUG] order-service - Operation: cache_miss - Processing time: 844ms - RequestID: s83u94tyua +2025-06-18T14:32:52.181Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 210ms - RequestID: fte6wv576h9 +2025-06-18T14:32:52.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1088 - IP: 192.168.189.103 - RequestID: 2oaxq3s4u8a +2025-06-18T14:32:52.381Z [INFO] user-service - Auth event: login_success - User: user_1014 - IP: 192.168.159.94 - RequestID: xadw3jbl9p +2025-06-18T14:32:52.481Z [TRACE] order-service - Auth event: login_success - User: user_1013 - IP: 192.168.147.171 - RequestID: m2d5aqpqea7 +2025-06-18T14:32:52.581Z [INFO] payment-service - Database UPDATE on users - Execution time: 219ms - Rows affected: 99 - RequestID: afb2n9bm7gv +2025-06-18T14:32:52.681Z [INFO] order-service - GET /api/v1/auth/logout - Status: 400 - Response time: 372ms - IP: 192.168.46.63 - User: user_1076 - RequestID: sqlzclmfb19 +2025-06-18T14:32:52.781Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 298ms - RequestID: 6wkyxf65zvj +2025-06-18T14:32:52.881Z [DEBUG] payment-service - Operation: email_sent - Processing time: 903ms - RequestID: z83aljs4u3l +2025-06-18T14:32:52.981Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 403 - Response time: 863ms - IP: 192.168.141.100 - User: user_1049 - RequestID: 2i5rte0lz6w +2025-06-18T14:32:53.081Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1511ms - IP: 192.168.159.94 - User: user_1025 - RequestID: ohu8mohdtzf +2025-06-18T14:32:53.181Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.79.116 - RequestID: ck2lr2o30d +2025-06-18T14:32:53.281Z [INFO] auth-service - Auth event: login_success - User: user_1033 - IP: 192.168.14.77 - RequestID: 33ktqh1smy5 +2025-06-18T14:32:53.381Z [INFO] auth-service - PUT /api/v1/payments - Status: 404 - Response time: 752ms - IP: 192.168.147.171 - User: user_1047 - RequestID: h7ermlcprd +2025-06-18T14:32:53.481Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 370ms - Rows affected: 99 - RequestID: r1m6tmr2z0h +2025-06-18T14:32:53.581Z [DEBUG] user-service - Database DELETE on orders - Execution time: 100ms - Rows affected: 32 - RequestID: cp4lx3vkg5 +2025-06-18T14:32:53.681Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 704ms - RequestID: g6xjkldro97 +2025-06-18T14:32:53.781Z [TRACE] order-service - Operation: webhook_sent - Processing time: 364ms - RequestID: 67t5uj0wf5u +2025-06-18T14:32:53.881Z [TRACE] user-service - Auth event: password_change - User: user_1073 - IP: 192.168.68.128 - RequestID: w6et5mh8mut +2025-06-18T14:32:53.981Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 120ms - Rows affected: 80 - RequestID: v1wyf2mewjq +2025-06-18T14:32:54.081Z [INFO] notification-service - Operation: webhook_sent - Processing time: 888ms - RequestID: 7nchgk0h714 +2025-06-18T14:32:54.181Z [TRACE] order-service - Auth event: password_change - User: user_1013 - IP: 192.168.147.171 - RequestID: q8cix6njp1 +2025-06-18T14:32:54.281Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 201 - Response time: 1435ms - IP: 192.168.138.123 - User: user_1076 - RequestID: 2oc4t2236j5 +2025-06-18T14:32:54.381Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 401 - Response time: 922ms - IP: 192.168.31.117 - User: user_1052 - RequestID: x0363uhlql +2025-06-18T14:32:54.481Z [DEBUG] user-service - Auth event: login_failed - User: user_1028 - IP: 192.168.181.225 - RequestID: 4716zbb5q7j +2025-06-18T14:32:54.581Z [TRACE] order-service - Database UPDATE on products - Execution time: 311ms - Rows affected: 19 - RequestID: furn5amit3 +2025-06-18T14:32:54.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1068 - IP: 192.168.138.123 - RequestID: yk2usvhg9l +2025-06-18T14:32:54.781Z [INFO] inventory-service - Database UPDATE on products - Execution time: 329ms - Rows affected: 33 - RequestID: 9t97h3pep +2025-06-18T14:32:54.881Z [TRACE] payment-service - Operation: cache_hit - Processing time: 705ms - RequestID: 1ssrgg7wwuq +2025-06-18T14:32:54.981Z [DEBUG] payment-service - Operation: order_created - Processing time: 754ms - RequestID: 0h5oqa5n0j4 +2025-06-18T14:32:55.081Z [TRACE] notification-service - Database SELECT on orders - Execution time: 219ms - Rows affected: 89 - RequestID: t6y4yztcskf +2025-06-18T14:32:55.181Z [INFO] notification-service - Operation: webhook_sent - Processing time: 892ms - RequestID: 9kqqb455yn8 +2025-06-18T14:32:55.281Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 219ms - RequestID: gsyzu06w3a +2025-06-18T14:32:55.381Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1344ms - IP: 192.168.11.60 - User: user_1068 - RequestID: br6xf1k04ph +2025-06-18T14:32:55.481Z [INFO] inventory-service - Auth event: password_change - User: user_1019 - IP: 192.168.167.32 - RequestID: 208m6iryje7h +2025-06-18T14:32:55.581Z [TRACE] order-service - PUT /api/v1/users - Status: 403 - Response time: 976ms - IP: 192.168.46.63 - User: user_1055 - RequestID: n1j7jg8k1di +2025-06-18T14:32:55.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 300ms - RequestID: wh69mh7wl8c +2025-06-18T14:32:55.781Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1080ms - IP: 192.168.138.123 - User: user_1060 - RequestID: zejsfq6kj78 +2025-06-18T14:32:55.881Z [TRACE] notification-service - Auth event: password_change - User: user_1046 - IP: 192.168.235.117 - RequestID: vzvhgmomhct +2025-06-18T14:32:55.981Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 123ms - Rows affected: 10 - RequestID: y6y3hf4nacf +2025-06-18T14:32:56.081Z [INFO] payment-service - Operation: webhook_sent - Processing time: 72ms - RequestID: 9f3ah8lqyje +2025-06-18T14:32:56.181Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 503 - Response time: 109ms - IP: 192.168.14.77 - User: user_1052 - RequestID: 2hzi4u2frqn +2025-06-18T14:32:56.281Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 115ms - Rows affected: 14 - RequestID: 509gz5ixnr6 +2025-06-18T14:32:56.381Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 43ms - Rows affected: 37 - RequestID: ba659psrmdc +2025-06-18T14:32:56.481Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 572ms - RequestID: i3d02qfe9nj +2025-06-18T14:32:56.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1002 - IP: 192.168.1.152 - RequestID: xh90g7b838m +2025-06-18T14:32:56.681Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 981ms - RequestID: ijp1p4xfeiq +2025-06-18T14:32:56.781Z [INFO] payment-service - Operation: email_sent - Processing time: 825ms - RequestID: kzz5k8ox5i +2025-06-18T14:32:56.881Z [TRACE] order-service - Database UPDATE on products - Execution time: 45ms - Rows affected: 99 - RequestID: 2u5czrcr0ql +2025-06-18T14:32:56.981Z [DEBUG] payment-service - Auth event: login_failed - User: user_1000 - IP: 192.168.211.72 - RequestID: j1vb8tidk2j +2025-06-18T14:32:57.081Z [INFO] payment-service - Database INSERT on orders - Execution time: 235ms - Rows affected: 92 - RequestID: a4sy2rsk3t5 +2025-06-18T14:32:57.181Z [INFO] payment-service - Operation: cache_hit - Processing time: 461ms - RequestID: r7lc3j4zew +2025-06-18T14:32:57.281Z [INFO] user-service - Database DELETE on products - Execution time: 226ms - Rows affected: 61 - RequestID: eiyl8mq8l3 +2025-06-18T14:32:57.381Z [DEBUG] user-service - Auth event: password_change - User: user_1036 - IP: 192.168.97.87 - RequestID: dkrjlpdigi9 +2025-06-18T14:32:57.481Z [DEBUG] order-service - Auth event: logout - User: user_1065 - IP: 192.168.138.123 - RequestID: kifw4awe95 +2025-06-18T14:32:57.581Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 203ms - Rows affected: 95 - RequestID: dyldwsurufm +2025-06-18T14:32:57.681Z [INFO] inventory-service - Auth event: logout - User: user_1072 - IP: 192.168.240.169 - RequestID: tzzevlimccq +2025-06-18T14:32:57.781Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 371ms - Rows affected: 36 - RequestID: a99h3qb1hy7 +2025-06-18T14:32:57.881Z [DEBUG] user-service - Auth event: login_failed - User: user_1015 - IP: 192.168.68.128 - RequestID: zxu8fhqalcq +2025-06-18T14:32:57.981Z [DEBUG] user-service - Database UPDATE on users - Execution time: 452ms - Rows affected: 85 - RequestID: i4wsjh6oxel +2025-06-18T14:32:58.081Z [INFO] auth-service - Database UPDATE on orders - Execution time: 426ms - Rows affected: 11 - RequestID: s8gnr9j2wam +2025-06-18T14:32:58.181Z [TRACE] order-service - Auth event: logout - User: user_1077 - IP: 192.168.229.123 - RequestID: 5jklt8mzgjq +2025-06-18T14:32:58.281Z [TRACE] notification-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.79.143 - RequestID: nyhynzr06w8 +2025-06-18T14:32:58.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.68.158 - RequestID: u1gjq6hknm +2025-06-18T14:32:58.481Z [DEBUG] user-service - POST /api/v1/inventory - Status: 200 - Response time: 672ms - IP: 192.168.158.144 - User: user_1051 - RequestID: zt4w6il1ia +2025-06-18T14:32:58.581Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 403 - Response time: 593ms - IP: 192.168.68.158 - User: user_1049 - RequestID: g24m6nop1dl +2025-06-18T14:32:58.681Z [INFO] payment-service - POST /api/v1/inventory - Status: 403 - Response time: 375ms - IP: 192.168.189.103 - User: user_1072 - RequestID: 38jifnds9c5 +2025-06-18T14:32:58.781Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 334ms - Rows affected: 24 - RequestID: 74ktxd6jbyo +2025-06-18T14:32:58.881Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 205ms - RequestID: k7uyjfvrcwk +2025-06-18T14:32:58.981Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 307ms - RequestID: 4c801tgnr0u +2025-06-18T14:32:59.081Z [TRACE] order-service - Database DELETE on products - Execution time: 244ms - Rows affected: 34 - RequestID: f606ycs2xqo +2025-06-18T14:32:59.181Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 593ms - IP: 192.168.79.143 - User: user_1078 - RequestID: 39r1prr6uat +2025-06-18T14:32:59.281Z [INFO] notification-service - Database SELECT on payments - Execution time: 228ms - Rows affected: 83 - RequestID: 744fyghavbt +2025-06-18T14:32:59.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.235.117 - RequestID: bi0cox8dknn +2025-06-18T14:32:59.481Z [INFO] auth-service - POST /api/v1/users - Status: 401 - Response time: 347ms - IP: 192.168.46.63 - User: user_1045 - RequestID: x8rharj2ags +2025-06-18T14:32:59.581Z [TRACE] payment-service - Database UPDATE on users - Execution time: 105ms - Rows affected: 48 - RequestID: 2r0nv7a76qk +2025-06-18T14:32:59.681Z [INFO] payment-service - Operation: cache_hit - Processing time: 625ms - RequestID: jwgtgspfqgq +2025-06-18T14:32:59.781Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 85ms - RequestID: 7akpuznr1hq +2025-06-18T14:32:59.881Z [INFO] notification-service - GET /api/v1/users - Status: 200 - Response time: 1280ms - IP: 192.168.104.37 - User: user_1029 - RequestID: dkv1j77mjre +2025-06-18T14:32:59.981Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 495ms - Rows affected: 39 - RequestID: 835hvykzoyf +2025-06-18T14:33:00.081Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 158ms - IP: 192.168.13.72 - User: user_1065 - RequestID: q7uynq4pia +2025-06-18T14:33:00.181Z [INFO] user-service - Operation: notification_queued - Processing time: 1039ms - RequestID: qxnlyt95s8 +2025-06-18T14:33:00.281Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 323ms - Rows affected: 66 - RequestID: 7whwba5atv3 +2025-06-18T14:33:00.381Z [TRACE] payment-service - Operation: order_created - Processing time: 960ms - RequestID: 6qj70wn045d +2025-06-18T14:33:00.481Z [DEBUG] payment-service - Operation: order_created - Processing time: 540ms - RequestID: prhk9tkhu7 +2025-06-18T14:33:00.581Z [DEBUG] inventory-service - Auth event: logout - User: user_1030 - IP: 192.168.97.87 - RequestID: cds2bvtfm3 +2025-06-18T14:33:00.681Z [INFO] auth-service - GET /api/v1/auth/login - Status: 201 - Response time: 213ms - IP: 192.168.44.5 - User: user_1068 - RequestID: xwznw0k0iz +2025-06-18T14:33:00.781Z [INFO] payment-service - Database DELETE on payments - Execution time: 420ms - Rows affected: 78 - RequestID: q66qsiosz39 +2025-06-18T14:33:00.881Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 170ms - Rows affected: 5 - RequestID: fwz7vrjdcmp +2025-06-18T14:33:00.981Z [TRACE] order-service - Operation: inventory_updated - Processing time: 223ms - RequestID: dl4sgkk25uj +2025-06-18T14:33:01.081Z [INFO] payment-service - Operation: cache_hit - Processing time: 222ms - RequestID: t05g0gx9pv +2025-06-18T14:33:01.181Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 401 - Response time: 752ms - IP: 192.168.235.117 - User: user_1076 - RequestID: 873m3lp5zr3 +2025-06-18T14:33:01.281Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 1999ms - IP: 192.168.104.37 - User: user_1080 - RequestID: xbcsdlx56yc +2025-06-18T14:33:01.381Z [INFO] inventory-service - PUT /api/v1/users - Status: 403 - Response time: 629ms - IP: 192.168.158.144 - User: user_1085 - RequestID: wa882bellgm +2025-06-18T14:33:01.481Z [TRACE] auth-service - POST /api/v1/inventory - Status: 500 - Response time: 517ms - IP: 192.168.31.117 - User: user_1085 - RequestID: mw1y13sy1yt +2025-06-18T14:33:01.581Z [TRACE] order-service - Auth event: logout - User: user_1072 - IP: 192.168.104.37 - RequestID: hz8j4pv1lfg +2025-06-18T14:33:01.681Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 919ms - RequestID: h1ooqiaa2j6 +2025-06-18T14:33:01.781Z [INFO] notification-service - Auth event: password_change - User: user_1061 - IP: 192.168.227.77 - RequestID: 5rvv1u83wk +2025-06-18T14:33:01.881Z [TRACE] auth-service - Database DELETE on users - Execution time: 54ms - Rows affected: 68 - RequestID: kupus3cxgnk +2025-06-18T14:33:01.981Z [INFO] notification-service - Database INSERT on users - Execution time: 178ms - Rows affected: 26 - RequestID: azjzd8nlhf +2025-06-18T14:33:02.081Z [TRACE] order-service - Database UPDATE on orders - Execution time: 373ms - Rows affected: 43 - RequestID: eoqgbu3jkm +2025-06-18T14:33:02.181Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 201 - Response time: 437ms - IP: 192.168.167.32 - User: user_1063 - RequestID: nu8e1edr32q +2025-06-18T14:33:02.281Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 780ms - RequestID: 9bt39hqu3gb +2025-06-18T14:33:02.381Z [TRACE] user-service - Database SELECT on payments - Execution time: 207ms - Rows affected: 4 - RequestID: nyeuvcivcfh +2025-06-18T14:33:02.481Z [INFO] auth-service - PUT /api/v1/payments - Status: 200 - Response time: 640ms - IP: 192.168.79.116 - User: user_1019 - RequestID: 47x544wa3e3 +2025-06-18T14:33:02.581Z [DEBUG] user-service - POST /api/v1/orders - Status: 201 - Response time: 415ms - IP: 192.168.211.72 - User: user_1059 - RequestID: qtkd2zf888j +2025-06-18T14:33:02.681Z [INFO] notification-service - Auth event: password_change - User: user_1079 - IP: 192.168.240.169 - RequestID: l51obgiq2jl +2025-06-18T14:33:02.781Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 667ms - RequestID: dh4iy5a1v7 +2025-06-18T14:33:02.881Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 401 - Response time: 1810ms - IP: 192.168.44.5 - User: user_1096 - RequestID: hwioo200omf +2025-06-18T14:33:02.981Z [TRACE] order-service - PATCH /api/v1/payments - Status: 403 - Response time: 357ms - IP: 192.168.133.7 - User: user_1095 - RequestID: w7pmae27yy +2025-06-18T14:33:03.081Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 523ms - IP: 192.168.68.158 - User: user_1096 - RequestID: xqd607o138c +2025-06-18T14:33:03.181Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 502 - Response time: 1703ms - IP: 192.168.104.37 - User: user_1016 - RequestID: klevobi6cwk +2025-06-18T14:33:03.281Z [TRACE] user-service - Operation: webhook_sent - Processing time: 97ms - RequestID: 5urcn4m7vzr +2025-06-18T14:33:03.381Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 200 - Response time: 635ms - IP: 192.168.167.32 - User: user_1046 - RequestID: anpnjft7gju +2025-06-18T14:33:03.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1096 - IP: 192.168.174.114 - RequestID: gb6vcw0cy9n +2025-06-18T14:33:03.581Z [DEBUG] payment-service - Operation: email_sent - Processing time: 407ms - RequestID: 6lvovuaznrv +2025-06-18T14:33:03.681Z [INFO] notification-service - Database INSERT on payments - Execution time: 371ms - Rows affected: 6 - RequestID: sagn52mo2f +2025-06-18T14:33:03.781Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 366ms - Rows affected: 86 - RequestID: yuty7l1pd4 +2025-06-18T14:33:03.881Z [INFO] order-service - Operation: cache_hit - Processing time: 575ms - RequestID: dx9e3n0m87i +2025-06-18T14:33:03.981Z [TRACE] auth-service - Auth event: password_change - User: user_1029 - IP: 192.168.227.233 - RequestID: qkn7ulvt3yd +2025-06-18T14:33:04.081Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 871ms - RequestID: hrcrntj8q7d +2025-06-18T14:33:04.181Z [INFO] order-service - GET /api/v1/users - Status: 503 - Response time: 812ms - IP: 192.168.235.117 - User: user_1029 - RequestID: r5s0qspyr8h +2025-06-18T14:33:04.281Z [INFO] notification-service - Operation: inventory_updated - Processing time: 1040ms - RequestID: 8flcqf7ex6g +2025-06-18T14:33:04.381Z [DEBUG] order-service - GET /api/v1/orders - Status: 201 - Response time: 1738ms - IP: 192.168.68.128 - User: user_1085 - RequestID: uj0rb7eplk +2025-06-18T14:33:04.481Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 845ms - RequestID: u55hvnad9j +2025-06-18T14:33:04.581Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 390ms - Rows affected: 22 - RequestID: l161oxjvv7a +2025-06-18T14:33:04.681Z [INFO] inventory-service - Database INSERT on payments - Execution time: 220ms - Rows affected: 72 - RequestID: r7omu221iap +2025-06-18T14:33:04.781Z [DEBUG] notification-service - Database SELECT on products - Execution time: 7ms - Rows affected: 1 - RequestID: f58w5ouoajf +2025-06-18T14:33:04.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1034 - IP: 192.168.1.152 - RequestID: zc62bsmygus +2025-06-18T14:33:04.981Z [TRACE] notification-service - Auth event: logout - User: user_1057 - IP: 192.168.33.76 - RequestID: g8pc60vc6ld +2025-06-18T14:33:05.081Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 56ms - Rows affected: 94 - RequestID: okdt15coog +2025-06-18T14:33:05.181Z [INFO] notification-service - Operation: cache_miss - Processing time: 948ms - RequestID: atrezi84brc +2025-06-18T14:33:05.281Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 401 - Response time: 919ms - IP: 192.168.138.123 - User: user_1018 - RequestID: weees2g9j5f +2025-06-18T14:33:05.381Z [DEBUG] user-service - Operation: cache_miss - Processing time: 77ms - RequestID: 2m4fml8tynz +2025-06-18T14:33:05.481Z [TRACE] user-service - Database DELETE on orders - Execution time: 78ms - Rows affected: 10 - RequestID: 1cfll43m6uq +2025-06-18T14:33:05.581Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 203ms - Rows affected: 38 - RequestID: ucbn7c2ipzj +2025-06-18T14:33:05.681Z [INFO] notification-service - Auth event: login_success - User: user_1013 - IP: 192.168.170.215 - RequestID: wbhdi1bpivn +2025-06-18T14:33:05.781Z [INFO] payment-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.235.117 - RequestID: s7cti9f5mk +2025-06-18T14:33:05.881Z [DEBUG] user-service - Database DELETE on users - Execution time: 331ms - Rows affected: 32 - RequestID: tgde9jcge2d +2025-06-18T14:33:05.981Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 25ms - Rows affected: 6 - RequestID: kyt0m6kzm3h +2025-06-18T14:33:06.081Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 120ms - Rows affected: 6 - RequestID: pqzdcem71ck +2025-06-18T14:33:06.181Z [TRACE] notification-service - Auth event: password_change - User: user_1025 - IP: 192.168.68.128 - RequestID: 61xo1qkq8td +2025-06-18T14:33:06.281Z [DEBUG] order-service - Operation: notification_queued - Processing time: 162ms - RequestID: an0jyt92268 +2025-06-18T14:33:06.381Z [INFO] user-service - GET /api/v1/orders - Status: 200 - Response time: 1505ms - IP: 192.168.227.77 - User: user_1084 - RequestID: wki6ekw2vza +2025-06-18T14:33:06.481Z [INFO] inventory-service - Auth event: password_change - User: user_1047 - IP: 192.168.141.100 - RequestID: li4p7474ig +2025-06-18T14:33:06.581Z [INFO] order-service - Auth event: password_change - User: user_1035 - IP: 192.168.33.76 - RequestID: 76a7ipn4we4 +2025-06-18T14:33:06.681Z [INFO] user-service - POST /api/v1/inventory - Status: 404 - Response time: 137ms - IP: 192.168.138.123 - User: user_1072 - RequestID: 17dbtr43ki2 +2025-06-18T14:33:06.781Z [DEBUG] payment-service - POST /api/v1/orders - Status: 201 - Response time: 1366ms - IP: 192.168.235.117 - User: user_1012 - RequestID: 357g3f6x6u +2025-06-18T14:33:06.881Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 403 - Response time: 70ms - IP: 192.168.53.133 - User: user_1062 - RequestID: qnxiybuu9p +2025-06-18T14:33:06.981Z [INFO] auth-service - Database INSERT on orders - Execution time: 305ms - Rows affected: 58 - RequestID: m2us12i9edr +2025-06-18T14:33:07.081Z [INFO] auth-service - Auth event: logout - User: user_1085 - IP: 192.168.242.165 - RequestID: 0wviggqhtyp +2025-06-18T14:33:07.181Z [TRACE] user-service - Database SELECT on orders - Execution time: 469ms - Rows affected: 10 - RequestID: mrljnw36uar +2025-06-18T14:33:07.281Z [INFO] payment-service - Operation: webhook_sent - Processing time: 665ms - RequestID: 81z9yauf55a +2025-06-18T14:33:07.381Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1592ms - IP: 192.168.147.171 - User: user_1040 - RequestID: pky2dcnw7gd +2025-06-18T14:33:07.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.33.76 - RequestID: mdyxj8857za +2025-06-18T14:33:07.581Z [INFO] payment-service - Database UPDATE on payments - Execution time: 44ms - Rows affected: 85 - RequestID: zdseuby906a +2025-06-18T14:33:07.681Z [DEBUG] user-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.174.114 - RequestID: 50ffmk2lqpw +2025-06-18T14:33:07.781Z [DEBUG] notification-service - Auth event: login_success - User: user_1006 - IP: 192.168.81.206 - RequestID: un9ndugl129 +2025-06-18T14:33:07.881Z [INFO] order-service - Auth event: login_success - User: user_1023 - IP: 192.168.141.100 - RequestID: 85q59mmlb0d +2025-06-18T14:33:07.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.46.63 - RequestID: 8p4w3fo98zd +2025-06-18T14:33:08.081Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 407ms - RequestID: vutdduudznf +2025-06-18T14:33:08.181Z [TRACE] notification-service - Operation: cache_hit - Processing time: 113ms - RequestID: e5iz0pzjv6p +2025-06-18T14:33:08.281Z [INFO] payment-service - Operation: inventory_updated - Processing time: 500ms - RequestID: bnnkpyctv8h +2025-06-18T14:33:08.381Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 503 - Response time: 554ms - IP: 192.168.144.38 - User: user_1066 - RequestID: suyiro7cyxa +2025-06-18T14:33:08.481Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.32.38 - RequestID: nwp7iqnyp1r +2025-06-18T14:33:08.581Z [DEBUG] payment-service - Auth event: login_success - User: user_1028 - IP: 192.168.79.116 - RequestID: w0wu9g6d0vf +2025-06-18T14:33:08.681Z [TRACE] user-service - Operation: webhook_sent - Processing time: 89ms - RequestID: 2dp08h08gz9 +2025-06-18T14:33:08.781Z [DEBUG] inventory-service - Auth event: logout - User: user_1077 - IP: 192.168.13.72 - RequestID: 2o5tacwb86d +2025-06-18T14:33:08.881Z [INFO] order-service - Auth event: login_success - User: user_1032 - IP: 192.168.104.37 - RequestID: 25vvey8ahh4 +2025-06-18T14:33:08.981Z [TRACE] user-service - POST /api/v1/auth/login - Status: 400 - Response time: 400ms - IP: 192.168.30.79 - User: user_1087 - RequestID: 18qyim0gd9u +2025-06-18T14:33:09.081Z [INFO] auth-service - POST /api/v1/users - Status: 502 - Response time: 772ms - IP: 192.168.1.152 - User: user_1067 - RequestID: 1zmqqb7kuli +2025-06-18T14:33:09.181Z [TRACE] inventory-service - Auth event: login_failed - User: user_1077 - IP: 192.168.144.38 - RequestID: n2tedcp8nz +2025-06-18T14:33:09.281Z [INFO] inventory-service - Operation: email_sent - Processing time: 778ms - RequestID: 96g0jnely5c +2025-06-18T14:33:09.381Z [INFO] user-service - Operation: order_created - Processing time: 1029ms - RequestID: vvtyhizzr1 +2025-06-18T14:33:09.481Z [TRACE] notification-service - Database INSERT on products - Execution time: 363ms - Rows affected: 20 - RequestID: qmxa0bae05 +2025-06-18T14:33:09.581Z [DEBUG] notification-service - Auth event: password_change - User: user_1054 - IP: 192.168.68.128 - RequestID: cwj0sb6fcsh +2025-06-18T14:33:09.681Z [DEBUG] user-service - Auth event: login_failed - User: user_1060 - IP: 192.168.46.63 - RequestID: 59mvfqz8ha7 +2025-06-18T14:33:09.781Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1958ms - IP: 192.168.31.117 - User: user_1011 - RequestID: vba1ix0oxfm +2025-06-18T14:33:09.881Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1018 - IP: 192.168.44.5 - RequestID: 5koewyaceyi +2025-06-18T14:33:09.981Z [INFO] order-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.11.60 - RequestID: 2fph5tskm7 +2025-06-18T14:33:10.081Z [INFO] auth-service - Operation: cache_miss - Processing time: 549ms - RequestID: b3h46oeop9r +2025-06-18T14:33:10.181Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 191ms - Rows affected: 20 - RequestID: jzw9n46fwjq +2025-06-18T14:33:10.281Z [INFO] auth-service - PATCH /api/v1/users - Status: 502 - Response time: 1937ms - IP: 192.168.30.79 - User: user_1057 - RequestID: nreiikepdgn +2025-06-18T14:33:10.381Z [TRACE] order-service - Auth event: password_change - User: user_1086 - IP: 192.168.174.114 - RequestID: gfs1w5nlc0a +2025-06-18T14:33:10.481Z [INFO] auth-service - Operation: email_sent - Processing time: 557ms - RequestID: wogxu1l6kth +2025-06-18T14:33:10.581Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 194ms - Rows affected: 81 - RequestID: 10c9dbp0tksm +2025-06-18T14:33:10.681Z [DEBUG] user-service - POST /api/v1/payments - Status: 503 - Response time: 1362ms - IP: 192.168.232.72 - User: user_1094 - RequestID: 1gol5tb6ksc +2025-06-18T14:33:10.781Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1367ms - IP: 192.168.81.206 - User: user_1050 - RequestID: y1cvnc4489 +2025-06-18T14:33:10.881Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 404 - Response time: 613ms - IP: 192.168.229.123 - User: user_1017 - RequestID: 6w484v6o0u +2025-06-18T14:33:10.981Z [INFO] user-service - PATCH /api/v1/users - Status: 503 - Response time: 416ms - IP: 192.168.170.215 - User: user_1024 - RequestID: vn90sod9yg +2025-06-18T14:33:11.081Z [INFO] order-service - Operation: payment_processed - Processing time: 266ms - RequestID: 32q0symxqbm +2025-06-18T14:33:11.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 732ms - RequestID: vnruvo5wxb +2025-06-18T14:33:11.281Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 500 - Response time: 86ms - IP: 192.168.79.143 - User: user_1082 - RequestID: h77f4u4aj0j +2025-06-18T14:33:11.381Z [INFO] notification-service - Operation: email_sent - Processing time: 397ms - RequestID: uldu0a8ce7 +2025-06-18T14:33:11.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1075 - IP: 192.168.167.32 - RequestID: sziihe3bc3 +2025-06-18T14:33:11.581Z [INFO] auth-service - Database INSERT on users - Execution time: 172ms - Rows affected: 59 - RequestID: 1bv2sji0w6o +2025-06-18T14:33:11.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 424ms - RequestID: m9uxdvx1ok +2025-06-18T14:33:11.781Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 82ms - Rows affected: 16 - RequestID: k3894q55hxd +2025-06-18T14:33:11.881Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 360ms - RequestID: 7z7uh1hqkw5 +2025-06-18T14:33:11.981Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 910ms - RequestID: 40gzubv1u3m +2025-06-18T14:33:12.081Z [INFO] order-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.181.225 - RequestID: xdeqsznunx +2025-06-18T14:33:12.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1035 - IP: 192.168.196.226 - RequestID: n18c96jx7f +2025-06-18T14:33:12.281Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1695ms - IP: 192.168.104.37 - User: user_1078 - RequestID: y09n9dh3ew +2025-06-18T14:33:12.381Z [INFO] order-service - Auth event: logout - User: user_1072 - IP: 192.168.46.63 - RequestID: gid1jzo1a8 +2025-06-18T14:33:12.481Z [INFO] auth-service - PATCH /api/v1/payments - Status: 401 - Response time: 1085ms - IP: 192.168.189.103 - User: user_1076 - RequestID: 7rcj6880uwx +2025-06-18T14:33:12.581Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1330ms - IP: 192.168.196.226 - User: user_1053 - RequestID: soin17l5rj +2025-06-18T14:33:12.681Z [INFO] order-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.167.32 - RequestID: w5akh3w3uy +2025-06-18T14:33:12.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.100.240 - RequestID: 8md2u2pxwsa +2025-06-18T14:33:12.881Z [DEBUG] user-service - Database INSERT on products - Execution time: 167ms - Rows affected: 31 - RequestID: gt983cmswq +2025-06-18T14:33:12.981Z [DEBUG] auth-service - Operation: order_created - Processing time: 1019ms - RequestID: ajllb2w6x5c +2025-06-18T14:33:13.081Z [INFO] payment-service - Operation: cache_miss - Processing time: 992ms - RequestID: 6dwgpee02ia +2025-06-18T14:33:13.181Z [TRACE] notification-service - Operation: email_sent - Processing time: 712ms - RequestID: o8y9r6sw3u8 +2025-06-18T14:33:13.281Z [INFO] payment-service - Operation: notification_queued - Processing time: 306ms - RequestID: 6800p71j4hf +2025-06-18T14:33:13.381Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 500 - Response time: 1057ms - IP: 192.168.187.199 - User: user_1095 - RequestID: rab4kqk2dl +2025-06-18T14:33:13.481Z [TRACE] notification-service - Database DELETE on payments - Execution time: 2ms - Rows affected: 29 - RequestID: oqskuqwrmpm +2025-06-18T14:33:13.581Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 273ms - Rows affected: 62 - RequestID: 4r6uvjs94u7 +2025-06-18T14:33:13.681Z [TRACE] notification-service - Operation: payment_processed - Processing time: 209ms - RequestID: sxhjwce995 +2025-06-18T14:33:13.781Z [TRACE] notification-service - Database INSERT on users - Execution time: 246ms - Rows affected: 23 - RequestID: v97jc4343ga +2025-06-18T14:33:13.881Z [INFO] order-service - POST /api/v1/users - Status: 503 - Response time: 1855ms - IP: 192.168.147.171 - User: user_1027 - RequestID: 8uox6mpngip +2025-06-18T14:33:13.981Z [INFO] notification-service - Auth event: password_change - User: user_1077 - IP: 192.168.232.72 - RequestID: 9wx03tqilit +2025-06-18T14:33:14.081Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 581ms - RequestID: 8m88t0t3a9o +2025-06-18T14:33:14.181Z [TRACE] auth-service - Auth event: logout - User: user_1090 - IP: 192.168.187.199 - RequestID: bnpi1ixbi5j +2025-06-18T14:33:14.281Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 288ms - Rows affected: 3 - RequestID: nugtj4q2m4 +2025-06-18T14:33:14.381Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 984ms - RequestID: sdblqnxmtwo +2025-06-18T14:33:14.481Z [INFO] order-service - Database INSERT on products - Execution time: 5ms - Rows affected: 52 - RequestID: cps7ohi95l +2025-06-18T14:33:14.581Z [INFO] auth-service - Auth event: login_success - User: user_1023 - IP: 192.168.232.72 - RequestID: qrnlihs9l3 +2025-06-18T14:33:14.681Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.46.63 - RequestID: tva6ob3yar +2025-06-18T14:33:14.781Z [DEBUG] order-service - Operation: order_created - Processing time: 533ms - RequestID: zz1xfd33rph +2025-06-18T14:33:14.881Z [INFO] notification-service - PUT /api/v1/users - Status: 201 - Response time: 973ms - IP: 192.168.53.133 - User: user_1073 - RequestID: qi4ldc7ehdf +2025-06-18T14:33:14.981Z [INFO] inventory-service - Auth event: login_success - User: user_1090 - IP: 192.168.211.72 - RequestID: ajqt1jf728a +2025-06-18T14:33:15.081Z [INFO] notification-service - Database DELETE on users - Execution time: 261ms - Rows affected: 50 - RequestID: 6vv9gzpmy6 +2025-06-18T14:33:15.181Z [TRACE] order-service - Auth event: logout - User: user_1024 - IP: 192.168.133.7 - RequestID: iaqto5oh7x +2025-06-18T14:33:15.281Z [TRACE] auth-service - Database SELECT on payments - Execution time: 234ms - Rows affected: 82 - RequestID: 3oqvmjk85hc +2025-06-18T14:33:15.381Z [DEBUG] user-service - POST /api/v1/orders - Status: 503 - Response time: 136ms - IP: 192.168.64.33 - User: user_1004 - RequestID: 2aih588az44 +2025-06-18T14:33:15.481Z [INFO] user-service - Operation: order_created - Processing time: 333ms - RequestID: yb4b46u5n7q +2025-06-18T14:33:15.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1006 - IP: 192.168.36.218 - RequestID: ywb8zdc6ick +2025-06-18T14:33:15.681Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 248ms - RequestID: 37yisaikmck +2025-06-18T14:33:15.781Z [TRACE] inventory-service - Auth event: login_failed - User: user_1012 - IP: 192.168.68.128 - RequestID: 8ped56f4ij +2025-06-18T14:33:15.881Z [TRACE] order-service - PUT /api/v1/users - Status: 401 - Response time: 555ms - IP: 192.168.138.123 - User: user_1071 - RequestID: dklw9z9ujm +2025-06-18T14:33:15.981Z [INFO] notification-service - Database UPDATE on products - Execution time: 289ms - Rows affected: 8 - RequestID: drznj8o65v8 +2025-06-18T14:33:16.081Z [TRACE] order-service - Database SELECT on sessions - Execution time: 60ms - Rows affected: 98 - RequestID: b4fnk1fam05 +2025-06-18T14:33:16.181Z [INFO] notification-service - POST /api/v1/users - Status: 502 - Response time: 422ms - IP: 192.168.242.165 - User: user_1066 - RequestID: 61hy8gc2jyq +2025-06-18T14:33:16.281Z [DEBUG] order-service - POST /api/v1/orders - Status: 401 - Response time: 1809ms - IP: 192.168.240.169 - User: user_1091 - RequestID: dj51qt4p0je +2025-06-18T14:33:16.381Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 400 - Response time: 892ms - IP: 192.168.147.171 - User: user_1059 - RequestID: 0gqotb1m21rj +2025-06-18T14:33:16.481Z [INFO] payment-service - PUT /api/v1/orders - Status: 400 - Response time: 855ms - IP: 192.168.79.116 - User: user_1082 - RequestID: vesdv83822 +2025-06-18T14:33:16.581Z [INFO] payment-service - Operation: cache_miss - Processing time: 975ms - RequestID: r2mn84qk7si +2025-06-18T14:33:16.681Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 995ms - RequestID: jni9bsgt7gt +2025-06-18T14:33:16.781Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 293ms - Rows affected: 6 - RequestID: 08w0taamzaa5 +2025-06-18T14:33:16.881Z [DEBUG] order-service - Operation: cache_miss - Processing time: 709ms - RequestID: uund87syl3e +2025-06-18T14:33:16.981Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 400 - Response time: 1786ms - IP: 192.168.133.7 - User: user_1078 - RequestID: pyiaivdhll +2025-06-18T14:33:17.081Z [INFO] notification-service - Database UPDATE on products - Execution time: 227ms - Rows affected: 18 - RequestID: cwssxuq3p7 +2025-06-18T14:33:17.181Z [TRACE] user-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.85.229 - RequestID: wqicwzwie3b +2025-06-18T14:33:17.281Z [INFO] order-service - Operation: cache_hit - Processing time: 199ms - RequestID: bb73zy5j7im +2025-06-18T14:33:17.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1005 - IP: 192.168.167.32 - RequestID: ysyr91ci8vi +2025-06-18T14:33:17.481Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1244ms - IP: 192.168.44.5 - User: user_1086 - RequestID: t1cjn8ju1ug +2025-06-18T14:33:17.581Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 90ms - RequestID: 476nf1guhj +2025-06-18T14:33:17.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 81ms - RequestID: 5o3cchl6jv8 +2025-06-18T14:33:17.781Z [DEBUG] user-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.79.141 - RequestID: e9z80ybt25 +2025-06-18T14:33:17.881Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 364ms - RequestID: a573of5gobo +2025-06-18T14:33:17.981Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 553ms - RequestID: z1wwf5qov8 +2025-06-18T14:33:18.081Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 376ms - Rows affected: 86 - RequestID: 30vkz1gv424 +2025-06-18T14:33:18.181Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 502 - Response time: 418ms - IP: 192.168.79.116 - User: user_1068 - RequestID: nvxgnxjwiwl +2025-06-18T14:33:18.281Z [TRACE] auth-service - Auth event: login_success - User: user_1005 - IP: 192.168.30.79 - RequestID: 0gnapf24bc7m +2025-06-18T14:33:18.381Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1397ms - IP: 192.168.32.38 - User: user_1056 - RequestID: pjrotleofwn +2025-06-18T14:33:18.481Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 110ms - RequestID: ogm88qf3kdh +2025-06-18T14:33:18.581Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 225ms - Rows affected: 2 - RequestID: pmhxm2gumlh +2025-06-18T14:33:18.681Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 411ms - Rows affected: 11 - RequestID: wnvkzwjia2p +2025-06-18T14:33:18.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.247.134 - RequestID: a2atkkkey5b +2025-06-18T14:33:18.881Z [DEBUG] order-service - GET /api/v1/orders - Status: 403 - Response time: 549ms - IP: 192.168.1.152 - User: user_1057 - RequestID: f736yi39b +2025-06-18T14:33:18.981Z [INFO] user-service - Auth event: logout - User: user_1075 - IP: 192.168.79.141 - RequestID: xe23zu3gqsh +2025-06-18T14:33:19.081Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 400ms - Rows affected: 7 - RequestID: rapf9ipzx7 +2025-06-18T14:33:19.181Z [INFO] payment-service - Auth event: password_change - User: user_1003 - IP: 192.168.28.146 - RequestID: 7j1m2ip479w +2025-06-18T14:33:19.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.13.72 - RequestID: fce34qx939 +2025-06-18T14:33:19.381Z [DEBUG] user-service - Auth event: password_change - User: user_1004 - IP: 192.168.174.114 - RequestID: budxrhryhi +2025-06-18T14:33:19.481Z [INFO] inventory-service - POST /api/v1/inventory - Status: 400 - Response time: 1875ms - IP: 192.168.147.171 - User: user_1079 - RequestID: xssqiwtsv58 +2025-06-18T14:33:19.581Z [INFO] order-service - Auth event: login_failed - User: user_1057 - IP: 192.168.36.218 - RequestID: t1tuybbb1f +2025-06-18T14:33:19.681Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 500 - Response time: 536ms - IP: 192.168.104.37 - User: user_1074 - RequestID: f91ajyhaxgu +2025-06-18T14:33:19.781Z [TRACE] user-service - Operation: cache_hit - Processing time: 928ms - RequestID: 51m1kof6ut +2025-06-18T14:33:19.881Z [DEBUG] user-service - Auth event: logout - User: user_1072 - IP: 192.168.31.117 - RequestID: 84d31yjtbk4 +2025-06-18T14:33:19.981Z [DEBUG] auth-service - Database DELETE on products - Execution time: 444ms - Rows affected: 98 - RequestID: en1q6vhtrwj +2025-06-18T14:33:20.081Z [INFO] user-service - Operation: payment_processed - Processing time: 282ms - RequestID: vpywr9zotia +2025-06-18T14:33:20.181Z [DEBUG] notification-service - POST /api/v1/users - Status: 201 - Response time: 955ms - IP: 192.168.167.32 - User: user_1028 - RequestID: nhbidpieayn +2025-06-18T14:33:20.281Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 265ms - Rows affected: 72 - RequestID: m2s68vipvr +2025-06-18T14:33:20.381Z [INFO] notification-service - Operation: cache_miss - Processing time: 1044ms - RequestID: qnn5lku0hha +2025-06-18T14:33:20.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 357ms - RequestID: hliejuf5sbi +2025-06-18T14:33:20.581Z [INFO] notification-service - Database DELETE on products - Execution time: 470ms - Rows affected: 97 - RequestID: t8f8148t08 +2025-06-18T14:33:20.681Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 503 - Response time: 452ms - IP: 192.168.196.226 - User: user_1090 - RequestID: womu6mxaul +2025-06-18T14:33:20.781Z [TRACE] payment-service - Database DELETE on users - Execution time: 292ms - Rows affected: 92 - RequestID: 4hmtecs65hl +2025-06-18T14:33:20.881Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 681ms - IP: 192.168.13.72 - User: user_1073 - RequestID: ohno798vs3s +2025-06-18T14:33:20.981Z [TRACE] auth-service - Operation: payment_processed - Processing time: 237ms - RequestID: ym2l2aheyxf +2025-06-18T14:33:21.081Z [TRACE] payment-service - Auth event: login_failed - User: user_1090 - IP: 192.168.44.5 - RequestID: 8pjeu5rx4kw +2025-06-18T14:33:21.181Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 185ms - Rows affected: 90 - RequestID: zgy58s8klih +2025-06-18T14:33:21.281Z [DEBUG] notification-service - POST /api/v1/users - Status: 401 - Response time: 1663ms - IP: 192.168.159.94 - User: user_1005 - RequestID: 4oysaw7qi4n +2025-06-18T14:33:21.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 300ms - RequestID: ka3qspjgwho +2025-06-18T14:33:21.481Z [DEBUG] order-service - PUT /api/v1/orders - Status: 502 - Response time: 362ms - IP: 192.168.36.218 - User: user_1031 - RequestID: joqzqcyzir +2025-06-18T14:33:21.581Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1079 - IP: 192.168.10.184 - RequestID: r2zdi4zoa4l +2025-06-18T14:33:21.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1021 - IP: 192.168.11.60 - RequestID: 1m8hairvheki +2025-06-18T14:33:21.781Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1417ms - IP: 192.168.79.116 - User: user_1002 - RequestID: l1gje8vqpj +2025-06-18T14:33:21.881Z [DEBUG] notification-service - POST /api/v1/users - Status: 400 - Response time: 1469ms - IP: 192.168.240.169 - User: user_1030 - RequestID: ao9gblk7en +2025-06-18T14:33:21.981Z [INFO] inventory-service - Database INSERT on payments - Execution time: 55ms - Rows affected: 44 - RequestID: 7wluksw82of +2025-06-18T14:33:22.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 406ms - RequestID: j0kyc03w3vk +2025-06-18T14:33:22.181Z [INFO] order-service - Auth event: password_change - User: user_1032 - IP: 192.168.46.63 - RequestID: 1xkuu3p16lki +2025-06-18T14:33:22.281Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 448ms - Rows affected: 37 - RequestID: 0lc95f7cy2y +2025-06-18T14:33:22.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.33.76 - RequestID: 425ufz9nku8 +2025-06-18T14:33:22.481Z [DEBUG] user-service - Operation: cache_hit - Processing time: 770ms - RequestID: knrwgkifamk +2025-06-18T14:33:22.581Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 483ms - IP: 192.168.97.87 - User: user_1065 - RequestID: xumdk315sts +2025-06-18T14:33:22.681Z [INFO] user-service - Database UPDATE on payments - Execution time: 204ms - Rows affected: 84 - RequestID: gouuxtgtbq +2025-06-18T14:33:22.781Z [TRACE] auth-service - Operation: email_sent - Processing time: 728ms - RequestID: stuqcr00bmj +2025-06-18T14:33:22.881Z [TRACE] auth-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.100.240 - RequestID: 4nj28g21amy +2025-06-18T14:33:22.981Z [DEBUG] payment-service - Auth event: logout - User: user_1034 - IP: 192.168.189.103 - RequestID: nvi8toeio6b +2025-06-18T14:33:23.081Z [TRACE] payment-service - Auth event: login_failed - User: user_1004 - IP: 192.168.158.144 - RequestID: tfahovx3am +2025-06-18T14:33:23.181Z [INFO] payment-service - Auth event: password_change - User: user_1035 - IP: 192.168.10.184 - RequestID: zqhi8oq1rtg +2025-06-18T14:33:23.281Z [TRACE] notification-service - Database INSERT on products - Execution time: 282ms - Rows affected: 6 - RequestID: i0mq3byub3n +2025-06-18T14:33:23.381Z [DEBUG] user-service - Auth event: login_success - User: user_1030 - IP: 192.168.14.77 - RequestID: facnsq1eqz +2025-06-18T14:33:23.481Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 500 - Response time: 788ms - IP: 192.168.229.123 - User: user_1032 - RequestID: w4egr8jkbx +2025-06-18T14:33:23.581Z [TRACE] order-service - Auth event: logout - User: user_1075 - IP: 192.168.32.38 - RequestID: 6jslxh8kznj +2025-06-18T14:33:23.681Z [INFO] inventory-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.79.143 - RequestID: ig6j9gy780m +2025-06-18T14:33:23.781Z [DEBUG] auth-service - Auth event: logout - User: user_1006 - IP: 192.168.79.116 - RequestID: ynlqe3gjs7 +2025-06-18T14:33:23.881Z [INFO] user-service - Operation: webhook_sent - Processing time: 646ms - RequestID: w3xzdubcrtg +2025-06-18T14:33:23.981Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 396ms - Rows affected: 57 - RequestID: iwzgo0bd9p +2025-06-18T14:33:24.081Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 105ms - Rows affected: 88 - RequestID: gp05a9o27ho +2025-06-18T14:33:24.181Z [DEBUG] payment-service - Database DELETE on products - Execution time: 394ms - Rows affected: 73 - RequestID: q8cz38tdaa +2025-06-18T14:33:24.281Z [TRACE] auth-service - Auth event: logout - User: user_1073 - IP: 192.168.229.123 - RequestID: s5vberp40li +2025-06-18T14:33:24.381Z [INFO] payment-service - Database SELECT on sessions - Execution time: 436ms - Rows affected: 93 - RequestID: u0fw1jcvsz +2025-06-18T14:33:24.481Z [INFO] notification-service - Database INSERT on orders - Execution time: 344ms - Rows affected: 95 - RequestID: hnmnfo4tu8t +2025-06-18T14:33:24.581Z [INFO] notification-service - Operation: payment_processed - Processing time: 230ms - RequestID: 1hrpzeyue4t +2025-06-18T14:33:24.681Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 11ms - Rows affected: 43 - RequestID: uenyw52hiu +2025-06-18T14:33:24.781Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 401 - Response time: 865ms - IP: 192.168.133.7 - User: user_1012 - RequestID: e0pehnz36wp +2025-06-18T14:33:24.881Z [TRACE] notification-service - Operation: notification_queued - Processing time: 973ms - RequestID: xvi6krsn7eh +2025-06-18T14:33:24.981Z [DEBUG] user-service - Database UPDATE on users - Execution time: 402ms - Rows affected: 1 - RequestID: fgglfudwm9 +2025-06-18T14:33:25.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.170.215 - RequestID: q2yvzr24tr +2025-06-18T14:33:25.181Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 200 - Response time: 669ms - IP: 192.168.85.229 - User: user_1084 - RequestID: y0i54vd2qya +2025-06-18T14:33:25.281Z [DEBUG] notification-service - Auth event: logout - User: user_1055 - IP: 192.168.194.41 - RequestID: tze5fiz512 +2025-06-18T14:33:25.381Z [TRACE] inventory-service - Auth event: password_change - User: user_1091 - IP: 192.168.194.41 - RequestID: ifao3nvp4f +2025-06-18T14:33:25.481Z [TRACE] user-service - PUT /api/v1/users - Status: 201 - Response time: 846ms - IP: 192.168.194.41 - User: user_1053 - RequestID: meg69fzjwia +2025-06-18T14:33:25.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 726ms - RequestID: b9nhac0z4vk +2025-06-18T14:33:25.681Z [INFO] notification-service - Auth event: login_success - User: user_1076 - IP: 192.168.1.152 - RequestID: dfohrweh5ya +2025-06-18T14:33:25.781Z [INFO] order-service - Database INSERT on orders - Execution time: 356ms - Rows affected: 43 - RequestID: ysnn4uhl0i +2025-06-18T14:33:25.881Z [INFO] inventory-service - Operation: notification_queued - Processing time: 295ms - RequestID: y6hi1xpbgy +2025-06-18T14:33:25.981Z [TRACE] auth-service - Auth event: password_change - User: user_1035 - IP: 192.168.79.116 - RequestID: ruhx0on8czl +2025-06-18T14:33:26.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1034 - IP: 192.168.46.63 - RequestID: m4ccnecy9r +2025-06-18T14:33:26.181Z [TRACE] auth-service - POST /api/v1/payments - Status: 502 - Response time: 728ms - IP: 192.168.53.133 - User: user_1041 - RequestID: 058bejonmhwj +2025-06-18T14:33:26.281Z [INFO] notification-service - Database UPDATE on orders - Execution time: 66ms - Rows affected: 80 - RequestID: x6pfrxvm8n8 +2025-06-18T14:33:26.381Z [INFO] payment-service - Database UPDATE on users - Execution time: 143ms - Rows affected: 4 - RequestID: djbojt8kbng +2025-06-18T14:33:26.481Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 530ms - RequestID: 1ri0ymucghq +2025-06-18T14:33:26.581Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 305ms - Rows affected: 68 - RequestID: 6nlc5m5y3fn +2025-06-18T14:33:26.681Z [INFO] inventory-service - PUT /api/v1/payments - Status: 502 - Response time: 385ms - IP: 192.168.174.114 - User: user_1048 - RequestID: 0ew2vvk2ozir +2025-06-18T14:33:26.781Z [TRACE] auth-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.31.117 - RequestID: a6n6u75luy +2025-06-18T14:33:26.881Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 78ms - RequestID: tifzzoab4c +2025-06-18T14:33:26.981Z [TRACE] order-service - Database DELETE on payments - Execution time: 334ms - Rows affected: 71 - RequestID: ranw4u8jhg +2025-06-18T14:33:27.081Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 180ms - IP: 192.168.170.215 - User: user_1067 - RequestID: ltodrr88xo +2025-06-18T14:33:27.181Z [INFO] order-service - Auth event: logout - User: user_1052 - IP: 192.168.211.72 - RequestID: o27s6zy7eqg +2025-06-18T14:33:27.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1079 - IP: 192.168.141.100 - RequestID: 57gqow2q3y7 +2025-06-18T14:33:27.381Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 500 - Response time: 185ms - IP: 192.168.36.218 - User: user_1011 - RequestID: x7s67ydb66a +2025-06-18T14:33:27.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 631ms - RequestID: 5suyviufdx8 +2025-06-18T14:33:27.581Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 457ms - Rows affected: 38 - RequestID: dymo3dh0e7 +2025-06-18T14:33:27.681Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 503 - Response time: 1259ms - IP: 192.168.31.117 - User: user_1050 - RequestID: hjjtcy7wwbu +2025-06-18T14:33:27.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.247.134 - RequestID: wpfmid1v9hb +2025-06-18T14:33:27.881Z [INFO] payment-service - Database SELECT on sessions - Execution time: 223ms - Rows affected: 5 - RequestID: 8i8l3xxsg3d +2025-06-18T14:33:27.981Z [INFO] payment-service - Auth event: login_failed - User: user_1026 - IP: 192.168.44.5 - RequestID: 83dymf945vh +2025-06-18T14:33:28.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 653ms - RequestID: ga5x6btpcl4 +2025-06-18T14:33:28.181Z [INFO] notification-service - Auth event: login_success - User: user_1041 - IP: 192.168.97.87 - RequestID: n6r3hb0sv09 +2025-06-18T14:33:28.281Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 341ms - IP: 192.168.187.199 - User: user_1011 - RequestID: 38pqrl4zvqv +2025-06-18T14:33:28.381Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1993ms - IP: 192.168.46.63 - User: user_1094 - RequestID: g25o698l01w +2025-06-18T14:33:28.481Z [TRACE] user-service - Auth event: logout - User: user_1017 - IP: 192.168.189.103 - RequestID: h9ewig4bxwu +2025-06-18T14:33:28.581Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 253ms - Rows affected: 44 - RequestID: ipqjik73flg +2025-06-18T14:33:28.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.159.94 - RequestID: 67jred0us3n +2025-06-18T14:33:28.781Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 446ms - Rows affected: 79 - RequestID: 4afj7wp4bv8 +2025-06-18T14:33:28.881Z [INFO] auth-service - GET /api/v1/auth/login - Status: 200 - Response time: 493ms - IP: 192.168.229.123 - User: user_1016 - RequestID: s0q18oi2qo +2025-06-18T14:33:28.981Z [TRACE] order-service - Operation: cache_hit - Processing time: 498ms - RequestID: o90uvum8xv +2025-06-18T14:33:29.081Z [TRACE] notification-service - POST /api/v1/orders - Status: 400 - Response time: 1039ms - IP: 192.168.44.5 - User: user_1023 - RequestID: i0a44uv1j7g +2025-06-18T14:33:29.181Z [TRACE] order-service - PUT /api/v1/users - Status: 403 - Response time: 706ms - IP: 192.168.170.215 - User: user_1096 - RequestID: 3ewzyomz8ih +2025-06-18T14:33:29.281Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 244ms - Rows affected: 65 - RequestID: 3heeixvgrek +2025-06-18T14:33:29.381Z [INFO] notification-service - Operation: payment_processed - Processing time: 427ms - RequestID: jp4frxmujy +2025-06-18T14:33:29.481Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 263ms - Rows affected: 25 - RequestID: q3caa876vlk +2025-06-18T14:33:29.581Z [INFO] notification-service - PUT /api/v1/inventory - Status: 403 - Response time: 1307ms - IP: 192.168.53.133 - User: user_1090 - RequestID: svxakg1233 +2025-06-18T14:33:29.681Z [TRACE] payment-service - GET /api/v1/users - Status: 400 - Response time: 76ms - IP: 192.168.79.141 - User: user_1036 - RequestID: 82krvrbh5qm +2025-06-18T14:33:29.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 661ms - RequestID: ghjwbrbiuvi +2025-06-18T14:33:29.881Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 396ms - Rows affected: 85 - RequestID: 06cevq47oqd8 +2025-06-18T14:33:29.981Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 336ms - Rows affected: 46 - RequestID: aib8mtjh5dd +2025-06-18T14:33:30.081Z [DEBUG] auth-service - PUT /api/v1/users - Status: 401 - Response time: 1996ms - IP: 192.168.147.171 - User: user_1013 - RequestID: rdra0fhwa9c +2025-06-18T14:33:30.181Z [INFO] notification-service - PATCH /api/v1/payments - Status: 401 - Response time: 1468ms - IP: 192.168.227.77 - User: user_1006 - RequestID: iplvuxg8coc +2025-06-18T14:33:30.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 140ms - RequestID: hez51r5jgkb +2025-06-18T14:33:30.381Z [INFO] inventory-service - Auth event: logout - User: user_1093 - IP: 192.168.235.117 - RequestID: pnwm5jj3tb +2025-06-18T14:33:30.481Z [TRACE] notification-service - Auth event: login_success - User: user_1051 - IP: 192.168.247.134 - RequestID: ve014fhs3s +2025-06-18T14:33:30.581Z [INFO] notification-service - Operation: payment_processed - Processing time: 980ms - RequestID: 553fwb857qs +2025-06-18T14:33:30.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1099 - IP: 192.168.32.38 - RequestID: n4d3uxsgr4 +2025-06-18T14:33:30.781Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 401 - Response time: 457ms - IP: 192.168.147.171 - User: user_1028 - RequestID: 767dwnsygdb +2025-06-18T14:33:30.881Z [INFO] payment-service - PATCH /api/v1/orders - Status: 503 - Response time: 894ms - IP: 192.168.227.233 - User: user_1096 - RequestID: ck3qveu9u75 +2025-06-18T14:33:30.981Z [TRACE] user-service - Operation: cache_miss - Processing time: 364ms - RequestID: 9bw22ygnv08 +2025-06-18T14:33:31.081Z [INFO] user-service - Operation: email_sent - Processing time: 580ms - RequestID: d6en2frei07 +2025-06-18T14:33:31.181Z [TRACE] order-service - Auth event: logout - User: user_1001 - IP: 192.168.64.33 - RequestID: 1z48ej2cb2c +2025-06-18T14:33:31.281Z [TRACE] auth-service - Database DELETE on orders - Execution time: 391ms - Rows affected: 79 - RequestID: byuf622jfol +2025-06-18T14:33:31.381Z [INFO] inventory-service - GET /api/v1/inventory - Status: 502 - Response time: 1040ms - IP: 192.168.30.79 - User: user_1072 - RequestID: 7fkx9udsn1l +2025-06-18T14:33:31.481Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 492ms - Rows affected: 83 - RequestID: s7c908f28g8 +2025-06-18T14:33:31.581Z [TRACE] auth-service - Database INSERT on products - Execution time: 221ms - Rows affected: 34 - RequestID: ecwzhyxf9i +2025-06-18T14:33:31.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1070 - IP: 192.168.240.169 - RequestID: u3u8qlhvyqq +2025-06-18T14:33:31.781Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 294ms - RequestID: ghkcmtvzxnj +2025-06-18T14:33:31.881Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 659ms - IP: 192.168.227.233 - User: user_1028 - RequestID: vj8a4peotw +2025-06-18T14:33:31.981Z [TRACE] order-service - Auth event: password_change - User: user_1071 - IP: 192.168.167.32 - RequestID: pm3iz1a4znf +2025-06-18T14:33:32.081Z [DEBUG] user-service - Database DELETE on products - Execution time: 447ms - Rows affected: 41 - RequestID: y42krjzba4 +2025-06-18T14:33:32.181Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 200 - Response time: 244ms - IP: 192.168.85.229 - User: user_1011 - RequestID: dl2p6oiorz5 +2025-06-18T14:33:32.281Z [TRACE] inventory-service - Operation: email_sent - Processing time: 994ms - RequestID: 6cykpkhal9e +2025-06-18T14:33:32.381Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 1841ms - IP: 192.168.79.141 - User: user_1072 - RequestID: r9ogbrpg0o +2025-06-18T14:33:32.481Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 107ms - Rows affected: 29 - RequestID: ree9t8eloqf +2025-06-18T14:33:32.581Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1838ms - IP: 192.168.10.184 - User: user_1030 - RequestID: pxwt3dl3rt +2025-06-18T14:33:32.681Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 279ms - RequestID: 6hpbw7wbs0c +2025-06-18T14:33:32.781Z [INFO] auth-service - Auth event: password_change - User: user_1002 - IP: 192.168.68.128 - RequestID: 7n1fa1pzmpu +2025-06-18T14:33:32.881Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 400ms - Rows affected: 73 - RequestID: lzucq26sbn +2025-06-18T14:33:32.981Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 332ms - Rows affected: 12 - RequestID: vjhrrmdqb5d +2025-06-18T14:33:33.081Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 389ms - Rows affected: 35 - RequestID: hjphsf5rqkr +2025-06-18T14:33:33.181Z [TRACE] order-service - Auth event: password_change - User: user_1021 - IP: 192.168.187.199 - RequestID: rl77dz4sca +2025-06-18T14:33:33.281Z [INFO] notification-service - Operation: email_sent - Processing time: 595ms - RequestID: 7u6t1krz0go +2025-06-18T14:33:33.381Z [TRACE] auth-service - Database SELECT on users - Execution time: 1ms - Rows affected: 41 - RequestID: ieioikgvgc +2025-06-18T14:33:33.481Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 268ms - Rows affected: 69 - RequestID: 873ksp6h7wu +2025-06-18T14:33:33.581Z [INFO] inventory-service - Database SELECT on payments - Execution time: 202ms - Rows affected: 22 - RequestID: vnwp23cuj3d +2025-06-18T14:33:33.681Z [DEBUG] order-service - POST /api/v1/payments - Status: 500 - Response time: 1776ms - IP: 192.168.232.72 - User: user_1069 - RequestID: llcq62ua4m +2025-06-18T14:33:33.781Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 449ms - Rows affected: 87 - RequestID: elwf3ny47ng +2025-06-18T14:33:33.881Z [TRACE] user-service - Database DELETE on products - Execution time: 488ms - Rows affected: 21 - RequestID: y1x5n4u0ti +2025-06-18T14:33:33.981Z [DEBUG] auth-service - POST /api/v1/payments - Status: 503 - Response time: 255ms - IP: 192.168.14.77 - User: user_1077 - RequestID: uy9e96qupoh +2025-06-18T14:33:34.081Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 163ms - IP: 192.168.1.152 - User: user_1061 - RequestID: 282asjw24sz +2025-06-18T14:33:34.181Z [DEBUG] order-service - Auth event: login_failed - User: user_1009 - IP: 192.168.64.33 - RequestID: m57dsv28ljl +2025-06-18T14:33:34.281Z [TRACE] order-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.14.77 - RequestID: z8as13ziv2c +2025-06-18T14:33:34.381Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 498ms - Rows affected: 15 - RequestID: kepp2vrg0l +2025-06-18T14:33:34.481Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1348ms - IP: 192.168.36.218 - User: user_1046 - RequestID: 6whb89u88rh +2025-06-18T14:33:34.581Z [DEBUG] auth-service - POST /api/v1/users - Status: 404 - Response time: 1009ms - IP: 192.168.211.72 - User: user_1005 - RequestID: ziloge5uky +2025-06-18T14:33:34.681Z [DEBUG] inventory-service - Auth event: logout - User: user_1047 - IP: 192.168.44.5 - RequestID: iz648yfwrl +2025-06-18T14:33:34.781Z [INFO] auth-service - Database DELETE on sessions - Execution time: 162ms - Rows affected: 9 - RequestID: rddt47vihq +2025-06-18T14:33:34.881Z [INFO] user-service - Operation: email_sent - Processing time: 82ms - RequestID: te4ikg1xw3l +2025-06-18T14:33:34.981Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 97ms - Rows affected: 83 - RequestID: 3st0k8ep7qe +2025-06-18T14:33:35.081Z [DEBUG] user-service - Operation: order_created - Processing time: 242ms - RequestID: 2jolr5ehb4f +2025-06-18T14:33:35.181Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1445ms - IP: 192.168.187.199 - User: user_1086 - RequestID: gkoaasl5s6b +2025-06-18T14:33:35.281Z [TRACE] inventory-service - Operation: email_sent - Processing time: 897ms - RequestID: j2jthh3cc2 +2025-06-18T14:33:35.381Z [DEBUG] user-service - Auth event: password_change - User: user_1080 - IP: 192.168.68.158 - RequestID: yldsuphvkzk +2025-06-18T14:33:35.481Z [TRACE] auth-service - Auth event: login_failed - User: user_1047 - IP: 192.168.13.72 - RequestID: etso71120ca +2025-06-18T14:33:35.581Z [INFO] inventory-service - Operation: email_sent - Processing time: 935ms - RequestID: 30rc3g9o3md +2025-06-18T14:33:35.681Z [DEBUG] order-service - Operation: notification_queued - Processing time: 340ms - RequestID: iht9y0n2yae +2025-06-18T14:33:35.781Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 985ms - IP: 192.168.30.79 - User: user_1084 - RequestID: kr82cb5j9pq +2025-06-18T14:33:35.881Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 174ms - Rows affected: 74 - RequestID: dsckrr6ogi5 +2025-06-18T14:33:35.981Z [TRACE] notification-service - Operation: cache_miss - Processing time: 353ms - RequestID: 9k5yxzti0wp +2025-06-18T14:33:36.081Z [TRACE] payment-service - Database DELETE on users - Execution time: 72ms - Rows affected: 99 - RequestID: eko728ie1zo +2025-06-18T14:33:36.181Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 144ms - Rows affected: 58 - RequestID: dqxhbt6vd8p +2025-06-18T14:33:36.281Z [TRACE] notification-service - Database UPDATE on users - Execution time: 275ms - Rows affected: 84 - RequestID: 5kbb8yv3ht2 +2025-06-18T14:33:36.381Z [INFO] notification-service - PUT /api/v1/payments - Status: 503 - Response time: 660ms - IP: 192.168.227.77 - User: user_1098 - RequestID: kd0r5vialig +2025-06-18T14:33:36.481Z [DEBUG] notification-service - Auth event: login_failed - User: user_1024 - IP: 192.168.144.38 - RequestID: 2hlgnsl2jpt +2025-06-18T14:33:36.581Z [DEBUG] order-service - Operation: cache_hit - Processing time: 1024ms - RequestID: yp7xidd3uqb +2025-06-18T14:33:36.681Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 437ms - Rows affected: 28 - RequestID: 4de8sa4yjec +2025-06-18T14:33:36.781Z [TRACE] notification-service - POST /api/v1/users - Status: 502 - Response time: 1726ms - IP: 192.168.46.63 - User: user_1032 - RequestID: 21l5zt60q4a +2025-06-18T14:33:36.881Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1322ms - IP: 192.168.79.116 - User: user_1015 - RequestID: zzrjo00zclt +2025-06-18T14:33:36.981Z [INFO] order-service - Database UPDATE on products - Execution time: 402ms - Rows affected: 42 - RequestID: qkhmz2rltv +2025-06-18T14:33:37.081Z [DEBUG] user-service - Operation: cache_miss - Processing time: 851ms - RequestID: gn9npd34k2q +2025-06-18T14:33:37.181Z [INFO] notification-service - Database UPDATE on users - Execution time: 86ms - Rows affected: 5 - RequestID: 1bly5i7w3gf +2025-06-18T14:33:37.281Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 367ms - Rows affected: 40 - RequestID: tvs0e3c1l1t +2025-06-18T14:33:37.381Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 76ms - Rows affected: 79 - RequestID: o8z4xfcpl4 +2025-06-18T14:33:37.481Z [TRACE] user-service - Database UPDATE on products - Execution time: 276ms - Rows affected: 52 - RequestID: dzejd563i5 +2025-06-18T14:33:37.581Z [INFO] payment-service - Operation: cache_miss - Processing time: 952ms - RequestID: cg1mytl5bj5 +2025-06-18T14:33:37.681Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 400 - Response time: 893ms - IP: 192.168.211.72 - User: user_1002 - RequestID: m7xnl3n3vd +2025-06-18T14:33:37.781Z [INFO] auth-service - Operation: cache_hit - Processing time: 451ms - RequestID: re2nqd44i4 +2025-06-18T14:33:37.881Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 144ms - RequestID: 6zauh0ljtm +2025-06-18T14:33:37.981Z [DEBUG] payment-service - Operation: email_sent - Processing time: 835ms - RequestID: 2kgny3j2p2p +2025-06-18T14:33:38.081Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 416ms - Rows affected: 99 - RequestID: jh1rg8ajx9 +2025-06-18T14:33:38.181Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 43ms - Rows affected: 56 - RequestID: qqdyg23cuds +2025-06-18T14:33:38.281Z [TRACE] auth-service - Database INSERT on products - Execution time: 42ms - Rows affected: 39 - RequestID: 974wcy0dqvw +2025-06-18T14:33:38.381Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 252ms - Rows affected: 63 - RequestID: yydudx6gx7 +2025-06-18T14:33:38.481Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 855ms - RequestID: 4h01esjdfk2 +2025-06-18T14:33:38.581Z [TRACE] payment-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.133.7 - RequestID: 53p9po04h0j +2025-06-18T14:33:38.681Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 358ms - Rows affected: 93 - RequestID: gnoecuzixle +2025-06-18T14:33:38.781Z [INFO] user-service - Database UPDATE on products - Execution time: 308ms - Rows affected: 13 - RequestID: jbkl229wvd +2025-06-18T14:33:38.881Z [INFO] order-service - Operation: order_created - Processing time: 135ms - RequestID: pmxh5kux8a +2025-06-18T14:33:38.981Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 647ms - RequestID: kt5td6ur05s +2025-06-18T14:33:39.081Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1076ms - IP: 192.168.242.165 - User: user_1089 - RequestID: 3q0yi59rny8 +2025-06-18T14:33:39.181Z [DEBUG] payment-service - PUT /api/v1/users - Status: 503 - Response time: 182ms - IP: 192.168.113.218 - User: user_1050 - RequestID: ncfyn51vvdh +2025-06-18T14:33:39.281Z [INFO] notification-service - Operation: notification_queued - Processing time: 429ms - RequestID: se58it025h +2025-06-18T14:33:39.381Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 502 - Response time: 797ms - IP: 192.168.1.152 - User: user_1022 - RequestID: lyvvrdm617c +2025-06-18T14:33:39.481Z [TRACE] inventory-service - Auth event: logout - User: user_1085 - IP: 192.168.159.94 - RequestID: tj0glzr61mo +2025-06-18T14:33:39.581Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 258ms - Rows affected: 2 - RequestID: lh88078rx8r +2025-06-18T14:33:39.681Z [INFO] inventory-service - Operation: email_sent - Processing time: 447ms - RequestID: yms5cgyc9i +2025-06-18T14:33:39.781Z [INFO] auth-service - Operation: email_sent - Processing time: 435ms - RequestID: 65hq7j4ljvc +2025-06-18T14:33:39.881Z [INFO] user-service - Auth event: login_success - User: user_1016 - IP: 192.168.141.100 - RequestID: 9wvookp4pti +2025-06-18T14:33:39.981Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 230ms - Rows affected: 6 - RequestID: jlzli72v46 +2025-06-18T14:33:40.081Z [INFO] payment-service - PUT /api/v1/inventory - Status: 400 - Response time: 860ms - IP: 192.168.113.218 - User: user_1071 - RequestID: jl2jeljto7i +2025-06-18T14:33:40.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.68.128 - RequestID: pj99h7m3m8 +2025-06-18T14:33:40.281Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 401 - Response time: 207ms - IP: 192.168.79.116 - User: user_1045 - RequestID: og4n6h47ik +2025-06-18T14:33:40.381Z [INFO] order-service - Auth event: login_failed - User: user_1047 - IP: 192.168.79.143 - RequestID: yy85h64sbg +2025-06-18T14:33:40.481Z [INFO] auth-service - Auth event: login_failed - User: user_1043 - IP: 192.168.138.123 - RequestID: rtl60z57ocs +2025-06-18T14:33:40.581Z [TRACE] auth-service - Auth event: password_change - User: user_1039 - IP: 192.168.85.229 - RequestID: wg7n0i8jtil +2025-06-18T14:33:40.681Z [TRACE] payment-service - Database INSERT on products - Execution time: 65ms - Rows affected: 46 - RequestID: 0mvx6q0kdtl +2025-06-18T14:33:40.781Z [INFO] auth-service - Operation: order_created - Processing time: 362ms - RequestID: mlr2boufie +2025-06-18T14:33:40.881Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 473ms - RequestID: 55id9my8be6 +2025-06-18T14:33:40.981Z [INFO] inventory-service - Auth event: logout - User: user_1042 - IP: 192.168.187.199 - RequestID: 5mcsjfix3lw +2025-06-18T14:33:41.081Z [INFO] inventory-service - Auth event: password_change - User: user_1073 - IP: 192.168.194.41 - RequestID: kisp5h8qbq +2025-06-18T14:33:41.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1008 - IP: 192.168.81.206 - RequestID: cza8sxz5j6 +2025-06-18T14:33:41.281Z [INFO] notification-service - Database UPDATE on users - Execution time: 461ms - Rows affected: 52 - RequestID: g453pyhibj8 +2025-06-18T14:33:41.381Z [TRACE] user-service - Database UPDATE on orders - Execution time: 84ms - Rows affected: 61 - RequestID: 6wq03rn2dtn +2025-06-18T14:33:41.481Z [INFO] notification-service - Auth event: password_change - User: user_1001 - IP: 192.168.28.146 - RequestID: 9q13dvajg3e +2025-06-18T14:33:41.581Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 503 - Response time: 196ms - IP: 192.168.32.38 - User: user_1075 - RequestID: 4ce69vochao +2025-06-18T14:33:41.681Z [INFO] order-service - Auth event: logout - User: user_1075 - IP: 192.168.13.72 - RequestID: ja6bja8n8rj +2025-06-18T14:33:41.781Z [DEBUG] payment-service - Auth event: login_failed - User: user_1015 - IP: 192.168.113.218 - RequestID: dy17poitbou +2025-06-18T14:33:41.881Z [INFO] payment-service - Database DELETE on users - Execution time: 58ms - Rows affected: 85 - RequestID: vjgpontumn +2025-06-18T14:33:41.981Z [INFO] order-service - Operation: inventory_updated - Processing time: 905ms - RequestID: h73r2n5andh +2025-06-18T14:33:42.081Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.28.146 - RequestID: b9bnhx719aj +2025-06-18T14:33:42.181Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 3ms - Rows affected: 25 - RequestID: yved06vggom +2025-06-18T14:33:42.281Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 7ms - Rows affected: 6 - RequestID: kg6ys4ullin +2025-06-18T14:33:42.381Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 230ms - IP: 192.168.104.37 - User: user_1024 - RequestID: 3p386h2jfd7 +2025-06-18T14:33:42.481Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 201 - Response time: 430ms - IP: 192.168.53.133 - User: user_1009 - RequestID: pa91e0irgke +2025-06-18T14:33:42.581Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1332ms - IP: 192.168.32.38 - User: user_1070 - RequestID: hkc5kvcnjbp +2025-06-18T14:33:42.681Z [INFO] payment-service - Auth event: logout - User: user_1013 - IP: 192.168.36.218 - RequestID: d7bdld9bwg9 +2025-06-18T14:33:42.781Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 19ms - Rows affected: 81 - RequestID: s9d5k2ie59h +2025-06-18T14:33:42.881Z [TRACE] payment-service - Database INSERT on payments - Execution time: 402ms - Rows affected: 28 - RequestID: gi580xdaf1 +2025-06-18T14:33:42.981Z [INFO] auth-service - Database SELECT on users - Execution time: 58ms - Rows affected: 22 - RequestID: e60we7sv83m +2025-06-18T14:33:43.081Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 886ms - RequestID: nywrstmox8c +2025-06-18T14:33:43.181Z [DEBUG] auth-service - POST /api/v1/orders - Status: 503 - Response time: 548ms - IP: 192.168.44.5 - User: user_1000 - RequestID: l6zd396goa +2025-06-18T14:33:43.281Z [INFO] notification-service - Database SELECT on products - Execution time: 473ms - Rows affected: 62 - RequestID: 0uui2ke45gh +2025-06-18T14:33:43.381Z [INFO] user-service - Operation: inventory_updated - Processing time: 853ms - RequestID: juwixk8qqj +2025-06-18T14:33:43.481Z [TRACE] notification-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.174.114 - RequestID: 0omq7pp1xzrd +2025-06-18T14:33:43.581Z [INFO] notification-service - Operation: notification_queued - Processing time: 373ms - RequestID: v9gdlmzbjhk +2025-06-18T14:33:43.681Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 404 - Response time: 779ms - IP: 192.168.174.114 - User: user_1016 - RequestID: g9jekmqzb6l +2025-06-18T14:33:43.781Z [TRACE] notification-service - Auth event: password_change - User: user_1030 - IP: 192.168.242.165 - RequestID: 3nywir6yoza +2025-06-18T14:33:43.881Z [TRACE] user-service - Database DELETE on products - Execution time: 487ms - Rows affected: 77 - RequestID: uvaq9bngio +2025-06-18T14:33:43.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 388ms - RequestID: svdzwgu9zg +2025-06-18T14:33:44.081Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 490ms - RequestID: o70vwewztbf +2025-06-18T14:33:44.181Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 201 - Response time: 1589ms - IP: 192.168.147.171 - User: user_1017 - RequestID: 4s0zv4hsmji +2025-06-18T14:33:44.281Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 969ms - IP: 192.168.181.225 - User: user_1012 - RequestID: rcwj452um0q +2025-06-18T14:33:44.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 824ms - RequestID: uy8mtdffnq +2025-06-18T14:33:44.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 341ms - RequestID: hqav2c8ow86 +2025-06-18T14:33:44.581Z [DEBUG] order-service - DELETE /api/v1/users - Status: 401 - Response time: 923ms - IP: 192.168.79.143 - User: user_1043 - RequestID: zxa805ek0x +2025-06-18T14:33:44.681Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1767ms - IP: 192.168.174.114 - User: user_1052 - RequestID: rvgw43hvt5n +2025-06-18T14:33:44.781Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 393ms - IP: 192.168.46.63 - User: user_1051 - RequestID: rikpn0sygt +2025-06-18T14:33:44.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.28.146 - RequestID: 292xb009o0y +2025-06-18T14:33:44.981Z [DEBUG] payment-service - Auth event: login_failed - User: user_1005 - IP: 192.168.158.144 - RequestID: p1kvjw94m6 +2025-06-18T14:33:45.081Z [DEBUG] auth-service - Database SELECT on products - Execution time: 215ms - Rows affected: 89 - RequestID: haan8xdou6r +2025-06-18T14:33:45.181Z [INFO] order-service - Operation: inventory_updated - Processing time: 723ms - RequestID: 8q9p3vx7cqe +2025-06-18T14:33:45.281Z [INFO] payment-service - Auth event: password_change - User: user_1015 - IP: 192.168.229.123 - RequestID: ldjsuyjy7kn +2025-06-18T14:33:45.381Z [INFO] payment-service - Database UPDATE on payments - Execution time: 185ms - Rows affected: 95 - RequestID: 9oukxrt5zri +2025-06-18T14:33:45.481Z [TRACE] notification-service - Operation: notification_queued - Processing time: 848ms - RequestID: xjinmay012q +2025-06-18T14:33:45.581Z [INFO] notification-service - Auth event: logout - User: user_1073 - IP: 192.168.97.87 - RequestID: 9e4k8cq90fd +2025-06-18T14:33:45.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1018 - IP: 192.168.68.128 - RequestID: 47c66u9txnj +2025-06-18T14:33:45.781Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 333ms - RequestID: bfc23mfyky9 +2025-06-18T14:33:45.881Z [DEBUG] user-service - Operation: order_created - Processing time: 380ms - RequestID: 34li1mmow1t +2025-06-18T14:33:45.981Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1991ms - IP: 192.168.31.117 - User: user_1010 - RequestID: goebdoz21o +2025-06-18T14:33:46.081Z [INFO] inventory-service - Auth event: password_change - User: user_1016 - IP: 192.168.46.63 - RequestID: ciw390c08pi +2025-06-18T14:33:46.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 475ms - RequestID: x9boqdnzc4 +2025-06-18T14:33:46.281Z [TRACE] user-service - Database UPDATE on payments - Execution time: 20ms - Rows affected: 19 - RequestID: 2wyulip73id +2025-06-18T14:33:46.381Z [INFO] inventory-service - Database SELECT on orders - Execution time: 176ms - Rows affected: 18 - RequestID: aa6w27yga1p +2025-06-18T14:33:46.481Z [INFO] notification-service - DELETE /api/v1/payments - Status: 500 - Response time: 1532ms - IP: 192.168.167.32 - User: user_1000 - RequestID: ayvmxc7pqfo +2025-06-18T14:33:46.581Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 138ms - Rows affected: 43 - RequestID: 3ec47aaxzl3 +2025-06-18T14:33:46.681Z [INFO] order-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.240.169 - RequestID: urlmm8kiler +2025-06-18T14:33:46.781Z [DEBUG] user-service - Auth event: password_change - User: user_1002 - IP: 192.168.113.218 - RequestID: acuwpeeklgk +2025-06-18T14:33:46.881Z [TRACE] user-service - Database INSERT on users - Execution time: 342ms - Rows affected: 34 - RequestID: q8fyxhredtg +2025-06-18T14:33:46.981Z [DEBUG] user-service - PUT /api/v1/users - Status: 404 - Response time: 216ms - IP: 192.168.33.76 - User: user_1036 - RequestID: espdhw788mh +2025-06-18T14:33:47.081Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 174ms - Rows affected: 11 - RequestID: cnx9g112s2i +2025-06-18T14:33:47.181Z [TRACE] notification-service - Auth event: login_failed - User: user_1041 - IP: 192.168.32.38 - RequestID: yvx4cilo2dd +2025-06-18T14:33:47.281Z [TRACE] payment-service - Auth event: password_change - User: user_1001 - IP: 192.168.85.229 - RequestID: k32grixhp5c +2025-06-18T14:33:47.381Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 503 - Response time: 56ms - IP: 192.168.240.169 - User: user_1027 - RequestID: ll584ib96l9 +2025-06-18T14:33:47.481Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 368ms - Rows affected: 40 - RequestID: mbt06wbnrnn +2025-06-18T14:33:47.581Z [TRACE] payment-service - Database INSERT on products - Execution time: 313ms - Rows affected: 51 - RequestID: 99h1g340sdv +2025-06-18T14:33:47.681Z [INFO] user-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.227.233 - RequestID: x79src4xst +2025-06-18T14:33:47.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 963ms - RequestID: ac2b47ueeck +2025-06-18T14:33:47.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.28.146 - RequestID: cv8fn3p2byi +2025-06-18T14:33:47.981Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 425ms - Rows affected: 11 - RequestID: iiaya32dv6p +2025-06-18T14:33:48.081Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 201 - Response time: 359ms - IP: 192.168.196.226 - User: user_1061 - RequestID: dviafl9ut8h +2025-06-18T14:33:48.181Z [DEBUG] auth-service - Auth event: logout - User: user_1065 - IP: 192.168.227.233 - RequestID: pcxx8g1l +2025-06-18T14:33:48.281Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 238ms - IP: 192.168.227.77 - User: user_1096 - RequestID: ej2jdw2vzqs +2025-06-18T14:33:48.381Z [INFO] inventory-service - Operation: cache_hit - Processing time: 455ms - RequestID: vgh3u453cz9 +2025-06-18T14:33:48.481Z [TRACE] user-service - Operation: order_created - Processing time: 846ms - RequestID: gdqfjin3g25 +2025-06-18T14:33:48.581Z [DEBUG] payment-service - Auth event: login_failed - User: user_1040 - IP: 192.168.46.63 - RequestID: qbxfyex2my +2025-06-18T14:33:48.681Z [INFO] payment-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.97.87 - RequestID: zaytcfulxki +2025-06-18T14:33:48.781Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 136ms - Rows affected: 78 - RequestID: un4gikmch5 +2025-06-18T14:33:48.881Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 311ms - Rows affected: 8 - RequestID: ze8nqpx4ez +2025-06-18T14:33:48.981Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1503ms - IP: 192.168.144.38 - User: user_1013 - RequestID: cmd8n6wuu8 +2025-06-18T14:33:49.081Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 22ms - Rows affected: 84 - RequestID: eb9qogq0038 +2025-06-18T14:33:49.181Z [INFO] inventory-service - POST /api/v1/orders - Status: 500 - Response time: 1423ms - IP: 192.168.68.158 - User: user_1021 - RequestID: gto72bjwghc +2025-06-18T14:33:49.281Z [INFO] payment-service - Operation: notification_queued - Processing time: 415ms - RequestID: uudzsfa07z +2025-06-18T14:33:49.381Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 820ms - RequestID: 1dghxgypx29 +2025-06-18T14:33:49.481Z [INFO] inventory-service - Auth event: logout - User: user_1014 - IP: 192.168.33.76 - RequestID: d8j5ntnb13m +2025-06-18T14:33:49.581Z [INFO] notification-service - DELETE /api/v1/payments - Status: 400 - Response time: 1848ms - IP: 192.168.170.215 - User: user_1066 - RequestID: 5u87hj453us +2025-06-18T14:33:49.681Z [INFO] payment-service - Database INSERT on orders - Execution time: 83ms - Rows affected: 97 - RequestID: 650gv2fxaki +2025-06-18T14:33:49.781Z [INFO] notification-service - DELETE /api/v1/payments - Status: 401 - Response time: 403ms - IP: 192.168.64.33 - User: user_1051 - RequestID: gv40qkfahx9 +2025-06-18T14:33:49.881Z [INFO] user-service - Database SELECT on users - Execution time: 376ms - Rows affected: 14 - RequestID: 11t2b0tmjxll +2025-06-18T14:33:49.981Z [TRACE] payment-service - Auth event: password_change - User: user_1097 - IP: 192.168.138.123 - RequestID: oiykcf8zq1h +2025-06-18T14:33:50.081Z [TRACE] order-service - Operation: email_sent - Processing time: 60ms - RequestID: ut1boy78bw8 +2025-06-18T14:33:50.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 781ms - RequestID: nyfqy72aqi +2025-06-18T14:33:50.281Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.104.37 - RequestID: pn8z59jmrzc +2025-06-18T14:33:50.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 892ms - RequestID: c0za3xzfq3r +2025-06-18T14:33:50.481Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 306ms - RequestID: ynbniyqclg +2025-06-18T14:33:50.581Z [INFO] notification-service - PATCH /api/v1/orders - Status: 502 - Response time: 1390ms - IP: 192.168.133.7 - User: user_1067 - RequestID: o8boznkmjqp +2025-06-18T14:33:50.681Z [INFO] auth-service - Database DELETE on payments - Execution time: 363ms - Rows affected: 23 - RequestID: shj3mgbqrwf +2025-06-18T14:33:50.781Z [INFO] user-service - GET /api/v1/auth/login - Status: 200 - Response time: 1353ms - IP: 192.168.14.77 - User: user_1004 - RequestID: kr644kmoz5 +2025-06-18T14:33:50.881Z [INFO] auth-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.232.72 - RequestID: avwdgy46qol +2025-06-18T14:33:50.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.13.72 - RequestID: ysxucgsg3tf +2025-06-18T14:33:51.081Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1074ms - IP: 192.168.227.77 - User: user_1097 - RequestID: qvyuq60wyh8 +2025-06-18T14:33:51.181Z [DEBUG] inventory-service - Auth event: password_change - User: user_1081 - IP: 192.168.196.226 - RequestID: fxe1meae68c +2025-06-18T14:33:51.281Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 361ms - IP: 192.168.147.171 - User: user_1020 - RequestID: 36ag1hirggi +2025-06-18T14:33:51.381Z [INFO] auth-service - PUT /api/v1/users - Status: 403 - Response time: 1023ms - IP: 192.168.189.103 - User: user_1028 - RequestID: 67hg475v87u +2025-06-18T14:33:51.481Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 494ms - Rows affected: 45 - RequestID: 1u0e6mn8kxj +2025-06-18T14:33:51.581Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1521ms - IP: 192.168.194.41 - User: user_1075 - RequestID: q50y3a87a2 +2025-06-18T14:33:51.681Z [TRACE] order-service - Auth event: password_change - User: user_1000 - IP: 192.168.235.117 - RequestID: ykfhdy7g9z +2025-06-18T14:33:51.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.85.229 - RequestID: 2ngrh6p29pv +2025-06-18T14:33:51.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1010 - IP: 192.168.227.77 - RequestID: df2azjqwquo +2025-06-18T14:33:51.981Z [DEBUG] user-service - Database INSERT on payments - Execution time: 411ms - Rows affected: 70 - RequestID: te5efwtafie +2025-06-18T14:33:52.081Z [TRACE] auth-service - Database DELETE on products - Execution time: 152ms - Rows affected: 37 - RequestID: th3y22mt3is +2025-06-18T14:33:52.181Z [TRACE] order-service - PATCH /api/v1/payments - Status: 403 - Response time: 1998ms - IP: 192.168.11.60 - User: user_1014 - RequestID: uj6279robzj +2025-06-18T14:33:52.281Z [INFO] payment-service - Database DELETE on users - Execution time: 364ms - Rows affected: 87 - RequestID: hb9y2h7ckyu +2025-06-18T14:33:52.381Z [TRACE] payment-service - Auth event: password_change - User: user_1083 - IP: 192.168.30.79 - RequestID: xa8es1cwylm +2025-06-18T14:33:52.481Z [INFO] order-service - Database SELECT on products - Execution time: 404ms - Rows affected: 85 - RequestID: mk379y559w +2025-06-18T14:33:52.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 527ms - RequestID: 0a5hepezg8qu +2025-06-18T14:33:52.681Z [INFO] inventory-service - Database SELECT on products - Execution time: 260ms - Rows affected: 65 - RequestID: woog9ir439 +2025-06-18T14:33:52.781Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 182ms - RequestID: 9ji47xklhk9 +2025-06-18T14:33:52.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 999ms - RequestID: vip22aj2sgb +2025-06-18T14:33:52.981Z [TRACE] inventory-service - Operation: order_created - Processing time: 1036ms - RequestID: 6ks9rbw4gdh +2025-06-18T14:33:53.081Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 1042ms - RequestID: 9st3x7x5yvh +2025-06-18T14:33:53.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.44.5 - RequestID: 1ubav92wtpm +2025-06-18T14:33:53.281Z [INFO] order-service - PATCH /api/v1/orders - Status: 403 - Response time: 689ms - IP: 192.168.240.169 - User: user_1049 - RequestID: iwp6t0x1irb +2025-06-18T14:33:53.381Z [INFO] notification-service - Auth event: login_success - User: user_1004 - IP: 192.168.79.143 - RequestID: 9n67eb1c63w +2025-06-18T14:33:53.481Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 54ms - IP: 192.168.1.152 - User: user_1064 - RequestID: axvspxa3he +2025-06-18T14:33:53.581Z [TRACE] auth-service - Operation: order_created - Processing time: 168ms - RequestID: 8jiduopamfc +2025-06-18T14:33:53.681Z [TRACE] inventory-service - Database INSERT on products - Execution time: 394ms - Rows affected: 96 - RequestID: 0ulstrsa84yd +2025-06-18T14:33:53.781Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 478ms - Rows affected: 71 - RequestID: dwh9kdpowf +2025-06-18T14:33:53.881Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 227ms - Rows affected: 15 - RequestID: fo78nyohsia +2025-06-18T14:33:53.981Z [INFO] auth-service - Operation: cache_miss - Processing time: 148ms - RequestID: c4nzys57de +2025-06-18T14:33:54.081Z [TRACE] order-service - DELETE /api/v1/users - Status: 400 - Response time: 1076ms - IP: 192.168.144.38 - User: user_1025 - RequestID: u3sepkoa9n9 +2025-06-18T14:33:54.181Z [INFO] notification-service - Auth event: login_failed - User: user_1014 - IP: 192.168.13.72 - RequestID: 59t6ya56pco +2025-06-18T14:33:54.281Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 400 - Response time: 741ms - IP: 192.168.240.169 - User: user_1010 - RequestID: fb9bjpqa8o5 +2025-06-18T14:33:54.381Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 843ms - RequestID: khs07l5jvz +2025-06-18T14:33:54.481Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 206ms - Rows affected: 97 - RequestID: 966gmt9rwag +2025-06-18T14:33:54.581Z [TRACE] order-service - Database SELECT on products - Execution time: 488ms - Rows affected: 34 - RequestID: wu164pn7pt +2025-06-18T14:33:54.681Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1917ms - IP: 192.168.30.79 - User: user_1031 - RequestID: 1gmltt7s1sf +2025-06-18T14:33:54.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1068 - IP: 192.168.14.77 - RequestID: 6g8jylk7m98 +2025-06-18T14:33:54.881Z [INFO] auth-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.97.87 - RequestID: pm88rswb7sr +2025-06-18T14:33:54.981Z [DEBUG] auth-service - POST /api/v1/users - Status: 403 - Response time: 1830ms - IP: 192.168.10.184 - User: user_1015 - RequestID: 8pb4vwdkhw9 +2025-06-18T14:33:55.081Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 401ms - RequestID: xvpk5aid4ws +2025-06-18T14:33:55.181Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 184ms - Rows affected: 25 - RequestID: p6zecm4v0fg +2025-06-18T14:33:55.281Z [INFO] payment-service - Database DELETE on users - Execution time: 331ms - Rows affected: 45 - RequestID: l70omrbf57 +2025-06-18T14:33:55.381Z [INFO] inventory-service - Auth event: password_change - User: user_1057 - IP: 192.168.187.199 - RequestID: lif4ogyp51j +2025-06-18T14:33:55.481Z [INFO] auth-service - Auth event: password_change - User: user_1059 - IP: 192.168.44.5 - RequestID: o317ob9mjwm +2025-06-18T14:33:55.581Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 133ms - RequestID: 4kb6iri6k5y +2025-06-18T14:33:55.681Z [INFO] notification-service - Operation: inventory_updated - Processing time: 1036ms - RequestID: 3jsnka8dgnp +2025-06-18T14:33:55.781Z [TRACE] order-service - Auth event: login_success - User: user_1021 - IP: 192.168.53.133 - RequestID: lj784be6isk +2025-06-18T14:33:55.881Z [INFO] inventory-service - POST /api/v1/users - Status: 502 - Response time: 773ms - IP: 192.168.10.184 - User: user_1045 - RequestID: kkjm36cpdo +2025-06-18T14:33:55.981Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 313ms - Rows affected: 11 - RequestID: evjntr1qymc +2025-06-18T14:33:56.081Z [TRACE] order-service - Database UPDATE on products - Execution time: 73ms - Rows affected: 75 - RequestID: 9njf9qwu107 +2025-06-18T14:33:56.181Z [DEBUG] payment-service - Auth event: logout - User: user_1063 - IP: 192.168.14.77 - RequestID: z1fdgz4uwq +2025-06-18T14:33:56.281Z [INFO] user-service - PATCH /api/v1/payments - Status: 502 - Response time: 934ms - IP: 192.168.159.94 - User: user_1082 - RequestID: 8f63u1asnc +2025-06-18T14:33:56.381Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 50ms - Rows affected: 96 - RequestID: b5ihmmlrihm +2025-06-18T14:33:56.481Z [TRACE] inventory-service - Auth event: login_success - User: user_1038 - IP: 192.168.31.117 - RequestID: usmrgf9grak +2025-06-18T14:33:56.581Z [DEBUG] user-service - PUT /api/v1/orders - Status: 404 - Response time: 912ms - IP: 192.168.133.7 - User: user_1062 - RequestID: 44h7yz01pmt +2025-06-18T14:33:56.681Z [TRACE] inventory-service - Database DELETE on products - Execution time: 273ms - Rows affected: 61 - RequestID: clcujv7dqkp +2025-06-18T14:33:56.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.181.225 - RequestID: dl4r9abmpus +2025-06-18T14:33:56.881Z [TRACE] user-service - Operation: cache_miss - Processing time: 93ms - RequestID: kvag9cl5o1m +2025-06-18T14:33:56.981Z [INFO] user-service - PATCH /api/v1/users - Status: 400 - Response time: 1472ms - IP: 192.168.211.72 - User: user_1039 - RequestID: apnsdb7ym3 +2025-06-18T14:33:57.081Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 503 - Response time: 684ms - IP: 192.168.159.94 - User: user_1015 - RequestID: tdo7q0zwxq8 +2025-06-18T14:33:57.181Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 340ms - Rows affected: 45 - RequestID: dvzvhr8h1sa +2025-06-18T14:33:57.281Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 1018ms - RequestID: tin1hv2funl +2025-06-18T14:33:57.381Z [TRACE] auth-service - Database DELETE on payments - Execution time: 424ms - Rows affected: 1 - RequestID: blgax4y53a4 +2025-06-18T14:33:57.481Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 225ms - RequestID: 98koxxntx39 +2025-06-18T14:33:57.581Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 500 - Response time: 1658ms - IP: 192.168.44.5 - User: user_1037 - RequestID: zhefvv9zi7l +2025-06-18T14:33:57.681Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 500 - Response time: 833ms - IP: 192.168.170.215 - User: user_1010 - RequestID: p7b2i9br5w +2025-06-18T14:33:57.781Z [INFO] inventory-service - Database INSERT on products - Execution time: 122ms - Rows affected: 17 - RequestID: 8sik1cliwuc +2025-06-18T14:33:57.881Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 401 - Response time: 246ms - IP: 192.168.36.218 - User: user_1020 - RequestID: ja0jem897bo +2025-06-18T14:33:57.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 684ms - RequestID: f5pwy5zxxsh +2025-06-18T14:33:58.081Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 936ms - RequestID: 6g9zo8ri5ju +2025-06-18T14:33:58.181Z [INFO] inventory-service - GET /api/v1/inventory - Status: 200 - Response time: 989ms - IP: 192.168.227.233 - User: user_1056 - RequestID: 6by5lax8bvj +2025-06-18T14:33:58.281Z [INFO] auth-service - Database SELECT on orders - Execution time: 95ms - Rows affected: 90 - RequestID: 6owwseq1tkg +2025-06-18T14:33:58.381Z [INFO] order-service - POST /api/v1/payments - Status: 400 - Response time: 468ms - IP: 192.168.68.128 - User: user_1038 - RequestID: pp6j6pnjqh +2025-06-18T14:33:58.481Z [TRACE] auth-service - POST /api/v1/users - Status: 502 - Response time: 1796ms - IP: 192.168.31.117 - User: user_1021 - RequestID: pk2l3zsupb +2025-06-18T14:33:58.581Z [TRACE] user-service - Operation: cache_miss - Processing time: 871ms - RequestID: yueh3ee7dz +2025-06-18T14:33:58.681Z [INFO] inventory-service - POST /api/v1/orders - Status: 500 - Response time: 1332ms - IP: 192.168.240.169 - User: user_1014 - RequestID: jbtlehxg7l +2025-06-18T14:33:58.781Z [INFO] order-service - Database SELECT on users - Execution time: 326ms - Rows affected: 91 - RequestID: bdc8osllvk +2025-06-18T14:33:58.881Z [INFO] payment-service - Auth event: logout - User: user_1099 - IP: 192.168.174.114 - RequestID: 3p60wm1j5k1 +2025-06-18T14:33:58.981Z [TRACE] inventory-service - Operation: order_created - Processing time: 911ms - RequestID: ym9lsxxbxab +2025-06-18T14:33:59.081Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 500 - Response time: 1728ms - IP: 192.168.227.77 - User: user_1079 - RequestID: kc56qqopa9 +2025-06-18T14:33:59.181Z [TRACE] payment-service - Database INSERT on products - Execution time: 326ms - Rows affected: 40 - RequestID: 1eid5m5obr1 +2025-06-18T14:33:59.281Z [INFO] notification-service - Database UPDATE on payments - Execution time: 113ms - Rows affected: 90 - RequestID: fzmbx1culb9 +2025-06-18T14:33:59.381Z [INFO] user-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1997ms - IP: 192.168.32.38 - User: user_1042 - RequestID: j4jakcy25dr +2025-06-18T14:33:59.481Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.79.116 - RequestID: ioh9dlkipyq +2025-06-18T14:33:59.581Z [DEBUG] auth-service - POST /api/v1/payments - Status: 503 - Response time: 622ms - IP: 192.168.227.233 - User: user_1043 - RequestID: vy3k8ovn0hh +2025-06-18T14:33:59.681Z [TRACE] notification-service - Auth event: logout - User: user_1087 - IP: 192.168.85.229 - RequestID: qrn3hvg4qh +2025-06-18T14:33:59.781Z [INFO] inventory-service - PUT /api/v1/orders - Status: 502 - Response time: 457ms - IP: 192.168.31.117 - User: user_1021 - RequestID: 5tftixm70kg +2025-06-18T14:33:59.881Z [INFO] payment-service - PATCH /api/v1/payments - Status: 500 - Response time: 278ms - IP: 192.168.79.141 - User: user_1090 - RequestID: 8ftlljpz74v +2025-06-18T14:33:59.981Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 175ms - Rows affected: 44 - RequestID: 2zele52aamm +2025-06-18T14:34:00.081Z [INFO] order-service - Database UPDATE on orders - Execution time: 155ms - Rows affected: 81 - RequestID: t5ogu8u2eqr +2025-06-18T14:34:00.181Z [INFO] payment-service - Auth event: password_change - User: user_1086 - IP: 192.168.196.226 - RequestID: lxpr5bi5mek +2025-06-18T14:34:00.281Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 401 - Response time: 122ms - IP: 192.168.211.72 - User: user_1048 - RequestID: yc2v2v5n5ok +2025-06-18T14:34:00.381Z [TRACE] order-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.133.7 - RequestID: v2dskas525i +2025-06-18T14:34:00.481Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 169ms - IP: 192.168.242.165 - User: user_1054 - RequestID: d4j0o0sw46a +2025-06-18T14:34:00.581Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 704ms - RequestID: n0mla512mr +2025-06-18T14:34:00.681Z [TRACE] inventory-service - Auth event: login_failed - User: user_1066 - IP: 192.168.141.100 - RequestID: ueglkjdn998 +2025-06-18T14:34:00.781Z [INFO] payment-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.167.32 - RequestID: hwh8ve88zb +2025-06-18T14:34:00.881Z [DEBUG] user-service - Auth event: logout - User: user_1031 - IP: 192.168.64.33 - RequestID: mu2o2k8j7n +2025-06-18T14:34:00.981Z [INFO] auth-service - Auth event: logout - User: user_1054 - IP: 192.168.11.60 - RequestID: y5c14qtqo3f +2025-06-18T14:34:01.081Z [TRACE] user-service - Operation: notification_queued - Processing time: 560ms - RequestID: 812pa722nae +2025-06-18T14:34:01.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.44.5 - RequestID: icvko7srblh +2025-06-18T14:34:01.281Z [INFO] auth-service - Operation: order_created - Processing time: 136ms - RequestID: ydf65h89xjj +2025-06-18T14:34:01.381Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 665ms - IP: 192.168.68.158 - User: user_1063 - RequestID: u9fjfbfld9 +2025-06-18T14:34:01.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.227.233 - RequestID: feskqye1vr6 +2025-06-18T14:34:01.581Z [TRACE] user-service - Auth event: login_success - User: user_1029 - IP: 192.168.240.169 - RequestID: sp87kb940zn +2025-06-18T14:34:01.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.229.123 - RequestID: 48p8qzs4gvo +2025-06-18T14:34:01.781Z [TRACE] notification-service - Database INSERT on products - Execution time: 348ms - Rows affected: 25 - RequestID: 696j75ockqn +2025-06-18T14:34:01.881Z [TRACE] order-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.79.141 - RequestID: l4xfme3hsh +2025-06-18T14:34:01.981Z [DEBUG] inventory-service - Operation: order_created - Processing time: 198ms - RequestID: uahypdyoho +2025-06-18T14:34:02.081Z [DEBUG] user-service - Auth event: logout - User: user_1058 - IP: 192.168.79.143 - RequestID: 61zlcqp0nem +2025-06-18T14:34:02.181Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 186ms - Rows affected: 53 - RequestID: yo7n2ekyhde +2025-06-18T14:34:02.281Z [TRACE] notification-service - Operation: cache_miss - Processing time: 678ms - RequestID: lrgr5ghodv +2025-06-18T14:34:02.381Z [DEBUG] order-service - Database DELETE on payments - Execution time: 133ms - Rows affected: 57 - RequestID: 1743epjnyhb +2025-06-18T14:34:02.481Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 428ms - RequestID: 28j81o7512n +2025-06-18T14:34:02.581Z [DEBUG] inventory-service - Auth event: logout - User: user_1080 - IP: 192.168.79.141 - RequestID: 9x0sy2z50e +2025-06-18T14:34:02.681Z [DEBUG] user-service - Operation: email_sent - Processing time: 576ms - RequestID: hkf66enq0pw +2025-06-18T14:34:02.781Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 424ms - Rows affected: 42 - RequestID: hh8ntx8e1l +2025-06-18T14:34:02.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1005 - IP: 192.168.159.94 - RequestID: 8avy8sj8js +2025-06-18T14:34:02.981Z [TRACE] notification-service - Auth event: logout - User: user_1010 - IP: 192.168.79.143 - RequestID: w04fos6fcu +2025-06-18T14:34:03.081Z [DEBUG] user-service - Operation: order_created - Processing time: 908ms - RequestID: 2gz1f7zkjao +2025-06-18T14:34:03.181Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 377ms - Rows affected: 57 - RequestID: oyat112jd2b +2025-06-18T14:34:03.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1004 - IP: 192.168.196.226 - RequestID: itq4wx0fw5a +2025-06-18T14:34:03.381Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1136ms - IP: 192.168.85.229 - User: user_1029 - RequestID: 6isauhxuk9s +2025-06-18T14:34:03.481Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 201 - Response time: 506ms - IP: 192.168.133.7 - User: user_1018 - RequestID: kwdoypmuzf9 +2025-06-18T14:34:03.581Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 500 - Response time: 374ms - IP: 192.168.11.60 - User: user_1018 - RequestID: etbhpt68567 +2025-06-18T14:34:03.681Z [DEBUG] order-service - Operation: order_created - Processing time: 698ms - RequestID: r05lsl4j1k +2025-06-18T14:34:03.781Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1565ms - IP: 192.168.68.128 - User: user_1085 - RequestID: 98ifcdmq38 +2025-06-18T14:34:03.881Z [TRACE] auth-service - Operation: order_created - Processing time: 124ms - RequestID: j4psrr7wkr +2025-06-18T14:34:03.981Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 203ms - Rows affected: 26 - RequestID: arfqewe6cp +2025-06-18T14:34:04.081Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 160ms - Rows affected: 49 - RequestID: xqs9y14qkx +2025-06-18T14:34:04.181Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 387ms - RequestID: lokxol93v9k +2025-06-18T14:34:04.281Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1574ms - IP: 192.168.247.134 - User: user_1057 - RequestID: r25ulx8dzn +2025-06-18T14:34:04.381Z [DEBUG] user-service - Database INSERT on users - Execution time: 34ms - Rows affected: 68 - RequestID: l8j109p8rc +2025-06-18T14:34:04.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 976ms - RequestID: i1tqa44u3hc +2025-06-18T14:34:04.581Z [INFO] order-service - Database UPDATE on payments - Execution time: 76ms - Rows affected: 63 - RequestID: bgfpmk1zpjj +2025-06-18T14:34:04.681Z [TRACE] order-service - Operation: email_sent - Processing time: 126ms - RequestID: vjketxxhzc +2025-06-18T14:34:04.781Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 122ms - Rows affected: 89 - RequestID: mdoi8s04i4 +2025-06-18T14:34:04.881Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 404 - Response time: 648ms - IP: 192.168.13.72 - User: user_1072 - RequestID: s465a97rdp +2025-06-18T14:34:04.981Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 386ms - Rows affected: 8 - RequestID: pc84y8l43j +2025-06-18T14:34:05.081Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 124ms - Rows affected: 78 - RequestID: q91nig1taa +2025-06-18T14:34:05.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.85.229 - RequestID: g7dzz2xyw1 +2025-06-18T14:34:05.281Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 200 - Response time: 455ms - IP: 192.168.30.79 - User: user_1019 - RequestID: 3i90fk81hxl +2025-06-18T14:34:05.381Z [TRACE] payment-service - Operation: notification_queued - Processing time: 524ms - RequestID: xyggx5l9tg +2025-06-18T14:34:05.481Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 320ms - RequestID: 7m7oy189gmo +2025-06-18T14:34:05.581Z [DEBUG] payment-service - POST /api/v1/users - Status: 201 - Response time: 1999ms - IP: 192.168.14.77 - User: user_1003 - RequestID: a9ey27uf06n +2025-06-18T14:34:05.681Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 126ms - Rows affected: 39 - RequestID: yiumwdc0mu +2025-06-18T14:34:05.781Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 170ms - Rows affected: 54 - RequestID: aoo0cd71wmg +2025-06-18T14:34:05.881Z [TRACE] payment-service - Auth event: logout - User: user_1071 - IP: 192.168.104.37 - RequestID: fjx57qu5eie +2025-06-18T14:34:05.981Z [TRACE] order-service - Operation: email_sent - Processing time: 700ms - RequestID: 8rtehm6989g +2025-06-18T14:34:06.081Z [INFO] order-service - Database UPDATE on products - Execution time: 318ms - Rows affected: 87 - RequestID: ii0e4r8hjd8 +2025-06-18T14:34:06.181Z [INFO] order-service - Database UPDATE on orders - Execution time: 17ms - Rows affected: 90 - RequestID: h8c1q1xvlsb +2025-06-18T14:34:06.281Z [INFO] user-service - Auth event: login_success - User: user_1069 - IP: 192.168.144.38 - RequestID: sm3ta79owzm +2025-06-18T14:34:06.381Z [DEBUG] payment-service - Auth event: login_success - User: user_1082 - IP: 192.168.196.226 - RequestID: i0wyg299ywl +2025-06-18T14:34:06.481Z [DEBUG] user-service - Auth event: logout - User: user_1005 - IP: 192.168.44.5 - RequestID: a56kt0g1q9d +2025-06-18T14:34:06.581Z [TRACE] payment-service - Operation: payment_processed - Processing time: 209ms - RequestID: jhveqx26ero +2025-06-18T14:34:06.681Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 182ms - RequestID: n72x0rlpq3p +2025-06-18T14:34:06.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 443ms - RequestID: szqproga3u8 +2025-06-18T14:34:06.881Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 401 - Response time: 516ms - IP: 192.168.1.152 - User: user_1081 - RequestID: t7qtype76ia +2025-06-18T14:34:06.981Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 92ms - IP: 192.168.14.77 - User: user_1029 - RequestID: p5ruxmkj9w +2025-06-18T14:34:07.081Z [TRACE] auth-service - Operation: payment_processed - Processing time: 502ms - RequestID: mci9t7zht1m +2025-06-18T14:34:07.181Z [INFO] user-service - Operation: order_created - Processing time: 961ms - RequestID: scsqgsgabmg +2025-06-18T14:34:07.281Z [TRACE] notification-service - Operation: cache_miss - Processing time: 923ms - RequestID: tjka6uibokr +2025-06-18T14:34:07.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.10.184 - RequestID: ymo52fjso +2025-06-18T14:34:07.481Z [TRACE] notification-service - Operation: payment_processed - Processing time: 254ms - RequestID: h6pnnz4hlqp +2025-06-18T14:34:07.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 393ms - RequestID: fclj6193lz +2025-06-18T14:34:07.681Z [INFO] notification-service - Operation: cache_miss - Processing time: 881ms - RequestID: 8z9xa12pdxp +2025-06-18T14:34:07.781Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 206ms - Rows affected: 38 - RequestID: wmsk6k2isf +2025-06-18T14:34:07.881Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 400 - Response time: 841ms - IP: 192.168.170.215 - User: user_1029 - RequestID: 5ho6n4n0of4 +2025-06-18T14:34:07.981Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 401 - Response time: 249ms - IP: 192.168.104.37 - User: user_1060 - RequestID: vqxnchfowu +2025-06-18T14:34:08.081Z [TRACE] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 1469ms - IP: 192.168.44.5 - User: user_1099 - RequestID: m32o3whn8dh +2025-06-18T14:34:08.181Z [TRACE] user-service - Operation: payment_processed - Processing time: 680ms - RequestID: 0a41jsux0ufq +2025-06-18T14:34:08.281Z [INFO] auth-service - Operation: cache_hit - Processing time: 781ms - RequestID: faxqdt8zbtg +2025-06-18T14:34:08.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.147.171 - RequestID: phqrnmgf2ym +2025-06-18T14:34:08.481Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 201 - Response time: 197ms - IP: 192.168.227.233 - User: user_1039 - RequestID: heg4s1obf1 +2025-06-18T14:34:08.581Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 401 - Response time: 552ms - IP: 192.168.85.229 - User: user_1050 - RequestID: dngsubuhwic +2025-06-18T14:34:08.681Z [DEBUG] user-service - GET /api/v1/payments - Status: 401 - Response time: 1170ms - IP: 192.168.187.199 - User: user_1053 - RequestID: 3xopaxnw2cm +2025-06-18T14:34:08.781Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 193ms - Rows affected: 1 - RequestID: bp3t3also6a +2025-06-18T14:34:08.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 604ms - RequestID: w94p3t9jmck +2025-06-18T14:34:08.981Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1722ms - IP: 192.168.235.117 - User: user_1025 - RequestID: ciz1r55ed2f +2025-06-18T14:34:09.081Z [INFO] order-service - POST /api/v1/auth/login - Status: 200 - Response time: 1789ms - IP: 192.168.79.143 - User: user_1030 - RequestID: xlonin16cc +2025-06-18T14:34:09.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.104.37 - RequestID: nxeyj32ez0k +2025-06-18T14:34:09.281Z [INFO] inventory-service - Auth event: login_success - User: user_1028 - IP: 192.168.85.229 - RequestID: t1v4f7w6k18 +2025-06-18T14:34:09.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.235.117 - RequestID: tvsyh5s9n7p +2025-06-18T14:34:09.481Z [INFO] auth-service - Operation: cache_miss - Processing time: 239ms - RequestID: m0b2he16vb +2025-06-18T14:34:09.581Z [INFO] order-service - Operation: cache_hit - Processing time: 531ms - RequestID: cgbuix731s +2025-06-18T14:34:09.681Z [TRACE] auth-service - Auth event: password_change - User: user_1037 - IP: 192.168.79.141 - RequestID: qtmfjvfxheb +2025-06-18T14:34:09.781Z [INFO] payment-service - Database DELETE on sessions - Execution time: 68ms - Rows affected: 71 - RequestID: jtayesorf8b +2025-06-18T14:34:09.881Z [DEBUG] order-service - Operation: email_sent - Processing time: 661ms - RequestID: l6hv2t7brx +2025-06-18T14:34:09.981Z [INFO] order-service - DELETE /api/v1/orders - Status: 404 - Response time: 1250ms - IP: 192.168.138.123 - User: user_1092 - RequestID: w0iiiz06zia +2025-06-18T14:34:10.081Z [INFO] inventory-service - Operation: order_created - Processing time: 471ms - RequestID: e8gklo18jt +2025-06-18T14:34:10.181Z [DEBUG] order-service - Database INSERT on users - Execution time: 167ms - Rows affected: 12 - RequestID: r51mkvpbzwr +2025-06-18T14:34:10.281Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 394ms - Rows affected: 99 - RequestID: n7n36lxd9l9 +2025-06-18T14:34:10.381Z [INFO] auth-service - Operation: inventory_updated - Processing time: 314ms - RequestID: i81q45xy30d +2025-06-18T14:34:10.481Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1846ms - IP: 192.168.247.134 - User: user_1025 - RequestID: goi782dhkqh +2025-06-18T14:34:10.581Z [TRACE] user-service - Operation: webhook_sent - Processing time: 579ms - RequestID: mgf5ydymzk8 +2025-06-18T14:34:10.681Z [TRACE] auth-service - Auth event: password_change - User: user_1013 - IP: 192.168.158.144 - RequestID: 3tunw1fqt0s +2025-06-18T14:34:10.781Z [INFO] notification-service - PUT /api/v1/users - Status: 403 - Response time: 391ms - IP: 192.168.187.199 - User: user_1065 - RequestID: x66if5oswqn +2025-06-18T14:34:10.881Z [TRACE] notification-service - Database SELECT on payments - Execution time: 446ms - Rows affected: 0 - RequestID: z7f8y60bwsq +2025-06-18T14:34:10.981Z [INFO] payment-service - Operation: webhook_sent - Processing time: 350ms - RequestID: buwenctamff +2025-06-18T14:34:11.081Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 829ms - RequestID: ai4yzuuj8vn +2025-06-18T14:34:11.181Z [INFO] inventory-service - Operation: payment_processed - Processing time: 602ms - RequestID: tk94oczzio +2025-06-18T14:34:11.281Z [TRACE] order-service - Database UPDATE on products - Execution time: 158ms - Rows affected: 85 - RequestID: tegyibsnjd +2025-06-18T14:34:11.381Z [DEBUG] order-service - Operation: payment_processed - Processing time: 90ms - RequestID: krhh3oiv0qd +2025-06-18T14:34:11.481Z [DEBUG] order-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.159.94 - RequestID: 4ymlnngk42 +2025-06-18T14:34:11.581Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 500 - Response time: 486ms - IP: 192.168.227.77 - User: user_1047 - RequestID: omz40aw1hah +2025-06-18T14:34:11.681Z [TRACE] payment-service - Operation: payment_processed - Processing time: 862ms - RequestID: odclhpsoptn +2025-06-18T14:34:11.781Z [INFO] user-service - Operation: payment_processed - Processing time: 79ms - RequestID: bnz4q2zf2u7 +2025-06-18T14:34:11.881Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 17ms - Rows affected: 9 - RequestID: oqzvom8pt89 +2025-06-18T14:34:11.981Z [INFO] auth-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.141.100 - RequestID: 3arw9j0gkl6 +2025-06-18T14:34:12.081Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 472ms - Rows affected: 1 - RequestID: ck8txba4ovq +2025-06-18T14:34:12.181Z [DEBUG] order-service - Database DELETE on products - Execution time: 332ms - Rows affected: 50 - RequestID: 735b5fqsgph +2025-06-18T14:34:12.281Z [TRACE] user-service - Operation: payment_processed - Processing time: 838ms - RequestID: 5xuye1vtbo3 +2025-06-18T14:34:12.381Z [INFO] inventory-service - Database INSERT on products - Execution time: 155ms - Rows affected: 72 - RequestID: w79fyumdowc +2025-06-18T14:34:12.481Z [INFO] user-service - Database INSERT on products - Execution time: 94ms - Rows affected: 11 - RequestID: tqh4xtmx2j +2025-06-18T14:34:12.581Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 293ms - Rows affected: 63 - RequestID: agl7ry852n9 +2025-06-18T14:34:12.681Z [TRACE] notification-service - Operation: cache_hit - Processing time: 90ms - RequestID: snbxhv2htqh +2025-06-18T14:34:12.781Z [INFO] notification-service - Database INSERT on payments - Execution time: 51ms - Rows affected: 99 - RequestID: l7awzevtirh +2025-06-18T14:34:12.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1051 - IP: 192.168.53.133 - RequestID: lwa02jil39 +2025-06-18T14:34:12.981Z [INFO] user-service - Database SELECT on users - Execution time: 36ms - Rows affected: 68 - RequestID: uh0ewczpj1g +2025-06-18T14:34:13.081Z [INFO] order-service - Auth event: login_failed - User: user_1020 - IP: 192.168.44.5 - RequestID: 4m8ejc6rg83 +2025-06-18T14:34:13.181Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1041 - IP: 192.168.104.37 - RequestID: qdwiqdzq1 +2025-06-18T14:34:13.281Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 502 - Response time: 1029ms - IP: 192.168.187.199 - User: user_1090 - RequestID: of7pbcj8oz8 +2025-06-18T14:34:13.381Z [TRACE] order-service - DELETE /api/v1/orders - Status: 500 - Response time: 1523ms - IP: 192.168.159.94 - User: user_1077 - RequestID: 95s8vffiin +2025-06-18T14:34:13.481Z [TRACE] payment-service - Auth event: logout - User: user_1059 - IP: 192.168.14.77 - RequestID: sceb8kady9 +2025-06-18T14:34:13.581Z [DEBUG] user-service - Database DELETE on orders - Execution time: 407ms - Rows affected: 89 - RequestID: jkd22hvygz +2025-06-18T14:34:13.681Z [TRACE] notification-service - Database UPDATE on products - Execution time: 195ms - Rows affected: 94 - RequestID: ewzbswyd6d6 +2025-06-18T14:34:13.781Z [DEBUG] payment-service - GET /api/v1/users - Status: 201 - Response time: 557ms - IP: 192.168.240.169 - User: user_1084 - RequestID: revjlapdmq +2025-06-18T14:34:13.881Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 164ms - Rows affected: 80 - RequestID: wsijavfjx3 +2025-06-18T14:34:13.981Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 677ms - RequestID: aycwj5hc3qk +2025-06-18T14:34:14.081Z [TRACE] payment-service - Database INSERT on users - Execution time: 170ms - Rows affected: 65 - RequestID: 0pmeyq5bkg2d +2025-06-18T14:34:14.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1027 - IP: 192.168.232.72 - RequestID: cq376obgv2n +2025-06-18T14:34:14.281Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 4ms - Rows affected: 74 - RequestID: v9mjurwjb1 +2025-06-18T14:34:14.381Z [INFO] user-service - Auth event: login_failed - User: user_1023 - IP: 192.168.30.79 - RequestID: 0077qkwf0zsau +2025-06-18T14:34:14.481Z [TRACE] inventory-service - Operation: email_sent - Processing time: 993ms - RequestID: ujgbg168su9 +2025-06-18T14:34:14.581Z [INFO] order-service - Auth event: login_success - User: user_1058 - IP: 192.168.44.5 - RequestID: 32aryuk606a +2025-06-18T14:34:14.681Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 75ms - RequestID: 9feh2jtvotk +2025-06-18T14:34:14.781Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 612ms - IP: 192.168.235.117 - User: user_1080 - RequestID: xeak5yxe6ub +2025-06-18T14:34:14.881Z [DEBUG] order-service - Operation: email_sent - Processing time: 574ms - RequestID: 9hzun4bvzvw +2025-06-18T14:34:14.981Z [TRACE] auth-service - Operation: email_sent - Processing time: 994ms - RequestID: wauf0q22er +2025-06-18T14:34:15.081Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 343ms - RequestID: ptxr9at38us +2025-06-18T14:34:15.181Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1722ms - IP: 192.168.44.5 - User: user_1064 - RequestID: a97jneul0lv +2025-06-18T14:34:15.281Z [TRACE] notification-service - Auth event: password_change - User: user_1019 - IP: 192.168.79.143 - RequestID: ika1r0gutm +2025-06-18T14:34:15.381Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 124ms - Rows affected: 97 - RequestID: cs6hx8y4un +2025-06-18T14:34:15.481Z [INFO] auth-service - Operation: order_created - Processing time: 496ms - RequestID: lzmnh750ok +2025-06-18T14:34:15.581Z [INFO] notification-service - Auth event: login_success - User: user_1061 - IP: 192.168.85.229 - RequestID: pi0x6by9znp +2025-06-18T14:34:15.681Z [TRACE] notification-service - Database INSERT on users - Execution time: 171ms - Rows affected: 86 - RequestID: kli40cg34m +2025-06-18T14:34:15.781Z [INFO] user-service - Operation: inventory_updated - Processing time: 981ms - RequestID: as84kd0zf2e +2025-06-18T14:34:15.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 847ms - RequestID: 2ao6ytj2jh3 +2025-06-18T14:34:15.981Z [TRACE] payment-service - Operation: order_created - Processing time: 307ms - RequestID: 2zgru0u7cg6 +2025-06-18T14:34:16.081Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 248ms - RequestID: f20qmd9nqi +2025-06-18T14:34:16.181Z [TRACE] auth-service - Operation: email_sent - Processing time: 388ms - RequestID: aie91sbmeon +2025-06-18T14:34:16.281Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 404 - Response time: 1939ms - IP: 192.168.211.72 - User: user_1058 - RequestID: 9dqfzcajumj +2025-06-18T14:34:16.381Z [INFO] inventory-service - Database DELETE on payments - Execution time: 419ms - Rows affected: 30 - RequestID: pagaphfq1n +2025-06-18T14:34:16.481Z [INFO] inventory-service - Auth event: password_change - User: user_1051 - IP: 192.168.10.184 - RequestID: u9gwb5xwgur +2025-06-18T14:34:16.581Z [TRACE] notification-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.229.123 - RequestID: hdqujqx0anu +2025-06-18T14:34:16.681Z [INFO] user-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.79.143 - RequestID: b4fozj3z41k +2025-06-18T14:34:16.781Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 988ms - RequestID: 1r04j7op0mr +2025-06-18T14:34:16.881Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 481ms - IP: 192.168.79.116 - User: user_1083 - RequestID: 50ugp5yv5cm +2025-06-18T14:34:16.981Z [TRACE] payment-service - GET /api/v1/payments - Status: 401 - Response time: 1450ms - IP: 192.168.181.225 - User: user_1035 - RequestID: 5pugmmehpgh +2025-06-18T14:34:17.081Z [INFO] order-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1411ms - IP: 192.168.11.60 - User: user_1091 - RequestID: g1pzfqlk03 +2025-06-18T14:34:17.181Z [TRACE] order-service - Database UPDATE on orders - Execution time: 213ms - Rows affected: 52 - RequestID: f1fnhsawpls +2025-06-18T14:34:17.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1099 - IP: 192.168.97.87 - RequestID: 6dg3lpgls7e +2025-06-18T14:34:17.381Z [DEBUG] order-service - Auth event: logout - User: user_1048 - IP: 192.168.194.41 - RequestID: wn0ebfj9op +2025-06-18T14:34:17.481Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 404 - Response time: 1907ms - IP: 192.168.79.143 - User: user_1072 - RequestID: 9rkwyp4xp1 +2025-06-18T14:34:17.581Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 249ms - Rows affected: 13 - RequestID: lrvfyxa0j4 +2025-06-18T14:34:17.681Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 400 - Response time: 1674ms - IP: 192.168.174.114 - User: user_1070 - RequestID: njo0zl91np +2025-06-18T14:34:17.781Z [INFO] payment-service - DELETE /api/v1/orders - Status: 500 - Response time: 1915ms - IP: 192.168.158.144 - User: user_1076 - RequestID: xtp5afrzobp +2025-06-18T14:34:17.881Z [DEBUG] notification-service - Database DELETE on products - Execution time: 471ms - Rows affected: 88 - RequestID: vpzo7tndo3c +2025-06-18T14:34:17.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 313ms - RequestID: 7sax05exqnw +2025-06-18T14:34:18.081Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1304ms - IP: 192.168.138.123 - User: user_1003 - RequestID: t4ftn1prt1b +2025-06-18T14:34:18.181Z [INFO] notification-service - Database UPDATE on orders - Execution time: 248ms - Rows affected: 1 - RequestID: 20y2yi7xhqs +2025-06-18T14:34:18.281Z [TRACE] user-service - Operation: email_sent - Processing time: 696ms - RequestID: 6xu2rjpu1yl +2025-06-18T14:34:18.381Z [INFO] payment-service - Database INSERT on sessions - Execution time: 216ms - Rows affected: 96 - RequestID: 16qxdno9tfl +2025-06-18T14:34:18.481Z [TRACE] user-service - Operation: order_created - Processing time: 871ms - RequestID: xt5w6kc4mc +2025-06-18T14:34:18.581Z [TRACE] notification-service - Operation: cache_hit - Processing time: 683ms - RequestID: 6v1icocoss +2025-06-18T14:34:18.681Z [INFO] user-service - Auth event: logout - User: user_1017 - IP: 192.168.229.123 - RequestID: 3lmnc9hs1kl +2025-06-18T14:34:18.781Z [INFO] payment-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.189.103 - RequestID: 3zc97crgefi +2025-06-18T14:34:18.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.11.60 - RequestID: t6qgixc183 +2025-06-18T14:34:18.981Z [INFO] payment-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.30.79 - RequestID: ad9dn0ex0ej +2025-06-18T14:34:19.081Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 111ms - Rows affected: 40 - RequestID: wj1v0ig20t +2025-06-18T14:34:19.181Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 370ms - RequestID: wbai6s8vwll +2025-06-18T14:34:19.281Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 848ms - RequestID: mvwgjssk5g +2025-06-18T14:34:19.381Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 502 - Response time: 1753ms - IP: 192.168.147.171 - User: user_1015 - RequestID: q7u0xxgrtu +2025-06-18T14:34:19.481Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 1028ms - RequestID: 5te3mtth1zs +2025-06-18T14:34:19.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1032 - IP: 192.168.232.72 - RequestID: zt4hgye273b +2025-06-18T14:34:19.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1060 - IP: 192.168.189.103 - RequestID: 6uy6qxbd89x +2025-06-18T14:34:19.781Z [INFO] user-service - Operation: notification_queued - Processing time: 986ms - RequestID: 96slkixw85j +2025-06-18T14:34:19.881Z [INFO] order-service - Database DELETE on sessions - Execution time: 91ms - Rows affected: 0 - RequestID: r9cwyzfnqu +2025-06-18T14:34:19.981Z [INFO] payment-service - Auth event: logout - User: user_1068 - IP: 192.168.36.218 - RequestID: 4cfv1qxqqji +2025-06-18T14:34:20.081Z [INFO] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1565ms - IP: 192.168.181.225 - User: user_1042 - RequestID: 3hwaoo3y81c +2025-06-18T14:34:20.181Z [INFO] auth-service - Auth event: login_success - User: user_1078 - IP: 192.168.28.146 - RequestID: elvl6bgdubl +2025-06-18T14:34:20.281Z [INFO] auth-service - PUT /api/v1/users - Status: 502 - Response time: 315ms - IP: 192.168.53.133 - User: user_1060 - RequestID: qcbr4umhdfs +2025-06-18T14:34:20.381Z [INFO] payment-service - PATCH /api/v1/orders - Status: 403 - Response time: 265ms - IP: 192.168.235.117 - User: user_1079 - RequestID: 4rkwp4doxdb +2025-06-18T14:34:20.481Z [DEBUG] user-service - Auth event: login_success - User: user_1035 - IP: 192.168.181.225 - RequestID: 6d8ig8cn928 +2025-06-18T14:34:20.581Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1051 - IP: 192.168.133.7 - RequestID: vcyn0p3o2ik +2025-06-18T14:34:20.681Z [TRACE] payment-service - Auth event: password_change - User: user_1033 - IP: 192.168.104.37 - RequestID: swhvz8drk5b +2025-06-18T14:34:20.781Z [INFO] user-service - Auth event: password_change - User: user_1028 - IP: 192.168.147.171 - RequestID: w5ke83cherr +2025-06-18T14:34:20.881Z [INFO] user-service - Auth event: login_failed - User: user_1048 - IP: 192.168.14.77 - RequestID: txaa2gl52hg +2025-06-18T14:34:20.981Z [INFO] order-service - Operation: webhook_sent - Processing time: 415ms - RequestID: a7pkv1z1dl +2025-06-18T14:34:21.081Z [INFO] inventory-service - Auth event: login_failed - User: user_1086 - IP: 192.168.147.171 - RequestID: vq7x8v5nlrp +2025-06-18T14:34:21.181Z [TRACE] inventory-service - POST /api/v1/users - Status: 401 - Response time: 1069ms - IP: 192.168.68.128 - User: user_1021 - RequestID: 5xpuu3549ho +2025-06-18T14:34:21.281Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 221ms - Rows affected: 44 - RequestID: 4umiiq9ekf7 +2025-06-18T14:34:21.381Z [TRACE] payment-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.79.141 - RequestID: btnsk85509w +2025-06-18T14:34:21.481Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 112ms - Rows affected: 71 - RequestID: chrm6eecmed +2025-06-18T14:34:21.581Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1513ms - IP: 192.168.104.37 - User: user_1081 - RequestID: k1nzxouv75h +2025-06-18T14:34:21.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.33.76 - RequestID: pdybyy8l8fg +2025-06-18T14:34:21.781Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 110ms - Rows affected: 38 - RequestID: 4g2drq1zbkt +2025-06-18T14:34:21.881Z [TRACE] order-service - Operation: notification_queued - Processing time: 415ms - RequestID: c08d1b3m4jw +2025-06-18T14:34:21.981Z [DEBUG] user-service - Auth event: logout - User: user_1003 - IP: 192.168.181.225 - RequestID: giu7dj48gvd +2025-06-18T14:34:22.081Z [INFO] inventory-service - Auth event: login_failed - User: user_1082 - IP: 192.168.33.76 - RequestID: kd79sunc07j +2025-06-18T14:34:22.181Z [INFO] notification-service - Database UPDATE on products - Execution time: 403ms - Rows affected: 19 - RequestID: ew9t0fz5hv +2025-06-18T14:34:22.281Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 490ms - IP: 192.168.36.218 - User: user_1086 - RequestID: ku8set8kwaj +2025-06-18T14:34:22.381Z [DEBUG] notification-service - Operation: order_created - Processing time: 356ms - RequestID: d4bync41gai +2025-06-18T14:34:22.481Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 325ms - Rows affected: 13 - RequestID: zrik12efpfq +2025-06-18T14:34:22.581Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 214ms - Rows affected: 64 - RequestID: lydktrmtq9a +2025-06-18T14:34:22.681Z [TRACE] order-service - Auth event: password_change - User: user_1058 - IP: 192.168.227.77 - RequestID: e9tb22fouwc +2025-06-18T14:34:22.781Z [TRACE] user-service - Database DELETE on sessions - Execution time: 87ms - Rows affected: 21 - RequestID: 0wkpruf29ztd +2025-06-18T14:34:22.881Z [INFO] order-service - Operation: notification_queued - Processing time: 409ms - RequestID: juzo4ie7e2 +2025-06-18T14:34:22.981Z [TRACE] user-service - Database DELETE on users - Execution time: 313ms - Rows affected: 53 - RequestID: wsyhg5axook +2025-06-18T14:34:23.081Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 749ms - IP: 192.168.31.117 - User: user_1019 - RequestID: eekaito9yn +2025-06-18T14:34:23.181Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 162ms - Rows affected: 67 - RequestID: 05tzpzd8f11 +2025-06-18T14:34:23.281Z [DEBUG] user-service - Operation: payment_processed - Processing time: 201ms - RequestID: q5to9xcxrz +2025-06-18T14:34:23.381Z [TRACE] payment-service - Auth event: login_success - User: user_1077 - IP: 192.168.85.229 - RequestID: xa32aykgksp +2025-06-18T14:34:23.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.158.144 - RequestID: zsuyvunlvpi +2025-06-18T14:34:23.581Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 502 - Response time: 83ms - IP: 192.168.144.38 - User: user_1036 - RequestID: k4k8y8f09n +2025-06-18T14:34:23.681Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 403 - Response time: 113ms - IP: 192.168.181.225 - User: user_1031 - RequestID: wkg9oxcc5xo +2025-06-18T14:34:23.781Z [DEBUG] user-service - Operation: email_sent - Processing time: 900ms - RequestID: 1xewedm0itth +2025-06-18T14:34:23.881Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 401 - Response time: 241ms - IP: 192.168.113.218 - User: user_1054 - RequestID: 4qh5yd903as +2025-06-18T14:34:23.981Z [INFO] notification-service - PUT /api/v1/inventory - Status: 502 - Response time: 1411ms - IP: 192.168.211.72 - User: user_1058 - RequestID: nk9e850m2f +2025-06-18T14:34:24.081Z [TRACE] order-service - Auth event: logout - User: user_1002 - IP: 192.168.174.114 - RequestID: wvnk3b58iv8 +2025-06-18T14:34:24.181Z [DEBUG] user-service - Auth event: login_success - User: user_1019 - IP: 192.168.141.100 - RequestID: wq8wxfzlp0s +2025-06-18T14:34:24.281Z [INFO] notification-service - Database DELETE on sessions - Execution time: 72ms - Rows affected: 40 - RequestID: x9hc2dnu0r +2025-06-18T14:34:24.381Z [DEBUG] user-service - Operation: order_created - Processing time: 615ms - RequestID: ylbw68k86v7 +2025-06-18T14:34:24.481Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 610ms - IP: 192.168.53.133 - User: user_1029 - RequestID: qf6dhp6l84 +2025-06-18T14:34:24.581Z [INFO] notification-service - Operation: webhook_sent - Processing time: 768ms - RequestID: xuaw2qk2in +2025-06-18T14:34:24.681Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 500 - Response time: 774ms - IP: 192.168.32.38 - User: user_1078 - RequestID: k29yv4jvmi +2025-06-18T14:34:24.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1021 - IP: 192.168.79.141 - RequestID: 4bp1q6b0p06 +2025-06-18T14:34:24.881Z [DEBUG] auth-service - Operation: order_created - Processing time: 572ms - RequestID: kn7iuybhv4 +2025-06-18T14:34:24.981Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1795ms - IP: 192.168.141.100 - User: user_1010 - RequestID: nxcpjzntzfp +2025-06-18T14:34:25.081Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 129ms - Rows affected: 0 - RequestID: lt15x6unxv8 +2025-06-18T14:34:25.181Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 978ms - RequestID: 044wf34shaww +2025-06-18T14:34:25.281Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 200 - Response time: 996ms - IP: 192.168.113.218 - User: user_1037 - RequestID: mq6zmiduu7 +2025-06-18T14:34:25.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.187.199 - RequestID: k2mdw1mmhnb +2025-06-18T14:34:25.481Z [TRACE] order-service - Operation: webhook_sent - Processing time: 562ms - RequestID: h7vxxgmnxbm +2025-06-18T14:34:25.581Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 900ms - RequestID: zknh5o7k18d +2025-06-18T14:34:25.681Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 193ms - Rows affected: 59 - RequestID: e3jtyz04xpd +2025-06-18T14:34:25.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.79.116 - RequestID: sr759qk6bgg +2025-06-18T14:34:25.881Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 400 - Response time: 1416ms - IP: 192.168.194.41 - User: user_1043 - RequestID: jxa626m39w +2025-06-18T14:34:25.981Z [INFO] order-service - Database UPDATE on payments - Execution time: 404ms - Rows affected: 88 - RequestID: djjrfvd18p +2025-06-18T14:34:26.081Z [INFO] user-service - Operation: webhook_sent - Processing time: 617ms - RequestID: 71y28tcjodc +2025-06-18T14:34:26.181Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 500 - Response time: 680ms - IP: 192.168.247.134 - User: user_1078 - RequestID: vfxxrop7odd +2025-06-18T14:34:26.281Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 330ms - Rows affected: 58 - RequestID: jsri5x3zpjr +2025-06-18T14:34:26.381Z [INFO] auth-service - Operation: cache_hit - Processing time: 873ms - RequestID: wvmyq31h2sq +2025-06-18T14:34:26.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 847ms - RequestID: 84gwqhq8az4 +2025-06-18T14:34:26.581Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 1524ms - IP: 192.168.68.128 - User: user_1055 - RequestID: 1mv1x1uqzv9 +2025-06-18T14:34:26.681Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 315ms - IP: 192.168.11.60 - User: user_1088 - RequestID: z4dtv0fhkn9 +2025-06-18T14:34:26.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1014 - IP: 192.168.141.100 - RequestID: z3cjyr78ru +2025-06-18T14:34:26.881Z [INFO] payment-service - Auth event: password_change - User: user_1063 - IP: 192.168.240.169 - RequestID: t1ufoo5iphr +2025-06-18T14:34:26.981Z [INFO] notification-service - Operation: inventory_updated - Processing time: 175ms - RequestID: l2fgfdg7q4f +2025-06-18T14:34:27.081Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 340ms - IP: 192.168.196.226 - User: user_1024 - RequestID: 4a6axu7728x +2025-06-18T14:34:27.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.79.143 - RequestID: rtunqeicsv +2025-06-18T14:34:27.281Z [DEBUG] user-service - Operation: cache_miss - Processing time: 892ms - RequestID: lwwz2x2pr59 +2025-06-18T14:34:27.381Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 319ms - RequestID: qgalkmm21re +2025-06-18T14:34:27.481Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 196ms - Rows affected: 44 - RequestID: audhb7eut36 +2025-06-18T14:34:27.581Z [INFO] order-service - PATCH /api/v1/payments - Status: 404 - Response time: 412ms - IP: 192.168.64.33 - User: user_1066 - RequestID: 4lj2k2m35n6 +2025-06-18T14:34:27.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 774ms - RequestID: ehz99k6jh8 +2025-06-18T14:34:27.781Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 1801ms - IP: 192.168.158.144 - User: user_1012 - RequestID: i2hs5rigvq +2025-06-18T14:34:27.881Z [DEBUG] user-service - Operation: cache_miss - Processing time: 74ms - RequestID: krxjbnkn2bj +2025-06-18T14:34:27.981Z [INFO] user-service - Auth event: logout - User: user_1049 - IP: 192.168.100.240 - RequestID: rf5girwwr8i +2025-06-18T14:34:28.081Z [INFO] user-service - Auth event: login_success - User: user_1067 - IP: 192.168.141.100 - RequestID: r5r0d6kk1fa +2025-06-18T14:34:28.181Z [TRACE] notification-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.141.100 - RequestID: xmvw4zionjp +2025-06-18T14:34:28.281Z [TRACE] order-service - Auth event: password_change - User: user_1067 - IP: 192.168.46.63 - RequestID: 325yai8qcrh +2025-06-18T14:34:28.381Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 103ms - Rows affected: 50 - RequestID: nssmssjwx5 +2025-06-18T14:34:28.481Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 200 - Response time: 130ms - IP: 192.168.30.79 - User: user_1089 - RequestID: mr4r7enwugr +2025-06-18T14:34:28.581Z [DEBUG] payment-service - Operation: order_created - Processing time: 157ms - RequestID: ermgrqvq6pa +2025-06-18T14:34:28.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.159.94 - RequestID: lhcredht8wi +2025-06-18T14:34:28.781Z [INFO] inventory-service - Auth event: login_success - User: user_1066 - IP: 192.168.227.77 - RequestID: cbv1d99ovnw +2025-06-18T14:34:28.881Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 164ms - Rows affected: 91 - RequestID: 8yer2r9cay7 +2025-06-18T14:34:28.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1077 - IP: 192.168.138.123 - RequestID: hza851q8xle +2025-06-18T14:34:29.081Z [TRACE] payment-service - Operation: order_created - Processing time: 387ms - RequestID: fnxe17zc5lt +2025-06-18T14:34:29.181Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 237ms - Rows affected: 53 - RequestID: tit5wsdbxp +2025-06-18T14:34:29.281Z [TRACE] user-service - GET /api/v1/payments - Status: 500 - Response time: 796ms - IP: 192.168.187.199 - User: user_1031 - RequestID: v1nile4bt4p +2025-06-18T14:34:29.381Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 259ms - Rows affected: 61 - RequestID: si17xvpm5s +2025-06-18T14:34:29.481Z [INFO] user-service - GET /api/v1/auth/login - Status: 403 - Response time: 595ms - IP: 192.168.97.87 - User: user_1075 - RequestID: ziistuhjzw +2025-06-18T14:34:29.581Z [DEBUG] notification-service - Operation: order_created - Processing time: 1027ms - RequestID: kzxsjll1a7q +2025-06-18T14:34:29.681Z [TRACE] user-service - Auth event: login_failed - User: user_1043 - IP: 192.168.79.116 - RequestID: dyv7sveah1t +2025-06-18T14:34:29.781Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 254ms - Rows affected: 83 - RequestID: ukzzj4nwxr +2025-06-18T14:34:29.881Z [DEBUG] user-service - Operation: notification_queued - Processing time: 358ms - RequestID: 81gelgi1z68 +2025-06-18T14:34:29.981Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 224ms - Rows affected: 41 - RequestID: zpceqwuztfp +2025-06-18T14:34:30.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 763ms - RequestID: 6r8fncyal8d +2025-06-18T14:34:30.181Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 403 - Response time: 417ms - IP: 192.168.10.184 - User: user_1021 - RequestID: ta2qkoamo5d +2025-06-18T14:34:30.281Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 651ms - RequestID: mqfk4juhwp +2025-06-18T14:34:30.381Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 68ms - Rows affected: 48 - RequestID: hwz0wc34ed +2025-06-18T14:34:30.481Z [INFO] auth-service - Operation: inventory_updated - Processing time: 394ms - RequestID: vfls1zdqudc +2025-06-18T14:34:30.581Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 55ms - IP: 192.168.181.225 - User: user_1082 - RequestID: 3uke16lhhyw +2025-06-18T14:34:30.681Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 310ms - RequestID: r8s22pdtzgi +2025-06-18T14:34:30.781Z [DEBUG] user-service - Database DELETE on users - Execution time: 214ms - Rows affected: 61 - RequestID: 7z12nr88cc5 +2025-06-18T14:34:30.881Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.232.72 - RequestID: ezumxkz9y8i +2025-06-18T14:34:30.981Z [INFO] auth-service - Auth event: logout - User: user_1094 - IP: 192.168.147.171 - RequestID: frs6zdx7asj +2025-06-18T14:34:31.081Z [INFO] inventory-service - Database INSERT on payments - Execution time: 353ms - Rows affected: 5 - RequestID: 4upbwilq8iu +2025-06-18T14:34:31.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.174.114 - RequestID: toblbnn3x8 +2025-06-18T14:34:31.281Z [DEBUG] order-service - Auth event: logout - User: user_1053 - IP: 192.168.232.72 - RequestID: c66byogjn9q +2025-06-18T14:34:31.381Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 797ms - RequestID: 9ywehg4p5ca +2025-06-18T14:34:31.481Z [INFO] user-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.181.225 - RequestID: provr5v3ryi +2025-06-18T14:34:31.581Z [INFO] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 748ms - IP: 192.168.85.229 - User: user_1016 - RequestID: u59x144mnt +2025-06-18T14:34:31.681Z [DEBUG] payment-service - Database SELECT on users - Execution time: 394ms - Rows affected: 90 - RequestID: 5hnkiw3exdi +2025-06-18T14:34:31.781Z [DEBUG] auth-service - Operation: order_created - Processing time: 480ms - RequestID: qtmzcdmno9r +2025-06-18T14:34:31.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 751ms - RequestID: 1rjegcdxtl2 +2025-06-18T14:34:31.981Z [INFO] notification-service - Auth event: password_change - User: user_1085 - IP: 192.168.104.37 - RequestID: 5i8ecvrb9hi +2025-06-18T14:34:32.081Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 26ms - Rows affected: 86 - RequestID: 3bsvrqnyn42 +2025-06-18T14:34:32.181Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 379ms - Rows affected: 38 - RequestID: m2s5016i0mh +2025-06-18T14:34:32.281Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 539ms - RequestID: zv10rci8f7 +2025-06-18T14:34:32.381Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 201 - Response time: 649ms - IP: 192.168.31.117 - User: user_1074 - RequestID: bclbykw8ys4 +2025-06-18T14:34:32.481Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 404 - Response time: 1067ms - IP: 192.168.227.233 - User: user_1093 - RequestID: lwpb091jaus +2025-06-18T14:34:32.581Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.144.38 - RequestID: ve6ehlzqbhr +2025-06-18T14:34:32.681Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 1001ms - RequestID: 0ks9jgf0s61n +2025-06-18T14:34:32.781Z [TRACE] order-service - Database INSERT on sessions - Execution time: 382ms - Rows affected: 97 - RequestID: fypivzvtd1 +2025-06-18T14:34:32.881Z [TRACE] notification-service - Operation: cache_hit - Processing time: 840ms - RequestID: aelcmtzl2kv +2025-06-18T14:34:32.981Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 404 - Response time: 798ms - IP: 192.168.64.33 - User: user_1088 - RequestID: e6qrnti9c8t +2025-06-18T14:34:33.081Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 201 - Response time: 908ms - IP: 192.168.104.37 - User: user_1094 - RequestID: u6gh7jgad0f +2025-06-18T14:34:33.181Z [DEBUG] user-service - Database DELETE on products - Execution time: 440ms - Rows affected: 20 - RequestID: 3shvcppkfpr +2025-06-18T14:34:33.281Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 146ms - Rows affected: 80 - RequestID: quml9pkuwae +2025-06-18T14:34:33.381Z [INFO] order-service - Operation: email_sent - Processing time: 136ms - RequestID: d6bg2yl5qp +2025-06-18T14:34:33.481Z [INFO] user-service - Auth event: login_failed - User: user_1034 - IP: 192.168.113.218 - RequestID: 7pp6byybzkf +2025-06-18T14:34:33.581Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1902ms - IP: 192.168.1.152 - User: user_1074 - RequestID: fd7p06hr4sf +2025-06-18T14:34:33.681Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 460ms - Rows affected: 27 - RequestID: jtj52261ne +2025-06-18T14:34:33.781Z [DEBUG] user-service - Operation: order_created - Processing time: 90ms - RequestID: 2m4jz3y4ma8 +2025-06-18T14:34:33.881Z [DEBUG] user-service - Operation: cache_miss - Processing time: 915ms - RequestID: f7p1tk7gcci +2025-06-18T14:34:33.981Z [DEBUG] order-service - Operation: order_created - Processing time: 894ms - RequestID: kgdth0escs +2025-06-18T14:34:34.081Z [INFO] inventory-service - Database INSERT on orders - Execution time: 100ms - Rows affected: 11 - RequestID: ku0drtjahy +2025-06-18T14:34:34.181Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 932ms - IP: 192.168.141.100 - User: user_1009 - RequestID: 0qdsce4rtsk +2025-06-18T14:34:34.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 93ms - RequestID: n9f2j7ct46 +2025-06-18T14:34:34.381Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1733ms - IP: 192.168.44.5 - User: user_1085 - RequestID: c2v7cfleoi +2025-06-18T14:34:34.481Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 186ms - RequestID: bf1xb2v7abi +2025-06-18T14:34:34.581Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1139ms - IP: 192.168.31.117 - User: user_1058 - RequestID: 84dxgwbz1av +2025-06-18T14:34:34.681Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 109ms - Rows affected: 97 - RequestID: ubfz2h6o94h +2025-06-18T14:34:34.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.181.225 - RequestID: 7ehro7dkqh +2025-06-18T14:34:34.881Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 67ms - Rows affected: 67 - RequestID: bxxp1dkpcm +2025-06-18T14:34:34.981Z [INFO] auth-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.144.38 - RequestID: 6dbomc8ck1u +2025-06-18T14:34:35.081Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 502 - Response time: 847ms - IP: 192.168.170.215 - User: user_1061 - RequestID: ip3hfaf1jt +2025-06-18T14:34:35.181Z [TRACE] order-service - Auth event: login_failed - User: user_1013 - IP: 192.168.68.128 - RequestID: kbznpcxioi +2025-06-18T14:34:35.281Z [INFO] user-service - Auth event: login_success - User: user_1098 - IP: 192.168.28.146 - RequestID: l00bh84b199 +2025-06-18T14:34:35.381Z [TRACE] order-service - Operation: payment_processed - Processing time: 443ms - RequestID: h1auwja1j4h +2025-06-18T14:34:35.481Z [TRACE] notification-service - Database SELECT on payments - Execution time: 278ms - Rows affected: 2 - RequestID: w5dsjxovjd +2025-06-18T14:34:35.581Z [DEBUG] inventory-service - Auth event: login_success - User: user_1043 - IP: 192.168.240.169 - RequestID: 08vfpcaqr4um +2025-06-18T14:34:35.681Z [DEBUG] user-service - Operation: notification_queued - Processing time: 217ms - RequestID: pgym61nvja +2025-06-18T14:34:35.781Z [TRACE] auth-service - Database INSERT on orders - Execution time: 160ms - Rows affected: 2 - RequestID: 9j640b85b5 +2025-06-18T14:34:35.881Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 251ms - RequestID: 5865l3iei9f +2025-06-18T14:34:35.981Z [INFO] payment-service - Operation: payment_processed - Processing time: 867ms - RequestID: ixbf8frys3h +2025-06-18T14:34:36.081Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1623ms - IP: 192.168.30.79 - User: user_1078 - RequestID: eo89i604ez6 +2025-06-18T14:34:36.181Z [TRACE] user-service - Auth event: logout - User: user_1035 - IP: 192.168.138.123 - RequestID: jmtxmajo4m +2025-06-18T14:34:36.281Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 995ms - RequestID: 6rjgsqtli4u +2025-06-18T14:34:36.381Z [DEBUG] payment-service - Auth event: password_change - User: user_1018 - IP: 192.168.194.41 - RequestID: dp289hbw5pe +2025-06-18T14:34:36.481Z [TRACE] notification-service - Auth event: logout - User: user_1007 - IP: 192.168.113.218 - RequestID: 8sal591p3hf +2025-06-18T14:34:36.581Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 984ms - RequestID: edft75o8na +2025-06-18T14:34:36.681Z [DEBUG] user-service - DELETE /api/v1/users - Status: 502 - Response time: 434ms - IP: 192.168.229.123 - User: user_1050 - RequestID: zk2m6ykxm4a +2025-06-18T14:34:36.781Z [INFO] order-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.68.158 - RequestID: z1e7vgwk8v +2025-06-18T14:34:36.881Z [INFO] auth-service - Auth event: login_failed - User: user_1051 - IP: 192.168.227.77 - RequestID: k56sd0ss5bf +2025-06-18T14:34:36.981Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 357ms - Rows affected: 8 - RequestID: 6ngmls4ycqb +2025-06-18T14:34:37.081Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 471ms - Rows affected: 25 - RequestID: 5j10otzv5ss +2025-06-18T14:34:37.181Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1605ms - IP: 192.168.14.77 - User: user_1014 - RequestID: d9bvhzjwfce +2025-06-18T14:34:37.281Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 557ms - RequestID: 2atv31gfvyv +2025-06-18T14:34:37.381Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 452ms - Rows affected: 95 - RequestID: jmnj3ldx89 +2025-06-18T14:34:37.481Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 540ms - RequestID: xcfvuu5v2yf +2025-06-18T14:34:37.581Z [INFO] auth-service - Operation: cache_miss - Processing time: 868ms - RequestID: gtits612uag +2025-06-18T14:34:37.681Z [DEBUG] order-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.141.100 - RequestID: 4filye0fpqk +2025-06-18T14:34:37.781Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 201 - Response time: 1930ms - IP: 192.168.227.233 - User: user_1014 - RequestID: knym4fjvbj +2025-06-18T14:34:37.881Z [TRACE] user-service - Auth event: login_success - User: user_1048 - IP: 192.168.31.117 - RequestID: day8gwenow9 +2025-06-18T14:34:37.981Z [INFO] notification-service - Auth event: login_failed - User: user_1007 - IP: 192.168.79.141 - RequestID: rkk7a3053uh +2025-06-18T14:34:38.081Z [TRACE] auth-service - Database SELECT on payments - Execution time: 4ms - Rows affected: 67 - RequestID: 9qqdmgwxfw5 +2025-06-18T14:34:38.181Z [TRACE] user-service - Database DELETE on orders - Execution time: 404ms - Rows affected: 23 - RequestID: cpmaw7kv28g +2025-06-18T14:34:38.281Z [DEBUG] auth-service - Database DELETE on users - Execution time: 73ms - Rows affected: 9 - RequestID: aycgzt3pj4 +2025-06-18T14:34:38.381Z [DEBUG] notification-service - GET /api/v1/orders - Status: 500 - Response time: 252ms - IP: 192.168.32.38 - User: user_1047 - RequestID: 6shw3d7mosb +2025-06-18T14:34:38.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1087 - IP: 192.168.167.32 - RequestID: zo39kfq7op +2025-06-18T14:34:38.581Z [INFO] notification-service - Operation: inventory_updated - Processing time: 219ms - RequestID: k0fkyk7niug +2025-06-18T14:34:38.681Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 1009ms - RequestID: rr939luffho +2025-06-18T14:34:38.781Z [INFO] order-service - Auth event: password_change - User: user_1093 - IP: 192.168.28.146 - RequestID: xk345otpojq +2025-06-18T14:34:38.881Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1302ms - IP: 192.168.240.169 - User: user_1017 - RequestID: ovwm572kk1 +2025-06-18T14:34:38.981Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 887ms - RequestID: k54ji7bkd4 +2025-06-18T14:34:39.081Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1185ms - IP: 192.168.187.199 - User: user_1080 - RequestID: su7tv35rugq +2025-06-18T14:34:39.181Z [INFO] payment-service - PUT /api/v1/inventory - Status: 500 - Response time: 42ms - IP: 192.168.227.77 - User: user_1062 - RequestID: dx7fa9zab9c +2025-06-18T14:34:39.281Z [INFO] auth-service - Operation: notification_queued - Processing time: 78ms - RequestID: h63zywbdnsn +2025-06-18T14:34:39.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.141.100 - RequestID: xoi7r40w2v +2025-06-18T14:34:39.481Z [TRACE] user-service - Operation: cache_miss - Processing time: 375ms - RequestID: al5cvnp88fd +2025-06-18T14:34:39.581Z [INFO] notification-service - Operation: order_created - Processing time: 669ms - RequestID: 830drn489e +2025-06-18T14:34:39.681Z [DEBUG] user-service - Database SELECT on users - Execution time: 381ms - Rows affected: 84 - RequestID: jqmlpcho6d +2025-06-18T14:34:39.781Z [TRACE] order-service - Auth event: password_change - User: user_1090 - IP: 192.168.240.169 - RequestID: 4jiz34o310c +2025-06-18T14:34:39.881Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 867ms - RequestID: mmdm8zashzb +2025-06-18T14:34:39.981Z [TRACE] notification-service - Database SELECT on users - Execution time: 277ms - Rows affected: 55 - RequestID: d8kb37xcmzn +2025-06-18T14:34:40.081Z [TRACE] auth-service - PUT /api/v1/users - Status: 401 - Response time: 877ms - IP: 192.168.100.240 - User: user_1021 - RequestID: 2zs2c176c3y +2025-06-18T14:34:40.181Z [INFO] payment-service - Auth event: login_success - User: user_1041 - IP: 192.168.44.5 - RequestID: 1iiulaumg2z +2025-06-18T14:34:40.281Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 64ms - RequestID: w5cjicoua9 +2025-06-18T14:34:40.381Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 90ms - Rows affected: 56 - RequestID: ai6sz3mcky +2025-06-18T14:34:40.481Z [TRACE] user-service - Auth event: logout - User: user_1070 - IP: 192.168.53.133 - RequestID: q0y0z6scb1b +2025-06-18T14:34:40.581Z [DEBUG] notification-service - Operation: order_created - Processing time: 762ms - RequestID: fm2asy4ttud +2025-06-18T14:34:40.681Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 458ms - Rows affected: 97 - RequestID: m06zp6wj68 +2025-06-18T14:34:40.781Z [DEBUG] user-service - Database INSERT on payments - Execution time: 39ms - Rows affected: 61 - RequestID: pwme55qt11 +2025-06-18T14:34:40.881Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 503 - Response time: 1277ms - IP: 192.168.147.171 - User: user_1003 - RequestID: 5r5adzpmrwl +2025-06-18T14:34:40.981Z [INFO] notification-service - POST /api/v1/orders - Status: 503 - Response time: 1142ms - IP: 192.168.13.72 - User: user_1027 - RequestID: jqari1fqcwi +2025-06-18T14:34:41.081Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 276ms - RequestID: ofz6mzjd22n +2025-06-18T14:34:41.181Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 197ms - Rows affected: 76 - RequestID: agebp6cfw8q +2025-06-18T14:34:41.281Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 328ms - Rows affected: 15 - RequestID: fe2sky35t6 +2025-06-18T14:34:41.381Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 907ms - RequestID: gpp129n6m5f +2025-06-18T14:34:41.481Z [DEBUG] order-service - Auth event: login_success - User: user_1089 - IP: 192.168.46.63 - RequestID: ot60f9rxkr +2025-06-18T14:34:41.581Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 699ms - RequestID: j723cgkmu9 +2025-06-18T14:34:41.681Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 502 - Response time: 754ms - IP: 192.168.211.72 - User: user_1076 - RequestID: hvoj8k1u5ll +2025-06-18T14:34:41.781Z [TRACE] user-service - Operation: notification_queued - Processing time: 1040ms - RequestID: 0pk3ct1go85 +2025-06-18T14:34:41.881Z [TRACE] order-service - Operation: order_created - Processing time: 207ms - RequestID: 2lxry2svat9 +2025-06-18T14:34:41.981Z [INFO] user-service - GET /api/v1/orders - Status: 502 - Response time: 142ms - IP: 192.168.159.94 - User: user_1022 - RequestID: bj4z2y11tw9 +2025-06-18T14:34:42.081Z [TRACE] inventory-service - GET /api/v1/payments - Status: 201 - Response time: 103ms - IP: 192.168.31.117 - User: user_1029 - RequestID: lbyyw3i7zwc +2025-06-18T14:34:42.181Z [TRACE] notification-service - Operation: email_sent - Processing time: 360ms - RequestID: 6b01o5k3dw7 +2025-06-18T14:34:42.281Z [INFO] notification-service - Auth event: logout - User: user_1081 - IP: 192.168.32.38 - RequestID: aimn1jx09s8 +2025-06-18T14:34:42.381Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 404 - Response time: 695ms - IP: 192.168.64.33 - User: user_1004 - RequestID: nl477x1glb +2025-06-18T14:34:42.481Z [INFO] payment-service - Operation: payment_processed - Processing time: 391ms - RequestID: er4l6w2w4rc +2025-06-18T14:34:42.581Z [TRACE] payment-service - Database INSERT on users - Execution time: 3ms - Rows affected: 63 - RequestID: 0eepsomvr94r +2025-06-18T14:34:42.681Z [TRACE] payment-service - GET /api/v1/users - Status: 503 - Response time: 544ms - IP: 192.168.79.143 - User: user_1054 - RequestID: fyhyqu8wla9 +2025-06-18T14:34:42.781Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 357ms - Rows affected: 83 - RequestID: hpdzb87rch9 +2025-06-18T14:34:42.881Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 376ms - Rows affected: 31 - RequestID: 03wqtsexlq5a +2025-06-18T14:34:42.981Z [TRACE] payment-service - Auth event: login_success - User: user_1053 - IP: 192.168.14.77 - RequestID: wdy3saea0z +2025-06-18T14:34:43.081Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 740ms - RequestID: ota8pqrxlyj +2025-06-18T14:34:43.181Z [INFO] auth-service - Auth event: password_change - User: user_1002 - IP: 192.168.227.77 - RequestID: srb3490l5s +2025-06-18T14:34:43.281Z [DEBUG] order-service - Operation: notification_queued - Processing time: 504ms - RequestID: x00e5gbt18r +2025-06-18T14:34:43.381Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 503 - Response time: 436ms - IP: 192.168.85.229 - User: user_1095 - RequestID: 9ie2eb4d6ef +2025-06-18T14:34:43.481Z [DEBUG] order-service - Database SELECT on payments - Execution time: 362ms - Rows affected: 59 - RequestID: pvmdn90u64k +2025-06-18T14:34:43.581Z [TRACE] payment-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.31.117 - RequestID: g1ev5ik9dn +2025-06-18T14:34:43.681Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 404 - Response time: 971ms - IP: 192.168.79.116 - User: user_1061 - RequestID: o7598san01 +2025-06-18T14:34:43.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 576ms - RequestID: x6jqbsfmre9 +2025-06-18T14:34:43.881Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 131ms - Rows affected: 4 - RequestID: prn6dxrzhus +2025-06-18T14:34:43.981Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 502 - Response time: 15ms - IP: 192.168.196.226 - User: user_1020 - RequestID: bkrpgodb05d +2025-06-18T14:34:44.081Z [TRACE] auth-service - Operation: cache_miss - Processing time: 373ms - RequestID: hni7348545 +2025-06-18T14:34:44.181Z [INFO] payment-service - Auth event: password_change - User: user_1022 - IP: 192.168.14.77 - RequestID: 4lij028k84w +2025-06-18T14:34:44.281Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1864ms - IP: 192.168.158.144 - User: user_1091 - RequestID: 5mfs3vpotm8 +2025-06-18T14:34:44.381Z [INFO] inventory-service - Database INSERT on users - Execution time: 243ms - Rows affected: 24 - RequestID: cjra3jwi7v +2025-06-18T14:34:44.481Z [TRACE] payment-service - Operation: order_created - Processing time: 380ms - RequestID: 7bwupgtujsg +2025-06-18T14:34:44.581Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 403 - Response time: 1719ms - IP: 192.168.30.79 - User: user_1028 - RequestID: 5t96u2muvor +2025-06-18T14:34:44.681Z [TRACE] inventory-service - Database INSERT on users - Execution time: 209ms - Rows affected: 99 - RequestID: qh4hym53ks +2025-06-18T14:34:44.781Z [TRACE] payment-service - Operation: cache_miss - Processing time: 975ms - RequestID: mxsk64c80xe +2025-06-18T14:34:44.881Z [TRACE] payment-service - Operation: email_sent - Processing time: 945ms - RequestID: 03v2zgs209wf +2025-06-18T14:34:44.981Z [TRACE] user-service - Auth event: logout - User: user_1082 - IP: 192.168.242.165 - RequestID: vfytpq8ttbj +2025-06-18T14:34:45.081Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 794ms - RequestID: 26isii2m25y +2025-06-18T14:34:45.181Z [INFO] user-service - Database UPDATE on orders - Execution time: 165ms - Rows affected: 48 - RequestID: k83lad58i3e +2025-06-18T14:34:45.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.159.94 - RequestID: rc895hdmw8b +2025-06-18T14:34:45.381Z [DEBUG] order-service - Database DELETE on users - Execution time: 432ms - Rows affected: 56 - RequestID: 0ltaq6dsijdn +2025-06-18T14:34:45.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.68.158 - RequestID: g27rh5pbkll +2025-06-18T14:34:45.581Z [TRACE] auth-service - Operation: order_created - Processing time: 743ms - RequestID: or4vgqjhovr +2025-06-18T14:34:45.681Z [INFO] order-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.10.184 - RequestID: a6vofryd3g +2025-06-18T14:34:45.781Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 968ms - RequestID: vut9rn2nzqo +2025-06-18T14:34:45.881Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 480ms - Rows affected: 73 - RequestID: qpzgx4oat5o +2025-06-18T14:34:45.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1080 - IP: 192.168.170.215 - RequestID: 7p1fc9h67nl +2025-06-18T14:34:46.081Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 201 - Response time: 636ms - IP: 192.168.194.41 - User: user_1008 - RequestID: pdoeks92ajh +2025-06-18T14:34:46.181Z [DEBUG] payment-service - Operation: order_created - Processing time: 928ms - RequestID: jocb23xnf6 +2025-06-18T14:34:46.281Z [TRACE] auth-service - Operation: notification_queued - Processing time: 169ms - RequestID: f11hnikgwxq +2025-06-18T14:34:46.381Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 27ms - Rows affected: 57 - RequestID: grzfkjjptb9 +2025-06-18T14:34:46.481Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 814ms - IP: 192.168.113.218 - User: user_1020 - RequestID: u3hsepvxbw +2025-06-18T14:34:46.581Z [INFO] order-service - Database INSERT on orders - Execution time: 32ms - Rows affected: 12 - RequestID: wo7hd8icf +2025-06-18T14:34:46.681Z [DEBUG] order-service - Auth event: logout - User: user_1067 - IP: 192.168.235.117 - RequestID: gq0oq5t293m +2025-06-18T14:34:46.781Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 400 - Response time: 1692ms - IP: 192.168.68.128 - User: user_1080 - RequestID: k1bzz1fkuej +2025-06-18T14:34:46.881Z [DEBUG] user-service - Database INSERT on users - Execution time: 164ms - Rows affected: 39 - RequestID: q7nu02k1kli +2025-06-18T14:34:46.981Z [TRACE] payment-service - Operation: order_created - Processing time: 566ms - RequestID: xd0r0eueqz +2025-06-18T14:34:47.081Z [TRACE] order-service - Operation: order_created - Processing time: 111ms - RequestID: viw90l0xgyd +2025-06-18T14:34:47.181Z [INFO] notification-service - Operation: webhook_sent - Processing time: 482ms - RequestID: rj31as3t67 +2025-06-18T14:34:47.281Z [TRACE] order-service - Operation: notification_queued - Processing time: 869ms - RequestID: uym3t6owsof +2025-06-18T14:34:47.381Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 248ms - RequestID: ffkqxkymnau +2025-06-18T14:34:47.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 500ms - RequestID: ecejc86qx6 +2025-06-18T14:34:47.581Z [TRACE] notification-service - Auth event: password_change - User: user_1047 - IP: 192.168.170.215 - RequestID: jald2g82zcn +2025-06-18T14:34:47.681Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1725ms - IP: 192.168.170.215 - User: user_1046 - RequestID: pxf9n43pb8d +2025-06-18T14:34:47.781Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1737ms - IP: 192.168.174.114 - User: user_1049 - RequestID: wwumh10qa9 +2025-06-18T14:34:47.881Z [TRACE] order-service - Operation: inventory_updated - Processing time: 945ms - RequestID: 5bc86gre9g5 +2025-06-18T14:34:47.981Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 706ms - RequestID: oqmxwkgkecl +2025-06-18T14:34:48.081Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 923ms - RequestID: g90zp79tkli +2025-06-18T14:34:48.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.32.38 - RequestID: 3pcs6b50mop +2025-06-18T14:34:48.281Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 201 - Response time: 960ms - IP: 192.168.30.79 - User: user_1049 - RequestID: bgsyimk2sy8 +2025-06-18T14:34:48.381Z [TRACE] order-service - Operation: payment_processed - Processing time: 658ms - RequestID: 3bg7oqeu68j +2025-06-18T14:34:48.481Z [INFO] auth-service - Auth event: login_failed - User: user_1050 - IP: 192.168.85.229 - RequestID: oa6fjmmowma +2025-06-18T14:34:48.581Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 401 - Response time: 118ms - IP: 192.168.147.171 - User: user_1065 - RequestID: ynbpaa4tdd +2025-06-18T14:34:48.681Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.242.165 - RequestID: woma1xdb5q +2025-06-18T14:34:48.781Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 352ms - Rows affected: 50 - RequestID: 979pwx8b8uk +2025-06-18T14:34:48.881Z [TRACE] notification-service - Operation: payment_processed - Processing time: 723ms - RequestID: nt6bnxr0z3e +2025-06-18T14:34:48.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 305ms - RequestID: xtr60pu2t1 +2025-06-18T14:34:49.081Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 30ms - Rows affected: 35 - RequestID: 77dtq8y8dnr +2025-06-18T14:34:49.181Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 915ms - IP: 192.168.158.144 - User: user_1090 - RequestID: 7t14g87a63n +2025-06-18T14:34:49.281Z [INFO] payment-service - Database INSERT on users - Execution time: 20ms - Rows affected: 57 - RequestID: zajhpulrrb9 +2025-06-18T14:34:49.381Z [DEBUG] order-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.79.116 - RequestID: rw57jv97peb +2025-06-18T14:34:49.481Z [DEBUG] payment-service - Database DELETE on users - Execution time: 477ms - Rows affected: 78 - RequestID: 7e4tg5c84u4 +2025-06-18T14:34:49.581Z [INFO] notification-service - Operation: email_sent - Processing time: 923ms - RequestID: 0bes14hytv9 +2025-06-18T14:34:49.681Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 66ms - IP: 192.168.10.184 - User: user_1030 - RequestID: toz0pgwjzk +2025-06-18T14:34:49.781Z [TRACE] user-service - PATCH /api/v1/users - Status: 404 - Response time: 1714ms - IP: 192.168.144.38 - User: user_1048 - RequestID: iiz4jke4pz +2025-06-18T14:34:49.881Z [DEBUG] user-service - DELETE /api/v1/users - Status: 403 - Response time: 537ms - IP: 192.168.242.165 - User: user_1019 - RequestID: wq67k37f7uc +2025-06-18T14:34:49.981Z [DEBUG] payment-service - Database DELETE on products - Execution time: 353ms - Rows affected: 63 - RequestID: ygd0hixwpvr +2025-06-18T14:34:50.081Z [INFO] user-service - POST /api/v1/inventory - Status: 401 - Response time: 1167ms - IP: 192.168.11.60 - User: user_1027 - RequestID: 55qeja36nk5 +2025-06-18T14:34:50.181Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 151ms - Rows affected: 87 - RequestID: vev0o2zwpka +2025-06-18T14:34:50.281Z [TRACE] order-service - Database UPDATE on users - Execution time: 500ms - Rows affected: 21 - RequestID: lbdy2ypqq7 +2025-06-18T14:34:50.381Z [DEBUG] user-service - Auth event: logout - User: user_1083 - IP: 192.168.97.87 - RequestID: cp41e33fdt5 +2025-06-18T14:34:50.481Z [INFO] inventory-service - PUT /api/v1/orders - Status: 403 - Response time: 1171ms - IP: 192.168.64.33 - User: user_1034 - RequestID: fr35vm3x86p +2025-06-18T14:34:50.581Z [TRACE] auth-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.79.141 - RequestID: f4nkhyjsn2i +2025-06-18T14:34:50.681Z [TRACE] order-service - Database UPDATE on users - Execution time: 422ms - Rows affected: 84 - RequestID: pynissqlpdq +2025-06-18T14:34:50.781Z [INFO] payment-service - Operation: order_created - Processing time: 352ms - RequestID: w9x75r2088 +2025-06-18T14:34:50.881Z [DEBUG] user-service - Operation: payment_processed - Processing time: 714ms - RequestID: 1gqaigm4lrn +2025-06-18T14:34:50.981Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.44.5 - RequestID: 9eayhqk1a88 +2025-06-18T14:34:51.081Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1043ms - IP: 192.168.194.41 - User: user_1088 - RequestID: 2dz2n50k1k4 +2025-06-18T14:34:51.181Z [INFO] notification-service - Operation: notification_queued - Processing time: 817ms - RequestID: xiu4i5erwhn +2025-06-18T14:34:51.281Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 471ms - Rows affected: 0 - RequestID: 2c9c1838m8i +2025-06-18T14:34:51.381Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 310ms - RequestID: fmgtw08eybv +2025-06-18T14:34:51.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 888ms - RequestID: 7zuo5fqzvps +2025-06-18T14:34:51.581Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 963ms - RequestID: 3vurp0g6agf +2025-06-18T14:34:51.681Z [TRACE] notification-service - Database INSERT on orders - Execution time: 438ms - Rows affected: 98 - RequestID: mn0zo81x03q +2025-06-18T14:34:51.781Z [INFO] inventory-service - Auth event: login_failed - User: user_1056 - IP: 192.168.100.240 - RequestID: x0moifib6o +2025-06-18T14:34:51.881Z [TRACE] inventory-service - Auth event: logout - User: user_1055 - IP: 192.168.44.5 - RequestID: 3b23oy2idm3 +2025-06-18T14:34:51.981Z [INFO] auth-service - Database SELECT on orders - Execution time: 78ms - Rows affected: 38 - RequestID: sjfxv9qluy +2025-06-18T14:34:52.081Z [INFO] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 342ms - IP: 192.168.85.229 - User: user_1071 - RequestID: ejv19tp8yz7 +2025-06-18T14:34:52.181Z [DEBUG] auth-service - PUT /api/v1/users - Status: 403 - Response time: 1111ms - IP: 192.168.147.171 - User: user_1031 - RequestID: 171zvf977zd +2025-06-18T14:34:52.281Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 330ms - Rows affected: 17 - RequestID: vnej91nbinp +2025-06-18T14:34:52.381Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 251ms - IP: 192.168.240.169 - User: user_1066 - RequestID: 4ucle0e4cjn +2025-06-18T14:34:52.481Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.229.123 - RequestID: 3dkiitfx95j +2025-06-18T14:34:52.581Z [INFO] order-service - Operation: order_created - Processing time: 420ms - RequestID: q2cp8ihf92 +2025-06-18T14:34:52.681Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 32ms - Rows affected: 50 - RequestID: jhu19i6cmw +2025-06-18T14:34:52.781Z [TRACE] notification-service - Database INSERT on payments - Execution time: 5ms - Rows affected: 16 - RequestID: 42w4y0p11g5 +2025-06-18T14:34:52.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 218ms - RequestID: p4mg2n8a61g +2025-06-18T14:34:52.981Z [DEBUG] order-service - Database INSERT on products - Execution time: 135ms - Rows affected: 91 - RequestID: dmtnk47q9e7 +2025-06-18T14:34:53.081Z [DEBUG] order-service - Operation: payment_processed - Processing time: 127ms - RequestID: i1l9920emfj +2025-06-18T14:34:53.181Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 226ms - Rows affected: 20 - RequestID: hpydfgueegg +2025-06-18T14:34:53.281Z [DEBUG] user-service - Database UPDATE on products - Execution time: 378ms - Rows affected: 87 - RequestID: 7345bdhqxvr +2025-06-18T14:34:53.381Z [TRACE] order-service - GET /api/v1/inventory - Status: 403 - Response time: 170ms - IP: 192.168.1.152 - User: user_1025 - RequestID: fqmyibuhq4p +2025-06-18T14:34:53.481Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1433ms - IP: 192.168.32.38 - User: user_1064 - RequestID: oohtfbe5oh +2025-06-18T14:34:53.581Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 634ms - RequestID: bv3zd3co4sf +2025-06-18T14:34:53.681Z [INFO] notification-service - Operation: email_sent - Processing time: 859ms - RequestID: r5zbrk5bn +2025-06-18T14:34:53.781Z [TRACE] payment-service - Auth event: password_change - User: user_1078 - IP: 192.168.100.240 - RequestID: 45r0h0tz502 +2025-06-18T14:34:53.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 211ms - RequestID: 2jvwl59jkhx +2025-06-18T14:34:53.981Z [TRACE] payment-service - PATCH /api/v1/users - Status: 503 - Response time: 1237ms - IP: 192.168.32.38 - User: user_1090 - RequestID: doyxdnf229 +2025-06-18T14:34:54.081Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 536ms - RequestID: pijt8pmfbv +2025-06-18T14:34:54.181Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 1004ms - RequestID: y8h4f7zebb +2025-06-18T14:34:54.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.28.146 - RequestID: 0a71upvdkuzs +2025-06-18T14:34:54.381Z [INFO] inventory-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.30.79 - RequestID: en37ma6io8p +2025-06-18T14:34:54.481Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 325ms - IP: 192.168.189.103 - User: user_1012 - RequestID: ot2c5lweo9n +2025-06-18T14:34:54.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1044 - IP: 192.168.81.206 - RequestID: fssg02kj1ig +2025-06-18T14:34:54.681Z [TRACE] order-service - Operation: inventory_updated - Processing time: 204ms - RequestID: q4y766wpabm +2025-06-18T14:34:54.781Z [INFO] payment-service - Operation: inventory_updated - Processing time: 940ms - RequestID: z5uz2u944u +2025-06-18T14:34:54.881Z [TRACE] inventory-service - Operation: order_created - Processing time: 571ms - RequestID: mrl3s35iuxd +2025-06-18T14:34:54.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.31.117 - RequestID: a54ejpvgbz9 +2025-06-18T14:34:55.081Z [TRACE] order-service - Database SELECT on users - Execution time: 407ms - Rows affected: 98 - RequestID: 7xsff19kli5 +2025-06-18T14:34:55.181Z [TRACE] notification-service - PUT /api/v1/payments - Status: 201 - Response time: 1501ms - IP: 192.168.44.5 - User: user_1028 - RequestID: 1y3zvuxrdxh +2025-06-18T14:34:55.281Z [TRACE] auth-service - PUT /api/v1/users - Status: 401 - Response time: 554ms - IP: 192.168.31.117 - User: user_1052 - RequestID: pcau81pf4ch +2025-06-18T14:34:55.381Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 657ms - RequestID: 9sc49djyro +2025-06-18T14:34:55.481Z [INFO] inventory-service - Auth event: login_success - User: user_1008 - IP: 192.168.144.38 - RequestID: 3u0vqpjxznd +2025-06-18T14:34:55.581Z [DEBUG] user-service - Auth event: login_failed - User: user_1091 - IP: 192.168.158.144 - RequestID: oe7ndurshpd +2025-06-18T14:34:55.681Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 12ms - IP: 192.168.240.169 - User: user_1078 - RequestID: wqatt8v986b +2025-06-18T14:34:55.781Z [TRACE] order-service - PUT /api/v1/orders - Status: 401 - Response time: 1649ms - IP: 192.168.28.146 - User: user_1026 - RequestID: nbaurckrv1 +2025-06-18T14:34:55.881Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 805ms - RequestID: 7mp2qtr42lc +2025-06-18T14:34:55.981Z [INFO] inventory-service - GET /api/v1/users - Status: 200 - Response time: 728ms - IP: 192.168.79.116 - User: user_1037 - RequestID: k3izg78ayig +2025-06-18T14:34:56.081Z [TRACE] order-service - Database UPDATE on orders - Execution time: 152ms - Rows affected: 77 - RequestID: an9vhqpc0nl +2025-06-18T14:34:56.181Z [DEBUG] user-service - Operation: email_sent - Processing time: 997ms - RequestID: 19sci371cd4 +2025-06-18T14:34:56.281Z [TRACE] auth-service - Database INSERT on products - Execution time: 225ms - Rows affected: 54 - RequestID: wgp35jq9ak +2025-06-18T14:34:56.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1000 - IP: 192.168.170.215 - RequestID: c23pcwmhvxn +2025-06-18T14:34:56.481Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 535ms - RequestID: uhsra4xgml +2025-06-18T14:34:56.581Z [TRACE] payment-service - Database DELETE on products - Execution time: 307ms - Rows affected: 28 - RequestID: 3uycmomxy94 +2025-06-18T14:34:56.681Z [DEBUG] user-service - Operation: payment_processed - Processing time: 375ms - RequestID: p7mddiz7yil +2025-06-18T14:34:56.781Z [TRACE] user-service - Auth event: password_change - User: user_1016 - IP: 192.168.235.117 - RequestID: 0b12peoy4cc +2025-06-18T14:34:56.881Z [TRACE] user-service - Auth event: login_failed - User: user_1088 - IP: 192.168.81.206 - RequestID: yc7u11my4cr +2025-06-18T14:34:56.981Z [TRACE] user-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.240.169 - RequestID: tbgigfqluds +2025-06-18T14:34:57.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.211.72 - RequestID: czflpe5cqf9 +2025-06-18T14:34:57.181Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 177ms - RequestID: 2uol0jtock +2025-06-18T14:34:57.281Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 706ms - IP: 192.168.181.225 - User: user_1076 - RequestID: 9iphrds5jf5 +2025-06-18T14:34:57.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1062 - IP: 192.168.33.76 - RequestID: 2q7i9ixb2aj +2025-06-18T14:34:57.481Z [DEBUG] user-service - Auth event: login_success - User: user_1003 - IP: 192.168.46.63 - RequestID: 0bz21voup7ad +2025-06-18T14:34:57.581Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 267ms - Rows affected: 94 - RequestID: 4c6bmojdzck +2025-06-18T14:34:57.681Z [DEBUG] payment-service - Operation: email_sent - Processing time: 764ms - RequestID: 3239iwde1m9 +2025-06-18T14:34:57.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1067 - IP: 192.168.232.72 - RequestID: qsdmoyp4zo +2025-06-18T14:34:57.881Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.242.165 - RequestID: dt6ggfayxpb +2025-06-18T14:34:57.981Z [TRACE] order-service - PUT /api/v1/inventory - Status: 401 - Response time: 736ms - IP: 192.168.189.103 - User: user_1050 - RequestID: and8gewv6dk +2025-06-18T14:34:58.081Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 400 - Response time: 959ms - IP: 192.168.242.165 - User: user_1016 - RequestID: 5nvul1uvape +2025-06-18T14:34:58.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 694ms - RequestID: f4w5mh14qi5 +2025-06-18T14:34:58.281Z [TRACE] inventory-service - Auth event: logout - User: user_1099 - IP: 192.168.167.32 - RequestID: k0uwvwkgz2l +2025-06-18T14:34:58.381Z [TRACE] user-service - Auth event: logout - User: user_1094 - IP: 192.168.79.116 - RequestID: ttlu79k3p18 +2025-06-18T14:34:58.481Z [INFO] user-service - Database DELETE on orders - Execution time: 5ms - Rows affected: 67 - RequestID: yw64xl07e +2025-06-18T14:34:58.581Z [INFO] notification-service - PATCH /api/v1/payments - Status: 502 - Response time: 1850ms - IP: 192.168.79.141 - User: user_1028 - RequestID: 5d8s0ron945 +2025-06-18T14:34:58.681Z [TRACE] auth-service - Database SELECT on orders - Execution time: 431ms - Rows affected: 79 - RequestID: vx9uc4oz7wr +2025-06-18T14:34:58.781Z [DEBUG] order-service - Auth event: login_success - User: user_1000 - IP: 192.168.44.5 - RequestID: thznij0b3qb +2025-06-18T14:34:58.881Z [INFO] user-service - Operation: inventory_updated - Processing time: 583ms - RequestID: egg5dy25bk +2025-06-18T14:34:58.981Z [TRACE] notification-service - Database SELECT on products - Execution time: 5ms - Rows affected: 87 - RequestID: ufml9ro9f1s +2025-06-18T14:34:59.081Z [DEBUG] auth-service - Operation: order_created - Processing time: 911ms - RequestID: dykl0t76wnq +2025-06-18T14:34:59.181Z [TRACE] notification-service - Operation: order_created - Processing time: 579ms - RequestID: l2q7k63308 +2025-06-18T14:34:59.281Z [TRACE] user-service - Database SELECT on users - Execution time: 298ms - Rows affected: 34 - RequestID: z8r76rr7yc9 +2025-06-18T14:34:59.381Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1335ms - IP: 192.168.174.114 - User: user_1056 - RequestID: 6iq01fhvs5b +2025-06-18T14:34:59.481Z [TRACE] notification-service - Operation: email_sent - Processing time: 564ms - RequestID: xupe6l1q4q8 +2025-06-18T14:34:59.581Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 200 - Response time: 1784ms - IP: 192.168.44.5 - User: user_1020 - RequestID: 0vd8ntt2a67l +2025-06-18T14:34:59.681Z [INFO] notification-service - Auth event: login_success - User: user_1046 - IP: 192.168.33.76 - RequestID: c7f5f7rx70u +2025-06-18T14:34:59.781Z [INFO] payment-service - Database DELETE on users - Execution time: 439ms - Rows affected: 84 - RequestID: ma5fawwo0o9 +2025-06-18T14:34:59.881Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 503 - Response time: 1430ms - IP: 192.168.68.158 - User: user_1016 - RequestID: v1tvwfvlnwq +2025-06-18T14:34:59.981Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 391ms - IP: 192.168.211.72 - User: user_1006 - RequestID: f2t6ipuvzts +2025-06-18T14:35:00.081Z [INFO] order-service - Database INSERT on orders - Execution time: 248ms - Rows affected: 37 - RequestID: 5h7ne6yf34y +2025-06-18T14:35:00.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 813ms - RequestID: yu5c2ky5k9i +2025-06-18T14:35:00.281Z [INFO] order-service - Auth event: login_success - User: user_1039 - IP: 192.168.104.37 - RequestID: qrh1jkex76b +2025-06-18T14:35:00.381Z [INFO] auth-service - GET /api/v1/inventory - Status: 401 - Response time: 949ms - IP: 192.168.194.41 - User: user_1097 - RequestID: mc49sslkiss +2025-06-18T14:35:00.481Z [INFO] user-service - Operation: cache_hit - Processing time: 1033ms - RequestID: 0mjntiw239r +2025-06-18T14:35:00.581Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 502 - Response time: 1951ms - IP: 192.168.100.240 - User: user_1052 - RequestID: 4xbgzbqv1wo +2025-06-18T14:35:00.681Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 997ms - RequestID: 36411va2rwc +2025-06-18T14:35:00.781Z [INFO] user-service - Auth event: logout - User: user_1010 - IP: 192.168.79.141 - RequestID: fq2c4dpb66o +2025-06-18T14:35:00.881Z [INFO] payment-service - Database SELECT on users - Execution time: 390ms - Rows affected: 0 - RequestID: ng4a15gr3c +2025-06-18T14:35:00.981Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 236ms - Rows affected: 57 - RequestID: npmdgnc4dmb +2025-06-18T14:35:01.081Z [TRACE] order-service - Operation: payment_processed - Processing time: 182ms - RequestID: 22en23r0jmd +2025-06-18T14:35:01.181Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 275ms - Rows affected: 19 - RequestID: drutsdromph +2025-06-18T14:35:01.281Z [INFO] auth-service - Operation: cache_hit - Processing time: 342ms - RequestID: 3amn8hi6nus +2025-06-18T14:35:01.381Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1872ms - IP: 192.168.79.143 - User: user_1079 - RequestID: ig3xh292mq +2025-06-18T14:35:01.481Z [TRACE] payment-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.79.141 - RequestID: 8n8vvco3jcr +2025-06-18T14:35:01.581Z [TRACE] user-service - Database DELETE on products - Execution time: 305ms - Rows affected: 81 - RequestID: xaqm2pj8v9 +2025-06-18T14:35:01.681Z [INFO] notification-service - Database SELECT on users - Execution time: 363ms - Rows affected: 37 - RequestID: erd6uurued +2025-06-18T14:35:01.781Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 502 - Response time: 1114ms - IP: 192.168.242.165 - User: user_1091 - RequestID: fh9t7aqkg4r +2025-06-18T14:35:01.881Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 279ms - Rows affected: 59 - RequestID: y7mdi6o5wh +2025-06-18T14:35:01.981Z [TRACE] order-service - Database UPDATE on products - Execution time: 473ms - Rows affected: 91 - RequestID: b7o6bhcnlk +2025-06-18T14:35:02.081Z [TRACE] payment-service - Database SELECT on products - Execution time: 227ms - Rows affected: 82 - RequestID: eeb0dowlbs9 +2025-06-18T14:35:02.181Z [TRACE] user-service - Operation: inventory_updated - Processing time: 942ms - RequestID: pph6v9fsz8 +2025-06-18T14:35:02.281Z [TRACE] notification-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.194.41 - RequestID: 2fhswbyw0ol +2025-06-18T14:35:02.381Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 303ms - Rows affected: 11 - RequestID: vre993dtlhb +2025-06-18T14:35:02.481Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 1445ms - IP: 192.168.97.87 - User: user_1015 - RequestID: 7is824tsi04 +2025-06-18T14:35:02.581Z [TRACE] user-service - Database UPDATE on payments - Execution time: 351ms - Rows affected: 36 - RequestID: pkfxbhap58d +2025-06-18T14:35:02.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.104.37 - RequestID: ja8ckaptzu +2025-06-18T14:35:02.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.11.60 - RequestID: vmswt8suvbj +2025-06-18T14:35:02.881Z [DEBUG] order-service - POST /api/v1/payments - Status: 502 - Response time: 1307ms - IP: 192.168.36.218 - User: user_1088 - RequestID: a7dantq7few +2025-06-18T14:35:02.981Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 503 - Response time: 71ms - IP: 192.168.242.165 - User: user_1077 - RequestID: jfd7tujmef7 +2025-06-18T14:35:03.081Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 798ms - RequestID: zu0iah4i0tt +2025-06-18T14:35:03.181Z [DEBUG] user-service - Operation: payment_processed - Processing time: 957ms - RequestID: e2k2oviijo +2025-06-18T14:35:03.281Z [TRACE] user-service - GET /api/v1/inventory - Status: 500 - Response time: 1197ms - IP: 192.168.79.116 - User: user_1023 - RequestID: i5qxeurh3ga +2025-06-18T14:35:03.381Z [DEBUG] payment-service - Database INSERT on users - Execution time: 170ms - Rows affected: 36 - RequestID: j0xe2ig1gu +2025-06-18T14:35:03.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 158ms - RequestID: rd3mjqv90p +2025-06-18T14:35:03.581Z [TRACE] notification-service - Operation: notification_queued - Processing time: 293ms - RequestID: d2qkwm7yhnv +2025-06-18T14:35:03.681Z [INFO] auth-service - Auth event: login_success - User: user_1031 - IP: 192.168.28.146 - RequestID: 0trmksxvnt5 +2025-06-18T14:35:03.781Z [TRACE] user-service - Operation: order_created - Processing time: 129ms - RequestID: 0z0iiwhje5k +2025-06-18T14:35:03.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1089 - IP: 192.168.235.117 - RequestID: 1zy3lgxwycd +2025-06-18T14:35:03.981Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 477ms - RequestID: mgf2exuu2hd +2025-06-18T14:35:04.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1082 - IP: 192.168.196.226 - RequestID: qxx0rfjf8lj +2025-06-18T14:35:04.181Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1338ms - IP: 192.168.147.171 - User: user_1090 - RequestID: dqp859q13ht +2025-06-18T14:35:04.281Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 329ms - Rows affected: 84 - RequestID: hjg549o1suo +2025-06-18T14:35:04.381Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 284ms - Rows affected: 15 - RequestID: rc8kcii4ki +2025-06-18T14:35:04.481Z [TRACE] order-service - Operation: payment_processed - Processing time: 363ms - RequestID: v06c2jmzkwd +2025-06-18T14:35:04.581Z [TRACE] user-service - Operation: inventory_updated - Processing time: 1033ms - RequestID: sjlz5iquqrd +2025-06-18T14:35:04.681Z [INFO] notification-service - Database UPDATE on payments - Execution time: 275ms - Rows affected: 84 - RequestID: heihwooh8t +2025-06-18T14:35:04.781Z [INFO] notification-service - Auth event: login_failed - User: user_1021 - IP: 192.168.68.128 - RequestID: tepxmgpeken +2025-06-18T14:35:04.881Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 124ms - Rows affected: 68 - RequestID: 0u14g3wnmcen +2025-06-18T14:35:04.981Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 201 - Response time: 761ms - IP: 192.168.235.117 - User: user_1081 - RequestID: k3d209xrpe +2025-06-18T14:35:05.081Z [INFO] payment-service - Operation: cache_miss - Processing time: 565ms - RequestID: etvezwwvxxd +2025-06-18T14:35:05.181Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 5ms - Rows affected: 64 - RequestID: kr7rdv0hq8 +2025-06-18T14:35:05.281Z [TRACE] user-service - GET /api/v1/auth/login - Status: 201 - Response time: 63ms - IP: 192.168.235.117 - User: user_1081 - RequestID: b0h6nng0njs +2025-06-18T14:35:05.381Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 772ms - RequestID: 71q66y69k7l +2025-06-18T14:35:05.481Z [TRACE] order-service - Operation: order_created - Processing time: 236ms - RequestID: vizxtu2iplp +2025-06-18T14:35:05.581Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 401 - Response time: 1368ms - IP: 192.168.79.143 - User: user_1040 - RequestID: bypnfpl5blf +2025-06-18T14:35:05.681Z [INFO] notification-service - Database INSERT on products - Execution time: 126ms - Rows affected: 55 - RequestID: om44j6cjutq +2025-06-18T14:35:05.781Z [INFO] order-service - Auth event: login_failed - User: user_1076 - IP: 192.168.229.123 - RequestID: jsfqf8qpt9m +2025-06-18T14:35:05.881Z [DEBUG] user-service - Operation: notification_queued - Processing time: 764ms - RequestID: b17gpbx69z7 +2025-06-18T14:35:05.981Z [INFO] auth-service - Auth event: password_change - User: user_1066 - IP: 192.168.97.87 - RequestID: 6qg4a20a14j +2025-06-18T14:35:06.081Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 319ms - RequestID: 9f60v0l22 +2025-06-18T14:35:06.181Z [INFO] user-service - GET /api/v1/inventory - Status: 500 - Response time: 233ms - IP: 192.168.79.141 - User: user_1023 - RequestID: r4ff2bi2k2 +2025-06-18T14:35:06.281Z [DEBUG] inventory-service - Auth event: login_success - User: user_1006 - IP: 192.168.79.141 - RequestID: kvp6n5mmuh +2025-06-18T14:35:06.381Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1365ms - IP: 192.168.189.103 - User: user_1064 - RequestID: dcfm58bd32 +2025-06-18T14:35:06.481Z [INFO] notification-service - PUT /api/v1/orders - Status: 500 - Response time: 1795ms - IP: 192.168.229.123 - User: user_1038 - RequestID: z75f1ua8408 +2025-06-18T14:35:06.581Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 979ms - RequestID: zzf4ureiwhf +2025-06-18T14:35:06.681Z [TRACE] user-service - Auth event: login_success - User: user_1055 - IP: 192.168.211.72 - RequestID: 6yyply23jvf +2025-06-18T14:35:06.781Z [TRACE] user-service - PATCH /api/v1/payments - Status: 201 - Response time: 339ms - IP: 192.168.247.134 - User: user_1062 - RequestID: 6jq64ok2x5e +2025-06-18T14:35:06.881Z [TRACE] payment-service - Auth event: logout - User: user_1007 - IP: 192.168.79.141 - RequestID: djzr9wf8oo +2025-06-18T14:35:06.981Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 278ms - Rows affected: 14 - RequestID: pu10f97rgik +2025-06-18T14:35:07.081Z [INFO] auth-service - Database DELETE on sessions - Execution time: 198ms - Rows affected: 64 - RequestID: wtqq56a1q4p +2025-06-18T14:35:07.181Z [TRACE] inventory-service - Operation: order_created - Processing time: 812ms - RequestID: riurj35lw9h +2025-06-18T14:35:07.281Z [TRACE] order-service - Auth event: login_failed - User: user_1060 - IP: 192.168.28.146 - RequestID: 9wlxv7nbjb +2025-06-18T14:35:07.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 600ms - RequestID: oxsgafv50ce +2025-06-18T14:35:07.481Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 40ms - Rows affected: 50 - RequestID: k6q7x3kujd +2025-06-18T14:35:07.581Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1622ms - IP: 192.168.28.146 - User: user_1068 - RequestID: 3yaqfw0c3ha +2025-06-18T14:35:07.681Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 200 - Response time: 480ms - IP: 192.168.194.41 - User: user_1092 - RequestID: k2epzqg7tm +2025-06-18T14:35:07.781Z [TRACE] payment-service - Database INSERT on orders - Execution time: 325ms - Rows affected: 87 - RequestID: yhmjz79d0u +2025-06-18T14:35:07.881Z [TRACE] user-service - Operation: inventory_updated - Processing time: 925ms - RequestID: 10cf8bzy049 +2025-06-18T14:35:07.981Z [TRACE] order-service - DELETE /api/v1/orders - Status: 403 - Response time: 1487ms - IP: 192.168.85.229 - User: user_1004 - RequestID: zi0uuwhz46k +2025-06-18T14:35:08.081Z [DEBUG] order-service - Auth event: logout - User: user_1033 - IP: 192.168.229.123 - RequestID: kh1bmboj5sm +2025-06-18T14:35:08.181Z [INFO] user-service - Database UPDATE on products - Execution time: 159ms - Rows affected: 47 - RequestID: s6tor18xv5 +2025-06-18T14:35:08.281Z [INFO] order-service - GET /api/v1/users - Status: 201 - Response time: 54ms - IP: 192.168.28.146 - User: user_1085 - RequestID: iaegfnsegrb +2025-06-18T14:35:08.381Z [TRACE] user-service - Auth event: password_change - User: user_1090 - IP: 192.168.147.171 - RequestID: h0fbdo9biza +2025-06-18T14:35:08.481Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 500 - Response time: 1661ms - IP: 192.168.11.60 - User: user_1031 - RequestID: v1fu3vw1vht +2025-06-18T14:35:08.581Z [INFO] payment-service - Auth event: password_change - User: user_1007 - IP: 192.168.14.77 - RequestID: lbd6vb99g8 +2025-06-18T14:35:08.681Z [INFO] user-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.240.169 - RequestID: zsht7k4yprc +2025-06-18T14:35:08.781Z [TRACE] user-service - DELETE /api/v1/payments - Status: 200 - Response time: 21ms - IP: 192.168.64.33 - User: user_1035 - RequestID: ivttxg6gah +2025-06-18T14:35:08.881Z [TRACE] order-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.144.38 - RequestID: 4vpuitexerd +2025-06-18T14:35:08.981Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 743ms - RequestID: 2khwfd6xq37 +2025-06-18T14:35:09.081Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 427ms - Rows affected: 99 - RequestID: sfv17qb0w7f +2025-06-18T14:35:09.181Z [INFO] user-service - Operation: email_sent - Processing time: 650ms - RequestID: dvomgvnl2r +2025-06-18T14:35:09.281Z [INFO] notification-service - Database SELECT on products - Execution time: 20ms - Rows affected: 68 - RequestID: mg321vnyel +2025-06-18T14:35:09.381Z [INFO] auth-service - Database INSERT on orders - Execution time: 180ms - Rows affected: 74 - RequestID: tjidc9szl4 +2025-06-18T14:35:09.481Z [DEBUG] user-service - Auth event: login_failed - User: user_1045 - IP: 192.168.227.233 - RequestID: d93ms75rlyb +2025-06-18T14:35:09.581Z [TRACE] user-service - Operation: email_sent - Processing time: 429ms - RequestID: hm9sasisxrb +2025-06-18T14:35:09.681Z [INFO] payment-service - Operation: cache_miss - Processing time: 856ms - RequestID: 83o55v54jd9 +2025-06-18T14:35:09.781Z [TRACE] payment-service - Auth event: password_change - User: user_1007 - IP: 192.168.44.5 - RequestID: c0m2jy3yodj +2025-06-18T14:35:09.881Z [TRACE] order-service - Auth event: login_success - User: user_1039 - IP: 192.168.79.141 - RequestID: hn29k8yvzjn +2025-06-18T14:35:09.981Z [INFO] notification-service - PUT /api/v1/orders - Status: 201 - Response time: 1391ms - IP: 192.168.189.103 - User: user_1089 - RequestID: k83iy7p4e6 +2025-06-18T14:35:10.081Z [TRACE] user-service - DELETE /api/v1/users - Status: 502 - Response time: 1705ms - IP: 192.168.242.165 - User: user_1079 - RequestID: otonkmhbce +2025-06-18T14:35:10.181Z [DEBUG] user-service - Auth event: login_success - User: user_1007 - IP: 192.168.13.72 - RequestID: p0wqasctgpk +2025-06-18T14:35:10.281Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 500 - Response time: 132ms - IP: 192.168.81.206 - User: user_1019 - RequestID: ocoixh3xicn +2025-06-18T14:35:10.381Z [INFO] auth-service - PATCH /api/v1/users - Status: 403 - Response time: 1528ms - IP: 192.168.104.37 - User: user_1026 - RequestID: 0iedazrexg9j +2025-06-18T14:35:10.481Z [DEBUG] user-service - Operation: cache_hit - Processing time: 770ms - RequestID: km9r2093hfq +2025-06-18T14:35:10.581Z [INFO] auth-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.85.229 - RequestID: 3xgy8sxbgev +2025-06-18T14:35:10.681Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 367ms - Rows affected: 6 - RequestID: 8dzqocq3m99 +2025-06-18T14:35:10.781Z [INFO] user-service - Database SELECT on sessions - Execution time: 223ms - Rows affected: 87 - RequestID: 6p9laihfwwt +2025-06-18T14:35:10.881Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 1ms - Rows affected: 68 - RequestID: 7lojvt2gmrw +2025-06-18T14:35:10.981Z [DEBUG] notification-service - Operation: email_sent - Processing time: 575ms - RequestID: 5nbi9owudyu +2025-06-18T14:35:11.081Z [DEBUG] payment-service - Operation: order_created - Processing time: 655ms - RequestID: sppkfjrwoss +2025-06-18T14:35:11.181Z [INFO] notification-service - Auth event: password_change - User: user_1063 - IP: 192.168.10.184 - RequestID: j7d0nbidkm +2025-06-18T14:35:11.281Z [DEBUG] notification-service - POST /api/v1/users - Status: 401 - Response time: 504ms - IP: 192.168.240.169 - User: user_1087 - RequestID: qq40xwhkiwl +2025-06-18T14:35:11.381Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 406ms - Rows affected: 43 - RequestID: 8ah7s8gxgm +2025-06-18T14:35:11.481Z [TRACE] payment-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.10.184 - RequestID: tdwu8l38799 +2025-06-18T14:35:11.581Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 370ms - Rows affected: 15 - RequestID: 8k68e3dhknh +2025-06-18T14:35:11.681Z [INFO] inventory-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.79.141 - RequestID: 5a1ax5tmrnt +2025-06-18T14:35:11.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1020 - IP: 192.168.170.215 - RequestID: 72olplhpxoe +2025-06-18T14:35:11.881Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 339ms - Rows affected: 43 - RequestID: wz82fvi26b +2025-06-18T14:35:11.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 804ms - RequestID: nf3os1smy0j +2025-06-18T14:35:12.081Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1096 - IP: 192.168.28.146 - RequestID: 6pb5b7hlv0d +2025-06-18T14:35:12.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1059 - IP: 192.168.11.60 - RequestID: rookoxguc6 +2025-06-18T14:35:12.281Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 387ms - Rows affected: 49 - RequestID: 76zqs3if9h +2025-06-18T14:35:12.381Z [INFO] auth-service - POST /api/v1/auth/login - Status: 400 - Response time: 1675ms - IP: 192.168.79.116 - User: user_1054 - RequestID: 5ffn2ptyol +2025-06-18T14:35:12.481Z [INFO] order-service - DELETE /api/v1/orders - Status: 500 - Response time: 1273ms - IP: 192.168.32.38 - User: user_1042 - RequestID: aybhpnl445b +2025-06-18T14:35:12.581Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 761ms - RequestID: vowz3gy8d7n +2025-06-18T14:35:12.681Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.232.72 - RequestID: jwh8rhouf2 +2025-06-18T14:35:12.781Z [DEBUG] user-service - Operation: cache_miss - Processing time: 327ms - RequestID: 1nnig23y9qi +2025-06-18T14:35:12.881Z [INFO] auth-service - PUT /api/v1/orders - Status: 404 - Response time: 1606ms - IP: 192.168.167.32 - User: user_1028 - RequestID: wcvzwzrohlq +2025-06-18T14:35:12.981Z [INFO] inventory-service - Database SELECT on orders - Execution time: 475ms - Rows affected: 5 - RequestID: subweezbhl +2025-06-18T14:35:13.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.187.199 - RequestID: rw6y51b73jt +2025-06-18T14:35:13.181Z [INFO] user-service - Database UPDATE on sessions - Execution time: 267ms - Rows affected: 42 - RequestID: omqcigu8ydh +2025-06-18T14:35:13.281Z [INFO] notification-service - Operation: payment_processed - Processing time: 789ms - RequestID: tc5xvxpxvg9 +2025-06-18T14:35:13.381Z [TRACE] order-service - Auth event: login_failed - User: user_1050 - IP: 192.168.32.38 - RequestID: 85occtl6pnm +2025-06-18T14:35:13.481Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 942ms - RequestID: fnd3eo10ctw +2025-06-18T14:35:13.581Z [TRACE] auth-service - GET /api/v1/inventory - Status: 502 - Response time: 277ms - IP: 192.168.240.169 - User: user_1028 - RequestID: yy47h08zjs +2025-06-18T14:35:13.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.133.7 - RequestID: on4lhuh83j +2025-06-18T14:35:13.781Z [DEBUG] user-service - GET /api/v1/inventory - Status: 500 - Response time: 292ms - IP: 192.168.53.133 - User: user_1057 - RequestID: j9zfouv8xyq +2025-06-18T14:35:13.881Z [DEBUG] order-service - Auth event: login_success - User: user_1075 - IP: 192.168.14.77 - RequestID: 5im9wwgvaeo +2025-06-18T14:35:13.981Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 500 - Response time: 79ms - IP: 192.168.68.158 - User: user_1034 - RequestID: wm4lt2ek88r +2025-06-18T14:35:14.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 671ms - RequestID: 2wpw4w94ro7 +2025-06-18T14:35:14.181Z [TRACE] payment-service - PUT /api/v1/users - Status: 404 - Response time: 1083ms - IP: 192.168.147.171 - User: user_1067 - RequestID: l4e858ipaho +2025-06-18T14:35:14.281Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 465ms - RequestID: 8j8gy6c072m +2025-06-18T14:35:14.381Z [INFO] user-service - Operation: cache_miss - Processing time: 926ms - RequestID: 6nbrvgnux8e +2025-06-18T14:35:14.481Z [INFO] notification-service - PUT /api/v1/payments - Status: 400 - Response time: 342ms - IP: 192.168.68.158 - User: user_1032 - RequestID: gwzeke8zwc4 +2025-06-18T14:35:14.581Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 719ms - RequestID: grzcq6s4cm +2025-06-18T14:35:14.681Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 699ms - IP: 192.168.147.171 - User: user_1052 - RequestID: 0s7iokmc0xx +2025-06-18T14:35:14.781Z [INFO] payment-service - Database UPDATE on products - Execution time: 230ms - Rows affected: 0 - RequestID: ts9zcsni2l9 +2025-06-18T14:35:14.881Z [TRACE] payment-service - Auth event: password_change - User: user_1034 - IP: 192.168.85.229 - RequestID: cmfo8fq5s17 +2025-06-18T14:35:14.981Z [DEBUG] order-service - Operation: payment_processed - Processing time: 363ms - RequestID: c2695p74dp +2025-06-18T14:35:15.081Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 500 - Response time: 1363ms - IP: 192.168.81.206 - User: user_1065 - RequestID: fedggsql9kf +2025-06-18T14:35:15.181Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 89ms - Rows affected: 23 - RequestID: n6fmoc085pf +2025-06-18T14:35:15.281Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 235ms - RequestID: b94nbbkq81 +2025-06-18T14:35:15.381Z [INFO] notification-service - Operation: payment_processed - Processing time: 383ms - RequestID: 0h86cauav9jp +2025-06-18T14:35:15.481Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1433ms - IP: 192.168.144.38 - User: user_1057 - RequestID: 48pcov7jd66 +2025-06-18T14:35:15.581Z [DEBUG] user-service - Operation: order_created - Processing time: 53ms - RequestID: malmjsckv6m +2025-06-18T14:35:15.681Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1766ms - IP: 192.168.138.123 - User: user_1045 - RequestID: y1jx870qo6k +2025-06-18T14:35:15.781Z [INFO] order-service - Auth event: login_success - User: user_1014 - IP: 192.168.141.100 - RequestID: 6q4n9i0svy7 +2025-06-18T14:35:15.881Z [DEBUG] notification-service - Database DELETE on products - Execution time: 165ms - Rows affected: 82 - RequestID: 5b4uo3opt8v +2025-06-18T14:35:15.981Z [INFO] auth-service - Auth event: login_success - User: user_1024 - IP: 192.168.144.38 - RequestID: 7i246fl0pcc +2025-06-18T14:35:16.081Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1728ms - IP: 192.168.1.152 - User: user_1061 - RequestID: k01vywin3tc +2025-06-18T14:35:16.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1019 - IP: 192.168.187.199 - RequestID: 8asemnphs3q +2025-06-18T14:35:16.281Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 404 - Response time: 1851ms - IP: 192.168.144.38 - User: user_1004 - RequestID: q9lqo69cuo +2025-06-18T14:35:16.381Z [TRACE] order-service - Operation: cache_hit - Processing time: 431ms - RequestID: y8sgxi38nkd +2025-06-18T14:35:16.481Z [INFO] payment-service - Database SELECT on payments - Execution time: 349ms - Rows affected: 94 - RequestID: iao2l5dss0q +2025-06-18T14:35:16.581Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 453ms - RequestID: eebhdi0bwmr +2025-06-18T14:35:16.681Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 80ms - Rows affected: 36 - RequestID: 4wjb91evdeo +2025-06-18T14:35:16.781Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 372ms - RequestID: u8yar8whryq +2025-06-18T14:35:16.881Z [TRACE] user-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.194.41 - RequestID: l39razsczkc +2025-06-18T14:35:16.981Z [DEBUG] order-service - Operation: notification_queued - Processing time: 642ms - RequestID: no9s7pb6pxk +2025-06-18T14:35:17.081Z [TRACE] notification-service - Database UPDATE on products - Execution time: 490ms - Rows affected: 61 - RequestID: 69wr0yktx1b +2025-06-18T14:35:17.181Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 401 - Response time: 1663ms - IP: 192.168.144.38 - User: user_1068 - RequestID: 44c2y4maiz9 +2025-06-18T14:35:17.281Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 323ms - Rows affected: 58 - RequestID: x57zw108qop +2025-06-18T14:35:17.381Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 111ms - RequestID: zcifpbrvd3 +2025-06-18T14:35:17.481Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 374ms - Rows affected: 19 - RequestID: vplrufiqfh +2025-06-18T14:35:17.581Z [INFO] order-service - Auth event: login_failed - User: user_1059 - IP: 192.168.36.218 - RequestID: r44hooaen +2025-06-18T14:35:17.681Z [INFO] notification-service - POST /api/v1/orders - Status: 500 - Response time: 1727ms - IP: 192.168.167.32 - User: user_1084 - RequestID: 40w9ye8jpg +2025-06-18T14:35:17.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1052 - IP: 192.168.170.215 - RequestID: vdxm8aq769l +2025-06-18T14:35:17.881Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 365ms - RequestID: l1k358ciitk +2025-06-18T14:35:17.981Z [DEBUG] order-service - Auth event: password_change - User: user_1018 - IP: 192.168.68.128 - RequestID: c6dvh7we95h +2025-06-18T14:35:18.081Z [INFO] user-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1335ms - IP: 192.168.240.169 - User: user_1031 - RequestID: yitre6adg2 +2025-06-18T14:35:18.181Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 344ms - RequestID: q3hos5mq3g +2025-06-18T14:35:18.281Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 126ms - RequestID: ehyysyybwna +2025-06-18T14:35:18.381Z [TRACE] user-service - Auth event: logout - User: user_1083 - IP: 192.168.181.225 - RequestID: r24qsff5xn9 +2025-06-18T14:35:18.481Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 828ms - IP: 192.168.240.169 - User: user_1088 - RequestID: t4eingjede +2025-06-18T14:35:18.581Z [INFO] user-service - Operation: inventory_updated - Processing time: 831ms - RequestID: l9fymm3teqg +2025-06-18T14:35:18.681Z [INFO] notification-service - Auth event: logout - User: user_1034 - IP: 192.168.144.38 - RequestID: obdg6l467rk +2025-06-18T14:35:18.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.68.128 - RequestID: s3bz3rclms +2025-06-18T14:35:18.881Z [INFO] payment-service - Auth event: logout - User: user_1088 - IP: 192.168.235.117 - RequestID: 46qdct5ahjs +2025-06-18T14:35:18.981Z [INFO] payment-service - Database INSERT on payments - Execution time: 108ms - Rows affected: 76 - RequestID: 3vmslqt28bb +2025-06-18T14:35:19.081Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 110ms - Rows affected: 2 - RequestID: i69vzaq5e8b +2025-06-18T14:35:19.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 811ms - RequestID: nxnimh2l35e +2025-06-18T14:35:19.281Z [DEBUG] user-service - Database SELECT on payments - Execution time: 136ms - Rows affected: 96 - RequestID: 5r9fua7aa0u +2025-06-18T14:35:19.381Z [INFO] inventory-service - POST /api/v1/users - Status: 502 - Response time: 1292ms - IP: 192.168.227.77 - User: user_1031 - RequestID: mp4v3kurjzf +2025-06-18T14:35:19.481Z [INFO] auth-service - Auth event: login_success - User: user_1087 - IP: 192.168.189.103 - RequestID: othf5wgrfy +2025-06-18T14:35:19.581Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1010 - IP: 192.168.11.60 - RequestID: tn7cbo9zr4l +2025-06-18T14:35:19.681Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 324ms - Rows affected: 86 - RequestID: 25aiusla04l +2025-06-18T14:35:19.781Z [INFO] order-service - Auth event: login_failed - User: user_1032 - IP: 192.168.46.63 - RequestID: 11un9se0wy1 +2025-06-18T14:35:19.881Z [DEBUG] user-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.133.7 - RequestID: eeroc6asidi +2025-06-18T14:35:19.981Z [INFO] notification-service - Operation: inventory_updated - Processing time: 813ms - RequestID: d61h7wiqzdh +2025-06-18T14:35:20.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1006 - IP: 192.168.170.215 - RequestID: 1fu64jt1b1l +2025-06-18T14:35:20.181Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 503 - Response time: 425ms - IP: 192.168.133.7 - User: user_1032 - RequestID: 4d45clfbzlu +2025-06-18T14:35:20.281Z [TRACE] order-service - Operation: order_created - Processing time: 110ms - RequestID: ws2sgh4wlqi +2025-06-18T14:35:20.381Z [INFO] inventory-service - Auth event: logout - User: user_1056 - IP: 192.168.159.94 - RequestID: az186w2533k +2025-06-18T14:35:20.481Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 795ms - RequestID: bsoyd3k2yu9 +2025-06-18T14:35:20.581Z [TRACE] order-service - GET /api/v1/auth/login - Status: 503 - Response time: 1582ms - IP: 192.168.113.218 - User: user_1067 - RequestID: rpwvl6lj4f +2025-06-18T14:35:20.681Z [TRACE] order-service - Auth event: login_success - User: user_1024 - IP: 192.168.11.60 - RequestID: fn2epr33zib +2025-06-18T14:35:20.781Z [INFO] order-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.196.226 - RequestID: 944v0rd3sto +2025-06-18T14:35:20.881Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 84ms - IP: 192.168.133.7 - User: user_1039 - RequestID: xg7io21iwxc +2025-06-18T14:35:20.981Z [INFO] inventory-service - Operation: cache_miss - Processing time: 757ms - RequestID: pr39fzhzni +2025-06-18T14:35:21.081Z [TRACE] notification-service - Auth event: logout - User: user_1093 - IP: 192.168.85.229 - RequestID: 3m9t971kbu +2025-06-18T14:35:21.181Z [TRACE] payment-service - Auth event: login_success - User: user_1047 - IP: 192.168.64.33 - RequestID: cxjloeuvua8 +2025-06-18T14:35:21.281Z [INFO] order-service - DELETE /api/v1/payments - Status: 502 - Response time: 139ms - IP: 192.168.13.72 - User: user_1036 - RequestID: 4zzu8c3g42f +2025-06-18T14:35:21.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 839ms - RequestID: pu7096h627n +2025-06-18T14:35:21.481Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 33ms - Rows affected: 96 - RequestID: ajdkfa08nr8 +2025-06-18T14:35:21.581Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 868ms - RequestID: 4ubgmwqsnv5 +2025-06-18T14:35:21.681Z [TRACE] user-service - Database DELETE on users - Execution time: 136ms - Rows affected: 64 - RequestID: b53xvfydbza +2025-06-18T14:35:21.781Z [INFO] auth-service - DELETE /api/v1/orders - Status: 502 - Response time: 261ms - IP: 192.168.14.77 - User: user_1042 - RequestID: sb340820z2q +2025-06-18T14:35:21.881Z [INFO] payment-service - Database SELECT on payments - Execution time: 396ms - Rows affected: 96 - RequestID: i6g3lfrixal +2025-06-18T14:35:21.981Z [TRACE] notification-service - Auth event: password_change - User: user_1037 - IP: 192.168.33.76 - RequestID: nj7ijad77zm +2025-06-18T14:35:22.081Z [DEBUG] notification-service - Auth event: logout - User: user_1085 - IP: 192.168.170.215 - RequestID: jrfhe5tp0eg +2025-06-18T14:35:22.181Z [DEBUG] payment-service - GET /api/v1/orders - Status: 200 - Response time: 1227ms - IP: 192.168.33.76 - User: user_1036 - RequestID: jfag9riwrqa +2025-06-18T14:35:22.281Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 114ms - IP: 192.168.181.225 - User: user_1067 - RequestID: do9fwk03sz +2025-06-18T14:35:22.381Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 272ms - Rows affected: 51 - RequestID: hnmlk5fhdjv +2025-06-18T14:35:22.481Z [DEBUG] order-service - GET /api/v1/inventory - Status: 400 - Response time: 470ms - IP: 192.168.68.158 - User: user_1012 - RequestID: f0s95oc2aag +2025-06-18T14:35:22.581Z [TRACE] order-service - Operation: inventory_updated - Processing time: 455ms - RequestID: lxdeyg95zeg +2025-06-18T14:35:22.681Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 245ms - Rows affected: 45 - RequestID: c3gnahtljo +2025-06-18T14:35:22.781Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 141ms - Rows affected: 6 - RequestID: 4ltk3mesyf +2025-06-18T14:35:22.881Z [INFO] inventory-service - Operation: email_sent - Processing time: 515ms - RequestID: bqhi3hndxg +2025-06-18T14:35:22.981Z [TRACE] inventory-service - Database DELETE on products - Execution time: 111ms - Rows affected: 37 - RequestID: 8384pdo778b +2025-06-18T14:35:23.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 277ms - RequestID: 2jipm3pn26a +2025-06-18T14:35:23.181Z [INFO] order-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.194.41 - RequestID: 216l2p6ecb9j +2025-06-18T14:35:23.281Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 607ms - RequestID: bj2il2b056m +2025-06-18T14:35:23.381Z [INFO] auth-service - Database DELETE on payments - Execution time: 307ms - Rows affected: 56 - RequestID: mb6o6hhj7bq +2025-06-18T14:35:23.481Z [INFO] payment-service - Auth event: login_failed - User: user_1096 - IP: 192.168.240.169 - RequestID: reizssh5q7e +2025-06-18T14:35:23.581Z [TRACE] order-service - Database DELETE on orders - Execution time: 466ms - Rows affected: 97 - RequestID: edaxke5e0pm +2025-06-18T14:35:23.681Z [DEBUG] auth-service - Database INSERT on users - Execution time: 301ms - Rows affected: 35 - RequestID: 3udmr2tbjax +2025-06-18T14:35:23.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 392ms - RequestID: zd6z7rnkyej +2025-06-18T14:35:23.881Z [TRACE] payment-service - Database DELETE on users - Execution time: 4ms - Rows affected: 8 - RequestID: umtjtutd7bp +2025-06-18T14:35:23.981Z [TRACE] inventory-service - Database SELECT on users - Execution time: 388ms - Rows affected: 56 - RequestID: g1ep0xdkprj +2025-06-18T14:35:24.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.144.38 - RequestID: 0ox35fttstw +2025-06-18T14:35:24.181Z [INFO] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 513ms - IP: 192.168.211.72 - User: user_1058 - RequestID: h0h83wseoj +2025-06-18T14:35:24.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1066 - IP: 192.168.147.171 - RequestID: ksrqfm33lwl +2025-06-18T14:35:24.381Z [TRACE] auth-service - Operation: payment_processed - Processing time: 223ms - RequestID: g43cn1rg99f +2025-06-18T14:35:24.481Z [INFO] order-service - Auth event: login_failed - User: user_1031 - IP: 192.168.79.116 - RequestID: vycp60rl58 +2025-06-18T14:35:24.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.68.158 - RequestID: s5sa8gzqydi +2025-06-18T14:35:24.681Z [INFO] order-service - Database INSERT on payments - Execution time: 460ms - Rows affected: 29 - RequestID: 7zszmhedsp8 +2025-06-18T14:35:24.781Z [INFO] order-service - Auth event: logout - User: user_1066 - IP: 192.168.46.63 - RequestID: 5rf4w4kvdp +2025-06-18T14:35:24.881Z [TRACE] notification-service - Database DELETE on orders - Execution time: 318ms - Rows affected: 99 - RequestID: v6oj81wokq +2025-06-18T14:35:24.981Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 266ms - Rows affected: 19 - RequestID: xo1wljnbpkn +2025-06-18T14:35:25.081Z [TRACE] user-service - Auth event: password_change - User: user_1007 - IP: 192.168.32.38 - RequestID: zp4zesdyaa +2025-06-18T14:35:25.181Z [INFO] user-service - Operation: payment_processed - Processing time: 444ms - RequestID: gqfr908tjy +2025-06-18T14:35:25.281Z [TRACE] auth-service - Auth event: login_failed - User: user_1090 - IP: 192.168.211.72 - RequestID: lfoqnw4352m +2025-06-18T14:35:25.381Z [DEBUG] auth-service - Operation: email_sent - Processing time: 1047ms - RequestID: kxh25nxoqn8 +2025-06-18T14:35:25.481Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 183ms - Rows affected: 54 - RequestID: th0xdtp3una +2025-06-18T14:35:25.581Z [TRACE] payment-service - Database SELECT on orders - Execution time: 342ms - Rows affected: 88 - RequestID: h11dvnv1hrq +2025-06-18T14:35:25.681Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 169ms - Rows affected: 3 - RequestID: zyrigmzuvfe +2025-06-18T14:35:25.781Z [TRACE] auth-service - DELETE /api/v1/users - Status: 403 - Response time: 391ms - IP: 192.168.235.117 - User: user_1076 - RequestID: tr3yvhkqdgo +2025-06-18T14:35:25.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1083 - IP: 192.168.211.72 - RequestID: dyub6uewsog +2025-06-18T14:35:25.981Z [TRACE] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 283ms - IP: 192.168.240.169 - User: user_1066 - RequestID: opb3svzm6v +2025-06-18T14:35:26.081Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 188ms - Rows affected: 83 - RequestID: 27b0dbct4jsi +2025-06-18T14:35:26.181Z [INFO] payment-service - Database UPDATE on orders - Execution time: 38ms - Rows affected: 93 - RequestID: wfvkgf9qzc +2025-06-18T14:35:26.281Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 276ms - Rows affected: 77 - RequestID: rql50pb8crg +2025-06-18T14:35:26.381Z [TRACE] order-service - Auth event: password_change - User: user_1056 - IP: 192.168.141.100 - RequestID: n72qmh0za5c +2025-06-18T14:35:26.481Z [INFO] order-service - Operation: notification_queued - Processing time: 401ms - RequestID: 1fw9eld72z4 +2025-06-18T14:35:26.581Z [TRACE] user-service - Auth event: logout - User: user_1026 - IP: 192.168.174.114 - RequestID: ncbnerc3tc +2025-06-18T14:35:26.681Z [TRACE] order-service - Database UPDATE on payments - Execution time: 460ms - Rows affected: 65 - RequestID: c8jj13y15op +2025-06-18T14:35:26.781Z [INFO] notification-service - Database INSERT on users - Execution time: 54ms - Rows affected: 8 - RequestID: sj4bzbko5di +2025-06-18T14:35:26.881Z [DEBUG] auth-service - POST /api/v1/payments - Status: 503 - Response time: 1325ms - IP: 192.168.181.225 - User: user_1079 - RequestID: vk4jcyyc7za +2025-06-18T14:35:26.981Z [INFO] order-service - Database INSERT on sessions - Execution time: 388ms - Rows affected: 62 - RequestID: goko11vspgt +2025-06-18T14:35:27.081Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1597ms - IP: 192.168.46.63 - User: user_1062 - RequestID: 5ebfqc6dylu +2025-06-18T14:35:27.181Z [TRACE] user-service - Auth event: login_failed - User: user_1062 - IP: 192.168.68.128 - RequestID: lex5x496d6 +2025-06-18T14:35:27.281Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 175ms - RequestID: ympda72nh8l +2025-06-18T14:35:27.381Z [TRACE] payment-service - Operation: email_sent - Processing time: 243ms - RequestID: ewsg0dnewnh +2025-06-18T14:35:27.481Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 534ms - RequestID: nd9ovnordz +2025-06-18T14:35:27.581Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 116ms - Rows affected: 9 - RequestID: 2i4i00mbmyo +2025-06-18T14:35:27.681Z [INFO] user-service - Database DELETE on payments - Execution time: 425ms - Rows affected: 63 - RequestID: i53xkjibi6p +2025-06-18T14:35:27.781Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 412ms - IP: 192.168.194.41 - User: user_1051 - RequestID: cp82blcb46s +2025-06-18T14:35:27.881Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 438ms - Rows affected: 83 - RequestID: 0o2lig6ueyt +2025-06-18T14:35:27.981Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 492ms - IP: 192.168.10.184 - User: user_1008 - RequestID: jkj1r6pzx9q +2025-06-18T14:35:28.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 1028ms - RequestID: 2u71b8i2brh +2025-06-18T14:35:28.181Z [DEBUG] payment-service - Auth event: password_change - User: user_1095 - IP: 192.168.97.87 - RequestID: i1xfo81w9r +2025-06-18T14:35:28.281Z [INFO] user-service - GET /api/v1/inventory - Status: 403 - Response time: 1617ms - IP: 192.168.227.77 - User: user_1039 - RequestID: meanjpqvam +2025-06-18T14:35:28.381Z [TRACE] auth-service - Operation: cache_hit - Processing time: 533ms - RequestID: 6b3zqi7htmd +2025-06-18T14:35:28.481Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 54ms - Rows affected: 55 - RequestID: s1e0m8wreka +2025-06-18T14:35:28.581Z [TRACE] auth-service - POST /api/v1/payments - Status: 502 - Response time: 714ms - IP: 192.168.36.218 - User: user_1067 - RequestID: op146flcqt +2025-06-18T14:35:28.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 108ms - RequestID: o46394euqdd +2025-06-18T14:35:28.781Z [INFO] inventory-service - Database SELECT on users - Execution time: 468ms - Rows affected: 1 - RequestID: qo81mz8452j +2025-06-18T14:35:28.881Z [TRACE] user-service - Database DELETE on products - Execution time: 132ms - Rows affected: 51 - RequestID: mom9wr8h47e +2025-06-18T14:35:28.981Z [TRACE] auth-service - Auth event: login_success - User: user_1038 - IP: 192.168.28.146 - RequestID: vkjhkazpqb +2025-06-18T14:35:29.081Z [INFO] order-service - Database INSERT on products - Execution time: 178ms - Rows affected: 18 - RequestID: d2xijjcatit +2025-06-18T14:35:29.181Z [DEBUG] payment-service - GET /api/v1/payments - Status: 401 - Response time: 1892ms - IP: 192.168.158.144 - User: user_1018 - RequestID: nd70uwt54jk +2025-06-18T14:35:29.281Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 400 - Response time: 220ms - IP: 192.168.53.133 - User: user_1028 - RequestID: nv9rdl2gf2f +2025-06-18T14:35:29.381Z [INFO] order-service - Operation: order_created - Processing time: 808ms - RequestID: 58fz8l6nc7p +2025-06-18T14:35:29.481Z [DEBUG] user-service - Operation: payment_processed - Processing time: 582ms - RequestID: 3mj19d159zp +2025-06-18T14:35:29.581Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 200 - Response time: 1148ms - IP: 192.168.133.7 - User: user_1053 - RequestID: 1knvb16qgf7 +2025-06-18T14:35:29.681Z [INFO] user-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.235.117 - RequestID: ydaaoqjdii +2025-06-18T14:35:29.781Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1960ms - IP: 192.168.240.169 - User: user_1065 - RequestID: 9gf7zr9672i +2025-06-18T14:35:29.881Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 200 - Response time: 481ms - IP: 192.168.53.133 - User: user_1080 - RequestID: 0e8x4yof42xk +2025-06-18T14:35:29.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 676ms - RequestID: rq5xqhdt9we +2025-06-18T14:35:30.081Z [INFO] order-service - PUT /api/v1/inventory - Status: 401 - Response time: 1575ms - IP: 192.168.144.38 - User: user_1093 - RequestID: xttbm09v2po +2025-06-18T14:35:30.181Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 81ms - Rows affected: 47 - RequestID: mwiry2j9xta +2025-06-18T14:35:30.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.170.215 - RequestID: yioz60qz62b +2025-06-18T14:35:30.381Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 413ms - Rows affected: 59 - RequestID: 3mq292ca9v1 +2025-06-18T14:35:30.481Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1754ms - IP: 192.168.13.72 - User: user_1072 - RequestID: u52yvjo4o9b +2025-06-18T14:35:30.581Z [TRACE] user-service - Operation: cache_hit - Processing time: 691ms - RequestID: 9k1e0ly25wd +2025-06-18T14:35:30.681Z [INFO] auth-service - Operation: cache_hit - Processing time: 68ms - RequestID: jfgtc4phqtc +2025-06-18T14:35:30.781Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 212ms - Rows affected: 9 - RequestID: 8ovvlvjgshi +2025-06-18T14:35:30.881Z [TRACE] order-service - GET /api/v1/payments - Status: 401 - Response time: 153ms - IP: 192.168.240.169 - User: user_1069 - RequestID: m7qtijyf74c +2025-06-18T14:35:30.981Z [DEBUG] auth-service - Operation: order_created - Processing time: 926ms - RequestID: o2yradcxbr +2025-06-18T14:35:31.081Z [DEBUG] user-service - Operation: email_sent - Processing time: 434ms - RequestID: ox0y8awkd6k +2025-06-18T14:35:31.181Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 503 - Response time: 844ms - IP: 192.168.227.77 - User: user_1074 - RequestID: u0uzrgwgl9p +2025-06-18T14:35:31.281Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 188ms - Rows affected: 95 - RequestID: 7hbukvsurlv +2025-06-18T14:35:31.381Z [INFO] auth-service - Auth event: password_change - User: user_1036 - IP: 192.168.46.63 - RequestID: j4z0smbid1 +2025-06-18T14:35:31.481Z [DEBUG] order-service - Database DELETE on users - Execution time: 317ms - Rows affected: 4 - RequestID: 3awbzbvhw2j +2025-06-18T14:35:31.581Z [INFO] order-service - Auth event: password_change - User: user_1086 - IP: 192.168.133.7 - RequestID: 4eky4ggphje +2025-06-18T14:35:31.681Z [INFO] order-service - Auth event: login_success - User: user_1053 - IP: 192.168.53.133 - RequestID: bx0fhn6t8ns +2025-06-18T14:35:31.781Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 503 - Response time: 83ms - IP: 192.168.227.233 - User: user_1082 - RequestID: nos6a7l8ayt +2025-06-18T14:35:31.881Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 508ms - IP: 192.168.68.158 - User: user_1018 - RequestID: 4ms8kxsz8qr +2025-06-18T14:35:31.981Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 313ms - RequestID: a20tmk7v89j +2025-06-18T14:35:32.081Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.133.7 - RequestID: v3r3hwlyp8 +2025-06-18T14:35:32.181Z [INFO] inventory-service - GET /api/v1/users - Status: 403 - Response time: 1932ms - IP: 192.168.141.100 - User: user_1001 - RequestID: ev25vt72n6 +2025-06-18T14:35:32.281Z [INFO] payment-service - Operation: payment_processed - Processing time: 973ms - RequestID: fnteywjioj6 +2025-06-18T14:35:32.381Z [DEBUG] order-service - POST /api/v1/users - Status: 401 - Response time: 1994ms - IP: 192.168.187.199 - User: user_1061 - RequestID: q7m7l3jiw2 +2025-06-18T14:35:32.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1044 - IP: 192.168.85.229 - RequestID: 0vnjdj1ufwjn +2025-06-18T14:35:32.581Z [DEBUG] payment-service - POST /api/v1/users - Status: 401 - Response time: 1407ms - IP: 192.168.36.218 - User: user_1099 - RequestID: fiofj5xdp1 +2025-06-18T14:35:32.681Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 498ms - IP: 192.168.10.184 - User: user_1022 - RequestID: 6vd4moc04x +2025-06-18T14:35:32.781Z [TRACE] user-service - Database SELECT on orders - Execution time: 47ms - Rows affected: 36 - RequestID: kckugjqz4z8 +2025-06-18T14:35:32.881Z [TRACE] notification-service - Operation: cache_hit - Processing time: 51ms - RequestID: 2wgnd932v9a +2025-06-18T14:35:32.981Z [INFO] notification-service - Database SELECT on users - Execution time: 68ms - Rows affected: 32 - RequestID: 4fkh73cy5di +2025-06-18T14:35:33.081Z [INFO] payment-service - Auth event: login_success - User: user_1042 - IP: 192.168.97.87 - RequestID: h8jcpqug7yd +2025-06-18T14:35:33.181Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 27ms - Rows affected: 76 - RequestID: 0kbsy76mmho +2025-06-18T14:35:33.281Z [INFO] inventory-service - Auth event: logout - User: user_1033 - IP: 192.168.31.117 - RequestID: qwskbzoxg +2025-06-18T14:35:33.381Z [INFO] user-service - Operation: inventory_updated - Processing time: 103ms - RequestID: 4vzp2nj8mo +2025-06-18T14:35:33.481Z [TRACE] user-service - Database INSERT on orders - Execution time: 373ms - Rows affected: 71 - RequestID: t3lfrc0ykmb +2025-06-18T14:35:33.581Z [INFO] notification-service - Database SELECT on orders - Execution time: 120ms - Rows affected: 17 - RequestID: pyjwwz2nl5g +2025-06-18T14:35:33.681Z [TRACE] auth-service - Operation: email_sent - Processing time: 703ms - RequestID: ha81814l0t8 +2025-06-18T14:35:33.781Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 426ms - Rows affected: 80 - RequestID: iufga4jm5kh +2025-06-18T14:35:33.881Z [DEBUG] user-service - Auth event: login_failed - User: user_1019 - IP: 192.168.44.5 - RequestID: kdg452b111s +2025-06-18T14:35:33.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 424ms - RequestID: xeukzjjvzg +2025-06-18T14:35:34.081Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1613ms - IP: 192.168.28.146 - User: user_1066 - RequestID: 1fnpyj41nqb +2025-06-18T14:35:34.181Z [TRACE] user-service - Database SELECT on payments - Execution time: 154ms - Rows affected: 39 - RequestID: d7axh1al7mb +2025-06-18T14:35:34.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 797ms - RequestID: zvczflhiapc +2025-06-18T14:35:34.381Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1573ms - IP: 192.168.181.225 - User: user_1017 - RequestID: 2ibqt7rgpx2 +2025-06-18T14:35:34.481Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 8ms - Rows affected: 42 - RequestID: c5o4wad92g +2025-06-18T14:35:34.581Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 183ms - Rows affected: 47 - RequestID: 73rtpelr3om +2025-06-18T14:35:34.681Z [INFO] auth-service - Auth event: logout - User: user_1074 - IP: 192.168.81.206 - RequestID: jz61jf2xb5m +2025-06-18T14:35:34.781Z [TRACE] user-service - Operation: email_sent - Processing time: 188ms - RequestID: 5j78rybxw95 +2025-06-18T14:35:34.881Z [DEBUG] notification-service - Operation: order_created - Processing time: 857ms - RequestID: 6uwve6l70s4 +2025-06-18T14:35:34.981Z [INFO] inventory-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.33.76 - RequestID: 02h6jnnxrcyc +2025-06-18T14:35:35.081Z [INFO] user-service - PUT /api/v1/payments - Status: 400 - Response time: 717ms - IP: 192.168.97.87 - User: user_1087 - RequestID: oahd0vdd6xj +2025-06-18T14:35:35.181Z [INFO] notification-service - PATCH /api/v1/users - Status: 503 - Response time: 388ms - IP: 192.168.30.79 - User: user_1007 - RequestID: zmwmnu6aspq +2025-06-18T14:35:35.281Z [TRACE] user-service - POST /api/v1/users - Status: 401 - Response time: 1765ms - IP: 192.168.170.215 - User: user_1042 - RequestID: 03jvxtuxvu83 +2025-06-18T14:35:35.381Z [DEBUG] order-service - Database DELETE on payments - Execution time: 291ms - Rows affected: 63 - RequestID: l2w2eaolc18 +2025-06-18T14:35:35.481Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 45ms - Rows affected: 3 - RequestID: 2ecb65fgizu +2025-06-18T14:35:35.581Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 247ms - RequestID: onftkzpyfjf +2025-06-18T14:35:35.681Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 104ms - Rows affected: 40 - RequestID: xqeznt84ptp +2025-06-18T14:35:35.781Z [TRACE] user-service - Auth event: login_success - User: user_1005 - IP: 192.168.229.123 - RequestID: s4zmy78rugg +2025-06-18T14:35:35.881Z [TRACE] user-service - Operation: cache_miss - Processing time: 146ms - RequestID: 7n6a5xufek +2025-06-18T14:35:35.981Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 397ms - RequestID: kqv7psyy3ir +2025-06-18T14:35:36.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 88ms - RequestID: 4x9ld8ftgar +2025-06-18T14:35:36.181Z [TRACE] payment-service - GET /api/v1/orders - Status: 401 - Response time: 1495ms - IP: 192.168.232.72 - User: user_1043 - RequestID: 1g5e5gbcofz +2025-06-18T14:35:36.281Z [DEBUG] auth-service - Database SELECT on users - Execution time: 307ms - Rows affected: 28 - RequestID: 7lnxh3a6es5 +2025-06-18T14:35:36.381Z [INFO] notification-service - Operation: cache_miss - Processing time: 466ms - RequestID: 5gsxzqhq9yn +2025-06-18T14:35:36.481Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 386ms - Rows affected: 50 - RequestID: ca5s8nhio1q +2025-06-18T14:35:36.581Z [INFO] inventory-service - Operation: email_sent - Processing time: 215ms - RequestID: 4ot4vrjxlag +2025-06-18T14:35:36.681Z [INFO] payment-service - GET /api/v1/auth/login - Status: 200 - Response time: 1881ms - IP: 192.168.187.199 - User: user_1057 - RequestID: rc1nj17bhyg +2025-06-18T14:35:36.781Z [INFO] notification-service - PATCH /api/v1/orders - Status: 200 - Response time: 680ms - IP: 192.168.170.215 - User: user_1021 - RequestID: kdpqr42ku8f +2025-06-18T14:35:36.881Z [TRACE] inventory-service - PUT /api/v1/users - Status: 201 - Response time: 1842ms - IP: 192.168.235.117 - User: user_1089 - RequestID: p6y2b3hlql +2025-06-18T14:35:36.981Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 46ms - Rows affected: 39 - RequestID: 0j069z03nv0k +2025-06-18T14:35:37.081Z [INFO] notification-service - GET /api/v1/payments - Status: 201 - Response time: 459ms - IP: 192.168.181.225 - User: user_1067 - RequestID: 6xfi4c79nrl +2025-06-18T14:35:37.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1068 - IP: 192.168.31.117 - RequestID: 3btcgyyaj1j +2025-06-18T14:35:37.281Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 282ms - IP: 192.168.44.5 - User: user_1004 - RequestID: rlr9271ko8 +2025-06-18T14:35:37.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 664ms - RequestID: i0il218e5q +2025-06-18T14:35:37.481Z [TRACE] user-service - Database SELECT on sessions - Execution time: 475ms - Rows affected: 57 - RequestID: wh7yj79v85s +2025-06-18T14:35:37.581Z [DEBUG] inventory-service - Auth event: login_success - User: user_1080 - IP: 192.168.174.114 - RequestID: sovu44czk8j +2025-06-18T14:35:37.681Z [DEBUG] user-service - Auth event: logout - User: user_1097 - IP: 192.168.242.165 - RequestID: fcicrwc4kf5 +2025-06-18T14:35:37.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1044 - IP: 192.168.144.38 - RequestID: hjxl7cbanya +2025-06-18T14:35:37.881Z [INFO] order-service - Operation: order_created - Processing time: 990ms - RequestID: 1v9q2omwjon +2025-06-18T14:35:37.981Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 694ms - RequestID: kx5v6688mlg +2025-06-18T14:35:38.081Z [INFO] notification-service - Operation: payment_processed - Processing time: 212ms - RequestID: nb9pgq4v67 +2025-06-18T14:35:38.181Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 213ms - Rows affected: 29 - RequestID: vwulo1sdhc +2025-06-18T14:35:38.281Z [INFO] auth-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.85.229 - RequestID: e8bvd4qecwu +2025-06-18T14:35:38.381Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 819ms - RequestID: 5yr66ope23e +2025-06-18T14:35:38.481Z [INFO] notification-service - Database DELETE on products - Execution time: 28ms - Rows affected: 95 - RequestID: 4z9oml7z215 +2025-06-18T14:35:38.581Z [INFO] inventory-service - Operation: notification_queued - Processing time: 901ms - RequestID: jqhx80f3d +2025-06-18T14:35:38.681Z [DEBUG] user-service - Auth event: password_change - User: user_1015 - IP: 192.168.196.226 - RequestID: om1ex6uoz8 +2025-06-18T14:35:38.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.138.123 - RequestID: dhme6d7kpak +2025-06-18T14:35:38.881Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 184ms - Rows affected: 70 - RequestID: yg6onmbvbf +2025-06-18T14:35:38.981Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1357ms - IP: 192.168.14.77 - User: user_1071 - RequestID: 17gm4jw0i4k +2025-06-18T14:35:39.081Z [TRACE] user-service - Auth event: password_change - User: user_1048 - IP: 192.168.13.72 - RequestID: 1ukcgryjhbe +2025-06-18T14:35:39.181Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 252ms - Rows affected: 45 - RequestID: fl7a8lg0e1f +2025-06-18T14:35:39.281Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1827ms - IP: 192.168.64.33 - User: user_1079 - RequestID: 4cydbkgu7zp +2025-06-18T14:35:39.381Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 1041ms - RequestID: ezxhnaix3e +2025-06-18T14:35:39.481Z [TRACE] auth-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.227.233 - RequestID: 87fxrn1pm1s +2025-06-18T14:35:39.581Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 105ms - Rows affected: 21 - RequestID: zq3vhxr7s3 +2025-06-18T14:35:39.681Z [INFO] payment-service - POST /api/v1/payments - Status: 201 - Response time: 782ms - IP: 192.168.133.7 - User: user_1078 - RequestID: fmv4s38drr +2025-06-18T14:35:39.781Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1031 - IP: 192.168.170.215 - RequestID: nebb50ysfj +2025-06-18T14:35:39.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 696ms - RequestID: 6g9nwgqa8t2 +2025-06-18T14:35:39.981Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 777ms - RequestID: 6xalhpptib +2025-06-18T14:35:40.081Z [TRACE] inventory-service - Database INSERT on users - Execution time: 365ms - Rows affected: 4 - RequestID: fab9aiyca5l +2025-06-18T14:35:40.181Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 47ms - Rows affected: 95 - RequestID: 4ddll5xh9wt +2025-06-18T14:35:40.281Z [INFO] notification-service - GET /api/v1/payments - Status: 403 - Response time: 644ms - IP: 192.168.133.7 - User: user_1073 - RequestID: dxhphcerxo +2025-06-18T14:35:40.381Z [INFO] payment-service - GET /api/v1/orders - Status: 200 - Response time: 925ms - IP: 192.168.32.38 - User: user_1071 - RequestID: mr7pdzrtmkm +2025-06-18T14:35:40.481Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 120ms - IP: 192.168.1.152 - User: user_1027 - RequestID: s8wyyyplssa +2025-06-18T14:35:40.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.232.72 - RequestID: hs0z75yaabh +2025-06-18T14:35:40.681Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 463ms - Rows affected: 44 - RequestID: 45ktutbkdgh +2025-06-18T14:35:40.781Z [DEBUG] user-service - Database INSERT on payments - Execution time: 472ms - Rows affected: 85 - RequestID: d0yo7yspwpv +2025-06-18T14:35:40.881Z [INFO] notification-service - Database DELETE on sessions - Execution time: 299ms - Rows affected: 50 - RequestID: 9hdb4mt4zh +2025-06-18T14:35:40.981Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1320ms - IP: 192.168.14.77 - User: user_1093 - RequestID: ild1h56ikv +2025-06-18T14:35:41.081Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1803ms - IP: 192.168.138.123 - User: user_1089 - RequestID: xz995tyjq4j +2025-06-18T14:35:41.181Z [DEBUG] inventory-service - Auth event: password_change - User: user_1008 - IP: 192.168.174.114 - RequestID: b1ib79sptl +2025-06-18T14:35:41.281Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1991ms - IP: 192.168.81.206 - User: user_1070 - RequestID: yzbz3clxihj +2025-06-18T14:35:41.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1021 - IP: 192.168.242.165 - RequestID: 7kha6yhj195 +2025-06-18T14:35:41.481Z [TRACE] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 1898ms - IP: 192.168.13.72 - User: user_1008 - RequestID: weq99znmtt +2025-06-18T14:35:41.581Z [TRACE] inventory-service - GET /api/v1/users - Status: 400 - Response time: 380ms - IP: 192.168.100.240 - User: user_1040 - RequestID: v1zrcvq0svn +2025-06-18T14:35:41.681Z [INFO] auth-service - Database SELECT on sessions - Execution time: 47ms - Rows affected: 88 - RequestID: tm8x5pq538 +2025-06-18T14:35:41.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.232.72 - RequestID: mhu5w1k5suo +2025-06-18T14:35:41.881Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 501ms - RequestID: 84qf0lejnsu +2025-06-18T14:35:41.981Z [INFO] user-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1292ms - IP: 192.168.211.72 - User: user_1089 - RequestID: fay0kczovsv +2025-06-18T14:35:42.081Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 110ms - Rows affected: 45 - RequestID: 9z3wsa85ang +2025-06-18T14:35:42.181Z [INFO] inventory-service - Operation: notification_queued - Processing time: 224ms - RequestID: rks6mz4f3m +2025-06-18T14:35:42.281Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 404 - Response time: 484ms - IP: 192.168.13.72 - User: user_1001 - RequestID: k2iip0d1vsb +2025-06-18T14:35:42.381Z [TRACE] order-service - Operation: webhook_sent - Processing time: 248ms - RequestID: 0ypx6564wc5l +2025-06-18T14:35:42.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 456ms - RequestID: gz58ixoimmv +2025-06-18T14:35:42.581Z [TRACE] notification-service - POST /api/v1/inventory - Status: 503 - Response time: 1220ms - IP: 192.168.232.72 - User: user_1069 - RequestID: jf595o0szl8 +2025-06-18T14:35:42.681Z [INFO] user-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.189.103 - RequestID: 7qxjytfb8q7 +2025-06-18T14:35:42.781Z [TRACE] payment-service - Database SELECT on payments - Execution time: 180ms - Rows affected: 74 - RequestID: cvc7s89lzv +2025-06-18T14:35:42.881Z [TRACE] auth-service - GET /api/v1/inventory - Status: 404 - Response time: 1837ms - IP: 192.168.141.100 - User: user_1013 - RequestID: 1c3ioqa2qmy +2025-06-18T14:35:42.981Z [DEBUG] payment-service - PUT /api/v1/users - Status: 401 - Response time: 513ms - IP: 192.168.189.103 - User: user_1077 - RequestID: 05m18mozdidq +2025-06-18T14:35:43.081Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1510ms - IP: 192.168.10.184 - User: user_1092 - RequestID: 6kwjvuk5wqs +2025-06-18T14:35:43.181Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 404 - Response time: 885ms - IP: 192.168.189.103 - User: user_1087 - RequestID: x9fzg7mfj8j +2025-06-18T14:35:43.281Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 98ms - Rows affected: 77 - RequestID: d9p70fq9m8c +2025-06-18T14:35:43.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.104.37 - RequestID: 2ykcs829efs +2025-06-18T14:35:43.481Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 664ms - RequestID: 7yxsqkm4t0b +2025-06-18T14:35:43.581Z [TRACE] payment-service - Auth event: logout - User: user_1057 - IP: 192.168.144.38 - RequestID: e88ght7fx7f +2025-06-18T14:35:43.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 519ms - RequestID: i08i4egttss +2025-06-18T14:35:43.781Z [TRACE] order-service - Operation: email_sent - Processing time: 329ms - RequestID: 345d7ta1gpv +2025-06-18T14:35:43.881Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 502 - Response time: 824ms - IP: 192.168.181.225 - User: user_1062 - RequestID: f5li8gazrqe +2025-06-18T14:35:43.981Z [TRACE] user-service - Operation: cache_hit - Processing time: 378ms - RequestID: a5jcu72bg26 +2025-06-18T14:35:44.081Z [INFO] auth-service - Auth event: login_success - User: user_1051 - IP: 192.168.113.218 - RequestID: tx5g0en9vv7 +2025-06-18T14:35:44.181Z [TRACE] order-service - POST /api/v1/inventory - Status: 500 - Response time: 296ms - IP: 192.168.174.114 - User: user_1090 - RequestID: dua17vtd97 +2025-06-18T14:35:44.281Z [INFO] notification-service - Database UPDATE on orders - Execution time: 388ms - Rows affected: 17 - RequestID: n644pzxb3ys +2025-06-18T14:35:44.381Z [INFO] order-service - Operation: payment_processed - Processing time: 382ms - RequestID: bhxpu7qvdxi +2025-06-18T14:35:44.481Z [INFO] notification-service - Operation: email_sent - Processing time: 673ms - RequestID: 7etm0b9tx1w +2025-06-18T14:35:44.581Z [INFO] payment-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.28.146 - RequestID: 0sfhdv2nubsd +2025-06-18T14:35:44.681Z [TRACE] auth-service - Operation: email_sent - Processing time: 924ms - RequestID: kgvz0vl1gn +2025-06-18T14:35:44.781Z [INFO] payment-service - Operation: webhook_sent - Processing time: 485ms - RequestID: 9cqv8k6i979 +2025-06-18T14:35:44.881Z [INFO] notification-service - Auth event: login_failed - User: user_1061 - IP: 192.168.159.94 - RequestID: eb20885048s +2025-06-18T14:35:44.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 472ms - RequestID: 6kotgflom5q +2025-06-18T14:35:45.081Z [TRACE] order-service - Operation: order_created - Processing time: 55ms - RequestID: g4u22c6qkr +2025-06-18T14:35:45.181Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 951ms - IP: 192.168.138.123 - User: user_1005 - RequestID: kkavxkipqii +2025-06-18T14:35:45.281Z [TRACE] user-service - Operation: notification_queued - Processing time: 1038ms - RequestID: r0xq8ap6a4j +2025-06-18T14:35:45.381Z [DEBUG] order-service - PUT /api/v1/users - Status: 502 - Response time: 1682ms - IP: 192.168.64.33 - User: user_1005 - RequestID: t6hj665e0x +2025-06-18T14:35:45.481Z [INFO] order-service - Operation: inventory_updated - Processing time: 775ms - RequestID: b5r05ou8b +2025-06-18T14:35:45.581Z [INFO] notification-service - PATCH /api/v1/orders - Status: 503 - Response time: 1398ms - IP: 192.168.14.77 - User: user_1080 - RequestID: zw080o3ci5 +2025-06-18T14:35:45.681Z [TRACE] user-service - POST /api/v1/payments - Status: 401 - Response time: 730ms - IP: 192.168.64.33 - User: user_1078 - RequestID: khz07ni9v8 +2025-06-18T14:35:45.781Z [TRACE] payment-service - Operation: order_created - Processing time: 506ms - RequestID: j1te657inr +2025-06-18T14:35:45.881Z [INFO] notification-service - Operation: cache_miss - Processing time: 858ms - RequestID: t806f5ny3jo +2025-06-18T14:35:45.981Z [TRACE] user-service - Operation: cache_hit - Processing time: 407ms - RequestID: gy683b2mh7d +2025-06-18T14:35:46.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1087 - IP: 192.168.30.79 - RequestID: fgutyhgj8lt +2025-06-18T14:35:46.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.227.77 - RequestID: gf9sq1i7yyh +2025-06-18T14:35:46.281Z [DEBUG] order-service - Database SELECT on orders - Execution time: 131ms - Rows affected: 98 - RequestID: 37c4m0rhaa2 +2025-06-18T14:35:46.381Z [DEBUG] notification-service - Auth event: login_failed - User: user_1081 - IP: 192.168.167.32 - RequestID: pwznrxfrlo +2025-06-18T14:35:46.481Z [INFO] payment-service - Database DELETE on users - Execution time: 90ms - Rows affected: 76 - RequestID: pecf3v113tj +2025-06-18T14:35:46.581Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 461ms - RequestID: 742g0flv59i +2025-06-18T14:35:46.681Z [DEBUG] payment-service - Database DELETE on products - Execution time: 263ms - Rows affected: 2 - RequestID: xvqobswhnma +2025-06-18T14:35:46.781Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 68ms - Rows affected: 51 - RequestID: 2navfn0lc0d +2025-06-18T14:35:46.881Z [DEBUG] inventory-service - Operation: order_created - Processing time: 954ms - RequestID: 80qmyxvnge8 +2025-06-18T14:35:46.981Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 133ms - Rows affected: 78 - RequestID: 009ueoflnkh0x +2025-06-18T14:35:47.081Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 73ms - Rows affected: 23 - RequestID: 1esds7g6a2b +2025-06-18T14:35:47.181Z [TRACE] user-service - DELETE /api/v1/users - Status: 404 - Response time: 1520ms - IP: 192.168.14.77 - User: user_1084 - RequestID: r2ddamx4c2l +2025-06-18T14:35:47.281Z [TRACE] user-service - Operation: webhook_sent - Processing time: 645ms - RequestID: q1zjwb4flf +2025-06-18T14:35:47.381Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 1013ms - RequestID: 0f1ot7d9c5t +2025-06-18T14:35:47.481Z [TRACE] payment-service - Auth event: password_change - User: user_1043 - IP: 192.168.196.226 - RequestID: snxvo2h4x2 +2025-06-18T14:35:47.581Z [DEBUG] order-service - Auth event: login_success - User: user_1007 - IP: 192.168.170.215 - RequestID: 3x4kq44bojp +2025-06-18T14:35:47.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 451ms - RequestID: rd6fuabylhk +2025-06-18T14:35:47.781Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 418ms - Rows affected: 32 - RequestID: 9ke1pcl37qe +2025-06-18T14:35:47.881Z [TRACE] order-service - Operation: cache_hit - Processing time: 561ms - RequestID: ci9k7bx9im4 +2025-06-18T14:35:47.981Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 291ms - Rows affected: 23 - RequestID: ckiht6jcwsa +2025-06-18T14:35:48.081Z [INFO] order-service - Auth event: login_success - User: user_1018 - IP: 192.168.46.63 - RequestID: 36h5iwy15pf +2025-06-18T14:35:48.181Z [INFO] payment-service - Database SELECT on products - Execution time: 18ms - Rows affected: 70 - RequestID: 516p3xdc708 +2025-06-18T14:35:48.281Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 503 - Response time: 744ms - IP: 192.168.100.240 - User: user_1058 - RequestID: z9qiqbl8dp +2025-06-18T14:35:48.381Z [INFO] payment-service - Operation: email_sent - Processing time: 511ms - RequestID: w4ff3qao7w +2025-06-18T14:35:48.481Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 308ms - RequestID: 1cdgxo09up7 +2025-06-18T14:35:48.581Z [INFO] order-service - Operation: cache_miss - Processing time: 102ms - RequestID: 6c5yo8syen8 +2025-06-18T14:35:48.681Z [DEBUG] inventory-service - Operation: order_created - Processing time: 761ms - RequestID: 48nnt1do1h1 +2025-06-18T14:35:48.781Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 503 - Response time: 1701ms - IP: 192.168.229.123 - User: user_1043 - RequestID: ydf0cqtyqti +2025-06-18T14:35:48.881Z [INFO] order-service - Operation: email_sent - Processing time: 729ms - RequestID: empihdaam6 +2025-06-18T14:35:48.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.32.38 - RequestID: pyh915pkcn +2025-06-18T14:35:49.081Z [TRACE] payment-service - Auth event: login_success - User: user_1054 - IP: 192.168.79.141 - RequestID: 7u82v1o3ne +2025-06-18T14:35:49.181Z [INFO] notification-service - DELETE /api/v1/orders - Status: 401 - Response time: 1893ms - IP: 192.168.79.141 - User: user_1003 - RequestID: lcknilwdhhg +2025-06-18T14:35:49.281Z [INFO] inventory-service - Database UPDATE on users - Execution time: 247ms - Rows affected: 12 - RequestID: fep8s6miwlw +2025-06-18T14:35:49.381Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 66ms - Rows affected: 57 - RequestID: jhx87iqaz3c +2025-06-18T14:35:49.481Z [TRACE] payment-service - Auth event: logout - User: user_1021 - IP: 192.168.196.226 - RequestID: 8ihij3hfwps +2025-06-18T14:35:49.581Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 313ms - Rows affected: 1 - RequestID: d0uug11q63 +2025-06-18T14:35:49.681Z [TRACE] payment-service - Database SELECT on users - Execution time: 386ms - Rows affected: 14 - RequestID: w2lht052jj +2025-06-18T14:35:49.781Z [DEBUG] user-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.196.226 - RequestID: 8l1kja95bff +2025-06-18T14:35:49.881Z [DEBUG] auth-service - Operation: order_created - Processing time: 522ms - RequestID: 4ulb2d69ehi +2025-06-18T14:35:49.981Z [INFO] auth-service - GET /api/v1/auth/login - Status: 502 - Response time: 1779ms - IP: 192.168.36.218 - User: user_1083 - RequestID: 79bh0th76ie +2025-06-18T14:35:50.081Z [TRACE] order-service - Operation: inventory_updated - Processing time: 703ms - RequestID: oociidiwnl +2025-06-18T14:35:50.181Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 142ms - IP: 192.168.31.117 - User: user_1077 - RequestID: ol8p25pwa5i +2025-06-18T14:35:50.281Z [INFO] order-service - PUT /api/v1/auth/login - Status: 500 - Response time: 175ms - IP: 192.168.32.38 - User: user_1036 - RequestID: 43lpafhkoo1 +2025-06-18T14:35:50.381Z [DEBUG] user-service - Auth event: logout - User: user_1014 - IP: 192.168.229.123 - RequestID: lo3mdvzv8mr +2025-06-18T14:35:50.481Z [INFO] user-service - POST /api/v1/users - Status: 403 - Response time: 935ms - IP: 192.168.229.123 - User: user_1095 - RequestID: h0kqamsw2m +2025-06-18T14:35:50.581Z [TRACE] notification-service - Operation: notification_queued - Processing time: 620ms - RequestID: drdn7128n2c +2025-06-18T14:35:50.681Z [INFO] user-service - GET /api/v1/orders - Status: 200 - Response time: 1146ms - IP: 192.168.31.117 - User: user_1077 - RequestID: 8xw1e3hfke9 +2025-06-18T14:35:50.781Z [DEBUG] user-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.68.128 - RequestID: p9jhq9zel2 +2025-06-18T14:35:50.881Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1713ms - IP: 192.168.144.38 - User: user_1059 - RequestID: vqdg0pomrg +2025-06-18T14:35:50.981Z [DEBUG] auth-service - Operation: order_created - Processing time: 957ms - RequestID: dpq0ge2rtyh +2025-06-18T14:35:51.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1020 - IP: 192.168.64.33 - RequestID: 0g4s1hmamvl +2025-06-18T14:35:51.181Z [INFO] notification-service - Operation: webhook_sent - Processing time: 865ms - RequestID: 1ieuw3n1vr +2025-06-18T14:35:51.281Z [INFO] order-service - DELETE /api/v1/users - Status: 500 - Response time: 1466ms - IP: 192.168.85.229 - User: user_1034 - RequestID: 5k3kguk661p +2025-06-18T14:35:51.381Z [TRACE] user-service - Operation: webhook_sent - Processing time: 292ms - RequestID: i9vd446jffl +2025-06-18T14:35:51.481Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 442ms - Rows affected: 76 - RequestID: np3q9lav1dp +2025-06-18T14:35:51.581Z [INFO] order-service - Auth event: login_success - User: user_1035 - IP: 192.168.31.117 - RequestID: vi9kvegnm4 +2025-06-18T14:35:51.681Z [TRACE] notification-service - Database UPDATE on products - Execution time: 402ms - Rows affected: 98 - RequestID: e9xxb8tsc6d +2025-06-18T14:35:51.781Z [TRACE] payment-service - Operation: cache_hit - Processing time: 639ms - RequestID: vuirba6l2l +2025-06-18T14:35:51.881Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.104.37 - RequestID: oo100j6e9ua +2025-06-18T14:35:51.981Z [DEBUG] notification-service - Operation: email_sent - Processing time: 814ms - RequestID: 2npkk4ziao2 +2025-06-18T14:35:52.081Z [INFO] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 488ms - IP: 192.168.174.114 - User: user_1030 - RequestID: rknsmaepmm +2025-06-18T14:35:52.181Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1057ms - IP: 192.168.227.233 - User: user_1077 - RequestID: jlt5jz6r7gl +2025-06-18T14:35:52.281Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 168ms - Rows affected: 52 - RequestID: ba4p2xnvome +2025-06-18T14:35:52.381Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 201 - Response time: 873ms - IP: 192.168.81.206 - User: user_1090 - RequestID: e92j0318pvv +2025-06-18T14:35:52.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 442ms - RequestID: fuqsswfu2jk +2025-06-18T14:35:52.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1071 - IP: 192.168.1.152 - RequestID: ipv48a95mb +2025-06-18T14:35:52.681Z [INFO] notification-service - Auth event: logout - User: user_1031 - IP: 192.168.247.134 - RequestID: 4qvvz8mxrc +2025-06-18T14:35:52.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 230ms - RequestID: ehtu4p8qk0l +2025-06-18T14:35:52.881Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1293ms - IP: 192.168.242.165 - User: user_1025 - RequestID: 53kvhcdlmnn +2025-06-18T14:35:52.981Z [DEBUG] order-service - Database INSERT on payments - Execution time: 10ms - Rows affected: 1 - RequestID: 2zim5tgneiv +2025-06-18T14:35:53.081Z [INFO] auth-service - Operation: cache_miss - Processing time: 674ms - RequestID: ys2qs1sw9da +2025-06-18T14:35:53.181Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 146ms - Rows affected: 54 - RequestID: e9y86sqgf7s +2025-06-18T14:35:53.281Z [DEBUG] notification-service - Auth event: login_failed - User: user_1005 - IP: 192.168.240.169 - RequestID: p4t980svvar +2025-06-18T14:35:53.381Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 246ms - Rows affected: 8 - RequestID: kbadrxbc9g +2025-06-18T14:35:53.481Z [TRACE] notification-service - Database SELECT on payments - Execution time: 375ms - Rows affected: 66 - RequestID: jr5mumpx09b +2025-06-18T14:35:53.581Z [INFO] payment-service - Auth event: login_success - User: user_1010 - IP: 192.168.81.206 - RequestID: hazl43lefpc +2025-06-18T14:35:53.681Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 555ms - RequestID: 5d3liamck3b +2025-06-18T14:35:53.781Z [INFO] order-service - Auth event: password_change - User: user_1081 - IP: 192.168.144.38 - RequestID: mbdtc906c2 +2025-06-18T14:35:53.881Z [TRACE] order-service - GET /api/v1/inventory - Status: 500 - Response time: 1809ms - IP: 192.168.32.38 - User: user_1007 - RequestID: 5lvyc5r04q +2025-06-18T14:35:53.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 640ms - RequestID: c5c9um91awu +2025-06-18T14:35:54.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.240.169 - RequestID: pz2zp19p76 +2025-06-18T14:35:54.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 626ms - RequestID: xfm9573l1a +2025-06-18T14:35:54.281Z [TRACE] auth-service - Database SELECT on products - Execution time: 9ms - Rows affected: 69 - RequestID: 0jln0jbnanz +2025-06-18T14:35:54.381Z [INFO] auth-service - Operation: cache_hit - Processing time: 172ms - RequestID: eeatv0hq92e +2025-06-18T14:35:54.481Z [INFO] inventory-service - Auth event: login_success - User: user_1079 - IP: 192.168.141.100 - RequestID: 1f0a981o43t +2025-06-18T14:35:54.581Z [TRACE] order-service - Operation: webhook_sent - Processing time: 848ms - RequestID: 531w154dcfq +2025-06-18T14:35:54.681Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1753ms - IP: 192.168.141.100 - User: user_1031 - RequestID: hsnbq87uj2s +2025-06-18T14:35:54.781Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 250ms - RequestID: cra7djqmeo8 +2025-06-18T14:35:54.881Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 224ms - Rows affected: 8 - RequestID: 6lfm0co2j2q +2025-06-18T14:35:54.981Z [TRACE] notification-service - Operation: payment_processed - Processing time: 248ms - RequestID: 160uou1qsvj +2025-06-18T14:35:55.081Z [INFO] notification-service - Operation: email_sent - Processing time: 169ms - RequestID: 1cc9un8ghhp +2025-06-18T14:35:55.181Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 201 - Response time: 233ms - IP: 192.168.13.72 - User: user_1072 - RequestID: tt87zhr6x2r +2025-06-18T14:35:55.281Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 322ms - Rows affected: 77 - RequestID: dnkhbqv6bu +2025-06-18T14:35:55.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1026 - IP: 192.168.240.169 - RequestID: cowy91g97z +2025-06-18T14:35:55.481Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.211.72 - RequestID: rh4u4tfapg +2025-06-18T14:35:55.581Z [INFO] auth-service - Auth event: password_change - User: user_1078 - IP: 192.168.229.123 - RequestID: maop3mpzxj +2025-06-18T14:35:55.681Z [DEBUG] payment-service - GET /api/v1/users - Status: 500 - Response time: 1522ms - IP: 192.168.189.103 - User: user_1016 - RequestID: xi366kr0j9h +2025-06-18T14:35:55.781Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 500 - Response time: 206ms - IP: 192.168.36.218 - User: user_1078 - RequestID: xmnwaeo97ej +2025-06-18T14:35:55.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1014 - IP: 192.168.187.199 - RequestID: p2ttwxcy9f +2025-06-18T14:35:55.981Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 1013ms - RequestID: jo2v6fq3z4 +2025-06-18T14:35:56.081Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 503 - Response time: 1598ms - IP: 192.168.11.60 - User: user_1071 - RequestID: ns4v4ksrm9 +2025-06-18T14:35:56.181Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 571ms - RequestID: 47d2rh6q4j6 +2025-06-18T14:35:56.281Z [INFO] inventory-service - Auth event: login_success - User: user_1018 - IP: 192.168.113.218 - RequestID: o96clxqbv1n +2025-06-18T14:35:56.381Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 938ms - RequestID: jzuzfgmu3jm +2025-06-18T14:35:56.481Z [TRACE] order-service - PUT /api/v1/users - Status: 500 - Response time: 679ms - IP: 192.168.10.184 - User: user_1010 - RequestID: ance83qrkdr +2025-06-18T14:35:56.581Z [TRACE] payment-service - Operation: order_created - Processing time: 761ms - RequestID: oz2u8seu04n +2025-06-18T14:35:56.681Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1250ms - IP: 192.168.181.225 - User: user_1064 - RequestID: fal1ncaslz +2025-06-18T14:35:56.781Z [DEBUG] user-service - Database UPDATE on users - Execution time: 458ms - Rows affected: 32 - RequestID: whj1pf0crj +2025-06-18T14:35:56.881Z [INFO] notification-service - Operation: cache_miss - Processing time: 721ms - RequestID: mnsibucreb +2025-06-18T14:35:56.981Z [TRACE] auth-service - Database DELETE on products - Execution time: 314ms - Rows affected: 20 - RequestID: 3mikrd5we91 +2025-06-18T14:35:57.081Z [DEBUG] auth-service - Operation: email_sent - Processing time: 267ms - RequestID: m8fgrio65ec +2025-06-18T14:35:57.181Z [DEBUG] auth-service - Auth event: password_change - User: user_1011 - IP: 192.168.79.116 - RequestID: tqn1c19m4fo +2025-06-18T14:35:57.281Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 245ms - RequestID: 51zmx7we5b4 +2025-06-18T14:35:57.381Z [TRACE] order-service - Auth event: logout - User: user_1009 - IP: 192.168.247.134 - RequestID: vudig2g22ho +2025-06-18T14:35:57.481Z [INFO] notification-service - Operation: webhook_sent - Processing time: 580ms - RequestID: fq61xxdlqj +2025-06-18T14:35:57.581Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.81.206 - RequestID: viiujm9728g +2025-06-18T14:35:57.681Z [TRACE] payment-service - Database INSERT on users - Execution time: 345ms - Rows affected: 78 - RequestID: pxkj9sghl88 +2025-06-18T14:35:57.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.232.72 - RequestID: ppvl2u94ymc +2025-06-18T14:35:57.881Z [INFO] user-service - Database SELECT on payments - Execution time: 56ms - Rows affected: 88 - RequestID: 2n6njlq85m6 +2025-06-18T14:35:57.981Z [INFO] notification-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.1.152 - RequestID: bff2pl49sr5 +2025-06-18T14:35:58.081Z [INFO] auth-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.240.169 - RequestID: 1eds253bxw4 +2025-06-18T14:35:58.181Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 502 - Response time: 551ms - IP: 192.168.28.146 - User: user_1068 - RequestID: v3x1w7h3u +2025-06-18T14:35:58.281Z [TRACE] user-service - Database SELECT on sessions - Execution time: 363ms - Rows affected: 80 - RequestID: x93fxars3wm +2025-06-18T14:35:58.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.227.77 - RequestID: f20rul4qgzf +2025-06-18T14:35:58.481Z [TRACE] order-service - Auth event: logout - User: user_1033 - IP: 192.168.68.128 - RequestID: a7rn6iwpwad +2025-06-18T14:35:58.581Z [INFO] notification-service - DELETE /api/v1/orders - Status: 500 - Response time: 1898ms - IP: 192.168.181.225 - User: user_1021 - RequestID: nril6p1r4nl +2025-06-18T14:35:58.681Z [TRACE] notification-service - Operation: order_created - Processing time: 942ms - RequestID: 8x0vhunuo3i +2025-06-18T14:35:58.781Z [INFO] notification-service - Operation: email_sent - Processing time: 267ms - RequestID: 6amm65iec13 +2025-06-18T14:35:58.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1055 - IP: 192.168.79.143 - RequestID: afqnxlcvvva +2025-06-18T14:35:58.981Z [TRACE] user-service - Database INSERT on sessions - Execution time: 338ms - Rows affected: 67 - RequestID: ldizafh7dha +2025-06-18T14:35:59.081Z [TRACE] order-service - Database UPDATE on products - Execution time: 71ms - Rows affected: 55 - RequestID: vbqh7yi5lb9 +2025-06-18T14:35:59.181Z [DEBUG] order-service - Operation: cache_miss - Processing time: 253ms - RequestID: uq1td7ddbo +2025-06-18T14:35:59.281Z [TRACE] payment-service - Database INSERT on products - Execution time: 205ms - Rows affected: 42 - RequestID: sz1swu6vasq +2025-06-18T14:35:59.381Z [INFO] order-service - PUT /api/v1/inventory - Status: 404 - Response time: 157ms - IP: 192.168.32.38 - User: user_1053 - RequestID: 9n8vyph3tlt +2025-06-18T14:35:59.481Z [DEBUG] user-service - Database SELECT on orders - Execution time: 170ms - Rows affected: 95 - RequestID: 7bbxxaqf1b5 +2025-06-18T14:35:59.581Z [TRACE] auth-service - POST /api/v1/payments - Status: 200 - Response time: 485ms - IP: 192.168.100.240 - User: user_1043 - RequestID: 5e07qacyxe4 +2025-06-18T14:35:59.681Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1364ms - IP: 192.168.36.218 - User: user_1073 - RequestID: ypy9mb2dyw +2025-06-18T14:35:59.781Z [INFO] notification-service - Operation: cache_miss - Processing time: 744ms - RequestID: jwb5409k6zc +2025-06-18T14:35:59.881Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 356ms - Rows affected: 63 - RequestID: uimz84gl7m7 +2025-06-18T14:35:59.981Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 218ms - Rows affected: 5 - RequestID: qprz6z1ovqe +2025-06-18T14:36:00.081Z [DEBUG] user-service - Operation: cache_miss - Processing time: 856ms - RequestID: 6lpwq7hn6rp +2025-06-18T14:36:00.181Z [TRACE] user-service - Database SELECT on payments - Execution time: 369ms - Rows affected: 59 - RequestID: a5xw9uynekl +2025-06-18T14:36:00.281Z [INFO] order-service - Operation: cache_miss - Processing time: 710ms - RequestID: 1vj3tl6r73l +2025-06-18T14:36:00.381Z [TRACE] auth-service - Operation: cache_miss - Processing time: 82ms - RequestID: vov5x4k8onh +2025-06-18T14:36:00.481Z [TRACE] payment-service - Auth event: password_change - User: user_1077 - IP: 192.168.158.144 - RequestID: khpnzef2fq8 +2025-06-18T14:36:00.581Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 650ms - RequestID: r3kco8im1la +2025-06-18T14:36:00.681Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 401 - Response time: 1688ms - IP: 192.168.79.141 - User: user_1057 - RequestID: 5kz28411t99 +2025-06-18T14:36:00.781Z [DEBUG] payment-service - Database SELECT on products - Execution time: 157ms - Rows affected: 36 - RequestID: zgx42lc5g8e +2025-06-18T14:36:00.881Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 503 - Response time: 879ms - IP: 192.168.211.72 - User: user_1001 - RequestID: epsaqrkx4za +2025-06-18T14:36:00.981Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 356ms - RequestID: lkial42ofy +2025-06-18T14:36:01.081Z [DEBUG] auth-service - Auth event: logout - User: user_1087 - IP: 192.168.235.117 - RequestID: 4kveokr17so +2025-06-18T14:36:01.181Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 489ms - Rows affected: 40 - RequestID: bp9d6h0yime +2025-06-18T14:36:01.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 601ms - RequestID: ppr7ajsa71 +2025-06-18T14:36:01.381Z [DEBUG] user-service - Database UPDATE on users - Execution time: 418ms - Rows affected: 29 - RequestID: 5kp6hn14gbk +2025-06-18T14:36:01.481Z [DEBUG] notification-service - Auth event: login_failed - User: user_1006 - IP: 192.168.33.76 - RequestID: v6syaxp2qrf +2025-06-18T14:36:01.581Z [TRACE] order-service - Database SELECT on users - Execution time: 490ms - Rows affected: 13 - RequestID: 1zdr79z1fbih +2025-06-18T14:36:01.681Z [INFO] order-service - Operation: order_created - Processing time: 625ms - RequestID: yw9crki1xp +2025-06-18T14:36:01.781Z [INFO] notification-service - Auth event: login_failed - User: user_1083 - IP: 192.168.53.133 - RequestID: bgshb2xgopr +2025-06-18T14:36:01.881Z [INFO] order-service - Database DELETE on orders - Execution time: 156ms - Rows affected: 63 - RequestID: mz2bzh70t3m +2025-06-18T14:36:01.981Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 500 - Response time: 426ms - IP: 192.168.28.146 - User: user_1043 - RequestID: s91wurb7u3f +2025-06-18T14:36:02.081Z [TRACE] order-service - Operation: cache_hit - Processing time: 743ms - RequestID: ow5n1zys4n +2025-06-18T14:36:02.181Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 472ms - Rows affected: 93 - RequestID: tnjjab9to4 +2025-06-18T14:36:02.281Z [TRACE] auth-service - Database SELECT on products - Execution time: 410ms - Rows affected: 59 - RequestID: ebqjewt4qe +2025-06-18T14:36:02.381Z [TRACE] user-service - GET /api/v1/users - Status: 400 - Response time: 470ms - IP: 192.168.194.41 - User: user_1043 - RequestID: 8jdfsx3whjd +2025-06-18T14:36:02.481Z [TRACE] notification-service - GET /api/v1/inventory - Status: 500 - Response time: 268ms - IP: 192.168.1.152 - User: user_1095 - RequestID: 1f1wghoecib +2025-06-18T14:36:02.581Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1738ms - IP: 192.168.144.38 - User: user_1045 - RequestID: 96ytibddj5o +2025-06-18T14:36:02.681Z [INFO] payment-service - Operation: cache_hit - Processing time: 991ms - RequestID: h84f3dq9et7 +2025-06-18T14:36:02.781Z [INFO] auth-service - Database UPDATE on payments - Execution time: 365ms - Rows affected: 91 - RequestID: babgm43dim8 +2025-06-18T14:36:02.881Z [INFO] user-service - Database UPDATE on sessions - Execution time: 402ms - Rows affected: 20 - RequestID: vsjhtpahq8 +2025-06-18T14:36:02.981Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 401 - Response time: 371ms - IP: 192.168.144.38 - User: user_1040 - RequestID: k4alk58ahm8 +2025-06-18T14:36:03.081Z [TRACE] auth-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.33.76 - RequestID: g1l3l08rx7m +2025-06-18T14:36:03.181Z [DEBUG] notification-service - Operation: email_sent - Processing time: 376ms - RequestID: f0wlmpm7xr +2025-06-18T14:36:03.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.81.206 - RequestID: 5o3gb8kq0w4 +2025-06-18T14:36:03.381Z [INFO] user-service - GET /api/v1/users - Status: 403 - Response time: 1653ms - IP: 192.168.100.240 - User: user_1001 - RequestID: t2ukd34jmg +2025-06-18T14:36:03.481Z [TRACE] order-service - POST /api/v1/auth/login - Status: 201 - Response time: 892ms - IP: 192.168.113.218 - User: user_1090 - RequestID: wh6c6ridvsj +2025-06-18T14:36:03.581Z [TRACE] order-service - Auth event: login_failed - User: user_1068 - IP: 192.168.196.226 - RequestID: nxbjz3cb7uk +2025-06-18T14:36:03.681Z [INFO] payment-service - POST /api/v1/inventory - Status: 403 - Response time: 1495ms - IP: 192.168.227.77 - User: user_1045 - RequestID: r5patxf6ws8 +2025-06-18T14:36:03.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 589ms - RequestID: 7hf8tzbb4vs +2025-06-18T14:36:03.881Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 431ms - Rows affected: 53 - RequestID: so7bvamw6z +2025-06-18T14:36:03.981Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 620ms - RequestID: i1nlzyxl3h +2025-06-18T14:36:04.081Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 351ms - Rows affected: 2 - RequestID: f6j4i22jo89 +2025-06-18T14:36:04.181Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 438ms - Rows affected: 0 - RequestID: qkhxyth1ekj +2025-06-18T14:36:04.281Z [INFO] notification-service - Database SELECT on orders - Execution time: 329ms - Rows affected: 90 - RequestID: ya2pour6x6n +2025-06-18T14:36:04.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.81.206 - RequestID: d11xpms3fae +2025-06-18T14:36:04.481Z [INFO] payment-service - Database INSERT on sessions - Execution time: 158ms - Rows affected: 96 - RequestID: iycl63xqqlr +2025-06-18T14:36:04.581Z [INFO] user-service - PUT /api/v1/payments - Status: 403 - Response time: 1074ms - IP: 192.168.1.152 - User: user_1093 - RequestID: oheh9zh85zs +2025-06-18T14:36:04.681Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1833ms - IP: 192.168.174.114 - User: user_1057 - RequestID: hk1mql7uhmc +2025-06-18T14:36:04.781Z [INFO] auth-service - Database SELECT on products - Execution time: 270ms - Rows affected: 64 - RequestID: 7ypd3p16a9e +2025-06-18T14:36:04.881Z [DEBUG] auth-service - Operation: email_sent - Processing time: 657ms - RequestID: nkcam8oa5s +2025-06-18T14:36:04.981Z [INFO] notification-service - Database DELETE on orders - Execution time: 264ms - Rows affected: 31 - RequestID: 1lydvlbybwq +2025-06-18T14:36:05.081Z [TRACE] user-service - Operation: email_sent - Processing time: 302ms - RequestID: niib8lfp7c +2025-06-18T14:36:05.181Z [INFO] notification-service - PUT /api/v1/inventory - Status: 400 - Response time: 1758ms - IP: 192.168.147.171 - User: user_1051 - RequestID: ujdb13rfrec +2025-06-18T14:36:05.281Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 900ms - RequestID: ogna3kkzxam +2025-06-18T14:36:05.381Z [DEBUG] notification-service - POST /api/v1/users - Status: 400 - Response time: 476ms - IP: 192.168.113.218 - User: user_1058 - RequestID: 43k3etjrlrg +2025-06-18T14:36:05.481Z [TRACE] auth-service - Database INSERT on products - Execution time: 355ms - Rows affected: 57 - RequestID: 5o54sfrbnfd +2025-06-18T14:36:05.581Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 313ms - Rows affected: 95 - RequestID: eqr35s9jkf +2025-06-18T14:36:05.681Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 266ms - IP: 192.168.68.128 - User: user_1091 - RequestID: kz4ojx4uph +2025-06-18T14:36:05.781Z [DEBUG] notification-service - Auth event: logout - User: user_1089 - IP: 192.168.181.225 - RequestID: iwyebmrh8di +2025-06-18T14:36:05.881Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 212ms - Rows affected: 58 - RequestID: 54iw7xgqwkh +2025-06-18T14:36:05.981Z [TRACE] payment-service - Auth event: password_change - User: user_1071 - IP: 192.168.227.233 - RequestID: hip9n5mtw6e +2025-06-18T14:36:06.081Z [INFO] inventory-service - Operation: email_sent - Processing time: 133ms - RequestID: olgq2i0at98 +2025-06-18T14:36:06.181Z [TRACE] order-service - POST /api/v1/auth/login - Status: 401 - Response time: 716ms - IP: 192.168.242.165 - User: user_1030 - RequestID: tl6w4tnaa2a +2025-06-18T14:36:06.281Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 219ms - Rows affected: 57 - RequestID: pn9tz62ajm +2025-06-18T14:36:06.381Z [INFO] auth-service - Database SELECT on products - Execution time: 490ms - Rows affected: 74 - RequestID: vl4orw60r1 +2025-06-18T14:36:06.481Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 569ms - IP: 192.168.235.117 - User: user_1016 - RequestID: d3k2trkef6g +2025-06-18T14:36:06.581Z [INFO] payment-service - PUT /api/v1/inventory - Status: 404 - Response time: 360ms - IP: 192.168.68.158 - User: user_1044 - RequestID: 8o9h2nd41nr +2025-06-18T14:36:06.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.30.79 - RequestID: ufs4d7o3qqb +2025-06-18T14:36:06.781Z [TRACE] inventory-service - Operation: order_created - Processing time: 183ms - RequestID: 9o5ukd5dnqb +2025-06-18T14:36:06.881Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1037 - IP: 192.168.81.206 - RequestID: 2sm00y2tu5t +2025-06-18T14:36:06.981Z [TRACE] order-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.170.215 - RequestID: 7codrh83i1b +2025-06-18T14:36:07.081Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 438ms - RequestID: 6juuis30he8 +2025-06-18T14:36:07.181Z [TRACE] payment-service - Operation: notification_queued - Processing time: 676ms - RequestID: wwfi7n97u5 +2025-06-18T14:36:07.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.30.79 - RequestID: yw0xpdks13b +2025-06-18T14:36:07.381Z [DEBUG] notification-service - POST /api/v1/payments - Status: 400 - Response time: 315ms - IP: 192.168.53.133 - User: user_1076 - RequestID: hng39avl6l5 +2025-06-18T14:36:07.481Z [TRACE] order-service - Operation: order_created - Processing time: 62ms - RequestID: y36x6y73pkb +2025-06-18T14:36:07.581Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 404 - Response time: 1986ms - IP: 192.168.227.77 - User: user_1099 - RequestID: qkmulix5b8 +2025-06-18T14:36:07.681Z [INFO] payment-service - Operation: email_sent - Processing time: 100ms - RequestID: fz1mmrwvun +2025-06-18T14:36:07.781Z [INFO] inventory-service - PUT /api/v1/users - Status: 400 - Response time: 1382ms - IP: 192.168.81.206 - User: user_1029 - RequestID: ecexdifriu +2025-06-18T14:36:07.881Z [TRACE] auth-service - Operation: payment_processed - Processing time: 469ms - RequestID: kqi7fw3f1x +2025-06-18T14:36:07.981Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 394ms - Rows affected: 9 - RequestID: icljlzva48 +2025-06-18T14:36:08.081Z [INFO] inventory-service - Operation: order_created - Processing time: 192ms - RequestID: 3l3uwjz4alo +2025-06-18T14:36:08.181Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 201 - Response time: 218ms - IP: 192.168.64.33 - User: user_1086 - RequestID: 46el6uzgpdy +2025-06-18T14:36:08.281Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 693ms - RequestID: to6m9zbvjkd +2025-06-18T14:36:08.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 680ms - RequestID: 2rgwqg58bgh +2025-06-18T14:36:08.481Z [TRACE] payment-service - Operation: payment_processed - Processing time: 729ms - RequestID: 0ohkq74d80k +2025-06-18T14:36:08.581Z [TRACE] notification-service - Operation: order_created - Processing time: 172ms - RequestID: izs1fvk17qa +2025-06-18T14:36:08.681Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 404 - Response time: 1134ms - IP: 192.168.159.94 - User: user_1016 - RequestID: 00phdeqhfve9a +2025-06-18T14:36:08.781Z [DEBUG] order-service - Operation: email_sent - Processing time: 209ms - RequestID: g3wnxi8jqs9 +2025-06-18T14:36:08.881Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.247.134 - RequestID: rzozbwn0q8 +2025-06-18T14:36:08.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 117ms - RequestID: zyzlcp6yxcb +2025-06-18T14:36:09.081Z [TRACE] notification-service - PATCH /api/v1/users - Status: 500 - Response time: 1087ms - IP: 192.168.158.144 - User: user_1054 - RequestID: kgh88tk6c8 +2025-06-18T14:36:09.181Z [INFO] payment-service - PUT /api/v1/orders - Status: 400 - Response time: 756ms - IP: 192.168.181.225 - User: user_1066 - RequestID: m93t5kdoho8 +2025-06-18T14:36:09.281Z [TRACE] notification-service - Operation: cache_hit - Processing time: 172ms - RequestID: 3yamtwkjl3d +2025-06-18T14:36:09.381Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 460ms - RequestID: gy4bflbatye +2025-06-18T14:36:09.481Z [INFO] auth-service - Auth event: login_success - User: user_1006 - IP: 192.168.81.206 - RequestID: k9odk7x7fxp +2025-06-18T14:36:09.581Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 500 - Response time: 1865ms - IP: 192.168.144.38 - User: user_1025 - RequestID: p3yy63c4bba +2025-06-18T14:36:09.681Z [INFO] notification-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.64.33 - RequestID: nf4uuqbod3 +2025-06-18T14:36:09.781Z [TRACE] notification-service - Database INSERT on products - Execution time: 55ms - Rows affected: 58 - RequestID: 5v4muaifl9b +2025-06-18T14:36:09.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 482ms - RequestID: 1vcenfy2gm1 +2025-06-18T14:36:09.981Z [DEBUG] order-service - Auth event: login_success - User: user_1041 - IP: 192.168.194.41 - RequestID: 29niiztxc5m +2025-06-18T14:36:10.081Z [INFO] payment-service - Operation: inventory_updated - Processing time: 384ms - RequestID: zxm718qwzv +2025-06-18T14:36:10.181Z [INFO] notification-service - Auth event: login_success - User: user_1067 - IP: 192.168.235.117 - RequestID: eq4o1q552pf +2025-06-18T14:36:10.281Z [DEBUG] order-service - Operation: cache_hit - Processing time: 235ms - RequestID: bpecx4bkr6 +2025-06-18T14:36:10.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.189.103 - RequestID: o5opec72xaa +2025-06-18T14:36:10.481Z [INFO] order-service - Database UPDATE on sessions - Execution time: 472ms - Rows affected: 39 - RequestID: 4y3ix87l36 +2025-06-18T14:36:10.581Z [DEBUG] user-service - Operation: email_sent - Processing time: 676ms - RequestID: j93fqmvo5a +2025-06-18T14:36:10.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 453ms - RequestID: 4qge96davvx +2025-06-18T14:36:10.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1021 - IP: 192.168.181.225 - RequestID: jhz3piwluoq +2025-06-18T14:36:10.881Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 108ms - Rows affected: 68 - RequestID: gvnyag3ddsn +2025-06-18T14:36:10.981Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 500 - Response time: 1029ms - IP: 192.168.240.169 - User: user_1098 - RequestID: qnbvzebum0s +2025-06-18T14:36:11.081Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 414ms - Rows affected: 52 - RequestID: p6bceqjbx7 +2025-06-18T14:36:11.181Z [TRACE] order-service - Database UPDATE on orders - Execution time: 62ms - Rows affected: 66 - RequestID: pnx21i3nsf +2025-06-18T14:36:11.281Z [TRACE] user-service - Operation: order_created - Processing time: 545ms - RequestID: gmxy7c300cv +2025-06-18T14:36:11.381Z [TRACE] inventory-service - Auth event: logout - User: user_1068 - IP: 192.168.44.5 - RequestID: 3z8nf1f4r5r +2025-06-18T14:36:11.481Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 300ms - Rows affected: 96 - RequestID: ky7o1x4tofh +2025-06-18T14:36:11.581Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 201 - Response time: 676ms - IP: 192.168.100.240 - User: user_1080 - RequestID: ttxii4mwu5c +2025-06-18T14:36:11.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.81.206 - RequestID: 9buj9zjnqs6 +2025-06-18T14:36:11.781Z [INFO] user-service - PUT /api/v1/payments - Status: 500 - Response time: 1955ms - IP: 192.168.189.103 - User: user_1065 - RequestID: 0ro23fq9amx +2025-06-18T14:36:11.881Z [DEBUG] auth-service - Operation: order_created - Processing time: 511ms - RequestID: wr4gve2jrh9 +2025-06-18T14:36:11.981Z [TRACE] user-service - Database SELECT on sessions - Execution time: 108ms - Rows affected: 99 - RequestID: vo9skzk7sfh +2025-06-18T14:36:12.081Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 445ms - RequestID: p2hrcj2web +2025-06-18T14:36:12.181Z [INFO] payment-service - Operation: payment_processed - Processing time: 290ms - RequestID: 8nacf2gtlpo +2025-06-18T14:36:12.281Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1878ms - IP: 192.168.64.33 - User: user_1037 - RequestID: k15ytt8oevr +2025-06-18T14:36:12.381Z [DEBUG] order-service - Operation: cache_hit - Processing time: 943ms - RequestID: ktpoexh38h +2025-06-18T14:36:12.481Z [TRACE] user-service - DELETE /api/v1/payments - Status: 403 - Response time: 397ms - IP: 192.168.64.33 - User: user_1029 - RequestID: v1gyor1i7b +2025-06-18T14:36:12.581Z [INFO] notification-service - Operation: payment_processed - Processing time: 536ms - RequestID: 5tetvrgc4n +2025-06-18T14:36:12.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 124ms - RequestID: 9l60n7nc41f +2025-06-18T14:36:12.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1029 - IP: 192.168.167.32 - RequestID: qwtn94awvn +2025-06-18T14:36:12.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1002 - IP: 192.168.33.76 - RequestID: vzpnrpcmofo +2025-06-18T14:36:12.981Z [DEBUG] user-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.144.38 - RequestID: 9sgboncl2e +2025-06-18T14:36:13.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.133.7 - RequestID: vqfptg65y2 +2025-06-18T14:36:13.181Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 403 - Response time: 393ms - IP: 192.168.104.37 - User: user_1089 - RequestID: 9vmi3zjynxt +2025-06-18T14:36:13.281Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 201 - Response time: 536ms - IP: 192.168.144.38 - User: user_1076 - RequestID: 6s96ru5xyu3 +2025-06-18T14:36:13.381Z [INFO] order-service - POST /api/v1/payments - Status: 502 - Response time: 672ms - IP: 192.168.97.87 - User: user_1031 - RequestID: j7hb1yi3g5 +2025-06-18T14:36:13.481Z [INFO] notification-service - Auth event: login_failed - User: user_1090 - IP: 192.168.10.184 - RequestID: ir3kvif55yj +2025-06-18T14:36:13.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 808ms - RequestID: sow5habw7j +2025-06-18T14:36:13.681Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 324ms - Rows affected: 5 - RequestID: ptat97xbtb +2025-06-18T14:36:13.781Z [INFO] inventory-service - Auth event: logout - User: user_1005 - IP: 192.168.227.77 - RequestID: 8xrqo4eh4r3 +2025-06-18T14:36:13.881Z [INFO] order-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1986ms - IP: 192.168.167.32 - User: user_1061 - RequestID: cchh41xdgze +2025-06-18T14:36:13.981Z [TRACE] user-service - Operation: inventory_updated - Processing time: 1020ms - RequestID: 6519g073322 +2025-06-18T14:36:14.081Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.32.38 - RequestID: ofcqsj09jp +2025-06-18T14:36:14.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 592ms - RequestID: gd1rsgljuln +2025-06-18T14:36:14.281Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 500 - Response time: 171ms - IP: 192.168.68.128 - User: user_1029 - RequestID: n7xat9llh4s +2025-06-18T14:36:14.381Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 186ms - Rows affected: 80 - RequestID: a62n75cbezr +2025-06-18T14:36:14.481Z [TRACE] payment-service - Operation: order_created - Processing time: 414ms - RequestID: 85rnpqed6n6 +2025-06-18T14:36:14.581Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1200ms - IP: 192.168.211.72 - User: user_1055 - RequestID: zxpfh788y8 +2025-06-18T14:36:14.681Z [TRACE] inventory-service - Auth event: password_change - User: user_1022 - IP: 192.168.133.7 - RequestID: lhfnqyst19j +2025-06-18T14:36:14.781Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 323ms - Rows affected: 22 - RequestID: 5bgu8z89s5 +2025-06-18T14:36:14.881Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 140ms - Rows affected: 75 - RequestID: s2tpkg22vx +2025-06-18T14:36:14.981Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 236ms - Rows affected: 71 - RequestID: r724f4jzc4 +2025-06-18T14:36:15.081Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.32.38 - RequestID: 2gkojlsnb45 +2025-06-18T14:36:15.181Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 915ms - RequestID: o92zva4k7d +2025-06-18T14:36:15.281Z [DEBUG] order-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.194.41 - RequestID: a9j7wmscao +2025-06-18T14:36:15.381Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 291ms - Rows affected: 94 - RequestID: 6lk4yizjeli +2025-06-18T14:36:15.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1008 - IP: 192.168.13.72 - RequestID: 6qcjopnjna +2025-06-18T14:36:15.581Z [TRACE] notification-service - Operation: payment_processed - Processing time: 300ms - RequestID: cyro6dvd7v8 +2025-06-18T14:36:15.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 799ms - RequestID: 3qoonabz60b +2025-06-18T14:36:15.781Z [INFO] auth-service - Database SELECT on payments - Execution time: 302ms - Rows affected: 91 - RequestID: elmrt32cpb +2025-06-18T14:36:15.881Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 500 - Response time: 599ms - IP: 192.168.229.123 - User: user_1088 - RequestID: 70g2v1fk8gh +2025-06-18T14:36:15.981Z [INFO] inventory-service - Database DELETE on payments - Execution time: 323ms - Rows affected: 86 - RequestID: oedz81e86mj +2025-06-18T14:36:16.081Z [DEBUG] user-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.30.79 - RequestID: zp99239q0pg +2025-06-18T14:36:16.181Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 8ms - Rows affected: 12 - RequestID: vcqkfmc3f19 +2025-06-18T14:36:16.281Z [TRACE] notification-service - Auth event: logout - User: user_1062 - IP: 192.168.133.7 - RequestID: rctggtu45h +2025-06-18T14:36:16.381Z [INFO] notification-service - Database UPDATE on orders - Execution time: 8ms - Rows affected: 85 - RequestID: oqqagwdgoj +2025-06-18T14:36:16.481Z [INFO] notification-service - Auth event: logout - User: user_1062 - IP: 192.168.44.5 - RequestID: bvn3vydf4w +2025-06-18T14:36:16.581Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 400 - Response time: 451ms - IP: 192.168.100.240 - User: user_1054 - RequestID: r6rjadmlvnn +2025-06-18T14:36:16.681Z [TRACE] auth-service - Database INSERT on payments - Execution time: 275ms - Rows affected: 16 - RequestID: 3f2798q9dba +2025-06-18T14:36:16.781Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.32.38 - RequestID: ha9umdxoqur +2025-06-18T14:36:16.881Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 403ms - Rows affected: 25 - RequestID: vthx6b8j0k +2025-06-18T14:36:16.981Z [INFO] inventory-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.133.7 - RequestID: fqyb4g0i3uc +2025-06-18T14:36:17.081Z [TRACE] user-service - PUT /api/v1/inventory - Status: 201 - Response time: 1783ms - IP: 192.168.1.152 - User: user_1090 - RequestID: bfl3j1yxw0t +2025-06-18T14:36:17.181Z [DEBUG] payment-service - GET /api/v1/orders - Status: 400 - Response time: 806ms - IP: 192.168.227.77 - User: user_1052 - RequestID: cd8tjgs0jwg +2025-06-18T14:36:17.281Z [DEBUG] user-service - PUT /api/v1/payments - Status: 502 - Response time: 2004ms - IP: 192.168.79.116 - User: user_1054 - RequestID: vspj29x3iz +2025-06-18T14:36:17.381Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 500 - Response time: 1852ms - IP: 192.168.32.38 - User: user_1029 - RequestID: wzxho4kja7g +2025-06-18T14:36:17.481Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 500 - Response time: 909ms - IP: 192.168.196.226 - User: user_1071 - RequestID: dqrddrh7c1f +2025-06-18T14:36:17.581Z [TRACE] inventory-service - Operation: order_created - Processing time: 108ms - RequestID: v1anyvvj8t +2025-06-18T14:36:17.681Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 200 - Response time: 425ms - IP: 192.168.64.33 - User: user_1034 - RequestID: 954dd5u8xft +2025-06-18T14:36:17.781Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 403 - Response time: 344ms - IP: 192.168.141.100 - User: user_1015 - RequestID: oik4wgce3h +2025-06-18T14:36:17.881Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 371ms - Rows affected: 98 - RequestID: vc7d1shz2zb +2025-06-18T14:36:17.981Z [INFO] inventory-service - PUT /api/v1/users - Status: 400 - Response time: 945ms - IP: 192.168.81.206 - User: user_1002 - RequestID: kfdos6ari2 +2025-06-18T14:36:18.081Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1609ms - IP: 192.168.133.7 - User: user_1003 - RequestID: fgpekmtxpas +2025-06-18T14:36:18.181Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 191ms - IP: 192.168.28.146 - User: user_1072 - RequestID: ood84pnab4b +2025-06-18T14:36:18.281Z [INFO] inventory-service - Auth event: logout - User: user_1031 - IP: 192.168.242.165 - RequestID: 07lqezrpk0nl +2025-06-18T14:36:18.381Z [DEBUG] user-service - DELETE /api/v1/users - Status: 502 - Response time: 945ms - IP: 192.168.240.169 - User: user_1056 - RequestID: zo8vtxqkhi +2025-06-18T14:36:18.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 1044ms - RequestID: 7j32n4donhb +2025-06-18T14:36:18.581Z [TRACE] notification-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.11.60 - RequestID: z7o6l713ft +2025-06-18T14:36:18.681Z [DEBUG] user-service - Operation: notification_queued - Processing time: 603ms - RequestID: ug4a09nmdt +2025-06-18T14:36:18.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1011 - IP: 192.168.174.114 - RequestID: 0wnwbkohh33 +2025-06-18T14:36:18.881Z [TRACE] auth-service - Operation: notification_queued - Processing time: 735ms - RequestID: xgjpqxd8zp +2025-06-18T14:36:18.981Z [INFO] inventory-service - Database DELETE on users - Execution time: 285ms - Rows affected: 9 - RequestID: krfnd6tme9 +2025-06-18T14:36:19.081Z [INFO] order-service - Operation: cache_miss - Processing time: 380ms - RequestID: xdsw4wo5bnc +2025-06-18T14:36:19.181Z [TRACE] inventory-service - Operation: order_created - Processing time: 655ms - RequestID: 1vntq5tys3e +2025-06-18T14:36:19.281Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 205ms - Rows affected: 14 - RequestID: hefqi8qqs6a +2025-06-18T14:36:19.381Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 291ms - Rows affected: 51 - RequestID: gs0nkogjodd +2025-06-18T14:36:19.481Z [INFO] notification-service - Auth event: logout - User: user_1016 - IP: 192.168.11.60 - RequestID: wbeh1tfun5 +2025-06-18T14:36:19.581Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 421ms - Rows affected: 71 - RequestID: l3d8lu85bka +2025-06-18T14:36:19.681Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 350ms - Rows affected: 18 - RequestID: zz57xj2kqe +2025-06-18T14:36:19.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.174.114 - RequestID: i5o58jexubk +2025-06-18T14:36:19.881Z [TRACE] order-service - PUT /api/v1/orders - Status: 502 - Response time: 897ms - IP: 192.168.167.32 - User: user_1083 - RequestID: dmw27mb9nr6 +2025-06-18T14:36:19.981Z [TRACE] notification-service - Database SELECT on payments - Execution time: 269ms - Rows affected: 2 - RequestID: 95etbnrboep +2025-06-18T14:36:20.081Z [INFO] inventory-service - Auth event: logout - User: user_1062 - IP: 192.168.196.226 - RequestID: zpwyqvvrdz +2025-06-18T14:36:20.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.227.233 - RequestID: 081f4m2g3p9v +2025-06-18T14:36:20.281Z [INFO] user-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.85.229 - RequestID: k1s7k7omtqs +2025-06-18T14:36:20.381Z [INFO] order-service - Database INSERT on users - Execution time: 220ms - Rows affected: 0 - RequestID: 7h0cq14ux9j +2025-06-18T14:36:20.481Z [DEBUG] auth-service - Database INSERT on products - Execution time: 224ms - Rows affected: 84 - RequestID: 0simd0jc23pr +2025-06-18T14:36:20.581Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1594ms - IP: 192.168.227.77 - User: user_1033 - RequestID: kpcy0g9vyva +2025-06-18T14:36:20.681Z [TRACE] auth-service - Auth event: password_change - User: user_1016 - IP: 192.168.53.133 - RequestID: 1ossguwpyyn +2025-06-18T14:36:20.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.64.33 - RequestID: acbid4if51 +2025-06-18T14:36:20.881Z [INFO] user-service - Database INSERT on orders - Execution time: 330ms - Rows affected: 77 - RequestID: m5e1jrnsced +2025-06-18T14:36:20.981Z [TRACE] auth-service - Database SELECT on orders - Execution time: 349ms - Rows affected: 91 - RequestID: jmtpv4c2dm +2025-06-18T14:36:21.081Z [DEBUG] payment-service - Database DELETE on users - Execution time: 478ms - Rows affected: 98 - RequestID: to1igi5plwq +2025-06-18T14:36:21.181Z [INFO] auth-service - Database INSERT on payments - Execution time: 174ms - Rows affected: 16 - RequestID: l7psompliw +2025-06-18T14:36:21.281Z [DEBUG] user-service - Operation: cache_miss - Processing time: 275ms - RequestID: t42pbdyzt7i +2025-06-18T14:36:21.381Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 401 - Response time: 633ms - IP: 192.168.158.144 - User: user_1079 - RequestID: 4cch5mqeao9 +2025-06-18T14:36:21.481Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 837ms - RequestID: rphcn4hv7qf +2025-06-18T14:36:21.581Z [TRACE] auth-service - GET /api/v1/payments - Status: 400 - Response time: 834ms - IP: 192.168.68.128 - User: user_1014 - RequestID: c3jjy8jf5a8 +2025-06-18T14:36:21.681Z [INFO] order-service - Database DELETE on orders - Execution time: 103ms - Rows affected: 60 - RequestID: 39fqsbv96mn +2025-06-18T14:36:21.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 453ms - RequestID: 5q9xphf9s9n +2025-06-18T14:36:21.881Z [TRACE] order-service - Auth event: login_failed - User: user_1005 - IP: 192.168.147.171 - RequestID: yc3gk6e2x1h +2025-06-18T14:36:21.981Z [INFO] auth-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.68.158 - RequestID: iilaqkpg9kr +2025-06-18T14:36:22.081Z [INFO] payment-service - Operation: cache_hit - Processing time: 75ms - RequestID: egfgssjrnl +2025-06-18T14:36:22.181Z [INFO] user-service - PATCH /api/v1/payments - Status: 400 - Response time: 1301ms - IP: 192.168.158.144 - User: user_1092 - RequestID: ph91ihouax +2025-06-18T14:36:22.281Z [TRACE] order-service - POST /api/v1/payments - Status: 403 - Response time: 1641ms - IP: 192.168.196.226 - User: user_1059 - RequestID: ka8cz15jf6j +2025-06-18T14:36:22.381Z [DEBUG] auth-service - GET /api/v1/users - Status: 401 - Response time: 1886ms - IP: 192.168.113.218 - User: user_1048 - RequestID: p6e5ohpvb18 +2025-06-18T14:36:22.481Z [INFO] notification-service - Auth event: password_change - User: user_1068 - IP: 192.168.229.123 - RequestID: gpr2js1k2cm +2025-06-18T14:36:22.581Z [TRACE] user-service - Operation: notification_queued - Processing time: 405ms - RequestID: 7jfqw77t3vk +2025-06-18T14:36:22.681Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 871ms - RequestID: 2pgwtp608c +2025-06-18T14:36:22.781Z [TRACE] user-service - DELETE /api/v1/users - Status: 201 - Response time: 1149ms - IP: 192.168.85.229 - User: user_1098 - RequestID: x7v5mt155k +2025-06-18T14:36:22.881Z [TRACE] user-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.31.117 - RequestID: 4atgoxow9di +2025-06-18T14:36:22.981Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1864ms - IP: 192.168.104.37 - User: user_1073 - RequestID: p4droel3sq +2025-06-18T14:36:23.081Z [INFO] payment-service - Operation: inventory_updated - Processing time: 402ms - RequestID: sngmfr1qgeq +2025-06-18T14:36:23.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.232.72 - RequestID: r7p5ycc9xi +2025-06-18T14:36:23.281Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 970ms - RequestID: sxt0qf49rqj +2025-06-18T14:36:23.381Z [TRACE] order-service - Operation: order_created - Processing time: 352ms - RequestID: 9obfu9r0zu5 +2025-06-18T14:36:23.481Z [DEBUG] order-service - POST /api/v1/inventory - Status: 404 - Response time: 975ms - IP: 192.168.235.117 - User: user_1083 - RequestID: ysvgdthvtwt +2025-06-18T14:36:23.581Z [TRACE] auth-service - Operation: cache_miss - Processing time: 993ms - RequestID: 9xcvh7iuw3m +2025-06-18T14:36:23.681Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 91ms - IP: 192.168.242.165 - User: user_1065 - RequestID: hyrobr4h76 +2025-06-18T14:36:23.781Z [DEBUG] user-service - Operation: payment_processed - Processing time: 1027ms - RequestID: t7qiq71dfo +2025-06-18T14:36:23.881Z [INFO] user-service - Operation: order_created - Processing time: 634ms - RequestID: riiqks66lwj +2025-06-18T14:36:23.981Z [INFO] payment-service - Operation: order_created - Processing time: 674ms - RequestID: u4cblx1xm1 +2025-06-18T14:36:24.081Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 538ms - RequestID: 6whjrxvrxmw +2025-06-18T14:36:24.181Z [INFO] auth-service - Auth event: logout - User: user_1062 - IP: 192.168.138.123 - RequestID: yzte0vtyook +2025-06-18T14:36:24.281Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1236ms - IP: 192.168.36.218 - User: user_1008 - RequestID: 1ulobsqs42g +2025-06-18T14:36:24.381Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 267ms - IP: 192.168.247.134 - User: user_1023 - RequestID: doj84zwgci +2025-06-18T14:36:24.481Z [INFO] notification-service - Database INSERT on orders - Execution time: 414ms - Rows affected: 63 - RequestID: byo8954h9aa +2025-06-18T14:36:24.581Z [INFO] user-service - Database UPDATE on orders - Execution time: 291ms - Rows affected: 21 - RequestID: z9145vjug3 +2025-06-18T14:36:24.681Z [INFO] payment-service - Auth event: login_failed - User: user_1086 - IP: 192.168.235.117 - RequestID: 5dbdn1heoi +2025-06-18T14:36:24.781Z [TRACE] auth-service - Operation: email_sent - Processing time: 407ms - RequestID: wprpfcttv9k +2025-06-18T14:36:24.881Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 435ms - IP: 192.168.138.123 - User: user_1042 - RequestID: n6ixty976n +2025-06-18T14:36:24.981Z [TRACE] user-service - Auth event: logout - User: user_1094 - IP: 192.168.30.79 - RequestID: ow4rcn0hr3 +2025-06-18T14:36:25.081Z [INFO] notification-service - Database UPDATE on payments - Execution time: 369ms - Rows affected: 69 - RequestID: gp82dflhkh +2025-06-18T14:36:25.181Z [DEBUG] user-service - Auth event: password_change - User: user_1017 - IP: 192.168.14.77 - RequestID: s460abd3i1b +2025-06-18T14:36:25.281Z [DEBUG] notification-service - POST /api/v1/payments - Status: 404 - Response time: 1034ms - IP: 192.168.44.5 - User: user_1023 - RequestID: 492x0y2nxap +2025-06-18T14:36:25.381Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 443ms - Rows affected: 72 - RequestID: 3qfzi85lovh +2025-06-18T14:36:25.481Z [TRACE] auth-service - Database DELETE on payments - Execution time: 225ms - Rows affected: 76 - RequestID: z020h1vjs09 +2025-06-18T14:36:25.581Z [DEBUG] auth-service - Database DELETE on products - Execution time: 255ms - Rows affected: 33 - RequestID: v0g02p5g4js +2025-06-18T14:36:25.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 726ms - RequestID: rq28pqq826m +2025-06-18T14:36:25.781Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 90ms - Rows affected: 68 - RequestID: ckb36suzg8m +2025-06-18T14:36:25.881Z [INFO] user-service - Auth event: login_success - User: user_1010 - IP: 192.168.81.206 - RequestID: 8ltfwk6pifj +2025-06-18T14:36:25.981Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 38ms - Rows affected: 94 - RequestID: gvai8krk4n +2025-06-18T14:36:26.081Z [INFO] payment-service - Database INSERT on payments - Execution time: 48ms - Rows affected: 53 - RequestID: bj96kd7yiak +2025-06-18T14:36:26.181Z [INFO] inventory-service - Database UPDATE on users - Execution time: 298ms - Rows affected: 8 - RequestID: 8nxi496owt +2025-06-18T14:36:26.281Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 442ms - Rows affected: 90 - RequestID: yl3r6w4y2v +2025-06-18T14:36:26.381Z [INFO] order-service - Database INSERT on users - Execution time: 424ms - Rows affected: 31 - RequestID: 6velcaf3nwn +2025-06-18T14:36:26.481Z [INFO] auth-service - Operation: payment_processed - Processing time: 722ms - RequestID: vjtl90rzdkq +2025-06-18T14:36:26.581Z [TRACE] payment-service - Operation: order_created - Processing time: 458ms - RequestID: wppd40va19r +2025-06-18T14:36:26.681Z [DEBUG] order-service - Database INSERT on users - Execution time: 141ms - Rows affected: 25 - RequestID: 9aauxn9vlk7 +2025-06-18T14:36:26.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 169ms - RequestID: v1o4uzazkwf +2025-06-18T14:36:26.881Z [INFO] user-service - Database SELECT on products - Execution time: 496ms - Rows affected: 90 - RequestID: uytypbwyq8 +2025-06-18T14:36:26.981Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 267ms - Rows affected: 77 - RequestID: jn62z1vdd3 +2025-06-18T14:36:27.081Z [DEBUG] order-service - Operation: order_created - Processing time: 732ms - RequestID: h3f5p0wv1ui +2025-06-18T14:36:27.181Z [INFO] user-service - Database UPDATE on sessions - Execution time: 154ms - Rows affected: 46 - RequestID: ktnwr99srp +2025-06-18T14:36:27.281Z [TRACE] notification-service - Operation: email_sent - Processing time: 511ms - RequestID: xchr697eytq +2025-06-18T14:36:27.381Z [TRACE] payment-service - Operation: cache_hit - Processing time: 930ms - RequestID: 57s7fq3k4wf +2025-06-18T14:36:27.481Z [INFO] user-service - POST /api/v1/users - Status: 200 - Response time: 1354ms - IP: 192.168.211.72 - User: user_1099 - RequestID: 73vt8ry3wy +2025-06-18T14:36:27.581Z [DEBUG] order-service - DELETE /api/v1/users - Status: 201 - Response time: 593ms - IP: 192.168.64.33 - User: user_1019 - RequestID: fh1j4fjc08n +2025-06-18T14:36:27.681Z [INFO] user-service - Database SELECT on products - Execution time: 242ms - Rows affected: 2 - RequestID: jejnzuhzk9 +2025-06-18T14:36:27.781Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 259ms - RequestID: dolpllxdmwp +2025-06-18T14:36:27.881Z [INFO] notification-service - PATCH /api/v1/orders - Status: 502 - Response time: 905ms - IP: 192.168.97.87 - User: user_1055 - RequestID: 0is20q2gc65 +2025-06-18T14:36:27.981Z [DEBUG] order-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.79.143 - RequestID: 9p1z66g8uef +2025-06-18T14:36:28.081Z [TRACE] auth-service - Database UPDATE on users - Execution time: 206ms - Rows affected: 55 - RequestID: zacg56dkj5e +2025-06-18T14:36:28.181Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 495ms - Rows affected: 14 - RequestID: 8msit9lqzon +2025-06-18T14:36:28.281Z [TRACE] inventory-service - POST /api/v1/users - Status: 503 - Response time: 1883ms - IP: 192.168.46.63 - User: user_1010 - RequestID: lprt3qmb9rm +2025-06-18T14:36:28.381Z [DEBUG] notification-service - Auth event: logout - User: user_1041 - IP: 192.168.44.5 - RequestID: w052055o61n +2025-06-18T14:36:28.481Z [INFO] order-service - Operation: inventory_updated - Processing time: 778ms - RequestID: sxge711ctg7 +2025-06-18T14:36:28.581Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 1049ms - RequestID: sw846l9ws7m +2025-06-18T14:36:28.681Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 32ms - Rows affected: 78 - RequestID: uv4oe63laca +2025-06-18T14:36:28.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.196.226 - RequestID: ysczzaomsl +2025-06-18T14:36:28.881Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 200 - Response time: 1870ms - IP: 192.168.44.5 - User: user_1049 - RequestID: kfbpji7yyk9 +2025-06-18T14:36:28.981Z [TRACE] payment-service - Database INSERT on products - Execution time: 277ms - Rows affected: 76 - RequestID: 9541o1ow1uk +2025-06-18T14:36:29.081Z [TRACE] notification-service - Operation: cache_miss - Processing time: 898ms - RequestID: 63i3q8hfjvw +2025-06-18T14:36:29.181Z [DEBUG] payment-service - Auth event: login_success - User: user_1072 - IP: 192.168.167.32 - RequestID: 5c1fhb72uyk +2025-06-18T14:36:29.281Z [INFO] user-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.11.60 - RequestID: fkwxy9c6iu +2025-06-18T14:36:29.381Z [TRACE] inventory-service - Auth event: password_change - User: user_1068 - IP: 192.168.158.144 - RequestID: 5stliazh95e +2025-06-18T14:36:29.481Z [INFO] notification-service - Database DELETE on payments - Execution time: 29ms - Rows affected: 32 - RequestID: nkk7l6sike +2025-06-18T14:36:29.581Z [TRACE] user-service - Database SELECT on products - Execution time: 181ms - Rows affected: 24 - RequestID: i3rpq9mbyfj +2025-06-18T14:36:29.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.10.184 - RequestID: jssyswbjy5a +2025-06-18T14:36:29.781Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 200 - Response time: 962ms - IP: 192.168.44.5 - User: user_1073 - RequestID: 2kfbgroyrxy +2025-06-18T14:36:29.881Z [DEBUG] inventory-service - GET /api/v1/users - Status: 502 - Response time: 509ms - IP: 192.168.232.72 - User: user_1098 - RequestID: 6bqc3lubpcc +2025-06-18T14:36:29.981Z [INFO] auth-service - Operation: cache_miss - Processing time: 384ms - RequestID: s7x0b6sb66 +2025-06-18T14:36:30.081Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 885ms - RequestID: le0g3yk2pt +2025-06-18T14:36:30.181Z [INFO] user-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.13.72 - RequestID: bt0na9v8pfi +2025-06-18T14:36:30.281Z [INFO] user-service - Operation: notification_queued - Processing time: 820ms - RequestID: ww14w4lnbf +2025-06-18T14:36:30.381Z [TRACE] notification-service - PUT /api/v1/orders - Status: 503 - Response time: 249ms - IP: 192.168.85.229 - User: user_1030 - RequestID: od0p2rcfjk8 +2025-06-18T14:36:30.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.196.226 - RequestID: squikdm266h +2025-06-18T14:36:30.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.229.123 - RequestID: 9oaatg6wbmo +2025-06-18T14:36:30.681Z [INFO] notification-service - POST /api/v1/payments - Status: 403 - Response time: 1697ms - IP: 192.168.32.38 - User: user_1026 - RequestID: 7piftgm6k0v +2025-06-18T14:36:30.781Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1186ms - IP: 192.168.242.165 - User: user_1043 - RequestID: p733dmvn4cn +2025-06-18T14:36:30.881Z [TRACE] user-service - GET /api/v1/users - Status: 200 - Response time: 1963ms - IP: 192.168.144.38 - User: user_1003 - RequestID: 8e0mtiintk5 +2025-06-18T14:36:30.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.79.141 - RequestID: 4f0npi1h30e +2025-06-18T14:36:31.081Z [TRACE] inventory-service - Operation: email_sent - Processing time: 609ms - RequestID: 3sxd5tri05m +2025-06-18T14:36:31.181Z [INFO] order-service - Operation: inventory_updated - Processing time: 565ms - RequestID: cnvppzf0pl4 +2025-06-18T14:36:31.281Z [TRACE] order-service - Auth event: password_change - User: user_1024 - IP: 192.168.46.63 - RequestID: th204j44nsc +2025-06-18T14:36:31.381Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 325ms - Rows affected: 67 - RequestID: 2wyavx4swxc +2025-06-18T14:36:31.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.85.229 - RequestID: kxtotld86zo +2025-06-18T14:36:31.581Z [DEBUG] payment-service - Operation: order_created - Processing time: 218ms - RequestID: t5qxw7i57xb +2025-06-18T14:36:31.681Z [TRACE] payment-service - Operation: order_created - Processing time: 204ms - RequestID: y1sc0a2eouf +2025-06-18T14:36:31.781Z [TRACE] user-service - PATCH /api/v1/payments - Status: 503 - Response time: 326ms - IP: 192.168.28.146 - User: user_1008 - RequestID: cib4dwmvx2t +2025-06-18T14:36:31.881Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 383ms - RequestID: j7p07vhw1q +2025-06-18T14:36:31.981Z [INFO] notification-service - Operation: notification_queued - Processing time: 334ms - RequestID: crubkcaaa7 +2025-06-18T14:36:32.081Z [INFO] payment-service - PUT /api/v1/payments - Status: 201 - Response time: 1098ms - IP: 192.168.79.143 - User: user_1026 - RequestID: t2fllhgta6b +2025-06-18T14:36:32.181Z [INFO] auth-service - Database INSERT on users - Execution time: 425ms - Rows affected: 79 - RequestID: ou1nyimlmrh +2025-06-18T14:36:32.281Z [INFO] auth-service - PUT /api/v1/orders - Status: 401 - Response time: 1864ms - IP: 192.168.14.77 - User: user_1036 - RequestID: vel9rtiqh1j +2025-06-18T14:36:32.381Z [INFO] auth-service - Operation: notification_queued - Processing time: 983ms - RequestID: vjmlqp73ot +2025-06-18T14:36:32.481Z [INFO] notification-service - Database INSERT on products - Execution time: 58ms - Rows affected: 50 - RequestID: ipesey9b1r +2025-06-18T14:36:32.581Z [INFO] payment-service - Operation: notification_queued - Processing time: 1015ms - RequestID: qv0sosvznwr +2025-06-18T14:36:32.681Z [INFO] order-service - DELETE /api/v1/orders - Status: 400 - Response time: 844ms - IP: 192.168.227.233 - User: user_1054 - RequestID: phzbae7swt +2025-06-18T14:36:32.781Z [INFO] auth-service - Database UPDATE on products - Execution time: 406ms - Rows affected: 16 - RequestID: nc2kwgihum +2025-06-18T14:36:32.881Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 594ms - RequestID: egxdmdiobh6 +2025-06-18T14:36:32.981Z [TRACE] notification-service - PUT /api/v1/orders - Status: 200 - Response time: 346ms - IP: 192.168.141.100 - User: user_1097 - RequestID: hzw3nnsgdkh +2025-06-18T14:36:33.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 71ms - RequestID: 426ay2kan3i +2025-06-18T14:36:33.181Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 400 - Response time: 575ms - IP: 192.168.227.233 - User: user_1062 - RequestID: 32zivpvfbvy +2025-06-18T14:36:33.281Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 401 - Response time: 1578ms - IP: 192.168.33.76 - User: user_1011 - RequestID: uhe0vts8fd +2025-06-18T14:36:33.381Z [INFO] notification-service - Auth event: password_change - User: user_1006 - IP: 192.168.242.165 - RequestID: r2affj4jmbf +2025-06-18T14:36:33.481Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 404 - Response time: 1260ms - IP: 192.168.1.152 - User: user_1023 - RequestID: voxpgiai8dn +2025-06-18T14:36:33.581Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 500 - Response time: 1070ms - IP: 192.168.64.33 - User: user_1059 - RequestID: c6sa6brd1au +2025-06-18T14:36:33.681Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1996ms - IP: 192.168.14.77 - User: user_1061 - RequestID: xmw7u3sgw2d +2025-06-18T14:36:33.781Z [TRACE] order-service - Operation: cache_hit - Processing time: 146ms - RequestID: l9zkf2tqh9 +2025-06-18T14:36:33.881Z [INFO] auth-service - Operation: inventory_updated - Processing time: 925ms - RequestID: s0vwvelmdu +2025-06-18T14:36:33.981Z [INFO] order-service - Database INSERT on payments - Execution time: 61ms - Rows affected: 8 - RequestID: y3w5baiwal +2025-06-18T14:36:34.081Z [INFO] inventory-service - Database DELETE on products - Execution time: 471ms - Rows affected: 95 - RequestID: zxi7dij0wzq +2025-06-18T14:36:34.181Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.68.158 - RequestID: 3qchxqk49zn +2025-06-18T14:36:34.281Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 200ms - Rows affected: 47 - RequestID: n0pykp1r07 +2025-06-18T14:36:34.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.227.233 - RequestID: 1an5jmrwf67 +2025-06-18T14:36:34.481Z [INFO] auth-service - Operation: notification_queued - Processing time: 517ms - RequestID: grdf8i9p3j7 +2025-06-18T14:36:34.581Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 503 - Response time: 1217ms - IP: 192.168.97.87 - User: user_1093 - RequestID: a4amjp6rsph +2025-06-18T14:36:34.681Z [INFO] notification-service - Operation: webhook_sent - Processing time: 250ms - RequestID: 0jl0kg44pvjg +2025-06-18T14:36:34.781Z [INFO] payment-service - POST /api/v1/users - Status: 200 - Response time: 1035ms - IP: 192.168.46.63 - User: user_1016 - RequestID: uo9uib9pxwl +2025-06-18T14:36:34.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 1016ms - RequestID: kwyvt4tydq +2025-06-18T14:36:34.981Z [INFO] order-service - Operation: notification_queued - Processing time: 230ms - RequestID: 177aica1bta +2025-06-18T14:36:35.081Z [TRACE] auth-service - Operation: order_created - Processing time: 643ms - RequestID: x12ux5h8i9e +2025-06-18T14:36:35.181Z [INFO] notification-service - Operation: order_created - Processing time: 1009ms - RequestID: z50jcb63ojr +2025-06-18T14:36:35.281Z [DEBUG] auth-service - Auth event: logout - User: user_1084 - IP: 192.168.113.218 - RequestID: 1epqbdmdm4n +2025-06-18T14:36:35.381Z [DEBUG] payment-service - Database DELETE on users - Execution time: 90ms - Rows affected: 3 - RequestID: bz91uavl3zg +2025-06-18T14:36:35.481Z [INFO] order-service - Operation: payment_processed - Processing time: 368ms - RequestID: 0i7ojq44v3l5 +2025-06-18T14:36:35.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 260ms - RequestID: 1q6ce4go4bw +2025-06-18T14:36:35.681Z [INFO] auth-service - Database INSERT on orders - Execution time: 145ms - Rows affected: 48 - RequestID: hacee3rpfab +2025-06-18T14:36:35.781Z [TRACE] user-service - Operation: cache_hit - Processing time: 628ms - RequestID: 8zgxel0ef9w +2025-06-18T14:36:35.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1021 - IP: 192.168.240.169 - RequestID: zbbs0rvq2p +2025-06-18T14:36:35.981Z [TRACE] order-service - Database UPDATE on users - Execution time: 42ms - Rows affected: 73 - RequestID: 7ya44pplyyw +2025-06-18T14:36:36.081Z [TRACE] order-service - Operation: order_created - Processing time: 517ms - RequestID: 4sghl2t8g14 +2025-06-18T14:36:36.181Z [TRACE] auth-service - Operation: payment_processed - Processing time: 597ms - RequestID: 832m18kajft +2025-06-18T14:36:36.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.10.184 - RequestID: hd6rqe1cq76 +2025-06-18T14:36:36.381Z [DEBUG] user-service - Operation: order_created - Processing time: 957ms - RequestID: fuylx2udxl7 +2025-06-18T14:36:36.481Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 138ms - Rows affected: 91 - RequestID: wjg07f8o9f +2025-06-18T14:36:36.581Z [INFO] user-service - Operation: notification_queued - Processing time: 436ms - RequestID: nxdc8s8ljqi +2025-06-18T14:36:36.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 785ms - RequestID: exa2sxm0oqm +2025-06-18T14:36:36.781Z [INFO] payment-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.10.184 - RequestID: n1e6wvonb +2025-06-18T14:36:36.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.100.240 - RequestID: bw96qtz0hjd +2025-06-18T14:36:36.981Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 400 - Response time: 488ms - IP: 192.168.158.144 - User: user_1002 - RequestID: d1ofw6078jq +2025-06-18T14:36:37.081Z [INFO] order-service - Operation: notification_queued - Processing time: 531ms - RequestID: kiki7wipmfm +2025-06-18T14:36:37.181Z [INFO] payment-service - Database INSERT on orders - Execution time: 171ms - Rows affected: 93 - RequestID: bgyi34vkpl +2025-06-18T14:36:37.281Z [INFO] user-service - Operation: email_sent - Processing time: 97ms - RequestID: 95y9cv1qryc +2025-06-18T14:36:37.381Z [INFO] notification-service - Database SELECT on payments - Execution time: 161ms - Rows affected: 11 - RequestID: tm71xg0uwqq +2025-06-18T14:36:37.481Z [TRACE] notification-service - Database INSERT on products - Execution time: 377ms - Rows affected: 59 - RequestID: xv56myzvqnb +2025-06-18T14:36:37.581Z [TRACE] inventory-service - Database INSERT on users - Execution time: 173ms - Rows affected: 10 - RequestID: 50m3hup6cut +2025-06-18T14:36:37.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1017 - IP: 192.168.14.77 - RequestID: 08zwrrhyv3d +2025-06-18T14:36:37.781Z [INFO] notification-service - Operation: order_created - Processing time: 364ms - RequestID: 00z0en8vvfdj +2025-06-18T14:36:37.881Z [TRACE] order-service - Auth event: logout - User: user_1074 - IP: 192.168.10.184 - RequestID: vocz9dqgft +2025-06-18T14:36:37.981Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 860ms - RequestID: 6srm43lhnf +2025-06-18T14:36:38.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1001 - IP: 192.168.167.32 - RequestID: mnkafaj3uv +2025-06-18T14:36:38.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 946ms - RequestID: 047s0g27m2i9 +2025-06-18T14:36:38.281Z [INFO] notification-service - Operation: cache_miss - Processing time: 821ms - RequestID: yn73id7paoe +2025-06-18T14:36:38.381Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 195ms - Rows affected: 24 - RequestID: efchq4a55kg +2025-06-18T14:36:38.481Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 591ms - RequestID: 48csd5rnzny +2025-06-18T14:36:38.581Z [INFO] inventory-service - Operation: email_sent - Processing time: 95ms - RequestID: 5km8uf0objd +2025-06-18T14:36:38.681Z [DEBUG] notification-service - Auth event: logout - User: user_1032 - IP: 192.168.194.41 - RequestID: 7ms6qkz21jy +2025-06-18T14:36:38.781Z [TRACE] auth-service - Database SELECT on payments - Execution time: 421ms - Rows affected: 9 - RequestID: 9sb3pjq7a7 +2025-06-18T14:36:38.881Z [DEBUG] order-service - Database DELETE on users - Execution time: 191ms - Rows affected: 48 - RequestID: ouxrop75bco +2025-06-18T14:36:38.981Z [INFO] order-service - Auth event: login_failed - User: user_1011 - IP: 192.168.113.218 - RequestID: h504flxyo6n +2025-06-18T14:36:39.081Z [INFO] payment-service - GET /api/v1/auth/login - Status: 500 - Response time: 256ms - IP: 192.168.247.134 - User: user_1018 - RequestID: fjswp02o7l5 +2025-06-18T14:36:39.181Z [INFO] order-service - Database SELECT on users - Execution time: 285ms - Rows affected: 28 - RequestID: 4kxstx9z1g6 +2025-06-18T14:36:39.281Z [INFO] auth-service - POST /api/v1/inventory - Status: 400 - Response time: 1971ms - IP: 192.168.10.184 - User: user_1078 - RequestID: uzq5npvmsfp +2025-06-18T14:36:39.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 767ms - RequestID: np5oj0nmmvq +2025-06-18T14:36:39.481Z [TRACE] order-service - GET /api/v1/payments - Status: 500 - Response time: 1692ms - IP: 192.168.194.41 - User: user_1042 - RequestID: o9o2upinehq +2025-06-18T14:36:39.581Z [INFO] user-service - PUT /api/v1/inventory - Status: 401 - Response time: 148ms - IP: 192.168.211.72 - User: user_1069 - RequestID: 54jmg1fbym4 +2025-06-18T14:36:39.681Z [TRACE] inventory-service - Auth event: logout - User: user_1071 - IP: 192.168.64.33 - RequestID: 69ovyogf1mq +2025-06-18T14:36:39.781Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 400 - Response time: 1924ms - IP: 192.168.170.215 - User: user_1089 - RequestID: d1hcmrj6bhq +2025-06-18T14:36:39.881Z [DEBUG] order-service - Database UPDATE on products - Execution time: 449ms - Rows affected: 4 - RequestID: tggoglnzuwf +2025-06-18T14:36:39.981Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 378ms - IP: 192.168.147.171 - User: user_1076 - RequestID: gh1rmsf1uw +2025-06-18T14:36:40.081Z [INFO] auth-service - DELETE /api/v1/payments - Status: 403 - Response time: 464ms - IP: 192.168.11.60 - User: user_1047 - RequestID: 0m7gq5l4fjve +2025-06-18T14:36:40.181Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.167.32 - RequestID: 7hw1fdyuilq +2025-06-18T14:36:40.281Z [INFO] inventory-service - POST /api/v1/orders - Status: 401 - Response time: 987ms - IP: 192.168.33.76 - User: user_1017 - RequestID: celvxnie7qn +2025-06-18T14:36:40.381Z [DEBUG] payment-service - PUT /api/v1/users - Status: 401 - Response time: 580ms - IP: 192.168.64.33 - User: user_1051 - RequestID: c1itttkstd6 +2025-06-18T14:36:40.481Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 201 - Response time: 1288ms - IP: 192.168.187.199 - User: user_1066 - RequestID: j9u6r472ed +2025-06-18T14:36:40.581Z [INFO] inventory-service - Auth event: logout - User: user_1087 - IP: 192.168.196.226 - RequestID: figlwap727 +2025-06-18T14:36:40.681Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 205ms - Rows affected: 42 - RequestID: ayad01h2wmf +2025-06-18T14:36:40.781Z [INFO] order-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.196.226 - RequestID: oau2no1jyf +2025-06-18T14:36:40.881Z [INFO] user-service - PUT /api/v1/users - Status: 200 - Response time: 451ms - IP: 192.168.53.133 - User: user_1075 - RequestID: x9f68xhrs8a +2025-06-18T14:36:40.981Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 41ms - IP: 192.168.79.141 - User: user_1005 - RequestID: 3h2eonllpbq +2025-06-18T14:36:41.081Z [TRACE] auth-service - DELETE /api/v1/users - Status: 502 - Response time: 1750ms - IP: 192.168.240.169 - User: user_1010 - RequestID: veodcqrrlvf +2025-06-18T14:36:41.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.147.171 - RequestID: vhcv2uonat7 +2025-06-18T14:36:41.281Z [DEBUG] user-service - Operation: order_created - Processing time: 309ms - RequestID: r77b11tfn1m +2025-06-18T14:36:41.381Z [INFO] inventory-service - Database INSERT on orders - Execution time: 296ms - Rows affected: 7 - RequestID: 4k8xlpxal5h +2025-06-18T14:36:41.481Z [INFO] notification-service - Database INSERT on orders - Execution time: 60ms - Rows affected: 65 - RequestID: g79bp7iktz +2025-06-18T14:36:41.581Z [TRACE] user-service - Auth event: login_failed - User: user_1049 - IP: 192.168.141.100 - RequestID: outa6muz8b +2025-06-18T14:36:41.681Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 8ms - Rows affected: 36 - RequestID: twymg05lzag +2025-06-18T14:36:41.781Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 338ms - Rows affected: 15 - RequestID: i3ekd3md88h +2025-06-18T14:36:41.881Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 404 - Response time: 682ms - IP: 192.168.174.114 - User: user_1096 - RequestID: e1hysi4j7c7 +2025-06-18T14:36:41.981Z [DEBUG] order-service - Auth event: login_failed - User: user_1051 - IP: 192.168.44.5 - RequestID: gywmhot6l4c +2025-06-18T14:36:42.081Z [INFO] payment-service - GET /api/v1/orders - Status: 201 - Response time: 119ms - IP: 192.168.68.128 - User: user_1083 - RequestID: n7m2thaqh7r +2025-06-18T14:36:42.181Z [INFO] auth-service - Operation: notification_queued - Processing time: 393ms - RequestID: 1042fmu37k1 +2025-06-18T14:36:42.281Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 201 - Response time: 728ms - IP: 192.168.235.117 - User: user_1022 - RequestID: tzfp4j1h2ui +2025-06-18T14:36:42.381Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 277ms - Rows affected: 61 - RequestID: ilzyf6rau3h +2025-06-18T14:36:42.481Z [INFO] auth-service - Database INSERT on sessions - Execution time: 147ms - Rows affected: 35 - RequestID: qdiros2qr6a +2025-06-18T14:36:42.581Z [TRACE] auth-service - Database SELECT on products - Execution time: 316ms - Rows affected: 17 - RequestID: l4bt25o04c +2025-06-18T14:36:42.681Z [INFO] user-service - Database INSERT on orders - Execution time: 85ms - Rows affected: 41 - RequestID: 5jw370xeami +2025-06-18T14:36:42.781Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.229.123 - RequestID: oda74rrlv1m +2025-06-18T14:36:42.881Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 66ms - Rows affected: 31 - RequestID: b305hn45jja +2025-06-18T14:36:42.981Z [TRACE] inventory-service - Operation: email_sent - Processing time: 263ms - RequestID: 6t8wboxbf49 +2025-06-18T14:36:43.081Z [TRACE] order-service - Database INSERT on sessions - Execution time: 249ms - Rows affected: 49 - RequestID: drhe2ef0e9k +2025-06-18T14:36:43.181Z [INFO] inventory-service - Auth event: login_failed - User: user_1099 - IP: 192.168.79.116 - RequestID: lg3luyqg5n8 +2025-06-18T14:36:43.281Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 163ms - RequestID: 56e6cfh03xx +2025-06-18T14:36:43.381Z [DEBUG] auth-service - Auth event: login_failed - User: user_1041 - IP: 192.168.232.72 - RequestID: eijwm8tll2k +2025-06-18T14:36:43.481Z [INFO] notification-service - POST /api/v1/orders - Status: 404 - Response time: 1382ms - IP: 192.168.1.152 - User: user_1043 - RequestID: wcaax2s0ov +2025-06-18T14:36:43.581Z [INFO] notification-service - Operation: cache_miss - Processing time: 520ms - RequestID: x4gbxkpimpo +2025-06-18T14:36:43.681Z [INFO] user-service - Auth event: password_change - User: user_1095 - IP: 192.168.31.117 - RequestID: 7hss6bjs3ot +2025-06-18T14:36:43.781Z [INFO] payment-service - Operation: inventory_updated - Processing time: 114ms - RequestID: oryacka0xqb +2025-06-18T14:36:43.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 174ms - RequestID: 3ujxt4sa8ux +2025-06-18T14:36:43.981Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 265ms - RequestID: dd6fdykl5wq +2025-06-18T14:36:44.081Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 514ms - RequestID: vryu2gq0fl +2025-06-18T14:36:44.181Z [INFO] inventory-service - Operation: order_created - Processing time: 87ms - RequestID: sis9a6w99h +2025-06-18T14:36:44.281Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 320ms - Rows affected: 48 - RequestID: 1t6hmeitpud +2025-06-18T14:36:44.381Z [DEBUG] notification-service - Auth event: login_failed - User: user_1082 - IP: 192.168.104.37 - RequestID: 0sekeaj9dft +2025-06-18T14:36:44.481Z [DEBUG] auth-service - Auth event: login_success - User: user_1055 - IP: 192.168.181.225 - RequestID: 6agcypob4vc +2025-06-18T14:36:44.581Z [DEBUG] user-service - Auth event: login_success - User: user_1064 - IP: 192.168.36.218 - RequestID: wyrretpugw +2025-06-18T14:36:44.681Z [INFO] user-service - POST /api/v1/payments - Status: 500 - Response time: 63ms - IP: 192.168.138.123 - User: user_1037 - RequestID: 5ol83i6ceza +2025-06-18T14:36:44.781Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 503 - Response time: 1332ms - IP: 192.168.30.79 - User: user_1081 - RequestID: 4xcubgmnvvn +2025-06-18T14:36:44.881Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 186ms - Rows affected: 30 - RequestID: invrr2x29p +2025-06-18T14:36:44.981Z [INFO] order-service - Database DELETE on products - Execution time: 157ms - Rows affected: 72 - RequestID: rd1wvv3wqoa +2025-06-18T14:36:45.081Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 253ms - IP: 192.168.44.5 - User: user_1031 - RequestID: rs6dzl2zff9 +2025-06-18T14:36:45.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.211.72 - RequestID: 501oz8kvm8p +2025-06-18T14:36:45.281Z [INFO] payment-service - Auth event: password_change - User: user_1089 - IP: 192.168.144.38 - RequestID: svpg2qsbw8 +2025-06-18T14:36:45.381Z [DEBUG] order-service - Auth event: logout - User: user_1077 - IP: 192.168.167.32 - RequestID: skjiojcabsa +2025-06-18T14:36:45.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 854ms - RequestID: 6f2usm2wstl +2025-06-18T14:36:45.581Z [INFO] inventory-service - Database INSERT on products - Execution time: 346ms - Rows affected: 50 - RequestID: fn267wul7xw +2025-06-18T14:36:45.681Z [DEBUG] order-service - Database DELETE on products - Execution time: 170ms - Rows affected: 16 - RequestID: amid0p8g2yr +2025-06-18T14:36:45.781Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 847ms - RequestID: lj0o1uqobv +2025-06-18T14:36:45.881Z [INFO] payment-service - Database UPDATE on users - Execution time: 113ms - Rows affected: 52 - RequestID: dkw3bh6l41f +2025-06-18T14:36:45.981Z [TRACE] user-service - Database DELETE on products - Execution time: 346ms - Rows affected: 5 - RequestID: s76peglzta +2025-06-18T14:36:46.081Z [TRACE] payment-service - GET /api/v1/inventory - Status: 201 - Response time: 50ms - IP: 192.168.189.103 - User: user_1016 - RequestID: 5te4lwa45ht +2025-06-18T14:36:46.181Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 289ms - Rows affected: 88 - RequestID: bf7yjyvszau +2025-06-18T14:36:46.281Z [TRACE] payment-service - Database INSERT on users - Execution time: 452ms - Rows affected: 53 - RequestID: 2iy1hignlie +2025-06-18T14:36:46.381Z [INFO] payment-service - Operation: cache_hit - Processing time: 857ms - RequestID: iwzjk32k46 +2025-06-18T14:36:46.481Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 502 - Response time: 602ms - IP: 192.168.36.218 - User: user_1089 - RequestID: jwjb5ydn5f +2025-06-18T14:36:46.581Z [TRACE] order-service - Auth event: logout - User: user_1090 - IP: 192.168.187.199 - RequestID: d2kta1pnwns +2025-06-18T14:36:46.681Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 842ms - IP: 192.168.79.141 - User: user_1040 - RequestID: vpi42yu6bi +2025-06-18T14:36:46.781Z [DEBUG] notification-service - Operation: email_sent - Processing time: 820ms - RequestID: 21pctps0x2z +2025-06-18T14:36:46.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.30.79 - RequestID: 9hc6cihjqt +2025-06-18T14:36:46.981Z [INFO] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 1863ms - IP: 192.168.227.77 - User: user_1064 - RequestID: 9f9ph8lykwn +2025-06-18T14:36:47.081Z [INFO] payment-service - Operation: notification_queued - Processing time: 220ms - RequestID: pz2mzb8rtrr +2025-06-18T14:36:47.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 825ms - RequestID: beewo9sfy0e +2025-06-18T14:36:47.281Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 410ms - Rows affected: 28 - RequestID: vlfg8yi0dxp +2025-06-18T14:36:47.381Z [INFO] inventory-service - Auth event: logout - User: user_1085 - IP: 192.168.227.233 - RequestID: pp5usch7fp9 +2025-06-18T14:36:47.481Z [TRACE] payment-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.227.77 - RequestID: ins0rdzgmy +2025-06-18T14:36:47.581Z [TRACE] user-service - Operation: notification_queued - Processing time: 961ms - RequestID: wctojaqe7xd +2025-06-18T14:36:47.681Z [INFO] notification-service - Auth event: login_success - User: user_1001 - IP: 192.168.79.141 - RequestID: wubiv9900qs +2025-06-18T14:36:47.781Z [INFO] payment-service - GET /api/v1/users - Status: 200 - Response time: 134ms - IP: 192.168.44.5 - User: user_1084 - RequestID: aot6d0k5fs +2025-06-18T14:36:47.881Z [TRACE] order-service - Operation: cache_hit - Processing time: 896ms - RequestID: ho2uidy5zep +2025-06-18T14:36:47.981Z [DEBUG] user-service - Database INSERT on payments - Execution time: 100ms - Rows affected: 46 - RequestID: a7638igbkv +2025-06-18T14:36:48.081Z [DEBUG] user-service - Operation: cache_hit - Processing time: 955ms - RequestID: 417hajwprxu +2025-06-18T14:36:48.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 984ms - RequestID: liw9fqn8ad +2025-06-18T14:36:48.281Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 585ms - IP: 192.168.133.7 - User: user_1057 - RequestID: d8apa2k71ch +2025-06-18T14:36:48.381Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 152ms - Rows affected: 66 - RequestID: sxx3vy72eg +2025-06-18T14:36:48.481Z [INFO] user-service - Operation: payment_processed - Processing time: 927ms - RequestID: j5bue4iad7 +2025-06-18T14:36:48.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.159.94 - RequestID: y2evhovzy0q +2025-06-18T14:36:48.681Z [TRACE] user-service - Operation: cache_hit - Processing time: 965ms - RequestID: q54k3of2e2 +2025-06-18T14:36:48.781Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 500 - Response time: 787ms - IP: 192.168.167.32 - User: user_1066 - RequestID: gdpdq6tjp5q +2025-06-18T14:36:48.881Z [TRACE] inventory-service - Auth event: password_change - User: user_1009 - IP: 192.168.240.169 - RequestID: acs3ssragm7 +2025-06-18T14:36:48.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.211.72 - RequestID: m50s76hbzm +2025-06-18T14:36:49.081Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 1002ms - RequestID: k12gpnmzuxd +2025-06-18T14:36:49.181Z [TRACE] notification-service - GET /api/v1/inventory - Status: 201 - Response time: 1677ms - IP: 192.168.32.38 - User: user_1078 - RequestID: y0jxyqpfx7 +2025-06-18T14:36:49.281Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 991ms - RequestID: kuypsyw2f1 +2025-06-18T14:36:49.381Z [TRACE] payment-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.36.218 - RequestID: mjkhicwbx4 +2025-06-18T14:36:49.481Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 6ms - Rows affected: 13 - RequestID: nhcf7ctfg8l +2025-06-18T14:36:49.581Z [INFO] inventory-service - PUT /api/v1/orders - Status: 500 - Response time: 1290ms - IP: 192.168.85.229 - User: user_1079 - RequestID: c46v5dzl6ri +2025-06-18T14:36:49.681Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 153ms - Rows affected: 41 - RequestID: ihm3l6d92pi +2025-06-18T14:36:49.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1097 - IP: 192.168.227.77 - RequestID: 62d20r2v2nm +2025-06-18T14:36:49.881Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1450ms - IP: 192.168.1.152 - User: user_1092 - RequestID: m1ifg1xzeus +2025-06-18T14:36:49.981Z [INFO] user-service - Operation: cache_miss - Processing time: 425ms - RequestID: gnz1p365qgh +2025-06-18T14:36:50.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.68.128 - RequestID: 8yxgw1b04tj +2025-06-18T14:36:50.181Z [DEBUG] inventory-service - Operation: order_created - Processing time: 636ms - RequestID: b9kawx1vhmt +2025-06-18T14:36:50.281Z [INFO] payment-service - Auth event: password_change - User: user_1064 - IP: 192.168.196.226 - RequestID: k4leox9c4x9 +2025-06-18T14:36:50.381Z [DEBUG] order-service - Operation: email_sent - Processing time: 402ms - RequestID: 5x6qv31cvlw +2025-06-18T14:36:50.481Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 490ms - Rows affected: 19 - RequestID: 2lynr26d6ro +2025-06-18T14:36:50.581Z [DEBUG] notification-service - Auth event: logout - User: user_1046 - IP: 192.168.44.5 - RequestID: zt2grv9g72r +2025-06-18T14:36:50.681Z [TRACE] inventory-service - Database DELETE on users - Execution time: 17ms - Rows affected: 4 - RequestID: zztap9d3s3e +2025-06-18T14:36:50.781Z [INFO] order-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1105ms - IP: 192.168.133.7 - User: user_1075 - RequestID: 7q0r67jj0hx +2025-06-18T14:36:50.881Z [TRACE] payment-service - Auth event: password_change - User: user_1007 - IP: 192.168.227.233 - RequestID: 0emb2jam1zjm +2025-06-18T14:36:50.981Z [DEBUG] notification-service - Auth event: login_success - User: user_1041 - IP: 192.168.170.215 - RequestID: l7fjx3maft +2025-06-18T14:36:51.081Z [INFO] user-service - Auth event: password_change - User: user_1095 - IP: 192.168.232.72 - RequestID: 2zfawychoin +2025-06-18T14:36:51.181Z [INFO] payment-service - POST /api/v1/auth/login - Status: 401 - Response time: 1156ms - IP: 192.168.235.117 - User: user_1081 - RequestID: bmozgr8563o +2025-06-18T14:36:51.281Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 28ms - Rows affected: 35 - RequestID: u6ymp9w9aph +2025-06-18T14:36:51.381Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 75ms - Rows affected: 13 - RequestID: h6jy2obdcbu +2025-06-18T14:36:51.481Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 404 - Response time: 353ms - IP: 192.168.133.7 - User: user_1019 - RequestID: 5zmqqensswk +2025-06-18T14:36:51.581Z [DEBUG] user-service - Operation: cache_miss - Processing time: 834ms - RequestID: kisvwjlfwas +2025-06-18T14:36:51.681Z [TRACE] user-service - Operation: cache_hit - Processing time: 950ms - RequestID: f2aitcwuerm +2025-06-18T14:36:51.781Z [INFO] auth-service - PATCH /api/v1/orders - Status: 400 - Response time: 43ms - IP: 192.168.170.215 - User: user_1034 - RequestID: 48exf2isou +2025-06-18T14:36:51.881Z [INFO] notification-service - Database INSERT on payments - Execution time: 302ms - Rows affected: 90 - RequestID: 1j0je83tnopi +2025-06-18T14:36:51.981Z [INFO] auth-service - Operation: order_created - Processing time: 893ms - RequestID: 58qdw2yi4su +2025-06-18T14:36:52.081Z [INFO] inventory-service - Operation: email_sent - Processing time: 522ms - RequestID: wxgh3iacnu +2025-06-18T14:36:52.181Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 204ms - Rows affected: 52 - RequestID: l94y1gs5epa +2025-06-18T14:36:52.281Z [INFO] inventory-service - POST /api/v1/payments - Status: 201 - Response time: 707ms - IP: 192.168.1.152 - User: user_1078 - RequestID: 7k1ak80gto +2025-06-18T14:36:52.381Z [INFO] user-service - Operation: payment_processed - Processing time: 159ms - RequestID: 1dmvekvyv4 +2025-06-18T14:36:52.481Z [DEBUG] notification-service - Operation: email_sent - Processing time: 545ms - RequestID: 57hrsho0z0i +2025-06-18T14:36:52.581Z [INFO] payment-service - Auth event: login_success - User: user_1099 - IP: 192.168.31.117 - RequestID: 9k3c0m6xplt +2025-06-18T14:36:52.681Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1348ms - IP: 192.168.30.79 - User: user_1085 - RequestID: eul606tlnpu +2025-06-18T14:36:52.781Z [INFO] inventory-service - POST /api/v1/inventory - Status: 200 - Response time: 1984ms - IP: 192.168.85.229 - User: user_1025 - RequestID: hje7pzc1ajs +2025-06-18T14:36:52.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.144.38 - RequestID: rieoxtcea7h +2025-06-18T14:36:52.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1008 - IP: 192.168.33.76 - RequestID: vzlxammzdw +2025-06-18T14:36:53.081Z [INFO] notification-service - Database DELETE on sessions - Execution time: 167ms - Rows affected: 77 - RequestID: prpsp82rwqe +2025-06-18T14:36:53.181Z [TRACE] order-service - Auth event: logout - User: user_1071 - IP: 192.168.227.77 - RequestID: aqcdxkh5squ +2025-06-18T14:36:53.281Z [INFO] payment-service - Database DELETE on users - Execution time: 479ms - Rows affected: 53 - RequestID: u8yr32dchkj +2025-06-18T14:36:53.381Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 200 - Response time: 74ms - IP: 192.168.133.7 - User: user_1092 - RequestID: rlk0xsatp2 +2025-06-18T14:36:53.481Z [TRACE] notification-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.1.152 - RequestID: 8t1n2qjhwui +2025-06-18T14:36:53.581Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.11.60 - RequestID: xt8agkafixs +2025-06-18T14:36:53.681Z [DEBUG] payment-service - Database DELETE on products - Execution time: 174ms - Rows affected: 62 - RequestID: j1hewaj9hzs +2025-06-18T14:36:53.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.100.240 - RequestID: 4sbimgyyybd +2025-06-18T14:36:53.881Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 127ms - Rows affected: 79 - RequestID: y70190oa37i +2025-06-18T14:36:53.981Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 140ms - RequestID: wac3j6j2z7 +2025-06-18T14:36:54.081Z [TRACE] inventory-service - Database INSERT on products - Execution time: 253ms - Rows affected: 91 - RequestID: k0oze7h1qb +2025-06-18T14:36:54.181Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 201 - Response time: 1919ms - IP: 192.168.170.215 - User: user_1094 - RequestID: aibtuhdn69h +2025-06-18T14:36:54.281Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 502 - Response time: 929ms - IP: 192.168.235.117 - User: user_1000 - RequestID: xz9pga5e9bi +2025-06-18T14:36:54.381Z [TRACE] auth-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.1.152 - RequestID: qhd3t5g10cg +2025-06-18T14:36:54.481Z [INFO] auth-service - PATCH /api/v1/users - Status: 400 - Response time: 1270ms - IP: 192.168.97.87 - User: user_1012 - RequestID: sqrrvg3nw1g +2025-06-18T14:36:54.581Z [INFO] payment-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.138.123 - RequestID: tc8k9xedmv +2025-06-18T14:36:54.681Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 201 - Response time: 1748ms - IP: 192.168.10.184 - User: user_1024 - RequestID: 0gx9w40wdfy8 +2025-06-18T14:36:54.781Z [TRACE] order-service - Database INSERT on users - Execution time: 187ms - Rows affected: 27 - RequestID: levhlnqvglp +2025-06-18T14:36:54.881Z [INFO] payment-service - Database DELETE on payments - Execution time: 42ms - Rows affected: 10 - RequestID: 032ryor69j7j +2025-06-18T14:36:54.981Z [INFO] user-service - Auth event: login_success - User: user_1091 - IP: 192.168.30.79 - RequestID: hbphwo03xyh +2025-06-18T14:36:55.081Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 200 - Response time: 899ms - IP: 192.168.33.76 - User: user_1096 - RequestID: m5yklkr3xe +2025-06-18T14:36:55.181Z [INFO] payment-service - POST /api/v1/orders - Status: 200 - Response time: 871ms - IP: 192.168.227.233 - User: user_1025 - RequestID: ome1uj8inhm +2025-06-18T14:36:55.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 575ms - RequestID: d9i3th1dq1w +2025-06-18T14:36:55.381Z [TRACE] payment-service - Database INSERT on users - Execution time: 323ms - Rows affected: 1 - RequestID: 07yv7p37v1xi +2025-06-18T14:36:55.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 482ms - RequestID: p3qs4c7pnk +2025-06-18T14:36:55.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 655ms - RequestID: wmwxux7yf8m +2025-06-18T14:36:55.681Z [TRACE] auth-service - Database SELECT on users - Execution time: 55ms - Rows affected: 26 - RequestID: 5ou2dkx8rb +2025-06-18T14:36:55.781Z [INFO] auth-service - Database UPDATE on users - Execution time: 331ms - Rows affected: 18 - RequestID: mj3lqb3waj +2025-06-18T14:36:55.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1016 - IP: 192.168.1.152 - RequestID: lirksd5xiyj +2025-06-18T14:36:55.981Z [INFO] order-service - Auth event: login_success - User: user_1037 - IP: 192.168.138.123 - RequestID: ff9g6xr7oe +2025-06-18T14:36:56.081Z [DEBUG] order-service - Auth event: login_success - User: user_1016 - IP: 192.168.141.100 - RequestID: zf5wqrtezh +2025-06-18T14:36:56.181Z [INFO] order-service - DELETE /api/v1/payments - Status: 502 - Response time: 997ms - IP: 192.168.79.143 - User: user_1093 - RequestID: c0b0hdae7cd +2025-06-18T14:36:56.281Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 240ms - Rows affected: 58 - RequestID: xmi7hyvl4l +2025-06-18T14:36:56.381Z [INFO] auth-service - Operation: cache_hit - Processing time: 311ms - RequestID: r20ww6jfo6r +2025-06-18T14:36:56.481Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 449ms - IP: 192.168.44.5 - User: user_1023 - RequestID: 92txrxk8847 +2025-06-18T14:36:56.581Z [INFO] user-service - GET /api/v1/auth/login - Status: 200 - Response time: 1859ms - IP: 192.168.247.134 - User: user_1092 - RequestID: pz489a94f5 +2025-06-18T14:36:56.681Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 375ms - Rows affected: 5 - RequestID: eganghe7edf +2025-06-18T14:36:56.781Z [INFO] payment-service - Database INSERT on payments - Execution time: 207ms - Rows affected: 59 - RequestID: 6ii2gh2f7z2 +2025-06-18T14:36:56.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1079 - IP: 192.168.64.33 - RequestID: csdt2zxrxl +2025-06-18T14:36:56.981Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 403 - Response time: 400ms - IP: 192.168.187.199 - User: user_1026 - RequestID: 9x1e3tzzhmb +2025-06-18T14:36:57.081Z [INFO] payment-service - Operation: email_sent - Processing time: 493ms - RequestID: e0ge8rapxyw +2025-06-18T14:36:57.181Z [TRACE] order-service - Auth event: password_change - User: user_1009 - IP: 192.168.138.123 - RequestID: ai5cdwctyrr +2025-06-18T14:36:57.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.242.165 - RequestID: bhiw7l766i4 +2025-06-18T14:36:57.381Z [TRACE] user-service - Database SELECT on orders - Execution time: 93ms - Rows affected: 14 - RequestID: 4y46hsldwig +2025-06-18T14:36:57.481Z [INFO] notification-service - Database DELETE on orders - Execution time: 44ms - Rows affected: 4 - RequestID: 9gjkx3t6lum +2025-06-18T14:36:57.581Z [TRACE] user-service - PATCH /api/v1/payments - Status: 502 - Response time: 639ms - IP: 192.168.227.77 - User: user_1074 - RequestID: nbs0eynzhoo +2025-06-18T14:36:57.681Z [INFO] auth-service - Operation: cache_miss - Processing time: 79ms - RequestID: 3mtugcp9n0r +2025-06-18T14:36:57.781Z [TRACE] user-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.211.72 - RequestID: ae7j46cygup +2025-06-18T14:36:57.881Z [DEBUG] user-service - Database DELETE on payments - Execution time: 386ms - Rows affected: 12 - RequestID: o2252zpdp8r +2025-06-18T14:36:57.981Z [DEBUG] order-service - Database INSERT on payments - Execution time: 141ms - Rows affected: 93 - RequestID: 4g0vvziaxec +2025-06-18T14:36:58.081Z [TRACE] notification-service - Operation: order_created - Processing time: 322ms - RequestID: c3qk89araxb +2025-06-18T14:36:58.181Z [TRACE] notification-service - Database UPDATE on products - Execution time: 366ms - Rows affected: 93 - RequestID: nuts3oa32lq +2025-06-18T14:36:58.281Z [DEBUG] inventory-service - Auth event: login_success - User: user_1067 - IP: 192.168.68.128 - RequestID: alknx7bdv7t +2025-06-18T14:36:58.381Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 500 - Response time: 1541ms - IP: 192.168.79.116 - User: user_1055 - RequestID: bxa942xbyob +2025-06-18T14:36:58.481Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 41ms - Rows affected: 22 - RequestID: aowecukni4t +2025-06-18T14:36:58.581Z [TRACE] auth-service - Auth event: logout - User: user_1026 - IP: 192.168.53.133 - RequestID: vdo35tf6f +2025-06-18T14:36:58.681Z [TRACE] notification-service - POST /api/v1/inventory - Status: 400 - Response time: 1954ms - IP: 192.168.170.215 - User: user_1051 - RequestID: mc2m2mzg4ye +2025-06-18T14:36:58.781Z [DEBUG] user-service - Auth event: logout - User: user_1047 - IP: 192.168.113.218 - RequestID: 4p58a5s2okb +2025-06-18T14:36:58.881Z [TRACE] payment-service - Operation: payment_processed - Processing time: 677ms - RequestID: 1tfuyrv2ute +2025-06-18T14:36:58.981Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 896ms - IP: 192.168.68.128 - User: user_1077 - RequestID: 1wdejjhjone +2025-06-18T14:36:59.081Z [DEBUG] order-service - Auth event: logout - User: user_1001 - IP: 192.168.33.76 - RequestID: eitgy3encg6 +2025-06-18T14:36:59.181Z [DEBUG] payment-service - Auth event: logout - User: user_1093 - IP: 192.168.31.117 - RequestID: n53t3xivedf +2025-06-18T14:36:59.281Z [INFO] order-service - Database DELETE on payments - Execution time: 15ms - Rows affected: 49 - RequestID: qtcwi249sq +2025-06-18T14:36:59.381Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 502 - Response time: 925ms - IP: 192.168.167.32 - User: user_1024 - RequestID: 5bw5vt6yu8e +2025-06-18T14:36:59.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.64.33 - RequestID: skaa7r8olm +2025-06-18T14:36:59.581Z [INFO] payment-service - Operation: email_sent - Processing time: 181ms - RequestID: qor4juvped +2025-06-18T14:36:59.681Z [INFO] inventory-service - Operation: cache_miss - Processing time: 488ms - RequestID: 4w4rz38mwr4 +2025-06-18T14:36:59.781Z [DEBUG] order-service - Database SELECT on payments - Execution time: 453ms - Rows affected: 67 - RequestID: 6ri3brultpb +2025-06-18T14:36:59.881Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 280ms - Rows affected: 35 - RequestID: mth9600jmzr +2025-06-18T14:36:59.981Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 500 - Response time: 686ms - IP: 192.168.100.240 - User: user_1052 - RequestID: 3k2y84n0ig7 +2025-06-18T14:37:00.081Z [TRACE] payment-service - Auth event: logout - User: user_1003 - IP: 192.168.232.72 - RequestID: e8kqmla7bte +2025-06-18T14:37:00.181Z [TRACE] inventory-service - Operation: order_created - Processing time: 713ms - RequestID: hsv9mqjhsik +2025-06-18T14:37:00.281Z [TRACE] payment-service - Operation: cache_hit - Processing time: 542ms - RequestID: ib8z87jld4p +2025-06-18T14:37:00.381Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 174ms - Rows affected: 21 - RequestID: j68xvapwmr +2025-06-18T14:37:00.481Z [DEBUG] auth-service - Database SELECT on users - Execution time: 226ms - Rows affected: 66 - RequestID: vb79j7ezm3i +2025-06-18T14:37:00.581Z [DEBUG] user-service - Database INSERT on users - Execution time: 84ms - Rows affected: 54 - RequestID: 6fqpkcxwvo4 +2025-06-18T14:37:00.681Z [INFO] order-service - Database UPDATE on payments - Execution time: 38ms - Rows affected: 48 - RequestID: ep9ckfbljtk +2025-06-18T14:37:00.781Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 9ms - Rows affected: 18 - RequestID: j36cuqnssw +2025-06-18T14:37:00.881Z [INFO] order-service - PATCH /api/v1/users - Status: 503 - Response time: 1182ms - IP: 192.168.159.94 - User: user_1002 - RequestID: fb0ozby9uq8 +2025-06-18T14:37:00.981Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 133ms - Rows affected: 63 - RequestID: 7k7eudc4jd7 +2025-06-18T14:37:01.081Z [TRACE] notification-service - Database DELETE on orders - Execution time: 117ms - Rows affected: 76 - RequestID: lfoezrcdx2i +2025-06-18T14:37:01.181Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 424ms - Rows affected: 59 - RequestID: 1udsy7awlun +2025-06-18T14:37:01.281Z [INFO] user-service - PATCH /api/v1/payments - Status: 401 - Response time: 330ms - IP: 192.168.68.158 - User: user_1082 - RequestID: 470v16oth24 +2025-06-18T14:37:01.381Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 549ms - RequestID: 078ifjk782dj +2025-06-18T14:37:01.481Z [TRACE] user-service - Operation: payment_processed - Processing time: 510ms - RequestID: uq98oar1aqs +2025-06-18T14:37:01.581Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 326ms - RequestID: sgjqynj1ntb +2025-06-18T14:37:01.681Z [TRACE] notification-service - Auth event: login_success - User: user_1024 - IP: 192.168.138.123 - RequestID: ztvtu955xc +2025-06-18T14:37:01.781Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1054 - IP: 192.168.227.77 - RequestID: wm2innh9cnb +2025-06-18T14:37:01.881Z [TRACE] order-service - Operation: email_sent - Processing time: 67ms - RequestID: 6rukawhn63 +2025-06-18T14:37:01.981Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 21ms - Rows affected: 44 - RequestID: jjwvz95fvz7 +2025-06-18T14:37:02.081Z [INFO] payment-service - POST /api/v1/orders - Status: 404 - Response time: 1608ms - IP: 192.168.85.229 - User: user_1079 - RequestID: c25zpmmiivt +2025-06-18T14:37:02.181Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 490ms - Rows affected: 20 - RequestID: xya0n4pt8zm +2025-06-18T14:37:02.281Z [INFO] payment-service - Operation: cache_miss - Processing time: 493ms - RequestID: 9gebt7yqt7 +2025-06-18T14:37:02.381Z [INFO] notification-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.235.117 - RequestID: 89dag1rnr8m +2025-06-18T14:37:02.481Z [TRACE] auth-service - Operation: cache_hit - Processing time: 838ms - RequestID: dratpsb5zvs +2025-06-18T14:37:02.581Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 423ms - RequestID: lvjvgqxr8fq +2025-06-18T14:37:02.681Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1285ms - IP: 192.168.85.229 - User: user_1091 - RequestID: b0geu6plolb +2025-06-18T14:37:02.781Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 909ms - RequestID: 6bjo57qgwth +2025-06-18T14:37:02.881Z [TRACE] inventory-service - Auth event: login_success - User: user_1082 - IP: 192.168.229.123 - RequestID: uz8dwm0j2hi +2025-06-18T14:37:02.981Z [TRACE] user-service - Database INSERT on products - Execution time: 188ms - Rows affected: 93 - RequestID: 8iusop0oab9 +2025-06-18T14:37:03.081Z [INFO] user-service - Database UPDATE on products - Execution time: 27ms - Rows affected: 28 - RequestID: u899vcczwl8 +2025-06-18T14:37:03.181Z [TRACE] notification-service - Database INSERT on products - Execution time: 207ms - Rows affected: 45 - RequestID: 90zr4e3euhq +2025-06-18T14:37:03.281Z [DEBUG] order-service - Operation: cache_hit - Processing time: 563ms - RequestID: ziteas1r84k +2025-06-18T14:37:03.381Z [TRACE] order-service - Auth event: login_success - User: user_1040 - IP: 192.168.242.165 - RequestID: y2gnh73kbfl +2025-06-18T14:37:03.481Z [TRACE] payment-service - Operation: cache_miss - Processing time: 350ms - RequestID: lfkg8jp03ye +2025-06-18T14:37:03.581Z [DEBUG] user-service - Auth event: password_change - User: user_1018 - IP: 192.168.53.133 - RequestID: joxwf278db +2025-06-18T14:37:03.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1028 - IP: 192.168.247.134 - RequestID: 9ti0mlu7809 +2025-06-18T14:37:03.781Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 500 - Response time: 406ms - IP: 192.168.13.72 - User: user_1050 - RequestID: k9k5eot7uf +2025-06-18T14:37:03.881Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 399ms - Rows affected: 35 - RequestID: 0ub6hfzunod +2025-06-18T14:37:03.981Z [TRACE] user-service - Operation: inventory_updated - Processing time: 792ms - RequestID: x6zhzabtc0h +2025-06-18T14:37:04.081Z [DEBUG] user-service - Operation: order_created - Processing time: 101ms - RequestID: wg40w5euozp +2025-06-18T14:37:04.181Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 404 - Response time: 1031ms - IP: 192.168.144.38 - User: user_1064 - RequestID: y88vr9k77u +2025-06-18T14:37:04.281Z [DEBUG] user-service - Database SELECT on products - Execution time: 158ms - Rows affected: 21 - RequestID: q2wvcpk74l9 +2025-06-18T14:37:04.381Z [INFO] auth-service - Auth event: logout - User: user_1051 - IP: 192.168.242.165 - RequestID: 0w3zl7pq6qtp +2025-06-18T14:37:04.481Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 144ms - Rows affected: 4 - RequestID: hybug4k3jo5 +2025-06-18T14:37:04.581Z [TRACE] auth-service - Operation: email_sent - Processing time: 773ms - RequestID: 70zytce7l9e +2025-06-18T14:37:04.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 246ms - RequestID: rbczs7pzoz +2025-06-18T14:37:04.781Z [INFO] auth-service - POST /api/v1/auth/login - Status: 404 - Response time: 1518ms - IP: 192.168.147.171 - User: user_1009 - RequestID: 8jef5u7yk1c +2025-06-18T14:37:04.881Z [INFO] order-service - Operation: notification_queued - Processing time: 587ms - RequestID: ed2xrhuuoza +2025-06-18T14:37:04.981Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 403 - Response time: 1924ms - IP: 192.168.68.128 - User: user_1086 - RequestID: lkev9ux2kz +2025-06-18T14:37:05.081Z [DEBUG] user-service - GET /api/v1/orders - Status: 500 - Response time: 782ms - IP: 192.168.113.218 - User: user_1054 - RequestID: hxdn1icion5 +2025-06-18T14:37:05.181Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1578ms - IP: 192.168.30.79 - User: user_1002 - RequestID: 04d3hzgqf7zh +2025-06-18T14:37:05.281Z [INFO] auth-service - Database INSERT on users - Execution time: 222ms - Rows affected: 88 - RequestID: xq0e2x989eo +2025-06-18T14:37:05.381Z [DEBUG] notification-service - Database INSERT on users - Execution time: 345ms - Rows affected: 55 - RequestID: irry6rn1g2o +2025-06-18T14:37:05.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 815ms - RequestID: pqwi5ur9i2a +2025-06-18T14:37:05.581Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 752ms - RequestID: zz2lqtrltj +2025-06-18T14:37:05.681Z [DEBUG] order-service - Operation: email_sent - Processing time: 833ms - RequestID: 8iiy3pop1rk +2025-06-18T14:37:05.781Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 201 - Response time: 344ms - IP: 192.168.28.146 - User: user_1014 - RequestID: wlz9ackuzio +2025-06-18T14:37:05.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.68.158 - RequestID: p32ydj2pyv +2025-06-18T14:37:05.981Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 54ms - RequestID: 32fiibof0da +2025-06-18T14:37:06.081Z [TRACE] payment-service - Database UPDATE on users - Execution time: 121ms - Rows affected: 86 - RequestID: qm2boeoxnbc +2025-06-18T14:37:06.181Z [TRACE] auth-service - Operation: cache_miss - Processing time: 175ms - RequestID: x55batfsz9 +2025-06-18T14:37:06.281Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 365ms - Rows affected: 62 - RequestID: 234lxnh0ztw +2025-06-18T14:37:06.381Z [INFO] user-service - Database INSERT on orders - Execution time: 409ms - Rows affected: 66 - RequestID: saa5lu6qtx +2025-06-18T14:37:06.481Z [INFO] payment-service - Database INSERT on sessions - Execution time: 422ms - Rows affected: 78 - RequestID: 6bdqnomje04 +2025-06-18T14:37:06.581Z [TRACE] payment-service - Auth event: password_change - User: user_1095 - IP: 192.168.13.72 - RequestID: 38m6e6afv7g +2025-06-18T14:37:06.681Z [INFO] auth-service - Auth event: logout - User: user_1082 - IP: 192.168.147.171 - RequestID: 46qfy95mizm +2025-06-18T14:37:06.781Z [DEBUG] user-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.181.225 - RequestID: vdiqeih6lk +2025-06-18T14:37:06.881Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 288ms - Rows affected: 59 - RequestID: dc7mutcxbsv +2025-06-18T14:37:06.981Z [INFO] payment-service - GET /api/v1/auth/login - Status: 404 - Response time: 278ms - IP: 192.168.79.143 - User: user_1071 - RequestID: 90d8sl7pxxc +2025-06-18T14:37:07.081Z [DEBUG] notification-service - PUT /api/v1/users - Status: 503 - Response time: 1205ms - IP: 192.168.189.103 - User: user_1059 - RequestID: iyjjgpkqw6h +2025-06-18T14:37:07.181Z [TRACE] inventory-service - Database SELECT on products - Execution time: 24ms - Rows affected: 36 - RequestID: 29aai3k3cvn +2025-06-18T14:37:07.281Z [INFO] order-service - Auth event: login_success - User: user_1014 - IP: 192.168.46.63 - RequestID: mt4q9v95ibh +2025-06-18T14:37:07.381Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 13ms - Rows affected: 45 - RequestID: j60t5bh5ex9 +2025-06-18T14:37:07.481Z [INFO] order-service - Operation: webhook_sent - Processing time: 216ms - RequestID: 6ffcm3xfgzb +2025-06-18T14:37:07.581Z [INFO] notification-service - Database SELECT on products - Execution time: 246ms - Rows affected: 17 - RequestID: ejq74excixk +2025-06-18T14:37:07.681Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 502 - Response time: 213ms - IP: 192.168.174.114 - User: user_1080 - RequestID: psfmueo4oy +2025-06-18T14:37:07.781Z [INFO] auth-service - GET /api/v1/auth/login - Status: 500 - Response time: 1369ms - IP: 192.168.31.117 - User: user_1093 - RequestID: qt46puqb3ll +2025-06-18T14:37:07.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1048 - IP: 192.168.13.72 - RequestID: yun7kqsn93 +2025-06-18T14:37:07.981Z [TRACE] payment-service - Auth event: logout - User: user_1059 - IP: 192.168.113.218 - RequestID: mpavbggg1qp +2025-06-18T14:37:08.081Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 502 - Response time: 686ms - IP: 192.168.32.38 - User: user_1026 - RequestID: gz7c0al2qxt +2025-06-18T14:37:08.181Z [INFO] order-service - Auth event: login_failed - User: user_1096 - IP: 192.168.44.5 - RequestID: v5ryrma97r9 +2025-06-18T14:37:08.281Z [INFO] notification-service - Operation: payment_processed - Processing time: 1001ms - RequestID: ihiznl9wd6r +2025-06-18T14:37:08.381Z [DEBUG] notification-service - Operation: order_created - Processing time: 743ms - RequestID: r1mjuy9idm +2025-06-18T14:37:08.481Z [TRACE] auth-service - PUT /api/v1/users - Status: 503 - Response time: 1387ms - IP: 192.168.97.87 - User: user_1069 - RequestID: 6xxw4hma9id +2025-06-18T14:37:08.581Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 365ms - Rows affected: 58 - RequestID: 1lmv6tmgw4e +2025-06-18T14:37:08.681Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1102ms - IP: 192.168.189.103 - User: user_1020 - RequestID: 6quvpltryx6 +2025-06-18T14:37:08.781Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 165ms - Rows affected: 50 - RequestID: 58dwtrvai7o +2025-06-18T14:37:08.881Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.104.37 - RequestID: h3lywd3ong +2025-06-18T14:37:08.981Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 401 - Response time: 312ms - IP: 192.168.1.152 - User: user_1091 - RequestID: 220a9fjgc5z +2025-06-18T14:37:09.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 719ms - RequestID: luxjib5pi5 +2025-06-18T14:37:09.181Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 36ms - Rows affected: 77 - RequestID: xsn44bsksqd +2025-06-18T14:37:09.281Z [DEBUG] order-service - Database DELETE on users - Execution time: 355ms - Rows affected: 30 - RequestID: q46qflcu3ui +2025-06-18T14:37:09.381Z [INFO] user-service - Database INSERT on sessions - Execution time: 110ms - Rows affected: 77 - RequestID: mp2xqpullkk +2025-06-18T14:37:09.481Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 199ms - Rows affected: 20 - RequestID: q3a3ctjrcpi +2025-06-18T14:37:09.581Z [TRACE] payment-service - Auth event: logout - User: user_1059 - IP: 192.168.68.128 - RequestID: qhml5p521q +2025-06-18T14:37:09.681Z [TRACE] notification-service - Database DELETE on orders - Execution time: 233ms - Rows affected: 68 - RequestID: u23r25drioo +2025-06-18T14:37:09.781Z [INFO] payment-service - Auth event: password_change - User: user_1097 - IP: 192.168.158.144 - RequestID: 7ws5ra7gpk3 +2025-06-18T14:37:09.881Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 201 - Response time: 1315ms - IP: 192.168.32.38 - User: user_1080 - RequestID: wxcwf6dw0fp +2025-06-18T14:37:09.981Z [INFO] payment-service - Operation: order_created - Processing time: 328ms - RequestID: vpgyn96hsdd +2025-06-18T14:37:10.081Z [INFO] inventory-service - Auth event: login_success - User: user_1016 - IP: 192.168.159.94 - RequestID: yja4ylzll1d +2025-06-18T14:37:10.181Z [DEBUG] user-service - Auth event: login_success - User: user_1026 - IP: 192.168.10.184 - RequestID: dyijz4yvlah +2025-06-18T14:37:10.281Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 384ms - Rows affected: 33 - RequestID: xe96kwcte2f +2025-06-18T14:37:10.381Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 565ms - RequestID: 8xn6aeejwjj +2025-06-18T14:37:10.481Z [TRACE] inventory-service - Auth event: logout - User: user_1085 - IP: 192.168.170.215 - RequestID: r70ydunv4w +2025-06-18T14:37:10.581Z [TRACE] notification-service - Auth event: login_failed - User: user_1098 - IP: 192.168.14.77 - RequestID: o7ibhgxnvrq +2025-06-18T14:37:10.681Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 56ms - Rows affected: 7 - RequestID: wkh6sefotw +2025-06-18T14:37:10.781Z [TRACE] inventory-service - Auth event: login_failed - User: user_1041 - IP: 192.168.11.60 - RequestID: cgn41z71wxe +2025-06-18T14:37:10.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 804ms - RequestID: n0nyxdpay78 +2025-06-18T14:37:10.981Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 28ms - Rows affected: 54 - RequestID: axxnpi818uf +2025-06-18T14:37:11.081Z [DEBUG] user-service - Database INSERT on products - Execution time: 360ms - Rows affected: 48 - RequestID: n51lfdv3rqf +2025-06-18T14:37:11.181Z [TRACE] payment-service - Database DELETE on products - Execution time: 404ms - Rows affected: 34 - RequestID: izkyvnhnk4k +2025-06-18T14:37:11.281Z [TRACE] payment-service - Auth event: password_change - User: user_1051 - IP: 192.168.167.32 - RequestID: rxrztulm7fj +2025-06-18T14:37:11.381Z [INFO] auth-service - Database SELECT on payments - Execution time: 357ms - Rows affected: 39 - RequestID: 8uki3vrpshj +2025-06-18T14:37:11.481Z [INFO] notification-service - POST /api/v1/auth/login - Status: 400 - Response time: 754ms - IP: 192.168.187.199 - User: user_1046 - RequestID: luiv5ogavzl +2025-06-18T14:37:11.581Z [INFO] user-service - Database UPDATE on products - Execution time: 327ms - Rows affected: 60 - RequestID: sovvdi1h5c +2025-06-18T14:37:11.681Z [TRACE] order-service - Operation: email_sent - Processing time: 903ms - RequestID: o3nt2v084xg +2025-06-18T14:37:11.781Z [TRACE] order-service - Operation: inventory_updated - Processing time: 789ms - RequestID: a7hr214o14p +2025-06-18T14:37:11.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1045 - IP: 192.168.235.117 - RequestID: h24b7btdbbj +2025-06-18T14:37:11.981Z [INFO] user-service - PUT /api/v1/inventory - Status: 400 - Response time: 1487ms - IP: 192.168.33.76 - User: user_1056 - RequestID: lxi1drjkc +2025-06-18T14:37:12.081Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 465ms - Rows affected: 19 - RequestID: lyg0f3yipwe +2025-06-18T14:37:12.181Z [DEBUG] order-service - Auth event: password_change - User: user_1036 - IP: 192.168.46.63 - RequestID: 0zcp3z37vnq +2025-06-18T14:37:12.281Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1659ms - IP: 192.168.79.141 - User: user_1053 - RequestID: tdutxk5g0h +2025-06-18T14:37:12.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.44.5 - RequestID: x8qbrjp4xo +2025-06-18T14:37:12.481Z [TRACE] payment-service - POST /api/v1/inventory - Status: 403 - Response time: 300ms - IP: 192.168.1.152 - User: user_1046 - RequestID: es9brdddlyq +2025-06-18T14:37:12.581Z [INFO] user-service - Database INSERT on users - Execution time: 67ms - Rows affected: 50 - RequestID: 1wvzc3edfvi +2025-06-18T14:37:12.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.133.7 - RequestID: cv61324iu6 +2025-06-18T14:37:12.781Z [TRACE] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 1799ms - IP: 192.168.194.41 - User: user_1032 - RequestID: jlr984ffazh +2025-06-18T14:37:12.881Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 430ms - Rows affected: 55 - RequestID: vnysns5dq7 +2025-06-18T14:37:12.981Z [TRACE] payment-service - Operation: cache_hit - Processing time: 599ms - RequestID: 303jr14biya +2025-06-18T14:37:13.081Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 43ms - Rows affected: 59 - RequestID: wvmerwbphsq +2025-06-18T14:37:13.181Z [INFO] inventory-service - Database SELECT on products - Execution time: 459ms - Rows affected: 76 - RequestID: 3cct18v0e17 +2025-06-18T14:37:13.281Z [TRACE] payment-service - Auth event: password_change - User: user_1091 - IP: 192.168.46.63 - RequestID: kecdevuj89 +2025-06-18T14:37:13.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.242.165 - RequestID: 3vxv7izjvjg +2025-06-18T14:37:13.481Z [DEBUG] auth-service - Operation: order_created - Processing time: 511ms - RequestID: 98e0tsbu77h +2025-06-18T14:37:13.581Z [INFO] user-service - POST /api/v1/payments - Status: 201 - Response time: 1915ms - IP: 192.168.79.116 - User: user_1063 - RequestID: t4b6al7p6cj +2025-06-18T14:37:13.681Z [TRACE] inventory-service - POST /api/v1/payments - Status: 200 - Response time: 445ms - IP: 192.168.159.94 - User: user_1004 - RequestID: 5ix0eicx15c +2025-06-18T14:37:13.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1045 - IP: 192.168.81.206 - RequestID: o7deotk3b9c +2025-06-18T14:37:13.881Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 271ms - RequestID: xxhqlumwor +2025-06-18T14:37:13.981Z [TRACE] auth-service - PATCH /api/v1/users - Status: 502 - Response time: 644ms - IP: 192.168.235.117 - User: user_1070 - RequestID: f1wyvlnhcxa +2025-06-18T14:37:14.081Z [TRACE] payment-service - GET /api/v1/payments - Status: 400 - Response time: 1076ms - IP: 192.168.159.94 - User: user_1057 - RequestID: t0p5k7cn87s +2025-06-18T14:37:14.181Z [INFO] user-service - Database UPDATE on orders - Execution time: 297ms - Rows affected: 73 - RequestID: gkxo5ou1h4a +2025-06-18T14:37:14.281Z [TRACE] auth-service - Auth event: login_success - User: user_1056 - IP: 192.168.13.72 - RequestID: ufcoehmpxd +2025-06-18T14:37:14.381Z [TRACE] auth-service - Database SELECT on users - Execution time: 291ms - Rows affected: 11 - RequestID: b9blz78rs3 +2025-06-18T14:37:14.481Z [DEBUG] notification-service - Auth event: login_failed - User: user_1014 - IP: 192.168.113.218 - RequestID: igeh7uuh4y +2025-06-18T14:37:14.581Z [DEBUG] notification-service - PUT /api/v1/users - Status: 201 - Response time: 1769ms - IP: 192.168.187.199 - User: user_1088 - RequestID: 5e9vmr4d93l +2025-06-18T14:37:14.681Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 403 - Response time: 1776ms - IP: 192.168.97.87 - User: user_1096 - RequestID: 43mli27twrx +2025-06-18T14:37:14.781Z [INFO] user-service - Auth event: login_failed - User: user_1018 - IP: 192.168.28.146 - RequestID: oe2k1e6uoo8 +2025-06-18T14:37:14.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 317ms - RequestID: 3twe8fncfok +2025-06-18T14:37:14.981Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 114ms - RequestID: df8qw7s1eid +2025-06-18T14:37:15.081Z [INFO] user-service - Database INSERT on payments - Execution time: 292ms - Rows affected: 80 - RequestID: znty523itdq +2025-06-18T14:37:15.181Z [TRACE] auth-service - Operation: order_created - Processing time: 374ms - RequestID: ic23pmv7j2c +2025-06-18T14:37:15.281Z [INFO] user-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.100.240 - RequestID: mghmikthhwi +2025-06-18T14:37:15.381Z [TRACE] auth-service - Database DELETE on payments - Execution time: 203ms - Rows affected: 81 - RequestID: hkdsy0f1hcs +2025-06-18T14:37:15.481Z [DEBUG] payment-service - Auth event: login_success - User: user_1064 - IP: 192.168.68.128 - RequestID: vv88ccbwz3 +2025-06-18T14:37:15.581Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 201 - Response time: 324ms - IP: 192.168.44.5 - User: user_1005 - RequestID: qlo5bmuzejd +2025-06-18T14:37:15.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.113.218 - RequestID: qh99llnuu4c +2025-06-18T14:37:15.781Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 348ms - Rows affected: 96 - RequestID: y2u1tt7t3a +2025-06-18T14:37:15.881Z [DEBUG] order-service - Operation: cache_hit - Processing time: 398ms - RequestID: vleucds4jm +2025-06-18T14:37:15.981Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1736ms - IP: 192.168.85.229 - User: user_1015 - RequestID: pqynfs93l78 +2025-06-18T14:37:16.081Z [TRACE] auth-service - Database INSERT on payments - Execution time: 103ms - Rows affected: 95 - RequestID: pnxvmsuz3o +2025-06-18T14:37:16.181Z [DEBUG] auth-service - PUT /api/v1/users - Status: 200 - Response time: 929ms - IP: 192.168.13.72 - User: user_1030 - RequestID: shxsd8jl56 +2025-06-18T14:37:16.281Z [INFO] order-service - POST /api/v1/payments - Status: 401 - Response time: 347ms - IP: 192.168.31.117 - User: user_1044 - RequestID: 9dhpb2sl9ji +2025-06-18T14:37:16.381Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1882ms - IP: 192.168.159.94 - User: user_1056 - RequestID: ob187dbapoh +2025-06-18T14:37:16.481Z [INFO] user-service - Operation: email_sent - Processing time: 617ms - RequestID: gicfv0dj37t +2025-06-18T14:37:16.581Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 403 - Response time: 238ms - IP: 192.168.170.215 - User: user_1036 - RequestID: ddzhtocsf2 +2025-06-18T14:37:16.681Z [INFO] inventory-service - Auth event: login_failed - User: user_1077 - IP: 192.168.141.100 - RequestID: s8vyg9dear +2025-06-18T14:37:16.781Z [INFO] order-service - PATCH /api/v1/orders - Status: 503 - Response time: 1565ms - IP: 192.168.242.165 - User: user_1089 - RequestID: lmm7yy2iswp +2025-06-18T14:37:16.881Z [DEBUG] inventory-service - Operation: order_created - Processing time: 707ms - RequestID: 5peir6embew +2025-06-18T14:37:16.981Z [TRACE] notification-service - Operation: cache_hit - Processing time: 567ms - RequestID: ta1sicbcb9f +2025-06-18T14:37:17.081Z [INFO] notification-service - Auth event: login_success - User: user_1045 - IP: 192.168.100.240 - RequestID: pqz128sha4b +2025-06-18T14:37:17.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1031 - IP: 192.168.211.72 - RequestID: ls2cq0w1czl +2025-06-18T14:37:17.281Z [TRACE] notification-service - Auth event: login_failed - User: user_1065 - IP: 192.168.97.87 - RequestID: kxp5uc83sb +2025-06-18T14:37:17.381Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 940ms - RequestID: 3kor724ydae +2025-06-18T14:37:17.481Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 185ms - Rows affected: 31 - RequestID: 7fv0uth6676 +2025-06-18T14:37:17.581Z [INFO] auth-service - Operation: email_sent - Processing time: 605ms - RequestID: icqqrppwp2o +2025-06-18T14:37:17.681Z [TRACE] auth-service - Auth event: login_failed - User: user_1002 - IP: 192.168.85.229 - RequestID: 44zozc4ez5b +2025-06-18T14:37:17.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1066 - IP: 192.168.68.128 - RequestID: qaebumhq0hk +2025-06-18T14:37:17.881Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1281ms - IP: 192.168.240.169 - User: user_1015 - RequestID: mcu1l0bjsm +2025-06-18T14:37:17.981Z [INFO] user-service - Operation: payment_processed - Processing time: 1001ms - RequestID: rl99o6qvxt +2025-06-18T14:37:18.081Z [TRACE] auth-service - Auth event: password_change - User: user_1082 - IP: 192.168.97.87 - RequestID: x00trzn1mas +2025-06-18T14:37:18.181Z [INFO] user-service - Auth event: password_change - User: user_1057 - IP: 192.168.31.117 - RequestID: 4vi1lzgo75b +2025-06-18T14:37:18.281Z [INFO] inventory-service - Database UPDATE on users - Execution time: 233ms - Rows affected: 71 - RequestID: vg43bquwkwh +2025-06-18T14:37:18.381Z [DEBUG] order-service - Database UPDATE on users - Execution time: 402ms - Rows affected: 52 - RequestID: e8vddqftqjn +2025-06-18T14:37:18.481Z [INFO] user-service - Database DELETE on orders - Execution time: 56ms - Rows affected: 99 - RequestID: k5ax6ysvlj +2025-06-18T14:37:18.581Z [TRACE] inventory-service - Database DELETE on products - Execution time: 216ms - Rows affected: 75 - RequestID: wh0wdsw93oh +2025-06-18T14:37:18.681Z [TRACE] order-service - Operation: inventory_updated - Processing time: 522ms - RequestID: 7xdeqx4niom +2025-06-18T14:37:18.781Z [TRACE] payment-service - GET /api/v1/orders - Status: 503 - Response time: 1967ms - IP: 192.168.44.5 - User: user_1015 - RequestID: bn9rynbl45 +2025-06-18T14:37:18.881Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 25ms - Rows affected: 34 - RequestID: wnq73rsjbe +2025-06-18T14:37:18.981Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1812ms - IP: 192.168.158.144 - User: user_1070 - RequestID: 6u0yka88jfy +2025-06-18T14:37:19.081Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1013ms - IP: 192.168.1.152 - User: user_1049 - RequestID: q0aqz6zieg +2025-06-18T14:37:19.181Z [INFO] payment-service - Database INSERT on sessions - Execution time: 451ms - Rows affected: 44 - RequestID: 9vt4qf5lsi +2025-06-18T14:37:19.281Z [INFO] order-service - Database INSERT on orders - Execution time: 369ms - Rows affected: 53 - RequestID: wzejbtah7hr +2025-06-18T14:37:19.381Z [INFO] user-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.235.117 - RequestID: y7nf9enn48 +2025-06-18T14:37:19.481Z [INFO] order-service - Database SELECT on orders - Execution time: 90ms - Rows affected: 58 - RequestID: iwcwiiwt0rl +2025-06-18T14:37:19.581Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1694ms - IP: 192.168.247.134 - User: user_1091 - RequestID: 1j5ylluc15h +2025-06-18T14:37:19.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 557ms - RequestID: 0gryvgcmgy6r +2025-06-18T14:37:19.781Z [TRACE] payment-service - Auth event: password_change - User: user_1079 - IP: 192.168.31.117 - RequestID: ho2di8w1u9u +2025-06-18T14:37:19.881Z [INFO] order-service - GET /api/v1/auth/login - Status: 500 - Response time: 100ms - IP: 192.168.100.240 - User: user_1083 - RequestID: f3wsu3ezyx +2025-06-18T14:37:19.981Z [INFO] notification-service - Operation: cache_hit - Processing time: 838ms - RequestID: 8tf7qmtipg7 +2025-06-18T14:37:20.081Z [INFO] user-service - Auth event: login_success - User: user_1001 - IP: 192.168.64.33 - RequestID: sjyryjw3qv +2025-06-18T14:37:20.181Z [TRACE] order-service - Database DELETE on orders - Execution time: 370ms - Rows affected: 79 - RequestID: os0lfxxknul +2025-06-18T14:37:20.281Z [INFO] payment-service - Database INSERT on sessions - Execution time: 246ms - Rows affected: 39 - RequestID: hg1sgg7kkt8 +2025-06-18T14:37:20.381Z [INFO] order-service - Operation: email_sent - Processing time: 128ms - RequestID: qra6az7aocb +2025-06-18T14:37:20.481Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 403 - Response time: 582ms - IP: 192.168.30.79 - User: user_1071 - RequestID: a95zz4g1s4 +2025-06-18T14:37:20.581Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 15ms - Rows affected: 72 - RequestID: my6sao6ryc +2025-06-18T14:37:20.681Z [INFO] notification-service - Operation: notification_queued - Processing time: 852ms - RequestID: xcrpt52caz +2025-06-18T14:37:20.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1021 - IP: 192.168.68.128 - RequestID: k4r08eek50h +2025-06-18T14:37:20.881Z [TRACE] order-service - Auth event: login_success - User: user_1006 - IP: 192.168.113.218 - RequestID: lm5ptavumxm +2025-06-18T14:37:20.981Z [TRACE] auth-service - PATCH /api/v1/users - Status: 500 - Response time: 533ms - IP: 192.168.167.32 - User: user_1044 - RequestID: golr2w2o3l +2025-06-18T14:37:21.081Z [TRACE] notification-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.227.77 - RequestID: 4h9bz26oi8 +2025-06-18T14:37:21.181Z [TRACE] user-service - Database INSERT on users - Execution time: 457ms - Rows affected: 80 - RequestID: rludcehz39m +2025-06-18T14:37:21.281Z [TRACE] order-service - Operation: inventory_updated - Processing time: 764ms - RequestID: 6fvyykq3odn +2025-06-18T14:37:21.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.181.225 - RequestID: byj50ah5j5u +2025-06-18T14:37:21.481Z [INFO] auth-service - Operation: cache_miss - Processing time: 650ms - RequestID: tyhlepy3x3a +2025-06-18T14:37:21.581Z [INFO] auth-service - Auth event: login_success - User: user_1034 - IP: 192.168.68.158 - RequestID: d4kwskl5u2p +2025-06-18T14:37:21.681Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 359ms - Rows affected: 30 - RequestID: awtun0t5097 +2025-06-18T14:37:21.781Z [TRACE] auth-service - Operation: cache_miss - Processing time: 927ms - RequestID: sexraqgijm +2025-06-18T14:37:21.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 682ms - RequestID: woqn9i6sxx +2025-06-18T14:37:21.981Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1727ms - IP: 192.168.158.144 - User: user_1023 - RequestID: 1b3ebfkuzvw +2025-06-18T14:37:22.081Z [INFO] auth-service - Operation: webhook_sent - Processing time: 697ms - RequestID: lib4je72tbs +2025-06-18T14:37:22.181Z [INFO] user-service - Operation: cache_miss - Processing time: 460ms - RequestID: y22grn3o3xe +2025-06-18T14:37:22.281Z [DEBUG] user-service - Auth event: login_failed - User: user_1081 - IP: 192.168.113.218 - RequestID: x4xu5j2anbq +2025-06-18T14:37:22.381Z [DEBUG] order-service - Database INSERT on payments - Execution time: 395ms - Rows affected: 62 - RequestID: 2yuwugikqib +2025-06-18T14:37:22.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 892ms - RequestID: odocfg4htgo +2025-06-18T14:37:22.581Z [DEBUG] order-service - Auth event: login_success - User: user_1080 - IP: 192.168.104.37 - RequestID: 7ei7qcbv9q7 +2025-06-18T14:37:22.681Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 375ms - RequestID: 38w3i5vlwnc +2025-06-18T14:37:22.781Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 344ms - Rows affected: 13 - RequestID: eycpr979psr +2025-06-18T14:37:22.881Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1827ms - IP: 192.168.32.38 - User: user_1070 - RequestID: l6bo4b2e459 +2025-06-18T14:37:22.981Z [TRACE] order-service - Operation: email_sent - Processing time: 644ms - RequestID: ars72o536ff +2025-06-18T14:37:23.081Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 502 - Response time: 527ms - IP: 192.168.144.38 - User: user_1085 - RequestID: tup20bl0i8 +2025-06-18T14:37:23.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 181ms - RequestID: fpz3ibua6gq +2025-06-18T14:37:23.281Z [INFO] inventory-service - Database INSERT on products - Execution time: 145ms - Rows affected: 8 - RequestID: 91yfeggcon +2025-06-18T14:37:23.381Z [TRACE] order-service - Operation: payment_processed - Processing time: 290ms - RequestID: tlu8ci0ygx +2025-06-18T14:37:23.481Z [TRACE] user-service - Auth event: login_failed - User: user_1057 - IP: 192.168.79.143 - RequestID: y0cjahzr858 +2025-06-18T14:37:23.581Z [INFO] inventory-service - Operation: cache_hit - Processing time: 201ms - RequestID: 4zsne3z7mda +2025-06-18T14:37:23.681Z [INFO] notification-service - Operation: cache_miss - Processing time: 454ms - RequestID: feurqx72oz +2025-06-18T14:37:23.781Z [DEBUG] order-service - Auth event: login_success - User: user_1071 - IP: 192.168.181.225 - RequestID: 95v4wk158ci +2025-06-18T14:37:23.881Z [INFO] user-service - Auth event: logout - User: user_1079 - IP: 192.168.31.117 - RequestID: b1u95ac2uiq +2025-06-18T14:37:23.981Z [INFO] notification-service - Database INSERT on users - Execution time: 234ms - Rows affected: 94 - RequestID: be827oer3rm +2025-06-18T14:37:24.081Z [DEBUG] order-service - Database SELECT on products - Execution time: 150ms - Rows affected: 79 - RequestID: l92n9pz3f2 +2025-06-18T14:37:24.181Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 185ms - Rows affected: 61 - RequestID: 817gwlshxye +2025-06-18T14:37:24.281Z [TRACE] user-service - Database UPDATE on users - Execution time: 304ms - Rows affected: 98 - RequestID: l5nvs0g5m7 +2025-06-18T14:37:24.381Z [TRACE] order-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.81.206 - RequestID: iaxljev4bg +2025-06-18T14:37:24.481Z [INFO] user-service - Operation: cache_miss - Processing time: 355ms - RequestID: lb57iukudzr +2025-06-18T14:37:24.581Z [TRACE] order-service - Operation: notification_queued - Processing time: 977ms - RequestID: 2o4dliucm89 +2025-06-18T14:37:24.681Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 482ms - Rows affected: 3 - RequestID: mlx50ygxf7m +2025-06-18T14:37:24.781Z [INFO] payment-service - Auth event: logout - User: user_1068 - IP: 192.168.235.117 - RequestID: gyrcdyuyn9g +2025-06-18T14:37:24.881Z [INFO] notification-service - Auth event: logout - User: user_1032 - IP: 192.168.189.103 - RequestID: 1pedy0ealom +2025-06-18T14:37:24.981Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1817ms - IP: 192.168.167.32 - User: user_1027 - RequestID: insnsaq23r +2025-06-18T14:37:25.081Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 434ms - Rows affected: 78 - RequestID: 0na2vxj0zldc +2025-06-18T14:37:25.181Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1331ms - IP: 192.168.28.146 - User: user_1036 - RequestID: r4rlyz0yn1i +2025-06-18T14:37:25.281Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 205ms - Rows affected: 11 - RequestID: 7n2qdjf2huf +2025-06-18T14:37:25.381Z [DEBUG] order-service - Operation: cache_hit - Processing time: 535ms - RequestID: nwjy5kw9w7c +2025-06-18T14:37:25.481Z [INFO] auth-service - Operation: cache_miss - Processing time: 795ms - RequestID: mhdqu6mri89 +2025-06-18T14:37:25.581Z [TRACE] payment-service - PUT /api/v1/orders - Status: 200 - Response time: 1578ms - IP: 192.168.113.218 - User: user_1095 - RequestID: l2h6y289a1s +2025-06-18T14:37:25.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 485ms - RequestID: g2qtxcab7nn +2025-06-18T14:37:25.781Z [INFO] inventory-service - Operation: order_created - Processing time: 308ms - RequestID: dxl5ryruh6t +2025-06-18T14:37:25.881Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 149ms - Rows affected: 64 - RequestID: pwmhvk5nd78 +2025-06-18T14:37:25.981Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 295ms - Rows affected: 44 - RequestID: koxpvlk4ahb +2025-06-18T14:37:26.081Z [DEBUG] order-service - Auth event: login_success - User: user_1070 - IP: 192.168.159.94 - RequestID: jatbxsrnrum +2025-06-18T14:37:26.181Z [DEBUG] user-service - Database SELECT on orders - Execution time: 145ms - Rows affected: 68 - RequestID: nrnb0tnvm3b +2025-06-18T14:37:26.281Z [DEBUG] user-service - Auth event: password_change - User: user_1039 - IP: 192.168.227.77 - RequestID: sf8uf2og6g +2025-06-18T14:37:26.381Z [INFO] notification-service - DELETE /api/v1/orders - Status: 201 - Response time: 851ms - IP: 192.168.11.60 - User: user_1063 - RequestID: ay55a09puaf +2025-06-18T14:37:26.481Z [DEBUG] user-service - Operation: order_created - Processing time: 761ms - RequestID: iz51u3bdf6 +2025-06-18T14:37:26.581Z [TRACE] user-service - Operation: webhook_sent - Processing time: 882ms - RequestID: 7hdxxejq1b +2025-06-18T14:37:26.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 576ms - RequestID: r52lgf7g7xq +2025-06-18T14:37:26.781Z [TRACE] auth-service - PUT /api/v1/payments - Status: 404 - Response time: 236ms - IP: 192.168.229.123 - User: user_1099 - RequestID: lgxx3jotmqk +2025-06-18T14:37:26.881Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1807ms - IP: 192.168.113.218 - User: user_1048 - RequestID: y1z81spn0en +2025-06-18T14:37:26.981Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 439ms - Rows affected: 44 - RequestID: gzahyg63pxm +2025-06-18T14:37:27.081Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 400 - Response time: 1290ms - IP: 192.168.1.152 - User: user_1024 - RequestID: gveuyc8fq0m +2025-06-18T14:37:27.181Z [INFO] notification-service - Auth event: logout - User: user_1084 - IP: 192.168.227.233 - RequestID: z10cac92u1 +2025-06-18T14:37:27.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1024 - IP: 192.168.30.79 - RequestID: x7tso1qrhmk +2025-06-18T14:37:27.381Z [INFO] payment-service - Database INSERT on sessions - Execution time: 7ms - Rows affected: 39 - RequestID: pa0v6cga0gc +2025-06-18T14:37:27.481Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 201 - Response time: 888ms - IP: 192.168.235.117 - User: user_1041 - RequestID: uqnogx86qam +2025-06-18T14:37:27.581Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 801ms - RequestID: kt7zyfsw2x7 +2025-06-18T14:37:27.681Z [TRACE] payment-service - POST /api/v1/orders - Status: 403 - Response time: 421ms - IP: 192.168.33.76 - User: user_1060 - RequestID: gopa0p7xlw +2025-06-18T14:37:27.781Z [TRACE] auth-service - Database SELECT on products - Execution time: 361ms - Rows affected: 78 - RequestID: ds0j67npp34 +2025-06-18T14:37:27.881Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 502 - Response time: 432ms - IP: 192.168.187.199 - User: user_1003 - RequestID: sb1tafw3nc +2025-06-18T14:37:27.981Z [INFO] user-service - Database UPDATE on sessions - Execution time: 215ms - Rows affected: 67 - RequestID: dor6y5l9ij7 +2025-06-18T14:37:28.081Z [TRACE] notification-service - Operation: cache_miss - Processing time: 581ms - RequestID: dtzt8cd70ur +2025-06-18T14:37:28.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 736ms - RequestID: xtik7ifrj7d +2025-06-18T14:37:28.281Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 500 - Response time: 401ms - IP: 192.168.64.33 - User: user_1072 - RequestID: q2q23vhd04 +2025-06-18T14:37:28.381Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 893ms - RequestID: 1fqbm9beggj +2025-06-18T14:37:28.481Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 945ms - IP: 192.168.44.5 - User: user_1057 - RequestID: m1j85idq9ba +2025-06-18T14:37:28.581Z [TRACE] user-service - Database INSERT on users - Execution time: 419ms - Rows affected: 82 - RequestID: 0kpnt1c1x17k +2025-06-18T14:37:28.681Z [INFO] payment-service - PUT /api/v1/users - Status: 401 - Response time: 584ms - IP: 192.168.196.226 - User: user_1048 - RequestID: ncyymru6ex +2025-06-18T14:37:28.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 878ms - RequestID: ibzwp7kk1ui +2025-06-18T14:37:28.881Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 1033ms - RequestID: y38n6qpjsd +2025-06-18T14:37:28.981Z [INFO] auth-service - Database DELETE on products - Execution time: 473ms - Rows affected: 44 - RequestID: dm09pshr9tj +2025-06-18T14:37:29.081Z [TRACE] order-service - Database UPDATE on users - Execution time: 405ms - Rows affected: 50 - RequestID: p5739ea3gyf +2025-06-18T14:37:29.181Z [INFO] inventory-service - Auth event: login_success - User: user_1055 - IP: 192.168.181.225 - RequestID: v5ubb39x5n +2025-06-18T14:37:29.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 107ms - RequestID: 2i5ufw89z4z +2025-06-18T14:37:29.381Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 219ms - RequestID: ah0txbq9b9j +2025-06-18T14:37:29.481Z [INFO] payment-service - Auth event: login_success - User: user_1039 - IP: 192.168.100.240 - RequestID: 7okndh53ukx +2025-06-18T14:37:29.581Z [DEBUG] auth-service - Database SELECT on products - Execution time: 64ms - Rows affected: 40 - RequestID: xpnrjc3vgvj +2025-06-18T14:37:29.681Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 400 - Response time: 1398ms - IP: 192.168.242.165 - User: user_1080 - RequestID: oj4i8rybwrg +2025-06-18T14:37:29.781Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 193ms - RequestID: 6tn82s12wuh +2025-06-18T14:37:29.881Z [TRACE] inventory-service - GET /api/v1/payments - Status: 201 - Response time: 786ms - IP: 192.168.227.233 - User: user_1072 - RequestID: uciaj1320tm +2025-06-18T14:37:29.981Z [TRACE] payment-service - Database INSERT on payments - Execution time: 206ms - Rows affected: 28 - RequestID: ic27ty9xbj +2025-06-18T14:37:30.081Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 768ms - IP: 192.168.147.171 - User: user_1012 - RequestID: caxj1v8gnro +2025-06-18T14:37:30.181Z [DEBUG] order-service - Operation: order_created - Processing time: 1000ms - RequestID: lzrz2ug523e +2025-06-18T14:37:30.281Z [INFO] inventory-service - Operation: payment_processed - Processing time: 341ms - RequestID: ljie9jo9vgc +2025-06-18T14:37:30.381Z [INFO] payment-service - Database INSERT on users - Execution time: 405ms - Rows affected: 0 - RequestID: 5wy0h5h3akd +2025-06-18T14:37:30.481Z [TRACE] inventory-service - POST /api/v1/users - Status: 401 - Response time: 829ms - IP: 192.168.36.218 - User: user_1043 - RequestID: 3fk5p3mid2u +2025-06-18T14:37:30.581Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 84ms - RequestID: u633y5zw82h +2025-06-18T14:37:30.681Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 200 - Response time: 2001ms - IP: 192.168.44.5 - User: user_1005 - RequestID: uvgunaomvuq +2025-06-18T14:37:30.781Z [INFO] inventory-service - Database SELECT on orders - Execution time: 404ms - Rows affected: 63 - RequestID: 4k20ktpp9mn +2025-06-18T14:37:30.881Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 299ms - RequestID: udhxnyy6vnp +2025-06-18T14:37:30.981Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 53ms - Rows affected: 30 - RequestID: u8r35drgtp +2025-06-18T14:37:31.081Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 251ms - IP: 192.168.104.37 - User: user_1071 - RequestID: o7o4f7e272 +2025-06-18T14:37:31.181Z [INFO] order-service - Database INSERT on products - Execution time: 26ms - Rows affected: 44 - RequestID: s6cnel2e19 +2025-06-18T14:37:31.281Z [TRACE] auth-service - Database UPDATE on users - Execution time: 64ms - Rows affected: 26 - RequestID: h13uy736qd8 +2025-06-18T14:37:31.381Z [TRACE] payment-service - Database DELETE on orders - Execution time: 100ms - Rows affected: 37 - RequestID: kp2j4m0cshf +2025-06-18T14:37:31.481Z [INFO] auth-service - Operation: cache_miss - Processing time: 997ms - RequestID: yv4dzohiwbt +2025-06-18T14:37:31.581Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 235ms - Rows affected: 59 - RequestID: i9kq0atee +2025-06-18T14:37:31.681Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 400 - Response time: 372ms - IP: 192.168.32.38 - User: user_1066 - RequestID: y4e79zdcdp +2025-06-18T14:37:31.781Z [INFO] notification-service - Operation: email_sent - Processing time: 592ms - RequestID: br6a2jvv2ig +2025-06-18T14:37:31.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1085 - IP: 192.168.232.72 - RequestID: a91h75sph7j +2025-06-18T14:37:31.981Z [TRACE] order-service - Operation: cache_miss - Processing time: 173ms - RequestID: nn7tyygp3xa +2025-06-18T14:37:32.081Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 391ms - RequestID: mq7w1z3qbq +2025-06-18T14:37:32.181Z [INFO] notification-service - Operation: webhook_sent - Processing time: 807ms - RequestID: i6te8600owl +2025-06-18T14:37:32.281Z [TRACE] payment-service - Auth event: password_change - User: user_1054 - IP: 192.168.32.38 - RequestID: t73cb3mytlh +2025-06-18T14:37:32.381Z [INFO] order-service - Database INSERT on products - Execution time: 293ms - Rows affected: 88 - RequestID: 8661j2k6r8 +2025-06-18T14:37:32.481Z [DEBUG] user-service - Auth event: login_success - User: user_1048 - IP: 192.168.30.79 - RequestID: ibe19exk68k +2025-06-18T14:37:32.581Z [TRACE] auth-service - Database INSERT on payments - Execution time: 328ms - Rows affected: 8 - RequestID: p9dtahokqk +2025-06-18T14:37:32.681Z [TRACE] inventory-service - Auth event: password_change - User: user_1009 - IP: 192.168.167.32 - RequestID: onmc0f7w4 +2025-06-18T14:37:32.781Z [TRACE] user-service - Auth event: password_change - User: user_1084 - IP: 192.168.113.218 - RequestID: d4egbjm57lk +2025-06-18T14:37:32.881Z [DEBUG] notification-service - GET /api/v1/orders - Status: 503 - Response time: 533ms - IP: 192.168.138.123 - User: user_1015 - RequestID: qu2c0ltm6gg +2025-06-18T14:37:32.981Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 366ms - Rows affected: 4 - RequestID: 6881tyerhlr +2025-06-18T14:37:33.081Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 261ms - Rows affected: 71 - RequestID: pfl5b14h9w +2025-06-18T14:37:33.181Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 378ms - RequestID: wvk8a90ptw +2025-06-18T14:37:33.281Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1785ms - IP: 192.168.211.72 - User: user_1091 - RequestID: 6suh5wmrm4 +2025-06-18T14:37:33.381Z [INFO] user-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1098ms - IP: 192.168.141.100 - User: user_1005 - RequestID: i166exfaqqa +2025-06-18T14:37:33.481Z [INFO] notification-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.229.123 - RequestID: 59jlf296nor +2025-06-18T14:37:33.581Z [DEBUG] payment-service - Database INSERT on products - Execution time: 322ms - Rows affected: 64 - RequestID: asbi3cjun6u +2025-06-18T14:37:33.681Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 503 - Response time: 920ms - IP: 192.168.33.76 - User: user_1032 - RequestID: if8lquviym +2025-06-18T14:37:33.781Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 350ms - Rows affected: 95 - RequestID: qyxs502ircp +2025-06-18T14:37:33.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 70ms - RequestID: wavbyynyoz +2025-06-18T14:37:33.981Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 256ms - Rows affected: 41 - RequestID: 32q8rei0ml6 +2025-06-18T14:37:34.081Z [INFO] inventory-service - Auth event: login_success - User: user_1049 - IP: 192.168.68.158 - RequestID: y6sebooteti +2025-06-18T14:37:34.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.247.134 - RequestID: 4ic5f4qi13s +2025-06-18T14:37:34.281Z [TRACE] notification-service - Operation: cache_hit - Processing time: 796ms - RequestID: upmjpdqaem +2025-06-18T14:37:34.381Z [TRACE] notification-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.227.233 - RequestID: mpz81tesu2t +2025-06-18T14:37:34.481Z [INFO] notification-service - PATCH /api/v1/orders - Status: 500 - Response time: 782ms - IP: 192.168.138.123 - User: user_1020 - RequestID: 8jjlbfpumea +2025-06-18T14:37:34.581Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 918ms - RequestID: da4qbmtm0b +2025-06-18T14:37:34.681Z [DEBUG] order-service - Operation: cache_hit - Processing time: 928ms - RequestID: 5pogsz6bb74 +2025-06-18T14:37:34.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 287ms - RequestID: s8741htvgo +2025-06-18T14:37:34.881Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 183ms - Rows affected: 62 - RequestID: rj7vl8tdsso +2025-06-18T14:37:34.981Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 464ms - Rows affected: 25 - RequestID: b7b647v9fgp +2025-06-18T14:37:35.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1067 - IP: 192.168.10.184 - RequestID: t9y13eis7pb +2025-06-18T14:37:35.181Z [INFO] user-service - Auth event: login_success - User: user_1045 - IP: 192.168.167.32 - RequestID: 8oeohbxd039 +2025-06-18T14:37:35.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.28.146 - RequestID: 3jkpgxbmki4 +2025-06-18T14:37:35.381Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 291ms - Rows affected: 35 - RequestID: 5bnojb2yjgo +2025-06-18T14:37:35.481Z [INFO] inventory-service - Database DELETE on payments - Execution time: 312ms - Rows affected: 20 - RequestID: ikuavv6gbvc +2025-06-18T14:37:35.581Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 404 - Response time: 734ms - IP: 192.168.85.229 - User: user_1097 - RequestID: 373e5gqrlds +2025-06-18T14:37:35.681Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 584ms - RequestID: f2j310txtjt +2025-06-18T14:37:35.781Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1731ms - IP: 192.168.46.63 - User: user_1050 - RequestID: 3rdd5haunav +2025-06-18T14:37:35.881Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 397ms - Rows affected: 16 - RequestID: 0ca9ptu98x0a +2025-06-18T14:37:35.981Z [INFO] auth-service - Auth event: login_failed - User: user_1094 - IP: 192.168.229.123 - RequestID: s5mpscxiaw +2025-06-18T14:37:36.081Z [TRACE] payment-service - Database DELETE on orders - Execution time: 8ms - Rows affected: 27 - RequestID: 5z7vke9crbh +2025-06-18T14:37:36.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.189.103 - RequestID: aznzp7jdwhb +2025-06-18T14:37:36.281Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 157ms - Rows affected: 2 - RequestID: 77bbebo4oni +2025-06-18T14:37:36.381Z [TRACE] user-service - Auth event: login_success - User: user_1041 - IP: 192.168.232.72 - RequestID: gpbnalwie +2025-06-18T14:37:36.481Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 492ms - RequestID: 6hu92vwg8wg +2025-06-18T14:37:36.581Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1696ms - IP: 192.168.79.141 - User: user_1074 - RequestID: aca9kormcjh +2025-06-18T14:37:36.681Z [INFO] user-service - POST /api/v1/users - Status: 502 - Response time: 83ms - IP: 192.168.158.144 - User: user_1025 - RequestID: am0r8734kw8 +2025-06-18T14:37:36.781Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 502ms - IP: 192.168.229.123 - User: user_1086 - RequestID: shsuf97v09p +2025-06-18T14:37:36.881Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1165ms - IP: 192.168.79.143 - User: user_1055 - RequestID: gqpa2ikrd0g +2025-06-18T14:37:36.981Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 401 - Response time: 1343ms - IP: 192.168.170.215 - User: user_1075 - RequestID: 1yi03a89pfh +2025-06-18T14:37:37.081Z [INFO] notification-service - Operation: order_created - Processing time: 753ms - RequestID: wnd9a3kkox9 +2025-06-18T14:37:37.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.170.215 - RequestID: wvvp853e7xg +2025-06-18T14:37:37.281Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 401 - Response time: 1999ms - IP: 192.168.32.38 - User: user_1016 - RequestID: sxeknpuuo4l +2025-06-18T14:37:37.381Z [INFO] notification-service - Operation: inventory_updated - Processing time: 521ms - RequestID: tywoi9blqlg +2025-06-18T14:37:37.481Z [DEBUG] notification-service - Auth event: logout - User: user_1012 - IP: 192.168.31.117 - RequestID: elnzm8rhclk +2025-06-18T14:37:37.581Z [TRACE] payment-service - Auth event: password_change - User: user_1081 - IP: 192.168.235.117 - RequestID: 6k53phvw1co +2025-06-18T14:37:37.681Z [TRACE] user-service - Operation: cache_hit - Processing time: 852ms - RequestID: b09uqy2ofiq +2025-06-18T14:37:37.781Z [INFO] auth-service - Auth event: logout - User: user_1032 - IP: 192.168.14.77 - RequestID: dvobdz23yep +2025-06-18T14:37:37.881Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1071ms - IP: 192.168.196.226 - User: user_1091 - RequestID: 4nqtnxroyjr +2025-06-18T14:37:37.981Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 15ms - Rows affected: 12 - RequestID: clek9u6alt9 +2025-06-18T14:37:38.081Z [INFO] order-service - Auth event: login_failed - User: user_1084 - IP: 192.168.144.38 - RequestID: dce5d8l058k +2025-06-18T14:37:38.181Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 200ms - Rows affected: 58 - RequestID: zcwae1y72qi +2025-06-18T14:37:38.281Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 802ms - IP: 192.168.79.141 - User: user_1056 - RequestID: mvega4zria +2025-06-18T14:37:38.381Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 392ms - Rows affected: 26 - RequestID: yij8ytq5tma +2025-06-18T14:37:38.481Z [TRACE] notification-service - Operation: cache_miss - Processing time: 743ms - RequestID: wutkhre8z5 +2025-06-18T14:37:38.581Z [TRACE] inventory-service - PUT /api/v1/users - Status: 503 - Response time: 1164ms - IP: 192.168.227.77 - User: user_1029 - RequestID: cxxfezonbc +2025-06-18T14:37:38.681Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 221ms - Rows affected: 32 - RequestID: 0yg21bsocnne +2025-06-18T14:37:38.781Z [DEBUG] order-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.79.143 - RequestID: oeaghhtayhr +2025-06-18T14:37:38.881Z [INFO] user-service - Operation: notification_queued - Processing time: 258ms - RequestID: ryay213aps +2025-06-18T14:37:38.981Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 323ms - Rows affected: 33 - RequestID: 6xt20bwwrvt +2025-06-18T14:37:39.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.141.100 - RequestID: s3rs9cjipij +2025-06-18T14:37:39.181Z [INFO] inventory-service - Auth event: password_change - User: user_1032 - IP: 192.168.242.165 - RequestID: 6pcv4rqxvuw +2025-06-18T14:37:39.281Z [INFO] auth-service - Database SELECT on payments - Execution time: 194ms - Rows affected: 16 - RequestID: ydq0deakphk +2025-06-18T14:37:39.381Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 499ms - Rows affected: 51 - RequestID: m552kgut9og +2025-06-18T14:37:39.481Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 146ms - Rows affected: 66 - RequestID: v4uffrqd51h +2025-06-18T14:37:39.581Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 404 - Response time: 803ms - IP: 192.168.30.79 - User: user_1077 - RequestID: lhmx369ynb +2025-06-18T14:37:39.681Z [INFO] user-service - Operation: payment_processed - Processing time: 865ms - RequestID: bzfz3zfwnqi +2025-06-18T14:37:39.781Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 530ms - RequestID: 0q4hvx7nj3z +2025-06-18T14:37:39.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.227.233 - RequestID: eqqh3m1ufj +2025-06-18T14:37:39.981Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 183ms - Rows affected: 96 - RequestID: wbsyxa10a8n +2025-06-18T14:37:40.081Z [DEBUG] user-service - Database UPDATE on users - Execution time: 417ms - Rows affected: 96 - RequestID: u0nqg1m9q7p +2025-06-18T14:37:40.181Z [TRACE] user-service - Database DELETE on orders - Execution time: 343ms - Rows affected: 20 - RequestID: n2xbu8ypeyp +2025-06-18T14:37:40.281Z [INFO] auth-service - Auth event: logout - User: user_1094 - IP: 192.168.187.199 - RequestID: czi11prkl7k +2025-06-18T14:37:40.381Z [TRACE] auth-service - Operation: email_sent - Processing time: 65ms - RequestID: 3sk6m4fg3a5 +2025-06-18T14:37:40.481Z [DEBUG] inventory-service - Auth event: login_success - User: user_1063 - IP: 192.168.31.117 - RequestID: 9gqtydi93us +2025-06-18T14:37:40.581Z [INFO] payment-service - PUT /api/v1/payments - Status: 200 - Response time: 1564ms - IP: 192.168.10.184 - User: user_1042 - RequestID: w9terpsh1fh +2025-06-18T14:37:40.681Z [TRACE] payment-service - Database DELETE on payments - Execution time: 60ms - Rows affected: 47 - RequestID: xpn92ri6cni +2025-06-18T14:37:40.781Z [INFO] inventory-service - Database DELETE on payments - Execution time: 168ms - Rows affected: 54 - RequestID: gvmgk7faw3m +2025-06-18T14:37:40.881Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 201 - Response time: 1216ms - IP: 192.168.36.218 - User: user_1078 - RequestID: ypseq3dz0tk +2025-06-18T14:37:40.981Z [INFO] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 1949ms - IP: 192.168.36.218 - User: user_1042 - RequestID: 5tt3vrqtprp +2025-06-18T14:37:41.081Z [TRACE] auth-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.30.79 - RequestID: vj4kw3inebq +2025-06-18T14:37:41.181Z [INFO] user-service - Database DELETE on users - Execution time: 360ms - Rows affected: 53 - RequestID: tr6sdclh8e +2025-06-18T14:37:41.281Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 503 - Response time: 788ms - IP: 192.168.68.158 - User: user_1046 - RequestID: piw8usw94k8 +2025-06-18T14:37:41.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1006 - IP: 192.168.11.60 - RequestID: retklrilree +2025-06-18T14:37:41.481Z [INFO] payment-service - Auth event: logout - User: user_1004 - IP: 192.168.189.103 - RequestID: fnlro10hz2 +2025-06-18T14:37:41.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1029 - IP: 192.168.235.117 - RequestID: vq9f53df5j +2025-06-18T14:37:41.681Z [INFO] payment-service - Operation: payment_processed - Processing time: 225ms - RequestID: 63vd8ud4gur +2025-06-18T14:37:41.781Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 401 - Response time: 1548ms - IP: 192.168.196.226 - User: user_1032 - RequestID: oxgggq49ml +2025-06-18T14:37:41.881Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.32.38 - RequestID: oceszepbxm +2025-06-18T14:37:41.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1002 - IP: 192.168.235.117 - RequestID: pxt0tyf30b +2025-06-18T14:37:42.081Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 503 - Response time: 675ms - IP: 192.168.194.41 - User: user_1038 - RequestID: annz9jkfs3 +2025-06-18T14:37:42.181Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 681ms - IP: 192.168.159.94 - User: user_1008 - RequestID: 9mmajj0z7gl +2025-06-18T14:37:42.281Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 598ms - RequestID: her87vxr8zu +2025-06-18T14:37:42.381Z [INFO] order-service - GET /api/v1/auth/login - Status: 400 - Response time: 1295ms - IP: 192.168.85.229 - User: user_1077 - RequestID: qz3cql7wv6n +2025-06-18T14:37:42.481Z [TRACE] inventory-service - POST /api/v1/orders - Status: 201 - Response time: 1511ms - IP: 192.168.31.117 - User: user_1067 - RequestID: na6ywzv5ro +2025-06-18T14:37:42.581Z [TRACE] inventory-service - Auth event: logout - User: user_1082 - IP: 192.168.170.215 - RequestID: q3vp8e7d1ye +2025-06-18T14:37:42.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1023 - IP: 192.168.138.123 - RequestID: ydcsgd62mrr +2025-06-18T14:37:42.781Z [INFO] user-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.79.143 - RequestID: i68r0xrdii9 +2025-06-18T14:37:42.881Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 403 - Response time: 748ms - IP: 192.168.85.229 - User: user_1091 - RequestID: t4hf4b2ge9e +2025-06-18T14:37:42.981Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 244ms - Rows affected: 19 - RequestID: xh493wgrntf +2025-06-18T14:37:43.081Z [DEBUG] payment-service - Operation: order_created - Processing time: 973ms - RequestID: t2v5vo4dbz +2025-06-18T14:37:43.181Z [DEBUG] order-service - POST /api/v1/payments - Status: 400 - Response time: 1967ms - IP: 192.168.232.72 - User: user_1020 - RequestID: hueuppur04j +2025-06-18T14:37:43.281Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1449ms - IP: 192.168.10.184 - User: user_1086 - RequestID: myr5wg7sun +2025-06-18T14:37:43.381Z [INFO] auth-service - PUT /api/v1/inventory - Status: 400 - Response time: 422ms - IP: 192.168.104.37 - User: user_1036 - RequestID: riklpkun43q +2025-06-18T14:37:43.481Z [TRACE] payment-service - Auth event: logout - User: user_1099 - IP: 192.168.79.143 - RequestID: ih35dwctse +2025-06-18T14:37:43.581Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1978ms - IP: 192.168.53.133 - User: user_1024 - RequestID: ht6cr97yn +2025-06-18T14:37:43.681Z [INFO] auth-service - Auth event: login_success - User: user_1080 - IP: 192.168.11.60 - RequestID: nbu1iiuxz5s +2025-06-18T14:37:43.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.147.171 - RequestID: r0ylo8ntpn9 +2025-06-18T14:37:43.881Z [INFO] payment-service - GET /api/v1/payments - Status: 403 - Response time: 1186ms - IP: 192.168.10.184 - User: user_1031 - RequestID: vsf073w7jsq +2025-06-18T14:37:43.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1020 - IP: 192.168.100.240 - RequestID: n76q5g7tg7o +2025-06-18T14:37:44.081Z [TRACE] user-service - PATCH /api/v1/orders - Status: 403 - Response time: 652ms - IP: 192.168.11.60 - User: user_1054 - RequestID: 5y8pi09ihg9 +2025-06-18T14:37:44.181Z [TRACE] auth-service - Database DELETE on users - Execution time: 89ms - Rows affected: 9 - RequestID: km9e2x0wxu +2025-06-18T14:37:44.281Z [INFO] order-service - Database DELETE on products - Execution time: 322ms - Rows affected: 26 - RequestID: eibr2k4g5q +2025-06-18T14:37:44.381Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 1030ms - RequestID: 9270lwckicu +2025-06-18T14:37:44.481Z [INFO] user-service - PATCH /api/v1/payments - Status: 401 - Response time: 1760ms - IP: 192.168.46.63 - User: user_1036 - RequestID: mzbhgr5m4pc +2025-06-18T14:37:44.581Z [INFO] auth-service - Database INSERT on sessions - Execution time: 109ms - Rows affected: 82 - RequestID: u5ski2cf1lf +2025-06-18T14:37:44.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 78ms - RequestID: exloeyrp4eh +2025-06-18T14:37:44.781Z [INFO] auth-service - Operation: cache_hit - Processing time: 177ms - RequestID: 5v8689ahksl +2025-06-18T14:37:44.881Z [TRACE] auth-service - Database INSERT on users - Execution time: 419ms - Rows affected: 34 - RequestID: sizz7n6jfha +2025-06-18T14:37:44.981Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 274ms - Rows affected: 15 - RequestID: 47qy9fsrxql +2025-06-18T14:37:45.081Z [TRACE] notification-service - Operation: payment_processed - Processing time: 1040ms - RequestID: 0sake6orvkc +2025-06-18T14:37:45.181Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 393ms - Rows affected: 60 - RequestID: pzbhsqmnoj9 +2025-06-18T14:37:45.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.189.103 - RequestID: mdrawyztecn +2025-06-18T14:37:45.381Z [TRACE] auth-service - Database INSERT on products - Execution time: 190ms - Rows affected: 74 - RequestID: fkw9zla79li +2025-06-18T14:37:45.481Z [DEBUG] auth-service - Database DELETE on users - Execution time: 234ms - Rows affected: 4 - RequestID: chneflot7gt +2025-06-18T14:37:45.581Z [INFO] user-service - Database UPDATE on products - Execution time: 328ms - Rows affected: 8 - RequestID: l0mfcaocunk +2025-06-18T14:37:45.681Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 369ms - Rows affected: 69 - RequestID: so9edncma4 +2025-06-18T14:37:45.781Z [INFO] user-service - Operation: cache_miss - Processing time: 348ms - RequestID: 248bwpr3fv3 +2025-06-18T14:37:45.881Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 335ms - Rows affected: 85 - RequestID: 5skce9c59kh +2025-06-18T14:37:45.981Z [DEBUG] inventory-service - Operation: order_created - Processing time: 754ms - RequestID: y6ahmh7cze +2025-06-18T14:37:46.081Z [TRACE] payment-service - Auth event: password_change - User: user_1017 - IP: 192.168.235.117 - RequestID: 61e15puqp6x +2025-06-18T14:37:46.181Z [TRACE] notification-service - Operation: email_sent - Processing time: 503ms - RequestID: ostmsmzxssq +2025-06-18T14:37:46.281Z [TRACE] order-service - PUT /api/v1/orders - Status: 502 - Response time: 1657ms - IP: 192.168.247.134 - User: user_1014 - RequestID: dmzpqfnde1o +2025-06-18T14:37:46.381Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1058 - IP: 192.168.113.218 - RequestID: er1u75z4wha +2025-06-18T14:37:46.481Z [INFO] notification-service - Database SELECT on sessions - Execution time: 147ms - Rows affected: 6 - RequestID: s7jhb876ycq +2025-06-18T14:37:46.581Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1938ms - IP: 192.168.10.184 - User: user_1074 - RequestID: zptppeeincs +2025-06-18T14:37:46.681Z [TRACE] notification-service - Database UPDATE on products - Execution time: 18ms - Rows affected: 11 - RequestID: x1gabnyqiyq +2025-06-18T14:37:46.781Z [DEBUG] notification-service - GET /api/v1/users - Status: 400 - Response time: 1727ms - IP: 192.168.232.72 - User: user_1005 - RequestID: m7cc180g0sd +2025-06-18T14:37:46.881Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 308ms - Rows affected: 5 - RequestID: kr5lqcmtjv +2025-06-18T14:37:46.981Z [TRACE] order-service - Operation: inventory_updated - Processing time: 577ms - RequestID: wve36ykn03a +2025-06-18T14:37:47.081Z [INFO] user-service - Operation: order_created - Processing time: 838ms - RequestID: hxpq9du8xkg +2025-06-18T14:37:47.181Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 410ms - Rows affected: 75 - RequestID: mcawhsdhko8 +2025-06-18T14:37:47.281Z [TRACE] auth-service - Operation: cache_miss - Processing time: 763ms - RequestID: k55516dcdye +2025-06-18T14:37:47.381Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 972ms - IP: 192.168.79.116 - User: user_1096 - RequestID: onydscpop8q +2025-06-18T14:37:47.481Z [INFO] notification-service - Auth event: logout - User: user_1003 - IP: 192.168.159.94 - RequestID: bf1ryvdh5x4 +2025-06-18T14:37:47.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.167.32 - RequestID: cyfo6iqlenh +2025-06-18T14:37:47.681Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 182ms - Rows affected: 42 - RequestID: swf9v91cdd +2025-06-18T14:37:47.781Z [TRACE] auth-service - GET /api/v1/users - Status: 502 - Response time: 1478ms - IP: 192.168.189.103 - User: user_1076 - RequestID: ln1k0jqezmi +2025-06-18T14:37:47.881Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1078 - IP: 192.168.46.63 - RequestID: ukhrexl2ry +2025-06-18T14:37:47.981Z [DEBUG] notification-service - Auth event: password_change - User: user_1043 - IP: 192.168.28.146 - RequestID: lwgxx2qvabq +2025-06-18T14:37:48.081Z [TRACE] user-service - PUT /api/v1/inventory - Status: 500 - Response time: 610ms - IP: 192.168.46.63 - User: user_1039 - RequestID: z2tqbuleqp +2025-06-18T14:37:48.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1027 - IP: 192.168.196.226 - RequestID: aa1gfcnszhm +2025-06-18T14:37:48.281Z [TRACE] order-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.30.79 - RequestID: jcv46h740f +2025-06-18T14:37:48.381Z [INFO] auth-service - Auth event: logout - User: user_1026 - IP: 192.168.159.94 - RequestID: rji4uyrlffr +2025-06-18T14:37:48.481Z [TRACE] user-service - Database SELECT on products - Execution time: 129ms - Rows affected: 25 - RequestID: azehrgxqh5 +2025-06-18T14:37:48.581Z [INFO] notification-service - POST /api/v1/payments - Status: 403 - Response time: 808ms - IP: 192.168.64.33 - User: user_1022 - RequestID: dxnvmlmxqre +2025-06-18T14:37:48.681Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 503 - Response time: 477ms - IP: 192.168.170.215 - User: user_1010 - RequestID: qvil3d9qv5 +2025-06-18T14:37:48.781Z [TRACE] user-service - Operation: cache_hit - Processing time: 749ms - RequestID: fqlul44ywhk +2025-06-18T14:37:48.881Z [INFO] user-service - Operation: order_created - Processing time: 476ms - RequestID: g1ugnm7iu1l +2025-06-18T14:37:48.981Z [TRACE] notification-service - GET /api/v1/users - Status: 404 - Response time: 324ms - IP: 192.168.141.100 - User: user_1083 - RequestID: 64846qyzsak +2025-06-18T14:37:49.081Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 407ms - Rows affected: 37 - RequestID: ntyccteyuxl +2025-06-18T14:37:49.181Z [DEBUG] order-service - Operation: payment_processed - Processing time: 825ms - RequestID: 0a8nz4kveuj9 +2025-06-18T14:37:49.281Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 339ms - Rows affected: 30 - RequestID: 2dml5agdz3r +2025-06-18T14:37:49.381Z [INFO] auth-service - PUT /api/v1/payments - Status: 400 - Response time: 1585ms - IP: 192.168.31.117 - User: user_1014 - RequestID: o5p9rsedfu +2025-06-18T14:37:49.481Z [INFO] inventory-service - Auth event: login_success - User: user_1072 - IP: 192.168.211.72 - RequestID: fao28ot6h28 +2025-06-18T14:37:49.581Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 155ms - Rows affected: 43 - RequestID: dmq1dfsihfv +2025-06-18T14:37:49.681Z [TRACE] inventory-service - Auth event: logout - User: user_1036 - IP: 192.168.227.77 - RequestID: aik104yn8h +2025-06-18T14:37:49.781Z [DEBUG] payment-service - Auth event: logout - User: user_1063 - IP: 192.168.170.215 - RequestID: x8613t1mnxe +2025-06-18T14:37:49.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.32.38 - RequestID: puafxizlqs +2025-06-18T14:37:49.981Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1707ms - IP: 192.168.133.7 - User: user_1035 - RequestID: loa54veo7yf +2025-06-18T14:37:50.081Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 702ms - IP: 192.168.147.171 - User: user_1034 - RequestID: 862mik9b9pb +2025-06-18T14:37:50.181Z [INFO] notification-service - Database INSERT on products - Execution time: 168ms - Rows affected: 64 - RequestID: zxbrr6c4g7 +2025-06-18T14:37:50.281Z [INFO] notification-service - Database DELETE on payments - Execution time: 471ms - Rows affected: 76 - RequestID: 2an4b3n1cbq +2025-06-18T14:37:50.381Z [INFO] notification-service - PUT /api/v1/payments - Status: 403 - Response time: 1812ms - IP: 192.168.211.72 - User: user_1054 - RequestID: x4dmckmk11 +2025-06-18T14:37:50.481Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 224ms - Rows affected: 21 - RequestID: icg591vtaj +2025-06-18T14:37:50.581Z [INFO] order-service - Auth event: logout - User: user_1052 - IP: 192.168.144.38 - RequestID: vcwqe6qvx4s +2025-06-18T14:37:50.681Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 433ms - RequestID: 95y5dmur21l +2025-06-18T14:37:50.781Z [INFO] notification-service - Operation: order_created - Processing time: 994ms - RequestID: xqrmxb5m0lm +2025-06-18T14:37:50.881Z [DEBUG] order-service - PUT /api/v1/users - Status: 200 - Response time: 592ms - IP: 192.168.14.77 - User: user_1029 - RequestID: y2c2ecksyx +2025-06-18T14:37:50.981Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.194.41 - RequestID: amy0gk9q7gs +2025-06-18T14:37:51.081Z [INFO] order-service - Database DELETE on orders - Execution time: 166ms - Rows affected: 20 - RequestID: hcf734xv4o9 +2025-06-18T14:37:51.181Z [INFO] order-service - POST /api/v1/inventory - Status: 401 - Response time: 312ms - IP: 192.168.159.94 - User: user_1076 - RequestID: xttvm9ntcod +2025-06-18T14:37:51.281Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1585ms - IP: 192.168.229.123 - User: user_1065 - RequestID: 9ynga72106 +2025-06-18T14:37:51.381Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 984ms - RequestID: 4m1aoms0tcg +2025-06-18T14:37:51.481Z [TRACE] notification-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.187.199 - RequestID: 1yuae12fkhj +2025-06-18T14:37:51.581Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 404 - Response time: 922ms - IP: 192.168.44.5 - User: user_1017 - RequestID: 7wrpop4et4o +2025-06-18T14:37:51.681Z [TRACE] user-service - Operation: notification_queued - Processing time: 927ms - RequestID: j4ijh4ufv0d +2025-06-18T14:37:51.781Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 407ms - Rows affected: 17 - RequestID: m9xuj7e3ek +2025-06-18T14:37:51.881Z [INFO] user-service - Operation: cache_hit - Processing time: 980ms - RequestID: 0yajs5iylip +2025-06-18T14:37:51.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.104.37 - RequestID: dxbaraczdol +2025-06-18T14:37:52.081Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 441ms - Rows affected: 23 - RequestID: lutwrubu5sc +2025-06-18T14:37:52.181Z [INFO] inventory-service - Operation: email_sent - Processing time: 182ms - RequestID: zwa7z80uo9d +2025-06-18T14:37:52.281Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 486ms - RequestID: t2z034fti5 +2025-06-18T14:37:52.381Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 401 - Response time: 1168ms - IP: 192.168.189.103 - User: user_1037 - RequestID: emrnch1ceoo +2025-06-18T14:37:52.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1015 - IP: 192.168.227.77 - RequestID: shmf5xpnva +2025-06-18T14:37:52.581Z [INFO] inventory-service - Operation: cache_hit - Processing time: 57ms - RequestID: j55gre7egtg +2025-06-18T14:37:52.681Z [INFO] inventory-service - POST /api/v1/inventory - Status: 503 - Response time: 1401ms - IP: 192.168.13.72 - User: user_1069 - RequestID: j9mtkqt1fo +2025-06-18T14:37:52.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.159.94 - RequestID: y4unmwzkhtg +2025-06-18T14:37:52.881Z [INFO] auth-service - Operation: cache_hit - Processing time: 805ms - RequestID: ehrjxusvocn +2025-06-18T14:37:52.981Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 502 - Response time: 429ms - IP: 192.168.81.206 - User: user_1012 - RequestID: ji782cwzyu +2025-06-18T14:37:53.081Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1553ms - IP: 192.168.174.114 - User: user_1028 - RequestID: t90fzuzfbe +2025-06-18T14:37:53.181Z [INFO] auth-service - Auth event: password_change - User: user_1021 - IP: 192.168.13.72 - RequestID: xtgw6f7zyll +2025-06-18T14:37:53.281Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 383ms - Rows affected: 51 - RequestID: n9ax4mozz7s +2025-06-18T14:37:53.381Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 961ms - IP: 192.168.181.225 - User: user_1092 - RequestID: xftnplsxr9b +2025-06-18T14:37:53.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1077 - IP: 192.168.44.5 - RequestID: 3q3dgfdnox4 +2025-06-18T14:37:53.581Z [INFO] order-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.247.134 - RequestID: lf4uuzuk6nr +2025-06-18T14:37:53.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1019 - IP: 192.168.53.133 - RequestID: wwsvap9e6o +2025-06-18T14:37:53.781Z [INFO] order-service - Database INSERT on users - Execution time: 222ms - Rows affected: 84 - RequestID: 9905ikcwgil +2025-06-18T14:37:53.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1055 - IP: 192.168.79.141 - RequestID: 0oikij0r1wlc +2025-06-18T14:37:53.981Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 511ms - IP: 192.168.113.218 - User: user_1090 - RequestID: 14jzx0cts7i +2025-06-18T14:37:54.081Z [DEBUG] user-service - PUT /api/v1/payments - Status: 200 - Response time: 775ms - IP: 192.168.189.103 - User: user_1009 - RequestID: 9wtbqusb3f +2025-06-18T14:37:54.181Z [DEBUG] payment-service - Operation: order_created - Processing time: 974ms - RequestID: s2bqkw9r0mm +2025-06-18T14:37:54.281Z [DEBUG] auth-service - POST /api/v1/users - Status: 200 - Response time: 995ms - IP: 192.168.229.123 - User: user_1059 - RequestID: 5oydbiw9zgg +2025-06-18T14:37:54.381Z [INFO] payment-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.113.218 - RequestID: il24kuh3sc9 +2025-06-18T14:37:54.481Z [TRACE] order-service - Auth event: login_success - User: user_1082 - IP: 192.168.79.116 - RequestID: twfgyui1lv +2025-06-18T14:37:54.581Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 993ms - IP: 192.168.100.240 - User: user_1086 - RequestID: gmz0i0rfen +2025-06-18T14:37:54.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.147.171 - RequestID: py8bdqqvhuf +2025-06-18T14:37:54.781Z [INFO] order-service - Database INSERT on orders - Execution time: 63ms - Rows affected: 5 - RequestID: colf70rtnsk +2025-06-18T14:37:54.881Z [DEBUG] user-service - Database DELETE on orders - Execution time: 137ms - Rows affected: 1 - RequestID: ai5fqkq9kps +2025-06-18T14:37:54.981Z [INFO] order-service - Operation: payment_processed - Processing time: 275ms - RequestID: po5tcvolmts +2025-06-18T14:37:55.081Z [TRACE] inventory-service - Auth event: login_failed - User: user_1021 - IP: 192.168.113.218 - RequestID: s8tioipmbfr +2025-06-18T14:37:55.181Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1380ms - IP: 192.168.229.123 - User: user_1076 - RequestID: vyghymkvkhk +2025-06-18T14:37:55.281Z [INFO] auth-service - Operation: payment_processed - Processing time: 939ms - RequestID: u0kl8f987u +2025-06-18T14:37:55.381Z [INFO] order-service - Database DELETE on sessions - Execution time: 430ms - Rows affected: 17 - RequestID: n87veoyrsn +2025-06-18T14:37:55.481Z [DEBUG] payment-service - Database INSERT on products - Execution time: 367ms - Rows affected: 96 - RequestID: ylpchc9s15a +2025-06-18T14:37:55.581Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.158.144 - RequestID: 267l0yjcqsu +2025-06-18T14:37:55.681Z [TRACE] auth-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.159.94 - RequestID: tnun5vapa +2025-06-18T14:37:55.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.68.158 - RequestID: vqvqssx9fy +2025-06-18T14:37:55.881Z [TRACE] payment-service - Database DELETE on products - Execution time: 236ms - Rows affected: 36 - RequestID: lxi11yjy9sd +2025-06-18T14:37:55.981Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 1014ms - RequestID: q2w18eic7m +2025-06-18T14:37:56.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1075 - IP: 192.168.68.158 - RequestID: 32sjd1vw913 +2025-06-18T14:37:56.181Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 368ms - RequestID: hmyj598f2ar +2025-06-18T14:37:56.281Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 201 - Response time: 1548ms - IP: 192.168.170.215 - User: user_1020 - RequestID: e5erfi2ospd +2025-06-18T14:37:56.381Z [INFO] auth-service - GET /api/v1/users - Status: 500 - Response time: 1161ms - IP: 192.168.79.143 - User: user_1017 - RequestID: blue93zugk9 +2025-06-18T14:37:56.481Z [INFO] payment-service - Operation: payment_processed - Processing time: 405ms - RequestID: o5fywsusjva +2025-06-18T14:37:56.581Z [INFO] inventory-service - Operation: notification_queued - Processing time: 944ms - RequestID: uiezmitq0l +2025-06-18T14:37:56.681Z [TRACE] auth-service - Operation: notification_queued - Processing time: 893ms - RequestID: hc6iww0yujo +2025-06-18T14:37:56.781Z [INFO] order-service - Operation: cache_hit - Processing time: 1036ms - RequestID: d4cojxdjsj +2025-06-18T14:37:56.881Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 590ms - IP: 192.168.187.199 - User: user_1093 - RequestID: e3hvtyvtv4b +2025-06-18T14:37:56.981Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 400 - Response time: 1978ms - IP: 192.168.81.206 - User: user_1005 - RequestID: 1z3yzii4p7r +2025-06-18T14:37:57.081Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 75ms - Rows affected: 69 - RequestID: z3uulfmai1a +2025-06-18T14:37:57.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 567ms - RequestID: 47o0ei4gitx +2025-06-18T14:37:57.281Z [TRACE] user-service - Auth event: login_failed - User: user_1040 - IP: 192.168.240.169 - RequestID: hoqkpcf85ej +2025-06-18T14:37:57.381Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 125ms - Rows affected: 18 - RequestID: k70yfka39p +2025-06-18T14:37:57.481Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 587ms - RequestID: jxwk0y5gush +2025-06-18T14:37:57.581Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 356ms - Rows affected: 12 - RequestID: zz4ma3p3x0d +2025-06-18T14:37:57.681Z [DEBUG] notification-service - Database DELETE on products - Execution time: 16ms - Rows affected: 72 - RequestID: l2ae6wsfump +2025-06-18T14:37:57.781Z [INFO] inventory-service - Auth event: password_change - User: user_1007 - IP: 192.168.232.72 - RequestID: 00nn9x928rlca +2025-06-18T14:37:57.881Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 946ms - IP: 192.168.232.72 - User: user_1036 - RequestID: rqczol483u +2025-06-18T14:37:57.981Z [INFO] payment-service - Operation: order_created - Processing time: 943ms - RequestID: xostr33glx +2025-06-18T14:37:58.081Z [TRACE] order-service - Database DELETE on payments - Execution time: 37ms - Rows affected: 42 - RequestID: 26h77cx1ver +2025-06-18T14:37:58.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 378ms - RequestID: fb22c096mh +2025-06-18T14:37:58.281Z [TRACE] user-service - Auth event: login_failed - User: user_1090 - IP: 192.168.235.117 - RequestID: 9381mklqcwj +2025-06-18T14:37:58.381Z [TRACE] user-service - Operation: inventory_updated - Processing time: 181ms - RequestID: i7ty9bpr0d +2025-06-18T14:37:58.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 396ms - RequestID: vtmu92py5sr +2025-06-18T14:37:58.581Z [TRACE] notification-service - Database INSERT on products - Execution time: 244ms - Rows affected: 57 - RequestID: ym9dvvrqdd +2025-06-18T14:37:58.681Z [TRACE] auth-service - Database SELECT on products - Execution time: 204ms - Rows affected: 14 - RequestID: yhabgvy0gqd +2025-06-18T14:37:58.781Z [INFO] notification-service - Auth event: login_success - User: user_1011 - IP: 192.168.11.60 - RequestID: d3tm0xed7p +2025-06-18T14:37:58.881Z [INFO] inventory-service - Auth event: password_change - User: user_1026 - IP: 192.168.79.143 - RequestID: r91tw2ekzdi +2025-06-18T14:37:58.981Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 383ms - Rows affected: 83 - RequestID: ve2h5cxrmqh +2025-06-18T14:37:59.081Z [INFO] user-service - PATCH /api/v1/inventory - Status: 404 - Response time: 280ms - IP: 192.168.64.33 - User: user_1052 - RequestID: tqlmv2n1xm +2025-06-18T14:37:59.181Z [DEBUG] payment-service - Operation: email_sent - Processing time: 501ms - RequestID: gxy3iw1whe8 +2025-06-18T14:37:59.281Z [TRACE] user-service - GET /api/v1/orders - Status: 404 - Response time: 1390ms - IP: 192.168.79.116 - User: user_1068 - RequestID: 6zshtygh2da +2025-06-18T14:37:59.381Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.10.184 - RequestID: sgihndan8fm +2025-06-18T14:37:59.481Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1101ms - IP: 192.168.141.100 - User: user_1040 - RequestID: sw02993i3zf +2025-06-18T14:37:59.581Z [DEBUG] order-service - GET /api/v1/payments - Status: 500 - Response time: 1551ms - IP: 192.168.240.169 - User: user_1022 - RequestID: bjhosq3wzfu +2025-06-18T14:37:59.681Z [DEBUG] user-service - Operation: payment_processed - Processing time: 674ms - RequestID: 93kywpqrg7s +2025-06-18T14:37:59.781Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 363ms - Rows affected: 31 - RequestID: 94xj9uiohr7 +2025-06-18T14:37:59.881Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 207ms - Rows affected: 89 - RequestID: 006cfb2dulvs6 +2025-06-18T14:37:59.981Z [DEBUG] auth-service - POST /api/v1/users - Status: 200 - Response time: 867ms - IP: 192.168.187.199 - User: user_1007 - RequestID: 1oc0nnvbbjh +2025-06-18T14:38:00.081Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 38ms - IP: 192.168.79.116 - User: user_1069 - RequestID: an0sakg2ue +2025-06-18T14:38:00.181Z [DEBUG] order-service - Database DELETE on products - Execution time: 145ms - Rows affected: 27 - RequestID: eohw20hulhe +2025-06-18T14:38:00.281Z [TRACE] auth-service - Database DELETE on orders - Execution time: 136ms - Rows affected: 43 - RequestID: v264nvwt4b +2025-06-18T14:38:00.381Z [TRACE] user-service - Operation: payment_processed - Processing time: 164ms - RequestID: 7h3ghzgstsv +2025-06-18T14:38:00.481Z [INFO] user-service - Database DELETE on sessions - Execution time: 294ms - Rows affected: 2 - RequestID: ieefsp6l6m +2025-06-18T14:38:00.581Z [INFO] order-service - Operation: email_sent - Processing time: 590ms - RequestID: r5sshzbrupa +2025-06-18T14:38:00.681Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 922ms - IP: 192.168.31.117 - User: user_1037 - RequestID: c04mp8n3fhn +2025-06-18T14:38:00.781Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 635ms - RequestID: prm00nrj7fl +2025-06-18T14:38:00.881Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 404 - Response time: 221ms - IP: 192.168.79.141 - User: user_1073 - RequestID: joj752yiwjk +2025-06-18T14:38:00.981Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 500 - Response time: 761ms - IP: 192.168.53.133 - User: user_1054 - RequestID: 6swfumhwo99 +2025-06-18T14:38:01.081Z [INFO] order-service - Auth event: login_success - User: user_1059 - IP: 192.168.211.72 - RequestID: 6gm2ju8h3y +2025-06-18T14:38:01.181Z [TRACE] user-service - Auth event: login_failed - User: user_1080 - IP: 192.168.31.117 - RequestID: 5cf172lr1q4 +2025-06-18T14:38:01.281Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1806ms - IP: 192.168.28.146 - User: user_1032 - RequestID: sibecbym8k +2025-06-18T14:38:01.381Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 413ms - Rows affected: 24 - RequestID: tu2rcbsu808 +2025-06-18T14:38:01.481Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 403 - Response time: 642ms - IP: 192.168.100.240 - User: user_1071 - RequestID: ad8xxeltwcr +2025-06-18T14:38:01.581Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1180ms - IP: 192.168.227.77 - User: user_1055 - RequestID: u5owe5bncx +2025-06-18T14:38:01.681Z [INFO] order-service - PUT /api/v1/auth/login - Status: 201 - Response time: 245ms - IP: 192.168.14.77 - User: user_1045 - RequestID: 3a3usm3b6p7 +2025-06-18T14:38:01.781Z [INFO] order-service - Operation: cache_miss - Processing time: 745ms - RequestID: ulzhp1sp6bj +2025-06-18T14:38:01.881Z [DEBUG] notification-service - GET /api/v1/payments - Status: 401 - Response time: 1774ms - IP: 192.168.113.218 - User: user_1053 - RequestID: qal32q93ud8 +2025-06-18T14:38:01.981Z [TRACE] user-service - Database INSERT on products - Execution time: 269ms - Rows affected: 4 - RequestID: lu2pp2f2tyf +2025-06-18T14:38:02.081Z [TRACE] payment-service - Auth event: login_failed - User: user_1025 - IP: 192.168.68.128 - RequestID: 97vj3bp785j +2025-06-18T14:38:02.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.235.117 - RequestID: vewrb5rfk0l +2025-06-18T14:38:02.281Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 503 - Response time: 364ms - IP: 192.168.196.226 - User: user_1090 - RequestID: drta5203h1 +2025-06-18T14:38:02.381Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.32.38 - RequestID: 0t8fcfe7926 +2025-06-18T14:38:02.481Z [INFO] auth-service - Auth event: password_change - User: user_1038 - IP: 192.168.187.199 - RequestID: hat6gfxwmvh +2025-06-18T14:38:02.581Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1070 - IP: 192.168.167.32 - RequestID: g4ne3qqnisn +2025-06-18T14:38:02.681Z [TRACE] user-service - Operation: order_created - Processing time: 677ms - RequestID: g1yi0lkn5e6 +2025-06-18T14:38:02.781Z [DEBUG] user-service - Operation: notification_queued - Processing time: 301ms - RequestID: i660cus9dv +2025-06-18T14:38:02.881Z [INFO] auth-service - Auth event: logout - User: user_1043 - IP: 192.168.242.165 - RequestID: kfq7sq11mv +2025-06-18T14:38:02.981Z [TRACE] user-service - POST /api/v1/inventory - Status: 400 - Response time: 1214ms - IP: 192.168.64.33 - User: user_1014 - RequestID: y43y07a184m +2025-06-18T14:38:03.081Z [DEBUG] auth-service - POST /api/v1/payments - Status: 503 - Response time: 1005ms - IP: 192.168.194.41 - User: user_1037 - RequestID: ah3x9idnbd +2025-06-18T14:38:03.181Z [TRACE] user-service - Database UPDATE on users - Execution time: 378ms - Rows affected: 73 - RequestID: 6ae91x71uo3 +2025-06-18T14:38:03.281Z [INFO] auth-service - Operation: notification_queued - Processing time: 189ms - RequestID: h7xj1w1unqb +2025-06-18T14:38:03.381Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 201 - Response time: 208ms - IP: 192.168.33.76 - User: user_1034 - RequestID: 48nwppotj33 +2025-06-18T14:38:03.481Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 144ms - Rows affected: 89 - RequestID: asp0j9rdz9b +2025-06-18T14:38:03.581Z [INFO] user-service - Auth event: login_failed - User: user_1074 - IP: 192.168.240.169 - RequestID: hqdrlbwxbik +2025-06-18T14:38:03.681Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 334ms - Rows affected: 33 - RequestID: jrenk3gyuq +2025-06-18T14:38:03.781Z [INFO] notification-service - Database SELECT on users - Execution time: 400ms - Rows affected: 80 - RequestID: nzxhwxsret +2025-06-18T14:38:03.881Z [TRACE] user-service - Operation: payment_processed - Processing time: 1017ms - RequestID: a5s5ur95d87 +2025-06-18T14:38:03.981Z [TRACE] payment-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.227.77 - RequestID: kngadi3om3q +2025-06-18T14:38:04.081Z [INFO] notification-service - Auth event: login_success - User: user_1002 - IP: 192.168.97.87 - RequestID: 7n7a9h3mpjm +2025-06-18T14:38:04.181Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 592ms - IP: 192.168.30.79 - User: user_1057 - RequestID: 272wsvz44lej +2025-06-18T14:38:04.281Z [INFO] user-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.189.103 - RequestID: 41u7tt3u1pa +2025-06-18T14:38:04.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 721ms - RequestID: 743mnnr9g2c +2025-06-18T14:38:04.481Z [TRACE] auth-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.79.116 - RequestID: ojhphsf1fjs +2025-06-18T14:38:04.581Z [TRACE] order-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.46.63 - RequestID: kn4vs4il6tn +2025-06-18T14:38:04.681Z [TRACE] auth-service - Database SELECT on orders - Execution time: 64ms - Rows affected: 64 - RequestID: ikq8z0l49x +2025-06-18T14:38:04.781Z [TRACE] notification-service - POST /api/v1/users - Status: 404 - Response time: 246ms - IP: 192.168.211.72 - User: user_1039 - RequestID: 0jgjo28mebuq +2025-06-18T14:38:04.881Z [TRACE] payment-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.11.60 - RequestID: 4uspn8t1yal +2025-06-18T14:38:04.981Z [INFO] notification-service - Operation: order_created - Processing time: 114ms - RequestID: ivqo2jzlib +2025-06-18T14:38:05.081Z [INFO] payment-service - Operation: payment_processed - Processing time: 972ms - RequestID: 3hsa57k8te3 +2025-06-18T14:38:05.181Z [TRACE] user-service - Database DELETE on users - Execution time: 379ms - Rows affected: 53 - RequestID: xqyet8bsqa +2025-06-18T14:38:05.281Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 827ms - RequestID: 5d7rk5l5de +2025-06-18T14:38:05.381Z [INFO] auth-service - PATCH /api/v1/payments - Status: 400 - Response time: 174ms - IP: 192.168.174.114 - User: user_1008 - RequestID: eycubxz0y5e +2025-06-18T14:38:05.481Z [INFO] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 374ms - IP: 192.168.81.206 - User: user_1039 - RequestID: e9tcacrjar9 +2025-06-18T14:38:05.581Z [DEBUG] user-service - Auth event: logout - User: user_1009 - IP: 192.168.159.94 - RequestID: f89qto0ig7f +2025-06-18T14:38:05.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.170.215 - RequestID: qi3oe6dsp1s +2025-06-18T14:38:05.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.30.79 - RequestID: f4ongthux7 +2025-06-18T14:38:05.881Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 361ms - IP: 192.168.240.169 - User: user_1070 - RequestID: eq860od4cak +2025-06-18T14:38:05.981Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 400 - Response time: 666ms - IP: 192.168.46.63 - User: user_1027 - RequestID: ld45ds3iil +2025-06-18T14:38:06.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 590ms - RequestID: 7poj6nruyit +2025-06-18T14:38:06.181Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 253ms - Rows affected: 67 - RequestID: ayhkie3u05 +2025-06-18T14:38:06.281Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 400 - Response time: 1442ms - IP: 192.168.30.79 - User: user_1051 - RequestID: 2kg0oux41u6 +2025-06-18T14:38:06.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1054 - IP: 192.168.181.225 - RequestID: 9oggpnwfcr +2025-06-18T14:38:06.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.189.103 - RequestID: ww3p6122sor +2025-06-18T14:38:06.581Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 206ms - Rows affected: 71 - RequestID: hrzpseewbr +2025-06-18T14:38:06.681Z [INFO] payment-service - POST /api/v1/orders - Status: 201 - Response time: 242ms - IP: 192.168.196.226 - User: user_1051 - RequestID: d50hfrhctl +2025-06-18T14:38:06.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 122ms - RequestID: r85wr488xg +2025-06-18T14:38:06.881Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 144ms - Rows affected: 21 - RequestID: qbxp12195p +2025-06-18T14:38:06.981Z [INFO] payment-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.187.199 - RequestID: 2y3vjjvsv9p +2025-06-18T14:38:07.081Z [TRACE] inventory-service - POST /api/v1/orders - Status: 404 - Response time: 1144ms - IP: 192.168.113.218 - User: user_1031 - RequestID: 3dl9j7z9rnw +2025-06-18T14:38:07.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 305ms - RequestID: sujuky9lz7 +2025-06-18T14:38:07.281Z [DEBUG] order-service - Operation: notification_queued - Processing time: 99ms - RequestID: 8g00iuflzo5 +2025-06-18T14:38:07.381Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 200 - Response time: 77ms - IP: 192.168.240.169 - User: user_1077 - RequestID: hrdo7l2cp7m +2025-06-18T14:38:07.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.11.60 - RequestID: bthslifr8ym +2025-06-18T14:38:07.581Z [DEBUG] order-service - Auth event: login_failed - User: user_1002 - IP: 192.168.138.123 - RequestID: t4xs3ko37we +2025-06-18T14:38:07.681Z [INFO] inventory-service - Database DELETE on products - Execution time: 402ms - Rows affected: 26 - RequestID: 6q7tmw5cofk +2025-06-18T14:38:07.781Z [TRACE] auth-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.138.123 - RequestID: n6y336w9gg +2025-06-18T14:38:07.881Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 2001ms - IP: 192.168.44.5 - User: user_1035 - RequestID: awcj3hwwh69 +2025-06-18T14:38:07.981Z [INFO] order-service - DELETE /api/v1/orders - Status: 500 - Response time: 372ms - IP: 192.168.44.5 - User: user_1037 - RequestID: yvrn96ujpej +2025-06-18T14:38:08.081Z [INFO] payment-service - Database INSERT on users - Execution time: 31ms - Rows affected: 17 - RequestID: eiqxjqizu7a +2025-06-18T14:38:08.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 256ms - RequestID: n1szs3g7avs +2025-06-18T14:38:08.281Z [DEBUG] inventory-service - Operation: order_created - Processing time: 427ms - RequestID: 2x17q26edkg +2025-06-18T14:38:08.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 57ms - RequestID: 7j5j08oladx +2025-06-18T14:38:08.481Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 401 - Response time: 383ms - IP: 192.168.196.226 - User: user_1018 - RequestID: 0fn5j645mme +2025-06-18T14:38:08.581Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 866ms - RequestID: xg6m5ev3k4r +2025-06-18T14:38:08.681Z [TRACE] order-service - Auth event: login_success - User: user_1050 - IP: 192.168.44.5 - RequestID: 2zqlrhwv7ie +2025-06-18T14:38:08.781Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1618ms - IP: 192.168.167.32 - User: user_1096 - RequestID: mvin96mzjgj +2025-06-18T14:38:08.881Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 502 - Response time: 1493ms - IP: 192.168.242.165 - User: user_1090 - RequestID: qh82555ofj +2025-06-18T14:38:08.981Z [INFO] order-service - Database INSERT on orders - Execution time: 288ms - Rows affected: 58 - RequestID: oj555uuxt7 +2025-06-18T14:38:09.081Z [DEBUG] notification-service - Auth event: password_change - User: user_1033 - IP: 192.168.138.123 - RequestID: 6dczxbqijgj +2025-06-18T14:38:09.181Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 502 - Response time: 1115ms - IP: 192.168.79.143 - User: user_1029 - RequestID: cjr4jnwzvui +2025-06-18T14:38:09.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.174.114 - RequestID: xu0s6b2sy7o +2025-06-18T14:38:09.381Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.189.103 - RequestID: 2mdxomg1xfi +2025-06-18T14:38:09.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 536ms - RequestID: 9jxr4jqhtba +2025-06-18T14:38:09.581Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 200 - Response time: 1201ms - IP: 192.168.32.38 - User: user_1010 - RequestID: phs12wifxxl +2025-06-18T14:38:09.681Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1018ms - IP: 192.168.36.218 - User: user_1035 - RequestID: jlgcwf011i +2025-06-18T14:38:09.781Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1110ms - IP: 192.168.79.143 - User: user_1073 - RequestID: 7hx2dr8hfl4 +2025-06-18T14:38:09.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1008 - IP: 192.168.64.33 - RequestID: k1quvi4s11 +2025-06-18T14:38:09.981Z [INFO] notification-service - Operation: cache_hit - Processing time: 515ms - RequestID: 2e0bv97rtfb +2025-06-18T14:38:10.081Z [INFO] notification-service - DELETE /api/v1/orders - Status: 400 - Response time: 39ms - IP: 192.168.159.94 - User: user_1076 - RequestID: df9le625uj +2025-06-18T14:38:10.181Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 163ms - Rows affected: 71 - RequestID: r8qm3dh102 +2025-06-18T14:38:10.281Z [TRACE] notification-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.211.72 - RequestID: me1ij422qo +2025-06-18T14:38:10.381Z [INFO] auth-service - PUT /api/v1/inventory - Status: 503 - Response time: 308ms - IP: 192.168.10.184 - User: user_1094 - RequestID: 6et00nozht9 +2025-06-18T14:38:10.481Z [INFO] user-service - Database INSERT on payments - Execution time: 309ms - Rows affected: 62 - RequestID: ehusaa8qp29 +2025-06-18T14:38:10.581Z [TRACE] order-service - POST /api/v1/orders - Status: 404 - Response time: 1242ms - IP: 192.168.85.229 - User: user_1035 - RequestID: 7p3cavd5tam +2025-06-18T14:38:10.681Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 147ms - Rows affected: 72 - RequestID: mv6kv6c9c5l +2025-06-18T14:38:10.781Z [INFO] notification-service - Database SELECT on payments - Execution time: 493ms - Rows affected: 17 - RequestID: x66js6p3gn9 +2025-06-18T14:38:10.881Z [INFO] order-service - Operation: webhook_sent - Processing time: 823ms - RequestID: it7qcj3qhdh +2025-06-18T14:38:10.981Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 132ms - Rows affected: 89 - RequestID: dbsvrouby9b +2025-06-18T14:38:11.081Z [INFO] order-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1233ms - IP: 192.168.79.141 - User: user_1006 - RequestID: aq33c5wq8p +2025-06-18T14:38:11.181Z [INFO] inventory-service - Auth event: password_change - User: user_1029 - IP: 192.168.81.206 - RequestID: wxsfzuo389 +2025-06-18T14:38:11.281Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 796ms - RequestID: d9bj9mqwrdt +2025-06-18T14:38:11.381Z [INFO] payment-service - Database INSERT on orders - Execution time: 139ms - Rows affected: 36 - RequestID: 9t4x0ejcak +2025-06-18T14:38:11.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1078 - IP: 192.168.227.77 - RequestID: uznsrf2tbc +2025-06-18T14:38:11.581Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.13.72 - RequestID: 1f553zkef8u +2025-06-18T14:38:11.681Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 448ms - Rows affected: 36 - RequestID: ix0ujc9xbq +2025-06-18T14:38:11.781Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 211ms - Rows affected: 76 - RequestID: dsd2fwsj8gl +2025-06-18T14:38:11.881Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 453ms - Rows affected: 82 - RequestID: xo3qvxw360r +2025-06-18T14:38:11.981Z [DEBUG] payment-service - Database SELECT on products - Execution time: 165ms - Rows affected: 5 - RequestID: qyod9lpooz +2025-06-18T14:38:12.081Z [TRACE] order-service - Database INSERT on products - Execution time: 4ms - Rows affected: 42 - RequestID: c0vq7dcrdsq +2025-06-18T14:38:12.181Z [INFO] user-service - Database DELETE on orders - Execution time: 431ms - Rows affected: 72 - RequestID: 5lvusl56g79 +2025-06-18T14:38:12.281Z [TRACE] auth-service - Database INSERT on products - Execution time: 180ms - Rows affected: 93 - RequestID: fbn4ag8jxkh +2025-06-18T14:38:12.381Z [TRACE] notification-service - Auth event: logout - User: user_1064 - IP: 192.168.189.103 - RequestID: 5nisxn28til +2025-06-18T14:38:12.481Z [DEBUG] user-service - Operation: cache_miss - Processing time: 1015ms - RequestID: abbf9iih2po +2025-06-18T14:38:12.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 640ms - RequestID: 850touu4lk +2025-06-18T14:38:12.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1052 - IP: 192.168.30.79 - RequestID: tpb9bg5p7nj +2025-06-18T14:38:12.781Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 452ms - Rows affected: 15 - RequestID: 039cipjfgvfm +2025-06-18T14:38:12.881Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 199ms - Rows affected: 30 - RequestID: q4u5o2rihkb +2025-06-18T14:38:12.981Z [INFO] inventory-service - Operation: notification_queued - Processing time: 471ms - RequestID: hfhpz2ebyyn +2025-06-18T14:38:13.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1041 - IP: 192.168.100.240 - RequestID: 7ldatme5fx9 +2025-06-18T14:38:13.181Z [TRACE] user-service - Auth event: logout - User: user_1064 - IP: 192.168.227.233 - RequestID: wtgrgmvdebf +2025-06-18T14:38:13.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1017 - IP: 192.168.28.146 - RequestID: ht1uvuq2k4j +2025-06-18T14:38:13.381Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 485ms - RequestID: sfv62wzlnoj +2025-06-18T14:38:13.481Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 625ms - RequestID: kw9d5pnmg6 +2025-06-18T14:38:13.581Z [INFO] inventory-service - Operation: cache_hit - Processing time: 189ms - RequestID: ms4ptdw06a +2025-06-18T14:38:13.681Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 291ms - Rows affected: 46 - RequestID: j4f4okaujfc +2025-06-18T14:38:13.781Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 409ms - Rows affected: 6 - RequestID: novg7xbomv8 +2025-06-18T14:38:13.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1047 - IP: 192.168.30.79 - RequestID: nxex261gt3a +2025-06-18T14:38:13.981Z [INFO] user-service - Database UPDATE on orders - Execution time: 324ms - Rows affected: 7 - RequestID: f8mit0jc3o +2025-06-18T14:38:14.081Z [INFO] user-service - Database SELECT on products - Execution time: 372ms - Rows affected: 0 - RequestID: 7ordkvxtvnv +2025-06-18T14:38:14.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1063 - IP: 192.168.14.77 - RequestID: e22kilbdnun +2025-06-18T14:38:14.281Z [INFO] order-service - Database UPDATE on products - Execution time: 178ms - Rows affected: 69 - RequestID: tkq809iydt +2025-06-18T14:38:14.381Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 503 - Response time: 199ms - IP: 192.168.227.77 - User: user_1000 - RequestID: ha773yc6yw +2025-06-18T14:38:14.481Z [INFO] auth-service - POST /api/v1/auth/login - Status: 400 - Response time: 1456ms - IP: 192.168.14.77 - User: user_1038 - RequestID: jvqp5ap7d8n +2025-06-18T14:38:14.581Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 401 - Response time: 1726ms - IP: 192.168.13.72 - User: user_1051 - RequestID: 991216aaknv +2025-06-18T14:38:14.681Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 494ms - Rows affected: 23 - RequestID: i3bu1376ew9 +2025-06-18T14:38:14.781Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 27ms - IP: 192.168.14.77 - User: user_1060 - RequestID: 1pfgtfn9jg3 +2025-06-18T14:38:14.881Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 200 - Response time: 613ms - IP: 192.168.247.134 - User: user_1036 - RequestID: c7p8g6uqvjk +2025-06-18T14:38:14.981Z [INFO] auth-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.229.123 - RequestID: w8cj3ld6tej +2025-06-18T14:38:15.081Z [TRACE] auth-service - Database UPDATE on products - Execution time: 359ms - Rows affected: 83 - RequestID: mix6tr961hq +2025-06-18T14:38:15.181Z [DEBUG] user-service - Database DELETE on payments - Execution time: 119ms - Rows affected: 53 - RequestID: 9axdjmtwtrp +2025-06-18T14:38:15.281Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1354ms - IP: 192.168.187.199 - User: user_1004 - RequestID: s5jojhpur5 +2025-06-18T14:38:15.381Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 79ms - Rows affected: 6 - RequestID: qfk0qw73z8f +2025-06-18T14:38:15.481Z [INFO] notification-service - Operation: cache_hit - Processing time: 643ms - RequestID: y5aviu0s8m +2025-06-18T14:38:15.581Z [INFO] user-service - Auth event: login_success - User: user_1014 - IP: 192.168.11.60 - RequestID: cdtr3rsglag +2025-06-18T14:38:15.681Z [INFO] user-service - Database UPDATE on users - Execution time: 29ms - Rows affected: 49 - RequestID: kwptz5xbl7q +2025-06-18T14:38:15.781Z [TRACE] auth-service - Database SELECT on users - Execution time: 23ms - Rows affected: 11 - RequestID: uwb5pl43fs +2025-06-18T14:38:15.881Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 207ms - Rows affected: 59 - RequestID: wfa6av831sd +2025-06-18T14:38:15.981Z [INFO] inventory-service - Operation: payment_processed - Processing time: 441ms - RequestID: 5zjdziers3c +2025-06-18T14:38:16.081Z [INFO] order-service - Operation: payment_processed - Processing time: 547ms - RequestID: 5x5vc3jrpsw +2025-06-18T14:38:16.181Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1764ms - IP: 192.168.232.72 - User: user_1056 - RequestID: oo21p8h3d3g +2025-06-18T14:38:16.281Z [DEBUG] notification-service - Auth event: login_failed - User: user_1051 - IP: 192.168.36.218 - RequestID: xruskt3uw8i +2025-06-18T14:38:16.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1018 - IP: 192.168.14.77 - RequestID: ppbvpyah53l +2025-06-18T14:38:16.481Z [INFO] auth-service - Operation: cache_hit - Processing time: 395ms - RequestID: ugyz1q5a8wh +2025-06-18T14:38:16.581Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 400 - Response time: 1541ms - IP: 192.168.247.134 - User: user_1040 - RequestID: fv9d81eoile +2025-06-18T14:38:16.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.85.229 - RequestID: 4rsuvhrhd19 +2025-06-18T14:38:16.781Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 18ms - Rows affected: 76 - RequestID: edghnwc1mir +2025-06-18T14:38:16.881Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 451ms - Rows affected: 8 - RequestID: oj9uwf4cfwn +2025-06-18T14:38:16.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1067 - IP: 192.168.32.38 - RequestID: zu23x74fyhb +2025-06-18T14:38:17.081Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1647ms - IP: 192.168.64.33 - User: user_1070 - RequestID: u74irovwim +2025-06-18T14:38:17.181Z [INFO] order-service - Database UPDATE on orders - Execution time: 335ms - Rows affected: 87 - RequestID: qfkf6dhf5xo +2025-06-18T14:38:17.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.79.143 - RequestID: u60zl0f7qq +2025-06-18T14:38:17.381Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 98ms - Rows affected: 86 - RequestID: tmauxpa66de +2025-06-18T14:38:17.481Z [TRACE] auth-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.97.87 - RequestID: k1m01hltanm +2025-06-18T14:38:17.581Z [INFO] payment-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.44.5 - RequestID: qgwp281gnbr +2025-06-18T14:38:17.681Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 687ms - RequestID: iiksy0t6e4 +2025-06-18T14:38:17.781Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 179ms - Rows affected: 70 - RequestID: t3ifxm04gi +2025-06-18T14:38:17.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.242.165 - RequestID: aut9e2tozvp +2025-06-18T14:38:17.981Z [DEBUG] user-service - Operation: payment_processed - Processing time: 285ms - RequestID: z05oj6z5r6 +2025-06-18T14:38:18.081Z [TRACE] payment-service - Database DELETE on products - Execution time: 36ms - Rows affected: 4 - RequestID: fh2d7txw6q +2025-06-18T14:38:18.181Z [TRACE] user-service - Database SELECT on sessions - Execution time: 248ms - Rows affected: 26 - RequestID: 3i2mfvx0a4k +2025-06-18T14:38:18.281Z [INFO] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 1970ms - IP: 192.168.79.141 - User: user_1094 - RequestID: z4908ghg24k +2025-06-18T14:38:18.381Z [DEBUG] order-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.181.225 - RequestID: uvnfy1p1kda +2025-06-18T14:38:18.481Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 404 - Response time: 682ms - IP: 192.168.36.218 - User: user_1052 - RequestID: 3dpz387qtrt +2025-06-18T14:38:18.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.181.225 - RequestID: 3drzc5qhwl9 +2025-06-18T14:38:18.681Z [INFO] payment-service - GET /api/v1/inventory - Status: 400 - Response time: 86ms - IP: 192.168.227.77 - User: user_1075 - RequestID: q5gqyf2wtl +2025-06-18T14:38:18.781Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 781ms - IP: 192.168.32.38 - User: user_1058 - RequestID: ojxaa778w1 +2025-06-18T14:38:18.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 502ms - RequestID: ujoza3vsua +2025-06-18T14:38:18.981Z [TRACE] order-service - Database UPDATE on products - Execution time: 212ms - Rows affected: 20 - RequestID: 9v839iutulj +2025-06-18T14:38:19.081Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 401 - Response time: 375ms - IP: 192.168.138.123 - User: user_1084 - RequestID: 6h17rg1o9li +2025-06-18T14:38:19.181Z [INFO] inventory-service - Auth event: logout - User: user_1074 - IP: 192.168.30.79 - RequestID: j18u4yrzwyq +2025-06-18T14:38:19.281Z [TRACE] payment-service - PUT /api/v1/orders - Status: 403 - Response time: 849ms - IP: 192.168.138.123 - User: user_1021 - RequestID: pfwmi0ubyen +2025-06-18T14:38:19.381Z [TRACE] auth-service - Database UPDATE on users - Execution time: 9ms - Rows affected: 3 - RequestID: vmdjmeyjb7g +2025-06-18T14:38:19.481Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 250ms - RequestID: 3ejeadn6i6j +2025-06-18T14:38:19.581Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 200 - Response time: 778ms - IP: 192.168.170.215 - User: user_1092 - RequestID: o37ztlenmen +2025-06-18T14:38:19.681Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 670ms - IP: 192.168.240.169 - User: user_1042 - RequestID: nh3xqkb0vms +2025-06-18T14:38:19.781Z [TRACE] user-service - Operation: email_sent - Processing time: 453ms - RequestID: upbjovygj6 +2025-06-18T14:38:19.881Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 596ms - RequestID: 939oxh73bdj +2025-06-18T14:38:19.981Z [DEBUG] auth-service - Database INSERT on users - Execution time: 170ms - Rows affected: 27 - RequestID: ijfazorve0q +2025-06-18T14:38:20.081Z [TRACE] user-service - GET /api/v1/inventory - Status: 200 - Response time: 190ms - IP: 192.168.28.146 - User: user_1077 - RequestID: 9fgsczzb5gq +2025-06-18T14:38:20.181Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1968ms - IP: 192.168.211.72 - User: user_1049 - RequestID: oyz6vm73ebo +2025-06-18T14:38:20.281Z [INFO] auth-service - Database INSERT on payments - Execution time: 416ms - Rows affected: 15 - RequestID: ojuly45k6z9 +2025-06-18T14:38:20.381Z [INFO] inventory-service - GET /api/v1/users - Status: 503 - Response time: 931ms - IP: 192.168.13.72 - User: user_1065 - RequestID: huxvd3pirda +2025-06-18T14:38:20.481Z [TRACE] user-service - Database SELECT on products - Execution time: 233ms - Rows affected: 60 - RequestID: 3lzel55j4h6 +2025-06-18T14:38:20.581Z [DEBUG] user-service - Database INSERT on orders - Execution time: 88ms - Rows affected: 84 - RequestID: dmyd3zkb9ko +2025-06-18T14:38:20.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 848ms - RequestID: isk747qdslh +2025-06-18T14:38:20.781Z [INFO] payment-service - Database DELETE on sessions - Execution time: 248ms - Rows affected: 1 - RequestID: do1u93cedit +2025-06-18T14:38:20.881Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 500 - Response time: 505ms - IP: 192.168.81.206 - User: user_1017 - RequestID: 8auoi0f6c1t +2025-06-18T14:38:20.981Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 338ms - Rows affected: 91 - RequestID: bu6tmi3uflt +2025-06-18T14:38:21.081Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 272ms - RequestID: o0cr94xoi1 +2025-06-18T14:38:21.181Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 606ms - RequestID: 3m6an3mtbk2 +2025-06-18T14:38:21.281Z [TRACE] order-service - Auth event: login_failed - User: user_1096 - IP: 192.168.31.117 - RequestID: 6hemff5x3ap +2025-06-18T14:38:21.381Z [INFO] notification-service - Operation: cache_miss - Processing time: 786ms - RequestID: r8xo3yvhu4 +2025-06-18T14:38:21.481Z [INFO] user-service - Database SELECT on users - Execution time: 393ms - Rows affected: 22 - RequestID: gotcghq497o +2025-06-18T14:38:21.581Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 201 - Response time: 1319ms - IP: 192.168.170.215 - User: user_1035 - RequestID: 4uqq5xwqxmj +2025-06-18T14:38:21.681Z [INFO] inventory-service - Operation: cache_hit - Processing time: 566ms - RequestID: irof9ga99b8 +2025-06-18T14:38:21.781Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 382ms - Rows affected: 17 - RequestID: v2vs4h69avc +2025-06-18T14:38:21.881Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 404 - Response time: 540ms - IP: 192.168.10.184 - User: user_1093 - RequestID: x64qclllrhk +2025-06-18T14:38:21.981Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1597ms - IP: 192.168.174.114 - User: user_1054 - RequestID: aoesxkdep8 +2025-06-18T14:38:22.081Z [INFO] auth-service - POST /api/v1/orders - Status: 503 - Response time: 1283ms - IP: 192.168.46.63 - User: user_1075 - RequestID: m3jzu3wnzx +2025-06-18T14:38:22.181Z [DEBUG] user-service - Database DELETE on orders - Execution time: 482ms - Rows affected: 7 - RequestID: vhu0xqyhi6o +2025-06-18T14:38:22.281Z [TRACE] order-service - Operation: email_sent - Processing time: 589ms - RequestID: 8u3j9ix8ffg +2025-06-18T14:38:22.381Z [INFO] notification-service - Auth event: password_change - User: user_1018 - IP: 192.168.79.141 - RequestID: 04xhlkkmkppr +2025-06-18T14:38:22.481Z [INFO] notification-service - Database SELECT on sessions - Execution time: 244ms - Rows affected: 45 - RequestID: fu43a1l0ss +2025-06-18T14:38:22.581Z [DEBUG] payment-service - Auth event: logout - User: user_1058 - IP: 192.168.158.144 - RequestID: 9o0ihj5rlcu +2025-06-18T14:38:22.681Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 398ms - RequestID: qr8m8650fnd +2025-06-18T14:38:22.781Z [TRACE] order-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.30.79 - RequestID: 5e0c32e9z9o +2025-06-18T14:38:22.881Z [DEBUG] notification-service - Operation: email_sent - Processing time: 233ms - RequestID: kdykthrxvk8 +2025-06-18T14:38:22.981Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 282ms - RequestID: c5liuyxavj8 +2025-06-18T14:38:23.081Z [TRACE] notification-service - Auth event: logout - User: user_1087 - IP: 192.168.170.215 - RequestID: h32t4384stj +2025-06-18T14:38:23.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1065 - IP: 192.168.13.72 - RequestID: macwnyzss3o +2025-06-18T14:38:23.281Z [TRACE] user-service - Auth event: logout - User: user_1003 - IP: 192.168.1.152 - RequestID: l58qlfw031j +2025-06-18T14:38:23.381Z [TRACE] user-service - Database INSERT on products - Execution time: 252ms - Rows affected: 85 - RequestID: s8tfenp5pj +2025-06-18T14:38:23.481Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 403 - Response time: 1883ms - IP: 192.168.144.38 - User: user_1019 - RequestID: jdjbc6uvom +2025-06-18T14:38:23.581Z [DEBUG] order-service - Database SELECT on products - Execution time: 482ms - Rows affected: 13 - RequestID: tc5m5yhknam +2025-06-18T14:38:23.681Z [INFO] user-service - Operation: payment_processed - Processing time: 813ms - RequestID: ke9flru40nk +2025-06-18T14:38:23.781Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 664ms - IP: 192.168.141.100 - User: user_1071 - RequestID: 6dt3taf9295 +2025-06-18T14:38:23.881Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.68.158 - RequestID: easges13edl +2025-06-18T14:38:23.981Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 500 - Response time: 181ms - IP: 192.168.170.215 - User: user_1062 - RequestID: mao0psfqxm +2025-06-18T14:38:24.081Z [TRACE] payment-service - Auth event: login_success - User: user_1055 - IP: 192.168.33.76 - RequestID: zwm841nxjwb +2025-06-18T14:38:24.181Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 150ms - Rows affected: 70 - RequestID: v4zo5e5kb3 +2025-06-18T14:38:24.281Z [INFO] notification-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.235.117 - RequestID: lb3fid5b0q8 +2025-06-18T14:38:24.381Z [TRACE] order-service - Auth event: logout - User: user_1059 - IP: 192.168.100.240 - RequestID: uxzovf8nku +2025-06-18T14:38:24.481Z [INFO] order-service - Operation: cache_hit - Processing time: 300ms - RequestID: h9wbf03vxdn +2025-06-18T14:38:24.581Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 74ms - IP: 192.168.30.79 - User: user_1028 - RequestID: 5g9ned823a +2025-06-18T14:38:24.681Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 217ms - RequestID: d0sqt4043us +2025-06-18T14:38:24.781Z [TRACE] notification-service - POST /api/v1/inventory - Status: 201 - Response time: 685ms - IP: 192.168.181.225 - User: user_1073 - RequestID: 8hahc6c0xg5 +2025-06-18T14:38:24.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1085 - IP: 192.168.158.144 - RequestID: pn0nuxy7kck +2025-06-18T14:38:24.981Z [DEBUG] order-service - POST /api/v1/users - Status: 503 - Response time: 1612ms - IP: 192.168.30.79 - User: user_1053 - RequestID: tfsdh4qgl2j +2025-06-18T14:38:25.081Z [INFO] inventory-service - Operation: cache_hit - Processing time: 492ms - RequestID: p3guvj46zoe +2025-06-18T14:38:25.181Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 403 - Response time: 358ms - IP: 192.168.141.100 - User: user_1075 - RequestID: vm93hhfpu9 +2025-06-18T14:38:25.281Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 400 - Response time: 237ms - IP: 192.168.211.72 - User: user_1084 - RequestID: f2levf1qbb +2025-06-18T14:38:25.381Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1437ms - IP: 192.168.242.165 - User: user_1038 - RequestID: ublo99w69w +2025-06-18T14:38:25.481Z [INFO] user-service - Operation: inventory_updated - Processing time: 496ms - RequestID: 473ivy173d +2025-06-18T14:38:25.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 360ms - RequestID: t8uoob1qte +2025-06-18T14:38:25.681Z [TRACE] payment-service - Operation: notification_queued - Processing time: 651ms - RequestID: kmlypgm0psr +2025-06-18T14:38:25.781Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 593ms - RequestID: wj9j3qgcpms +2025-06-18T14:38:25.881Z [TRACE] user-service - Database INSERT on payments - Execution time: 406ms - Rows affected: 0 - RequestID: oghshj72chl +2025-06-18T14:38:25.981Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1046ms - IP: 192.168.68.128 - User: user_1038 - RequestID: vwiv42v3pis +2025-06-18T14:38:26.081Z [INFO] auth-service - PUT /api/v1/orders - Status: 500 - Response time: 1813ms - IP: 192.168.235.117 - User: user_1030 - RequestID: 8rbcbgeffd +2025-06-18T14:38:26.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.138.123 - RequestID: s8n3xd7gss +2025-06-18T14:38:26.281Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 229ms - RequestID: n8jydl151i +2025-06-18T14:38:26.381Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 257ms - Rows affected: 62 - RequestID: d2kep7bhatk +2025-06-18T14:38:26.481Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 180ms - RequestID: 7btoxfz561 +2025-06-18T14:38:26.581Z [INFO] order-service - Auth event: password_change - User: user_1094 - IP: 192.168.133.7 - RequestID: er7b8y20vu7 +2025-06-18T14:38:26.681Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 464ms - Rows affected: 45 - RequestID: fekld7clo75 +2025-06-18T14:38:26.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.240.169 - RequestID: xyyk7ntpiid +2025-06-18T14:38:26.881Z [DEBUG] auth-service - Database SELECT on users - Execution time: 384ms - Rows affected: 21 - RequestID: rku5julddae +2025-06-18T14:38:26.981Z [INFO] user-service - Auth event: login_success - User: user_1050 - IP: 192.168.227.77 - RequestID: c0w6flc4pc +2025-06-18T14:38:27.081Z [TRACE] payment-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.46.63 - RequestID: umczcqjitw +2025-06-18T14:38:27.181Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 978ms - RequestID: qutida2hym +2025-06-18T14:38:27.281Z [DEBUG] order-service - DELETE /api/v1/users - Status: 503 - Response time: 1322ms - IP: 192.168.33.76 - User: user_1097 - RequestID: u0t0163wdks +2025-06-18T14:38:27.381Z [INFO] payment-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.229.123 - RequestID: lk4wogkj6tr +2025-06-18T14:38:27.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.81.206 - RequestID: va0e7h1k89 +2025-06-18T14:38:27.581Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 829ms - IP: 192.168.32.38 - User: user_1085 - RequestID: o15tb4fepke +2025-06-18T14:38:27.681Z [DEBUG] order-service - Database SELECT on orders - Execution time: 471ms - Rows affected: 75 - RequestID: mody2k881qd +2025-06-18T14:38:27.781Z [DEBUG] user-service - Operation: email_sent - Processing time: 65ms - RequestID: 6hpq42gne4m +2025-06-18T14:38:27.881Z [TRACE] inventory-service - Auth event: login_success - User: user_1092 - IP: 192.168.138.123 - RequestID: 69xb34sbmmg +2025-06-18T14:38:27.981Z [INFO] auth-service - Database UPDATE on payments - Execution time: 465ms - Rows affected: 26 - RequestID: r10nzwa75i +2025-06-18T14:38:28.081Z [TRACE] auth-service - GET /api/v1/inventory - Status: 503 - Response time: 55ms - IP: 192.168.10.184 - User: user_1047 - RequestID: 6cz39nan5mg +2025-06-18T14:38:28.181Z [TRACE] payment-service - Operation: payment_processed - Processing time: 285ms - RequestID: s9wns70o6gm +2025-06-18T14:38:28.281Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 349ms - Rows affected: 95 - RequestID: 5qc8vrfwfss +2025-06-18T14:38:28.381Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 437ms - Rows affected: 41 - RequestID: ilykq4v569e +2025-06-18T14:38:28.481Z [DEBUG] payment-service - Operation: email_sent - Processing time: 967ms - RequestID: o1qjcb8r2 +2025-06-18T14:38:28.581Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 201 - Response time: 744ms - IP: 192.168.247.134 - User: user_1048 - RequestID: zd7nqsboz2l +2025-06-18T14:38:28.681Z [DEBUG] payment-service - GET /api/v1/orders - Status: 503 - Response time: 1465ms - IP: 192.168.247.134 - User: user_1064 - RequestID: 5qs12z1koex +2025-06-18T14:38:28.781Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 494ms - Rows affected: 23 - RequestID: uxaoeivscns +2025-06-18T14:38:28.881Z [INFO] notification-service - Operation: email_sent - Processing time: 1000ms - RequestID: 5q0ctyt6yms +2025-06-18T14:38:28.981Z [TRACE] order-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.242.165 - RequestID: y61bq9xdnyp +2025-06-18T14:38:29.081Z [TRACE] payment-service - Operation: email_sent - Processing time: 521ms - RequestID: d9f7d6t8rc6 +2025-06-18T14:38:29.181Z [TRACE] notification-service - POST /api/v1/users - Status: 200 - Response time: 521ms - IP: 192.168.53.133 - User: user_1087 - RequestID: p9cnjn2rhu +2025-06-18T14:38:29.281Z [INFO] order-service - PUT /api/v1/orders - Status: 400 - Response time: 803ms - IP: 192.168.32.38 - User: user_1068 - RequestID: uwl5b5ch4r +2025-06-18T14:38:29.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 325ms - RequestID: cx6ldkktlm +2025-06-18T14:38:29.481Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 404 - Response time: 34ms - IP: 192.168.11.60 - User: user_1058 - RequestID: xeahuuwxo29 +2025-06-18T14:38:29.581Z [INFO] notification-service - Auth event: logout - User: user_1007 - IP: 192.168.159.94 - RequestID: m77ybqah5wq +2025-06-18T14:38:29.681Z [INFO] inventory-service - Operation: email_sent - Processing time: 673ms - RequestID: smk7fi602r9 +2025-06-18T14:38:29.781Z [DEBUG] user-service - Auth event: logout - User: user_1031 - IP: 192.168.68.128 - RequestID: r47jcomxtws +2025-06-18T14:38:29.881Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1364ms - IP: 192.168.144.38 - User: user_1042 - RequestID: niwk1x0xk29 +2025-06-18T14:38:29.981Z [DEBUG] user-service - POST /api/v1/inventory - Status: 403 - Response time: 1781ms - IP: 192.168.79.116 - User: user_1090 - RequestID: i94z3y7p4hr +2025-06-18T14:38:30.081Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 500 - Response time: 76ms - IP: 192.168.235.117 - User: user_1063 - RequestID: oki6sn2njqg +2025-06-18T14:38:30.181Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 250ms - Rows affected: 51 - RequestID: 85urkadyqxv +2025-06-18T14:38:30.281Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 305ms - Rows affected: 8 - RequestID: jb7zw6u5ls9 +2025-06-18T14:38:30.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 634ms - RequestID: qey6h1aqp1g +2025-06-18T14:38:30.481Z [TRACE] auth-service - Auth event: password_change - User: user_1056 - IP: 192.168.181.225 - RequestID: bu9z7iivd1i +2025-06-18T14:38:30.581Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 57ms - IP: 192.168.79.141 - User: user_1094 - RequestID: tr8xjr9l0p +2025-06-18T14:38:30.681Z [INFO] user-service - GET /api/v1/inventory - Status: 404 - Response time: 922ms - IP: 192.168.235.117 - User: user_1030 - RequestID: e3u9xtvxso +2025-06-18T14:38:30.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 782ms - RequestID: z3fbnr0hzf +2025-06-18T14:38:30.881Z [INFO] payment-service - Database UPDATE on users - Execution time: 221ms - Rows affected: 54 - RequestID: 4ytugs214nf +2025-06-18T14:38:30.981Z [TRACE] payment-service - Operation: cache_miss - Processing time: 550ms - RequestID: 2umeba999zr +2025-06-18T14:38:31.081Z [INFO] order-service - PATCH /api/v1/orders - Status: 400 - Response time: 1750ms - IP: 192.168.189.103 - User: user_1034 - RequestID: xv9ebkx48yf +2025-06-18T14:38:31.181Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1408ms - IP: 192.168.1.152 - User: user_1015 - RequestID: 3ljbra339ua +2025-06-18T14:38:31.281Z [DEBUG] payment-service - Auth event: login_success - User: user_1077 - IP: 192.168.159.94 - RequestID: 58yv0w56nhg +2025-06-18T14:38:31.381Z [INFO] user-service - Database SELECT on orders - Execution time: 313ms - Rows affected: 95 - RequestID: waiili46in +2025-06-18T14:38:31.481Z [INFO] order-service - Database INSERT on products - Execution time: 51ms - Rows affected: 74 - RequestID: lbmao2rhft +2025-06-18T14:38:31.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1041 - IP: 192.168.194.41 - RequestID: qjfweyd89x8 +2025-06-18T14:38:31.681Z [TRACE] notification-service - Auth event: password_change - User: user_1052 - IP: 192.168.158.144 - RequestID: v5j9kb6ruq +2025-06-18T14:38:31.781Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.79.116 - RequestID: 8o0ynhset7 +2025-06-18T14:38:31.881Z [INFO] auth-service - Operation: webhook_sent - Processing time: 340ms - RequestID: zgcngin9rfg +2025-06-18T14:38:31.981Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 653ms - RequestID: 8uxrrcqhrr8 +2025-06-18T14:38:32.081Z [INFO] notification-service - Database DELETE on sessions - Execution time: 497ms - Rows affected: 10 - RequestID: 35p2zfuxtok +2025-06-18T14:38:32.181Z [INFO] order-service - Operation: order_created - Processing time: 630ms - RequestID: 6r2kfejku0t +2025-06-18T14:38:32.281Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 200 - Response time: 1204ms - IP: 192.168.170.215 - User: user_1051 - RequestID: vad2m2401rr +2025-06-18T14:38:32.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.64.33 - RequestID: p7u4sbf1oyd +2025-06-18T14:38:32.481Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 303ms - Rows affected: 99 - RequestID: 1hauvy6q5gf +2025-06-18T14:38:32.581Z [INFO] payment-service - Database DELETE on orders - Execution time: 291ms - Rows affected: 76 - RequestID: 7z3eq2b74no +2025-06-18T14:38:32.681Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 725ms - RequestID: ja910fjwzd +2025-06-18T14:38:32.781Z [TRACE] auth-service - Database INSERT on products - Execution time: 249ms - Rows affected: 5 - RequestID: czptf697cs +2025-06-18T14:38:32.881Z [INFO] inventory-service - Database DELETE on payments - Execution time: 149ms - Rows affected: 12 - RequestID: 5w6k9vwrg4l +2025-06-18T14:38:32.981Z [INFO] payment-service - POST /api/v1/payments - Status: 201 - Response time: 394ms - IP: 192.168.68.158 - User: user_1068 - RequestID: wbduhmqq6bq +2025-06-18T14:38:33.081Z [INFO] order-service - Database DELETE on products - Execution time: 260ms - Rows affected: 9 - RequestID: 3i4rjd3r4dg +2025-06-18T14:38:33.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1016 - IP: 192.168.53.133 - RequestID: 20brsl9kcwk +2025-06-18T14:38:33.281Z [TRACE] payment-service - Auth event: login_failed - User: user_1008 - IP: 192.168.144.38 - RequestID: fgt9w5xfiig +2025-06-18T14:38:33.381Z [DEBUG] auth-service - POST /api/v1/payments - Status: 500 - Response time: 70ms - IP: 192.168.196.226 - User: user_1051 - RequestID: 5oxiuc4zghr +2025-06-18T14:38:33.481Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 445ms - Rows affected: 94 - RequestID: jy6vurh0qa +2025-06-18T14:38:33.581Z [INFO] inventory-service - Auth event: password_change - User: user_1035 - IP: 192.168.85.229 - RequestID: y05c96x0y4t +2025-06-18T14:38:33.681Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 764ms - IP: 192.168.187.199 - User: user_1065 - RequestID: qy24f27tdd +2025-06-18T14:38:33.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.100.240 - RequestID: 3maikd5okvg +2025-06-18T14:38:33.881Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 392ms - Rows affected: 80 - RequestID: gv3wsefjduk +2025-06-18T14:38:33.981Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 166ms - Rows affected: 82 - RequestID: l0uj4zfvz3i +2025-06-18T14:38:34.081Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 86ms - Rows affected: 99 - RequestID: 0jwkwbwer36 +2025-06-18T14:38:34.181Z [INFO] user-service - Operation: webhook_sent - Processing time: 139ms - RequestID: b2puwr9wiyt +2025-06-18T14:38:34.281Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1816ms - IP: 192.168.235.117 - User: user_1055 - RequestID: b6cc8hlq31s +2025-06-18T14:38:34.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 123ms - RequestID: 0btj9cabkes +2025-06-18T14:38:34.481Z [DEBUG] order-service - Auth event: login_success - User: user_1057 - IP: 192.168.187.199 - RequestID: hqcoshscru +2025-06-18T14:38:34.581Z [INFO] user-service - Database DELETE on products - Execution time: 194ms - Rows affected: 49 - RequestID: wg068p1hwz +2025-06-18T14:38:34.681Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 201 - Response time: 14ms - IP: 192.168.11.60 - User: user_1022 - RequestID: ouyifiiwgl +2025-06-18T14:38:34.781Z [TRACE] user-service - Database SELECT on orders - Execution time: 176ms - Rows affected: 30 - RequestID: m3hnu31mr5 +2025-06-18T14:38:34.881Z [DEBUG] auth-service - Auth event: logout - User: user_1014 - IP: 192.168.189.103 - RequestID: kgoktqf9i6 +2025-06-18T14:38:34.981Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1090ms - IP: 192.168.13.72 - User: user_1052 - RequestID: xisnbqiancj +2025-06-18T14:38:35.081Z [INFO] user-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.64.33 - RequestID: s3e2qaoanlj +2025-06-18T14:38:35.181Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1164ms - IP: 192.168.194.41 - User: user_1066 - RequestID: qi65qu3r01 +2025-06-18T14:38:35.281Z [INFO] order-service - Database INSERT on products - Execution time: 461ms - Rows affected: 7 - RequestID: ow8p3ibazb9 +2025-06-18T14:38:35.381Z [INFO] user-service - GET /api/v1/users - Status: 404 - Response time: 638ms - IP: 192.168.194.41 - User: user_1018 - RequestID: bajab45di5j +2025-06-18T14:38:35.481Z [INFO] inventory-service - Database INSERT on users - Execution time: 477ms - Rows affected: 77 - RequestID: qb60y0vye98 +2025-06-18T14:38:35.581Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 400 - Response time: 1175ms - IP: 192.168.10.184 - User: user_1070 - RequestID: il82tcb9bzk +2025-06-18T14:38:35.681Z [TRACE] payment-service - Database DELETE on payments - Execution time: 231ms - Rows affected: 39 - RequestID: 82uj9v568zd +2025-06-18T14:38:35.781Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 318ms - Rows affected: 63 - RequestID: eob1u2mwjs +2025-06-18T14:38:35.881Z [INFO] user-service - Operation: cache_miss - Processing time: 193ms - RequestID: 9frbhisf6i +2025-06-18T14:38:35.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.167.32 - RequestID: btbx23pthib +2025-06-18T14:38:36.081Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1426ms - IP: 192.168.194.41 - User: user_1049 - RequestID: hq8xv73bvun +2025-06-18T14:38:36.181Z [TRACE] auth-service - Database SELECT on payments - Execution time: 141ms - Rows affected: 29 - RequestID: nwh6f9mw26 +2025-06-18T14:38:36.281Z [TRACE] auth-service - POST /api/v1/users - Status: 401 - Response time: 1328ms - IP: 192.168.227.233 - User: user_1087 - RequestID: yo3f7po21ia +2025-06-18T14:38:36.381Z [DEBUG] user-service - PUT /api/v1/users - Status: 401 - Response time: 1442ms - IP: 192.168.32.38 - User: user_1088 - RequestID: 0kfv88edxb8j +2025-06-18T14:38:36.481Z [TRACE] order-service - Database UPDATE on users - Execution time: 140ms - Rows affected: 62 - RequestID: jmux7hw9iag +2025-06-18T14:38:36.581Z [TRACE] notification-service - Auth event: login_success - User: user_1054 - IP: 192.168.187.199 - RequestID: nk9hmqq0uq +2025-06-18T14:38:36.681Z [INFO] user-service - Auth event: password_change - User: user_1024 - IP: 192.168.79.141 - RequestID: qb6vg1jrsdr +2025-06-18T14:38:36.781Z [TRACE] auth-service - Database SELECT on orders - Execution time: 348ms - Rows affected: 32 - RequestID: zy1jl4ruglm +2025-06-18T14:38:36.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1064 - IP: 192.168.232.72 - RequestID: yxbi9z8th8 +2025-06-18T14:38:36.981Z [INFO] inventory-service - Operation: email_sent - Processing time: 693ms - RequestID: ap6tzi9zc1b +2025-06-18T14:38:37.081Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 403 - Response time: 1787ms - IP: 192.168.144.38 - User: user_1019 - RequestID: jgb17s0vx1 +2025-06-18T14:38:37.181Z [INFO] user-service - Database DELETE on products - Execution time: 268ms - Rows affected: 68 - RequestID: xuhzggc79yq +2025-06-18T14:38:37.281Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 565ms - RequestID: ko90kqgoo9d +2025-06-18T14:38:37.381Z [INFO] user-service - Database INSERT on users - Execution time: 387ms - Rows affected: 73 - RequestID: 6am0im64n7y +2025-06-18T14:38:37.481Z [DEBUG] user-service - Auth event: password_change - User: user_1075 - IP: 192.168.14.77 - RequestID: jfqvqyfgcq +2025-06-18T14:38:37.581Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 490ms - Rows affected: 7 - RequestID: mr8oq3k83e +2025-06-18T14:38:37.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.138.123 - RequestID: zp37fvjd1oq +2025-06-18T14:38:37.781Z [DEBUG] order-service - POST /api/v1/payments - Status: 403 - Response time: 484ms - IP: 192.168.194.41 - User: user_1023 - RequestID: 9hlf9n9l1j9 +2025-06-18T14:38:37.881Z [INFO] user-service - Database DELETE on sessions - Execution time: 49ms - Rows affected: 19 - RequestID: zqn7vqyen4 +2025-06-18T14:38:37.981Z [TRACE] user-service - Database SELECT on payments - Execution time: 244ms - Rows affected: 2 - RequestID: e1l5lhw7krs +2025-06-18T14:38:38.081Z [INFO] user-service - Auth event: password_change - User: user_1044 - IP: 192.168.11.60 - RequestID: yv4q9bvhnmk +2025-06-18T14:38:38.181Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1679ms - IP: 192.168.44.5 - User: user_1011 - RequestID: 0xln95ibcpo +2025-06-18T14:38:38.281Z [DEBUG] notification-service - POST /api/v1/payments - Status: 404 - Response time: 1157ms - IP: 192.168.33.76 - User: user_1093 - RequestID: vo9pojrxw1h +2025-06-18T14:38:38.381Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 401 - Response time: 1744ms - IP: 192.168.97.87 - User: user_1057 - RequestID: 9sn8892l1r +2025-06-18T14:38:38.481Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 183ms - Rows affected: 79 - RequestID: g8ogvxa20m +2025-06-18T14:38:38.581Z [TRACE] user-service - Database UPDATE on users - Execution time: 113ms - Rows affected: 93 - RequestID: 4kx4u7dqk1r +2025-06-18T14:38:38.681Z [INFO] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 1437ms - IP: 192.168.46.63 - User: user_1086 - RequestID: 18a5tg5ma1l +2025-06-18T14:38:38.781Z [TRACE] order-service - Database DELETE on orders - Execution time: 268ms - Rows affected: 79 - RequestID: tp054w4sgu +2025-06-18T14:38:38.881Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 426ms - Rows affected: 50 - RequestID: jq3zfc8jqs +2025-06-18T14:38:38.981Z [TRACE] inventory-service - Auth event: login_success - User: user_1032 - IP: 192.168.240.169 - RequestID: glfxyz14tx +2025-06-18T14:38:39.081Z [INFO] user-service - DELETE /api/v1/payments - Status: 502 - Response time: 460ms - IP: 192.168.79.143 - User: user_1020 - RequestID: ost8fhitiq +2025-06-18T14:38:39.181Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 401 - Response time: 184ms - IP: 192.168.229.123 - User: user_1025 - RequestID: fb8gtiqye7 +2025-06-18T14:38:39.281Z [TRACE] order-service - Auth event: login_failed - User: user_1052 - IP: 192.168.194.41 - RequestID: ok0652jo0vn +2025-06-18T14:38:39.381Z [DEBUG] user-service - Database INSERT on products - Execution time: 313ms - Rows affected: 68 - RequestID: 6e4cvme6dg +2025-06-18T14:38:39.481Z [TRACE] order-service - PUT /api/v1/users - Status: 400 - Response time: 483ms - IP: 192.168.13.72 - User: user_1045 - RequestID: oiawfu6zxui +2025-06-18T14:38:39.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 504ms - RequestID: k8etmza5ez +2025-06-18T14:38:39.681Z [TRACE] notification-service - Operation: cache_hit - Processing time: 890ms - RequestID: 4gxuq29luvm +2025-06-18T14:38:39.781Z [TRACE] order-service - Auth event: password_change - User: user_1063 - IP: 192.168.167.32 - RequestID: m5bjn8akg7 +2025-06-18T14:38:39.881Z [INFO] notification-service - Operation: inventory_updated - Processing time: 519ms - RequestID: 3uclqgu1k78 +2025-06-18T14:38:39.981Z [DEBUG] user-service - Operation: payment_processed - Processing time: 345ms - RequestID: 8l6zvmc5qbx +2025-06-18T14:38:40.081Z [TRACE] order-service - Database INSERT on payments - Execution time: 176ms - Rows affected: 44 - RequestID: f14394f7ugr +2025-06-18T14:38:40.181Z [DEBUG] user-service - Operation: cache_hit - Processing time: 952ms - RequestID: woarkwsq6ms +2025-06-18T14:38:40.281Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1576ms - IP: 192.168.11.60 - User: user_1040 - RequestID: 0knmczjwbbq +2025-06-18T14:38:40.381Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 500 - Response time: 1227ms - IP: 192.168.1.152 - User: user_1084 - RequestID: 00avri2kqzzgo +2025-06-18T14:38:40.481Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 330ms - Rows affected: 19 - RequestID: gjymatm3wu +2025-06-18T14:38:40.581Z [INFO] user-service - Database INSERT on users - Execution time: 469ms - Rows affected: 30 - RequestID: dzefb98f8x5 +2025-06-18T14:38:40.681Z [DEBUG] notification-service - Auth event: password_change - User: user_1097 - IP: 192.168.181.225 - RequestID: 4v288a2w725 +2025-06-18T14:38:40.781Z [INFO] notification-service - Database DELETE on sessions - Execution time: 159ms - Rows affected: 34 - RequestID: 4k6fz8o3n4j +2025-06-18T14:38:40.881Z [INFO] auth-service - DELETE /api/v1/payments - Status: 201 - Response time: 1857ms - IP: 192.168.31.117 - User: user_1005 - RequestID: wu7f1f6okzs +2025-06-18T14:38:40.981Z [INFO] order-service - Operation: cache_hit - Processing time: 1023ms - RequestID: p0pge6jb1o +2025-06-18T14:38:41.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.235.117 - RequestID: 6fe0gk69r8u +2025-06-18T14:38:41.181Z [INFO] inventory-service - Operation: cache_miss - Processing time: 593ms - RequestID: t6t3tyxk78g +2025-06-18T14:38:41.281Z [DEBUG] user-service - Auth event: login_success - User: user_1008 - IP: 192.168.11.60 - RequestID: 1j2tylpbhqg +2025-06-18T14:38:41.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1083 - IP: 192.168.11.60 - RequestID: y4k8n5c4t8 +2025-06-18T14:38:41.481Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 201 - Response time: 1349ms - IP: 192.168.46.63 - User: user_1075 - RequestID: dp3vwj46158 +2025-06-18T14:38:41.581Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 403 - Response time: 1447ms - IP: 192.168.229.123 - User: user_1033 - RequestID: fpm6hmlntg +2025-06-18T14:38:41.681Z [TRACE] order-service - Operation: email_sent - Processing time: 462ms - RequestID: fysv91dlgyc +2025-06-18T14:38:41.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 946ms - RequestID: q1xn1572jq +2025-06-18T14:38:41.881Z [INFO] notification-service - Database DELETE on sessions - Execution time: 108ms - Rows affected: 38 - RequestID: wjxsodxu9h8 +2025-06-18T14:38:41.981Z [INFO] notification-service - Database SELECT on orders - Execution time: 171ms - Rows affected: 13 - RequestID: litqvo9qhh +2025-06-18T14:38:42.081Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 461ms - Rows affected: 3 - RequestID: 5szr64qo5uc +2025-06-18T14:38:42.181Z [DEBUG] order-service - Database DELETE on orders - Execution time: 325ms - Rows affected: 88 - RequestID: xo56u23aow +2025-06-18T14:38:42.281Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 100ms - Rows affected: 99 - RequestID: q03fk7mx92q +2025-06-18T14:38:42.381Z [TRACE] payment-service - Auth event: login_failed - User: user_1084 - IP: 192.168.100.240 - RequestID: d7pvjc4lgk +2025-06-18T14:38:42.481Z [DEBUG] user-service - Operation: payment_processed - Processing time: 837ms - RequestID: o781dh4ghtr +2025-06-18T14:38:42.581Z [INFO] payment-service - Operation: order_created - Processing time: 135ms - RequestID: qyipci7ix0s +2025-06-18T14:38:42.681Z [TRACE] payment-service - GET /api/v1/orders - Status: 201 - Response time: 1174ms - IP: 192.168.181.225 - User: user_1003 - RequestID: t4pkme6k6l +2025-06-18T14:38:42.781Z [DEBUG] user-service - Auth event: logout - User: user_1066 - IP: 192.168.44.5 - RequestID: pchiobfbgq +2025-06-18T14:38:42.881Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 232ms - RequestID: cy252kzt075 +2025-06-18T14:38:42.981Z [DEBUG] order-service - Auth event: login_success - User: user_1056 - IP: 192.168.144.38 - RequestID: 7i4d7zwmeb +2025-06-18T14:38:43.081Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 190ms - Rows affected: 42 - RequestID: s1cyiixe28 +2025-06-18T14:38:43.181Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1187ms - IP: 192.168.104.37 - User: user_1053 - RequestID: zun5s33uwh +2025-06-18T14:38:43.281Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 443ms - Rows affected: 34 - RequestID: dcd3uamqpqb +2025-06-18T14:38:43.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 664ms - RequestID: l1ax6xqtfc +2025-06-18T14:38:43.481Z [TRACE] order-service - GET /api/v1/payments - Status: 503 - Response time: 689ms - IP: 192.168.196.226 - User: user_1049 - RequestID: j1infe9yuq +2025-06-18T14:38:43.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 785ms - RequestID: 4acqyaznhww +2025-06-18T14:38:43.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 646ms - RequestID: 1k4351ylc8q +2025-06-18T14:38:43.781Z [DEBUG] user-service - Operation: email_sent - Processing time: 598ms - RequestID: kqhjcknlnt +2025-06-18T14:38:43.881Z [TRACE] notification-service - Auth event: login_success - User: user_1013 - IP: 192.168.159.94 - RequestID: 37arlrfna9s +2025-06-18T14:38:43.981Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 609ms - RequestID: uk1zpqv6alm +2025-06-18T14:38:44.081Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1080ms - IP: 192.168.227.77 - User: user_1011 - RequestID: 3xdrktrlkb2 +2025-06-18T14:38:44.181Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 401 - Response time: 449ms - IP: 192.168.64.33 - User: user_1077 - RequestID: ui8eorz5fe +2025-06-18T14:38:44.281Z [DEBUG] auth-service - Database SELECT on users - Execution time: 373ms - Rows affected: 27 - RequestID: uevhcnnolbi +2025-06-18T14:38:44.381Z [TRACE] payment-service - Operation: notification_queued - Processing time: 603ms - RequestID: la9i3hr7bpi +2025-06-18T14:38:44.481Z [TRACE] notification-service - Database DELETE on orders - Execution time: 394ms - Rows affected: 1 - RequestID: 4doqx7g37br +2025-06-18T14:38:44.581Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 176ms - Rows affected: 25 - RequestID: xv2tjyrqbj +2025-06-18T14:38:44.681Z [INFO] notification-service - Operation: payment_processed - Processing time: 998ms - RequestID: 3d4susdt9wn +2025-06-18T14:38:44.781Z [INFO] notification-service - Auth event: password_change - User: user_1009 - IP: 192.168.141.100 - RequestID: 5b8hi5pr6x9 +2025-06-18T14:38:44.881Z [TRACE] user-service - PATCH /api/v1/orders - Status: 404 - Response time: 460ms - IP: 192.168.181.225 - User: user_1064 - RequestID: vd8hv5407ch +2025-06-18T14:38:44.981Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 926ms - RequestID: mdhk1vufg2i +2025-06-18T14:38:45.081Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 403 - Response time: 49ms - IP: 192.168.104.37 - User: user_1093 - RequestID: ox7w5oj0zu +2025-06-18T14:38:45.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 920ms - RequestID: d5h2rtrnl9b +2025-06-18T14:38:45.281Z [DEBUG] user-service - POST /api/v1/payments - Status: 401 - Response time: 212ms - IP: 192.168.158.144 - User: user_1016 - RequestID: hkitu4eor5c +2025-06-18T14:38:45.381Z [TRACE] notification-service - Database DELETE on products - Execution time: 394ms - Rows affected: 18 - RequestID: qe61er20k6c +2025-06-18T14:38:45.481Z [INFO] auth-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.113.218 - RequestID: lwfvlb8tlw +2025-06-18T14:38:45.581Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 365ms - Rows affected: 87 - RequestID: qhfqs4r6w +2025-06-18T14:38:45.681Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 1496ms - IP: 192.168.147.171 - User: user_1078 - RequestID: 6yc0dt5akr +2025-06-18T14:38:45.781Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 154ms - Rows affected: 16 - RequestID: 4qu8g2ye9qx +2025-06-18T14:38:45.881Z [INFO] auth-service - Database SELECT on payments - Execution time: 405ms - Rows affected: 47 - RequestID: 2lpnskte45t +2025-06-18T14:38:45.981Z [INFO] notification-service - Database SELECT on products - Execution time: 60ms - Rows affected: 33 - RequestID: ynzyahodym +2025-06-18T14:38:46.081Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 3ms - Rows affected: 64 - RequestID: xpz6w39ppy +2025-06-18T14:38:46.181Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 132ms - Rows affected: 50 - RequestID: yrawlkvbko +2025-06-18T14:38:46.281Z [TRACE] payment-service - Auth event: logout - User: user_1009 - IP: 192.168.133.7 - RequestID: bi0r5fbmvng +2025-06-18T14:38:46.381Z [TRACE] auth-service - Auth event: login_failed - User: user_1025 - IP: 192.168.28.146 - RequestID: 4edd2ppvoi2 +2025-06-18T14:38:46.481Z [INFO] user-service - PUT /api/v1/payments - Status: 201 - Response time: 501ms - IP: 192.168.242.165 - User: user_1089 - RequestID: 7m1z0cu9okn +2025-06-18T14:38:46.581Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 133ms - Rows affected: 96 - RequestID: g04kh79b88m +2025-06-18T14:38:46.681Z [INFO] user-service - GET /api/v1/orders - Status: 401 - Response time: 257ms - IP: 192.168.170.215 - User: user_1050 - RequestID: h3f5emqjyr +2025-06-18T14:38:46.781Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 409ms - Rows affected: 51 - RequestID: zyk670gbysp +2025-06-18T14:38:46.881Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 75ms - RequestID: 52oo0qnwnkc +2025-06-18T14:38:46.981Z [DEBUG] notification-service - Database INSERT on products - Execution time: 352ms - Rows affected: 18 - RequestID: aa5y1pvekir +2025-06-18T14:38:47.081Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 945ms - RequestID: btj45x9ugol +2025-06-18T14:38:47.181Z [DEBUG] auth-service - Auth event: login_failed - User: user_1057 - IP: 192.168.13.72 - RequestID: ujom6o5lknd +2025-06-18T14:38:47.281Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1688ms - IP: 192.168.13.72 - User: user_1022 - RequestID: rpsa23az3i +2025-06-18T14:38:47.381Z [TRACE] payment-service - GET /api/v1/users - Status: 200 - Response time: 229ms - IP: 192.168.36.218 - User: user_1007 - RequestID: u0q3yzc39zj +2025-06-18T14:38:47.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.187.199 - RequestID: yoqua5bn8yn +2025-06-18T14:38:47.581Z [TRACE] user-service - Database INSERT on orders - Execution time: 357ms - Rows affected: 1 - RequestID: kfsfkgjivso +2025-06-18T14:38:47.681Z [DEBUG] order-service - Auth event: login_success - User: user_1008 - IP: 192.168.147.171 - RequestID: 3ug40f7scjb +2025-06-18T14:38:47.781Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 282ms - Rows affected: 56 - RequestID: treyi81p588 +2025-06-18T14:38:47.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.232.72 - RequestID: mhxovy9a56 +2025-06-18T14:38:47.981Z [DEBUG] user-service - Database INSERT on orders - Execution time: 397ms - Rows affected: 5 - RequestID: ydktptl4hj9 +2025-06-18T14:38:48.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1066 - IP: 192.168.232.72 - RequestID: 3lk46ds6lw +2025-06-18T14:38:48.181Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 60ms - IP: 192.168.79.141 - User: user_1003 - RequestID: f2i2zv0yvjq +2025-06-18T14:38:48.281Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 306ms - RequestID: wtktjhevzj +2025-06-18T14:38:48.381Z [INFO] payment-service - Auth event: logout - User: user_1046 - IP: 192.168.30.79 - RequestID: otlwbzh4jpr +2025-06-18T14:38:48.481Z [TRACE] notification-service - Auth event: logout - User: user_1063 - IP: 192.168.227.77 - RequestID: u0xc76ka1sg +2025-06-18T14:38:48.581Z [TRACE] order-service - Database SELECT on products - Execution time: 362ms - Rows affected: 32 - RequestID: rg4wwa0gnfj +2025-06-18T14:38:48.681Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 500 - Response time: 175ms - IP: 192.168.159.94 - User: user_1022 - RequestID: jxp5sthyf3t +2025-06-18T14:38:48.781Z [TRACE] order-service - Operation: order_created - Processing time: 276ms - RequestID: qhsdreauqjr +2025-06-18T14:38:48.881Z [INFO] auth-service - POST /api/v1/orders - Status: 502 - Response time: 542ms - IP: 192.168.159.94 - User: user_1092 - RequestID: 6x99720xdqq +2025-06-18T14:38:48.981Z [INFO] payment-service - Database DELETE on payments - Execution time: 337ms - Rows affected: 71 - RequestID: ay15rs9ywn +2025-06-18T14:38:49.081Z [INFO] order-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.147.171 - RequestID: tc3pe5y4s1e +2025-06-18T14:38:49.181Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 160ms - Rows affected: 43 - RequestID: d82cuzplfh +2025-06-18T14:38:49.281Z [INFO] order-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.147.171 - RequestID: jfmeaw3o50r +2025-06-18T14:38:49.381Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 190ms - Rows affected: 62 - RequestID: 4v1l3140rjw +2025-06-18T14:38:49.481Z [TRACE] inventory-service - Database INSERT on users - Execution time: 35ms - Rows affected: 66 - RequestID: py81x83cu9b +2025-06-18T14:38:49.581Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1718ms - IP: 192.168.81.206 - User: user_1001 - RequestID: b9eo5j0rh15 +2025-06-18T14:38:49.681Z [INFO] user-service - Auth event: password_change - User: user_1009 - IP: 192.168.138.123 - RequestID: m0evo7k418q +2025-06-18T14:38:49.781Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 466ms - Rows affected: 94 - RequestID: ht7v3rdl54 +2025-06-18T14:38:49.881Z [INFO] inventory-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.68.158 - RequestID: d67ni6td9zu +2025-06-18T14:38:49.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 738ms - RequestID: vzmmf7tu5m +2025-06-18T14:38:50.081Z [TRACE] inventory-service - PUT /api/v1/users - Status: 400 - Response time: 372ms - IP: 192.168.211.72 - User: user_1070 - RequestID: saqyubd62sh +2025-06-18T14:38:50.181Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1746ms - IP: 192.168.113.218 - User: user_1058 - RequestID: qt6wvcy8fsn +2025-06-18T14:38:50.281Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 384ms - Rows affected: 19 - RequestID: jblon2ds5j +2025-06-18T14:38:50.381Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 934ms - RequestID: 039bodjm7hd +2025-06-18T14:38:50.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.33.76 - RequestID: pnt01gwln5 +2025-06-18T14:38:50.581Z [TRACE] payment-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.33.76 - RequestID: 9dfrqx146ra +2025-06-18T14:38:50.681Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 502 - Response time: 1035ms - IP: 192.168.97.87 - User: user_1069 - RequestID: x3fjcuer7u +2025-06-18T14:38:50.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 193ms - RequestID: 8kk5j6uljyk +2025-06-18T14:38:50.881Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 908ms - IP: 192.168.174.114 - User: user_1013 - RequestID: 23byhzor11si +2025-06-18T14:38:50.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 533ms - RequestID: n9i2o9eha7 +2025-06-18T14:38:51.081Z [INFO] auth-service - Operation: order_created - Processing time: 221ms - RequestID: zr6rh7l9o1i +2025-06-18T14:38:51.181Z [TRACE] notification-service - Operation: cache_hit - Processing time: 1023ms - RequestID: f2q1py0tg5a +2025-06-18T14:38:51.281Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 10ms - Rows affected: 23 - RequestID: 2l1ldfd89py +2025-06-18T14:38:51.381Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 394ms - Rows affected: 81 - RequestID: vj3fnylhfrq +2025-06-18T14:38:51.481Z [TRACE] notification-service - Auth event: password_change - User: user_1024 - IP: 192.168.181.225 - RequestID: w9jm99tj7o9 +2025-06-18T14:38:51.581Z [INFO] notification-service - DELETE /api/v1/users - Status: 502 - Response time: 1257ms - IP: 192.168.11.60 - User: user_1051 - RequestID: 1ifijjf9b5 +2025-06-18T14:38:51.681Z [DEBUG] inventory-service - Auth event: login_success - User: user_1074 - IP: 192.168.85.229 - RequestID: oy1lhxcomn9 +2025-06-18T14:38:51.781Z [DEBUG] notification-service - POST /api/v1/payments - Status: 401 - Response time: 934ms - IP: 192.168.68.128 - User: user_1095 - RequestID: py6rd56s1l +2025-06-18T14:38:51.881Z [INFO] auth-service - Operation: webhook_sent - Processing time: 588ms - RequestID: d69n45os6fq +2025-06-18T14:38:51.981Z [DEBUG] order-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.1.152 - RequestID: 05ggrvwtxfsj +2025-06-18T14:38:52.081Z [TRACE] payment-service - POST /api/v1/users - Status: 201 - Response time: 1742ms - IP: 192.168.227.233 - User: user_1071 - RequestID: sf0e1w514zm +2025-06-18T14:38:52.181Z [INFO] notification-service - Operation: webhook_sent - Processing time: 168ms - RequestID: ys78mrhjl0e +2025-06-18T14:38:52.281Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.81.206 - RequestID: 0wq8bku8f15i +2025-06-18T14:38:52.381Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1661ms - IP: 192.168.1.152 - User: user_1072 - RequestID: e6g8ank7bch +2025-06-18T14:38:52.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 530ms - RequestID: zd1p0ivtj9 +2025-06-18T14:38:52.581Z [INFO] auth-service - Auth event: login_failed - User: user_1020 - IP: 192.168.64.33 - RequestID: 5di5hjvtrad +2025-06-18T14:38:52.681Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 637ms - IP: 192.168.170.215 - User: user_1073 - RequestID: wtfrz5bfms +2025-06-18T14:38:52.781Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1144ms - IP: 192.168.147.171 - User: user_1015 - RequestID: 8ezvujl8zr7 +2025-06-18T14:38:52.881Z [INFO] inventory-service - Auth event: login_success - User: user_1045 - IP: 192.168.79.143 - RequestID: kabpjx6wa1r +2025-06-18T14:38:52.981Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 347ms - RequestID: 3bl1qnk4yly +2025-06-18T14:38:53.081Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 404 - Response time: 1363ms - IP: 192.168.33.76 - User: user_1036 - RequestID: ijmqt68h3gs +2025-06-18T14:38:53.181Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 502 - Response time: 849ms - IP: 192.168.194.41 - User: user_1071 - RequestID: 8sbqr9kzjq9 +2025-06-18T14:38:53.281Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 804ms - RequestID: i03ct54ch19 +2025-06-18T14:38:53.381Z [INFO] order-service - Operation: email_sent - Processing time: 433ms - RequestID: lhotkbp3tb +2025-06-18T14:38:53.481Z [TRACE] auth-service - Operation: payment_processed - Processing time: 874ms - RequestID: i0nfto9reu8 +2025-06-18T14:38:53.581Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 401 - Response time: 273ms - IP: 192.168.242.165 - User: user_1052 - RequestID: bwk07fte0c +2025-06-18T14:38:53.681Z [TRACE] order-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.32.38 - RequestID: 4kzetaeu2rq +2025-06-18T14:38:53.781Z [DEBUG] order-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.79.143 - RequestID: 3cxtej3y0n3 +2025-06-18T14:38:53.881Z [INFO] order-service - Auth event: login_failed - User: user_1055 - IP: 192.168.138.123 - RequestID: 9rlmgux41ak +2025-06-18T14:38:53.981Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 958ms - IP: 192.168.170.215 - User: user_1028 - RequestID: uoh84q5dqi9 +2025-06-18T14:38:54.081Z [DEBUG] order-service - Operation: cache_hit - Processing time: 394ms - RequestID: qkzfqa90nqp +2025-06-18T14:38:54.181Z [TRACE] order-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.240.169 - RequestID: 7fm1uri8s5 +2025-06-18T14:38:54.281Z [INFO] inventory-service - Operation: email_sent - Processing time: 347ms - RequestID: m4v43jfu3l +2025-06-18T14:38:54.381Z [INFO] notification-service - Operation: webhook_sent - Processing time: 795ms - RequestID: zyxppwpkto +2025-06-18T14:38:54.481Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 308ms - Rows affected: 71 - RequestID: padncyh1gi +2025-06-18T14:38:54.581Z [INFO] notification-service - Auth event: password_change - User: user_1004 - IP: 192.168.13.72 - RequestID: gj9t3dgzlee +2025-06-18T14:38:54.681Z [INFO] inventory-service - Database SELECT on payments - Execution time: 360ms - Rows affected: 27 - RequestID: kmj3eee1s1 +2025-06-18T14:38:54.781Z [INFO] inventory-service - Database INSERT on payments - Execution time: 461ms - Rows affected: 17 - RequestID: r911muneolb +2025-06-18T14:38:54.881Z [INFO] notification-service - Operation: notification_queued - Processing time: 1007ms - RequestID: f78xfrt1lbb +2025-06-18T14:38:54.981Z [INFO] auth-service - Operation: cache_miss - Processing time: 943ms - RequestID: 4j3kmiiavtq +2025-06-18T14:38:55.081Z [DEBUG] notification-service - Auth event: password_change - User: user_1027 - IP: 192.168.36.218 - RequestID: e1hcact1t9u +2025-06-18T14:38:55.181Z [DEBUG] payment-service - Database DELETE on products - Execution time: 172ms - Rows affected: 51 - RequestID: e51v7v54dtg +2025-06-18T14:38:55.281Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 500 - Response time: 553ms - IP: 192.168.100.240 - User: user_1055 - RequestID: buzy9oeokkc +2025-06-18T14:38:55.381Z [INFO] user-service - Operation: inventory_updated - Processing time: 709ms - RequestID: 3c5w20jnvdw +2025-06-18T14:38:55.481Z [TRACE] auth-service - Auth event: login_failed - User: user_1021 - IP: 192.168.13.72 - RequestID: 68clbw2k6f4 +2025-06-18T14:38:55.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.33.76 - RequestID: 27bde86sfhg +2025-06-18T14:38:55.681Z [INFO] user-service - Operation: notification_queued - Processing time: 266ms - RequestID: 3irhjzu0q8y +2025-06-18T14:38:55.781Z [INFO] auth-service - Database INSERT on payments - Execution time: 457ms - Rows affected: 14 - RequestID: tna226h9a79 +2025-06-18T14:38:55.881Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 459ms - Rows affected: 37 - RequestID: su677mhsd1 +2025-06-18T14:38:55.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1071 - IP: 192.168.174.114 - RequestID: a3laxqpp1w9 +2025-06-18T14:38:56.081Z [TRACE] user-service - Database SELECT on orders - Execution time: 77ms - Rows affected: 1 - RequestID: 4xns0xtcwaj +2025-06-18T14:38:56.181Z [INFO] notification-service - Operation: cache_hit - Processing time: 964ms - RequestID: rzncjwzyblm +2025-06-18T14:38:56.281Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 404 - Response time: 713ms - IP: 192.168.68.158 - User: user_1067 - RequestID: k86q4a5uei +2025-06-18T14:38:56.381Z [TRACE] auth-service - POST /api/v1/inventory - Status: 404 - Response time: 1448ms - IP: 192.168.170.215 - User: user_1073 - RequestID: ou2tcnni4q +2025-06-18T14:38:56.481Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 200 - Response time: 978ms - IP: 192.168.68.158 - User: user_1053 - RequestID: qj5qrp2uqrh +2025-06-18T14:38:56.581Z [TRACE] order-service - Operation: cache_hit - Processing time: 863ms - RequestID: r8zdq5ndgx +2025-06-18T14:38:56.681Z [DEBUG] user-service - POST /api/v1/payments - Status: 403 - Response time: 383ms - IP: 192.168.11.60 - User: user_1041 - RequestID: 59xvqcymsf4 +2025-06-18T14:38:56.781Z [INFO] notification-service - Operation: email_sent - Processing time: 840ms - RequestID: fmx46lks3p +2025-06-18T14:38:56.881Z [DEBUG] order-service - Auth event: logout - User: user_1030 - IP: 192.168.227.233 - RequestID: lwck97luiko +2025-06-18T14:38:56.981Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 164ms - Rows affected: 43 - RequestID: 0wl9y4ybi33i +2025-06-18T14:38:57.081Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 395ms - RequestID: levlss5tsq +2025-06-18T14:38:57.181Z [INFO] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 1254ms - IP: 192.168.247.134 - User: user_1056 - RequestID: 55vkfdxmrel +2025-06-18T14:38:57.281Z [INFO] order-service - Auth event: login_failed - User: user_1072 - IP: 192.168.235.117 - RequestID: g9k333e8mxf +2025-06-18T14:38:57.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.133.7 - RequestID: u7h6rii9baf +2025-06-18T14:38:57.481Z [DEBUG] inventory-service - Auth event: login_success - User: user_1009 - IP: 192.168.13.72 - RequestID: aftph7f6rg +2025-06-18T14:38:57.581Z [TRACE] order-service - PATCH /api/v1/users - Status: 200 - Response time: 1370ms - IP: 192.168.64.33 - User: user_1042 - RequestID: pp0tn8ppj3 +2025-06-18T14:38:57.681Z [DEBUG] order-service - Operation: payment_processed - Processing time: 723ms - RequestID: 5uuz6ygm3q5 +2025-06-18T14:38:57.781Z [DEBUG] user-service - GET /api/v1/orders - Status: 500 - Response time: 1670ms - IP: 192.168.53.133 - User: user_1061 - RequestID: lvkr7kdmxvc +2025-06-18T14:38:57.881Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 612ms - RequestID: wk9jvssj3ma +2025-06-18T14:38:57.981Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1639ms - IP: 192.168.81.206 - User: user_1064 - RequestID: y9jpspywb0g +2025-06-18T14:38:58.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.232.72 - RequestID: 8i4ojlybd72 +2025-06-18T14:38:58.181Z [INFO] payment-service - GET /api/v1/payments - Status: 201 - Response time: 250ms - IP: 192.168.242.165 - User: user_1072 - RequestID: b49pdupy2a4 +2025-06-18T14:38:58.281Z [INFO] payment-service - Database SELECT on products - Execution time: 296ms - Rows affected: 64 - RequestID: 82h0nq4b4u8 +2025-06-18T14:38:58.381Z [TRACE] notification-service - Auth event: password_change - User: user_1039 - IP: 192.168.194.41 - RequestID: we94b3b2ds +2025-06-18T14:38:58.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1021 - IP: 192.168.235.117 - RequestID: au3yg5vx91 +2025-06-18T14:38:58.581Z [INFO] payment-service - Operation: inventory_updated - Processing time: 480ms - RequestID: 34f66f3tj1h +2025-06-18T14:38:58.681Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 374ms - IP: 192.168.159.94 - User: user_1045 - RequestID: edp00s9ywae +2025-06-18T14:38:58.781Z [INFO] auth-service - Operation: notification_queued - Processing time: 112ms - RequestID: 21ua5kwtgdi +2025-06-18T14:38:58.881Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 1829ms - IP: 192.168.229.123 - User: user_1095 - RequestID: izwm18mrtaq +2025-06-18T14:38:58.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1070 - IP: 192.168.174.114 - RequestID: 71bomieko9w +2025-06-18T14:38:59.081Z [TRACE] order-service - GET /api/v1/auth/login - Status: 502 - Response time: 1389ms - IP: 192.168.242.165 - User: user_1094 - RequestID: r2f5wtyefrf +2025-06-18T14:38:59.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1077 - IP: 192.168.68.158 - RequestID: 4u9pxqp1xit +2025-06-18T14:38:59.281Z [TRACE] inventory-service - Auth event: password_change - User: user_1058 - IP: 192.168.68.128 - RequestID: nlu9kma6a2k +2025-06-18T14:38:59.381Z [INFO] payment-service - Database UPDATE on payments - Execution time: 220ms - Rows affected: 51 - RequestID: jepeumyce8 +2025-06-18T14:38:59.481Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 321ms - IP: 192.168.147.171 - User: user_1061 - RequestID: 5qm1gv9rs1y +2025-06-18T14:38:59.581Z [INFO] notification-service - Database SELECT on payments - Execution time: 364ms - Rows affected: 91 - RequestID: wslicccqao +2025-06-18T14:38:59.681Z [INFO] auth-service - Auth event: login_success - User: user_1074 - IP: 192.168.68.128 - RequestID: xum7v2whv8b +2025-06-18T14:38:59.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1014 - IP: 192.168.167.32 - RequestID: 9mjli7ata4v +2025-06-18T14:38:59.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.194.41 - RequestID: 5vjlyfzdnsp +2025-06-18T14:38:59.981Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 341ms - Rows affected: 91 - RequestID: mq8l5o4hpxt +2025-06-18T14:39:00.081Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 8ms - Rows affected: 57 - RequestID: 0i18v9dx6ud7 +2025-06-18T14:39:00.181Z [TRACE] auth-service - Operation: email_sent - Processing time: 861ms - RequestID: osscv6prtel +2025-06-18T14:39:00.281Z [TRACE] payment-service - Database SELECT on users - Execution time: 376ms - Rows affected: 97 - RequestID: em3ll611ljs +2025-06-18T14:39:00.381Z [INFO] auth-service - PUT /api/v1/users - Status: 403 - Response time: 1763ms - IP: 192.168.167.32 - User: user_1026 - RequestID: r3xaxcllz7b +2025-06-18T14:39:00.481Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 838ms - RequestID: cg935zo37qj +2025-06-18T14:39:00.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1073 - IP: 192.168.187.199 - RequestID: pdu5e1ykn8e +2025-06-18T14:39:00.681Z [DEBUG] user-service - Database DELETE on orders - Execution time: 469ms - Rows affected: 57 - RequestID: ttptoglsn3 +2025-06-18T14:39:00.781Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 123ms - RequestID: e88j3driis +2025-06-18T14:39:00.881Z [TRACE] auth-service - Auth event: password_change - User: user_1044 - IP: 192.168.11.60 - RequestID: 802yfv84hw3 +2025-06-18T14:39:00.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 1031ms - RequestID: 0wj3xjevl158 +2025-06-18T14:39:01.081Z [TRACE] auth-service - Operation: order_created - Processing time: 895ms - RequestID: 96r681mddzw +2025-06-18T14:39:01.181Z [TRACE] auth-service - GET /api/v1/users - Status: 200 - Response time: 1462ms - IP: 192.168.229.123 - User: user_1031 - RequestID: 655tdw3r4pm +2025-06-18T14:39:01.281Z [TRACE] auth-service - POST /api/v1/payments - Status: 503 - Response time: 154ms - IP: 192.168.68.158 - User: user_1020 - RequestID: jso9skqh0x9 +2025-06-18T14:39:01.381Z [INFO] user-service - Auth event: login_failed - User: user_1027 - IP: 192.168.68.158 - RequestID: 9g5lgbs88i7 +2025-06-18T14:39:01.481Z [TRACE] order-service - Auth event: login_failed - User: user_1078 - IP: 192.168.147.171 - RequestID: 1bu9zhku0wg +2025-06-18T14:39:01.581Z [TRACE] payment-service - Auth event: login_success - User: user_1094 - IP: 192.168.174.114 - RequestID: oszg4rk26a +2025-06-18T14:39:01.681Z [INFO] inventory-service - PUT /api/v1/users - Status: 400 - Response time: 1565ms - IP: 192.168.181.225 - User: user_1007 - RequestID: 67hrun59uiw +2025-06-18T14:39:01.781Z [INFO] user-service - Operation: notification_queued - Processing time: 361ms - RequestID: 4imz546ap6b +2025-06-18T14:39:01.881Z [INFO] payment-service - Database UPDATE on orders - Execution time: 483ms - Rows affected: 99 - RequestID: 094jzfdtwz9u +2025-06-18T14:39:01.981Z [DEBUG] payment-service - Auth event: login_success - User: user_1090 - IP: 192.168.64.33 - RequestID: 8ujg69tqurg +2025-06-18T14:39:02.081Z [INFO] inventory-service - Auth event: login_success - User: user_1038 - IP: 192.168.100.240 - RequestID: nhh2arb312p +2025-06-18T14:39:02.181Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 403 - Response time: 1518ms - IP: 192.168.194.41 - User: user_1067 - RequestID: 97lb8lijk3o +2025-06-18T14:39:02.281Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1313ms - IP: 192.168.36.218 - User: user_1050 - RequestID: mtomyweowta +2025-06-18T14:39:02.381Z [INFO] notification-service - Auth event: login_failed - User: user_1090 - IP: 192.168.159.94 - RequestID: wh9wed8bzdf +2025-06-18T14:39:02.481Z [DEBUG] order-service - Operation: order_created - Processing time: 851ms - RequestID: q4xmpfmfam +2025-06-18T14:39:02.581Z [DEBUG] user-service - Operation: order_created - Processing time: 101ms - RequestID: fusmb6r6fjb +2025-06-18T14:39:02.681Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 401 - Response time: 730ms - IP: 192.168.181.225 - User: user_1015 - RequestID: l3toualmt4 +2025-06-18T14:39:02.781Z [TRACE] auth-service - Operation: cache_hit - Processing time: 724ms - RequestID: dtnsrj81hgv +2025-06-18T14:39:02.881Z [INFO] auth-service - Auth event: logout - User: user_1023 - IP: 192.168.170.215 - RequestID: jhtu7f6ahth +2025-06-18T14:39:02.981Z [INFO] notification-service - DELETE /api/v1/users - Status: 503 - Response time: 1326ms - IP: 192.168.68.158 - User: user_1008 - RequestID: 7ca5w2jhklf +2025-06-18T14:39:03.081Z [INFO] notification-service - Database INSERT on payments - Execution time: 432ms - Rows affected: 34 - RequestID: klb3n3e4qcl +2025-06-18T14:39:03.181Z [INFO] inventory-service - Operation: payment_processed - Processing time: 540ms - RequestID: dsd9q0kumvo +2025-06-18T14:39:03.281Z [INFO] order-service - Auth event: logout - User: user_1045 - IP: 192.168.144.38 - RequestID: ph724w9mgt +2025-06-18T14:39:03.381Z [DEBUG] user-service - Database INSERT on users - Execution time: 468ms - Rows affected: 18 - RequestID: vb94ttuqy5 +2025-06-18T14:39:03.481Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 499ms - IP: 192.168.227.77 - User: user_1036 - RequestID: wxxuhmnq3im +2025-06-18T14:39:03.581Z [INFO] inventory-service - Database SELECT on users - Execution time: 197ms - Rows affected: 57 - RequestID: b6dixqy4rth +2025-06-18T14:39:03.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 335ms - RequestID: af7f676ew0c +2025-06-18T14:39:03.781Z [INFO] payment-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.242.165 - RequestID: y8tfsx04s6 +2025-06-18T14:39:03.881Z [TRACE] user-service - Operation: cache_miss - Processing time: 239ms - RequestID: n69vx3if9bo +2025-06-18T14:39:03.981Z [INFO] order-service - Database DELETE on sessions - Execution time: 172ms - Rows affected: 42 - RequestID: g2gzygutgs9 +2025-06-18T14:39:04.081Z [TRACE] user-service - Database INSERT on products - Execution time: 113ms - Rows affected: 54 - RequestID: 47q6rs2grlx +2025-06-18T14:39:04.181Z [TRACE] notification-service - Auth event: password_change - User: user_1039 - IP: 192.168.30.79 - RequestID: cnrjv02nql7 +2025-06-18T14:39:04.281Z [INFO] user-service - Auth event: logout - User: user_1096 - IP: 192.168.240.169 - RequestID: j6zm7umc6x8 +2025-06-18T14:39:04.381Z [DEBUG] order-service - Operation: email_sent - Processing time: 711ms - RequestID: jdicokxkph +2025-06-18T14:39:04.481Z [TRACE] user-service - PUT /api/v1/inventory - Status: 401 - Response time: 805ms - IP: 192.168.64.33 - User: user_1087 - RequestID: lfqr36ykknn +2025-06-18T14:39:04.581Z [TRACE] inventory-service - Database DELETE on users - Execution time: 450ms - Rows affected: 2 - RequestID: w8fm5sz79mo +2025-06-18T14:39:04.681Z [INFO] payment-service - Auth event: password_change - User: user_1032 - IP: 192.168.64.33 - RequestID: zt7jl3ks7ll +2025-06-18T14:39:04.781Z [INFO] order-service - Database INSERT on payments - Execution time: 497ms - Rows affected: 75 - RequestID: llwkx0gwsbc +2025-06-18T14:39:04.881Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 967ms - IP: 192.168.141.100 - User: user_1032 - RequestID: 9p7lv8ubbjd +2025-06-18T14:39:04.981Z [INFO] payment-service - Operation: order_created - Processing time: 1031ms - RequestID: jx7oxfqioa +2025-06-18T14:39:05.081Z [DEBUG] user-service - PUT /api/v1/users - Status: 502 - Response time: 1708ms - IP: 192.168.81.206 - User: user_1001 - RequestID: 95oruin53s +2025-06-18T14:39:05.181Z [INFO] payment-service - Operation: webhook_sent - Processing time: 692ms - RequestID: edpg6ik30pq +2025-06-18T14:39:05.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.181.225 - RequestID: 7diadk78p8 +2025-06-18T14:39:05.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1013 - IP: 192.168.181.225 - RequestID: rm38ltviwf +2025-06-18T14:39:05.481Z [INFO] auth-service - PUT /api/v1/payments - Status: 502 - Response time: 1104ms - IP: 192.168.64.33 - User: user_1023 - RequestID: 30901qs0gx3 +2025-06-18T14:39:05.581Z [DEBUG] user-service - Auth event: logout - User: user_1035 - IP: 192.168.68.128 - RequestID: gq3stnpvbyn +2025-06-18T14:39:05.681Z [DEBUG] order-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.211.72 - RequestID: mgg714vr71 +2025-06-18T14:39:05.781Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 428ms - RequestID: 2p5qh7n6fw +2025-06-18T14:39:05.881Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1587ms - IP: 192.168.187.199 - User: user_1059 - RequestID: 3yja35lxvfs +2025-06-18T14:39:05.981Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 281ms - RequestID: pjy1e3ilngp +2025-06-18T14:39:06.081Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 468ms - Rows affected: 51 - RequestID: x117832p1ui +2025-06-18T14:39:06.181Z [TRACE] order-service - Auth event: login_failed - User: user_1035 - IP: 192.168.10.184 - RequestID: mvr9bmsadj +2025-06-18T14:39:06.281Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 250ms - Rows affected: 27 - RequestID: n8gb5rrahp +2025-06-18T14:39:06.381Z [DEBUG] user-service - Operation: payment_processed - Processing time: 61ms - RequestID: sbojarbcpa +2025-06-18T14:39:06.481Z [INFO] user-service - Operation: cache_hit - Processing time: 368ms - RequestID: 5jv2sxfx3uw +2025-06-18T14:39:06.581Z [INFO] auth-service - Auth event: password_change - User: user_1056 - IP: 192.168.158.144 - RequestID: b104rqyz86s +2025-06-18T14:39:06.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.147.171 - RequestID: uf9sb6eml0s +2025-06-18T14:39:06.781Z [DEBUG] auth-service - PUT /api/v1/users - Status: 400 - Response time: 187ms - IP: 192.168.235.117 - User: user_1067 - RequestID: jdjnm5d7nr +2025-06-18T14:39:06.881Z [INFO] order-service - Operation: notification_queued - Processing time: 742ms - RequestID: yex8gptx2w +2025-06-18T14:39:06.981Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 77ms - Rows affected: 96 - RequestID: gnzv4ea9fz +2025-06-18T14:39:07.081Z [INFO] inventory-service - Database INSERT on payments - Execution time: 472ms - Rows affected: 75 - RequestID: n2itf1zc4r8 +2025-06-18T14:39:07.181Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 390ms - Rows affected: 28 - RequestID: rdxvzgnkdh +2025-06-18T14:39:07.281Z [DEBUG] payment-service - Auth event: logout - User: user_1085 - IP: 192.168.14.77 - RequestID: ctstrdfglk7 +2025-06-18T14:39:07.381Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 404 - Response time: 2001ms - IP: 192.168.170.215 - User: user_1078 - RequestID: hjz53ijix2f +2025-06-18T14:39:07.481Z [DEBUG] order-service - POST /api/v1/users - Status: 400 - Response time: 1072ms - IP: 192.168.194.41 - User: user_1040 - RequestID: 10cuyin2ivj +2025-06-18T14:39:07.581Z [TRACE] order-service - PUT /api/v1/inventory - Status: 403 - Response time: 895ms - IP: 192.168.33.76 - User: user_1070 - RequestID: kxswtefaef +2025-06-18T14:39:07.681Z [TRACE] order-service - Database UPDATE on products - Execution time: 120ms - Rows affected: 91 - RequestID: kya74sv5hsm +2025-06-18T14:39:07.781Z [DEBUG] user-service - Operation: cache_miss - Processing time: 921ms - RequestID: 9ev15oljx2 +2025-06-18T14:39:07.881Z [TRACE] order-service - Operation: email_sent - Processing time: 484ms - RequestID: cmb3iduxor6 +2025-06-18T14:39:07.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 577ms - RequestID: 45a4hl7qmcp +2025-06-18T14:39:08.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.235.117 - RequestID: 029r4lia1tlv +2025-06-18T14:39:08.181Z [TRACE] notification-service - Operation: cache_miss - Processing time: 322ms - RequestID: vlm4mvuzh4 +2025-06-18T14:39:08.281Z [TRACE] order-service - Database INSERT on sessions - Execution time: 88ms - Rows affected: 89 - RequestID: hxtpu1ilcp7 +2025-06-18T14:39:08.381Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 269ms - Rows affected: 55 - RequestID: 4fk4qyl0ux9 +2025-06-18T14:39:08.481Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 217ms - Rows affected: 48 - RequestID: d8n7ae0worc +2025-06-18T14:39:08.581Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.187.199 - RequestID: 1ifta9yfl13 +2025-06-18T14:39:08.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.141.100 - RequestID: q3llmgzsc2 +2025-06-18T14:39:08.781Z [DEBUG] user-service - Auth event: login_failed - User: user_1050 - IP: 192.168.64.33 - RequestID: u6hda51m1c9 +2025-06-18T14:39:08.881Z [TRACE] order-service - Operation: cache_miss - Processing time: 707ms - RequestID: 0xvhsc73k70k +2025-06-18T14:39:08.981Z [INFO] user-service - Auth event: login_failed - User: user_1092 - IP: 192.168.113.218 - RequestID: q0upxyiv5e +2025-06-18T14:39:09.081Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 98ms - Rows affected: 66 - RequestID: 8gj9sfw7vah +2025-06-18T14:39:09.181Z [TRACE] notification-service - POST /api/v1/orders - Status: 503 - Response time: 99ms - IP: 192.168.81.206 - User: user_1001 - RequestID: klofn9yk0an +2025-06-18T14:39:09.281Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 195ms - RequestID: 54xttjs6utv +2025-06-18T14:39:09.381Z [INFO] auth-service - Operation: webhook_sent - Processing time: 873ms - RequestID: xmxe77qkcu +2025-06-18T14:39:09.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.28.146 - RequestID: 2vhey3nmmy5 +2025-06-18T14:39:09.581Z [INFO] order-service - Operation: webhook_sent - Processing time: 834ms - RequestID: bb2osxyouol +2025-06-18T14:39:09.681Z [INFO] notification-service - Auth event: logout - User: user_1061 - IP: 192.168.229.123 - RequestID: avhfjzzqi5j +2025-06-18T14:39:09.781Z [INFO] payment-service - Operation: inventory_updated - Processing time: 447ms - RequestID: 13si8jkk4bqo +2025-06-18T14:39:09.881Z [INFO] payment-service - Database SELECT on products - Execution time: 425ms - Rows affected: 25 - RequestID: bj3fl9tvxd +2025-06-18T14:39:09.981Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 119ms - Rows affected: 55 - RequestID: 60ff4n8jhau +2025-06-18T14:39:10.081Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 213ms - Rows affected: 47 - RequestID: hoohtdphz +2025-06-18T14:39:10.181Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 308ms - Rows affected: 59 - RequestID: tetqzksxtv +2025-06-18T14:39:10.281Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.11.60 - RequestID: 58iooglknst +2025-06-18T14:39:10.381Z [TRACE] user-service - DELETE /api/v1/users - Status: 400 - Response time: 1291ms - IP: 192.168.211.72 - User: user_1037 - RequestID: eqyvp0g8xfl +2025-06-18T14:39:10.481Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 159ms - Rows affected: 77 - RequestID: d853we55onb +2025-06-18T14:39:10.581Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1348ms - IP: 192.168.240.169 - User: user_1091 - RequestID: b8zsr08tet +2025-06-18T14:39:10.681Z [TRACE] payment-service - Database DELETE on products - Execution time: 106ms - Rows affected: 81 - RequestID: 4z3s757c36r +2025-06-18T14:39:10.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.64.33 - RequestID: eo7dv44srn +2025-06-18T14:39:10.881Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 57ms - Rows affected: 88 - RequestID: qj498hlpu3 +2025-06-18T14:39:10.981Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 530ms - IP: 192.168.138.123 - User: user_1008 - RequestID: d55178lkhr +2025-06-18T14:39:11.081Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 114ms - Rows affected: 66 - RequestID: 791kdbrpwbv +2025-06-18T14:39:11.181Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 54ms - Rows affected: 35 - RequestID: h29gw6f00h4 +2025-06-18T14:39:11.281Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 601ms - RequestID: dfju2g8qoe4 +2025-06-18T14:39:11.381Z [DEBUG] user-service - Auth event: logout - User: user_1008 - IP: 192.168.189.103 - RequestID: xyphppndgnk +2025-06-18T14:39:11.481Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 841ms - RequestID: a1ecf4efolc +2025-06-18T14:39:11.581Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1153ms - IP: 192.168.10.184 - User: user_1066 - RequestID: 0xar67bdxtg +2025-06-18T14:39:11.681Z [INFO] inventory-service - Database DELETE on payments - Execution time: 387ms - Rows affected: 2 - RequestID: nmwftbqgtl +2025-06-18T14:39:11.781Z [INFO] inventory-service - Operation: payment_processed - Processing time: 731ms - RequestID: g52gw8xzp4 +2025-06-18T14:39:11.881Z [TRACE] order-service - Operation: email_sent - Processing time: 173ms - RequestID: qgyayfwg6e +2025-06-18T14:39:11.981Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 329ms - Rows affected: 39 - RequestID: t5n39u0dgci +2025-06-18T14:39:12.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1070 - IP: 192.168.79.141 - RequestID: 83d4ygeb2dj +2025-06-18T14:39:12.181Z [TRACE] order-service - Database INSERT on users - Execution time: 301ms - Rows affected: 88 - RequestID: 3iqhjtnm9j +2025-06-18T14:39:12.281Z [TRACE] order-service - Database UPDATE on payments - Execution time: 187ms - Rows affected: 16 - RequestID: ko1lq5cf26n +2025-06-18T14:39:12.381Z [TRACE] notification-service - Operation: notification_queued - Processing time: 957ms - RequestID: kxzvpx066h +2025-06-18T14:39:12.481Z [INFO] auth-service - GET /api/v1/users - Status: 400 - Response time: 1108ms - IP: 192.168.170.215 - User: user_1084 - RequestID: 5sxg1h7atd7 +2025-06-18T14:39:12.581Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 272ms - Rows affected: 79 - RequestID: 4jeduv42n6u +2025-06-18T14:39:12.681Z [INFO] order-service - Auth event: password_change - User: user_1099 - IP: 192.168.79.141 - RequestID: nzgaqyahj3 +2025-06-18T14:39:12.781Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 87ms - Rows affected: 92 - RequestID: xivgkgpoj7i +2025-06-18T14:39:12.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.79.141 - RequestID: elgoq9p87dm +2025-06-18T14:39:12.981Z [INFO] user-service - Auth event: login_success - User: user_1036 - IP: 192.168.242.165 - RequestID: 6593umwfukw +2025-06-18T14:39:13.081Z [TRACE] payment-service - PATCH /api/v1/users - Status: 201 - Response time: 1013ms - IP: 192.168.194.41 - User: user_1070 - RequestID: rghhsjn5ki +2025-06-18T14:39:13.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.144.38 - RequestID: a4kthq08umg +2025-06-18T14:39:13.281Z [DEBUG] inventory-service - Operation: order_created - Processing time: 760ms - RequestID: di4w562wvc +2025-06-18T14:39:13.381Z [TRACE] payment-service - Database INSERT on products - Execution time: 175ms - Rows affected: 32 - RequestID: viayxrhxprh +2025-06-18T14:39:13.481Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 244ms - IP: 192.168.247.134 - User: user_1003 - RequestID: k9vuozzeipn +2025-06-18T14:39:13.581Z [TRACE] auth-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.10.184 - RequestID: 6wa0p9q4s0a +2025-06-18T14:39:13.681Z [TRACE] payment-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.144.38 - RequestID: 7alwslx1l3o +2025-06-18T14:39:13.781Z [DEBUG] order-service - GET /api/v1/orders - Status: 503 - Response time: 1337ms - IP: 192.168.227.77 - User: user_1052 - RequestID: 2yxqhof0r2d +2025-06-18T14:39:13.881Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 204ms - IP: 192.168.44.5 - User: user_1044 - RequestID: 9stotf42ww +2025-06-18T14:39:13.981Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 201 - Response time: 223ms - IP: 192.168.158.144 - User: user_1098 - RequestID: mbtizo6ltbe +2025-06-18T14:39:14.081Z [TRACE] notification-service - Database SELECT on orders - Execution time: 157ms - Rows affected: 11 - RequestID: 37c1ehvksnu +2025-06-18T14:39:14.181Z [DEBUG] order-service - Auth event: logout - User: user_1087 - IP: 192.168.28.146 - RequestID: d7emd7g1xs7 +2025-06-18T14:39:14.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 161ms - RequestID: b4i600dc66o +2025-06-18T14:39:14.381Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 201 - Response time: 490ms - IP: 192.168.167.32 - User: user_1025 - RequestID: 2xh1cx5nzsi +2025-06-18T14:39:14.481Z [TRACE] order-service - Operation: cache_hit - Processing time: 260ms - RequestID: jwvkunoivzo +2025-06-18T14:39:14.581Z [TRACE] notification-service - Auth event: login_failed - User: user_1000 - IP: 192.168.235.117 - RequestID: qu0yko2mcd +2025-06-18T14:39:14.681Z [DEBUG] user-service - Operation: email_sent - Processing time: 74ms - RequestID: ko9wyx48edn +2025-06-18T14:39:14.781Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 502 - Response time: 984ms - IP: 192.168.97.87 - User: user_1034 - RequestID: b6wil81eu4 +2025-06-18T14:39:14.881Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 961ms - RequestID: 2me4dwa44j4 +2025-06-18T14:39:14.981Z [DEBUG] order-service - Auth event: login_failed - User: user_1013 - IP: 192.168.235.117 - RequestID: ihikhm4r4ul +2025-06-18T14:39:15.081Z [DEBUG] order-service - Database SELECT on users - Execution time: 338ms - Rows affected: 79 - RequestID: f7yb9t1w3a +2025-06-18T14:39:15.181Z [TRACE] order-service - Database DELETE on payments - Execution time: 476ms - Rows affected: 36 - RequestID: y2qdwunlpn +2025-06-18T14:39:15.281Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 500 - Response time: 296ms - IP: 192.168.196.226 - User: user_1005 - RequestID: ihwk5lrurcr +2025-06-18T14:39:15.381Z [INFO] order-service - DELETE /api/v1/users - Status: 503 - Response time: 2004ms - IP: 192.168.68.128 - User: user_1090 - RequestID: qktxikhydk +2025-06-18T14:39:15.481Z [DEBUG] notification-service - Database SELECT on products - Execution time: 47ms - Rows affected: 73 - RequestID: j2h72micd4 +2025-06-18T14:39:15.581Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 220ms - Rows affected: 49 - RequestID: 3qm5jn5oqoa +2025-06-18T14:39:15.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 791ms - RequestID: 6uu5giegdiy +2025-06-18T14:39:15.781Z [TRACE] order-service - Database INSERT on payments - Execution time: 428ms - Rows affected: 57 - RequestID: 8clvtplknk6 +2025-06-18T14:39:15.881Z [INFO] notification-service - PUT /api/v1/users - Status: 401 - Response time: 1444ms - IP: 192.168.64.33 - User: user_1012 - RequestID: bmgxoi03aag +2025-06-18T14:39:15.981Z [DEBUG] notification-service - GET /api/v1/payments - Status: 400 - Response time: 1300ms - IP: 192.168.189.103 - User: user_1011 - RequestID: yys7qdb7ix +2025-06-18T14:39:16.081Z [DEBUG] order-service - GET /api/v1/orders - Status: 200 - Response time: 415ms - IP: 192.168.33.76 - User: user_1033 - RequestID: ovqinh8jrh +2025-06-18T14:39:16.181Z [INFO] notification-service - Operation: cache_hit - Processing time: 85ms - RequestID: qhtzwudum6e +2025-06-18T14:39:16.281Z [INFO] notification-service - Database INSERT on products - Execution time: 247ms - Rows affected: 42 - RequestID: sxf55kusb1 +2025-06-18T14:39:16.381Z [DEBUG] auth-service - Auth event: logout - User: user_1006 - IP: 192.168.141.100 - RequestID: 3im67j0etws +2025-06-18T14:39:16.481Z [DEBUG] order-service - Auth event: login_failed - User: user_1065 - IP: 192.168.247.134 - RequestID: 8qm44ouhwcn +2025-06-18T14:39:16.581Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 246ms - Rows affected: 68 - RequestID: r8rs5p83qto +2025-06-18T14:39:16.681Z [INFO] notification-service - Database SELECT on payments - Execution time: 111ms - Rows affected: 34 - RequestID: gq43ob5d627 +2025-06-18T14:39:16.781Z [TRACE] order-service - Operation: cache_miss - Processing time: 640ms - RequestID: au6ysaiq7rn +2025-06-18T14:39:16.881Z [DEBUG] payment-service - POST /api/v1/users - Status: 403 - Response time: 1788ms - IP: 192.168.181.225 - User: user_1063 - RequestID: 122tw4hut7 +2025-06-18T14:39:16.981Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 502 - Response time: 997ms - IP: 192.168.235.117 - User: user_1085 - RequestID: z8a29lnztuc +2025-06-18T14:39:17.081Z [TRACE] auth-service - Operation: order_created - Processing time: 87ms - RequestID: 0onblvvidsc +2025-06-18T14:39:17.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.79.116 - RequestID: srisc2gg9d8 +2025-06-18T14:39:17.281Z [INFO] inventory-service - Operation: cache_miss - Processing time: 443ms - RequestID: kjzzajnrf0r +2025-06-18T14:39:17.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.240.169 - RequestID: yj6rxe7mzh +2025-06-18T14:39:17.481Z [TRACE] auth-service - Operation: email_sent - Processing time: 707ms - RequestID: qjmf360pgxr +2025-06-18T14:39:17.581Z [INFO] inventory-service - Database INSERT on users - Execution time: 256ms - Rows affected: 64 - RequestID: whx0lmd5vx +2025-06-18T14:39:17.681Z [INFO] notification-service - Database INSERT on payments - Execution time: 315ms - Rows affected: 51 - RequestID: lri75jz6n +2025-06-18T14:39:17.781Z [DEBUG] user-service - GET /api/v1/inventory - Status: 201 - Response time: 1868ms - IP: 192.168.242.165 - User: user_1069 - RequestID: i570onmckir +2025-06-18T14:39:17.881Z [TRACE] auth-service - Operation: order_created - Processing time: 619ms - RequestID: oggwv2kdjai +2025-06-18T14:39:17.981Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 538ms - RequestID: jupp2z4zokn +2025-06-18T14:39:18.081Z [INFO] inventory-service - Operation: order_created - Processing time: 498ms - RequestID: cbqace0z075 +2025-06-18T14:39:18.181Z [DEBUG] notification-service - Auth event: logout - User: user_1012 - IP: 192.168.32.38 - RequestID: 5ns4bu8jbba +2025-06-18T14:39:18.281Z [TRACE] inventory-service - GET /api/v1/orders - Status: 500 - Response time: 498ms - IP: 192.168.32.38 - User: user_1057 - RequestID: ywrwnrsdi3 +2025-06-18T14:39:18.381Z [INFO] payment-service - Database UPDATE on payments - Execution time: 241ms - Rows affected: 32 - RequestID: oo2aew4y8wr +2025-06-18T14:39:18.481Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 288ms - Rows affected: 72 - RequestID: tn6uio8ntjg +2025-06-18T14:39:18.581Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 500 - Response time: 688ms - IP: 192.168.33.76 - User: user_1001 - RequestID: keg8ypvpy1o +2025-06-18T14:39:18.681Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 394ms - RequestID: 59yv2x2ewxt +2025-06-18T14:39:18.781Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 491ms - Rows affected: 81 - RequestID: j0dxb69gab +2025-06-18T14:39:18.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 216ms - RequestID: j3vfki0iuv +2025-06-18T14:39:18.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 893ms - RequestID: nsp9fwhywt +2025-06-18T14:39:19.081Z [TRACE] notification-service - Database INSERT on users - Execution time: 174ms - Rows affected: 80 - RequestID: urj7m3qo2ui +2025-06-18T14:39:19.181Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 949ms - RequestID: 3a1icpemhg6 +2025-06-18T14:39:19.281Z [INFO] auth-service - GET /api/v1/inventory - Status: 401 - Response time: 1976ms - IP: 192.168.46.63 - User: user_1001 - RequestID: ydmt90ymnpr +2025-06-18T14:39:19.381Z [INFO] inventory-service - Auth event: login_success - User: user_1093 - IP: 192.168.81.206 - RequestID: udjuiziy36e +2025-06-18T14:39:19.481Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 144ms - Rows affected: 28 - RequestID: xwwonrgqqh +2025-06-18T14:39:19.581Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 731ms - RequestID: 3cb2mdz1mm1 +2025-06-18T14:39:19.681Z [TRACE] user-service - DELETE /api/v1/orders - Status: 200 - Response time: 1811ms - IP: 192.168.10.184 - User: user_1053 - RequestID: htcguvsy7j +2025-06-18T14:39:19.781Z [DEBUG] notification-service - Auth event: password_change - User: user_1065 - IP: 192.168.227.77 - RequestID: eknobivbg4s +2025-06-18T14:39:19.881Z [TRACE] notification-service - GET /api/v1/users - Status: 201 - Response time: 651ms - IP: 192.168.181.225 - User: user_1014 - RequestID: 6sd6gpj88ra +2025-06-18T14:39:19.981Z [DEBUG] order-service - Database UPDATE on products - Execution time: 110ms - Rows affected: 69 - RequestID: 0j9l6edomubj +2025-06-18T14:39:20.081Z [INFO] auth-service - Auth event: password_change - User: user_1038 - IP: 192.168.189.103 - RequestID: aoepctw30wd +2025-06-18T14:39:20.181Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 65ms - Rows affected: 54 - RequestID: a3jys1r9vqa +2025-06-18T14:39:20.281Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 24ms - Rows affected: 20 - RequestID: xtqvc4ab3g +2025-06-18T14:39:20.381Z [DEBUG] payment-service - Database DELETE on users - Execution time: 346ms - Rows affected: 64 - RequestID: o1dr8rsth4 +2025-06-18T14:39:20.481Z [INFO] order-service - Database SELECT on users - Execution time: 66ms - Rows affected: 15 - RequestID: 7s3t52t2vqy +2025-06-18T14:39:20.581Z [INFO] payment-service - Auth event: login_failed - User: user_1056 - IP: 192.168.10.184 - RequestID: em6djix3qfo +2025-06-18T14:39:20.681Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1884ms - IP: 192.168.33.76 - User: user_1062 - RequestID: 8decov5dl6i +2025-06-18T14:39:20.781Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 38ms - Rows affected: 75 - RequestID: l65ae6rcquk +2025-06-18T14:39:20.881Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1441ms - IP: 192.168.133.7 - User: user_1065 - RequestID: g32s4gx6a5t +2025-06-18T14:39:20.981Z [INFO] order-service - GET /api/v1/orders - Status: 201 - Response time: 936ms - IP: 192.168.100.240 - User: user_1078 - RequestID: h72kop1nnv +2025-06-18T14:39:21.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.30.79 - RequestID: g6u4lbdyv9n +2025-06-18T14:39:21.181Z [INFO] auth-service - Operation: payment_processed - Processing time: 1000ms - RequestID: c7h31t26hi +2025-06-18T14:39:21.281Z [TRACE] order-service - GET /api/v1/inventory - Status: 403 - Response time: 1788ms - IP: 192.168.196.226 - User: user_1024 - RequestID: y412dvuom6o +2025-06-18T14:39:21.381Z [INFO] notification-service - DELETE /api/v1/users - Status: 401 - Response time: 1671ms - IP: 192.168.170.215 - User: user_1044 - RequestID: 97vznht2wj5 +2025-06-18T14:39:21.481Z [INFO] auth-service - Database UPDATE on products - Execution time: 242ms - Rows affected: 8 - RequestID: 4b91t5txhn6 +2025-06-18T14:39:21.581Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 180ms - Rows affected: 36 - RequestID: sc1hia98s4n +2025-06-18T14:39:21.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.79.116 - RequestID: 0tv336wyzjy +2025-06-18T14:39:21.781Z [INFO] order-service - Auth event: password_change - User: user_1050 - IP: 192.168.113.218 - RequestID: rvpuff1kcy9 +2025-06-18T14:39:21.881Z [INFO] payment-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.36.218 - RequestID: 59f7f0nhp2q +2025-06-18T14:39:21.981Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 84ms - Rows affected: 13 - RequestID: k8w9sam9r +2025-06-18T14:39:22.081Z [DEBUG] inventory-service - Auth event: password_change - User: user_1021 - IP: 192.168.64.33 - RequestID: wjo4f4mgb2 +2025-06-18T14:39:22.181Z [INFO] payment-service - Operation: email_sent - Processing time: 1027ms - RequestID: iokl1m4zal +2025-06-18T14:39:22.281Z [TRACE] payment-service - Database INSERT on users - Execution time: 34ms - Rows affected: 92 - RequestID: mdnh2ho89z +2025-06-18T14:39:22.381Z [INFO] notification-service - Auth event: login_failed - User: user_1099 - IP: 192.168.79.141 - RequestID: 896t6ledokk +2025-06-18T14:39:22.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 601ms - RequestID: xw73lksybf +2025-06-18T14:39:22.581Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 188ms - RequestID: clx1sp100d9 +2025-06-18T14:39:22.681Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 215ms - Rows affected: 52 - RequestID: 8b9njzcvkum +2025-06-18T14:39:22.781Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.170.215 - RequestID: oevsbhg4roj +2025-06-18T14:39:22.881Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 400 - Response time: 1711ms - IP: 192.168.104.37 - User: user_1051 - RequestID: h8nz87sknad +2025-06-18T14:39:22.981Z [TRACE] notification-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.147.171 - RequestID: hctflf7vwvi +2025-06-18T14:39:23.081Z [INFO] inventory-service - Auth event: login_failed - User: user_1032 - IP: 192.168.240.169 - RequestID: 7c8nziedtth +2025-06-18T14:39:23.181Z [INFO] auth-service - Auth event: login_success - User: user_1022 - IP: 192.168.28.146 - RequestID: tulxyijcses +2025-06-18T14:39:23.281Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 236ms - Rows affected: 93 - RequestID: 1d37jl37soi +2025-06-18T14:39:23.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.10.184 - RequestID: 00m9qjl3z5dgm +2025-06-18T14:39:23.481Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 6ms - Rows affected: 33 - RequestID: cjni2x0pud +2025-06-18T14:39:23.581Z [INFO] auth-service - Database SELECT on products - Execution time: 423ms - Rows affected: 7 - RequestID: mpcoaqcegg9 +2025-06-18T14:39:23.681Z [DEBUG] notification-service - PUT /api/v1/users - Status: 403 - Response time: 142ms - IP: 192.168.247.134 - User: user_1014 - RequestID: cpx4pjeewxj +2025-06-18T14:39:23.781Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 912ms - RequestID: n5kn4mk3glb +2025-06-18T14:39:23.881Z [TRACE] order-service - Operation: order_created - Processing time: 867ms - RequestID: 7t54m6kq0e4 +2025-06-18T14:39:23.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1024 - IP: 192.168.196.226 - RequestID: 7k5kvxq2wc +2025-06-18T14:39:24.081Z [DEBUG] payment-service - GET /api/v1/orders - Status: 502 - Response time: 613ms - IP: 192.168.1.152 - User: user_1016 - RequestID: kr8vk3on87c +2025-06-18T14:39:24.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 112ms - RequestID: qcaaq3bb148 +2025-06-18T14:39:24.281Z [TRACE] order-service - Operation: payment_processed - Processing time: 903ms - RequestID: 9kxsvxnvxlk +2025-06-18T14:39:24.381Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 454ms - Rows affected: 96 - RequestID: s5x51bc8x8i +2025-06-18T14:39:24.481Z [TRACE] user-service - Operation: webhook_sent - Processing time: 951ms - RequestID: ucua92w8uzd +2025-06-18T14:39:24.581Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 728ms - RequestID: j4l83kfsdtm +2025-06-18T14:39:24.681Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 109ms - Rows affected: 35 - RequestID: gcjmazddfql +2025-06-18T14:39:24.781Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 10ms - Rows affected: 57 - RequestID: 5cz18a85oo9 +2025-06-18T14:39:24.881Z [INFO] order-service - Operation: order_created - Processing time: 999ms - RequestID: 7gxj1et4rc5 +2025-06-18T14:39:24.981Z [DEBUG] user-service - PUT /api/v1/users - Status: 403 - Response time: 1712ms - IP: 192.168.211.72 - User: user_1046 - RequestID: y4p4jqeufuh +2025-06-18T14:39:25.081Z [INFO] notification-service - Database UPDATE on products - Execution time: 388ms - Rows affected: 76 - RequestID: fjrjcum20tm +2025-06-18T14:39:25.181Z [DEBUG] auth-service - Auth event: password_change - User: user_1077 - IP: 192.168.227.77 - RequestID: oymi5a0wfjl +2025-06-18T14:39:25.281Z [DEBUG] payment-service - Database INSERT on users - Execution time: 251ms - Rows affected: 33 - RequestID: onei78f7elk +2025-06-18T14:39:25.381Z [INFO] user-service - Operation: cache_hit - Processing time: 993ms - RequestID: n0xev295b4 +2025-06-18T14:39:25.481Z [DEBUG] user-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.167.32 - RequestID: 4j3ivq3ed4j +2025-06-18T14:39:25.581Z [DEBUG] user-service - Auth event: login_success - User: user_1079 - IP: 192.168.133.7 - RequestID: ipa5f0kt54 +2025-06-18T14:39:25.681Z [TRACE] user-service - Database DELETE on sessions - Execution time: 394ms - Rows affected: 13 - RequestID: vij4tynph7e +2025-06-18T14:39:25.781Z [INFO] auth-service - Database DELETE on payments - Execution time: 328ms - Rows affected: 48 - RequestID: g93nb6ekbi +2025-06-18T14:39:25.881Z [DEBUG] notification-service - Operation: order_created - Processing time: 375ms - RequestID: 4ywb756r4sm +2025-06-18T14:39:25.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.79.116 - RequestID: oh54xs2jjb +2025-06-18T14:39:26.081Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 115ms - Rows affected: 60 - RequestID: yxudqv8xkno +2025-06-18T14:39:26.181Z [INFO] notification-service - Operation: email_sent - Processing time: 134ms - RequestID: g1jmx7l52iv +2025-06-18T14:39:26.281Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1455ms - IP: 192.168.133.7 - User: user_1003 - RequestID: jgp219jngs +2025-06-18T14:39:26.381Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1904ms - IP: 192.168.44.5 - User: user_1086 - RequestID: 2csido2ndcw +2025-06-18T14:39:26.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1054 - IP: 192.168.32.38 - RequestID: b8u3xfs142o +2025-06-18T14:39:26.581Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 404 - Response time: 1227ms - IP: 192.168.211.72 - User: user_1099 - RequestID: vs34931jyim +2025-06-18T14:39:26.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1088 - IP: 192.168.32.38 - RequestID: v236tfqxdhd +2025-06-18T14:39:26.781Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 77ms - Rows affected: 23 - RequestID: 5fss15ntb2g +2025-06-18T14:39:26.881Z [INFO] order-service - Auth event: login_failed - User: user_1078 - IP: 192.168.81.206 - RequestID: j0sz0rg9ha +2025-06-18T14:39:26.981Z [TRACE] user-service - GET /api/v1/orders - Status: 502 - Response time: 790ms - IP: 192.168.85.229 - User: user_1013 - RequestID: 92di6zychef +2025-06-18T14:39:27.081Z [TRACE] payment-service - Operation: order_created - Processing time: 462ms - RequestID: 7vd7csauenk +2025-06-18T14:39:27.181Z [TRACE] order-service - Auth event: logout - User: user_1081 - IP: 192.168.194.41 - RequestID: pkgbdkghf7g +2025-06-18T14:39:27.281Z [DEBUG] user-service - Operation: cache_hit - Processing time: 721ms - RequestID: lneegizff7c +2025-06-18T14:39:27.381Z [TRACE] inventory-service - Auth event: login_success - User: user_1032 - IP: 192.168.79.116 - RequestID: r15xunrel +2025-06-18T14:39:27.481Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 253ms - Rows affected: 84 - RequestID: tiwecr4zc4 +2025-06-18T14:39:27.581Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 400 - Response time: 190ms - IP: 192.168.235.117 - User: user_1054 - RequestID: aosefci4nzr +2025-06-18T14:39:27.681Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 502 - Response time: 203ms - IP: 192.168.53.133 - User: user_1011 - RequestID: h3bae4bc76t +2025-06-18T14:39:27.781Z [INFO] notification-service - PATCH /api/v1/orders - Status: 404 - Response time: 833ms - IP: 192.168.189.103 - User: user_1082 - RequestID: i7971k64jqo +2025-06-18T14:39:27.881Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 485ms - RequestID: 1pnnau4mn0p +2025-06-18T14:39:27.981Z [INFO] auth-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.32.38 - RequestID: 6350f1yrne +2025-06-18T14:39:28.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 593ms - RequestID: 5upk1xuey9y +2025-06-18T14:39:28.181Z [TRACE] auth-service - Database DELETE on products - Execution time: 81ms - Rows affected: 23 - RequestID: jvmyjfdu7ol +2025-06-18T14:39:28.281Z [TRACE] order-service - DELETE /api/v1/users - Status: 404 - Response time: 563ms - IP: 192.168.13.72 - User: user_1038 - RequestID: 4crk8mexnu4 +2025-06-18T14:39:28.381Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 201ms - Rows affected: 95 - RequestID: hie2h9wzb +2025-06-18T14:39:28.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.196.226 - RequestID: u69ib0qk8y +2025-06-18T14:39:28.581Z [TRACE] auth-service - DELETE /api/v1/users - Status: 200 - Response time: 1452ms - IP: 192.168.242.165 - User: user_1038 - RequestID: tl3txovqeb +2025-06-18T14:39:28.681Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 1789ms - IP: 192.168.79.116 - User: user_1035 - RequestID: 94wf59p4c17 +2025-06-18T14:39:28.781Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 470ms - RequestID: sukrihiiufq +2025-06-18T14:39:28.881Z [INFO] payment-service - Operation: inventory_updated - Processing time: 798ms - RequestID: lm7z5b4thtd +2025-06-18T14:39:28.981Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 854ms - RequestID: 60w5tyf0yje +2025-06-18T14:39:29.081Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1504ms - IP: 192.168.141.100 - User: user_1020 - RequestID: mh8wyjq2uf +2025-06-18T14:39:29.181Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 519ms - RequestID: jchx3m9fsgf +2025-06-18T14:39:29.281Z [INFO] order-service - Database INSERT on sessions - Execution time: 179ms - Rows affected: 8 - RequestID: ib82nbaf2tb +2025-06-18T14:39:29.381Z [TRACE] auth-service - Database UPDATE on products - Execution time: 99ms - Rows affected: 44 - RequestID: q7ya23d7hu +2025-06-18T14:39:29.481Z [INFO] order-service - Auth event: login_success - User: user_1016 - IP: 192.168.138.123 - RequestID: wsicwjgbj7k +2025-06-18T14:39:29.581Z [INFO] inventory-service - Auth event: logout - User: user_1017 - IP: 192.168.227.233 - RequestID: 0xji0meh1gu +2025-06-18T14:39:29.681Z [TRACE] order-service - Database INSERT on sessions - Execution time: 160ms - Rows affected: 16 - RequestID: vnn2r9fwchb +2025-06-18T14:39:29.781Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 451ms - Rows affected: 50 - RequestID: iklypr9papn +2025-06-18T14:39:29.881Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 95ms - Rows affected: 98 - RequestID: k1tear2gr0j +2025-06-18T14:39:29.981Z [INFO] payment-service - Operation: email_sent - Processing time: 217ms - RequestID: h81ebuzrw8g +2025-06-18T14:39:30.081Z [INFO] auth-service - PUT /api/v1/payments - Status: 502 - Response time: 2005ms - IP: 192.168.46.63 - User: user_1099 - RequestID: rjumlqqa14d +2025-06-18T14:39:30.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 1033ms - RequestID: adu17bcp1s +2025-06-18T14:39:30.281Z [INFO] notification-service - DELETE /api/v1/orders - Status: 500 - Response time: 1870ms - IP: 192.168.240.169 - User: user_1045 - RequestID: 1c4xwq9ovze +2025-06-18T14:39:30.381Z [INFO] user-service - Operation: webhook_sent - Processing time: 688ms - RequestID: jomwmojdd6 +2025-06-18T14:39:30.481Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 155ms - Rows affected: 11 - RequestID: 1x4c5br5mbx +2025-06-18T14:39:30.581Z [INFO] auth-service - Operation: inventory_updated - Processing time: 114ms - RequestID: sp3r2h2ifo +2025-06-18T14:39:30.681Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 291ms - Rows affected: 93 - RequestID: lzvw1c3ngb +2025-06-18T14:39:30.781Z [TRACE] user-service - Auth event: password_change - User: user_1082 - IP: 192.168.141.100 - RequestID: wituoob9p8l +2025-06-18T14:39:30.881Z [DEBUG] order-service - Auth event: logout - User: user_1042 - IP: 192.168.68.128 - RequestID: 1zz2yvtb0j8 +2025-06-18T14:39:30.981Z [DEBUG] payment-service - Auth event: login_failed - User: user_1009 - IP: 192.168.33.76 - RequestID: xsgtcpge65 +2025-06-18T14:39:31.081Z [INFO] user-service - Database DELETE on users - Execution time: 43ms - Rows affected: 81 - RequestID: jafwfxaaqcf +2025-06-18T14:39:31.181Z [DEBUG] payment-service - Auth event: password_change - User: user_1059 - IP: 192.168.30.79 - RequestID: 32f7mm7wzaz +2025-06-18T14:39:31.281Z [INFO] order-service - PATCH /api/v1/users - Status: 400 - Response time: 740ms - IP: 192.168.64.33 - User: user_1032 - RequestID: yrjwiorp79p +2025-06-18T14:39:31.381Z [INFO] inventory-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.97.87 - RequestID: pd8g6wois1 +2025-06-18T14:39:31.481Z [INFO] auth-service - GET /api/v1/payments - Status: 401 - Response time: 87ms - IP: 192.168.104.37 - User: user_1021 - RequestID: ypp22csh0jf +2025-06-18T14:39:31.581Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1755ms - IP: 192.168.181.225 - User: user_1069 - RequestID: 4f6mkssc1qn +2025-06-18T14:39:31.681Z [INFO] payment-service - Database SELECT on payments - Execution time: 132ms - Rows affected: 89 - RequestID: 3rtgm5rcssj +2025-06-18T14:39:31.781Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 988ms - RequestID: wabmoeaovg +2025-06-18T14:39:31.881Z [INFO] user-service - POST /api/v1/users - Status: 401 - Response time: 217ms - IP: 192.168.30.79 - User: user_1028 - RequestID: vuefi96puyf +2025-06-18T14:39:31.981Z [TRACE] notification-service - Operation: notification_queued - Processing time: 335ms - RequestID: kbyqn5bl39h +2025-06-18T14:39:32.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1028 - IP: 192.168.10.184 - RequestID: ggeq61cfsh +2025-06-18T14:39:32.181Z [INFO] payment-service - PUT /api/v1/payments - Status: 403 - Response time: 1716ms - IP: 192.168.227.233 - User: user_1015 - RequestID: 4kd6cmzppl +2025-06-18T14:39:32.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1025 - IP: 192.168.189.103 - RequestID: 9zb18gxhz6a +2025-06-18T14:39:32.381Z [DEBUG] payment-service - Database SELECT on products - Execution time: 345ms - Rows affected: 65 - RequestID: 7cs82copwsl +2025-06-18T14:39:32.481Z [TRACE] notification-service - Auth event: logout - User: user_1032 - IP: 192.168.79.143 - RequestID: ol5t7jldife +2025-06-18T14:39:32.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.232.72 - RequestID: l3dhafpynh +2025-06-18T14:39:32.681Z [DEBUG] user-service - DELETE /api/v1/users - Status: 503 - Response time: 1802ms - IP: 192.168.242.165 - User: user_1013 - RequestID: 82trsrrf2dg +2025-06-18T14:39:32.781Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.44.5 - RequestID: 7d6t30dewee +2025-06-18T14:39:32.881Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1357ms - IP: 192.168.229.123 - User: user_1098 - RequestID: u2qqpa60l1d +2025-06-18T14:39:32.981Z [TRACE] user-service - Auth event: login_success - User: user_1075 - IP: 192.168.33.76 - RequestID: dbudynxwyxp +2025-06-18T14:39:33.081Z [INFO] user-service - Database DELETE on payments - Execution time: 22ms - Rows affected: 33 - RequestID: dgzmbx8a4s +2025-06-18T14:39:33.181Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 10ms - Rows affected: 94 - RequestID: 0g37b69c0506 +2025-06-18T14:39:33.281Z [INFO] notification-service - GET /api/v1/inventory - Status: 401 - Response time: 1032ms - IP: 192.168.147.171 - User: user_1030 - RequestID: 88gyhcztmgm +2025-06-18T14:39:33.381Z [INFO] user-service - Operation: webhook_sent - Processing time: 546ms - RequestID: vmv6v6gcb2h +2025-06-18T14:39:33.481Z [TRACE] auth-service - Operation: email_sent - Processing time: 225ms - RequestID: irijoxr2a3f +2025-06-18T14:39:33.581Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 403 - Response time: 935ms - IP: 192.168.167.32 - User: user_1057 - RequestID: vta1t4zhdwk +2025-06-18T14:39:33.681Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1074ms - IP: 192.168.211.72 - User: user_1071 - RequestID: dyqmm25kw3 +2025-06-18T14:39:33.781Z [DEBUG] notification-service - Operation: email_sent - Processing time: 973ms - RequestID: 4vrszmkpmo5 +2025-06-18T14:39:33.881Z [INFO] user-service - POST /api/v1/payments - Status: 404 - Response time: 1001ms - IP: 192.168.79.143 - User: user_1051 - RequestID: n2lzvs25fzs +2025-06-18T14:39:33.981Z [TRACE] order-service - PUT /api/v1/orders - Status: 503 - Response time: 1426ms - IP: 192.168.14.77 - User: user_1043 - RequestID: 0nnbsjnkb0th +2025-06-18T14:39:34.081Z [DEBUG] order-service - GET /api/v1/inventory - Status: 404 - Response time: 433ms - IP: 192.168.53.133 - User: user_1017 - RequestID: we1fo00swh +2025-06-18T14:39:34.181Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1990ms - IP: 192.168.68.128 - User: user_1002 - RequestID: zj9alohepc9 +2025-06-18T14:39:34.281Z [INFO] notification-service - Database UPDATE on users - Execution time: 203ms - Rows affected: 51 - RequestID: 0lg8x32bu1of +2025-06-18T14:39:34.381Z [INFO] order-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.227.77 - RequestID: 0xqz9jq2y7do +2025-06-18T14:39:34.481Z [INFO] payment-service - Auth event: logout - User: user_1054 - IP: 192.168.227.233 - RequestID: 63rlpz0lpjt +2025-06-18T14:39:34.581Z [TRACE] auth-service - Operation: cache_miss - Processing time: 990ms - RequestID: mqdbwh2b0ib +2025-06-18T14:39:34.681Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 166ms - RequestID: bo7qtqiaolt +2025-06-18T14:39:34.781Z [TRACE] auth-service - Auth event: login_success - User: user_1010 - IP: 192.168.10.184 - RequestID: ds9sjcthqt +2025-06-18T14:39:34.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.187.199 - RequestID: 5frfk7gqce3 +2025-06-18T14:39:34.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 61ms - RequestID: zlgfxr100u +2025-06-18T14:39:35.081Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 215ms - RequestID: mdjxd2vuua9 +2025-06-18T14:39:35.181Z [INFO] user-service - Operation: order_created - Processing time: 440ms - RequestID: c9hu8rt0hjl +2025-06-18T14:39:35.281Z [TRACE] inventory-service - POST /api/v1/orders - Status: 400 - Response time: 701ms - IP: 192.168.138.123 - User: user_1052 - RequestID: 9fzwu05tdgt +2025-06-18T14:39:35.381Z [DEBUG] payment-service - Auth event: logout - User: user_1076 - IP: 192.168.227.77 - RequestID: bm9gwqxmhfl +2025-06-18T14:39:35.481Z [INFO] auth-service - Operation: notification_queued - Processing time: 360ms - RequestID: vv96xntfcfm +2025-06-18T14:39:35.581Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 893ms - RequestID: nxcdwukrcu +2025-06-18T14:39:35.681Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 157ms - Rows affected: 69 - RequestID: sqllbzq75u +2025-06-18T14:39:35.781Z [TRACE] payment-service - Operation: cache_miss - Processing time: 162ms - RequestID: 7doli1flyw6 +2025-06-18T14:39:35.881Z [INFO] user-service - Database INSERT on payments - Execution time: 276ms - Rows affected: 1 - RequestID: focxjqe8qm5 +2025-06-18T14:39:35.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.240.169 - RequestID: plv2ijbk5sm +2025-06-18T14:39:36.081Z [DEBUG] user-service - Operation: payment_processed - Processing time: 334ms - RequestID: zq2nfxl2wm +2025-06-18T14:39:36.181Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 115ms - Rows affected: 17 - RequestID: 78nv68p855p +2025-06-18T14:39:36.281Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 484ms - Rows affected: 43 - RequestID: xr3yur6qylp +2025-06-18T14:39:36.381Z [DEBUG] payment-service - Database DELETE on products - Execution time: 319ms - Rows affected: 75 - RequestID: jqouiesao98 +2025-06-18T14:39:36.481Z [INFO] notification-service - Auth event: login_failed - User: user_1075 - IP: 192.168.211.72 - RequestID: 8kz6ekj422x +2025-06-18T14:39:36.581Z [TRACE] user-service - Auth event: login_failed - User: user_1033 - IP: 192.168.242.165 - RequestID: uo7xowmf9ra +2025-06-18T14:39:36.681Z [INFO] user-service - Database UPDATE on orders - Execution time: 356ms - Rows affected: 7 - RequestID: 1dh3jvwwlxu +2025-06-18T14:39:36.781Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 940ms - RequestID: 0xdvegx3ooy +2025-06-18T14:39:36.881Z [INFO] user-service - GET /api/v1/payments - Status: 401 - Response time: 860ms - IP: 192.168.32.38 - User: user_1048 - RequestID: 2x5zk5qhj34 +2025-06-18T14:39:36.981Z [TRACE] notification-service - Operation: order_created - Processing time: 958ms - RequestID: 2tica9f9mq8 +2025-06-18T14:39:37.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 1035ms - RequestID: rvuzamg2a7m +2025-06-18T14:39:37.181Z [DEBUG] user-service - Database DELETE on orders - Execution time: 213ms - Rows affected: 34 - RequestID: tl4tqgsitvn +2025-06-18T14:39:37.281Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 9ms - Rows affected: 89 - RequestID: cxajs0w01a +2025-06-18T14:39:37.381Z [TRACE] user-service - Operation: email_sent - Processing time: 852ms - RequestID: vkypdpavd +2025-06-18T14:39:37.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.79.116 - RequestID: 7djj0c09c3b +2025-06-18T14:39:37.581Z [INFO] user-service - Operation: webhook_sent - Processing time: 1042ms - RequestID: c84rl1kbe6r +2025-06-18T14:39:37.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.196.226 - RequestID: hamycdb62iq +2025-06-18T14:39:37.781Z [DEBUG] user-service - Auth event: login_failed - User: user_1022 - IP: 192.168.211.72 - RequestID: 84dq69bnysx +2025-06-18T14:39:37.881Z [INFO] user-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.187.199 - RequestID: jnnxpxngp7k +2025-06-18T14:39:37.981Z [TRACE] notification-service - Auth event: login_success - User: user_1018 - IP: 192.168.170.215 - RequestID: 3tyav8opscc +2025-06-18T14:39:38.081Z [DEBUG] user-service - Database DELETE on payments - Execution time: 205ms - Rows affected: 66 - RequestID: hxi7zp73w3b +2025-06-18T14:39:38.181Z [INFO] user-service - Database DELETE on sessions - Execution time: 69ms - Rows affected: 40 - RequestID: gl57vie8aur +2025-06-18T14:39:38.281Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 188ms - RequestID: nvpdiyzgmn +2025-06-18T14:39:38.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1095 - IP: 192.168.100.240 - RequestID: br6e3c8l01l +2025-06-18T14:39:38.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1093 - IP: 192.168.167.32 - RequestID: u13lxpqi8e +2025-06-18T14:39:38.581Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 401 - Response time: 551ms - IP: 192.168.247.134 - User: user_1011 - RequestID: k9dtww3zu5k +2025-06-18T14:39:38.681Z [TRACE] payment-service - POST /api/v1/orders - Status: 401 - Response time: 835ms - IP: 192.168.100.240 - User: user_1094 - RequestID: qqzq3wgakyd +2025-06-18T14:39:38.781Z [INFO] user-service - Auth event: logout - User: user_1006 - IP: 192.168.100.240 - RequestID: b2qya5ql6jt +2025-06-18T14:39:38.881Z [INFO] notification-service - Operation: notification_queued - Processing time: 926ms - RequestID: hmifu5tkinv +2025-06-18T14:39:38.981Z [INFO] auth-service - DELETE /api/v1/users - Status: 500 - Response time: 1204ms - IP: 192.168.53.133 - User: user_1083 - RequestID: rccrkr2089e +2025-06-18T14:39:39.081Z [TRACE] auth-service - Operation: cache_miss - Processing time: 379ms - RequestID: 73qtts6snvj +2025-06-18T14:39:39.181Z [INFO] order-service - DELETE /api/v1/orders - Status: 200 - Response time: 1687ms - IP: 192.168.227.233 - User: user_1097 - RequestID: hwlktgidkkl +2025-06-18T14:39:39.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1003 - IP: 192.168.68.128 - RequestID: 7d9t3sh56wh +2025-06-18T14:39:39.381Z [TRACE] auth-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.31.117 - RequestID: tgha5z02pr +2025-06-18T14:39:39.481Z [INFO] order-service - POST /api/v1/inventory - Status: 404 - Response time: 1817ms - IP: 192.168.147.171 - User: user_1011 - RequestID: 00s5ajzqmyjf +2025-06-18T14:39:39.581Z [INFO] auth-service - Database INSERT on orders - Execution time: 480ms - Rows affected: 24 - RequestID: 507anzr03in +2025-06-18T14:39:39.681Z [INFO] notification-service - Auth event: login_success - User: user_1035 - IP: 192.168.167.32 - RequestID: ib7uvll6wcd +2025-06-18T14:39:39.781Z [INFO] user-service - Operation: order_created - Processing time: 236ms - RequestID: 0diuknadmga6 +2025-06-18T14:39:39.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1047 - IP: 192.168.133.7 - RequestID: ixmhqevyreb +2025-06-18T14:39:39.981Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 90ms - RequestID: guot3k8g60v +2025-06-18T14:39:40.081Z [INFO] order-service - Operation: payment_processed - Processing time: 633ms - RequestID: tjyb9cv1i5 +2025-06-18T14:39:40.181Z [INFO] order-service - Auth event: password_change - User: user_1029 - IP: 192.168.159.94 - RequestID: 0kncxm1wbmnh +2025-06-18T14:39:40.281Z [DEBUG] user-service - Auth event: logout - User: user_1032 - IP: 192.168.174.114 - RequestID: h9vd5kqnjth +2025-06-18T14:39:40.381Z [INFO] user-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.235.117 - RequestID: i188clt3hvh +2025-06-18T14:39:40.481Z [DEBUG] order-service - POST /api/v1/users - Status: 200 - Response time: 1165ms - IP: 192.168.189.103 - User: user_1042 - RequestID: 2cucyn070sd +2025-06-18T14:39:40.581Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 270ms - RequestID: cta496q76i +2025-06-18T14:39:40.681Z [DEBUG] auth-service - POST /api/v1/orders - Status: 200 - Response time: 452ms - IP: 192.168.144.38 - User: user_1086 - RequestID: hu6gweqgceq +2025-06-18T14:39:40.781Z [INFO] order-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.229.123 - RequestID: i1311ebwfb +2025-06-18T14:39:40.881Z [DEBUG] payment-service - Database SELECT on products - Execution time: 467ms - Rows affected: 64 - RequestID: 7qej77abbsd +2025-06-18T14:39:40.981Z [TRACE] payment-service - Operation: order_created - Processing time: 280ms - RequestID: jd2sct6abfb +2025-06-18T14:39:41.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.81.206 - RequestID: oofyi7f4vib +2025-06-18T14:39:41.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.170.215 - RequestID: vxvdtjgybdf +2025-06-18T14:39:41.281Z [INFO] auth-service - Auth event: logout - User: user_1020 - IP: 192.168.79.116 - RequestID: w1zxso9a2de +2025-06-18T14:39:41.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1012 - IP: 192.168.30.79 - RequestID: c151nctay4 +2025-06-18T14:39:41.481Z [INFO] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 1139ms - IP: 192.168.113.218 - User: user_1046 - RequestID: mxsgitndx8 +2025-06-18T14:39:41.581Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 369ms - Rows affected: 99 - RequestID: uoik7n83rao +2025-06-18T14:39:41.681Z [DEBUG] order-service - Auth event: password_change - User: user_1023 - IP: 192.168.81.206 - RequestID: cinq2t71u5n +2025-06-18T14:39:41.781Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 333ms - Rows affected: 94 - RequestID: 0sed7gw04mdb +2025-06-18T14:39:41.881Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 469ms - RequestID: 7j75mjsa4xp +2025-06-18T14:39:41.981Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 402ms - Rows affected: 33 - RequestID: vnb4zsrqr5i +2025-06-18T14:39:42.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 727ms - RequestID: btady4hrey +2025-06-18T14:39:42.181Z [INFO] notification-service - Operation: email_sent - Processing time: 779ms - RequestID: 0rmzqvu0rgo +2025-06-18T14:39:42.281Z [DEBUG] user-service - Auth event: login_success - User: user_1092 - IP: 192.168.170.215 - RequestID: mxsfsh0eqvm +2025-06-18T14:39:42.381Z [DEBUG] order-service - Operation: notification_queued - Processing time: 215ms - RequestID: 3gku47i81g4 +2025-06-18T14:39:42.481Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 774ms - IP: 192.168.211.72 - User: user_1064 - RequestID: ses1tyr99t8 +2025-06-18T14:39:42.581Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 200 - Response time: 368ms - IP: 192.168.229.123 - User: user_1079 - RequestID: 6poo2i5zjfm +2025-06-18T14:39:42.681Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 495ms - IP: 192.168.14.77 - User: user_1013 - RequestID: yzj2s8wqejp +2025-06-18T14:39:42.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1042 - IP: 192.168.33.76 - RequestID: p3yo0vvyo87 +2025-06-18T14:39:42.881Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 502 - Response time: 1893ms - IP: 192.168.11.60 - User: user_1052 - RequestID: qb02pj0tbg +2025-06-18T14:39:42.981Z [INFO] order-service - Database SELECT on products - Execution time: 36ms - Rows affected: 80 - RequestID: kv3tqk2kec8 +2025-06-18T14:39:43.081Z [INFO] order-service - Auth event: login_failed - User: user_1081 - IP: 192.168.32.38 - RequestID: x41gaywp48 +2025-06-18T14:39:43.181Z [INFO] auth-service - GET /api/v1/payments - Status: 404 - Response time: 1160ms - IP: 192.168.10.184 - User: user_1033 - RequestID: 2z5519lw73g +2025-06-18T14:39:43.281Z [TRACE] user-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.33.76 - RequestID: 6n0ixnpsvx +2025-06-18T14:39:43.381Z [TRACE] inventory-service - Operation: order_created - Processing time: 940ms - RequestID: i58s89y9d1 +2025-06-18T14:39:43.481Z [INFO] notification-service - Database INSERT on orders - Execution time: 420ms - Rows affected: 3 - RequestID: 7wn2ze8j6b8 +2025-06-18T14:39:43.581Z [TRACE] order-service - Operation: email_sent - Processing time: 86ms - RequestID: 34jgjnkif46 +2025-06-18T14:39:43.681Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 503 - Response time: 564ms - IP: 192.168.104.37 - User: user_1033 - RequestID: vy1iujmdu1 +2025-06-18T14:39:43.781Z [INFO] order-service - Operation: cache_miss - Processing time: 657ms - RequestID: cocz7l4tdga +2025-06-18T14:39:43.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1033 - IP: 192.168.1.152 - RequestID: u9ndq6oktq +2025-06-18T14:39:43.981Z [INFO] notification-service - Auth event: login_failed - User: user_1079 - IP: 192.168.196.226 - RequestID: 8bjbcfni84d +2025-06-18T14:39:44.081Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 404 - Response time: 1123ms - IP: 192.168.170.215 - User: user_1031 - RequestID: dmnsxonz39u +2025-06-18T14:39:44.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1037 - IP: 192.168.170.215 - RequestID: nhhbo16xh6r +2025-06-18T14:39:44.281Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 404ms - Rows affected: 53 - RequestID: xpmfctzie8 +2025-06-18T14:39:44.381Z [DEBUG] user-service - Operation: cache_miss - Processing time: 952ms - RequestID: ybh4oudaj2g +2025-06-18T14:39:44.481Z [INFO] payment-service - Database DELETE on payments - Execution time: 8ms - Rows affected: 23 - RequestID: cyui0ja5oe7 +2025-06-18T14:39:44.581Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 404 - Response time: 425ms - IP: 192.168.187.199 - User: user_1060 - RequestID: v99nlod2vsf +2025-06-18T14:39:44.681Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 76ms - RequestID: 72gowls2xy +2025-06-18T14:39:44.781Z [INFO] order-service - DELETE /api/v1/users - Status: 404 - Response time: 562ms - IP: 192.168.141.100 - User: user_1009 - RequestID: otqip0tvkp +2025-06-18T14:39:44.881Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 944ms - RequestID: 3pxsg4or8jv +2025-06-18T14:39:44.981Z [INFO] order-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.81.206 - RequestID: xz0xsjoe35 +2025-06-18T14:39:45.081Z [DEBUG] user-service - PUT /api/v1/users - Status: 401 - Response time: 851ms - IP: 192.168.229.123 - User: user_1081 - RequestID: 8wpj3p33h8 +2025-06-18T14:39:45.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 721ms - RequestID: tbcufoq3uu +2025-06-18T14:39:45.281Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 92ms - Rows affected: 87 - RequestID: mw9dzklvqm8 +2025-06-18T14:39:45.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.141.100 - RequestID: 8d3li99jx59 +2025-06-18T14:39:45.481Z [DEBUG] auth-service - Auth event: password_change - User: user_1058 - IP: 192.168.79.141 - RequestID: a5u8h7edkga +2025-06-18T14:39:45.581Z [INFO] user-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1083ms - IP: 192.168.79.116 - User: user_1071 - RequestID: 6c9qjao1xj6 +2025-06-18T14:39:45.681Z [TRACE] user-service - Auth event: logout - User: user_1069 - IP: 192.168.1.152 - RequestID: b4i06p0pa5e +2025-06-18T14:39:45.781Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.31.117 - RequestID: rvbdxazks6 +2025-06-18T14:39:45.881Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 156ms - Rows affected: 93 - RequestID: 6lr2dscpho6 +2025-06-18T14:39:45.981Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 500 - Response time: 363ms - IP: 192.168.97.87 - User: user_1080 - RequestID: zmqf6w4egm +2025-06-18T14:39:46.081Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 467ms - RequestID: xicyerw42u +2025-06-18T14:39:46.181Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 257ms - IP: 192.168.181.225 - User: user_1089 - RequestID: o81dya9shs +2025-06-18T14:39:46.281Z [DEBUG] notification-service - Auth event: logout - User: user_1054 - IP: 192.168.227.233 - RequestID: 671ndn76jmp +2025-06-18T14:39:46.381Z [INFO] order-service - PUT /api/v1/auth/login - Status: 403 - Response time: 281ms - IP: 192.168.100.240 - User: user_1078 - RequestID: 0wl50olcn3k +2025-06-18T14:39:46.481Z [TRACE] inventory-service - Auth event: logout - User: user_1049 - IP: 192.168.227.233 - RequestID: sp2dfh6vgjq +2025-06-18T14:39:46.581Z [INFO] order-service - Auth event: logout - User: user_1083 - IP: 192.168.14.77 - RequestID: xxlgb2z6pw8 +2025-06-18T14:39:46.681Z [INFO] auth-service - Auth event: login_success - User: user_1034 - IP: 192.168.227.233 - RequestID: 2zlsx102jyp +2025-06-18T14:39:46.781Z [INFO] auth-service - PATCH /api/v1/users - Status: 404 - Response time: 1301ms - IP: 192.168.196.226 - User: user_1081 - RequestID: 68dymaz4wl +2025-06-18T14:39:46.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.133.7 - RequestID: c324m0wbnb5 +2025-06-18T14:39:46.981Z [INFO] payment-service - Auth event: logout - User: user_1035 - IP: 192.168.46.63 - RequestID: ogp89lrrea +2025-06-18T14:39:47.081Z [INFO] notification-service - Database INSERT on orders - Execution time: 9ms - Rows affected: 8 - RequestID: 45dlcawgk6a +2025-06-18T14:39:47.181Z [INFO] user-service - Operation: order_created - Processing time: 282ms - RequestID: pvsklkvqe8n +2025-06-18T14:39:47.281Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 651ms - RequestID: 1drhf1po8mf +2025-06-18T14:39:47.381Z [INFO] auth-service - Database DELETE on sessions - Execution time: 48ms - Rows affected: 8 - RequestID: x4n6oowcd6d +2025-06-18T14:39:47.481Z [DEBUG] notification-service - Operation: email_sent - Processing time: 849ms - RequestID: hag0u6dh83 +2025-06-18T14:39:47.581Z [INFO] order-service - Database SELECT on orders - Execution time: 387ms - Rows affected: 75 - RequestID: emiztq7v5up +2025-06-18T14:39:47.681Z [TRACE] auth-service - Auth event: login_failed - User: user_1007 - IP: 192.168.28.146 - RequestID: cei4khbo5kh +2025-06-18T14:39:47.781Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 401 - Response time: 312ms - IP: 192.168.11.60 - User: user_1095 - RequestID: 8kox149rle8 +2025-06-18T14:39:47.881Z [INFO] order-service - Auth event: logout - User: user_1089 - IP: 192.168.113.218 - RequestID: tqromn40zc +2025-06-18T14:39:47.981Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 400 - Response time: 1350ms - IP: 192.168.189.103 - User: user_1039 - RequestID: e67pbddvg7k +2025-06-18T14:39:48.081Z [TRACE] user-service - Auth event: login_failed - User: user_1043 - IP: 192.168.1.152 - RequestID: gtwhsbr05l +2025-06-18T14:39:48.181Z [DEBUG] inventory-service - Operation: order_created - Processing time: 500ms - RequestID: oar9vex32nd +2025-06-18T14:39:48.281Z [DEBUG] inventory-service - Auth event: login_success - User: user_1023 - IP: 192.168.46.63 - RequestID: 05vyl6svj96d +2025-06-18T14:39:48.381Z [TRACE] user-service - Database SELECT on sessions - Execution time: 94ms - Rows affected: 40 - RequestID: to8k3oc9249 +2025-06-18T14:39:48.481Z [DEBUG] order-service - Auth event: password_change - User: user_1015 - IP: 192.168.196.226 - RequestID: 31wy91s7kz3 +2025-06-18T14:39:48.581Z [DEBUG] payment-service - Database INSERT on users - Execution time: 482ms - Rows affected: 3 - RequestID: 08y210p2lcsr +2025-06-18T14:39:48.681Z [INFO] order-service - Operation: notification_queued - Processing time: 757ms - RequestID: 70o8vgotvjt +2025-06-18T14:39:48.781Z [INFO] order-service - Auth event: login_success - User: user_1017 - IP: 192.168.247.134 - RequestID: 3kwfjiieh2o +2025-06-18T14:39:48.881Z [TRACE] payment-service - Auth event: login_failed - User: user_1032 - IP: 192.168.196.226 - RequestID: q3i5e1cwpmo +2025-06-18T14:39:48.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 792ms - RequestID: v5now4tjdia +2025-06-18T14:39:49.081Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 492ms - Rows affected: 44 - RequestID: 4n87zs05437 +2025-06-18T14:39:49.181Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 502 - Response time: 1173ms - IP: 192.168.138.123 - User: user_1074 - RequestID: cyrgu5y9o6a +2025-06-18T14:39:49.281Z [TRACE] auth-service - Auth event: login_failed - User: user_1073 - IP: 192.168.100.240 - RequestID: zbirg1p3smg +2025-06-18T14:39:49.381Z [INFO] user-service - GET /api/v1/orders - Status: 400 - Response time: 1099ms - IP: 192.168.158.144 - User: user_1065 - RequestID: ynw8h63k74g +2025-06-18T14:39:49.481Z [DEBUG] order-service - Auth event: login_success - User: user_1063 - IP: 192.168.13.72 - RequestID: mqhnjzo6z4s +2025-06-18T14:39:49.581Z [TRACE] inventory-service - GET /api/v1/users - Status: 201 - Response time: 1491ms - IP: 192.168.68.158 - User: user_1046 - RequestID: tpjnb7lf3cj +2025-06-18T14:39:49.681Z [INFO] user-service - Auth event: login_failed - User: user_1081 - IP: 192.168.100.240 - RequestID: wrjdy6rhtvq +2025-06-18T14:39:49.781Z [TRACE] user-service - Operation: cache_hit - Processing time: 492ms - RequestID: gn2m2nbs99j +2025-06-18T14:39:49.881Z [DEBUG] order-service - Operation: payment_processed - Processing time: 451ms - RequestID: zbk0nwave1 +2025-06-18T14:39:49.981Z [INFO] user-service - Auth event: password_change - User: user_1031 - IP: 192.168.100.240 - RequestID: fzdpgeyan6 +2025-06-18T14:39:50.081Z [INFO] payment-service - Operation: inventory_updated - Processing time: 270ms - RequestID: hjk3ru9ll0q +2025-06-18T14:39:50.181Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 404 - Response time: 785ms - IP: 192.168.36.218 - User: user_1082 - RequestID: pzfa0h604gh +2025-06-18T14:39:50.281Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 173ms - Rows affected: 81 - RequestID: 5jit6ot2v6f +2025-06-18T14:39:50.381Z [INFO] user-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.79.116 - RequestID: e42mvk0661 +2025-06-18T14:39:50.481Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 405ms - Rows affected: 13 - RequestID: bnl7xfuiig +2025-06-18T14:39:50.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 92ms - RequestID: gvxhda0wk9v +2025-06-18T14:39:50.681Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 503 - Response time: 831ms - IP: 192.168.232.72 - User: user_1020 - RequestID: nkeqvoux34c +2025-06-18T14:39:50.781Z [INFO] payment-service - Database SELECT on sessions - Execution time: 271ms - Rows affected: 38 - RequestID: 7lrjz3ylimc +2025-06-18T14:39:50.881Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 201 - Response time: 794ms - IP: 192.168.13.72 - User: user_1063 - RequestID: 0vjaszyfysz +2025-06-18T14:39:50.981Z [INFO] inventory-service - Operation: cache_hit - Processing time: 667ms - RequestID: bizoz8jnzle +2025-06-18T14:39:51.081Z [DEBUG] notification-service - Operation: order_created - Processing time: 908ms - RequestID: tcx372oy25n +2025-06-18T14:39:51.181Z [TRACE] auth-service - Auth event: logout - User: user_1024 - IP: 192.168.36.218 - RequestID: bclx7tmvg85 +2025-06-18T14:39:51.281Z [TRACE] notification-service - Auth event: password_change - User: user_1041 - IP: 192.168.167.32 - RequestID: cu101b5c9ze +2025-06-18T14:39:51.381Z [DEBUG] user-service - GET /api/v1/users - Status: 503 - Response time: 1936ms - IP: 192.168.247.134 - User: user_1042 - RequestID: 57229dik4el +2025-06-18T14:39:51.481Z [TRACE] user-service - DELETE /api/v1/users - Status: 503 - Response time: 1690ms - IP: 192.168.14.77 - User: user_1072 - RequestID: x3riik935rc +2025-06-18T14:39:51.581Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 644ms - RequestID: hq7k9gqdjnr +2025-06-18T14:39:51.681Z [TRACE] notification-service - PATCH /api/v1/users - Status: 403 - Response time: 1311ms - IP: 192.168.79.141 - User: user_1064 - RequestID: ky529kqq3wj +2025-06-18T14:39:51.781Z [TRACE] user-service - Auth event: password_change - User: user_1077 - IP: 192.168.196.226 - RequestID: 6etnbf2oy6h +2025-06-18T14:39:51.881Z [DEBUG] payment-service - Database DELETE on users - Execution time: 486ms - Rows affected: 59 - RequestID: wdyiw54w1ss +2025-06-18T14:39:51.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.170.215 - RequestID: v72591y1ale +2025-06-18T14:39:52.081Z [TRACE] notification-service - POST /api/v1/inventory - Status: 201 - Response time: 1844ms - IP: 192.168.189.103 - User: user_1065 - RequestID: qw2o6c6rmri +2025-06-18T14:39:52.181Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 464ms - Rows affected: 19 - RequestID: ef49h36thrn +2025-06-18T14:39:52.281Z [TRACE] user-service - Auth event: login_success - User: user_1023 - IP: 192.168.229.123 - RequestID: tbpunm3ooue +2025-06-18T14:39:52.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1099 - IP: 192.168.235.117 - RequestID: k83p28ku3d +2025-06-18T14:39:52.481Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 201 - Response time: 1172ms - IP: 192.168.36.218 - User: user_1019 - RequestID: ybor2kzykmc +2025-06-18T14:39:52.581Z [TRACE] auth-service - Auth event: login_success - User: user_1083 - IP: 192.168.33.76 - RequestID: ey5pd8xgemb +2025-06-18T14:39:52.681Z [DEBUG] notification-service - Auth event: logout - User: user_1071 - IP: 192.168.158.144 - RequestID: loroug6zh2r +2025-06-18T14:39:52.781Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.113.218 - RequestID: 01dfwi5mka07 +2025-06-18T14:39:52.881Z [INFO] auth-service - Database UPDATE on products - Execution time: 148ms - Rows affected: 16 - RequestID: 11r02fi4xrop +2025-06-18T14:39:52.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.147.171 - RequestID: 1botxpbh0bv +2025-06-18T14:39:53.081Z [INFO] notification-service - Database DELETE on orders - Execution time: 396ms - Rows affected: 52 - RequestID: kt8ttgdds6 +2025-06-18T14:39:53.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1019 - IP: 192.168.229.123 - RequestID: lhnc9ac9bt +2025-06-18T14:39:53.281Z [TRACE] payment-service - Auth event: login_failed - User: user_1050 - IP: 192.168.174.114 - RequestID: o21yr2b4yt +2025-06-18T14:39:53.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 320ms - RequestID: aqjripewhf6 +2025-06-18T14:39:53.481Z [INFO] order-service - Operation: order_created - Processing time: 373ms - RequestID: yiqbe1be5qe +2025-06-18T14:39:53.581Z [TRACE] user-service - Auth event: login_success - User: user_1059 - IP: 192.168.28.146 - RequestID: 7i051b9oy0h +2025-06-18T14:39:53.681Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 410ms - Rows affected: 77 - RequestID: 2igcl8d7do9 +2025-06-18T14:39:53.781Z [TRACE] inventory-service - POST /api/v1/orders - Status: 502 - Response time: 338ms - IP: 192.168.11.60 - User: user_1071 - RequestID: 2td2sd7zwyl +2025-06-18T14:39:53.881Z [TRACE] notification-service - Database UPDATE on products - Execution time: 16ms - Rows affected: 23 - RequestID: j09pkd5wgxs +2025-06-18T14:39:53.981Z [TRACE] auth-service - Auth event: logout - User: user_1070 - IP: 192.168.64.33 - RequestID: oepvjgk4ggf +2025-06-18T14:39:54.081Z [INFO] user-service - Database DELETE on users - Execution time: 1ms - Rows affected: 90 - RequestID: t4j4nwp2tth +2025-06-18T14:39:54.181Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 283ms - Rows affected: 54 - RequestID: c1au5j5kfwq +2025-06-18T14:39:54.281Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 188ms - Rows affected: 19 - RequestID: nmk21we8la +2025-06-18T14:39:54.381Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 919ms - IP: 192.168.247.134 - User: user_1014 - RequestID: sc3ehq4il9 +2025-06-18T14:39:54.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1057 - IP: 192.168.227.233 - RequestID: e4kexie9s9 +2025-06-18T14:39:54.581Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 1ms - Rows affected: 11 - RequestID: z0vqsx2an +2025-06-18T14:39:54.681Z [INFO] user-service - Operation: inventory_updated - Processing time: 388ms - RequestID: 7t3lj4c384 +2025-06-18T14:39:54.781Z [DEBUG] notification-service - Operation: order_created - Processing time: 748ms - RequestID: p9keibm5y2l +2025-06-18T14:39:54.881Z [INFO] notification-service - Operation: inventory_updated - Processing time: 784ms - RequestID: t4h67tkofpa +2025-06-18T14:39:54.981Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 500 - Response time: 413ms - IP: 192.168.10.184 - User: user_1070 - RequestID: 3j7240qx86 +2025-06-18T14:39:55.081Z [TRACE] payment-service - POST /api/v1/users - Status: 400 - Response time: 688ms - IP: 192.168.133.7 - User: user_1019 - RequestID: hkpgmv7fdeq +2025-06-18T14:39:55.181Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 694ms - IP: 192.168.194.41 - User: user_1066 - RequestID: 3qqycsh81pf +2025-06-18T14:39:55.281Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 490ms - Rows affected: 12 - RequestID: hikz49ba819 +2025-06-18T14:39:55.381Z [TRACE] payment-service - POST /api/v1/orders - Status: 400 - Response time: 1279ms - IP: 192.168.97.87 - User: user_1022 - RequestID: o43m7m1sxgb +2025-06-18T14:39:55.481Z [DEBUG] order-service - GET /api/v1/inventory - Status: 503 - Response time: 1606ms - IP: 192.168.133.7 - User: user_1017 - RequestID: ludnks6q9w9 +2025-06-18T14:39:55.581Z [DEBUG] user-service - GET /api/v1/inventory - Status: 403 - Response time: 918ms - IP: 192.168.79.141 - User: user_1031 - RequestID: 2r2hxslpbaa +2025-06-18T14:39:55.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.46.63 - RequestID: idu6kh6g9q +2025-06-18T14:39:55.781Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 440ms - RequestID: l2grs8zsfcd +2025-06-18T14:39:55.881Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 194ms - Rows affected: 69 - RequestID: spbf2zwbubg +2025-06-18T14:39:55.981Z [TRACE] user-service - Operation: inventory_updated - Processing time: 242ms - RequestID: yuc6jzgodtk +2025-06-18T14:39:56.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 146ms - RequestID: 4au8rc4chp3 +2025-06-18T14:39:56.181Z [INFO] order-service - Operation: email_sent - Processing time: 254ms - RequestID: q0axnggqw1c +2025-06-18T14:39:56.281Z [TRACE] order-service - Database DELETE on payments - Execution time: 170ms - Rows affected: 7 - RequestID: vbuv4ox6lem +2025-06-18T14:39:56.381Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1389ms - IP: 192.168.189.103 - User: user_1064 - RequestID: ymjyru32ncg +2025-06-18T14:39:56.481Z [TRACE] user-service - Database UPDATE on payments - Execution time: 197ms - Rows affected: 55 - RequestID: ptaznsyqspj +2025-06-18T14:39:56.581Z [INFO] user-service - Database INSERT on products - Execution time: 5ms - Rows affected: 39 - RequestID: 2pdp0y1xz8j +2025-06-18T14:39:56.681Z [TRACE] inventory-service - Auth event: login_success - User: user_1043 - IP: 192.168.68.158 - RequestID: pdnhaob0j5o +2025-06-18T14:39:56.781Z [TRACE] notification-service - PUT /api/v1/orders - Status: 201 - Response time: 804ms - IP: 192.168.1.152 - User: user_1024 - RequestID: hvehz8yzkmo +2025-06-18T14:39:56.881Z [TRACE] order-service - Operation: order_created - Processing time: 483ms - RequestID: qz1u0163wnf +2025-06-18T14:39:56.981Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1510ms - IP: 192.168.174.114 - User: user_1033 - RequestID: 0j0vp3hv1u6i +2025-06-18T14:39:57.081Z [DEBUG] inventory-service - Auth event: password_change - User: user_1046 - IP: 192.168.97.87 - RequestID: fhym1pd5xz5 +2025-06-18T14:39:57.181Z [TRACE] order-service - Database INSERT on products - Execution time: 410ms - Rows affected: 48 - RequestID: uzm7fnzr3gk +2025-06-18T14:39:57.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.79.116 - RequestID: od00r6wfglp +2025-06-18T14:39:57.381Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 400 - Response time: 1209ms - IP: 192.168.235.117 - User: user_1073 - RequestID: 6xly3q172z3 +2025-06-18T14:39:57.481Z [INFO] order-service - Auth event: login_failed - User: user_1060 - IP: 192.168.232.72 - RequestID: f3bmk8ptyf8 +2025-06-18T14:39:57.581Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 535ms - RequestID: 4ftf25gsjzc +2025-06-18T14:39:57.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 591ms - RequestID: elvv64uebgl +2025-06-18T14:39:57.781Z [INFO] notification-service - Database INSERT on sessions - Execution time: 387ms - Rows affected: 31 - RequestID: 4ys6bst7qki +2025-06-18T14:39:57.881Z [INFO] order-service - DELETE /api/v1/users - Status: 502 - Response time: 128ms - IP: 192.168.227.77 - User: user_1013 - RequestID: byfc5fvnq04 +2025-06-18T14:39:57.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.68.128 - RequestID: otkms31ho7 +2025-06-18T14:39:58.081Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1009 - IP: 192.168.147.171 - RequestID: 2o1l1xlb653 +2025-06-18T14:39:58.181Z [INFO] notification-service - Auth event: logout - User: user_1029 - IP: 192.168.159.94 - RequestID: qgihjyoqjnh +2025-06-18T14:39:58.281Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 503 - Response time: 145ms - IP: 192.168.68.128 - User: user_1058 - RequestID: fruo6fp6ep +2025-06-18T14:39:58.381Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 255ms - Rows affected: 2 - RequestID: 1lbqq0alh5o +2025-06-18T14:39:58.481Z [INFO] inventory-service - Database DELETE on payments - Execution time: 117ms - Rows affected: 93 - RequestID: vbblp5pkyme +2025-06-18T14:39:58.581Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.97.87 - RequestID: cmp1oime6wg +2025-06-18T14:39:58.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1006 - IP: 192.168.64.33 - RequestID: 2medhs1iz3l +2025-06-18T14:39:58.781Z [TRACE] order-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.247.134 - RequestID: 9g8vsar24j8 +2025-06-18T14:39:58.881Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 50ms - Rows affected: 75 - RequestID: iyp92g4ki7p +2025-06-18T14:39:58.981Z [INFO] notification-service - Auth event: login_failed - User: user_1012 - IP: 192.168.147.171 - RequestID: rl6qz1wdt9 +2025-06-18T14:39:59.081Z [TRACE] order-service - DELETE /api/v1/payments - Status: 201 - Response time: 1217ms - IP: 192.168.196.226 - User: user_1056 - RequestID: oix13js4qrq +2025-06-18T14:39:59.181Z [TRACE] notification-service - POST /api/v1/orders - Status: 502 - Response time: 574ms - IP: 192.168.174.114 - User: user_1030 - RequestID: pbe24uzbrii +2025-06-18T14:39:59.281Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 92ms - Rows affected: 30 - RequestID: 0cwidpum52m +2025-06-18T14:39:59.381Z [TRACE] user-service - Database SELECT on products - Execution time: 260ms - Rows affected: 88 - RequestID: 92jemmc7bco +2025-06-18T14:39:59.481Z [DEBUG] user-service - Auth event: login_failed - User: user_1087 - IP: 192.168.104.37 - RequestID: 3ddw5p7p96e +2025-06-18T14:39:59.581Z [TRACE] notification-service - PUT /api/v1/payments - Status: 400 - Response time: 728ms - IP: 192.168.181.225 - User: user_1088 - RequestID: 5o1c2daa852 +2025-06-18T14:39:59.681Z [INFO] notification-service - Operation: order_created - Processing time: 668ms - RequestID: yr3myxtkqyg +2025-06-18T14:39:59.781Z [INFO] notification-service - Database SELECT on orders - Execution time: 402ms - Rows affected: 85 - RequestID: 25d19etvbis +2025-06-18T14:39:59.881Z [INFO] order-service - Auth event: logout - User: user_1051 - IP: 192.168.133.7 - RequestID: o9ct3c1ok7 +2025-06-18T14:39:59.981Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 383ms - Rows affected: 49 - RequestID: u8ry5tmua6q +2025-06-18T14:40:00.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1070 - IP: 192.168.10.184 - RequestID: qjpnfulz82 +2025-06-18T14:40:00.181Z [INFO] payment-service - Database DELETE on orders - Execution time: 443ms - Rows affected: 66 - RequestID: b7m47lnvcy +2025-06-18T14:40:00.281Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 123ms - Rows affected: 58 - RequestID: uegx06gibwm +2025-06-18T14:40:00.381Z [DEBUG] order-service - Auth event: login_failed - User: user_1075 - IP: 192.168.242.165 - RequestID: r62cmnehin +2025-06-18T14:40:00.481Z [INFO] user-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1821ms - IP: 192.168.36.218 - User: user_1012 - RequestID: wdabopc2wrb +2025-06-18T14:40:00.581Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 168ms - Rows affected: 64 - RequestID: t1tri3fvga +2025-06-18T14:40:00.681Z [DEBUG] user-service - Database INSERT on payments - Execution time: 118ms - Rows affected: 8 - RequestID: yilkda2i4of +2025-06-18T14:40:00.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 1005ms - RequestID: tn8syhrrsq +2025-06-18T14:40:00.881Z [INFO] payment-service - Database INSERT on products - Execution time: 401ms - Rows affected: 67 - RequestID: pounflq3j5 +2025-06-18T14:40:00.981Z [INFO] notification-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.227.77 - RequestID: h1nhqhmbvqn +2025-06-18T14:40:01.081Z [INFO] auth-service - Operation: webhook_sent - Processing time: 991ms - RequestID: asirx23n1bd +2025-06-18T14:40:01.181Z [INFO] user-service - Database DELETE on users - Execution time: 71ms - Rows affected: 93 - RequestID: 2kyoalk3ohd +2025-06-18T14:40:01.281Z [DEBUG] user-service - Auth event: logout - User: user_1012 - IP: 192.168.227.77 - RequestID: yfi22m587i +2025-06-18T14:40:01.381Z [TRACE] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 1717ms - IP: 192.168.227.233 - User: user_1027 - RequestID: 1mxk0u9toa +2025-06-18T14:40:01.481Z [DEBUG] payment-service - GET /api/v1/orders - Status: 502 - Response time: 1510ms - IP: 192.168.159.94 - User: user_1097 - RequestID: k19r6lg3rwn +2025-06-18T14:40:01.581Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 400 - Response time: 1875ms - IP: 192.168.227.77 - User: user_1002 - RequestID: wj2g9635ckq +2025-06-18T14:40:01.681Z [DEBUG] order-service - GET /api/v1/inventory - Status: 502 - Response time: 428ms - IP: 192.168.28.146 - User: user_1059 - RequestID: tru1w91egng +2025-06-18T14:40:01.781Z [DEBUG] order-service - Operation: payment_processed - Processing time: 876ms - RequestID: b1ywzehocuu +2025-06-18T14:40:01.881Z [TRACE] order-service - PUT /api/v1/payments - Status: 201 - Response time: 1125ms - IP: 192.168.133.7 - User: user_1023 - RequestID: 0k7781dhggrc +2025-06-18T14:40:01.981Z [INFO] order-service - Database SELECT on users - Execution time: 124ms - Rows affected: 58 - RequestID: n18zji4wqsp +2025-06-18T14:40:02.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.147.171 - RequestID: zrbiebbo7xs +2025-06-18T14:40:02.181Z [TRACE] user-service - GET /api/v1/auth/login - Status: 401 - Response time: 1707ms - IP: 192.168.229.123 - User: user_1030 - RequestID: cps99wnqf6 +2025-06-18T14:40:02.281Z [INFO] order-service - Auth event: login_success - User: user_1056 - IP: 192.168.100.240 - RequestID: 1gt3kfdgxtv +2025-06-18T14:40:02.381Z [TRACE] notification-service - Operation: cache_miss - Processing time: 202ms - RequestID: ld9tu7yhaqf +2025-06-18T14:40:02.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1044 - IP: 192.168.235.117 - RequestID: 7xqvyji5ku2 +2025-06-18T14:40:02.581Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 447ms - Rows affected: 41 - RequestID: 5bhep2uu7qx +2025-06-18T14:40:02.681Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 436ms - Rows affected: 0 - RequestID: ve9pbw60mu +2025-06-18T14:40:02.781Z [DEBUG] notification-service - Database SELECT on products - Execution time: 166ms - Rows affected: 88 - RequestID: xbls5t1trbi +2025-06-18T14:40:02.881Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 212ms - Rows affected: 43 - RequestID: kjktahiqgvi +2025-06-18T14:40:02.981Z [INFO] user-service - Database UPDATE on payments - Execution time: 164ms - Rows affected: 40 - RequestID: 6a54lvp8ns +2025-06-18T14:40:03.081Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 295ms - RequestID: x2urdib21yd +2025-06-18T14:40:03.181Z [TRACE] notification-service - Auth event: login_success - User: user_1027 - IP: 192.168.235.117 - RequestID: 161qa582toe +2025-06-18T14:40:03.281Z [INFO] user-service - Auth event: login_success - User: user_1032 - IP: 192.168.227.77 - RequestID: s5t29gz22kd +2025-06-18T14:40:03.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.11.60 - RequestID: 04i2tsw6m9cm +2025-06-18T14:40:03.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 585ms - RequestID: j8oa5v92yan +2025-06-18T14:40:03.581Z [TRACE] notification-service - Operation: cache_hit - Processing time: 765ms - RequestID: pidj49wl2ng +2025-06-18T14:40:03.681Z [TRACE] order-service - GET /api/v1/payments - Status: 200 - Response time: 800ms - IP: 192.168.240.169 - User: user_1010 - RequestID: 51xffapvzsl +2025-06-18T14:40:03.781Z [TRACE] notification-service - Database DELETE on products - Execution time: 334ms - Rows affected: 60 - RequestID: a9vcikbxytp +2025-06-18T14:40:03.881Z [TRACE] user-service - Operation: inventory_updated - Processing time: 405ms - RequestID: pgqy4mpep6 +2025-06-18T14:40:03.981Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 405ms - Rows affected: 66 - RequestID: s9kg7gx3sim +2025-06-18T14:40:04.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 412ms - RequestID: 4sifvg9lvcb +2025-06-18T14:40:04.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.181.225 - RequestID: hr2asldwn8e +2025-06-18T14:40:04.281Z [INFO] auth-service - Database DELETE on users - Execution time: 273ms - Rows affected: 99 - RequestID: n1hi7elddgl +2025-06-18T14:40:04.381Z [INFO] user-service - PUT /api/v1/payments - Status: 201 - Response time: 1258ms - IP: 192.168.141.100 - User: user_1069 - RequestID: ene7b95wul5 +2025-06-18T14:40:04.481Z [INFO] notification-service - Database UPDATE on products - Execution time: 467ms - Rows affected: 54 - RequestID: v4bg1eo0vx +2025-06-18T14:40:04.581Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 95ms - Rows affected: 29 - RequestID: vet3mwcgoug +2025-06-18T14:40:04.681Z [INFO] payment-service - Database INSERT on orders - Execution time: 398ms - Rows affected: 22 - RequestID: a1cl10gqvyk +2025-06-18T14:40:04.781Z [DEBUG] auth-service - Database INSERT on products - Execution time: 241ms - Rows affected: 36 - RequestID: rceru5292vg +2025-06-18T14:40:04.881Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 56ms - Rows affected: 89 - RequestID: tnmcflzjoj +2025-06-18T14:40:04.981Z [TRACE] order-service - Operation: webhook_sent - Processing time: 416ms - RequestID: jn5fl95t7w +2025-06-18T14:40:05.081Z [TRACE] inventory-service - Auth event: login_success - User: user_1059 - IP: 192.168.187.199 - RequestID: 91cpg1pabxi +2025-06-18T14:40:05.181Z [TRACE] payment-service - Operation: cache_hit - Processing time: 772ms - RequestID: bu18xhf5cu +2025-06-18T14:40:05.281Z [TRACE] user-service - Auth event: login_success - User: user_1070 - IP: 192.168.46.63 - RequestID: axfc8sa2tfl +2025-06-18T14:40:05.381Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 23ms - Rows affected: 16 - RequestID: l15fpvq09ee +2025-06-18T14:40:05.481Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 442ms - Rows affected: 53 - RequestID: 0mitnmjhr4j +2025-06-18T14:40:05.581Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 225ms - Rows affected: 19 - RequestID: hz6sd5gxdsj +2025-06-18T14:40:05.681Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 400 - Response time: 595ms - IP: 192.168.113.218 - User: user_1027 - RequestID: lxe6d75s5tc +2025-06-18T14:40:05.781Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 503 - Response time: 695ms - IP: 192.168.81.206 - User: user_1073 - RequestID: w4j02zkxuk +2025-06-18T14:40:05.881Z [INFO] payment-service - Operation: notification_queued - Processing time: 926ms - RequestID: rhu2s8hpcba +2025-06-18T14:40:05.981Z [INFO] user-service - Operation: payment_processed - Processing time: 410ms - RequestID: begw2mru1qm +2025-06-18T14:40:06.081Z [TRACE] order-service - Database UPDATE on users - Execution time: 182ms - Rows affected: 25 - RequestID: fynbzo5i31k +2025-06-18T14:40:06.181Z [INFO] inventory-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.170.215 - RequestID: puzgwgyquxq +2025-06-18T14:40:06.281Z [INFO] order-service - PUT /api/v1/orders - Status: 403 - Response time: 565ms - IP: 192.168.14.77 - User: user_1032 - RequestID: srazln36smf +2025-06-18T14:40:06.381Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 383ms - Rows affected: 57 - RequestID: xvz7grsm5z +2025-06-18T14:40:06.481Z [INFO] auth-service - Auth event: login_failed - User: user_1061 - IP: 192.168.138.123 - RequestID: gr20rfhwjni +2025-06-18T14:40:06.581Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 738ms - RequestID: 7duo2euv3lb +2025-06-18T14:40:06.681Z [TRACE] notification-service - Auth event: logout - User: user_1053 - IP: 192.168.138.123 - RequestID: ew9jr83cbd4 +2025-06-18T14:40:06.781Z [INFO] payment-service - Database DELETE on sessions - Execution time: 377ms - Rows affected: 13 - RequestID: y15qk4u2gh +2025-06-18T14:40:06.881Z [TRACE] payment-service - Operation: notification_queued - Processing time: 578ms - RequestID: 00eyy544bbnwb +2025-06-18T14:40:06.981Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 404 - Response time: 738ms - IP: 192.168.81.206 - User: user_1035 - RequestID: rmnpcqomvem +2025-06-18T14:40:07.081Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 51ms - Rows affected: 63 - RequestID: mx632i1g3k9 +2025-06-18T14:40:07.181Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 180ms - Rows affected: 70 - RequestID: otgp5vodh8 +2025-06-18T14:40:07.281Z [DEBUG] order-service - Auth event: password_change - User: user_1092 - IP: 192.168.97.87 - RequestID: mau3gvjie8g +2025-06-18T14:40:07.381Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 1048ms - RequestID: jgteo1wu4ga +2025-06-18T14:40:07.481Z [DEBUG] user-service - Database DELETE on orders - Execution time: 425ms - Rows affected: 97 - RequestID: emblaxz4gml +2025-06-18T14:40:07.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.11.60 - RequestID: exty2o3m6ue +2025-06-18T14:40:07.681Z [DEBUG] payment-service - Operation: email_sent - Processing time: 985ms - RequestID: ouqwrpk +2025-06-18T14:40:07.781Z [TRACE] auth-service - Operation: email_sent - Processing time: 550ms - RequestID: 8bu1fvxcmrq +2025-06-18T14:40:07.881Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 836ms - RequestID: opxmizp4ukn +2025-06-18T14:40:07.981Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 810ms - RequestID: qtkveb9q5gj +2025-06-18T14:40:08.081Z [DEBUG] order-service - Operation: order_created - Processing time: 880ms - RequestID: 58ekd4kaimv +2025-06-18T14:40:08.181Z [INFO] inventory-service - Database UPDATE on users - Execution time: 480ms - Rows affected: 49 - RequestID: 60g0roa1tp3 +2025-06-18T14:40:08.281Z [TRACE] order-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.13.72 - RequestID: 6crs84qdiod +2025-06-18T14:40:08.381Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 400 - Response time: 1101ms - IP: 192.168.30.79 - User: user_1084 - RequestID: t92h17b47o +2025-06-18T14:40:08.481Z [INFO] notification-service - Database DELETE on sessions - Execution time: 22ms - Rows affected: 73 - RequestID: jfudgr1eozl +2025-06-18T14:40:08.581Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 364ms - Rows affected: 97 - RequestID: gr377i2x1w +2025-06-18T14:40:08.681Z [DEBUG] notification-service - Auth event: login_success - User: user_1037 - IP: 192.168.14.77 - RequestID: awewm4dvr25 +2025-06-18T14:40:08.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.229.123 - RequestID: kvysf11pyxh +2025-06-18T14:40:08.881Z [INFO] order-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.189.103 - RequestID: bpvuv9sftzk +2025-06-18T14:40:08.981Z [INFO] auth-service - Database SELECT on orders - Execution time: 128ms - Rows affected: 46 - RequestID: 2ftx1h34pcr +2025-06-18T14:40:09.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.242.165 - RequestID: 1op2ulqoo2y +2025-06-18T14:40:09.181Z [TRACE] order-service - Database UPDATE on orders - Execution time: 340ms - Rows affected: 17 - RequestID: w7rotfy2zxo +2025-06-18T14:40:09.281Z [INFO] order-service - GET /api/v1/orders - Status: 500 - Response time: 13ms - IP: 192.168.240.169 - User: user_1031 - RequestID: 3l70du7mrv3 +2025-06-18T14:40:09.381Z [INFO] payment-service - Database SELECT on products - Execution time: 146ms - Rows affected: 17 - RequestID: hxq4a74a4lk +2025-06-18T14:40:09.481Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 368ms - RequestID: co5zyk1sfzg +2025-06-18T14:40:09.581Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 200 - Response time: 445ms - IP: 192.168.11.60 - User: user_1052 - RequestID: leqv1ttsvs +2025-06-18T14:40:09.681Z [INFO] auth-service - Operation: payment_processed - Processing time: 206ms - RequestID: 8c0i8jrdsgw +2025-06-18T14:40:09.781Z [INFO] notification-service - Database INSERT on products - Execution time: 397ms - Rows affected: 24 - RequestID: 8h33iytmvwv +2025-06-18T14:40:09.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 871ms - RequestID: g7unupvnw4h +2025-06-18T14:40:09.981Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 400 - Response time: 1057ms - IP: 192.168.227.77 - User: user_1086 - RequestID: 80p5qxz2l06 +2025-06-18T14:40:10.081Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 503 - Response time: 28ms - IP: 192.168.113.218 - User: user_1023 - RequestID: 73d9xsl8c1 +2025-06-18T14:40:10.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.174.114 - RequestID: rf2b9ie3u2 +2025-06-18T14:40:10.281Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 991ms - RequestID: rpbeh4qu0q +2025-06-18T14:40:10.381Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 230ms - Rows affected: 37 - RequestID: uvq5jajav1p +2025-06-18T14:40:10.481Z [INFO] user-service - Database SELECT on orders - Execution time: 335ms - Rows affected: 60 - RequestID: ffj4n692uu +2025-06-18T14:40:10.581Z [TRACE] notification-service - Database INSERT on payments - Execution time: 104ms - Rows affected: 28 - RequestID: l2x7ubsz7f +2025-06-18T14:40:10.681Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 503 - Response time: 950ms - IP: 192.168.181.225 - User: user_1079 - RequestID: 4nj86o7pble +2025-06-18T14:40:10.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1072 - IP: 192.168.79.116 - RequestID: x7buy3lpv4a +2025-06-18T14:40:10.881Z [TRACE] auth-service - PUT /api/v1/orders - Status: 201 - Response time: 1291ms - IP: 192.168.11.60 - User: user_1037 - RequestID: w3jyddvhqb +2025-06-18T14:40:10.981Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 51ms - RequestID: 8yc346gw5o +2025-06-18T14:40:11.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.30.79 - RequestID: f1t26fkv1mj +2025-06-18T14:40:11.181Z [TRACE] user-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.133.7 - RequestID: a9q4e8q3ryi +2025-06-18T14:40:11.281Z [TRACE] order-service - Database UPDATE on payments - Execution time: 242ms - Rows affected: 45 - RequestID: q8fpwq58bzf +2025-06-18T14:40:11.381Z [INFO] order-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.170.215 - RequestID: a8li5xkxh4 +2025-06-18T14:40:11.481Z [TRACE] notification-service - POST /api/v1/inventory - Status: 201 - Response time: 1926ms - IP: 192.168.79.116 - User: user_1014 - RequestID: 18zmmxj3u2e +2025-06-18T14:40:11.581Z [TRACE] user-service - GET /api/v1/auth/login - Status: 500 - Response time: 459ms - IP: 192.168.79.143 - User: user_1082 - RequestID: 9snm0n7ek34 +2025-06-18T14:40:11.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 219ms - RequestID: 9fjcuu3mfxf +2025-06-18T14:40:11.781Z [INFO] auth-service - Auth event: login_success - User: user_1030 - IP: 192.168.211.72 - RequestID: vju3e3obka +2025-06-18T14:40:11.881Z [TRACE] payment-service - Auth event: login_failed - User: user_1040 - IP: 192.168.189.103 - RequestID: ny8ye5lk9xc +2025-06-18T14:40:11.981Z [DEBUG] inventory-service - Auth event: login_success - User: user_1024 - IP: 192.168.85.229 - RequestID: fhmkxdgv1d +2025-06-18T14:40:12.081Z [TRACE] user-service - Operation: cache_hit - Processing time: 624ms - RequestID: 9d2egsafuca +2025-06-18T14:40:12.181Z [TRACE] notification-service - GET /api/v1/payments - Status: 400 - Response time: 857ms - IP: 192.168.174.114 - User: user_1080 - RequestID: lznzpe9cbxi +2025-06-18T14:40:12.281Z [INFO] order-service - Operation: payment_processed - Processing time: 687ms - RequestID: ipgwnngbfy +2025-06-18T14:40:12.381Z [INFO] order-service - DELETE /api/v1/users - Status: 502 - Response time: 485ms - IP: 192.168.10.184 - User: user_1017 - RequestID: r97e9zdk74r +2025-06-18T14:40:12.481Z [TRACE] user-service - PUT /api/v1/inventory - Status: 200 - Response time: 1109ms - IP: 192.168.53.133 - User: user_1019 - RequestID: 0zu3wsb76ee +2025-06-18T14:40:12.581Z [DEBUG] order-service - Operation: order_created - Processing time: 75ms - RequestID: sf1geoi2mh +2025-06-18T14:40:12.681Z [INFO] notification-service - Auth event: password_change - User: user_1000 - IP: 192.168.13.72 - RequestID: 84tu6qt2514 +2025-06-18T14:40:12.781Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.194.41 - RequestID: srm0ttw2bic +2025-06-18T14:40:12.881Z [INFO] payment-service - DELETE /api/v1/users - Status: 400 - Response time: 1793ms - IP: 192.168.235.117 - User: user_1005 - RequestID: yq8rvksbpgd +2025-06-18T14:40:12.981Z [INFO] order-service - Database SELECT on users - Execution time: 394ms - Rows affected: 82 - RequestID: yyvk0z7m9we +2025-06-18T14:40:13.081Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 401 - Response time: 1838ms - IP: 192.168.100.240 - User: user_1001 - RequestID: lcx5jgey59b +2025-06-18T14:40:13.181Z [INFO] user-service - Operation: webhook_sent - Processing time: 342ms - RequestID: 3jb0b15m2c1 +2025-06-18T14:40:13.281Z [INFO] payment-service - PUT /api/v1/inventory - Status: 401 - Response time: 835ms - IP: 192.168.242.165 - User: user_1044 - RequestID: 86wird2flxq +2025-06-18T14:40:13.381Z [TRACE] order-service - DELETE /api/v1/payments - Status: 503 - Response time: 1055ms - IP: 192.168.104.37 - User: user_1043 - RequestID: ua1zv5xz8qg +2025-06-18T14:40:13.481Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 403 - Response time: 1746ms - IP: 192.168.97.87 - User: user_1023 - RequestID: 7akbwpssfq6 +2025-06-18T14:40:13.581Z [DEBUG] order-service - Operation: cache_miss - Processing time: 482ms - RequestID: pyujlztsa7r +2025-06-18T14:40:13.681Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 774ms - RequestID: mjlpatp88yk +2025-06-18T14:40:13.781Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 477ms - Rows affected: 73 - RequestID: 03ff3xc2otie +2025-06-18T14:40:13.881Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 403 - Response time: 974ms - IP: 192.168.44.5 - User: user_1078 - RequestID: yz7vjpafmy +2025-06-18T14:40:13.981Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1502ms - IP: 192.168.141.100 - User: user_1030 - RequestID: ugzfyonlpsa +2025-06-18T14:40:14.081Z [INFO] user-service - DELETE /api/v1/users - Status: 502 - Response time: 939ms - IP: 192.168.100.240 - User: user_1022 - RequestID: mbac6dvbeyh +2025-06-18T14:40:14.181Z [DEBUG] order-service - Operation: payment_processed - Processing time: 624ms - RequestID: 3yvit2r48lz +2025-06-18T14:40:14.281Z [TRACE] order-service - Operation: notification_queued - Processing time: 108ms - RequestID: t82jcjjpc9r +2025-06-18T14:40:14.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1048 - IP: 192.168.79.141 - RequestID: qf2q1ezx0iq +2025-06-18T14:40:14.481Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 320ms - Rows affected: 2 - RequestID: l8ie7jx9ot +2025-06-18T14:40:14.581Z [TRACE] notification-service - Database UPDATE on users - Execution time: 338ms - Rows affected: 82 - RequestID: dwz2rvejso8 +2025-06-18T14:40:14.681Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.187.199 - RequestID: 9p98x7e6qcr +2025-06-18T14:40:14.781Z [TRACE] notification-service - Auth event: login_failed - User: user_1080 - IP: 192.168.97.87 - RequestID: rfnmupfblx9 +2025-06-18T14:40:14.881Z [INFO] notification-service - POST /api/v1/payments - Status: 201 - Response time: 124ms - IP: 192.168.247.134 - User: user_1094 - RequestID: tvwnbneg73o +2025-06-18T14:40:14.981Z [INFO] user-service - Operation: cache_miss - Processing time: 298ms - RequestID: czjlisej429 +2025-06-18T14:40:15.081Z [INFO] payment-service - Auth event: login_failed - User: user_1057 - IP: 192.168.104.37 - RequestID: rqvo0zfpb3 +2025-06-18T14:40:15.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 770ms - RequestID: 06w8ff1jkg9 +2025-06-18T14:40:15.281Z [INFO] notification-service - Auth event: password_change - User: user_1083 - IP: 192.168.229.123 - RequestID: ekh8rjz262 +2025-06-18T14:40:15.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1043 - IP: 192.168.187.199 - RequestID: 3e6uvy2eg6n +2025-06-18T14:40:15.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 590ms - RequestID: 2qmm1y73sah +2025-06-18T14:40:15.581Z [INFO] user-service - Operation: cache_hit - Processing time: 427ms - RequestID: 7pkit85g819 +2025-06-18T14:40:15.681Z [INFO] notification-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.242.165 - RequestID: 9mahacfk0e4 +2025-06-18T14:40:15.781Z [INFO] payment-service - Database SELECT on payments - Execution time: 151ms - Rows affected: 16 - RequestID: dzz8pmxqlwc +2025-06-18T14:40:15.881Z [TRACE] inventory-service - Auth event: password_change - User: user_1040 - IP: 192.168.79.116 - RequestID: 1tmoypt0dcy +2025-06-18T14:40:15.981Z [INFO] user-service - Database DELETE on orders - Execution time: 277ms - Rows affected: 15 - RequestID: u0e66ww3r6 +2025-06-18T14:40:16.081Z [TRACE] inventory-service - Auth event: login_failed - User: user_1045 - IP: 192.168.31.117 - RequestID: 3if1vt3oqv9 +2025-06-18T14:40:16.181Z [INFO] user-service - Operation: email_sent - Processing time: 101ms - RequestID: dhpuu8qqwz6 +2025-06-18T14:40:16.281Z [INFO] order-service - Database UPDATE on products - Execution time: 430ms - Rows affected: 82 - RequestID: 13vceohua9bs +2025-06-18T14:40:16.381Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 404 - Response time: 685ms - IP: 192.168.104.37 - User: user_1061 - RequestID: qbuo3xsjbm +2025-06-18T14:40:16.481Z [TRACE] payment-service - Operation: cache_hit - Processing time: 147ms - RequestID: qhm9yj6aafs +2025-06-18T14:40:16.581Z [INFO] user-service - Database UPDATE on products - Execution time: 378ms - Rows affected: 86 - RequestID: nfdms1csbk +2025-06-18T14:40:16.681Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 450ms - RequestID: 2xhshjfkk21 +2025-06-18T14:40:16.781Z [DEBUG] payment-service - Operation: order_created - Processing time: 95ms - RequestID: 98cw3o3wsbr +2025-06-18T14:40:16.881Z [TRACE] order-service - Operation: inventory_updated - Processing time: 512ms - RequestID: 4adqr2byo58 +2025-06-18T14:40:16.981Z [INFO] payment-service - Auth event: login_failed - User: user_1058 - IP: 192.168.10.184 - RequestID: ev1uicvqm6w +2025-06-18T14:40:17.081Z [DEBUG] order-service - DELETE /api/v1/users - Status: 503 - Response time: 1246ms - IP: 192.168.242.165 - User: user_1071 - RequestID: 633boashpnp +2025-06-18T14:40:17.181Z [DEBUG] order-service - POST /api/v1/orders - Status: 401 - Response time: 1861ms - IP: 192.168.247.134 - User: user_1065 - RequestID: 6iwgyyfutn +2025-06-18T14:40:17.281Z [TRACE] notification-service - Operation: cache_hit - Processing time: 219ms - RequestID: 6ybmx6wu3x5 +2025-06-18T14:40:17.381Z [TRACE] order-service - POST /api/v1/inventory - Status: 403 - Response time: 349ms - IP: 192.168.247.134 - User: user_1007 - RequestID: a3htz7lxoqf +2025-06-18T14:40:17.481Z [TRACE] inventory-service - Auth event: login_success - User: user_1029 - IP: 192.168.211.72 - RequestID: b12rvcnln58 +2025-06-18T14:40:17.581Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 802ms - RequestID: v4aojyjnxsm +2025-06-18T14:40:17.681Z [TRACE] order-service - Operation: cache_hit - Processing time: 444ms - RequestID: n2yp7r9x0gr +2025-06-18T14:40:17.781Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 402ms - Rows affected: 13 - RequestID: canpu2r5zp4 +2025-06-18T14:40:17.881Z [INFO] auth-service - Operation: email_sent - Processing time: 240ms - RequestID: fmrefodujfm +2025-06-18T14:40:17.981Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 404 - Response time: 551ms - IP: 192.168.36.218 - User: user_1072 - RequestID: qv82gqggb3p +2025-06-18T14:40:18.081Z [INFO] notification-service - Operation: email_sent - Processing time: 976ms - RequestID: tcqabt86e7s +2025-06-18T14:40:18.181Z [INFO] notification-service - Operation: cache_hit - Processing time: 394ms - RequestID: vo4kzjs7g6j +2025-06-18T14:40:18.281Z [TRACE] auth-service - Auth event: login_failed - User: user_1015 - IP: 192.168.247.134 - RequestID: p08qxy43qd +2025-06-18T14:40:18.381Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 490ms - IP: 192.168.31.117 - User: user_1091 - RequestID: n6h4u33j2c +2025-06-18T14:40:18.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.227.233 - RequestID: nt9zqta02ee +2025-06-18T14:40:18.581Z [DEBUG] notification-service - Operation: order_created - Processing time: 604ms - RequestID: 0zw1yw4hlzi +2025-06-18T14:40:18.681Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1819ms - IP: 192.168.46.63 - User: user_1011 - RequestID: rgp981vl9m +2025-06-18T14:40:18.781Z [INFO] payment-service - Operation: inventory_updated - Processing time: 246ms - RequestID: rvr0sxcxj2 +2025-06-18T14:40:18.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 936ms - RequestID: 4vu16rdaii4 +2025-06-18T14:40:18.981Z [DEBUG] order-service - Auth event: logout - User: user_1002 - IP: 192.168.13.72 - RequestID: ugssu21rj1d +2025-06-18T14:40:19.081Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 727ms - IP: 192.168.46.63 - User: user_1003 - RequestID: b6w2ci9h4pv +2025-06-18T14:40:19.181Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 256ms - Rows affected: 74 - RequestID: soahqbubig +2025-06-18T14:40:19.281Z [DEBUG] user-service - Auth event: logout - User: user_1072 - IP: 192.168.158.144 - RequestID: t270kpjzep +2025-06-18T14:40:19.381Z [TRACE] payment-service - Operation: order_created - Processing time: 211ms - RequestID: wcg8l72d9cf +2025-06-18T14:40:19.481Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 543ms - RequestID: 1ub66a128za +2025-06-18T14:40:19.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1045 - IP: 192.168.31.117 - RequestID: tids5wxx7f9 +2025-06-18T14:40:19.681Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 235ms - Rows affected: 20 - RequestID: wfi2hnhr9qs +2025-06-18T14:40:19.781Z [TRACE] inventory-service - Database INSERT on users - Execution time: 407ms - Rows affected: 0 - RequestID: yzau33yr5s9 +2025-06-18T14:40:19.881Z [INFO] payment-service - DELETE /api/v1/payments - Status: 503 - Response time: 1610ms - IP: 192.168.53.133 - User: user_1032 - RequestID: tr83l013xb +2025-06-18T14:40:19.981Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 542ms - RequestID: 18lqlplw77k +2025-06-18T14:40:20.081Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 126ms - Rows affected: 50 - RequestID: zt1chwedds9 +2025-06-18T14:40:20.181Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 502 - Response time: 1027ms - IP: 192.168.1.152 - User: user_1047 - RequestID: w2161cnls1k +2025-06-18T14:40:20.281Z [INFO] auth-service - Auth event: login_success - User: user_1082 - IP: 192.168.33.76 - RequestID: g7795ug1vle +2025-06-18T14:40:20.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1048 - IP: 192.168.33.76 - RequestID: 36s4nygxhhf +2025-06-18T14:40:20.481Z [DEBUG] order-service - GET /api/v1/inventory - Status: 500 - Response time: 1349ms - IP: 192.168.31.117 - User: user_1033 - RequestID: gi6znkfsyjq +2025-06-18T14:40:20.581Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 503 - Response time: 809ms - IP: 192.168.159.94 - User: user_1026 - RequestID: 52u7l7gprrt +2025-06-18T14:40:20.681Z [INFO] user-service - Database SELECT on payments - Execution time: 6ms - Rows affected: 93 - RequestID: ogqklf012jo +2025-06-18T14:40:20.781Z [INFO] inventory-service - Operation: notification_queued - Processing time: 907ms - RequestID: winffgdqzh +2025-06-18T14:40:20.881Z [TRACE] auth-service - Database UPDATE on users - Execution time: 127ms - Rows affected: 42 - RequestID: uz3gkgxskum +2025-06-18T14:40:20.981Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 201 - Response time: 397ms - IP: 192.168.79.116 - User: user_1036 - RequestID: o29glvnnwo +2025-06-18T14:40:21.081Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 456ms - IP: 192.168.100.240 - User: user_1015 - RequestID: hgod2dpiuvg +2025-06-18T14:40:21.181Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1293ms - IP: 192.168.68.158 - User: user_1051 - RequestID: piuskg08o2 +2025-06-18T14:40:21.281Z [TRACE] inventory-service - Auth event: password_change - User: user_1042 - IP: 192.168.46.63 - RequestID: s011yri7bh +2025-06-18T14:40:21.381Z [DEBUG] order-service - Operation: cache_hit - Processing time: 383ms - RequestID: npwo9ge222i +2025-06-18T14:40:21.481Z [TRACE] payment-service - Operation: payment_processed - Processing time: 1000ms - RequestID: cnfs2z8u06 +2025-06-18T14:40:21.581Z [TRACE] user-service - Operation: cache_hit - Processing time: 754ms - RequestID: kfkuopc4bnn +2025-06-18T14:40:21.681Z [TRACE] payment-service - Operation: notification_queued - Processing time: 63ms - RequestID: vkuh926mxn +2025-06-18T14:40:21.781Z [DEBUG] user-service - Auth event: login_failed - User: user_1003 - IP: 192.168.158.144 - RequestID: oddgxw2x0os +2025-06-18T14:40:21.881Z [INFO] user-service - Database UPDATE on sessions - Execution time: 263ms - Rows affected: 0 - RequestID: 66dtyfl0w57 +2025-06-18T14:40:21.981Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1806ms - IP: 192.168.147.171 - User: user_1077 - RequestID: mprf4oxv7l +2025-06-18T14:40:22.081Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 201 - Response time: 824ms - IP: 192.168.196.226 - User: user_1092 - RequestID: b1kqtd817p6 +2025-06-18T14:40:22.181Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 691ms - RequestID: mvvx7u6axmk +2025-06-18T14:40:22.281Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 212ms - Rows affected: 49 - RequestID: 6ukb59uy6if +2025-06-18T14:40:22.381Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 403 - Response time: 324ms - IP: 192.168.11.60 - User: user_1095 - RequestID: thelif6k99l +2025-06-18T14:40:22.481Z [INFO] inventory-service - Database DELETE on payments - Execution time: 136ms - Rows affected: 80 - RequestID: vhpivg30ou +2025-06-18T14:40:22.581Z [INFO] order-service - DELETE /api/v1/users - Status: 200 - Response time: 560ms - IP: 192.168.138.123 - User: user_1022 - RequestID: 6xjav5l8fje +2025-06-18T14:40:22.681Z [TRACE] order-service - Database INSERT on users - Execution time: 102ms - Rows affected: 30 - RequestID: 89e3ea2fzsa +2025-06-18T14:40:22.781Z [INFO] order-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1397ms - IP: 192.168.44.5 - User: user_1086 - RequestID: c647ilex8qa +2025-06-18T14:40:22.881Z [INFO] order-service - Operation: payment_processed - Processing time: 538ms - RequestID: n3crn0e0b7 +2025-06-18T14:40:22.981Z [INFO] user-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.33.76 - RequestID: g95umty4qon +2025-06-18T14:40:23.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1043 - IP: 192.168.211.72 - RequestID: io5twe33oze +2025-06-18T14:40:23.181Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 222ms - Rows affected: 52 - RequestID: wz2uo1g56c +2025-06-18T14:40:23.281Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 93ms - RequestID: 4ejlwawritr +2025-06-18T14:40:23.381Z [TRACE] user-service - Database DELETE on products - Execution time: 330ms - Rows affected: 6 - RequestID: e3emgshdzoq +2025-06-18T14:40:23.481Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 275ms - IP: 192.168.33.76 - User: user_1065 - RequestID: xb2xvu83nge +2025-06-18T14:40:23.581Z [TRACE] user-service - Auth event: password_change - User: user_1022 - IP: 192.168.64.33 - RequestID: znkx2cra15 +2025-06-18T14:40:23.681Z [DEBUG] user-service - Auth event: login_failed - User: user_1005 - IP: 192.168.159.94 - RequestID: tywcdox3x28 +2025-06-18T14:40:23.781Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 401 - Response time: 1803ms - IP: 192.168.10.184 - User: user_1037 - RequestID: ef273x0ljyc +2025-06-18T14:40:23.881Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1099ms - IP: 192.168.247.134 - User: user_1074 - RequestID: ercbnoakrxv +2025-06-18T14:40:23.981Z [TRACE] user-service - PATCH /api/v1/orders - Status: 201 - Response time: 727ms - IP: 192.168.100.240 - User: user_1008 - RequestID: ldksrcq6ife +2025-06-18T14:40:24.081Z [TRACE] user-service - Auth event: password_change - User: user_1012 - IP: 192.168.44.5 - RequestID: xu0dhdg30p +2025-06-18T14:40:24.181Z [INFO] order-service - Auth event: password_change - User: user_1075 - IP: 192.168.247.134 - RequestID: aegr4jaa5zl +2025-06-18T14:40:24.281Z [DEBUG] payment-service - Database SELECT on products - Execution time: 204ms - Rows affected: 38 - RequestID: 3t49g7sgcoy +2025-06-18T14:40:24.381Z [INFO] notification-service - Database UPDATE on products - Execution time: 2ms - Rows affected: 12 - RequestID: wi953wqlvqg +2025-06-18T14:40:24.481Z [INFO] notification-service - POST /api/v1/inventory - Status: 400 - Response time: 1248ms - IP: 192.168.79.141 - User: user_1033 - RequestID: rbncnr4b3zh +2025-06-18T14:40:24.581Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 400 - Response time: 1671ms - IP: 192.168.227.233 - User: user_1006 - RequestID: hbi7myqkqy4 +2025-06-18T14:40:24.681Z [DEBUG] inventory-service - Auth event: password_change - User: user_1018 - IP: 192.168.14.77 - RequestID: 388d4u7h81c +2025-06-18T14:40:24.781Z [TRACE] user-service - PUT /api/v1/orders - Status: 502 - Response time: 1948ms - IP: 192.168.85.229 - User: user_1059 - RequestID: 19hn73cyxez +2025-06-18T14:40:24.881Z [TRACE] notification-service - Database DELETE on products - Execution time: 63ms - Rows affected: 10 - RequestID: ntvhwmp242o +2025-06-18T14:40:24.981Z [DEBUG] order-service - Operation: payment_processed - Processing time: 501ms - RequestID: spgyv3401p +2025-06-18T14:40:25.081Z [INFO] notification-service - Database SELECT on products - Execution time: 376ms - Rows affected: 21 - RequestID: gzw2ivu59y +2025-06-18T14:40:25.181Z [DEBUG] inventory-service - Auth event: login_success - User: user_1068 - IP: 192.168.247.134 - RequestID: srd1aw5wl8f +2025-06-18T14:40:25.281Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 500 - Response time: 1110ms - IP: 192.168.240.169 - User: user_1004 - RequestID: vm6uj3ap6wq +2025-06-18T14:40:25.381Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 429ms - RequestID: hubtpo6y3gu +2025-06-18T14:40:25.481Z [TRACE] order-service - PUT /api/v1/users - Status: 401 - Response time: 1648ms - IP: 192.168.64.33 - User: user_1087 - RequestID: asg61fkehrk +2025-06-18T14:40:25.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.79.143 - RequestID: qp6oyhzbum +2025-06-18T14:40:25.681Z [DEBUG] notification-service - Auth event: password_change - User: user_1078 - IP: 192.168.240.169 - RequestID: zue8cm3dddn +2025-06-18T14:40:25.781Z [INFO] inventory-service - POST /api/v1/inventory - Status: 200 - Response time: 535ms - IP: 192.168.104.37 - User: user_1081 - RequestID: gbohjezwhv +2025-06-18T14:40:25.881Z [DEBUG] user-service - Operation: payment_processed - Processing time: 401ms - RequestID: t6fn2byl5hf +2025-06-18T14:40:25.981Z [TRACE] notification-service - Auth event: login_success - User: user_1092 - IP: 192.168.44.5 - RequestID: 0j4263qn31zk +2025-06-18T14:40:26.081Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 86ms - Rows affected: 7 - RequestID: hwtom0t2y66 +2025-06-18T14:40:26.181Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 94ms - Rows affected: 20 - RequestID: xhq0wuajqa +2025-06-18T14:40:26.281Z [TRACE] order-service - Auth event: password_change - User: user_1039 - IP: 192.168.104.37 - RequestID: idp4jw7sxdr +2025-06-18T14:40:26.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.170.215 - RequestID: kk77nlx8lze +2025-06-18T14:40:26.481Z [INFO] auth-service - DELETE /api/v1/payments - Status: 401 - Response time: 1389ms - IP: 192.168.181.225 - User: user_1024 - RequestID: 7lis8l2y1rx +2025-06-18T14:40:26.581Z [INFO] notification-service - Operation: email_sent - Processing time: 1020ms - RequestID: my1fq4ukf7e +2025-06-18T14:40:26.681Z [DEBUG] order-service - Auth event: password_change - User: user_1022 - IP: 192.168.144.38 - RequestID: 9314bh4zewf +2025-06-18T14:40:26.781Z [TRACE] payment-service - Auth event: logout - User: user_1043 - IP: 192.168.13.72 - RequestID: jybv28awjha +2025-06-18T14:40:26.881Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1323ms - IP: 192.168.104.37 - User: user_1024 - RequestID: 8xkmp49cfmp +2025-06-18T14:40:26.981Z [INFO] payment-service - PUT /api/v1/inventory - Status: 503 - Response time: 1645ms - IP: 192.168.141.100 - User: user_1035 - RequestID: o8dkdghhquj +2025-06-18T14:40:27.081Z [INFO] payment-service - POST /api/v1/inventory - Status: 500 - Response time: 1706ms - IP: 192.168.187.199 - User: user_1016 - RequestID: fvmz1u2idic +2025-06-18T14:40:27.181Z [INFO] user-service - Operation: email_sent - Processing time: 406ms - RequestID: q9nq9az93n +2025-06-18T14:40:27.281Z [INFO] payment-service - Operation: inventory_updated - Processing time: 696ms - RequestID: 67g0wt5f8ck +2025-06-18T14:40:27.381Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 13ms - Rows affected: 65 - RequestID: yzol391tqo +2025-06-18T14:40:27.481Z [INFO] order-service - Auth event: logout - User: user_1020 - IP: 192.168.104.37 - RequestID: hph3lk0wtmf +2025-06-18T14:40:27.581Z [INFO] inventory-service - Database SELECT on users - Execution time: 154ms - Rows affected: 28 - RequestID: pbul5ijmp18 +2025-06-18T14:40:27.681Z [TRACE] order-service - Operation: cache_miss - Processing time: 1000ms - RequestID: nke6h6bbarm +2025-06-18T14:40:27.781Z [DEBUG] user-service - Operation: email_sent - Processing time: 172ms - RequestID: 34vkshbe84e +2025-06-18T14:40:27.881Z [DEBUG] payment-service - Auth event: login_failed - User: user_1026 - IP: 192.168.14.77 - RequestID: dgnpyx7ych7 +2025-06-18T14:40:27.981Z [INFO] notification-service - Operation: email_sent - Processing time: 142ms - RequestID: 7iyysws7c02 +2025-06-18T14:40:28.081Z [DEBUG] inventory-service - POST /api/v1/users - Status: 404 - Response time: 1251ms - IP: 192.168.158.144 - User: user_1083 - RequestID: 9q8nrwdbq2b +2025-06-18T14:40:28.181Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 134ms - Rows affected: 26 - RequestID: 5nx72jcqn8a +2025-06-18T14:40:28.281Z [TRACE] auth-service - Database INSERT on payments - Execution time: 251ms - Rows affected: 90 - RequestID: clddgrvvtxl +2025-06-18T14:40:28.381Z [INFO] notification-service - Operation: order_created - Processing time: 912ms - RequestID: 6gbeqllctoi +2025-06-18T14:40:28.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.28.146 - RequestID: yoo2bz1smlh +2025-06-18T14:40:28.581Z [TRACE] payment-service - Auth event: logout - User: user_1058 - IP: 192.168.31.117 - RequestID: 6acj72vn2v +2025-06-18T14:40:28.681Z [DEBUG] auth-service - Auth event: login_failed - User: user_1098 - IP: 192.168.138.123 - RequestID: 60bgcggkkr +2025-06-18T14:40:28.781Z [DEBUG] payment-service - Auth event: login_failed - User: user_1014 - IP: 192.168.33.76 - RequestID: w146kmyorv +2025-06-18T14:40:28.881Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1021ms - IP: 192.168.147.171 - User: user_1053 - RequestID: kp3a3j0rbcm +2025-06-18T14:40:28.981Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 111ms - IP: 192.168.100.240 - User: user_1001 - RequestID: zui3j3p18rj +2025-06-18T14:40:29.081Z [TRACE] auth-service - GET /api/v1/orders - Status: 404 - Response time: 78ms - IP: 192.168.85.229 - User: user_1026 - RequestID: t6l2yqn84dm +2025-06-18T14:40:29.181Z [INFO] payment-service - Operation: email_sent - Processing time: 408ms - RequestID: vv0dkedt0ei +2025-06-18T14:40:29.281Z [TRACE] order-service - Database UPDATE on users - Execution time: 470ms - Rows affected: 54 - RequestID: kkmiiz8bia +2025-06-18T14:40:29.381Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 70ms - RequestID: kheqwoiqhyl +2025-06-18T14:40:29.481Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 963ms - RequestID: rti8alxtenb +2025-06-18T14:40:29.581Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 794ms - IP: 192.168.104.37 - User: user_1019 - RequestID: 4h5eh2sz4y +2025-06-18T14:40:29.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 819ms - RequestID: j2bejz5p8m +2025-06-18T14:40:29.781Z [INFO] notification-service - Database SELECT on payments - Execution time: 31ms - Rows affected: 27 - RequestID: uv3ac715re +2025-06-18T14:40:29.881Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 400 - Response time: 1497ms - IP: 192.168.174.114 - User: user_1040 - RequestID: j6w4o47fm8q +2025-06-18T14:40:29.981Z [INFO] notification-service - Operation: cache_hit - Processing time: 417ms - RequestID: 7dxjny826au +2025-06-18T14:40:30.081Z [INFO] order-service - GET /api/v1/auth/logout - Status: 503 - Response time: 944ms - IP: 192.168.138.123 - User: user_1081 - RequestID: 3f3rhqdeemm +2025-06-18T14:40:30.181Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 312ms - Rows affected: 35 - RequestID: p2hpe2v5jv +2025-06-18T14:40:30.281Z [DEBUG] order-service - Operation: payment_processed - Processing time: 87ms - RequestID: p8w4a1bems +2025-06-18T14:40:30.381Z [TRACE] auth-service - Auth event: login_failed - User: user_1080 - IP: 192.168.32.38 - RequestID: 5mcixxa0pf4 +2025-06-18T14:40:30.481Z [TRACE] order-service - Operation: webhook_sent - Processing time: 225ms - RequestID: 7lk6wdenzf8 +2025-06-18T14:40:30.581Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 403 - Response time: 1899ms - IP: 192.168.13.72 - User: user_1015 - RequestID: 54d2iqrnp0t +2025-06-18T14:40:30.681Z [INFO] inventory-service - Operation: cache_miss - Processing time: 656ms - RequestID: i85ie8kc0gf +2025-06-18T14:40:30.781Z [INFO] order-service - Operation: cache_miss - Processing time: 680ms - RequestID: xxph87nu0j +2025-06-18T14:40:30.881Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 400 - Response time: 951ms - IP: 192.168.30.79 - User: user_1014 - RequestID: 6w6wmfn61z9 +2025-06-18T14:40:30.981Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 200ms - Rows affected: 70 - RequestID: tdt5054a15d +2025-06-18T14:40:31.081Z [INFO] user-service - Operation: cache_hit - Processing time: 273ms - RequestID: dt35mdysdjc +2025-06-18T14:40:31.181Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 972ms - RequestID: nxizjeuefy +2025-06-18T14:40:31.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1001 - IP: 192.168.174.114 - RequestID: udrp2vmm2jb +2025-06-18T14:40:31.381Z [INFO] notification-service - PATCH /api/v1/users - Status: 403 - Response time: 919ms - IP: 192.168.170.215 - User: user_1094 - RequestID: 2sfndqusefr +2025-06-18T14:40:31.481Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 401 - Response time: 1733ms - IP: 192.168.159.94 - User: user_1021 - RequestID: k09gd6rk6fc +2025-06-18T14:40:31.581Z [INFO] inventory-service - Database DELETE on orders - Execution time: 364ms - Rows affected: 49 - RequestID: q05rwh1nh1 +2025-06-18T14:40:31.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 454ms - RequestID: 6chwzsjltzj +2025-06-18T14:40:31.781Z [INFO] inventory-service - Database INSERT on orders - Execution time: 269ms - Rows affected: 55 - RequestID: 2db5fid2h6r +2025-06-18T14:40:31.881Z [INFO] inventory-service - POST /api/v1/orders - Status: 200 - Response time: 1571ms - IP: 192.168.53.133 - User: user_1025 - RequestID: 2z13nd6pl87 +2025-06-18T14:40:31.981Z [TRACE] user-service - Operation: email_sent - Processing time: 876ms - RequestID: lgfxdedkzt +2025-06-18T14:40:32.081Z [TRACE] order-service - Auth event: login_failed - User: user_1019 - IP: 192.168.68.158 - RequestID: tbspeglrq8g +2025-06-18T14:40:32.181Z [INFO] inventory-service - Database INSERT on payments - Execution time: 182ms - Rows affected: 2 - RequestID: xh65vdy1msn +2025-06-18T14:40:32.281Z [TRACE] notification-service - Operation: order_created - Processing time: 219ms - RequestID: 4q01437smgu +2025-06-18T14:40:32.381Z [INFO] order-service - Auth event: login_success - User: user_1045 - IP: 192.168.229.123 - RequestID: l8l9uom8szj +2025-06-18T14:40:32.481Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1269ms - IP: 192.168.31.117 - User: user_1006 - RequestID: syp44dljh3l +2025-06-18T14:40:32.581Z [TRACE] order-service - Auth event: logout - User: user_1060 - IP: 192.168.30.79 - RequestID: e0joc4277pt +2025-06-18T14:40:32.681Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 134ms - Rows affected: 48 - RequestID: 59uirmw256q +2025-06-18T14:40:32.781Z [INFO] notification-service - POST /api/v1/payments - Status: 401 - Response time: 206ms - IP: 192.168.141.100 - User: user_1061 - RequestID: xld6ei2germ +2025-06-18T14:40:32.881Z [DEBUG] notification-service - Auth event: logout - User: user_1018 - IP: 192.168.227.77 - RequestID: 0o9q03s1r37 +2025-06-18T14:40:32.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.232.72 - RequestID: tuw7avsuwwb +2025-06-18T14:40:33.081Z [TRACE] notification-service - GET /api/v1/orders - Status: 503 - Response time: 189ms - IP: 192.168.229.123 - User: user_1002 - RequestID: qklktw3dzl +2025-06-18T14:40:33.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.229.123 - RequestID: mi49b63xgho +2025-06-18T14:40:33.281Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 760ms - RequestID: 3sb9ef3lsym +2025-06-18T14:40:33.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 727ms - RequestID: iqpwmf0b1ui +2025-06-18T14:40:33.481Z [DEBUG] payment-service - GET /api/v1/payments - Status: 201 - Response time: 1195ms - IP: 192.168.68.158 - User: user_1011 - RequestID: tk3qmb2ix3e +2025-06-18T14:40:33.581Z [INFO] user-service - Database DELETE on orders - Execution time: 283ms - Rows affected: 75 - RequestID: um7fhfga91 +2025-06-18T14:40:33.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 442ms - RequestID: 6puz6h77s12 +2025-06-18T14:40:33.781Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 630ms - RequestID: 3v6c1x5ljvd +2025-06-18T14:40:33.881Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 201 - Response time: 378ms - IP: 192.168.30.79 - User: user_1017 - RequestID: gp0wuagyfg7 +2025-06-18T14:40:33.981Z [DEBUG] user-service - PATCH /api/v1/users - Status: 404 - Response time: 902ms - IP: 192.168.33.76 - User: user_1000 - RequestID: bz7792g6vwu +2025-06-18T14:40:34.081Z [INFO] notification-service - Database INSERT on payments - Execution time: 56ms - Rows affected: 91 - RequestID: gonlweew56f +2025-06-18T14:40:34.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.100.240 - RequestID: 6muunrmdzjo +2025-06-18T14:40:34.281Z [TRACE] payment-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.227.233 - RequestID: ffjujy8wwg8 +2025-06-18T14:40:34.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 513ms - RequestID: e1ch4neu48s +2025-06-18T14:40:34.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.85.229 - RequestID: u44him3loh +2025-06-18T14:40:34.581Z [INFO] order-service - Operation: webhook_sent - Processing time: 64ms - RequestID: cfqnf3a4ued +2025-06-18T14:40:34.681Z [INFO] payment-service - Operation: cache_hit - Processing time: 825ms - RequestID: 2hxpcph0kn +2025-06-18T14:40:34.781Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 382ms - Rows affected: 9 - RequestID: eidzmexx0t4 +2025-06-18T14:40:34.881Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 423ms - Rows affected: 22 - RequestID: zazz0c3k0gd +2025-06-18T14:40:34.981Z [INFO] auth-service - Operation: email_sent - Processing time: 223ms - RequestID: 1w807f87vgs +2025-06-18T14:40:35.081Z [TRACE] notification-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.138.123 - RequestID: qe6wmwhrzha +2025-06-18T14:40:35.181Z [TRACE] notification-service - Operation: notification_queued - Processing time: 776ms - RequestID: d574pmh3f77 +2025-06-18T14:40:35.281Z [DEBUG] auth-service - Auth event: login_success - User: user_1071 - IP: 192.168.11.60 - RequestID: hfr5z9i7oyo +2025-06-18T14:40:35.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.138.123 - RequestID: jd99n0y5jc +2025-06-18T14:40:35.481Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 404 - Response time: 589ms - IP: 192.168.227.77 - User: user_1038 - RequestID: 0mikf2vrn9rk +2025-06-18T14:40:35.581Z [INFO] payment-service - Database DELETE on payments - Execution time: 446ms - Rows affected: 65 - RequestID: 89zmmx8079l +2025-06-18T14:40:35.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.28.146 - RequestID: r2cpk9abber +2025-06-18T14:40:35.781Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 403 - Response time: 1995ms - IP: 192.168.85.229 - User: user_1080 - RequestID: xj3qced8h3 +2025-06-18T14:40:35.881Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1887ms - IP: 192.168.167.32 - User: user_1043 - RequestID: ma085i5762e +2025-06-18T14:40:35.981Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 474ms - Rows affected: 83 - RequestID: 9vcqzkq5vw +2025-06-18T14:40:36.081Z [TRACE] user-service - POST /api/v1/auth/login - Status: 200 - Response time: 869ms - IP: 192.168.64.33 - User: user_1049 - RequestID: 2nhy600qt1p +2025-06-18T14:40:36.181Z [INFO] payment-service - Auth event: password_change - User: user_1070 - IP: 192.168.144.38 - RequestID: 3iql3731d4w +2025-06-18T14:40:36.281Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1427ms - IP: 192.168.64.33 - User: user_1091 - RequestID: dq1ax9ndehc +2025-06-18T14:40:36.381Z [INFO] inventory-service - Auth event: logout - User: user_1024 - IP: 192.168.138.123 - RequestID: u5mt6vy9pf9 +2025-06-18T14:40:36.481Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1098ms - IP: 192.168.181.225 - User: user_1068 - RequestID: 8c0y3tcv00a +2025-06-18T14:40:36.581Z [INFO] user-service - GET /api/v1/auth/login - Status: 400 - Response time: 1895ms - IP: 192.168.133.7 - User: user_1033 - RequestID: 9s88vofsdu +2025-06-18T14:40:36.681Z [TRACE] auth-service - Auth event: password_change - User: user_1064 - IP: 192.168.235.117 - RequestID: 7gj9ofg7d7u +2025-06-18T14:40:36.781Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.227.77 - RequestID: 00df34paci5rs +2025-06-18T14:40:36.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1083 - IP: 192.168.11.60 - RequestID: rrbulm1e6tn +2025-06-18T14:40:36.981Z [DEBUG] order-service - Operation: cache_hit - Processing time: 1011ms - RequestID: 21hosn45sj2 +2025-06-18T14:40:37.081Z [INFO] user-service - Database INSERT on users - Execution time: 81ms - Rows affected: 71 - RequestID: szdja4b3xcr +2025-06-18T14:40:37.181Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 161ms - Rows affected: 35 - RequestID: i7apn46tyzl +2025-06-18T14:40:37.281Z [DEBUG] notification-service - Database INSERT on users - Execution time: 54ms - Rows affected: 91 - RequestID: tqjrj7ghpx +2025-06-18T14:40:37.381Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 248ms - Rows affected: 26 - RequestID: v4dbd73q1r +2025-06-18T14:40:37.481Z [INFO] notification-service - PUT /api/v1/payments - Status: 502 - Response time: 1222ms - IP: 192.168.28.146 - User: user_1014 - RequestID: v84g7neba2q +2025-06-18T14:40:37.581Z [INFO] order-service - Operation: email_sent - Processing time: 499ms - RequestID: k5kem9m5hul +2025-06-18T14:40:37.681Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 432ms - Rows affected: 22 - RequestID: tzs78uumu7 +2025-06-18T14:40:37.781Z [DEBUG] user-service - Operation: order_created - Processing time: 1030ms - RequestID: tbpog2zc6t +2025-06-18T14:40:37.881Z [TRACE] notification-service - POST /api/v1/orders - Status: 404 - Response time: 496ms - IP: 192.168.147.171 - User: user_1069 - RequestID: bwvubi9apvf +2025-06-18T14:40:37.981Z [INFO] notification-service - Auth event: login_failed - User: user_1006 - IP: 192.168.14.77 - RequestID: 87h2hd8wnh2 +2025-06-18T14:40:38.081Z [INFO] auth-service - GET /api/v1/payments - Status: 400 - Response time: 1434ms - IP: 192.168.232.72 - User: user_1076 - RequestID: ovb0tu9kjya +2025-06-18T14:40:38.181Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 329ms - Rows affected: 79 - RequestID: evw8q60nd2 +2025-06-18T14:40:38.281Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.32.38 - RequestID: 45l8rv1d094 +2025-06-18T14:40:38.381Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 386ms - Rows affected: 53 - RequestID: ej328aynkz6 +2025-06-18T14:40:38.481Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 271ms - Rows affected: 92 - RequestID: acc2cuuxo4a +2025-06-18T14:40:38.581Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 339ms - Rows affected: 12 - RequestID: n21kos41mag +2025-06-18T14:40:38.681Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1808ms - IP: 192.168.11.60 - User: user_1015 - RequestID: o1j62c6vhf8 +2025-06-18T14:40:38.781Z [INFO] user-service - Database SELECT on products - Execution time: 463ms - Rows affected: 73 - RequestID: 8dd96wqba55 +2025-06-18T14:40:38.881Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 813ms - RequestID: 1he7cgmoofc +2025-06-18T14:40:38.981Z [DEBUG] order-service - Database SELECT on orders - Execution time: 57ms - Rows affected: 32 - RequestID: yy663krs1y +2025-06-18T14:40:39.081Z [DEBUG] order-service - Operation: payment_processed - Processing time: 887ms - RequestID: vpuugsmcv1n +2025-06-18T14:40:39.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.14.77 - RequestID: bktjzgs72zn +2025-06-18T14:40:39.281Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 244ms - Rows affected: 53 - RequestID: 3nujswbsjxw +2025-06-18T14:40:39.381Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 122ms - Rows affected: 32 - RequestID: j14luyzei5m +2025-06-18T14:40:39.481Z [TRACE] payment-service - Operation: cache_hit - Processing time: 244ms - RequestID: 7i2kpmen326 +2025-06-18T14:40:39.581Z [TRACE] inventory-service - POST /api/v1/users - Status: 401 - Response time: 1766ms - IP: 192.168.10.184 - User: user_1069 - RequestID: ildorowcvjs +2025-06-18T14:40:39.681Z [INFO] order-service - Auth event: login_failed - User: user_1043 - IP: 192.168.211.72 - RequestID: l99j1skibke +2025-06-18T14:40:39.781Z [TRACE] user-service - Auth event: login_failed - User: user_1074 - IP: 192.168.46.63 - RequestID: q6pf89gcv3 +2025-06-18T14:40:39.881Z [DEBUG] inventory-service - Operation: order_created - Processing time: 431ms - RequestID: qbd97pktj0l +2025-06-18T14:40:39.981Z [DEBUG] order-service - Database INSERT on users - Execution time: 232ms - Rows affected: 9 - RequestID: ctm7wpasd6d +2025-06-18T14:40:40.081Z [TRACE] order-service - Operation: order_created - Processing time: 266ms - RequestID: dkn3bl41zz +2025-06-18T14:40:40.181Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 382ms - RequestID: p6hs7n58rtk +2025-06-18T14:40:40.281Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1332ms - IP: 192.168.100.240 - User: user_1066 - RequestID: fc903hudf6r +2025-06-18T14:40:40.381Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 483ms - Rows affected: 48 - RequestID: uoxnnaz0xla +2025-06-18T14:40:40.481Z [INFO] user-service - Database SELECT on orders - Execution time: 112ms - Rows affected: 46 - RequestID: 3282qxeqyea +2025-06-18T14:40:40.581Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 348ms - Rows affected: 69 - RequestID: rb4a3f5vlbf +2025-06-18T14:40:40.681Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 202ms - RequestID: 6gb5jcp85vs +2025-06-18T14:40:40.781Z [TRACE] user-service - POST /api/v1/payments - Status: 201 - Response time: 779ms - IP: 192.168.64.33 - User: user_1092 - RequestID: jr9obobtf2e +2025-06-18T14:40:40.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1047 - IP: 192.168.36.218 - RequestID: xh03zhv9se +2025-06-18T14:40:40.981Z [INFO] inventory-service - Operation: cache_hit - Processing time: 644ms - RequestID: ercwezx5sa9 +2025-06-18T14:40:41.081Z [INFO] notification-service - DELETE /api/v1/payments - Status: 404 - Response time: 1765ms - IP: 192.168.100.240 - User: user_1062 - RequestID: md2nhs11rvr +2025-06-18T14:40:41.181Z [INFO] inventory-service - Operation: notification_queued - Processing time: 355ms - RequestID: 70oh4l75zkd +2025-06-18T14:40:41.281Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 125ms - Rows affected: 77 - RequestID: lkqodyjzn1q +2025-06-18T14:40:41.381Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 377ms - RequestID: i1r3ik6n4v +2025-06-18T14:40:41.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1087 - IP: 192.168.187.199 - RequestID: 1jvaoycungd +2025-06-18T14:40:41.581Z [INFO] payment-service - Operation: cache_miss - Processing time: 211ms - RequestID: iz68dcd2mgp +2025-06-18T14:40:41.681Z [INFO] user-service - Auth event: password_change - User: user_1084 - IP: 192.168.79.141 - RequestID: fd2hu6v0out +2025-06-18T14:40:41.781Z [TRACE] inventory-service - Database INSERT on products - Execution time: 302ms - Rows affected: 31 - RequestID: kp3x32mdnrp +2025-06-18T14:40:41.881Z [INFO] payment-service - Operation: cache_miss - Processing time: 335ms - RequestID: 8d945wv1fti +2025-06-18T14:40:41.981Z [INFO] payment-service - Database DELETE on users - Execution time: 273ms - Rows affected: 87 - RequestID: xauqd8oggyd +2025-06-18T14:40:42.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1059 - IP: 192.168.85.229 - RequestID: q4asnd5hdy +2025-06-18T14:40:42.181Z [INFO] inventory-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.147.171 - RequestID: rxbalcbom1 +2025-06-18T14:40:42.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1005 - IP: 192.168.85.229 - RequestID: 24z5q10xmxp +2025-06-18T14:40:42.381Z [DEBUG] order-service - GET /api/v1/orders - Status: 200 - Response time: 1041ms - IP: 192.168.68.128 - User: user_1089 - RequestID: ht3vuq718lr +2025-06-18T14:40:42.481Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1447ms - IP: 192.168.232.72 - User: user_1054 - RequestID: y9oo8eb1za +2025-06-18T14:40:42.581Z [DEBUG] inventory-service - Auth event: logout - User: user_1066 - IP: 192.168.159.94 - RequestID: g466r9d99tq +2025-06-18T14:40:42.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.1.152 - RequestID: tvkkli6s4p +2025-06-18T14:40:42.781Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 371ms - Rows affected: 86 - RequestID: 00ujiek8gdehi +2025-06-18T14:40:42.881Z [INFO] auth-service - Operation: cache_hit - Processing time: 602ms - RequestID: esn7gdz80hn +2025-06-18T14:40:42.981Z [TRACE] auth-service - Database DELETE on orders - Execution time: 248ms - Rows affected: 21 - RequestID: ayhhc9tz3bf +2025-06-18T14:40:43.081Z [INFO] auth-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.227.77 - RequestID: sdyq7m7li3 +2025-06-18T14:40:43.181Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 436ms - Rows affected: 81 - RequestID: 3ye82e0i778 +2025-06-18T14:40:43.281Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 434ms - Rows affected: 67 - RequestID: a4j8uh3sk2l +2025-06-18T14:40:43.381Z [TRACE] auth-service - Operation: notification_queued - Processing time: 952ms - RequestID: iifyt6lirge +2025-06-18T14:40:43.481Z [TRACE] user-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.113.218 - RequestID: ugyf3eugu9 +2025-06-18T14:40:43.581Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 401 - Response time: 1300ms - IP: 192.168.14.77 - User: user_1050 - RequestID: zlyzyk8v1a +2025-06-18T14:40:43.681Z [INFO] inventory-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.11.60 - RequestID: vm6qm18tva +2025-06-18T14:40:43.781Z [INFO] auth-service - Operation: payment_processed - Processing time: 375ms - RequestID: p9fe9vrdy6m +2025-06-18T14:40:43.881Z [DEBUG] user-service - Operation: notification_queued - Processing time: 54ms - RequestID: rp0qs63zz2 +2025-06-18T14:40:43.981Z [INFO] payment-service - Auth event: login_failed - User: user_1061 - IP: 192.168.53.133 - RequestID: z1odqert1yg +2025-06-18T14:40:44.081Z [DEBUG] payment-service - Auth event: logout - User: user_1095 - IP: 192.168.36.218 - RequestID: bg6ck92dw9 +2025-06-18T14:40:44.181Z [DEBUG] order-service - Auth event: logout - User: user_1094 - IP: 192.168.32.38 - RequestID: 5k8u4th6o4y +2025-06-18T14:40:44.281Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 6ms - Rows affected: 70 - RequestID: 7w29h2btb8o +2025-06-18T14:40:44.381Z [DEBUG] order-service - Operation: email_sent - Processing time: 75ms - RequestID: eaiidzpkm38 +2025-06-18T14:40:44.481Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 500 - Response time: 1572ms - IP: 192.168.167.32 - User: user_1067 - RequestID: js6o0si1bv +2025-06-18T14:40:44.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1007 - IP: 192.168.141.100 - RequestID: qlflm4rbbfd +2025-06-18T14:40:44.681Z [INFO] user-service - Operation: payment_processed - Processing time: 917ms - RequestID: x9mr5p5rjmf +2025-06-18T14:40:44.781Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1355ms - IP: 192.168.10.184 - User: user_1092 - RequestID: fxj2ye7sxhe +2025-06-18T14:40:44.881Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 216ms - Rows affected: 85 - RequestID: omzbcffqqq +2025-06-18T14:40:44.981Z [DEBUG] payment-service - Operation: email_sent - Processing time: 609ms - RequestID: 7cmtshefm2j +2025-06-18T14:40:45.081Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 404 - Response time: 1000ms - IP: 192.168.81.206 - User: user_1056 - RequestID: a57eqzjo6i +2025-06-18T14:40:45.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.147.171 - RequestID: 1oyd5iusjh1 +2025-06-18T14:40:45.281Z [TRACE] auth-service - Database DELETE on orders - Execution time: 54ms - Rows affected: 84 - RequestID: t9r8dw11g2 +2025-06-18T14:40:45.381Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 400 - Response time: 1932ms - IP: 192.168.240.169 - User: user_1005 - RequestID: vb6bkoctdmk +2025-06-18T14:40:45.481Z [TRACE] user-service - Auth event: login_failed - User: user_1026 - IP: 192.168.147.171 - RequestID: eeykcyp97z +2025-06-18T14:40:45.581Z [TRACE] notification-service - Auth event: logout - User: user_1014 - IP: 192.168.14.77 - RequestID: jwz3k1ytwr +2025-06-18T14:40:45.681Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 201ms - Rows affected: 63 - RequestID: 7h2ivwkc90c +2025-06-18T14:40:45.781Z [INFO] auth-service - Database DELETE on orders - Execution time: 79ms - Rows affected: 28 - RequestID: 2t0kjs6f3cn +2025-06-18T14:40:45.881Z [DEBUG] auth-service - POST /api/v1/orders - Status: 200 - Response time: 513ms - IP: 192.168.211.72 - User: user_1015 - RequestID: x6oe0wgtda +2025-06-18T14:40:45.981Z [TRACE] order-service - GET /api/v1/users - Status: 201 - Response time: 174ms - IP: 192.168.104.37 - User: user_1089 - RequestID: to1gxboplq +2025-06-18T14:40:46.081Z [INFO] payment-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.44.5 - RequestID: djr5ljwx70r +2025-06-18T14:40:46.181Z [INFO] order-service - Auth event: logout - User: user_1092 - IP: 192.168.242.165 - RequestID: 0ipvov17lg07 +2025-06-18T14:40:46.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.133.7 - RequestID: dbevj2rbuhc +2025-06-18T14:40:46.381Z [INFO] auth-service - Database INSERT on orders - Execution time: 42ms - Rows affected: 50 - RequestID: 6r4avaw3ms7 +2025-06-18T14:40:46.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.240.169 - RequestID: l1pnh93vvqh +2025-06-18T14:40:46.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.13.72 - RequestID: b23fziyn8f4 +2025-06-18T14:40:46.681Z [INFO] user-service - POST /api/v1/payments - Status: 500 - Response time: 1620ms - IP: 192.168.159.94 - User: user_1097 - RequestID: 6m7z2s70wls +2025-06-18T14:40:46.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1031 - IP: 192.168.85.229 - RequestID: c9eyofi69ol +2025-06-18T14:40:46.881Z [TRACE] order-service - Database INSERT on sessions - Execution time: 460ms - Rows affected: 88 - RequestID: 8foaym2982b +2025-06-18T14:40:46.981Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1343ms - IP: 192.168.53.133 - User: user_1052 - RequestID: 5gvbxaas3p2 +2025-06-18T14:40:47.081Z [DEBUG] order-service - Operation: payment_processed - Processing time: 86ms - RequestID: ii19366w2f +2025-06-18T14:40:47.181Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 489ms - Rows affected: 12 - RequestID: 4kpcfezcb3 +2025-06-18T14:40:47.281Z [DEBUG] user-service - Operation: email_sent - Processing time: 1012ms - RequestID: sshvb94q7bs +2025-06-18T14:40:47.381Z [INFO] inventory-service - Database INSERT on payments - Execution time: 258ms - Rows affected: 9 - RequestID: z04gza2um8e +2025-06-18T14:40:47.481Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 660ms - RequestID: ul9eljkkpls +2025-06-18T14:40:47.581Z [TRACE] payment-service - Auth event: password_change - User: user_1081 - IP: 192.168.44.5 - RequestID: 6zf0i157pdg +2025-06-18T14:40:47.681Z [INFO] order-service - Database DELETE on orders - Execution time: 29ms - Rows affected: 97 - RequestID: vx7w3z2vcx +2025-06-18T14:40:47.781Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 568ms - RequestID: j26g2hbvvi +2025-06-18T14:40:47.881Z [INFO] notification-service - Database UPDATE on products - Execution time: 478ms - Rows affected: 9 - RequestID: ykt1lc89ngq +2025-06-18T14:40:47.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.232.72 - RequestID: ev1oqkmmhii +2025-06-18T14:40:48.081Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 403 - Response time: 251ms - IP: 192.168.194.41 - User: user_1018 - RequestID: f2mfxae57hi +2025-06-18T14:40:48.181Z [INFO] inventory-service - Database SELECT on users - Execution time: 455ms - Rows affected: 52 - RequestID: ik1lptjedy +2025-06-18T14:40:48.281Z [INFO] payment-service - GET /api/v1/orders - Status: 201 - Response time: 1404ms - IP: 192.168.44.5 - User: user_1022 - RequestID: 41dv75rmkjq +2025-06-18T14:40:48.381Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 201 - Response time: 592ms - IP: 192.168.189.103 - User: user_1031 - RequestID: 35clgpu0y6t +2025-06-18T14:40:48.481Z [DEBUG] user-service - POST /api/v1/orders - Status: 500 - Response time: 88ms - IP: 192.168.64.33 - User: user_1090 - RequestID: ykcsvhatz3 +2025-06-18T14:40:48.581Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 894ms - RequestID: xf5ohyck4rg +2025-06-18T14:40:48.681Z [TRACE] order-service - Operation: cache_hit - Processing time: 691ms - RequestID: hnzlbaqblsh +2025-06-18T14:40:48.781Z [DEBUG] user-service - POST /api/v1/payments - Status: 401 - Response time: 481ms - IP: 192.168.133.7 - User: user_1029 - RequestID: brwjeiwns9b +2025-06-18T14:40:48.881Z [TRACE] order-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.97.87 - RequestID: bsvh32zgzw +2025-06-18T14:40:48.981Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 782ms - IP: 192.168.144.38 - User: user_1083 - RequestID: hiuwfqwdixh +2025-06-18T14:40:49.081Z [TRACE] payment-service - Auth event: login_success - User: user_1083 - IP: 192.168.144.38 - RequestID: wzdshwjyvok +2025-06-18T14:40:49.181Z [INFO] user-service - Operation: payment_processed - Processing time: 481ms - RequestID: epwcnb51wmi +2025-06-18T14:40:49.281Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 75ms - Rows affected: 11 - RequestID: a9726j4arwh +2025-06-18T14:40:49.381Z [TRACE] notification-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.187.199 - RequestID: 51rlx72splu +2025-06-18T14:40:49.481Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 487ms - Rows affected: 2 - RequestID: scm8dlt578 +2025-06-18T14:40:49.581Z [TRACE] order-service - Database DELETE on products - Execution time: 144ms - Rows affected: 71 - RequestID: v0gvpgloryl +2025-06-18T14:40:49.681Z [TRACE] payment-service - Operation: email_sent - Processing time: 406ms - RequestID: m5n4jiiyrx +2025-06-18T14:40:49.781Z [DEBUG] order-service - Operation: payment_processed - Processing time: 356ms - RequestID: vd0bxzqweo +2025-06-18T14:40:49.881Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 137ms - RequestID: qw8ez5kxvh +2025-06-18T14:40:49.981Z [TRACE] order-service - Operation: order_created - Processing time: 989ms - RequestID: t5vkdr5xdl +2025-06-18T14:40:50.081Z [TRACE] inventory-service - Auth event: login_failed - User: user_1086 - IP: 192.168.1.152 - RequestID: utltilm8jd9 +2025-06-18T14:40:50.181Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 470ms - Rows affected: 4 - RequestID: pw71cryr09 +2025-06-18T14:40:50.281Z [TRACE] inventory-service - POST /api/v1/users - Status: 400 - Response time: 1699ms - IP: 192.168.227.77 - User: user_1091 - RequestID: mba5y3fzcas +2025-06-18T14:40:50.381Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 440ms - Rows affected: 2 - RequestID: 3qabho2qqv +2025-06-18T14:40:50.481Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 443ms - Rows affected: 70 - RequestID: k8uqjzhuy0p +2025-06-18T14:40:50.581Z [TRACE] auth-service - Database SELECT on users - Execution time: 339ms - Rows affected: 94 - RequestID: fo1z7714zyo +2025-06-18T14:40:50.681Z [DEBUG] notification-service - Auth event: password_change - User: user_1007 - IP: 192.168.158.144 - RequestID: 960xgghsn0o +2025-06-18T14:40:50.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.242.165 - RequestID: jitzwucfik +2025-06-18T14:40:50.881Z [INFO] payment-service - Database UPDATE on orders - Execution time: 221ms - Rows affected: 75 - RequestID: obldh4uco1e +2025-06-18T14:40:50.981Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 77ms - Rows affected: 14 - RequestID: n29xynxdby +2025-06-18T14:40:51.081Z [INFO] auth-service - DELETE /api/v1/orders - Status: 502 - Response time: 1067ms - IP: 192.168.32.38 - User: user_1004 - RequestID: 2dvx0f5u5fw +2025-06-18T14:40:51.181Z [DEBUG] auth-service - Auth event: login_failed - User: user_1036 - IP: 192.168.85.229 - RequestID: eigto633jki +2025-06-18T14:40:51.281Z [TRACE] order-service - Operation: notification_queued - Processing time: 981ms - RequestID: ll0ai0sfht7 +2025-06-18T14:40:51.381Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 201 - Response time: 444ms - IP: 192.168.11.60 - User: user_1018 - RequestID: ornf4hwplxb +2025-06-18T14:40:51.481Z [TRACE] notification-service - Auth event: login_success - User: user_1070 - IP: 192.168.68.158 - RequestID: cvcd682kywq +2025-06-18T14:40:51.581Z [TRACE] notification-service - Database DELETE on products - Execution time: 432ms - Rows affected: 62 - RequestID: qwbwqret6f +2025-06-18T14:40:51.681Z [INFO] order-service - PUT /api/v1/inventory - Status: 404 - Response time: 1672ms - IP: 192.168.144.38 - User: user_1070 - RequestID: 4bbu0e8wb5r +2025-06-18T14:40:51.781Z [TRACE] order-service - Database DELETE on orders - Execution time: 429ms - Rows affected: 36 - RequestID: 831e7276026 +2025-06-18T14:40:51.881Z [INFO] inventory-service - Database SELECT on payments - Execution time: 320ms - Rows affected: 92 - RequestID: xtkdd2hm2cb +2025-06-18T14:40:51.981Z [INFO] user-service - Database SELECT on payments - Execution time: 117ms - Rows affected: 25 - RequestID: yrp0ryha66 +2025-06-18T14:40:52.081Z [TRACE] auth-service - Auth event: password_change - User: user_1063 - IP: 192.168.28.146 - RequestID: r2kgru4sso +2025-06-18T14:40:52.181Z [TRACE] order-service - Operation: order_created - Processing time: 881ms - RequestID: 3wr1feg8dpj +2025-06-18T14:40:52.281Z [INFO] notification-service - Database UPDATE on users - Execution time: 178ms - Rows affected: 27 - RequestID: cy1mrdlr5we +2025-06-18T14:40:52.381Z [TRACE] order-service - Database INSERT on sessions - Execution time: 383ms - Rows affected: 31 - RequestID: 25w4cm302jk +2025-06-18T14:40:52.481Z [DEBUG] order-service - Database SELECT on users - Execution time: 37ms - Rows affected: 95 - RequestID: q5flfrh0628 +2025-06-18T14:40:52.581Z [DEBUG] user-service - Operation: cache_hit - Processing time: 65ms - RequestID: 7jic52oscpa +2025-06-18T14:40:52.681Z [INFO] inventory-service - PUT /api/v1/users - Status: 500 - Response time: 876ms - IP: 192.168.170.215 - User: user_1013 - RequestID: fw1w5mq7teu +2025-06-18T14:40:52.781Z [INFO] user-service - Auth event: login_failed - User: user_1030 - IP: 192.168.229.123 - RequestID: 2oyjzc59g1i +2025-06-18T14:40:52.881Z [TRACE] inventory-service - Operation: order_created - Processing time: 144ms - RequestID: yj1jbuevtxm +2025-06-18T14:40:52.981Z [INFO] order-service - GET /api/v1/payments - Status: 502 - Response time: 496ms - IP: 192.168.81.206 - User: user_1057 - RequestID: sq7852peni +2025-06-18T14:40:53.081Z [TRACE] order-service - Database INSERT on orders - Execution time: 236ms - Rows affected: 66 - RequestID: w4qfcc6587 +2025-06-18T14:40:53.181Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 6ms - Rows affected: 94 - RequestID: awwvyj1v5bd +2025-06-18T14:40:53.281Z [DEBUG] user-service - DELETE /api/v1/users - Status: 502 - Response time: 82ms - IP: 192.168.240.169 - User: user_1013 - RequestID: ib8avjc95da +2025-06-18T14:40:53.381Z [TRACE] payment-service - Database DELETE on payments - Execution time: 125ms - Rows affected: 89 - RequestID: klleh0bhc6 +2025-06-18T14:40:53.481Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 179ms - RequestID: g3pu9d33ga +2025-06-18T14:40:53.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.167.32 - RequestID: xwfu64lrpa +2025-06-18T14:40:53.681Z [INFO] order-service - DELETE /api/v1/users - Status: 201 - Response time: 633ms - IP: 192.168.79.116 - User: user_1015 - RequestID: kn24ff1hpvg +2025-06-18T14:40:53.781Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 502 - Response time: 965ms - IP: 192.168.13.72 - User: user_1097 - RequestID: d9vyrju43aw +2025-06-18T14:40:53.881Z [TRACE] order-service - PUT /api/v1/payments - Status: 200 - Response time: 1280ms - IP: 192.168.46.63 - User: user_1025 - RequestID: eooptj1d54l +2025-06-18T14:40:53.981Z [TRACE] user-service - Database UPDATE on orders - Execution time: 138ms - Rows affected: 63 - RequestID: umrzm1anok +2025-06-18T14:40:54.081Z [INFO] user-service - Operation: notification_queued - Processing time: 231ms - RequestID: w65wa7zof0k +2025-06-18T14:40:54.181Z [DEBUG] user-service - DELETE /api/v1/users - Status: 404 - Response time: 538ms - IP: 192.168.11.60 - User: user_1008 - RequestID: b7qiwe1sgdj +2025-06-18T14:40:54.281Z [TRACE] user-service - Operation: notification_queued - Processing time: 274ms - RequestID: 9lwceluq3gr +2025-06-18T14:40:54.381Z [INFO] user-service - Database SELECT on sessions - Execution time: 303ms - Rows affected: 17 - RequestID: p4lr834h1le +2025-06-18T14:40:54.481Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 477ms - Rows affected: 59 - RequestID: ggz214iv1sk +2025-06-18T14:40:54.581Z [INFO] order-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.68.128 - RequestID: yf2x2pt0gq +2025-06-18T14:40:54.681Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 147ms - Rows affected: 25 - RequestID: d1zmfqlj15n +2025-06-18T14:40:54.781Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 404 - Response time: 87ms - IP: 192.168.32.38 - User: user_1070 - RequestID: 3ku1gofmjo7 +2025-06-18T14:40:54.881Z [INFO] inventory-service - Auth event: login_success - User: user_1059 - IP: 192.168.227.77 - RequestID: ach4s7oipb +2025-06-18T14:40:54.981Z [TRACE] user-service - Operation: cache_hit - Processing time: 309ms - RequestID: zzmjbieeok +2025-06-18T14:40:55.081Z [DEBUG] inventory-service - Auth event: logout - User: user_1044 - IP: 192.168.10.184 - RequestID: fho3swnf16h +2025-06-18T14:40:55.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 779ms - RequestID: ek2qz2hiabq +2025-06-18T14:40:55.281Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 148ms - Rows affected: 38 - RequestID: 5soogl6fj5y +2025-06-18T14:40:55.381Z [TRACE] payment-service - Database SELECT on users - Execution time: 444ms - Rows affected: 35 - RequestID: 2lrxsyqs4a9 +2025-06-18T14:40:55.481Z [TRACE] user-service - Operation: cache_miss - Processing time: 820ms - RequestID: qrd82mrripi +2025-06-18T14:40:55.581Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 98ms - IP: 192.168.30.79 - User: user_1045 - RequestID: rpgcay7cwx +2025-06-18T14:40:55.681Z [INFO] order-service - POST /api/v1/orders - Status: 400 - Response time: 1384ms - IP: 192.168.13.72 - User: user_1093 - RequestID: y794fbxnccr +2025-06-18T14:40:55.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1041 - IP: 192.168.28.146 - RequestID: krnnoqd43eh +2025-06-18T14:40:55.881Z [INFO] payment-service - Database INSERT on users - Execution time: 453ms - Rows affected: 38 - RequestID: usccexw6fy +2025-06-18T14:40:55.981Z [DEBUG] order-service - Operation: payment_processed - Processing time: 877ms - RequestID: 63tcgso376s +2025-06-18T14:40:56.081Z [DEBUG] notification-service - POST /api/v1/orders - Status: 404 - Response time: 405ms - IP: 192.168.44.5 - User: user_1087 - RequestID: 7g4yoxaem98 +2025-06-18T14:40:56.181Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 503 - Response time: 1932ms - IP: 192.168.232.72 - User: user_1059 - RequestID: hqm3g53a5ct +2025-06-18T14:40:56.281Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 249ms - RequestID: ieq9ru8ehij +2025-06-18T14:40:56.381Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 649ms - RequestID: wprftlk31vo +2025-06-18T14:40:56.481Z [DEBUG] payment-service - Auth event: login_failed - User: user_1086 - IP: 192.168.10.184 - RequestID: xrfl2ffyasj +2025-06-18T14:40:56.581Z [INFO] order-service - PATCH /api/v1/users - Status: 400 - Response time: 816ms - IP: 192.168.159.94 - User: user_1032 - RequestID: xgbno6yxnlc +2025-06-18T14:40:56.681Z [TRACE] order-service - Database SELECT on orders - Execution time: 178ms - Rows affected: 1 - RequestID: sau1rrervb +2025-06-18T14:40:56.781Z [INFO] user-service - PATCH /api/v1/payments - Status: 201 - Response time: 1494ms - IP: 192.168.147.171 - User: user_1098 - RequestID: wwn90b9by3j +2025-06-18T14:40:56.881Z [DEBUG] order-service - GET /api/v1/orders - Status: 403 - Response time: 1850ms - IP: 192.168.10.184 - User: user_1031 - RequestID: f9wni4hjw6 +2025-06-18T14:40:56.981Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 500 - Response time: 1537ms - IP: 192.168.159.94 - User: user_1053 - RequestID: 19mbzw5wsc7 +2025-06-18T14:40:57.081Z [INFO] payment-service - Database SELECT on users - Execution time: 418ms - Rows affected: 97 - RequestID: 2s8kis585j5 +2025-06-18T14:40:57.181Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1067ms - IP: 192.168.232.72 - User: user_1020 - RequestID: dwj55c8h6u +2025-06-18T14:40:57.281Z [TRACE] user-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.141.100 - RequestID: g6hfyl17hr +2025-06-18T14:40:57.381Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 403 - Response time: 337ms - IP: 192.168.1.152 - User: user_1020 - RequestID: jcey8hq0mv +2025-06-18T14:40:57.481Z [TRACE] inventory-service - Operation: order_created - Processing time: 310ms - RequestID: dehtxz6360d +2025-06-18T14:40:57.581Z [INFO] payment-service - Auth event: logout - User: user_1008 - IP: 192.168.79.141 - RequestID: 3251hbdd82v +2025-06-18T14:40:57.681Z [TRACE] user-service - Database INSERT on orders - Execution time: 439ms - Rows affected: 21 - RequestID: 77ayrsreg0n +2025-06-18T14:40:57.781Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1638ms - IP: 192.168.187.199 - User: user_1095 - RequestID: jm9yus1cl1h +2025-06-18T14:40:57.881Z [INFO] order-service - Auth event: password_change - User: user_1038 - IP: 192.168.235.117 - RequestID: z1i1tq8ifsm +2025-06-18T14:40:57.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.194.41 - RequestID: mzlssbqoym +2025-06-18T14:40:58.081Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1563ms - IP: 192.168.211.72 - User: user_1097 - RequestID: pw6uqis01lc +2025-06-18T14:40:58.181Z [TRACE] auth-service - Database SELECT on orders - Execution time: 23ms - Rows affected: 79 - RequestID: c3eb0b2b63q +2025-06-18T14:40:58.281Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 403 - Response time: 233ms - IP: 192.168.97.87 - User: user_1032 - RequestID: 1o3p5jw57zf +2025-06-18T14:40:58.381Z [INFO] user-service - POST /api/v1/payments - Status: 503 - Response time: 1484ms - IP: 192.168.187.199 - User: user_1032 - RequestID: py9rs57jc6 +2025-06-18T14:40:58.481Z [DEBUG] order-service - Database SELECT on orders - Execution time: 374ms - Rows affected: 30 - RequestID: kerpc2vsrbn +2025-06-18T14:40:58.581Z [TRACE] order-service - Auth event: logout - User: user_1092 - IP: 192.168.240.169 - RequestID: a1p5qjx0kec +2025-06-18T14:40:58.681Z [INFO] user-service - Auth event: logout - User: user_1038 - IP: 192.168.13.72 - RequestID: eipd2gnhhov +2025-06-18T14:40:58.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 446ms - RequestID: 3wwpjij2p8u +2025-06-18T14:40:58.881Z [TRACE] user-service - Auth event: logout - User: user_1080 - IP: 192.168.85.229 - RequestID: 1drebuebfxd +2025-06-18T14:40:58.981Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 144ms - Rows affected: 2 - RequestID: nb7xrsdrclc +2025-06-18T14:40:59.081Z [DEBUG] notification-service - Operation: email_sent - Processing time: 795ms - RequestID: 3ky5jmu46te +2025-06-18T14:40:59.181Z [INFO] payment-service - Database DELETE on sessions - Execution time: 196ms - Rows affected: 96 - RequestID: 1ked2ipuacb +2025-06-18T14:40:59.281Z [TRACE] auth-service - Auth event: login_success - User: user_1001 - IP: 192.168.113.218 - RequestID: nhaoakdu9rk +2025-06-18T14:40:59.381Z [TRACE] order-service - Database DELETE on sessions - Execution time: 241ms - Rows affected: 62 - RequestID: xsft9d4g0ck +2025-06-18T14:40:59.481Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 201 - Response time: 1539ms - IP: 192.168.14.77 - User: user_1022 - RequestID: y8ezzp2d3j9 +2025-06-18T14:40:59.581Z [TRACE] payment-service - Database SELECT on products - Execution time: 131ms - Rows affected: 30 - RequestID: cz2hhngaqwh +2025-06-18T14:40:59.681Z [INFO] order-service - Auth event: login_failed - User: user_1034 - IP: 192.168.187.199 - RequestID: 08q6wxstw9xy +2025-06-18T14:40:59.781Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 465ms - Rows affected: 7 - RequestID: 3a2mk5geqm9 +2025-06-18T14:40:59.881Z [TRACE] notification-service - Operation: email_sent - Processing time: 534ms - RequestID: fvru93d1qxh +2025-06-18T14:40:59.981Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 594ms - RequestID: zgcl7v6xl9n +2025-06-18T14:41:00.081Z [TRACE] order-service - Operation: payment_processed - Processing time: 899ms - RequestID: iyn27okowl +2025-06-18T14:41:00.181Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1680ms - IP: 192.168.10.184 - User: user_1068 - RequestID: f7b0gur9os +2025-06-18T14:41:00.281Z [INFO] payment-service - Database DELETE on payments - Execution time: 401ms - Rows affected: 63 - RequestID: xug2tcs061d +2025-06-18T14:41:00.381Z [INFO] user-service - Operation: cache_miss - Processing time: 1023ms - RequestID: dwnoimbftme +2025-06-18T14:41:00.481Z [INFO] order-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1973ms - IP: 192.168.31.117 - User: user_1006 - RequestID: j4xf8s36t9h +2025-06-18T14:41:00.581Z [INFO] order-service - PATCH /api/v1/users - Status: 500 - Response time: 657ms - IP: 192.168.144.38 - User: user_1046 - RequestID: qvyzxqb5us +2025-06-18T14:41:00.681Z [INFO] payment-service - Operation: order_created - Processing time: 181ms - RequestID: 6mnkbkkizqw +2025-06-18T14:41:00.781Z [TRACE] payment-service - Auth event: logout - User: user_1081 - IP: 192.168.141.100 - RequestID: bdct2m7oq9 +2025-06-18T14:41:00.881Z [INFO] order-service - Database SELECT on users - Execution time: 183ms - Rows affected: 48 - RequestID: todnk4klbn +2025-06-18T14:41:00.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.170.215 - RequestID: 7maaudvyws7 +2025-06-18T14:41:01.081Z [INFO] order-service - Auth event: login_failed - User: user_1050 - IP: 192.168.240.169 - RequestID: qfxjqozd6bb +2025-06-18T14:41:01.181Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 392ms - IP: 192.168.11.60 - User: user_1004 - RequestID: ix6nzflwqod +2025-06-18T14:41:01.281Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 508ms - RequestID: edb8ckaxbr +2025-06-18T14:41:01.381Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 503 - Response time: 441ms - IP: 192.168.28.146 - User: user_1059 - RequestID: jivkias3jdi +2025-06-18T14:41:01.481Z [TRACE] notification-service - Database INSERT on products - Execution time: 198ms - Rows affected: 61 - RequestID: 4pk3hmwpeq5 +2025-06-18T14:41:01.581Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 201 - Response time: 222ms - IP: 192.168.235.117 - User: user_1063 - RequestID: 12qrervitpb +2025-06-18T14:41:01.681Z [INFO] order-service - Operation: order_created - Processing time: 530ms - RequestID: rx2mjpq5qs +2025-06-18T14:41:01.781Z [DEBUG] user-service - Auth event: login_success - User: user_1044 - IP: 192.168.81.206 - RequestID: pr2d97prv6 +2025-06-18T14:41:01.881Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 295ms - Rows affected: 82 - RequestID: 40tdbmklpr7 +2025-06-18T14:41:01.981Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 778ms - RequestID: 8f1ybhm8c1n +2025-06-18T14:41:02.081Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 820ms - RequestID: m6ubutf4lun +2025-06-18T14:41:02.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1023 - IP: 192.168.79.141 - RequestID: qnxc6ivpqai +2025-06-18T14:41:02.281Z [INFO] payment-service - POST /api/v1/orders - Status: 503 - Response time: 328ms - IP: 192.168.196.226 - User: user_1058 - RequestID: ehrhitv8wl4 +2025-06-18T14:41:02.381Z [INFO] notification-service - Auth event: logout - User: user_1021 - IP: 192.168.81.206 - RequestID: r7vzkmtoh7i +2025-06-18T14:41:02.481Z [DEBUG] user-service - Database UPDATE on products - Execution time: 487ms - Rows affected: 29 - RequestID: 2gye23crehx +2025-06-18T14:41:02.581Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1958ms - IP: 192.168.235.117 - User: user_1049 - RequestID: lqk6pxmm7e +2025-06-18T14:41:02.681Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 449ms - Rows affected: 42 - RequestID: 55b1puoe1r +2025-06-18T14:41:02.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1020 - IP: 192.168.46.63 - RequestID: 5dkseyml97 +2025-06-18T14:41:02.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1078 - IP: 192.168.79.116 - RequestID: ywn3kfvs2vd +2025-06-18T14:41:02.981Z [INFO] user-service - POST /api/v1/users - Status: 200 - Response time: 653ms - IP: 192.168.36.218 - User: user_1042 - RequestID: vna93axvnbn +2025-06-18T14:41:03.081Z [TRACE] order-service - Operation: cache_miss - Processing time: 945ms - RequestID: 7n7bix8c832 +2025-06-18T14:41:03.181Z [DEBUG] notification-service - Operation: email_sent - Processing time: 375ms - RequestID: qujae7vknm +2025-06-18T14:41:03.281Z [DEBUG] notification-service - Database DELETE on products - Execution time: 248ms - Rows affected: 63 - RequestID: c9hdykqfkq +2025-06-18T14:41:03.381Z [INFO] auth-service - Auth event: login_success - User: user_1041 - IP: 192.168.196.226 - RequestID: waqb68tgm3g +2025-06-18T14:41:03.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.196.226 - RequestID: khf8wd785aa +2025-06-18T14:41:03.581Z [DEBUG] payment-service - GET /api/v1/orders - Status: 201 - Response time: 1025ms - IP: 192.168.44.5 - User: user_1066 - RequestID: 29k9eiiv4ou +2025-06-18T14:41:03.681Z [DEBUG] user-service - Operation: cache_miss - Processing time: 664ms - RequestID: i5l27ilrc1g +2025-06-18T14:41:03.781Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1581ms - IP: 192.168.174.114 - User: user_1017 - RequestID: 7xf6a3ia4pm +2025-06-18T14:41:03.881Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 503 - Response time: 1994ms - IP: 192.168.158.144 - User: user_1023 - RequestID: 7jlxp15a92h +2025-06-18T14:41:03.981Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 152ms - Rows affected: 22 - RequestID: u4e9namrcil +2025-06-18T14:41:04.081Z [INFO] payment-service - Operation: email_sent - Processing time: 586ms - RequestID: wdjv33l92n +2025-06-18T14:41:04.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 931ms - RequestID: zkifbt06c9i +2025-06-18T14:41:04.281Z [DEBUG] notification-service - Auth event: logout - User: user_1075 - IP: 192.168.170.215 - RequestID: 5g42rwux8ok +2025-06-18T14:41:04.381Z [DEBUG] user-service - Database UPDATE on products - Execution time: 350ms - Rows affected: 19 - RequestID: w1hibbfc36m +2025-06-18T14:41:04.481Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 804ms - RequestID: ndzfvh1fbv +2025-06-18T14:41:04.581Z [INFO] payment-service - Operation: webhook_sent - Processing time: 859ms - RequestID: boo63zy6fre +2025-06-18T14:41:04.681Z [INFO] auth-service - Operation: order_created - Processing time: 488ms - RequestID: 4hpnttdmpii +2025-06-18T14:41:04.781Z [DEBUG] payment-service - Database INSERT on users - Execution time: 492ms - Rows affected: 89 - RequestID: g6uub9mvsw +2025-06-18T14:41:04.881Z [DEBUG] user-service - Operation: cache_miss - Processing time: 177ms - RequestID: vzpny3wyd9s +2025-06-18T14:41:04.981Z [DEBUG] notification-service - Auth event: password_change - User: user_1073 - IP: 192.168.104.37 - RequestID: lmc6xq0cw3p +2025-06-18T14:41:05.081Z [TRACE] user-service - Database SELECT on products - Execution time: 412ms - Rows affected: 86 - RequestID: jjwzxodtynn +2025-06-18T14:41:05.181Z [INFO] inventory-service - Auth event: login_failed - User: user_1079 - IP: 192.168.30.79 - RequestID: eujpaq8t4le +2025-06-18T14:41:05.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.81.206 - RequestID: yo5mwmdo3s +2025-06-18T14:41:05.381Z [INFO] auth-service - Operation: cache_miss - Processing time: 80ms - RequestID: j6nx59btj67 +2025-06-18T14:41:05.481Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 365ms - Rows affected: 77 - RequestID: o038y4pakw +2025-06-18T14:41:05.581Z [INFO] order-service - Operation: cache_miss - Processing time: 725ms - RequestID: 33lo41juk9r +2025-06-18T14:41:05.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 398ms - RequestID: 5ur6hfyglkb +2025-06-18T14:41:05.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 659ms - RequestID: fhyrpjscle +2025-06-18T14:41:05.881Z [INFO] payment-service - Auth event: login_success - User: user_1092 - IP: 192.168.30.79 - RequestID: k6drcrbec8f +2025-06-18T14:41:05.981Z [INFO] inventory-service - Database DELETE on products - Execution time: 436ms - Rows affected: 15 - RequestID: 8kv91xw6kna +2025-06-18T14:41:06.081Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 320ms - RequestID: wlfej47uobs +2025-06-18T14:41:06.181Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 401 - Response time: 1830ms - IP: 192.168.227.77 - User: user_1059 - RequestID: b1rm8jasd0k +2025-06-18T14:41:06.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.32.38 - RequestID: g5kkdqdjmmc +2025-06-18T14:41:06.381Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 404 - Response time: 1701ms - IP: 192.168.232.72 - User: user_1064 - RequestID: 16uwpn5b8vd +2025-06-18T14:41:06.481Z [INFO] auth-service - POST /api/v1/orders - Status: 401 - Response time: 1780ms - IP: 192.168.33.76 - User: user_1063 - RequestID: f3v2uzn9s59 +2025-06-18T14:41:06.581Z [TRACE] order-service - Auth event: logout - User: user_1069 - IP: 192.168.97.87 - RequestID: hgq6wcwl1fs +2025-06-18T14:41:06.681Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 228ms - IP: 192.168.97.87 - User: user_1047 - RequestID: u2t41r99xre +2025-06-18T14:41:06.781Z [INFO] order-service - Operation: order_created - Processing time: 454ms - RequestID: hoieeej5gxu +2025-06-18T14:41:06.881Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 219ms - Rows affected: 23 - RequestID: 7eww0l72ieh +2025-06-18T14:41:06.981Z [TRACE] payment-service - Operation: cache_miss - Processing time: 635ms - RequestID: wdwe8ijo4dt +2025-06-18T14:41:07.081Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 84ms - RequestID: 1sqb84gq8wy +2025-06-18T14:41:07.181Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 576ms - IP: 192.168.181.225 - User: user_1083 - RequestID: rorabefp2 +2025-06-18T14:41:07.281Z [DEBUG] payment-service - GET /api/v1/orders - Status: 200 - Response time: 1121ms - IP: 192.168.53.133 - User: user_1009 - RequestID: hji718vreyb +2025-06-18T14:41:07.381Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 771ms - RequestID: 02h4t1xcrmno +2025-06-18T14:41:07.481Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 954ms - RequestID: zcfsnxbciw +2025-06-18T14:41:07.581Z [INFO] user-service - Operation: cache_miss - Processing time: 877ms - RequestID: y6s8v6v5hy +2025-06-18T14:41:07.681Z [TRACE] inventory-service - Database INSERT on products - Execution time: 454ms - Rows affected: 30 - RequestID: rf6n4987qh9 +2025-06-18T14:41:07.781Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 241ms - Rows affected: 53 - RequestID: ap4yjv08sbt +2025-06-18T14:41:07.881Z [INFO] user-service - Auth event: password_change - User: user_1067 - IP: 192.168.194.41 - RequestID: u2mcmna1cof +2025-06-18T14:41:07.981Z [INFO] auth-service - Auth event: login_failed - User: user_1036 - IP: 192.168.247.134 - RequestID: m5eiqwl43rn +2025-06-18T14:41:08.081Z [TRACE] order-service - Operation: notification_queued - Processing time: 596ms - RequestID: qrayuq6qo59 +2025-06-18T14:41:08.181Z [DEBUG] user-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.174.114 - RequestID: dgqfyfjghr +2025-06-18T14:41:08.281Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 837ms - RequestID: 41btls7id0w +2025-06-18T14:41:08.381Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 112ms - RequestID: 2y26qrvzxnq +2025-06-18T14:41:08.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 585ms - RequestID: epsrylo1tap +2025-06-18T14:41:08.581Z [TRACE] auth-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.100.240 - RequestID: mitmgvxrx5s +2025-06-18T14:41:08.681Z [INFO] order-service - Operation: inventory_updated - Processing time: 495ms - RequestID: g1w43jeqc6h +2025-06-18T14:41:08.781Z [INFO] notification-service - PATCH /api/v1/users - Status: 502 - Response time: 1502ms - IP: 192.168.187.199 - User: user_1089 - RequestID: 29gy97ob64h +2025-06-18T14:41:08.881Z [TRACE] auth-service - Database SELECT on products - Execution time: 63ms - Rows affected: 22 - RequestID: z51ekix87g +2025-06-18T14:41:08.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.181.225 - RequestID: jcnqt5fqag +2025-06-18T14:41:09.081Z [INFO] inventory-service - Auth event: login_success - User: user_1025 - IP: 192.168.36.218 - RequestID: lvp2nvae4uq +2025-06-18T14:41:09.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.189.103 - RequestID: daaacq37j4i +2025-06-18T14:41:09.281Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 201 - Response time: 451ms - IP: 192.168.79.141 - User: user_1065 - RequestID: qwl44fys3ca +2025-06-18T14:41:09.381Z [INFO] payment-service - PATCH /api/v1/payments - Status: 400 - Response time: 499ms - IP: 192.168.11.60 - User: user_1000 - RequestID: cz0engakpa +2025-06-18T14:41:09.481Z [TRACE] notification-service - GET /api/v1/inventory - Status: 404 - Response time: 1785ms - IP: 192.168.33.76 - User: user_1054 - RequestID: ltdlxyxenco +2025-06-18T14:41:09.581Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 903ms - RequestID: td9kko31f4 +2025-06-18T14:41:09.681Z [TRACE] user-service - Database INSERT on payments - Execution time: 374ms - Rows affected: 91 - RequestID: yuesofb8s8k +2025-06-18T14:41:09.781Z [TRACE] notification-service - GET /api/v1/users - Status: 400 - Response time: 1550ms - IP: 192.168.240.169 - User: user_1028 - RequestID: eefwgob6me +2025-06-18T14:41:09.881Z [TRACE] notification-service - Auth event: logout - User: user_1040 - IP: 192.168.28.146 - RequestID: b24pmutlvie +2025-06-18T14:41:09.981Z [TRACE] payment-service - GET /api/v1/payments - Status: 201 - Response time: 622ms - IP: 192.168.85.229 - User: user_1008 - RequestID: 0mv5yyos7np +2025-06-18T14:41:10.081Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 1029ms - RequestID: azrdzkjcmbw +2025-06-18T14:41:10.181Z [TRACE] order-service - PATCH /api/v1/payments - Status: 404 - Response time: 784ms - IP: 192.168.32.38 - User: user_1042 - RequestID: fqtycwaeukp +2025-06-18T14:41:10.281Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 403 - Response time: 275ms - IP: 192.168.235.117 - User: user_1046 - RequestID: 39jksm72687 +2025-06-18T14:41:10.381Z [INFO] payment-service - PATCH /api/v1/payments - Status: 401 - Response time: 970ms - IP: 192.168.240.169 - User: user_1037 - RequestID: ddr9f6xm0yd +2025-06-18T14:41:10.481Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1595ms - IP: 192.168.79.116 - User: user_1017 - RequestID: zpibb9ix83s +2025-06-18T14:41:10.581Z [TRACE] auth-service - Database DELETE on products - Execution time: 357ms - Rows affected: 43 - RequestID: 0ezju43cksb7 +2025-06-18T14:41:10.681Z [INFO] order-service - Operation: inventory_updated - Processing time: 378ms - RequestID: 47ou1bu9uc6 +2025-06-18T14:41:10.781Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 503 - Response time: 371ms - IP: 192.168.144.38 - User: user_1065 - RequestID: y0rckk64ii +2025-06-18T14:41:10.881Z [INFO] inventory-service - Auth event: login_success - User: user_1043 - IP: 192.168.32.38 - RequestID: 9r80r6ave2d +2025-06-18T14:41:10.981Z [TRACE] notification-service - Database INSERT on orders - Execution time: 369ms - Rows affected: 77 - RequestID: o4ltru3eo3 +2025-06-18T14:41:11.081Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 401 - Response time: 1564ms - IP: 192.168.113.218 - User: user_1030 - RequestID: qjwr9umbqeq +2025-06-18T14:41:11.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1008 - IP: 192.168.141.100 - RequestID: nsimx2nawqg +2025-06-18T14:41:11.281Z [INFO] order-service - Database UPDATE on payments - Execution time: 266ms - Rows affected: 21 - RequestID: sff28iy9d8o +2025-06-18T14:41:11.381Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 455ms - Rows affected: 14 - RequestID: nxorbco6qv +2025-06-18T14:41:11.481Z [INFO] notification-service - Operation: email_sent - Processing time: 899ms - RequestID: u6vkx7g1h7 +2025-06-18T14:41:11.581Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 253ms - Rows affected: 84 - RequestID: r270rw1zsd +2025-06-18T14:41:11.681Z [TRACE] payment-service - Auth event: password_change - User: user_1060 - IP: 192.168.187.199 - RequestID: 0a1ft22q1nrw +2025-06-18T14:41:11.781Z [DEBUG] notification-service - Auth event: logout - User: user_1075 - IP: 192.168.44.5 - RequestID: 6y6dst7rtgy +2025-06-18T14:41:11.881Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 257ms - Rows affected: 22 - RequestID: 6ajezrdecxh +2025-06-18T14:41:11.981Z [DEBUG] user-service - Operation: cache_hit - Processing time: 749ms - RequestID: 35vehrus1ip +2025-06-18T14:41:12.081Z [INFO] payment-service - PATCH /api/v1/payments - Status: 400 - Response time: 1139ms - IP: 192.168.227.233 - User: user_1003 - RequestID: cnyyya91qno +2025-06-18T14:41:12.181Z [TRACE] payment-service - Database SELECT on products - Execution time: 242ms - Rows affected: 93 - RequestID: dq918qpvuw7 +2025-06-18T14:41:12.281Z [DEBUG] order-service - Database SELECT on products - Execution time: 171ms - Rows affected: 33 - RequestID: vefc4u3eq7 +2025-06-18T14:41:12.381Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 500 - Response time: 1271ms - IP: 192.168.187.199 - User: user_1028 - RequestID: lr36jylw11 +2025-06-18T14:41:12.481Z [TRACE] notification-service - Operation: order_created - Processing time: 421ms - RequestID: vv5vmpb7tyo +2025-06-18T14:41:12.581Z [TRACE] notification-service - GET /api/v1/auth/login - Status: 503 - Response time: 578ms - IP: 192.168.28.146 - User: user_1067 - RequestID: kijsgrspov +2025-06-18T14:41:12.681Z [INFO] notification-service - Auth event: password_change - User: user_1096 - IP: 192.168.113.218 - RequestID: g3qyyz8tb9a +2025-06-18T14:41:12.781Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 166ms - Rows affected: 50 - RequestID: cnffonu35u +2025-06-18T14:41:12.881Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 133ms - RequestID: r2r95ftizyp +2025-06-18T14:41:12.981Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 778ms - IP: 192.168.14.77 - User: user_1007 - RequestID: d5az3iu5877 +2025-06-18T14:41:13.081Z [TRACE] notification-service - Auth event: login_success - User: user_1078 - IP: 192.168.194.41 - RequestID: et0orxm8m5 +2025-06-18T14:41:13.181Z [DEBUG] order-service - Operation: cache_miss - Processing time: 752ms - RequestID: vlsvyh18te +2025-06-18T14:41:13.281Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 983ms - RequestID: cn43ekpukr7 +2025-06-18T14:41:13.381Z [INFO] payment-service - Auth event: password_change - User: user_1090 - IP: 192.168.13.72 - RequestID: oylrnxdgttm +2025-06-18T14:41:13.481Z [DEBUG] order-service - Operation: email_sent - Processing time: 155ms - RequestID: 7nmqc4skq9h +2025-06-18T14:41:13.581Z [INFO] user-service - Operation: cache_miss - Processing time: 188ms - RequestID: pvx8r7lhrj +2025-06-18T14:41:13.681Z [INFO] auth-service - POST /api/v1/users - Status: 201 - Response time: 1873ms - IP: 192.168.13.72 - User: user_1047 - RequestID: dewlqtjzkvj +2025-06-18T14:41:13.781Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 403 - Response time: 1230ms - IP: 192.168.187.199 - User: user_1019 - RequestID: sr90lezddan +2025-06-18T14:41:13.881Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 288ms - Rows affected: 80 - RequestID: 58ho1ht9yi9 +2025-06-18T14:41:13.981Z [DEBUG] payment-service - GET /api/v1/payments - Status: 404 - Response time: 973ms - IP: 192.168.113.218 - User: user_1040 - RequestID: 54vq9xy6xp +2025-06-18T14:41:14.081Z [TRACE] order-service - Operation: order_created - Processing time: 348ms - RequestID: od5qqh333le +2025-06-18T14:41:14.181Z [INFO] user-service - Operation: webhook_sent - Processing time: 536ms - RequestID: figbl01dtf +2025-06-18T14:41:14.281Z [INFO] notification-service - Database SELECT on sessions - Execution time: 245ms - Rows affected: 83 - RequestID: cxfj9312mq6 +2025-06-18T14:41:14.381Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 401 - Response time: 902ms - IP: 192.168.53.133 - User: user_1006 - RequestID: 2qb2eoj28bh +2025-06-18T14:41:14.481Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 76ms - Rows affected: 67 - RequestID: 7z9yvjvlgwi +2025-06-18T14:41:14.581Z [INFO] order-service - GET /api/v1/auth/logout - Status: 404 - Response time: 437ms - IP: 192.168.100.240 - User: user_1060 - RequestID: jkzaovc2vij +2025-06-18T14:41:14.681Z [INFO] auth-service - Auth event: login_success - User: user_1092 - IP: 192.168.247.134 - RequestID: wu08clzzck +2025-06-18T14:41:14.781Z [DEBUG] notification-service - Auth event: login_success - User: user_1067 - IP: 192.168.247.134 - RequestID: 8ra1l7s0d24 +2025-06-18T14:41:14.881Z [INFO] inventory-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.46.63 - RequestID: ecsbj5ig0xn +2025-06-18T14:41:14.981Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 503 - Response time: 841ms - IP: 192.168.189.103 - User: user_1045 - RequestID: g00m8o177w +2025-06-18T14:41:15.081Z [TRACE] order-service - Database SELECT on orders - Execution time: 312ms - Rows affected: 49 - RequestID: i0sxqsipthi +2025-06-18T14:41:15.181Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 325ms - Rows affected: 55 - RequestID: jdeo7y9t50k +2025-06-18T14:41:15.281Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 411ms - IP: 192.168.79.143 - User: user_1026 - RequestID: da8ihqutmp8 +2025-06-18T14:41:15.381Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 198ms - Rows affected: 85 - RequestID: 99g32fduphr +2025-06-18T14:41:15.481Z [TRACE] user-service - Database SELECT on products - Execution time: 479ms - Rows affected: 0 - RequestID: 3ckmegp9ryl +2025-06-18T14:41:15.581Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1879ms - IP: 192.168.79.141 - User: user_1093 - RequestID: ukddhpq60i +2025-06-18T14:41:15.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1081 - IP: 192.168.100.240 - RequestID: 7qejijk1sbr +2025-06-18T14:41:15.781Z [DEBUG] order-service - Auth event: login_success - User: user_1068 - IP: 192.168.174.114 - RequestID: 5rxrco3g52r +2025-06-18T14:41:15.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 136ms - RequestID: a7hjcsfr8im +2025-06-18T14:41:15.981Z [TRACE] user-service - Database INSERT on products - Execution time: 264ms - Rows affected: 92 - RequestID: 7ncn0e7zo35 +2025-06-18T14:41:16.081Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 478ms - RequestID: zbteyq3kaa +2025-06-18T14:41:16.181Z [TRACE] payment-service - Database DELETE on products - Execution time: 312ms - Rows affected: 85 - RequestID: 6htqxiw7228 +2025-06-18T14:41:16.281Z [INFO] payment-service - Database INSERT on users - Execution time: 282ms - Rows affected: 64 - RequestID: d0do31wz34 +2025-06-18T14:41:16.381Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 927ms - RequestID: 1n2vd2bvso1 +2025-06-18T14:41:16.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1022 - IP: 192.168.97.87 - RequestID: ay404e3gf6b +2025-06-18T14:41:16.581Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 256ms - RequestID: vlcolunsva +2025-06-18T14:41:16.681Z [INFO] user-service - PATCH /api/v1/orders - Status: 400 - Response time: 291ms - IP: 192.168.159.94 - User: user_1099 - RequestID: 4wtr4g33f +2025-06-18T14:41:16.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.138.123 - RequestID: qgmfjbqpmss +2025-06-18T14:41:16.881Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 500 - Response time: 624ms - IP: 192.168.68.128 - User: user_1030 - RequestID: o8oknmqgmh +2025-06-18T14:41:16.981Z [TRACE] user-service - Auth event: login_success - User: user_1039 - IP: 192.168.64.33 - RequestID: y1hyu717z2s +2025-06-18T14:41:17.081Z [INFO] inventory-service - Database UPDATE on products - Execution time: 388ms - Rows affected: 3 - RequestID: mui63kr8w2b +2025-06-18T14:41:17.181Z [TRACE] payment-service - Database SELECT on payments - Execution time: 39ms - Rows affected: 69 - RequestID: osg654e8tkl +2025-06-18T14:41:17.281Z [DEBUG] order-service - Operation: cache_miss - Processing time: 611ms - RequestID: cquait2uixo +2025-06-18T14:41:17.381Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 647ms - IP: 192.168.232.72 - User: user_1002 - RequestID: 7mf760jfzvo +2025-06-18T14:41:17.481Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 200ms - RequestID: h9pcpxsatwu +2025-06-18T14:41:17.581Z [INFO] payment-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.85.229 - RequestID: bj1w6ob699 +2025-06-18T14:41:17.681Z [INFO] user-service - Operation: notification_queued - Processing time: 499ms - RequestID: vw5216nzu5l +2025-06-18T14:41:17.781Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 201 - Response time: 1444ms - IP: 192.168.181.225 - User: user_1027 - RequestID: g8wjv08lp7c +2025-06-18T14:41:17.881Z [INFO] inventory-service - Operation: email_sent - Processing time: 78ms - RequestID: 85o31l5rbah +2025-06-18T14:41:17.981Z [INFO] user-service - Operation: order_created - Processing time: 610ms - RequestID: t7uk0udo16p +2025-06-18T14:41:18.081Z [TRACE] inventory-service - Auth event: logout - User: user_1080 - IP: 192.168.64.33 - RequestID: l69h65itv5 +2025-06-18T14:41:18.181Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 115ms - RequestID: qyz0legd7y +2025-06-18T14:41:18.281Z [INFO] inventory-service - Database INSERT on payments - Execution time: 344ms - Rows affected: 6 - RequestID: ahmehhzwlvl +2025-06-18T14:41:18.381Z [DEBUG] notification-service - Operation: order_created - Processing time: 258ms - RequestID: 149ad7nwlxba +2025-06-18T14:41:18.481Z [INFO] auth-service - Auth event: logout - User: user_1030 - IP: 192.168.28.146 - RequestID: wwex2r5v6f +2025-06-18T14:41:18.581Z [INFO] auth-service - Auth event: password_change - User: user_1010 - IP: 192.168.79.141 - RequestID: ysolgyeezo +2025-06-18T14:41:18.681Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 403 - Response time: 36ms - IP: 192.168.232.72 - User: user_1082 - RequestID: br3y19a2m4 +2025-06-18T14:41:18.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 717ms - RequestID: b1cft5rx3oo +2025-06-18T14:41:18.881Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 151ms - IP: 192.168.147.171 - User: user_1082 - RequestID: r2guwi18d5e +2025-06-18T14:41:18.981Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 400 - Response time: 451ms - IP: 192.168.240.169 - User: user_1018 - RequestID: 8gysh8ttsou +2025-06-18T14:41:19.081Z [INFO] notification-service - Operation: notification_queued - Processing time: 462ms - RequestID: bn63gz3c31o +2025-06-18T14:41:19.181Z [INFO] payment-service - Database INSERT on users - Execution time: 434ms - Rows affected: 38 - RequestID: mk18352m9sq +2025-06-18T14:41:19.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.104.37 - RequestID: ywf5pyps4rk +2025-06-18T14:41:19.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 343ms - RequestID: 2xnxz7rtumn +2025-06-18T14:41:19.481Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 312ms - Rows affected: 53 - RequestID: myhmmli9qrg +2025-06-18T14:41:19.581Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 631ms - IP: 192.168.13.72 - User: user_1064 - RequestID: 6aiy17ypqzm +2025-06-18T14:41:19.681Z [INFO] user-service - Operation: inventory_updated - Processing time: 749ms - RequestID: aoun6qvk6su +2025-06-18T14:41:19.781Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 166ms - Rows affected: 49 - RequestID: yox5s9p9ktd +2025-06-18T14:41:19.881Z [TRACE] order-service - Database DELETE on orders - Execution time: 258ms - Rows affected: 87 - RequestID: 0xl15j7p5ibn +2025-06-18T14:41:19.981Z [DEBUG] user-service - Auth event: login_failed - User: user_1014 - IP: 192.168.97.87 - RequestID: 3o07dvnos8t +2025-06-18T14:41:20.081Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 519ms - IP: 192.168.81.206 - User: user_1040 - RequestID: ho5cu0v46ja +2025-06-18T14:41:20.181Z [INFO] auth-service - Auth event: login_failed - User: user_1096 - IP: 192.168.189.103 - RequestID: 0xakpkppwneg +2025-06-18T14:41:20.281Z [INFO] inventory-service - Auth event: logout - User: user_1016 - IP: 192.168.147.171 - RequestID: 62c13yi54qx +2025-06-18T14:41:20.381Z [INFO] user-service - Operation: cache_miss - Processing time: 525ms - RequestID: gnwmpb740nc +2025-06-18T14:41:20.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 558ms - RequestID: fyo87sm4bhe +2025-06-18T14:41:20.581Z [DEBUG] auth-service - Operation: email_sent - Processing time: 987ms - RequestID: cymap6jp8uc +2025-06-18T14:41:20.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 68ms - RequestID: 6s1fpwrc9ii +2025-06-18T14:41:20.781Z [INFO] payment-service - Database SELECT on payments - Execution time: 124ms - Rows affected: 72 - RequestID: 7dtxbnbga6n +2025-06-18T14:41:20.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.229.123 - RequestID: dx9u3vt63o +2025-06-18T14:41:20.981Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 767ms - RequestID: cqbm5wr4wqw +2025-06-18T14:41:21.081Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 11ms - Rows affected: 18 - RequestID: tse8m569smk +2025-06-18T14:41:21.181Z [INFO] order-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.13.72 - RequestID: l3vfs9tqw5k +2025-06-18T14:41:21.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 567ms - RequestID: pwb9w4e3ynr +2025-06-18T14:41:21.381Z [DEBUG] payment-service - Auth event: logout - User: user_1005 - IP: 192.168.141.100 - RequestID: ctpkk0bu8hh +2025-06-18T14:41:21.481Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1363ms - IP: 192.168.189.103 - User: user_1066 - RequestID: t6zm40e9zr +2025-06-18T14:41:21.581Z [TRACE] payment-service - GET /api/v1/orders - Status: 502 - Response time: 1708ms - IP: 192.168.187.199 - User: user_1079 - RequestID: 1vieewn7xj3 +2025-06-18T14:41:21.681Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 403 - Response time: 128ms - IP: 192.168.64.33 - User: user_1071 - RequestID: ihjszxuftub +2025-06-18T14:41:21.781Z [INFO] auth-service - Database SELECT on sessions - Execution time: 102ms - Rows affected: 25 - RequestID: gc7bn85iceg +2025-06-18T14:41:21.881Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 404 - Response time: 95ms - IP: 192.168.227.233 - User: user_1007 - RequestID: yhfj4bqw1c +2025-06-18T14:41:21.981Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1409ms - IP: 192.168.44.5 - User: user_1059 - RequestID: rpnzwdv9eza +2025-06-18T14:41:22.081Z [DEBUG] user-service - Auth event: login_success - User: user_1026 - IP: 192.168.10.184 - RequestID: xxk8jx4j9cs +2025-06-18T14:41:22.181Z [TRACE] notification-service - Auth event: login_success - User: user_1056 - IP: 192.168.68.128 - RequestID: p04ta1ksyic +2025-06-18T14:41:22.281Z [DEBUG] payment-service - Database SELECT on products - Execution time: 226ms - Rows affected: 56 - RequestID: t6g94hnk5ii +2025-06-18T14:41:22.381Z [INFO] user-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.170.215 - RequestID: gyj2a4mm89n +2025-06-18T14:41:22.481Z [DEBUG] auth-service - Database DELETE on users - Execution time: 461ms - Rows affected: 9 - RequestID: jw7taoy835k +2025-06-18T14:41:22.581Z [TRACE] order-service - Database UPDATE on payments - Execution time: 230ms - Rows affected: 95 - RequestID: l78zmae8fij +2025-06-18T14:41:22.681Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 124ms - Rows affected: 87 - RequestID: 3edfutm5fe6 +2025-06-18T14:41:22.781Z [DEBUG] auth-service - POST /api/v1/orders - Status: 503 - Response time: 148ms - IP: 192.168.242.165 - User: user_1081 - RequestID: 9lm2m596o3j +2025-06-18T14:41:22.881Z [DEBUG] user-service - PUT /api/v1/orders - Status: 500 - Response time: 33ms - IP: 192.168.68.128 - User: user_1074 - RequestID: gph5o1ryedu +2025-06-18T14:41:22.981Z [DEBUG] user-service - Database DELETE on users - Execution time: 296ms - Rows affected: 71 - RequestID: r0b4bdp5d8h +2025-06-18T14:41:23.081Z [DEBUG] order-service - Operation: order_created - Processing time: 253ms - RequestID: mbbxrjfpkb +2025-06-18T14:41:23.181Z [INFO] user-service - Auth event: login_failed - User: user_1019 - IP: 192.168.44.5 - RequestID: pcxmzjscs3 +2025-06-18T14:41:23.281Z [INFO] auth-service - Auth event: password_change - User: user_1004 - IP: 192.168.46.63 - RequestID: wsdaclzy88m +2025-06-18T14:41:23.381Z [INFO] inventory-service - Database UPDATE on products - Execution time: 388ms - Rows affected: 35 - RequestID: fzmdsfmow7 +2025-06-18T14:41:23.481Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 453ms - Rows affected: 38 - RequestID: gl2w41ko40r +2025-06-18T14:41:23.581Z [TRACE] order-service - Database SELECT on payments - Execution time: 125ms - Rows affected: 50 - RequestID: mpfi8cwtvu +2025-06-18T14:41:23.681Z [TRACE] order-service - Auth event: login_success - User: user_1001 - IP: 192.168.147.171 - RequestID: qh27tiikjba +2025-06-18T14:41:23.781Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1346ms - IP: 192.168.79.141 - User: user_1077 - RequestID: 8ssiqc57mr4 +2025-06-18T14:41:23.881Z [TRACE] auth-service - POST /api/v1/users - Status: 201 - Response time: 752ms - IP: 192.168.194.41 - User: user_1004 - RequestID: v1ac0jdxa5p +2025-06-18T14:41:23.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.158.144 - RequestID: 40gm8nt1w7z +2025-06-18T14:41:24.081Z [INFO] payment-service - Database UPDATE on payments - Execution time: 197ms - Rows affected: 97 - RequestID: zsa28vhtvwh +2025-06-18T14:41:24.181Z [TRACE] notification-service - POST /api/v1/users - Status: 200 - Response time: 1594ms - IP: 192.168.10.184 - User: user_1096 - RequestID: klpchvpk438 +2025-06-18T14:41:24.281Z [DEBUG] payment-service - PUT /api/v1/users - Status: 403 - Response time: 1032ms - IP: 192.168.81.206 - User: user_1000 - RequestID: 8vxg9ytn7pl +2025-06-18T14:41:24.381Z [TRACE] user-service - Auth event: login_success - User: user_1023 - IP: 192.168.211.72 - RequestID: 48judj9yuy +2025-06-18T14:41:24.481Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1037ms - IP: 192.168.28.146 - User: user_1030 - RequestID: ietc6tmlql9 +2025-06-18T14:41:24.581Z [TRACE] inventory-service - Auth event: login_success - User: user_1032 - IP: 192.168.133.7 - RequestID: cwrm9b3zwfw +2025-06-18T14:41:24.681Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 51ms - Rows affected: 89 - RequestID: x0igcabo41 +2025-06-18T14:41:24.781Z [INFO] inventory-service - Operation: cache_hit - Processing time: 429ms - RequestID: mfqtslfex3f +2025-06-18T14:41:24.881Z [INFO] payment-service - Auth event: logout - User: user_1014 - IP: 192.168.158.144 - RequestID: c2azvydyoro +2025-06-18T14:41:24.981Z [INFO] auth-service - POST /api/v1/inventory - Status: 403 - Response time: 556ms - IP: 192.168.104.37 - User: user_1007 - RequestID: lxyxv99y8 +2025-06-18T14:41:25.081Z [INFO] auth-service - Auth event: login_failed - User: user_1097 - IP: 192.168.232.72 - RequestID: 9h9dmq44tdj +2025-06-18T14:41:25.181Z [TRACE] notification-service - Operation: cache_hit - Processing time: 679ms - RequestID: mfq9u8uprid +2025-06-18T14:41:25.281Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 91ms - Rows affected: 34 - RequestID: j2whcuouys +2025-06-18T14:41:25.381Z [INFO] auth-service - GET /api/v1/orders - Status: 201 - Response time: 10ms - IP: 192.168.141.100 - User: user_1062 - RequestID: kgq7evdu7m +2025-06-18T14:41:25.481Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 331ms - IP: 192.168.64.33 - User: user_1093 - RequestID: iy18l0vmg +2025-06-18T14:41:25.581Z [TRACE] order-service - Database UPDATE on orders - Execution time: 74ms - Rows affected: 18 - RequestID: 4e3kcyvatdp +2025-06-18T14:41:25.681Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 204ms - Rows affected: 51 - RequestID: 2yjjmu88bzl +2025-06-18T14:41:25.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.44.5 - RequestID: 35mfn60cavw +2025-06-18T14:41:25.881Z [INFO] notification-service - DELETE /api/v1/orders - Status: 403 - Response time: 897ms - IP: 192.168.187.199 - User: user_1015 - RequestID: 93s6uy4m57n +2025-06-18T14:41:25.981Z [DEBUG] auth-service - Auth event: logout - User: user_1094 - IP: 192.168.113.218 - RequestID: xel9rfn1g1e +2025-06-18T14:41:26.081Z [INFO] auth-service - Auth event: login_success - User: user_1068 - IP: 192.168.79.116 - RequestID: v1krbapzdzl +2025-06-18T14:41:26.181Z [INFO] order-service - Database SELECT on users - Execution time: 98ms - Rows affected: 55 - RequestID: vca6x7kywj +2025-06-18T14:41:26.281Z [INFO] user-service - Database UPDATE on products - Execution time: 147ms - Rows affected: 55 - RequestID: miniapt128n +2025-06-18T14:41:26.381Z [INFO] user-service - GET /api/v1/users - Status: 500 - Response time: 1276ms - IP: 192.168.53.133 - User: user_1043 - RequestID: bjblj2m2nw6 +2025-06-18T14:41:26.481Z [INFO] inventory-service - Auth event: password_change - User: user_1042 - IP: 192.168.181.225 - RequestID: qfxw50482l +2025-06-18T14:41:26.581Z [DEBUG] auth-service - Auth event: logout - User: user_1080 - IP: 192.168.232.72 - RequestID: k72ft6cwsv +2025-06-18T14:41:26.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 168ms - RequestID: 3wl2mey7ce +2025-06-18T14:41:26.781Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 485ms - Rows affected: 44 - RequestID: mi4nb15vtvi +2025-06-18T14:41:26.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.30.79 - RequestID: ql1v7czhuyd +2025-06-18T14:41:26.981Z [TRACE] user-service - Operation: cache_hit - Processing time: 859ms - RequestID: cambb4gmc7s +2025-06-18T14:41:27.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.53.133 - RequestID: 997qgo0uegf +2025-06-18T14:41:27.181Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 111ms - Rows affected: 93 - RequestID: 6z5mwqifzek +2025-06-18T14:41:27.281Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 431ms - Rows affected: 64 - RequestID: 6zen5wutter +2025-06-18T14:41:27.381Z [TRACE] payment-service - Auth event: login_success - User: user_1048 - IP: 192.168.227.77 - RequestID: a93yx51g85f +2025-06-18T14:41:27.481Z [INFO] notification-service - Auth event: login_failed - User: user_1074 - IP: 192.168.79.116 - RequestID: 19cttpoof6l +2025-06-18T14:41:27.581Z [INFO] user-service - Auth event: logout - User: user_1097 - IP: 192.168.141.100 - RequestID: i11hmg33rw +2025-06-18T14:41:27.681Z [INFO] user-service - POST /api/v1/orders - Status: 400 - Response time: 970ms - IP: 192.168.1.152 - User: user_1093 - RequestID: y2dy85o8wrl +2025-06-18T14:41:27.781Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 205ms - IP: 192.168.14.77 - User: user_1030 - RequestID: gznxw7f9nm +2025-06-18T14:41:27.881Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 202ms - Rows affected: 63 - RequestID: 66c42ihrg75 +2025-06-18T14:41:27.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1006 - IP: 192.168.13.72 - RequestID: jaa7zmbmx1 +2025-06-18T14:41:28.081Z [INFO] notification-service - PUT /api/v1/users - Status: 200 - Response time: 830ms - IP: 192.168.14.77 - User: user_1009 - RequestID: p5ulrnvxo6k +2025-06-18T14:41:28.181Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 199ms - RequestID: fgxngqn395w +2025-06-18T14:41:28.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.167.32 - RequestID: g19jwkwnhig +2025-06-18T14:41:28.381Z [INFO] auth-service - Database INSERT on orders - Execution time: 385ms - Rows affected: 33 - RequestID: 8dw8jcsi2ir +2025-06-18T14:41:28.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 375ms - RequestID: 56jkc2dvyd6 +2025-06-18T14:41:28.581Z [INFO] auth-service - PATCH /api/v1/users - Status: 502 - Response time: 1630ms - IP: 192.168.33.76 - User: user_1045 - RequestID: 2u81vdsibxq +2025-06-18T14:41:28.681Z [DEBUG] payment-service - Auth event: login_success - User: user_1030 - IP: 192.168.85.229 - RequestID: w20lhs2chc +2025-06-18T14:41:28.781Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 299ms - RequestID: 0m13mos9vc3q +2025-06-18T14:41:28.881Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1145ms - IP: 192.168.113.218 - User: user_1004 - RequestID: k8ul3w3z7t +2025-06-18T14:41:28.981Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 491ms - Rows affected: 26 - RequestID: 9iayvoh81ph +2025-06-18T14:41:29.081Z [DEBUG] auth-service - Auth event: login_success - User: user_1010 - IP: 192.168.227.233 - RequestID: 53n0hbwck9s +2025-06-18T14:41:29.181Z [INFO] inventory-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.1.152 - RequestID: h1xi6hk4q2e +2025-06-18T14:41:29.281Z [INFO] payment-service - Database INSERT on products - Execution time: 173ms - Rows affected: 80 - RequestID: k8peis1i3s8 +2025-06-18T14:41:29.381Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 317ms - RequestID: d0kqbtf7z2v +2025-06-18T14:41:29.481Z [TRACE] payment-service - PUT /api/v1/orders - Status: 500 - Response time: 1082ms - IP: 192.168.187.199 - User: user_1052 - RequestID: qyyahezztic +2025-06-18T14:41:29.581Z [TRACE] notification-service - Operation: notification_queued - Processing time: 211ms - RequestID: 06w6qlwzot09 +2025-06-18T14:41:29.681Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 200 - Response time: 57ms - IP: 192.168.81.206 - User: user_1082 - RequestID: esozhcyzsk +2025-06-18T14:41:29.781Z [INFO] auth-service - Operation: order_created - Processing time: 60ms - RequestID: o7z4iiu5dy +2025-06-18T14:41:29.881Z [INFO] auth-service - Auth event: login_failed - User: user_1009 - IP: 192.168.196.226 - RequestID: vhr0k1c1tpf +2025-06-18T14:41:29.981Z [INFO] auth-service - Auth event: login_success - User: user_1019 - IP: 192.168.138.123 - RequestID: xttfhj8fyt +2025-06-18T14:41:30.081Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 200 - Response time: 199ms - IP: 192.168.159.94 - User: user_1074 - RequestID: zmwebo801b +2025-06-18T14:41:30.181Z [INFO] notification-service - Auth event: login_failed - User: user_1007 - IP: 192.168.232.72 - RequestID: hplqrqwivid +2025-06-18T14:41:30.281Z [INFO] auth-service - PUT /api/v1/orders - Status: 502 - Response time: 1429ms - IP: 192.168.227.233 - User: user_1018 - RequestID: 4yc6zd1mtqe +2025-06-18T14:41:30.381Z [INFO] inventory-service - Operation: email_sent - Processing time: 130ms - RequestID: 9927e0xqqkb +2025-06-18T14:41:30.481Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 314ms - Rows affected: 57 - RequestID: 0gpu8m6as2xm +2025-06-18T14:41:30.581Z [INFO] order-service - Database INSERT on users - Execution time: 31ms - Rows affected: 7 - RequestID: e4bemcf913a +2025-06-18T14:41:30.681Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 421ms - Rows affected: 94 - RequestID: 4ryanqo8waw +2025-06-18T14:41:30.781Z [DEBUG] user-service - Auth event: login_failed - User: user_1051 - IP: 192.168.97.87 - RequestID: gkldlaeb8y5 +2025-06-18T14:41:30.881Z [TRACE] auth-service - Operation: order_created - Processing time: 262ms - RequestID: fiws3506wz +2025-06-18T14:41:30.981Z [TRACE] auth-service - Auth event: logout - User: user_1046 - IP: 192.168.13.72 - RequestID: ipacu2slm0k +2025-06-18T14:41:31.081Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 220ms - Rows affected: 91 - RequestID: 3oz28bowf2 +2025-06-18T14:41:31.181Z [TRACE] notification-service - Auth event: login_failed - User: user_1023 - IP: 192.168.189.103 - RequestID: s6ztyym0z1c +2025-06-18T14:41:31.281Z [INFO] user-service - Database INSERT on users - Execution time: 237ms - Rows affected: 5 - RequestID: e72avbbk429 +2025-06-18T14:41:31.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.104.37 - RequestID: lsthr0ta3j9 +2025-06-18T14:41:31.481Z [INFO] user-service - GET /api/v1/orders - Status: 502 - Response time: 1670ms - IP: 192.168.36.218 - User: user_1005 - RequestID: 8fjpstjjtpf +2025-06-18T14:41:31.581Z [TRACE] notification-service - GET /api/v1/orders - Status: 401 - Response time: 386ms - IP: 192.168.79.141 - User: user_1077 - RequestID: edc79wyyn5 +2025-06-18T14:41:31.681Z [TRACE] order-service - Auth event: login_success - User: user_1057 - IP: 192.168.170.215 - RequestID: e0hxomolklt +2025-06-18T14:41:31.781Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 726ms - RequestID: 7c0jw4sowy +2025-06-18T14:41:31.881Z [TRACE] order-service - Operation: webhook_sent - Processing time: 480ms - RequestID: m8ipig0u0wi +2025-06-18T14:41:31.981Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 1014ms - RequestID: 96di3gbp0kn +2025-06-18T14:41:32.081Z [INFO] order-service - Operation: order_created - Processing time: 790ms - RequestID: pb0g360qce +2025-06-18T14:41:32.181Z [INFO] payment-service - Database DELETE on payments - Execution time: 255ms - Rows affected: 33 - RequestID: l5ywxq6u3wn +2025-06-18T14:41:32.281Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 901ms - RequestID: by9npsnz1im +2025-06-18T14:41:32.381Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 500 - Response time: 1446ms - IP: 192.168.187.199 - User: user_1024 - RequestID: xvi07fpbu59 +2025-06-18T14:41:32.481Z [TRACE] order-service - Auth event: password_change - User: user_1015 - IP: 192.168.229.123 - RequestID: w8sgw3z6k2o +2025-06-18T14:41:32.581Z [DEBUG] order-service - Database INSERT on users - Execution time: 242ms - Rows affected: 24 - RequestID: td6pbqy8ozo +2025-06-18T14:41:32.681Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1941ms - IP: 192.168.158.144 - User: user_1021 - RequestID: llhbj3o1eza +2025-06-18T14:41:32.781Z [DEBUG] payment-service - PUT /api/v1/users - Status: 400 - Response time: 1227ms - IP: 192.168.97.87 - User: user_1019 - RequestID: 4k1ljsl1ej9 +2025-06-18T14:41:32.881Z [TRACE] order-service - Auth event: login_failed - User: user_1011 - IP: 192.168.36.218 - RequestID: 4vsjtib1c9 +2025-06-18T14:41:32.981Z [INFO] inventory-service - Auth event: login_failed - User: user_1092 - IP: 192.168.242.165 - RequestID: m5kwsqmadsl +2025-06-18T14:41:33.081Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1117ms - IP: 192.168.240.169 - User: user_1075 - RequestID: q7wq1snichr +2025-06-18T14:41:33.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 198ms - RequestID: d461mbj4su7 +2025-06-18T14:41:33.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.13.72 - RequestID: t6fahm2dng +2025-06-18T14:41:33.381Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 476ms - RequestID: 37t68i47ysd +2025-06-18T14:41:33.481Z [INFO] auth-service - GET /api/v1/auth/login - Status: 403 - Response time: 240ms - IP: 192.168.170.215 - User: user_1084 - RequestID: nx5vxi52t6 +2025-06-18T14:41:33.581Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 938ms - RequestID: 9z20b3a90df +2025-06-18T14:41:33.681Z [DEBUG] payment-service - Database INSERT on products - Execution time: 104ms - Rows affected: 32 - RequestID: daccvu5fh48 +2025-06-18T14:41:33.781Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 753ms - RequestID: a6bo9fflkrf +2025-06-18T14:41:33.881Z [INFO] payment-service - Operation: inventory_updated - Processing time: 935ms - RequestID: n36ujjedgnj +2025-06-18T14:41:33.981Z [TRACE] order-service - Database SELECT on products - Execution time: 252ms - Rows affected: 38 - RequestID: 7tre9u8067s +2025-06-18T14:41:34.081Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 743ms - RequestID: 7gs5slnd9xn +2025-06-18T14:41:34.181Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 400 - Response time: 1012ms - IP: 192.168.44.5 - User: user_1063 - RequestID: wxwjvxu3yg +2025-06-18T14:41:34.281Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 107ms - Rows affected: 90 - RequestID: eaaxjjce6i +2025-06-18T14:41:34.381Z [INFO] user-service - GET /api/v1/orders - Status: 503 - Response time: 684ms - IP: 192.168.44.5 - User: user_1001 - RequestID: tz8ogn3d1x +2025-06-18T14:41:34.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 427ms - RequestID: aqdmk0lrzg +2025-06-18T14:41:34.581Z [TRACE] notification-service - PATCH /api/v1/users - Status: 400 - Response time: 677ms - IP: 192.168.194.41 - User: user_1070 - RequestID: hlnhfwaaxam +2025-06-18T14:41:34.681Z [INFO] payment-service - Database DELETE on products - Execution time: 52ms - Rows affected: 35 - RequestID: golrz380xx +2025-06-18T14:41:34.781Z [INFO] auth-service - Database SELECT on orders - Execution time: 108ms - Rows affected: 5 - RequestID: r1nqix7ou8g +2025-06-18T14:41:34.881Z [INFO] user-service - Database UPDATE on sessions - Execution time: 471ms - Rows affected: 74 - RequestID: lcgfmgcr24 +2025-06-18T14:41:34.981Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 400 - Response time: 122ms - IP: 192.168.174.114 - User: user_1007 - RequestID: 47570l6ns5 +2025-06-18T14:41:35.081Z [INFO] payment-service - Auth event: password_change - User: user_1002 - IP: 192.168.240.169 - RequestID: k1644n1u5ce +2025-06-18T14:41:35.181Z [INFO] inventory-service - POST /api/v1/users - Status: 403 - Response time: 1756ms - IP: 192.168.113.218 - User: user_1039 - RequestID: 8v3jrd7i36f +2025-06-18T14:41:35.281Z [INFO] inventory-service - Database DELETE on payments - Execution time: 376ms - Rows affected: 89 - RequestID: cxtt9xzxwf9 +2025-06-18T14:41:35.381Z [TRACE] notification-service - Operation: cache_hit - Processing time: 872ms - RequestID: 6ygqcbjpfl7 +2025-06-18T14:41:35.481Z [TRACE] user-service - Operation: order_created - Processing time: 338ms - RequestID: 8e47edna1z +2025-06-18T14:41:35.581Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.229.123 - RequestID: q8zgbb88a6 +2025-06-18T14:41:35.681Z [INFO] notification-service - POST /api/v1/payments - Status: 200 - Response time: 802ms - IP: 192.168.240.169 - User: user_1049 - RequestID: 2bsdfqn22el +2025-06-18T14:41:35.781Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1168ms - IP: 192.168.229.123 - User: user_1071 - RequestID: 9chk80ynru +2025-06-18T14:41:35.881Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 401 - Response time: 1754ms - IP: 192.168.227.233 - User: user_1051 - RequestID: jz6m5zm7raa +2025-06-18T14:41:35.981Z [INFO] auth-service - Database UPDATE on orders - Execution time: 299ms - Rows affected: 10 - RequestID: 22bbnaz7rfh +2025-06-18T14:41:36.081Z [TRACE] user-service - Operation: cache_hit - Processing time: 360ms - RequestID: 99f1qiy6rps +2025-06-18T14:41:36.181Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 495ms - Rows affected: 50 - RequestID: kjm0pwijiur +2025-06-18T14:41:36.281Z [TRACE] auth-service - Auth event: login_success - User: user_1053 - IP: 192.168.227.77 - RequestID: l9t62k6s62 +2025-06-18T14:41:36.381Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 238ms - RequestID: 8qe7m5cchp2 +2025-06-18T14:41:36.481Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 503 - Response time: 687ms - IP: 192.168.189.103 - User: user_1017 - RequestID: vfgj25aped +2025-06-18T14:41:36.581Z [TRACE] notification-service - Operation: email_sent - Processing time: 796ms - RequestID: fx907ys9qnn +2025-06-18T14:41:36.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 696ms - RequestID: q0t6ulkwfnr +2025-06-18T14:41:36.781Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 182ms - RequestID: tx0d4d7bo5 +2025-06-18T14:41:36.881Z [INFO] payment-service - DELETE /api/v1/orders - Status: 400 - Response time: 1987ms - IP: 192.168.85.229 - User: user_1038 - RequestID: 9g9eukufsm9 +2025-06-18T14:41:36.981Z [INFO] auth-service - PUT /api/v1/inventory - Status: 503 - Response time: 2005ms - IP: 192.168.79.141 - User: user_1092 - RequestID: b35givljzkn +2025-06-18T14:41:37.081Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 582ms - RequestID: c1k47tr1ewk +2025-06-18T14:41:37.181Z [INFO] notification-service - PUT /api/v1/payments - Status: 401 - Response time: 1520ms - IP: 192.168.227.77 - User: user_1010 - RequestID: 6gyvj27jg75 +2025-06-18T14:41:37.281Z [INFO] user-service - GET /api/v1/inventory - Status: 201 - Response time: 318ms - IP: 192.168.11.60 - User: user_1068 - RequestID: 6ykshrl33z2 +2025-06-18T14:41:37.381Z [TRACE] payment-service - GET /api/v1/users - Status: 401 - Response time: 943ms - IP: 192.168.10.184 - User: user_1062 - RequestID: z1q7sfx3b0c +2025-06-18T14:41:37.481Z [TRACE] auth-service - PUT /api/v1/payments - Status: 403 - Response time: 100ms - IP: 192.168.79.141 - User: user_1004 - RequestID: gwsg6uj4st +2025-06-18T14:41:37.581Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 876ms - IP: 192.168.235.117 - User: user_1006 - RequestID: 1n7f6j9jvxi +2025-06-18T14:41:37.681Z [TRACE] user-service - Auth event: login_success - User: user_1079 - IP: 192.168.174.114 - RequestID: aljif21nkso +2025-06-18T14:41:37.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.85.229 - RequestID: 7ojawv1bn2o +2025-06-18T14:41:37.881Z [INFO] payment-service - POST /api/v1/auth/login - Status: 403 - Response time: 1261ms - IP: 192.168.174.114 - User: user_1048 - RequestID: xo7yhj2crvp +2025-06-18T14:41:37.981Z [TRACE] inventory-service - Auth event: login_success - User: user_1012 - IP: 192.168.235.117 - RequestID: g2wqevn5egk +2025-06-18T14:41:38.081Z [DEBUG] order-service - Operation: cache_hit - Processing time: 429ms - RequestID: czidpwijlfj +2025-06-18T14:41:38.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.53.133 - RequestID: vavkk045oz +2025-06-18T14:41:38.281Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1157ms - IP: 192.168.44.5 - User: user_1003 - RequestID: fnrvfq8to1v +2025-06-18T14:41:38.381Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1786ms - IP: 192.168.247.134 - User: user_1020 - RequestID: y5424odt3l +2025-06-18T14:41:38.481Z [TRACE] notification-service - Operation: notification_queued - Processing time: 830ms - RequestID: 2jqaw9aj45m +2025-06-18T14:41:38.581Z [INFO] user-service - Operation: webhook_sent - Processing time: 350ms - RequestID: r74yfbzsn2f +2025-06-18T14:41:38.681Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 433ms - RequestID: xv42y1xz16g +2025-06-18T14:41:38.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1029 - IP: 192.168.196.226 - RequestID: f8bswvmpvdg +2025-06-18T14:41:38.881Z [TRACE] user-service - GET /api/v1/orders - Status: 400 - Response time: 1375ms - IP: 192.168.174.114 - User: user_1042 - RequestID: hej70gu7gqa +2025-06-18T14:41:38.981Z [INFO] notification-service - PUT /api/v1/orders - Status: 403 - Response time: 1337ms - IP: 192.168.97.87 - User: user_1081 - RequestID: 65wegvs2mls +2025-06-18T14:41:39.081Z [DEBUG] order-service - Operation: cache_hit - Processing time: 855ms - RequestID: 7p7a6xe6qhf +2025-06-18T14:41:39.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.240.169 - RequestID: o4rrdp2cd9d +2025-06-18T14:41:39.281Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1483ms - IP: 192.168.13.72 - User: user_1098 - RequestID: lhw1cjrrnak +2025-06-18T14:41:39.381Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 95ms - Rows affected: 73 - RequestID: f75cd1jbtog +2025-06-18T14:41:39.481Z [INFO] auth-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.81.206 - RequestID: dsdagbbi3gj +2025-06-18T14:41:39.581Z [INFO] order-service - Auth event: password_change - User: user_1083 - IP: 192.168.11.60 - RequestID: gfm5pp7l43o +2025-06-18T14:41:39.681Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 478ms - Rows affected: 56 - RequestID: clanfbqlaii +2025-06-18T14:41:39.781Z [INFO] order-service - Database INSERT on payments - Execution time: 140ms - Rows affected: 85 - RequestID: akhb4x3vfma +2025-06-18T14:41:39.881Z [INFO] auth-service - Database INSERT on payments - Execution time: 149ms - Rows affected: 65 - RequestID: hxvpdmz89cn +2025-06-18T14:41:39.981Z [DEBUG] payment-service - Database INSERT on products - Execution time: 366ms - Rows affected: 71 - RequestID: lke9zhbxm8i +2025-06-18T14:41:40.081Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 281ms - RequestID: xu1urd0l03 +2025-06-18T14:41:40.181Z [INFO] payment-service - Operation: email_sent - Processing time: 806ms - RequestID: 5gqinpgvx8l +2025-06-18T14:41:40.281Z [INFO] auth-service - Operation: cache_miss - Processing time: 626ms - RequestID: 2421030wuzii +2025-06-18T14:41:40.381Z [INFO] payment-service - Auth event: login_success - User: user_1066 - IP: 192.168.10.184 - RequestID: 36ql7mvo2si +2025-06-18T14:41:40.481Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1899ms - IP: 192.168.10.184 - User: user_1024 - RequestID: rt2t8m42uj +2025-06-18T14:41:40.581Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 748ms - RequestID: d8c0qis14o4 +2025-06-18T14:41:40.681Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 32ms - Rows affected: 75 - RequestID: btqrwt2zaii +2025-06-18T14:41:40.781Z [INFO] inventory-service - Auth event: logout - User: user_1011 - IP: 192.168.79.143 - RequestID: m1798yp6m7a +2025-06-18T14:41:40.881Z [INFO] payment-service - Database SELECT on payments - Execution time: 113ms - Rows affected: 90 - RequestID: qp86n49v1em +2025-06-18T14:41:40.981Z [INFO] auth-service - Auth event: logout - User: user_1025 - IP: 192.168.68.158 - RequestID: uxrlsbumnxc +2025-06-18T14:41:41.081Z [INFO] user-service - Auth event: login_success - User: user_1031 - IP: 192.168.235.117 - RequestID: 3tiaoat5sm +2025-06-18T14:41:41.181Z [INFO] payment-service - GET /api/v1/inventory - Status: 200 - Response time: 1773ms - IP: 192.168.64.33 - User: user_1004 - RequestID: 1ibad8zauju +2025-06-18T14:41:41.281Z [DEBUG] payment-service - Auth event: password_change - User: user_1038 - IP: 192.168.36.218 - RequestID: 27r9t51xmz8 +2025-06-18T14:41:41.381Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 574ms - RequestID: lhtm3gsd1i +2025-06-18T14:41:41.481Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 341ms - Rows affected: 96 - RequestID: q91xb9yajj +2025-06-18T14:41:41.581Z [TRACE] notification-service - Database DELETE on payments - Execution time: 311ms - Rows affected: 19 - RequestID: k8du17lb3d +2025-06-18T14:41:41.681Z [INFO] payment-service - GET /api/v1/users - Status: 503 - Response time: 1061ms - IP: 192.168.242.165 - User: user_1015 - RequestID: wrvtdocy14c +2025-06-18T14:41:41.781Z [TRACE] notification-service - Auth event: password_change - User: user_1022 - IP: 192.168.30.79 - RequestID: 6h73ahau7na +2025-06-18T14:41:41.881Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 205ms - Rows affected: 15 - RequestID: gffkslor6hp +2025-06-18T14:41:41.981Z [DEBUG] notification-service - Auth event: logout - User: user_1038 - IP: 192.168.227.233 - RequestID: uii2h1boqxl +2025-06-18T14:41:42.081Z [TRACE] auth-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.181.225 - RequestID: js3u618mg2f +2025-06-18T14:41:42.181Z [INFO] payment-service - DELETE /api/v1/orders - Status: 200 - Response time: 674ms - IP: 192.168.1.152 - User: user_1093 - RequestID: bvl1ml5iz0k +2025-06-18T14:41:42.281Z [TRACE] notification-service - POST /api/v1/payments - Status: 403 - Response time: 666ms - IP: 192.168.158.144 - User: user_1006 - RequestID: n9zo2ao5kff +2025-06-18T14:41:42.381Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 985ms - RequestID: vt0ak9sjk3 +2025-06-18T14:41:42.481Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1537ms - IP: 192.168.144.38 - User: user_1038 - RequestID: ov2d894ie8e +2025-06-18T14:41:42.581Z [TRACE] order-service - PUT /api/v1/orders - Status: 400 - Response time: 796ms - IP: 192.168.247.134 - User: user_1032 - RequestID: 486pb489l4f +2025-06-18T14:41:42.681Z [TRACE] notification-service - Auth event: logout - User: user_1011 - IP: 192.168.1.152 - RequestID: xd8yua79i9c +2025-06-18T14:41:42.781Z [DEBUG] order-service - Operation: order_created - Processing time: 56ms - RequestID: zbh570rjecd +2025-06-18T14:41:42.881Z [INFO] user-service - DELETE /api/v1/users - Status: 400 - Response time: 1128ms - IP: 192.168.46.63 - User: user_1098 - RequestID: dfnmmcn2t27 +2025-06-18T14:41:42.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.211.72 - RequestID: 1ht5fip8gc6 +2025-06-18T14:41:43.081Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 1025ms - RequestID: o92id1w6rv +2025-06-18T14:41:43.181Z [TRACE] notification-service - Operation: order_created - Processing time: 427ms - RequestID: x349odx1ka +2025-06-18T14:41:43.281Z [TRACE] notification-service - Database INSERT on users - Execution time: 167ms - Rows affected: 22 - RequestID: h77xsyv8xl +2025-06-18T14:41:43.381Z [INFO] user-service - Operation: email_sent - Processing time: 477ms - RequestID: i1r62ivst5l +2025-06-18T14:41:43.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1021 - IP: 192.168.36.218 - RequestID: y6woz9sfq9 +2025-06-18T14:41:43.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.46.63 - RequestID: 31ymv2obkn4 +2025-06-18T14:41:43.681Z [INFO] user-service - DELETE /api/v1/payments - Status: 201 - Response time: 266ms - IP: 192.168.11.60 - User: user_1005 - RequestID: 44pt2h6gm3s +2025-06-18T14:41:43.781Z [TRACE] user-service - Database UPDATE on payments - Execution time: 457ms - Rows affected: 12 - RequestID: 8rs1wd1kpha +2025-06-18T14:41:43.881Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 5ms - Rows affected: 35 - RequestID: 0n5pyvu7olg +2025-06-18T14:41:43.981Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 401 - Response time: 729ms - IP: 192.168.79.141 - User: user_1077 - RequestID: lko7us0aqtd +2025-06-18T14:41:44.081Z [INFO] payment-service - Database UPDATE on payments - Execution time: 322ms - Rows affected: 63 - RequestID: 3go6a2v32nd +2025-06-18T14:41:44.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.81.206 - RequestID: 2s2c61u9tz6 +2025-06-18T14:41:44.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 585ms - RequestID: pq9ybusg0yq +2025-06-18T14:41:44.381Z [TRACE] auth-service - Database DELETE on orders - Execution time: 39ms - Rows affected: 44 - RequestID: z7052iw6z8p +2025-06-18T14:41:44.481Z [TRACE] notification-service - Auth event: logout - User: user_1024 - IP: 192.168.30.79 - RequestID: yjetb2jf3fi +2025-06-18T14:41:44.581Z [DEBUG] auth-service - Auth event: logout - User: user_1026 - IP: 192.168.44.5 - RequestID: 6unjw1otb6e +2025-06-18T14:41:44.681Z [INFO] inventory-service - Operation: cache_hit - Processing time: 901ms - RequestID: iikd5r8toha +2025-06-18T14:41:44.781Z [INFO] payment-service - Auth event: logout - User: user_1020 - IP: 192.168.44.5 - RequestID: szbbdxxml3 +2025-06-18T14:41:44.881Z [TRACE] payment-service - Auth event: login_success - User: user_1031 - IP: 192.168.113.218 - RequestID: aalegqistv +2025-06-18T14:41:44.981Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1947ms - IP: 192.168.97.87 - User: user_1021 - RequestID: 614c52eu684 +2025-06-18T14:41:45.081Z [TRACE] user-service - Database DELETE on products - Execution time: 438ms - Rows affected: 72 - RequestID: qbtdx9sapyk +2025-06-18T14:41:45.181Z [INFO] inventory-service - Database SELECT on payments - Execution time: 72ms - Rows affected: 72 - RequestID: vwf9cxllpm +2025-06-18T14:41:45.281Z [INFO] inventory-service - Database SELECT on products - Execution time: 145ms - Rows affected: 29 - RequestID: b51tmv1vvu +2025-06-18T14:41:45.381Z [TRACE] notification-service - GET /api/v1/payments - Status: 201 - Response time: 930ms - IP: 192.168.227.77 - User: user_1074 - RequestID: afq33agogsa +2025-06-18T14:41:45.481Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 894ms - RequestID: vh9qzy0dgx +2025-06-18T14:41:45.581Z [DEBUG] order-service - Auth event: login_failed - User: user_1061 - IP: 192.168.189.103 - RequestID: kftspbx5n6f +2025-06-18T14:41:45.681Z [TRACE] inventory-service - GET /api/v1/users - Status: 503 - Response time: 1179ms - IP: 192.168.68.128 - User: user_1027 - RequestID: d0svbcl8o3h +2025-06-18T14:41:45.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 743ms - RequestID: w84v94zuqs +2025-06-18T14:41:45.881Z [INFO] auth-service - Auth event: login_success - User: user_1051 - IP: 192.168.1.152 - RequestID: da20fxfzisf +2025-06-18T14:41:45.981Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 148ms - Rows affected: 67 - RequestID: 9edjgid36oe +2025-06-18T14:41:46.081Z [INFO] user-service - Database INSERT on users - Execution time: 298ms - Rows affected: 19 - RequestID: wi9lbe7vt6 +2025-06-18T14:41:46.181Z [DEBUG] order-service - Auth event: logout - User: user_1081 - IP: 192.168.68.128 - RequestID: g1n3nbojf6d +2025-06-18T14:41:46.281Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1179ms - IP: 192.168.100.240 - User: user_1077 - RequestID: olpty6vj8t +2025-06-18T14:41:46.381Z [INFO] inventory-service - PUT /api/v1/users - Status: 404 - Response time: 425ms - IP: 192.168.13.72 - User: user_1071 - RequestID: iksv0q25ics +2025-06-18T14:41:46.481Z [TRACE] order-service - Auth event: logout - User: user_1083 - IP: 192.168.247.134 - RequestID: n867ncyjn1o +2025-06-18T14:41:46.581Z [TRACE] auth-service - Database DELETE on users - Execution time: 471ms - Rows affected: 39 - RequestID: db8zopmeps5 +2025-06-18T14:41:46.681Z [TRACE] payment-service - Database DELETE on orders - Execution time: 174ms - Rows affected: 77 - RequestID: e69xfk2dclw +2025-06-18T14:41:46.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1039 - IP: 192.168.46.63 - RequestID: ryp0e6gm9c +2025-06-18T14:41:46.881Z [DEBUG] user-service - Operation: notification_queued - Processing time: 667ms - RequestID: 25xmqmsf912 +2025-06-18T14:41:46.981Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 502 - Response time: 1769ms - IP: 192.168.97.87 - User: user_1039 - RequestID: rstyq5yrti +2025-06-18T14:41:47.081Z [INFO] inventory-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.81.206 - RequestID: 05bad5k829ke +2025-06-18T14:41:47.181Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 941ms - RequestID: ju02z7ezr0a +2025-06-18T14:41:47.281Z [TRACE] payment-service - Auth event: password_change - User: user_1078 - IP: 192.168.113.218 - RequestID: ktdezx2iv0k +2025-06-18T14:41:47.381Z [TRACE] auth-service - GET /api/v1/inventory - Status: 400 - Response time: 931ms - IP: 192.168.104.37 - User: user_1090 - RequestID: ocxofyhsxx +2025-06-18T14:41:47.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.170.215 - RequestID: jaip67jy7gq +2025-06-18T14:41:47.581Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.100.240 - RequestID: qzwe9um16h +2025-06-18T14:41:47.681Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 500 - Response time: 605ms - IP: 192.168.85.229 - User: user_1080 - RequestID: 9uax4v6s0a +2025-06-18T14:41:47.781Z [DEBUG] order-service - Database INSERT on users - Execution time: 494ms - Rows affected: 42 - RequestID: 0uvlig82a19o +2025-06-18T14:41:47.881Z [DEBUG] user-service - Operation: cache_hit - Processing time: 77ms - RequestID: fkmbwcr8wp +2025-06-18T14:41:47.981Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1194ms - IP: 192.168.32.38 - User: user_1015 - RequestID: krhon9dg1zr +2025-06-18T14:41:48.081Z [INFO] user-service - Auth event: logout - User: user_1066 - IP: 192.168.13.72 - RequestID: 83m5p4lbs46 +2025-06-18T14:41:48.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.158.144 - RequestID: zx0cb9prcl +2025-06-18T14:41:48.281Z [TRACE] notification-service - DELETE /api/v1/users - Status: 401 - Response time: 887ms - IP: 192.168.159.94 - User: user_1006 - RequestID: xmpwxyie9n9 +2025-06-18T14:41:48.381Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.10.184 - RequestID: mr3rvvfqnba +2025-06-18T14:41:48.481Z [INFO] order-service - PUT /api/v1/users - Status: 400 - Response time: 888ms - IP: 192.168.79.143 - User: user_1065 - RequestID: 39ioi12qxmz +2025-06-18T14:41:48.581Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 157ms - RequestID: uypn8oinutj +2025-06-18T14:41:48.681Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 431ms - Rows affected: 9 - RequestID: 92d2sxdqtjg +2025-06-18T14:41:48.781Z [DEBUG] order-service - Operation: order_created - Processing time: 968ms - RequestID: zq8kcq0b1u +2025-06-18T14:41:48.881Z [TRACE] user-service - POST /api/v1/users - Status: 201 - Response time: 699ms - IP: 192.168.232.72 - User: user_1068 - RequestID: lhz3rkcfx5 +2025-06-18T14:41:48.981Z [TRACE] payment-service - Auth event: logout - User: user_1087 - IP: 192.168.189.103 - RequestID: yu9ga949g8 +2025-06-18T14:41:49.081Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 633ms - IP: 192.168.10.184 - User: user_1083 - RequestID: ilbuu74vxl +2025-06-18T14:41:49.181Z [DEBUG] order-service - Database INSERT on products - Execution time: 344ms - Rows affected: 98 - RequestID: sfm87mxuc5 +2025-06-18T14:41:49.281Z [TRACE] payment-service - Database SELECT on users - Execution time: 339ms - Rows affected: 99 - RequestID: 3x57vdk2v06 +2025-06-18T14:41:49.381Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1664ms - IP: 192.168.31.117 - User: user_1015 - RequestID: p0zynso80sn +2025-06-18T14:41:49.481Z [TRACE] notification-service - Auth event: login_success - User: user_1044 - IP: 192.168.227.233 - RequestID: fijhoo3a2lk +2025-06-18T14:41:49.581Z [INFO] inventory-service - Auth event: password_change - User: user_1030 - IP: 192.168.133.7 - RequestID: xq6b7rwpf5 +2025-06-18T14:41:49.681Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 479ms - Rows affected: 48 - RequestID: r1r2y4aa7g8 +2025-06-18T14:41:49.781Z [INFO] auth-service - PUT /api/v1/payments - Status: 201 - Response time: 907ms - IP: 192.168.46.63 - User: user_1051 - RequestID: 3r9t5mcjv22 +2025-06-18T14:41:49.881Z [TRACE] notification-service - Database SELECT on orders - Execution time: 251ms - Rows affected: 18 - RequestID: nro6r9z9xj +2025-06-18T14:41:49.981Z [TRACE] payment-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.189.103 - RequestID: tt86gc1pluh +2025-06-18T14:41:50.081Z [INFO] auth-service - Auth event: login_success - User: user_1043 - IP: 192.168.1.152 - RequestID: 4lgtohjqddg +2025-06-18T14:41:50.181Z [DEBUG] auth-service - Auth event: login_failed - User: user_1042 - IP: 192.168.227.233 - RequestID: rslkx9gs9xi +2025-06-18T14:41:50.281Z [DEBUG] order-service - Auth event: login_success - User: user_1079 - IP: 192.168.158.144 - RequestID: 4faegxx0e8d +2025-06-18T14:41:50.381Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 201 - Response time: 290ms - IP: 192.168.68.158 - User: user_1056 - RequestID: dyow1ygf3rt +2025-06-18T14:41:50.481Z [DEBUG] auth-service - PUT /api/v1/users - Status: 500 - Response time: 1813ms - IP: 192.168.147.171 - User: user_1024 - RequestID: 5ombtobn5c +2025-06-18T14:41:50.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 306ms - RequestID: 34kepagev4p +2025-06-18T14:41:50.681Z [INFO] auth-service - Database SELECT on sessions - Execution time: 263ms - Rows affected: 41 - RequestID: 2fbooqgvw93 +2025-06-18T14:41:50.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.79.116 - RequestID: 9qfj2zanru6 +2025-06-18T14:41:50.881Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1452ms - IP: 192.168.33.76 - User: user_1047 - RequestID: bxlmzkb6r0q +2025-06-18T14:41:50.981Z [DEBUG] payment-service - Auth event: login_failed - User: user_1024 - IP: 192.168.242.165 - RequestID: bq08d0b1r0u +2025-06-18T14:41:51.081Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.1.152 - RequestID: ilgoe5ku29 +2025-06-18T14:41:51.181Z [INFO] inventory-service - Operation: payment_processed - Processing time: 358ms - RequestID: mx4tjkflfp7 +2025-06-18T14:41:51.281Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 372ms - Rows affected: 56 - RequestID: 5qy8az2vaya +2025-06-18T14:41:51.381Z [DEBUG] notification-service - POST /api/v1/payments - Status: 400 - Response time: 414ms - IP: 192.168.79.143 - User: user_1017 - RequestID: ptp3lky59mc +2025-06-18T14:41:51.481Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 500 - Response time: 101ms - IP: 192.168.31.117 - User: user_1086 - RequestID: 1j0asod5uj7i +2025-06-18T14:41:51.581Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1786ms - IP: 192.168.247.134 - User: user_1038 - RequestID: syne0yxr6cc +2025-06-18T14:41:51.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 257ms - RequestID: dkc08w1wqec +2025-06-18T14:41:51.781Z [INFO] auth-service - Auth event: password_change - User: user_1056 - IP: 192.168.235.117 - RequestID: 1aw7sz16621 +2025-06-18T14:41:51.881Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 800ms - RequestID: bntz49w5h0i +2025-06-18T14:41:51.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.240.169 - RequestID: j860kawjia +2025-06-18T14:41:52.081Z [INFO] payment-service - Database DELETE on payments - Execution time: 45ms - Rows affected: 56 - RequestID: ddeypbvffg9 +2025-06-18T14:41:52.181Z [INFO] order-service - Operation: cache_miss - Processing time: 638ms - RequestID: e8ryqj3npk +2025-06-18T14:41:52.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.30.79 - RequestID: oboareg2w3i +2025-06-18T14:41:52.381Z [TRACE] order-service - Database INSERT on products - Execution time: 437ms - Rows affected: 40 - RequestID: 27sohmk6zfi +2025-06-18T14:41:52.481Z [DEBUG] notification-service - Operation: email_sent - Processing time: 118ms - RequestID: y9vagqpp0s +2025-06-18T14:41:52.581Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1141ms - IP: 192.168.232.72 - User: user_1070 - RequestID: igrv4uu5g7 +2025-06-18T14:41:52.681Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 500 - Response time: 875ms - IP: 192.168.104.37 - User: user_1007 - RequestID: bcm3zb2fcnr +2025-06-18T14:41:52.781Z [DEBUG] user-service - Operation: cache_miss - Processing time: 443ms - RequestID: s7vo15ew9a +2025-06-18T14:41:52.881Z [TRACE] order-service - Auth event: logout - User: user_1040 - IP: 192.168.28.146 - RequestID: wnddrxvsres +2025-06-18T14:41:52.981Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 404 - Response time: 613ms - IP: 192.168.28.146 - User: user_1037 - RequestID: o582ctxs0vm +2025-06-18T14:41:53.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.113.218 - RequestID: y5thhx9bgwj +2025-06-18T14:41:53.181Z [INFO] order-service - Database INSERT on products - Execution time: 30ms - Rows affected: 90 - RequestID: k0dl00k04k +2025-06-18T14:41:53.281Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 834ms - RequestID: y7cri0ex9i +2025-06-18T14:41:53.381Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 403 - Response time: 339ms - IP: 192.168.227.77 - User: user_1020 - RequestID: rhh7tevb59e +2025-06-18T14:41:53.481Z [TRACE] payment-service - Database DELETE on products - Execution time: 23ms - Rows affected: 94 - RequestID: gtsghtpxuk5 +2025-06-18T14:41:53.581Z [DEBUG] order-service - Database DELETE on products - Execution time: 41ms - Rows affected: 67 - RequestID: q3w6zktv8pb +2025-06-18T14:41:53.681Z [INFO] user-service - Database SELECT on sessions - Execution time: 156ms - Rows affected: 63 - RequestID: 95vj7yjg7df +2025-06-18T14:41:53.781Z [INFO] auth-service - PUT /api/v1/payments - Status: 200 - Response time: 1629ms - IP: 192.168.242.165 - User: user_1069 - RequestID: jewrl0cpwqk +2025-06-18T14:41:53.881Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1378ms - IP: 192.168.81.206 - User: user_1013 - RequestID: aufrt6tp9st +2025-06-18T14:41:53.981Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 723ms - IP: 192.168.33.76 - User: user_1075 - RequestID: 6b2n4t64fa +2025-06-18T14:41:54.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1023 - IP: 192.168.138.123 - RequestID: 95l8ngvspxe +2025-06-18T14:41:54.181Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 232ms - Rows affected: 61 - RequestID: n05zlndlyka +2025-06-18T14:41:54.281Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 54ms - Rows affected: 13 - RequestID: 6u5x3xmeidw +2025-06-18T14:41:54.381Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 960ms - RequestID: ssmtlzetr08 +2025-06-18T14:41:54.481Z [TRACE] auth-service - Auth event: login_failed - User: user_1020 - IP: 192.168.1.152 - RequestID: 4i6jucxflvo +2025-06-18T14:41:54.581Z [INFO] user-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.11.60 - RequestID: mdz20y2st +2025-06-18T14:41:54.681Z [INFO] order-service - Operation: inventory_updated - Processing time: 786ms - RequestID: 34cxdiqwu46 +2025-06-18T14:41:54.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.240.169 - RequestID: dpcbhgibno +2025-06-18T14:41:54.881Z [INFO] auth-service - Database SELECT on orders - Execution time: 178ms - Rows affected: 15 - RequestID: m475kjz3d +2025-06-18T14:41:54.981Z [INFO] order-service - Database UPDATE on users - Execution time: 214ms - Rows affected: 53 - RequestID: 909wrqehlu5 +2025-06-18T14:41:55.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.97.87 - RequestID: vwdifldoij9 +2025-06-18T14:41:55.181Z [DEBUG] order-service - Operation: payment_processed - Processing time: 350ms - RequestID: zxl6itcn48m +2025-06-18T14:41:55.281Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 278ms - IP: 192.168.170.215 - User: user_1081 - RequestID: 5zw0k5ejslc +2025-06-18T14:41:55.381Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 56ms - Rows affected: 63 - RequestID: qdx259io5ta +2025-06-18T14:41:55.481Z [TRACE] notification-service - Database SELECT on users - Execution time: 417ms - Rows affected: 5 - RequestID: 5yu4nax276p +2025-06-18T14:41:55.581Z [TRACE] auth-service - Operation: cache_miss - Processing time: 414ms - RequestID: ad2thdc0q4t +2025-06-18T14:41:55.681Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1011ms - IP: 192.168.194.41 - User: user_1004 - RequestID: j51pljc5dom +2025-06-18T14:41:55.781Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 201 - Response time: 815ms - IP: 192.168.68.128 - User: user_1005 - RequestID: ias8nay69w +2025-06-18T14:41:55.881Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 203ms - Rows affected: 45 - RequestID: 3l8k0j4kaq7 +2025-06-18T14:41:55.981Z [TRACE] inventory-service - Auth event: login_success - User: user_1006 - IP: 192.168.81.206 - RequestID: ethe9uqhbuq +2025-06-18T14:41:56.081Z [INFO] auth-service - Auth event: login_success - User: user_1019 - IP: 192.168.33.76 - RequestID: 95wb2mm3ce +2025-06-18T14:41:56.181Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 741ms - RequestID: u4ylp6f2hy +2025-06-18T14:41:56.281Z [TRACE] payment-service - GET /api/v1/orders - Status: 200 - Response time: 774ms - IP: 192.168.68.158 - User: user_1043 - RequestID: pksaxvrs0z +2025-06-18T14:41:56.381Z [TRACE] order-service - Operation: payment_processed - Processing time: 684ms - RequestID: nmoam3rro1 +2025-06-18T14:41:56.481Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 368ms - Rows affected: 49 - RequestID: koo6z6lqhf9 +2025-06-18T14:41:56.581Z [DEBUG] order-service - Database DELETE on payments - Execution time: 283ms - Rows affected: 97 - RequestID: d4xo5yfggx +2025-06-18T14:41:56.681Z [TRACE] order-service - Database SELECT on products - Execution time: 343ms - Rows affected: 20 - RequestID: 2l43k37g1bx +2025-06-18T14:41:56.781Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 400 - Response time: 554ms - IP: 192.168.138.123 - User: user_1037 - RequestID: fzfwn75yr4 +2025-06-18T14:41:56.881Z [TRACE] user-service - Auth event: logout - User: user_1089 - IP: 192.168.133.7 - RequestID: wuhdhzz6ig8 +2025-06-18T14:41:56.981Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 310ms - Rows affected: 27 - RequestID: ng3j3kx2ise +2025-06-18T14:41:57.081Z [TRACE] order-service - PATCH /api/v1/users - Status: 404 - Response time: 1302ms - IP: 192.168.32.38 - User: user_1034 - RequestID: y1na2px0d7m +2025-06-18T14:41:57.181Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 372ms - Rows affected: 63 - RequestID: hyaal3z4gqn +2025-06-18T14:41:57.281Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 400 - Response time: 289ms - IP: 192.168.141.100 - User: user_1077 - RequestID: u3watup4kle +2025-06-18T14:41:57.381Z [TRACE] auth-service - Operation: notification_queued - Processing time: 337ms - RequestID: riv4zacn6fq +2025-06-18T14:41:57.481Z [INFO] payment-service - Database DELETE on products - Execution time: 418ms - Rows affected: 78 - RequestID: b5jzlb128um +2025-06-18T14:41:57.581Z [INFO] notification-service - PATCH /api/v1/payments - Status: 403 - Response time: 53ms - IP: 192.168.68.128 - User: user_1083 - RequestID: lk63k1kzqel +2025-06-18T14:41:57.681Z [TRACE] auth-service - Database SELECT on orders - Execution time: 343ms - Rows affected: 14 - RequestID: khpwlpfezdd +2025-06-18T14:41:57.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.36.218 - RequestID: 4hbe1ciohcl +2025-06-18T14:41:57.881Z [TRACE] user-service - Auth event: login_failed - User: user_1030 - IP: 192.168.64.33 - RequestID: qw6zw7i4r3 +2025-06-18T14:41:57.981Z [TRACE] user-service - Operation: payment_processed - Processing time: 189ms - RequestID: r4sgnaq3a0a +2025-06-18T14:41:58.081Z [INFO] notification-service - Operation: cache_miss - Processing time: 324ms - RequestID: opcf1nmr39 +2025-06-18T14:41:58.181Z [INFO] payment-service - Auth event: password_change - User: user_1004 - IP: 192.168.159.94 - RequestID: nkfk5qby75b +2025-06-18T14:41:58.281Z [TRACE] user-service - Database UPDATE on users - Execution time: 258ms - Rows affected: 20 - RequestID: efs89pzchgl +2025-06-18T14:41:58.381Z [TRACE] order-service - POST /api/v1/orders - Status: 500 - Response time: 1113ms - IP: 192.168.79.143 - User: user_1032 - RequestID: b1x44qgosz +2025-06-18T14:41:58.481Z [TRACE] inventory-service - POST /api/v1/payments - Status: 200 - Response time: 28ms - IP: 192.168.53.133 - User: user_1023 - RequestID: iby9rzpi3k +2025-06-18T14:41:58.581Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 404 - Response time: 627ms - IP: 192.168.229.123 - User: user_1009 - RequestID: sru4i4zh9rd +2025-06-18T14:41:58.681Z [INFO] user-service - Operation: email_sent - Processing time: 652ms - RequestID: ih7ac645ejj +2025-06-18T14:41:58.781Z [INFO] notification-service - Database UPDATE on payments - Execution time: 2ms - Rows affected: 43 - RequestID: j4wo2035la9 +2025-06-18T14:41:58.881Z [INFO] payment-service - Operation: order_created - Processing time: 995ms - RequestID: p97jxo2ehmj +2025-06-18T14:41:58.981Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1434ms - IP: 192.168.68.158 - User: user_1078 - RequestID: 4daumzidxzu +2025-06-18T14:41:59.081Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 182ms - Rows affected: 61 - RequestID: m0yc8r3dy5p +2025-06-18T14:41:59.181Z [TRACE] user-service - Auth event: logout - User: user_1010 - IP: 192.168.240.169 - RequestID: 0yd6j8z7nh4 +2025-06-18T14:41:59.281Z [INFO] auth-service - Auth event: login_failed - User: user_1074 - IP: 192.168.227.77 - RequestID: 5jxiwnlcu6h +2025-06-18T14:41:59.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.133.7 - RequestID: smyn80g73n +2025-06-18T14:41:59.481Z [TRACE] notification-service - Operation: email_sent - Processing time: 344ms - RequestID: svba3h9tm1g +2025-06-18T14:41:59.581Z [INFO] notification-service - Auth event: login_failed - User: user_1009 - IP: 192.168.147.171 - RequestID: mw8bai8nrt +2025-06-18T14:41:59.681Z [TRACE] notification-service - Auth event: logout - User: user_1022 - IP: 192.168.242.165 - RequestID: bdyf2cmybxp +2025-06-18T14:41:59.781Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 779ms - RequestID: vetxpdnr37 +2025-06-18T14:41:59.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.227.233 - RequestID: uu66mst3zkn +2025-06-18T14:41:59.981Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 248ms - Rows affected: 65 - RequestID: oz7e8b6we6 +2025-06-18T14:42:00.081Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 265ms - RequestID: ui7rutk7259 +2025-06-18T14:42:00.181Z [INFO] inventory-service - Database SELECT on users - Execution time: 470ms - Rows affected: 36 - RequestID: daroyf3jp6l +2025-06-18T14:42:00.281Z [INFO] order-service - Operation: cache_miss - Processing time: 332ms - RequestID: jgl7vdp56qq +2025-06-18T14:42:00.381Z [INFO] order-service - Auth event: password_change - User: user_1073 - IP: 192.168.196.226 - RequestID: sccco2nwiso +2025-06-18T14:42:00.481Z [INFO] notification-service - Database DELETE on users - Execution time: 119ms - Rows affected: 75 - RequestID: lesx5oxsfcs +2025-06-18T14:42:00.581Z [INFO] payment-service - Database SELECT on sessions - Execution time: 118ms - Rows affected: 28 - RequestID: u3gk99afjp +2025-06-18T14:42:00.681Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 6ms - Rows affected: 40 - RequestID: 6t8wc13tzw5 +2025-06-18T14:42:00.781Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 393ms - RequestID: e7wtzkjzzyi +2025-06-18T14:42:00.881Z [DEBUG] order-service - Operation: email_sent - Processing time: 740ms - RequestID: a9nll7sf7tv +2025-06-18T14:42:00.981Z [INFO] user-service - Auth event: password_change - User: user_1074 - IP: 192.168.174.114 - RequestID: ui7x9k2z62 +2025-06-18T14:42:01.081Z [TRACE] inventory-service - Auth event: login_success - User: user_1014 - IP: 192.168.1.152 - RequestID: enoaxenwzj9 +2025-06-18T14:42:01.181Z [INFO] notification-service - Auth event: login_success - User: user_1003 - IP: 192.168.147.171 - RequestID: p6415q6rk0m +2025-06-18T14:42:01.281Z [INFO] notification-service - Operation: cache_hit - Processing time: 942ms - RequestID: h4kv065a3w4 +2025-06-18T14:42:01.381Z [INFO] user-service - GET /api/v1/payments - Status: 500 - Response time: 1431ms - IP: 192.168.33.76 - User: user_1009 - RequestID: fk9mdt2ebsu +2025-06-18T14:42:01.481Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 103ms - Rows affected: 95 - RequestID: 0vgj36muu5rj +2025-06-18T14:42:01.581Z [INFO] order-service - Database UPDATE on payments - Execution time: 27ms - Rows affected: 18 - RequestID: pq4kyknuv5q +2025-06-18T14:42:01.681Z [TRACE] user-service - Database SELECT on orders - Execution time: 286ms - Rows affected: 51 - RequestID: w5vudqxwtuc +2025-06-18T14:42:01.781Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 133ms - Rows affected: 69 - RequestID: 1ux3m6sdbar +2025-06-18T14:42:01.881Z [INFO] order-service - Operation: email_sent - Processing time: 120ms - RequestID: svy8t3sk28 +2025-06-18T14:42:01.981Z [DEBUG] user-service - GET /api/v1/users - Status: 403 - Response time: 408ms - IP: 192.168.247.134 - User: user_1068 - RequestID: z4v2ft3psn +2025-06-18T14:42:02.081Z [INFO] notification-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.68.128 - RequestID: vzwe7a99k49 +2025-06-18T14:42:02.181Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 831ms - IP: 192.168.189.103 - User: user_1068 - RequestID: 486dyik5lt6 +2025-06-18T14:42:02.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 944ms - RequestID: jtnmhds0du +2025-06-18T14:42:02.381Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 120ms - Rows affected: 79 - RequestID: 19pdpfhi1qu +2025-06-18T14:42:02.481Z [DEBUG] auth-service - Auth event: logout - User: user_1051 - IP: 192.168.227.233 - RequestID: 7y0qz9zb6l9 +2025-06-18T14:42:02.581Z [DEBUG] user-service - Operation: order_created - Processing time: 936ms - RequestID: z9p7738g08n +2025-06-18T14:42:02.681Z [INFO] payment-service - GET /api/v1/orders - Status: 401 - Response time: 1185ms - IP: 192.168.240.169 - User: user_1053 - RequestID: qdkqlvwksih +2025-06-18T14:42:02.781Z [INFO] auth-service - Operation: cache_hit - Processing time: 862ms - RequestID: rcwtmm00nva +2025-06-18T14:42:02.881Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 201 - Response time: 134ms - IP: 192.168.10.184 - User: user_1043 - RequestID: jwbdts0xfp9 +2025-06-18T14:42:02.981Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 1007ms - RequestID: 3093goaro9b +2025-06-18T14:42:03.081Z [DEBUG] user-service - Auth event: login_failed - User: user_1084 - IP: 192.168.227.77 - RequestID: 82hzj92bznt +2025-06-18T14:42:03.181Z [INFO] notification-service - Auth event: logout - User: user_1047 - IP: 192.168.133.7 - RequestID: 1oqlhgt9vl7 +2025-06-18T14:42:03.281Z [DEBUG] order-service - Database DELETE on products - Execution time: 313ms - Rows affected: 6 - RequestID: 1l3z23hpce +2025-06-18T14:42:03.381Z [INFO] order-service - Database SELECT on orders - Execution time: 489ms - Rows affected: 24 - RequestID: re2ln9j95o +2025-06-18T14:42:03.481Z [INFO] inventory-service - Operation: order_created - Processing time: 257ms - RequestID: q98zdtvars +2025-06-18T14:42:03.581Z [TRACE] payment-service - Auth event: password_change - User: user_1099 - IP: 192.168.11.60 - RequestID: z149vgyyup +2025-06-18T14:42:03.681Z [INFO] notification-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.10.184 - RequestID: 0tc8uoyhfkmk +2025-06-18T14:42:03.781Z [INFO] order-service - Database INSERT on sessions - Execution time: 243ms - Rows affected: 21 - RequestID: nssxat7a4m +2025-06-18T14:42:03.881Z [TRACE] user-service - PATCH /api/v1/orders - Status: 200 - Response time: 1683ms - IP: 192.168.242.165 - User: user_1048 - RequestID: jhsfoqhnu2n +2025-06-18T14:42:03.981Z [DEBUG] auth-service - PUT /api/v1/users - Status: 401 - Response time: 943ms - IP: 192.168.68.128 - User: user_1006 - RequestID: jjntdestnme +2025-06-18T14:42:04.081Z [INFO] auth-service - Auth event: logout - User: user_1022 - IP: 192.168.167.32 - RequestID: h2095tvpnkm +2025-06-18T14:42:04.181Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 451ms - Rows affected: 63 - RequestID: nlpnlmgrms +2025-06-18T14:42:04.281Z [TRACE] auth-service - Auth event: login_success - User: user_1039 - IP: 192.168.97.87 - RequestID: e1adxyqfofp +2025-06-18T14:42:04.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.196.226 - RequestID: odni8liwx +2025-06-18T14:42:04.481Z [INFO] inventory-service - PUT /api/v1/orders - Status: 200 - Response time: 1185ms - IP: 192.168.158.144 - User: user_1023 - RequestID: as1v03duig4 +2025-06-18T14:42:04.581Z [INFO] auth-service - Operation: notification_queued - Processing time: 323ms - RequestID: s3vx2h3m0wa +2025-06-18T14:42:04.681Z [INFO] notification-service - Database UPDATE on orders - Execution time: 72ms - Rows affected: 10 - RequestID: iwk5oti08je +2025-06-18T14:42:04.781Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 637ms - IP: 192.168.229.123 - User: user_1091 - RequestID: tzv27l7j9s +2025-06-18T14:42:04.881Z [INFO] payment-service - Operation: payment_processed - Processing time: 727ms - RequestID: jnole1poezs +2025-06-18T14:42:04.981Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 910ms - RequestID: 2vro2fdoqvp +2025-06-18T14:42:05.081Z [TRACE] order-service - Auth event: login_failed - User: user_1070 - IP: 192.168.14.77 - RequestID: 2jkbwygoyfk +2025-06-18T14:42:05.181Z [DEBUG] user-service - Auth event: login_success - User: user_1004 - IP: 192.168.227.233 - RequestID: lj3qsv9irj +2025-06-18T14:42:05.281Z [INFO] notification-service - Database SELECT on payments - Execution time: 28ms - Rows affected: 29 - RequestID: pdbro7e694g +2025-06-18T14:42:05.381Z [INFO] payment-service - Auth event: login_success - User: user_1032 - IP: 192.168.100.240 - RequestID: iogk47zmk2 +2025-06-18T14:42:05.481Z [TRACE] inventory-service - Auth event: logout - User: user_1072 - IP: 192.168.174.114 - RequestID: bithdxe8h7r +2025-06-18T14:42:05.581Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 495ms - Rows affected: 16 - RequestID: 2gudk79elet +2025-06-18T14:42:05.681Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 129ms - Rows affected: 3 - RequestID: idnq8n8col +2025-06-18T14:42:05.781Z [TRACE] user-service - GET /api/v1/users - Status: 401 - Response time: 502ms - IP: 192.168.174.114 - User: user_1031 - RequestID: y92wq2mqpac +2025-06-18T14:42:05.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 863ms - RequestID: gvihyrkh756 +2025-06-18T14:42:05.981Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1679ms - IP: 192.168.79.116 - User: user_1093 - RequestID: e8esxg4hn +2025-06-18T14:42:06.081Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 548ms - RequestID: o2fq06utd7 +2025-06-18T14:42:06.181Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 481ms - Rows affected: 14 - RequestID: 7uwapwwwk5s +2025-06-18T14:42:06.281Z [DEBUG] user-service - Operation: cache_hit - Processing time: 954ms - RequestID: fof2dq13a0p +2025-06-18T14:42:06.381Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 438ms - Rows affected: 50 - RequestID: z6q81nwrleg +2025-06-18T14:42:06.481Z [INFO] user-service - Operation: notification_queued - Processing time: 603ms - RequestID: b3u5i3jla69 +2025-06-18T14:42:06.581Z [TRACE] notification-service - Database SELECT on orders - Execution time: 118ms - Rows affected: 55 - RequestID: q1m1nfvjmf +2025-06-18T14:42:06.681Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 401 - Response time: 685ms - IP: 192.168.14.77 - User: user_1042 - RequestID: m0tq3rxrwci +2025-06-18T14:42:06.781Z [TRACE] order-service - Operation: inventory_updated - Processing time: 834ms - RequestID: 43wqupddsem +2025-06-18T14:42:06.881Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 242ms - Rows affected: 51 - RequestID: 7kychm2ph65 +2025-06-18T14:42:06.981Z [TRACE] user-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.85.229 - RequestID: gxr0hfd3lot +2025-06-18T14:42:07.081Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 493ms - Rows affected: 29 - RequestID: thni8yk8cig +2025-06-18T14:42:07.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.10.184 - RequestID: 0w8fu55gtdgg +2025-06-18T14:42:07.281Z [TRACE] order-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.242.165 - RequestID: lyio3mjulfi +2025-06-18T14:42:07.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 219ms - RequestID: 36mukweu93n +2025-06-18T14:42:07.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 133ms - RequestID: 38tu3nl49n3 +2025-06-18T14:42:07.581Z [TRACE] order-service - Auth event: login_failed - User: user_1058 - IP: 192.168.68.158 - RequestID: noymbuv54uj +2025-06-18T14:42:07.681Z [TRACE] order-service - Auth event: password_change - User: user_1030 - IP: 192.168.79.141 - RequestID: zr8awdywia +2025-06-18T14:42:07.781Z [INFO] payment-service - Database INSERT on users - Execution time: 493ms - Rows affected: 21 - RequestID: m7qzpzq75et +2025-06-18T14:42:07.881Z [TRACE] notification-service - Database SELECT on orders - Execution time: 86ms - Rows affected: 58 - RequestID: ip6xk90fqk +2025-06-18T14:42:07.981Z [TRACE] payment-service - Database SELECT on payments - Execution time: 443ms - Rows affected: 80 - RequestID: 4490u3gkwh1 +2025-06-18T14:42:08.081Z [DEBUG] notification-service - Database SELECT on users - Execution time: 348ms - Rows affected: 50 - RequestID: 7pw6ougw7e +2025-06-18T14:42:08.181Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 401 - Response time: 555ms - IP: 192.168.196.226 - User: user_1025 - RequestID: 6976t7wpezc +2025-06-18T14:42:08.281Z [DEBUG] notification-service - Operation: email_sent - Processing time: 860ms - RequestID: r6bjcna8qh8 +2025-06-18T14:42:08.381Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 355ms - RequestID: v3y5wkv4wvf +2025-06-18T14:42:08.481Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 500 - Response time: 1404ms - IP: 192.168.32.38 - User: user_1007 - RequestID: h82d39gghwv +2025-06-18T14:42:08.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1004 - IP: 192.168.235.117 - RequestID: n93bsm3dp0j +2025-06-18T14:42:08.681Z [TRACE] auth-service - Operation: notification_queued - Processing time: 379ms - RequestID: yfhignkgxs +2025-06-18T14:42:08.781Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1676ms - IP: 192.168.247.134 - User: user_1099 - RequestID: n6nrbi9yxv +2025-06-18T14:42:08.881Z [DEBUG] user-service - Database DELETE on payments - Execution time: 499ms - Rows affected: 20 - RequestID: uxihns0ewh +2025-06-18T14:42:08.981Z [INFO] auth-service - Operation: cache_miss - Processing time: 984ms - RequestID: qvblx5kehz +2025-06-18T14:42:09.081Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 500 - Response time: 397ms - IP: 192.168.159.94 - User: user_1083 - RequestID: i8zkg2x6dl +2025-06-18T14:42:09.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 425ms - RequestID: ljap7unrc3 +2025-06-18T14:42:09.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1089 - IP: 192.168.32.38 - RequestID: hmnwfzoo3h4 +2025-06-18T14:42:09.381Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.211.72 - RequestID: sgb9nwrfz4j +2025-06-18T14:42:09.481Z [INFO] order-service - Operation: cache_miss - Processing time: 283ms - RequestID: 8phjjq546h5 +2025-06-18T14:42:09.581Z [DEBUG] order-service - Auth event: password_change - User: user_1034 - IP: 192.168.53.133 - RequestID: rg2912cclhq +2025-06-18T14:42:09.681Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 400 - Response time: 441ms - IP: 192.168.211.72 - User: user_1090 - RequestID: o8ooqx9uv +2025-06-18T14:42:09.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.158.144 - RequestID: 6lmvw34t0gu +2025-06-18T14:42:09.881Z [INFO] user-service - Operation: notification_queued - Processing time: 188ms - RequestID: w6vb2zy2lfi +2025-06-18T14:42:09.981Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 53ms - Rows affected: 95 - RequestID: ae2qvw7aeuf +2025-06-18T14:42:10.081Z [TRACE] auth-service - Operation: cache_hit - Processing time: 713ms - RequestID: 1k83qroi2n5 +2025-06-18T14:42:10.181Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 429ms - Rows affected: 87 - RequestID: ibcosder47s +2025-06-18T14:42:10.281Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 533ms - RequestID: phwanz9rv8 +2025-06-18T14:42:10.381Z [TRACE] order-service - Auth event: login_failed - User: user_1076 - IP: 192.168.28.146 - RequestID: 0c0l1e6fhnsg +2025-06-18T14:42:10.481Z [TRACE] notification-service - Database DELETE on products - Execution time: 121ms - Rows affected: 48 - RequestID: akc5mccoqfk +2025-06-18T14:42:10.581Z [TRACE] user-service - Operation: notification_queued - Processing time: 997ms - RequestID: g342nimphn4 +2025-06-18T14:42:10.681Z [TRACE] order-service - Operation: inventory_updated - Processing time: 786ms - RequestID: 1dq35le5udc +2025-06-18T14:42:10.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 279ms - RequestID: g5j723psew +2025-06-18T14:42:10.881Z [INFO] user-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1339ms - IP: 192.168.113.218 - User: user_1067 - RequestID: 7bxhfy7yf1h +2025-06-18T14:42:10.981Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 472ms - RequestID: xkztkjvc3bo +2025-06-18T14:42:11.081Z [TRACE] order-service - Operation: cache_hit - Processing time: 160ms - RequestID: 2t8z36lf0q1 +2025-06-18T14:42:11.181Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 149ms - Rows affected: 52 - RequestID: qrek50ue0cr +2025-06-18T14:42:11.281Z [TRACE] user-service - Operation: webhook_sent - Processing time: 80ms - RequestID: s5pgrlp8fsi +2025-06-18T14:42:11.381Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 401 - Response time: 483ms - IP: 192.168.189.103 - User: user_1093 - RequestID: yqzl9d1ou1m +2025-06-18T14:42:11.481Z [INFO] payment-service - Auth event: password_change - User: user_1090 - IP: 192.168.36.218 - RequestID: goe18d20hgd +2025-06-18T14:42:11.581Z [TRACE] order-service - Database INSERT on users - Execution time: 61ms - Rows affected: 3 - RequestID: ff7nfayhtzt +2025-06-18T14:42:11.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.81.206 - RequestID: 607iui53f86 +2025-06-18T14:42:11.781Z [DEBUG] order-service - Operation: order_created - Processing time: 135ms - RequestID: 1377h6g2crvi +2025-06-18T14:42:11.881Z [INFO] order-service - Database SELECT on payments - Execution time: 265ms - Rows affected: 17 - RequestID: on5t7tlsrmd +2025-06-18T14:42:11.981Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 502 - Response time: 707ms - IP: 192.168.211.72 - User: user_1034 - RequestID: 7nubo409kdk +2025-06-18T14:42:12.081Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1127ms - IP: 192.168.232.72 - User: user_1071 - RequestID: takz4lxu0f +2025-06-18T14:42:12.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 1018ms - RequestID: q8x1w2je7m +2025-06-18T14:42:12.281Z [TRACE] auth-service - Database INSERT on payments - Execution time: 337ms - Rows affected: 3 - RequestID: yzmjtzyajoh +2025-06-18T14:42:12.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1026 - IP: 192.168.10.184 - RequestID: qn9to6rd5hp +2025-06-18T14:42:12.481Z [DEBUG] user-service - Database INSERT on products - Execution time: 458ms - Rows affected: 94 - RequestID: 8z5up3knzch +2025-06-18T14:42:12.581Z [INFO] user-service - Auth event: password_change - User: user_1098 - IP: 192.168.13.72 - RequestID: rbzjuxh0cdg +2025-06-18T14:42:12.681Z [INFO] user-service - Auth event: password_change - User: user_1090 - IP: 192.168.133.7 - RequestID: yauz6l6zho9 +2025-06-18T14:42:12.781Z [TRACE] user-service - Database INSERT on products - Execution time: 65ms - Rows affected: 8 - RequestID: 6milk6m0zq8 +2025-06-18T14:42:12.881Z [DEBUG] user-service - Auth event: login_failed - User: user_1023 - IP: 192.168.189.103 - RequestID: 9b4ryagjn6c +2025-06-18T14:42:12.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.158.144 - RequestID: 8t2q6t6raeh +2025-06-18T14:42:13.081Z [DEBUG] payment-service - Database DELETE on users - Execution time: 457ms - Rows affected: 89 - RequestID: 3pzhlw00inq +2025-06-18T14:42:13.181Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 502 - Response time: 1881ms - IP: 192.168.138.123 - User: user_1074 - RequestID: 00fdheud4py3u +2025-06-18T14:42:13.281Z [TRACE] auth-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.1.152 - RequestID: sh85mk1f24 +2025-06-18T14:42:13.381Z [TRACE] notification-service - GET /api/v1/orders - Status: 500 - Response time: 753ms - IP: 192.168.28.146 - User: user_1001 - RequestID: 1vqxwdt6j4l +2025-06-18T14:42:13.481Z [INFO] notification-service - Auth event: login_failed - User: user_1079 - IP: 192.168.36.218 - RequestID: f8ft0awpmst +2025-06-18T14:42:13.581Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 367ms - Rows affected: 36 - RequestID: baei1p16kpi +2025-06-18T14:42:13.681Z [TRACE] notification-service - Operation: payment_processed - Processing time: 777ms - RequestID: hn4ov161dxb +2025-06-18T14:42:13.781Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 403 - Response time: 429ms - IP: 192.168.240.169 - User: user_1052 - RequestID: yni63gp4ms +2025-06-18T14:42:13.881Z [INFO] user-service - Auth event: password_change - User: user_1059 - IP: 192.168.247.134 - RequestID: ov3ych4j7fr +2025-06-18T14:42:13.981Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.144.38 - RequestID: o6cqzdux5zm +2025-06-18T14:42:14.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.187.199 - RequestID: k4ooa782xc +2025-06-18T14:42:14.181Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 352ms - Rows affected: 10 - RequestID: a2ff9n1a9x +2025-06-18T14:42:14.281Z [DEBUG] notification-service - GET /api/v1/users - Status: 404 - Response time: 1607ms - IP: 192.168.10.184 - User: user_1085 - RequestID: eo2ip4ofxad +2025-06-18T14:42:14.381Z [INFO] auth-service - Database INSERT on products - Execution time: 121ms - Rows affected: 55 - RequestID: h2249jwoydc +2025-06-18T14:42:14.481Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 126ms - Rows affected: 70 - RequestID: 7v448f25ea4 +2025-06-18T14:42:14.581Z [INFO] inventory-service - Database SELECT on orders - Execution time: 490ms - Rows affected: 37 - RequestID: t2g4a4kr8o +2025-06-18T14:42:14.681Z [INFO] user-service - Database INSERT on users - Execution time: 190ms - Rows affected: 88 - RequestID: jj67z6uwgbm +2025-06-18T14:42:14.781Z [INFO] payment-service - Auth event: login_success - User: user_1077 - IP: 192.168.97.87 - RequestID: 45eluswtn1s +2025-06-18T14:42:14.881Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 342ms - Rows affected: 71 - RequestID: s17latx4njn +2025-06-18T14:42:14.981Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 536ms - IP: 192.168.189.103 - User: user_1069 - RequestID: wmu14z6l0j +2025-06-18T14:42:15.081Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 64ms - Rows affected: 52 - RequestID: pan0uta6mem +2025-06-18T14:42:15.181Z [TRACE] notification-service - PUT /api/v1/orders - Status: 403 - Response time: 98ms - IP: 192.168.36.218 - User: user_1000 - RequestID: uldagkvdcd +2025-06-18T14:42:15.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 791ms - RequestID: eip6noq1jp6 +2025-06-18T14:42:15.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1041 - IP: 192.168.10.184 - RequestID: 94yvq7k8w9 +2025-06-18T14:42:15.481Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 226ms - RequestID: lqllpaxhidr +2025-06-18T14:42:15.581Z [INFO] user-service - Operation: cache_miss - Processing time: 368ms - RequestID: t5onx2zvdz8 +2025-06-18T14:42:15.681Z [INFO] payment-service - Operation: notification_queued - Processing time: 244ms - RequestID: 8u1isg9u0cu +2025-06-18T14:42:15.781Z [TRACE] notification-service - Auth event: logout - User: user_1084 - IP: 192.168.167.32 - RequestID: 4wki5451eg5 +2025-06-18T14:42:15.881Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 569ms - IP: 192.168.10.184 - User: user_1045 - RequestID: 3c3bwixlykn +2025-06-18T14:42:15.981Z [TRACE] auth-service - Database INSERT on products - Execution time: 286ms - Rows affected: 82 - RequestID: hygviz1oqsh +2025-06-18T14:42:16.081Z [INFO] payment-service - Auth event: login_success - User: user_1093 - IP: 192.168.242.165 - RequestID: 2x9d5ibgqp +2025-06-18T14:42:16.181Z [DEBUG] auth-service - Auth event: logout - User: user_1037 - IP: 192.168.158.144 - RequestID: 5ohnuiagqy9 +2025-06-18T14:42:16.281Z [TRACE] notification-service - Auth event: password_change - User: user_1070 - IP: 192.168.28.146 - RequestID: qu9cqbh29m +2025-06-18T14:42:16.381Z [DEBUG] order-service - Database INSERT on products - Execution time: 181ms - Rows affected: 67 - RequestID: 3r3mhh2g5dg +2025-06-18T14:42:16.481Z [TRACE] user-service - PUT /api/v1/payments - Status: 400 - Response time: 1278ms - IP: 192.168.227.233 - User: user_1041 - RequestID: hgcpmvvsuk6 +2025-06-18T14:42:16.581Z [INFO] auth-service - POST /api/v1/inventory - Status: 500 - Response time: 1259ms - IP: 192.168.211.72 - User: user_1012 - RequestID: ka74nx88f1 +2025-06-18T14:42:16.681Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 474ms - RequestID: 7tktbkd32bf +2025-06-18T14:42:16.781Z [DEBUG] payment-service - GET /api/v1/users - Status: 502 - Response time: 1886ms - IP: 192.168.235.117 - User: user_1096 - RequestID: e9r21kria8o +2025-06-18T14:42:16.881Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 401 - Response time: 737ms - IP: 192.168.13.72 - User: user_1084 - RequestID: 2o2iqmx04rw +2025-06-18T14:42:16.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1087 - IP: 192.168.113.218 - RequestID: ya0xlng06r +2025-06-18T14:42:17.081Z [TRACE] notification-service - Operation: cache_miss - Processing time: 466ms - RequestID: py8ps8rr2rk +2025-06-18T14:42:17.181Z [TRACE] notification-service - Operation: order_created - Processing time: 687ms - RequestID: 80cp6bvd7ys +2025-06-18T14:42:17.281Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 404 - Response time: 477ms - IP: 192.168.242.165 - User: user_1008 - RequestID: aqhjvmhkgf5 +2025-06-18T14:42:17.381Z [DEBUG] user-service - Operation: notification_queued - Processing time: 208ms - RequestID: y3pp8hlmh1g +2025-06-18T14:42:17.481Z [TRACE] auth-service - Operation: notification_queued - Processing time: 900ms - RequestID: 1ditcag51uu +2025-06-18T14:42:17.581Z [INFO] user-service - Database UPDATE on sessions - Execution time: 240ms - Rows affected: 53 - RequestID: kyoi1e93p1 +2025-06-18T14:42:17.681Z [TRACE] payment-service - Auth event: login_success - User: user_1018 - IP: 192.168.113.218 - RequestID: p1nfznn052h +2025-06-18T14:42:17.781Z [TRACE] auth-service - Operation: order_created - Processing time: 679ms - RequestID: mocod8xl6nh +2025-06-18T14:42:17.881Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 321ms - Rows affected: 12 - RequestID: gea48nmgzdf +2025-06-18T14:42:17.981Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 303ms - Rows affected: 34 - RequestID: 93exqsddzqg +2025-06-18T14:42:18.081Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1091ms - IP: 192.168.242.165 - User: user_1024 - RequestID: nnk0qizt0yc +2025-06-18T14:42:18.181Z [INFO] payment-service - POST /api/v1/inventory - Status: 200 - Response time: 1458ms - IP: 192.168.53.133 - User: user_1027 - RequestID: 6j465216upb +2025-06-18T14:42:18.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.113.218 - RequestID: 3u184gpt38g +2025-06-18T14:42:18.381Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 383ms - Rows affected: 66 - RequestID: nx2mzeo73l +2025-06-18T14:42:18.481Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1338ms - IP: 192.168.46.63 - User: user_1053 - RequestID: mv7d8tk8zy +2025-06-18T14:42:18.581Z [DEBUG] order-service - Operation: payment_processed - Processing time: 1018ms - RequestID: zwdvbx49hfn +2025-06-18T14:42:18.681Z [TRACE] order-service - Database UPDATE on orders - Execution time: 135ms - Rows affected: 80 - RequestID: 38i262y6clc +2025-06-18T14:42:18.781Z [DEBUG] user-service - GET /api/v1/inventory - Status: 503 - Response time: 809ms - IP: 192.168.181.225 - User: user_1065 - RequestID: hjcqzlom5xo +2025-06-18T14:42:18.881Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 122ms - IP: 192.168.64.33 - User: user_1050 - RequestID: c76uh1jeycr +2025-06-18T14:42:18.981Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 51ms - Rows affected: 55 - RequestID: dla1tzaxirv +2025-06-18T14:42:19.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.31.117 - RequestID: r7ec8xzqyl +2025-06-18T14:42:19.181Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 282ms - Rows affected: 67 - RequestID: oxpz9stpncf +2025-06-18T14:42:19.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1008 - IP: 192.168.227.77 - RequestID: yv5shbq7qb +2025-06-18T14:42:19.381Z [TRACE] user-service - GET /api/v1/auth/login - Status: 401 - Response time: 783ms - IP: 192.168.81.206 - User: user_1085 - RequestID: 07g49d7hmzom +2025-06-18T14:42:19.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1080 - IP: 192.168.68.158 - RequestID: 6e93z11c1kj +2025-06-18T14:42:19.581Z [TRACE] user-service - Operation: notification_queued - Processing time: 446ms - RequestID: 3dbf9coiu1j +2025-06-18T14:42:19.681Z [INFO] payment-service - PATCH /api/v1/orders - Status: 400 - Response time: 978ms - IP: 192.168.81.206 - User: user_1090 - RequestID: 7dfup6aprtf +2025-06-18T14:42:19.781Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 404 - Response time: 104ms - IP: 192.168.133.7 - User: user_1088 - RequestID: sourk319zc +2025-06-18T14:42:19.881Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1349ms - IP: 192.168.28.146 - User: user_1011 - RequestID: dzei9y0b5ok +2025-06-18T14:42:19.981Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 400 - Response time: 135ms - IP: 192.168.170.215 - User: user_1086 - RequestID: r0nhiyim6t +2025-06-18T14:42:20.081Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 90ms - Rows affected: 6 - RequestID: 9kkq7wg56gl +2025-06-18T14:42:20.181Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 503 - Response time: 1677ms - IP: 192.168.14.77 - User: user_1058 - RequestID: igdnjzsmup +2025-06-18T14:42:20.281Z [TRACE] inventory-service - Operation: email_sent - Processing time: 407ms - RequestID: 8oxpaynafbw +2025-06-18T14:42:20.381Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 36ms - Rows affected: 42 - RequestID: 5c5a6o1hl7i +2025-06-18T14:42:20.481Z [TRACE] notification-service - Operation: cache_miss - Processing time: 972ms - RequestID: uknc5k3409 +2025-06-18T14:42:20.581Z [DEBUG] notification-service - Database INSERT on users - Execution time: 164ms - Rows affected: 73 - RequestID: gv5avrxtrdo +2025-06-18T14:42:20.681Z [TRACE] auth-service - Auth event: login_success - User: user_1045 - IP: 192.168.189.103 - RequestID: lw36ulx56kg +2025-06-18T14:42:20.781Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 694ms - RequestID: bd4l54fw3c5 +2025-06-18T14:42:20.881Z [TRACE] notification-service - GET /api/v1/inventory - Status: 503 - Response time: 872ms - IP: 192.168.31.117 - User: user_1029 - RequestID: vk3iyoa3dk +2025-06-18T14:42:20.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.181.225 - RequestID: ed47dyj11lt +2025-06-18T14:42:21.081Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1796ms - IP: 192.168.68.158 - User: user_1006 - RequestID: i628uhhpbfn +2025-06-18T14:42:21.181Z [TRACE] notification-service - Operation: order_created - Processing time: 644ms - RequestID: 5feygjw86c8 +2025-06-18T14:42:21.281Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 237ms - IP: 192.168.10.184 - User: user_1075 - RequestID: smq0z6lrsw9 +2025-06-18T14:42:21.381Z [INFO] notification-service - Auth event: login_success - User: user_1015 - IP: 192.168.158.144 - RequestID: 4q847ukal2w +2025-06-18T14:42:21.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 346ms - RequestID: xt1gzik7ka +2025-06-18T14:42:21.581Z [INFO] order-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.181.225 - RequestID: 0dteyww7m7j +2025-06-18T14:42:21.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.158.144 - RequestID: ma8zbiiinxl +2025-06-18T14:42:21.781Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 503 - Response time: 513ms - IP: 192.168.79.143 - User: user_1092 - RequestID: x4qwwnc65aq +2025-06-18T14:42:21.881Z [TRACE] payment-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.44.5 - RequestID: cdgo43ijnga +2025-06-18T14:42:21.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.81.206 - RequestID: uvx9thvruhp +2025-06-18T14:42:22.081Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 312ms - IP: 192.168.240.169 - User: user_1036 - RequestID: wxlzxte9wyj +2025-06-18T14:42:22.181Z [TRACE] payment-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.242.165 - RequestID: tiisc8t66yc +2025-06-18T14:42:22.281Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 502 - Response time: 822ms - IP: 192.168.133.7 - User: user_1088 - RequestID: 5iq60rtx7nk +2025-06-18T14:42:22.381Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 610ms - IP: 192.168.104.37 - User: user_1009 - RequestID: rohf9uhd1uf +2025-06-18T14:42:22.481Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 401 - Response time: 951ms - IP: 192.168.167.32 - User: user_1037 - RequestID: wtcuej5xop +2025-06-18T14:42:22.581Z [TRACE] order-service - Database INSERT on orders - Execution time: 453ms - Rows affected: 55 - RequestID: penxkxqjx2 +2025-06-18T14:42:22.681Z [INFO] payment-service - Database SELECT on payments - Execution time: 355ms - Rows affected: 23 - RequestID: ks1w19kkb1c +2025-06-18T14:42:22.781Z [TRACE] payment-service - GET /api/v1/orders - Status: 201 - Response time: 92ms - IP: 192.168.174.114 - User: user_1086 - RequestID: 23tqlf0kt59 +2025-06-18T14:42:22.881Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 1017ms - RequestID: nkhg5sqwv0m +2025-06-18T14:42:22.981Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 867ms - RequestID: v1xqnnitgk +2025-06-18T14:42:23.081Z [DEBUG] user-service - Operation: email_sent - Processing time: 161ms - RequestID: 0avety6nqhfp +2025-06-18T14:42:23.181Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 457ms - Rows affected: 28 - RequestID: 9ssk995pzyu +2025-06-18T14:42:23.281Z [TRACE] notification-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.189.103 - RequestID: tnddb4igcaq +2025-06-18T14:42:23.381Z [INFO] auth-service - Operation: cache_hit - Processing time: 204ms - RequestID: fe9dmiihmpi +2025-06-18T14:42:23.481Z [INFO] order-service - Auth event: login_failed - User: user_1083 - IP: 192.168.44.5 - RequestID: s56wa3quhe +2025-06-18T14:42:23.581Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1441ms - IP: 192.168.100.240 - User: user_1059 - RequestID: ab8rnhefffc +2025-06-18T14:42:23.681Z [INFO] user-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1053ms - IP: 192.168.33.76 - User: user_1052 - RequestID: g6vza21l5cm +2025-06-18T14:42:23.781Z [TRACE] payment-service - Operation: notification_queued - Processing time: 230ms - RequestID: dqdjf6avr87 +2025-06-18T14:42:23.881Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1638ms - IP: 192.168.79.116 - User: user_1014 - RequestID: 2zovi2dggvq +2025-06-18T14:42:23.981Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 262ms - Rows affected: 83 - RequestID: s3cnkkq7y2 +2025-06-18T14:42:24.081Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.227.77 - RequestID: 93179nduppf +2025-06-18T14:42:24.181Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1565ms - IP: 192.168.28.146 - User: user_1045 - RequestID: n1qxpc4focb +2025-06-18T14:42:24.281Z [DEBUG] order-service - Operation: cache_miss - Processing time: 924ms - RequestID: 44l1rq5ac9m +2025-06-18T14:42:24.381Z [INFO] order-service - Auth event: password_change - User: user_1039 - IP: 192.168.79.116 - RequestID: 2qfs73mcn9 +2025-06-18T14:42:24.481Z [INFO] notification-service - Auth event: login_success - User: user_1005 - IP: 192.168.138.123 - RequestID: gf5bo67iipe +2025-06-18T14:42:24.581Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 688ms - RequestID: i6zyr1wmp5 +2025-06-18T14:42:24.681Z [INFO] auth-service - DELETE /api/v1/payments - Status: 404 - Response time: 1053ms - IP: 192.168.33.76 - User: user_1086 - RequestID: g8o1ocueiri +2025-06-18T14:42:24.781Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 188ms - Rows affected: 1 - RequestID: rdampnx6j7 +2025-06-18T14:42:24.881Z [TRACE] inventory-service - Auth event: logout - User: user_1066 - IP: 192.168.187.199 - RequestID: d2dd94c8m5m +2025-06-18T14:42:24.981Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 500 - Response time: 679ms - IP: 192.168.100.240 - User: user_1057 - RequestID: vd4wllidb0j +2025-06-18T14:42:25.081Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 159ms - Rows affected: 19 - RequestID: 7xpk887o9ei +2025-06-18T14:42:25.181Z [INFO] inventory-service - Auth event: password_change - User: user_1031 - IP: 192.168.46.63 - RequestID: fffro8uxf5j +2025-06-18T14:42:25.281Z [INFO] order-service - Database UPDATE on orders - Execution time: 210ms - Rows affected: 55 - RequestID: 5r2i03jp5ua +2025-06-18T14:42:25.381Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 348ms - Rows affected: 53 - RequestID: f55hlpysjw +2025-06-18T14:42:25.481Z [INFO] notification-service - Operation: cache_hit - Processing time: 278ms - RequestID: 8rdmp7rra23 +2025-06-18T14:42:25.581Z [TRACE] inventory-service - Database INSERT on products - Execution time: 9ms - Rows affected: 72 - RequestID: twp5ds76vb +2025-06-18T14:42:25.681Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1121ms - IP: 192.168.53.133 - User: user_1013 - RequestID: usaxqkgspo +2025-06-18T14:42:25.781Z [TRACE] user-service - Operation: inventory_updated - Processing time: 437ms - RequestID: sqhst4q7tqf +2025-06-18T14:42:25.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.30.79 - RequestID: je1untf9sgh +2025-06-18T14:42:25.981Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 502 - Response time: 143ms - IP: 192.168.33.76 - User: user_1038 - RequestID: jaa7kgjlcs +2025-06-18T14:42:26.081Z [TRACE] payment-service - POST /api/v1/users - Status: 500 - Response time: 1959ms - IP: 192.168.113.218 - User: user_1056 - RequestID: ec9wtt97q2c +2025-06-18T14:42:26.181Z [INFO] inventory-service - GET /api/v1/inventory - Status: 404 - Response time: 1105ms - IP: 192.168.235.117 - User: user_1001 - RequestID: 9y75cfbvkr +2025-06-18T14:42:26.281Z [TRACE] user-service - PUT /api/v1/users - Status: 404 - Response time: 421ms - IP: 192.168.229.123 - User: user_1078 - RequestID: 95kjhr5bvqu +2025-06-18T14:42:26.381Z [TRACE] auth-service - Operation: email_sent - Processing time: 984ms - RequestID: 5okmkwktivn +2025-06-18T14:42:26.481Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 609ms - RequestID: su42aeyhx7 +2025-06-18T14:42:26.581Z [DEBUG] order-service - Database SELECT on products - Execution time: 399ms - Rows affected: 34 - RequestID: igkohsdqjw +2025-06-18T14:42:26.681Z [TRACE] payment-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.53.133 - RequestID: 9l26bd7dq5w +2025-06-18T14:42:26.781Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 390ms - Rows affected: 91 - RequestID: 4sjwh618s79 +2025-06-18T14:42:26.881Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 400 - Response time: 341ms - IP: 192.168.10.184 - User: user_1090 - RequestID: jbwfltid1z9 +2025-06-18T14:42:26.981Z [DEBUG] notification-service - POST /api/v1/users - Status: 502 - Response time: 454ms - IP: 192.168.44.5 - User: user_1035 - RequestID: rmvgoqc5e7q +2025-06-18T14:42:27.081Z [INFO] user-service - POST /api/v1/inventory - Status: 500 - Response time: 514ms - IP: 192.168.85.229 - User: user_1035 - RequestID: tp17m17bw8l +2025-06-18T14:42:27.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.235.117 - RequestID: ympz2sz3l2s +2025-06-18T14:42:27.281Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 403 - Response time: 263ms - IP: 192.168.100.240 - User: user_1049 - RequestID: 1msjxfmt1mi +2025-06-18T14:42:27.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.13.72 - RequestID: ryrz4j9882f +2025-06-18T14:42:27.481Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 286ms - Rows affected: 39 - RequestID: ez9ozscddbc +2025-06-18T14:42:27.581Z [DEBUG] user-service - Database UPDATE on products - Execution time: 121ms - Rows affected: 93 - RequestID: cjxcqltaz8 +2025-06-18T14:42:27.681Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1268ms - IP: 192.168.174.114 - User: user_1093 - RequestID: igqh2pc7t9 +2025-06-18T14:42:27.781Z [TRACE] payment-service - Database DELETE on orders - Execution time: 239ms - Rows affected: 80 - RequestID: bjx6xzcwjy +2025-06-18T14:42:27.881Z [TRACE] order-service - Operation: cache_hit - Processing time: 921ms - RequestID: dd0hijw52te +2025-06-18T14:42:27.981Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 474ms - RequestID: yg8xwip7cne +2025-06-18T14:42:28.081Z [INFO] order-service - Auth event: login_success - User: user_1047 - IP: 192.168.11.60 - RequestID: i45tq860fpj +2025-06-18T14:42:28.181Z [DEBUG] user-service - Operation: cache_hit - Processing time: 372ms - RequestID: fh7hhu3w7yl +2025-06-18T14:42:28.281Z [TRACE] notification-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.85.229 - RequestID: fj3vr51tt0u +2025-06-18T14:42:28.381Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 404 - Response time: 802ms - IP: 192.168.10.184 - User: user_1063 - RequestID: ylm0fonkst +2025-06-18T14:42:28.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1058 - IP: 192.168.181.225 - RequestID: v201a03er7 +2025-06-18T14:42:28.581Z [DEBUG] payment-service - Database INSERT on products - Execution time: 499ms - Rows affected: 26 - RequestID: 1a0whdqjhxl +2025-06-18T14:42:28.681Z [TRACE] order-service - Database DELETE on products - Execution time: 101ms - Rows affected: 23 - RequestID: 0vy6kpxauofe +2025-06-18T14:42:28.781Z [INFO] notification-service - Auth event: password_change - User: user_1088 - IP: 192.168.64.33 - RequestID: s6b4v1qqwh +2025-06-18T14:42:28.881Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 955ms - RequestID: f70rdy35qh9 +2025-06-18T14:42:28.981Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 500 - Response time: 779ms - IP: 192.168.30.79 - User: user_1054 - RequestID: 8mit87jir99 +2025-06-18T14:42:29.081Z [TRACE] order-service - Database SELECT on sessions - Execution time: 469ms - Rows affected: 46 - RequestID: p3h36ule3pp +2025-06-18T14:42:29.181Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 201 - Response time: 1921ms - IP: 192.168.31.117 - User: user_1046 - RequestID: 2128la6dd6r +2025-06-18T14:42:29.281Z [INFO] inventory-service - Operation: order_created - Processing time: 711ms - RequestID: s298jvymkv +2025-06-18T14:42:29.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.187.199 - RequestID: zion82rlu1 +2025-06-18T14:42:29.481Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 201 - Response time: 835ms - IP: 192.168.194.41 - User: user_1024 - RequestID: e3yahiq65k8 +2025-06-18T14:42:29.581Z [INFO] inventory-service - Operation: payment_processed - Processing time: 621ms - RequestID: 45vjmwz70e8 +2025-06-18T14:42:29.681Z [TRACE] auth-service - PATCH /api/v1/users - Status: 503 - Response time: 811ms - IP: 192.168.158.144 - User: user_1042 - RequestID: 7mcie811fgi +2025-06-18T14:42:29.781Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 304ms - Rows affected: 82 - RequestID: hropuuid9tv +2025-06-18T14:42:29.881Z [TRACE] payment-service - Database SELECT on payments - Execution time: 229ms - Rows affected: 69 - RequestID: fpuvph8blp +2025-06-18T14:42:29.981Z [DEBUG] order-service - Database INSERT on payments - Execution time: 241ms - Rows affected: 14 - RequestID: pt40szlvjyn +2025-06-18T14:42:30.081Z [TRACE] payment-service - Operation: cache_miss - Processing time: 520ms - RequestID: d1vwqyjlbi7 +2025-06-18T14:42:30.181Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 561ms - RequestID: ubn08est0of +2025-06-18T14:42:30.281Z [INFO] order-service - GET /api/v1/inventory - Status: 403 - Response time: 995ms - IP: 192.168.189.103 - User: user_1018 - RequestID: g6kobeyvn5f +2025-06-18T14:42:30.381Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 286ms - Rows affected: 40 - RequestID: 0ya5yd5ii4lr +2025-06-18T14:42:30.481Z [INFO] auth-service - Operation: cache_miss - Processing time: 916ms - RequestID: sqlfuesl92 +2025-06-18T14:42:30.581Z [INFO] payment-service - PUT /api/v1/inventory - Status: 400 - Response time: 819ms - IP: 192.168.46.63 - User: user_1059 - RequestID: yo5dk6kngsd +2025-06-18T14:42:30.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1066 - IP: 192.168.189.103 - RequestID: 3qenvbr4vzi +2025-06-18T14:42:30.781Z [TRACE] order-service - Database SELECT on products - Execution time: 410ms - Rows affected: 10 - RequestID: 6bouimg4k2p +2025-06-18T14:42:30.881Z [DEBUG] user-service - POST /api/v1/users - Status: 401 - Response time: 785ms - IP: 192.168.187.199 - User: user_1034 - RequestID: q99ngm9mqw +2025-06-18T14:42:30.981Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 311ms - Rows affected: 92 - RequestID: b5r08mdqvw4 +2025-06-18T14:42:31.081Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1004ms - IP: 192.168.79.141 - User: user_1005 - RequestID: 5jx6fm7znnn +2025-06-18T14:42:31.181Z [TRACE] user-service - PATCH /api/v1/orders - Status: 503 - Response time: 265ms - IP: 192.168.144.38 - User: user_1029 - RequestID: pit22pq4ybo +2025-06-18T14:42:31.281Z [INFO] order-service - Auth event: login_success - User: user_1044 - IP: 192.168.13.72 - RequestID: d6ce5ea5868 +2025-06-18T14:42:31.381Z [INFO] order-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.133.7 - RequestID: i0byygj799 +2025-06-18T14:42:31.481Z [INFO] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 904ms - IP: 192.168.138.123 - User: user_1008 - RequestID: 1nvpuuyi5ar +2025-06-18T14:42:31.581Z [TRACE] order-service - Database UPDATE on orders - Execution time: 221ms - Rows affected: 93 - RequestID: ru5funlm5os +2025-06-18T14:42:31.681Z [TRACE] auth-service - Auth event: password_change - User: user_1084 - IP: 192.168.194.41 - RequestID: l3f6xcjsxid +2025-06-18T14:42:31.781Z [TRACE] order-service - DELETE /api/v1/orders - Status: 503 - Response time: 1015ms - IP: 192.168.53.133 - User: user_1087 - RequestID: jq2qikk6knd +2025-06-18T14:42:31.881Z [TRACE] notification-service - Operation: cache_hit - Processing time: 878ms - RequestID: hqwlkzhxz3l +2025-06-18T14:42:31.981Z [INFO] payment-service - POST /api/v1/auth/login - Status: 403 - Response time: 1845ms - IP: 192.168.79.116 - User: user_1099 - RequestID: 1fislwgi3k6 +2025-06-18T14:42:32.081Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 549ms - RequestID: ds38uwrgr6n +2025-06-18T14:42:32.181Z [TRACE] auth-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.240.169 - RequestID: o2o03j8on9a +2025-06-18T14:42:32.281Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 368ms - Rows affected: 34 - RequestID: 1ohprjzweg8 +2025-06-18T14:42:32.381Z [INFO] inventory-service - Operation: order_created - Processing time: 374ms - RequestID: c55zjp8upvb +2025-06-18T14:42:32.481Z [INFO] user-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.211.72 - RequestID: kxdu5qbmcd +2025-06-18T14:42:32.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 490ms - RequestID: bul14p6bz5b +2025-06-18T14:42:32.681Z [TRACE] order-service - Database UPDATE on orders - Execution time: 378ms - Rows affected: 30 - RequestID: a9l3u72puk +2025-06-18T14:42:32.781Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1242ms - IP: 192.168.189.103 - User: user_1025 - RequestID: sdqecnjv3p +2025-06-18T14:42:32.881Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1007 - IP: 192.168.141.100 - RequestID: pviachuq0q +2025-06-18T14:42:32.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 371ms - RequestID: 726xthmmxjv +2025-06-18T14:42:33.081Z [INFO] inventory-service - POST /api/v1/orders - Status: 403 - Response time: 945ms - IP: 192.168.97.87 - User: user_1006 - RequestID: o45vvoz9td +2025-06-18T14:42:33.181Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 581ms - RequestID: 4qfkz116g2d +2025-06-18T14:42:33.281Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 376ms - Rows affected: 75 - RequestID: 5a8x6yk1wst +2025-06-18T14:42:33.381Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.227.233 - RequestID: 97fsbk1omo8 +2025-06-18T14:42:33.481Z [INFO] auth-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.133.7 - RequestID: 3qgmr9q3091 +2025-06-18T14:42:33.581Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 919ms - IP: 192.168.181.225 - User: user_1027 - RequestID: by8m2xmp9lj +2025-06-18T14:42:33.681Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 226ms - Rows affected: 58 - RequestID: xmc1shjvja9 +2025-06-18T14:42:33.781Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 401 - Response time: 181ms - IP: 192.168.46.63 - User: user_1074 - RequestID: e5jf2nw5fd +2025-06-18T14:42:33.881Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 108ms - Rows affected: 47 - RequestID: expguerhku +2025-06-18T14:42:33.981Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 487ms - Rows affected: 50 - RequestID: 1p2qh2d441n +2025-06-18T14:42:34.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 964ms - RequestID: 1t8y67mvu9j +2025-06-18T14:42:34.181Z [TRACE] user-service - Auth event: login_success - User: user_1098 - IP: 192.168.167.32 - RequestID: e3b1bzi6jx +2025-06-18T14:42:34.281Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 323ms - Rows affected: 35 - RequestID: 0pooa4lr9zl +2025-06-18T14:42:34.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.170.215 - RequestID: c5fljorx6bf +2025-06-18T14:42:34.481Z [TRACE] notification-service - Auth event: password_change - User: user_1026 - IP: 192.168.158.144 - RequestID: y9tdf2edyyh +2025-06-18T14:42:34.581Z [TRACE] user-service - Operation: cache_hit - Processing time: 354ms - RequestID: 6cp9lbrkoi5 +2025-06-18T14:42:34.681Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 404 - Response time: 1355ms - IP: 192.168.14.77 - User: user_1055 - RequestID: nadvvm3kqo +2025-06-18T14:42:34.781Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 222ms - Rows affected: 9 - RequestID: fxbymp9bjv9 +2025-06-18T14:42:34.881Z [INFO] notification-service - POST /api/v1/users - Status: 201 - Response time: 823ms - IP: 192.168.13.72 - User: user_1067 - RequestID: nsk9io9x86 +2025-06-18T14:42:34.981Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 261ms - RequestID: 49u430s28zq +2025-06-18T14:42:35.081Z [TRACE] inventory-service - Database INSERT on users - Execution time: 432ms - Rows affected: 16 - RequestID: fueusz8ka28 +2025-06-18T14:42:35.181Z [INFO] inventory-service - GET /api/v1/inventory - Status: 400 - Response time: 816ms - IP: 192.168.227.233 - User: user_1008 - RequestID: ltq3ep65r4g +2025-06-18T14:42:35.281Z [DEBUG] user-service - POST /api/v1/users - Status: 500 - Response time: 667ms - IP: 192.168.240.169 - User: user_1094 - RequestID: q2rqw3po3oi +2025-06-18T14:42:35.381Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 51ms - Rows affected: 34 - RequestID: efpp9inhy7g +2025-06-18T14:42:35.481Z [DEBUG] auth-service - Database SELECT on users - Execution time: 13ms - Rows affected: 36 - RequestID: tvifdmt2nni +2025-06-18T14:42:35.581Z [INFO] inventory-service - GET /api/v1/inventory - Status: 404 - Response time: 770ms - IP: 192.168.28.146 - User: user_1037 - RequestID: 7d2dew4l3rd +2025-06-18T14:42:35.681Z [DEBUG] notification-service - Auth event: password_change - User: user_1024 - IP: 192.168.79.116 - RequestID: hv8g8jjulgp +2025-06-18T14:42:35.781Z [INFO] order-service - Auth event: login_failed - User: user_1007 - IP: 192.168.104.37 - RequestID: l5iusb9id1 +2025-06-18T14:42:35.881Z [INFO] user-service - Auth event: logout - User: user_1084 - IP: 192.168.240.169 - RequestID: c9pe59o74bd +2025-06-18T14:42:35.981Z [INFO] user-service - Operation: order_created - Processing time: 710ms - RequestID: zds0wfvncw +2025-06-18T14:42:36.081Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 51ms - Rows affected: 23 - RequestID: pzdkh2xbicd +2025-06-18T14:42:36.181Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 394ms - Rows affected: 26 - RequestID: 4iy2z07uich +2025-06-18T14:42:36.281Z [DEBUG] user-service - Operation: payment_processed - Processing time: 754ms - RequestID: 31gc4eqbr9c +2025-06-18T14:42:36.381Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 259ms - RequestID: nvbdl7txt8l +2025-06-18T14:42:36.481Z [INFO] order-service - Operation: payment_processed - Processing time: 553ms - RequestID: avg86uvjx9 +2025-06-18T14:42:36.581Z [TRACE] order-service - PATCH /api/v1/users - Status: 503 - Response time: 1486ms - IP: 192.168.229.123 - User: user_1046 - RequestID: c0heo45xpf +2025-06-18T14:42:36.681Z [TRACE] notification-service - DELETE /api/v1/users - Status: 503 - Response time: 1169ms - IP: 192.168.30.79 - User: user_1068 - RequestID: 12nl679akwek +2025-06-18T14:42:36.781Z [DEBUG] user-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.46.63 - RequestID: 86iwfqei1md +2025-06-18T14:42:36.881Z [INFO] auth-service - PATCH /api/v1/users - Status: 401 - Response time: 1950ms - IP: 192.168.158.144 - User: user_1040 - RequestID: 2n17zael4lp +2025-06-18T14:42:36.981Z [TRACE] payment-service - DELETE /api/v1/users - Status: 400 - Response time: 191ms - IP: 192.168.79.141 - User: user_1010 - RequestID: 5o47yh1pkch +2025-06-18T14:42:37.081Z [TRACE] user-service - Database SELECT on users - Execution time: 417ms - Rows affected: 62 - RequestID: tif6mox7dmh +2025-06-18T14:42:37.181Z [INFO] inventory-service - Auth event: login_success - User: user_1033 - IP: 192.168.196.226 - RequestID: hgr6630ezlj +2025-06-18T14:42:37.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 776ms - RequestID: z3pnetg1du8 +2025-06-18T14:42:37.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.247.134 - RequestID: 7nkosokp272 +2025-06-18T14:42:37.481Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 401 - Response time: 343ms - IP: 192.168.1.152 - User: user_1081 - RequestID: wfykprx5y0a +2025-06-18T14:42:37.581Z [DEBUG] payment-service - Database DELETE on users - Execution time: 39ms - Rows affected: 45 - RequestID: 6gzdixm09pj +2025-06-18T14:42:37.681Z [DEBUG] order-service - Auth event: password_change - User: user_1074 - IP: 192.168.235.117 - RequestID: d1apgthea1 +2025-06-18T14:42:37.781Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 330ms - IP: 192.168.64.33 - User: user_1023 - RequestID: 0quqjn4sqkro +2025-06-18T14:42:37.881Z [INFO] notification-service - Operation: order_created - Processing time: 494ms - RequestID: 9icmrcwseul +2025-06-18T14:42:37.981Z [DEBUG] notification-service - Database INSERT on products - Execution time: 86ms - Rows affected: 68 - RequestID: il04b5mbgbk +2025-06-18T14:42:38.081Z [INFO] payment-service - Database UPDATE on products - Execution time: 447ms - Rows affected: 82 - RequestID: pci5dy4g5x +2025-06-18T14:42:38.181Z [TRACE] auth-service - GET /api/v1/payments - Status: 403 - Response time: 417ms - IP: 192.168.147.171 - User: user_1044 - RequestID: s55q91vtgl +2025-06-18T14:42:38.281Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 503 - Response time: 1357ms - IP: 192.168.181.225 - User: user_1036 - RequestID: mj4zljkv9ub +2025-06-18T14:42:38.381Z [TRACE] payment-service - Operation: email_sent - Processing time: 544ms - RequestID: 9kq9no3ir9 +2025-06-18T14:42:38.481Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 606ms - RequestID: j39wnf3b59 +2025-06-18T14:42:38.581Z [INFO] notification-service - PUT /api/v1/orders - Status: 502 - Response time: 1931ms - IP: 192.168.133.7 - User: user_1011 - RequestID: 0i37k2rtms5 +2025-06-18T14:42:38.681Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 403 - Response time: 1906ms - IP: 192.168.141.100 - User: user_1039 - RequestID: a08t54x5ka +2025-06-18T14:42:38.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.240.169 - RequestID: zipz6ha7bbm +2025-06-18T14:42:38.881Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 400 - Response time: 1632ms - IP: 192.168.133.7 - User: user_1096 - RequestID: 5oiv81o91w2 +2025-06-18T14:42:38.981Z [DEBUG] notification-service - PUT /api/v1/users - Status: 400 - Response time: 1183ms - IP: 192.168.32.38 - User: user_1013 - RequestID: i05yfk5dre +2025-06-18T14:42:39.081Z [INFO] auth-service - GET /api/v1/orders - Status: 201 - Response time: 414ms - IP: 192.168.79.116 - User: user_1019 - RequestID: m1mo6svwt2r +2025-06-18T14:42:39.181Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 103ms - Rows affected: 86 - RequestID: j1ofbphvsf +2025-06-18T14:42:39.281Z [INFO] payment-service - GET /api/v1/payments - Status: 500 - Response time: 334ms - IP: 192.168.31.117 - User: user_1073 - RequestID: js861relbts +2025-06-18T14:42:39.381Z [INFO] auth-service - Database DELETE on payments - Execution time: 187ms - Rows affected: 30 - RequestID: cgofc5fo1ns +2025-06-18T14:42:39.481Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 848ms - IP: 192.168.36.218 - User: user_1033 - RequestID: 1wa3onngi3s +2025-06-18T14:42:39.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 751ms - RequestID: dkusxoihjxf +2025-06-18T14:42:39.681Z [DEBUG] auth-service - PUT /api/v1/users - Status: 200 - Response time: 1497ms - IP: 192.168.240.169 - User: user_1030 - RequestID: 4vz4vtnyh1d +2025-06-18T14:42:39.781Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1994ms - IP: 192.168.229.123 - User: user_1045 - RequestID: ujrd00si2cq +2025-06-18T14:42:39.881Z [DEBUG] user-service - Database SELECT on payments - Execution time: 292ms - Rows affected: 83 - RequestID: popdqyl70i +2025-06-18T14:42:39.981Z [DEBUG] order-service - GET /api/v1/payments - Status: 201 - Response time: 289ms - IP: 192.168.79.141 - User: user_1082 - RequestID: 2q6jbj3ca47 +2025-06-18T14:42:40.081Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 514ms - RequestID: rrunving9d +2025-06-18T14:42:40.181Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 502 - Response time: 120ms - IP: 192.168.159.94 - User: user_1083 - RequestID: l5uqe5rrhzc +2025-06-18T14:42:40.281Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 999ms - RequestID: 4x0bt1pphko +2025-06-18T14:42:40.381Z [INFO] order-service - DELETE /api/v1/payments - Status: 500 - Response time: 590ms - IP: 192.168.11.60 - User: user_1035 - RequestID: 6mulfp2dw77 +2025-06-18T14:42:40.481Z [TRACE] order-service - Auth event: logout - User: user_1093 - IP: 192.168.81.206 - RequestID: 3gvtso2s515 +2025-06-18T14:42:40.581Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 223ms - Rows affected: 23 - RequestID: 4ps4fc3p9lh +2025-06-18T14:42:40.681Z [TRACE] user-service - Database DELETE on payments - Execution time: 23ms - Rows affected: 68 - RequestID: esl7my20h4 +2025-06-18T14:42:40.781Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 503 - Response time: 275ms - IP: 192.168.1.152 - User: user_1080 - RequestID: b9jd3kuxn6r +2025-06-18T14:42:40.881Z [DEBUG] user-service - Operation: cache_miss - Processing time: 719ms - RequestID: jjub74jggo +2025-06-18T14:42:40.981Z [DEBUG] notification-service - PUT /api/v1/users - Status: 400 - Response time: 402ms - IP: 192.168.10.184 - User: user_1096 - RequestID: d1ogd27aya8 +2025-06-18T14:42:41.081Z [DEBUG] notification-service - POST /api/v1/orders - Status: 404 - Response time: 897ms - IP: 192.168.158.144 - User: user_1062 - RequestID: ggr0v9orwws +2025-06-18T14:42:41.181Z [TRACE] inventory-service - Auth event: login_success - User: user_1075 - IP: 192.168.240.169 - RequestID: 8sbsolfsu6f +2025-06-18T14:42:41.281Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1861ms - IP: 192.168.240.169 - User: user_1045 - RequestID: 5360r1xzsm +2025-06-18T14:42:41.381Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1071ms - IP: 192.168.229.123 - User: user_1004 - RequestID: xkz1xqrapi8 +2025-06-18T14:42:41.481Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 122ms - Rows affected: 85 - RequestID: 786esoee5q6 +2025-06-18T14:42:41.581Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 232ms - RequestID: oev0k1c7iy +2025-06-18T14:42:41.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 590ms - RequestID: 8xhktxaqiij +2025-06-18T14:42:41.781Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1927ms - IP: 192.168.1.152 - User: user_1005 - RequestID: 3vxot2h8595 +2025-06-18T14:42:41.881Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 364ms - RequestID: gxmtqx6knzd +2025-06-18T14:42:41.981Z [INFO] user-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1539ms - IP: 192.168.11.60 - User: user_1006 - RequestID: 339yhu5cnje +2025-06-18T14:42:42.081Z [TRACE] order-service - Auth event: password_change - User: user_1059 - IP: 192.168.181.225 - RequestID: iro9dejcbvk +2025-06-18T14:42:42.181Z [INFO] user-service - Database DELETE on payments - Execution time: 247ms - Rows affected: 78 - RequestID: c581qsgibt +2025-06-18T14:42:42.281Z [TRACE] payment-service - Operation: order_created - Processing time: 782ms - RequestID: 04nz4ea06kp1 +2025-06-18T14:42:42.381Z [INFO] order-service - Auth event: login_failed - User: user_1017 - IP: 192.168.81.206 - RequestID: m0xkrjr1ur7 +2025-06-18T14:42:42.481Z [INFO] notification-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.100.240 - RequestID: so2gthoyz6 +2025-06-18T14:42:42.581Z [DEBUG] notification-service - Database SELECT on users - Execution time: 401ms - Rows affected: 81 - RequestID: 84t2o81j0zk +2025-06-18T14:42:42.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 170ms - RequestID: td6xypbkuj +2025-06-18T14:42:42.781Z [DEBUG] order-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.211.72 - RequestID: 5xokwzwsokg +2025-06-18T14:42:42.881Z [INFO] auth-service - Operation: cache_miss - Processing time: 517ms - RequestID: ufiluwwb1h +2025-06-18T14:42:42.981Z [TRACE] auth-service - Operation: payment_processed - Processing time: 711ms - RequestID: jebhsqcntca +2025-06-18T14:42:43.081Z [INFO] user-service - DELETE /api/v1/payments - Status: 401 - Response time: 1092ms - IP: 192.168.100.240 - User: user_1036 - RequestID: elkkjdeh5w +2025-06-18T14:42:43.181Z [TRACE] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 216ms - IP: 192.168.170.215 - User: user_1055 - RequestID: wvsxbad4hms +2025-06-18T14:42:43.281Z [TRACE] payment-service - Operation: notification_queued - Processing time: 413ms - RequestID: 5rakj4jfhaf +2025-06-18T14:42:43.381Z [INFO] user-service - Auth event: login_success - User: user_1072 - IP: 192.168.196.226 - RequestID: 91kcbynnu6o +2025-06-18T14:42:43.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.33.76 - RequestID: 9v5osgl5ygp +2025-06-18T14:42:43.581Z [INFO] notification-service - POST /api/v1/payments - Status: 201 - Response time: 793ms - IP: 192.168.227.77 - User: user_1038 - RequestID: 5tvnd1kl295 +2025-06-18T14:42:43.681Z [TRACE] order-service - Auth event: logout - User: user_1069 - IP: 192.168.194.41 - RequestID: nr0ahvhb8a +2025-06-18T14:42:43.781Z [TRACE] user-service - DELETE /api/v1/users - Status: 401 - Response time: 1455ms - IP: 192.168.30.79 - User: user_1016 - RequestID: qv9gaprc1 +2025-06-18T14:42:43.881Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 230ms - RequestID: xqck3ug3zwn +2025-06-18T14:42:43.981Z [DEBUG] payment-service - GET /api/v1/payments - Status: 401 - Response time: 539ms - IP: 192.168.141.100 - User: user_1005 - RequestID: 75w46zvr048 +2025-06-18T14:42:44.081Z [TRACE] notification-service - Auth event: login_success - User: user_1024 - IP: 192.168.64.33 - RequestID: n24mm57enl +2025-06-18T14:42:44.181Z [TRACE] payment-service - Operation: cache_hit - Processing time: 562ms - RequestID: q2m6m9psor +2025-06-18T14:42:44.281Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 502 - Response time: 1298ms - IP: 192.168.144.38 - User: user_1019 - RequestID: q7gwktzolfq +2025-06-18T14:42:44.381Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 449ms - Rows affected: 74 - RequestID: iz57sgxd1e +2025-06-18T14:42:44.481Z [TRACE] notification-service - Auth event: password_change - User: user_1067 - IP: 192.168.79.143 - RequestID: cwgmev0clpk +2025-06-18T14:42:44.581Z [DEBUG] user-service - Operation: cache_miss - Processing time: 296ms - RequestID: 9qocacwcppf +2025-06-18T14:42:44.681Z [INFO] notification-service - POST /api/v1/inventory - Status: 201 - Response time: 1815ms - IP: 192.168.32.38 - User: user_1068 - RequestID: wo1xhocebnp +2025-06-18T14:42:44.781Z [DEBUG] notification-service - GET /api/v1/users - Status: 502 - Response time: 721ms - IP: 192.168.189.103 - User: user_1084 - RequestID: ls1u2b68uw +2025-06-18T14:42:44.881Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 112ms - Rows affected: 71 - RequestID: qd0d6wqhdqk +2025-06-18T14:42:44.981Z [TRACE] user-service - PATCH /api/v1/orders - Status: 500 - Response time: 1185ms - IP: 192.168.211.72 - User: user_1082 - RequestID: 6z3kti0nl1x +2025-06-18T14:42:45.081Z [INFO] inventory-service - DELETE /api/v1/users - Status: 200 - Response time: 546ms - IP: 192.168.53.133 - User: user_1028 - RequestID: gpjtv4gz6k +2025-06-18T14:42:45.181Z [TRACE] payment-service - PUT /api/v1/orders - Status: 500 - Response time: 597ms - IP: 192.168.170.215 - User: user_1062 - RequestID: kxirujyhcfe +2025-06-18T14:42:45.281Z [INFO] auth-service - PUT /api/v1/users - Status: 404 - Response time: 1933ms - IP: 192.168.68.128 - User: user_1060 - RequestID: 6jg3elw9n7i +2025-06-18T14:42:45.381Z [INFO] order-service - Auth event: password_change - User: user_1076 - IP: 192.168.159.94 - RequestID: wu26plkrfo +2025-06-18T14:42:45.481Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 904ms - RequestID: lecsdo3xl98 +2025-06-18T14:42:45.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 992ms - RequestID: cuzd9uuq5h +2025-06-18T14:42:45.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.138.123 - RequestID: 8uorx76ro8d +2025-06-18T14:42:45.781Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 86ms - RequestID: iwzeretb8sp +2025-06-18T14:42:45.881Z [INFO] notification-service - GET /api/v1/payments - Status: 500 - Response time: 558ms - IP: 192.168.100.240 - User: user_1093 - RequestID: 4bv0k6ql0nj +2025-06-18T14:42:45.981Z [INFO] payment-service - Operation: email_sent - Processing time: 902ms - RequestID: ry7xk2clym +2025-06-18T14:42:46.081Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 131ms - RequestID: ntmqycyhnd8 +2025-06-18T14:42:46.181Z [TRACE] order-service - Operation: cache_hit - Processing time: 1007ms - RequestID: hka7w3tv5k5 +2025-06-18T14:42:46.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.196.226 - RequestID: s80q3nhkar +2025-06-18T14:42:46.381Z [INFO] notification-service - PUT /api/v1/inventory - Status: 201 - Response time: 487ms - IP: 192.168.211.72 - User: user_1062 - RequestID: f3k9x5583xh +2025-06-18T14:42:46.481Z [INFO] auth-service - Auth event: password_change - User: user_1045 - IP: 192.168.1.152 - RequestID: pnlmukjby9 +2025-06-18T14:42:46.581Z [INFO] notification-service - Database UPDATE on products - Execution time: 276ms - Rows affected: 93 - RequestID: pjovtmkuy1 +2025-06-18T14:42:46.681Z [TRACE] user-service - PUT /api/v1/payments - Status: 404 - Response time: 1698ms - IP: 192.168.46.63 - User: user_1093 - RequestID: 7wye3itnryu +2025-06-18T14:42:46.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 100ms - RequestID: lu9erezx8nj +2025-06-18T14:42:46.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1098 - IP: 192.168.30.79 - RequestID: oemf5s1lmd +2025-06-18T14:42:46.981Z [INFO] auth-service - Auth event: login_failed - User: user_1063 - IP: 192.168.100.240 - RequestID: p2p1t86ktwb +2025-06-18T14:42:47.081Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 693ms - IP: 192.168.79.116 - User: user_1044 - RequestID: 5j5wlb7eqmj +2025-06-18T14:42:47.181Z [INFO] user-service - Auth event: login_success - User: user_1074 - IP: 192.168.44.5 - RequestID: uf60l6wpom +2025-06-18T14:42:47.281Z [INFO] payment-service - Database SELECT on payments - Execution time: 116ms - Rows affected: 83 - RequestID: jployq46hfc +2025-06-18T14:42:47.381Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 165ms - Rows affected: 83 - RequestID: asn0i18zfra +2025-06-18T14:42:47.481Z [DEBUG] user-service - Database SELECT on users - Execution time: 170ms - Rows affected: 89 - RequestID: rvuql2hykkn +2025-06-18T14:42:47.581Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 131ms - Rows affected: 85 - RequestID: vnqvp0ndzel +2025-06-18T14:42:47.681Z [INFO] auth-service - Auth event: logout - User: user_1005 - IP: 192.168.144.38 - RequestID: bbx75xpy1bn +2025-06-18T14:42:47.781Z [INFO] order-service - Database UPDATE on products - Execution time: 240ms - Rows affected: 71 - RequestID: 3v68mm1dp8n +2025-06-18T14:42:47.881Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 195ms - Rows affected: 72 - RequestID: 08xsp08j6hyw +2025-06-18T14:42:47.981Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 66ms - Rows affected: 0 - RequestID: mwtlkm0m6yq +2025-06-18T14:42:48.081Z [DEBUG] user-service - Auth event: password_change - User: user_1020 - IP: 192.168.158.144 - RequestID: gofbl6l5t1 +2025-06-18T14:42:48.181Z [INFO] auth-service - Database SELECT on sessions - Execution time: 422ms - Rows affected: 71 - RequestID: 3eqq0zjpa89 +2025-06-18T14:42:48.281Z [INFO] notification-service - Database INSERT on orders - Execution time: 330ms - Rows affected: 39 - RequestID: q3t8tlo434q +2025-06-18T14:42:48.381Z [TRACE] notification-service - Database DELETE on orders - Execution time: 145ms - Rows affected: 6 - RequestID: z2k2icrpk9 +2025-06-18T14:42:48.481Z [DEBUG] order-service - Auth event: login_success - User: user_1013 - IP: 192.168.31.117 - RequestID: x44gkp2xe7p +2025-06-18T14:42:48.581Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 19ms - Rows affected: 60 - RequestID: u1z9tugxcj8 +2025-06-18T14:42:48.681Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 236ms - Rows affected: 26 - RequestID: mc9egf9qwt +2025-06-18T14:42:48.781Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 500 - Response time: 111ms - IP: 192.168.14.77 - User: user_1097 - RequestID: 2bn3aauaz1n +2025-06-18T14:42:48.881Z [TRACE] order-service - Operation: cache_hit - Processing time: 631ms - RequestID: 84kk4j6h8qo +2025-06-18T14:42:48.981Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 224ms - RequestID: npx11mgs9rt +2025-06-18T14:42:49.081Z [INFO] user-service - GET /api/v1/inventory - Status: 403 - Response time: 368ms - IP: 192.168.159.94 - User: user_1000 - RequestID: jn3ap2f5cw +2025-06-18T14:42:49.181Z [DEBUG] payment-service - Operation: order_created - Processing time: 430ms - RequestID: 7zylcnr2q4r +2025-06-18T14:42:49.281Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 168ms - RequestID: qoyi8oprdog +2025-06-18T14:42:49.381Z [INFO] user-service - Database UPDATE on payments - Execution time: 140ms - Rows affected: 73 - RequestID: nhql7evm82j +2025-06-18T14:42:49.481Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 868ms - RequestID: iv1aq1dn3br +2025-06-18T14:42:49.581Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 200 - Response time: 1444ms - IP: 192.168.33.76 - User: user_1001 - RequestID: e2jvpozsu8b +2025-06-18T14:42:49.681Z [TRACE] payment-service - Database UPDATE on users - Execution time: 275ms - Rows affected: 87 - RequestID: 2e47zh9hpfh +2025-06-18T14:42:49.781Z [DEBUG] order-service - Database DELETE on products - Execution time: 142ms - Rows affected: 36 - RequestID: ov1j1ht1p7a +2025-06-18T14:42:49.881Z [TRACE] user-service - Auth event: logout - User: user_1052 - IP: 192.168.30.79 - RequestID: unlnlohgfz +2025-06-18T14:42:49.981Z [DEBUG] user-service - Operation: cache_miss - Processing time: 286ms - RequestID: zj00hpzme7h +2025-06-18T14:42:50.081Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 401 - Response time: 1068ms - IP: 192.168.158.144 - User: user_1064 - RequestID: hfkmdc20uva +2025-06-18T14:42:50.181Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 1075ms - IP: 192.168.181.225 - User: user_1001 - RequestID: dpfj8k4t4v +2025-06-18T14:42:50.281Z [TRACE] user-service - Auth event: logout - User: user_1024 - IP: 192.168.68.128 - RequestID: gx7o1xz5tb +2025-06-18T14:42:50.381Z [TRACE] user-service - Auth event: logout - User: user_1006 - IP: 192.168.167.32 - RequestID: 2ue3ruwib2x +2025-06-18T14:42:50.481Z [TRACE] payment-service - PUT /api/v1/users - Status: 503 - Response time: 68ms - IP: 192.168.141.100 - User: user_1006 - RequestID: 0n3bvtap1tjn +2025-06-18T14:42:50.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 754ms - RequestID: pkt9cv1q0f +2025-06-18T14:42:50.681Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 500 - Response time: 891ms - IP: 192.168.240.169 - User: user_1071 - RequestID: bls5iovfasr +2025-06-18T14:42:50.781Z [INFO] order-service - Operation: inventory_updated - Processing time: 191ms - RequestID: rzu6vc4i5wr +2025-06-18T14:42:50.881Z [INFO] order-service - Operation: notification_queued - Processing time: 968ms - RequestID: o48n5x39ioh +2025-06-18T14:42:50.981Z [INFO] order-service - Database DELETE on orders - Execution time: 71ms - Rows affected: 45 - RequestID: 3vid1nruk5e +2025-06-18T14:42:51.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.13.72 - RequestID: 6lmp10smcfx +2025-06-18T14:42:51.181Z [DEBUG] order-service - Auth event: logout - User: user_1052 - IP: 192.168.10.184 - RequestID: 223spr8dgm3 +2025-06-18T14:42:51.281Z [INFO] user-service - PUT /api/v1/inventory - Status: 500 - Response time: 1309ms - IP: 192.168.68.128 - User: user_1064 - RequestID: svmcd0iuokj +2025-06-18T14:42:51.381Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 318ms - Rows affected: 74 - RequestID: zbabtwr46dk +2025-06-18T14:42:51.481Z [INFO] order-service - Database UPDATE on payments - Execution time: 167ms - Rows affected: 70 - RequestID: jy4ws7r5ohb +2025-06-18T14:42:51.581Z [INFO] auth-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.13.72 - RequestID: 8kgqj7cx09a +2025-06-18T14:42:51.681Z [INFO] user-service - Auth event: login_success - User: user_1043 - IP: 192.168.159.94 - RequestID: cl0clowxmot +2025-06-18T14:42:51.781Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1587ms - IP: 192.168.227.77 - User: user_1021 - RequestID: neplieyj4ni +2025-06-18T14:42:51.881Z [TRACE] auth-service - PUT /api/v1/orders - Status: 200 - Response time: 1541ms - IP: 192.168.53.133 - User: user_1033 - RequestID: w4sdyh5nu89 +2025-06-18T14:42:51.981Z [TRACE] inventory-service - Database DELETE on users - Execution time: 184ms - Rows affected: 72 - RequestID: j08wb9kf4af +2025-06-18T14:42:52.081Z [DEBUG] order-service - Auth event: password_change - User: user_1039 - IP: 192.168.32.38 - RequestID: 8spvlu1ldm4 +2025-06-18T14:42:52.181Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 10ms - Rows affected: 29 - RequestID: pddx6qmsnw +2025-06-18T14:42:52.281Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 283ms - Rows affected: 42 - RequestID: g9dsgptwv7k +2025-06-18T14:42:52.381Z [INFO] notification-service - Operation: payment_processed - Processing time: 280ms - RequestID: ch67r5fzz9e +2025-06-18T14:42:52.481Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 400 - Response time: 1539ms - IP: 192.168.159.94 - User: user_1023 - RequestID: chbn45rq2jf +2025-06-18T14:42:52.581Z [INFO] auth-service - Operation: cache_hit - Processing time: 152ms - RequestID: 8utf14s2os +2025-06-18T14:42:52.681Z [INFO] auth-service - Database UPDATE on products - Execution time: 349ms - Rows affected: 61 - RequestID: 1fw036qwr9w +2025-06-18T14:42:52.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 827ms - RequestID: df2kql02k1 +2025-06-18T14:42:52.881Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 401 - Response time: 1014ms - IP: 192.168.36.218 - User: user_1031 - RequestID: 9apcvso88ng +2025-06-18T14:42:52.981Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 502 - Response time: 144ms - IP: 192.168.189.103 - User: user_1064 - RequestID: arq12p246de +2025-06-18T14:42:53.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1086 - IP: 192.168.187.199 - RequestID: ratbv8nfg7 +2025-06-18T14:42:53.181Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 370ms - RequestID: ljstsh7mazp +2025-06-18T14:42:53.281Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 183ms - Rows affected: 10 - RequestID: x2wd4z8mi0q +2025-06-18T14:42:53.381Z [TRACE] inventory-service - Auth event: login_success - User: user_1053 - IP: 192.168.227.77 - RequestID: 49kdqk2vovr +2025-06-18T14:42:53.481Z [DEBUG] auth-service - Operation: order_created - Processing time: 579ms - RequestID: 0t7idvsbwvvb +2025-06-18T14:42:53.581Z [INFO] payment-service - PUT /api/v1/orders - Status: 400 - Response time: 502ms - IP: 192.168.187.199 - User: user_1020 - RequestID: mrng26f3bgo +2025-06-18T14:42:53.681Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 502 - Response time: 1847ms - IP: 192.168.64.33 - User: user_1041 - RequestID: 25mlpr47ahq +2025-06-18T14:42:53.781Z [INFO] payment-service - Database SELECT on orders - Execution time: 109ms - Rows affected: 21 - RequestID: tkp8akdzvt +2025-06-18T14:42:53.881Z [INFO] order-service - Database INSERT on users - Execution time: 270ms - Rows affected: 27 - RequestID: k2ogu3gepon +2025-06-18T14:42:53.981Z [INFO] inventory-service - GET /api/v1/orders - Status: 401 - Response time: 1721ms - IP: 192.168.28.146 - User: user_1083 - RequestID: yv3pwtvr8r +2025-06-18T14:42:54.081Z [TRACE] auth-service - Auth event: password_change - User: user_1062 - IP: 192.168.187.199 - RequestID: 52974akkdri +2025-06-18T14:42:54.181Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 10ms - IP: 192.168.229.123 - User: user_1078 - RequestID: 6dap88ysfih +2025-06-18T14:42:54.281Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 135ms - RequestID: 1b9wo4vdh0t +2025-06-18T14:42:54.381Z [DEBUG] inventory-service - Operation: order_created - Processing time: 626ms - RequestID: p8lwa2pdpj +2025-06-18T14:42:54.481Z [TRACE] payment-service - Auth event: login_success - User: user_1089 - IP: 192.168.32.38 - RequestID: zabqj9wojv +2025-06-18T14:42:54.581Z [TRACE] inventory-service - Auth event: logout - User: user_1051 - IP: 192.168.100.240 - RequestID: 3kt35rq2s3i +2025-06-18T14:42:54.681Z [DEBUG] order-service - Operation: email_sent - Processing time: 668ms - RequestID: 68lw5d0ozhm +2025-06-18T14:42:54.781Z [TRACE] notification-service - Operation: order_created - Processing time: 79ms - RequestID: btqzf0omnf8 +2025-06-18T14:42:54.881Z [TRACE] notification-service - Operation: cache_hit - Processing time: 317ms - RequestID: jjigvv3w9c +2025-06-18T14:42:54.981Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 225ms - Rows affected: 57 - RequestID: bk1tle2wiu +2025-06-18T14:42:55.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 67ms - RequestID: tnlj7djd1bk +2025-06-18T14:42:55.181Z [TRACE] user-service - Auth event: logout - User: user_1069 - IP: 192.168.133.7 - RequestID: eqkrillmf95 +2025-06-18T14:42:55.281Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 500 - Response time: 1711ms - IP: 192.168.10.184 - User: user_1050 - RequestID: 0l8uw0sxshp +2025-06-18T14:42:55.381Z [INFO] order-service - Auth event: logout - User: user_1076 - IP: 192.168.174.114 - RequestID: 0d8a9wi1s7su +2025-06-18T14:42:55.481Z [INFO] order-service - Database SELECT on sessions - Execution time: 235ms - Rows affected: 28 - RequestID: dkm55sdm4qt +2025-06-18T14:42:55.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.33.76 - RequestID: jru07kcdqrj +2025-06-18T14:42:55.681Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 200 - Response time: 1514ms - IP: 192.168.1.152 - User: user_1013 - RequestID: ry16pnjdkh +2025-06-18T14:42:55.781Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1014ms - IP: 192.168.36.218 - User: user_1072 - RequestID: 4kstbd2f66i +2025-06-18T14:42:55.881Z [DEBUG] user-service - Operation: notification_queued - Processing time: 548ms - RequestID: 49pu9710uwm +2025-06-18T14:42:55.981Z [TRACE] inventory-service - Operation: email_sent - Processing time: 554ms - RequestID: d5maifoatmt +2025-06-18T14:42:56.081Z [INFO] notification-service - Auth event: logout - User: user_1073 - IP: 192.168.97.87 - RequestID: hb0qfcv9d9n +2025-06-18T14:42:56.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 637ms - RequestID: 5l2vkvnh4r +2025-06-18T14:42:56.281Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 308ms - Rows affected: 10 - RequestID: jxwrycap0xg +2025-06-18T14:42:56.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1050 - IP: 192.168.81.206 - RequestID: yzt65wbcvh +2025-06-18T14:42:56.481Z [INFO] order-service - Operation: payment_processed - Processing time: 100ms - RequestID: l6ezojdd28m +2025-06-18T14:42:56.581Z [TRACE] notification-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.68.128 - RequestID: rx4c4uudns +2025-06-18T14:42:56.681Z [TRACE] user-service - Database UPDATE on payments - Execution time: 41ms - Rows affected: 25 - RequestID: wpejggbepee +2025-06-18T14:42:56.781Z [DEBUG] order-service - Database SELECT on products - Execution time: 274ms - Rows affected: 20 - RequestID: h2dcyvjpbel +2025-06-18T14:42:56.881Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 502 - Response time: 597ms - IP: 192.168.79.116 - User: user_1001 - RequestID: xtc4yv1qp6 +2025-06-18T14:42:56.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 521ms - RequestID: ypaxw4d7ze +2025-06-18T14:42:57.081Z [DEBUG] order-service - Auth event: logout - User: user_1000 - IP: 192.168.81.206 - RequestID: zxef0n18z8g +2025-06-18T14:42:57.181Z [TRACE] order-service - Operation: email_sent - Processing time: 854ms - RequestID: w2n9w1rt6f +2025-06-18T14:42:57.281Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1966ms - IP: 192.168.196.226 - User: user_1063 - RequestID: ijbqw15rx1l +2025-06-18T14:42:57.381Z [TRACE] inventory-service - Auth event: logout - User: user_1095 - IP: 192.168.211.72 - RequestID: xm11b33g0b +2025-06-18T14:42:57.481Z [INFO] auth-service - POST /api/v1/orders - Status: 200 - Response time: 437ms - IP: 192.168.100.240 - User: user_1072 - RequestID: 0aj6lzrcnf35 +2025-06-18T14:42:57.581Z [INFO] order-service - Auth event: login_failed - User: user_1024 - IP: 192.168.44.5 - RequestID: 9yccpxtjmjh +2025-06-18T14:42:57.681Z [TRACE] order-service - DELETE /api/v1/payments - Status: 404 - Response time: 1413ms - IP: 192.168.53.133 - User: user_1016 - RequestID: uidd8t4teff +2025-06-18T14:42:57.781Z [INFO] inventory-service - Operation: payment_processed - Processing time: 324ms - RequestID: na4ot57padd +2025-06-18T14:42:57.881Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.32.38 - RequestID: 4s03z2bq549 +2025-06-18T14:42:57.981Z [DEBUG] user-service - Auth event: logout - User: user_1064 - IP: 192.168.113.218 - RequestID: r64rfg531f +2025-06-18T14:42:58.081Z [DEBUG] inventory-service - Auth event: logout - User: user_1027 - IP: 192.168.159.94 - RequestID: xznd42wlu5q +2025-06-18T14:42:58.181Z [INFO] payment-service - Auth event: password_change - User: user_1011 - IP: 192.168.64.33 - RequestID: kc06ym4orkn +2025-06-18T14:42:58.281Z [INFO] payment-service - Auth event: logout - User: user_1071 - IP: 192.168.144.38 - RequestID: w2yz87d3ccb +2025-06-18T14:42:58.381Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1501ms - IP: 192.168.104.37 - User: user_1072 - RequestID: 4l4c2z9oits +2025-06-18T14:42:58.481Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1502ms - IP: 192.168.189.103 - User: user_1041 - RequestID: i3i4rws642 +2025-06-18T14:42:58.581Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 496ms - Rows affected: 15 - RequestID: kw8xthf5g0n +2025-06-18T14:42:58.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.242.165 - RequestID: 1m95zwq91jz +2025-06-18T14:42:58.781Z [DEBUG] user-service - Operation: email_sent - Processing time: 959ms - RequestID: 1sr5olenav1 +2025-06-18T14:42:58.881Z [INFO] user-service - Operation: inventory_updated - Processing time: 910ms - RequestID: z4690xybih +2025-06-18T14:42:58.981Z [INFO] auth-service - GET /api/v1/payments - Status: 201 - Response time: 813ms - IP: 192.168.247.134 - User: user_1033 - RequestID: 216w96qbxkb +2025-06-18T14:42:59.081Z [TRACE] user-service - Operation: notification_queued - Processing time: 327ms - RequestID: 5w2r5nvqfr6 +2025-06-18T14:42:59.181Z [TRACE] user-service - PATCH /api/v1/users - Status: 404 - Response time: 820ms - IP: 192.168.189.103 - User: user_1046 - RequestID: dx3r0juo63i +2025-06-18T14:42:59.281Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 400 - Response time: 106ms - IP: 192.168.141.100 - User: user_1043 - RequestID: jfhut1k1r6 +2025-06-18T14:42:59.381Z [TRACE] notification-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.113.218 - RequestID: ot801az15sg +2025-06-18T14:42:59.481Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 736ms - IP: 192.168.187.199 - User: user_1097 - RequestID: nucy8r49a29 +2025-06-18T14:42:59.581Z [INFO] notification-service - Operation: webhook_sent - Processing time: 67ms - RequestID: j51pg9y2q8n +2025-06-18T14:42:59.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 281ms - RequestID: ghugfmy3oze +2025-06-18T14:42:59.781Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 200 - Response time: 1112ms - IP: 192.168.158.144 - User: user_1053 - RequestID: iw7fcibzy0f +2025-06-18T14:42:59.881Z [TRACE] user-service - Operation: payment_processed - Processing time: 720ms - RequestID: f6g9il92vyq +2025-06-18T14:42:59.981Z [INFO] auth-service - Auth event: login_success - User: user_1018 - IP: 192.168.167.32 - RequestID: l2l3jp18j2t +2025-06-18T14:43:00.081Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 478ms - Rows affected: 15 - RequestID: uip22g84ri +2025-06-18T14:43:00.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1077 - IP: 192.168.79.116 - RequestID: g8e5xryqkmd +2025-06-18T14:43:00.281Z [TRACE] auth-service - Database INSERT on payments - Execution time: 206ms - Rows affected: 23 - RequestID: s9y6etygzuj +2025-06-18T14:43:00.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 715ms - RequestID: injyylrau69 +2025-06-18T14:43:00.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.229.123 - RequestID: 75onqqs5zn +2025-06-18T14:43:00.581Z [DEBUG] user-service - Database INSERT on orders - Execution time: 269ms - Rows affected: 28 - RequestID: cfw0ojt1oek +2025-06-18T14:43:00.681Z [TRACE] user-service - Database UPDATE on payments - Execution time: 63ms - Rows affected: 19 - RequestID: kk3l3ny7y1 +2025-06-18T14:43:00.781Z [DEBUG] user-service - Database SELECT on products - Execution time: 438ms - Rows affected: 26 - RequestID: b425zhbyogc +2025-06-18T14:43:00.881Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 767ms - RequestID: k3l2tekyeu +2025-06-18T14:43:00.981Z [INFO] payment-service - POST /api/v1/auth/login - Status: 403 - Response time: 1845ms - IP: 192.168.194.41 - User: user_1079 - RequestID: 59mmlqy4igq +2025-06-18T14:43:01.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.113.218 - RequestID: apeewxrhh39 +2025-06-18T14:43:01.181Z [TRACE] notification-service - Auth event: password_change - User: user_1099 - IP: 192.168.36.218 - RequestID: rz47pd3ni1i +2025-06-18T14:43:01.281Z [DEBUG] payment-service - GET /api/v1/users - Status: 502 - Response time: 1012ms - IP: 192.168.68.158 - User: user_1065 - RequestID: pynr4qabd88 +2025-06-18T14:43:01.381Z [DEBUG] order-service - Operation: cache_hit - Processing time: 266ms - RequestID: dhk3i3znlq8 +2025-06-18T14:43:01.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.11.60 - RequestID: mb50ssnyk8 +2025-06-18T14:43:01.581Z [DEBUG] order-service - Operation: notification_queued - Processing time: 933ms - RequestID: xfx4l2unnv9 +2025-06-18T14:43:01.681Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 928ms - RequestID: 5ijxgqambyj +2025-06-18T14:43:01.781Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 138ms - Rows affected: 51 - RequestID: 1ppow9e627i +2025-06-18T14:43:01.881Z [TRACE] order-service - Operation: notification_queued - Processing time: 506ms - RequestID: 8d8elxa3pi +2025-06-18T14:43:01.981Z [INFO] user-service - Database UPDATE on sessions - Execution time: 245ms - Rows affected: 50 - RequestID: ygvczhfsbmj +2025-06-18T14:43:02.081Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 298ms - Rows affected: 69 - RequestID: 3nwtcjnm2jq +2025-06-18T14:43:02.181Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 403 - Response time: 1591ms - IP: 192.168.30.79 - User: user_1034 - RequestID: qm8w9b40sh +2025-06-18T14:43:02.281Z [INFO] auth-service - GET /api/v1/auth/login - Status: 404 - Response time: 900ms - IP: 192.168.79.141 - User: user_1092 - RequestID: vjld42bz5u +2025-06-18T14:43:02.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.68.128 - RequestID: et11sl8f6k +2025-06-18T14:43:02.481Z [INFO] auth-service - Operation: cache_miss - Processing time: 412ms - RequestID: agb7k2fuw78 +2025-06-18T14:43:02.581Z [DEBUG] payment-service - Database SELECT on products - Execution time: 43ms - Rows affected: 47 - RequestID: ed6y90dm6dt +2025-06-18T14:43:02.681Z [TRACE] notification-service - Operation: notification_queued - Processing time: 661ms - RequestID: 95q9gcsqh46 +2025-06-18T14:43:02.781Z [INFO] auth-service - Database DELETE on products - Execution time: 363ms - Rows affected: 83 - RequestID: v2hc2g4tk98 +2025-06-18T14:43:02.881Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 384ms - Rows affected: 6 - RequestID: 59w2am3f5nv +2025-06-18T14:43:02.981Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 540ms - IP: 192.168.14.77 - User: user_1075 - RequestID: t5ybzbve7wr +2025-06-18T14:43:03.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 621ms - RequestID: c8kclj32m6 +2025-06-18T14:43:03.181Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 186ms - Rows affected: 84 - RequestID: w0owxqxbja +2025-06-18T14:43:03.281Z [TRACE] order-service - Operation: order_created - Processing time: 892ms - RequestID: djcalm7ic2 +2025-06-18T14:43:03.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.158.144 - RequestID: 7s70h497h96 +2025-06-18T14:43:03.481Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 704ms - IP: 192.168.170.215 - User: user_1083 - RequestID: ss4mlb49r8 +2025-06-18T14:43:03.581Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.30.79 - RequestID: 1yyws8n54tr +2025-06-18T14:43:03.681Z [INFO] order-service - Database DELETE on products - Execution time: 459ms - Rows affected: 72 - RequestID: 28idmk4m2jx +2025-06-18T14:43:03.781Z [INFO] user-service - Auth event: login_failed - User: user_1065 - IP: 192.168.46.63 - RequestID: 2lk8yzb6cec +2025-06-18T14:43:03.881Z [DEBUG] order-service - Operation: payment_processed - Processing time: 590ms - RequestID: lytu2kxvcyh +2025-06-18T14:43:03.981Z [DEBUG] user-service - Auth event: logout - User: user_1071 - IP: 192.168.247.134 - RequestID: fqv09j21spb +2025-06-18T14:43:04.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 591ms - RequestID: tvbzq1vqlu +2025-06-18T14:43:04.181Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 201 - Response time: 692ms - IP: 192.168.144.38 - User: user_1013 - RequestID: z0po5avmoze +2025-06-18T14:43:04.281Z [DEBUG] auth-service - Auth event: logout - User: user_1082 - IP: 192.168.240.169 - RequestID: 6gjvencbhaf +2025-06-18T14:43:04.381Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 503 - Response time: 220ms - IP: 192.168.104.37 - User: user_1036 - RequestID: trf8uwipya +2025-06-18T14:43:04.481Z [TRACE] order-service - Auth event: login_success - User: user_1017 - IP: 192.168.79.141 - RequestID: stemzlxwy7 +2025-06-18T14:43:04.581Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 831ms - RequestID: yrbo4znxy5 +2025-06-18T14:43:04.681Z [TRACE] user-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.235.117 - RequestID: 3yqo6nvm29h +2025-06-18T14:43:04.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.100.240 - RequestID: 063tuiwq6xth +2025-06-18T14:43:04.881Z [INFO] user-service - POST /api/v1/payments - Status: 400 - Response time: 1748ms - IP: 192.168.181.225 - User: user_1040 - RequestID: mgxsp26e3ff +2025-06-18T14:43:04.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 285ms - RequestID: nrs3wumi4ve +2025-06-18T14:43:05.081Z [INFO] payment-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.79.141 - RequestID: emfczpy23f8 +2025-06-18T14:43:05.181Z [INFO] user-service - Operation: cache_hit - Processing time: 467ms - RequestID: 48uo1fal0z8 +2025-06-18T14:43:05.281Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 200 - Response time: 386ms - IP: 192.168.28.146 - User: user_1039 - RequestID: u43sjda7v4 +2025-06-18T14:43:05.381Z [INFO] order-service - Operation: cache_hit - Processing time: 147ms - RequestID: 657yceey5b8 +2025-06-18T14:43:05.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 430ms - RequestID: 004j145930xl9 +2025-06-18T14:43:05.581Z [DEBUG] order-service - Operation: cache_hit - Processing time: 514ms - RequestID: 8w6yg8c8yqu +2025-06-18T14:43:05.681Z [INFO] user-service - Operation: cache_hit - Processing time: 482ms - RequestID: cuirbc9q67 +2025-06-18T14:43:05.781Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 451ms - Rows affected: 35 - RequestID: no6y1rulmx +2025-06-18T14:43:05.881Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 292ms - Rows affected: 73 - RequestID: jcqrxw8eu3 +2025-06-18T14:43:05.981Z [DEBUG] user-service - Database INSERT on payments - Execution time: 31ms - Rows affected: 1 - RequestID: xayuye9bbs +2025-06-18T14:43:06.081Z [INFO] payment-service - Auth event: login_success - User: user_1083 - IP: 192.168.33.76 - RequestID: ciluw7jbz17 +2025-06-18T14:43:06.181Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 403 - Response time: 444ms - IP: 192.168.13.72 - User: user_1066 - RequestID: 3tqcyo03nqy +2025-06-18T14:43:06.281Z [INFO] user-service - Operation: payment_processed - Processing time: 172ms - RequestID: ucql0ktyar +2025-06-18T14:43:06.381Z [INFO] inventory-service - Database UPDATE on users - Execution time: 1ms - Rows affected: 84 - RequestID: 71vl0y6wfpk +2025-06-18T14:43:06.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.14.77 - RequestID: dxzgep35tn9 +2025-06-18T14:43:06.581Z [DEBUG] user-service - Operation: cache_miss - Processing time: 522ms - RequestID: 23um1f3pyt5 +2025-06-18T14:43:06.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 962ms - RequestID: 48its0j6md8 +2025-06-18T14:43:06.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 359ms - RequestID: is5mdzfinc +2025-06-18T14:43:06.881Z [DEBUG] notification-service - Operation: order_created - Processing time: 898ms - RequestID: ylo8as25js +2025-06-18T14:43:06.981Z [INFO] auth-service - Operation: cache_hit - Processing time: 338ms - RequestID: 21oukfxakun +2025-06-18T14:43:07.081Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 189ms - RequestID: rlymqyz0wyg +2025-06-18T14:43:07.181Z [TRACE] user-service - POST /api/v1/auth/login - Status: 200 - Response time: 984ms - IP: 192.168.167.32 - User: user_1053 - RequestID: 9c2d7o1paxn +2025-06-18T14:43:07.281Z [INFO] payment-service - Database INSERT on payments - Execution time: 107ms - Rows affected: 12 - RequestID: g0cj34aysg +2025-06-18T14:43:07.381Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 132ms - IP: 192.168.79.141 - User: user_1027 - RequestID: j49qm68t12p +2025-06-18T14:43:07.481Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 712ms - RequestID: nwjnr4ehiw +2025-06-18T14:43:07.581Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 367ms - Rows affected: 62 - RequestID: e09k53e6h59 +2025-06-18T14:43:07.681Z [TRACE] inventory-service - Operation: order_created - Processing time: 395ms - RequestID: rbrkdysjz6k +2025-06-18T14:43:07.781Z [TRACE] payment-service - Operation: payment_processed - Processing time: 887ms - RequestID: 4vktg2cmb3i +2025-06-18T14:43:07.881Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 396ms - Rows affected: 92 - RequestID: gw2tjk0t3b4 +2025-06-18T14:43:07.981Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 200ms - Rows affected: 31 - RequestID: ns2qmjvqvip +2025-06-18T14:43:08.081Z [TRACE] user-service - Auth event: login_success - User: user_1075 - IP: 192.168.240.169 - RequestID: cq9hdzk00dl +2025-06-18T14:43:08.181Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 400 - Response time: 234ms - IP: 192.168.229.123 - User: user_1013 - RequestID: vu1ou5czqr +2025-06-18T14:43:08.281Z [INFO] user-service - Operation: cache_hit - Processing time: 705ms - RequestID: g3f4ukvtw5 +2025-06-18T14:43:08.381Z [TRACE] inventory-service - GET /api/v1/users - Status: 401 - Response time: 1924ms - IP: 192.168.235.117 - User: user_1031 - RequestID: 9ritb2hccpc +2025-06-18T14:43:08.481Z [TRACE] order-service - GET /api/v1/orders - Status: 400 - Response time: 1207ms - IP: 192.168.68.158 - User: user_1038 - RequestID: w3ar1ux70mj +2025-06-18T14:43:08.581Z [DEBUG] user-service - POST /api/v1/orders - Status: 403 - Response time: 1214ms - IP: 192.168.211.72 - User: user_1035 - RequestID: 9xp8bq3pm2c +2025-06-18T14:43:08.681Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 400 - Response time: 245ms - IP: 192.168.31.117 - User: user_1093 - RequestID: kb5bl4befd +2025-06-18T14:43:08.781Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 608ms - RequestID: babqkyrho9k +2025-06-18T14:43:08.881Z [INFO] notification-service - Operation: notification_queued - Processing time: 906ms - RequestID: funtih5xtoh +2025-06-18T14:43:08.981Z [INFO] notification-service - Operation: order_created - Processing time: 946ms - RequestID: ufedv66wj5 +2025-06-18T14:43:09.081Z [INFO] notification-service - Database UPDATE on payments - Execution time: 230ms - Rows affected: 7 - RequestID: y9pjmvwmup +2025-06-18T14:43:09.181Z [TRACE] user-service - Database DELETE on products - Execution time: 88ms - Rows affected: 87 - RequestID: reu8sqmrwvo +2025-06-18T14:43:09.281Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 485ms - Rows affected: 55 - RequestID: tt2tze7a5oj +2025-06-18T14:43:09.381Z [TRACE] auth-service - Database SELECT on orders - Execution time: 187ms - Rows affected: 95 - RequestID: kg0tink3zvq +2025-06-18T14:43:09.481Z [INFO] payment-service - Database SELECT on payments - Execution time: 30ms - Rows affected: 38 - RequestID: 0fzbsfqzqznl +2025-06-18T14:43:09.581Z [DEBUG] inventory-service - Auth event: logout - User: user_1015 - IP: 192.168.133.7 - RequestID: fjhsau6a5c8 +2025-06-18T14:43:09.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 240ms - RequestID: pn7xra81g99 +2025-06-18T14:43:09.781Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 91ms - Rows affected: 36 - RequestID: vnhe67ca03j +2025-06-18T14:43:09.881Z [INFO] notification-service - Database INSERT on payments - Execution time: 273ms - Rows affected: 3 - RequestID: hhmkb4tvz8r +2025-06-18T14:43:09.981Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 403 - Response time: 1680ms - IP: 192.168.174.114 - User: user_1062 - RequestID: hzcl3cq7bfm +2025-06-18T14:43:10.081Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1654ms - IP: 192.168.227.233 - User: user_1034 - RequestID: p27aw57q5ag +2025-06-18T14:43:10.181Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 68ms - Rows affected: 26 - RequestID: dcnnr3c6h0h +2025-06-18T14:43:10.281Z [INFO] user-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.133.7 - RequestID: 9vz8zdm5p4v +2025-06-18T14:43:10.381Z [TRACE] auth-service - PATCH /api/v1/users - Status: 401 - Response time: 618ms - IP: 192.168.194.41 - User: user_1061 - RequestID: fjtcm28hnel +2025-06-18T14:43:10.481Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.138.123 - RequestID: f5ay36mt5q5 +2025-06-18T14:43:10.581Z [INFO] notification-service - Auth event: password_change - User: user_1081 - IP: 192.168.97.87 - RequestID: ut5owk7ofy +2025-06-18T14:43:10.681Z [TRACE] inventory-service - POST /api/v1/users - Status: 404 - Response time: 1082ms - IP: 192.168.242.165 - User: user_1036 - RequestID: hu3cdtgpi1 +2025-06-18T14:43:10.781Z [INFO] user-service - Database INSERT on users - Execution time: 46ms - Rows affected: 16 - RequestID: 0enox2e9ybt +2025-06-18T14:43:10.881Z [DEBUG] auth-service - GET /api/v1/orders - Status: 400 - Response time: 1790ms - IP: 192.168.68.128 - User: user_1011 - RequestID: f7gmlste96g +2025-06-18T14:43:10.981Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 164ms - Rows affected: 92 - RequestID: ledddhhiemk +2025-06-18T14:43:11.081Z [INFO] inventory-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.232.72 - RequestID: udm517188i +2025-06-18T14:43:11.181Z [TRACE] auth-service - Database INSERT on payments - Execution time: 50ms - Rows affected: 87 - RequestID: fc8rqwqo78e +2025-06-18T14:43:11.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 109ms - RequestID: tua20kocy6 +2025-06-18T14:43:11.381Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 426ms - Rows affected: 8 - RequestID: yujozkvytam +2025-06-18T14:43:11.481Z [TRACE] payment-service - Operation: email_sent - Processing time: 112ms - RequestID: losbb00gdus +2025-06-18T14:43:11.581Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1351ms - IP: 192.168.53.133 - User: user_1047 - RequestID: sqiimchb8v9 +2025-06-18T14:43:11.681Z [TRACE] order-service - Operation: cache_miss - Processing time: 870ms - RequestID: 6mowcqrxkrs +2025-06-18T14:43:11.781Z [TRACE] payment-service - Operation: email_sent - Processing time: 537ms - RequestID: el545lgjjil +2025-06-18T14:43:11.881Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 201 - Response time: 1674ms - IP: 192.168.100.240 - User: user_1000 - RequestID: ssysx6v0td +2025-06-18T14:43:11.981Z [INFO] order-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.138.123 - RequestID: 476v4dxaltz +2025-06-18T14:43:12.081Z [INFO] user-service - Operation: notification_queued - Processing time: 882ms - RequestID: qpvzkjh61m +2025-06-18T14:43:12.181Z [DEBUG] payment-service - Operation: order_created - Processing time: 918ms - RequestID: 33l8am6tf2q +2025-06-18T14:43:12.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.229.123 - RequestID: unkoc5iks1m +2025-06-18T14:43:12.381Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 248ms - RequestID: 3gbusl1mdaz +2025-06-18T14:43:12.481Z [INFO] auth-service - Operation: order_created - Processing time: 165ms - RequestID: 0q0jddv2jfhe +2025-06-18T14:43:12.581Z [INFO] auth-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.104.37 - RequestID: m6xbs6kmd9h +2025-06-18T14:43:12.681Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 400 - Response time: 1432ms - IP: 192.168.79.116 - User: user_1038 - RequestID: 9mltal0wngv +2025-06-18T14:43:12.781Z [INFO] user-service - Auth event: logout - User: user_1053 - IP: 192.168.229.123 - RequestID: 6rcgxwujlax +2025-06-18T14:43:12.881Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 400 - Response time: 785ms - IP: 192.168.104.37 - User: user_1046 - RequestID: ns3h5v0gfwn +2025-06-18T14:43:12.981Z [DEBUG] notification-service - Operation: order_created - Processing time: 564ms - RequestID: z1l1e7c6aye +2025-06-18T14:43:13.081Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 681ms - RequestID: kf9i81kp63m +2025-06-18T14:43:13.181Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 393ms - Rows affected: 64 - RequestID: hcs5cydpr4i +2025-06-18T14:43:13.281Z [INFO] auth-service - PUT /api/v1/payments - Status: 403 - Response time: 491ms - IP: 192.168.181.225 - User: user_1099 - RequestID: 56txwdlltm9 +2025-06-18T14:43:13.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 451ms - RequestID: uhs2eiey99 +2025-06-18T14:43:13.481Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 401 - Response time: 1137ms - IP: 192.168.138.123 - User: user_1011 - RequestID: 6l83twomjn6 +2025-06-18T14:43:13.581Z [INFO] auth-service - Auth event: login_success - User: user_1013 - IP: 192.168.64.33 - RequestID: cw1j6cvp23t +2025-06-18T14:43:13.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 50ms - RequestID: 26yhg05g6p5i +2025-06-18T14:43:13.781Z [TRACE] auth-service - Operation: notification_queued - Processing time: 776ms - RequestID: emokyvh5xv8 +2025-06-18T14:43:13.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1095 - IP: 192.168.227.233 - RequestID: mw1xmnyrzv +2025-06-18T14:43:13.981Z [INFO] order-service - Auth event: password_change - User: user_1042 - IP: 192.168.232.72 - RequestID: 1q6ft9tj8yn +2025-06-18T14:43:14.081Z [INFO] user-service - Database DELETE on products - Execution time: 355ms - Rows affected: 15 - RequestID: 5931ewthssj +2025-06-18T14:43:14.181Z [INFO] payment-service - Database SELECT on sessions - Execution time: 3ms - Rows affected: 98 - RequestID: upn9juevv5d +2025-06-18T14:43:14.281Z [INFO] notification-service - PUT /api/v1/orders - Status: 503 - Response time: 223ms - IP: 192.168.235.117 - User: user_1005 - RequestID: 5detidt1fso +2025-06-18T14:43:14.381Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 187ms - Rows affected: 39 - RequestID: 3l2b0vh0n5o +2025-06-18T14:43:14.481Z [TRACE] order-service - Database INSERT on users - Execution time: 2ms - Rows affected: 68 - RequestID: yijqff9o9zc +2025-06-18T14:43:14.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 88ms - RequestID: 0po9zi7gwhhp +2025-06-18T14:43:14.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.44.5 - RequestID: x4jjqt6091f +2025-06-18T14:43:14.781Z [INFO] auth-service - Database INSERT on orders - Execution time: 249ms - Rows affected: 70 - RequestID: btxa1l4e07 +2025-06-18T14:43:14.881Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1341ms - IP: 192.168.189.103 - User: user_1097 - RequestID: tp62a1e9ty +2025-06-18T14:43:14.981Z [INFO] auth-service - Auth event: logout - User: user_1052 - IP: 192.168.187.199 - RequestID: s781basce7q +2025-06-18T14:43:15.081Z [DEBUG] notification-service - Operation: order_created - Processing time: 923ms - RequestID: 8tcf0lnp929 +2025-06-18T14:43:15.181Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1730ms - IP: 192.168.97.87 - User: user_1023 - RequestID: 4gp4cg5km8h +2025-06-18T14:43:15.281Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 400 - Response time: 437ms - IP: 192.168.187.199 - User: user_1054 - RequestID: mkgyw3ks1q +2025-06-18T14:43:15.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1020 - IP: 192.168.10.184 - RequestID: k6zz8goeqhq +2025-06-18T14:43:15.481Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 63ms - Rows affected: 31 - RequestID: qjjqqw83uw +2025-06-18T14:43:15.581Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 360ms - IP: 192.168.113.218 - User: user_1081 - RequestID: d3xgm23i7re +2025-06-18T14:43:15.681Z [INFO] payment-service - Operation: cache_hit - Processing time: 228ms - RequestID: ufwp9bztud +2025-06-18T14:43:15.781Z [INFO] user-service - Operation: payment_processed - Processing time: 502ms - RequestID: 4gm8dobkpob +2025-06-18T14:43:15.881Z [INFO] payment-service - Operation: notification_queued - Processing time: 461ms - RequestID: uyzbidx164 +2025-06-18T14:43:15.981Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 857ms - RequestID: 61k8x8uxzcm +2025-06-18T14:43:16.081Z [INFO] auth-service - GET /api/v1/users - Status: 201 - Response time: 236ms - IP: 192.168.227.233 - User: user_1020 - RequestID: oqeogc9kceq +2025-06-18T14:43:16.181Z [TRACE] payment-service - Auth event: password_change - User: user_1072 - IP: 192.168.138.123 - RequestID: 7ajs3maq7q +2025-06-18T14:43:16.281Z [TRACE] notification-service - PUT /api/v1/payments - Status: 400 - Response time: 636ms - IP: 192.168.227.77 - User: user_1067 - RequestID: 046ncmhnl0q8 +2025-06-18T14:43:16.381Z [DEBUG] user-service - Database INSERT on orders - Execution time: 125ms - Rows affected: 41 - RequestID: 1xbfr6nkcmb +2025-06-18T14:43:16.481Z [INFO] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 1623ms - IP: 192.168.138.123 - User: user_1024 - RequestID: f71c9d9wxs +2025-06-18T14:43:16.581Z [TRACE] order-service - Operation: order_created - Processing time: 846ms - RequestID: z4re3rtv9g +2025-06-18T14:43:16.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.10.184 - RequestID: s8plf7yhyn +2025-06-18T14:43:16.781Z [TRACE] order-service - Auth event: login_failed - User: user_1020 - IP: 192.168.32.38 - RequestID: yrq2o1vpoz +2025-06-18T14:43:16.881Z [TRACE] order-service - Database DELETE on sessions - Execution time: 155ms - Rows affected: 35 - RequestID: 1ep0qwzjoech +2025-06-18T14:43:16.981Z [INFO] user-service - Auth event: login_failed - User: user_1018 - IP: 192.168.211.72 - RequestID: 0mra2nomewv9 +2025-06-18T14:43:17.081Z [DEBUG] user-service - Database SELECT on users - Execution time: 36ms - Rows affected: 42 - RequestID: c1pj4d13uo +2025-06-18T14:43:17.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 334ms - RequestID: f12v1sg1wcd +2025-06-18T14:43:17.281Z [INFO] user-service - GET /api/v1/auth/logout - Status: 403 - Response time: 837ms - IP: 192.168.170.215 - User: user_1001 - RequestID: ek92k4ne2t9 +2025-06-18T14:43:17.381Z [INFO] payment-service - Auth event: password_change - User: user_1018 - IP: 192.168.133.7 - RequestID: or9ri8jttwc +2025-06-18T14:43:17.481Z [INFO] notification-service - PUT /api/v1/orders - Status: 401 - Response time: 941ms - IP: 192.168.10.184 - User: user_1018 - RequestID: 3w8nal7g7f7 +2025-06-18T14:43:17.581Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 705ms - RequestID: u659whp8qkq +2025-06-18T14:43:17.681Z [TRACE] payment-service - Database UPDATE on products - Execution time: 102ms - Rows affected: 65 - RequestID: sl43qv5cf3i +2025-06-18T14:43:17.781Z [TRACE] notification-service - Database UPDATE on products - Execution time: 252ms - Rows affected: 39 - RequestID: 5cs91fh3qb4 +2025-06-18T14:43:17.881Z [DEBUG] order-service - Auth event: password_change - User: user_1001 - IP: 192.168.68.158 - RequestID: c49uyz3eh8a +2025-06-18T14:43:17.981Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 927ms - IP: 192.168.167.32 - User: user_1006 - RequestID: ybo9e50y8 +2025-06-18T14:43:18.081Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 278ms - Rows affected: 42 - RequestID: j60epuc27pk +2025-06-18T14:43:18.181Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1610ms - IP: 192.168.147.171 - User: user_1001 - RequestID: 0db4wzwh9m3i +2025-06-18T14:43:18.281Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 674ms - IP: 192.168.247.134 - User: user_1059 - RequestID: pzql4f3s0i +2025-06-18T14:43:18.381Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 201 - Response time: 656ms - IP: 192.168.79.116 - User: user_1014 - RequestID: mw65p6kfk0a +2025-06-18T14:43:18.481Z [INFO] order-service - Operation: payment_processed - Processing time: 394ms - RequestID: iiyucsfa1kl +2025-06-18T14:43:18.581Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1803ms - IP: 192.168.97.87 - User: user_1018 - RequestID: 1o6em9csxzq +2025-06-18T14:43:18.681Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 200 - Response time: 1098ms - IP: 192.168.232.72 - User: user_1007 - RequestID: a08vic0ii3t +2025-06-18T14:43:18.781Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 304ms - Rows affected: 37 - RequestID: ugmw2znqjqf +2025-06-18T14:43:18.881Z [INFO] payment-service - Database SELECT on sessions - Execution time: 220ms - Rows affected: 26 - RequestID: cgrcs9qij1t +2025-06-18T14:43:18.981Z [INFO] payment-service - Auth event: login_failed - User: user_1043 - IP: 192.168.68.128 - RequestID: dkfod3maruc +2025-06-18T14:43:19.081Z [INFO] payment-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.158.144 - RequestID: kn68vd32k7 +2025-06-18T14:43:19.181Z [INFO] payment-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.100.240 - RequestID: wdt9f85i7d +2025-06-18T14:43:19.281Z [TRACE] order-service - Database SELECT on products - Execution time: 216ms - Rows affected: 41 - RequestID: v8wkmcw8ncl +2025-06-18T14:43:19.381Z [INFO] auth-service - Operation: webhook_sent - Processing time: 157ms - RequestID: e7u82b2bo27 +2025-06-18T14:43:19.481Z [INFO] notification-service - Database SELECT on orders - Execution time: 379ms - Rows affected: 67 - RequestID: vesjss9cny +2025-06-18T14:43:19.581Z [INFO] inventory-service - Auth event: logout - User: user_1090 - IP: 192.168.79.141 - RequestID: 87dmoynm9o3 +2025-06-18T14:43:19.681Z [TRACE] notification-service - Operation: cache_hit - Processing time: 106ms - RequestID: paf64tf0rwi +2025-06-18T14:43:19.781Z [TRACE] order-service - Database UPDATE on payments - Execution time: 110ms - Rows affected: 11 - RequestID: 62sip5fhoh4 +2025-06-18T14:43:19.881Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 886ms - IP: 192.168.211.72 - User: user_1022 - RequestID: eoqxqqb4wsh +2025-06-18T14:43:19.981Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 416ms - IP: 192.168.1.152 - User: user_1043 - RequestID: qaix9km9f5 +2025-06-18T14:43:20.081Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 394ms - Rows affected: 56 - RequestID: 23yr011m2jt +2025-06-18T14:43:20.181Z [TRACE] inventory-service - Operation: email_sent - Processing time: 537ms - RequestID: fgvq8opy20u +2025-06-18T14:43:20.281Z [INFO] inventory-service - Operation: order_created - Processing time: 939ms - RequestID: 4d1sb3uvt65 +2025-06-18T14:43:20.381Z [INFO] inventory-service - Database INSERT on orders - Execution time: 84ms - Rows affected: 46 - RequestID: 5vefz44p4il +2025-06-18T14:43:20.481Z [INFO] order-service - Operation: payment_processed - Processing time: 389ms - RequestID: 704gubr6dyl +2025-06-18T14:43:20.581Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 29ms - Rows affected: 21 - RequestID: ucr7zj49wx9 +2025-06-18T14:43:20.681Z [DEBUG] notification-service - Auth event: login_success - User: user_1037 - IP: 192.168.159.94 - RequestID: 18fiqx3jk7w +2025-06-18T14:43:20.781Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 369ms - Rows affected: 17 - RequestID: mhva4e2l5n +2025-06-18T14:43:20.881Z [INFO] payment-service - Database UPDATE on payments - Execution time: 457ms - Rows affected: 29 - RequestID: cv9izp6dlkc +2025-06-18T14:43:20.981Z [DEBUG] auth-service - Auth event: logout - User: user_1052 - IP: 192.168.79.143 - RequestID: p5btkcg26ah +2025-06-18T14:43:21.081Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.85.229 - RequestID: fauxywbkpy4 +2025-06-18T14:43:21.181Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1415ms - IP: 192.168.28.146 - User: user_1049 - RequestID: a6dh5uv38z +2025-06-18T14:43:21.281Z [DEBUG] user-service - GET /api/v1/users - Status: 201 - Response time: 112ms - IP: 192.168.159.94 - User: user_1016 - RequestID: 44bgk6xhlh1 +2025-06-18T14:43:21.381Z [DEBUG] order-service - Database UPDATE on products - Execution time: 240ms - Rows affected: 81 - RequestID: lxk3z7s8q1 +2025-06-18T14:43:21.481Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 448ms - Rows affected: 81 - RequestID: 8mhg6o8nf2q +2025-06-18T14:43:21.581Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 404 - Response time: 880ms - IP: 192.168.100.240 - User: user_1019 - RequestID: 2cs0o2fytmx +2025-06-18T14:43:21.681Z [TRACE] payment-service - Database INSERT on users - Execution time: 238ms - Rows affected: 63 - RequestID: 700j4g3t394 +2025-06-18T14:43:21.781Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 298ms - Rows affected: 71 - RequestID: 4o1syihtxz +2025-06-18T14:43:21.881Z [DEBUG] order-service - GET /api/v1/inventory - Status: 503 - Response time: 1897ms - IP: 192.168.170.215 - User: user_1082 - RequestID: 4i18hqapsno +2025-06-18T14:43:21.981Z [DEBUG] user-service - Database INSERT on users - Execution time: 378ms - Rows affected: 14 - RequestID: a2c3tbf65b +2025-06-18T14:43:22.081Z [DEBUG] order-service - POST /api/v1/inventory - Status: 201 - Response time: 537ms - IP: 192.168.232.72 - User: user_1073 - RequestID: wz6pbw0sytb +2025-06-18T14:43:22.181Z [INFO] order-service - Auth event: logout - User: user_1098 - IP: 192.168.14.77 - RequestID: jremjeq9mp9 +2025-06-18T14:43:22.281Z [DEBUG] user-service - Auth event: logout - User: user_1099 - IP: 192.168.85.229 - RequestID: ul216l68pt +2025-06-18T14:43:22.381Z [INFO] payment-service - Operation: email_sent - Processing time: 382ms - RequestID: abzwk911jrw +2025-06-18T14:43:22.481Z [INFO] notification-service - DELETE /api/v1/orders - Status: 404 - Response time: 1724ms - IP: 192.168.158.144 - User: user_1088 - RequestID: j14kd99cx1 +2025-06-18T14:43:22.581Z [INFO] order-service - Operation: notification_queued - Processing time: 913ms - RequestID: wc1gxzn6z5 +2025-06-18T14:43:22.681Z [DEBUG] order-service - GET /api/v1/users - Status: 502 - Response time: 576ms - IP: 192.168.113.218 - User: user_1051 - RequestID: phpoi2iicd +2025-06-18T14:43:22.781Z [TRACE] payment-service - PUT /api/v1/orders - Status: 200 - Response time: 55ms - IP: 192.168.247.134 - User: user_1057 - RequestID: j2ybsa4j5 +2025-06-18T14:43:22.881Z [DEBUG] user-service - Operation: email_sent - Processing time: 860ms - RequestID: 1of4j0hhhfmh +2025-06-18T14:43:22.981Z [INFO] auth-service - Auth event: login_success - User: user_1016 - IP: 192.168.232.72 - RequestID: gs3sp3kmiz7 +2025-06-18T14:43:23.081Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 201 - Response time: 608ms - IP: 192.168.242.165 - User: user_1029 - RequestID: q7i6457xeg +2025-06-18T14:43:23.181Z [INFO] auth-service - GET /api/v1/users - Status: 200 - Response time: 1638ms - IP: 192.168.32.38 - User: user_1089 - RequestID: 2jbfr5vlw0f +2025-06-18T14:43:23.281Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1910ms - IP: 192.168.33.76 - User: user_1076 - RequestID: 9ddzh9dakkf +2025-06-18T14:43:23.381Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 235ms - Rows affected: 79 - RequestID: h0rlklw9te +2025-06-18T14:43:23.481Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1259ms - IP: 192.168.174.114 - User: user_1001 - RequestID: c3m6nt1c977 +2025-06-18T14:43:23.581Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 403 - Response time: 1541ms - IP: 192.168.144.38 - User: user_1060 - RequestID: sxho86x12pm +2025-06-18T14:43:23.681Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 194ms - Rows affected: 56 - RequestID: ffxu6s76ld +2025-06-18T14:43:23.781Z [TRACE] order-service - Auth event: password_change - User: user_1040 - IP: 192.168.79.116 - RequestID: yofyesry7us +2025-06-18T14:43:23.881Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 630ms - RequestID: ck4ox87vs76 +2025-06-18T14:43:23.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.28.146 - RequestID: e7jbh3vhar +2025-06-18T14:43:24.081Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 459ms - Rows affected: 42 - RequestID: 6shvzf95gkh +2025-06-18T14:43:24.181Z [TRACE] user-service - Auth event: password_change - User: user_1048 - IP: 192.168.196.226 - RequestID: g6ihu78tzul +2025-06-18T14:43:24.281Z [INFO] auth-service - Operation: order_created - Processing time: 410ms - RequestID: hjnoze2th9s +2025-06-18T14:43:24.381Z [INFO] payment-service - Auth event: logout - User: user_1074 - IP: 192.168.11.60 - RequestID: 0v72fsxj0m6 +2025-06-18T14:43:24.481Z [DEBUG] user-service - Database DELETE on products - Execution time: 27ms - Rows affected: 39 - RequestID: p7g44weqdrb +2025-06-18T14:43:24.581Z [DEBUG] user-service - Database SELECT on products - Execution time: 307ms - Rows affected: 67 - RequestID: 3v2ow2pxg6i +2025-06-18T14:43:24.681Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1566ms - IP: 192.168.32.38 - User: user_1035 - RequestID: 70glr6bz8t +2025-06-18T14:43:24.781Z [INFO] notification-service - Operation: cache_hit - Processing time: 843ms - RequestID: km9c8scm6w +2025-06-18T14:43:24.881Z [DEBUG] user-service - Operation: email_sent - Processing time: 279ms - RequestID: fvypet8ghtq +2025-06-18T14:43:24.981Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 401 - Response time: 1820ms - IP: 192.168.33.76 - User: user_1003 - RequestID: 9f9qeqkttzc +2025-06-18T14:43:25.081Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 310ms - RequestID: bsmbotwh43o +2025-06-18T14:43:25.181Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 819ms - RequestID: xhvqegybifj +2025-06-18T14:43:25.281Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 631ms - RequestID: 7vu3fxnycs4 +2025-06-18T14:43:25.381Z [TRACE] inventory-service - GET /api/v1/payments - Status: 502 - Response time: 1249ms - IP: 192.168.167.32 - User: user_1063 - RequestID: zf38xyrhzvk +2025-06-18T14:43:25.481Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 819ms - RequestID: o4t3l8drrq9 +2025-06-18T14:43:25.581Z [DEBUG] user-service - POST /api/v1/users - Status: 400 - Response time: 1969ms - IP: 192.168.242.165 - User: user_1006 - RequestID: y9nv82q1zw +2025-06-18T14:43:25.681Z [TRACE] inventory-service - Database DELETE on users - Execution time: 24ms - Rows affected: 23 - RequestID: khce47a3din +2025-06-18T14:43:25.781Z [INFO] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1663ms - IP: 192.168.211.72 - User: user_1080 - RequestID: qseyoji8doq +2025-06-18T14:43:25.881Z [INFO] auth-service - Operation: cache_miss - Processing time: 448ms - RequestID: 7x0vbehkf62 +2025-06-18T14:43:25.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.194.41 - RequestID: 3xh6ccwiymh +2025-06-18T14:43:26.081Z [TRACE] auth-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.31.117 - RequestID: 1rzoh5wflmc +2025-06-18T14:43:26.181Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 163ms - Rows affected: 84 - RequestID: 62as877umpd +2025-06-18T14:43:26.281Z [INFO] payment-service - Operation: payment_processed - Processing time: 128ms - RequestID: ab4i5vyovwc +2025-06-18T14:43:26.381Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 668ms - RequestID: qr83luizpnr +2025-06-18T14:43:26.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 339ms - RequestID: vzbr6s6es4 +2025-06-18T14:43:26.581Z [TRACE] user-service - PUT /api/v1/inventory - Status: 200 - Response time: 940ms - IP: 192.168.174.114 - User: user_1033 - RequestID: zhs0yrw07u +2025-06-18T14:43:26.681Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.13.72 - RequestID: 14xy35h5mwn +2025-06-18T14:43:26.781Z [TRACE] user-service - POST /api/v1/inventory - Status: 503 - Response time: 405ms - IP: 192.168.232.72 - User: user_1090 - RequestID: 5juf91icyob +2025-06-18T14:43:26.881Z [INFO] order-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1273ms - IP: 192.168.81.206 - User: user_1091 - RequestID: iy43wqhgp6 +2025-06-18T14:43:26.981Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 176ms - Rows affected: 12 - RequestID: xnq7ky2oky +2025-06-18T14:43:27.081Z [DEBUG] order-service - Auth event: password_change - User: user_1027 - IP: 192.168.133.7 - RequestID: ve9l6i8rk7 +2025-06-18T14:43:27.181Z [DEBUG] user-service - GET /api/v1/users - Status: 503 - Response time: 847ms - IP: 192.168.44.5 - User: user_1001 - RequestID: w0dw7y8ksc9 +2025-06-18T14:43:27.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.32.38 - RequestID: jcwgqafjbij +2025-06-18T14:43:27.381Z [TRACE] order-service - Database UPDATE on users - Execution time: 1ms - Rows affected: 34 - RequestID: d22cckdebw6 +2025-06-18T14:43:27.481Z [INFO] payment-service - DELETE /api/v1/users - Status: 200 - Response time: 800ms - IP: 192.168.187.199 - User: user_1036 - RequestID: vqo78p31ac +2025-06-18T14:43:27.581Z [INFO] notification-service - Operation: notification_queued - Processing time: 490ms - RequestID: fb69ywet9ci +2025-06-18T14:43:27.681Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 404 - Response time: 671ms - IP: 192.168.64.33 - User: user_1081 - RequestID: 06y6bnexowx8 +2025-06-18T14:43:27.781Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1841ms - IP: 192.168.13.72 - User: user_1061 - RequestID: 43c0s1zu45q +2025-06-18T14:43:27.881Z [TRACE] order-service - Auth event: logout - User: user_1075 - IP: 192.168.44.5 - RequestID: hc09rn101yf +2025-06-18T14:43:27.981Z [TRACE] notification-service - Database DELETE on products - Execution time: 196ms - Rows affected: 36 - RequestID: iuuwftj5gkn +2025-06-18T14:43:28.081Z [DEBUG] auth-service - Auth event: logout - User: user_1057 - IP: 192.168.79.143 - RequestID: zv7xy1vwlca +2025-06-18T14:43:28.181Z [TRACE] payment-service - Operation: order_created - Processing time: 918ms - RequestID: t5ndqh7xnxr +2025-06-18T14:43:28.281Z [DEBUG] user-service - Auth event: login_failed - User: user_1050 - IP: 192.168.85.229 - RequestID: 6us25mjyrpm +2025-06-18T14:43:28.381Z [TRACE] auth-service - Auth event: logout - User: user_1009 - IP: 192.168.79.116 - RequestID: bn59s0p68vk +2025-06-18T14:43:28.481Z [INFO] inventory-service - Auth event: login_failed - User: user_1040 - IP: 192.168.30.79 - RequestID: 79s6em0jp5 +2025-06-18T14:43:28.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.14.77 - RequestID: h2hwr4o7j8m +2025-06-18T14:43:28.681Z [INFO] payment-service - Operation: cache_miss - Processing time: 117ms - RequestID: u76kxbkz6z +2025-06-18T14:43:28.781Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 295ms - IP: 192.168.81.206 - User: user_1005 - RequestID: yvyt85oaz4 +2025-06-18T14:43:28.881Z [TRACE] order-service - Database UPDATE on payments - Execution time: 173ms - Rows affected: 18 - RequestID: nvfm0ntfq2b +2025-06-18T14:43:28.981Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 378ms - Rows affected: 67 - RequestID: x5y73ozn9of +2025-06-18T14:43:29.081Z [TRACE] order-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.138.123 - RequestID: nlvzgfekr0e +2025-06-18T14:43:29.181Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 233ms - RequestID: 4oqyn74h4nx +2025-06-18T14:43:29.281Z [DEBUG] order-service - Operation: cache_miss - Processing time: 432ms - RequestID: j1ykzwzyw3 +2025-06-18T14:43:29.381Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 383ms - Rows affected: 6 - RequestID: lbczflf912n +2025-06-18T14:43:29.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 51ms - RequestID: o4jpq396ji8 +2025-06-18T14:43:29.581Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 432ms - RequestID: 9ceplju1l14 +2025-06-18T14:43:29.681Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1505ms - IP: 192.168.174.114 - User: user_1094 - RequestID: jhkufepode +2025-06-18T14:43:29.781Z [TRACE] notification-service - Database UPDATE on users - Execution time: 39ms - Rows affected: 0 - RequestID: r4iurv2aixa +2025-06-18T14:43:29.881Z [TRACE] auth-service - Operation: email_sent - Processing time: 78ms - RequestID: t9vioul0rs +2025-06-18T14:43:29.981Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 481ms - Rows affected: 27 - RequestID: z3hh2ge6p9i +2025-06-18T14:43:30.081Z [INFO] order-service - Database UPDATE on products - Execution time: 109ms - Rows affected: 99 - RequestID: isc7uyyid5 +2025-06-18T14:43:30.181Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 173ms - Rows affected: 35 - RequestID: 91zkfw3vlv +2025-06-18T14:43:30.281Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 404 - Response time: 552ms - IP: 192.168.100.240 - User: user_1058 - RequestID: izasmstz7k +2025-06-18T14:43:30.381Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 201 - Response time: 1311ms - IP: 192.168.81.206 - User: user_1011 - RequestID: mhh058c7ydr +2025-06-18T14:43:30.481Z [INFO] payment-service - DELETE /api/v1/orders - Status: 503 - Response time: 1156ms - IP: 192.168.170.215 - User: user_1060 - RequestID: 6xpjhw9r8kp +2025-06-18T14:43:30.581Z [INFO] payment-service - Auth event: login_success - User: user_1055 - IP: 192.168.187.199 - RequestID: xtag9uhq1x +2025-06-18T14:43:30.681Z [INFO] order-service - Operation: notification_queued - Processing time: 800ms - RequestID: 97r6qhq6kkj +2025-06-18T14:43:30.781Z [TRACE] order-service - DELETE /api/v1/users - Status: 404 - Response time: 75ms - IP: 192.168.79.116 - User: user_1089 - RequestID: 62bv58jf1nl +2025-06-18T14:43:30.881Z [DEBUG] order-service - Auth event: login_failed - User: user_1030 - IP: 192.168.11.60 - RequestID: ol77ti6i1nb +2025-06-18T14:43:30.981Z [INFO] payment-service - Database SELECT on orders - Execution time: 498ms - Rows affected: 70 - RequestID: fe1297hafk +2025-06-18T14:43:31.081Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 265ms - Rows affected: 87 - RequestID: 4koih4t5et7 +2025-06-18T14:43:31.181Z [DEBUG] order-service - Operation: order_created - Processing time: 412ms - RequestID: srya1a81m57 +2025-06-18T14:43:31.281Z [INFO] order-service - POST /api/v1/users - Status: 401 - Response time: 811ms - IP: 192.168.10.184 - User: user_1071 - RequestID: r195oqu2f9 +2025-06-18T14:43:31.381Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 463ms - Rows affected: 11 - RequestID: lav2e4np9lh +2025-06-18T14:43:31.481Z [DEBUG] user-service - Operation: order_created - Processing time: 343ms - RequestID: a4l4cnx6ovl +2025-06-18T14:43:31.581Z [DEBUG] notification-service - POST /api/v1/users - Status: 500 - Response time: 1001ms - IP: 192.168.68.158 - User: user_1089 - RequestID: t8u60xvt9u +2025-06-18T14:43:31.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 594ms - RequestID: stdf4pye9w +2025-06-18T14:43:31.781Z [INFO] user-service - Operation: email_sent - Processing time: 635ms - RequestID: f4wakmbb105 +2025-06-18T14:43:31.881Z [INFO] user-service - Operation: inventory_updated - Processing time: 991ms - RequestID: pz1940mdl3n +2025-06-18T14:43:31.981Z [TRACE] inventory-service - GET /api/v1/users - Status: 500 - Response time: 924ms - IP: 192.168.79.116 - User: user_1044 - RequestID: i3jaomiyoe +2025-06-18T14:43:32.081Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 500 - Response time: 1377ms - IP: 192.168.14.77 - User: user_1003 - RequestID: d8qlmtdq8bo +2025-06-18T14:43:32.181Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 368ms - Rows affected: 83 - RequestID: 3584xev1q34 +2025-06-18T14:43:32.281Z [TRACE] user-service - Auth event: login_failed - User: user_1038 - IP: 192.168.189.103 - RequestID: gyr444yzld +2025-06-18T14:43:32.381Z [INFO] order-service - Database UPDATE on products - Execution time: 402ms - Rows affected: 23 - RequestID: y67ybm0jykp +2025-06-18T14:43:32.481Z [TRACE] payment-service - Database SELECT on orders - Execution time: 305ms - Rows affected: 91 - RequestID: vmm40d3n1g +2025-06-18T14:43:32.581Z [TRACE] inventory-service - Operation: order_created - Processing time: 841ms - RequestID: ugfh946w86g +2025-06-18T14:43:32.681Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 103ms - Rows affected: 8 - RequestID: 0i6062jrbmgb +2025-06-18T14:43:32.781Z [TRACE] notification-service - GET /api/v1/users - Status: 401 - Response time: 241ms - IP: 192.168.141.100 - User: user_1074 - RequestID: 9kslacfwhyk +2025-06-18T14:43:32.881Z [TRACE] order-service - Operation: inventory_updated - Processing time: 323ms - RequestID: wnvwxlbytor +2025-06-18T14:43:32.981Z [DEBUG] notification-service - Auth event: logout - User: user_1037 - IP: 192.168.194.41 - RequestID: 5bsmv3jg70i +2025-06-18T14:43:33.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 736ms - RequestID: xafqkraqoxl +2025-06-18T14:43:33.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 868ms - RequestID: nfea7cyxg9j +2025-06-18T14:43:33.281Z [INFO] payment-service - Database DELETE on users - Execution time: 233ms - Rows affected: 59 - RequestID: r8dyurb5ep +2025-06-18T14:43:33.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1013 - IP: 192.168.113.218 - RequestID: sx3o2soqdq +2025-06-18T14:43:33.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.33.76 - RequestID: puq5r6eq33 +2025-06-18T14:43:33.581Z [INFO] payment-service - Database DELETE on sessions - Execution time: 266ms - Rows affected: 86 - RequestID: aa40ta76ycr +2025-06-18T14:43:33.681Z [INFO] payment-service - Database SELECT on products - Execution time: 62ms - Rows affected: 45 - RequestID: ccfr2wf6c3 +2025-06-18T14:43:33.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.53.133 - RequestID: 07rxs4spobrw +2025-06-18T14:43:33.881Z [INFO] auth-service - POST /api/v1/orders - Status: 401 - Response time: 1690ms - IP: 192.168.229.123 - User: user_1068 - RequestID: an1drpjgaqh +2025-06-18T14:43:33.981Z [TRACE] user-service - Auth event: logout - User: user_1075 - IP: 192.168.28.146 - RequestID: avdx07py1l9 +2025-06-18T14:43:34.081Z [INFO] payment-service - Database DELETE on products - Execution time: 123ms - Rows affected: 47 - RequestID: rje0275wmk +2025-06-18T14:43:34.181Z [TRACE] payment-service - Operation: payment_processed - Processing time: 78ms - RequestID: 4vkcjaeq8fb +2025-06-18T14:43:34.281Z [INFO] notification-service - Database SELECT on products - Execution time: 458ms - Rows affected: 1 - RequestID: fvls9mgt11 +2025-06-18T14:43:34.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 866ms - RequestID: n2bnv88etn +2025-06-18T14:43:34.481Z [TRACE] notification-service - GET /api/v1/payments - Status: 503 - Response time: 1177ms - IP: 192.168.31.117 - User: user_1092 - RequestID: 2jpjxyvbz92 +2025-06-18T14:43:34.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.232.72 - RequestID: y9oc2r1ne2n +2025-06-18T14:43:34.681Z [TRACE] payment-service - Database DELETE on products - Execution time: 269ms - Rows affected: 52 - RequestID: ck5s8nfjyg +2025-06-18T14:43:34.781Z [TRACE] user-service - GET /api/v1/inventory - Status: 503 - Response time: 613ms - IP: 192.168.10.184 - User: user_1002 - RequestID: muvn2i415o +2025-06-18T14:43:34.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 417ms - RequestID: qu66w8tjmba +2025-06-18T14:43:34.981Z [DEBUG] user-service - Auth event: logout - User: user_1026 - IP: 192.168.141.100 - RequestID: sp07ngnpet9 +2025-06-18T14:43:35.081Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 404 - Response time: 446ms - IP: 192.168.100.240 - User: user_1051 - RequestID: lobnc6eqmz +2025-06-18T14:43:35.181Z [TRACE] notification-service - Database DELETE on products - Execution time: 454ms - Rows affected: 44 - RequestID: 2bth5e0vazk +2025-06-18T14:43:35.281Z [INFO] order-service - Auth event: password_change - User: user_1000 - IP: 192.168.196.226 - RequestID: c26q8bzkpuw +2025-06-18T14:43:35.381Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1556ms - IP: 192.168.232.72 - User: user_1064 - RequestID: 3jj080r51vc +2025-06-18T14:43:35.481Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 56ms - Rows affected: 49 - RequestID: g2i2uc7hmah +2025-06-18T14:43:35.581Z [DEBUG] payment-service - POST /api/v1/orders - Status: 200 - Response time: 896ms - IP: 192.168.81.206 - User: user_1020 - RequestID: u77qu731yo +2025-06-18T14:43:35.681Z [TRACE] payment-service - Database DELETE on products - Execution time: 462ms - Rows affected: 93 - RequestID: rzyq1tqehdj +2025-06-18T14:43:35.781Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 392ms - Rows affected: 26 - RequestID: gq4igop55wm +2025-06-18T14:43:35.881Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 345ms - Rows affected: 63 - RequestID: nosp4vm88h +2025-06-18T14:43:35.981Z [INFO] user-service - Auth event: login_failed - User: user_1084 - IP: 192.168.211.72 - RequestID: ec5zb9oxljf +2025-06-18T14:43:36.081Z [INFO] order-service - Auth event: logout - User: user_1093 - IP: 192.168.13.72 - RequestID: 8jhnzi8ayy6 +2025-06-18T14:43:36.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.158.144 - RequestID: 7u3t5r6flxd +2025-06-18T14:43:36.281Z [DEBUG] payment-service - Auth event: logout - User: user_1039 - IP: 192.168.30.79 - RequestID: 14lx61axy6h +2025-06-18T14:43:36.381Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 116ms - Rows affected: 81 - RequestID: uhvfmkjmsua +2025-06-18T14:43:36.481Z [DEBUG] auth-service - Operation: email_sent - Processing time: 568ms - RequestID: siygecsy2o8 +2025-06-18T14:43:36.581Z [TRACE] user-service - Auth event: password_change - User: user_1085 - IP: 192.168.28.146 - RequestID: zovlcf75tqp +2025-06-18T14:43:36.681Z [INFO] payment-service - Operation: inventory_updated - Processing time: 552ms - RequestID: g7rgwrdr1ij +2025-06-18T14:43:36.781Z [INFO] order-service - Database UPDATE on users - Execution time: 43ms - Rows affected: 6 - RequestID: a3z3evx42p6 +2025-06-18T14:43:36.881Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 345ms - Rows affected: 40 - RequestID: gelad2d53kp +2025-06-18T14:43:36.981Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1930ms - IP: 192.168.81.206 - User: user_1038 - RequestID: dcpie837nxv +2025-06-18T14:43:37.081Z [INFO] order-service - Auth event: login_success - User: user_1019 - IP: 192.168.28.146 - RequestID: nsx2se3xw8 +2025-06-18T14:43:37.181Z [INFO] payment-service - Database INSERT on sessions - Execution time: 197ms - Rows affected: 52 - RequestID: ue5b9gpkn0b +2025-06-18T14:43:37.281Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 418ms - Rows affected: 46 - RequestID: 061laiz3gu2c +2025-06-18T14:43:37.381Z [DEBUG] order-service - Auth event: logout - User: user_1085 - IP: 192.168.68.128 - RequestID: 40y2hyo5yjj +2025-06-18T14:43:37.481Z [INFO] notification-service - Operation: email_sent - Processing time: 510ms - RequestID: 6qmyfyfjqrv +2025-06-18T14:43:37.581Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1818ms - IP: 192.168.227.77 - User: user_1009 - RequestID: evskawsa6yc +2025-06-18T14:43:37.681Z [INFO] order-service - Auth event: login_failed - User: user_1045 - IP: 192.168.158.144 - RequestID: 0xrbo9rha4fm +2025-06-18T14:43:37.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 1034ms - RequestID: 6zrvxvc4kup +2025-06-18T14:43:37.881Z [INFO] order-service - Operation: cache_hit - Processing time: 675ms - RequestID: 866ixsgfnmf +2025-06-18T14:43:37.981Z [INFO] payment-service - Auth event: login_failed - User: user_1030 - IP: 192.168.10.184 - RequestID: pf9igl5fnr +2025-06-18T14:43:38.081Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 26ms - Rows affected: 90 - RequestID: jfo37948ef +2025-06-18T14:43:38.181Z [TRACE] auth-service - Operation: cache_miss - Processing time: 777ms - RequestID: j5r1wecm7oj +2025-06-18T14:43:38.281Z [INFO] notification-service - GET /api/v1/inventory - Status: 403 - Response time: 420ms - IP: 192.168.158.144 - User: user_1093 - RequestID: owbc1a9t2s +2025-06-18T14:43:38.381Z [TRACE] user-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.144.38 - RequestID: p3gchp8oiee +2025-06-18T14:43:38.481Z [INFO] user-service - Auth event: login_failed - User: user_1005 - IP: 192.168.158.144 - RequestID: dmmrsqc9nqn +2025-06-18T14:43:38.581Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1782ms - IP: 192.168.147.171 - User: user_1007 - RequestID: vhuafb4q7t +2025-06-18T14:43:38.681Z [INFO] auth-service - Auth event: login_failed - User: user_1088 - IP: 192.168.194.41 - RequestID: j8eqv20p6ps +2025-06-18T14:43:38.781Z [TRACE] auth-service - GET /api/v1/orders - Status: 403 - Response time: 771ms - IP: 192.168.68.158 - User: user_1060 - RequestID: efvj1h2b8s +2025-06-18T14:43:38.881Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 114ms - Rows affected: 86 - RequestID: qaa9o46hqi +2025-06-18T14:43:38.981Z [INFO] payment-service - Operation: notification_queued - Processing time: 392ms - RequestID: ydgys5m73k +2025-06-18T14:43:39.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 830ms - RequestID: zk1o12ztbim +2025-06-18T14:43:39.181Z [INFO] auth-service - Operation: order_created - Processing time: 216ms - RequestID: bj8vsebf885 +2025-06-18T14:43:39.281Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1984ms - IP: 192.168.174.114 - User: user_1027 - RequestID: vjumghqt8n +2025-06-18T14:43:39.381Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1409ms - IP: 192.168.46.63 - User: user_1057 - RequestID: ixem6ejgo3l +2025-06-18T14:43:39.481Z [TRACE] payment-service - Database INSERT on products - Execution time: 110ms - Rows affected: 80 - RequestID: 9z382mv50d4 +2025-06-18T14:43:39.581Z [TRACE] user-service - GET /api/v1/inventory - Status: 200 - Response time: 603ms - IP: 192.168.133.7 - User: user_1046 - RequestID: ak89rck21be +2025-06-18T14:43:39.681Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 404 - Response time: 1614ms - IP: 192.168.44.5 - User: user_1089 - RequestID: a2ol0ptup8a +2025-06-18T14:43:39.781Z [DEBUG] user-service - PUT /api/v1/users - Status: 500 - Response time: 1675ms - IP: 192.168.79.143 - User: user_1059 - RequestID: p6kxenfopa +2025-06-18T14:43:39.881Z [TRACE] payment-service - Auth event: password_change - User: user_1084 - IP: 192.168.144.38 - RequestID: ee64cnbsic +2025-06-18T14:43:39.981Z [INFO] payment-service - Database SELECT on products - Execution time: 139ms - Rows affected: 14 - RequestID: xt8z0rlsl7 +2025-06-18T14:43:40.081Z [TRACE] auth-service - Auth event: login_success - User: user_1061 - IP: 192.168.85.229 - RequestID: 7569oy0ai7 +2025-06-18T14:43:40.181Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1015ms - IP: 192.168.242.165 - User: user_1031 - RequestID: 1d7j6w64mnm +2025-06-18T14:43:40.281Z [INFO] payment-service - Auth event: password_change - User: user_1022 - IP: 192.168.113.218 - RequestID: jqy260jogyi +2025-06-18T14:43:40.381Z [DEBUG] user-service - Database INSERT on orders - Execution time: 366ms - Rows affected: 55 - RequestID: i0c37ocqu9o +2025-06-18T14:43:40.481Z [INFO] notification-service - Database UPDATE on orders - Execution time: 261ms - Rows affected: 91 - RequestID: 5ytn77q877s +2025-06-18T14:43:40.581Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 354ms - Rows affected: 44 - RequestID: zoynzx34m0e +2025-06-18T14:43:40.681Z [INFO] auth-service - Operation: email_sent - Processing time: 820ms - RequestID: hz5ct28ww4i +2025-06-18T14:43:40.781Z [DEBUG] order-service - Operation: cache_hit - Processing time: 586ms - RequestID: 9hbomps01dj +2025-06-18T14:43:40.881Z [INFO] order-service - Auth event: password_change - User: user_1042 - IP: 192.168.11.60 - RequestID: 2b7fjj4609e +2025-06-18T14:43:40.981Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 212ms - Rows affected: 48 - RequestID: pmuwoh10a7 +2025-06-18T14:43:41.081Z [TRACE] user-service - Auth event: login_success - User: user_1089 - IP: 192.168.235.117 - RequestID: n5ff46clx9r +2025-06-18T14:43:41.181Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 184ms - IP: 192.168.196.226 - User: user_1016 - RequestID: gjmajnx73g +2025-06-18T14:43:41.281Z [INFO] notification-service - PUT /api/v1/orders - Status: 500 - Response time: 964ms - IP: 192.168.13.72 - User: user_1047 - RequestID: 6wmq72zbgc4 +2025-06-18T14:43:41.381Z [INFO] order-service - PATCH /api/v1/users - Status: 401 - Response time: 1248ms - IP: 192.168.247.134 - User: user_1040 - RequestID: vqagyqcy4r +2025-06-18T14:43:41.481Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.64.33 - RequestID: 5wmeqn6ize6 +2025-06-18T14:43:41.581Z [INFO] payment-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.232.72 - RequestID: 5bm3xqacswr +2025-06-18T14:43:41.681Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 822ms - IP: 192.168.30.79 - User: user_1090 - RequestID: o74zl768oa +2025-06-18T14:43:41.781Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 166ms - Rows affected: 18 - RequestID: s1ordjipsf +2025-06-18T14:43:41.881Z [INFO] user-service - Operation: payment_processed - Processing time: 211ms - RequestID: 9kllqeix2ss +2025-06-18T14:43:41.981Z [INFO] user-service - Operation: payment_processed - Processing time: 945ms - RequestID: rx9mz3r6fy +2025-06-18T14:43:42.081Z [TRACE] auth-service - Operation: notification_queued - Processing time: 273ms - RequestID: dk6v79k84tv +2025-06-18T14:43:42.181Z [TRACE] order-service - Database SELECT on orders - Execution time: 448ms - Rows affected: 65 - RequestID: gzr3ffv4jnp +2025-06-18T14:43:42.281Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.32.38 - RequestID: 05twf8f563ps +2025-06-18T14:43:42.381Z [INFO] inventory-service - Database DELETE on users - Execution time: 56ms - Rows affected: 73 - RequestID: e1lkmww37la +2025-06-18T14:43:42.481Z [TRACE] inventory-service - Auth event: login_failed - User: user_1012 - IP: 192.168.10.184 - RequestID: q3xjh0bvwsi +2025-06-18T14:43:42.581Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 201 - Response time: 929ms - IP: 192.168.144.38 - User: user_1025 - RequestID: j7pkb4w6bwe +2025-06-18T14:43:42.681Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 404 - Response time: 1092ms - IP: 192.168.53.133 - User: user_1040 - RequestID: vuoig1anwdj +2025-06-18T14:43:42.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.147.171 - RequestID: vjege5ewo2 +2025-06-18T14:43:42.881Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 276ms - IP: 192.168.28.146 - User: user_1033 - RequestID: uzujnlu6999 +2025-06-18T14:43:42.981Z [INFO] order-service - DELETE /api/v1/users - Status: 200 - Response time: 932ms - IP: 192.168.68.158 - User: user_1014 - RequestID: sv2ghtwrwg +2025-06-18T14:43:43.081Z [INFO] inventory-service - Operation: email_sent - Processing time: 257ms - RequestID: 1etdt9ypogk +2025-06-18T14:43:43.181Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 500 - Response time: 885ms - IP: 192.168.97.87 - User: user_1045 - RequestID: ofd1dcrr21n +2025-06-18T14:43:43.281Z [TRACE] user-service - PUT /api/v1/payments - Status: 403 - Response time: 1997ms - IP: 192.168.68.128 - User: user_1079 - RequestID: isk6mj3exk +2025-06-18T14:43:43.381Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 487ms - RequestID: 6e4dhhbk4l6 +2025-06-18T14:43:43.481Z [INFO] notification-service - Auth event: login_success - User: user_1052 - IP: 192.168.242.165 - RequestID: qa16xwvjdvc +2025-06-18T14:43:43.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.229.123 - RequestID: xuvavvug95 +2025-06-18T14:43:43.681Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 231ms - Rows affected: 36 - RequestID: d3i1zd7e5aw +2025-06-18T14:43:43.781Z [DEBUG] user-service - Auth event: login_success - User: user_1093 - IP: 192.168.44.5 - RequestID: gtsduy84z1j +2025-06-18T14:43:43.881Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 490ms - RequestID: k04afegk7bn +2025-06-18T14:43:43.981Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 400 - Response time: 732ms - IP: 192.168.79.143 - User: user_1036 - RequestID: o4n9776dtp +2025-06-18T14:43:44.081Z [INFO] order-service - Operation: inventory_updated - Processing time: 973ms - RequestID: e0xp1kt1m1a +2025-06-18T14:43:44.181Z [INFO] payment-service - PUT /api/v1/payments - Status: 201 - Response time: 363ms - IP: 192.168.174.114 - User: user_1024 - RequestID: z9rvmnzdw2f +2025-06-18T14:43:44.281Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1664ms - IP: 192.168.64.33 - User: user_1025 - RequestID: iv2kmhr55i +2025-06-18T14:43:44.381Z [INFO] user-service - Auth event: login_success - User: user_1039 - IP: 192.168.133.7 - RequestID: hlth5c3dtyo +2025-06-18T14:43:44.481Z [INFO] notification-service - Auth event: password_change - User: user_1019 - IP: 192.168.247.134 - RequestID: m4bmmjdtxkc +2025-06-18T14:43:44.581Z [TRACE] user-service - Operation: payment_processed - Processing time: 369ms - RequestID: tdloshu7oql +2025-06-18T14:43:44.681Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 731ms - RequestID: cesc1zjlhpt +2025-06-18T14:43:44.781Z [TRACE] notification-service - Auth event: logout - User: user_1057 - IP: 192.168.240.169 - RequestID: 3dobh7jq0kt +2025-06-18T14:43:44.881Z [TRACE] order-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.240.169 - RequestID: bwgos5i5y7 +2025-06-18T14:43:44.981Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 708ms - RequestID: 29pfzg0mxto +2025-06-18T14:43:45.081Z [TRACE] auth-service - Auth event: login_failed - User: user_1030 - IP: 192.168.14.77 - RequestID: otdoczlxinp +2025-06-18T14:43:45.181Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 204ms - Rows affected: 24 - RequestID: 9i0kkuhw264 +2025-06-18T14:43:45.281Z [DEBUG] order-service - Operation: payment_processed - Processing time: 900ms - RequestID: tsyd6dvd24d +2025-06-18T14:43:45.381Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 130ms - Rows affected: 64 - RequestID: 1kbegpgdkli +2025-06-18T14:43:45.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1053 - IP: 192.168.97.87 - RequestID: ksq0df5gxiq +2025-06-18T14:43:45.581Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 276ms - RequestID: zibsy9y6cyb +2025-06-18T14:43:45.681Z [TRACE] notification-service - Auth event: password_change - User: user_1047 - IP: 192.168.196.226 - RequestID: cx0r70xly4h +2025-06-18T14:43:45.781Z [TRACE] user-service - POST /api/v1/orders - Status: 200 - Response time: 1605ms - IP: 192.168.247.134 - User: user_1058 - RequestID: x5f3ot2h5f8 +2025-06-18T14:43:45.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.31.117 - RequestID: 08k16m8yyrpu +2025-06-18T14:43:45.981Z [TRACE] inventory-service - Auth event: login_success - User: user_1045 - IP: 192.168.242.165 - RequestID: 65nm0yc7yv9 +2025-06-18T14:43:46.081Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1031ms - IP: 192.168.44.5 - User: user_1040 - RequestID: bihreg2fit9 +2025-06-18T14:43:46.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 115ms - RequestID: liptstn2m5 +2025-06-18T14:43:46.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1050 - IP: 192.168.170.215 - RequestID: osm9gn9mjdr +2025-06-18T14:43:46.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.81.206 - RequestID: fr05nq5d2dr +2025-06-18T14:43:46.481Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1118ms - IP: 192.168.31.117 - User: user_1084 - RequestID: 46xjcc44hen +2025-06-18T14:43:46.581Z [DEBUG] user-service - Operation: payment_processed - Processing time: 953ms - RequestID: zjkfmauti3 +2025-06-18T14:43:46.681Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 914ms - RequestID: ho9hax25n7a +2025-06-18T14:43:46.781Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 480ms - Rows affected: 80 - RequestID: 1w2k86jaius +2025-06-18T14:43:46.881Z [DEBUG] order-service - Database INSERT on users - Execution time: 471ms - Rows affected: 2 - RequestID: ki9k9i1vso +2025-06-18T14:43:46.981Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1651ms - IP: 192.168.159.94 - User: user_1034 - RequestID: kbl1a94iv6g +2025-06-18T14:43:47.081Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 477ms - RequestID: 9p51xprbayw +2025-06-18T14:43:47.181Z [TRACE] order-service - Operation: order_created - Processing time: 390ms - RequestID: scocqooj0lo +2025-06-18T14:43:47.281Z [INFO] auth-service - Operation: webhook_sent - Processing time: 698ms - RequestID: fqps2eudc1w +2025-06-18T14:43:47.381Z [TRACE] user-service - Database SELECT on users - Execution time: 230ms - Rows affected: 99 - RequestID: 7g0vc2vqb9s +2025-06-18T14:43:47.481Z [TRACE] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 70ms - IP: 192.168.147.171 - User: user_1081 - RequestID: j63urm9zaa +2025-06-18T14:43:47.581Z [DEBUG] notification-service - Database SELECT on products - Execution time: 80ms - Rows affected: 54 - RequestID: zpu88vr4mo +2025-06-18T14:43:47.681Z [INFO] auth-service - Database DELETE on orders - Execution time: 328ms - Rows affected: 27 - RequestID: 4f4a0gariul +2025-06-18T14:43:47.781Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 181ms - Rows affected: 68 - RequestID: m60f5b1a2al +2025-06-18T14:43:47.881Z [INFO] order-service - Database SELECT on products - Execution time: 26ms - Rows affected: 36 - RequestID: nnj5psu16nj +2025-06-18T14:43:47.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 147ms - RequestID: tn5mbv9wlcl +2025-06-18T14:43:48.081Z [INFO] notification-service - Database SELECT on payments - Execution time: 125ms - Rows affected: 26 - RequestID: j8x09w7r6nn +2025-06-18T14:43:48.181Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1583ms - IP: 192.168.30.79 - User: user_1024 - RequestID: yiqpoiy8hlp +2025-06-18T14:43:48.281Z [TRACE] payment-service - Operation: cache_miss - Processing time: 523ms - RequestID: yab9bcx37sa +2025-06-18T14:43:48.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 267ms - RequestID: lfdw7z4glxk +2025-06-18T14:43:48.481Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 46ms - Rows affected: 38 - RequestID: tnagdwhvgep +2025-06-18T14:43:48.581Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 1020ms - RequestID: 5vtenekhiho +2025-06-18T14:43:48.681Z [INFO] payment-service - Auth event: logout - User: user_1068 - IP: 192.168.79.116 - RequestID: nxhge740gs +2025-06-18T14:43:48.781Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1809ms - IP: 192.168.227.233 - User: user_1049 - RequestID: eykv86qsdoj +2025-06-18T14:43:48.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1039 - IP: 192.168.100.240 - RequestID: zk9aymn6by +2025-06-18T14:43:48.981Z [DEBUG] user-service - Auth event: login_failed - User: user_1045 - IP: 192.168.181.225 - RequestID: ti21fj19ms9 +2025-06-18T14:43:49.081Z [INFO] order-service - Auth event: logout - User: user_1050 - IP: 192.168.79.116 - RequestID: hhtk80sao4g +2025-06-18T14:43:49.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 685ms - RequestID: c0jbmmjd32 +2025-06-18T14:43:49.281Z [TRACE] auth-service - Operation: cache_miss - Processing time: 904ms - RequestID: ow60fhtf74 +2025-06-18T14:43:49.381Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 197ms - Rows affected: 16 - RequestID: oapcsj2cvdd +2025-06-18T14:43:49.481Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 455ms - IP: 192.168.247.134 - User: user_1041 - RequestID: 3olxjgp2ze5 +2025-06-18T14:43:49.581Z [TRACE] notification-service - Auth event: password_change - User: user_1009 - IP: 192.168.79.116 - RequestID: vwa4dnkarr +2025-06-18T14:43:49.681Z [TRACE] user-service - Auth event: login_success - User: user_1049 - IP: 192.168.44.5 - RequestID: zoujk2l80ze +2025-06-18T14:43:49.781Z [INFO] order-service - Auth event: login_success - User: user_1016 - IP: 192.168.235.117 - RequestID: t7sa2rpwem +2025-06-18T14:43:49.881Z [TRACE] user-service - Operation: payment_processed - Processing time: 959ms - RequestID: q3ujggt7sk +2025-06-18T14:43:49.981Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 633ms - IP: 192.168.104.37 - User: user_1044 - RequestID: nwaluh4ecz +2025-06-18T14:43:50.081Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 403 - Response time: 1655ms - IP: 192.168.181.225 - User: user_1019 - RequestID: jh507ohun7k +2025-06-18T14:43:50.181Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 494ms - Rows affected: 49 - RequestID: xdysp25f7eh +2025-06-18T14:43:50.281Z [INFO] order-service - Auth event: logout - User: user_1036 - IP: 192.168.141.100 - RequestID: ubhsy2vap2h +2025-06-18T14:43:50.381Z [INFO] inventory-service - Database SELECT on users - Execution time: 100ms - Rows affected: 92 - RequestID: 3if43mufspq +2025-06-18T14:43:50.481Z [INFO] order-service - Operation: email_sent - Processing time: 370ms - RequestID: ppexcokjhrq +2025-06-18T14:43:50.581Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 812ms - RequestID: 1wsyjvmbjjdh +2025-06-18T14:43:50.681Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 163ms - Rows affected: 86 - RequestID: a891njsup06 +2025-06-18T14:43:50.781Z [INFO] order-service - Auth event: logout - User: user_1098 - IP: 192.168.68.158 - RequestID: p3e95ho73y +2025-06-18T14:43:50.881Z [TRACE] auth-service - Operation: notification_queued - Processing time: 347ms - RequestID: xa31bmc5q8s +2025-06-18T14:43:50.981Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 176ms - RequestID: uabnhx0jny +2025-06-18T14:43:51.081Z [DEBUG] payment-service - Operation: order_created - Processing time: 777ms - RequestID: 5lf5tk9099p +2025-06-18T14:43:51.181Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 366ms - Rows affected: 92 - RequestID: zc0ayrepgz +2025-06-18T14:43:51.281Z [DEBUG] auth-service - POST /api/v1/payments - Status: 400 - Response time: 1848ms - IP: 192.168.36.218 - User: user_1048 - RequestID: 8lqp1d5nvhe +2025-06-18T14:43:51.381Z [TRACE] inventory-service - Database SELECT on users - Execution time: 465ms - Rows affected: 99 - RequestID: ljql9d68q2 +2025-06-18T14:43:51.481Z [DEBUG] auth-service - POST /api/v1/payments - Status: 201 - Response time: 519ms - IP: 192.168.167.32 - User: user_1082 - RequestID: ea0zrkad2tp +2025-06-18T14:43:51.581Z [INFO] user-service - Operation: email_sent - Processing time: 279ms - RequestID: b0lpdc9zznw +2025-06-18T14:43:51.681Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 886ms - RequestID: i3tk2q5kor +2025-06-18T14:43:51.781Z [INFO] user-service - Operation: email_sent - Processing time: 86ms - RequestID: jh7vs5wqkup +2025-06-18T14:43:51.881Z [INFO] auth-service - Operation: notification_queued - Processing time: 386ms - RequestID: zm9budt63mi +2025-06-18T14:43:51.981Z [INFO] payment-service - Database UPDATE on payments - Execution time: 390ms - Rows affected: 30 - RequestID: cnfpybsfuti +2025-06-18T14:43:52.081Z [INFO] user-service - Operation: cache_miss - Processing time: 297ms - RequestID: yz5sxu8851i +2025-06-18T14:43:52.181Z [INFO] inventory-service - Auth event: login_failed - User: user_1091 - IP: 192.168.229.123 - RequestID: 9hd34uftnen +2025-06-18T14:43:52.281Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 188ms - Rows affected: 30 - RequestID: fliao2im0l7 +2025-06-18T14:43:52.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1056 - IP: 192.168.194.41 - RequestID: 5zlyq9mt7qv +2025-06-18T14:43:52.481Z [INFO] notification-service - Database INSERT on products - Execution time: 155ms - Rows affected: 62 - RequestID: v8g1n3h1orl +2025-06-18T14:43:52.581Z [TRACE] payment-service - Database DELETE on orders - Execution time: 194ms - Rows affected: 35 - RequestID: b8x5v2erv0h +2025-06-18T14:43:52.681Z [INFO] inventory-service - Operation: cache_hit - Processing time: 334ms - RequestID: 5pt86qht1iy +2025-06-18T14:43:52.781Z [INFO] notification-service - Operation: cache_miss - Processing time: 801ms - RequestID: vhwraz19abr +2025-06-18T14:43:52.881Z [INFO] notification-service - Database INSERT on users - Execution time: 366ms - Rows affected: 26 - RequestID: njotk2hyxsm +2025-06-18T14:43:52.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.11.60 - RequestID: efubcdab1ga +2025-06-18T14:43:53.081Z [INFO] auth-service - Database UPDATE on products - Execution time: 68ms - Rows affected: 16 - RequestID: j2thwy9tlp +2025-06-18T14:43:53.181Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 96ms - Rows affected: 91 - RequestID: 6p1hxvb1oa5 +2025-06-18T14:43:53.281Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.79.116 - RequestID: ytgtl5sg3 +2025-06-18T14:43:53.381Z [TRACE] payment-service - Auth event: password_change - User: user_1088 - IP: 192.168.68.128 - RequestID: 61cray88t9r +2025-06-18T14:43:53.481Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 291ms - Rows affected: 72 - RequestID: f0ugee8gjxr +2025-06-18T14:43:53.581Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 230ms - RequestID: y677kg3iwsr +2025-06-18T14:43:53.681Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 138ms - RequestID: 6wp1qgp1oxj +2025-06-18T14:43:53.781Z [INFO] inventory-service - Auth event: login_failed - User: user_1039 - IP: 192.168.36.218 - RequestID: mk076obird +2025-06-18T14:43:53.881Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 439ms - RequestID: kb1ykearixe +2025-06-18T14:43:53.981Z [INFO] order-service - Auth event: password_change - User: user_1025 - IP: 192.168.100.240 - RequestID: dbz86dfawiu +2025-06-18T14:43:54.081Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 417ms - Rows affected: 90 - RequestID: nz6sw84ve3 +2025-06-18T14:43:54.181Z [TRACE] order-service - Database SELECT on orders - Execution time: 356ms - Rows affected: 76 - RequestID: nh5n68dfs7s +2025-06-18T14:43:54.281Z [INFO] user-service - Operation: cache_miss - Processing time: 304ms - RequestID: qt52i8y0kh +2025-06-18T14:43:54.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1040 - IP: 192.168.232.72 - RequestID: pxiyjcvhk6j +2025-06-18T14:43:54.481Z [DEBUG] payment-service - Database SELECT on products - Execution time: 141ms - Rows affected: 70 - RequestID: usdgaizn1f +2025-06-18T14:43:54.581Z [INFO] order-service - Operation: order_created - Processing time: 470ms - RequestID: pxqfwcuqtk +2025-06-18T14:43:54.681Z [INFO] order-service - Database DELETE on sessions - Execution time: 446ms - Rows affected: 38 - RequestID: k2l39b01qmb +2025-06-18T14:43:54.781Z [TRACE] notification-service - Operation: notification_queued - Processing time: 799ms - RequestID: zfcc724tq2p +2025-06-18T14:43:54.881Z [INFO] inventory-service - Auth event: password_change - User: user_1073 - IP: 192.168.79.143 - RequestID: vkke90a1v6e +2025-06-18T14:43:54.981Z [DEBUG] notification-service - PUT /api/v1/users - Status: 201 - Response time: 293ms - IP: 192.168.13.72 - User: user_1079 - RequestID: qf3otfro3o +2025-06-18T14:43:55.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 180ms - RequestID: nzcx5luim4 +2025-06-18T14:43:55.181Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 234ms - Rows affected: 96 - RequestID: ltq4wtvgtof +2025-06-18T14:43:55.281Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 120ms - Rows affected: 79 - RequestID: c93ifrmu7p +2025-06-18T14:43:55.381Z [TRACE] notification-service - Database DELETE on users - Execution time: 363ms - Rows affected: 64 - RequestID: fhcbolpb8l8 +2025-06-18T14:43:55.481Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 361ms - Rows affected: 26 - RequestID: 946emxbo1dp +2025-06-18T14:43:55.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1055 - IP: 192.168.13.72 - RequestID: f3siou9pel5 +2025-06-18T14:43:55.681Z [INFO] notification-service - Database UPDATE on orders - Execution time: 191ms - Rows affected: 44 - RequestID: 2fitl3xkyp6 +2025-06-18T14:43:55.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 857ms - RequestID: tkk90syyxi +2025-06-18T14:43:55.881Z [TRACE] auth-service - POST /api/v1/inventory - Status: 502 - Response time: 246ms - IP: 192.168.189.103 - User: user_1092 - RequestID: tu9l3ds525 +2025-06-18T14:43:55.981Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 402ms - RequestID: aj8wlpzeof +2025-06-18T14:43:56.081Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 965ms - RequestID: zg6pwnzosg +2025-06-18T14:43:56.181Z [INFO] auth-service - Database UPDATE on products - Execution time: 100ms - Rows affected: 65 - RequestID: ytphc2jvjud +2025-06-18T14:43:56.281Z [TRACE] notification-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.158.144 - RequestID: sv2ztv04g4 +2025-06-18T14:43:56.381Z [TRACE] auth-service - Operation: cache_miss - Processing time: 458ms - RequestID: w2z1hcqu86m +2025-06-18T14:43:56.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1036 - IP: 192.168.133.7 - RequestID: 719au8a36p3 +2025-06-18T14:43:56.581Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1916ms - IP: 192.168.247.134 - User: user_1024 - RequestID: i75rtvx189j +2025-06-18T14:43:56.681Z [DEBUG] auth-service - Operation: email_sent - Processing time: 176ms - RequestID: djwada9cqy6 +2025-06-18T14:43:56.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 269ms - RequestID: wv8as6xqiy +2025-06-18T14:43:56.881Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 403 - Response time: 434ms - IP: 192.168.85.229 - User: user_1079 - RequestID: rxbdfs4bb6 +2025-06-18T14:43:56.981Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.242.165 - RequestID: ln4sx6ofvr +2025-06-18T14:43:57.081Z [TRACE] user-service - POST /api/v1/orders - Status: 404 - Response time: 1398ms - IP: 192.168.144.38 - User: user_1016 - RequestID: j26karz5d6d +2025-06-18T14:43:57.181Z [TRACE] user-service - Operation: inventory_updated - Processing time: 849ms - RequestID: 25z2wa08z7a +2025-06-18T14:43:57.281Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 432ms - Rows affected: 75 - RequestID: 8fe2ghgpy7c +2025-06-18T14:43:57.381Z [INFO] user-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.159.94 - RequestID: hqry0frf0nd +2025-06-18T14:43:57.481Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1191ms - IP: 192.168.247.134 - User: user_1046 - RequestID: 7l2ogc6m0f6 +2025-06-18T14:43:57.581Z [TRACE] user-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.158.144 - RequestID: 85btq8in7jc +2025-06-18T14:43:57.681Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 678ms - RequestID: 5jwwxj5k0p8 +2025-06-18T14:43:57.781Z [TRACE] inventory-service - GET /api/v1/orders - Status: 401 - Response time: 319ms - IP: 192.168.28.146 - User: user_1057 - RequestID: k4qtyd4ryia +2025-06-18T14:43:57.881Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 301ms - Rows affected: 6 - RequestID: lj6id3ktmt +2025-06-18T14:43:57.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 296ms - RequestID: 6vcaf13bpdu +2025-06-18T14:43:58.081Z [DEBUG] notification-service - Auth event: password_change - User: user_1017 - IP: 192.168.30.79 - RequestID: 28078d09h7v +2025-06-18T14:43:58.181Z [DEBUG] payment-service - GET /api/v1/payments - Status: 403 - Response time: 646ms - IP: 192.168.170.215 - User: user_1050 - RequestID: x9ynhdxrqb +2025-06-18T14:43:58.281Z [TRACE] order-service - Operation: inventory_updated - Processing time: 555ms - RequestID: t9uicqb679 +2025-06-18T14:43:58.381Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 40ms - Rows affected: 99 - RequestID: 15f9rbke8on +2025-06-18T14:43:58.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 793ms - RequestID: ktsh0lit2vs +2025-06-18T14:43:58.581Z [DEBUG] payment-service - POST /api/v1/users - Status: 500 - Response time: 1805ms - IP: 192.168.159.94 - User: user_1030 - RequestID: 7l009aciuo4 +2025-06-18T14:43:58.681Z [INFO] auth-service - Operation: webhook_sent - Processing time: 1017ms - RequestID: x6wme2m9nx8 +2025-06-18T14:43:58.781Z [TRACE] order-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.196.226 - RequestID: l6o96ube3u +2025-06-18T14:43:58.881Z [DEBUG] user-service - Database SELECT on products - Execution time: 446ms - Rows affected: 51 - RequestID: orn1tb5l95 +2025-06-18T14:43:58.981Z [INFO] auth-service - Database INSERT on orders - Execution time: 7ms - Rows affected: 54 - RequestID: m70cnbacvhm +2025-06-18T14:43:59.081Z [INFO] inventory-service - Database INSERT on products - Execution time: 214ms - Rows affected: 74 - RequestID: 38icy8vjzvw +2025-06-18T14:43:59.181Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 49ms - Rows affected: 83 - RequestID: pt0uo67gq4 +2025-06-18T14:43:59.281Z [INFO] order-service - Auth event: login_failed - User: user_1035 - IP: 192.168.33.76 - RequestID: i939y0nfzp +2025-06-18T14:43:59.381Z [INFO] inventory-service - Database INSERT on payments - Execution time: 45ms - Rows affected: 20 - RequestID: rsvn3znbwja +2025-06-18T14:43:59.481Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 200 - Response time: 1150ms - IP: 192.168.159.94 - User: user_1027 - RequestID: zqle09o631 +2025-06-18T14:43:59.581Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1606ms - IP: 192.168.28.146 - User: user_1091 - RequestID: bim6iscerft +2025-06-18T14:43:59.681Z [DEBUG] user-service - Operation: cache_miss - Processing time: 453ms - RequestID: c65mmi69tto +2025-06-18T14:43:59.781Z [INFO] payment-service - Database SELECT on payments - Execution time: 4ms - Rows affected: 60 - RequestID: n5rwnrwhhrp +2025-06-18T14:43:59.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.13.72 - RequestID: m8povk8aic +2025-06-18T14:43:59.981Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 256ms - Rows affected: 42 - RequestID: g18so2e1ljr +2025-06-18T14:44:00.081Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 661ms - RequestID: 0onet430c61s +2025-06-18T14:44:00.181Z [INFO] order-service - Operation: cache_hit - Processing time: 1013ms - RequestID: ljq1pgecgsg +2025-06-18T14:44:00.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1013 - IP: 192.168.64.33 - RequestID: kb4fw4rexza +2025-06-18T14:44:00.381Z [INFO] user-service - POST /api/v1/orders - Status: 500 - Response time: 1083ms - IP: 192.168.68.128 - User: user_1017 - RequestID: d5j32kbkadq +2025-06-18T14:44:00.481Z [INFO] auth-service - Database SELECT on payments - Execution time: 272ms - Rows affected: 28 - RequestID: ovs3xb3q5j +2025-06-18T14:44:00.581Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 200 - Response time: 972ms - IP: 192.168.14.77 - User: user_1016 - RequestID: izgh9rakho +2025-06-18T14:44:00.681Z [DEBUG] order-service - Auth event: login_success - User: user_1062 - IP: 192.168.194.41 - RequestID: o0gb60l19wm +2025-06-18T14:44:00.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1078 - IP: 192.168.85.229 - RequestID: c6z3ktci2w +2025-06-18T14:44:00.881Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 409ms - Rows affected: 12 - RequestID: 38n9qhwwy6w +2025-06-18T14:44:00.981Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 400 - Response time: 1342ms - IP: 192.168.68.128 - User: user_1015 - RequestID: ppfjuubtnh +2025-06-18T14:44:01.081Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 261ms - Rows affected: 34 - RequestID: 0nh0s5k6bxfk +2025-06-18T14:44:01.181Z [INFO] order-service - Database UPDATE on payments - Execution time: 52ms - Rows affected: 0 - RequestID: t885olft35r +2025-06-18T14:44:01.281Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 201 - Response time: 1612ms - IP: 192.168.33.76 - User: user_1082 - RequestID: 9a85x1xq1kg +2025-06-18T14:44:01.381Z [TRACE] auth-service - Database UPDATE on users - Execution time: 473ms - Rows affected: 93 - RequestID: dwky7vocskv +2025-06-18T14:44:01.481Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1932ms - IP: 192.168.33.76 - User: user_1019 - RequestID: 5u6wxpmy0rg +2025-06-18T14:44:01.581Z [TRACE] auth-service - Operation: cache_hit - Processing time: 795ms - RequestID: 3oqlmex52sj +2025-06-18T14:44:01.681Z [TRACE] payment-service - Database INSERT on payments - Execution time: 368ms - Rows affected: 81 - RequestID: aqzyna29s4 +2025-06-18T14:44:01.781Z [TRACE] order-service - Database UPDATE on payments - Execution time: 183ms - Rows affected: 18 - RequestID: yse9zvmpe5b +2025-06-18T14:44:01.881Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 82ms - Rows affected: 4 - RequestID: q8qh1woibjs +2025-06-18T14:44:01.981Z [DEBUG] user-service - Operation: payment_processed - Processing time: 268ms - RequestID: 9xzl31ifs0d +2025-06-18T14:44:02.081Z [INFO] notification-service - Operation: email_sent - Processing time: 869ms - RequestID: z52n02frmy +2025-06-18T14:44:02.181Z [INFO] auth-service - Operation: cache_hit - Processing time: 381ms - RequestID: 9oe8h1y45aj +2025-06-18T14:44:02.281Z [TRACE] payment-service - Auth event: login_success - User: user_1022 - IP: 192.168.14.77 - RequestID: rze771pwek +2025-06-18T14:44:02.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1041 - IP: 192.168.32.38 - RequestID: vwr6f0mwv3 +2025-06-18T14:44:02.481Z [TRACE] auth-service - Operation: payment_processed - Processing time: 603ms - RequestID: i1m384xy97j +2025-06-18T14:44:02.581Z [TRACE] auth-service - Database DELETE on orders - Execution time: 163ms - Rows affected: 58 - RequestID: gl8ewxf90cp +2025-06-18T14:44:02.681Z [INFO] order-service - Database DELETE on products - Execution time: 378ms - Rows affected: 42 - RequestID: f10frkt1xcp +2025-06-18T14:44:02.781Z [TRACE] notification-service - Auth event: login_success - User: user_1063 - IP: 192.168.229.123 - RequestID: yvciyxhpb4l +2025-06-18T14:44:02.881Z [TRACE] payment-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.240.169 - RequestID: 9bxryozzpf5 +2025-06-18T14:44:02.981Z [TRACE] payment-service - Database SELECT on orders - Execution time: 310ms - Rows affected: 80 - RequestID: 0wodb4acjdq +2025-06-18T14:44:03.081Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 86ms - Rows affected: 10 - RequestID: 9pod819p7ll +2025-06-18T14:44:03.181Z [TRACE] notification-service - Auth event: login_success - User: user_1071 - IP: 192.168.240.169 - RequestID: holttbw8kzt +2025-06-18T14:44:03.281Z [TRACE] payment-service - Auth event: logout - User: user_1083 - IP: 192.168.113.218 - RequestID: 0zk7cddxayq +2025-06-18T14:44:03.381Z [DEBUG] payment-service - Auth event: password_change - User: user_1052 - IP: 192.168.68.128 - RequestID: y8itmoggd0p +2025-06-18T14:44:03.481Z [TRACE] payment-service - Operation: order_created - Processing time: 1025ms - RequestID: ni831gydovg +2025-06-18T14:44:03.581Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.44.5 - RequestID: mwo4um64q8q +2025-06-18T14:44:03.681Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 502 - Response time: 1825ms - IP: 192.168.144.38 - User: user_1086 - RequestID: zzuqs3faa8i +2025-06-18T14:44:03.781Z [INFO] payment-service - POST /api/v1/users - Status: 500 - Response time: 733ms - IP: 192.168.232.72 - User: user_1084 - RequestID: 4x5b84aoqh9 +2025-06-18T14:44:03.881Z [INFO] auth-service - Database INSERT on payments - Execution time: 270ms - Rows affected: 67 - RequestID: wl4kd4pmjg +2025-06-18T14:44:03.981Z [DEBUG] user-service - DELETE /api/v1/users - Status: 201 - Response time: 214ms - IP: 192.168.242.165 - User: user_1086 - RequestID: 6jcp58euqbj +2025-06-18T14:44:04.081Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 128ms - Rows affected: 82 - RequestID: 2mv4h9taq1k +2025-06-18T14:44:04.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 995ms - RequestID: dfv54kw8oaj +2025-06-18T14:44:04.281Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 5ms - Rows affected: 27 - RequestID: qw9seovn8ug +2025-06-18T14:44:04.381Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 218ms - Rows affected: 33 - RequestID: 7tlqkflu3hb +2025-06-18T14:44:04.481Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 471ms - Rows affected: 50 - RequestID: doamj6fj3x +2025-06-18T14:44:04.581Z [TRACE] payment-service - Auth event: login_failed - User: user_1062 - IP: 192.168.227.233 - RequestID: mh19mhzf1tj +2025-06-18T14:44:04.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 595ms - RequestID: duwrapq3xxp +2025-06-18T14:44:04.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 838ms - RequestID: ideahsansm9 +2025-06-18T14:44:04.881Z [INFO] payment-service - Auth event: login_failed - User: user_1093 - IP: 192.168.68.128 - RequestID: bozxtpzws1c +2025-06-18T14:44:04.981Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 866ms - RequestID: 87e9b4aj036 +2025-06-18T14:44:05.081Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 32ms - Rows affected: 3 - RequestID: eo3lvodhba +2025-06-18T14:44:05.181Z [INFO] user-service - Auth event: password_change - User: user_1032 - IP: 192.168.170.215 - RequestID: 45krutclizz +2025-06-18T14:44:05.281Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 152ms - Rows affected: 22 - RequestID: zko22hfgzoq +2025-06-18T14:44:05.381Z [INFO] order-service - Auth event: login_failed - User: user_1035 - IP: 192.168.167.32 - RequestID: n4rh3rc9tk9 +2025-06-18T14:44:05.481Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 449ms - Rows affected: 20 - RequestID: 4fg33mvolo8 +2025-06-18T14:44:05.581Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 200 - Response time: 761ms - IP: 192.168.232.72 - User: user_1000 - RequestID: wm7x89dp4gf +2025-06-18T14:44:05.681Z [INFO] user-service - Operation: cache_miss - Processing time: 544ms - RequestID: 79aw77kfh94 +2025-06-18T14:44:05.781Z [INFO] inventory-service - Auth event: logout - User: user_1018 - IP: 192.168.10.184 - RequestID: gf1hp8dd45p +2025-06-18T14:44:05.881Z [TRACE] order-service - Auth event: logout - User: user_1082 - IP: 192.168.97.87 - RequestID: wxeeh2ebcd +2025-06-18T14:44:05.981Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 201 - Response time: 1847ms - IP: 192.168.100.240 - User: user_1069 - RequestID: g5cxncjznz9 +2025-06-18T14:44:06.081Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 283ms - RequestID: dbsecdy9si +2025-06-18T14:44:06.181Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 467ms - IP: 192.168.167.32 - User: user_1089 - RequestID: m42d9txqgrk +2025-06-18T14:44:06.281Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 77ms - Rows affected: 85 - RequestID: yvaazgodjkn +2025-06-18T14:44:06.381Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 414ms - Rows affected: 35 - RequestID: 2rs6fndww1w +2025-06-18T14:44:06.481Z [TRACE] notification-service - Operation: cache_miss - Processing time: 1041ms - RequestID: g28ka745wr8 +2025-06-18T14:44:06.581Z [INFO] notification-service - Operation: webhook_sent - Processing time: 116ms - RequestID: wkcds8mkaye +2025-06-18T14:44:06.681Z [INFO] payment-service - Operation: inventory_updated - Processing time: 197ms - RequestID: 99yie0w292s +2025-06-18T14:44:06.781Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 109ms - Rows affected: 40 - RequestID: sikq7dlfkxl +2025-06-18T14:44:06.881Z [DEBUG] user-service - DELETE /api/v1/users - Status: 200 - Response time: 771ms - IP: 192.168.36.218 - User: user_1057 - RequestID: e7yj6k4cgct +2025-06-18T14:44:06.981Z [TRACE] auth-service - Operation: payment_processed - Processing time: 911ms - RequestID: dqvjx8faq0f +2025-06-18T14:44:07.081Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 471ms - RequestID: 1ny2rmjgyyo +2025-06-18T14:44:07.181Z [TRACE] order-service - Auth event: login_failed - User: user_1093 - IP: 192.168.36.218 - RequestID: y2a6tbk00x +2025-06-18T14:44:07.281Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 85ms - Rows affected: 32 - RequestID: f97hqbgc4dt +2025-06-18T14:44:07.381Z [INFO] payment-service - PUT /api/v1/users - Status: 502 - Response time: 712ms - IP: 192.168.10.184 - User: user_1094 - RequestID: 6zw4ewh7v1v +2025-06-18T14:44:07.481Z [TRACE] user-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.36.218 - RequestID: pxx70dkvvhf +2025-06-18T14:44:07.581Z [DEBUG] user-service - Auth event: logout - User: user_1033 - IP: 192.168.13.72 - RequestID: mf8qrswhwr +2025-06-18T14:44:07.681Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 503 - Response time: 1105ms - IP: 192.168.211.72 - User: user_1067 - RequestID: onekq0n381d +2025-06-18T14:44:07.781Z [TRACE] order-service - Operation: webhook_sent - Processing time: 556ms - RequestID: 3k5y8bp7qyd +2025-06-18T14:44:07.881Z [DEBUG] inventory-service - GET /api/v1/users - Status: 500 - Response time: 1842ms - IP: 192.168.174.114 - User: user_1065 - RequestID: tlp5h9ldmv +2025-06-18T14:44:07.981Z [INFO] payment-service - POST /api/v1/inventory - Status: 404 - Response time: 1481ms - IP: 192.168.32.38 - User: user_1017 - RequestID: 7kzxxwcxz9u +2025-06-18T14:44:08.081Z [INFO] auth-service - Database SELECT on sessions - Execution time: 153ms - Rows affected: 71 - RequestID: 7wkrsxebjow +2025-06-18T14:44:08.181Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.229.123 - RequestID: m3yvzfwuzt7 +2025-06-18T14:44:08.281Z [INFO] auth-service - Operation: order_created - Processing time: 532ms - RequestID: szuezndwxrp +2025-06-18T14:44:08.381Z [INFO] auth-service - Database DELETE on users - Execution time: 127ms - Rows affected: 39 - RequestID: 7rjtfg8n71f +2025-06-18T14:44:08.481Z [DEBUG] order-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.104.37 - RequestID: juc9wz3jlko +2025-06-18T14:44:08.581Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 45ms - Rows affected: 20 - RequestID: 7ryya0xbn5v +2025-06-18T14:44:08.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 337ms - RequestID: xcpmvf5m9n +2025-06-18T14:44:08.781Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 917ms - RequestID: 3f8aj0tcxnn +2025-06-18T14:44:08.881Z [INFO] auth-service - Operation: cache_miss - Processing time: 603ms - RequestID: nxi085f5zu +2025-06-18T14:44:08.981Z [TRACE] order-service - POST /api/v1/inventory - Status: 502 - Response time: 1080ms - IP: 192.168.187.199 - User: user_1042 - RequestID: d5ak8uopo2r +2025-06-18T14:44:09.081Z [TRACE] order-service - PUT /api/v1/users - Status: 201 - Response time: 416ms - IP: 192.168.147.171 - User: user_1031 - RequestID: s2lxkgv0vg +2025-06-18T14:44:09.181Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 482ms - Rows affected: 14 - RequestID: 7vxmc8l56ub +2025-06-18T14:44:09.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 165ms - RequestID: mw68h25d4j +2025-06-18T14:44:09.381Z [INFO] notification-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.85.229 - RequestID: g88lhzue87v +2025-06-18T14:44:09.481Z [INFO] notification-service - POST /api/v1/auth/login - Status: 401 - Response time: 1023ms - IP: 192.168.46.63 - User: user_1072 - RequestID: 6uvpmoc8ic4 +2025-06-18T14:44:09.581Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 13ms - IP: 192.168.170.215 - User: user_1067 - RequestID: zjrhbkx5gd +2025-06-18T14:44:09.681Z [INFO] order-service - POST /api/v1/inventory - Status: 200 - Response time: 1788ms - IP: 192.168.242.165 - User: user_1060 - RequestID: j5b375s113 +2025-06-18T14:44:09.781Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 597ms - IP: 192.168.174.114 - User: user_1081 - RequestID: 57l5vs6zaeg +2025-06-18T14:44:09.881Z [TRACE] order-service - Auth event: password_change - User: user_1029 - IP: 192.168.174.114 - RequestID: c2lopkq8fig +2025-06-18T14:44:09.981Z [TRACE] auth-service - Auth event: password_change - User: user_1072 - IP: 192.168.189.103 - RequestID: hx0eypxbu9i +2025-06-18T14:44:10.081Z [INFO] order-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.159.94 - RequestID: s0cyen20ibj +2025-06-18T14:44:10.181Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1864ms - IP: 192.168.64.33 - User: user_1062 - RequestID: 7surpybivm4 +2025-06-18T14:44:10.281Z [TRACE] payment-service - Auth event: password_change - User: user_1025 - IP: 192.168.133.7 - RequestID: u4wjvjmvhx +2025-06-18T14:44:10.381Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 310ms - RequestID: lg76y2aihoa +2025-06-18T14:44:10.481Z [TRACE] notification-service - Database INSERT on products - Execution time: 34ms - Rows affected: 81 - RequestID: 8ouyeclga9h +2025-06-18T14:44:10.581Z [INFO] auth-service - Operation: order_created - Processing time: 278ms - RequestID: xaqy6vsu8mp +2025-06-18T14:44:10.681Z [INFO] inventory-service - Database UPDATE on products - Execution time: 233ms - Rows affected: 11 - RequestID: f8z3kjp7w2 +2025-06-18T14:44:10.781Z [TRACE] auth-service - Auth event: login_success - User: user_1051 - IP: 192.168.33.76 - RequestID: pe52nz5chib +2025-06-18T14:44:10.881Z [TRACE] order-service - Auth event: logout - User: user_1038 - IP: 192.168.158.144 - RequestID: hxje057u3h4 +2025-06-18T14:44:10.981Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 581ms - RequestID: lg0r3m416kf +2025-06-18T14:44:11.081Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1377ms - IP: 192.168.189.103 - User: user_1042 - RequestID: nnbr6sm04sf +2025-06-18T14:44:11.181Z [DEBUG] payment-service - Auth event: login_success - User: user_1093 - IP: 192.168.44.5 - RequestID: rzakelkq32b +2025-06-18T14:44:11.281Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1508ms - IP: 192.168.159.94 - User: user_1053 - RequestID: v26rals5gbp +2025-06-18T14:44:11.381Z [TRACE] notification-service - Operation: cache_miss - Processing time: 955ms - RequestID: 6nwepjgyir +2025-06-18T14:44:11.481Z [INFO] inventory-service - GET /api/v1/payments - Status: 200 - Response time: 1809ms - IP: 192.168.68.128 - User: user_1002 - RequestID: dxfhnwufau +2025-06-18T14:44:11.581Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 310ms - RequestID: m2pwh3gjmgl +2025-06-18T14:44:11.681Z [INFO] user-service - DELETE /api/v1/users - Status: 500 - Response time: 350ms - IP: 192.168.11.60 - User: user_1001 - RequestID: ei398chau6t +2025-06-18T14:44:11.781Z [INFO] notification-service - Auth event: login_failed - User: user_1063 - IP: 192.168.144.38 - RequestID: d6b6npq44pb +2025-06-18T14:44:11.881Z [DEBUG] auth-service - Operation: email_sent - Processing time: 785ms - RequestID: 1wvwn0ewgb9 +2025-06-18T14:44:11.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 521ms - RequestID: x3nvsdyviwl +2025-06-18T14:44:12.081Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 272ms - RequestID: 8e9s2xsje7b +2025-06-18T14:44:12.181Z [INFO] order-service - Auth event: login_success - User: user_1063 - IP: 192.168.113.218 - RequestID: kxokpq67mfl +2025-06-18T14:44:12.281Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 732ms - RequestID: e3w9oszp59j +2025-06-18T14:44:12.381Z [TRACE] order-service - GET /api/v1/payments - Status: 502 - Response time: 1161ms - IP: 192.168.240.169 - User: user_1082 - RequestID: kwszzpbcd4 +2025-06-18T14:44:12.481Z [TRACE] notification-service - Database DELETE on users - Execution time: 336ms - Rows affected: 8 - RequestID: zu9es5jzq7c +2025-06-18T14:44:12.581Z [INFO] notification-service - POST /api/v1/inventory - Status: 200 - Response time: 1386ms - IP: 192.168.79.143 - User: user_1088 - RequestID: kaj9c4xv90m +2025-06-18T14:44:12.681Z [DEBUG] auth-service - Auth event: password_change - User: user_1095 - IP: 192.168.11.60 - RequestID: ego8wt2htpt +2025-06-18T14:44:12.781Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 37ms - Rows affected: 11 - RequestID: wr9yi6us6d9 +2025-06-18T14:44:12.881Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 818ms - RequestID: vihola2obyc +2025-06-18T14:44:12.981Z [INFO] order-service - Database INSERT on products - Execution time: 21ms - Rows affected: 67 - RequestID: jwvyqaeu609 +2025-06-18T14:44:13.081Z [INFO] user-service - Database UPDATE on payments - Execution time: 425ms - Rows affected: 46 - RequestID: pzel9yk2wrd +2025-06-18T14:44:13.181Z [INFO] user-service - Database SELECT on payments - Execution time: 250ms - Rows affected: 33 - RequestID: w2jty1wazue +2025-06-18T14:44:13.281Z [TRACE] auth-service - Operation: email_sent - Processing time: 734ms - RequestID: 5vit5zyg0b4 +2025-06-18T14:44:13.381Z [DEBUG] user-service - Operation: order_created - Processing time: 388ms - RequestID: ictho9reaz +2025-06-18T14:44:13.481Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 200 - Response time: 718ms - IP: 192.168.113.218 - User: user_1090 - RequestID: lcorqvmx50o +2025-06-18T14:44:13.581Z [TRACE] order-service - Operation: webhook_sent - Processing time: 712ms - RequestID: csxtz6ixrm +2025-06-18T14:44:13.681Z [TRACE] user-service - Database SELECT on users - Execution time: 8ms - Rows affected: 0 - RequestID: m1qt215qxmq +2025-06-18T14:44:13.781Z [TRACE] inventory-service - Auth event: logout - User: user_1083 - IP: 192.168.32.38 - RequestID: ct9sao1zd3s +2025-06-18T14:44:13.881Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 284ms - IP: 192.168.174.114 - User: user_1065 - RequestID: io86lvvu4lm +2025-06-18T14:44:13.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 145ms - RequestID: ymptibpspd +2025-06-18T14:44:14.081Z [INFO] notification-service - Operation: notification_queued - Processing time: 592ms - RequestID: m8fwpxdl9on +2025-06-18T14:44:14.181Z [INFO] auth-service - Database DELETE on orders - Execution time: 19ms - Rows affected: 36 - RequestID: pumwo2psua +2025-06-18T14:44:14.281Z [DEBUG] auth-service - Operation: email_sent - Processing time: 357ms - RequestID: guhfh3u6xr6 +2025-06-18T14:44:14.381Z [INFO] payment-service - Database UPDATE on orders - Execution time: 135ms - Rows affected: 70 - RequestID: zk9tj8s9yub +2025-06-18T14:44:14.481Z [DEBUG] order-service - Auth event: login_failed - User: user_1001 - IP: 192.168.10.184 - RequestID: ce7rzshiltj +2025-06-18T14:44:14.581Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1371ms - IP: 192.168.79.141 - User: user_1027 - RequestID: k5nqqwtjg6 +2025-06-18T14:44:14.681Z [DEBUG] auth-service - POST /api/v1/users - Status: 503 - Response time: 326ms - IP: 192.168.227.233 - User: user_1070 - RequestID: mzc165k3g0r +2025-06-18T14:44:14.781Z [DEBUG] order-service - Database DELETE on users - Execution time: 475ms - Rows affected: 40 - RequestID: lpwlvk2the9 +2025-06-18T14:44:14.881Z [TRACE] user-service - Database INSERT on products - Execution time: 196ms - Rows affected: 54 - RequestID: i8oe33uye0o +2025-06-18T14:44:14.981Z [TRACE] user-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.196.226 - RequestID: tc0avp1iq +2025-06-18T14:44:15.081Z [TRACE] notification-service - Database UPDATE on users - Execution time: 321ms - Rows affected: 96 - RequestID: 1zbporn49nbj +2025-06-18T14:44:15.181Z [TRACE] user-service - DELETE /api/v1/orders - Status: 401 - Response time: 974ms - IP: 192.168.227.233 - User: user_1099 - RequestID: o9zlzebcuc +2025-06-18T14:44:15.281Z [TRACE] auth-service - POST /api/v1/orders - Status: 503 - Response time: 505ms - IP: 192.168.1.152 - User: user_1029 - RequestID: xw04rhkrb3 +2025-06-18T14:44:15.381Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 502 - Response time: 220ms - IP: 192.168.174.114 - User: user_1045 - RequestID: x2s7r1dul7 +2025-06-18T14:44:15.481Z [TRACE] notification-service - Database SELECT on products - Execution time: 64ms - Rows affected: 44 - RequestID: vpp9lydy5i +2025-06-18T14:44:15.581Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 202ms - Rows affected: 93 - RequestID: 8g6480lj5bs +2025-06-18T14:44:15.681Z [TRACE] order-service - Operation: email_sent - Processing time: 424ms - RequestID: 71u6gjy5aax +2025-06-18T14:44:15.781Z [DEBUG] user-service - Database UPDATE on products - Execution time: 306ms - Rows affected: 92 - RequestID: 409iimsrfv7 +2025-06-18T14:44:15.881Z [INFO] user-service - Operation: inventory_updated - Processing time: 317ms - RequestID: 1r1mrnekxlw +2025-06-18T14:44:15.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.10.184 - RequestID: tpovvszfrkc +2025-06-18T14:44:16.081Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 914ms - IP: 192.168.158.144 - User: user_1044 - RequestID: 5bbqjzcv45c +2025-06-18T14:44:16.181Z [INFO] order-service - Auth event: logout - User: user_1002 - IP: 192.168.229.123 - RequestID: 9e85duly4tg +2025-06-18T14:44:16.281Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 475ms - Rows affected: 63 - RequestID: w0legs46llr +2025-06-18T14:44:16.381Z [TRACE] notification-service - Operation: cache_miss - Processing time: 577ms - RequestID: xzhye7xgvqn +2025-06-18T14:44:16.481Z [DEBUG] user-service - Operation: cache_miss - Processing time: 494ms - RequestID: 8f0c44vg7bq +2025-06-18T14:44:16.581Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 329ms - RequestID: v5hli445tq +2025-06-18T14:44:16.681Z [INFO] payment-service - Operation: inventory_updated - Processing time: 390ms - RequestID: 9yyfzcihvvj +2025-06-18T14:44:16.781Z [INFO] payment-service - Database UPDATE on users - Execution time: 255ms - Rows affected: 90 - RequestID: xqxy35j06 +2025-06-18T14:44:16.881Z [INFO] user-service - Operation: email_sent - Processing time: 205ms - RequestID: v7f38mb886 +2025-06-18T14:44:16.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 219ms - RequestID: knuxu1fxjse +2025-06-18T14:44:17.081Z [INFO] order-service - Operation: email_sent - Processing time: 160ms - RequestID: xpp2dol744d +2025-06-18T14:44:17.181Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 827ms - RequestID: 366j6tew8a2 +2025-06-18T14:44:17.281Z [DEBUG] order-service - Operation: order_created - Processing time: 528ms - RequestID: ohf99ufj9g +2025-06-18T14:44:17.381Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 201 - Response time: 249ms - IP: 192.168.46.63 - User: user_1017 - RequestID: oevf3yod6z +2025-06-18T14:44:17.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 342ms - RequestID: zub6i3a0na +2025-06-18T14:44:17.581Z [INFO] order-service - Database DELETE on users - Execution time: 267ms - Rows affected: 14 - RequestID: wzogiqwj4x +2025-06-18T14:44:17.681Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 234ms - Rows affected: 20 - RequestID: k23comvtq9o +2025-06-18T14:44:17.781Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1158ms - IP: 192.168.181.225 - User: user_1014 - RequestID: iursggwxnij +2025-06-18T14:44:17.881Z [DEBUG] user-service - Operation: cache_hit - Processing time: 820ms - RequestID: h5aqnk63lkd +2025-06-18T14:44:17.981Z [INFO] inventory-service - PUT /api/v1/payments - Status: 403 - Response time: 432ms - IP: 192.168.100.240 - User: user_1027 - RequestID: pyv35cusvt +2025-06-18T14:44:18.081Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 216ms - Rows affected: 45 - RequestID: brggxc3abli +2025-06-18T14:44:18.181Z [TRACE] auth-service - Auth event: password_change - User: user_1068 - IP: 192.168.158.144 - RequestID: s1g1jcp9l3k +2025-06-18T14:44:18.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.10.184 - RequestID: uqsfvtbfpy +2025-06-18T14:44:18.381Z [INFO] payment-service - Auth event: password_change - User: user_1011 - IP: 192.168.181.225 - RequestID: 4ccj66t6j1p +2025-06-18T14:44:18.481Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1615ms - IP: 192.168.147.171 - User: user_1074 - RequestID: 6bpmiz9how4 +2025-06-18T14:44:18.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 351ms - RequestID: tgh8mvx4gei +2025-06-18T14:44:18.681Z [INFO] notification-service - Auth event: logout - User: user_1074 - IP: 192.168.141.100 - RequestID: xo0ovf72q9g +2025-06-18T14:44:18.781Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 624ms - RequestID: cwlm2xbyzqu +2025-06-18T14:44:18.881Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 499ms - Rows affected: 41 - RequestID: o6yodrb7sdo +2025-06-18T14:44:18.981Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 131ms - Rows affected: 25 - RequestID: cpfikw1tmx +2025-06-18T14:44:19.081Z [TRACE] auth-service - Auth event: password_change - User: user_1004 - IP: 192.168.133.7 - RequestID: hdlue5r7lfi +2025-06-18T14:44:19.181Z [TRACE] payment-service - Auth event: login_success - User: user_1097 - IP: 192.168.170.215 - RequestID: cjkeh3nsb1v +2025-06-18T14:44:19.281Z [INFO] order-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.247.134 - RequestID: 9b1uy2afrv7 +2025-06-18T14:44:19.381Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 87ms - RequestID: 4ba3wr1kz4l +2025-06-18T14:44:19.481Z [TRACE] user-service - Auth event: login_failed - User: user_1012 - IP: 192.168.85.229 - RequestID: wut15ubpde +2025-06-18T14:44:19.581Z [INFO] user-service - Database UPDATE on products - Execution time: 314ms - Rows affected: 29 - RequestID: k5wh7dfztqc +2025-06-18T14:44:19.681Z [DEBUG] order-service - Auth event: logout - User: user_1047 - IP: 192.168.242.165 - RequestID: 9s7rrv3q3in +2025-06-18T14:44:19.781Z [TRACE] user-service - Operation: payment_processed - Processing time: 470ms - RequestID: wbkcnf3ykes +2025-06-18T14:44:19.881Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 503 - Response time: 77ms - IP: 192.168.81.206 - User: user_1098 - RequestID: qr3xegkxnm +2025-06-18T14:44:19.981Z [TRACE] inventory-service - Auth event: logout - User: user_1068 - IP: 192.168.235.117 - RequestID: xjd2tj78pi +2025-06-18T14:44:20.081Z [INFO] user-service - Auth event: login_failed - User: user_1025 - IP: 192.168.14.77 - RequestID: 0k9aad9l005 +2025-06-18T14:44:20.181Z [INFO] auth-service - Auth event: password_change - User: user_1080 - IP: 192.168.227.77 - RequestID: 7xnp5zvfa8n +2025-06-18T14:44:20.281Z [INFO] inventory-service - PUT /api/v1/orders - Status: 200 - Response time: 1497ms - IP: 192.168.141.100 - User: user_1039 - RequestID: objnvs17zh +2025-06-18T14:44:20.381Z [INFO] user-service - PUT /api/v1/inventory - Status: 403 - Response time: 740ms - IP: 192.168.53.133 - User: user_1031 - RequestID: ph89hjce8f +2025-06-18T14:44:20.481Z [INFO] notification-service - Operation: cache_hit - Processing time: 911ms - RequestID: nu1ew91qum +2025-06-18T14:44:20.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 736ms - RequestID: f14mm7yblfg +2025-06-18T14:44:20.681Z [DEBUG] payment-service - Operation: email_sent - Processing time: 944ms - RequestID: f0v9x4not5l +2025-06-18T14:44:20.781Z [INFO] order-service - Database UPDATE on users - Execution time: 72ms - Rows affected: 31 - RequestID: xv6wd47h7w +2025-06-18T14:44:20.881Z [DEBUG] order-service - Operation: cache_hit - Processing time: 260ms - RequestID: pz749c1ao2 +2025-06-18T14:44:20.981Z [INFO] inventory-service - Database INSERT on payments - Execution time: 400ms - Rows affected: 25 - RequestID: r7lps04q1lo +2025-06-18T14:44:21.081Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 503 - Response time: 1913ms - IP: 192.168.174.114 - User: user_1077 - RequestID: zqm95q79oq9 +2025-06-18T14:44:21.181Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 404 - Response time: 908ms - IP: 192.168.13.72 - User: user_1049 - RequestID: u21q7ezve1q +2025-06-18T14:44:21.281Z [INFO] order-service - Operation: cache_miss - Processing time: 447ms - RequestID: nj4oorq4m4f +2025-06-18T14:44:21.381Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1761ms - IP: 192.168.36.218 - User: user_1051 - RequestID: 2gggiah2uul +2025-06-18T14:44:21.481Z [TRACE] inventory-service - Operation: order_created - Processing time: 963ms - RequestID: 5xcf9f8po4i +2025-06-18T14:44:21.581Z [INFO] order-service - Database INSERT on products - Execution time: 151ms - Rows affected: 30 - RequestID: bd7xa83qs8 +2025-06-18T14:44:21.681Z [INFO] user-service - POST /api/v1/auth/logout - Status: 403 - Response time: 631ms - IP: 192.168.46.63 - User: user_1087 - RequestID: z1iz5y42rc +2025-06-18T14:44:21.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.64.33 - RequestID: 3kc9cc9zsrq +2025-06-18T14:44:21.881Z [INFO] payment-service - Database UPDATE on users - Execution time: 367ms - Rows affected: 63 - RequestID: z1iqqilaec +2025-06-18T14:44:21.981Z [TRACE] user-service - Operation: payment_processed - Processing time: 585ms - RequestID: rrtg3byjnb8 +2025-06-18T14:44:22.081Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 81ms - Rows affected: 88 - RequestID: vw0uiwaxa4e +2025-06-18T14:44:22.181Z [INFO] auth-service - Database DELETE on sessions - Execution time: 52ms - Rows affected: 80 - RequestID: nxaf9syt0nd +2025-06-18T14:44:22.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 778ms - RequestID: 8i4rw6pvyh3 +2025-06-18T14:44:22.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.28.146 - RequestID: 35d1m6pb5in +2025-06-18T14:44:22.481Z [TRACE] payment-service - Database DELETE on orders - Execution time: 12ms - Rows affected: 61 - RequestID: nu7j2x4bqvj +2025-06-18T14:44:22.581Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1713ms - IP: 192.168.68.158 - User: user_1081 - RequestID: hhcwxagzrsi +2025-06-18T14:44:22.681Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 577ms - RequestID: kkga4otvxdl +2025-06-18T14:44:22.781Z [TRACE] auth-service - Database DELETE on users - Execution time: 155ms - Rows affected: 98 - RequestID: mxtmcd3xm2 +2025-06-18T14:44:22.881Z [TRACE] auth-service - Database UPDATE on users - Execution time: 29ms - Rows affected: 51 - RequestID: fcr1jomkmul +2025-06-18T14:44:22.981Z [INFO] inventory-service - PATCH /api/v1/users - Status: 404 - Response time: 966ms - IP: 192.168.235.117 - User: user_1072 - RequestID: cct2qqqvkkl +2025-06-18T14:44:23.081Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 400 - Response time: 451ms - IP: 192.168.227.233 - User: user_1030 - RequestID: 2ez0k33ev5u +2025-06-18T14:44:23.181Z [INFO] user-service - Operation: webhook_sent - Processing time: 378ms - RequestID: 9q4g6wozm9 +2025-06-18T14:44:23.281Z [TRACE] auth-service - Auth event: login_failed - User: user_1035 - IP: 192.168.240.169 - RequestID: tfntxvlsrq +2025-06-18T14:44:23.381Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 691ms - RequestID: dxuxkq5c01 +2025-06-18T14:44:23.481Z [TRACE] auth-service - PATCH /api/v1/users - Status: 502 - Response time: 516ms - IP: 192.168.227.233 - User: user_1032 - RequestID: 9d1ysn9kdr +2025-06-18T14:44:23.581Z [DEBUG] user-service - Database UPDATE on users - Execution time: 495ms - Rows affected: 68 - RequestID: df1tlkaibha +2025-06-18T14:44:23.681Z [TRACE] notification-service - Database UPDATE on users - Execution time: 211ms - Rows affected: 42 - RequestID: 9r7supj0r9n +2025-06-18T14:44:23.781Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 176ms - Rows affected: 45 - RequestID: rfjuzhkij4 +2025-06-18T14:44:23.881Z [INFO] order-service - Database UPDATE on payments - Execution time: 371ms - Rows affected: 90 - RequestID: in4k092j7a +2025-06-18T14:44:23.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 872ms - RequestID: q5j4mtpu6j +2025-06-18T14:44:24.081Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 681ms - RequestID: kuraefkhs0s +2025-06-18T14:44:24.181Z [TRACE] order-service - Auth event: login_failed - User: user_1012 - IP: 192.168.170.215 - RequestID: i7wkjv49hs +2025-06-18T14:44:24.281Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 962ms - RequestID: tphuthmn89s +2025-06-18T14:44:24.381Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 500 - Response time: 286ms - IP: 192.168.85.229 - User: user_1015 - RequestID: mbbd8tg7dwk +2025-06-18T14:44:24.481Z [TRACE] inventory-service - Operation: order_created - Processing time: 755ms - RequestID: s7e4rke0on8 +2025-06-18T14:44:24.581Z [INFO] order-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.240.169 - RequestID: ahih05o3yae +2025-06-18T14:44:24.681Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 502 - Response time: 854ms - IP: 192.168.247.134 - User: user_1035 - RequestID: h9d016qwygi +2025-06-18T14:44:24.781Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 1033ms - RequestID: 8e7vjhkizk +2025-06-18T14:44:24.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 719ms - RequestID: s3smg8sm2qh +2025-06-18T14:44:24.981Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 102ms - Rows affected: 58 - RequestID: 1mp35x5cti7 +2025-06-18T14:44:25.081Z [INFO] inventory-service - Operation: cache_miss - Processing time: 183ms - RequestID: fzsmlstmrw6 +2025-06-18T14:44:25.181Z [TRACE] inventory-service - Auth event: logout - User: user_1058 - IP: 192.168.194.41 - RequestID: l5w6gahuh8 +2025-06-18T14:44:25.281Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 222ms - Rows affected: 45 - RequestID: ihtmsb6xz6h +2025-06-18T14:44:25.381Z [DEBUG] payment-service - Auth event: logout - User: user_1019 - IP: 192.168.196.226 - RequestID: 74d3k5xinx4 +2025-06-18T14:44:25.481Z [DEBUG] auth-service - Operation: order_created - Processing time: 950ms - RequestID: 9ixmtu050qk +2025-06-18T14:44:25.581Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 183ms - IP: 192.168.189.103 - User: user_1019 - RequestID: v9lbchxp6m +2025-06-18T14:44:25.681Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 86ms - Rows affected: 52 - RequestID: lew7yg5e51j +2025-06-18T14:44:25.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1081 - IP: 192.168.79.143 - RequestID: wt826b0rwlm +2025-06-18T14:44:25.881Z [INFO] order-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.100.240 - RequestID: ox8ulk862o +2025-06-18T14:44:25.981Z [TRACE] order-service - Auth event: password_change - User: user_1081 - IP: 192.168.147.171 - RequestID: sl5h2oys08m +2025-06-18T14:44:26.081Z [TRACE] user-service - Auth event: logout - User: user_1010 - IP: 192.168.242.165 - RequestID: wdevlpotkaj +2025-06-18T14:44:26.181Z [TRACE] user-service - Database DELETE on products - Execution time: 213ms - Rows affected: 0 - RequestID: 6vwexhdnr6 +2025-06-18T14:44:26.281Z [INFO] inventory-service - Auth event: logout - User: user_1062 - IP: 192.168.170.215 - RequestID: pcp0j65ghuo +2025-06-18T14:44:26.381Z [DEBUG] user-service - Database SELECT on orders - Execution time: 318ms - Rows affected: 95 - RequestID: w0jbuulv97h +2025-06-18T14:44:26.481Z [INFO] payment-service - Auth event: login_success - User: user_1033 - IP: 192.168.229.123 - RequestID: adi9lngvkj +2025-06-18T14:44:26.581Z [DEBUG] order-service - Operation: payment_processed - Processing time: 186ms - RequestID: iabhkoqh45a +2025-06-18T14:44:26.681Z [INFO] notification-service - Operation: cache_miss - Processing time: 975ms - RequestID: mjx0abd9ku +2025-06-18T14:44:26.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 825ms - RequestID: zhb4j98xpn +2025-06-18T14:44:26.881Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 431ms - Rows affected: 39 - RequestID: 6xoebo9a136 +2025-06-18T14:44:26.981Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 110ms - Rows affected: 5 - RequestID: 7o8qf5d77v9 +2025-06-18T14:44:27.081Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 400 - Response time: 1823ms - IP: 192.168.247.134 - User: user_1069 - RequestID: i8ii9mc06sr +2025-06-18T14:44:27.181Z [TRACE] inventory-service - Auth event: login_failed - User: user_1003 - IP: 192.168.194.41 - RequestID: p7etqknlz +2025-06-18T14:44:27.281Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 289ms - Rows affected: 80 - RequestID: cpq4gvjk7 +2025-06-18T14:44:27.381Z [INFO] auth-service - Database DELETE on products - Execution time: 435ms - Rows affected: 71 - RequestID: 02q1t3gpz9mj +2025-06-18T14:44:27.481Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1286ms - IP: 192.168.79.116 - User: user_1094 - RequestID: iqvqo4ldgd9 +2025-06-18T14:44:27.581Z [INFO] inventory-service - Database SELECT on payments - Execution time: 389ms - Rows affected: 62 - RequestID: mkgeft9j6v +2025-06-18T14:44:27.681Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1148ms - IP: 192.168.147.171 - User: user_1022 - RequestID: b1a1uxi8aw8 +2025-06-18T14:44:27.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.196.226 - RequestID: 73c0crfc7ju +2025-06-18T14:44:27.881Z [INFO] user-service - Database UPDATE on products - Execution time: 458ms - Rows affected: 11 - RequestID: 2e51ljpgqp1 +2025-06-18T14:44:27.981Z [TRACE] user-service - GET /api/v1/users - Status: 503 - Response time: 1563ms - IP: 192.168.32.38 - User: user_1045 - RequestID: 1sd0ldaqbsb +2025-06-18T14:44:28.081Z [INFO] auth-service - Operation: inventory_updated - Processing time: 119ms - RequestID: 6fhgz6y8wjl +2025-06-18T14:44:28.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1089 - IP: 192.168.174.114 - RequestID: 9ppl2evp4xp +2025-06-18T14:44:28.281Z [TRACE] payment-service - Operation: email_sent - Processing time: 988ms - RequestID: hmtfbbgshav +2025-06-18T14:44:28.381Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 74ms - RequestID: 55p0ssh7cz2 +2025-06-18T14:44:28.481Z [DEBUG] payment-service - Operation: order_created - Processing time: 380ms - RequestID: jiymvvxc64 +2025-06-18T14:44:28.581Z [INFO] auth-service - Operation: order_created - Processing time: 790ms - RequestID: p0ogodmnk38 +2025-06-18T14:44:28.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1090 - IP: 192.168.44.5 - RequestID: oqtu239eby +2025-06-18T14:44:28.781Z [TRACE] user-service - Database SELECT on payments - Execution time: 226ms - Rows affected: 89 - RequestID: vxdbha1m4y +2025-06-18T14:44:28.881Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 132ms - Rows affected: 85 - RequestID: me4jve8nh4 +2025-06-18T14:44:28.981Z [DEBUG] notification-service - POST /api/v1/orders - Status: 401 - Response time: 1670ms - IP: 192.168.13.72 - User: user_1077 - RequestID: fkyzdx4ug6n +2025-06-18T14:44:29.081Z [TRACE] notification-service - Operation: cache_miss - Processing time: 74ms - RequestID: a0ykhmnahyc +2025-06-18T14:44:29.181Z [INFO] notification-service - Database SELECT on sessions - Execution time: 302ms - Rows affected: 5 - RequestID: aunjdzcxdzv +2025-06-18T14:44:29.281Z [TRACE] order-service - POST /api/v1/payments - Status: 200 - Response time: 505ms - IP: 192.168.64.33 - User: user_1080 - RequestID: oa7bf2kgdzk +2025-06-18T14:44:29.381Z [DEBUG] user-service - Database SELECT on payments - Execution time: 478ms - Rows affected: 0 - RequestID: ysvj7n6ag5a +2025-06-18T14:44:29.481Z [TRACE] auth-service - GET /api/v1/inventory - Status: 502 - Response time: 1963ms - IP: 192.168.227.77 - User: user_1058 - RequestID: ljia2p5c2 +2025-06-18T14:44:29.581Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 200 - Response time: 1277ms - IP: 192.168.100.240 - User: user_1019 - RequestID: 8hndbv1v1ui +2025-06-18T14:44:29.681Z [DEBUG] user-service - Database INSERT on users - Execution time: 143ms - Rows affected: 2 - RequestID: y8e8e5svsxj +2025-06-18T14:44:29.781Z [INFO] user-service - GET /api/v1/payments - Status: 403 - Response time: 407ms - IP: 192.168.242.165 - User: user_1002 - RequestID: 6ghcnj51lt6 +2025-06-18T14:44:29.881Z [INFO] user-service - Auth event: login_failed - User: user_1046 - IP: 192.168.232.72 - RequestID: wkbb43kn6jb +2025-06-18T14:44:29.981Z [DEBUG] notification-service - Auth event: login_success - User: user_1019 - IP: 192.168.14.77 - RequestID: yzdce7kcki8 +2025-06-18T14:44:30.081Z [DEBUG] auth-service - Operation: order_created - Processing time: 262ms - RequestID: bdy89tywhu8 +2025-06-18T14:44:30.181Z [INFO] inventory-service - Auth event: password_change - User: user_1053 - IP: 192.168.242.165 - RequestID: 9gnuq8v5di5 +2025-06-18T14:44:30.281Z [TRACE] auth-service - Database DELETE on users - Execution time: 291ms - Rows affected: 60 - RequestID: cga4eda29a +2025-06-18T14:44:30.381Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 137ms - Rows affected: 95 - RequestID: h8ab4bf64zv +2025-06-18T14:44:30.481Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 187ms - Rows affected: 55 - RequestID: h5di3o3ytfs +2025-06-18T14:44:30.581Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 108ms - IP: 192.168.11.60 - User: user_1055 - RequestID: 6z73ayhbk9x +2025-06-18T14:44:30.681Z [DEBUG] notification-service - Auth event: logout - User: user_1016 - IP: 192.168.10.184 - RequestID: hy3x1jneqot +2025-06-18T14:44:30.781Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 219ms - Rows affected: 83 - RequestID: nerw4z5t208 +2025-06-18T14:44:30.881Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 175ms - Rows affected: 47 - RequestID: awtlpng4imp +2025-06-18T14:44:30.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.79.143 - RequestID: 3zadd0jjytj +2025-06-18T14:44:31.081Z [TRACE] order-service - Operation: notification_queued - Processing time: 71ms - RequestID: 0jl7v6y4vivk +2025-06-18T14:44:31.181Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 401 - Response time: 1702ms - IP: 192.168.235.117 - User: user_1090 - RequestID: n3yra7nqev +2025-06-18T14:44:31.281Z [INFO] notification-service - Operation: webhook_sent - Processing time: 92ms - RequestID: j6urplvm8vg +2025-06-18T14:44:31.381Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 403 - Response time: 1140ms - IP: 192.168.147.171 - User: user_1060 - RequestID: h8co948d6uk +2025-06-18T14:44:31.481Z [INFO] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 862ms - IP: 192.168.28.146 - User: user_1048 - RequestID: njntq8j05q +2025-06-18T14:44:31.581Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 512ms - IP: 192.168.28.146 - User: user_1085 - RequestID: tneuk2qxe4m +2025-06-18T14:44:31.681Z [DEBUG] user-service - Database SELECT on products - Execution time: 138ms - Rows affected: 98 - RequestID: aj6obkis4hi +2025-06-18T14:44:31.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 179ms - RequestID: 6cx1b1io6b7 +2025-06-18T14:44:31.881Z [INFO] order-service - Operation: cache_miss - Processing time: 157ms - RequestID: 8cqwbtb3rbw +2025-06-18T14:44:31.981Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 164ms - Rows affected: 19 - RequestID: dy8l6ji2xll +2025-06-18T14:44:32.081Z [INFO] user-service - Database INSERT on users - Execution time: 182ms - Rows affected: 52 - RequestID: dt5lxzcsfo +2025-06-18T14:44:32.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 50ms - RequestID: 0ebzu3pqqdaq +2025-06-18T14:44:32.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.11.60 - RequestID: qum0ny4nba8 +2025-06-18T14:44:32.381Z [TRACE] user-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.133.7 - RequestID: 4merffju95m +2025-06-18T14:44:32.481Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 87ms - RequestID: 3qicqofmnzn +2025-06-18T14:44:32.581Z [TRACE] inventory-service - Database INSERT on products - Execution time: 176ms - Rows affected: 42 - RequestID: 2498d124d1 +2025-06-18T14:44:32.681Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 441ms - Rows affected: 4 - RequestID: aiao6t6azra +2025-06-18T14:44:32.781Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 148ms - Rows affected: 3 - RequestID: 5faospqz75 +2025-06-18T14:44:32.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 1016ms - RequestID: 6ndu4ytgeh3 +2025-06-18T14:44:32.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.242.165 - RequestID: 0csfeu9rbkkd +2025-06-18T14:44:33.081Z [DEBUG] payment-service - Auth event: login_success - User: user_1015 - IP: 192.168.79.116 - RequestID: e9127drmha +2025-06-18T14:44:33.181Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 264ms - Rows affected: 77 - RequestID: mzo7chvrqzl +2025-06-18T14:44:33.281Z [TRACE] order-service - Database UPDATE on users - Execution time: 193ms - Rows affected: 69 - RequestID: fpyoar00ovw +2025-06-18T14:44:33.381Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 117ms - Rows affected: 90 - RequestID: s82bw8ixcm +2025-06-18T14:44:33.481Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1758ms - IP: 192.168.30.79 - User: user_1090 - RequestID: 7qdirjfxlrn +2025-06-18T14:44:33.581Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 595ms - RequestID: 5wb0hflbxqy +2025-06-18T14:44:33.681Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 424ms - Rows affected: 87 - RequestID: pbhthto7y9j +2025-06-18T14:44:33.781Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 862ms - RequestID: l0rndjd9l5i +2025-06-18T14:44:33.881Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 80ms - Rows affected: 90 - RequestID: 7ngtsb03l9q +2025-06-18T14:44:33.981Z [DEBUG] inventory-service - POST /api/v1/users - Status: 400 - Response time: 1098ms - IP: 192.168.227.233 - User: user_1076 - RequestID: hnh1ugz42pt +2025-06-18T14:44:34.081Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1449ms - IP: 192.168.28.146 - User: user_1088 - RequestID: jygp6kbjm3o +2025-06-18T14:44:34.181Z [DEBUG] inventory-service - Auth event: login_success - User: user_1063 - IP: 192.168.100.240 - RequestID: 6cqbrjsr016 +2025-06-18T14:44:34.281Z [INFO] user-service - Database DELETE on users - Execution time: 482ms - Rows affected: 15 - RequestID: 3pzyvfp3gn9 +2025-06-18T14:44:34.381Z [DEBUG] user-service - Auth event: login_success - User: user_1018 - IP: 192.168.235.117 - RequestID: xyn5789wmg +2025-06-18T14:44:34.481Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1975ms - IP: 192.168.104.37 - User: user_1026 - RequestID: kcfon0qv1g8 +2025-06-18T14:44:34.581Z [DEBUG] notification-service - Database DELETE on products - Execution time: 398ms - Rows affected: 28 - RequestID: j9bcttg77el +2025-06-18T14:44:34.681Z [INFO] order-service - POST /api/v1/inventory - Status: 502 - Response time: 384ms - IP: 192.168.235.117 - User: user_1046 - RequestID: hu6kam7tadu +2025-06-18T14:44:34.781Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 330ms - Rows affected: 56 - RequestID: rd3gmbhm7g +2025-06-18T14:44:34.881Z [INFO] auth-service - Operation: cache_hit - Processing time: 110ms - RequestID: vlb3zle33rp +2025-06-18T14:44:34.981Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 217ms - Rows affected: 83 - RequestID: 09u9wgb9k7uq +2025-06-18T14:44:35.081Z [DEBUG] order-service - Operation: email_sent - Processing time: 910ms - RequestID: 5ehb8ao6chl +2025-06-18T14:44:35.181Z [INFO] inventory-service - Operation: notification_queued - Processing time: 493ms - RequestID: 2dkdv9197qh +2025-06-18T14:44:35.281Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1102ms - IP: 192.168.14.77 - User: user_1061 - RequestID: ykvbbd138z +2025-06-18T14:44:35.381Z [INFO] order-service - PUT /api/v1/auth/login - Status: 404 - Response time: 2007ms - IP: 192.168.1.152 - User: user_1006 - RequestID: oa1l8huv5b +2025-06-18T14:44:35.481Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 205ms - RequestID: 7h7ntzc2cz7 +2025-06-18T14:44:35.581Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 65ms - Rows affected: 20 - RequestID: 6lj1ph0c1rl +2025-06-18T14:44:35.681Z [DEBUG] order-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.235.117 - RequestID: 7tsuo3ti7cb +2025-06-18T14:44:35.781Z [TRACE] order-service - Database SELECT on orders - Execution time: 123ms - Rows affected: 83 - RequestID: i28ta2akufg +2025-06-18T14:44:35.881Z [TRACE] user-service - Database INSERT on orders - Execution time: 480ms - Rows affected: 27 - RequestID: bvwldyqdxlh +2025-06-18T14:44:35.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.64.33 - RequestID: vrassu4m31g +2025-06-18T14:44:36.081Z [INFO] auth-service - Operation: email_sent - Processing time: 124ms - RequestID: x1ye4r4qp5k +2025-06-18T14:44:36.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.14.77 - RequestID: gmsoi2ui22l +2025-06-18T14:44:36.281Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 379ms - Rows affected: 52 - RequestID: yee9i5i0jq +2025-06-18T14:44:36.381Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 441ms - Rows affected: 85 - RequestID: ds4upd9lidb +2025-06-18T14:44:36.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 977ms - RequestID: 54qalr4nbeh +2025-06-18T14:44:36.581Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 502 - Response time: 1687ms - IP: 192.168.187.199 - User: user_1013 - RequestID: slx62ii079j +2025-06-18T14:44:36.681Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 503 - Response time: 683ms - IP: 192.168.232.72 - User: user_1079 - RequestID: 7oqd8ep9d5 +2025-06-18T14:44:36.781Z [DEBUG] order-service - Database DELETE on orders - Execution time: 262ms - Rows affected: 20 - RequestID: v9et2mqpbyp +2025-06-18T14:44:36.881Z [INFO] auth-service - Database DELETE on products - Execution time: 312ms - Rows affected: 35 - RequestID: f36mnxycf2i +2025-06-18T14:44:36.981Z [INFO] payment-service - Database INSERT on users - Execution time: 367ms - Rows affected: 3 - RequestID: 1ls5qsl3r1y +2025-06-18T14:44:37.081Z [INFO] order-service - POST /api/v1/payments - Status: 404 - Response time: 402ms - IP: 192.168.242.165 - User: user_1086 - RequestID: wqrfoxptj4h +2025-06-18T14:44:37.181Z [INFO] order-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.44.5 - RequestID: 71wlgohly3d +2025-06-18T14:44:37.281Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1877ms - IP: 192.168.240.169 - User: user_1047 - RequestID: e2q7mhgzz16 +2025-06-18T14:44:37.381Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1555ms - IP: 192.168.104.37 - User: user_1080 - RequestID: 2gpjr0na93b +2025-06-18T14:44:37.481Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 1011ms - RequestID: sotj4w81gs9 +2025-06-18T14:44:37.581Z [INFO] order-service - Database SELECT on users - Execution time: 252ms - Rows affected: 5 - RequestID: tnfcwri14d +2025-06-18T14:44:37.681Z [TRACE] notification-service - GET /api/v1/payments - Status: 503 - Response time: 218ms - IP: 192.168.211.72 - User: user_1002 - RequestID: k9shblqlct +2025-06-18T14:44:37.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.81.206 - RequestID: 6tgev7s8rli +2025-06-18T14:44:37.881Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 909ms - IP: 192.168.174.114 - User: user_1000 - RequestID: 8qbt66lszgr +2025-06-18T14:44:37.981Z [TRACE] payment-service - PUT /api/v1/payments - Status: 404 - Response time: 1527ms - IP: 192.168.79.141 - User: user_1038 - RequestID: nrn6iuz4w7 +2025-06-18T14:44:38.081Z [INFO] order-service - Operation: webhook_sent - Processing time: 70ms - RequestID: k69gfcobd0k +2025-06-18T14:44:38.181Z [INFO] order-service - Operation: inventory_updated - Processing time: 975ms - RequestID: kz6n5zrk21 +2025-06-18T14:44:38.281Z [INFO] payment-service - Operation: cache_miss - Processing time: 1038ms - RequestID: eew0i46oq8h +2025-06-18T14:44:38.381Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 201 - Response time: 787ms - IP: 192.168.44.5 - User: user_1015 - RequestID: do7bgvav8rn +2025-06-18T14:44:38.481Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 298ms - Rows affected: 74 - RequestID: wiockrh6kgg +2025-06-18T14:44:38.581Z [INFO] payment-service - Auth event: login_failed - User: user_1027 - IP: 192.168.1.152 - RequestID: de8bxr3uodv +2025-06-18T14:44:38.681Z [TRACE] user-service - Operation: webhook_sent - Processing time: 355ms - RequestID: r83eideh8j +2025-06-18T14:44:38.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1048 - IP: 192.168.242.165 - RequestID: dxqcqz21lxb +2025-06-18T14:44:38.881Z [INFO] payment-service - Operation: payment_processed - Processing time: 921ms - RequestID: ecqirp8e008 +2025-06-18T14:44:38.981Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.158.144 - RequestID: pj7xur3v2wf +2025-06-18T14:44:39.081Z [INFO] order-service - Auth event: login_failed - User: user_1028 - IP: 192.168.79.143 - RequestID: 00htve77iy4o +2025-06-18T14:44:39.181Z [INFO] user-service - Operation: notification_queued - Processing time: 624ms - RequestID: h6duzyu29n5 +2025-06-18T14:44:39.281Z [DEBUG] user-service - Operation: payment_processed - Processing time: 692ms - RequestID: 7v2vamw2wpy +2025-06-18T14:44:39.381Z [INFO] user-service - DELETE /api/v1/payments - Status: 200 - Response time: 1563ms - IP: 192.168.53.133 - User: user_1029 - RequestID: lnk0st005t +2025-06-18T14:44:39.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1083 - IP: 192.168.1.152 - RequestID: r72twoms8w +2025-06-18T14:44:39.581Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 412ms - Rows affected: 70 - RequestID: fg2glp9rdp +2025-06-18T14:44:39.681Z [INFO] order-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1740ms - IP: 192.168.232.72 - User: user_1009 - RequestID: fm36tanpggi +2025-06-18T14:44:39.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 495ms - RequestID: kwgnz32lqyc +2025-06-18T14:44:39.881Z [DEBUG] order-service - Operation: email_sent - Processing time: 296ms - RequestID: 32b0olvcrih +2025-06-18T14:44:39.981Z [INFO] auth-service - PATCH /api/v1/orders - Status: 400 - Response time: 39ms - IP: 192.168.194.41 - User: user_1082 - RequestID: fke6ub5p6v8 +2025-06-18T14:44:40.081Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 404 - Response time: 1803ms - IP: 192.168.138.123 - User: user_1070 - RequestID: xxt19u1qnk +2025-06-18T14:44:40.181Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 404 - Response time: 535ms - IP: 192.168.46.63 - User: user_1017 - RequestID: cdz1xz8s59t +2025-06-18T14:44:40.281Z [INFO] user-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.32.38 - RequestID: bro5kevmojf +2025-06-18T14:44:40.381Z [TRACE] user-service - Database INSERT on products - Execution time: 39ms - Rows affected: 4 - RequestID: 6r5wzq6chsd +2025-06-18T14:44:40.481Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 403 - Response time: 147ms - IP: 192.168.79.116 - User: user_1014 - RequestID: pz9fdrabqba +2025-06-18T14:44:40.581Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1078ms - IP: 192.168.11.60 - User: user_1048 - RequestID: fer7x4yl52d +2025-06-18T14:44:40.681Z [INFO] auth-service - Operation: cache_hit - Processing time: 995ms - RequestID: 5gupn2rkik4 +2025-06-18T14:44:40.781Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 102ms - Rows affected: 61 - RequestID: f73xdmmozbn +2025-06-18T14:44:40.881Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 373ms - Rows affected: 86 - RequestID: y1d5jpkrie +2025-06-18T14:44:40.981Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 67ms - Rows affected: 4 - RequestID: s745eeatozp +2025-06-18T14:44:41.081Z [INFO] payment-service - Operation: order_created - Processing time: 756ms - RequestID: 1lrs4wu2x0v +2025-06-18T14:44:41.181Z [DEBUG] auth-service - Auth event: login_success - User: user_1014 - IP: 192.168.194.41 - RequestID: 6e8lefebiyd +2025-06-18T14:44:41.281Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1571ms - IP: 192.168.181.225 - User: user_1039 - RequestID: hh7jndtgbyb +2025-06-18T14:44:41.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1049 - IP: 192.168.174.114 - RequestID: n2henngw1il +2025-06-18T14:44:41.481Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 408ms - Rows affected: 0 - RequestID: gzgw9y4jidn +2025-06-18T14:44:41.581Z [INFO] order-service - Operation: cache_miss - Processing time: 1029ms - RequestID: b3fvu8fywe +2025-06-18T14:44:41.681Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 11ms - Rows affected: 44 - RequestID: d2hf6fp9htj +2025-06-18T14:44:41.781Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 522ms - RequestID: qwodauxghx +2025-06-18T14:44:41.881Z [TRACE] order-service - Operation: email_sent - Processing time: 868ms - RequestID: xhqaucbzoxe +2025-06-18T14:44:41.981Z [TRACE] auth-service - Database UPDATE on products - Execution time: 76ms - Rows affected: 19 - RequestID: q8yejnr01 +2025-06-18T14:44:42.081Z [INFO] inventory-service - Auth event: logout - User: user_1096 - IP: 192.168.133.7 - RequestID: z0znnmb0c7l +2025-06-18T14:44:42.181Z [TRACE] notification-service - Database DELETE on payments - Execution time: 299ms - Rows affected: 51 - RequestID: wg4wnga08v +2025-06-18T14:44:42.281Z [INFO] order-service - Operation: cache_miss - Processing time: 198ms - RequestID: jq051zk7ok +2025-06-18T14:44:42.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1064 - IP: 192.168.187.199 - RequestID: o1xp4uoyh28 +2025-06-18T14:44:42.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.189.103 - RequestID: gdzwp5ou74e +2025-06-18T14:44:42.581Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 403 - Response time: 649ms - IP: 192.168.138.123 - User: user_1002 - RequestID: cdv3jha5j5 +2025-06-18T14:44:42.681Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 182ms - Rows affected: 56 - RequestID: 5hof9did7jp +2025-06-18T14:44:42.781Z [INFO] order-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1425ms - IP: 192.168.10.184 - User: user_1034 - RequestID: f4dwbag7djh +2025-06-18T14:44:42.881Z [DEBUG] order-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.211.72 - RequestID: rl2dfikzx79 +2025-06-18T14:44:42.981Z [DEBUG] user-service - Operation: cache_hit - Processing time: 470ms - RequestID: 4bnyguly1d +2025-06-18T14:44:43.081Z [TRACE] inventory-service - POST /api/v1/orders - Status: 503 - Response time: 765ms - IP: 192.168.232.72 - User: user_1065 - RequestID: 52s8ukwvk4h +2025-06-18T14:44:43.181Z [INFO] order-service - Database INSERT on orders - Execution time: 430ms - Rows affected: 0 - RequestID: q3dj50zw6hd +2025-06-18T14:44:43.281Z [DEBUG] user-service - Auth event: login_success - User: user_1048 - IP: 192.168.11.60 - RequestID: ndobsldlc7o +2025-06-18T14:44:43.381Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 706ms - RequestID: oim86kcbkbc +2025-06-18T14:44:43.481Z [TRACE] payment-service - Operation: order_created - Processing time: 527ms - RequestID: mu8oipfzdo +2025-06-18T14:44:43.581Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 330ms - RequestID: 14xyw2peeqb +2025-06-18T14:44:43.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.68.128 - RequestID: 8rcwts33hep +2025-06-18T14:44:43.781Z [INFO] order-service - PUT /api/v1/auth/login - Status: 403 - Response time: 144ms - IP: 192.168.85.229 - User: user_1070 - RequestID: 1b4su5ytevik +2025-06-18T14:44:43.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.196.226 - RequestID: rrojo6pxz6 +2025-06-18T14:44:43.981Z [TRACE] notification-service - Operation: order_created - Processing time: 680ms - RequestID: ajouo75dh4c +2025-06-18T14:44:44.081Z [INFO] notification-service - Auth event: password_change - User: user_1098 - IP: 192.168.104.37 - RequestID: 9j3k0yfexi9 +2025-06-18T14:44:44.181Z [TRACE] notification-service - PUT /api/v1/users - Status: 403 - Response time: 1141ms - IP: 192.168.44.5 - User: user_1081 - RequestID: p6l9pda8z4 +2025-06-18T14:44:44.281Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 30ms - Rows affected: 2 - RequestID: a9ypf96myrj +2025-06-18T14:44:44.381Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 502 - Response time: 560ms - IP: 192.168.159.94 - User: user_1002 - RequestID: 66fb4s9ymef +2025-06-18T14:44:44.481Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 68ms - Rows affected: 60 - RequestID: 7lncyo5wcbh +2025-06-18T14:44:44.581Z [TRACE] user-service - Database DELETE on orders - Execution time: 380ms - Rows affected: 9 - RequestID: pk7hderddc +2025-06-18T14:44:44.681Z [DEBUG] payment-service - Auth event: logout - User: user_1025 - IP: 192.168.13.72 - RequestID: ax0ql22i7fp +2025-06-18T14:44:44.781Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 625ms - RequestID: y7q6yk9rd0m +2025-06-18T14:44:44.881Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1879ms - IP: 192.168.167.32 - User: user_1019 - RequestID: elpjg5yijno +2025-06-18T14:44:44.981Z [INFO] inventory-service - Operation: payment_processed - Processing time: 440ms - RequestID: h9b837nlvhj +2025-06-18T14:44:45.081Z [INFO] inventory-service - Database SELECT on users - Execution time: 271ms - Rows affected: 18 - RequestID: wp7ysmipq7q +2025-06-18T14:44:45.181Z [TRACE] payment-service - Database DELETE on orders - Execution time: 353ms - Rows affected: 44 - RequestID: xby9et1juso +2025-06-18T14:44:45.281Z [TRACE] order-service - Database INSERT on users - Execution time: 388ms - Rows affected: 35 - RequestID: mhdkop85bdj +2025-06-18T14:44:45.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 519ms - RequestID: 2vdfy2mmirc +2025-06-18T14:44:45.481Z [INFO] auth-service - Operation: inventory_updated - Processing time: 712ms - RequestID: d8ermvy1usv +2025-06-18T14:44:45.581Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 220ms - Rows affected: 61 - RequestID: o5ymm18g9hi +2025-06-18T14:44:45.681Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1858ms - IP: 192.168.46.63 - User: user_1082 - RequestID: 7gito19ux4w +2025-06-18T14:44:45.781Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 238ms - Rows affected: 26 - RequestID: pzco53l4tpd +2025-06-18T14:44:45.881Z [TRACE] order-service - Auth event: login_failed - User: user_1069 - IP: 192.168.174.114 - RequestID: b0b2ia3529 +2025-06-18T14:44:45.981Z [INFO] payment-service - Operation: email_sent - Processing time: 665ms - RequestID: cqfzr7e82x +2025-06-18T14:44:46.081Z [TRACE] notification-service - Database DELETE on orders - Execution time: 299ms - Rows affected: 78 - RequestID: 04o81gjp363g +2025-06-18T14:44:46.181Z [INFO] auth-service - Operation: webhook_sent - Processing time: 72ms - RequestID: fnytv6x4b9f +2025-06-18T14:44:46.281Z [TRACE] order-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.79.116 - RequestID: a33j0nbv9ql +2025-06-18T14:44:46.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.79.143 - RequestID: x6qq7xq4sdq +2025-06-18T14:44:46.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.53.133 - RequestID: t93tyu13bdp +2025-06-18T14:44:46.581Z [INFO] payment-service - Database INSERT on orders - Execution time: 322ms - Rows affected: 59 - RequestID: qsm0rhzth8r +2025-06-18T14:44:46.681Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 304ms - Rows affected: 9 - RequestID: bxd4ijjp256 +2025-06-18T14:44:46.781Z [DEBUG] payment-service - Auth event: login_failed - User: user_1069 - IP: 192.168.227.233 - RequestID: rdvpqe9puu +2025-06-18T14:44:46.881Z [TRACE] auth-service - Operation: notification_queued - Processing time: 1041ms - RequestID: 2uupx77xiqf +2025-06-18T14:44:46.981Z [INFO] user-service - Operation: notification_queued - Processing time: 948ms - RequestID: vhmlmatir8 +2025-06-18T14:44:47.081Z [TRACE] payment-service - Database INSERT on payments - Execution time: 250ms - Rows affected: 27 - RequestID: rpetss1msd +2025-06-18T14:44:47.181Z [TRACE] notification-service - Operation: notification_queued - Processing time: 995ms - RequestID: 2j34m1zlm1j +2025-06-18T14:44:47.281Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 403 - Response time: 1939ms - IP: 192.168.97.87 - User: user_1071 - RequestID: bqgho34srd +2025-06-18T14:44:47.381Z [TRACE] payment-service - Database SELECT on users - Execution time: 266ms - Rows affected: 6 - RequestID: jn0hgxr413 +2025-06-18T14:44:47.481Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 404 - Response time: 1049ms - IP: 192.168.232.72 - User: user_1032 - RequestID: 3dqi7peozlm +2025-06-18T14:44:47.581Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 583ms - IP: 192.168.1.152 - User: user_1005 - RequestID: ijvp5qmb3v +2025-06-18T14:44:47.681Z [TRACE] payment-service - Database DELETE on orders - Execution time: 424ms - Rows affected: 81 - RequestID: csf0wpoceuq +2025-06-18T14:44:47.781Z [INFO] inventory-service - Database DELETE on orders - Execution time: 113ms - Rows affected: 36 - RequestID: qmkk1j3ww2j +2025-06-18T14:44:47.881Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 500 - Response time: 154ms - IP: 192.168.10.184 - User: user_1003 - RequestID: jnjoxuj441g +2025-06-18T14:44:47.981Z [TRACE] inventory-service - Auth event: login_success - User: user_1098 - IP: 192.168.227.233 - RequestID: 3tkgxfwsle7 +2025-06-18T14:44:48.081Z [DEBUG] user-service - Database UPDATE on users - Execution time: 174ms - Rows affected: 7 - RequestID: 4cpw8gfqc45 +2025-06-18T14:44:48.181Z [INFO] notification-service - Database DELETE on products - Execution time: 198ms - Rows affected: 66 - RequestID: 3tm5jq47uhp +2025-06-18T14:44:48.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 743ms - RequestID: 2ttnspyiarf +2025-06-18T14:44:48.381Z [DEBUG] auth-service - PUT /api/v1/users - Status: 200 - Response time: 1490ms - IP: 192.168.159.94 - User: user_1014 - RequestID: cdil6x2g7mp +2025-06-18T14:44:48.481Z [TRACE] notification-service - Database DELETE on payments - Execution time: 66ms - Rows affected: 48 - RequestID: lsywcb1fni +2025-06-18T14:44:48.581Z [DEBUG] order-service - Operation: order_created - Processing time: 728ms - RequestID: oanomowt3fj +2025-06-18T14:44:48.681Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 277ms - Rows affected: 99 - RequestID: lizjz09my4 +2025-06-18T14:44:48.781Z [TRACE] payment-service - Database INSERT on orders - Execution time: 42ms - Rows affected: 58 - RequestID: icxrjngzgvm +2025-06-18T14:44:48.881Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1395ms - IP: 192.168.141.100 - User: user_1020 - RequestID: 200vfsncjli +2025-06-18T14:44:48.981Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 566ms - RequestID: ghyrbupgbr +2025-06-18T14:44:49.081Z [INFO] payment-service - Operation: email_sent - Processing time: 798ms - RequestID: r2crsc1pf4d +2025-06-18T14:44:49.181Z [DEBUG] auth-service - Database INSERT on products - Execution time: 144ms - Rows affected: 2 - RequestID: cm72x02hx6i +2025-06-18T14:44:49.281Z [DEBUG] auth-service - Auth event: logout - User: user_1096 - IP: 192.168.159.94 - RequestID: w81adbs0ysl +2025-06-18T14:44:49.381Z [DEBUG] order-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.14.77 - RequestID: 58czyhx6ywl +2025-06-18T14:44:49.481Z [INFO] notification-service - Operation: order_created - Processing time: 847ms - RequestID: 8cj3w1a8kkf +2025-06-18T14:44:49.581Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 602ms - RequestID: 9pcpz59jxvg +2025-06-18T14:44:49.681Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 183ms - RequestID: opvy61ijs29 +2025-06-18T14:44:49.781Z [TRACE] order-service - POST /api/v1/payments - Status: 502 - Response time: 415ms - IP: 192.168.53.133 - User: user_1082 - RequestID: zgm4dgxodx +2025-06-18T14:44:49.881Z [INFO] auth-service - PUT /api/v1/users - Status: 400 - Response time: 1964ms - IP: 192.168.141.100 - User: user_1079 - RequestID: v1b7bf0kobf +2025-06-18T14:44:49.981Z [INFO] inventory-service - Operation: cache_hit - Processing time: 93ms - RequestID: rdslanw5z2a +2025-06-18T14:44:50.081Z [TRACE] notification-service - Operation: cache_miss - Processing time: 93ms - RequestID: 7hnv0822c4p +2025-06-18T14:44:50.181Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 149ms - Rows affected: 34 - RequestID: bffubpz2c2b +2025-06-18T14:44:50.281Z [TRACE] notification-service - DELETE /api/v1/users - Status: 200 - Response time: 1575ms - IP: 192.168.242.165 - User: user_1076 - RequestID: gzr830s5d7 +2025-06-18T14:44:50.381Z [INFO] user-service - Database INSERT on products - Execution time: 228ms - Rows affected: 61 - RequestID: c0ry13fxk7 +2025-06-18T14:44:50.481Z [DEBUG] order-service - Auth event: password_change - User: user_1052 - IP: 192.168.14.77 - RequestID: 4i95ev96c3n +2025-06-18T14:44:50.581Z [DEBUG] inventory-service - Operation: order_created - Processing time: 546ms - RequestID: ba4090mt9p +2025-06-18T14:44:50.681Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 794ms - RequestID: kcn9cvtaa0l +2025-06-18T14:44:50.781Z [INFO] user-service - DELETE /api/v1/inventory - Status: 404 - Response time: 696ms - IP: 192.168.247.134 - User: user_1094 - RequestID: ld02mzjqru +2025-06-18T14:44:50.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 294ms - RequestID: n4u4h949eo +2025-06-18T14:44:50.981Z [TRACE] user-service - Auth event: logout - User: user_1092 - IP: 192.168.28.146 - RequestID: m8a72vj332h +2025-06-18T14:44:51.081Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 732ms - RequestID: wq9zuit6qg +2025-06-18T14:44:51.181Z [INFO] user-service - Database UPDATE on orders - Execution time: 260ms - Rows affected: 94 - RequestID: ruscji8xw3 +2025-06-18T14:44:51.281Z [TRACE] auth-service - Operation: notification_queued - Processing time: 881ms - RequestID: irrbuyr2q9m +2025-06-18T14:44:51.381Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 104ms - Rows affected: 98 - RequestID: 5zkiyeywk7u +2025-06-18T14:44:51.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1053 - IP: 192.168.79.141 - RequestID: gis9o8pvgkn +2025-06-18T14:44:51.581Z [TRACE] inventory-service - POST /api/v1/orders - Status: 404 - Response time: 1583ms - IP: 192.168.174.114 - User: user_1035 - RequestID: v5aakk4sem +2025-06-18T14:44:51.681Z [TRACE] user-service - Auth event: logout - User: user_1053 - IP: 192.168.144.38 - RequestID: nqigvl8jfbj +2025-06-18T14:44:51.781Z [INFO] auth-service - Auth event: password_change - User: user_1072 - IP: 192.168.196.226 - RequestID: xargn5d55i +2025-06-18T14:44:51.881Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 687ms - RequestID: q2m1q4ibhz +2025-06-18T14:44:51.981Z [INFO] payment-service - Database INSERT on sessions - Execution time: 230ms - Rows affected: 23 - RequestID: i5mqy1s7k0a +2025-06-18T14:44:52.081Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 947ms - IP: 192.168.227.233 - User: user_1055 - RequestID: qslpe9uzt0m +2025-06-18T14:44:52.181Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 503 - Response time: 1276ms - IP: 192.168.28.146 - User: user_1012 - RequestID: 3n161gszzp8 +2025-06-18T14:44:52.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.30.79 - RequestID: 7kne0dcuo8u +2025-06-18T14:44:52.381Z [INFO] auth-service - Operation: email_sent - Processing time: 604ms - RequestID: qbokdbkyc0q +2025-06-18T14:44:52.481Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 503 - Response time: 1262ms - IP: 192.168.242.165 - User: user_1079 - RequestID: p1h1smi6n4b +2025-06-18T14:44:52.581Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 200 - Response time: 412ms - IP: 192.168.144.38 - User: user_1031 - RequestID: 8esu8i50oun +2025-06-18T14:44:52.681Z [TRACE] notification-service - Database DELETE on products - Execution time: 325ms - Rows affected: 56 - RequestID: 7sz4xeu7mm9 +2025-06-18T14:44:52.781Z [TRACE] auth-service - Auth event: logout - User: user_1058 - IP: 192.168.68.158 - RequestID: 9v1mdkked3a +2025-06-18T14:44:52.881Z [TRACE] payment-service - Auth event: password_change - User: user_1025 - IP: 192.168.53.133 - RequestID: gthozfkrs29 +2025-06-18T14:44:52.981Z [DEBUG] user-service - Operation: payment_processed - Processing time: 478ms - RequestID: yg4ytlshrv +2025-06-18T14:44:53.081Z [DEBUG] user-service - Auth event: login_success - User: user_1069 - IP: 192.168.32.38 - RequestID: pzl5ux1qwk +2025-06-18T14:44:53.181Z [DEBUG] payment-service - Database DELETE on products - Execution time: 108ms - Rows affected: 8 - RequestID: z6vw0unwhgg +2025-06-18T14:44:53.281Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 370ms - Rows affected: 7 - RequestID: gtokz29lnt5 +2025-06-18T14:44:53.381Z [INFO] auth-service - Database SELECT on users - Execution time: 273ms - Rows affected: 73 - RequestID: vxafbmtn8w +2025-06-18T14:44:53.481Z [TRACE] user-service - Database SELECT on sessions - Execution time: 379ms - Rows affected: 58 - RequestID: 1v96wpxoemz +2025-06-18T14:44:53.581Z [TRACE] user-service - Auth event: logout - User: user_1017 - IP: 192.168.10.184 - RequestID: 80rdaeft5u +2025-06-18T14:44:53.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 971ms - RequestID: nkkg9zssse +2025-06-18T14:44:53.781Z [INFO] auth-service - Auth event: login_success - User: user_1050 - IP: 192.168.46.63 - RequestID: wblelqrlkz +2025-06-18T14:44:53.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1004 - IP: 192.168.100.240 - RequestID: uwwe64yu37 +2025-06-18T14:44:53.981Z [DEBUG] order-service - Auth event: login_failed - User: user_1044 - IP: 192.168.10.184 - RequestID: rvvoyn6csab +2025-06-18T14:44:54.081Z [DEBUG] notification-service - Database INSERT on users - Execution time: 269ms - Rows affected: 81 - RequestID: bzulf5remm4 +2025-06-18T14:44:54.181Z [TRACE] order-service - Database INSERT on orders - Execution time: 214ms - Rows affected: 77 - RequestID: olsui2vnmh +2025-06-18T14:44:54.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.46.63 - RequestID: 3eyt71pac1m +2025-06-18T14:44:54.381Z [TRACE] user-service - Auth event: logout - User: user_1024 - IP: 192.168.36.218 - RequestID: ovombxjol9o +2025-06-18T14:44:54.481Z [INFO] notification-service - Auth event: logout - User: user_1058 - IP: 192.168.1.152 - RequestID: ld8io9amym +2025-06-18T14:44:54.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.187.199 - RequestID: 2nutz3kll0l +2025-06-18T14:44:54.681Z [TRACE] payment-service - Database DELETE on users - Execution time: 116ms - Rows affected: 57 - RequestID: 27hojbt5ygz +2025-06-18T14:44:54.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 197ms - RequestID: 77k8caq4iar +2025-06-18T14:44:54.881Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 348ms - Rows affected: 30 - RequestID: is2vkmg7oso +2025-06-18T14:44:54.981Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 850ms - RequestID: icnln31stze +2025-06-18T14:44:55.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.104.37 - RequestID: k9r3x30qabg +2025-06-18T14:44:55.181Z [INFO] notification-service - Operation: payment_processed - Processing time: 494ms - RequestID: lg8l139brs +2025-06-18T14:44:55.281Z [INFO] user-service - Auth event: password_change - User: user_1071 - IP: 192.168.174.114 - RequestID: p5bj3dhb4is +2025-06-18T14:44:55.381Z [INFO] auth-service - Auth event: password_change - User: user_1080 - IP: 192.168.33.76 - RequestID: kenp6yhe6ir +2025-06-18T14:44:55.481Z [INFO] payment-service - Database UPDATE on products - Execution time: 469ms - Rows affected: 67 - RequestID: nbokbpufa2e +2025-06-18T14:44:55.581Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 594ms - RequestID: 89hm36rirua +2025-06-18T14:44:55.681Z [DEBUG] user-service - PATCH /api/v1/users - Status: 403 - Response time: 1105ms - IP: 192.168.79.116 - User: user_1081 - RequestID: jx33ldjyfrl +2025-06-18T14:44:55.781Z [INFO] user-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.79.116 - RequestID: o0ei2s0fc +2025-06-18T14:44:55.881Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 179ms - Rows affected: 80 - RequestID: e1imzs6f4ys +2025-06-18T14:44:55.981Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 380ms - Rows affected: 52 - RequestID: lt7kgkxk7ej +2025-06-18T14:44:56.081Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 200 - Response time: 1178ms - IP: 192.168.97.87 - User: user_1094 - RequestID: 52vvxtq0du3 +2025-06-18T14:44:56.181Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 401 - Response time: 603ms - IP: 192.168.144.38 - User: user_1025 - RequestID: 0mrola1i5ts +2025-06-18T14:44:56.281Z [TRACE] user-service - Operation: payment_processed - Processing time: 342ms - RequestID: 7bkn8og57mn +2025-06-18T14:44:56.381Z [INFO] auth-service - Database INSERT on orders - Execution time: 172ms - Rows affected: 12 - RequestID: 45qa3r7frj5 +2025-06-18T14:44:56.481Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 377ms - IP: 192.168.14.77 - User: user_1047 - RequestID: wjv5v7f319s +2025-06-18T14:44:56.581Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 1022ms - RequestID: j8wlr835d3j +2025-06-18T14:44:56.681Z [DEBUG] user-service - PUT /api/v1/orders - Status: 502 - Response time: 1427ms - IP: 192.168.174.114 - User: user_1093 - RequestID: l4huvz6kb2g +2025-06-18T14:44:56.781Z [TRACE] payment-service - GET /api/v1/inventory - Status: 404 - Response time: 1607ms - IP: 192.168.196.226 - User: user_1089 - RequestID: inn0moafst +2025-06-18T14:44:56.881Z [INFO] auth-service - Operation: webhook_sent - Processing time: 451ms - RequestID: jl8id9r6gp +2025-06-18T14:44:56.981Z [DEBUG] notification-service - POST /api/v1/orders - Status: 400 - Response time: 1064ms - IP: 192.168.97.87 - User: user_1008 - RequestID: amhmavq7dfs +2025-06-18T14:44:57.081Z [TRACE] user-service - GET /api/v1/inventory - Status: 403 - Response time: 1597ms - IP: 192.168.242.165 - User: user_1000 - RequestID: 0yeu8e3ogfkf +2025-06-18T14:44:57.181Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 596ms - RequestID: p599hss4p3d +2025-06-18T14:44:57.281Z [TRACE] user-service - Auth event: logout - User: user_1072 - IP: 192.168.30.79 - RequestID: ouo3038kknr +2025-06-18T14:44:57.381Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 442ms - Rows affected: 80 - RequestID: 4cxfx9c3zar +2025-06-18T14:44:57.481Z [INFO] inventory-service - Auth event: logout - User: user_1067 - IP: 192.168.33.76 - RequestID: g2w4wbzgysa +2025-06-18T14:44:57.581Z [INFO] auth-service - Database INSERT on orders - Execution time: 212ms - Rows affected: 66 - RequestID: 1rl5lkaoai9 +2025-06-18T14:44:57.681Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 400 - Response time: 312ms - IP: 192.168.14.77 - User: user_1008 - RequestID: thqr8uvtd0n +2025-06-18T14:44:57.781Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 372ms - Rows affected: 82 - RequestID: k27xhbumi3m +2025-06-18T14:44:57.881Z [TRACE] notification-service - Database SELECT on users - Execution time: 8ms - Rows affected: 10 - RequestID: g3o4kz25vp +2025-06-18T14:44:57.981Z [DEBUG] user-service - Operation: cache_miss - Processing time: 331ms - RequestID: vrks9cl1v9 +2025-06-18T14:44:58.081Z [INFO] payment-service - DELETE /api/v1/users - Status: 201 - Response time: 100ms - IP: 192.168.13.72 - User: user_1087 - RequestID: b1wyhnwr8f5 +2025-06-18T14:44:58.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.46.63 - RequestID: v6rj31yxdjc +2025-06-18T14:44:58.281Z [DEBUG] order-service - Database INSERT on users - Execution time: 327ms - Rows affected: 37 - RequestID: mcszwryc1 +2025-06-18T14:44:58.381Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 271ms - RequestID: iigbrl7dx5 +2025-06-18T14:44:58.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.189.103 - RequestID: lip3gfddsdl +2025-06-18T14:44:58.581Z [TRACE] auth-service - Auth event: logout - User: user_1046 - IP: 192.168.187.199 - RequestID: xykjb3q6d6e +2025-06-18T14:44:58.681Z [DEBUG] inventory-service - Auth event: logout - User: user_1033 - IP: 192.168.189.103 - RequestID: 32kylm4vmg +2025-06-18T14:44:58.781Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 223ms - Rows affected: 23 - RequestID: 50oojhojjcs +2025-06-18T14:44:58.881Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 121ms - Rows affected: 97 - RequestID: v3lgy8ddenq +2025-06-18T14:44:58.981Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 500 - Response time: 1450ms - IP: 192.168.32.38 - User: user_1015 - RequestID: wikalcydv8m +2025-06-18T14:44:59.081Z [INFO] order-service - POST /api/v1/orders - Status: 502 - Response time: 1562ms - IP: 192.168.14.77 - User: user_1053 - RequestID: 931amgpvys +2025-06-18T14:44:59.181Z [TRACE] user-service - Auth event: password_change - User: user_1019 - IP: 192.168.144.38 - RequestID: hhy3dmz9xn6 +2025-06-18T14:44:59.281Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 103ms - Rows affected: 3 - RequestID: cxr922wd4xw +2025-06-18T14:44:59.381Z [INFO] payment-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.32.38 - RequestID: mbugssdwm6 +2025-06-18T14:44:59.481Z [TRACE] order-service - Operation: payment_processed - Processing time: 581ms - RequestID: xnv9jjbm4cg +2025-06-18T14:44:59.581Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 200 - Response time: 577ms - IP: 192.168.189.103 - User: user_1088 - RequestID: dtud2us9yrh +2025-06-18T14:44:59.681Z [DEBUG] order-service - Database SELECT on products - Execution time: 98ms - Rows affected: 65 - RequestID: hz91g6tpqbu +2025-06-18T14:44:59.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1029 - IP: 192.168.1.152 - RequestID: nq3iy57hjip +2025-06-18T14:44:59.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 439ms - RequestID: 9ele5tvbxyl +2025-06-18T14:44:59.981Z [TRACE] auth-service - Operation: payment_processed - Processing time: 137ms - RequestID: 4n5jiquvj3l +2025-06-18T14:45:00.081Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 475ms - Rows affected: 98 - RequestID: 729e0bkaf2h +2025-06-18T14:45:00.181Z [TRACE] inventory-service - Database INSERT on users - Execution time: 100ms - Rows affected: 28 - RequestID: 3wit7qrgsh1 +2025-06-18T14:45:00.281Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 646ms - IP: 192.168.79.141 - User: user_1059 - RequestID: 1oh2ccuq8c2 +2025-06-18T14:45:00.381Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 404 - Response time: 1889ms - IP: 192.168.14.77 - User: user_1090 - RequestID: 5ku6u796oxo +2025-06-18T14:45:00.481Z [INFO] notification-service - Database INSERT on users - Execution time: 360ms - Rows affected: 23 - RequestID: 69w74cmzx9w +2025-06-18T14:45:00.581Z [TRACE] payment-service - Operation: payment_processed - Processing time: 548ms - RequestID: 2tmlbtycrcg +2025-06-18T14:45:00.681Z [DEBUG] order-service - Database UPDATE on products - Execution time: 274ms - Rows affected: 72 - RequestID: qj8tfvf66zp +2025-06-18T14:45:00.781Z [DEBUG] inventory-service - Auth event: logout - User: user_1037 - IP: 192.168.46.63 - RequestID: byp8rj9vkye +2025-06-18T14:45:00.881Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 200 - Response time: 685ms - IP: 192.168.240.169 - User: user_1060 - RequestID: mzby81q629o +2025-06-18T14:45:00.981Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1301ms - IP: 192.168.196.226 - User: user_1009 - RequestID: wj9v33088j +2025-06-18T14:45:01.081Z [DEBUG] order-service - Database INSERT on users - Execution time: 147ms - Rows affected: 70 - RequestID: ni5qpoffmkd +2025-06-18T14:45:01.181Z [DEBUG] payment-service - Auth event: login_success - User: user_1097 - IP: 192.168.81.206 - RequestID: y3rtv4rvkui +2025-06-18T14:45:01.281Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1811ms - IP: 192.168.68.158 - User: user_1042 - RequestID: 6duvwhgzbn7 +2025-06-18T14:45:01.381Z [TRACE] order-service - Database INSERT on sessions - Execution time: 393ms - Rows affected: 29 - RequestID: 0g2w5054hf9p +2025-06-18T14:45:01.481Z [INFO] notification-service - Operation: order_created - Processing time: 92ms - RequestID: 6evv1nwp9im +2025-06-18T14:45:01.581Z [INFO] auth-service - Auth event: password_change - User: user_1055 - IP: 192.168.240.169 - RequestID: 1a0iowzz4ql +2025-06-18T14:45:01.681Z [DEBUG] order-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.167.32 - RequestID: yihotzf40m +2025-06-18T14:45:01.781Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 503 - Response time: 1194ms - IP: 192.168.11.60 - User: user_1068 - RequestID: ja9femcasds +2025-06-18T14:45:01.881Z [TRACE] auth-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.30.79 - RequestID: 5ruj09f8zlg +2025-06-18T14:45:01.981Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1004ms - IP: 192.168.113.218 - User: user_1095 - RequestID: j6sz5mnmzeq +2025-06-18T14:45:02.081Z [INFO] inventory-service - Database SELECT on products - Execution time: 28ms - Rows affected: 95 - RequestID: 378drtafc3l +2025-06-18T14:45:02.181Z [DEBUG] auth-service - Operation: email_sent - Processing time: 764ms - RequestID: m4zlyxx3px +2025-06-18T14:45:02.281Z [DEBUG] auth-service - Database INSERT on users - Execution time: 418ms - Rows affected: 91 - RequestID: ig5l7jit4zg +2025-06-18T14:45:02.381Z [INFO] inventory-service - Operation: cache_hit - Processing time: 633ms - RequestID: gjfojmoktmr +2025-06-18T14:45:02.481Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 282ms - Rows affected: 0 - RequestID: jzqq6bqqqh +2025-06-18T14:45:02.581Z [INFO] inventory-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.167.32 - RequestID: 6hpim8c12fx +2025-06-18T14:45:02.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 671ms - RequestID: 1hxzlubc7ce +2025-06-18T14:45:02.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1063 - IP: 192.168.10.184 - RequestID: 3uv5x72d2u +2025-06-18T14:45:02.881Z [INFO] auth-service - Database SELECT on payments - Execution time: 292ms - Rows affected: 59 - RequestID: x7esqsu68fd +2025-06-18T14:45:02.981Z [INFO] payment-service - Database SELECT on orders - Execution time: 230ms - Rows affected: 68 - RequestID: 9fofy96hjt +2025-06-18T14:45:03.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.194.41 - RequestID: q1gswm0m8ef +2025-06-18T14:45:03.181Z [DEBUG] payment-service - Auth event: logout - User: user_1062 - IP: 192.168.14.77 - RequestID: 535wazxhnhf +2025-06-18T14:45:03.281Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 401 - Response time: 626ms - IP: 192.168.189.103 - User: user_1064 - RequestID: fri6otr2t58 +2025-06-18T14:45:03.381Z [INFO] inventory-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.242.165 - RequestID: 64e9pj2srrh +2025-06-18T14:45:03.481Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 503 - Response time: 1470ms - IP: 192.168.138.123 - User: user_1037 - RequestID: wanzo9688o +2025-06-18T14:45:03.581Z [INFO] notification-service - Operation: order_created - Processing time: 517ms - RequestID: dw4hmcrilve +2025-06-18T14:45:03.681Z [DEBUG] user-service - POST /api/v1/inventory - Status: 500 - Response time: 445ms - IP: 192.168.33.76 - User: user_1035 - RequestID: ajxwp86osgl +2025-06-18T14:45:03.781Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 86ms - Rows affected: 65 - RequestID: pwnjmtadq59 +2025-06-18T14:45:03.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1013 - IP: 192.168.113.218 - RequestID: ke4r0q0677 +2025-06-18T14:45:03.981Z [DEBUG] notification-service - Auth event: password_change - User: user_1047 - IP: 192.168.64.33 - RequestID: gs9vn8jym +2025-06-18T14:45:04.081Z [TRACE] order-service - Database DELETE on sessions - Execution time: 347ms - Rows affected: 44 - RequestID: 6ivfte7joqf +2025-06-18T14:45:04.181Z [TRACE] user-service - Operation: cache_hit - Processing time: 822ms - RequestID: uio889dt7aj +2025-06-18T14:45:04.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 868ms - RequestID: zw16zoce2y +2025-06-18T14:45:04.381Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 201 - Response time: 604ms - IP: 192.168.28.146 - User: user_1029 - RequestID: g0cbfdv6wjt +2025-06-18T14:45:04.481Z [INFO] notification-service - Operation: cache_hit - Processing time: 480ms - RequestID: tr6usqodfad +2025-06-18T14:45:04.581Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 285ms - Rows affected: 64 - RequestID: gvious4l4st +2025-06-18T14:45:04.681Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 449ms - RequestID: 5qkfrsmy2s9 +2025-06-18T14:45:04.781Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 179ms - Rows affected: 31 - RequestID: v4ty97gncrq +2025-06-18T14:45:04.881Z [TRACE] notification-service - Operation: cache_hit - Processing time: 443ms - RequestID: 0sv9185552fr +2025-06-18T14:45:04.981Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 999ms - RequestID: 80netl9t685 +2025-06-18T14:45:05.081Z [INFO] order-service - Database DELETE on payments - Execution time: 310ms - Rows affected: 11 - RequestID: 83v0k84ytsc +2025-06-18T14:45:05.181Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 2ms - Rows affected: 65 - RequestID: l5kszng19 +2025-06-18T14:45:05.281Z [TRACE] user-service - Auth event: login_failed - User: user_1056 - IP: 192.168.14.77 - RequestID: dddmeja049l +2025-06-18T14:45:05.381Z [TRACE] user-service - Database DELETE on payments - Execution time: 108ms - Rows affected: 27 - RequestID: 3ejgvpuaj69 +2025-06-18T14:45:05.481Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 503 - Response time: 875ms - IP: 192.168.181.225 - User: user_1003 - RequestID: rx6orm8dten +2025-06-18T14:45:05.581Z [DEBUG] order-service - Operation: order_created - Processing time: 990ms - RequestID: 0u0sqbtwybnh +2025-06-18T14:45:05.681Z [TRACE] order-service - DELETE /api/v1/orders - Status: 400 - Response time: 1367ms - IP: 192.168.167.32 - User: user_1059 - RequestID: jl6lr5knmed +2025-06-18T14:45:05.781Z [INFO] user-service - PUT /api/v1/inventory - Status: 404 - Response time: 1543ms - IP: 192.168.79.141 - User: user_1006 - RequestID: 77m6cxzyx29 +2025-06-18T14:45:05.881Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 278ms - Rows affected: 30 - RequestID: no39p7gr28 +2025-06-18T14:45:05.981Z [INFO] payment-service - Operation: email_sent - Processing time: 73ms - RequestID: zxqbgzjwwq +2025-06-18T14:45:06.081Z [INFO] order-service - Database SELECT on orders - Execution time: 342ms - Rows affected: 83 - RequestID: hcy99gqgtqu +2025-06-18T14:45:06.181Z [INFO] inventory-service - Operation: notification_queued - Processing time: 550ms - RequestID: 0dv8v8kt9vtp +2025-06-18T14:45:06.281Z [TRACE] user-service - Database INSERT on orders - Execution time: 52ms - Rows affected: 99 - RequestID: ts5f1wu76tb +2025-06-18T14:45:06.381Z [DEBUG] user-service - Operation: payment_processed - Processing time: 375ms - RequestID: 17004ln6ygl +2025-06-18T14:45:06.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.158.144 - RequestID: iisf7o6t5do +2025-06-18T14:45:06.581Z [DEBUG] payment-service - Database SELECT on users - Execution time: 72ms - Rows affected: 65 - RequestID: 64u0ebzekr6 +2025-06-18T14:45:06.681Z [INFO] auth-service - Operation: inventory_updated - Processing time: 712ms - RequestID: 6zb41i2vqa7 +2025-06-18T14:45:06.781Z [INFO] notification-service - Database SELECT on sessions - Execution time: 85ms - Rows affected: 38 - RequestID: h6b4546ecg +2025-06-18T14:45:06.881Z [TRACE] order-service - Operation: email_sent - Processing time: 653ms - RequestID: lkdwni9dp7 +2025-06-18T14:45:06.981Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 438ms - Rows affected: 57 - RequestID: smg8m4i9avf +2025-06-18T14:45:07.081Z [DEBUG] notification-service - Database SELECT on products - Execution time: 152ms - Rows affected: 24 - RequestID: 4qzymdhf8lx +2025-06-18T14:45:07.181Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1604ms - IP: 192.168.28.146 - User: user_1016 - RequestID: 357srojzu6i +2025-06-18T14:45:07.281Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 858ms - IP: 192.168.242.165 - User: user_1034 - RequestID: aepe2vq4u1v +2025-06-18T14:45:07.381Z [DEBUG] order-service - Auth event: logout - User: user_1007 - IP: 192.168.36.218 - RequestID: qzk00gfwxw +2025-06-18T14:45:07.481Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 131ms - Rows affected: 22 - RequestID: q6xhpp29zuh +2025-06-18T14:45:07.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.44.5 - RequestID: 7a7gu9kjpz +2025-06-18T14:45:07.681Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 523ms - RequestID: 32xmvjhx2ji +2025-06-18T14:45:07.781Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 748ms - RequestID: 341hjywi1hi +2025-06-18T14:45:07.881Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 201 - Response time: 879ms - IP: 192.168.138.123 - User: user_1056 - RequestID: hnm4wqgjhrt +2025-06-18T14:45:07.981Z [DEBUG] inventory-service - Auth event: login_success - User: user_1087 - IP: 192.168.158.144 - RequestID: ttgs4p61zdd +2025-06-18T14:45:08.081Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 500 - Response time: 267ms - IP: 192.168.33.76 - User: user_1018 - RequestID: 3n2ak1w68nk +2025-06-18T14:45:08.181Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1639ms - IP: 192.168.242.165 - User: user_1095 - RequestID: 0o5udi8xztxh +2025-06-18T14:45:08.281Z [INFO] user-service - Operation: cache_hit - Processing time: 199ms - RequestID: mp9oeu3riii +2025-06-18T14:45:08.381Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 403 - Response time: 1111ms - IP: 192.168.31.117 - User: user_1006 - RequestID: alwiczug19g +2025-06-18T14:45:08.481Z [INFO] order-service - Database SELECT on sessions - Execution time: 39ms - Rows affected: 54 - RequestID: p75q24znp69 +2025-06-18T14:45:08.581Z [INFO] order-service - Database INSERT on users - Execution time: 259ms - Rows affected: 56 - RequestID: aedt0d4ty9k +2025-06-18T14:45:08.681Z [INFO] user-service - Operation: order_created - Processing time: 150ms - RequestID: fmtj4s6wj3 +2025-06-18T14:45:08.781Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 448ms - RequestID: 9xwbd0gexdb +2025-06-18T14:45:08.881Z [TRACE] order-service - Operation: cache_miss - Processing time: 217ms - RequestID: 3xeskun3ybh +2025-06-18T14:45:08.981Z [DEBUG] user-service - Operation: cache_hit - Processing time: 748ms - RequestID: n1wiziumsk8 +2025-06-18T14:45:09.081Z [DEBUG] payment-service - Auth event: login_success - User: user_1084 - IP: 192.168.104.37 - RequestID: gnh7yxxrzjq +2025-06-18T14:45:09.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1090 - IP: 192.168.14.77 - RequestID: ll8hylhb3ue +2025-06-18T14:45:09.281Z [INFO] notification-service - POST /api/v1/auth/login - Status: 500 - Response time: 1465ms - IP: 192.168.81.206 - User: user_1024 - RequestID: 9ums2tqpz2e +2025-06-18T14:45:09.381Z [TRACE] inventory-service - Auth event: password_change - User: user_1008 - IP: 192.168.10.184 - RequestID: vl80gphx2u +2025-06-18T14:45:09.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 290ms - RequestID: sbmtkiyong8 +2025-06-18T14:45:09.581Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1608ms - IP: 192.168.68.158 - User: user_1031 - RequestID: q2c2v6djbe +2025-06-18T14:45:09.681Z [DEBUG] auth-service - Auth event: password_change - User: user_1032 - IP: 192.168.104.37 - RequestID: 22n67q51hqn +2025-06-18T14:45:09.781Z [INFO] auth-service - Database INSERT on products - Execution time: 277ms - Rows affected: 76 - RequestID: lo8g81gdtq +2025-06-18T14:45:09.881Z [INFO] notification-service - Database UPDATE on users - Execution time: 224ms - Rows affected: 59 - RequestID: 0n61fnh0ykn +2025-06-18T14:45:09.981Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 404 - Response time: 481ms - IP: 192.168.68.158 - User: user_1073 - RequestID: dozdjsz7vhu +2025-06-18T14:45:10.081Z [INFO] inventory-service - Database INSERT on orders - Execution time: 297ms - Rows affected: 41 - RequestID: wrph0xfiwv +2025-06-18T14:45:10.181Z [INFO] user-service - Operation: payment_processed - Processing time: 879ms - RequestID: gfu7qeco3ug +2025-06-18T14:45:10.281Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 401 - Response time: 416ms - IP: 192.168.64.33 - User: user_1023 - RequestID: zs408iq8ux +2025-06-18T14:45:10.381Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 213ms - Rows affected: 27 - RequestID: waqkuhh8r9 +2025-06-18T14:45:10.481Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 1029ms - RequestID: bfsjy1nh4u +2025-06-18T14:45:10.581Z [INFO] order-service - Auth event: login_failed - User: user_1037 - IP: 192.168.247.134 - RequestID: l1s0oghvbj +2025-06-18T14:45:10.681Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 297ms - RequestID: umizx1k7ml +2025-06-18T14:45:10.781Z [TRACE] auth-service - Operation: email_sent - Processing time: 435ms - RequestID: bmh3uhr6tbb +2025-06-18T14:45:10.881Z [INFO] order-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.104.37 - RequestID: 5e2oglsp2nb +2025-06-18T14:45:10.981Z [DEBUG] payment-service - Auth event: logout - User: user_1027 - IP: 192.168.30.79 - RequestID: d10c1h685li +2025-06-18T14:45:11.081Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 321ms - Rows affected: 33 - RequestID: 3mk7ca2muc +2025-06-18T14:45:11.181Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1330ms - IP: 192.168.30.79 - User: user_1085 - RequestID: 5l0lczern37 +2025-06-18T14:45:11.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.174.114 - RequestID: vw4vynuwld8 +2025-06-18T14:45:11.381Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 401 - Response time: 1740ms - IP: 192.168.10.184 - User: user_1071 - RequestID: qcpu56tssyr +2025-06-18T14:45:11.481Z [INFO] order-service - Auth event: login_failed - User: user_1073 - IP: 192.168.32.38 - RequestID: f1cjf05i7b +2025-06-18T14:45:11.581Z [DEBUG] auth-service - Auth event: password_change - User: user_1054 - IP: 192.168.194.41 - RequestID: s067ev4nyo +2025-06-18T14:45:11.681Z [TRACE] user-service - Operation: notification_queued - Processing time: 154ms - RequestID: mbrdhhfkgid +2025-06-18T14:45:11.781Z [TRACE] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 502ms - IP: 192.168.138.123 - User: user_1077 - RequestID: a2yri8ioihe +2025-06-18T14:45:11.881Z [TRACE] order-service - Database SELECT on orders - Execution time: 429ms - Rows affected: 49 - RequestID: w17vge11vk +2025-06-18T14:45:11.981Z [TRACE] payment-service - Operation: email_sent - Processing time: 677ms - RequestID: tcpxbjigbjh +2025-06-18T14:45:12.081Z [DEBUG] order-service - GET /api/v1/payments - Status: 403 - Response time: 665ms - IP: 192.168.147.171 - User: user_1002 - RequestID: iy01f5snuof +2025-06-18T14:45:12.181Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1055ms - IP: 192.168.159.94 - User: user_1015 - RequestID: 38vo0rtr1x8 +2025-06-18T14:45:12.281Z [INFO] user-service - Operation: email_sent - Processing time: 923ms - RequestID: ffhjej0rj3c +2025-06-18T14:45:12.381Z [DEBUG] user-service - GET /api/v1/orders - Status: 401 - Response time: 949ms - IP: 192.168.79.116 - User: user_1036 - RequestID: fcesq38m8rq +2025-06-18T14:45:12.481Z [TRACE] payment-service - Operation: order_created - Processing time: 850ms - RequestID: kukvsqpwhh +2025-06-18T14:45:12.581Z [DEBUG] payment-service - Database SELECT on products - Execution time: 81ms - Rows affected: 10 - RequestID: v9wzstjur6s +2025-06-18T14:45:12.681Z [INFO] payment-service - Auth event: login_failed - User: user_1023 - IP: 192.168.100.240 - RequestID: 3ct4vmaykw +2025-06-18T14:45:12.781Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 308ms - Rows affected: 91 - RequestID: ltmilxii4s +2025-06-18T14:45:12.881Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 500 - Response time: 839ms - IP: 192.168.227.77 - User: user_1026 - RequestID: hvjxchj5cc4 +2025-06-18T14:45:12.981Z [TRACE] user-service - DELETE /api/v1/users - Status: 503 - Response time: 1893ms - IP: 192.168.147.171 - User: user_1007 - RequestID: m1liondp13o +2025-06-18T14:45:13.081Z [TRACE] auth-service - Auth event: logout - User: user_1016 - IP: 192.168.97.87 - RequestID: tppqhfkllh +2025-06-18T14:45:13.181Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 437ms - Rows affected: 28 - RequestID: d52k5dlnnl5 +2025-06-18T14:45:13.281Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 948ms - RequestID: 6as0dx6e4qk +2025-06-18T14:45:13.381Z [TRACE] user-service - Operation: notification_queued - Processing time: 954ms - RequestID: 2683b5p2fwk +2025-06-18T14:45:13.481Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 141ms - Rows affected: 43 - RequestID: dpte9rif5m4 +2025-06-18T14:45:13.581Z [DEBUG] order-service - Database DELETE on payments - Execution time: 208ms - Rows affected: 6 - RequestID: z514pyk3wn8 +2025-06-18T14:45:13.681Z [TRACE] payment-service - Database DELETE on products - Execution time: 91ms - Rows affected: 63 - RequestID: 255wcumo5u4 +2025-06-18T14:45:13.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.167.32 - RequestID: wum5ci96nte +2025-06-18T14:45:13.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 476ms - RequestID: 0bpw83czojok +2025-06-18T14:45:13.981Z [INFO] auth-service - Auth event: login_failed - User: user_1082 - IP: 192.168.79.116 - RequestID: k4su728u1t +2025-06-18T14:45:14.081Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 218ms - Rows affected: 36 - RequestID: gzyyb5j73n +2025-06-18T14:45:14.181Z [TRACE] auth-service - Auth event: logout - User: user_1046 - IP: 192.168.64.33 - RequestID: i2hi9m0nlx8 +2025-06-18T14:45:14.281Z [INFO] payment-service - Auth event: logout - User: user_1039 - IP: 192.168.174.114 - RequestID: mluomfifdsl +2025-06-18T14:45:14.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.11.60 - RequestID: l1ycwxt637 +2025-06-18T14:45:14.481Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 274ms - Rows affected: 9 - RequestID: nrqqxy9216p +2025-06-18T14:45:14.581Z [TRACE] order-service - Operation: inventory_updated - Processing time: 615ms - RequestID: ul2ylafw4o +2025-06-18T14:45:14.681Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 404 - Response time: 1677ms - IP: 192.168.194.41 - User: user_1069 - RequestID: 5ro84jkbtli +2025-06-18T14:45:14.781Z [DEBUG] user-service - Auth event: login_failed - User: user_1014 - IP: 192.168.31.117 - RequestID: volxwmsbegd +2025-06-18T14:45:14.881Z [INFO] payment-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.64.33 - RequestID: 4366e2bs9ed +2025-06-18T14:45:14.981Z [INFO] user-service - Database INSERT on products - Execution time: 305ms - Rows affected: 85 - RequestID: phv085gppki +2025-06-18T14:45:15.081Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 406ms - Rows affected: 12 - RequestID: q49yy26f9io +2025-06-18T14:45:15.181Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 936ms - RequestID: 88je0gnojtc +2025-06-18T14:45:15.281Z [INFO] payment-service - PATCH /api/v1/payments - Status: 502 - Response time: 1854ms - IP: 192.168.113.218 - User: user_1019 - RequestID: 9ggcw4jo9is +2025-06-18T14:45:15.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.247.134 - RequestID: 8mp5186zabb +2025-06-18T14:45:15.481Z [DEBUG] order-service - Operation: order_created - Processing time: 354ms - RequestID: ck7pcncpxs4 +2025-06-18T14:45:15.581Z [INFO] order-service - Database DELETE on sessions - Execution time: 141ms - Rows affected: 7 - RequestID: wp00joltt5 +2025-06-18T14:45:15.681Z [INFO] payment-service - Operation: notification_queued - Processing time: 883ms - RequestID: kr9enggf66l +2025-06-18T14:45:15.781Z [TRACE] auth-service - Operation: payment_processed - Processing time: 383ms - RequestID: hwry6w6wfl +2025-06-18T14:45:15.881Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 72ms - Rows affected: 99 - RequestID: 8yun3qz71yq +2025-06-18T14:45:15.981Z [TRACE] order-service - Database INSERT on products - Execution time: 322ms - Rows affected: 79 - RequestID: stmfb2reqdt +2025-06-18T14:45:16.081Z [TRACE] inventory-service - Auth event: login_success - User: user_1023 - IP: 192.168.28.146 - RequestID: vb0i3ajypg +2025-06-18T14:45:16.181Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 217ms - Rows affected: 8 - RequestID: nhvk4cr5119 +2025-06-18T14:45:16.281Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 1341ms - IP: 192.168.235.117 - User: user_1049 - RequestID: tcxy6cl84l +2025-06-18T14:45:16.381Z [INFO] user-service - Operation: webhook_sent - Processing time: 738ms - RequestID: vta5lkppdf +2025-06-18T14:45:16.481Z [TRACE] auth-service - Database UPDATE on products - Execution time: 245ms - Rows affected: 85 - RequestID: r2yyklquvp9 +2025-06-18T14:45:16.581Z [DEBUG] user-service - Operation: cache_miss - Processing time: 796ms - RequestID: o8rf34zwuih +2025-06-18T14:45:16.681Z [INFO] order-service - Database SELECT on sessions - Execution time: 419ms - Rows affected: 10 - RequestID: ipcpaz1ezv +2025-06-18T14:45:16.781Z [INFO] order-service - Auth event: logout - User: user_1037 - IP: 192.168.46.63 - RequestID: v5915xqd78o +2025-06-18T14:45:16.881Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 65ms - RequestID: 9krs7y2k2o +2025-06-18T14:45:16.981Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1992ms - IP: 192.168.85.229 - User: user_1080 - RequestID: nzdohn2p7o +2025-06-18T14:45:17.081Z [DEBUG] payment-service - GET /api/v1/users - Status: 502 - Response time: 1666ms - IP: 192.168.1.152 - User: user_1066 - RequestID: vgpb232ik48 +2025-06-18T14:45:17.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.28.146 - RequestID: t8jtfx13sjo +2025-06-18T14:45:17.281Z [TRACE] user-service - Operation: webhook_sent - Processing time: 758ms - RequestID: 0go72xuzi9cf +2025-06-18T14:45:17.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1063 - IP: 192.168.68.158 - RequestID: 0fmu0cqadukj +2025-06-18T14:45:17.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.79.141 - RequestID: h5g5ky5a827 +2025-06-18T14:45:17.581Z [INFO] user-service - Database INSERT on products - Execution time: 78ms - Rows affected: 23 - RequestID: o1sla77n0ih +2025-06-18T14:45:17.681Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1214ms - IP: 192.168.100.240 - User: user_1015 - RequestID: fs0z1gvy0c8 +2025-06-18T14:45:17.781Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 201 - Response time: 92ms - IP: 192.168.138.123 - User: user_1058 - RequestID: q7nhz68c929 +2025-06-18T14:45:17.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 716ms - RequestID: xefj5cb5hkl +2025-06-18T14:45:17.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.174.114 - RequestID: hgglg9xlcu6 +2025-06-18T14:45:18.081Z [INFO] inventory-service - Operation: cache_miss - Processing time: 829ms - RequestID: qj5a8nkscl +2025-06-18T14:45:18.181Z [TRACE] auth-service - Database INSERT on orders - Execution time: 40ms - Rows affected: 98 - RequestID: jvx5jefv06 +2025-06-18T14:45:18.281Z [TRACE] user-service - Operation: cache_hit - Processing time: 563ms - RequestID: 7xq1f2vx78h +2025-06-18T14:45:18.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1085 - IP: 192.168.174.114 - RequestID: z1oxcf0tu8 +2025-06-18T14:45:18.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 377ms - RequestID: p060uqx8w6 +2025-06-18T14:45:18.581Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1998ms - IP: 192.168.144.38 - User: user_1009 - RequestID: fy3ve1ajxh6 +2025-06-18T14:45:18.681Z [INFO] auth-service - Database DELETE on users - Execution time: 146ms - Rows affected: 21 - RequestID: h13z8rcxoy6 +2025-06-18T14:45:18.781Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 502 - Response time: 641ms - IP: 192.168.187.199 - User: user_1099 - RequestID: 28rbfb13853 +2025-06-18T14:45:18.881Z [TRACE] payment-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.227.77 - RequestID: a0x8k1njdw +2025-06-18T14:45:18.981Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 499ms - RequestID: zmsjktfzjx +2025-06-18T14:45:19.081Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 870ms - RequestID: ogdjo26fndq +2025-06-18T14:45:19.181Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 614ms - RequestID: ado0vgmmty +2025-06-18T14:45:19.281Z [INFO] notification-service - PATCH /api/v1/users - Status: 500 - Response time: 1914ms - IP: 192.168.32.38 - User: user_1043 - RequestID: d6bkfp7f3o5 +2025-06-18T14:45:19.381Z [INFO] notification-service - Database UPDATE on payments - Execution time: 79ms - Rows affected: 55 - RequestID: vua6zpvzd7 +2025-06-18T14:45:19.481Z [TRACE] order-service - Auth event: login_success - User: user_1062 - IP: 192.168.46.63 - RequestID: 6mtfl1jxgpj +2025-06-18T14:45:19.581Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 200 - Response time: 1323ms - IP: 192.168.144.38 - User: user_1005 - RequestID: exifwfgypmg +2025-06-18T14:45:19.681Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 31ms - Rows affected: 86 - RequestID: m5r7g8je5f +2025-06-18T14:45:19.781Z [INFO] order-service - Auth event: login_success - User: user_1075 - IP: 192.168.79.116 - RequestID: 8rrkr5krl4o +2025-06-18T14:45:19.881Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 186ms - Rows affected: 8 - RequestID: xr5qtpnglqk +2025-06-18T14:45:19.981Z [TRACE] notification-service - Operation: notification_queued - Processing time: 462ms - RequestID: uygz8nrrc1a +2025-06-18T14:45:20.081Z [TRACE] notification-service - Database DELETE on users - Execution time: 492ms - Rows affected: 66 - RequestID: muzobvdcc0r +2025-06-18T14:45:20.181Z [TRACE] notification-service - Auth event: password_change - User: user_1090 - IP: 192.168.141.100 - RequestID: 4wilgfahmad +2025-06-18T14:45:20.281Z [INFO] order-service - Auth event: login_success - User: user_1024 - IP: 192.168.13.72 - RequestID: s0txwh6cp4i +2025-06-18T14:45:20.381Z [INFO] notification-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.174.114 - RequestID: 4glbql3z0mv +2025-06-18T14:45:20.481Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 737ms - RequestID: 8xywgw2hmj6 +2025-06-18T14:45:20.581Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 500 - Response time: 1578ms - IP: 192.168.53.133 - User: user_1040 - RequestID: ggrivkvj20f +2025-06-18T14:45:20.681Z [TRACE] notification-service - Auth event: password_change - User: user_1079 - IP: 192.168.133.7 - RequestID: kj62ll67pyi +2025-06-18T14:45:20.781Z [TRACE] user-service - Database UPDATE on orders - Execution time: 138ms - Rows affected: 67 - RequestID: fsn6x5xvmuk +2025-06-18T14:45:20.881Z [INFO] order-service - Auth event: logout - User: user_1092 - IP: 192.168.33.76 - RequestID: qkooiac7wkp +2025-06-18T14:45:20.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1011 - IP: 192.168.36.218 - RequestID: 5ksus3id5v6 +2025-06-18T14:45:21.081Z [INFO] order-service - Auth event: login_failed - User: user_1054 - IP: 192.168.28.146 - RequestID: 3ol2li8k115 +2025-06-18T14:45:21.181Z [INFO] auth-service - Operation: email_sent - Processing time: 989ms - RequestID: xe83is6k34q +2025-06-18T14:45:21.281Z [INFO] auth-service - POST /api/v1/users - Status: 401 - Response time: 525ms - IP: 192.168.31.117 - User: user_1043 - RequestID: ze1pv2ca8us +2025-06-18T14:45:21.381Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 204ms - Rows affected: 29 - RequestID: z6l89fkvy2 +2025-06-18T14:45:21.481Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 472ms - Rows affected: 2 - RequestID: 8o7m3snr5fd +2025-06-18T14:45:21.581Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 401 - Response time: 402ms - IP: 192.168.167.32 - User: user_1075 - RequestID: q7sqsqfbtyo +2025-06-18T14:45:21.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1083 - IP: 192.168.46.63 - RequestID: 0inbncfg5utc +2025-06-18T14:45:21.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1083 - IP: 192.168.181.225 - RequestID: 5ig4rr9sai7 +2025-06-18T14:45:21.881Z [DEBUG] auth-service - POST /api/v1/users - Status: 200 - Response time: 148ms - IP: 192.168.113.218 - User: user_1094 - RequestID: aikpeyo2gk +2025-06-18T14:45:21.981Z [INFO] inventory-service - Operation: cache_hit - Processing time: 976ms - RequestID: 84nvzcrh3vf +2025-06-18T14:45:22.081Z [TRACE] user-service - Operation: payment_processed - Processing time: 906ms - RequestID: qw4o0iaraph +2025-06-18T14:45:22.181Z [INFO] inventory-service - Database SELECT on products - Execution time: 126ms - Rows affected: 82 - RequestID: g3t1i0843zi +2025-06-18T14:45:22.281Z [TRACE] user-service - Operation: email_sent - Processing time: 100ms - RequestID: tf7w522mf58 +2025-06-18T14:45:22.381Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1786ms - IP: 192.168.211.72 - User: user_1072 - RequestID: xftnesgilzi +2025-06-18T14:45:22.481Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 400 - Response time: 1977ms - IP: 192.168.227.77 - User: user_1048 - RequestID: 26dujj7zvrz +2025-06-18T14:45:22.581Z [TRACE] notification-service - Operation: cache_miss - Processing time: 587ms - RequestID: mfv972nectm +2025-06-18T14:45:22.681Z [INFO] order-service - Operation: notification_queued - Processing time: 683ms - RequestID: 2yjnn4euazd +2025-06-18T14:45:22.781Z [DEBUG] auth-service - Database SELECT on users - Execution time: 161ms - Rows affected: 9 - RequestID: jmt9sc3i61f +2025-06-18T14:45:22.881Z [DEBUG] order-service - Auth event: logout - User: user_1075 - IP: 192.168.85.229 - RequestID: 46r04zpo16e +2025-06-18T14:45:22.981Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1275ms - IP: 192.168.229.123 - User: user_1013 - RequestID: 6n3y2ju12mr +2025-06-18T14:45:23.081Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 390ms - IP: 192.168.36.218 - User: user_1037 - RequestID: a2gpptyymnf +2025-06-18T14:45:23.181Z [DEBUG] order-service - Auth event: login_failed - User: user_1084 - IP: 192.168.97.87 - RequestID: 0neblc8bp3jh +2025-06-18T14:45:23.281Z [INFO] notification-service - Auth event: login_failed - User: user_1081 - IP: 192.168.64.33 - RequestID: nk8secn8fmb +2025-06-18T14:45:23.381Z [DEBUG] user-service - GET /api/v1/payments - Status: 404 - Response time: 1903ms - IP: 192.168.242.165 - User: user_1029 - RequestID: xihjzww1y6e +2025-06-18T14:45:23.481Z [TRACE] notification-service - Database SELECT on users - Execution time: 403ms - Rows affected: 16 - RequestID: diz1aq0hsz +2025-06-18T14:45:23.581Z [INFO] order-service - Operation: payment_processed - Processing time: 626ms - RequestID: 9gxdwseta1i +2025-06-18T14:45:23.681Z [TRACE] user-service - GET /api/v1/users - Status: 500 - Response time: 773ms - IP: 192.168.229.123 - User: user_1053 - RequestID: huacu57yh5p +2025-06-18T14:45:23.781Z [INFO] user-service - PUT /api/v1/users - Status: 200 - Response time: 159ms - IP: 192.168.85.229 - User: user_1095 - RequestID: 9l9ci85l0cl +2025-06-18T14:45:23.881Z [INFO] payment-service - Operation: order_created - Processing time: 317ms - RequestID: wa38l4j09dm +2025-06-18T14:45:23.981Z [INFO] user-service - Database SELECT on products - Execution time: 72ms - Rows affected: 16 - RequestID: iq68tz9vsj +2025-06-18T14:45:24.081Z [INFO] payment-service - Operation: cache_miss - Processing time: 950ms - RequestID: rwr625dr5l +2025-06-18T14:45:24.181Z [TRACE] order-service - POST /api/v1/inventory - Status: 400 - Response time: 1493ms - IP: 192.168.85.229 - User: user_1027 - RequestID: lie65hj0l5j +2025-06-18T14:45:24.281Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 160ms - RequestID: rbhjnk7fnm +2025-06-18T14:45:24.381Z [DEBUG] payment-service - Database DELETE on products - Execution time: 246ms - Rows affected: 69 - RequestID: euqhqsijd3g +2025-06-18T14:45:24.481Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 401 - Response time: 1831ms - IP: 192.168.170.215 - User: user_1038 - RequestID: 7q1opn42r4w +2025-06-18T14:45:24.581Z [TRACE] user-service - POST /api/v1/inventory - Status: 404 - Response time: 1103ms - IP: 192.168.36.218 - User: user_1082 - RequestID: 9zbk581gejs +2025-06-18T14:45:24.681Z [TRACE] order-service - Operation: email_sent - Processing time: 265ms - RequestID: vjbl8jdsit +2025-06-18T14:45:24.781Z [TRACE] user-service - DELETE /api/v1/payments - Status: 404 - Response time: 778ms - IP: 192.168.187.199 - User: user_1050 - RequestID: vnfu6h6woo +2025-06-18T14:45:24.881Z [INFO] user-service - Operation: cache_miss - Processing time: 567ms - RequestID: n7ogvi00chb +2025-06-18T14:45:24.981Z [INFO] notification-service - PUT /api/v1/orders - Status: 503 - Response time: 1927ms - IP: 192.168.189.103 - User: user_1098 - RequestID: 77hlfqn5tzn +2025-06-18T14:45:25.081Z [TRACE] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 42ms - IP: 192.168.68.128 - User: user_1029 - RequestID: 9kcxoktyhba +2025-06-18T14:45:25.181Z [INFO] notification-service - Operation: email_sent - Processing time: 167ms - RequestID: qg5waog3ebo +2025-06-18T14:45:25.281Z [INFO] inventory-service - Operation: payment_processed - Processing time: 322ms - RequestID: subwdao3qe +2025-06-18T14:45:25.381Z [TRACE] user-service - Auth event: password_change - User: user_1060 - IP: 192.168.64.33 - RequestID: rwl4offlve +2025-06-18T14:45:25.481Z [INFO] auth-service - Database INSERT on payments - Execution time: 101ms - Rows affected: 82 - RequestID: wvo1l97aqx +2025-06-18T14:45:25.581Z [TRACE] notification-service - Operation: notification_queued - Processing time: 1017ms - RequestID: ftkh0s0odzc +2025-06-18T14:45:25.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1078 - IP: 192.168.10.184 - RequestID: h0geczjloku +2025-06-18T14:45:25.781Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 168ms - Rows affected: 82 - RequestID: cxmn6gfplj5 +2025-06-18T14:45:25.881Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 761ms - RequestID: f6cqax7n7va +2025-06-18T14:45:25.981Z [TRACE] order-service - Database UPDATE on orders - Execution time: 227ms - Rows affected: 94 - RequestID: f0sqdcl0d8w +2025-06-18T14:45:26.081Z [DEBUG] user-service - Operation: cache_hit - Processing time: 272ms - RequestID: tecgwi4wrxr +2025-06-18T14:45:26.181Z [INFO] inventory-service - Operation: payment_processed - Processing time: 954ms - RequestID: dorzto09jlf +2025-06-18T14:45:26.281Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1108ms - IP: 192.168.46.63 - User: user_1076 - RequestID: zee88eim38 +2025-06-18T14:45:26.381Z [TRACE] order-service - Database UPDATE on products - Execution time: 55ms - Rows affected: 27 - RequestID: p7xr56yeupo +2025-06-18T14:45:26.481Z [TRACE] payment-service - Operation: email_sent - Processing time: 849ms - RequestID: wjyhcge2pbg +2025-06-18T14:45:26.581Z [INFO] order-service - GET /api/v1/orders - Status: 502 - Response time: 1299ms - IP: 192.168.133.7 - User: user_1045 - RequestID: w99kj4yepzk +2025-06-18T14:45:26.681Z [INFO] order-service - Database INSERT on orders - Execution time: 261ms - Rows affected: 56 - RequestID: 5do8tzt385l +2025-06-18T14:45:26.781Z [TRACE] order-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.158.144 - RequestID: oj1m2x3a4bh +2025-06-18T14:45:26.881Z [INFO] auth-service - Database DELETE on products - Execution time: 169ms - Rows affected: 17 - RequestID: 9c3kky3db1s +2025-06-18T14:45:26.981Z [DEBUG] notification-service - GET /api/v1/users - Status: 500 - Response time: 813ms - IP: 192.168.194.41 - User: user_1082 - RequestID: 6lmuw08ext +2025-06-18T14:45:27.081Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1702ms - IP: 192.168.14.77 - User: user_1057 - RequestID: 7ycikk0lqmw +2025-06-18T14:45:27.181Z [INFO] auth-service - Database SELECT on products - Execution time: 412ms - Rows affected: 94 - RequestID: pse406glzni +2025-06-18T14:45:27.281Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 500 - Response time: 1366ms - IP: 192.168.227.77 - User: user_1008 - RequestID: 8c5gh3x7psq +2025-06-18T14:45:27.381Z [INFO] notification-service - Operation: order_created - Processing time: 699ms - RequestID: 9xq10huqson +2025-06-18T14:45:27.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 99ms - RequestID: i77t844m69c +2025-06-18T14:45:27.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 575ms - RequestID: tn142wzzu2r +2025-06-18T14:45:27.681Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 406ms - Rows affected: 96 - RequestID: 52qthywnp7s +2025-06-18T14:45:27.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.13.72 - RequestID: mq711pa4z6 +2025-06-18T14:45:27.881Z [INFO] notification-service - Database SELECT on users - Execution time: 379ms - Rows affected: 94 - RequestID: 8hhsh1sj6d9 +2025-06-18T14:45:27.981Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 293ms - Rows affected: 22 - RequestID: vwa5g1hgqzn +2025-06-18T14:45:28.081Z [TRACE] user-service - GET /api/v1/auth/login - Status: 401 - Response time: 637ms - IP: 192.168.97.87 - User: user_1046 - RequestID: nilxzac4tk +2025-06-18T14:45:28.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.147.171 - RequestID: gqygwwrls2 +2025-06-18T14:45:28.281Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 383ms - RequestID: a5nujmbr5vn +2025-06-18T14:45:28.381Z [INFO] notification-service - POST /api/v1/payments - Status: 500 - Response time: 1757ms - IP: 192.168.189.103 - User: user_1002 - RequestID: 1djqk3uynpg +2025-06-18T14:45:28.481Z [INFO] auth-service - Operation: inventory_updated - Processing time: 249ms - RequestID: s24ybzj2fbg +2025-06-18T14:45:28.581Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 1042ms - RequestID: l11ck08zyy +2025-06-18T14:45:28.681Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 106ms - Rows affected: 72 - RequestID: oxmlrnx23x8 +2025-06-18T14:45:28.781Z [DEBUG] order-service - Auth event: login_failed - User: user_1031 - IP: 192.168.14.77 - RequestID: npl20qw8oeo +2025-06-18T14:45:28.881Z [DEBUG] user-service - Auth event: login_success - User: user_1054 - IP: 192.168.247.134 - RequestID: 17thqi39dc8 +2025-06-18T14:45:28.981Z [INFO] payment-service - PUT /api/v1/orders - Status: 403 - Response time: 1893ms - IP: 192.168.196.226 - User: user_1026 - RequestID: a7tsr9qoehv +2025-06-18T14:45:29.081Z [TRACE] user-service - Database INSERT on sessions - Execution time: 438ms - Rows affected: 74 - RequestID: ctpf8b5oyjl +2025-06-18T14:45:29.181Z [DEBUG] payment-service - Operation: email_sent - Processing time: 864ms - RequestID: 151o984e7kb +2025-06-18T14:45:29.281Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 502 - Response time: 1627ms - IP: 192.168.227.77 - User: user_1091 - RequestID: k2va8h3bhi +2025-06-18T14:45:29.381Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 136ms - Rows affected: 83 - RequestID: fgdsi2eimuw +2025-06-18T14:45:29.481Z [INFO] order-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1990ms - IP: 192.168.79.141 - User: user_1099 - RequestID: 3m1x1bgk3pq +2025-06-18T14:45:29.581Z [INFO] user-service - Operation: cache_miss - Processing time: 143ms - RequestID: 0f3xpfjkms7s +2025-06-18T14:45:29.681Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 754ms - RequestID: xwn3rdvwbep +2025-06-18T14:45:29.781Z [TRACE] user-service - Database DELETE on users - Execution time: 300ms - Rows affected: 9 - RequestID: 9cxlveih6ak +2025-06-18T14:45:29.881Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 143ms - IP: 192.168.30.79 - User: user_1046 - RequestID: qzghswig6wd +2025-06-18T14:45:29.981Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 829ms - RequestID: 4bkvan4bk1x +2025-06-18T14:45:30.081Z [TRACE] order-service - Database DELETE on users - Execution time: 15ms - Rows affected: 38 - RequestID: 9xv444hmib +2025-06-18T14:45:30.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.85.229 - RequestID: a5iszzyfbij +2025-06-18T14:45:30.281Z [INFO] auth-service - Auth event: logout - User: user_1000 - IP: 192.168.30.79 - RequestID: 9yfg82zumsd +2025-06-18T14:45:30.381Z [TRACE] payment-service - Auth event: logout - User: user_1083 - IP: 192.168.147.171 - RequestID: 9brddwqw5fk +2025-06-18T14:45:30.481Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 262ms - IP: 192.168.144.38 - User: user_1062 - RequestID: wm9kmwm0e6 +2025-06-18T14:45:30.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 1046ms - RequestID: 5os1eao5ai4 +2025-06-18T14:45:30.681Z [INFO] auth-service - Auth event: password_change - User: user_1096 - IP: 192.168.79.143 - RequestID: tlhgfhfh16 +2025-06-18T14:45:30.781Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 201 - Response time: 1262ms - IP: 192.168.229.123 - User: user_1027 - RequestID: vnhq4zgfp7l +2025-06-18T14:45:30.881Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 503 - Response time: 389ms - IP: 192.168.229.123 - User: user_1088 - RequestID: mjgnifkoo1r +2025-06-18T14:45:30.981Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 237ms - IP: 192.168.68.128 - User: user_1042 - RequestID: pm7fruvvk39 +2025-06-18T14:45:31.081Z [INFO] auth-service - Auth event: login_success - User: user_1054 - IP: 192.168.141.100 - RequestID: 22n6ie1q3egh +2025-06-18T14:45:31.181Z [INFO] payment-service - POST /api/v1/payments - Status: 500 - Response time: 189ms - IP: 192.168.147.171 - User: user_1017 - RequestID: 2435wexy1zx +2025-06-18T14:45:31.281Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 325ms - Rows affected: 86 - RequestID: fl63iwzmq4i +2025-06-18T14:45:31.381Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 6ms - Rows affected: 84 - RequestID: 0xmifu65csv9 +2025-06-18T14:45:31.481Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1351ms - IP: 192.168.242.165 - User: user_1043 - RequestID: llgsjsumf4q +2025-06-18T14:45:31.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 576ms - RequestID: kczk00wn5v +2025-06-18T14:45:31.681Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 488ms - Rows affected: 10 - RequestID: qavu9god2c +2025-06-18T14:45:31.781Z [INFO] user-service - Operation: email_sent - Processing time: 279ms - RequestID: 38rqi82nplm +2025-06-18T14:45:31.881Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 199ms - Rows affected: 54 - RequestID: 4bb27wrcsc6 +2025-06-18T14:45:31.981Z [TRACE] auth-service - PUT /api/v1/payments - Status: 200 - Response time: 749ms - IP: 192.168.46.63 - User: user_1092 - RequestID: kof9f48pkam +2025-06-18T14:45:32.081Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 384ms - Rows affected: 5 - RequestID: 3kfb9fn3zve +2025-06-18T14:45:32.181Z [INFO] auth-service - DELETE /api/v1/payments - Status: 401 - Response time: 1118ms - IP: 192.168.79.116 - User: user_1044 - RequestID: 5brdl0vwrnr +2025-06-18T14:45:32.281Z [DEBUG] auth-service - Auth event: login_success - User: user_1022 - IP: 192.168.170.215 - RequestID: 1yy3tvatr15 +2025-06-18T14:45:32.381Z [INFO] order-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.100.240 - RequestID: yksd0zozcve +2025-06-18T14:45:32.481Z [TRACE] notification-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.97.87 - RequestID: z9881kkzpq +2025-06-18T14:45:32.581Z [TRACE] inventory-service - Auth event: login_failed - User: user_1072 - IP: 192.168.14.77 - RequestID: nwq6i6eska +2025-06-18T14:45:32.681Z [INFO] auth-service - Auth event: password_change - User: user_1084 - IP: 192.168.97.87 - RequestID: v12necmzufq +2025-06-18T14:45:32.781Z [INFO] inventory-service - Database UPDATE on users - Execution time: 387ms - Rows affected: 61 - RequestID: y1lzjy9k85 +2025-06-18T14:45:32.881Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 232ms - Rows affected: 63 - RequestID: 5hx8s8dmpef +2025-06-18T14:45:32.981Z [INFO] inventory-service - Operation: payment_processed - Processing time: 496ms - RequestID: rqojubaeoy +2025-06-18T14:45:33.081Z [TRACE] user-service - Auth event: login_failed - User: user_1062 - IP: 192.168.53.133 - RequestID: 20s8r5ljxte +2025-06-18T14:45:33.181Z [INFO] payment-service - Database UPDATE on users - Execution time: 66ms - Rows affected: 95 - RequestID: 1y3xyhohqll +2025-06-18T14:45:33.281Z [DEBUG] order-service - Auth event: login_failed - User: user_1007 - IP: 192.168.227.77 - RequestID: gn0owdc5gto +2025-06-18T14:45:33.381Z [INFO] auth-service - Operation: cache_hit - Processing time: 69ms - RequestID: 0xwz0tsy6lq9 +2025-06-18T14:45:33.481Z [TRACE] notification-service - Operation: email_sent - Processing time: 649ms - RequestID: is7r06ug4j8 +2025-06-18T14:45:33.581Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 231ms - Rows affected: 34 - RequestID: vzupywbd5og +2025-06-18T14:45:33.681Z [INFO] auth-service - GET /api/v1/auth/login - Status: 201 - Response time: 1268ms - IP: 192.168.11.60 - User: user_1067 - RequestID: 2bwyyjmc2yo +2025-06-18T14:45:33.781Z [INFO] user-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1660ms - IP: 192.168.100.240 - User: user_1009 - RequestID: fylqq2d8p2v +2025-06-18T14:45:33.881Z [INFO] payment-service - Database INSERT on payments - Execution time: 393ms - Rows affected: 25 - RequestID: p82hbjw5fyd +2025-06-18T14:45:33.981Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.229.123 - RequestID: rz49q9551p9 +2025-06-18T14:45:34.081Z [INFO] auth-service - Database UPDATE on orders - Execution time: 486ms - Rows affected: 99 - RequestID: wuir3fgr9gn +2025-06-18T14:45:34.181Z [INFO] notification-service - Auth event: login_failed - User: user_1040 - IP: 192.168.14.77 - RequestID: kpdb0alrbk +2025-06-18T14:45:34.281Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 333ms - Rows affected: 20 - RequestID: zyel6u0n64 +2025-06-18T14:45:34.381Z [TRACE] payment-service - Database DELETE on payments - Execution time: 81ms - Rows affected: 1 - RequestID: nttur81xr1m +2025-06-18T14:45:34.481Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 201 - Response time: 1399ms - IP: 192.168.133.7 - User: user_1018 - RequestID: qghqn82kdoc +2025-06-18T14:45:34.581Z [INFO] inventory-service - Operation: order_created - Processing time: 848ms - RequestID: n3wpuygd6qa +2025-06-18T14:45:34.681Z [TRACE] payment-service - Database DELETE on products - Execution time: 489ms - Rows affected: 33 - RequestID: sfx2w877kgt +2025-06-18T14:45:34.781Z [INFO] payment-service - Operation: email_sent - Processing time: 688ms - RequestID: 8gdt7po9ld9 +2025-06-18T14:45:34.881Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1436ms - IP: 192.168.187.199 - User: user_1064 - RequestID: 88vdjex0m9v +2025-06-18T14:45:34.981Z [TRACE] order-service - Auth event: password_change - User: user_1024 - IP: 192.168.1.152 - RequestID: eut2d93dk04 +2025-06-18T14:45:35.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 135ms - RequestID: mgv250ndjo +2025-06-18T14:45:35.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1064 - IP: 192.168.174.114 - RequestID: 3l22ipm3f79 +2025-06-18T14:45:35.281Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 502 - Response time: 1439ms - IP: 192.168.1.152 - User: user_1028 - RequestID: sw90yevcdni +2025-06-18T14:45:35.381Z [INFO] payment-service - Database SELECT on orders - Execution time: 170ms - Rows affected: 33 - RequestID: stqwtwwt49 +2025-06-18T14:45:35.481Z [INFO] order-service - Auth event: logout - User: user_1062 - IP: 192.168.85.229 - RequestID: k4rxh7sz0ln +2025-06-18T14:45:35.581Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 502 - Response time: 710ms - IP: 192.168.141.100 - User: user_1053 - RequestID: 0v913em0cl3 +2025-06-18T14:45:35.681Z [TRACE] auth-service - Auth event: logout - User: user_1089 - IP: 192.168.174.114 - RequestID: xbltq8n70jc +2025-06-18T14:45:35.781Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 120ms - Rows affected: 69 - RequestID: fl8i4vlhgtt +2025-06-18T14:45:35.881Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 502 - Response time: 734ms - IP: 192.168.211.72 - User: user_1020 - RequestID: 2i9s1d0opty +2025-06-18T14:45:35.981Z [TRACE] notification-service - Operation: notification_queued - Processing time: 126ms - RequestID: xh5scwkcmv9 +2025-06-18T14:45:36.081Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 216ms - IP: 192.168.138.123 - User: user_1069 - RequestID: wwey5w6ndi +2025-06-18T14:45:36.181Z [TRACE] user-service - Operation: order_created - Processing time: 1036ms - RequestID: 708v2w7h3dr +2025-06-18T14:45:36.281Z [TRACE] notification-service - Auth event: login_success - User: user_1040 - IP: 192.168.100.240 - RequestID: k4hvyilcwrb +2025-06-18T14:45:36.381Z [TRACE] order-service - Auth event: password_change - User: user_1033 - IP: 192.168.44.5 - RequestID: 380f8azady2 +2025-06-18T14:45:36.481Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 500 - Response time: 1437ms - IP: 192.168.53.133 - User: user_1091 - RequestID: h98ekei8nfo +2025-06-18T14:45:36.581Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1112ms - IP: 192.168.235.117 - User: user_1054 - RequestID: 33zbrktrhoe +2025-06-18T14:45:36.681Z [TRACE] order-service - Auth event: logout - User: user_1070 - IP: 192.168.170.215 - RequestID: a8u9y2up4y +2025-06-18T14:45:36.781Z [TRACE] inventory-service - Database SELECT on products - Execution time: 8ms - Rows affected: 28 - RequestID: wtfp20fq0xj +2025-06-18T14:45:36.881Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1020 - IP: 192.168.31.117 - RequestID: 3tp2c1gn3yz +2025-06-18T14:45:36.981Z [TRACE] notification-service - Auth event: password_change - User: user_1021 - IP: 192.168.31.117 - RequestID: idrc1nl96b +2025-06-18T14:45:37.081Z [INFO] notification-service - Database SELECT on products - Execution time: 375ms - Rows affected: 66 - RequestID: qcpungh4i2m +2025-06-18T14:45:37.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.68.158 - RequestID: hj6eozw5drw +2025-06-18T14:45:37.281Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1279ms - IP: 192.168.141.100 - User: user_1061 - RequestID: otsweukj5x +2025-06-18T14:45:37.381Z [INFO] auth-service - DELETE /api/v1/users - Status: 201 - Response time: 739ms - IP: 192.168.10.184 - User: user_1013 - RequestID: yli7keh8y2s +2025-06-18T14:45:37.481Z [INFO] payment-service - POST /api/v1/users - Status: 500 - Response time: 1191ms - IP: 192.168.31.117 - User: user_1074 - RequestID: hs37gmfrco +2025-06-18T14:45:37.581Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1029 - IP: 192.168.1.152 - RequestID: h7jt4e3g83 +2025-06-18T14:45:37.681Z [TRACE] user-service - Database SELECT on products - Execution time: 499ms - Rows affected: 7 - RequestID: ml7hyamq2g +2025-06-18T14:45:37.781Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 425ms - RequestID: 5hm97zp58zm +2025-06-18T14:45:37.881Z [INFO] user-service - Database DELETE on products - Execution time: 102ms - Rows affected: 21 - RequestID: gzdny2eusyp +2025-06-18T14:45:37.981Z [INFO] order-service - Database UPDATE on products - Execution time: 352ms - Rows affected: 84 - RequestID: xv3n2kpbdt +2025-06-18T14:45:38.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.133.7 - RequestID: k8rvz66yr7b +2025-06-18T14:45:38.181Z [INFO] order-service - Database UPDATE on payments - Execution time: 250ms - Rows affected: 91 - RequestID: dxjygnijt2g +2025-06-18T14:45:38.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.133.7 - RequestID: 7ayqry5wrzt +2025-06-18T14:45:38.381Z [INFO] user-service - Auth event: login_success - User: user_1052 - IP: 192.168.100.240 - RequestID: okmm16k067k +2025-06-18T14:45:38.481Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 412ms - Rows affected: 60 - RequestID: v85m2pe637 +2025-06-18T14:45:38.581Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 456ms - Rows affected: 8 - RequestID: tmz4wpf25h +2025-06-18T14:45:38.681Z [INFO] user-service - Auth event: login_failed - User: user_1041 - IP: 192.168.85.229 - RequestID: 5cjjv5tntqi +2025-06-18T14:45:38.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.240.169 - RequestID: 4rhqxzji5sp +2025-06-18T14:45:38.881Z [INFO] order-service - Auth event: password_change - User: user_1056 - IP: 192.168.104.37 - RequestID: u163ugskgz8 +2025-06-18T14:45:38.981Z [TRACE] auth-service - Database SELECT on orders - Execution time: 402ms - Rows affected: 60 - RequestID: 4adt9ca16v9 +2025-06-18T14:45:39.081Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 201 - Response time: 577ms - IP: 192.168.53.133 - User: user_1033 - RequestID: eirguesiaue +2025-06-18T14:45:39.181Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 541ms - IP: 192.168.10.184 - User: user_1012 - RequestID: lw9g3seedpm +2025-06-18T14:45:39.281Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 1905ms - IP: 192.168.14.77 - User: user_1085 - RequestID: ruspu1bvifl +2025-06-18T14:45:39.381Z [DEBUG] user-service - Auth event: login_success - User: user_1041 - IP: 192.168.85.229 - RequestID: 2ra9jz4c3lw +2025-06-18T14:45:39.481Z [INFO] user-service - Auth event: password_change - User: user_1060 - IP: 192.168.100.240 - RequestID: pzx518vlyn +2025-06-18T14:45:39.581Z [INFO] user-service - Database DELETE on sessions - Execution time: 496ms - Rows affected: 91 - RequestID: 9qsfmh5mwp6 +2025-06-18T14:45:39.681Z [DEBUG] order-service - Auth event: login_success - User: user_1027 - IP: 192.168.64.33 - RequestID: o5bred11rg +2025-06-18T14:45:39.781Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 180ms - Rows affected: 30 - RequestID: o6lambaavrm +2025-06-18T14:45:39.881Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 404 - Response time: 236ms - IP: 192.168.113.218 - User: user_1077 - RequestID: qm3qug5ac4 +2025-06-18T14:45:39.981Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 502 - Response time: 450ms - IP: 192.168.194.41 - User: user_1088 - RequestID: roacpx9bigl +2025-06-18T14:45:40.081Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 502 - Response time: 285ms - IP: 192.168.33.76 - User: user_1088 - RequestID: 2kkqnq08mj3 +2025-06-18T14:45:40.181Z [TRACE] order-service - Operation: webhook_sent - Processing time: 557ms - RequestID: mp19edz0ap +2025-06-18T14:45:40.281Z [INFO] inventory-service - Operation: payment_processed - Processing time: 949ms - RequestID: mx5kuhy0pzc +2025-06-18T14:45:40.381Z [INFO] notification-service - Auth event: logout - User: user_1089 - IP: 192.168.28.146 - RequestID: z2g4zzwmq7 +2025-06-18T14:45:40.481Z [INFO] notification-service - Operation: order_created - Processing time: 571ms - RequestID: impmtbiznce +2025-06-18T14:45:40.581Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 357ms - RequestID: iz9g7a4oba +2025-06-18T14:45:40.681Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 500 - Response time: 1211ms - IP: 192.168.79.116 - User: user_1014 - RequestID: 1f20e7hdq1i +2025-06-18T14:45:40.781Z [INFO] notification-service - Operation: cache_hit - Processing time: 484ms - RequestID: qxj5grxew4 +2025-06-18T14:45:40.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1096 - IP: 192.168.85.229 - RequestID: 8yrbkoi0bao +2025-06-18T14:45:40.981Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 684ms - IP: 192.168.247.134 - User: user_1029 - RequestID: shc04bstn7d +2025-06-18T14:45:41.081Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 661ms - RequestID: 0qfkns15ouz +2025-06-18T14:45:41.181Z [INFO] payment-service - Auth event: password_change - User: user_1023 - IP: 192.168.242.165 - RequestID: a41exq8s539 +2025-06-18T14:45:41.281Z [TRACE] payment-service - Operation: notification_queued - Processing time: 388ms - RequestID: ybibzras7yr +2025-06-18T14:45:41.381Z [DEBUG] user-service - Auth event: logout - User: user_1003 - IP: 192.168.68.128 - RequestID: xmx5h449zjl +2025-06-18T14:45:41.481Z [INFO] user-service - Auth event: logout - User: user_1091 - IP: 192.168.174.114 - RequestID: mtjjn7sdi9 +2025-06-18T14:45:41.581Z [INFO] inventory-service - Database SELECT on products - Execution time: 180ms - Rows affected: 4 - RequestID: k5fyvzcu37c +2025-06-18T14:45:41.681Z [TRACE] order-service - Database INSERT on products - Execution time: 441ms - Rows affected: 26 - RequestID: f861q840s5b +2025-06-18T14:45:41.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.79.143 - RequestID: b2qrckqq7u +2025-06-18T14:45:41.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1000 - IP: 192.168.10.184 - RequestID: br5v0dm38d6 +2025-06-18T14:45:41.981Z [TRACE] user-service - Auth event: login_success - User: user_1002 - IP: 192.168.81.206 - RequestID: uq01ql67mai +2025-06-18T14:45:42.081Z [DEBUG] payment-service - Auth event: logout - User: user_1079 - IP: 192.168.46.63 - RequestID: 2ksj1vw4wwh +2025-06-18T14:45:42.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 498ms - RequestID: nhhu16dpvud +2025-06-18T14:45:42.281Z [INFO] notification-service - Operation: email_sent - Processing time: 997ms - RequestID: l4dhwgwpc0j +2025-06-18T14:45:42.381Z [INFO] user-service - PUT /api/v1/inventory - Status: 201 - Response time: 420ms - IP: 192.168.189.103 - User: user_1092 - RequestID: w5fwznskay +2025-06-18T14:45:42.481Z [TRACE] auth-service - Database DELETE on payments - Execution time: 199ms - Rows affected: 97 - RequestID: fg9x2agaqnq +2025-06-18T14:45:42.581Z [INFO] order-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.68.128 - RequestID: sulik4u5sam +2025-06-18T14:45:42.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1007 - IP: 192.168.113.218 - RequestID: x6lrk13ct6l +2025-06-18T14:45:42.781Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 201 - Response time: 1571ms - IP: 192.168.79.141 - User: user_1026 - RequestID: gv1ekfohcb +2025-06-18T14:45:42.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.33.76 - RequestID: jrt80g0s6oa +2025-06-18T14:45:42.981Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 500 - Response time: 612ms - IP: 192.168.64.33 - User: user_1014 - RequestID: y84wpel6web +2025-06-18T14:45:43.081Z [TRACE] payment-service - Operation: notification_queued - Processing time: 157ms - RequestID: jujwon18ccs +2025-06-18T14:45:43.181Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1943ms - IP: 192.168.211.72 - User: user_1010 - RequestID: pdjywb4dr1 +2025-06-18T14:45:43.281Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 500 - Response time: 884ms - IP: 192.168.170.215 - User: user_1052 - RequestID: 6d4284lcv3u +2025-06-18T14:45:43.381Z [DEBUG] auth-service - Database DELETE on users - Execution time: 310ms - Rows affected: 94 - RequestID: uezxatn13hr +2025-06-18T14:45:43.481Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 400 - Response time: 502ms - IP: 192.168.13.72 - User: user_1089 - RequestID: d5ohrhovvns +2025-06-18T14:45:43.581Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 119ms - Rows affected: 27 - RequestID: enp5qpad8cq +2025-06-18T14:45:43.681Z [TRACE] user-service - POST /api/v1/users - Status: 201 - Response time: 1658ms - IP: 192.168.46.63 - User: user_1002 - RequestID: dqzmh0qsqkg +2025-06-18T14:45:43.781Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 500 - Response time: 491ms - IP: 192.168.68.128 - User: user_1086 - RequestID: 76mwn9oz5ns +2025-06-18T14:45:43.881Z [DEBUG] user-service - Database DELETE on payments - Execution time: 407ms - Rows affected: 35 - RequestID: 35xuzzl4zkc +2025-06-18T14:45:43.981Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 355ms - Rows affected: 21 - RequestID: bsaqgna1q3e +2025-06-18T14:45:44.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.53.133 - RequestID: uws8noupssi +2025-06-18T14:45:44.181Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 43ms - Rows affected: 71 - RequestID: ah0xvjze0u +2025-06-18T14:45:44.281Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 401 - Response time: 183ms - IP: 192.168.174.114 - User: user_1000 - RequestID: 9naqs02uuwt +2025-06-18T14:45:44.381Z [DEBUG] payment-service - Auth event: logout - User: user_1076 - IP: 192.168.229.123 - RequestID: 7c02y0bw84v +2025-06-18T14:45:44.481Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 401 - Response time: 2003ms - IP: 192.168.229.123 - User: user_1070 - RequestID: 56jyp7da7nc +2025-06-18T14:45:44.581Z [TRACE] payment-service - Operation: order_created - Processing time: 815ms - RequestID: 3wug16fdhhq +2025-06-18T14:45:44.681Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1779ms - IP: 192.168.33.76 - User: user_1060 - RequestID: rl8kg556zwd +2025-06-18T14:45:44.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.97.87 - RequestID: fnxlj4l1g58 +2025-06-18T14:45:44.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1008 - IP: 192.168.138.123 - RequestID: silbx5v1l2n +2025-06-18T14:45:44.981Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 194ms - Rows affected: 67 - RequestID: otfch9ma0df +2025-06-18T14:45:45.081Z [DEBUG] auth-service - Auth event: logout - User: user_1066 - IP: 192.168.79.143 - RequestID: x2mq1ndo4k +2025-06-18T14:45:45.181Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 243ms - Rows affected: 33 - RequestID: in199y1xuag +2025-06-18T14:45:45.281Z [DEBUG] auth-service - Operation: order_created - Processing time: 892ms - RequestID: cz4g5qba07e +2025-06-18T14:45:45.381Z [TRACE] inventory-service - GET /api/v1/orders - Status: 200 - Response time: 1983ms - IP: 192.168.97.87 - User: user_1093 - RequestID: g3l57cicqzk +2025-06-18T14:45:45.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1091 - IP: 192.168.113.218 - RequestID: kph5fme6gd +2025-06-18T14:45:45.581Z [INFO] inventory-service - Auth event: password_change - User: user_1068 - IP: 192.168.147.171 - RequestID: 6dgxkkgqsn +2025-06-18T14:45:45.681Z [TRACE] order-service - PUT /api/v1/users - Status: 503 - Response time: 1545ms - IP: 192.168.174.114 - User: user_1016 - RequestID: um1g0xzz5n +2025-06-18T14:45:45.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 513ms - RequestID: crr18joq7gm +2025-06-18T14:45:45.881Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 305ms - RequestID: 2v3pjy9mfnf +2025-06-18T14:45:45.981Z [INFO] payment-service - Auth event: login_failed - User: user_1075 - IP: 192.168.44.5 - RequestID: 3q5jz7s362u +2025-06-18T14:45:46.081Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 400 - Response time: 931ms - IP: 192.168.32.38 - User: user_1091 - RequestID: p2qh1w4qb4a +2025-06-18T14:45:46.181Z [INFO] payment-service - GET /api/v1/payments - Status: 500 - Response time: 371ms - IP: 192.168.53.133 - User: user_1010 - RequestID: 6hh9j8wnoyo +2025-06-18T14:45:46.281Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1633ms - IP: 192.168.144.38 - User: user_1087 - RequestID: r06u2b1zj3 +2025-06-18T14:45:46.381Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 13ms - Rows affected: 74 - RequestID: l9kkee5tfni +2025-06-18T14:45:46.481Z [INFO] notification-service - PUT /api/v1/orders - Status: 401 - Response time: 309ms - IP: 192.168.247.134 - User: user_1075 - RequestID: 09lofjqtcdn +2025-06-18T14:45:46.581Z [INFO] inventory-service - Operation: cache_miss - Processing time: 652ms - RequestID: zxwxlihzccl +2025-06-18T14:45:46.681Z [TRACE] order-service - Auth event: login_success - User: user_1063 - IP: 192.168.81.206 - RequestID: zg6258o4ugm +2025-06-18T14:45:46.781Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 503 - Response time: 1798ms - IP: 192.168.144.38 - User: user_1081 - RequestID: 271l0061kws +2025-06-18T14:45:46.881Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 488ms - Rows affected: 81 - RequestID: rnjjssx2xe +2025-06-18T14:45:46.981Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 215ms - RequestID: gdiuuihbbdo +2025-06-18T14:45:47.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.10.184 - RequestID: 7ape9e93tu5 +2025-06-18T14:45:47.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 676ms - RequestID: pbixmlftzxs +2025-06-18T14:45:47.281Z [INFO] notification-service - Auth event: logout - User: user_1017 - IP: 192.168.68.128 - RequestID: wsxv882ww8 +2025-06-18T14:45:47.381Z [TRACE] user-service - Operation: notification_queued - Processing time: 861ms - RequestID: ilx62lihxg +2025-06-18T14:45:47.481Z [INFO] user-service - PATCH /api/v1/payments - Status: 500 - Response time: 298ms - IP: 192.168.227.233 - User: user_1056 - RequestID: hhikzw0xm5e +2025-06-18T14:45:47.581Z [INFO] auth-service - Auth event: logout - User: user_1008 - IP: 192.168.14.77 - RequestID: 6elp4cczaql +2025-06-18T14:45:47.681Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 848ms - RequestID: fl05usnbjan +2025-06-18T14:45:47.781Z [INFO] order-service - PATCH /api/v1/orders - Status: 401 - Response time: 795ms - IP: 192.168.242.165 - User: user_1076 - RequestID: amfrm2shwm +2025-06-18T14:45:47.881Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 400 - Response time: 54ms - IP: 192.168.144.38 - User: user_1064 - RequestID: qszgmew3bhg +2025-06-18T14:45:47.981Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 500 - Response time: 579ms - IP: 192.168.113.218 - User: user_1000 - RequestID: nsw65g5m0sa +2025-06-18T14:45:48.081Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 37ms - Rows affected: 66 - RequestID: f4m2hb6am3j +2025-06-18T14:45:48.181Z [INFO] auth-service - DELETE /api/v1/orders - Status: 401 - Response time: 1410ms - IP: 192.168.113.218 - User: user_1019 - RequestID: rnu607oazbs +2025-06-18T14:45:48.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 628ms - RequestID: 21v27nzgqgz +2025-06-18T14:45:48.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 119ms - RequestID: lzlywii7tcm +2025-06-18T14:45:48.481Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1157ms - IP: 192.168.194.41 - User: user_1068 - RequestID: gpyacnkrba4 +2025-06-18T14:45:48.581Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 399ms - IP: 192.168.79.141 - User: user_1094 - RequestID: d2lpy4nt4m +2025-06-18T14:45:48.681Z [TRACE] order-service - Operation: cache_miss - Processing time: 248ms - RequestID: r8c0b7zvozj +2025-06-18T14:45:48.781Z [DEBUG] payment-service - Database INSERT on products - Execution time: 237ms - Rows affected: 88 - RequestID: 1jdhqecpeeg +2025-06-18T14:45:48.881Z [TRACE] auth-service - Database INSERT on payments - Execution time: 334ms - Rows affected: 19 - RequestID: u0zpy51b7fc +2025-06-18T14:45:48.981Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 94ms - Rows affected: 4 - RequestID: stvjk3rskn +2025-06-18T14:45:49.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 310ms - RequestID: arqnjna4adw +2025-06-18T14:45:49.181Z [TRACE] payment-service - Operation: cache_miss - Processing time: 275ms - RequestID: tynhd8tekn8 +2025-06-18T14:45:49.281Z [INFO] order-service - Database UPDATE on users - Execution time: 163ms - Rows affected: 64 - RequestID: kfeaec10ssr +2025-06-18T14:45:49.381Z [TRACE] inventory-service - Operation: order_created - Processing time: 1017ms - RequestID: swy2bkut4o +2025-06-18T14:45:49.481Z [TRACE] user-service - Operation: notification_queued - Processing time: 376ms - RequestID: fzql4oxa1bq +2025-06-18T14:45:49.581Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 344ms - RequestID: 8zjzbbi06ze +2025-06-18T14:45:49.681Z [DEBUG] user-service - PATCH /api/v1/users - Status: 403 - Response time: 1877ms - IP: 192.168.235.117 - User: user_1064 - RequestID: v3kpijrlmno +2025-06-18T14:45:49.781Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 352ms - Rows affected: 69 - RequestID: 547n8phiq2f +2025-06-18T14:45:49.881Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 340ms - Rows affected: 30 - RequestID: hc2yqm7evj +2025-06-18T14:45:49.981Z [DEBUG] notification-service - Database SELECT on users - Execution time: 232ms - Rows affected: 76 - RequestID: uyi1fsp5gp +2025-06-18T14:45:50.081Z [INFO] user-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.33.76 - RequestID: b31qj6va47 +2025-06-18T14:45:50.181Z [DEBUG] inventory-service - Auth event: login_success - User: user_1013 - IP: 192.168.11.60 - RequestID: vi9sd16uj4o +2025-06-18T14:45:50.281Z [TRACE] user-service - PUT /api/v1/users - Status: 404 - Response time: 1564ms - IP: 192.168.68.158 - User: user_1042 - RequestID: jujbgmjyrw +2025-06-18T14:45:50.381Z [TRACE] order-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.194.41 - RequestID: lfqp24sh2g +2025-06-18T14:45:50.481Z [TRACE] order-service - GET /api/v1/orders - Status: 201 - Response time: 16ms - IP: 192.168.229.123 - User: user_1002 - RequestID: i091kcqf1k +2025-06-18T14:45:50.581Z [INFO] payment-service - Operation: webhook_sent - Processing time: 924ms - RequestID: v7ha02b9pl +2025-06-18T14:45:50.681Z [DEBUG] order-service - Auth event: logout - User: user_1091 - IP: 192.168.31.117 - RequestID: 6jm5klp7zz6 +2025-06-18T14:45:50.781Z [TRACE] notification-service - Auth event: password_change - User: user_1001 - IP: 192.168.240.169 - RequestID: 6mmzitzaq29 +2025-06-18T14:45:50.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 575ms - RequestID: qa7d2ro0l1c +2025-06-18T14:45:50.981Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 200 - Response time: 899ms - IP: 192.168.104.37 - User: user_1094 - RequestID: a9wb06yyf09 +2025-06-18T14:45:51.081Z [INFO] user-service - Operation: webhook_sent - Processing time: 951ms - RequestID: 2gdt7ejz7ta +2025-06-18T14:45:51.181Z [TRACE] auth-service - GET /api/v1/inventory - Status: 401 - Response time: 1928ms - IP: 192.168.187.199 - User: user_1040 - RequestID: 3r5jcdxsimr +2025-06-18T14:45:51.281Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 299ms - Rows affected: 0 - RequestID: s9uvwerpxb8 +2025-06-18T14:45:51.381Z [TRACE] user-service - Database DELETE on products - Execution time: 191ms - Rows affected: 50 - RequestID: 1z4ek5bh549 +2025-06-18T14:45:51.481Z [INFO] order-service - Operation: cache_miss - Processing time: 588ms - RequestID: molri9pi2b +2025-06-18T14:45:51.581Z [DEBUG] order-service - Auth event: login_success - User: user_1052 - IP: 192.168.235.117 - RequestID: d1v7wxdui0p +2025-06-18T14:45:51.681Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 434ms - RequestID: dl423ylclrc +2025-06-18T14:45:51.781Z [TRACE] order-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.100.240 - RequestID: iou82j6sdg +2025-06-18T14:45:51.881Z [INFO] payment-service - GET /api/v1/inventory - Status: 201 - Response time: 176ms - IP: 192.168.13.72 - User: user_1017 - RequestID: k3dpi2mv6n +2025-06-18T14:45:51.981Z [INFO] auth-service - Database INSERT on sessions - Execution time: 180ms - Rows affected: 65 - RequestID: vgp9virawz +2025-06-18T14:45:52.081Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 502 - Response time: 323ms - IP: 192.168.14.77 - User: user_1044 - RequestID: tv9okcwedt9 +2025-06-18T14:45:52.181Z [TRACE] auth-service - Operation: email_sent - Processing time: 360ms - RequestID: sa8nn12djp +2025-06-18T14:45:52.281Z [INFO] notification-service - Database INSERT on products - Execution time: 78ms - Rows affected: 38 - RequestID: buztnx8ny36 +2025-06-18T14:45:52.381Z [INFO] inventory-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.232.72 - RequestID: ryj1jeydd9 +2025-06-18T14:45:52.481Z [INFO] order-service - Database SELECT on orders - Execution time: 305ms - Rows affected: 22 - RequestID: zwknhcf0tj +2025-06-18T14:45:52.581Z [TRACE] order-service - DELETE /api/v1/payments - Status: 503 - Response time: 309ms - IP: 192.168.33.76 - User: user_1003 - RequestID: anxuwiga079 +2025-06-18T14:45:52.681Z [DEBUG] notification-service - Auth event: login_success - User: user_1063 - IP: 192.168.167.32 - RequestID: hqyz7b1wyw8 +2025-06-18T14:45:52.781Z [TRACE] user-service - PUT /api/v1/users - Status: 503 - Response time: 306ms - IP: 192.168.68.158 - User: user_1098 - RequestID: yolgre8flo +2025-06-18T14:45:52.881Z [TRACE] order-service - Database DELETE on users - Execution time: 62ms - Rows affected: 72 - RequestID: rfhwziwuuqr +2025-06-18T14:45:52.981Z [INFO] auth-service - Database SELECT on orders - Execution time: 283ms - Rows affected: 49 - RequestID: cnke7hyqry6 +2025-06-18T14:45:53.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1061 - IP: 192.168.158.144 - RequestID: fws2hsjj9io +2025-06-18T14:45:53.181Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 108ms - Rows affected: 84 - RequestID: gj42g5he0cv +2025-06-18T14:45:53.281Z [DEBUG] order-service - Auth event: login_failed - User: user_1089 - IP: 192.168.211.72 - RequestID: rd05nheyt9l +2025-06-18T14:45:53.381Z [TRACE] order-service - Database UPDATE on orders - Execution time: 154ms - Rows affected: 78 - RequestID: x33qdsk33gm +2025-06-18T14:45:53.481Z [INFO] notification-service - PUT /api/v1/users - Status: 404 - Response time: 1685ms - IP: 192.168.247.134 - User: user_1000 - RequestID: 79rd0b5nlav +2025-06-18T14:45:53.581Z [TRACE] auth-service - Auth event: login_success - User: user_1090 - IP: 192.168.242.165 - RequestID: uniz28m8o1 +2025-06-18T14:45:53.681Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 431ms - Rows affected: 51 - RequestID: tokokfk45q +2025-06-18T14:45:53.781Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1860ms - IP: 192.168.79.116 - User: user_1086 - RequestID: 5bajjw7xuvw +2025-06-18T14:45:53.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.133.7 - RequestID: 8377yiniyyx +2025-06-18T14:45:53.981Z [INFO] inventory-service - Auth event: password_change - User: user_1026 - IP: 192.168.14.77 - RequestID: nnz0kgd1a5b +2025-06-18T14:45:54.081Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 155ms - RequestID: j6bcnq5xq4i +2025-06-18T14:45:54.181Z [INFO] order-service - PATCH /api/v1/payments - Status: 500 - Response time: 1763ms - IP: 192.168.187.199 - User: user_1045 - RequestID: 74g8er153wb +2025-06-18T14:45:54.281Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 384ms - Rows affected: 8 - RequestID: aafdsul31gh +2025-06-18T14:45:54.381Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 793ms - RequestID: s9k9pkurct +2025-06-18T14:45:54.481Z [INFO] user-service - DELETE /api/v1/orders - Status: 502 - Response time: 1689ms - IP: 192.168.104.37 - User: user_1057 - RequestID: 9mm4autfdxk +2025-06-18T14:45:54.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.170.215 - RequestID: lka39olfmm +2025-06-18T14:45:54.681Z [TRACE] auth-service - Operation: cache_miss - Processing time: 817ms - RequestID: z3g1fjmct9f +2025-06-18T14:45:54.781Z [TRACE] payment-service - Operation: email_sent - Processing time: 62ms - RequestID: sc2r4xk19gg +2025-06-18T14:45:54.881Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 328ms - Rows affected: 69 - RequestID: f968myph9zg +2025-06-18T14:45:54.981Z [TRACE] payment-service - POST /api/v1/payments - Status: 503 - Response time: 1569ms - IP: 192.168.14.77 - User: user_1096 - RequestID: apmpgkw225 +2025-06-18T14:45:55.081Z [INFO] notification-service - Database SELECT on users - Execution time: 168ms - Rows affected: 9 - RequestID: i6mrr9m65l +2025-06-18T14:45:55.181Z [INFO] user-service - DELETE /api/v1/payments - Status: 401 - Response time: 661ms - IP: 192.168.229.123 - User: user_1099 - RequestID: n4p236j5bwt +2025-06-18T14:45:55.281Z [INFO] user-service - Operation: order_created - Processing time: 990ms - RequestID: 91th4m575wc +2025-06-18T14:45:55.381Z [INFO] payment-service - Database SELECT on sessions - Execution time: 331ms - Rows affected: 14 - RequestID: 575xv1hdv6n +2025-06-18T14:45:55.481Z [TRACE] payment-service - PUT /api/v1/users - Status: 404 - Response time: 780ms - IP: 192.168.33.76 - User: user_1045 - RequestID: 4rh4sstgjsr +2025-06-18T14:45:55.581Z [INFO] order-service - POST /api/v1/inventory - Status: 404 - Response time: 255ms - IP: 192.168.158.144 - User: user_1019 - RequestID: fjrv0zbwcmd +2025-06-18T14:45:55.681Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 476ms - Rows affected: 44 - RequestID: hkrety9w3u +2025-06-18T14:45:55.781Z [INFO] user-service - Database UPDATE on sessions - Execution time: 178ms - Rows affected: 52 - RequestID: nbww1yg5g4k +2025-06-18T14:45:55.881Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 311ms - Rows affected: 43 - RequestID: ims4vvd0ese +2025-06-18T14:45:55.981Z [INFO] order-service - Database SELECT on products - Execution time: 460ms - Rows affected: 15 - RequestID: 9tmkyfvt5sw +2025-06-18T14:45:56.081Z [INFO] order-service - Database SELECT on orders - Execution time: 499ms - Rows affected: 43 - RequestID: 9ylqyd2goyf +2025-06-18T14:45:56.181Z [TRACE] payment-service - Database INSERT on payments - Execution time: 488ms - Rows affected: 45 - RequestID: 8jwusffcsla +2025-06-18T14:45:56.281Z [DEBUG] auth-service - Auth event: login_failed - User: user_1097 - IP: 192.168.174.114 - RequestID: do6lnfmlhm +2025-06-18T14:45:56.381Z [TRACE] payment-service - Operation: payment_processed - Processing time: 724ms - RequestID: wry90qfq97q +2025-06-18T14:45:56.481Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 201 - Response time: 420ms - IP: 192.168.32.38 - User: user_1080 - RequestID: rql671oqfjm +2025-06-18T14:45:56.581Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 241ms - Rows affected: 65 - RequestID: yixriy7lc4 +2025-06-18T14:45:56.681Z [TRACE] payment-service - PUT /api/v1/orders - Status: 400 - Response time: 1432ms - IP: 192.168.31.117 - User: user_1016 - RequestID: 86bu81an7rp +2025-06-18T14:45:56.781Z [TRACE] user-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.46.63 - RequestID: iger50d8dtr +2025-06-18T14:45:56.881Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 607ms - RequestID: 8s8vbkfb0as +2025-06-18T14:45:56.981Z [TRACE] user-service - Auth event: logout - User: user_1015 - IP: 192.168.113.218 - RequestID: j8jfwq0jj2o +2025-06-18T14:45:57.081Z [TRACE] user-service - Operation: order_created - Processing time: 658ms - RequestID: p71xk35q2xo +2025-06-18T14:45:57.181Z [TRACE] user-service - Auth event: password_change - User: user_1069 - IP: 192.168.211.72 - RequestID: sshp5owjgcp +2025-06-18T14:45:57.281Z [INFO] inventory-service - Database INSERT on payments - Execution time: 245ms - Rows affected: 87 - RequestID: 0hhfy00maq8g +2025-06-18T14:45:57.381Z [TRACE] payment-service - Auth event: logout - User: user_1003 - IP: 192.168.144.38 - RequestID: lxwdnn7t21i +2025-06-18T14:45:57.481Z [TRACE] user-service - Operation: cache_hit - Processing time: 590ms - RequestID: zxcz15xj9ch +2025-06-18T14:45:57.581Z [INFO] notification-service - Database SELECT on users - Execution time: 193ms - Rows affected: 97 - RequestID: 8veg6jp1xvs +2025-06-18T14:45:57.681Z [DEBUG] order-service - Database SELECT on users - Execution time: 369ms - Rows affected: 32 - RequestID: y2w2enav3o +2025-06-18T14:45:57.781Z [DEBUG] order-service - Database UPDATE on users - Execution time: 473ms - Rows affected: 26 - RequestID: c9guzzfmpgm +2025-06-18T14:45:57.881Z [INFO] auth-service - DELETE /api/v1/payments - Status: 404 - Response time: 929ms - IP: 192.168.141.100 - User: user_1031 - RequestID: z8c7jee40rp +2025-06-18T14:45:57.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 822ms - RequestID: uinto07wu6o +2025-06-18T14:45:58.081Z [DEBUG] notification-service - Database SELECT on products - Execution time: 193ms - Rows affected: 28 - RequestID: frf4f2utij7 +2025-06-18T14:45:58.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.46.63 - RequestID: zmbagnvik7h +2025-06-18T14:45:58.281Z [TRACE] auth-service - PATCH /api/v1/users - Status: 404 - Response time: 565ms - IP: 192.168.11.60 - User: user_1060 - RequestID: 3g54e5vfcgi +2025-06-18T14:45:58.381Z [INFO] notification-service - Operation: order_created - Processing time: 845ms - RequestID: l102sdk8s7a +2025-06-18T14:45:58.481Z [TRACE] auth-service - Database DELETE on products - Execution time: 234ms - Rows affected: 79 - RequestID: 7vna6f627na +2025-06-18T14:45:58.581Z [INFO] user-service - Database SELECT on orders - Execution time: 446ms - Rows affected: 88 - RequestID: 870720sz2xt +2025-06-18T14:45:58.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 816ms - RequestID: pmqzeg119q +2025-06-18T14:45:58.781Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 78ms - Rows affected: 77 - RequestID: gh3bp53jnrq +2025-06-18T14:45:58.881Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 400 - Response time: 125ms - IP: 192.168.53.133 - User: user_1079 - RequestID: 37jbobvg44m +2025-06-18T14:45:58.981Z [INFO] auth-service - Database SELECT on sessions - Execution time: 15ms - Rows affected: 14 - RequestID: 8uayyu0wsfr +2025-06-18T14:45:59.081Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 1027ms - RequestID: p9aajf6tcqj +2025-06-18T14:45:59.181Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 500 - Response time: 305ms - IP: 192.168.64.33 - User: user_1012 - RequestID: 6q4fw6dr3h6 +2025-06-18T14:45:59.281Z [INFO] inventory-service - Auth event: login_success - User: user_1067 - IP: 192.168.36.218 - RequestID: h5harjqp4mp +2025-06-18T14:45:59.381Z [INFO] payment-service - PATCH /api/v1/payments - Status: 200 - Response time: 1498ms - IP: 192.168.147.171 - User: user_1095 - RequestID: piw3xvlfwcr +2025-06-18T14:45:59.481Z [INFO] order-service - GET /api/v1/auth/login - Status: 403 - Response time: 720ms - IP: 192.168.141.100 - User: user_1078 - RequestID: 1aclnxhkmdq +2025-06-18T14:45:59.581Z [INFO] inventory-service - Database DELETE on products - Execution time: 259ms - Rows affected: 28 - RequestID: sto78bdavo +2025-06-18T14:45:59.681Z [DEBUG] notification-service - Auth event: password_change - User: user_1085 - IP: 192.168.68.128 - RequestID: zs0vfdsg7qs +2025-06-18T14:45:59.781Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.104.37 - RequestID: o1y4bcuppfk +2025-06-18T14:45:59.881Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 403 - Response time: 1475ms - IP: 192.168.30.79 - User: user_1033 - RequestID: zt180kkwpj +2025-06-18T14:45:59.981Z [INFO] order-service - Database DELETE on products - Execution time: 292ms - Rows affected: 61 - RequestID: uq3w2lvkuak +2025-06-18T14:46:00.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.32.38 - RequestID: xjsqtm3gwhr +2025-06-18T14:46:00.181Z [TRACE] auth-service - Auth event: logout - User: user_1029 - IP: 192.168.85.229 - RequestID: 9201941rdtp +2025-06-18T14:46:00.281Z [TRACE] payment-service - Auth event: login_failed - User: user_1096 - IP: 192.168.247.134 - RequestID: 5rw3v8rbd3p +2025-06-18T14:46:00.381Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 1030ms - RequestID: 2954sye3a9w +2025-06-18T14:46:00.481Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 1012ms - RequestID: ivgi89eqazn +2025-06-18T14:46:00.581Z [TRACE] order-service - Auth event: logout - User: user_1043 - IP: 192.168.227.233 - RequestID: wns2l510hd +2025-06-18T14:46:00.681Z [DEBUG] order-service - Auth event: login_success - User: user_1082 - IP: 192.168.85.229 - RequestID: 9jkkc4asmbq +2025-06-18T14:46:00.781Z [TRACE] payment-service - Database INSERT on orders - Execution time: 254ms - Rows affected: 48 - RequestID: x2b6e12aip +2025-06-18T14:46:00.881Z [INFO] inventory-service - POST /api/v1/payments - Status: 400 - Response time: 918ms - IP: 192.168.1.152 - User: user_1028 - RequestID: kd10l3ugm1e +2025-06-18T14:46:00.981Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 199ms - RequestID: c73eh71nfdb +2025-06-18T14:46:01.081Z [TRACE] auth-service - Auth event: login_failed - User: user_1006 - IP: 192.168.227.77 - RequestID: 4no22qp4f8w +2025-06-18T14:46:01.181Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1801ms - IP: 192.168.194.41 - User: user_1047 - RequestID: fwc1vtpvh6m +2025-06-18T14:46:01.281Z [TRACE] payment-service - Operation: notification_queued - Processing time: 473ms - RequestID: wxdcl8w3yu +2025-06-18T14:46:01.381Z [TRACE] order-service - Auth event: password_change - User: user_1017 - IP: 192.168.36.218 - RequestID: gd6cmtyq7pg +2025-06-18T14:46:01.481Z [TRACE] payment-service - Operation: cache_miss - Processing time: 863ms - RequestID: 15lx4wnwdlg +2025-06-18T14:46:01.581Z [TRACE] auth-service - Operation: payment_processed - Processing time: 184ms - RequestID: cm2nuw2myjp +2025-06-18T14:46:01.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.133.7 - RequestID: sxoblb2gcc +2025-06-18T14:46:01.781Z [INFO] auth-service - Operation: inventory_updated - Processing time: 497ms - RequestID: ivckkpn46ph +2025-06-18T14:46:01.881Z [TRACE] order-service - Database INSERT on users - Execution time: 346ms - Rows affected: 82 - RequestID: 9xt4mnlkzos +2025-06-18T14:46:01.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 616ms - RequestID: aaddj2o0z6 +2025-06-18T14:46:02.081Z [INFO] user-service - Auth event: login_failed - User: user_1050 - IP: 192.168.133.7 - RequestID: fbyv1568pu8 +2025-06-18T14:46:02.181Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 404 - Response time: 477ms - IP: 192.168.235.117 - User: user_1017 - RequestID: 1xr7vnwyrt5 +2025-06-18T14:46:02.281Z [TRACE] auth-service - Database SELECT on users - Execution time: 499ms - Rows affected: 37 - RequestID: 8ottdwslh2k +2025-06-18T14:46:02.381Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 959ms - IP: 192.168.100.240 - User: user_1041 - RequestID: k8wx8tb9iv +2025-06-18T14:46:02.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 355ms - RequestID: s88bp0m814g +2025-06-18T14:46:02.581Z [TRACE] auth-service - Database INSERT on products - Execution time: 226ms - Rows affected: 29 - RequestID: l3pqcuqn1e8 +2025-06-18T14:46:02.681Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 1036ms - RequestID: 0n3dnmai7afk +2025-06-18T14:46:02.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1065 - IP: 192.168.189.103 - RequestID: 9l44i5mkkuo +2025-06-18T14:46:02.881Z [INFO] notification-service - Operation: email_sent - Processing time: 245ms - RequestID: jmxjtl0893 +2025-06-18T14:46:02.981Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1149ms - IP: 192.168.170.215 - User: user_1032 - RequestID: lqx79yufxjs +2025-06-18T14:46:03.081Z [INFO] notification-service - Operation: order_created - Processing time: 641ms - RequestID: o7m7xxdz54 +2025-06-18T14:46:03.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.158.144 - RequestID: 3a2k56c2mfu +2025-06-18T14:46:03.281Z [INFO] user-service - Operation: inventory_updated - Processing time: 281ms - RequestID: i7a0k5hexg +2025-06-18T14:46:03.381Z [INFO] user-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.104.37 - RequestID: 6eoo959xvtu +2025-06-18T14:46:03.481Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 500 - Response time: 1933ms - IP: 192.168.81.206 - User: user_1052 - RequestID: c7mvrptaowf +2025-06-18T14:46:03.581Z [INFO] notification-service - Database INSERT on payments - Execution time: 128ms - Rows affected: 95 - RequestID: glm8hoy7uj +2025-06-18T14:46:03.681Z [TRACE] payment-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.194.41 - RequestID: 3cmn2fb3clo +2025-06-18T14:46:03.781Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1307ms - IP: 192.168.13.72 - User: user_1028 - RequestID: 29xo2yek64o +2025-06-18T14:46:03.881Z [TRACE] order-service - Auth event: login_success - User: user_1070 - IP: 192.168.174.114 - RequestID: 38vzc9rg4u6 +2025-06-18T14:46:03.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.242.165 - RequestID: uvq60puh8c +2025-06-18T14:46:04.081Z [TRACE] auth-service - Operation: order_created - Processing time: 953ms - RequestID: c7qvi15y8bs +2025-06-18T14:46:04.181Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 389ms - Rows affected: 47 - RequestID: yg1ke5s0zyc +2025-06-18T14:46:04.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.79.116 - RequestID: sdq0w8eq6hd +2025-06-18T14:46:04.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.174.114 - RequestID: ijbvrg9voc7 +2025-06-18T14:46:04.481Z [TRACE] inventory-service - Operation: order_created - Processing time: 236ms - RequestID: zkcpiuwa27h +2025-06-18T14:46:04.581Z [INFO] auth-service - GET /api/v1/orders - Status: 404 - Response time: 1426ms - IP: 192.168.10.184 - User: user_1012 - RequestID: xaxqtynxec +2025-06-18T14:46:04.681Z [DEBUG] user-service - Auth event: password_change - User: user_1081 - IP: 192.168.28.146 - RequestID: 1j4ghzjdhi5 +2025-06-18T14:46:04.781Z [TRACE] order-service - Database DELETE on products - Execution time: 361ms - Rows affected: 43 - RequestID: 337rgj450xi +2025-06-18T14:46:04.881Z [INFO] auth-service - Database DELETE on users - Execution time: 433ms - Rows affected: 96 - RequestID: f69sc4jfnf6 +2025-06-18T14:46:04.981Z [TRACE] inventory-service - POST /api/v1/payments - Status: 401 - Response time: 1414ms - IP: 192.168.187.199 - User: user_1026 - RequestID: brqsheax4yo +2025-06-18T14:46:05.081Z [DEBUG] notification-service - Operation: email_sent - Processing time: 855ms - RequestID: y4d3vfueeu +2025-06-18T14:46:05.181Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 470ms - Rows affected: 50 - RequestID: 1nbvo91vd1g +2025-06-18T14:46:05.281Z [TRACE] order-service - Operation: payment_processed - Processing time: 133ms - RequestID: b1ayftqh73a +2025-06-18T14:46:05.381Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 56ms - RequestID: tqfu5tandx +2025-06-18T14:46:05.481Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 152ms - Rows affected: 0 - RequestID: j4219clxej +2025-06-18T14:46:05.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 308ms - RequestID: tcr05zcnpon +2025-06-18T14:46:05.681Z [INFO] payment-service - Auth event: password_change - User: user_1064 - IP: 192.168.138.123 - RequestID: dws7fy3gvg +2025-06-18T14:46:05.781Z [TRACE] order-service - Operation: inventory_updated - Processing time: 577ms - RequestID: hg4m77qicfi +2025-06-18T14:46:05.881Z [INFO] payment-service - Operation: email_sent - Processing time: 465ms - RequestID: cdopib3ce6s +2025-06-18T14:46:05.981Z [TRACE] order-service - Operation: order_created - Processing time: 172ms - RequestID: lz3uygh3nh +2025-06-18T14:46:06.081Z [TRACE] auth-service - Auth event: password_change - User: user_1017 - IP: 192.168.242.165 - RequestID: y5my07q4cjn +2025-06-18T14:46:06.181Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 323ms - Rows affected: 88 - RequestID: asy5emxb696 +2025-06-18T14:46:06.281Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 430ms - RequestID: hc4ly0fle7c +2025-06-18T14:46:06.381Z [INFO] user-service - Auth event: logout - User: user_1062 - IP: 192.168.242.165 - RequestID: xjhxzt3eg18 +2025-06-18T14:46:06.481Z [INFO] order-service - PUT /api/v1/auth/login - Status: 403 - Response time: 234ms - IP: 192.168.227.233 - User: user_1072 - RequestID: zohy9zgx5ah +2025-06-18T14:46:06.581Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1739ms - IP: 192.168.79.116 - User: user_1073 - RequestID: zb0pkrtgijc +2025-06-18T14:46:06.681Z [TRACE] payment-service - Database UPDATE on products - Execution time: 306ms - Rows affected: 9 - RequestID: uum2vrl22x +2025-06-18T14:46:06.781Z [INFO] order-service - Database INSERT on users - Execution time: 121ms - Rows affected: 76 - RequestID: 0n5rz3dstpra +2025-06-18T14:46:06.881Z [TRACE] order-service - Operation: order_created - Processing time: 871ms - RequestID: qxkc7xko7v9 +2025-06-18T14:46:06.981Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 931ms - RequestID: b1bizdx3m0o +2025-06-18T14:46:07.081Z [INFO] order-service - Database SELECT on products - Execution time: 174ms - Rows affected: 28 - RequestID: 9g8lzajl93r +2025-06-18T14:46:07.181Z [DEBUG] user-service - Database SELECT on payments - Execution time: 290ms - Rows affected: 55 - RequestID: pjbf1kv03bh +2025-06-18T14:46:07.281Z [DEBUG] user-service - Operation: cache_hit - Processing time: 492ms - RequestID: ipwp5fyewj +2025-06-18T14:46:07.381Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.14.77 - RequestID: b15h4k13cha +2025-06-18T14:46:07.481Z [INFO] user-service - Database INSERT on orders - Execution time: 375ms - Rows affected: 85 - RequestID: gt8cqbzap9r +2025-06-18T14:46:07.581Z [TRACE] payment-service - Auth event: logout - User: user_1082 - IP: 192.168.247.134 - RequestID: hfxqo6nzva +2025-06-18T14:46:07.681Z [DEBUG] order-service - Auth event: login_success - User: user_1094 - IP: 192.168.14.77 - RequestID: bwt0iw3f8il +2025-06-18T14:46:07.781Z [DEBUG] notification-service - Database SELECT on products - Execution time: 493ms - Rows affected: 4 - RequestID: xflbgzf34o +2025-06-18T14:46:07.881Z [TRACE] order-service - PUT /api/v1/inventory - Status: 201 - Response time: 330ms - IP: 192.168.194.41 - User: user_1063 - RequestID: ykadwzejjl +2025-06-18T14:46:07.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1011 - IP: 192.168.31.117 - RequestID: h5f19zfhdk +2025-06-18T14:46:08.081Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 500 - Response time: 802ms - IP: 192.168.28.146 - User: user_1001 - RequestID: h9zvjilfef7 +2025-06-18T14:46:08.181Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1880ms - IP: 192.168.10.184 - User: user_1047 - RequestID: zfa9gmpj63 +2025-06-18T14:46:08.281Z [INFO] notification-service - GET /api/v1/auth/login - Status: 200 - Response time: 105ms - IP: 192.168.10.184 - User: user_1004 - RequestID: v312xhevg7 +2025-06-18T14:46:08.381Z [DEBUG] auth-service - Operation: order_created - Processing time: 747ms - RequestID: ool78bdqhz +2025-06-18T14:46:08.481Z [INFO] payment-service - Operation: inventory_updated - Processing time: 1034ms - RequestID: 2nctnfg80jm +2025-06-18T14:46:08.581Z [TRACE] inventory-service - Auth event: logout - User: user_1099 - IP: 192.168.36.218 - RequestID: 9skp7qlcnp5 +2025-06-18T14:46:08.681Z [INFO] user-service - Database SELECT on payments - Execution time: 12ms - Rows affected: 24 - RequestID: uyqjeueyg68 +2025-06-18T14:46:08.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1061 - IP: 192.168.68.128 - RequestID: s6jwq4x5iid +2025-06-18T14:46:08.881Z [INFO] inventory-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.46.63 - RequestID: 2lvvc667bga +2025-06-18T14:46:08.981Z [TRACE] payment-service - Database UPDATE on products - Execution time: 64ms - Rows affected: 89 - RequestID: ll2od5czyqg +2025-06-18T14:46:09.081Z [TRACE] order-service - Operation: payment_processed - Processing time: 169ms - RequestID: 2f0bnui1nwt +2025-06-18T14:46:09.181Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1413ms - IP: 192.168.167.32 - User: user_1041 - RequestID: lkvliop2hv +2025-06-18T14:46:09.281Z [TRACE] order-service - Auth event: login_failed - User: user_1004 - IP: 192.168.100.240 - RequestID: 4kr53yrgbrf +2025-06-18T14:46:09.381Z [INFO] payment-service - Operation: order_created - Processing time: 235ms - RequestID: h1vhbhvwnqi +2025-06-18T14:46:09.481Z [INFO] order-service - Database INSERT on users - Execution time: 420ms - Rows affected: 50 - RequestID: 65lma148s15 +2025-06-18T14:46:09.581Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 401ms - RequestID: rvh793sqhv +2025-06-18T14:46:09.681Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 127ms - Rows affected: 74 - RequestID: 747fx4g8o9c +2025-06-18T14:46:09.781Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1935ms - IP: 192.168.97.87 - User: user_1085 - RequestID: 3szyhovtbal +2025-06-18T14:46:09.881Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 339ms - Rows affected: 81 - RequestID: bivgk5r15s +2025-06-18T14:46:09.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.64.33 - RequestID: 0znqvvfdtg7 +2025-06-18T14:46:10.081Z [TRACE] order-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.68.158 - RequestID: uebd6no3ipd +2025-06-18T14:46:10.181Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 104ms - Rows affected: 57 - RequestID: xy59vtvdzu +2025-06-18T14:46:10.281Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 503 - Response time: 699ms - IP: 192.168.46.63 - User: user_1062 - RequestID: dnyld4no8hn +2025-06-18T14:46:10.381Z [TRACE] auth-service - PATCH /api/v1/users - Status: 404 - Response time: 889ms - IP: 192.168.196.226 - User: user_1022 - RequestID: ks3t9z580u +2025-06-18T14:46:10.481Z [INFO] auth-service - Operation: inventory_updated - Processing time: 137ms - RequestID: cdw8fuafnx +2025-06-18T14:46:10.581Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 141ms - Rows affected: 52 - RequestID: z9b5yqmd4cq +2025-06-18T14:46:10.681Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 200 - Response time: 1057ms - IP: 192.168.240.169 - User: user_1046 - RequestID: 5ej0st63skv +2025-06-18T14:46:10.781Z [DEBUG] order-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.232.72 - RequestID: uyxmjp6hvm +2025-06-18T14:46:10.881Z [DEBUG] order-service - Operation: order_created - Processing time: 255ms - RequestID: wkfxroqkknr +2025-06-18T14:46:10.981Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 357ms - Rows affected: 37 - RequestID: qmucpy6y4xd +2025-06-18T14:46:11.081Z [TRACE] notification-service - Auth event: password_change - User: user_1026 - IP: 192.168.235.117 - RequestID: 6nhjo5ae28n +2025-06-18T14:46:11.181Z [TRACE] order-service - Database INSERT on sessions - Execution time: 301ms - Rows affected: 97 - RequestID: qbe2eh3isj +2025-06-18T14:46:11.281Z [INFO] payment-service - Database INSERT on sessions - Execution time: 5ms - Rows affected: 14 - RequestID: gi8zgpnnhqf +2025-06-18T14:46:11.381Z [TRACE] order-service - Database SELECT on orders - Execution time: 230ms - Rows affected: 36 - RequestID: 41kn287u7ys +2025-06-18T14:46:11.481Z [DEBUG] order-service - Auth event: login_failed - User: user_1037 - IP: 192.168.44.5 - RequestID: qasqol68w4 +2025-06-18T14:46:11.581Z [TRACE] notification-service - GET /api/v1/users - Status: 500 - Response time: 154ms - IP: 192.168.30.79 - User: user_1078 - RequestID: 18zx7phxb1a +2025-06-18T14:46:11.681Z [TRACE] user-service - Database UPDATE on payments - Execution time: 145ms - Rows affected: 79 - RequestID: 6zhsxqn9sc +2025-06-18T14:46:11.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.240.169 - RequestID: vre10c52ya +2025-06-18T14:46:11.881Z [DEBUG] order-service - Auth event: password_change - User: user_1002 - IP: 192.168.242.165 - RequestID: ksc9e45h5i9 +2025-06-18T14:46:11.981Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 1928ms - IP: 192.168.79.143 - User: user_1089 - RequestID: 1dkak65u1dc +2025-06-18T14:46:12.081Z [DEBUG] user-service - PATCH /api/v1/users - Status: 400 - Response time: 1933ms - IP: 192.168.14.77 - User: user_1092 - RequestID: puhkqgme5o +2025-06-18T14:46:12.181Z [DEBUG] auth-service - Auth event: login_failed - User: user_1000 - IP: 192.168.187.199 - RequestID: 87y9qgdemxh +2025-06-18T14:46:12.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 64ms - RequestID: xsqp7hjc88 +2025-06-18T14:46:12.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 727ms - RequestID: tar3dtoycp +2025-06-18T14:46:12.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.100.240 - RequestID: c5vk2deiopt +2025-06-18T14:46:12.581Z [TRACE] order-service - GET /api/v1/orders - Status: 400 - Response time: 299ms - IP: 192.168.68.128 - User: user_1072 - RequestID: q84zv40trz +2025-06-18T14:46:12.681Z [DEBUG] auth-service - Auth event: password_change - User: user_1061 - IP: 192.168.181.225 - RequestID: s3636troii +2025-06-18T14:46:12.781Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 71ms - Rows affected: 90 - RequestID: 164q44m5c2p +2025-06-18T14:46:12.881Z [INFO] payment-service - GET /api/v1/orders - Status: 404 - Response time: 1969ms - IP: 192.168.247.134 - User: user_1062 - RequestID: 5i1v6n4mkly +2025-06-18T14:46:12.981Z [INFO] user-service - Operation: order_created - Processing time: 995ms - RequestID: r7jtebvlari +2025-06-18T14:46:13.081Z [INFO] order-service - Database INSERT on sessions - Execution time: 316ms - Rows affected: 45 - RequestID: paxdfce1rsq +2025-06-18T14:46:13.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.79.141 - RequestID: hpovc60n5mw +2025-06-18T14:46:13.281Z [DEBUG] payment-service - Auth event: login_success - User: user_1074 - IP: 192.168.14.77 - RequestID: tc9hk0ywoih +2025-06-18T14:46:13.381Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1795ms - IP: 192.168.28.146 - User: user_1058 - RequestID: 1xivg2qmkwb +2025-06-18T14:46:13.481Z [DEBUG] user-service - Database SELECT on products - Execution time: 28ms - Rows affected: 29 - RequestID: wkuf0zys68c +2025-06-18T14:46:13.581Z [INFO] payment-service - Operation: order_created - Processing time: 832ms - RequestID: t9md3qv70le +2025-06-18T14:46:13.681Z [DEBUG] inventory-service - Auth event: password_change - User: user_1080 - IP: 192.168.133.7 - RequestID: 0npow6yjfsv +2025-06-18T14:46:13.781Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 360ms - Rows affected: 27 - RequestID: emsqorjy109 +2025-06-18T14:46:13.881Z [DEBUG] auth-service - Auth event: login_failed - User: user_1025 - IP: 192.168.79.143 - RequestID: dbdmp0fcb1t +2025-06-18T14:46:13.981Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 115ms - Rows affected: 15 - RequestID: l5ho07pteq +2025-06-18T14:46:14.081Z [DEBUG] auth-service - Auth event: login_success - User: user_1060 - IP: 192.168.32.38 - RequestID: rz9p05fntii +2025-06-18T14:46:14.181Z [DEBUG] inventory-service - Auth event: login_success - User: user_1095 - IP: 192.168.81.206 - RequestID: aav97godh4g +2025-06-18T14:46:14.281Z [INFO] notification-service - Operation: webhook_sent - Processing time: 175ms - RequestID: atlf7h6ytbe +2025-06-18T14:46:14.381Z [INFO] auth-service - Database UPDATE on payments - Execution time: 317ms - Rows affected: 33 - RequestID: z9tcx075sj +2025-06-18T14:46:14.481Z [INFO] notification-service - Operation: order_created - Processing time: 943ms - RequestID: 2eq7rrzwdr9 +2025-06-18T14:46:14.581Z [TRACE] notification-service - GET /api/v1/users - Status: 200 - Response time: 1712ms - IP: 192.168.174.114 - User: user_1021 - RequestID: c7x4pc9nkft +2025-06-18T14:46:14.681Z [DEBUG] order-service - Database DELETE on payments - Execution time: 453ms - Rows affected: 85 - RequestID: wd2berxa1np +2025-06-18T14:46:14.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 391ms - RequestID: 6sj86vwqijj +2025-06-18T14:46:14.881Z [TRACE] notification-service - PUT /api/v1/payments - Status: 200 - Response time: 139ms - IP: 192.168.181.225 - User: user_1007 - RequestID: lck0r1adtf +2025-06-18T14:46:14.981Z [TRACE] user-service - Operation: order_created - Processing time: 479ms - RequestID: aoax9mngwlh +2025-06-18T14:46:15.081Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 669ms - RequestID: zbma137w9nq +2025-06-18T14:46:15.181Z [TRACE] payment-service - PATCH /api/v1/users - Status: 404 - Response time: 1567ms - IP: 192.168.79.141 - User: user_1062 - RequestID: k25w24c82zj +2025-06-18T14:46:15.281Z [INFO] order-service - Database SELECT on products - Execution time: 23ms - Rows affected: 7 - RequestID: bmra2hr5y86 +2025-06-18T14:46:15.381Z [TRACE] order-service - Operation: payment_processed - Processing time: 881ms - RequestID: 28i761hy9u3 +2025-06-18T14:46:15.481Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 298ms - Rows affected: 52 - RequestID: 3yaalskbddr +2025-06-18T14:46:15.581Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 403 - Response time: 578ms - IP: 192.168.247.134 - User: user_1007 - RequestID: r0hol9q9bdg +2025-06-18T14:46:15.681Z [INFO] auth-service - Database DELETE on payments - Execution time: 170ms - Rows affected: 55 - RequestID: hj7dpwy6xgb +2025-06-18T14:46:15.781Z [INFO] inventory-service - Auth event: password_change - User: user_1020 - IP: 192.168.232.72 - RequestID: 91dc57ujqw +2025-06-18T14:46:15.881Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 404 - Response time: 74ms - IP: 192.168.68.158 - User: user_1041 - RequestID: 6mfrjmjwble +2025-06-18T14:46:15.981Z [DEBUG] user-service - Operation: notification_queued - Processing time: 463ms - RequestID: lgv25dsjk3n +2025-06-18T14:46:16.081Z [INFO] order-service - DELETE /api/v1/orders - Status: 403 - Response time: 284ms - IP: 192.168.85.229 - User: user_1014 - RequestID: 60qw5sujcr5 +2025-06-18T14:46:16.181Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 269ms - Rows affected: 74 - RequestID: 70idc8g79v4 +2025-06-18T14:46:16.281Z [TRACE] notification-service - Operation: cache_hit - Processing time: 749ms - RequestID: eh2hwiyzv1w +2025-06-18T14:46:16.381Z [TRACE] auth-service - Database INSERT on orders - Execution time: 149ms - Rows affected: 48 - RequestID: tr7btb2m8zp +2025-06-18T14:46:16.481Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 478ms - Rows affected: 44 - RequestID: k7tjcjgl1g8 +2025-06-18T14:46:16.581Z [TRACE] notification-service - Auth event: logout - User: user_1047 - IP: 192.168.242.165 - RequestID: usv17tfnd8 +2025-06-18T14:46:16.681Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 200 - Response time: 1247ms - IP: 192.168.79.116 - User: user_1028 - RequestID: xim5s5yafva +2025-06-18T14:46:16.781Z [TRACE] user-service - Auth event: logout - User: user_1051 - IP: 192.168.174.114 - RequestID: i5y6y8gyylf +2025-06-18T14:46:16.881Z [INFO] notification-service - Database DELETE on payments - Execution time: 405ms - Rows affected: 23 - RequestID: 0ov540lzeh6b +2025-06-18T14:46:16.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.104.37 - RequestID: awf41kv4b9k +2025-06-18T14:46:17.081Z [DEBUG] order-service - GET /api/v1/orders - Status: 502 - Response time: 1712ms - IP: 192.168.31.117 - User: user_1029 - RequestID: yjaneit6n4g +2025-06-18T14:46:17.181Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 307ms - Rows affected: 0 - RequestID: 91w82fp1nhg +2025-06-18T14:46:17.281Z [INFO] payment-service - Auth event: login_failed - User: user_1075 - IP: 192.168.147.171 - RequestID: x25on9gq9fi +2025-06-18T14:46:17.381Z [TRACE] auth-service - Auth event: login_success - User: user_1008 - IP: 192.168.32.38 - RequestID: cod42gpjmp7 +2025-06-18T14:46:17.481Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 401 - Response time: 1802ms - IP: 192.168.68.158 - User: user_1097 - RequestID: 1706bvdzif4 +2025-06-18T14:46:17.581Z [TRACE] inventory-service - Auth event: login_failed - User: user_1010 - IP: 192.168.189.103 - RequestID: cousnf5h77r +2025-06-18T14:46:17.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1067 - IP: 192.168.227.233 - RequestID: u7h7vbw1k4g +2025-06-18T14:46:17.781Z [DEBUG] order-service - Operation: payment_processed - Processing time: 752ms - RequestID: ge08qcb82ip +2025-06-18T14:46:17.881Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 117ms - Rows affected: 91 - RequestID: sy8eoink5wc +2025-06-18T14:46:17.981Z [TRACE] order-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.144.38 - RequestID: lrzd5h36f3 +2025-06-18T14:46:18.081Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1491ms - IP: 192.168.196.226 - User: user_1027 - RequestID: n1z7yowo4j +2025-06-18T14:46:18.181Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 385ms - Rows affected: 30 - RequestID: t7knh8me60s +2025-06-18T14:46:18.281Z [TRACE] payment-service - Auth event: login_success - User: user_1022 - IP: 192.168.79.143 - RequestID: qyeww41kce +2025-06-18T14:46:18.381Z [TRACE] payment-service - Auth event: login_success - User: user_1034 - IP: 192.168.232.72 - RequestID: tlxi5prsync +2025-06-18T14:46:18.481Z [INFO] user-service - Database DELETE on orders - Execution time: 190ms - Rows affected: 42 - RequestID: fbxmzehzhq +2025-06-18T14:46:18.581Z [TRACE] order-service - PATCH /api/v1/orders - Status: 200 - Response time: 107ms - IP: 192.168.30.79 - User: user_1095 - RequestID: 84dm89q6zk +2025-06-18T14:46:18.681Z [DEBUG] auth-service - Database SELECT on users - Execution time: 197ms - Rows affected: 60 - RequestID: ec0noygqv4g +2025-06-18T14:46:18.781Z [INFO] notification-service - PUT /api/v1/inventory - Status: 503 - Response time: 975ms - IP: 192.168.100.240 - User: user_1035 - RequestID: 3e8i17wwc7x +2025-06-18T14:46:18.881Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 78ms - Rows affected: 26 - RequestID: 5mtbhrixado +2025-06-18T14:46:18.981Z [TRACE] user-service - Auth event: login_success - User: user_1001 - IP: 192.168.242.165 - RequestID: kuior6g1lk +2025-06-18T14:46:19.081Z [TRACE] auth-service - Operation: cache_miss - Processing time: 617ms - RequestID: wa5ffywqtz9 +2025-06-18T14:46:19.181Z [DEBUG] order-service - Database INSERT on products - Execution time: 265ms - Rows affected: 35 - RequestID: axkbxw85fri +2025-06-18T14:46:19.281Z [DEBUG] order-service - Operation: order_created - Processing time: 487ms - RequestID: rdqvqk2msdi +2025-06-18T14:46:19.381Z [TRACE] payment-service - Auth event: logout - User: user_1042 - IP: 192.168.11.60 - RequestID: lt5uqknsspj +2025-06-18T14:46:19.481Z [INFO] notification-service - PATCH /api/v1/users - Status: 502 - Response time: 886ms - IP: 192.168.11.60 - User: user_1022 - RequestID: j5516vrehcp +2025-06-18T14:46:19.581Z [DEBUG] inventory-service - Auth event: password_change - User: user_1070 - IP: 192.168.247.134 - RequestID: 10zqqh0wcme +2025-06-18T14:46:19.681Z [INFO] user-service - Database DELETE on payments - Execution time: 83ms - Rows affected: 56 - RequestID: rspnbaqyexr +2025-06-18T14:46:19.781Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1481ms - IP: 192.168.227.77 - User: user_1020 - RequestID: x9rqgiqw4k8 +2025-06-18T14:46:19.881Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1384ms - IP: 192.168.141.100 - User: user_1078 - RequestID: cccaulyb7hq +2025-06-18T14:46:19.981Z [TRACE] user-service - PUT /api/v1/users - Status: 500 - Response time: 250ms - IP: 192.168.211.72 - User: user_1028 - RequestID: cgzg8cvupra +2025-06-18T14:46:20.081Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 67ms - Rows affected: 60 - RequestID: 7e47ls11o6r +2025-06-18T14:46:20.181Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 490ms - Rows affected: 54 - RequestID: snayxnkxkd8 +2025-06-18T14:46:20.281Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 403 - Response time: 937ms - IP: 192.168.170.215 - User: user_1062 - RequestID: xlooyg4s3g +2025-06-18T14:46:20.381Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1781ms - IP: 192.168.235.117 - User: user_1017 - RequestID: o8x0axwinwq +2025-06-18T14:46:20.481Z [TRACE] payment-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.85.229 - RequestID: j1tlhyubgvp +2025-06-18T14:46:20.581Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 213ms - RequestID: im6v95b316 +2025-06-18T14:46:20.681Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 571ms - RequestID: nab7mfi66s +2025-06-18T14:46:20.781Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 30ms - Rows affected: 55 - RequestID: o5oqscgcp +2025-06-18T14:46:20.881Z [INFO] payment-service - Operation: email_sent - Processing time: 247ms - RequestID: lfhk96xbz9n +2025-06-18T14:46:20.981Z [INFO] order-service - Database UPDATE on payments - Execution time: 322ms - Rows affected: 46 - RequestID: 1vuihceh95v +2025-06-18T14:46:21.081Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 511ms - RequestID: mk9n80qvrs +2025-06-18T14:46:21.181Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 477ms - RequestID: ajf1xtspono +2025-06-18T14:46:21.281Z [INFO] auth-service - GET /api/v1/inventory - Status: 201 - Response time: 729ms - IP: 192.168.133.7 - User: user_1046 - RequestID: bx5reght0u +2025-06-18T14:46:21.381Z [TRACE] auth-service - Database INSERT on orders - Execution time: 406ms - Rows affected: 82 - RequestID: pwpt0fmmsj +2025-06-18T14:46:21.481Z [INFO] order-service - Database SELECT on payments - Execution time: 236ms - Rows affected: 62 - RequestID: eowgukrivjv +2025-06-18T14:46:21.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.181.225 - RequestID: 0ublhqujw9vi +2025-06-18T14:46:21.681Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 303ms - RequestID: y1sql77tynn +2025-06-18T14:46:21.781Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 259ms - RequestID: x7eeoizv8je +2025-06-18T14:46:21.881Z [INFO] order-service - Operation: inventory_updated - Processing time: 239ms - RequestID: ijw7zlsd2y +2025-06-18T14:46:21.981Z [TRACE] notification-service - GET /api/v1/payments - Status: 401 - Response time: 202ms - IP: 192.168.10.184 - User: user_1038 - RequestID: 8vwzwlwz5vq +2025-06-18T14:46:22.081Z [TRACE] auth-service - Database DELETE on orders - Execution time: 135ms - Rows affected: 47 - RequestID: 9txz2uwydcl +2025-06-18T14:46:22.181Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 490ms - Rows affected: 43 - RequestID: kn9l6rrk13 +2025-06-18T14:46:22.281Z [INFO] order-service - Auth event: login_failed - User: user_1064 - IP: 192.168.85.229 - RequestID: k2kj7layj6 +2025-06-18T14:46:22.381Z [TRACE] user-service - Auth event: logout - User: user_1029 - IP: 192.168.211.72 - RequestID: yumzqzwebz +2025-06-18T14:46:22.481Z [INFO] user-service - Operation: cache_miss - Processing time: 270ms - RequestID: ab3fw18uj2t +2025-06-18T14:46:22.581Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 397ms - IP: 192.168.170.215 - User: user_1000 - RequestID: 142l7xy6j6tl +2025-06-18T14:46:22.681Z [TRACE] payment-service - Operation: notification_queued - Processing time: 186ms - RequestID: vmahcljx4ab +2025-06-18T14:46:22.781Z [INFO] auth-service - Operation: inventory_updated - Processing time: 466ms - RequestID: lqszjznzia +2025-06-18T14:46:22.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 836ms - RequestID: tv98wjf6cs +2025-06-18T14:46:22.981Z [TRACE] user-service - Auth event: logout - User: user_1021 - IP: 192.168.196.226 - RequestID: u6tt43no27p +2025-06-18T14:46:23.081Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 626ms - RequestID: gdu76f61bh9 +2025-06-18T14:46:23.181Z [INFO] inventory-service - Auth event: logout - User: user_1046 - IP: 192.168.144.38 - RequestID: qyljtcipx3j +2025-06-18T14:46:23.281Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 400 - Response time: 1730ms - IP: 192.168.14.77 - User: user_1012 - RequestID: 2azhwsmxevp +2025-06-18T14:46:23.381Z [DEBUG] user-service - Database INSERT on users - Execution time: 472ms - Rows affected: 99 - RequestID: 23hhq6nq7ua +2025-06-18T14:46:23.481Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 1436ms - IP: 192.168.79.143 - User: user_1036 - RequestID: og74d7bexoj +2025-06-18T14:46:23.581Z [TRACE] order-service - Operation: notification_queued - Processing time: 412ms - RequestID: 0349hdvv7bet +2025-06-18T14:46:23.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.138.123 - RequestID: gut06m05rhw +2025-06-18T14:46:23.781Z [DEBUG] notification-service - Auth event: logout - User: user_1040 - IP: 192.168.194.41 - RequestID: 4jkce9kw405 +2025-06-18T14:46:23.881Z [TRACE] notification-service - PUT /api/v1/orders - Status: 403 - Response time: 975ms - IP: 192.168.46.63 - User: user_1061 - RequestID: ebxntf94h8f +2025-06-18T14:46:23.981Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 182ms - Rows affected: 75 - RequestID: yjuiyq7gp +2025-06-18T14:46:24.081Z [TRACE] notification-service - Auth event: password_change - User: user_1026 - IP: 192.168.104.37 - RequestID: 6hmhio1n1g +2025-06-18T14:46:24.181Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 488ms - RequestID: vcgu4citrbc +2025-06-18T14:46:24.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 902ms - RequestID: junu99rx23p +2025-06-18T14:46:24.381Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 943ms - RequestID: 1dg1ykf24h +2025-06-18T14:46:24.481Z [DEBUG] user-service - Database DELETE on users - Execution time: 299ms - Rows affected: 46 - RequestID: hv89359wqvl +2025-06-18T14:46:24.581Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 268ms - IP: 192.168.13.72 - User: user_1051 - RequestID: 5e9ylsn47ri +2025-06-18T14:46:24.681Z [INFO] auth-service - GET /api/v1/auth/login - Status: 201 - Response time: 1286ms - IP: 192.168.196.226 - User: user_1096 - RequestID: 3eenrpvhppg +2025-06-18T14:46:24.781Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1675ms - IP: 192.168.159.94 - User: user_1002 - RequestID: iulvp3eosnc +2025-06-18T14:46:24.881Z [INFO] notification-service - PUT /api/v1/orders - Status: 404 - Response time: 615ms - IP: 192.168.133.7 - User: user_1095 - RequestID: 5zm7d3alomr +2025-06-18T14:46:24.981Z [INFO] payment-service - Database SELECT on products - Execution time: 470ms - Rows affected: 10 - RequestID: 9yf2rdlgx26 +2025-06-18T14:46:25.081Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 404 - Response time: 855ms - IP: 192.168.85.229 - User: user_1057 - RequestID: 0l66djcvnvdb +2025-06-18T14:46:25.181Z [INFO] order-service - Operation: webhook_sent - Processing time: 231ms - RequestID: czer2bpws1o +2025-06-18T14:46:25.281Z [INFO] notification-service - Database UPDATE on orders - Execution time: 61ms - Rows affected: 85 - RequestID: 2nlmpksdjch +2025-06-18T14:46:25.381Z [INFO] order-service - Auth event: login_success - User: user_1042 - IP: 192.168.141.100 - RequestID: n6ty4570m3 +2025-06-18T14:46:25.481Z [INFO] auth-service - Auth event: password_change - User: user_1018 - IP: 192.168.194.41 - RequestID: f72cqajnycw +2025-06-18T14:46:25.581Z [INFO] payment-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.240.169 - RequestID: t2bk13ng0cs +2025-06-18T14:46:25.681Z [TRACE] user-service - Database SELECT on payments - Execution time: 176ms - Rows affected: 12 - RequestID: bpg2t1itg9j +2025-06-18T14:46:25.781Z [DEBUG] payment-service - Database DELETE on users - Execution time: 334ms - Rows affected: 82 - RequestID: mnaasuzu37s +2025-06-18T14:46:25.881Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 340ms - Rows affected: 99 - RequestID: 0r5m69jcyq6 +2025-06-18T14:46:25.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.79.116 - RequestID: 6owux24snq5 +2025-06-18T14:46:26.081Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1452ms - IP: 192.168.240.169 - User: user_1066 - RequestID: au4g8bhfks +2025-06-18T14:46:26.181Z [TRACE] user-service - Database UPDATE on products - Execution time: 101ms - Rows affected: 53 - RequestID: olv1kx2be1 +2025-06-18T14:46:26.281Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 107ms - Rows affected: 93 - RequestID: 9pnoz12p6sg +2025-06-18T14:46:26.381Z [DEBUG] order-service - Auth event: password_change - User: user_1074 - IP: 192.168.189.103 - RequestID: xintsuh8aw +2025-06-18T14:46:26.481Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 345ms - RequestID: rcdopn0qj1 +2025-06-18T14:46:26.581Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 340ms - Rows affected: 46 - RequestID: qhjsz2iqkb +2025-06-18T14:46:26.681Z [TRACE] user-service - Operation: payment_processed - Processing time: 641ms - RequestID: awducjq3yks +2025-06-18T14:46:26.781Z [TRACE] order-service - Auth event: login_failed - User: user_1093 - IP: 192.168.44.5 - RequestID: 1dtsovslv2ej +2025-06-18T14:46:26.881Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 465ms - Rows affected: 87 - RequestID: xukjpkjz0kp +2025-06-18T14:46:26.981Z [INFO] payment-service - Database SELECT on payments - Execution time: 45ms - Rows affected: 2 - RequestID: q6ou9lg7mro +2025-06-18T14:46:27.081Z [INFO] user-service - Database INSERT on products - Execution time: 253ms - Rows affected: 59 - RequestID: son10ugj9gj +2025-06-18T14:46:27.181Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.14.77 - RequestID: m733k0zw9x +2025-06-18T14:46:27.281Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 51ms - IP: 192.168.85.229 - User: user_1057 - RequestID: 6hqx4jtigrs +2025-06-18T14:46:27.381Z [DEBUG] notification-service - Database INSERT on users - Execution time: 473ms - Rows affected: 1 - RequestID: k562e42aci +2025-06-18T14:46:27.481Z [DEBUG] auth-service - Auth event: login_failed - User: user_1009 - IP: 192.168.68.128 - RequestID: wkge2tbirof +2025-06-18T14:46:27.581Z [DEBUG] user-service - Operation: order_created - Processing time: 945ms - RequestID: dj9owgtrpml +2025-06-18T14:46:27.681Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1469ms - IP: 192.168.104.37 - User: user_1088 - RequestID: ijr3z41gujd +2025-06-18T14:46:27.781Z [INFO] auth-service - Database SELECT on sessions - Execution time: 254ms - Rows affected: 38 - RequestID: 0lkykkb36trn +2025-06-18T14:46:27.881Z [INFO] order-service - DELETE /api/v1/payments - Status: 502 - Response time: 1565ms - IP: 192.168.167.32 - User: user_1066 - RequestID: da63cmmglff +2025-06-18T14:46:27.981Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 1035ms - RequestID: ysekh2fo39n +2025-06-18T14:46:28.081Z [INFO] order-service - Database INSERT on users - Execution time: 464ms - Rows affected: 51 - RequestID: g4drhmb7j6s +2025-06-18T14:46:28.181Z [INFO] inventory-service - Database INSERT on products - Execution time: 79ms - Rows affected: 78 - RequestID: mihbbaqwpq +2025-06-18T14:46:28.281Z [INFO] user-service - Auth event: login_success - User: user_1040 - IP: 192.168.81.206 - RequestID: iush4vtomjq +2025-06-18T14:46:28.381Z [INFO] notification-service - Auth event: password_change - User: user_1080 - IP: 192.168.144.38 - RequestID: ylodgfzhvl +2025-06-18T14:46:28.481Z [DEBUG] user-service - Auth event: logout - User: user_1063 - IP: 192.168.68.158 - RequestID: uo25bujsd2d +2025-06-18T14:46:28.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.240.169 - RequestID: 32yisjuosls +2025-06-18T14:46:28.681Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 100ms - Rows affected: 23 - RequestID: 07mxwumixock +2025-06-18T14:46:28.781Z [INFO] order-service - Auth event: logout - User: user_1011 - IP: 192.168.174.114 - RequestID: ub0m6kp3dsf +2025-06-18T14:46:28.881Z [TRACE] payment-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.229.123 - RequestID: na9wrvw2aws +2025-06-18T14:46:28.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.32.38 - RequestID: n3vx4pt2ozq +2025-06-18T14:46:29.081Z [DEBUG] order-service - Auth event: login_success - User: user_1020 - IP: 192.168.189.103 - RequestID: xbcj5a0uidp +2025-06-18T14:46:29.181Z [INFO] inventory-service - Auth event: password_change - User: user_1008 - IP: 192.168.85.229 - RequestID: 6xhwnjmm0oi +2025-06-18T14:46:29.281Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 479ms - Rows affected: 86 - RequestID: ix460a7d30c +2025-06-18T14:46:29.381Z [TRACE] user-service - PUT /api/v1/orders - Status: 502 - Response time: 698ms - IP: 192.168.104.37 - User: user_1036 - RequestID: hsl4agslpjr +2025-06-18T14:46:29.481Z [TRACE] notification-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.174.114 - RequestID: e0yokb6x66n +2025-06-18T14:46:29.581Z [TRACE] auth-service - Auth event: login_success - User: user_1021 - IP: 192.168.44.5 - RequestID: tdkm4nuxr7 +2025-06-18T14:46:29.681Z [DEBUG] user-service - Operation: cache_hit - Processing time: 654ms - RequestID: lqgat3yh8bo +2025-06-18T14:46:29.781Z [TRACE] auth-service - Auth event: password_change - User: user_1061 - IP: 192.168.133.7 - RequestID: homzb3ks6va +2025-06-18T14:46:29.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1034 - IP: 192.168.79.141 - RequestID: thh0jk2ubzl +2025-06-18T14:46:29.981Z [INFO] notification-service - Database UPDATE on users - Execution time: 468ms - Rows affected: 4 - RequestID: hso8loycpy +2025-06-18T14:46:30.081Z [TRACE] auth-service - Operation: cache_hit - Processing time: 847ms - RequestID: 0w63jlw4s1sc +2025-06-18T14:46:30.181Z [INFO] inventory-service - PUT /api/v1/payments - Status: 201 - Response time: 1990ms - IP: 192.168.211.72 - User: user_1004 - RequestID: tbfbf65yl7 +2025-06-18T14:46:30.281Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 457ms - Rows affected: 80 - RequestID: 9p08gfoygo +2025-06-18T14:46:30.381Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 999ms - RequestID: nm9ss6j4vaa +2025-06-18T14:46:30.481Z [TRACE] order-service - Operation: payment_processed - Processing time: 884ms - RequestID: db2pbgsaegs +2025-06-18T14:46:30.581Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1092ms - IP: 192.168.133.7 - User: user_1076 - RequestID: mghpqfyiel +2025-06-18T14:46:30.681Z [TRACE] order-service - PATCH /api/v1/users - Status: 503 - Response time: 380ms - IP: 192.168.133.7 - User: user_1089 - RequestID: gi1e5sk3ylv +2025-06-18T14:46:30.781Z [INFO] order-service - Database DELETE on products - Execution time: 349ms - Rows affected: 68 - RequestID: 478p758b9xy +2025-06-18T14:46:30.881Z [DEBUG] order-service - PUT /api/v1/users - Status: 201 - Response time: 1815ms - IP: 192.168.144.38 - User: user_1016 - RequestID: zewil47utbl +2025-06-18T14:46:30.981Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 938ms - RequestID: pxetu4r2ujb +2025-06-18T14:46:31.081Z [INFO] auth-service - Database UPDATE on products - Execution time: 427ms - Rows affected: 66 - RequestID: hq9nflkeoeh +2025-06-18T14:46:31.181Z [INFO] user-service - Operation: notification_queued - Processing time: 762ms - RequestID: jp7xlnllip +2025-06-18T14:46:31.281Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 176ms - Rows affected: 70 - RequestID: 4erzi5n3ej3 +2025-06-18T14:46:31.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.133.7 - RequestID: tczdm2520s +2025-06-18T14:46:31.481Z [INFO] auth-service - Operation: payment_processed - Processing time: 185ms - RequestID: 27t4hcsd9cl +2025-06-18T14:46:31.581Z [INFO] payment-service - Database DELETE on users - Execution time: 67ms - Rows affected: 82 - RequestID: 9p8mp6sjvla +2025-06-18T14:46:31.681Z [INFO] notification-service - Database UPDATE on users - Execution time: 181ms - Rows affected: 44 - RequestID: euqiy6dnbos +2025-06-18T14:46:31.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1052 - IP: 192.168.10.184 - RequestID: 58vsuumip57 +2025-06-18T14:46:31.881Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 861ms - RequestID: lkq4s9nibvc +2025-06-18T14:46:31.981Z [DEBUG] order-service - Database DELETE on payments - Execution time: 423ms - Rows affected: 49 - RequestID: npzyn3sje9i +2025-06-18T14:46:32.081Z [DEBUG] notification-service - Database DELETE on users - Execution time: 361ms - Rows affected: 35 - RequestID: lp8i5ro5qk +2025-06-18T14:46:32.181Z [TRACE] notification-service - Database INSERT on orders - Execution time: 189ms - Rows affected: 40 - RequestID: u4m1l6938p +2025-06-18T14:46:32.281Z [INFO] inventory-service - Database SELECT on users - Execution time: 436ms - Rows affected: 57 - RequestID: kmj6e8b7kl +2025-06-18T14:46:32.381Z [INFO] notification-service - Database INSERT on users - Execution time: 156ms - Rows affected: 36 - RequestID: 2unn0x0jxwn +2025-06-18T14:46:32.481Z [TRACE] user-service - Database SELECT on payments - Execution time: 108ms - Rows affected: 65 - RequestID: mg19mcxbf3 +2025-06-18T14:46:32.581Z [INFO] inventory-service - Auth event: logout - User: user_1000 - IP: 192.168.44.5 - RequestID: w8rksrzb5xr +2025-06-18T14:46:32.681Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 503 - Response time: 341ms - IP: 192.168.235.117 - User: user_1019 - RequestID: bc17ddx7h9 +2025-06-18T14:46:32.781Z [DEBUG] auth-service - Database INSERT on products - Execution time: 303ms - Rows affected: 27 - RequestID: ne1ztk9164h +2025-06-18T14:46:32.881Z [DEBUG] notification-service - Auth event: logout - User: user_1056 - IP: 192.168.1.152 - RequestID: q1eo1jboi8n +2025-06-18T14:46:32.981Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 521ms - RequestID: voqbqauvjbr +2025-06-18T14:46:33.081Z [TRACE] notification-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.229.123 - RequestID: n6b01xte55 +2025-06-18T14:46:33.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.53.133 - RequestID: z6uhmw0nmaf +2025-06-18T14:46:33.281Z [DEBUG] order-service - Operation: order_created - Processing time: 493ms - RequestID: ta90v2kyxvg +2025-06-18T14:46:33.381Z [INFO] inventory-service - Database UPDATE on users - Execution time: 422ms - Rows affected: 28 - RequestID: iz5e76jpc0p +2025-06-18T14:46:33.481Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 63ms - Rows affected: 74 - RequestID: gxkfbn2jhgf +2025-06-18T14:46:33.581Z [INFO] user-service - Database SELECT on products - Execution time: 492ms - Rows affected: 44 - RequestID: 1rjcx4yxx2m +2025-06-18T14:46:33.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.189.103 - RequestID: 302ql11px05 +2025-06-18T14:46:33.781Z [INFO] auth-service - PUT /api/v1/orders - Status: 404 - Response time: 683ms - IP: 192.168.30.79 - User: user_1028 - RequestID: ax2xnoflxi4 +2025-06-18T14:46:33.881Z [INFO] auth-service - Auth event: password_change - User: user_1055 - IP: 192.168.10.184 - RequestID: wrti5vwgn3 +2025-06-18T14:46:33.981Z [INFO] payment-service - PATCH /api/v1/orders - Status: 404 - Response time: 1512ms - IP: 192.168.104.37 - User: user_1082 - RequestID: qlkki1lix4r +2025-06-18T14:46:34.081Z [INFO] order-service - Database SELECT on users - Execution time: 321ms - Rows affected: 52 - RequestID: 78ba7rcyvsi +2025-06-18T14:46:34.181Z [DEBUG] auth-service - Database SELECT on users - Execution time: 113ms - Rows affected: 2 - RequestID: swyzy25w5mh +2025-06-18T14:46:34.281Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.11.60 - RequestID: vnh8qcgekfb +2025-06-18T14:46:34.381Z [INFO] user-service - Auth event: logout - User: user_1046 - IP: 192.168.242.165 - RequestID: ktwhxihlrtj +2025-06-18T14:46:34.481Z [TRACE] auth-service - Auth event: password_change - User: user_1044 - IP: 192.168.14.77 - RequestID: mfbue1jvx3 +2025-06-18T14:46:34.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.242.165 - RequestID: 123tn5w8faxq +2025-06-18T14:46:34.681Z [INFO] payment-service - PUT /api/v1/orders - Status: 503 - Response time: 832ms - IP: 192.168.85.229 - User: user_1052 - RequestID: xhmifhftpy +2025-06-18T14:46:34.781Z [INFO] user-service - Database INSERT on products - Execution time: 210ms - Rows affected: 83 - RequestID: f2xfa6txd2p +2025-06-18T14:46:34.881Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.138.123 - RequestID: pihfkr9y4l +2025-06-18T14:46:34.981Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 11ms - Rows affected: 47 - RequestID: m1dyz0e667j +2025-06-18T14:46:35.081Z [INFO] order-service - Operation: webhook_sent - Processing time: 725ms - RequestID: oug7w5iibp +2025-06-18T14:46:35.181Z [TRACE] payment-service - Auth event: login_success - User: user_1066 - IP: 192.168.229.123 - RequestID: 9d8faol6mos +2025-06-18T14:46:35.281Z [INFO] notification-service - Auth event: password_change - User: user_1021 - IP: 192.168.232.72 - RequestID: rxl3j05xxgh +2025-06-18T14:46:35.381Z [INFO] user-service - DELETE /api/v1/orders - Status: 400 - Response time: 595ms - IP: 192.168.33.76 - User: user_1024 - RequestID: sdngoihl6mc +2025-06-18T14:46:35.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.181.225 - RequestID: 382cgdpl90x +2025-06-18T14:46:35.581Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 201 - Response time: 542ms - IP: 192.168.68.158 - User: user_1050 - RequestID: 5xr06hdp6rj +2025-06-18T14:46:35.681Z [TRACE] order-service - Operation: order_created - Processing time: 507ms - RequestID: nbouyqcg6z +2025-06-18T14:46:35.781Z [TRACE] notification-service - Auth event: password_change - User: user_1091 - IP: 192.168.1.152 - RequestID: jcqokzhez7h +2025-06-18T14:46:35.881Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1049 - IP: 192.168.79.141 - RequestID: r02rexo41wb +2025-06-18T14:46:35.981Z [INFO] user-service - Auth event: login_failed - User: user_1008 - IP: 192.168.229.123 - RequestID: hy3e0pftjsv +2025-06-18T14:46:36.081Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 194ms - Rows affected: 65 - RequestID: 16ajsyjzvs2 +2025-06-18T14:46:36.181Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 192ms - Rows affected: 27 - RequestID: cp7gg4nr9u +2025-06-18T14:46:36.281Z [INFO] user-service - Operation: payment_processed - Processing time: 439ms - RequestID: fepngm2785 +2025-06-18T14:46:36.381Z [DEBUG] user-service - GET /api/v1/orders - Status: 503 - Response time: 413ms - IP: 192.168.159.94 - User: user_1047 - RequestID: 3a18dofbhmx +2025-06-18T14:46:36.481Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 201 - Response time: 882ms - IP: 192.168.14.77 - User: user_1040 - RequestID: z6if0l4xjwt +2025-06-18T14:46:36.581Z [INFO] notification-service - Database SELECT on products - Execution time: 311ms - Rows affected: 30 - RequestID: 91eb7jhn3wr +2025-06-18T14:46:36.681Z [INFO] user-service - PUT /api/v1/payments - Status: 500 - Response time: 923ms - IP: 192.168.242.165 - User: user_1074 - RequestID: eiz6qmrucmj +2025-06-18T14:46:36.781Z [INFO] inventory-service - PUT /api/v1/users - Status: 502 - Response time: 1986ms - IP: 192.168.46.63 - User: user_1069 - RequestID: 6ymloswyjho +2025-06-18T14:46:36.881Z [DEBUG] user-service - Database SELECT on payments - Execution time: 4ms - Rows affected: 49 - RequestID: ljrxu50hl +2025-06-18T14:46:36.981Z [TRACE] user-service - PATCH /api/v1/orders - Status: 401 - Response time: 715ms - IP: 192.168.194.41 - User: user_1093 - RequestID: epb5nbdb6p +2025-06-18T14:46:37.081Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 403 - Response time: 628ms - IP: 192.168.170.215 - User: user_1042 - RequestID: xyhayv0ubom +2025-06-18T14:46:37.181Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 301ms - IP: 192.168.14.77 - User: user_1007 - RequestID: scp5jgr0aes +2025-06-18T14:46:37.281Z [DEBUG] auth-service - Auth event: password_change - User: user_1059 - IP: 192.168.196.226 - RequestID: c94eu5j0sd +2025-06-18T14:46:37.381Z [DEBUG] user-service - DELETE /api/v1/users - Status: 200 - Response time: 1968ms - IP: 192.168.53.133 - User: user_1085 - RequestID: 5do7ow31rax +2025-06-18T14:46:37.481Z [TRACE] inventory-service - Operation: email_sent - Processing time: 424ms - RequestID: f32jtqg9r6 +2025-06-18T14:46:37.581Z [TRACE] notification-service - Operation: email_sent - Processing time: 399ms - RequestID: rth3j3b8l7 +2025-06-18T14:46:37.681Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 829ms - RequestID: ezdzsswfzei +2025-06-18T14:46:37.781Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 177ms - RequestID: 3elpcxr9ug +2025-06-18T14:46:37.881Z [DEBUG] payment-service - Operation: email_sent - Processing time: 577ms - RequestID: eltkqe0fwv +2025-06-18T14:46:37.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 781ms - RequestID: p23zndhys7h +2025-06-18T14:46:38.081Z [TRACE] user-service - Database INSERT on sessions - Execution time: 419ms - Rows affected: 22 - RequestID: m2bbcv6x8c +2025-06-18T14:46:38.181Z [TRACE] user-service - Auth event: password_change - User: user_1023 - IP: 192.168.147.171 - RequestID: 7n482n1smlv +2025-06-18T14:46:38.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 964ms - RequestID: s1txj05g7f +2025-06-18T14:46:38.381Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 157ms - RequestID: vwmmw7rur0d +2025-06-18T14:46:38.481Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 418ms - Rows affected: 30 - RequestID: k31xmabf978 +2025-06-18T14:46:38.581Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 570ms - IP: 192.168.170.215 - User: user_1012 - RequestID: wlof3q8gw8 +2025-06-18T14:46:38.681Z [DEBUG] payment-service - Database SELECT on products - Execution time: 119ms - Rows affected: 95 - RequestID: e9z0e9vsu8h +2025-06-18T14:46:38.781Z [TRACE] notification-service - Operation: order_created - Processing time: 278ms - RequestID: ek8ija7j1m +2025-06-18T14:46:38.881Z [INFO] notification-service - Database INSERT on products - Execution time: 227ms - Rows affected: 80 - RequestID: zfb1sxlayb +2025-06-18T14:46:38.981Z [TRACE] inventory-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 305ms - IP: 192.168.53.133 - User: user_1044 - RequestID: o3d1dgps0nk +2025-06-18T14:46:39.081Z [TRACE] order-service - Auth event: logout - User: user_1047 - IP: 192.168.229.123 - RequestID: cwoqw9rsymc +2025-06-18T14:46:39.181Z [DEBUG] payment-service - Operation: order_created - Processing time: 168ms - RequestID: 40aoag6obzk +2025-06-18T14:46:39.281Z [DEBUG] auth-service - GET /api/v1/orders - Status: 201 - Response time: 704ms - IP: 192.168.31.117 - User: user_1087 - RequestID: r5mak0nj3s9 +2025-06-18T14:46:39.381Z [INFO] order-service - Operation: order_created - Processing time: 521ms - RequestID: yu5lwj6ri19 +2025-06-18T14:46:39.481Z [DEBUG] payment-service - Auth event: login_failed - User: user_1089 - IP: 192.168.11.60 - RequestID: yggbf3q4rg +2025-06-18T14:46:39.581Z [TRACE] auth-service - Auth event: password_change - User: user_1086 - IP: 192.168.14.77 - RequestID: g5v61hq52wo +2025-06-18T14:46:39.681Z [INFO] auth-service - Operation: webhook_sent - Processing time: 672ms - RequestID: jy3lronbwa +2025-06-18T14:46:39.781Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 279ms - Rows affected: 19 - RequestID: vf5d9jbdeye +2025-06-18T14:46:39.881Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 10ms - Rows affected: 2 - RequestID: ni4c3cc6qpd +2025-06-18T14:46:39.981Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 338ms - Rows affected: 12 - RequestID: mn49dke20ro +2025-06-18T14:46:40.081Z [DEBUG] order-service - Database INSERT on orders - Execution time: 267ms - Rows affected: 40 - RequestID: ojon7o6uirs +2025-06-18T14:46:40.181Z [INFO] auth-service - PUT /api/v1/inventory - Status: 503 - Response time: 1292ms - IP: 192.168.196.226 - User: user_1077 - RequestID: v5rcgsgqote +2025-06-18T14:46:40.281Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 919ms - RequestID: q8ybmskcqmo +2025-06-18T14:46:40.381Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 570ms - RequestID: 91tzipf3x1u +2025-06-18T14:46:40.481Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 403 - Response time: 818ms - IP: 192.168.189.103 - User: user_1048 - RequestID: qewxkhch6f +2025-06-18T14:46:40.581Z [TRACE] payment-service - GET /api/v1/inventory - Status: 403 - Response time: 324ms - IP: 192.168.64.33 - User: user_1026 - RequestID: 1cx81u2f8h2 +2025-06-18T14:46:40.681Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1629ms - IP: 192.168.211.72 - User: user_1071 - RequestID: awhn7b58ixb +2025-06-18T14:46:40.781Z [TRACE] inventory-service - Database SELECT on users - Execution time: 140ms - Rows affected: 88 - RequestID: 1d3x2vrsxtp +2025-06-18T14:46:40.881Z [INFO] inventory-service - Auth event: login_success - User: user_1097 - IP: 192.168.1.152 - RequestID: 8e9mjctwrrf +2025-06-18T14:46:40.981Z [TRACE] order-service - Auth event: logout - User: user_1069 - IP: 192.168.85.229 - RequestID: 2yfwe2vnuok +2025-06-18T14:46:41.081Z [INFO] inventory-service - Auth event: login_success - User: user_1078 - IP: 192.168.229.123 - RequestID: 5wkuikgjd8c +2025-06-18T14:46:41.181Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1880ms - IP: 192.168.46.63 - User: user_1086 - RequestID: xi0odsdrh6a +2025-06-18T14:46:41.281Z [DEBUG] notification-service - Auth event: logout - User: user_1079 - IP: 192.168.79.116 - RequestID: xio2b9dtd7n +2025-06-18T14:46:41.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1043 - IP: 192.168.11.60 - RequestID: m05rdfexkob +2025-06-18T14:46:41.481Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 401 - Response time: 823ms - IP: 192.168.194.41 - User: user_1024 - RequestID: 7vjsynn10e6 +2025-06-18T14:46:41.581Z [TRACE] order-service - PUT /api/v1/payments - Status: 502 - Response time: 123ms - IP: 192.168.194.41 - User: user_1000 - RequestID: kl6ajsposjc +2025-06-18T14:46:41.681Z [INFO] payment-service - Operation: cache_hit - Processing time: 92ms - RequestID: mb0wy2opnf +2025-06-18T14:46:41.781Z [INFO] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 1745ms - IP: 192.168.138.123 - User: user_1035 - RequestID: o9iwe7n40t +2025-06-18T14:46:41.881Z [INFO] notification-service - Operation: email_sent - Processing time: 968ms - RequestID: ikaqpn0dkm +2025-06-18T14:46:41.981Z [INFO] user-service - Database INSERT on products - Execution time: 144ms - Rows affected: 47 - RequestID: th9t1oi47r +2025-06-18T14:46:42.081Z [INFO] inventory-service - Database DELETE on payments - Execution time: 390ms - Rows affected: 58 - RequestID: ptc93hcxn5r +2025-06-18T14:46:42.181Z [TRACE] payment-service - Auth event: password_change - User: user_1029 - IP: 192.168.167.32 - RequestID: erri2vjrwd6 +2025-06-18T14:46:42.281Z [TRACE] notification-service - Database INSERT on users - Execution time: 355ms - Rows affected: 49 - RequestID: tiruoeynen +2025-06-18T14:46:42.381Z [INFO] notification-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.10.184 - RequestID: xud2yyujau +2025-06-18T14:46:42.481Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 617ms - RequestID: 4yw7eimbyul +2025-06-18T14:46:42.581Z [TRACE] payment-service - Database DELETE on products - Execution time: 196ms - Rows affected: 17 - RequestID: q3289st4hh +2025-06-18T14:46:42.681Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 188ms - Rows affected: 8 - RequestID: h9z3rexswpk +2025-06-18T14:46:42.781Z [TRACE] notification-service - Auth event: password_change - User: user_1015 - IP: 192.168.32.38 - RequestID: e69ij4g8oy +2025-06-18T14:46:42.881Z [TRACE] notification-service - Operation: order_created - Processing time: 546ms - RequestID: 8kvucgxia5n +2025-06-18T14:46:42.981Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 121ms - IP: 192.168.10.184 - User: user_1026 - RequestID: 08o9bkv2hug4 +2025-06-18T14:46:43.081Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 355ms - Rows affected: 73 - RequestID: mcwm9m6jllk +2025-06-18T14:46:43.181Z [DEBUG] user-service - Auth event: password_change - User: user_1087 - IP: 192.168.64.33 - RequestID: hr4oehet7fv +2025-06-18T14:46:43.281Z [TRACE] order-service - Operation: notification_queued - Processing time: 437ms - RequestID: hxo82grbtil +2025-06-18T14:46:43.381Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1208ms - IP: 192.168.240.169 - User: user_1097 - RequestID: fbirmqe9nph +2025-06-18T14:46:43.481Z [TRACE] inventory-service - Auth event: login_success - User: user_1060 - IP: 192.168.211.72 - RequestID: 835k6k0vdps +2025-06-18T14:46:43.581Z [INFO] user-service - Operation: cache_miss - Processing time: 82ms - RequestID: w29ct76w68q +2025-06-18T14:46:43.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.242.165 - RequestID: zr5bylk6a8 +2025-06-18T14:46:43.781Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 91ms - Rows affected: 73 - RequestID: e66cbtytqfo +2025-06-18T14:46:43.881Z [INFO] inventory-service - Database INSERT on products - Execution time: 327ms - Rows affected: 81 - RequestID: 7odurup739h +2025-06-18T14:46:43.981Z [TRACE] user-service - Database INSERT on sessions - Execution time: 4ms - Rows affected: 81 - RequestID: cevw7ogbygp +2025-06-18T14:46:44.081Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 169ms - Rows affected: 44 - RequestID: l64hayv0axf +2025-06-18T14:46:44.181Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 241ms - Rows affected: 81 - RequestID: 4uu5tgjic5f +2025-06-18T14:46:44.281Z [TRACE] user-service - Operation: email_sent - Processing time: 315ms - RequestID: gpxqdl7p0p +2025-06-18T14:46:44.381Z [TRACE] payment-service - Database INSERT on payments - Execution time: 159ms - Rows affected: 51 - RequestID: rzxv7vl284 +2025-06-18T14:46:44.481Z [TRACE] auth-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.167.32 - RequestID: tvff9e8rsf +2025-06-18T14:46:44.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.235.117 - RequestID: il41zkc8di +2025-06-18T14:46:44.681Z [TRACE] order-service - Database SELECT on payments - Execution time: 372ms - Rows affected: 28 - RequestID: s5eunfpnqi +2025-06-18T14:46:44.781Z [INFO] notification-service - Auth event: logout - User: user_1028 - IP: 192.168.141.100 - RequestID: pcjaroc4kt8 +2025-06-18T14:46:44.881Z [INFO] auth-service - Auth event: login_success - User: user_1098 - IP: 192.168.79.143 - RequestID: b6do20esbzp +2025-06-18T14:46:44.981Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 8ms - Rows affected: 91 - RequestID: 14y6d8ud5j6 +2025-06-18T14:46:45.081Z [TRACE] notification-service - PUT /api/v1/orders - Status: 503 - Response time: 1407ms - IP: 192.168.144.38 - User: user_1037 - RequestID: y8quxspylrn +2025-06-18T14:46:45.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.1.152 - RequestID: ugijx49j4os +2025-06-18T14:46:45.281Z [INFO] auth-service - Database UPDATE on payments - Execution time: 415ms - Rows affected: 50 - RequestID: ctrn8c7qdtl +2025-06-18T14:46:45.381Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 196ms - Rows affected: 30 - RequestID: 8376gws84h9 +2025-06-18T14:46:45.481Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 343ms - Rows affected: 50 - RequestID: 3ue0s5sj8bv +2025-06-18T14:46:45.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1059 - IP: 192.168.1.152 - RequestID: 1wkzqkxz70a +2025-06-18T14:46:45.681Z [INFO] payment-service - Auth event: logout - User: user_1000 - IP: 192.168.138.123 - RequestID: zddh8hevjns +2025-06-18T14:46:45.781Z [TRACE] user-service - Auth event: login_success - User: user_1000 - IP: 192.168.68.128 - RequestID: 4bk2ax43xqs +2025-06-18T14:46:45.881Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 124ms - Rows affected: 91 - RequestID: hug0acgzuyv +2025-06-18T14:46:45.981Z [INFO] order-service - Database DELETE on orders - Execution time: 467ms - Rows affected: 49 - RequestID: jdxc0rgj7aq +2025-06-18T14:46:46.081Z [INFO] user-service - Operation: webhook_sent - Processing time: 521ms - RequestID: g0h5b4x8ue +2025-06-18T14:46:46.181Z [DEBUG] payment-service - Auth event: login_success - User: user_1018 - IP: 192.168.79.116 - RequestID: 09kjzzjjp2mx +2025-06-18T14:46:46.281Z [TRACE] notification-service - Database SELECT on users - Execution time: 257ms - Rows affected: 76 - RequestID: rr2ny9ol27k +2025-06-18T14:46:46.381Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 63ms - Rows affected: 73 - RequestID: rcdbyasi1e8 +2025-06-18T14:46:46.481Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 315ms - Rows affected: 43 - RequestID: axbrmccttkd +2025-06-18T14:46:46.581Z [INFO] inventory-service - Auth event: password_change - User: user_1079 - IP: 192.168.97.87 - RequestID: cs878zktqu +2025-06-18T14:46:46.681Z [DEBUG] user-service - GET /api/v1/users - Status: 401 - Response time: 1889ms - IP: 192.168.13.72 - User: user_1066 - RequestID: d1j9hml3yi5 +2025-06-18T14:46:46.781Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 327ms - IP: 192.168.68.158 - User: user_1022 - RequestID: swmz8slie2 +2025-06-18T14:46:46.881Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 288ms - Rows affected: 5 - RequestID: kallvki305j +2025-06-18T14:46:46.981Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1965ms - IP: 192.168.79.143 - User: user_1001 - RequestID: 9pi1dz5cxx +2025-06-18T14:46:47.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1096 - IP: 192.168.159.94 - RequestID: 0og1n4p7mwq +2025-06-18T14:46:47.181Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 400 - Response time: 821ms - IP: 192.168.100.240 - User: user_1064 - RequestID: ok2edp1e2p9 +2025-06-18T14:46:47.281Z [TRACE] auth-service - Operation: cache_hit - Processing time: 788ms - RequestID: h1tpl0zcpn5 +2025-06-18T14:46:47.381Z [TRACE] auth-service - Database SELECT on products - Execution time: 330ms - Rows affected: 67 - RequestID: wnsyiwb851 +2025-06-18T14:46:47.481Z [INFO] auth-service - Database INSERT on users - Execution time: 254ms - Rows affected: 26 - RequestID: ps0ftl45ejh +2025-06-18T14:46:47.581Z [INFO] user-service - DELETE /api/v1/payments - Status: 400 - Response time: 1559ms - IP: 192.168.227.77 - User: user_1068 - RequestID: 9x95moqink4 +2025-06-18T14:46:47.681Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 98ms - Rows affected: 46 - RequestID: vhluz1ql6k +2025-06-18T14:46:47.781Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 49ms - Rows affected: 67 - RequestID: qcn3n4cqlil +2025-06-18T14:46:47.881Z [TRACE] order-service - Database INSERT on payments - Execution time: 233ms - Rows affected: 43 - RequestID: c1t7e9w3soi +2025-06-18T14:46:47.981Z [DEBUG] auth-service - Database DELETE on products - Execution time: 154ms - Rows affected: 95 - RequestID: sr2uq2776us +2025-06-18T14:46:48.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.240.169 - RequestID: mswxxyhsiwb +2025-06-18T14:46:48.181Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 97ms - RequestID: expa2lrsl1t +2025-06-18T14:46:48.281Z [TRACE] user-service - Operation: payment_processed - Processing time: 453ms - RequestID: 9uow6w1259s +2025-06-18T14:46:48.381Z [INFO] order-service - Operation: cache_miss - Processing time: 59ms - RequestID: cnb4xsd7rs9 +2025-06-18T14:46:48.481Z [TRACE] order-service - Auth event: login_success - User: user_1009 - IP: 192.168.81.206 - RequestID: fe9lchs4vor +2025-06-18T14:46:48.581Z [INFO] order-service - Operation: cache_hit - Processing time: 959ms - RequestID: l0rbtgtiffh +2025-06-18T14:46:48.681Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 200 - Response time: 526ms - IP: 192.168.247.134 - User: user_1015 - RequestID: estt1xomzzv +2025-06-18T14:46:48.781Z [INFO] auth-service - Database DELETE on payments - Execution time: 149ms - Rows affected: 17 - RequestID: 5l2d4z0801 +2025-06-18T14:46:48.881Z [TRACE] order-service - Auth event: logout - User: user_1058 - IP: 192.168.159.94 - RequestID: vh4wvc14s0o +2025-06-18T14:46:48.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 733ms - RequestID: i1tdlmbycas +2025-06-18T14:46:49.081Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.64.33 - RequestID: vsmitii1648 +2025-06-18T14:46:49.181Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 1009ms - RequestID: j9705kjr0rb +2025-06-18T14:46:49.281Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.133.7 - RequestID: vq7cqy9cel +2025-06-18T14:46:49.381Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 502 - Response time: 1183ms - IP: 192.168.68.128 - User: user_1070 - RequestID: ne9cpbwos4f +2025-06-18T14:46:49.481Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 200 - Response time: 1935ms - IP: 192.168.138.123 - User: user_1023 - RequestID: ifqdg065q6b +2025-06-18T14:46:49.581Z [TRACE] order-service - GET /api/v1/inventory - Status: 404 - Response time: 526ms - IP: 192.168.68.128 - User: user_1058 - RequestID: ex06fd3rtks +2025-06-18T14:46:49.681Z [TRACE] auth-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.227.233 - RequestID: otvc9vg05ek +2025-06-18T14:46:49.781Z [TRACE] notification-service - Database INSERT on payments - Execution time: 465ms - Rows affected: 19 - RequestID: yzr9sw53zvp +2025-06-18T14:46:49.881Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 141ms - IP: 192.168.46.63 - User: user_1088 - RequestID: 873gkpvepj9 +2025-06-18T14:46:49.981Z [TRACE] notification-service - Operation: cache_miss - Processing time: 337ms - RequestID: p726zar1vq +2025-06-18T14:46:50.081Z [INFO] payment-service - DELETE /api/v1/users - Status: 201 - Response time: 2008ms - IP: 192.168.242.165 - User: user_1031 - RequestID: mzsqsnls0c +2025-06-18T14:46:50.181Z [TRACE] user-service - Database UPDATE on products - Execution time: 434ms - Rows affected: 90 - RequestID: fx8a8b9feor +2025-06-18T14:46:50.281Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 241ms - RequestID: a8lzershfyf +2025-06-18T14:46:50.381Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 589ms - RequestID: 8xqc68e05ko +2025-06-18T14:46:50.481Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 123ms - Rows affected: 88 - RequestID: 5x5tgq8pphp +2025-06-18T14:46:50.581Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 185ms - Rows affected: 9 - RequestID: 0q0ac51fz5u +2025-06-18T14:46:50.681Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 825ms - RequestID: upaqb8a5ypi +2025-06-18T14:46:50.781Z [INFO] order-service - Database SELECT on products - Execution time: 454ms - Rows affected: 10 - RequestID: 1vp948rwt9d +2025-06-18T14:46:50.881Z [INFO] order-service - Database DELETE on users - Execution time: 245ms - Rows affected: 9 - RequestID: 9u7qpzzs9ma +2025-06-18T14:46:50.981Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 502 - Response time: 121ms - IP: 192.168.174.114 - User: user_1054 - RequestID: aw8ik9lps +2025-06-18T14:46:51.081Z [INFO] order-service - Auth event: password_change - User: user_1033 - IP: 192.168.64.33 - RequestID: jw7y4go5ds +2025-06-18T14:46:51.181Z [INFO] user-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.79.141 - RequestID: kap5oedp1gs +2025-06-18T14:46:51.281Z [INFO] payment-service - Operation: order_created - Processing time: 828ms - RequestID: 0ehovop84vve +2025-06-18T14:46:51.381Z [TRACE] user-service - Database SELECT on products - Execution time: 238ms - Rows affected: 23 - RequestID: 41v65efyyl8 +2025-06-18T14:46:51.481Z [INFO] inventory-service - Auth event: password_change - User: user_1003 - IP: 192.168.79.116 - RequestID: waxrwoda9x8 +2025-06-18T14:46:51.581Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 93ms - Rows affected: 16 - RequestID: ckzji2zr1kw +2025-06-18T14:46:51.681Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 741ms - RequestID: tmf1pk2vv1 +2025-06-18T14:46:51.781Z [DEBUG] payment-service - Auth event: logout - User: user_1038 - IP: 192.168.158.144 - RequestID: wd7jfa1fi5j +2025-06-18T14:46:51.881Z [INFO] order-service - DELETE /api/v1/users - Status: 503 - Response time: 19ms - IP: 192.168.1.152 - User: user_1037 - RequestID: wkop7r93e4 +2025-06-18T14:46:51.981Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 404 - Response time: 1241ms - IP: 192.168.147.171 - User: user_1004 - RequestID: clp8p0leclu +2025-06-18T14:46:52.081Z [INFO] auth-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.81.206 - RequestID: uop5cmjge8 +2025-06-18T14:46:52.181Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 239ms - IP: 192.168.181.225 - User: user_1027 - RequestID: 56y2z41q0px +2025-06-18T14:46:52.281Z [INFO] payment-service - POST /api/v1/users - Status: 500 - Response time: 894ms - IP: 192.168.85.229 - User: user_1028 - RequestID: x0ohu93665 +2025-06-18T14:46:52.381Z [INFO] payment-service - Database SELECT on orders - Execution time: 452ms - Rows affected: 54 - RequestID: hckpssykfh +2025-06-18T14:46:52.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.85.229 - RequestID: c17h1czu9d9 +2025-06-18T14:46:52.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 733ms - RequestID: pykldx7chp8 +2025-06-18T14:46:52.681Z [INFO] order-service - Operation: cache_miss - Processing time: 1016ms - RequestID: 5az82pipbou +2025-06-18T14:46:52.781Z [INFO] auth-service - GET /api/v1/inventory - Status: 401 - Response time: 195ms - IP: 192.168.32.38 - User: user_1081 - RequestID: xcnit9u030s +2025-06-18T14:46:52.881Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 404 - Response time: 353ms - IP: 192.168.79.143 - User: user_1032 - RequestID: ibpsys0w8v9 +2025-06-18T14:46:52.981Z [TRACE] order-service - Operation: cache_hit - Processing time: 87ms - RequestID: 067tc5th3bjq +2025-06-18T14:46:53.081Z [INFO] notification-service - POST /api/v1/inventory - Status: 400 - Response time: 797ms - IP: 192.168.158.144 - User: user_1094 - RequestID: vaduodbo5y8 +2025-06-18T14:46:53.181Z [INFO] user-service - Auth event: password_change - User: user_1009 - IP: 192.168.189.103 - RequestID: ivszgn4nm4s +2025-06-18T14:46:53.281Z [TRACE] order-service - Operation: email_sent - Processing time: 284ms - RequestID: 0ly6j6mx944a +2025-06-18T14:46:53.381Z [TRACE] order-service - PUT /api/v1/payments - Status: 502 - Response time: 1078ms - IP: 192.168.104.37 - User: user_1048 - RequestID: r8n911pfnt +2025-06-18T14:46:53.481Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 369ms - Rows affected: 5 - RequestID: 251zrpsz432 +2025-06-18T14:46:53.581Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 201 - Response time: 2000ms - IP: 192.168.158.144 - User: user_1030 - RequestID: o6t4b3xrhh +2025-06-18T14:46:53.681Z [TRACE] notification-service - Auth event: password_change - User: user_1004 - IP: 192.168.79.116 - RequestID: 76gj9m7tfes +2025-06-18T14:46:53.781Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 400 - Response time: 311ms - IP: 192.168.10.184 - User: user_1038 - RequestID: pmceyoq15ob +2025-06-18T14:46:53.881Z [TRACE] order-service - PUT /api/v1/users - Status: 403 - Response time: 954ms - IP: 192.168.14.77 - User: user_1090 - RequestID: ls5gy3led +2025-06-18T14:46:53.981Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1102ms - IP: 192.168.235.117 - User: user_1058 - RequestID: hnhvohfu3tf +2025-06-18T14:46:54.081Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 200 - Response time: 1981ms - IP: 192.168.79.141 - User: user_1031 - RequestID: gczqxpojuwm +2025-06-18T14:46:54.181Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 419ms - RequestID: euwkad7j0ug +2025-06-18T14:46:54.281Z [TRACE] user-service - Operation: cache_hit - Processing time: 983ms - RequestID: rwm4oxvcg2e +2025-06-18T14:46:54.381Z [INFO] auth-service - POST /api/v1/payments - Status: 400 - Response time: 1418ms - IP: 192.168.147.171 - User: user_1078 - RequestID: 3g5rpg9po2j +2025-06-18T14:46:54.481Z [TRACE] payment-service - Auth event: logout - User: user_1042 - IP: 192.168.68.128 - RequestID: kr2hg33pf3 +2025-06-18T14:46:54.581Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 503 - Response time: 1647ms - IP: 192.168.144.38 - User: user_1050 - RequestID: osjpv7secys +2025-06-18T14:46:54.681Z [INFO] payment-service - Operation: payment_processed - Processing time: 726ms - RequestID: f5btjeepbgb +2025-06-18T14:46:54.781Z [TRACE] order-service - Database INSERT on users - Execution time: 111ms - Rows affected: 60 - RequestID: 465ccvp51jy +2025-06-18T14:46:54.881Z [INFO] notification-service - Operation: cache_miss - Processing time: 703ms - RequestID: xpiafa75h9 +2025-06-18T14:46:54.981Z [INFO] order-service - DELETE /api/v1/orders - Status: 404 - Response time: 170ms - IP: 192.168.79.143 - User: user_1071 - RequestID: fssw0ky2pc6 +2025-06-18T14:46:55.081Z [TRACE] order-service - GET /api/v1/payments - Status: 503 - Response time: 1863ms - IP: 192.168.28.146 - User: user_1069 - RequestID: qlwke49ep9 +2025-06-18T14:46:55.181Z [INFO] payment-service - Database SELECT on users - Execution time: 88ms - Rows affected: 46 - RequestID: 6yh4f58cjbc +2025-06-18T14:46:55.281Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 472ms - Rows affected: 81 - RequestID: wnoaf0vcoa +2025-06-18T14:46:55.381Z [DEBUG] auth-service - Database SELECT on products - Execution time: 489ms - Rows affected: 69 - RequestID: q8vjwx6rfug +2025-06-18T14:46:55.481Z [TRACE] inventory-service - Auth event: logout - User: user_1049 - IP: 192.168.211.72 - RequestID: q74ze4r7we +2025-06-18T14:46:55.581Z [INFO] notification-service - Auth event: login_failed - User: user_1064 - IP: 192.168.10.184 - RequestID: plrk9ajsht +2025-06-18T14:46:55.681Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 500 - Response time: 43ms - IP: 192.168.227.77 - User: user_1020 - RequestID: wc75jyxb2dk +2025-06-18T14:46:55.781Z [INFO] auth-service - Auth event: login_failed - User: user_1007 - IP: 192.168.229.123 - RequestID: r2cfl3076lp +2025-06-18T14:46:55.881Z [INFO] order-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.14.77 - RequestID: vbf115ko6xh +2025-06-18T14:46:55.981Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 201 - Response time: 668ms - IP: 192.168.33.76 - User: user_1068 - RequestID: 5t12opusqw +2025-06-18T14:46:56.081Z [INFO] notification-service - POST /api/v1/orders - Status: 404 - Response time: 1508ms - IP: 192.168.46.63 - User: user_1023 - RequestID: 0u8dckyp9bzn +2025-06-18T14:46:56.181Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 471ms - Rows affected: 39 - RequestID: pqq14aauxlh +2025-06-18T14:46:56.281Z [INFO] order-service - Operation: order_created - Processing time: 518ms - RequestID: lkkkca8z1wg +2025-06-18T14:46:56.381Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 149ms - Rows affected: 31 - RequestID: lh71f5qphw +2025-06-18T14:46:56.481Z [INFO] inventory-service - Auth event: password_change - User: user_1042 - IP: 192.168.79.143 - RequestID: zxq9q2qich +2025-06-18T14:46:56.581Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 200 - Response time: 946ms - IP: 192.168.79.141 - User: user_1047 - RequestID: p2v2rrupz5e +2025-06-18T14:46:56.681Z [INFO] auth-service - Operation: payment_processed - Processing time: 832ms - RequestID: chdvac5clbc +2025-06-18T14:46:56.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 504ms - RequestID: hportege6t9 +2025-06-18T14:46:56.881Z [INFO] auth-service - GET /api/v1/auth/login - Status: 401 - Response time: 52ms - IP: 192.168.1.152 - User: user_1079 - RequestID: rcjuxv1cwl +2025-06-18T14:46:56.981Z [INFO] user-service - Operation: order_created - Processing time: 365ms - RequestID: 9f40rqmlg3d +2025-06-18T14:46:57.081Z [DEBUG] auth-service - GET /api/v1/orders - Status: 403 - Response time: 839ms - IP: 192.168.64.33 - User: user_1041 - RequestID: ujmu9egvkvr +2025-06-18T14:46:57.181Z [DEBUG] order-service - GET /api/v1/orders - Status: 401 - Response time: 193ms - IP: 192.168.31.117 - User: user_1006 - RequestID: bjfjzq3n4l4 +2025-06-18T14:46:57.281Z [INFO] order-service - Operation: cache_hit - Processing time: 134ms - RequestID: ipvlfedwfy +2025-06-18T14:46:57.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 958ms - RequestID: zvifbvfpy99 +2025-06-18T14:46:57.481Z [INFO] auth-service - Database INSERT on sessions - Execution time: 28ms - Rows affected: 58 - RequestID: kt3fbvm7rhe +2025-06-18T14:46:57.581Z [TRACE] notification-service - Database INSERT on orders - Execution time: 358ms - Rows affected: 75 - RequestID: zs2vsuhxp5n +2025-06-18T14:46:57.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 664ms - RequestID: imqqhxjd5e9 +2025-06-18T14:46:57.781Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1087ms - IP: 192.168.227.233 - User: user_1081 - RequestID: 1z6hojp2ze5 +2025-06-18T14:46:57.881Z [DEBUG] user-service - Database DELETE on orders - Execution time: 454ms - Rows affected: 4 - RequestID: g4e79yqr2dh +2025-06-18T14:46:57.981Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 495ms - Rows affected: 78 - RequestID: 0pxhjdwwrohh +2025-06-18T14:46:58.081Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 26ms - Rows affected: 75 - RequestID: nrde3jcp69g +2025-06-18T14:46:58.181Z [INFO] inventory-service - Database DELETE on products - Execution time: 352ms - Rows affected: 2 - RequestID: u1gmfo8l1hk +2025-06-18T14:46:58.281Z [INFO] user-service - Operation: order_created - Processing time: 498ms - RequestID: zk9dhramy4f +2025-06-18T14:46:58.381Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 304ms - Rows affected: 0 - RequestID: v20p3m2mtl +2025-06-18T14:46:58.481Z [TRACE] order-service - Database DELETE on users - Execution time: 185ms - Rows affected: 52 - RequestID: 726001q3mul +2025-06-18T14:46:58.581Z [INFO] notification-service - Database INSERT on payments - Execution time: 359ms - Rows affected: 67 - RequestID: ws3q1ftjc7e +2025-06-18T14:46:58.681Z [TRACE] user-service - Operation: notification_queued - Processing time: 646ms - RequestID: i3i7lmh1ajg +2025-06-18T14:46:58.781Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 428ms - RequestID: qbmuy6erhtl +2025-06-18T14:46:58.881Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.81.206 - RequestID: dfomhf6g6fi +2025-06-18T14:46:58.981Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 200 - Response time: 495ms - IP: 192.168.187.199 - User: user_1017 - RequestID: oruz8lixl4 +2025-06-18T14:46:59.081Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 221ms - Rows affected: 46 - RequestID: 9hy62hio0mp +2025-06-18T14:46:59.181Z [INFO] order-service - GET /api/v1/users - Status: 401 - Response time: 1395ms - IP: 192.168.32.38 - User: user_1007 - RequestID: v3oucms08y +2025-06-18T14:46:59.281Z [DEBUG] payment-service - Operation: email_sent - Processing time: 581ms - RequestID: g2lq3lyqxoj +2025-06-18T14:46:59.381Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 280ms - Rows affected: 4 - RequestID: a8m04wmb604 +2025-06-18T14:46:59.481Z [TRACE] order-service - Auth event: password_change - User: user_1055 - IP: 192.168.28.146 - RequestID: q1jcsddp6u9 +2025-06-18T14:46:59.581Z [INFO] order-service - Operation: inventory_updated - Processing time: 178ms - RequestID: hhydstygb5g +2025-06-18T14:46:59.681Z [TRACE] inventory-service - Auth event: logout - User: user_1034 - IP: 192.168.79.116 - RequestID: fihl0twvnsp +2025-06-18T14:46:59.781Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 282ms - RequestID: vqobyqmpm6 +2025-06-18T14:46:59.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1016 - IP: 192.168.189.103 - RequestID: cgcgxfjwqwe +2025-06-18T14:46:59.981Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1955ms - IP: 192.168.227.233 - User: user_1085 - RequestID: 6ysh1dsqpga +2025-06-18T14:47:00.081Z [INFO] payment-service - Operation: cache_hit - Processing time: 814ms - RequestID: txlkjxdfuds +2025-06-18T14:47:00.181Z [DEBUG] order-service - DELETE /api/v1/users - Status: 503 - Response time: 1734ms - IP: 192.168.194.41 - User: user_1056 - RequestID: zptqqlu3ad +2025-06-18T14:47:00.281Z [INFO] user-service - GET /api/v1/auth/login - Status: 404 - Response time: 728ms - IP: 192.168.64.33 - User: user_1058 - RequestID: vo1jshkgsrl +2025-06-18T14:47:00.381Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 502 - Response time: 214ms - IP: 192.168.229.123 - User: user_1067 - RequestID: pjdkv5t3vnj +2025-06-18T14:47:00.481Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 181ms - Rows affected: 9 - RequestID: 2ed3i0qfnrb +2025-06-18T14:47:00.581Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 386ms - Rows affected: 90 - RequestID: rjjgu57f8re +2025-06-18T14:47:00.681Z [TRACE] payment-service - Database DELETE on payments - Execution time: 45ms - Rows affected: 56 - RequestID: nrauf7p1dv +2025-06-18T14:47:00.781Z [DEBUG] order-service - Database INSERT on users - Execution time: 455ms - Rows affected: 85 - RequestID: emdvpjett19 +2025-06-18T14:47:00.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 200ms - RequestID: tdyb2hon05 +2025-06-18T14:47:00.981Z [INFO] user-service - Operation: payment_processed - Processing time: 75ms - RequestID: 00yo99ymxkbic +2025-06-18T14:47:01.081Z [INFO] user-service - Operation: notification_queued - Processing time: 305ms - RequestID: o8a6l35jtwi +2025-06-18T14:47:01.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1064 - IP: 192.168.53.133 - RequestID: xskidcp9w8o +2025-06-18T14:47:01.281Z [INFO] order-service - DELETE /api/v1/users - Status: 401 - Response time: 888ms - IP: 192.168.46.63 - User: user_1004 - RequestID: mqo5op3jb8 +2025-06-18T14:47:01.381Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 500 - Response time: 975ms - IP: 192.168.79.141 - User: user_1042 - RequestID: nmtcfkbx51 +2025-06-18T14:47:01.481Z [INFO] auth-service - PUT /api/v1/payments - Status: 502 - Response time: 1039ms - IP: 192.168.138.123 - User: user_1053 - RequestID: 71u5c65mbqc +2025-06-18T14:47:01.581Z [TRACE] user-service - Operation: email_sent - Processing time: 539ms - RequestID: j0rc0af36j +2025-06-18T14:47:01.681Z [INFO] auth-service - Database SELECT on orders - Execution time: 206ms - Rows affected: 91 - RequestID: b39ji9rnq1l +2025-06-18T14:47:01.781Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 305ms - Rows affected: 66 - RequestID: qtsb80v9cng +2025-06-18T14:47:01.881Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 345ms - RequestID: gohbqt9dont +2025-06-18T14:47:01.981Z [INFO] user-service - Operation: cache_hit - Processing time: 85ms - RequestID: oqi8m03dfpc +2025-06-18T14:47:02.081Z [INFO] auth-service - Operation: inventory_updated - Processing time: 480ms - RequestID: 2ps8qyp0j2p +2025-06-18T14:47:02.181Z [INFO] user-service - Operation: notification_queued - Processing time: 834ms - RequestID: lkeztqu5bz +2025-06-18T14:47:02.281Z [TRACE] payment-service - Operation: email_sent - Processing time: 656ms - RequestID: lel380wp6jd +2025-06-18T14:47:02.381Z [TRACE] order-service - Operation: cache_hit - Processing time: 901ms - RequestID: kcox6p4do2l +2025-06-18T14:47:02.481Z [INFO] payment-service - Database UPDATE on products - Execution time: 376ms - Rows affected: 26 - RequestID: eytun7fud6s +2025-06-18T14:47:02.581Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 329ms - Rows affected: 4 - RequestID: j6t7s0ztw8 +2025-06-18T14:47:02.681Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 30ms - Rows affected: 27 - RequestID: u43u5f2s51 +2025-06-18T14:47:02.781Z [TRACE] inventory-service - Operation: order_created - Processing time: 58ms - RequestID: ly9nc3g27u8 +2025-06-18T14:47:02.881Z [INFO] auth-service - Auth event: login_failed - User: user_1086 - IP: 192.168.196.226 - RequestID: cy49m2mgjg6 +2025-06-18T14:47:02.981Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 502 - Response time: 1024ms - IP: 192.168.68.128 - User: user_1058 - RequestID: zoyt56v7bch +2025-06-18T14:47:03.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 375ms - RequestID: ejhbrzjfvmi +2025-06-18T14:47:03.181Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 79ms - Rows affected: 80 - RequestID: jgfo9ki5x2k +2025-06-18T14:47:03.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 599ms - RequestID: ajn8qa5ir85 +2025-06-18T14:47:03.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.240.169 - RequestID: xq92oabio4d +2025-06-18T14:47:03.481Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 403 - Response time: 21ms - IP: 192.168.170.215 - User: user_1019 - RequestID: x3bl7d42wmq +2025-06-18T14:47:03.581Z [TRACE] payment-service - POST /api/v1/users - Status: 400 - Response time: 1639ms - IP: 192.168.33.76 - User: user_1044 - RequestID: qtfivkxg1c +2025-06-18T14:47:03.681Z [INFO] notification-service - Database SELECT on users - Execution time: 303ms - Rows affected: 88 - RequestID: 01wlwun8lvdn +2025-06-18T14:47:03.781Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 479ms - RequestID: hgsbqbd5kgw +2025-06-18T14:47:03.881Z [TRACE] user-service - Auth event: password_change - User: user_1065 - IP: 192.168.227.233 - RequestID: tk67ey1e0p +2025-06-18T14:47:03.981Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1098ms - IP: 192.168.194.41 - User: user_1058 - RequestID: d49cntossxe +2025-06-18T14:47:04.081Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 502 - Response time: 1478ms - IP: 192.168.144.38 - User: user_1078 - RequestID: t9cb5r21c7p +2025-06-18T14:47:04.181Z [DEBUG] inventory-service - Auth event: password_change - User: user_1075 - IP: 192.168.247.134 - RequestID: 7s12mt7j0yc +2025-06-18T14:47:04.281Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1679ms - IP: 192.168.31.117 - User: user_1041 - RequestID: 7kuenon8oy2 +2025-06-18T14:47:04.381Z [DEBUG] notification-service - Operation: email_sent - Processing time: 448ms - RequestID: h6ordk5fspu +2025-06-18T14:47:04.481Z [INFO] payment-service - Operation: inventory_updated - Processing time: 172ms - RequestID: 01280bp81hr4 +2025-06-18T14:47:04.581Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 643ms - IP: 192.168.240.169 - User: user_1045 - RequestID: dnbiu1o0ot +2025-06-18T14:47:04.681Z [INFO] payment-service - Operation: webhook_sent - Processing time: 838ms - RequestID: 0rconbgvnu9s +2025-06-18T14:47:04.781Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 497ms - Rows affected: 61 - RequestID: m9aiv5r8o4 +2025-06-18T14:47:04.881Z [TRACE] user-service - Auth event: logout - User: user_1047 - IP: 192.168.141.100 - RequestID: x4163xlcq4g +2025-06-18T14:47:04.981Z [TRACE] auth-service - POST /api/v1/inventory - Status: 401 - Response time: 497ms - IP: 192.168.133.7 - User: user_1015 - RequestID: grj7bamz6x5 +2025-06-18T14:47:05.081Z [DEBUG] order-service - Database DELETE on payments - Execution time: 339ms - Rows affected: 83 - RequestID: 7cocxis857w +2025-06-18T14:47:05.181Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 100ms - Rows affected: 26 - RequestID: lhtarkmpj7i +2025-06-18T14:47:05.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.144.38 - RequestID: ce7uostdxbf +2025-06-18T14:47:05.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 597ms - RequestID: b1os51i38e +2025-06-18T14:47:05.481Z [DEBUG] order-service - Database INSERT on payments - Execution time: 358ms - Rows affected: 93 - RequestID: xjut5bs1ji +2025-06-18T14:47:05.581Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 200 - Response time: 888ms - IP: 192.168.36.218 - User: user_1049 - RequestID: iw6dwoumowk +2025-06-18T14:47:05.681Z [TRACE] payment-service - Database INSERT on products - Execution time: 138ms - Rows affected: 44 - RequestID: 9i5r9nurmwe +2025-06-18T14:47:05.781Z [TRACE] user-service - Operation: payment_processed - Processing time: 54ms - RequestID: pdlki44t39l +2025-06-18T14:47:05.881Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 482ms - Rows affected: 61 - RequestID: u76n19aqe3 +2025-06-18T14:47:05.981Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 200 - Response time: 1803ms - IP: 192.168.141.100 - User: user_1006 - RequestID: ettpokuq23u +2025-06-18T14:47:06.081Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 446ms - Rows affected: 66 - RequestID: zvkvjngpngc +2025-06-18T14:47:06.181Z [DEBUG] payment-service - Auth event: logout - User: user_1098 - IP: 192.168.97.87 - RequestID: aeppllj7rr9 +2025-06-18T14:47:06.281Z [TRACE] auth-service - Auth event: logout - User: user_1022 - IP: 192.168.100.240 - RequestID: 4bfd6k418t4 +2025-06-18T14:47:06.381Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 820ms - RequestID: zw6miqb8f6 +2025-06-18T14:47:06.481Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1849ms - IP: 192.168.1.152 - User: user_1014 - RequestID: zmyc18669ql +2025-06-18T14:47:06.581Z [TRACE] order-service - Operation: email_sent - Processing time: 904ms - RequestID: pptri8f5jp8 +2025-06-18T14:47:06.681Z [DEBUG] user-service - Database SELECT on products - Execution time: 481ms - Rows affected: 58 - RequestID: 1xfpy9c903e +2025-06-18T14:47:06.781Z [INFO] notification-service - PUT /api/v1/users - Status: 400 - Response time: 1605ms - IP: 192.168.44.5 - User: user_1098 - RequestID: e17ltqa7opi +2025-06-18T14:47:06.881Z [TRACE] user-service - Auth event: login_failed - User: user_1031 - IP: 192.168.81.206 - RequestID: wv3h0pvcuho +2025-06-18T14:47:06.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.232.72 - RequestID: blhtwajrt55 +2025-06-18T14:47:07.081Z [INFO] order-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.133.7 - RequestID: c0v6ooxl199 +2025-06-18T14:47:07.181Z [TRACE] order-service - Auth event: logout - User: user_1037 - IP: 192.168.13.72 - RequestID: 11p0ceuuvvp +2025-06-18T14:47:07.281Z [INFO] notification-service - DELETE /api/v1/users - Status: 401 - Response time: 585ms - IP: 192.168.36.218 - User: user_1048 - RequestID: mi0bpmbgl3 +2025-06-18T14:47:07.381Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1710ms - IP: 192.168.211.72 - User: user_1019 - RequestID: l1z9dp60rco +2025-06-18T14:47:07.481Z [TRACE] user-service - Operation: order_created - Processing time: 620ms - RequestID: gkrc08t31n +2025-06-18T14:47:07.581Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 635ms - IP: 192.168.227.233 - User: user_1090 - RequestID: 7pafmzyynl6 +2025-06-18T14:47:07.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 230ms - RequestID: wjx6w1klwl8 +2025-06-18T14:47:07.781Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 292ms - Rows affected: 68 - RequestID: 7d09i7tl4yb +2025-06-18T14:47:07.881Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 289ms - Rows affected: 42 - RequestID: 7qyjy4yd9su +2025-06-18T14:47:07.981Z [INFO] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 638ms - IP: 192.168.174.114 - User: user_1059 - RequestID: aoumwc8w4wr +2025-06-18T14:47:08.081Z [DEBUG] user-service - Auth event: logout - User: user_1018 - IP: 192.168.227.77 - RequestID: g9nr0kmkuh +2025-06-18T14:47:08.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 573ms - RequestID: 1vgpdhlpf8g +2025-06-18T14:47:08.281Z [INFO] inventory-service - Auth event: password_change - User: user_1000 - IP: 192.168.196.226 - RequestID: cvxqpug912w +2025-06-18T14:47:08.381Z [TRACE] user-service - Operation: cache_hit - Processing time: 746ms - RequestID: k3io6x8e9 +2025-06-18T14:47:08.481Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1637ms - IP: 192.168.189.103 - User: user_1072 - RequestID: 11nj2yfzf17p +2025-06-18T14:47:08.581Z [TRACE] auth-service - POST /api/v1/payments - Status: 503 - Response time: 871ms - IP: 192.168.229.123 - User: user_1057 - RequestID: lc9vm5broi +2025-06-18T14:47:08.681Z [DEBUG] payment-service - Operation: email_sent - Processing time: 522ms - RequestID: v9wl5lblvab +2025-06-18T14:47:08.781Z [TRACE] payment-service - Database INSERT on orders - Execution time: 221ms - Rows affected: 22 - RequestID: mbloo18dae +2025-06-18T14:47:08.881Z [TRACE] auth-service - Database DELETE on orders - Execution time: 401ms - Rows affected: 39 - RequestID: s8zng3vqkqf +2025-06-18T14:47:08.981Z [TRACE] auth-service - Operation: cache_hit - Processing time: 181ms - RequestID: 7wytqhhfuos +2025-06-18T14:47:09.081Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1042ms - IP: 192.168.10.184 - User: user_1016 - RequestID: zixh2k4irg +2025-06-18T14:47:09.181Z [INFO] payment-service - Operation: cache_hit - Processing time: 728ms - RequestID: drg7n88ozcu +2025-06-18T14:47:09.281Z [TRACE] user-service - GET /api/v1/users - Status: 201 - Response time: 948ms - IP: 192.168.174.114 - User: user_1024 - RequestID: i1oa2ka88t +2025-06-18T14:47:09.381Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 502 - Response time: 431ms - IP: 192.168.133.7 - User: user_1054 - RequestID: sje7hcd4sp +2025-06-18T14:47:09.481Z [TRACE] order-service - Auth event: password_change - User: user_1060 - IP: 192.168.181.225 - RequestID: xmadm4rlm3a +2025-06-18T14:47:09.581Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 403 - Response time: 765ms - IP: 192.168.44.5 - User: user_1041 - RequestID: 8t69w6rcty +2025-06-18T14:47:09.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 759ms - RequestID: e37pui65pqo +2025-06-18T14:47:09.781Z [DEBUG] inventory-service - GET /api/v1/users - Status: 503 - Response time: 1556ms - IP: 192.168.144.38 - User: user_1068 - RequestID: fzjmxoww729 +2025-06-18T14:47:09.881Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 239ms - Rows affected: 73 - RequestID: ssr0p6mvnai +2025-06-18T14:47:09.981Z [INFO] user-service - Auth event: logout - User: user_1077 - IP: 192.168.170.215 - RequestID: ex7lx557xor +2025-06-18T14:47:10.081Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 404 - Response time: 1690ms - IP: 192.168.30.79 - User: user_1002 - RequestID: bm71h536i9 +2025-06-18T14:47:10.181Z [INFO] inventory-service - PUT /api/v1/payments - Status: 401 - Response time: 1210ms - IP: 192.168.227.233 - User: user_1056 - RequestID: 5i56xz23tv2 +2025-06-18T14:47:10.281Z [TRACE] auth-service - Operation: cache_hit - Processing time: 1002ms - RequestID: h0ojagnsscg +2025-06-18T14:47:10.381Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1636ms - IP: 192.168.100.240 - User: user_1047 - RequestID: yy5gy4k5wq +2025-06-18T14:47:10.481Z [TRACE] auth-service - Database UPDATE on products - Execution time: 181ms - Rows affected: 33 - RequestID: 2we5xzu6ny5 +2025-06-18T14:47:10.581Z [TRACE] payment-service - GET /api/v1/orders - Status: 503 - Response time: 778ms - IP: 192.168.44.5 - User: user_1002 - RequestID: e3y7e8h29hc +2025-06-18T14:47:10.681Z [INFO] order-service - Auth event: logout - User: user_1049 - IP: 192.168.158.144 - RequestID: wfrtfg7sb5r +2025-06-18T14:47:10.781Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1786ms - IP: 192.168.240.169 - User: user_1028 - RequestID: elq0yl4c8po +2025-06-18T14:47:10.881Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 196ms - Rows affected: 49 - RequestID: pjt0t19511f +2025-06-18T14:47:10.981Z [TRACE] inventory-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 52ms - IP: 192.168.46.63 - User: user_1082 - RequestID: vvy2rlytjhh +2025-06-18T14:47:11.081Z [INFO] inventory-service - Operation: email_sent - Processing time: 278ms - RequestID: si6qn4ni0h +2025-06-18T14:47:11.181Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 394ms - RequestID: om2re7fatk +2025-06-18T14:47:11.281Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 243ms - Rows affected: 22 - RequestID: ziu46qubdkb +2025-06-18T14:47:11.381Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 403 - Response time: 1176ms - IP: 192.168.159.94 - User: user_1053 - RequestID: 1ror4vx3hsk +2025-06-18T14:47:11.481Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1685ms - IP: 192.168.189.103 - User: user_1037 - RequestID: r041qlk96nj +2025-06-18T14:47:11.581Z [TRACE] order-service - Operation: inventory_updated - Processing time: 816ms - RequestID: iy9uhtqd2x +2025-06-18T14:47:11.681Z [TRACE] order-service - Operation: order_created - Processing time: 79ms - RequestID: bolrfmgn69n +2025-06-18T14:47:11.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.159.94 - RequestID: p9n162brkcj +2025-06-18T14:47:11.881Z [DEBUG] inventory-service - Operation: order_created - Processing time: 958ms - RequestID: m37jxxg78d +2025-06-18T14:47:11.981Z [INFO] auth-service - Operation: email_sent - Processing time: 80ms - RequestID: m7of2zegv2 +2025-06-18T14:47:12.081Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 260ms - Rows affected: 50 - RequestID: 7w8ep172ula +2025-06-18T14:47:12.181Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 93ms - Rows affected: 41 - RequestID: xmslbah9uu +2025-06-18T14:47:12.281Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 69ms - RequestID: 6p42jxictan +2025-06-18T14:47:12.381Z [INFO] user-service - Database DELETE on users - Execution time: 410ms - Rows affected: 16 - RequestID: o9jqfgxd5eo +2025-06-18T14:47:12.481Z [TRACE] user-service - PUT /api/v1/inventory - Status: 201 - Response time: 1362ms - IP: 192.168.10.184 - User: user_1099 - RequestID: s60bhde9l6d +2025-06-18T14:47:12.581Z [INFO] order-service - Operation: webhook_sent - Processing time: 708ms - RequestID: 34b830wqfpe +2025-06-18T14:47:12.681Z [TRACE] notification-service - Auth event: logout - User: user_1087 - IP: 192.168.113.218 - RequestID: g4vvjvubgl5 +2025-06-18T14:47:12.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 984ms - RequestID: ol98s1ylhe +2025-06-18T14:47:12.881Z [DEBUG] user-service - Auth event: logout - User: user_1083 - IP: 192.168.235.117 - RequestID: mb31n8wue8e +2025-06-18T14:47:12.981Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 279ms - Rows affected: 25 - RequestID: cfq1i9bhxha +2025-06-18T14:47:13.081Z [INFO] inventory-service - PUT /api/v1/orders - Status: 403 - Response time: 1335ms - IP: 192.168.53.133 - User: user_1037 - RequestID: 7ufzd619xcc +2025-06-18T14:47:13.181Z [DEBUG] payment-service - GET /api/v1/orders - Status: 503 - Response time: 201ms - IP: 192.168.104.37 - User: user_1088 - RequestID: 6j1md1gswmj +2025-06-18T14:47:13.281Z [TRACE] auth-service - Database UPDATE on users - Execution time: 408ms - Rows affected: 95 - RequestID: 61zaspxthmf +2025-06-18T14:47:13.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 309ms - RequestID: 3uae5ug4cur +2025-06-18T14:47:13.481Z [INFO] user-service - Database SELECT on payments - Execution time: 319ms - Rows affected: 31 - RequestID: f3tebqu5fwl +2025-06-18T14:47:13.581Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 173ms - Rows affected: 99 - RequestID: 4t5pjz77388 +2025-06-18T14:47:13.681Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 401 - Response time: 1681ms - IP: 192.168.68.128 - User: user_1026 - RequestID: 3vyih1arzlk +2025-06-18T14:47:13.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1063 - IP: 192.168.227.233 - RequestID: 379rvhl0swl +2025-06-18T14:47:13.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 348ms - RequestID: kzhgcoa7dhi +2025-06-18T14:47:13.981Z [TRACE] order-service - PATCH /api/v1/users - Status: 200 - Response time: 968ms - IP: 192.168.44.5 - User: user_1088 - RequestID: yxulfk4dlp9 +2025-06-18T14:47:14.081Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 472ms - IP: 192.168.11.60 - User: user_1082 - RequestID: tavxj3ms5ar +2025-06-18T14:47:14.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.1.152 - RequestID: 92zwr9o6w7c +2025-06-18T14:47:14.281Z [INFO] inventory-service - Operation: notification_queued - Processing time: 193ms - RequestID: c9lha2majvd +2025-06-18T14:47:14.381Z [TRACE] user-service - POST /api/v1/orders - Status: 201 - Response time: 1040ms - IP: 192.168.44.5 - User: user_1089 - RequestID: i1r4kva58ae +2025-06-18T14:47:14.481Z [INFO] user-service - Auth event: login_success - User: user_1081 - IP: 192.168.104.37 - RequestID: 0zugt54uiiw +2025-06-18T14:47:14.581Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 471ms - Rows affected: 49 - RequestID: p3r0jtncwn +2025-06-18T14:47:14.681Z [INFO] inventory-service - Operation: cache_hit - Processing time: 412ms - RequestID: fnl8ed5fk28 +2025-06-18T14:47:14.781Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 422ms - IP: 192.168.13.72 - User: user_1022 - RequestID: 9zi1607qopi +2025-06-18T14:47:14.881Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 197ms - Rows affected: 35 - RequestID: do8rcjatzhd +2025-06-18T14:47:14.981Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 79ms - Rows affected: 59 - RequestID: mclrc1pe1m +2025-06-18T14:47:15.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.138.123 - RequestID: 04no7kkjo4o9 +2025-06-18T14:47:15.181Z [TRACE] payment-service - Operation: cache_hit - Processing time: 192ms - RequestID: 8h9gya15w75 +2025-06-18T14:47:15.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.53.133 - RequestID: 8puqnw235b9 +2025-06-18T14:47:15.381Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 463ms - RequestID: k296t28jp7d +2025-06-18T14:47:15.481Z [TRACE] payment-service - Auth event: logout - User: user_1092 - IP: 192.168.242.165 - RequestID: 9w4ggslrbu9 +2025-06-18T14:47:15.581Z [TRACE] auth-service - PUT /api/v1/payments - Status: 401 - Response time: 1261ms - IP: 192.168.33.76 - User: user_1094 - RequestID: kbx9iuz2jpk +2025-06-18T14:47:15.681Z [DEBUG] auth-service - Database SELECT on users - Execution time: 446ms - Rows affected: 12 - RequestID: t85tb9jd81l +2025-06-18T14:47:15.781Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 623ms - IP: 192.168.194.41 - User: user_1045 - RequestID: x54qpwfc0cc +2025-06-18T14:47:15.881Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 54ms - Rows affected: 30 - RequestID: xied2de7tv +2025-06-18T14:47:15.981Z [TRACE] notification-service - Auth event: logout - User: user_1035 - IP: 192.168.14.77 - RequestID: 8bconztgjdo +2025-06-18T14:47:16.081Z [DEBUG] payment-service - Database INSERT on users - Execution time: 87ms - Rows affected: 86 - RequestID: eyp13t1qwkm +2025-06-18T14:47:16.181Z [INFO] order-service - Auth event: logout - User: user_1042 - IP: 192.168.68.128 - RequestID: 1bcdb84pg4z +2025-06-18T14:47:16.281Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 378ms - Rows affected: 59 - RequestID: owga27qsq9l +2025-06-18T14:47:16.381Z [TRACE] payment-service - POST /api/v1/users - Status: 404 - Response time: 1899ms - IP: 192.168.196.226 - User: user_1054 - RequestID: ot4wxpt5r +2025-06-18T14:47:16.481Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 11ms - Rows affected: 13 - RequestID: 98weh0wffnk +2025-06-18T14:47:16.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1014 - IP: 192.168.46.63 - RequestID: f6wo1qy360n +2025-06-18T14:47:16.681Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 76ms - RequestID: 8hu5l8eewnj +2025-06-18T14:47:16.781Z [TRACE] order-service - Operation: order_created - Processing time: 491ms - RequestID: s2i4sbws9a +2025-06-18T14:47:16.881Z [DEBUG] user-service - Auth event: login_success - User: user_1069 - IP: 192.168.13.72 - RequestID: 7pvuviolprr +2025-06-18T14:47:16.981Z [INFO] payment-service - Auth event: login_success - User: user_1094 - IP: 192.168.113.218 - RequestID: x0bzz6ouen +2025-06-18T14:47:17.081Z [TRACE] order-service - PATCH /api/v1/payments - Status: 503 - Response time: 724ms - IP: 192.168.158.144 - User: user_1084 - RequestID: a68ql4xlqp4 +2025-06-18T14:47:17.181Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 60ms - Rows affected: 87 - RequestID: 0ajhglh3rv5l +2025-06-18T14:47:17.281Z [INFO] payment-service - POST /api/v1/orders - Status: 201 - Response time: 510ms - IP: 192.168.33.76 - User: user_1082 - RequestID: 8g3s04mhjc4 +2025-06-18T14:47:17.381Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 834ms - RequestID: 2cxelg2gb3v +2025-06-18T14:47:17.481Z [INFO] notification-service - PUT /api/v1/orders - Status: 400 - Response time: 1602ms - IP: 192.168.1.152 - User: user_1067 - RequestID: oys08huae19 +2025-06-18T14:47:17.581Z [TRACE] auth-service - Operation: email_sent - Processing time: 609ms - RequestID: z1fqx2tdud +2025-06-18T14:47:17.681Z [TRACE] inventory-service - Auth event: logout - User: user_1089 - IP: 192.168.31.117 - RequestID: k3v09myztub +2025-06-18T14:47:17.781Z [TRACE] payment-service - Operation: payment_processed - Processing time: 572ms - RequestID: lnd8fahr27g +2025-06-18T14:47:17.881Z [TRACE] notification-service - Auth event: logout - User: user_1026 - IP: 192.168.181.225 - RequestID: psp60bkuo7 +2025-06-18T14:47:17.981Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 166ms - Rows affected: 34 - RequestID: tc9wd9vt9f +2025-06-18T14:47:18.081Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 342ms - RequestID: vnhx34iph9f +2025-06-18T14:47:18.181Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 516ms - RequestID: jw96irhovxt +2025-06-18T14:47:18.281Z [TRACE] notification-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.187.199 - RequestID: 8p0llbi8tt4 +2025-06-18T14:47:18.381Z [INFO] order-service - Operation: cache_hit - Processing time: 104ms - RequestID: axgo3rvp23p +2025-06-18T14:47:18.481Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 346ms - IP: 192.168.113.218 - User: user_1078 - RequestID: i9so1r1mk2r +2025-06-18T14:47:18.581Z [DEBUG] payment-service - Database DELETE on users - Execution time: 384ms - Rows affected: 97 - RequestID: 9ykm6rr1nl8 +2025-06-18T14:47:18.681Z [DEBUG] order-service - Auth event: password_change - User: user_1023 - IP: 192.168.144.38 - RequestID: to574zpv8uk +2025-06-18T14:47:18.781Z [TRACE] payment-service - Operation: order_created - Processing time: 165ms - RequestID: 0r0x104vy1f +2025-06-18T14:47:18.881Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 201 - Response time: 945ms - IP: 192.168.235.117 - User: user_1044 - RequestID: g0q8d4np2mc +2025-06-18T14:47:18.981Z [TRACE] user-service - Operation: email_sent - Processing time: 897ms - RequestID: btidix6z4cq +2025-06-18T14:47:19.081Z [TRACE] user-service - Auth event: login_failed - User: user_1045 - IP: 192.168.144.38 - RequestID: 3kvapllazyj +2025-06-18T14:47:19.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1034 - IP: 192.168.113.218 - RequestID: we1j2t8isq +2025-06-18T14:47:19.281Z [TRACE] payment-service - Operation: order_created - Processing time: 69ms - RequestID: swns7779dt +2025-06-18T14:47:19.381Z [TRACE] payment-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.158.144 - RequestID: iqyymsqo6mt +2025-06-18T14:47:19.481Z [INFO] inventory-service - GET /api/v1/orders - Status: 403 - Response time: 968ms - IP: 192.168.189.103 - User: user_1032 - RequestID: ejw1l0j0fe5 +2025-06-18T14:47:19.581Z [TRACE] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 982ms - IP: 192.168.113.218 - User: user_1026 - RequestID: bknzmytw4cu +2025-06-18T14:47:19.681Z [TRACE] user-service - PATCH /api/v1/orders - Status: 404 - Response time: 1308ms - IP: 192.168.113.218 - User: user_1084 - RequestID: mwduvl846g +2025-06-18T14:47:19.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 51ms - RequestID: 61sko5vr6ef +2025-06-18T14:47:19.881Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 500 - Response time: 1680ms - IP: 192.168.81.206 - User: user_1009 - RequestID: vptmdgc9e3 +2025-06-18T14:47:19.981Z [INFO] order-service - POST /api/v1/orders - Status: 200 - Response time: 329ms - IP: 192.168.229.123 - User: user_1079 - RequestID: j58spkq67zm +2025-06-18T14:47:20.081Z [INFO] notification-service - Database DELETE on users - Execution time: 254ms - Rows affected: 33 - RequestID: xbp087snd2 +2025-06-18T14:47:20.181Z [TRACE] inventory-service - Operation: email_sent - Processing time: 355ms - RequestID: k1pg8w443kc +2025-06-18T14:47:20.281Z [INFO] user-service - PATCH /api/v1/inventory - Status: 403 - Response time: 25ms - IP: 192.168.194.41 - User: user_1079 - RequestID: wqvbwpniiea +2025-06-18T14:47:20.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1014 - IP: 192.168.227.77 - RequestID: vkrqlvpp80m +2025-06-18T14:47:20.481Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.158.144 - RequestID: ipw1nby5c9 +2025-06-18T14:47:20.581Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 883ms - IP: 192.168.36.218 - User: user_1076 - RequestID: 2ikaaa1fpra +2025-06-18T14:47:20.681Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 448ms - Rows affected: 52 - RequestID: i70uszce1u +2025-06-18T14:47:20.781Z [TRACE] user-service - Database UPDATE on orders - Execution time: 224ms - Rows affected: 84 - RequestID: 0e2f2svzlf +2025-06-18T14:47:20.881Z [INFO] order-service - Operation: order_created - Processing time: 1048ms - RequestID: c4yrpr997da +2025-06-18T14:47:20.981Z [TRACE] payment-service - Database UPDATE on users - Execution time: 81ms - Rows affected: 25 - RequestID: rmfzo2pvbfm +2025-06-18T14:47:21.081Z [INFO] inventory-service - Auth event: password_change - User: user_1012 - IP: 192.168.44.5 - RequestID: 61bnedc68kk +2025-06-18T14:47:21.181Z [TRACE] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 33ms - IP: 192.168.187.199 - User: user_1031 - RequestID: 8afwb2rufih +2025-06-18T14:47:21.281Z [INFO] user-service - Auth event: login_failed - User: user_1002 - IP: 192.168.36.218 - RequestID: gwzk0qkwt6 +2025-06-18T14:47:21.381Z [INFO] payment-service - POST /api/v1/orders - Status: 400 - Response time: 1442ms - IP: 192.168.174.114 - User: user_1082 - RequestID: o3r7ejxp09 +2025-06-18T14:47:21.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.211.72 - RequestID: hruerbwh9nm +2025-06-18T14:47:21.581Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 400 - Response time: 927ms - IP: 192.168.147.171 - User: user_1070 - RequestID: 5pc5vtu8bf5 +2025-06-18T14:47:21.681Z [INFO] user-service - GET /api/v1/auth/login - Status: 200 - Response time: 1446ms - IP: 192.168.53.133 - User: user_1029 - RequestID: ue9znhuig4s +2025-06-18T14:47:21.781Z [INFO] notification-service - Auth event: logout - User: user_1031 - IP: 192.168.167.32 - RequestID: vkvltnc4df +2025-06-18T14:47:21.881Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 200 - Response time: 571ms - IP: 192.168.138.123 - User: user_1063 - RequestID: p14dossnxta +2025-06-18T14:47:21.981Z [INFO] auth-service - Auth event: login_success - User: user_1078 - IP: 192.168.79.141 - RequestID: kc73dzxxaq +2025-06-18T14:47:22.081Z [DEBUG] auth-service - Auth event: logout - User: user_1067 - IP: 192.168.229.123 - RequestID: clejr9kajat +2025-06-18T14:47:22.181Z [INFO] user-service - Operation: webhook_sent - Processing time: 842ms - RequestID: 9w7jxsxnxmc +2025-06-18T14:47:22.281Z [DEBUG] order-service - GET /api/v1/payments - Status: 401 - Response time: 198ms - IP: 192.168.229.123 - User: user_1002 - RequestID: ygmqw06yp +2025-06-18T14:47:22.381Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 938ms - RequestID: ylwunv4u26k +2025-06-18T14:47:22.481Z [TRACE] payment-service - Auth event: logout - User: user_1032 - IP: 192.168.133.7 - RequestID: vf7hxstk1h +2025-06-18T14:47:22.581Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1526ms - IP: 192.168.170.215 - User: user_1025 - RequestID: d3ab8x0gdgq +2025-06-18T14:47:22.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.113.218 - RequestID: j1c9h27yd2 +2025-06-18T14:47:22.781Z [TRACE] auth-service - Operation: email_sent - Processing time: 122ms - RequestID: quodio93a6 +2025-06-18T14:47:22.881Z [INFO] payment-service - Database UPDATE on payments - Execution time: 36ms - Rows affected: 46 - RequestID: 3kbrux4mfa2 +2025-06-18T14:47:22.981Z [INFO] user-service - DELETE /api/v1/payments - Status: 403 - Response time: 66ms - IP: 192.168.141.100 - User: user_1065 - RequestID: 4hiysp3xmzo +2025-06-18T14:47:23.081Z [INFO] auth-service - Database DELETE on users - Execution time: 286ms - Rows affected: 30 - RequestID: ordr262tij9 +2025-06-18T14:47:23.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 670ms - RequestID: s7bvyvxz1x +2025-06-18T14:47:23.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.240.169 - RequestID: 0s23tdunfkmn +2025-06-18T14:47:23.381Z [INFO] order-service - Auth event: password_change - User: user_1086 - IP: 192.168.14.77 - RequestID: vst0efj3ypm +2025-06-18T14:47:23.481Z [TRACE] user-service - Auth event: password_change - User: user_1070 - IP: 192.168.79.143 - RequestID: tb198cqqpn +2025-06-18T14:47:23.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.189.103 - RequestID: fpmdue6twgs +2025-06-18T14:47:23.681Z [INFO] notification-service - PUT /api/v1/payments - Status: 403 - Response time: 192ms - IP: 192.168.158.144 - User: user_1034 - RequestID: 6ovigetdopl +2025-06-18T14:47:23.781Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 137ms - Rows affected: 39 - RequestID: 6sczb5g3n69 +2025-06-18T14:47:23.881Z [TRACE] auth-service - Auth event: password_change - User: user_1080 - IP: 192.168.181.225 - RequestID: fooaq23qnxe +2025-06-18T14:47:23.981Z [INFO] auth-service - Database SELECT on orders - Execution time: 180ms - Rows affected: 10 - RequestID: r08q4djv9 +2025-06-18T14:47:24.081Z [INFO] auth-service - Auth event: password_change - User: user_1083 - IP: 192.168.227.233 - RequestID: rb70oh0ndqc +2025-06-18T14:47:24.181Z [DEBUG] payment-service - POST /api/v1/users - Status: 403 - Response time: 560ms - IP: 192.168.97.87 - User: user_1076 - RequestID: ydjdxeog48 +2025-06-18T14:47:24.281Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 419ms - Rows affected: 42 - RequestID: rj9xp6dxkwg +2025-06-18T14:47:24.381Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 237ms - Rows affected: 81 - RequestID: uogbh9umcma +2025-06-18T14:47:24.481Z [INFO] notification-service - Auth event: password_change - User: user_1091 - IP: 192.168.232.72 - RequestID: z6nbj3dg1v +2025-06-18T14:47:24.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.53.133 - RequestID: 488r0lnauo +2025-06-18T14:47:24.681Z [INFO] payment-service - PATCH /api/v1/orders - Status: 500 - Response time: 1576ms - IP: 192.168.194.41 - User: user_1023 - RequestID: klyric2ane +2025-06-18T14:47:24.781Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 502 - Response time: 971ms - IP: 192.168.194.41 - User: user_1067 - RequestID: lffoat5yjfr +2025-06-18T14:47:24.881Z [INFO] notification-service - Auth event: password_change - User: user_1095 - IP: 192.168.232.72 - RequestID: lo8fkcq5h4 +2025-06-18T14:47:24.981Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 502 - Response time: 1910ms - IP: 192.168.68.128 - User: user_1078 - RequestID: d2ft0c1ekcj +2025-06-18T14:47:25.081Z [INFO] auth-service - Database SELECT on users - Execution time: 440ms - Rows affected: 28 - RequestID: 0uzyqelrgjbf +2025-06-18T14:47:25.181Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 484ms - Rows affected: 54 - RequestID: 7eeqreokln6 +2025-06-18T14:47:25.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1093 - IP: 192.168.167.32 - RequestID: 5r006m4lt3 +2025-06-18T14:47:25.381Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 44ms - Rows affected: 90 - RequestID: 0sxygqofwaf +2025-06-18T14:47:25.481Z [DEBUG] payment-service - Auth event: logout - User: user_1049 - IP: 192.168.147.171 - RequestID: mxevlbeanc +2025-06-18T14:47:25.581Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1240ms - IP: 192.168.227.233 - User: user_1044 - RequestID: vjeocju2yb8 +2025-06-18T14:47:25.681Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 456ms - Rows affected: 38 - RequestID: x0o9g6xd9ci +2025-06-18T14:47:25.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.240.169 - RequestID: wixvws4w1cp +2025-06-18T14:47:25.881Z [TRACE] order-service - Operation: cache_hit - Processing time: 881ms - RequestID: nl5xlo22g7 +2025-06-18T14:47:25.981Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 400 - Response time: 962ms - IP: 192.168.79.141 - User: user_1045 - RequestID: qukf2mlsf7c +2025-06-18T14:47:26.081Z [INFO] user-service - Database DELETE on users - Execution time: 468ms - Rows affected: 15 - RequestID: 7tl0mo6v9tk +2025-06-18T14:47:26.181Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.97.87 - RequestID: penpav8rpg8 +2025-06-18T14:47:26.281Z [TRACE] order-service - Database UPDATE on products - Execution time: 68ms - Rows affected: 6 - RequestID: ll6z0jsdih +2025-06-18T14:47:26.381Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 451ms - Rows affected: 0 - RequestID: amis0b2brpg +2025-06-18T14:47:26.481Z [TRACE] payment-service - GET /api/v1/orders - Status: 403 - Response time: 1750ms - IP: 192.168.194.41 - User: user_1021 - RequestID: rdrmkvaltgo +2025-06-18T14:47:26.581Z [DEBUG] order-service - Auth event: password_change - User: user_1073 - IP: 192.168.104.37 - RequestID: cetilwt3hil +2025-06-18T14:47:26.681Z [TRACE] order-service - Database SELECT on payments - Execution time: 389ms - Rows affected: 59 - RequestID: hbocihnjvpe +2025-06-18T14:47:26.781Z [INFO] user-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.227.233 - RequestID: lb4ahtmbjjr +2025-06-18T14:47:26.881Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 281ms - Rows affected: 53 - RequestID: ucqvupwj2ii +2025-06-18T14:47:26.981Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 500 - Response time: 904ms - IP: 192.168.232.72 - User: user_1093 - RequestID: 0m7mxpcsf4sc +2025-06-18T14:47:27.081Z [INFO] inventory-service - Operation: payment_processed - Processing time: 319ms - RequestID: 89o89if53jl +2025-06-18T14:47:27.181Z [DEBUG] order-service - PUT /api/v1/payments - Status: 200 - Response time: 951ms - IP: 192.168.97.87 - User: user_1082 - RequestID: vyxn4m842t +2025-06-18T14:47:27.281Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 456ms - Rows affected: 72 - RequestID: 2198k3alkmd +2025-06-18T14:47:27.381Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 124ms - Rows affected: 43 - RequestID: zw747sv7fcm +2025-06-18T14:47:27.481Z [DEBUG] notification-service - Database DELETE on products - Execution time: 413ms - Rows affected: 19 - RequestID: r13i4kxbj2 +2025-06-18T14:47:27.581Z [INFO] order-service - Auth event: login_failed - User: user_1095 - IP: 192.168.229.123 - RequestID: p9cnnfz32c +2025-06-18T14:47:27.681Z [INFO] auth-service - Database INSERT on orders - Execution time: 91ms - Rows affected: 40 - RequestID: 4rhzoygkwnb +2025-06-18T14:47:27.781Z [DEBUG] inventory-service - Auth event: logout - User: user_1090 - IP: 192.168.113.218 - RequestID: ngbd5c858kj +2025-06-18T14:47:27.881Z [INFO] inventory-service - PATCH /api/v1/users - Status: 403 - Response time: 632ms - IP: 192.168.68.128 - User: user_1078 - RequestID: cljgchu7lyh +2025-06-18T14:47:27.981Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 499ms - Rows affected: 77 - RequestID: 8e245falaji +2025-06-18T14:47:28.081Z [TRACE] order-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.232.72 - RequestID: 64wtrayjkw3 +2025-06-18T14:47:28.181Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 167ms - Rows affected: 16 - RequestID: dv2ce28ixs +2025-06-18T14:47:28.281Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 260ms - Rows affected: 59 - RequestID: x1kvfkjytmm +2025-06-18T14:47:28.381Z [TRACE] order-service - Auth event: password_change - User: user_1084 - IP: 192.168.31.117 - RequestID: 5xwkql136hd +2025-06-18T14:47:28.481Z [TRACE] payment-service - Database DELETE on products - Execution time: 70ms - Rows affected: 90 - RequestID: nrossq8isy +2025-06-18T14:47:28.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1062 - IP: 192.168.30.79 - RequestID: 3gqhn9zkqq9 +2025-06-18T14:47:28.681Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 403 - Response time: 368ms - IP: 192.168.229.123 - User: user_1004 - RequestID: lf9vldys00o +2025-06-18T14:47:28.781Z [DEBUG] order-service - Auth event: login_failed - User: user_1093 - IP: 192.168.44.5 - RequestID: 61xsex4vg56 +2025-06-18T14:47:28.881Z [TRACE] payment-service - Database SELECT on payments - Execution time: 173ms - Rows affected: 43 - RequestID: onk5l7a0y7k +2025-06-18T14:47:28.981Z [INFO] notification-service - Database UPDATE on orders - Execution time: 463ms - Rows affected: 38 - RequestID: 1kv4im7okzj +2025-06-18T14:47:29.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1013 - IP: 192.168.229.123 - RequestID: g8wstwrhmh9 +2025-06-18T14:47:29.181Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 700ms - IP: 192.168.79.143 - User: user_1099 - RequestID: ah99tdunj6j +2025-06-18T14:47:29.281Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 562ms - RequestID: gufabgaoean +2025-06-18T14:47:29.381Z [TRACE] user-service - Database DELETE on products - Execution time: 148ms - Rows affected: 82 - RequestID: tfns7qf9hds +2025-06-18T14:47:29.481Z [DEBUG] payment-service - Database DELETE on users - Execution time: 267ms - Rows affected: 82 - RequestID: mjrf8x2xwd9 +2025-06-18T14:47:29.581Z [TRACE] order-service - POST /api/v1/users - Status: 502 - Response time: 1955ms - IP: 192.168.187.199 - User: user_1003 - RequestID: o4dsani4a0b +2025-06-18T14:47:29.681Z [INFO] notification-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.64.33 - RequestID: l95j3qxsq5 +2025-06-18T14:47:29.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1088 - IP: 192.168.44.5 - RequestID: phipc8u8y +2025-06-18T14:47:29.881Z [INFO] user-service - Auth event: login_success - User: user_1026 - IP: 192.168.196.226 - RequestID: i6rzp7d92l9 +2025-06-18T14:47:29.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.242.165 - RequestID: y4bmbyqcihs +2025-06-18T14:47:30.081Z [DEBUG] payment-service - Auth event: password_change - User: user_1024 - IP: 192.168.194.41 - RequestID: q0043ykytz +2025-06-18T14:47:30.181Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1158ms - IP: 192.168.64.33 - User: user_1024 - RequestID: j7rg55ov75e +2025-06-18T14:47:30.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.167.32 - RequestID: 56q3svxycrt +2025-06-18T14:47:30.381Z [INFO] auth-service - Operation: payment_processed - Processing time: 70ms - RequestID: 79jaj4igfjy +2025-06-18T14:47:30.481Z [INFO] order-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.79.143 - RequestID: 41gocwhrvmj +2025-06-18T14:47:30.581Z [INFO] inventory-service - Operation: email_sent - Processing time: 643ms - RequestID: 0eoynnhbw8t8 +2025-06-18T14:47:30.681Z [DEBUG] payment-service - Auth event: logout - User: user_1032 - IP: 192.168.144.38 - RequestID: 6vfghscqgqs +2025-06-18T14:47:30.781Z [INFO] notification-service - Database UPDATE on products - Execution time: 388ms - Rows affected: 26 - RequestID: 3bmfttwm8ak +2025-06-18T14:47:30.881Z [TRACE] payment-service - Database UPDATE on products - Execution time: 362ms - Rows affected: 63 - RequestID: 3ksibhb69mk +2025-06-18T14:47:30.981Z [DEBUG] order-service - POST /api/v1/users - Status: 502 - Response time: 295ms - IP: 192.168.113.218 - User: user_1047 - RequestID: j0hzvfe3ynb +2025-06-18T14:47:31.081Z [INFO] auth-service - GET /api/v1/auth/login - Status: 400 - Response time: 1274ms - IP: 192.168.68.158 - User: user_1048 - RequestID: 1dovhftr35b +2025-06-18T14:47:31.181Z [TRACE] order-service - GET /api/v1/auth/login - Status: 404 - Response time: 1852ms - IP: 192.168.159.94 - User: user_1003 - RequestID: yft4rwq0a0c +2025-06-18T14:47:31.281Z [INFO] payment-service - GET /api/v1/auth/login - Status: 200 - Response time: 1381ms - IP: 192.168.167.32 - User: user_1069 - RequestID: r1232u23bmc +2025-06-18T14:47:31.381Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 362ms - RequestID: zmip0c1txo +2025-06-18T14:47:31.481Z [DEBUG] notification-service - Database DELETE on products - Execution time: 330ms - Rows affected: 65 - RequestID: xbaaa6a5n7i +2025-06-18T14:47:31.581Z [TRACE] order-service - Operation: email_sent - Processing time: 662ms - RequestID: 7mbxllhdzrm +2025-06-18T14:47:31.681Z [INFO] payment-service - Operation: payment_processed - Processing time: 745ms - RequestID: wsl7em9fhs +2025-06-18T14:47:31.781Z [INFO] inventory-service - PATCH /api/v1/users - Status: 200 - Response time: 349ms - IP: 192.168.104.37 - User: user_1006 - RequestID: 4s4vbj3zdwj +2025-06-18T14:47:31.881Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 401 - Response time: 646ms - IP: 192.168.32.38 - User: user_1012 - RequestID: wv6e80pijj +2025-06-18T14:47:31.981Z [DEBUG] notification-service - Auth event: password_change - User: user_1009 - IP: 192.168.113.218 - RequestID: 723nhuiehqd +2025-06-18T14:47:32.081Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 403 - Response time: 1884ms - IP: 192.168.11.60 - User: user_1098 - RequestID: fc5thhconj +2025-06-18T14:47:32.181Z [TRACE] payment-service - Operation: cache_hit - Processing time: 77ms - RequestID: vlc5kklnict +2025-06-18T14:47:32.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1070 - IP: 192.168.79.143 - RequestID: p9p2wg9o74g +2025-06-18T14:47:32.381Z [TRACE] order-service - Auth event: login_success - User: user_1059 - IP: 192.168.10.184 - RequestID: olvb2bo50l +2025-06-18T14:47:32.481Z [INFO] order-service - Database DELETE on products - Execution time: 73ms - Rows affected: 20 - RequestID: iught4jqq3g +2025-06-18T14:47:32.581Z [TRACE] auth-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.158.144 - RequestID: ksttvr9e4qg +2025-06-18T14:47:32.681Z [DEBUG] order-service - Operation: payment_processed - Processing time: 258ms - RequestID: 56bvy02p1xk +2025-06-18T14:47:32.781Z [INFO] payment-service - Database DELETE on users - Execution time: 169ms - Rows affected: 86 - RequestID: 6ajzeon1fo2 +2025-06-18T14:47:32.881Z [DEBUG] order-service - Auth event: password_change - User: user_1022 - IP: 192.168.32.38 - RequestID: d86ezh93dnm +2025-06-18T14:47:32.981Z [TRACE] notification-service - Auth event: login_success - User: user_1037 - IP: 192.168.81.206 - RequestID: wxm8ejzlhm +2025-06-18T14:47:33.081Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1794ms - IP: 192.168.11.60 - User: user_1088 - RequestID: 8a5a3tmluoy +2025-06-18T14:47:33.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.44.5 - RequestID: aafi0hidcw4 +2025-06-18T14:47:33.281Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 500 - Response time: 748ms - IP: 192.168.174.114 - User: user_1073 - RequestID: g1e2zc4v1ta +2025-06-18T14:47:33.381Z [INFO] notification-service - Auth event: logout - User: user_1052 - IP: 192.168.141.100 - RequestID: mpfcwzlrfvo +2025-06-18T14:47:33.481Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1026ms - IP: 192.168.97.87 - User: user_1013 - RequestID: g93v91br53b +2025-06-18T14:47:33.581Z [INFO] notification-service - GET /api/v1/users - Status: 503 - Response time: 871ms - IP: 192.168.13.72 - User: user_1090 - RequestID: 2s9oj6n6wgl +2025-06-18T14:47:33.681Z [TRACE] payment-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.240.169 - RequestID: zqach7n87ds +2025-06-18T14:47:33.781Z [DEBUG] notification-service - Database INSERT on users - Execution time: 160ms - Rows affected: 98 - RequestID: zbn6amya2co +2025-06-18T14:47:33.881Z [INFO] notification-service - Database UPDATE on users - Execution time: 65ms - Rows affected: 60 - RequestID: 2bd61m94mgc +2025-06-18T14:47:33.981Z [DEBUG] payment-service - Auth event: logout - User: user_1009 - IP: 192.168.196.226 - RequestID: 0fbql8nb73up +2025-06-18T14:47:34.081Z [TRACE] user-service - Database INSERT on products - Execution time: 166ms - Rows affected: 50 - RequestID: qeyy4qja7k +2025-06-18T14:47:34.181Z [INFO] auth-service - Auth event: password_change - User: user_1099 - IP: 192.168.144.38 - RequestID: ax92ab9yahf +2025-06-18T14:47:34.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.159.94 - RequestID: dbifwi3awzn +2025-06-18T14:47:34.381Z [DEBUG] payment-service - Database SELECT on products - Execution time: 168ms - Rows affected: 43 - RequestID: js97m23l86 +2025-06-18T14:47:34.481Z [DEBUG] auth-service - Auth event: login_failed - User: user_1047 - IP: 192.168.196.226 - RequestID: atmdjendmos +2025-06-18T14:47:34.581Z [INFO] order-service - POST /api/v1/payments - Status: 400 - Response time: 1398ms - IP: 192.168.68.128 - User: user_1079 - RequestID: btzt2vmu2c5 +2025-06-18T14:47:34.681Z [TRACE] user-service - Database INSERT on payments - Execution time: 167ms - Rows affected: 65 - RequestID: tvao8nzplfb +2025-06-18T14:47:34.781Z [INFO] user-service - GET /api/v1/users - Status: 403 - Response time: 1988ms - IP: 192.168.44.5 - User: user_1069 - RequestID: 5911bcu9xgr +2025-06-18T14:47:34.881Z [INFO] order-service - Operation: cache_hit - Processing time: 409ms - RequestID: 77esati3zl +2025-06-18T14:47:34.981Z [INFO] order-service - Database UPDATE on orders - Execution time: 188ms - Rows affected: 68 - RequestID: me1vo713mue +2025-06-18T14:47:35.081Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 406ms - Rows affected: 81 - RequestID: zm8oe7xop1 +2025-06-18T14:47:35.181Z [TRACE] notification-service - Operation: notification_queued - Processing time: 458ms - RequestID: pat4xx08nps +2025-06-18T14:47:35.281Z [DEBUG] notification-service - GET /api/v1/users - Status: 201 - Response time: 991ms - IP: 192.168.229.123 - User: user_1048 - RequestID: l60khyipjoj +2025-06-18T14:47:35.381Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 3ms - Rows affected: 45 - RequestID: kgldlhdf4jq +2025-06-18T14:47:35.481Z [INFO] user-service - Operation: order_created - Processing time: 237ms - RequestID: o3los06xxf +2025-06-18T14:47:35.581Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 360ms - Rows affected: 42 - RequestID: o3potvwh3kp +2025-06-18T14:47:35.681Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 411ms - Rows affected: 66 - RequestID: mkd9k00371r +2025-06-18T14:47:35.781Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 1011ms - RequestID: 2wynxdmu25t +2025-06-18T14:47:35.881Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 306ms - RequestID: q4wwzu53d +2025-06-18T14:47:35.981Z [INFO] inventory-service - Operation: cache_miss - Processing time: 658ms - RequestID: cejn44k9nbq +2025-06-18T14:47:36.081Z [TRACE] inventory-service - Database INSERT on products - Execution time: 1ms - Rows affected: 57 - RequestID: phiti387p7 +2025-06-18T14:47:36.181Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 401 - Response time: 111ms - IP: 192.168.229.123 - User: user_1018 - RequestID: n6edrel6r0h +2025-06-18T14:47:36.281Z [DEBUG] order-service - Auth event: logout - User: user_1080 - IP: 192.168.46.63 - RequestID: 0e5bq7pnq8lp +2025-06-18T14:47:36.381Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 542ms - RequestID: ydbv5hcrjr +2025-06-18T14:47:36.481Z [INFO] payment-service - GET /api/v1/users - Status: 401 - Response time: 164ms - IP: 192.168.158.144 - User: user_1065 - RequestID: x0fe3o8u52f +2025-06-18T14:47:36.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1010 - IP: 192.168.144.38 - RequestID: gy5cnjweqst +2025-06-18T14:47:36.681Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1823ms - IP: 192.168.44.5 - User: user_1045 - RequestID: 0mzo8efdvfw +2025-06-18T14:47:36.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.240.169 - RequestID: zb8yvop0u3j +2025-06-18T14:47:36.881Z [TRACE] payment-service - Operation: payment_processed - Processing time: 926ms - RequestID: m6bmjh04o8 +2025-06-18T14:47:36.981Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.227.233 - RequestID: 0ivasaylovq6 +2025-06-18T14:47:37.081Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 396ms - Rows affected: 53 - RequestID: ijy4b7seius +2025-06-18T14:47:37.181Z [DEBUG] auth-service - GET /api/v1/orders - Status: 201 - Response time: 508ms - IP: 192.168.68.158 - User: user_1069 - RequestID: u2x800o0mzp +2025-06-18T14:47:37.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1074 - IP: 192.168.30.79 - RequestID: zw4aewjhsde +2025-06-18T14:47:37.381Z [INFO] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 31ms - IP: 192.168.174.114 - User: user_1029 - RequestID: ea8mrsna6yf +2025-06-18T14:47:37.481Z [INFO] auth-service - Operation: payment_processed - Processing time: 709ms - RequestID: 5xos89hwqo +2025-06-18T14:47:37.581Z [INFO] inventory-service - Database UPDATE on users - Execution time: 420ms - Rows affected: 75 - RequestID: q06ihy1v1ig +2025-06-18T14:47:37.681Z [INFO] inventory-service - Database DELETE on orders - Execution time: 477ms - Rows affected: 87 - RequestID: tbsbr1wvc5a +2025-06-18T14:47:37.781Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 332ms - Rows affected: 22 - RequestID: 53f59ek05es +2025-06-18T14:47:37.881Z [TRACE] payment-service - Operation: payment_processed - Processing time: 238ms - RequestID: 6l9jy6fsf3b +2025-06-18T14:47:37.981Z [TRACE] user-service - Database UPDATE on orders - Execution time: 253ms - Rows affected: 85 - RequestID: tiuu9dymeil +2025-06-18T14:47:38.081Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1812ms - IP: 192.168.46.63 - User: user_1078 - RequestID: 4amvbg98dq9 +2025-06-18T14:47:38.181Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1387ms - IP: 192.168.167.32 - User: user_1020 - RequestID: 4ktndnes3o5 +2025-06-18T14:47:38.281Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1273ms - IP: 192.168.158.144 - User: user_1015 - RequestID: mg855xfvpwq +2025-06-18T14:47:38.381Z [DEBUG] order-service - Database SELECT on orders - Execution time: 72ms - Rows affected: 35 - RequestID: lhonu3psnws +2025-06-18T14:47:38.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1022 - IP: 192.168.33.76 - RequestID: k285pl0e54 +2025-06-18T14:47:38.581Z [INFO] auth-service - Auth event: password_change - User: user_1027 - IP: 192.168.141.100 - RequestID: kia7aztpfm +2025-06-18T14:47:38.681Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 124ms - Rows affected: 60 - RequestID: npja9jb8q9d +2025-06-18T14:47:38.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 349ms - RequestID: 5fqd9yamihg +2025-06-18T14:47:38.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.232.72 - RequestID: adwvwc79vrl +2025-06-18T14:47:38.981Z [DEBUG] order-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.211.72 - RequestID: pe8tdqigd2h +2025-06-18T14:47:39.081Z [DEBUG] user-service - Operation: payment_processed - Processing time: 412ms - RequestID: mpvu2k3vt0g +2025-06-18T14:47:39.181Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 721ms - RequestID: vo9tcbkwusn +2025-06-18T14:47:39.281Z [INFO] auth-service - DELETE /api/v1/users - Status: 403 - Response time: 673ms - IP: 192.168.46.63 - User: user_1067 - RequestID: raimjt6c9t +2025-06-18T14:47:39.381Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 200 - Response time: 219ms - IP: 192.168.211.72 - User: user_1027 - RequestID: 7xvt2vv4ifp +2025-06-18T14:47:39.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1095 - IP: 192.168.147.171 - RequestID: mfq5uq025g +2025-06-18T14:47:39.581Z [DEBUG] order-service - Auth event: password_change - User: user_1018 - IP: 192.168.141.100 - RequestID: 0tqrojk3bzj +2025-06-18T14:47:39.681Z [INFO] payment-service - Database UPDATE on products - Execution time: 448ms - Rows affected: 23 - RequestID: 2i793q7ka74 +2025-06-18T14:47:39.781Z [DEBUG] notification-service - Auth event: password_change - User: user_1056 - IP: 192.168.144.38 - RequestID: 290ipwke2ps +2025-06-18T14:47:39.881Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1240ms - IP: 192.168.46.63 - User: user_1046 - RequestID: llywbjn63xc +2025-06-18T14:47:39.981Z [INFO] auth-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.247.134 - RequestID: izreg5o3mws +2025-06-18T14:47:40.081Z [INFO] inventory-service - POST /api/v1/payments - Status: 503 - Response time: 1312ms - IP: 192.168.11.60 - User: user_1086 - RequestID: pl52aquf2h +2025-06-18T14:47:40.181Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 1035ms - RequestID: 7zj5573aty +2025-06-18T14:47:40.281Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 500 - Response time: 1803ms - IP: 192.168.240.169 - User: user_1095 - RequestID: vpicuktld2m +2025-06-18T14:47:40.381Z [TRACE] inventory-service - Auth event: password_change - User: user_1019 - IP: 192.168.79.141 - RequestID: rdnla2eow1 +2025-06-18T14:47:40.481Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1689ms - IP: 192.168.85.229 - User: user_1018 - RequestID: x4t72zqnkd9 +2025-06-18T14:47:40.581Z [TRACE] payment-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.53.133 - RequestID: hqwvb8x8bx +2025-06-18T14:47:40.681Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 172ms - Rows affected: 75 - RequestID: 8011iaa4wn +2025-06-18T14:47:40.781Z [INFO] user-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1603ms - IP: 192.168.235.117 - User: user_1023 - RequestID: 5dojcxnuufy +2025-06-18T14:47:40.881Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 570ms - IP: 192.168.97.87 - User: user_1081 - RequestID: jf34tyq2mya +2025-06-18T14:47:40.981Z [INFO] auth-service - Auth event: logout - User: user_1087 - IP: 192.168.144.38 - RequestID: nm2e3zs3mn +2025-06-18T14:47:41.081Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1732ms - IP: 192.168.235.117 - User: user_1043 - RequestID: inxvmbcv4s +2025-06-18T14:47:41.181Z [DEBUG] auth-service - PUT /api/v1/users - Status: 502 - Response time: 132ms - IP: 192.168.247.134 - User: user_1036 - RequestID: f9cek7aqykt +2025-06-18T14:47:41.281Z [INFO] user-service - Operation: payment_processed - Processing time: 958ms - RequestID: 2bjzemybzzc +2025-06-18T14:47:41.381Z [INFO] notification-service - Database SELECT on users - Execution time: 460ms - Rows affected: 1 - RequestID: nuo7lq69a7 +2025-06-18T14:47:41.481Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 403 - Response time: 686ms - IP: 192.168.189.103 - User: user_1021 - RequestID: cl6uhvpbsd +2025-06-18T14:47:41.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.85.229 - RequestID: an6vu9sxn5v +2025-06-18T14:47:41.681Z [DEBUG] user-service - Database DELETE on orders - Execution time: 349ms - Rows affected: 17 - RequestID: 9xc7idqtd2w +2025-06-18T14:47:41.781Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 564ms - IP: 192.168.100.240 - User: user_1054 - RequestID: o0gcxhldia +2025-06-18T14:47:41.881Z [INFO] order-service - Operation: notification_queued - Processing time: 505ms - RequestID: 8f59u2c6wwm +2025-06-18T14:47:41.981Z [TRACE] user-service - Operation: webhook_sent - Processing time: 811ms - RequestID: z8jx3fh851 +2025-06-18T14:47:42.081Z [DEBUG] inventory-service - Auth event: password_change - User: user_1041 - IP: 192.168.194.41 - RequestID: da4bkdqm2k +2025-06-18T14:47:42.181Z [DEBUG] order-service - GET /api/v1/users - Status: 201 - Response time: 429ms - IP: 192.168.79.143 - User: user_1061 - RequestID: mfihfvz8mwb +2025-06-18T14:47:42.281Z [DEBUG] payment-service - Operation: email_sent - Processing time: 531ms - RequestID: qyhngwyvexd +2025-06-18T14:47:42.381Z [INFO] auth-service - GET /api/v1/payments - Status: 401 - Response time: 714ms - IP: 192.168.141.100 - User: user_1063 - RequestID: av713umpgp8 +2025-06-18T14:47:42.481Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 920ms - RequestID: nzu171u7dif +2025-06-18T14:47:42.581Z [DEBUG] user-service - Auth event: password_change - User: user_1056 - IP: 192.168.147.171 - RequestID: n8buvrmc63q +2025-06-18T14:47:42.681Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 500 - Response time: 1170ms - IP: 192.168.211.72 - User: user_1078 - RequestID: ihi942qnr4s +2025-06-18T14:47:42.781Z [INFO] user-service - Operation: inventory_updated - Processing time: 450ms - RequestID: 8f1t28q4d1o +2025-06-18T14:47:42.881Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 502 - Response time: 811ms - IP: 192.168.100.240 - User: user_1020 - RequestID: ls4xy28jr1h +2025-06-18T14:47:42.981Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.79.141 - RequestID: 2cyl2295i9m +2025-06-18T14:47:43.081Z [DEBUG] payment-service - Auth event: logout - User: user_1074 - IP: 192.168.211.72 - RequestID: rmo4y4e3zqi +2025-06-18T14:47:43.181Z [INFO] inventory-service - Operation: email_sent - Processing time: 770ms - RequestID: cah5c28nrz +2025-06-18T14:47:43.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 199ms - RequestID: seg4lazvrw7 +2025-06-18T14:47:43.381Z [INFO] notification-service - GET /api/v1/auth/login - Status: 200 - Response time: 913ms - IP: 192.168.227.233 - User: user_1016 - RequestID: tibj1cqh9bm +2025-06-18T14:47:43.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 63ms - RequestID: sytvz2n2b3n +2025-06-18T14:47:43.581Z [DEBUG] notification-service - Auth event: logout - User: user_1024 - IP: 192.168.141.100 - RequestID: qxcwazgksnh +2025-06-18T14:47:43.681Z [INFO] payment-service - Operation: cache_hit - Processing time: 340ms - RequestID: vplm7z047hl +2025-06-18T14:47:43.781Z [TRACE] auth-service - Database INSERT on users - Execution time: 157ms - Rows affected: 63 - RequestID: av3ve8ngpu +2025-06-18T14:47:43.881Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 260ms - IP: 192.168.46.63 - User: user_1077 - RequestID: knnzp63w1ol +2025-06-18T14:47:43.981Z [TRACE] notification-service - Operation: cache_hit - Processing time: 772ms - RequestID: gkbxdg2hqgm +2025-06-18T14:47:44.081Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 373ms - Rows affected: 42 - RequestID: r3p56a80v1 +2025-06-18T14:47:44.181Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 418ms - Rows affected: 66 - RequestID: 3ctp9yc8dh9 +2025-06-18T14:47:44.281Z [INFO] order-service - PATCH /api/v1/orders - Status: 403 - Response time: 1556ms - IP: 192.168.247.134 - User: user_1006 - RequestID: asah3fc7bfq +2025-06-18T14:47:44.381Z [INFO] user-service - Auth event: logout - User: user_1039 - IP: 192.168.79.143 - RequestID: x845zqykyy +2025-06-18T14:47:44.481Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 469ms - RequestID: skvv5pamddh +2025-06-18T14:47:44.581Z [INFO] notification-service - Database INSERT on sessions - Execution time: 151ms - Rows affected: 4 - RequestID: lvait7slswr +2025-06-18T14:47:44.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1040 - IP: 192.168.181.225 - RequestID: p604xu4ekh8 +2025-06-18T14:47:44.781Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1002ms - RequestID: wjj7c2gx1t +2025-06-18T14:47:44.881Z [INFO] order-service - Database UPDATE on orders - Execution time: 158ms - Rows affected: 3 - RequestID: ulvs4fxxwje +2025-06-18T14:47:44.981Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 502 - Response time: 656ms - IP: 192.168.187.199 - User: user_1084 - RequestID: e9gfwjv4d07 +2025-06-18T14:47:45.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.144.38 - RequestID: 2kdu8ghyu2k +2025-06-18T14:47:45.181Z [INFO] inventory-service - Database DELETE on users - Execution time: 459ms - Rows affected: 78 - RequestID: wglv066kud +2025-06-18T14:47:45.281Z [INFO] user-service - DELETE /api/v1/inventory - Status: 400 - Response time: 522ms - IP: 192.168.229.123 - User: user_1017 - RequestID: 0ewuohnaobjr +2025-06-18T14:47:45.381Z [INFO] user-service - Operation: payment_processed - Processing time: 960ms - RequestID: 8m03dupa1uq +2025-06-18T14:47:45.481Z [DEBUG] payment-service - Auth event: login_failed - User: user_1051 - IP: 192.168.181.225 - RequestID: x26oz0wza5c +2025-06-18T14:47:45.581Z [TRACE] order-service - Auth event: password_change - User: user_1017 - IP: 192.168.138.123 - RequestID: v6msb5dnfj +2025-06-18T14:47:45.681Z [INFO] auth-service - Operation: cache_hit - Processing time: 694ms - RequestID: 0fbktgvfkvg6 +2025-06-18T14:47:45.781Z [TRACE] order-service - DELETE /api/v1/orders - Status: 503 - Response time: 311ms - IP: 192.168.240.169 - User: user_1040 - RequestID: wbtnw8z3le +2025-06-18T14:47:45.881Z [INFO] order-service - Database DELETE on users - Execution time: 23ms - Rows affected: 95 - RequestID: nsipuhs3z9p +2025-06-18T14:47:45.981Z [TRACE] notification-service - Database DELETE on users - Execution time: 210ms - Rows affected: 69 - RequestID: 16vlwg5nnyj +2025-06-18T14:47:46.081Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 123ms - RequestID: ki7mcz9bggk +2025-06-18T14:47:46.181Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 401 - Response time: 1302ms - IP: 192.168.79.116 - User: user_1020 - RequestID: mz4n5xksy8 +2025-06-18T14:47:46.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.32.38 - RequestID: r7rvq00qb8 +2025-06-18T14:47:46.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.46.63 - RequestID: j90z0dn47cm +2025-06-18T14:47:46.481Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 658ms - RequestID: wyeivsr8ehk +2025-06-18T14:47:46.581Z [TRACE] user-service - Operation: payment_processed - Processing time: 858ms - RequestID: 4wvnp8d7j1d +2025-06-18T14:47:46.681Z [INFO] user-service - Database SELECT on orders - Execution time: 56ms - Rows affected: 89 - RequestID: vzetg2nhe6q +2025-06-18T14:47:46.781Z [TRACE] notification-service - Auth event: login_success - User: user_1079 - IP: 192.168.1.152 - RequestID: 35tpzxss0s7 +2025-06-18T14:47:46.881Z [DEBUG] payment-service - Database DELETE on products - Execution time: 155ms - Rows affected: 89 - RequestID: 47xqo9i8avj +2025-06-18T14:47:46.981Z [INFO] order-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.100.240 - RequestID: u3ek3njyq6 +2025-06-18T14:47:47.081Z [INFO] payment-service - Operation: inventory_updated - Processing time: 521ms - RequestID: ygjxgzoqho9 +2025-06-18T14:47:47.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 697ms - RequestID: uogj6fgea5o +2025-06-18T14:47:47.281Z [INFO] inventory-service - Operation: cache_hit - Processing time: 720ms - RequestID: 7w2xf5cten6 +2025-06-18T14:47:47.381Z [INFO] notification-service - Auth event: login_failed - User: user_1065 - IP: 192.168.31.117 - RequestID: 1qrtc6hb6iy +2025-06-18T14:47:47.481Z [INFO] auth-service - Database DELETE on orders - Execution time: 110ms - Rows affected: 71 - RequestID: dhvvuqn9348 +2025-06-18T14:47:47.581Z [TRACE] notification-service - Database DELETE on orders - Execution time: 121ms - Rows affected: 64 - RequestID: l1pe2upf6ef +2025-06-18T14:47:47.681Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 91ms - RequestID: xiu7uadf1m +2025-06-18T14:47:47.781Z [DEBUG] user-service - Operation: email_sent - Processing time: 141ms - RequestID: p6qni4q06dh +2025-06-18T14:47:47.881Z [TRACE] order-service - Operation: cache_hit - Processing time: 182ms - RequestID: dpm4xm226yk +2025-06-18T14:47:47.981Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 143ms - Rows affected: 99 - RequestID: cgz8qpz9b18 +2025-06-18T14:47:48.081Z [TRACE] order-service - Database UPDATE on payments - Execution time: 146ms - Rows affected: 54 - RequestID: krfrhpu6dep +2025-06-18T14:47:48.181Z [DEBUG] order-service - Database UPDATE on products - Execution time: 488ms - Rows affected: 26 - RequestID: yn0pfik0k0c +2025-06-18T14:47:48.281Z [INFO] auth-service - Auth event: logout - User: user_1007 - IP: 192.168.97.87 - RequestID: cpccj15pk +2025-06-18T14:47:48.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1056 - IP: 192.168.159.94 - RequestID: ap6rnvk1hf9 +2025-06-18T14:47:48.481Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 438ms - Rows affected: 4 - RequestID: 3e8x93b7x6s +2025-06-18T14:47:48.581Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1230ms - IP: 192.168.85.229 - User: user_1012 - RequestID: u71ru0hv1bb +2025-06-18T14:47:48.681Z [DEBUG] notification-service - Database INSERT on users - Execution time: 480ms - Rows affected: 58 - RequestID: r61k3dpl969 +2025-06-18T14:47:48.781Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 414ms - Rows affected: 49 - RequestID: 3u5c61kn8ob +2025-06-18T14:47:48.881Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 57ms - Rows affected: 25 - RequestID: yvvjra62c3g +2025-06-18T14:47:48.981Z [TRACE] user-service - Operation: notification_queued - Processing time: 83ms - RequestID: ijkvvil1vub +2025-06-18T14:47:49.081Z [TRACE] payment-service - Operation: notification_queued - Processing time: 978ms - RequestID: lsj76y773 +2025-06-18T14:47:49.181Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 980ms - RequestID: w87jtsms4jl +2025-06-18T14:47:49.281Z [TRACE] payment-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.97.87 - RequestID: yv3wbdz55p +2025-06-18T14:47:49.381Z [DEBUG] auth-service - Auth event: login_failed - User: user_1010 - IP: 192.168.13.72 - RequestID: 7acft6tr2ew +2025-06-18T14:47:49.481Z [TRACE] inventory-service - Operation: email_sent - Processing time: 476ms - RequestID: yrzzg9g8a5 +2025-06-18T14:47:49.581Z [INFO] payment-service - Operation: payment_processed - Processing time: 344ms - RequestID: ok65s0bcg1i +2025-06-18T14:47:49.681Z [DEBUG] user-service - Auth event: login_failed - User: user_1036 - IP: 192.168.170.215 - RequestID: 15f9f32al3q +2025-06-18T14:47:49.781Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 386ms - Rows affected: 35 - RequestID: rdem3oj28cr +2025-06-18T14:47:49.881Z [INFO] user-service - Operation: cache_miss - Processing time: 202ms - RequestID: jvhk86mfg9f +2025-06-18T14:47:49.981Z [TRACE] payment-service - Auth event: password_change - User: user_1099 - IP: 192.168.104.37 - RequestID: 9d1fcu1tax8 +2025-06-18T14:47:50.081Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 404ms - Rows affected: 5 - RequestID: n6uyamq0cts +2025-06-18T14:47:50.181Z [DEBUG] user-service - Auth event: password_change - User: user_1030 - IP: 192.168.138.123 - RequestID: nglthentg5q +2025-06-18T14:47:50.281Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 120ms - Rows affected: 24 - RequestID: ybw1i1nlwj +2025-06-18T14:47:50.381Z [TRACE] order-service - Operation: order_created - Processing time: 243ms - RequestID: 5ba4apxd865 +2025-06-18T14:47:50.481Z [INFO] payment-service - Database UPDATE on products - Execution time: 8ms - Rows affected: 32 - RequestID: v95s9b5lm3 +2025-06-18T14:47:50.581Z [INFO] auth-service - Operation: order_created - Processing time: 467ms - RequestID: mxvi5a9ypul +2025-06-18T14:47:50.681Z [INFO] order-service - Auth event: logout - User: user_1023 - IP: 192.168.181.225 - RequestID: abe22l78s8m +2025-06-18T14:47:50.781Z [DEBUG] inventory-service - Auth event: logout - User: user_1093 - IP: 192.168.187.199 - RequestID: 3x0hnoaunjb +2025-06-18T14:47:50.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 500ms - RequestID: d2eo0q13t4q +2025-06-18T14:47:50.981Z [INFO] notification-service - Database UPDATE on orders - Execution time: 395ms - Rows affected: 7 - RequestID: 3wm3a0lw8kg +2025-06-18T14:47:51.081Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 16ms - Rows affected: 99 - RequestID: 3spd91cudab +2025-06-18T14:47:51.181Z [DEBUG] order-service - Auth event: login_success - User: user_1046 - IP: 192.168.68.128 - RequestID: yewzxipa2ni +2025-06-18T14:47:51.281Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1092ms - IP: 192.168.46.63 - User: user_1051 - RequestID: 7a81ku906o +2025-06-18T14:47:51.381Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 1986ms - IP: 192.168.44.5 - User: user_1044 - RequestID: fv7rdooha0o +2025-06-18T14:47:51.481Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 201 - Response time: 1369ms - IP: 192.168.79.143 - User: user_1055 - RequestID: su4cnssd2l +2025-06-18T14:47:51.581Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 412ms - Rows affected: 17 - RequestID: 0rarfo3eul3 +2025-06-18T14:47:51.681Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 224ms - Rows affected: 34 - RequestID: 9ebqij7aiar +2025-06-18T14:47:51.781Z [DEBUG] order-service - Database DELETE on products - Execution time: 358ms - Rows affected: 94 - RequestID: jcbqqfcnx +2025-06-18T14:47:51.881Z [TRACE] notification-service - Operation: payment_processed - Processing time: 435ms - RequestID: s8vgwm7rv3e +2025-06-18T14:47:51.981Z [TRACE] auth-service - Operation: payment_processed - Processing time: 959ms - RequestID: twwcj7qdbh +2025-06-18T14:47:52.081Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1432ms - IP: 192.168.85.229 - User: user_1087 - RequestID: 7tcznl1w8mq +2025-06-18T14:47:52.181Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 411ms - Rows affected: 17 - RequestID: z3iru3g9fuf +2025-06-18T14:47:52.281Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 313ms - Rows affected: 93 - RequestID: zaccrdlbyu +2025-06-18T14:47:52.381Z [INFO] order-service - Operation: email_sent - Processing time: 324ms - RequestID: npat4232697 +2025-06-18T14:47:52.481Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 405ms - Rows affected: 40 - RequestID: vyps6hllys +2025-06-18T14:47:52.581Z [TRACE] user-service - Operation: cache_miss - Processing time: 432ms - RequestID: 9qlqmq8npls +2025-06-18T14:47:52.681Z [DEBUG] user-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.64.33 - RequestID: yc8lnv5s0w +2025-06-18T14:47:52.781Z [TRACE] inventory-service - Database DELETE on products - Execution time: 231ms - Rows affected: 31 - RequestID: dqlp9po6b8k +2025-06-18T14:47:52.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1028 - IP: 192.168.240.169 - RequestID: aob16h7ewhc +2025-06-18T14:47:52.981Z [INFO] order-service - DELETE /api/v1/orders - Status: 503 - Response time: 1868ms - IP: 192.168.14.77 - User: user_1012 - RequestID: 5u5hblyr1qp +2025-06-18T14:47:53.081Z [TRACE] user-service - Database SELECT on users - Execution time: 394ms - Rows affected: 89 - RequestID: zezmr4uuore +2025-06-18T14:47:53.181Z [INFO] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 1707ms - IP: 192.168.227.233 - User: user_1043 - RequestID: 91e95vnmw7s +2025-06-18T14:47:53.281Z [INFO] order-service - Auth event: login_success - User: user_1001 - IP: 192.168.13.72 - RequestID: uk4d2ls3gm +2025-06-18T14:47:53.381Z [TRACE] payment-service - Database SELECT on products - Execution time: 188ms - Rows affected: 8 - RequestID: vaam7793wdi +2025-06-18T14:47:53.481Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 963ms - IP: 192.168.10.184 - User: user_1054 - RequestID: mxflg3u5g48 +2025-06-18T14:47:53.581Z [TRACE] notification-service - POST /api/v1/payments - Status: 503 - Response time: 168ms - IP: 192.168.187.199 - User: user_1037 - RequestID: bk97wtnvuqv +2025-06-18T14:47:53.681Z [INFO] notification-service - PUT /api/v1/inventory - Status: 403 - Response time: 1955ms - IP: 192.168.240.169 - User: user_1079 - RequestID: 63ezu12gk2j +2025-06-18T14:47:53.781Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 503 - Response time: 350ms - IP: 192.168.97.87 - User: user_1003 - RequestID: 11d0s576bwdb +2025-06-18T14:47:53.881Z [TRACE] auth-service - Auth event: login_success - User: user_1060 - IP: 192.168.32.38 - RequestID: ffnbqfdp7np +2025-06-18T14:47:53.981Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 225ms - Rows affected: 99 - RequestID: 7cea07sgxls +2025-06-18T14:47:54.081Z [INFO] payment-service - Operation: email_sent - Processing time: 174ms - RequestID: a7rx0og9edk +2025-06-18T14:47:54.181Z [INFO] inventory-service - Operation: notification_queued - Processing time: 351ms - RequestID: a0keyh7pb0d +2025-06-18T14:47:54.281Z [INFO] user-service - Auth event: login_success - User: user_1040 - IP: 192.168.141.100 - RequestID: qqc87ks3l78 +2025-06-18T14:47:54.381Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 505ms - RequestID: dhmu5xlf2hg +2025-06-18T14:47:54.481Z [INFO] auth-service - PUT /api/v1/users - Status: 500 - Response time: 679ms - IP: 192.168.147.171 - User: user_1079 - RequestID: e1mzq2xigdj +2025-06-18T14:47:54.581Z [TRACE] user-service - Database DELETE on sessions - Execution time: 13ms - Rows affected: 97 - RequestID: 4df7hkxycr4 +2025-06-18T14:47:54.681Z [TRACE] user-service - GET /api/v1/payments - Status: 201 - Response time: 894ms - IP: 192.168.189.103 - User: user_1088 - RequestID: z5tqk12gmyo +2025-06-18T14:47:54.781Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 395ms - Rows affected: 99 - RequestID: bfhco7ww7yj +2025-06-18T14:47:54.881Z [DEBUG] auth-service - Operation: order_created - Processing time: 478ms - RequestID: vfw8ll342tf +2025-06-18T14:47:54.981Z [INFO] user-service - Auth event: login_failed - User: user_1087 - IP: 192.168.133.7 - RequestID: nzjen1ck2qq +2025-06-18T14:47:55.081Z [INFO] payment-service - Auth event: login_success - User: user_1038 - IP: 192.168.187.199 - RequestID: ykgx87c0eg +2025-06-18T14:47:55.181Z [TRACE] order-service - Operation: notification_queued - Processing time: 148ms - RequestID: npwibwcbm9l +2025-06-18T14:47:55.281Z [TRACE] order-service - Auth event: login_failed - User: user_1031 - IP: 192.168.36.218 - RequestID: u5096bcqc3b +2025-06-18T14:47:55.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.79.141 - RequestID: uodqgws32u +2025-06-18T14:47:55.481Z [INFO] auth-service - Database UPDATE on products - Execution time: 365ms - Rows affected: 83 - RequestID: zh9rzhr0ai8 +2025-06-18T14:47:55.581Z [INFO] payment-service - PUT /api/v1/users - Status: 404 - Response time: 1381ms - IP: 192.168.242.165 - User: user_1056 - RequestID: lvgwevp1irp +2025-06-18T14:47:55.681Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 201 - Response time: 1020ms - IP: 192.168.36.218 - User: user_1020 - RequestID: o8drgqk1d2 +2025-06-18T14:47:55.781Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 463ms - Rows affected: 94 - RequestID: m8xrk8q1c5k +2025-06-18T14:47:55.881Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 1029ms - RequestID: a6k7zo973h +2025-06-18T14:47:55.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 267ms - RequestID: 4hjbh6jicep +2025-06-18T14:47:56.081Z [TRACE] auth-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.97.87 - RequestID: iz6ob7t3b8 +2025-06-18T14:47:56.181Z [DEBUG] auth-service - Database DELETE on users - Execution time: 161ms - Rows affected: 21 - RequestID: 3q7vwapwia2 +2025-06-18T14:47:56.281Z [TRACE] user-service - Auth event: login_failed - User: user_1093 - IP: 192.168.97.87 - RequestID: bo2j7mtn2k +2025-06-18T14:47:56.381Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1982ms - IP: 192.168.81.206 - User: user_1003 - RequestID: rvt2f8qz9ha +2025-06-18T14:47:56.481Z [TRACE] order-service - Database INSERT on orders - Execution time: 187ms - Rows affected: 64 - RequestID: 1lbb1p962ph +2025-06-18T14:47:56.581Z [TRACE] auth-service - PUT /api/v1/payments - Status: 201 - Response time: 44ms - IP: 192.168.14.77 - User: user_1059 - RequestID: xdsvlnpk4mf +2025-06-18T14:47:56.681Z [TRACE] auth-service - Auth event: password_change - User: user_1028 - IP: 192.168.147.171 - RequestID: gh91aqv3qxh +2025-06-18T14:47:56.781Z [INFO] order-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.33.76 - RequestID: g96ocbaqv9 +2025-06-18T14:47:56.881Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 591ms - IP: 192.168.141.100 - User: user_1007 - RequestID: 0ecp2mnzs8lv +2025-06-18T14:47:56.981Z [INFO] order-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.97.87 - RequestID: zgwxrcwk2ae +2025-06-18T14:47:57.081Z [DEBUG] user-service - Operation: order_created - Processing time: 660ms - RequestID: uhxghjr8nu9 +2025-06-18T14:47:57.181Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 500 - Response time: 1299ms - IP: 192.168.167.32 - User: user_1026 - RequestID: 4crg7dmv262 +2025-06-18T14:47:57.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1047 - IP: 192.168.232.72 - RequestID: 0fp4x1ld1i7v +2025-06-18T14:47:57.381Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 143ms - Rows affected: 4 - RequestID: l9sibu1vhcg +2025-06-18T14:47:57.481Z [INFO] order-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1341ms - IP: 192.168.11.60 - User: user_1018 - RequestID: pphntvt92zs +2025-06-18T14:47:57.581Z [TRACE] user-service - Operation: order_created - Processing time: 133ms - RequestID: ktfphj7abc7 +2025-06-18T14:47:57.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 170ms - RequestID: mmmsaz6sm6 +2025-06-18T14:47:57.781Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 380ms - Rows affected: 13 - RequestID: 66ygzka7fxi +2025-06-18T14:47:57.881Z [INFO] order-service - Auth event: logout - User: user_1082 - IP: 192.168.79.116 - RequestID: al93zym4qss +2025-06-18T14:47:57.981Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 260ms - Rows affected: 34 - RequestID: 3d4p7ei41lz +2025-06-18T14:47:58.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.68.128 - RequestID: r5ozu7bxr7 +2025-06-18T14:47:58.181Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 821ms - IP: 192.168.187.199 - User: user_1028 - RequestID: wzezy7eyecl +2025-06-18T14:47:58.281Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 368ms - Rows affected: 52 - RequestID: zy4iwsv52dc +2025-06-18T14:47:58.381Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 977ms - RequestID: hj8ixr5bpht +2025-06-18T14:47:58.481Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 185ms - Rows affected: 8 - RequestID: h8wzztmhebk +2025-06-18T14:47:58.581Z [INFO] user-service - Operation: inventory_updated - Processing time: 486ms - RequestID: pm1hx8azzxk +2025-06-18T14:47:58.681Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1318ms - IP: 192.168.229.123 - User: user_1015 - RequestID: wcry5znkbf +2025-06-18T14:47:58.781Z [TRACE] auth-service - Database SELECT on products - Execution time: 170ms - Rows affected: 49 - RequestID: a8tx3dj314h +2025-06-18T14:47:58.881Z [INFO] notification-service - PUT /api/v1/inventory - Status: 200 - Response time: 983ms - IP: 192.168.68.128 - User: user_1040 - RequestID: iiibpmkn4nn +2025-06-18T14:47:58.981Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 502 - Response time: 311ms - IP: 192.168.14.77 - User: user_1018 - RequestID: bg6wlhx49jk +2025-06-18T14:47:59.081Z [INFO] inventory-service - Auth event: login_failed - User: user_1088 - IP: 192.168.144.38 - RequestID: h2qbxqi621k +2025-06-18T14:47:59.181Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1585ms - IP: 192.168.229.123 - User: user_1006 - RequestID: yip0lidwxub +2025-06-18T14:47:59.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 834ms - RequestID: 6x9dysv33zp +2025-06-18T14:47:59.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 569ms - RequestID: vrn1roq8p4 +2025-06-18T14:47:59.481Z [TRACE] user-service - Auth event: logout - User: user_1087 - IP: 192.168.194.41 - RequestID: pfp26kwsibl +2025-06-18T14:47:59.581Z [TRACE] user-service - Auth event: logout - User: user_1002 - IP: 192.168.44.5 - RequestID: 603htma9h1o +2025-06-18T14:47:59.681Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 186ms - IP: 192.168.229.123 - User: user_1076 - RequestID: ylwr7z2o5f9 +2025-06-18T14:47:59.781Z [INFO] payment-service - Operation: notification_queued - Processing time: 826ms - RequestID: irqmps1wew +2025-06-18T14:47:59.881Z [TRACE] auth-service - Database UPDATE on products - Execution time: 80ms - Rows affected: 41 - RequestID: shyuxgf9fv +2025-06-18T14:47:59.981Z [DEBUG] order-service - Operation: notification_queued - Processing time: 86ms - RequestID: ceyvemmr5gf +2025-06-18T14:48:00.081Z [INFO] user-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.79.116 - RequestID: unwh538ay4r +2025-06-18T14:48:00.181Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 174ms - Rows affected: 21 - RequestID: rk86vbqpt1 +2025-06-18T14:48:00.281Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 787ms - RequestID: j2r5nlocidk +2025-06-18T14:48:00.381Z [DEBUG] auth-service - Auth event: logout - User: user_1072 - IP: 192.168.138.123 - RequestID: y9416qn41y8 +2025-06-18T14:48:00.481Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.36.218 - RequestID: s8cm3kv19n +2025-06-18T14:48:00.581Z [INFO] payment-service - Auth event: password_change - User: user_1039 - IP: 192.168.174.114 - RequestID: qif19i483he +2025-06-18T14:48:00.681Z [INFO] auth-service - Operation: email_sent - Processing time: 751ms - RequestID: px9gairmkr +2025-06-18T14:48:00.781Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 546ms - RequestID: hc762ijf1hv +2025-06-18T14:48:00.881Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 185ms - Rows affected: 65 - RequestID: k85r0r6ibad +2025-06-18T14:48:00.981Z [INFO] inventory-service - Operation: email_sent - Processing time: 503ms - RequestID: 3iwzgudxz3h +2025-06-18T14:48:01.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 461ms - RequestID: qneh4j0r8j +2025-06-18T14:48:01.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.138.123 - RequestID: rlm6dqzd2va +2025-06-18T14:48:01.281Z [INFO] user-service - Operation: webhook_sent - Processing time: 459ms - RequestID: qascq536yc9 +2025-06-18T14:48:01.381Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.227.77 - RequestID: ye7lzb5yg7q +2025-06-18T14:48:01.481Z [TRACE] auth-service - POST /api/v1/users - Status: 401 - Response time: 1574ms - IP: 192.168.97.87 - User: user_1037 - RequestID: 7ygjbo9zy9d +2025-06-18T14:48:01.581Z [INFO] order-service - Auth event: login_failed - User: user_1018 - IP: 192.168.44.5 - RequestID: sfk5fvc3w3 +2025-06-18T14:48:01.681Z [INFO] user-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.242.165 - RequestID: erggnc1ux +2025-06-18T14:48:01.781Z [INFO] notification-service - DELETE /api/v1/payments - Status: 201 - Response time: 826ms - IP: 192.168.159.94 - User: user_1024 - RequestID: kj8m04q0dtg +2025-06-18T14:48:01.881Z [DEBUG] user-service - Database SELECT on orders - Execution time: 222ms - Rows affected: 91 - RequestID: bul3269ekl +2025-06-18T14:48:01.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1036 - IP: 192.168.104.37 - RequestID: vbwpiw7nmd9 +2025-06-18T14:48:02.081Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1807ms - IP: 192.168.1.152 - User: user_1068 - RequestID: vyrwnwcdne +2025-06-18T14:48:02.181Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 607ms - RequestID: h5brqkhjvl8 +2025-06-18T14:48:02.281Z [TRACE] order-service - Database INSERT on orders - Execution time: 137ms - Rows affected: 70 - RequestID: 4d095yjmtt1 +2025-06-18T14:48:02.381Z [TRACE] payment-service - Auth event: login_success - User: user_1029 - IP: 192.168.232.72 - RequestID: 4rdtg8azpu4 +2025-06-18T14:48:02.481Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 176ms - Rows affected: 1 - RequestID: 1f4l626nzmw +2025-06-18T14:48:02.581Z [INFO] order-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.79.143 - RequestID: tdnf1yqhsgr +2025-06-18T14:48:02.681Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 76ms - Rows affected: 91 - RequestID: chyd0ox5imh +2025-06-18T14:48:02.781Z [DEBUG] user-service - Operation: cache_miss - Processing time: 813ms - RequestID: 77k241byhsf +2025-06-18T14:48:02.881Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 423ms - RequestID: mj6skzes1uh +2025-06-18T14:48:02.981Z [INFO] auth-service - PUT /api/v1/payments - Status: 503 - Response time: 986ms - IP: 192.168.13.72 - User: user_1040 - RequestID: vdqvpcf5a9 +2025-06-18T14:48:03.081Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 201 - Response time: 890ms - IP: 192.168.68.158 - User: user_1007 - RequestID: qbyjdbv0e7n +2025-06-18T14:48:03.181Z [TRACE] payment-service - Database UPDATE on users - Execution time: 208ms - Rows affected: 75 - RequestID: b9gsfs3jjnq +2025-06-18T14:48:03.281Z [TRACE] user-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.97.87 - RequestID: rd5aji0cvf +2025-06-18T14:48:03.381Z [TRACE] notification-service - Auth event: login_success - User: user_1005 - IP: 192.168.133.7 - RequestID: 8bo5uk9so9 +2025-06-18T14:48:03.481Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 219ms - Rows affected: 76 - RequestID: cq8mr14eqtb +2025-06-18T14:48:03.581Z [TRACE] order-service - DELETE /api/v1/users - Status: 201 - Response time: 902ms - IP: 192.168.138.123 - User: user_1054 - RequestID: xyi5j39w77 +2025-06-18T14:48:03.681Z [INFO] payment-service - Database SELECT on payments - Execution time: 253ms - Rows affected: 33 - RequestID: lp9rxhx3ws +2025-06-18T14:48:03.781Z [DEBUG] user-service - Operation: cache_miss - Processing time: 154ms - RequestID: j1jtww8zy58 +2025-06-18T14:48:03.881Z [INFO] payment-service - Database DELETE on payments - Execution time: 160ms - Rows affected: 52 - RequestID: u4f630b5bbi +2025-06-18T14:48:03.981Z [DEBUG] payment-service - Database DELETE on users - Execution time: 337ms - Rows affected: 25 - RequestID: yep3a9aabr +2025-06-18T14:48:04.081Z [TRACE] order-service - Operation: order_created - Processing time: 130ms - RequestID: qkth6bjxx2 +2025-06-18T14:48:04.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.229.123 - RequestID: a8p8atg1vp +2025-06-18T14:48:04.281Z [INFO] notification-service - Database SELECT on orders - Execution time: 122ms - Rows affected: 10 - RequestID: 0g5568pm09x +2025-06-18T14:48:04.381Z [INFO] notification-service - Operation: webhook_sent - Processing time: 712ms - RequestID: al2jqi56cn8 +2025-06-18T14:48:04.481Z [TRACE] inventory-service - Auth event: login_success - User: user_1090 - IP: 192.168.181.225 - RequestID: 2impvtb84kr +2025-06-18T14:48:04.581Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 821ms - RequestID: x8pfext0t8r +2025-06-18T14:48:04.681Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 317ms - Rows affected: 25 - RequestID: cztl0efwhpm +2025-06-18T14:48:04.781Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 869ms - RequestID: h2cnzq7yjyf +2025-06-18T14:48:04.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.13.72 - RequestID: oean7mqwuho +2025-06-18T14:48:04.981Z [TRACE] payment-service - Auth event: login_success - User: user_1038 - IP: 192.168.104.37 - RequestID: tix2k8g370i +2025-06-18T14:48:05.081Z [DEBUG] order-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.240.169 - RequestID: pno792swgyb +2025-06-18T14:48:05.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 983ms - RequestID: 4yu91o5abjm +2025-06-18T14:48:05.281Z [DEBUG] inventory-service - GET /api/v1/users - Status: 404 - Response time: 1982ms - IP: 192.168.53.133 - User: user_1035 - RequestID: 0eaqyg3ofp8 +2025-06-18T14:48:05.381Z [INFO] user-service - Database UPDATE on products - Execution time: 10ms - Rows affected: 57 - RequestID: tysxpnau3mj +2025-06-18T14:48:05.481Z [INFO] auth-service - Operation: email_sent - Processing time: 231ms - RequestID: r6v7xwx5r4q +2025-06-18T14:48:05.581Z [INFO] user-service - Database DELETE on products - Execution time: 250ms - Rows affected: 19 - RequestID: p5ygfkihcga +2025-06-18T14:48:05.681Z [INFO] auth-service - DELETE /api/v1/users - Status: 500 - Response time: 1913ms - IP: 192.168.189.103 - User: user_1030 - RequestID: uj3hcku75b +2025-06-18T14:48:05.781Z [TRACE] notification-service - Database DELETE on users - Execution time: 405ms - Rows affected: 5 - RequestID: kn2h4ew4w2b +2025-06-18T14:48:05.881Z [INFO] notification-service - Auth event: login_success - User: user_1089 - IP: 192.168.11.60 - RequestID: ls9mmuhx1a +2025-06-18T14:48:05.981Z [INFO] auth-service - Database UPDATE on users - Execution time: 240ms - Rows affected: 18 - RequestID: w5a47c40uxk +2025-06-18T14:48:06.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1059 - IP: 192.168.46.63 - RequestID: hq607wkehem +2025-06-18T14:48:06.181Z [DEBUG] user-service - Operation: cache_hit - Processing time: 122ms - RequestID: o6jllgre69q +2025-06-18T14:48:06.281Z [DEBUG] payment-service - Operation: email_sent - Processing time: 244ms - RequestID: qb5qlr22xos +2025-06-18T14:48:06.381Z [DEBUG] auth-service - Operation: order_created - Processing time: 909ms - RequestID: c0w04a9whvm +2025-06-18T14:48:06.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.97.87 - RequestID: 54l567lobpv +2025-06-18T14:48:06.581Z [DEBUG] payment-service - Operation: email_sent - Processing time: 339ms - RequestID: g5fkzd128gf +2025-06-18T14:48:06.681Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 503 - Response time: 1935ms - IP: 192.168.240.169 - User: user_1075 - RequestID: guap8jst6fw +2025-06-18T14:48:06.781Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 336ms - Rows affected: 72 - RequestID: ilt2c4a23a +2025-06-18T14:48:06.881Z [DEBUG] user-service - GET /api/v1/users - Status: 502 - Response time: 290ms - IP: 192.168.247.134 - User: user_1032 - RequestID: 6jjdj6t11t +2025-06-18T14:48:06.981Z [TRACE] user-service - Database DELETE on sessions - Execution time: 211ms - Rows affected: 21 - RequestID: 1ouy57a41om +2025-06-18T14:48:07.081Z [INFO] order-service - Auth event: logout - User: user_1028 - IP: 192.168.194.41 - RequestID: uf7ay70a8i +2025-06-18T14:48:07.181Z [DEBUG] auth-service - Auth event: login_failed - User: user_1077 - IP: 192.168.33.76 - RequestID: vgmd1ypae5n +2025-06-18T14:48:07.281Z [TRACE] notification-service - Operation: cache_hit - Processing time: 257ms - RequestID: comgbrgooeh +2025-06-18T14:48:07.381Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 303ms - RequestID: qv76xrs9ovb +2025-06-18T14:48:07.481Z [DEBUG] order-service - Database INSERT on products - Execution time: 51ms - Rows affected: 42 - RequestID: v6qsrvvgayo +2025-06-18T14:48:07.581Z [TRACE] order-service - Database SELECT on sessions - Execution time: 57ms - Rows affected: 44 - RequestID: j1bx41t7vrf +2025-06-18T14:48:07.681Z [INFO] inventory-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.232.72 - RequestID: 814x5gw0dqc +2025-06-18T14:48:07.781Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 561ms - RequestID: jk3fw8x2br +2025-06-18T14:48:07.881Z [TRACE] auth-service - Auth event: password_change - User: user_1032 - IP: 192.168.235.117 - RequestID: ekl8ryb7maq +2025-06-18T14:48:07.981Z [TRACE] notification-service - Auth event: login_success - User: user_1026 - IP: 192.168.181.225 - RequestID: rb2bqks29y +2025-06-18T14:48:08.081Z [DEBUG] order-service - Database SELECT on users - Execution time: 500ms - Rows affected: 74 - RequestID: ofl815g4l3e +2025-06-18T14:48:08.181Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 731ms - IP: 192.168.187.199 - User: user_1000 - RequestID: lqtryigaa5 +2025-06-18T14:48:08.281Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 168ms - Rows affected: 31 - RequestID: q08v1iocf1 +2025-06-18T14:48:08.381Z [INFO] order-service - GET /api/v1/inventory - Status: 500 - Response time: 936ms - IP: 192.168.46.63 - User: user_1005 - RequestID: qx486wol6rr +2025-06-18T14:48:08.481Z [DEBUG] payment-service - GET /api/v1/users - Status: 403 - Response time: 480ms - IP: 192.168.196.226 - User: user_1005 - RequestID: hd8zebcsj6a +2025-06-18T14:48:08.581Z [TRACE] payment-service - Database INSERT on payments - Execution time: 467ms - Rows affected: 26 - RequestID: 7vy0fo9cyyw +2025-06-18T14:48:08.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1035 - IP: 192.168.68.158 - RequestID: w4y6f3nm6yk +2025-06-18T14:48:08.781Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 23ms - Rows affected: 38 - RequestID: ssv1p30sqq +2025-06-18T14:48:08.881Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1561ms - IP: 192.168.141.100 - User: user_1073 - RequestID: ie104oeov9 +2025-06-18T14:48:08.981Z [DEBUG] notification-service - GET /api/v1/users - Status: 400 - Response time: 1087ms - IP: 192.168.44.5 - User: user_1032 - RequestID: rsa0hdo9plr +2025-06-18T14:48:09.081Z [TRACE] inventory-service - Database INSERT on products - Execution time: 84ms - Rows affected: 53 - RequestID: 0nxvgfdoesa +2025-06-18T14:48:09.181Z [INFO] payment-service - Operation: cache_miss - Processing time: 239ms - RequestID: dchv1y1etfc +2025-06-18T14:48:09.281Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 245ms - Rows affected: 52 - RequestID: i2h7gbkjukc +2025-06-18T14:48:09.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1054 - IP: 192.168.53.133 - RequestID: c367owm22eu +2025-06-18T14:48:09.481Z [INFO] auth-service - Operation: inventory_updated - Processing time: 418ms - RequestID: gre7ft5ssup +2025-06-18T14:48:09.581Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 441ms - Rows affected: 46 - RequestID: cwhmg7aq169 +2025-06-18T14:48:09.681Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 85ms - Rows affected: 87 - RequestID: fvijk2le84 +2025-06-18T14:48:09.781Z [TRACE] user-service - Operation: order_created - Processing time: 588ms - RequestID: e0synnc8dg +2025-06-18T14:48:09.881Z [INFO] order-service - Auth event: login_failed - User: user_1088 - IP: 192.168.28.146 - RequestID: zu08aji29jd +2025-06-18T14:48:09.981Z [TRACE] notification-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.33.76 - RequestID: 56cr8bw8im8 +2025-06-18T14:48:10.081Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 533ms - RequestID: kkydme1u0ak +2025-06-18T14:48:10.181Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 518ms - RequestID: z7q1obutj9 +2025-06-18T14:48:10.281Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 169ms - Rows affected: 90 - RequestID: nnuhysn0ag +2025-06-18T14:48:10.381Z [INFO] payment-service - Auth event: password_change - User: user_1073 - IP: 192.168.79.116 - RequestID: rjh8f3r2q5h +2025-06-18T14:48:10.481Z [INFO] payment-service - Auth event: login_failed - User: user_1083 - IP: 192.168.30.79 - RequestID: wifbt5omzs9 +2025-06-18T14:48:10.581Z [DEBUG] order-service - Operation: email_sent - Processing time: 915ms - RequestID: y6jkpeiae4 +2025-06-18T14:48:10.681Z [DEBUG] user-service - Auth event: login_failed - User: user_1095 - IP: 192.168.44.5 - RequestID: oplykepqbv +2025-06-18T14:48:10.781Z [INFO] auth-service - Operation: cache_hit - Processing time: 983ms - RequestID: vg6iq4e3cj +2025-06-18T14:48:10.881Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 382ms - Rows affected: 43 - RequestID: a0rf427go58 +2025-06-18T14:48:10.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1001 - IP: 192.168.13.72 - RequestID: chu1dvmyow +2025-06-18T14:48:11.081Z [INFO] notification-service - Operation: inventory_updated - Processing time: 674ms - RequestID: kcagvk9j2j +2025-06-18T14:48:11.181Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 284ms - RequestID: 60oyf947d49 +2025-06-18T14:48:11.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 379ms - RequestID: jobp8650kee +2025-06-18T14:48:11.381Z [INFO] payment-service - Operation: cache_miss - Processing time: 839ms - RequestID: x4wbuxqqww +2025-06-18T14:48:11.481Z [INFO] inventory-service - Auth event: logout - User: user_1018 - IP: 192.168.167.32 - RequestID: 3yrwgz5er2d +2025-06-18T14:48:11.581Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 635ms - RequestID: 39uk0jaayw7 +2025-06-18T14:48:11.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 405ms - RequestID: yq4ba39yavp +2025-06-18T14:48:11.781Z [DEBUG] order-service - DELETE /api/v1/users - Status: 200 - Response time: 1568ms - IP: 192.168.30.79 - User: user_1085 - RequestID: vyn7pmcpk1h +2025-06-18T14:48:11.881Z [INFO] payment-service - Database INSERT on users - Execution time: 245ms - Rows affected: 77 - RequestID: 8cahn2lfv5o +2025-06-18T14:48:11.981Z [TRACE] user-service - Database DELETE on users - Execution time: 419ms - Rows affected: 21 - RequestID: kvlsccf5co +2025-06-18T14:48:12.081Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1455ms - IP: 192.168.11.60 - User: user_1045 - RequestID: bmbzq50qts8 +2025-06-18T14:48:12.181Z [TRACE] payment-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.229.123 - RequestID: eq85twyi9qf +2025-06-18T14:48:12.281Z [INFO] user-service - Operation: webhook_sent - Processing time: 385ms - RequestID: aksn1eml1x +2025-06-18T14:48:12.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.158.144 - RequestID: tk0y8e34ifn +2025-06-18T14:48:12.481Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 201 - Response time: 80ms - IP: 192.168.13.72 - User: user_1066 - RequestID: ezs457seffe +2025-06-18T14:48:12.581Z [DEBUG] user-service - GET /api/v1/payments - Status: 201 - Response time: 470ms - IP: 192.168.159.94 - User: user_1058 - RequestID: v1j6woa5rbn +2025-06-18T14:48:12.681Z [INFO] notification-service - Operation: order_created - Processing time: 800ms - RequestID: zll0qrdav4s +2025-06-18T14:48:12.781Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 17ms - Rows affected: 74 - RequestID: 0aeppb9zvsua +2025-06-18T14:48:12.881Z [TRACE] payment-service - GET /api/v1/users - Status: 201 - Response time: 829ms - IP: 192.168.13.72 - User: user_1054 - RequestID: 5wae0h398io +2025-06-18T14:48:12.981Z [INFO] order-service - Auth event: logout - User: user_1098 - IP: 192.168.141.100 - RequestID: 1dtccw2z8kn +2025-06-18T14:48:13.081Z [INFO] notification-service - Operation: notification_queued - Processing time: 983ms - RequestID: 0vcn7y5wibsn +2025-06-18T14:48:13.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.138.123 - RequestID: y3f7io3iqel +2025-06-18T14:48:13.281Z [DEBUG] payment-service - Auth event: password_change - User: user_1015 - IP: 192.168.68.158 - RequestID: 9jnl1r5p7ef +2025-06-18T14:48:13.381Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 336ms - Rows affected: 40 - RequestID: xlw6zynh4e +2025-06-18T14:48:13.481Z [INFO] notification-service - Operation: order_created - Processing time: 662ms - RequestID: 6gj62ndarp2 +2025-06-18T14:48:13.581Z [INFO] user-service - Operation: order_created - Processing time: 183ms - RequestID: eeu838q0dil +2025-06-18T14:48:13.681Z [TRACE] notification-service - Auth event: password_change - User: user_1005 - IP: 192.168.14.77 - RequestID: qjqycp8pxm +2025-06-18T14:48:13.781Z [INFO] notification-service - Operation: inventory_updated - Processing time: 618ms - RequestID: ew3mspdketq +2025-06-18T14:48:13.881Z [TRACE] order-service - Database SELECT on orders - Execution time: 257ms - Rows affected: 37 - RequestID: oup1zisn1x +2025-06-18T14:48:13.981Z [INFO] payment-service - Database DELETE on orders - Execution time: 82ms - Rows affected: 0 - RequestID: gu051rgbmbm +2025-06-18T14:48:14.081Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 438ms - Rows affected: 39 - RequestID: i1mutnlkylb +2025-06-18T14:48:14.181Z [INFO] auth-service - Operation: notification_queued - Processing time: 625ms - RequestID: pb8yd684ynf +2025-06-18T14:48:14.281Z [INFO] notification-service - PUT /api/v1/payments - Status: 401 - Response time: 855ms - IP: 192.168.144.38 - User: user_1069 - RequestID: 6slwpwtoka4 +2025-06-18T14:48:14.381Z [INFO] user-service - POST /api/v1/inventory - Status: 503 - Response time: 1200ms - IP: 192.168.113.218 - User: user_1075 - RequestID: 3yntkvcdn1g +2025-06-18T14:48:14.481Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 471ms - Rows affected: 36 - RequestID: a4cooq0g8zi +2025-06-18T14:48:14.581Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 106ms - Rows affected: 4 - RequestID: 6aqqsazx6qg +2025-06-18T14:48:14.681Z [INFO] order-service - Operation: cache_hit - Processing time: 702ms - RequestID: 40h1x146ptg +2025-06-18T14:48:14.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1070 - IP: 192.168.229.123 - RequestID: qwonykm5dj +2025-06-18T14:48:14.881Z [TRACE] payment-service - Auth event: password_change - User: user_1087 - IP: 192.168.211.72 - RequestID: 0t0rrozvjlo +2025-06-18T14:48:14.981Z [DEBUG] order-service - Auth event: login_failed - User: user_1001 - IP: 192.168.113.218 - RequestID: d711gxtniu +2025-06-18T14:48:15.081Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 1505ms - IP: 192.168.227.233 - User: user_1090 - RequestID: m8jkdi21e4h +2025-06-18T14:48:15.181Z [DEBUG] user-service - Auth event: logout - User: user_1096 - IP: 192.168.79.143 - RequestID: gt90fqupu9i +2025-06-18T14:48:15.281Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 976ms - RequestID: wcfip5vhxn +2025-06-18T14:48:15.381Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 476ms - IP: 192.168.33.76 - User: user_1080 - RequestID: 5uff06vzib3 +2025-06-18T14:48:15.481Z [INFO] payment-service - Database INSERT on sessions - Execution time: 446ms - Rows affected: 86 - RequestID: sr577ifxs2 +2025-06-18T14:48:15.581Z [INFO] auth-service - Auth event: password_change - User: user_1033 - IP: 192.168.85.229 - RequestID: k4kuucs0m7c +2025-06-18T14:48:15.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.138.123 - RequestID: 9i40s4czzjr +2025-06-18T14:48:15.781Z [DEBUG] user-service - Auth event: password_change - User: user_1041 - IP: 192.168.242.165 - RequestID: yppl2jaglc8 +2025-06-18T14:48:15.881Z [DEBUG] user-service - Auth event: password_change - User: user_1008 - IP: 192.168.11.60 - RequestID: be82jhvs3jd +2025-06-18T14:48:15.981Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1000ms - IP: 192.168.68.158 - User: user_1074 - RequestID: jf3tzkjo0a +2025-06-18T14:48:16.081Z [INFO] user-service - Database INSERT on payments - Execution time: 9ms - Rows affected: 10 - RequestID: aabtzjc53f8 +2025-06-18T14:48:16.181Z [INFO] auth-service - POST /api/v1/inventory - Status: 502 - Response time: 260ms - IP: 192.168.28.146 - User: user_1056 - RequestID: fdx5csw9kq6 +2025-06-18T14:48:16.281Z [TRACE] order-service - Operation: notification_queued - Processing time: 482ms - RequestID: 40a9eb5e93h +2025-06-18T14:48:16.381Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 213ms - Rows affected: 75 - RequestID: ohblmsyt0vs +2025-06-18T14:48:16.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.64.33 - RequestID: 3auzeze7ten +2025-06-18T14:48:16.581Z [TRACE] order-service - Auth event: password_change - User: user_1037 - IP: 192.168.211.72 - RequestID: c4eo4en01o8 +2025-06-18T14:48:16.681Z [TRACE] user-service - Auth event: logout - User: user_1059 - IP: 192.168.189.103 - RequestID: af1853p4o6 +2025-06-18T14:48:16.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.158.144 - RequestID: 341yycfuq2b +2025-06-18T14:48:16.881Z [TRACE] notification-service - Database INSERT on orders - Execution time: 173ms - Rows affected: 94 - RequestID: n60jfly8sh +2025-06-18T14:48:16.981Z [DEBUG] user-service - Database DELETE on orders - Execution time: 380ms - Rows affected: 18 - RequestID: bsxiz9wuz5l +2025-06-18T14:48:17.081Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 59ms - Rows affected: 56 - RequestID: p4n49m8l1 +2025-06-18T14:48:17.181Z [INFO] payment-service - Database SELECT on products - Execution time: 49ms - Rows affected: 39 - RequestID: 4l8u7xux60v +2025-06-18T14:48:17.281Z [DEBUG] auth-service - Operation: order_created - Processing time: 584ms - RequestID: z64s8df1za +2025-06-18T14:48:17.381Z [INFO] user-service - Database DELETE on sessions - Execution time: 67ms - Rows affected: 41 - RequestID: nrhw2rbq62r +2025-06-18T14:48:17.481Z [TRACE] inventory-service - Auth event: login_failed - User: user_1054 - IP: 192.168.158.144 - RequestID: y43rist1khr +2025-06-18T14:48:17.581Z [INFO] auth-service - Operation: notification_queued - Processing time: 603ms - RequestID: asz31710xte +2025-06-18T14:48:17.681Z [TRACE] order-service - POST /api/v1/payments - Status: 401 - Response time: 865ms - IP: 192.168.144.38 - User: user_1070 - RequestID: 9d9kmpsnyru +2025-06-18T14:48:17.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1092 - IP: 192.168.170.215 - RequestID: dcsboszhdd9 +2025-06-18T14:48:17.881Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 312ms - IP: 192.168.104.37 - User: user_1086 - RequestID: 8j3nlui9y9w +2025-06-18T14:48:17.981Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 59ms - Rows affected: 39 - RequestID: kkmpzwdfov +2025-06-18T14:48:18.081Z [DEBUG] notification-service - Operation: order_created - Processing time: 768ms - RequestID: 32q7j3rc4p3 +2025-06-18T14:48:18.181Z [INFO] user-service - Auth event: login_success - User: user_1045 - IP: 192.168.242.165 - RequestID: lpv6nmuevgo +2025-06-18T14:48:18.281Z [TRACE] order-service - Database SELECT on products - Execution time: 189ms - Rows affected: 57 - RequestID: 698b3pbht36 +2025-06-18T14:48:18.381Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 361ms - Rows affected: 17 - RequestID: d3yiutislvn +2025-06-18T14:48:18.481Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 197ms - IP: 192.168.181.225 - User: user_1035 - RequestID: l35q7b6b6kh +2025-06-18T14:48:18.581Z [INFO] order-service - Operation: email_sent - Processing time: 181ms - RequestID: sc75on6ma8 +2025-06-18T14:48:18.681Z [TRACE] notification-service - Operation: order_created - Processing time: 73ms - RequestID: fcsu57n1je +2025-06-18T14:48:18.781Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 362ms - Rows affected: 73 - RequestID: or3lg6io2ff +2025-06-18T14:48:18.881Z [INFO] payment-service - GET /api/v1/inventory - Status: 401 - Response time: 582ms - IP: 192.168.64.33 - User: user_1029 - RequestID: 0yanqlzltwsi +2025-06-18T14:48:18.981Z [TRACE] payment-service - Operation: notification_queued - Processing time: 562ms - RequestID: iacq13ot43 +2025-06-18T14:48:19.081Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 80ms - Rows affected: 18 - RequestID: 1puz86nczso +2025-06-18T14:48:19.181Z [INFO] order-service - PUT /api/v1/payments - Status: 401 - Response time: 1266ms - IP: 192.168.240.169 - User: user_1083 - RequestID: adxld3fr9wc +2025-06-18T14:48:19.281Z [TRACE] payment-service - PUT /api/v1/users - Status: 201 - Response time: 56ms - IP: 192.168.138.123 - User: user_1091 - RequestID: w2ngf4hfaxr +2025-06-18T14:48:19.381Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 362ms - Rows affected: 84 - RequestID: 9884sry3an7 +2025-06-18T14:48:19.481Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 922ms - IP: 192.168.133.7 - User: user_1067 - RequestID: bxvxeyqsqmd +2025-06-18T14:48:19.581Z [INFO] order-service - Auth event: login_success - User: user_1084 - IP: 192.168.46.63 - RequestID: anc13wcrxss +2025-06-18T14:48:19.681Z [INFO] order-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1278ms - IP: 192.168.33.76 - User: user_1087 - RequestID: sxiiabkdi1 +2025-06-18T14:48:19.781Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 411ms - RequestID: a0gifkkvndj +2025-06-18T14:48:19.881Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 363ms - Rows affected: 32 - RequestID: g4q121t1296 +2025-06-18T14:48:19.981Z [TRACE] notification-service - Operation: cache_hit - Processing time: 275ms - RequestID: u389czsxu7m +2025-06-18T14:48:20.081Z [INFO] payment-service - Database UPDATE on orders - Execution time: 312ms - Rows affected: 35 - RequestID: sxpw8u504i +2025-06-18T14:48:20.181Z [INFO] user-service - POST /api/v1/orders - Status: 500 - Response time: 465ms - IP: 192.168.113.218 - User: user_1035 - RequestID: y3qa445y0ln +2025-06-18T14:48:20.281Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 123ms - Rows affected: 24 - RequestID: brgylmkh1k6 +2025-06-18T14:48:20.381Z [TRACE] order-service - GET /api/v1/orders - Status: 404 - Response time: 26ms - IP: 192.168.36.218 - User: user_1066 - RequestID: 0chxhxhmbz1 +2025-06-18T14:48:20.481Z [DEBUG] order-service - Auth event: logout - User: user_1088 - IP: 192.168.211.72 - RequestID: zn1chmj26zc +2025-06-18T14:48:20.581Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1539ms - IP: 192.168.46.63 - User: user_1018 - RequestID: 8i36tybnf6b +2025-06-18T14:48:20.681Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.247.134 - RequestID: aa1kmwi2e1s +2025-06-18T14:48:20.781Z [TRACE] auth-service - Operation: order_created - Processing time: 147ms - RequestID: jmn5t2bszg +2025-06-18T14:48:20.881Z [TRACE] user-service - Operation: notification_queued - Processing time: 726ms - RequestID: hbyggd8up1 +2025-06-18T14:48:20.981Z [INFO] notification-service - DELETE /api/v1/payments - Status: 404 - Response time: 1066ms - IP: 192.168.211.72 - User: user_1045 - RequestID: 986k3rjddp5 +2025-06-18T14:48:21.081Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 438ms - Rows affected: 63 - RequestID: o1nch3b99lq +2025-06-18T14:48:21.181Z [INFO] user-service - Database SELECT on sessions - Execution time: 195ms - Rows affected: 49 - RequestID: r014ectpxda +2025-06-18T14:48:21.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.81.206 - RequestID: j044jb4bij +2025-06-18T14:48:21.381Z [TRACE] order-service - Database INSERT on products - Execution time: 310ms - Rows affected: 76 - RequestID: jr72kgw411b +2025-06-18T14:48:21.481Z [INFO] auth-service - PUT /api/v1/orders - Status: 404 - Response time: 1955ms - IP: 192.168.167.32 - User: user_1096 - RequestID: amximfez82e +2025-06-18T14:48:21.581Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 200 - Response time: 1424ms - IP: 192.168.13.72 - User: user_1093 - RequestID: 773qynacbo5 +2025-06-18T14:48:21.681Z [TRACE] order-service - Operation: payment_processed - Processing time: 526ms - RequestID: g3pitxpgnxm +2025-06-18T14:48:21.781Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 400 - Response time: 208ms - IP: 192.168.113.218 - User: user_1016 - RequestID: 0jyri22z86pu +2025-06-18T14:48:21.881Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 316ms - Rows affected: 18 - RequestID: o6587kysjr +2025-06-18T14:48:21.981Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1370ms - IP: 192.168.240.169 - User: user_1015 - RequestID: cvvuqbv2pcl +2025-06-18T14:48:22.081Z [TRACE] notification-service - Operation: notification_queued - Processing time: 774ms - RequestID: jv4q3ojj26o +2025-06-18T14:48:22.181Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1566ms - IP: 192.168.64.33 - User: user_1058 - RequestID: c3f8fwsh5yd +2025-06-18T14:48:22.281Z [TRACE] notification-service - GET /api/v1/orders - Status: 404 - Response time: 100ms - IP: 192.168.1.152 - User: user_1081 - RequestID: xgb4icrhp8s +2025-06-18T14:48:22.381Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1709ms - IP: 192.168.68.128 - User: user_1010 - RequestID: 1v7qw5nptic +2025-06-18T14:48:22.481Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 403 - Response time: 366ms - IP: 192.168.31.117 - User: user_1068 - RequestID: g64hdlmp09d +2025-06-18T14:48:22.581Z [INFO] payment-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.79.116 - RequestID: s6dx31qf93 +2025-06-18T14:48:22.681Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 224ms - Rows affected: 17 - RequestID: 8tkv7qwxha8 +2025-06-18T14:48:22.781Z [TRACE] user-service - Database UPDATE on orders - Execution time: 54ms - Rows affected: 55 - RequestID: hhy954lp5m +2025-06-18T14:48:22.881Z [TRACE] notification-service - Operation: cache_miss - Processing time: 484ms - RequestID: nmxuzikgo8q +2025-06-18T14:48:22.981Z [TRACE] notification-service - Database INSERT on payments - Execution time: 323ms - Rows affected: 36 - RequestID: 3t3kv2zw5l7 +2025-06-18T14:48:23.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 102ms - RequestID: 5xespm4mgkj +2025-06-18T14:48:23.181Z [DEBUG] user-service - Operation: order_created - Processing time: 617ms - RequestID: kbpoyjhla5s +2025-06-18T14:48:23.281Z [TRACE] payment-service - Operation: cache_miss - Processing time: 972ms - RequestID: ynbf4r9z3vj +2025-06-18T14:48:23.381Z [INFO] inventory-service - Operation: order_created - Processing time: 424ms - RequestID: hk1y8rqyi2 +2025-06-18T14:48:23.481Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1627ms - IP: 192.168.181.225 - User: user_1099 - RequestID: ov1iw7nq0li +2025-06-18T14:48:23.581Z [INFO] user-service - Database SELECT on sessions - Execution time: 350ms - Rows affected: 20 - RequestID: wl9fx5x0flo +2025-06-18T14:48:23.681Z [DEBUG] order-service - Operation: notification_queued - Processing time: 898ms - RequestID: elothj4toso +2025-06-18T14:48:23.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.189.103 - RequestID: xocufgawceo +2025-06-18T14:48:23.881Z [DEBUG] user-service - Operation: email_sent - Processing time: 309ms - RequestID: 74gdoky8jo +2025-06-18T14:48:23.981Z [INFO] payment-service - Database UPDATE on products - Execution time: 404ms - Rows affected: 68 - RequestID: nde31h2r67c +2025-06-18T14:48:24.081Z [INFO] user-service - DELETE /api/v1/orders - Status: 502 - Response time: 1228ms - IP: 192.168.79.141 - User: user_1033 - RequestID: oc122qq1os +2025-06-18T14:48:24.181Z [INFO] notification-service - Operation: cache_miss - Processing time: 806ms - RequestID: ti3gqtawkie +2025-06-18T14:48:24.281Z [INFO] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 1669ms - IP: 192.168.53.133 - User: user_1010 - RequestID: 13y76lmarug9 +2025-06-18T14:48:24.381Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 404 - Response time: 275ms - IP: 192.168.64.33 - User: user_1044 - RequestID: 8rxh59h82ow +2025-06-18T14:48:24.481Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 218ms - Rows affected: 95 - RequestID: igmrxiuqlcf +2025-06-18T14:48:24.581Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1492ms - IP: 192.168.13.72 - User: user_1063 - RequestID: chjprekida9 +2025-06-18T14:48:24.681Z [TRACE] auth-service - POST /api/v1/inventory - Status: 500 - Response time: 1910ms - IP: 192.168.79.141 - User: user_1008 - RequestID: 3blhrw96wry +2025-06-18T14:48:24.781Z [DEBUG] order-service - Auth event: password_change - User: user_1069 - IP: 192.168.68.128 - RequestID: o9hnh3nxlnk +2025-06-18T14:48:24.881Z [TRACE] notification-service - Operation: email_sent - Processing time: 968ms - RequestID: 5e4zzt9tgsp +2025-06-18T14:48:24.981Z [DEBUG] auth-service - Database DELETE on products - Execution time: 389ms - Rows affected: 43 - RequestID: ausxwd36l1 +2025-06-18T14:48:25.081Z [INFO] order-service - PATCH /api/v1/users - Status: 500 - Response time: 1730ms - IP: 192.168.138.123 - User: user_1041 - RequestID: qe5uibnhx5s +2025-06-18T14:48:25.181Z [INFO] payment-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.31.117 - RequestID: muo0n0jc80f +2025-06-18T14:48:25.281Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 306ms - Rows affected: 83 - RequestID: n5i8pps6ok +2025-06-18T14:48:25.381Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 166ms - Rows affected: 48 - RequestID: eak2u3edte9 +2025-06-18T14:48:25.481Z [TRACE] auth-service - Database INSERT on products - Execution time: 93ms - Rows affected: 47 - RequestID: gclh4sv02cm +2025-06-18T14:48:25.581Z [TRACE] user-service - Database INSERT on orders - Execution time: 168ms - Rows affected: 79 - RequestID: qp22w5kh4ip +2025-06-18T14:48:25.681Z [INFO] inventory-service - Database SELECT on users - Execution time: 214ms - Rows affected: 18 - RequestID: 139ribb6ipp +2025-06-18T14:48:25.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1043 - IP: 192.168.113.218 - RequestID: mfd2bcsy46n +2025-06-18T14:48:25.881Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 92ms - Rows affected: 69 - RequestID: oiekd7gl6r +2025-06-18T14:48:25.981Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 239ms - Rows affected: 37 - RequestID: l1isae6kzae +2025-06-18T14:48:26.081Z [TRACE] order-service - Operation: cache_miss - Processing time: 970ms - RequestID: 39lskg93jy9 +2025-06-18T14:48:26.181Z [INFO] notification-service - Auth event: login_failed - User: user_1065 - IP: 192.168.189.103 - RequestID: qmqjv6vqo0d +2025-06-18T14:48:26.281Z [INFO] user-service - Operation: payment_processed - Processing time: 660ms - RequestID: 4r4plt73y2d +2025-06-18T14:48:26.381Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 52ms - Rows affected: 98 - RequestID: g16wxq11ta8 +2025-06-18T14:48:26.481Z [INFO] auth-service - Operation: notification_queued - Processing time: 988ms - RequestID: fr0etv99pbf +2025-06-18T14:48:26.581Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 403 - Response time: 274ms - IP: 192.168.158.144 - User: user_1051 - RequestID: 0plxkpptv0e9 +2025-06-18T14:48:26.681Z [TRACE] order-service - Operation: cache_miss - Processing time: 922ms - RequestID: ynqjky88bli +2025-06-18T14:48:26.781Z [TRACE] payment-service - Database UPDATE on products - Execution time: 467ms - Rows affected: 59 - RequestID: cxmrsexz0ed +2025-06-18T14:48:26.881Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 172ms - Rows affected: 66 - RequestID: ry8s2g18mi +2025-06-18T14:48:26.981Z [INFO] order-service - Database UPDATE on sessions - Execution time: 276ms - Rows affected: 84 - RequestID: 8o7col9phum +2025-06-18T14:48:27.081Z [DEBUG] order-service - Operation: email_sent - Processing time: 1047ms - RequestID: azlhyeil6qp +2025-06-18T14:48:27.181Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 401 - Response time: 1187ms - IP: 192.168.53.133 - User: user_1046 - RequestID: 4gfv8wxjre6 +2025-06-18T14:48:27.281Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 201 - Response time: 1939ms - IP: 192.168.33.76 - User: user_1046 - RequestID: 3vxtw5ypvca +2025-06-18T14:48:27.381Z [INFO] user-service - Operation: notification_queued - Processing time: 92ms - RequestID: hnbb2epanmi +2025-06-18T14:48:27.481Z [INFO] payment-service - PATCH /api/v1/users - Status: 200 - Response time: 82ms - IP: 192.168.53.133 - User: user_1020 - RequestID: q8rsaul2gqh +2025-06-18T14:48:27.581Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1507ms - IP: 192.168.1.152 - User: user_1040 - RequestID: g1i5o0uh2gs +2025-06-18T14:48:27.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.11.60 - RequestID: nwqv4zv117f +2025-06-18T14:48:27.781Z [INFO] user-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.196.226 - RequestID: 5tu2rmi71tc +2025-06-18T14:48:27.881Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 210ms - Rows affected: 86 - RequestID: tuebw78jiog +2025-06-18T14:48:27.981Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 491ms - Rows affected: 1 - RequestID: dp7i5mwkh8q +2025-06-18T14:48:28.081Z [TRACE] inventory-service - Auth event: login_success - User: user_1054 - IP: 192.168.159.94 - RequestID: nz7hij9e88l +2025-06-18T14:48:28.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.194.41 - RequestID: d4fx7yyy3mp +2025-06-18T14:48:28.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 625ms - RequestID: hw9z6wfmnsc +2025-06-18T14:48:28.381Z [TRACE] order-service - Database INSERT on products - Execution time: 15ms - Rows affected: 51 - RequestID: 2biaw8p2rb7 +2025-06-18T14:48:28.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1091 - IP: 192.168.141.100 - RequestID: 4mkgo6b9avn +2025-06-18T14:48:28.581Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 403 - Response time: 1274ms - IP: 192.168.187.199 - User: user_1038 - RequestID: rs8h6zcvzo8 +2025-06-18T14:48:28.681Z [INFO] auth-service - DELETE /api/v1/payments - Status: 500 - Response time: 1762ms - IP: 192.168.36.218 - User: user_1047 - RequestID: shhxyd67b5 +2025-06-18T14:48:28.781Z [INFO] notification-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.240.169 - RequestID: nsadbm3cofi +2025-06-18T14:48:28.881Z [INFO] notification-service - Database UPDATE on payments - Execution time: 142ms - Rows affected: 5 - RequestID: s8nk2yfp0li +2025-06-18T14:48:28.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1079 - IP: 192.168.113.218 - RequestID: gr9u6bp9sid +2025-06-18T14:48:29.081Z [TRACE] auth-service - Database SELECT on orders - Execution time: 49ms - Rows affected: 63 - RequestID: 89accoujlwi +2025-06-18T14:48:29.181Z [INFO] notification-service - Auth event: logout - User: user_1081 - IP: 192.168.14.77 - RequestID: gks289izxu4 +2025-06-18T14:48:29.281Z [INFO] user-service - GET /api/v1/users - Status: 502 - Response time: 551ms - IP: 192.168.104.37 - User: user_1075 - RequestID: 6igaiqpybrg +2025-06-18T14:48:29.381Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 145ms - RequestID: cwizmxx6k2s +2025-06-18T14:48:29.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 785ms - RequestID: a5dc6oi8x9d +2025-06-18T14:48:29.581Z [INFO] auth-service - PUT /api/v1/orders - Status: 201 - Response time: 699ms - IP: 192.168.85.229 - User: user_1002 - RequestID: iehpd4gnpbm +2025-06-18T14:48:29.681Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 483ms - Rows affected: 83 - RequestID: 3toz1zkq1o3 +2025-06-18T14:48:29.781Z [DEBUG] notification-service - Database SELECT on users - Execution time: 196ms - Rows affected: 82 - RequestID: ma7c6zdzm0i +2025-06-18T14:48:29.881Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 47ms - Rows affected: 57 - RequestID: 6thi5x9igxx +2025-06-18T14:48:29.981Z [DEBUG] user-service - Database SELECT on orders - Execution time: 253ms - Rows affected: 21 - RequestID: azwl5eznd9v +2025-06-18T14:48:30.081Z [INFO] user-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.187.199 - RequestID: vx142ol5cfs +2025-06-18T14:48:30.181Z [INFO] user-service - POST /api/v1/orders - Status: 502 - Response time: 972ms - IP: 192.168.232.72 - User: user_1005 - RequestID: g3rdjuqnra7 +2025-06-18T14:48:30.281Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 404 - Response time: 175ms - IP: 192.168.196.226 - User: user_1051 - RequestID: tvk201ux8o +2025-06-18T14:48:30.381Z [INFO] notification-service - GET /api/v1/auth/login - Status: 500 - Response time: 774ms - IP: 192.168.100.240 - User: user_1088 - RequestID: spm5h99jk2n +2025-06-18T14:48:30.481Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 808ms - RequestID: h6ziygnopyi +2025-06-18T14:48:30.581Z [TRACE] payment-service - Database DELETE on products - Execution time: 489ms - Rows affected: 12 - RequestID: a4m2cdl665p +2025-06-18T14:48:30.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.68.128 - RequestID: w3r28l3up1 +2025-06-18T14:48:30.781Z [TRACE] auth-service - Operation: notification_queued - Processing time: 650ms - RequestID: 80x7fx37l3a +2025-06-18T14:48:30.881Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1766ms - IP: 192.168.11.60 - User: user_1034 - RequestID: in3wmsdg0qh +2025-06-18T14:48:30.981Z [TRACE] order-service - Auth event: logout - User: user_1019 - IP: 192.168.196.226 - RequestID: bxv2cvrovy7 +2025-06-18T14:48:31.081Z [TRACE] user-service - Database UPDATE on orders - Execution time: 214ms - Rows affected: 57 - RequestID: oe9sud7xor +2025-06-18T14:48:31.181Z [INFO] auth-service - Database UPDATE on payments - Execution time: 85ms - Rows affected: 84 - RequestID: nv140lv55bb +2025-06-18T14:48:31.281Z [TRACE] user-service - Auth event: password_change - User: user_1075 - IP: 192.168.97.87 - RequestID: pxw7wk1ywod +2025-06-18T14:48:31.381Z [TRACE] user-service - Database DELETE on sessions - Execution time: 236ms - Rows affected: 95 - RequestID: pfnagjji6b +2025-06-18T14:48:31.481Z [DEBUG] user-service - Operation: notification_queued - Processing time: 674ms - RequestID: mh1wn3ss2tk +2025-06-18T14:48:31.581Z [INFO] user-service - Auth event: login_failed - User: user_1007 - IP: 192.168.10.184 - RequestID: b9eoenrtl55 +2025-06-18T14:48:31.681Z [TRACE] user-service - Auth event: login_success - User: user_1038 - IP: 192.168.196.226 - RequestID: 7qamryxfwra +2025-06-18T14:48:31.781Z [INFO] user-service - Operation: email_sent - Processing time: 470ms - RequestID: d3x5gibqc4b +2025-06-18T14:48:31.881Z [INFO] order-service - Database DELETE on payments - Execution time: 243ms - Rows affected: 27 - RequestID: a2p75c3u60v +2025-06-18T14:48:31.981Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 449ms - Rows affected: 17 - RequestID: 761rcd9jo4w +2025-06-18T14:48:32.081Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 400 - Response time: 1755ms - IP: 192.168.33.76 - User: user_1091 - RequestID: xtobskx6i +2025-06-18T14:48:32.181Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 220ms - Rows affected: 37 - RequestID: k87hwbdogy +2025-06-18T14:48:32.281Z [INFO] notification-service - Database INSERT on users - Execution time: 495ms - Rows affected: 54 - RequestID: lautmbemf2e +2025-06-18T14:48:32.381Z [DEBUG] order-service - Auth event: login_failed - User: user_1019 - IP: 192.168.189.103 - RequestID: 878ezhd55ma +2025-06-18T14:48:32.481Z [TRACE] notification-service - Database DELETE on users - Execution time: 190ms - Rows affected: 14 - RequestID: dl2lsf16v +2025-06-18T14:48:32.581Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 653ms - RequestID: 9osevpah7zj +2025-06-18T14:48:32.681Z [DEBUG] order-service - Database INSERT on orders - Execution time: 244ms - Rows affected: 85 - RequestID: zfediln1mzj +2025-06-18T14:48:32.781Z [TRACE] payment-service - Operation: payment_processed - Processing time: 493ms - RequestID: aivsekb4sv +2025-06-18T14:48:32.881Z [INFO] notification-service - Auth event: login_failed - User: user_1099 - IP: 192.168.174.114 - RequestID: 8nr17yloots +2025-06-18T14:48:32.981Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 492ms - Rows affected: 99 - RequestID: oj82nnaxr5 +2025-06-18T14:48:33.081Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 943ms - RequestID: p79ztsyjnw +2025-06-18T14:48:33.181Z [TRACE] order-service - Auth event: password_change - User: user_1096 - IP: 192.168.1.152 - RequestID: i2be687g1ia +2025-06-18T14:48:33.281Z [INFO] notification-service - GET /api/v1/inventory - Status: 502 - Response time: 1710ms - IP: 192.168.158.144 - User: user_1000 - RequestID: y1c7zjvrjb9 +2025-06-18T14:48:33.381Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 404 - Response time: 162ms - IP: 192.168.30.79 - User: user_1035 - RequestID: f9mgdil2hb +2025-06-18T14:48:33.481Z [TRACE] order-service - Operation: cache_miss - Processing time: 974ms - RequestID: 6k8ae61tequ +2025-06-18T14:48:33.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.133.7 - RequestID: 26ap5po0fa1 +2025-06-18T14:48:33.681Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 703ms - RequestID: n96yxejfy6j +2025-06-18T14:48:33.781Z [INFO] auth-service - Operation: webhook_sent - Processing time: 693ms - RequestID: qr7qx5d3zxk +2025-06-18T14:48:33.881Z [DEBUG] order-service - Database DELETE on products - Execution time: 469ms - Rows affected: 85 - RequestID: ja4n4fftcr +2025-06-18T14:48:33.981Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 28ms - Rows affected: 52 - RequestID: bps6b47hrf +2025-06-18T14:48:34.081Z [INFO] user-service - Database SELECT on users - Execution time: 85ms - Rows affected: 32 - RequestID: 6t7m9t2yb3n +2025-06-18T14:48:34.181Z [TRACE] notification-service - Database SELECT on users - Execution time: 74ms - Rows affected: 42 - RequestID: vm4aerzakgh +2025-06-18T14:48:34.281Z [INFO] payment-service - Operation: email_sent - Processing time: 581ms - RequestID: 28b38hmtg3h +2025-06-18T14:48:34.381Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 26ms - Rows affected: 31 - RequestID: m4oxf7va1uj +2025-06-18T14:48:34.481Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 400 - Response time: 280ms - IP: 192.168.44.5 - User: user_1094 - RequestID: hm9pzlbxcas +2025-06-18T14:48:34.581Z [INFO] auth-service - DELETE /api/v1/users - Status: 400 - Response time: 1942ms - IP: 192.168.14.77 - User: user_1003 - RequestID: 8edgeina3g4 +2025-06-18T14:48:34.681Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1820ms - IP: 192.168.28.146 - User: user_1039 - RequestID: dpjqlkm2iqo +2025-06-18T14:48:34.781Z [DEBUG] payment-service - Auth event: login_failed - User: user_1084 - IP: 192.168.32.38 - RequestID: ccbp0fk52s +2025-06-18T14:48:34.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1095 - IP: 192.168.232.72 - RequestID: 229h67dftoo +2025-06-18T14:48:34.981Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 263ms - Rows affected: 35 - RequestID: s2m4tfcegnj +2025-06-18T14:48:35.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.196.226 - RequestID: wfh0h87k2qq +2025-06-18T14:48:35.181Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1852ms - IP: 192.168.81.206 - User: user_1077 - RequestID: yg24149ymw +2025-06-18T14:48:35.281Z [DEBUG] payment-service - Auth event: password_change - User: user_1038 - IP: 192.168.247.134 - RequestID: 73f5sth6o +2025-06-18T14:48:35.381Z [TRACE] notification-service - Auth event: login_success - User: user_1085 - IP: 192.168.144.38 - RequestID: u4gze8wlq5a +2025-06-18T14:48:35.481Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.181.225 - RequestID: yf8okpt4fro +2025-06-18T14:48:35.581Z [INFO] order-service - Operation: email_sent - Processing time: 398ms - RequestID: tz806wp4gze +2025-06-18T14:48:35.681Z [INFO] payment-service - Operation: webhook_sent - Processing time: 342ms - RequestID: ue49anxjc0h +2025-06-18T14:48:35.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 986ms - RequestID: o16gbsddkb +2025-06-18T14:48:35.881Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 956ms - IP: 192.168.64.33 - User: user_1021 - RequestID: rjg17kl8w1n +2025-06-18T14:48:35.981Z [TRACE] notification-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.187.199 - RequestID: k582lg2qth +2025-06-18T14:48:36.081Z [TRACE] user-service - Auth event: password_change - User: user_1001 - IP: 192.168.68.158 - RequestID: x94144c7sps +2025-06-18T14:48:36.181Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 416ms - RequestID: lpdvxk0hof9 +2025-06-18T14:48:36.281Z [INFO] auth-service - PUT /api/v1/payments - Status: 503 - Response time: 951ms - IP: 192.168.32.38 - User: user_1005 - RequestID: zflydgreaa7 +2025-06-18T14:48:36.381Z [INFO] auth-service - Database UPDATE on users - Execution time: 119ms - Rows affected: 34 - RequestID: fpg9f7kiaq5 +2025-06-18T14:48:36.481Z [INFO] order-service - Database INSERT on products - Execution time: 110ms - Rows affected: 50 - RequestID: vuk5853mqc +2025-06-18T14:48:36.581Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 400 - Response time: 1743ms - IP: 192.168.28.146 - User: user_1046 - RequestID: w9ks86f83vh +2025-06-18T14:48:36.681Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1156ms - IP: 192.168.79.143 - User: user_1006 - RequestID: nqcuwy27nxl +2025-06-18T14:48:36.781Z [TRACE] payment-service - Auth event: login_success - User: user_1064 - IP: 192.168.79.116 - RequestID: wh99rr4fge +2025-06-18T14:48:36.881Z [INFO] user-service - Database INSERT on payments - Execution time: 454ms - Rows affected: 36 - RequestID: 5d6vhhf9hcw +2025-06-18T14:48:36.981Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 844ms - RequestID: 0f9oxzrkrr77 +2025-06-18T14:48:37.081Z [INFO] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 631ms - IP: 192.168.187.199 - User: user_1099 - RequestID: sez93bny0v +2025-06-18T14:48:37.181Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 401 - Response time: 932ms - IP: 192.168.144.38 - User: user_1005 - RequestID: 8xaoq04y4ll +2025-06-18T14:48:37.281Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 207ms - Rows affected: 94 - RequestID: dp638y0l0f +2025-06-18T14:48:37.381Z [TRACE] order-service - Database DELETE on orders - Execution time: 138ms - Rows affected: 36 - RequestID: f499dp2p94h +2025-06-18T14:48:37.481Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 369ms - RequestID: k8vzlc6nrkn +2025-06-18T14:48:37.581Z [INFO] order-service - Operation: cache_hit - Processing time: 118ms - RequestID: ofjcvl7vjen +2025-06-18T14:48:37.681Z [INFO] inventory-service - Auth event: login_success - User: user_1047 - IP: 192.168.158.144 - RequestID: dpkxlhaf52 +2025-06-18T14:48:37.781Z [DEBUG] notification-service - Database DELETE on products - Execution time: 415ms - Rows affected: 72 - RequestID: tmec1xu4zuo +2025-06-18T14:48:37.881Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 404 - Response time: 1750ms - IP: 192.168.11.60 - User: user_1079 - RequestID: 6blu33uvf14 +2025-06-18T14:48:37.981Z [INFO] notification-service - Database SELECT on products - Execution time: 176ms - Rows affected: 68 - RequestID: ijdbd4xl6oa +2025-06-18T14:48:38.081Z [TRACE] payment-service - Auth event: login_failed - User: user_1002 - IP: 192.168.85.229 - RequestID: f4dvqfmg0f +2025-06-18T14:48:38.181Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 502 - Response time: 1015ms - IP: 192.168.79.141 - User: user_1027 - RequestID: c4eng3lu4n +2025-06-18T14:48:38.281Z [INFO] auth-service - POST /api/v1/inventory - Status: 400 - Response time: 776ms - IP: 192.168.53.133 - User: user_1021 - RequestID: nr4ya2v0vxg +2025-06-18T14:48:38.381Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 12ms - Rows affected: 29 - RequestID: rqwo15rm9km +2025-06-18T14:48:38.481Z [DEBUG] user-service - GET /api/v1/orders - Status: 400 - Response time: 398ms - IP: 192.168.68.128 - User: user_1047 - RequestID: th5wtcq4eep +2025-06-18T14:48:38.581Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 727ms - RequestID: sgk8ias92ds +2025-06-18T14:48:38.681Z [INFO] inventory-service - Operation: email_sent - Processing time: 804ms - RequestID: 6k9cpx8weom +2025-06-18T14:48:38.781Z [INFO] auth-service - Operation: cache_hit - Processing time: 401ms - RequestID: jnstk5qdsso +2025-06-18T14:48:38.881Z [INFO] payment-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.240.169 - RequestID: 4e3pkdm01bs +2025-06-18T14:48:38.981Z [TRACE] user-service - Operation: webhook_sent - Processing time: 101ms - RequestID: 0aqbyqs5zdeu +2025-06-18T14:48:39.081Z [TRACE] auth-service - Auth event: password_change - User: user_1090 - IP: 192.168.189.103 - RequestID: lmsyojk5u4 +2025-06-18T14:48:39.181Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 223ms - IP: 192.168.1.152 - User: user_1045 - RequestID: iwys5myntat +2025-06-18T14:48:39.281Z [DEBUG] order-service - Auth event: password_change - User: user_1043 - IP: 192.168.133.7 - RequestID: ncu70004s5 +2025-06-18T14:48:39.381Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 803ms - RequestID: ijk54c9ml1k +2025-06-18T14:48:39.481Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1489ms - IP: 192.168.196.226 - User: user_1061 - RequestID: 0q0upole6zkf +2025-06-18T14:48:39.581Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 933ms - IP: 192.168.10.184 - User: user_1071 - RequestID: 9a15zsxw9cf +2025-06-18T14:48:39.681Z [TRACE] order-service - Operation: cache_hit - Processing time: 224ms - RequestID: egj63v3np1r +2025-06-18T14:48:39.781Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 219ms - Rows affected: 11 - RequestID: 76gt9a4vp8t +2025-06-18T14:48:39.881Z [DEBUG] order-service - Database SELECT on payments - Execution time: 258ms - Rows affected: 67 - RequestID: xjqijwq65ng +2025-06-18T14:48:39.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.242.165 - RequestID: e6uv5fuu1tw +2025-06-18T14:48:40.081Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 402ms - RequestID: uclvw0lt3f +2025-06-18T14:48:40.181Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 134ms - Rows affected: 25 - RequestID: cv6zya97mte +2025-06-18T14:48:40.281Z [INFO] user-service - PATCH /api/v1/users - Status: 201 - Response time: 1979ms - IP: 192.168.232.72 - User: user_1087 - RequestID: x1qk6sb0k1 +2025-06-18T14:48:40.381Z [INFO] payment-service - GET /api/v1/orders - Status: 502 - Response time: 1014ms - IP: 192.168.30.79 - User: user_1031 - RequestID: v9e2m0js4qj +2025-06-18T14:48:40.481Z [INFO] auth-service - PATCH /api/v1/payments - Status: 403 - Response time: 234ms - IP: 192.168.68.128 - User: user_1009 - RequestID: bm00nkf9arc +2025-06-18T14:48:40.581Z [DEBUG] payment-service - GET /api/v1/payments - Status: 500 - Response time: 33ms - IP: 192.168.211.72 - User: user_1002 - RequestID: f0e1x1stbqp +2025-06-18T14:48:40.681Z [DEBUG] order-service - Database SELECT on users - Execution time: 410ms - Rows affected: 61 - RequestID: hgkbg9uw01d +2025-06-18T14:48:40.781Z [TRACE] order-service - Operation: payment_processed - Processing time: 298ms - RequestID: w7b5c5r8nk +2025-06-18T14:48:40.881Z [INFO] user-service - Operation: notification_queued - Processing time: 435ms - RequestID: ujr7bbfp35 +2025-06-18T14:48:40.981Z [DEBUG] user-service - PATCH /api/v1/users - Status: 200 - Response time: 357ms - IP: 192.168.31.117 - User: user_1077 - RequestID: lvfq7ptwm5s +2025-06-18T14:48:41.081Z [INFO] inventory-service - Database UPDATE on users - Execution time: 65ms - Rows affected: 93 - RequestID: 0uxqj67t5eu +2025-06-18T14:48:41.181Z [TRACE] notification-service - Auth event: login_failed - User: user_1024 - IP: 192.168.174.114 - RequestID: vymlgjz98rd +2025-06-18T14:48:41.281Z [TRACE] order-service - Database INSERT on orders - Execution time: 64ms - Rows affected: 13 - RequestID: z965hv15999 +2025-06-18T14:48:41.381Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 161ms - Rows affected: 28 - RequestID: 0bkqu5uforak +2025-06-18T14:48:41.481Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 200 - Response time: 795ms - IP: 192.168.229.123 - User: user_1087 - RequestID: mx912y3peyh +2025-06-18T14:48:41.581Z [TRACE] payment-service - Database DELETE on users - Execution time: 214ms - Rows affected: 54 - RequestID: 8qen4667gt8 +2025-06-18T14:48:41.681Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 325ms - RequestID: t9uiel8yp9 +2025-06-18T14:48:41.781Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 366ms - Rows affected: 86 - RequestID: lyda8frdw1 +2025-06-18T14:48:41.881Z [INFO] notification-service - Operation: webhook_sent - Processing time: 772ms - RequestID: rnp320tqyk +2025-06-18T14:48:41.981Z [TRACE] notification-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.181.225 - RequestID: 60q9n25xkg2 +2025-06-18T14:48:42.081Z [DEBUG] auth-service - POST /api/v1/orders - Status: 201 - Response time: 1162ms - IP: 192.168.167.32 - User: user_1041 - RequestID: pv7lch3shof +2025-06-18T14:48:42.181Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 115ms - Rows affected: 8 - RequestID: 0hbb8682nlro +2025-06-18T14:48:42.281Z [TRACE] notification-service - Database UPDATE on users - Execution time: 478ms - Rows affected: 8 - RequestID: u3679k64ka9 +2025-06-18T14:48:42.381Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 929ms - RequestID: 5m4molee6fl +2025-06-18T14:48:42.481Z [INFO] notification-service - Database SELECT on orders - Execution time: 136ms - Rows affected: 3 - RequestID: ryt1kr6tqa +2025-06-18T14:48:42.581Z [INFO] notification-service - Auth event: login_failed - User: user_1080 - IP: 192.168.240.169 - RequestID: 0n4hs8ok6c8g +2025-06-18T14:48:42.681Z [INFO] user-service - Operation: webhook_sent - Processing time: 712ms - RequestID: iucw4zfy5bf +2025-06-18T14:48:42.781Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 19ms - Rows affected: 72 - RequestID: 6028aiqvpcd +2025-06-18T14:48:42.881Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 390ms - RequestID: iduh3j58odq +2025-06-18T14:48:42.981Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 404 - Response time: 1109ms - IP: 192.168.147.171 - User: user_1014 - RequestID: 9fhrmpbylh7 +2025-06-18T14:48:43.081Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 486ms - Rows affected: 4 - RequestID: v0cbzauflik +2025-06-18T14:48:43.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.53.133 - RequestID: 11eiu2polhcn +2025-06-18T14:48:43.281Z [INFO] auth-service - Operation: cache_miss - Processing time: 362ms - RequestID: 7lcin8e1b9n +2025-06-18T14:48:43.381Z [INFO] user-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.187.199 - RequestID: yyzzvswv54 +2025-06-18T14:48:43.481Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1760ms - IP: 192.168.10.184 - User: user_1060 - RequestID: wvq0s6e02g +2025-06-18T14:48:43.581Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 343ms - Rows affected: 99 - RequestID: 1xtsd6ddeek +2025-06-18T14:48:43.681Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 807ms - RequestID: t81lrydy5p9 +2025-06-18T14:48:43.781Z [TRACE] order-service - Auth event: password_change - User: user_1087 - IP: 192.168.189.103 - RequestID: 26q1pmemmm7 +2025-06-18T14:48:43.881Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 56ms - IP: 192.168.79.141 - User: user_1037 - RequestID: 4rpfhygeo1v +2025-06-18T14:48:43.981Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 168ms - Rows affected: 2 - RequestID: q8pcpwa3ua9 +2025-06-18T14:48:44.081Z [INFO] order-service - Database SELECT on sessions - Execution time: 322ms - Rows affected: 32 - RequestID: tpdsf6olz3 +2025-06-18T14:48:44.181Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 404 - Response time: 1714ms - IP: 192.168.28.146 - User: user_1095 - RequestID: j6il7p9e2bd +2025-06-18T14:48:44.281Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 602ms - RequestID: bc9jgf4c79s +2025-06-18T14:48:44.381Z [TRACE] auth-service - Database UPDATE on users - Execution time: 426ms - Rows affected: 88 - RequestID: eiv7m2yzdw +2025-06-18T14:48:44.481Z [INFO] auth-service - POST /api/v1/inventory - Status: 404 - Response time: 928ms - IP: 192.168.170.215 - User: user_1029 - RequestID: n1unsohwa7e +2025-06-18T14:48:44.581Z [TRACE] inventory-service - Operation: order_created - Processing time: 81ms - RequestID: elbwky9vgl +2025-06-18T14:48:44.681Z [INFO] order-service - Operation: inventory_updated - Processing time: 513ms - RequestID: 2nr1cof1oep +2025-06-18T14:48:44.781Z [INFO] user-service - Database SELECT on orders - Execution time: 43ms - Rows affected: 60 - RequestID: 907sr6xzu2g +2025-06-18T14:48:44.881Z [TRACE] order-service - Auth event: login_success - User: user_1057 - IP: 192.168.13.72 - RequestID: gyrll5h26pw +2025-06-18T14:48:44.981Z [INFO] order-service - Operation: payment_processed - Processing time: 428ms - RequestID: tskn82qz5d8 +2025-06-18T14:48:45.081Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 181ms - Rows affected: 12 - RequestID: 6ud29as0bbg +2025-06-18T14:48:45.181Z [TRACE] order-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.10.184 - RequestID: 2szmnuxn3kw +2025-06-18T14:48:45.281Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1191ms - IP: 192.168.53.133 - User: user_1006 - RequestID: p4r8o2zqud +2025-06-18T14:48:45.381Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 201 - Response time: 370ms - IP: 192.168.14.77 - User: user_1081 - RequestID: m8e93lyltim +2025-06-18T14:48:45.481Z [INFO] notification-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.181.225 - RequestID: 6pj8gddio3b +2025-06-18T14:48:45.581Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 422ms - Rows affected: 37 - RequestID: a71svr2htwn +2025-06-18T14:48:45.681Z [TRACE] inventory-service - Database SELECT on products - Execution time: 210ms - Rows affected: 11 - RequestID: s3px60wbpdm +2025-06-18T14:48:45.781Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 86ms - Rows affected: 67 - RequestID: 5jfepe459s +2025-06-18T14:48:45.881Z [INFO] auth-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.196.226 - RequestID: 0y0fpwi8jv9 +2025-06-18T14:48:45.981Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 125ms - IP: 192.168.170.215 - User: user_1031 - RequestID: ss1h00ejzji +2025-06-18T14:48:46.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 91ms - RequestID: 87vrhwsrim4 +2025-06-18T14:48:46.181Z [TRACE] auth-service - POST /api/v1/payments - Status: 502 - Response time: 1683ms - IP: 192.168.81.206 - User: user_1077 - RequestID: y2jvpwrc3tb +2025-06-18T14:48:46.281Z [INFO] order-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1789ms - IP: 192.168.30.79 - User: user_1042 - RequestID: en0bc8dmak8 +2025-06-18T14:48:46.381Z [INFO] notification-service - Database DELETE on payments - Execution time: 284ms - Rows affected: 38 - RequestID: svv30bpmwwl +2025-06-18T14:48:46.481Z [INFO] notification-service - PATCH /api/v1/users - Status: 401 - Response time: 1811ms - IP: 192.168.30.79 - User: user_1011 - RequestID: d6h4htsit6k +2025-06-18T14:48:46.581Z [TRACE] auth-service - Operation: order_created - Processing time: 439ms - RequestID: vdli1myceo +2025-06-18T14:48:46.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.141.100 - RequestID: wwzm8e06l5o +2025-06-18T14:48:46.781Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 371ms - Rows affected: 74 - RequestID: jakoy6vmby +2025-06-18T14:48:46.881Z [TRACE] user-service - Database DELETE on payments - Execution time: 87ms - Rows affected: 3 - RequestID: h12rbzmugzn +2025-06-18T14:48:46.981Z [TRACE] user-service - Operation: webhook_sent - Processing time: 214ms - RequestID: mknf40ykmpa +2025-06-18T14:48:47.081Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1461ms - IP: 192.168.31.117 - User: user_1061 - RequestID: lge5a29p30o +2025-06-18T14:48:47.181Z [DEBUG] order-service - Database DELETE on orders - Execution time: 196ms - Rows affected: 82 - RequestID: spttr8n85ap +2025-06-18T14:48:47.281Z [TRACE] payment-service - Operation: payment_processed - Processing time: 206ms - RequestID: 8g1pqvqekjp +2025-06-18T14:48:47.381Z [INFO] auth-service - Database DELETE on orders - Execution time: 242ms - Rows affected: 26 - RequestID: psihqhbatv +2025-06-18T14:48:47.481Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1733ms - IP: 192.168.31.117 - User: user_1032 - RequestID: j1wyb21gsp +2025-06-18T14:48:47.581Z [INFO] auth-service - Database SELECT on sessions - Execution time: 393ms - Rows affected: 77 - RequestID: xjoc9czijz +2025-06-18T14:48:47.681Z [DEBUG] auth-service - Auth event: password_change - User: user_1090 - IP: 192.168.79.141 - RequestID: c7velvicktv +2025-06-18T14:48:47.781Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 565ms - RequestID: kj261ahvxn9 +2025-06-18T14:48:47.881Z [TRACE] auth-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.229.123 - RequestID: jsine2l1y0q +2025-06-18T14:48:47.981Z [INFO] user-service - Operation: notification_queued - Processing time: 1038ms - RequestID: xtz6c8om2y +2025-06-18T14:48:48.081Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 327ms - IP: 192.168.30.79 - User: user_1039 - RequestID: xy8dr5egl58 +2025-06-18T14:48:48.181Z [INFO] payment-service - Operation: notification_queued - Processing time: 453ms - RequestID: h58e8lnql99 +2025-06-18T14:48:48.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 852ms - RequestID: pdsmdnpv5cr +2025-06-18T14:48:48.381Z [INFO] order-service - Database UPDATE on users - Execution time: 452ms - Rows affected: 15 - RequestID: io1pzzrtt4g +2025-06-18T14:48:48.481Z [TRACE] user-service - POST /api/v1/payments - Status: 500 - Response time: 1460ms - IP: 192.168.46.63 - User: user_1094 - RequestID: ajgg7y7rrsq +2025-06-18T14:48:48.581Z [INFO] user-service - POST /api/v1/users - Status: 200 - Response time: 149ms - IP: 192.168.36.218 - User: user_1054 - RequestID: 4jzzk49bwh5 +2025-06-18T14:48:48.681Z [INFO] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 772ms - IP: 192.168.33.76 - User: user_1091 - RequestID: 1sjtw7d94ip +2025-06-18T14:48:48.781Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 401 - Response time: 566ms - IP: 192.168.113.218 - User: user_1066 - RequestID: 2s8t6wwvbge +2025-06-18T14:48:48.881Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 200 - Response time: 1241ms - IP: 192.168.100.240 - User: user_1053 - RequestID: flzcy2vhks +2025-06-18T14:48:48.981Z [TRACE] user-service - Database SELECT on products - Execution time: 122ms - Rows affected: 94 - RequestID: 5e31gmphj +2025-06-18T14:48:49.081Z [DEBUG] user-service - PUT /api/v1/orders - Status: 404 - Response time: 348ms - IP: 192.168.211.72 - User: user_1051 - RequestID: l54e937gav +2025-06-18T14:48:49.181Z [TRACE] auth-service - Auth event: logout - User: user_1097 - IP: 192.168.100.240 - RequestID: tlyh5v6mwym +2025-06-18T14:48:49.281Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 502 - Response time: 332ms - IP: 192.168.79.116 - User: user_1073 - RequestID: 290gwdtufkr +2025-06-18T14:48:49.381Z [INFO] payment-service - Database DELETE on sessions - Execution time: 458ms - Rows affected: 59 - RequestID: 6rdv1l2liiy +2025-06-18T14:48:49.481Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 173ms - Rows affected: 51 - RequestID: 5p9aqi3bppg +2025-06-18T14:48:49.581Z [INFO] payment-service - Operation: order_created - Processing time: 267ms - RequestID: d5j3dgl1laq +2025-06-18T14:48:49.681Z [INFO] auth-service - Database SELECT on orders - Execution time: 383ms - Rows affected: 76 - RequestID: kcs5hy6174 +2025-06-18T14:48:49.781Z [DEBUG] order-service - Operation: email_sent - Processing time: 580ms - RequestID: rridz7hku0h +2025-06-18T14:48:49.881Z [INFO] payment-service - PATCH /api/v1/orders - Status: 500 - Response time: 681ms - IP: 192.168.14.77 - User: user_1041 - RequestID: 4c1jkzmj53 +2025-06-18T14:48:49.981Z [INFO] inventory-service - Database SELECT on payments - Execution time: 233ms - Rows affected: 17 - RequestID: bu8kdj6045 +2025-06-18T14:48:50.081Z [INFO] payment-service - Database UPDATE on products - Execution time: 189ms - Rows affected: 71 - RequestID: vynqwvrtjw +2025-06-18T14:48:50.181Z [INFO] notification-service - GET /api/v1/auth/login - Status: 500 - Response time: 768ms - IP: 192.168.31.117 - User: user_1073 - RequestID: wvjrgg2n1kf +2025-06-18T14:48:50.281Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1209ms - IP: 192.168.181.225 - User: user_1069 - RequestID: gfehy0ndbye +2025-06-18T14:48:50.381Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 453ms - Rows affected: 10 - RequestID: q8tifpwvzd +2025-06-18T14:48:50.481Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.81.206 - RequestID: ctj6ygnbj9 +2025-06-18T14:48:50.581Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1694ms - IP: 192.168.104.37 - User: user_1042 - RequestID: h7znllxoczs +2025-06-18T14:48:50.681Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 253ms - Rows affected: 53 - RequestID: yssdh8t52zc +2025-06-18T14:48:50.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.229.123 - RequestID: 1u07vbo65or +2025-06-18T14:48:50.881Z [INFO] order-service - Operation: email_sent - Processing time: 1048ms - RequestID: 32ivvjmgwoa +2025-06-18T14:48:50.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.68.158 - RequestID: 3pxm5rnhvx6 +2025-06-18T14:48:51.081Z [INFO] user-service - POST /api/v1/auth/logout - Status: 400 - Response time: 652ms - IP: 192.168.144.38 - User: user_1051 - RequestID: b48u9eawk3c +2025-06-18T14:48:51.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 874ms - RequestID: 4dfljyng9ho +2025-06-18T14:48:51.281Z [TRACE] notification-service - Auth event: password_change - User: user_1097 - IP: 192.168.10.184 - RequestID: uige8brx5ff +2025-06-18T14:48:51.381Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1020ms - IP: 192.168.232.72 - User: user_1053 - RequestID: n6si363jl9 +2025-06-18T14:48:51.481Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 403ms - Rows affected: 17 - RequestID: 0plc58cgrhc +2025-06-18T14:48:51.581Z [TRACE] order-service - Operation: webhook_sent - Processing time: 317ms - RequestID: nllg1c4sc1l +2025-06-18T14:48:51.681Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1737ms - IP: 192.168.81.206 - User: user_1045 - RequestID: 1fui9k1jlsp +2025-06-18T14:48:51.781Z [TRACE] order-service - Operation: cache_miss - Processing time: 637ms - RequestID: h4gfifkbx8i +2025-06-18T14:48:51.881Z [INFO] auth-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.64.33 - RequestID: w21voxtqsg +2025-06-18T14:48:51.981Z [DEBUG] order-service - Auth event: login_failed - User: user_1019 - IP: 192.168.211.72 - RequestID: 9pywpdhkcju +2025-06-18T14:48:52.081Z [TRACE] user-service - Auth event: logout - User: user_1079 - IP: 192.168.133.7 - RequestID: amwb220pb67 +2025-06-18T14:48:52.181Z [DEBUG] notification-service - Auth event: logout - User: user_1038 - IP: 192.168.46.63 - RequestID: 5aoilbjx7aj +2025-06-18T14:48:52.281Z [TRACE] order-service - Operation: inventory_updated - Processing time: 895ms - RequestID: w8nnw1wzvj +2025-06-18T14:48:52.381Z [TRACE] auth-service - Database DELETE on payments - Execution time: 66ms - Rows affected: 83 - RequestID: nb0shmlszy +2025-06-18T14:48:52.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 266ms - RequestID: rryt0wrehg +2025-06-18T14:48:52.581Z [TRACE] payment-service - PUT /api/v1/payments - Status: 401 - Response time: 1194ms - IP: 192.168.181.225 - User: user_1010 - RequestID: elc8ucty2fp +2025-06-18T14:48:52.681Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 97ms - Rows affected: 98 - RequestID: 0ffa6xh75osu +2025-06-18T14:48:52.781Z [INFO] payment-service - POST /api/v1/payments - Status: 502 - Response time: 1858ms - IP: 192.168.53.133 - User: user_1007 - RequestID: h5s6fkfbhlf +2025-06-18T14:48:52.881Z [INFO] auth-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.11.60 - RequestID: s8eu3nxtz8a +2025-06-18T14:48:52.981Z [TRACE] order-service - Operation: cache_miss - Processing time: 853ms - RequestID: al5dqskonkw +2025-06-18T14:48:53.081Z [INFO] order-service - Database DELETE on orders - Execution time: 144ms - Rows affected: 14 - RequestID: c9ka7dou8m +2025-06-18T14:48:53.181Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 165ms - Rows affected: 0 - RequestID: nwl4wqpwhu +2025-06-18T14:48:53.281Z [TRACE] inventory-service - Auth event: login_success - User: user_1022 - IP: 192.168.133.7 - RequestID: rmv8cridmbn +2025-06-18T14:48:53.381Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 200 - Response time: 1923ms - IP: 192.168.174.114 - User: user_1037 - RequestID: ra3qime09ms +2025-06-18T14:48:53.481Z [INFO] order-service - Database DELETE on sessions - Execution time: 26ms - Rows affected: 92 - RequestID: fjk0w35rekm +2025-06-18T14:48:53.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.44.5 - RequestID: tiw2fccbcd +2025-06-18T14:48:53.681Z [DEBUG] notification-service - Operation: email_sent - Processing time: 629ms - RequestID: ajylspafcb +2025-06-18T14:48:53.781Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1976ms - IP: 192.168.79.143 - User: user_1038 - RequestID: 4wdaw5r1umd +2025-06-18T14:48:53.881Z [INFO] order-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1990ms - IP: 192.168.247.134 - User: user_1056 - RequestID: mdk9k6q3u8 +2025-06-18T14:48:53.981Z [INFO] order-service - Auth event: login_failed - User: user_1008 - IP: 192.168.64.33 - RequestID: ubv0ele0hwb +2025-06-18T14:48:54.081Z [DEBUG] user-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.11.60 - RequestID: as4yreffev4 +2025-06-18T14:48:54.181Z [INFO] inventory-service - Auth event: login_success - User: user_1053 - IP: 192.168.227.77 - RequestID: y6y5d6zu0ep +2025-06-18T14:48:54.281Z [INFO] user-service - POST /api/v1/orders - Status: 503 - Response time: 1424ms - IP: 192.168.187.199 - User: user_1079 - RequestID: vux733glzbe +2025-06-18T14:48:54.381Z [TRACE] order-service - Auth event: login_failed - User: user_1096 - IP: 192.168.187.199 - RequestID: 7impn1pnngu +2025-06-18T14:48:54.481Z [TRACE] user-service - Operation: order_created - Processing time: 482ms - RequestID: wzzu52i63ho +2025-06-18T14:48:54.581Z [TRACE] user-service - Operation: email_sent - Processing time: 96ms - RequestID: ynas0x9j22 +2025-06-18T14:48:54.681Z [TRACE] order-service - Database UPDATE on products - Execution time: 276ms - Rows affected: 85 - RequestID: zso47gkv71f +2025-06-18T14:48:54.781Z [TRACE] user-service - Operation: notification_queued - Processing time: 933ms - RequestID: v56apt19qg +2025-06-18T14:48:54.881Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 189ms - Rows affected: 75 - RequestID: 69rorgjv9xi +2025-06-18T14:48:54.981Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1610ms - IP: 192.168.1.152 - User: user_1042 - RequestID: nndmba1sx9i +2025-06-18T14:48:55.081Z [DEBUG] order-service - Operation: notification_queued - Processing time: 914ms - RequestID: kh10ugii998 +2025-06-18T14:48:55.181Z [INFO] payment-service - Auth event: password_change - User: user_1094 - IP: 192.168.170.215 - RequestID: qyeffdzy63 +2025-06-18T14:48:55.281Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 334ms - RequestID: 6crojw8ah9j +2025-06-18T14:48:55.381Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1076ms - IP: 192.168.30.79 - User: user_1020 - RequestID: f0m5p0phc1v +2025-06-18T14:48:55.481Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 506ms - RequestID: oux3opqy45 +2025-06-18T14:48:55.581Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 216ms - Rows affected: 93 - RequestID: 0rizadnh2ujs +2025-06-18T14:48:55.681Z [DEBUG] payment-service - Auth event: logout - User: user_1004 - IP: 192.168.13.72 - RequestID: kpjox3dis2r +2025-06-18T14:48:55.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1060 - IP: 192.168.187.199 - RequestID: 7750sjzsdzw +2025-06-18T14:48:55.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 1001ms - RequestID: dl8xguc5fu9 +2025-06-18T14:48:55.981Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 502 - Response time: 872ms - IP: 192.168.79.141 - User: user_1072 - RequestID: om6qdxs8c4 +2025-06-18T14:48:56.081Z [TRACE] payment-service - Auth event: login_failed - User: user_1002 - IP: 192.168.31.117 - RequestID: t5ot84d37f +2025-06-18T14:48:56.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 170ms - RequestID: en6yd6lyfy7 +2025-06-18T14:48:56.281Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 44ms - Rows affected: 62 - RequestID: ullneupo7l +2025-06-18T14:48:56.381Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 487ms - RequestID: 2wwn191p2th +2025-06-18T14:48:56.481Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 77ms - Rows affected: 15 - RequestID: 00trm5dgckgse +2025-06-18T14:48:56.581Z [INFO] user-service - Operation: order_created - Processing time: 450ms - RequestID: bbdribpspoh +2025-06-18T14:48:56.681Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 141ms - Rows affected: 38 - RequestID: q8c0pzy551 +2025-06-18T14:48:56.781Z [INFO] order-service - Auth event: logout - User: user_1016 - IP: 192.168.97.87 - RequestID: gxwlmnp59n8 +2025-06-18T14:48:56.881Z [TRACE] payment-service - Database SELECT on orders - Execution time: 390ms - Rows affected: 96 - RequestID: 17jz0r3qj75 +2025-06-18T14:48:56.981Z [TRACE] notification-service - DELETE /api/v1/users - Status: 201 - Response time: 1128ms - IP: 192.168.44.5 - User: user_1040 - RequestID: 47aacwo0e +2025-06-18T14:48:57.081Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1517ms - IP: 192.168.46.63 - User: user_1088 - RequestID: tl3dq4j239s +2025-06-18T14:48:57.181Z [DEBUG] inventory-service - Auth event: login_success - User: user_1040 - IP: 192.168.53.133 - RequestID: ydx7geesd3p +2025-06-18T14:48:57.281Z [DEBUG] order-service - Operation: notification_queued - Processing time: 194ms - RequestID: 8wnzkqh0l0p +2025-06-18T14:48:57.381Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 290ms - Rows affected: 97 - RequestID: hc41g7snm0d +2025-06-18T14:48:57.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 72ms - RequestID: iqn07p6tjhj +2025-06-18T14:48:57.581Z [INFO] order-service - GET /api/v1/users - Status: 400 - Response time: 422ms - IP: 192.168.68.128 - User: user_1098 - RequestID: rp70adz12fe +2025-06-18T14:48:57.681Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 266ms - Rows affected: 48 - RequestID: 2wriboi73v6 +2025-06-18T14:48:57.781Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 356ms - RequestID: ysq0k4na34 +2025-06-18T14:48:57.881Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 418ms - Rows affected: 25 - RequestID: z2ecnwazo2h +2025-06-18T14:48:57.981Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1395ms - IP: 192.168.1.152 - User: user_1025 - RequestID: cegy3oyzuco +2025-06-18T14:48:58.081Z [TRACE] auth-service - Database DELETE on orders - Execution time: 254ms - Rows affected: 30 - RequestID: gve0yu15r1e +2025-06-18T14:48:58.181Z [INFO] user-service - Operation: order_created - Processing time: 547ms - RequestID: h4sa9b9lojn +2025-06-18T14:48:58.281Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 534ms - IP: 192.168.181.225 - User: user_1062 - RequestID: fzjns64mldb +2025-06-18T14:48:58.381Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 461ms - Rows affected: 89 - RequestID: 91mvba1ziy +2025-06-18T14:48:58.481Z [TRACE] payment-service - Operation: cache_miss - Processing time: 346ms - RequestID: v9den9ehws +2025-06-18T14:48:58.581Z [TRACE] user-service - Operation: payment_processed - Processing time: 542ms - RequestID: izbyvak8qc +2025-06-18T14:48:58.681Z [DEBUG] order-service - Operation: order_created - Processing time: 747ms - RequestID: 8vzj30yrx5c +2025-06-18T14:48:58.781Z [INFO] inventory-service - Operation: notification_queued - Processing time: 985ms - RequestID: 593me8lhnv +2025-06-18T14:48:58.881Z [TRACE] notification-service - Operation: email_sent - Processing time: 342ms - RequestID: xfl3hgfq7zh +2025-06-18T14:48:58.981Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 624ms - RequestID: nx8224x71e +2025-06-18T14:48:59.081Z [INFO] order-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1372ms - IP: 192.168.10.184 - User: user_1091 - RequestID: hy3b7fmrrp8 +2025-06-18T14:48:59.181Z [TRACE] order-service - POST /api/v1/inventory - Status: 404 - Response time: 1341ms - IP: 192.168.227.77 - User: user_1063 - RequestID: 6wbz8wbxb83 +2025-06-18T14:48:59.281Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1583ms - IP: 192.168.79.143 - User: user_1060 - RequestID: hdbi6zehdfk +2025-06-18T14:48:59.381Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 500 - Response time: 693ms - IP: 192.168.227.77 - User: user_1094 - RequestID: r60ze29gsc +2025-06-18T14:48:59.481Z [DEBUG] user-service - POST /api/v1/inventory - Status: 503 - Response time: 43ms - IP: 192.168.13.72 - User: user_1056 - RequestID: lurhfd0ce6p +2025-06-18T14:48:59.581Z [INFO] auth-service - PATCH /api/v1/users - Status: 503 - Response time: 1846ms - IP: 192.168.133.7 - User: user_1087 - RequestID: v0wtmc1px3 +2025-06-18T14:48:59.681Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 114ms - Rows affected: 77 - RequestID: q9kvehmptfk +2025-06-18T14:48:59.781Z [DEBUG] order-service - Operation: cache_hit - Processing time: 236ms - RequestID: r5opx86qiqq +2025-06-18T14:48:59.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.104.37 - RequestID: anzlt1aebji +2025-06-18T14:48:59.981Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 485ms - Rows affected: 30 - RequestID: 9ykxw33yldj +2025-06-18T14:49:00.081Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1873ms - IP: 192.168.240.169 - User: user_1016 - RequestID: 12wqqn8rtrn +2025-06-18T14:49:00.181Z [INFO] notification-service - Auth event: login_success - User: user_1048 - IP: 192.168.247.134 - RequestID: 4cvy2xjs35 +2025-06-18T14:49:00.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 666ms - RequestID: a1ethvho2df +2025-06-18T14:49:00.381Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 345ms - Rows affected: 83 - RequestID: lmj4vmhyunr +2025-06-18T14:49:00.481Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 400 - Response time: 836ms - IP: 192.168.85.229 - User: user_1001 - RequestID: 6nfmz506on2 +2025-06-18T14:49:00.581Z [INFO] user-service - Database DELETE on products - Execution time: 447ms - Rows affected: 70 - RequestID: d1yvlfba9zo +2025-06-18T14:49:00.681Z [DEBUG] notification-service - Auth event: login_success - User: user_1042 - IP: 192.168.79.116 - RequestID: 4jy6k39ugei +2025-06-18T14:49:00.781Z [INFO] payment-service - PUT /api/v1/payments - Status: 200 - Response time: 1234ms - IP: 192.168.10.184 - User: user_1082 - RequestID: pxi5q485wdm +2025-06-18T14:49:00.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 651ms - RequestID: vh35qg64kzk +2025-06-18T14:49:00.981Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 503 - Response time: 855ms - IP: 192.168.1.152 - User: user_1067 - RequestID: pvj8u3zw1 +2025-06-18T14:49:01.081Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 362ms - RequestID: gzhrhcajrzg +2025-06-18T14:49:01.181Z [DEBUG] user-service - Auth event: logout - User: user_1010 - IP: 192.168.53.133 - RequestID: q1jt57whp5 +2025-06-18T14:49:01.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.10.184 - RequestID: xhkvrkfvcvj +2025-06-18T14:49:01.381Z [DEBUG] payment-service - GET /api/v1/orders - Status: 502 - Response time: 1084ms - IP: 192.168.211.72 - User: user_1075 - RequestID: a9w77abpct +2025-06-18T14:49:01.481Z [DEBUG] order-service - Auth event: password_change - User: user_1090 - IP: 192.168.11.60 - RequestID: go2k1hz8t2f +2025-06-18T14:49:01.581Z [DEBUG] user-service - Auth event: password_change - User: user_1017 - IP: 192.168.170.215 - RequestID: hnu8605h2w6 +2025-06-18T14:49:01.681Z [INFO] auth-service - Auth event: logout - User: user_1015 - IP: 192.168.14.77 - RequestID: nktkqo0757f +2025-06-18T14:49:01.781Z [TRACE] notification-service - PUT /api/v1/orders - Status: 500 - Response time: 912ms - IP: 192.168.36.218 - User: user_1073 - RequestID: 1sc7vq9i2hs +2025-06-18T14:49:01.881Z [TRACE] notification-service - Database SELECT on payments - Execution time: 480ms - Rows affected: 85 - RequestID: csszmpw2snv +2025-06-18T14:49:01.981Z [INFO] user-service - Auth event: password_change - User: user_1082 - IP: 192.168.68.158 - RequestID: tbda8xwnxjd +2025-06-18T14:49:02.081Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 246ms - Rows affected: 77 - RequestID: eefexk96k9m +2025-06-18T14:49:02.181Z [INFO] user-service - Operation: cache_hit - Processing time: 179ms - RequestID: 7f166zqtw1m +2025-06-18T14:49:02.281Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1931ms - IP: 192.168.31.117 - User: user_1010 - RequestID: ohjafdthroe +2025-06-18T14:49:02.381Z [TRACE] auth-service - GET /api/v1/payments - Status: 201 - Response time: 886ms - IP: 192.168.31.117 - User: user_1017 - RequestID: oyjyivbyiu +2025-06-18T14:49:02.481Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 215ms - RequestID: f6fsrjzzf2k +2025-06-18T14:49:02.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 315ms - RequestID: xud2t118hka +2025-06-18T14:49:02.681Z [INFO] notification-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.247.134 - RequestID: uoz3e2rhegp +2025-06-18T14:49:02.781Z [TRACE] payment-service - PUT /api/v1/users - Status: 502 - Response time: 1861ms - IP: 192.168.159.94 - User: user_1042 - RequestID: v4lh38ruex +2025-06-18T14:49:02.881Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 494ms - RequestID: pnme5jfu4b +2025-06-18T14:49:02.981Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 403 - Response time: 461ms - IP: 192.168.85.229 - User: user_1096 - RequestID: i9b640v5pn9 +2025-06-18T14:49:03.081Z [DEBUG] order-service - POST /api/v1/inventory - Status: 503 - Response time: 322ms - IP: 192.168.232.72 - User: user_1087 - RequestID: ehs61gyngov +2025-06-18T14:49:03.181Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 128ms - Rows affected: 5 - RequestID: 0oev7hmj87nq +2025-06-18T14:49:03.281Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 487ms - Rows affected: 31 - RequestID: 72fzadsnevh +2025-06-18T14:49:03.381Z [TRACE] payment-service - Operation: notification_queued - Processing time: 136ms - RequestID: h4j0zi9kqjt +2025-06-18T14:49:03.481Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1827ms - IP: 192.168.97.87 - User: user_1028 - RequestID: z00394v2z9q +2025-06-18T14:49:03.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.1.152 - RequestID: l70sot2b7p +2025-06-18T14:49:03.681Z [INFO] inventory-service - DELETE /api/v1/users - Status: 403 - Response time: 968ms - IP: 192.168.100.240 - User: user_1015 - RequestID: t8iyps6u4n +2025-06-18T14:49:03.781Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 201 - Response time: 257ms - IP: 192.168.79.116 - User: user_1092 - RequestID: emokmp7s0xc +2025-06-18T14:49:03.881Z [INFO] order-service - Operation: webhook_sent - Processing time: 574ms - RequestID: n4gmvbkzn0o +2025-06-18T14:49:03.981Z [INFO] notification-service - Operation: cache_hit - Processing time: 219ms - RequestID: g4wz8zz8gvq +2025-06-18T14:49:04.081Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 380ms - Rows affected: 1 - RequestID: 40c4n363vxd +2025-06-18T14:49:04.181Z [INFO] order-service - Operation: cache_hit - Processing time: 629ms - RequestID: 1nerrfigwbr +2025-06-18T14:49:04.281Z [INFO] notification-service - Operation: webhook_sent - Processing time: 80ms - RequestID: 5ms2hoi1nnl +2025-06-18T14:49:04.381Z [DEBUG] order-service - Auth event: login_failed - User: user_1054 - IP: 192.168.44.5 - RequestID: hsxmxoxbadd +2025-06-18T14:49:04.481Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 502 - Response time: 1690ms - IP: 192.168.30.79 - User: user_1094 - RequestID: ntn2e5q93p +2025-06-18T14:49:04.581Z [INFO] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 1305ms - IP: 192.168.247.134 - User: user_1024 - RequestID: jdsq3dxgrn +2025-06-18T14:49:04.681Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 502 - Response time: 1622ms - IP: 192.168.79.143 - User: user_1060 - RequestID: 7b02irlh8n2 +2025-06-18T14:49:04.781Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 931ms - RequestID: 9fjo1kp8zxw +2025-06-18T14:49:04.881Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1329ms - IP: 192.168.81.206 - User: user_1077 - RequestID: b7p5e292p05 +2025-06-18T14:49:04.981Z [INFO] notification-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.46.63 - RequestID: n7yryr2ws4 +2025-06-18T14:49:05.081Z [TRACE] notification-service - POST /api/v1/inventory - Status: 400 - Response time: 1265ms - IP: 192.168.181.225 - User: user_1086 - RequestID: 0kdo05oq42 +2025-06-18T14:49:05.181Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.100.240 - RequestID: 7piqtg6p1x5 +2025-06-18T14:49:05.281Z [INFO] inventory-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.46.63 - RequestID: 5tr2cco7uo7 +2025-06-18T14:49:05.381Z [INFO] auth-service - Auth event: login_success - User: user_1046 - IP: 192.168.1.152 - RequestID: 4fm5r5kdrw +2025-06-18T14:49:05.481Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 502 - Response time: 880ms - IP: 192.168.14.77 - User: user_1015 - RequestID: bvnni0sxc18 +2025-06-18T14:49:05.581Z [INFO] auth-service - Operation: inventory_updated - Processing time: 614ms - RequestID: zxu16atf10c +2025-06-18T14:49:05.681Z [TRACE] auth-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.53.133 - RequestID: x4844cl7uj9 +2025-06-18T14:49:05.781Z [TRACE] notification-service - Database SELECT on products - Execution time: 220ms - Rows affected: 89 - RequestID: r9rqneb33ze +2025-06-18T14:49:05.881Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 477ms - Rows affected: 76 - RequestID: u4and6sj57i +2025-06-18T14:49:05.981Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 68ms - Rows affected: 81 - RequestID: xmi9l5ttgb +2025-06-18T14:49:06.081Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 47ms - Rows affected: 31 - RequestID: 6o661udn7lt +2025-06-18T14:49:06.181Z [TRACE] notification-service - Auth event: login_success - User: user_1055 - IP: 192.168.68.128 - RequestID: feysh9iexfm +2025-06-18T14:49:06.281Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1693ms - IP: 192.168.247.134 - User: user_1067 - RequestID: nga8pfnkjbr +2025-06-18T14:49:06.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 866ms - RequestID: v9w736tsj7 +2025-06-18T14:49:06.481Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 89ms - Rows affected: 64 - RequestID: gh4e8yokw8d +2025-06-18T14:49:06.581Z [TRACE] order-service - Operation: inventory_updated - Processing time: 630ms - RequestID: khp3phny45 +2025-06-18T14:49:06.681Z [INFO] notification-service - Database DELETE on payments - Execution time: 448ms - Rows affected: 15 - RequestID: 8c64yjwkfb7 +2025-06-18T14:49:06.781Z [TRACE] order-service - PATCH /api/v1/payments - Status: 403 - Response time: 366ms - IP: 192.168.196.226 - User: user_1019 - RequestID: rsip15k1j8 +2025-06-18T14:49:06.881Z [TRACE] user-service - Database SELECT on products - Execution time: 311ms - Rows affected: 37 - RequestID: 20mj9p7vqvg +2025-06-18T14:49:06.981Z [DEBUG] user-service - Database DELETE on payments - Execution time: 8ms - Rows affected: 52 - RequestID: wccfslhy55q +2025-06-18T14:49:07.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.36.218 - RequestID: vsfzaparcjq +2025-06-18T14:49:07.181Z [INFO] notification-service - GET /api/v1/inventory - Status: 403 - Response time: 437ms - IP: 192.168.1.152 - User: user_1048 - RequestID: kzq6j5iy0j +2025-06-18T14:49:07.281Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.53.133 - RequestID: t43d35srvq +2025-06-18T14:49:07.381Z [TRACE] notification-service - Auth event: password_change - User: user_1022 - IP: 192.168.14.77 - RequestID: rwirid6bq7h +2025-06-18T14:49:07.481Z [TRACE] order-service - Database DELETE on sessions - Execution time: 182ms - Rows affected: 81 - RequestID: m4h25qr1zi +2025-06-18T14:49:07.581Z [TRACE] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 765ms - IP: 192.168.36.218 - User: user_1035 - RequestID: k9pzc4s78pb +2025-06-18T14:49:07.681Z [INFO] order-service - Auth event: login_failed - User: user_1053 - IP: 192.168.11.60 - RequestID: i1h1moaypg +2025-06-18T14:49:07.781Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 1495ms - IP: 192.168.194.41 - User: user_1006 - RequestID: ce3js7p6h8e +2025-06-18T14:49:07.881Z [TRACE] auth-service - PUT /api/v1/payments - Status: 404 - Response time: 403ms - IP: 192.168.46.63 - User: user_1001 - RequestID: 8rt9xtj0ovu +2025-06-18T14:49:07.981Z [INFO] inventory-service - Database INSERT on products - Execution time: 89ms - Rows affected: 76 - RequestID: 26xawhokk9q +2025-06-18T14:49:08.081Z [INFO] auth-service - Operation: inventory_updated - Processing time: 145ms - RequestID: 7045sfrgv9n +2025-06-18T14:49:08.181Z [INFO] user-service - Database SELECT on payments - Execution time: 480ms - Rows affected: 83 - RequestID: uixlaxmr25 +2025-06-18T14:49:08.281Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 58ms - Rows affected: 59 - RequestID: ocahx7y01m +2025-06-18T14:49:08.381Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 1038ms - RequestID: whwul899na +2025-06-18T14:49:08.481Z [INFO] notification-service - Database INSERT on orders - Execution time: 455ms - Rows affected: 28 - RequestID: 09vnmy7yjdop +2025-06-18T14:49:08.581Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 201 - Response time: 598ms - IP: 192.168.64.33 - User: user_1090 - RequestID: ius3iwico0e +2025-06-18T14:49:08.681Z [TRACE] order-service - PUT /api/v1/users - Status: 502 - Response time: 1592ms - IP: 192.168.53.133 - User: user_1019 - RequestID: 658sevl03oy +2025-06-18T14:49:08.781Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 201 - Response time: 20ms - IP: 192.168.79.116 - User: user_1092 - RequestID: idm8h3wq1zj +2025-06-18T14:49:08.881Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 687ms - RequestID: xmqifoiuxua +2025-06-18T14:49:08.981Z [DEBUG] user-service - Operation: notification_queued - Processing time: 252ms - RequestID: q63j3mtz4yf +2025-06-18T14:49:09.081Z [INFO] notification-service - Auth event: login_success - User: user_1048 - IP: 192.168.227.233 - RequestID: ppioy3fqp1l +2025-06-18T14:49:09.181Z [TRACE] order-service - Operation: notification_queued - Processing time: 348ms - RequestID: lujkn7ksc2 +2025-06-18T14:49:09.281Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 503 - Response time: 748ms - IP: 192.168.36.218 - User: user_1011 - RequestID: p4p1echbcu +2025-06-18T14:49:09.381Z [TRACE] inventory-service - Auth event: login_success - User: user_1067 - IP: 192.168.79.143 - RequestID: k390c80j37a +2025-06-18T14:49:09.481Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 299ms - Rows affected: 28 - RequestID: phrtnjwne4r +2025-06-18T14:49:09.581Z [DEBUG] user-service - PUT /api/v1/orders - Status: 200 - Response time: 1600ms - IP: 192.168.194.41 - User: user_1089 - RequestID: s1za4xz6ako +2025-06-18T14:49:09.681Z [INFO] order-service - Auth event: login_success - User: user_1031 - IP: 192.168.1.152 - RequestID: w5r86mu8jlp +2025-06-18T14:49:09.781Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 404 - Response time: 239ms - IP: 192.168.14.77 - User: user_1049 - RequestID: o9teoo9pahn +2025-06-18T14:49:09.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.227.77 - RequestID: m2nv7wrr8p +2025-06-18T14:49:09.981Z [INFO] auth-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.104.37 - RequestID: 2yn3wus1ktt +2025-06-18T14:49:10.081Z [TRACE] inventory-service - GET /api/v1/payments - Status: 503 - Response time: 990ms - IP: 192.168.68.128 - User: user_1059 - RequestID: h9b92btslz +2025-06-18T14:49:10.181Z [INFO] notification-service - Operation: payment_processed - Processing time: 327ms - RequestID: 8ew6iiced3 +2025-06-18T14:49:10.281Z [TRACE] payment-service - Database INSERT on orders - Execution time: 256ms - Rows affected: 5 - RequestID: wsxop3zx88e +2025-06-18T14:49:10.381Z [DEBUG] auth-service - POST /api/v1/payments - Status: 404 - Response time: 466ms - IP: 192.168.174.114 - User: user_1045 - RequestID: 6tzk8jn0j8u +2025-06-18T14:49:10.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.64.33 - RequestID: ma3r6s6b6k +2025-06-18T14:49:10.581Z [TRACE] inventory-service - Auth event: login_success - User: user_1087 - IP: 192.168.174.114 - RequestID: qphn7rg1uc +2025-06-18T14:49:10.681Z [TRACE] notification-service - Auth event: login_success - User: user_1088 - IP: 192.168.81.206 - RequestID: weq863ue0e +2025-06-18T14:49:10.781Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 79ms - RequestID: 5b00fox9sw4 +2025-06-18T14:49:10.881Z [TRACE] auth-service - Auth event: password_change - User: user_1035 - IP: 192.168.53.133 - RequestID: 9y4t0cac9js +2025-06-18T14:49:10.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 789ms - RequestID: 6zxoxxrabg6 +2025-06-18T14:49:11.081Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 502 - Response time: 630ms - IP: 192.168.31.117 - User: user_1031 - RequestID: oeijz53xz9 +2025-06-18T14:49:11.181Z [INFO] payment-service - Operation: order_created - Processing time: 590ms - RequestID: p7krci2bolm +2025-06-18T14:49:11.281Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 400 - Response time: 2004ms - IP: 192.168.235.117 - User: user_1084 - RequestID: 3kumpfwpqyn +2025-06-18T14:49:11.381Z [INFO] user-service - POST /api/v1/users - Status: 403 - Response time: 1986ms - IP: 192.168.242.165 - User: user_1064 - RequestID: l885tm02v3 +2025-06-18T14:49:11.481Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 123ms - RequestID: 4xsgrj6lba2 +2025-06-18T14:49:11.581Z [INFO] notification-service - Operation: email_sent - Processing time: 728ms - RequestID: d4856uj1sm +2025-06-18T14:49:11.681Z [DEBUG] order-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.79.141 - RequestID: szk5red4phe +2025-06-18T14:49:11.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.194.41 - RequestID: se78felwzsa +2025-06-18T14:49:11.881Z [TRACE] order-service - POST /api/v1/inventory - Status: 400 - Response time: 1690ms - IP: 192.168.64.33 - User: user_1050 - RequestID: z01izlqqo1q +2025-06-18T14:49:11.981Z [TRACE] auth-service - Auth event: login_success - User: user_1075 - IP: 192.168.167.32 - RequestID: rodt36pkfap +2025-06-18T14:49:12.081Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 172ms - Rows affected: 94 - RequestID: sc78loztsz +2025-06-18T14:49:12.181Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 442ms - RequestID: hzldtunfy0n +2025-06-18T14:49:12.281Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 386ms - RequestID: nu8fjkaudrc +2025-06-18T14:49:12.381Z [INFO] notification-service - Auth event: logout - User: user_1019 - IP: 192.168.79.143 - RequestID: drm6rq2z6z +2025-06-18T14:49:12.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 341ms - RequestID: cekb32t7q7u +2025-06-18T14:49:12.581Z [INFO] order-service - Operation: inventory_updated - Processing time: 90ms - RequestID: p94b6cm4k3 +2025-06-18T14:49:12.681Z [TRACE] user-service - DELETE /api/v1/users - Status: 201 - Response time: 1031ms - IP: 192.168.194.41 - User: user_1020 - RequestID: 2124z7lnwbi +2025-06-18T14:49:12.781Z [DEBUG] order-service - Operation: payment_processed - Processing time: 679ms - RequestID: 3jg0jcugpqg +2025-06-18T14:49:12.881Z [INFO] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 220ms - IP: 192.168.97.87 - User: user_1010 - RequestID: 1znidji90bn +2025-06-18T14:49:12.981Z [TRACE] auth-service - Auth event: logout - User: user_1063 - IP: 192.168.240.169 - RequestID: 77tfco0p4na +2025-06-18T14:49:13.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.113.218 - RequestID: wwzpnqr0ve9 +2025-06-18T14:49:13.181Z [DEBUG] payment-service - Auth event: password_change - User: user_1090 - IP: 192.168.141.100 - RequestID: o75bbihw1b +2025-06-18T14:49:13.281Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1208ms - IP: 192.168.97.87 - User: user_1060 - RequestID: a6f3y2awgof +2025-06-18T14:49:13.381Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 404 - Response time: 1639ms - IP: 192.168.174.114 - User: user_1061 - RequestID: cvvimi9y3ww +2025-06-18T14:49:13.481Z [TRACE] user-service - Database SELECT on sessions - Execution time: 69ms - Rows affected: 92 - RequestID: xcwvgrbtc7o +2025-06-18T14:49:13.581Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 244ms - Rows affected: 89 - RequestID: s1dduhttjbi +2025-06-18T14:49:13.681Z [DEBUG] auth-service - Database SELECT on products - Execution time: 211ms - Rows affected: 87 - RequestID: umiqndtea0q +2025-06-18T14:49:13.781Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 404 - Response time: 360ms - IP: 192.168.68.128 - User: user_1067 - RequestID: b5nhy3kpou4 +2025-06-18T14:49:13.881Z [TRACE] notification-service - GET /api/v1/inventory - Status: 200 - Response time: 1156ms - IP: 192.168.189.103 - User: user_1017 - RequestID: 3n9gwltl78i +2025-06-18T14:49:13.981Z [INFO] auth-service - Operation: order_created - Processing time: 161ms - RequestID: otw29q5l62k +2025-06-18T14:49:14.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.104.37 - RequestID: utysuqws99 +2025-06-18T14:49:14.181Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 500 - Response time: 1784ms - IP: 192.168.31.117 - User: user_1008 - RequestID: n24zpz6xb8m +2025-06-18T14:49:14.281Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 403 - Response time: 140ms - IP: 192.168.158.144 - User: user_1061 - RequestID: ydarv5i9c8q +2025-06-18T14:49:14.381Z [DEBUG] user-service - GET /api/v1/inventory - Status: 500 - Response time: 1592ms - IP: 192.168.79.116 - User: user_1064 - RequestID: swr6st092gj +2025-06-18T14:49:14.481Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 411ms - Rows affected: 58 - RequestID: stesikupqt +2025-06-18T14:49:14.581Z [TRACE] order-service - PUT /api/v1/orders - Status: 404 - Response time: 538ms - IP: 192.168.194.41 - User: user_1098 - RequestID: s7u87m8qbb +2025-06-18T14:49:14.681Z [INFO] payment-service - Auth event: login_success - User: user_1002 - IP: 192.168.79.141 - RequestID: qc3uu7vykyj +2025-06-18T14:49:14.781Z [DEBUG] user-service - POST /api/v1/users - Status: 200 - Response time: 1776ms - IP: 192.168.36.218 - User: user_1022 - RequestID: dney8wj7bfm +2025-06-18T14:49:14.881Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 949ms - RequestID: rfdpea9niu +2025-06-18T14:49:14.981Z [INFO] payment-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.196.226 - RequestID: uigklezwaw +2025-06-18T14:49:15.081Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 866ms - RequestID: h31uf89p9uf +2025-06-18T14:49:15.181Z [INFO] auth-service - Auth event: logout - User: user_1082 - IP: 192.168.196.226 - RequestID: e4ahg3clxwp +2025-06-18T14:49:15.281Z [INFO] order-service - Database DELETE on sessions - Execution time: 316ms - Rows affected: 6 - RequestID: 45xqbtxlbva +2025-06-18T14:49:15.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 109ms - RequestID: x0gsy3b7fwb +2025-06-18T14:49:15.481Z [INFO] auth-service - PUT /api/v1/inventory - Status: 502 - Response time: 627ms - IP: 192.168.181.225 - User: user_1061 - RequestID: tynb8vmyjyl +2025-06-18T14:49:15.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 275ms - RequestID: niuu25uc5wj +2025-06-18T14:49:15.681Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 605ms - RequestID: t632oju1ir +2025-06-18T14:49:15.781Z [INFO] notification-service - Operation: inventory_updated - Processing time: 91ms - RequestID: l25w2ya9s1l +2025-06-18T14:49:15.881Z [INFO] notification-service - Database UPDATE on payments - Execution time: 284ms - Rows affected: 53 - RequestID: hq5hx7oz7f9 +2025-06-18T14:49:15.981Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 345ms - Rows affected: 26 - RequestID: mw5tpgtgot +2025-06-18T14:49:16.081Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 403 - Response time: 59ms - IP: 192.168.30.79 - User: user_1034 - RequestID: uowwh1bqizr +2025-06-18T14:49:16.181Z [INFO] user-service - Database INSERT on products - Execution time: 92ms - Rows affected: 3 - RequestID: wp72fxctmr +2025-06-18T14:49:16.281Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 128ms - Rows affected: 41 - RequestID: 6zwwmtccbto +2025-06-18T14:49:16.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.181.225 - RequestID: 49g5u08pk5o +2025-06-18T14:49:16.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 127ms - RequestID: emn5r0nbsw +2025-06-18T14:49:16.581Z [DEBUG] auth-service - Auth event: login_success - User: user_1048 - IP: 192.168.1.152 - RequestID: saaptcz8og +2025-06-18T14:49:16.681Z [TRACE] order-service - Auth event: logout - User: user_1093 - IP: 192.168.53.133 - RequestID: 3big6o9pqem +2025-06-18T14:49:16.781Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 400 - Response time: 356ms - IP: 192.168.68.158 - User: user_1014 - RequestID: ci5n5nasmgh +2025-06-18T14:49:16.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.31.117 - RequestID: wp4xzbm4aq +2025-06-18T14:49:16.981Z [INFO] user-service - GET /api/v1/auth/login - Status: 500 - Response time: 535ms - IP: 192.168.81.206 - User: user_1078 - RequestID: zgv6bxyuril +2025-06-18T14:49:17.081Z [INFO] notification-service - Operation: email_sent - Processing time: 891ms - RequestID: xw25gfo5jzc +2025-06-18T14:49:17.181Z [INFO] inventory-service - Operation: cache_miss - Processing time: 311ms - RequestID: ey2low0kq7h +2025-06-18T14:49:17.281Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 502 - Response time: 573ms - IP: 192.168.30.79 - User: user_1094 - RequestID: 98b2n72em8o +2025-06-18T14:49:17.381Z [INFO] payment-service - Database UPDATE on users - Execution time: 310ms - Rows affected: 47 - RequestID: jvq1rbwwq +2025-06-18T14:49:17.481Z [TRACE] auth-service - Operation: email_sent - Processing time: 1047ms - RequestID: 6pawi4w737s +2025-06-18T14:49:17.581Z [TRACE] notification-service - Auth event: logout - User: user_1040 - IP: 192.168.235.117 - RequestID: 70kynj020zf +2025-06-18T14:49:17.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.31.117 - RequestID: yoov7se68rs +2025-06-18T14:49:17.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.229.123 - RequestID: dfwa0d4lg7c +2025-06-18T14:49:17.881Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 634ms - RequestID: xrcxjdv5d7a +2025-06-18T14:49:17.981Z [DEBUG] inventory-service - GET /api/v1/users - Status: 503 - Response time: 1661ms - IP: 192.168.229.123 - User: user_1039 - RequestID: y7vo75i1pq +2025-06-18T14:49:18.081Z [TRACE] payment-service - Database INSERT on payments - Execution time: 328ms - Rows affected: 39 - RequestID: l4zrzzw46z +2025-06-18T14:49:18.181Z [DEBUG] notification-service - POST /api/v1/orders - Status: 404 - Response time: 976ms - IP: 192.168.235.117 - User: user_1026 - RequestID: e0c5kn2vgm5 +2025-06-18T14:49:18.281Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1116ms - IP: 192.168.97.87 - User: user_1095 - RequestID: ap057kcd9im +2025-06-18T14:49:18.381Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 741ms - RequestID: ml2tvcw0m5 +2025-06-18T14:49:18.481Z [INFO] notification-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.113.218 - RequestID: v7ipwpwm2ps +2025-06-18T14:49:18.581Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1815ms - IP: 192.168.158.144 - User: user_1086 - RequestID: 01xbixk7oa2b +2025-06-18T14:49:18.681Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 400 - Response time: 996ms - IP: 192.168.159.94 - User: user_1015 - RequestID: r3k8oq28op +2025-06-18T14:49:18.781Z [DEBUG] order-service - Database SELECT on orders - Execution time: 247ms - Rows affected: 4 - RequestID: 9yhb3o2k09f +2025-06-18T14:49:18.881Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 139ms - RequestID: g5gvfhjdlxl +2025-06-18T14:49:18.981Z [TRACE] user-service - Operation: order_created - Processing time: 694ms - RequestID: ads0wt7i97t +2025-06-18T14:49:19.081Z [INFO] payment-service - Operation: order_created - Processing time: 660ms - RequestID: ulizn9m3cl +2025-06-18T14:49:19.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1016 - IP: 192.168.211.72 - RequestID: gvhta75xgjf +2025-06-18T14:49:19.281Z [INFO] order-service - Auth event: login_failed - User: user_1085 - IP: 192.168.170.215 - RequestID: 4lak4wq1ap +2025-06-18T14:49:19.381Z [INFO] user-service - Database UPDATE on orders - Execution time: 277ms - Rows affected: 27 - RequestID: 7tobsa2ngg7 +2025-06-18T14:49:19.481Z [DEBUG] user-service - DELETE /api/v1/users - Status: 200 - Response time: 894ms - IP: 192.168.144.38 - User: user_1036 - RequestID: likmr3gk1mb +2025-06-18T14:49:19.581Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.79.143 - RequestID: joxregie51n +2025-06-18T14:49:19.681Z [DEBUG] order-service - Database SELECT on users - Execution time: 112ms - Rows affected: 93 - RequestID: ye78bw3i4ek +2025-06-18T14:49:19.781Z [INFO] auth-service - Database DELETE on sessions - Execution time: 485ms - Rows affected: 58 - RequestID: h2z6fctvx4f +2025-06-18T14:49:19.881Z [INFO] order-service - Operation: order_created - Processing time: 997ms - RequestID: d5e9yhrcrla +2025-06-18T14:49:19.981Z [TRACE] auth-service - DELETE /api/v1/users - Status: 502 - Response time: 594ms - IP: 192.168.97.87 - User: user_1075 - RequestID: 8r3xzigja8y +2025-06-18T14:49:20.081Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 197ms - Rows affected: 95 - RequestID: 97govigbmmd +2025-06-18T14:49:20.181Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 960ms - IP: 192.168.53.133 - User: user_1065 - RequestID: 8hcm2isax5b +2025-06-18T14:49:20.281Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1426ms - IP: 192.168.144.38 - User: user_1009 - RequestID: vfoq8fqz8ir +2025-06-18T14:49:20.381Z [INFO] payment-service - GET /api/v1/inventory - Status: 403 - Response time: 487ms - IP: 192.168.144.38 - User: user_1094 - RequestID: c6gxr1ao325 +2025-06-18T14:49:20.481Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1067ms - IP: 192.168.247.134 - User: user_1043 - RequestID: 1cxzfk3gf0d +2025-06-18T14:49:20.581Z [TRACE] order-service - GET /api/v1/users - Status: 401 - Response time: 650ms - IP: 192.168.158.144 - User: user_1074 - RequestID: 8y1qd5qid77 +2025-06-18T14:49:20.681Z [DEBUG] order-service - GET /api/v1/orders - Status: 403 - Response time: 1122ms - IP: 192.168.100.240 - User: user_1092 - RequestID: 6stlhwxc29o +2025-06-18T14:49:20.781Z [TRACE] notification-service - Database INSERT on products - Execution time: 205ms - Rows affected: 44 - RequestID: 0sex5ip3ro2 +2025-06-18T14:49:20.881Z [DEBUG] order-service - GET /api/v1/users - Status: 201 - Response time: 91ms - IP: 192.168.147.171 - User: user_1038 - RequestID: 1u29lh1mz5f +2025-06-18T14:49:20.981Z [TRACE] auth-service - Database DELETE on products - Execution time: 296ms - Rows affected: 31 - RequestID: ippyfscbuw +2025-06-18T14:49:21.081Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 18ms - Rows affected: 35 - RequestID: junta99yi8n +2025-06-18T14:49:21.181Z [TRACE] order-service - Operation: cache_hit - Processing time: 850ms - RequestID: 4v499pmck3p +2025-06-18T14:49:21.281Z [INFO] auth-service - Database INSERT on products - Execution time: 60ms - Rows affected: 10 - RequestID: ytlccu60h2j +2025-06-18T14:49:21.381Z [TRACE] notification-service - GET /api/v1/orders - Status: 502 - Response time: 1688ms - IP: 192.168.79.141 - User: user_1029 - RequestID: 5k3p6qw6v7r +2025-06-18T14:49:21.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1056 - IP: 192.168.235.117 - RequestID: da0zvocuid8 +2025-06-18T14:49:21.581Z [INFO] order-service - Operation: webhook_sent - Processing time: 186ms - RequestID: dxmktbq5cy +2025-06-18T14:49:21.681Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 167ms - Rows affected: 26 - RequestID: 2w2if14byw4 +2025-06-18T14:49:21.781Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 62ms - Rows affected: 61 - RequestID: zb28iy7g0dm +2025-06-18T14:49:21.881Z [INFO] payment-service - Auth event: login_failed - User: user_1001 - IP: 192.168.242.165 - RequestID: z87ewpe6op8 +2025-06-18T14:49:21.981Z [INFO] user-service - POST /api/v1/users - Status: 401 - Response time: 622ms - IP: 192.168.181.225 - User: user_1080 - RequestID: gb6elajnr86 +2025-06-18T14:49:22.081Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 1012ms - RequestID: z3jcxfuayk +2025-06-18T14:49:22.181Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.170.215 - RequestID: r7c8xzhpir +2025-06-18T14:49:22.281Z [INFO] user-service - Auth event: password_change - User: user_1004 - IP: 192.168.170.215 - RequestID: a9v7oa4cizr +2025-06-18T14:49:22.381Z [INFO] payment-service - Operation: order_created - Processing time: 266ms - RequestID: t3xbrg4xzl +2025-06-18T14:49:22.481Z [DEBUG] payment-service - Database INSERT on users - Execution time: 191ms - Rows affected: 18 - RequestID: pk7e61o8sh +2025-06-18T14:49:22.581Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 440ms - Rows affected: 61 - RequestID: 9p30x6mo6r +2025-06-18T14:49:22.681Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 401 - Response time: 1659ms - IP: 192.168.159.94 - User: user_1077 - RequestID: fzt1i1m4fbm +2025-06-18T14:49:22.781Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 654ms - IP: 192.168.211.72 - User: user_1019 - RequestID: 41cfb18go3x +2025-06-18T14:49:22.881Z [INFO] payment-service - Auth event: logout - User: user_1035 - IP: 192.168.189.103 - RequestID: srb4j64jcy +2025-06-18T14:49:22.981Z [INFO] inventory-service - Database SELECT on users - Execution time: 229ms - Rows affected: 62 - RequestID: zusjll3n54l +2025-06-18T14:49:23.081Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 230ms - Rows affected: 48 - RequestID: 1jfdley8gl2 +2025-06-18T14:49:23.181Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 408ms - Rows affected: 82 - RequestID: d70cpow00f +2025-06-18T14:49:23.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1031 - IP: 192.168.235.117 - RequestID: feum8ni4uq6 +2025-06-18T14:49:23.381Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 80ms - Rows affected: 47 - RequestID: 2ik9zi0g7ji +2025-06-18T14:49:23.481Z [INFO] auth-service - Auth event: login_success - User: user_1071 - IP: 192.168.79.141 - RequestID: 9anwen37526 +2025-06-18T14:49:23.581Z [INFO] payment-service - PATCH /api/v1/payments - Status: 502 - Response time: 1889ms - IP: 192.168.79.141 - User: user_1007 - RequestID: 0y2g2nd0285 +2025-06-18T14:49:23.681Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 482ms - RequestID: k7dw5ugrpb +2025-06-18T14:49:23.781Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1778ms - IP: 192.168.235.117 - User: user_1023 - RequestID: y1p48hm4ab +2025-06-18T14:49:23.881Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 461ms - Rows affected: 1 - RequestID: w9ga5offx0f +2025-06-18T14:49:23.981Z [DEBUG] order-service - Operation: notification_queued - Processing time: 558ms - RequestID: my6cpvfyoa +2025-06-18T14:49:24.081Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 399ms - Rows affected: 56 - RequestID: libmdp6cq4k +2025-06-18T14:49:24.181Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 441ms - Rows affected: 64 - RequestID: xe0bjm5aian +2025-06-18T14:49:24.281Z [DEBUG] user-service - Database INSERT on products - Execution time: 57ms - Rows affected: 59 - RequestID: nl0vef5x3bn +2025-06-18T14:49:24.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1067 - IP: 192.168.181.225 - RequestID: xmvne48ajm +2025-06-18T14:49:24.481Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 400 - Response time: 1729ms - IP: 192.168.33.76 - User: user_1060 - RequestID: 3mg9pqnogrk +2025-06-18T14:49:24.581Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 404 - Response time: 411ms - IP: 192.168.211.72 - User: user_1081 - RequestID: yophc4ev6y +2025-06-18T14:49:24.681Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 396ms - Rows affected: 63 - RequestID: 2yy72l37qek +2025-06-18T14:49:24.781Z [TRACE] order-service - Database DELETE on sessions - Execution time: 264ms - Rows affected: 26 - RequestID: rdz5jstnee +2025-06-18T14:49:24.881Z [INFO] notification-service - Operation: cache_miss - Processing time: 688ms - RequestID: nugk3thuex9 +2025-06-18T14:49:24.981Z [INFO] user-service - Auth event: login_failed - User: user_1031 - IP: 192.168.174.114 - RequestID: k3w1idzw10f +2025-06-18T14:49:25.081Z [DEBUG] payment-service - GET /api/v1/payments - Status: 502 - Response time: 401ms - IP: 192.168.194.41 - User: user_1038 - RequestID: ix11sx05z68 +2025-06-18T14:49:25.181Z [TRACE] user-service - Operation: payment_processed - Processing time: 148ms - RequestID: j9ta8xkjlgh +2025-06-18T14:49:25.281Z [INFO] auth-service - Database INSERT on orders - Execution time: 326ms - Rows affected: 55 - RequestID: bnxmb6bmdi6 +2025-06-18T14:49:25.381Z [INFO] auth-service - Auth event: password_change - User: user_1040 - IP: 192.168.247.134 - RequestID: hp24ag5fgfu +2025-06-18T14:49:25.481Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 457ms - RequestID: kayakrnlgc +2025-06-18T14:49:25.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 887ms - RequestID: 5owvnt823n7 +2025-06-18T14:49:25.681Z [DEBUG] order-service - Operation: cache_miss - Processing time: 260ms - RequestID: 8xwqrvk2cip +2025-06-18T14:49:25.781Z [TRACE] inventory-service - Auth event: login_failed - User: user_1093 - IP: 192.168.36.218 - RequestID: lj8q6coddvs +2025-06-18T14:49:25.881Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 548ms - RequestID: fswl9ojkwk +2025-06-18T14:49:25.981Z [INFO] inventory-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.13.72 - RequestID: odhhpz5iyp +2025-06-18T14:49:26.081Z [INFO] notification-service - GET /api/v1/inventory - Status: 500 - Response time: 143ms - IP: 192.168.144.38 - User: user_1098 - RequestID: jrt9c20h1f +2025-06-18T14:49:26.181Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 71ms - Rows affected: 34 - RequestID: fsmc3a07z8i +2025-06-18T14:49:26.281Z [TRACE] notification-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.147.171 - RequestID: 3oqjuulkco7 +2025-06-18T14:49:26.381Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 263ms - IP: 192.168.79.141 - User: user_1085 - RequestID: jd9uoy5w7ip +2025-06-18T14:49:26.481Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1877ms - IP: 192.168.68.158 - User: user_1085 - RequestID: ls3swhbjepo +2025-06-18T14:49:26.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.187.199 - RequestID: hlwu6tvxrsm +2025-06-18T14:49:26.681Z [INFO] auth-service - Database DELETE on sessions - Execution time: 147ms - Rows affected: 99 - RequestID: i67xzz8bzj +2025-06-18T14:49:26.781Z [TRACE] user-service - Database SELECT on sessions - Execution time: 481ms - Rows affected: 69 - RequestID: pb9ouwljqrb +2025-06-18T14:49:26.881Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 666ms - IP: 192.168.32.38 - User: user_1009 - RequestID: 8uoulmv0cqf +2025-06-18T14:49:26.981Z [TRACE] notification-service - Database INSERT on products - Execution time: 239ms - Rows affected: 97 - RequestID: vs95cxqbeme +2025-06-18T14:49:27.081Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 81ms - Rows affected: 9 - RequestID: cb3ri30koiq +2025-06-18T14:49:27.181Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 62ms - Rows affected: 67 - RequestID: td734m14ft +2025-06-18T14:49:27.281Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 341ms - IP: 192.168.235.117 - User: user_1067 - RequestID: y1dmnsvfz6 +2025-06-18T14:49:27.381Z [TRACE] user-service - PUT /api/v1/users - Status: 401 - Response time: 691ms - IP: 192.168.28.146 - User: user_1093 - RequestID: lzucha1kocf +2025-06-18T14:49:27.481Z [INFO] order-service - Auth event: login_success - User: user_1049 - IP: 192.168.247.134 - RequestID: p5zibgi6hp +2025-06-18T14:49:27.581Z [INFO] notification-service - Auth event: login_success - User: user_1077 - IP: 192.168.46.63 - RequestID: 7rbnah9dxij +2025-06-18T14:49:27.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1056 - IP: 192.168.240.169 - RequestID: s9omf7kf1vn +2025-06-18T14:49:27.781Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 687ms - IP: 192.168.81.206 - User: user_1087 - RequestID: l5u6ql18i9 +2025-06-18T14:49:27.881Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.1.152 - RequestID: hsyp6mfa0ql +2025-06-18T14:49:27.981Z [TRACE] auth-service - Auth event: login_success - User: user_1032 - IP: 192.168.53.133 - RequestID: wwrew8ib23 +2025-06-18T14:49:28.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.189.103 - RequestID: jme0f5ui8a +2025-06-18T14:49:28.181Z [DEBUG] user-service - Database UPDATE on products - Execution time: 424ms - Rows affected: 19 - RequestID: hgiyzdkewv8 +2025-06-18T14:49:28.281Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 264ms - RequestID: wqqj32f4k5g +2025-06-18T14:49:28.381Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 152ms - RequestID: tk1e1qjbin +2025-06-18T14:49:28.481Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 157ms - Rows affected: 79 - RequestID: 5mc353gerqi +2025-06-18T14:49:28.581Z [DEBUG] order-service - Database SELECT on users - Execution time: 311ms - Rows affected: 76 - RequestID: fswboih0nbc +2025-06-18T14:49:28.681Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 251ms - Rows affected: 4 - RequestID: 5byauyeoypg +2025-06-18T14:49:28.781Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.64.33 - RequestID: p5oyfewc3cr +2025-06-18T14:49:28.881Z [TRACE] user-service - Database DELETE on products - Execution time: 87ms - Rows affected: 74 - RequestID: 0iqiru8sptzs +2025-06-18T14:49:28.981Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 746ms - IP: 192.168.181.225 - User: user_1047 - RequestID: 6puqgfcteb3 +2025-06-18T14:49:29.081Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 183ms - RequestID: dbwvdiqvow5 +2025-06-18T14:49:29.181Z [INFO] user-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1123ms - IP: 192.168.211.72 - User: user_1035 - RequestID: kbv7c4c5llk +2025-06-18T14:49:29.281Z [TRACE] inventory-service - Operation: email_sent - Processing time: 182ms - RequestID: vofpbs2k5a +2025-06-18T14:49:29.381Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.1.152 - RequestID: amh069u6i3n +2025-06-18T14:49:29.481Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 475ms - Rows affected: 30 - RequestID: 7quov2td2t5 +2025-06-18T14:49:29.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.53.133 - RequestID: 1y08lggc9i3 +2025-06-18T14:49:29.681Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 997ms - RequestID: 98u5vhzbus +2025-06-18T14:49:29.781Z [INFO] order-service - Database INSERT on users - Execution time: 156ms - Rows affected: 91 - RequestID: 21cfx649dxc +2025-06-18T14:49:29.881Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 291ms - Rows affected: 60 - RequestID: tknlyqrv49a +2025-06-18T14:49:29.981Z [TRACE] payment-service - Operation: email_sent - Processing time: 261ms - RequestID: tpp3a5qsd3 +2025-06-18T14:49:30.081Z [TRACE] order-service - GET /api/v1/orders - Status: 401 - Response time: 1886ms - IP: 192.168.167.32 - User: user_1003 - RequestID: nb3ibdyvyog +2025-06-18T14:49:30.181Z [DEBUG] inventory-service - GET /api/v1/users - Status: 503 - Response time: 214ms - IP: 192.168.81.206 - User: user_1024 - RequestID: r4t1mk39xu +2025-06-18T14:49:30.281Z [DEBUG] user-service - Auth event: password_change - User: user_1057 - IP: 192.168.211.72 - RequestID: nps4yebp0o +2025-06-18T14:49:30.381Z [TRACE] payment-service - Operation: order_created - Processing time: 126ms - RequestID: 41b0pduptp3 +2025-06-18T14:49:30.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.31.117 - RequestID: ugwhojtcbe +2025-06-18T14:49:30.581Z [TRACE] user-service - Operation: cache_miss - Processing time: 435ms - RequestID: kijpsrjmp1a +2025-06-18T14:49:30.681Z [INFO] notification-service - Database DELETE on users - Execution time: 369ms - Rows affected: 90 - RequestID: d60h85bif78 +2025-06-18T14:49:30.781Z [TRACE] user-service - Database UPDATE on payments - Execution time: 69ms - Rows affected: 94 - RequestID: 7o6ah8ggfbi +2025-06-18T14:49:30.881Z [INFO] order-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1645ms - IP: 192.168.196.226 - User: user_1022 - RequestID: 5c9zrt532xs +2025-06-18T14:49:30.981Z [TRACE] auth-service - Database INSERT on orders - Execution time: 120ms - Rows affected: 19 - RequestID: lhjd426vnk8 +2025-06-18T14:49:31.081Z [TRACE] inventory-service - Operation: order_created - Processing time: 709ms - RequestID: r20wdr3jd3b +2025-06-18T14:49:31.181Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1150ms - IP: 192.168.53.133 - User: user_1026 - RequestID: ex7dm2xhwid +2025-06-18T14:49:31.281Z [TRACE] order-service - Operation: notification_queued - Processing time: 255ms - RequestID: abnw9y94cem +2025-06-18T14:49:31.381Z [DEBUG] payment-service - Auth event: password_change - User: user_1001 - IP: 192.168.232.72 - RequestID: 5ya3fxv5y4k +2025-06-18T14:49:31.481Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 401 - Response time: 267ms - IP: 192.168.97.87 - User: user_1095 - RequestID: gtmkil5uip4 +2025-06-18T14:49:31.581Z [TRACE] auth-service - Database INSERT on users - Execution time: 436ms - Rows affected: 64 - RequestID: woq3a8bk31 +2025-06-18T14:49:31.681Z [INFO] user-service - Database UPDATE on products - Execution time: 188ms - Rows affected: 5 - RequestID: fp2993u4s1v +2025-06-18T14:49:31.781Z [TRACE] order-service - Database INSERT on payments - Execution time: 443ms - Rows affected: 60 - RequestID: 9ng9p9cgtj4 +2025-06-18T14:49:31.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.174.114 - RequestID: dv6jt6rcb5a +2025-06-18T14:49:31.981Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 400 - Response time: 79ms - IP: 192.168.138.123 - User: user_1026 - RequestID: 22ial9pye7s +2025-06-18T14:49:32.081Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 355ms - Rows affected: 39 - RequestID: eg973kjbldl +2025-06-18T14:49:32.181Z [INFO] order-service - Operation: cache_hit - Processing time: 233ms - RequestID: dg7vzi7agc +2025-06-18T14:49:32.281Z [DEBUG] auth-service - Auth event: logout - User: user_1051 - IP: 192.168.144.38 - RequestID: eeofe447siv +2025-06-18T14:49:32.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.170.215 - RequestID: b1thhy212kn +2025-06-18T14:49:32.481Z [INFO] user-service - Operation: payment_processed - Processing time: 855ms - RequestID: u3u4do4yy9e +2025-06-18T14:49:32.581Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 170ms - RequestID: qslxtjmdjp9 +2025-06-18T14:49:32.681Z [INFO] user-service - Database INSERT on products - Execution time: 182ms - Rows affected: 54 - RequestID: zbhbjgnfnfr +2025-06-18T14:49:32.781Z [DEBUG] order-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.64.33 - RequestID: wl678rw784 +2025-06-18T14:49:32.881Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 457ms - Rows affected: 24 - RequestID: 2mqy1i8r0ae +2025-06-18T14:49:32.981Z [INFO] user-service - Database SELECT on products - Execution time: 441ms - Rows affected: 38 - RequestID: te90etsa03d +2025-06-18T14:49:33.081Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 458ms - IP: 192.168.68.158 - User: user_1082 - RequestID: v3zgur74h5f +2025-06-18T14:49:33.181Z [DEBUG] order-service - Operation: notification_queued - Processing time: 126ms - RequestID: paxugi63wee +2025-06-18T14:49:33.281Z [INFO] notification-service - PUT /api/v1/orders - Status: 201 - Response time: 147ms - IP: 192.168.227.233 - User: user_1077 - RequestID: f6qriwoqxao +2025-06-18T14:49:33.381Z [INFO] user-service - GET /api/v1/orders - Status: 500 - Response time: 1661ms - IP: 192.168.235.117 - User: user_1040 - RequestID: ic4tvqu5zm9 +2025-06-18T14:49:33.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 1012ms - RequestID: azpmn8pa8ql +2025-06-18T14:49:33.581Z [INFO] payment-service - Database DELETE on payments - Execution time: 399ms - Rows affected: 97 - RequestID: 8tds3hok7pd +2025-06-18T14:49:33.681Z [INFO] notification-service - Database DELETE on payments - Execution time: 368ms - Rows affected: 41 - RequestID: q7pd3len3r +2025-06-18T14:49:33.781Z [TRACE] inventory-service - Database INSERT on users - Execution time: 163ms - Rows affected: 77 - RequestID: slik19e3k1k +2025-06-18T14:49:33.881Z [INFO] inventory-service - Operation: order_created - Processing time: 799ms - RequestID: o5ok4ptpjes +2025-06-18T14:49:33.981Z [INFO] notification-service - Operation: inventory_updated - Processing time: 345ms - RequestID: oqvetqljaa +2025-06-18T14:49:34.081Z [DEBUG] user-service - Operation: email_sent - Processing time: 599ms - RequestID: e7hkm22pe97 +2025-06-18T14:49:34.181Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 435ms - RequestID: d0z9bc2dl2w +2025-06-18T14:49:34.281Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 199ms - Rows affected: 68 - RequestID: kencj424s3d +2025-06-18T14:49:34.381Z [DEBUG] order-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.100.240 - RequestID: jh1p7yqwcm +2025-06-18T14:49:34.481Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1575ms - IP: 192.168.85.229 - User: user_1044 - RequestID: ee1q627hasn +2025-06-18T14:49:34.581Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.68.128 - RequestID: vwdgwb5i1db +2025-06-18T14:49:34.681Z [INFO] notification-service - PUT /api/v1/inventory - Status: 500 - Response time: 457ms - IP: 192.168.11.60 - User: user_1030 - RequestID: 69xhuiazf6e +2025-06-18T14:49:34.781Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 496ms - Rows affected: 69 - RequestID: gvigta0o9fq +2025-06-18T14:49:34.881Z [DEBUG] auth-service - Auth event: logout - User: user_1045 - IP: 192.168.229.123 - RequestID: l3h6cry0i2 +2025-06-18T14:49:34.981Z [INFO] user-service - Database UPDATE on users - Execution time: 115ms - Rows affected: 17 - RequestID: s5knqoc4xng +2025-06-18T14:49:35.081Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 404 - Response time: 1401ms - IP: 192.168.158.144 - User: user_1087 - RequestID: 2u1bmo5lwgg +2025-06-18T14:49:35.181Z [TRACE] inventory-service - Database INSERT on products - Execution time: 295ms - Rows affected: 94 - RequestID: 33dhhd8l6pu +2025-06-18T14:49:35.281Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 127ms - Rows affected: 20 - RequestID: 18w20husx98 +2025-06-18T14:49:35.381Z [INFO] order-service - Database INSERT on products - Execution time: 475ms - Rows affected: 70 - RequestID: aobg4zog96 +2025-06-18T14:49:35.481Z [DEBUG] order-service - Operation: email_sent - Processing time: 681ms - RequestID: q0brwrvwzt +2025-06-18T14:49:35.581Z [DEBUG] payment-service - Operation: order_created - Processing time: 239ms - RequestID: 6ci2gck99k +2025-06-18T14:49:35.681Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 502 - Response time: 492ms - IP: 192.168.181.225 - User: user_1041 - RequestID: tiz6stpb7ho +2025-06-18T14:49:35.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 895ms - RequestID: xmrq5jx73 +2025-06-18T14:49:35.881Z [INFO] payment-service - Operation: inventory_updated - Processing time: 358ms - RequestID: 1bnmp22c4bk +2025-06-18T14:49:35.981Z [DEBUG] order-service - GET /api/v1/payments - Status: 201 - Response time: 1582ms - IP: 192.168.11.60 - User: user_1008 - RequestID: 2yfvrkegqxo +2025-06-18T14:49:36.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.189.103 - RequestID: sll4a6fwp2 +2025-06-18T14:49:36.181Z [INFO] payment-service - Operation: notification_queued - Processing time: 876ms - RequestID: 158orjk9abb +2025-06-18T14:49:36.281Z [TRACE] order-service - Auth event: login_success - User: user_1045 - IP: 192.168.44.5 - RequestID: vzzmaj7wvta +2025-06-18T14:49:36.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 87ms - RequestID: bnrj4j3fkj +2025-06-18T14:49:36.481Z [INFO] notification-service - Database DELETE on users - Execution time: 81ms - Rows affected: 89 - RequestID: 331gnw41b9p +2025-06-18T14:49:36.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.113.218 - RequestID: 0r0839dhkke +2025-06-18T14:49:36.681Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 330ms - Rows affected: 16 - RequestID: 60wew3ebtop +2025-06-18T14:49:36.781Z [INFO] payment-service - Database DELETE on orders - Execution time: 477ms - Rows affected: 92 - RequestID: 0xvgjoo5r0up +2025-06-18T14:49:36.881Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1377ms - IP: 192.168.232.72 - User: user_1042 - RequestID: t3myqufqwtr +2025-06-18T14:49:36.981Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 380ms - RequestID: 6izxbc5zjze +2025-06-18T14:49:37.081Z [DEBUG] notification-service - Auth event: logout - User: user_1041 - IP: 192.168.79.116 - RequestID: jeho88it88k +2025-06-18T14:49:37.181Z [DEBUG] order-service - Database INSERT on users - Execution time: 40ms - Rows affected: 98 - RequestID: kpll5qyuyo +2025-06-18T14:49:37.281Z [DEBUG] user-service - Database DELETE on payments - Execution time: 488ms - Rows affected: 90 - RequestID: s0ceb589m5a +2025-06-18T14:49:37.381Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 400 - Response time: 1059ms - IP: 192.168.211.72 - User: user_1020 - RequestID: uvvmzrsslf +2025-06-18T14:49:37.481Z [TRACE] order-service - Operation: cache_hit - Processing time: 533ms - RequestID: 7ni2e3dn45f +2025-06-18T14:49:37.581Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 228ms - IP: 192.168.187.199 - User: user_1056 - RequestID: 1iajmqkaop +2025-06-18T14:49:37.681Z [DEBUG] auth-service - Database SELECT on users - Execution time: 402ms - Rows affected: 55 - RequestID: 8zrhztnyioy +2025-06-18T14:49:37.781Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 488ms - RequestID: vb4f7lo9p6 +2025-06-18T14:49:37.881Z [DEBUG] user-service - Database UPDATE on products - Execution time: 159ms - Rows affected: 89 - RequestID: 4bf4y29xzeq +2025-06-18T14:49:37.981Z [TRACE] order-service - Database SELECT on products - Execution time: 75ms - Rows affected: 70 - RequestID: z16f07pj17h +2025-06-18T14:49:38.081Z [TRACE] notification-service - Operation: order_created - Processing time: 826ms - RequestID: etv4gj5yizd +2025-06-18T14:49:38.181Z [INFO] auth-service - Operation: email_sent - Processing time: 582ms - RequestID: hd57naonpl5 +2025-06-18T14:49:38.281Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 421ms - Rows affected: 47 - RequestID: wss8q0jsnrh +2025-06-18T14:49:38.381Z [DEBUG] notification-service - GET /api/v1/users - Status: 200 - Response time: 1266ms - IP: 192.168.104.37 - User: user_1041 - RequestID: 42zbkxoonaq +2025-06-18T14:49:38.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.196.226 - RequestID: crvraaecjh7 +2025-06-18T14:49:38.581Z [INFO] notification-service - Auth event: login_failed - User: user_1095 - IP: 192.168.79.143 - RequestID: 0oewus49p3sj +2025-06-18T14:49:38.681Z [INFO] order-service - GET /api/v1/users - Status: 503 - Response time: 1833ms - IP: 192.168.167.32 - User: user_1058 - RequestID: wklepl3qzlg +2025-06-18T14:49:38.781Z [INFO] inventory-service - Auth event: login_failed - User: user_1038 - IP: 192.168.13.72 - RequestID: xn33wdom4rs +2025-06-18T14:49:38.881Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1051ms - IP: 192.168.235.117 - User: user_1003 - RequestID: vwhn5afx3wa +2025-06-18T14:49:38.981Z [TRACE] user-service - Auth event: login_success - User: user_1086 - IP: 192.168.14.77 - RequestID: 1ffxygqojs3 +2025-06-18T14:49:39.081Z [DEBUG] order-service - Auth event: password_change - User: user_1081 - IP: 192.168.196.226 - RequestID: 6bfjagzipii +2025-06-18T14:49:39.181Z [TRACE] user-service - Operation: email_sent - Processing time: 191ms - RequestID: t5pygfgnz1f +2025-06-18T14:49:39.281Z [INFO] auth-service - GET /api/v1/auth/login - Status: 201 - Response time: 686ms - IP: 192.168.242.165 - User: user_1098 - RequestID: 92hviq4tnc7 +2025-06-18T14:49:39.381Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 389ms - Rows affected: 56 - RequestID: d3k0ce807xo +2025-06-18T14:49:39.481Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 216ms - RequestID: ivyfrtemltc +2025-06-18T14:49:39.581Z [DEBUG] notification-service - POST /api/v1/payments - Status: 503 - Response time: 1497ms - IP: 192.168.235.117 - User: user_1062 - RequestID: f4955lg3nlu +2025-06-18T14:49:39.681Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 717ms - RequestID: rjp3o29q3ms +2025-06-18T14:49:39.781Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 268ms - RequestID: 1uwjyaijof +2025-06-18T14:49:39.881Z [INFO] notification-service - Operation: order_created - Processing time: 280ms - RequestID: 9t6drsc0sx8 +2025-06-18T14:49:39.981Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 403ms - RequestID: p4bradf8cc +2025-06-18T14:49:40.081Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 951ms - RequestID: lekwtkbyu7m +2025-06-18T14:49:40.181Z [INFO] order-service - Database SELECT on orders - Execution time: 40ms - Rows affected: 2 - RequestID: y3dtzbye2he +2025-06-18T14:49:40.281Z [TRACE] order-service - Operation: inventory_updated - Processing time: 882ms - RequestID: 2075mpoekor +2025-06-18T14:49:40.381Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 455ms - RequestID: jz89v6ao3i +2025-06-18T14:49:40.481Z [DEBUG] user-service - PUT /api/v1/users - Status: 200 - Response time: 1966ms - IP: 192.168.240.169 - User: user_1028 - RequestID: iatfd7qkqi +2025-06-18T14:49:40.581Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 845ms - RequestID: gefe2488qjo +2025-06-18T14:49:40.681Z [TRACE] user-service - Operation: cache_hit - Processing time: 397ms - RequestID: mrgz3w3e11n +2025-06-18T14:49:40.781Z [DEBUG] notification-service - Auth event: login_success - User: user_1016 - IP: 192.168.53.133 - RequestID: m6ffi280m1 +2025-06-18T14:49:40.881Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 394ms - Rows affected: 85 - RequestID: 43a5xwn1rtn +2025-06-18T14:49:40.981Z [TRACE] user-service - Auth event: login_failed - User: user_1017 - IP: 192.168.181.225 - RequestID: fdqyrcr2kp +2025-06-18T14:49:41.081Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 400 - Response time: 1258ms - IP: 192.168.229.123 - User: user_1017 - RequestID: t7pm22guq1 +2025-06-18T14:49:41.181Z [DEBUG] order-service - Operation: cache_miss - Processing time: 266ms - RequestID: q8pl17mxfbq +2025-06-18T14:49:41.281Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1151ms - IP: 192.168.227.77 - User: user_1019 - RequestID: zk04x8xgbeh +2025-06-18T14:49:41.381Z [INFO] notification-service - Database UPDATE on products - Execution time: 82ms - Rows affected: 38 - RequestID: 1ev3xkhm00f +2025-06-18T14:49:41.481Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1953ms - IP: 192.168.247.134 - User: user_1010 - RequestID: owk2uewoza +2025-06-18T14:49:41.581Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 494ms - IP: 192.168.36.218 - User: user_1034 - RequestID: 9kr795vwcks +2025-06-18T14:49:41.681Z [INFO] user-service - Database SELECT on orders - Execution time: 447ms - Rows affected: 71 - RequestID: 6qesmdj7krh +2025-06-18T14:49:41.781Z [TRACE] user-service - Database SELECT on orders - Execution time: 397ms - Rows affected: 81 - RequestID: 78ocd6i46ov +2025-06-18T14:49:41.881Z [INFO] payment-service - GET /api/v1/orders - Status: 400 - Response time: 994ms - IP: 192.168.181.225 - User: user_1014 - RequestID: p4saqiol2x +2025-06-18T14:49:41.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1023 - IP: 192.168.247.134 - RequestID: ztmcgtq4pmc +2025-06-18T14:49:42.081Z [INFO] notification-service - PUT /api/v1/users - Status: 503 - Response time: 1639ms - IP: 192.168.100.240 - User: user_1054 - RequestID: h08igzb40cb +2025-06-18T14:49:42.181Z [DEBUG] payment-service - Database INSERT on products - Execution time: 248ms - Rows affected: 94 - RequestID: kchet16dzb9 +2025-06-18T14:49:42.281Z [DEBUG] order-service - Operation: notification_queued - Processing time: 597ms - RequestID: cfw9k6t9cru +2025-06-18T14:49:42.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1038 - IP: 192.168.141.100 - RequestID: osslcoii47i +2025-06-18T14:49:42.481Z [INFO] notification-service - Database SELECT on users - Execution time: 195ms - Rows affected: 32 - RequestID: qcvjompm8bb +2025-06-18T14:49:42.581Z [INFO] auth-service - POST /api/v1/auth/login - Status: 404 - Response time: 1044ms - IP: 192.168.144.38 - User: user_1022 - RequestID: voy44x607u +2025-06-18T14:49:42.681Z [INFO] order-service - POST /api/v1/payments - Status: 200 - Response time: 325ms - IP: 192.168.235.117 - User: user_1085 - RequestID: y4g0ptd0ej +2025-06-18T14:49:42.781Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1063ms - IP: 192.168.85.229 - User: user_1004 - RequestID: lotljgafalm +2025-06-18T14:49:42.881Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 171ms - Rows affected: 49 - RequestID: if2fxhu1ylh +2025-06-18T14:49:42.981Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 54ms - Rows affected: 83 - RequestID: 5lvbjuvje0k +2025-06-18T14:49:43.081Z [INFO] user-service - Database INSERT on products - Execution time: 446ms - Rows affected: 56 - RequestID: zpxk8sjl4zf +2025-06-18T14:49:43.181Z [TRACE] auth-service - Auth event: logout - User: user_1055 - IP: 192.168.97.87 - RequestID: 6xdvu6jhnuq +2025-06-18T14:49:43.281Z [TRACE] notification-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.196.226 - RequestID: 4k7y44q7pqj +2025-06-18T14:49:43.381Z [TRACE] notification-service - Operation: email_sent - Processing time: 797ms - RequestID: gyrets5pf9h +2025-06-18T14:49:43.481Z [INFO] inventory-service - Database DELETE on orders - Execution time: 55ms - Rows affected: 24 - RequestID: vcfiov6r6ec +2025-06-18T14:49:43.581Z [DEBUG] order-service - Auth event: password_change - User: user_1012 - IP: 192.168.100.240 - RequestID: oaorvixx9fn +2025-06-18T14:49:43.681Z [DEBUG] user-service - Database INSERT on products - Execution time: 500ms - Rows affected: 30 - RequestID: e9d6twixwq5 +2025-06-18T14:49:43.781Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 356ms - Rows affected: 83 - RequestID: 62kqwfkwn99 +2025-06-18T14:49:43.881Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 497ms - RequestID: ptqvrkgkld +2025-06-18T14:49:43.981Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 815ms - IP: 192.168.53.133 - User: user_1031 - RequestID: 9s8fluykc8 +2025-06-18T14:49:44.081Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 431ms - RequestID: jybdw4puh8m +2025-06-18T14:49:44.181Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 507ms - RequestID: lea71rl7uq +2025-06-18T14:49:44.281Z [INFO] order-service - Auth event: logout - User: user_1078 - IP: 192.168.144.38 - RequestID: le7zw7exqhb +2025-06-18T14:49:44.381Z [TRACE] user-service - Database SELECT on sessions - Execution time: 470ms - Rows affected: 46 - RequestID: pj0ocv751sp +2025-06-18T14:49:44.481Z [INFO] notification-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.138.123 - RequestID: 0v4jnxfh0nz +2025-06-18T14:49:44.581Z [INFO] auth-service - Operation: order_created - Processing time: 345ms - RequestID: rcykiffybe +2025-06-18T14:49:44.681Z [INFO] user-service - Auth event: login_failed - User: user_1056 - IP: 192.168.235.117 - RequestID: e1tgg7icqfk +2025-06-18T14:49:44.781Z [TRACE] user-service - Database INSERT on sessions - Execution time: 92ms - Rows affected: 68 - RequestID: ta2ss43wvpl +2025-06-18T14:49:44.881Z [TRACE] user-service - Database DELETE on orders - Execution time: 342ms - Rows affected: 61 - RequestID: dy0g03pnz8j +2025-06-18T14:49:44.981Z [DEBUG] payment-service - POST /api/v1/users - Status: 403 - Response time: 775ms - IP: 192.168.147.171 - User: user_1014 - RequestID: 5s8zzzu0bhu +2025-06-18T14:49:45.081Z [INFO] user-service - Auth event: logout - User: user_1042 - IP: 192.168.133.7 - RequestID: msnvdspbkdp +2025-06-18T14:49:45.181Z [TRACE] user-service - Auth event: login_success - User: user_1021 - IP: 192.168.187.199 - RequestID: dn921d797a5 +2025-06-18T14:49:45.281Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 403 - Response time: 1867ms - IP: 192.168.211.72 - User: user_1046 - RequestID: 91mwv08wyg +2025-06-18T14:49:45.381Z [TRACE] payment-service - Operation: order_created - Processing time: 886ms - RequestID: 36sbwb0c1ha +2025-06-18T14:49:45.481Z [INFO] user-service - Database DELETE on products - Execution time: 378ms - Rows affected: 44 - RequestID: rfyn9vggzeg +2025-06-18T14:49:45.581Z [DEBUG] user-service - Database INSERT on products - Execution time: 405ms - Rows affected: 93 - RequestID: l9q9nlxc42f +2025-06-18T14:49:45.681Z [TRACE] auth-service - POST /api/v1/users - Status: 401 - Response time: 1228ms - IP: 192.168.144.38 - User: user_1097 - RequestID: fcsie4d6wl5 +2025-06-18T14:49:45.781Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 502 - Response time: 1321ms - IP: 192.168.235.117 - User: user_1017 - RequestID: azwm0axkga5 +2025-06-18T14:49:45.881Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 401 - Response time: 1219ms - IP: 192.168.68.158 - User: user_1080 - RequestID: fwj726jl36 +2025-06-18T14:49:45.981Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 402ms - RequestID: jt6woxw5iof +2025-06-18T14:49:46.081Z [TRACE] payment-service - Operation: cache_hit - Processing time: 740ms - RequestID: w9tj4gocoj +2025-06-18T14:49:46.181Z [TRACE] payment-service - Database SELECT on products - Execution time: 171ms - Rows affected: 91 - RequestID: lzv8zlutf5i +2025-06-18T14:49:46.281Z [INFO] payment-service - Auth event: login_failed - User: user_1001 - IP: 192.168.159.94 - RequestID: ph5bkvsg3s +2025-06-18T14:49:46.381Z [INFO] auth-service - Operation: inventory_updated - Processing time: 443ms - RequestID: npkadw789xq +2025-06-18T14:49:46.481Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 503 - Response time: 1974ms - IP: 192.168.133.7 - User: user_1089 - RequestID: 75k3fqtv28l +2025-06-18T14:49:46.581Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.189.103 - RequestID: rjnhdukwcbi +2025-06-18T14:49:46.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1069 - IP: 192.168.64.33 - RequestID: g7fs9qbelps +2025-06-18T14:49:46.781Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 423ms - Rows affected: 51 - RequestID: 6gisrp7r8ug +2025-06-18T14:49:46.881Z [DEBUG] auth-service - POST /api/v1/users - Status: 502 - Response time: 1779ms - IP: 192.168.33.76 - User: user_1079 - RequestID: ugmewvv38fp +2025-06-18T14:49:46.981Z [TRACE] user-service - Operation: cache_hit - Processing time: 83ms - RequestID: ww7v2ywtin +2025-06-18T14:49:47.081Z [INFO] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 1699ms - IP: 192.168.247.134 - User: user_1019 - RequestID: k9yaso2zop +2025-06-18T14:49:47.181Z [INFO] payment-service - GET /api/v1/orders - Status: 503 - Response time: 313ms - IP: 192.168.68.128 - User: user_1064 - RequestID: 5qx5b8uwgv5 +2025-06-18T14:49:47.281Z [INFO] auth-service - PUT /api/v1/inventory - Status: 500 - Response time: 1532ms - IP: 192.168.68.158 - User: user_1099 - RequestID: x6wl66clogb +2025-06-18T14:49:47.381Z [TRACE] auth-service - Operation: order_created - Processing time: 196ms - RequestID: kvaht9uy0k +2025-06-18T14:49:47.481Z [DEBUG] order-service - Auth event: password_change - User: user_1045 - IP: 192.168.194.41 - RequestID: k7l77sp4osd +2025-06-18T14:49:47.581Z [INFO] payment-service - Database DELETE on products - Execution time: 274ms - Rows affected: 25 - RequestID: f0durhmwkv +2025-06-18T14:49:47.681Z [TRACE] inventory-service - Auth event: logout - User: user_1002 - IP: 192.168.14.77 - RequestID: 2vq78n9opwe +2025-06-18T14:49:47.781Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 150ms - Rows affected: 67 - RequestID: cr8u0k54pys +2025-06-18T14:49:47.881Z [INFO] user-service - GET /api/v1/orders - Status: 200 - Response time: 314ms - IP: 192.168.33.76 - User: user_1081 - RequestID: qommxmezume +2025-06-18T14:49:47.981Z [DEBUG] order-service - Database DELETE on payments - Execution time: 292ms - Rows affected: 91 - RequestID: t4ibnyq83mq +2025-06-18T14:49:48.081Z [TRACE] user-service - Database UPDATE on payments - Execution time: 17ms - Rows affected: 31 - RequestID: 53fs3tq2dks +2025-06-18T14:49:48.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.194.41 - RequestID: zdest9kr8c8 +2025-06-18T14:49:48.281Z [DEBUG] user-service - Operation: email_sent - Processing time: 846ms - RequestID: l3viyoi727o +2025-06-18T14:49:48.381Z [TRACE] order-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.46.63 - RequestID: lwnjc311yc +2025-06-18T14:49:48.481Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 55ms - IP: 192.168.133.7 - User: user_1006 - RequestID: 9u78wv13qvh +2025-06-18T14:49:48.581Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 961ms - IP: 192.168.14.77 - User: user_1071 - RequestID: o71m33c1l99 +2025-06-18T14:49:48.681Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1425ms - IP: 192.168.13.72 - User: user_1042 - RequestID: 0ldtmr8ih6es +2025-06-18T14:49:48.781Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 94ms - Rows affected: 95 - RequestID: kusd85ogyu +2025-06-18T14:49:48.881Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 502 - Response time: 188ms - IP: 192.168.229.123 - User: user_1024 - RequestID: iff9sexjfyh +2025-06-18T14:49:48.981Z [INFO] notification-service - Database INSERT on orders - Execution time: 238ms - Rows affected: 56 - RequestID: aqjjrrpd9tm +2025-06-18T14:49:49.081Z [TRACE] user-service - Database SELECT on sessions - Execution time: 191ms - Rows affected: 12 - RequestID: 42ihcoy4i8u +2025-06-18T14:49:49.181Z [INFO] inventory-service - POST /api/v1/payments - Status: 400 - Response time: 753ms - IP: 192.168.158.144 - User: user_1096 - RequestID: a3tlaejd13h +2025-06-18T14:49:49.281Z [INFO] user-service - PATCH /api/v1/payments - Status: 502 - Response time: 517ms - IP: 192.168.211.72 - User: user_1018 - RequestID: b7jk4k25j88 +2025-06-18T14:49:49.381Z [INFO] inventory-service - PUT /api/v1/orders - Status: 403 - Response time: 163ms - IP: 192.168.235.117 - User: user_1042 - RequestID: 3k00oopqc9 +2025-06-18T14:49:49.481Z [INFO] notification-service - Auth event: login_failed - User: user_1049 - IP: 192.168.31.117 - RequestID: fkqokkxnik7 +2025-06-18T14:49:49.581Z [INFO] payment-service - Operation: payment_processed - Processing time: 594ms - RequestID: ajvnyzjw847 +2025-06-18T14:49:49.681Z [TRACE] order-service - Auth event: logout - User: user_1036 - IP: 192.168.141.100 - RequestID: ptwol3yhljs +2025-06-18T14:49:49.781Z [INFO] payment-service - POST /api/v1/orders - Status: 404 - Response time: 464ms - IP: 192.168.30.79 - User: user_1063 - RequestID: fnxmrbqp9zc +2025-06-18T14:49:49.881Z [TRACE] order-service - PATCH /api/v1/payments - Status: 502 - Response time: 1082ms - IP: 192.168.181.225 - User: user_1052 - RequestID: g402t3bqcm +2025-06-18T14:49:49.981Z [TRACE] notification-service - PUT /api/v1/orders - Status: 503 - Response time: 156ms - IP: 192.168.79.143 - User: user_1040 - RequestID: ocpj83xbpq +2025-06-18T14:49:50.081Z [DEBUG] user-service - Auth event: password_change - User: user_1086 - IP: 192.168.247.134 - RequestID: 338u6848s5f +2025-06-18T14:49:50.181Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 419ms - Rows affected: 5 - RequestID: tb6c0i8n6um +2025-06-18T14:49:50.281Z [INFO] notification-service - Auth event: login_success - User: user_1045 - IP: 192.168.144.38 - RequestID: g8vco3g7ov8 +2025-06-18T14:49:50.381Z [INFO] order-service - Operation: order_created - Processing time: 207ms - RequestID: go9tzajcntr +2025-06-18T14:49:50.481Z [DEBUG] user-service - Operation: order_created - Processing time: 948ms - RequestID: 6os2c6ph4ji +2025-06-18T14:49:50.581Z [INFO] order-service - Operation: cache_miss - Processing time: 183ms - RequestID: im9kebaajdf +2025-06-18T14:49:50.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.53.133 - RequestID: kb5fk8r7tue +2025-06-18T14:49:50.781Z [DEBUG] order-service - Operation: cache_hit - Processing time: 346ms - RequestID: igjh8xp5e9 +2025-06-18T14:49:50.881Z [TRACE] order-service - Operation: cache_miss - Processing time: 435ms - RequestID: rw72dazidx +2025-06-18T14:49:50.981Z [DEBUG] auth-service - Auth event: logout - User: user_1056 - IP: 192.168.194.41 - RequestID: gtb0sqf3lr +2025-06-18T14:49:51.081Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 612ms - IP: 192.168.240.169 - User: user_1098 - RequestID: yt0wefg9h1 +2025-06-18T14:49:51.181Z [INFO] auth-service - DELETE /api/v1/payments - Status: 401 - Response time: 328ms - IP: 192.168.68.128 - User: user_1034 - RequestID: d1rzcpau149 +2025-06-18T14:49:51.281Z [DEBUG] order-service - Operation: cache_miss - Processing time: 870ms - RequestID: 16jnt98qwas +2025-06-18T14:49:51.381Z [INFO] inventory-service - POST /api/v1/inventory - Status: 403 - Response time: 324ms - IP: 192.168.53.133 - User: user_1055 - RequestID: d52dt5xiv3a +2025-06-18T14:49:51.481Z [INFO] order-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.138.123 - RequestID: 6ld8rb0zzsc +2025-06-18T14:49:51.581Z [TRACE] auth-service - Auth event: logout - User: user_1002 - IP: 192.168.167.32 - RequestID: pt4adogcxi +2025-06-18T14:49:51.681Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 382ms - Rows affected: 0 - RequestID: vj2nyz0pgg +2025-06-18T14:49:51.781Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 158ms - Rows affected: 2 - RequestID: 4i89c76bjpv +2025-06-18T14:49:51.881Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 401 - Response time: 348ms - IP: 192.168.44.5 - User: user_1012 - RequestID: frutddam1b +2025-06-18T14:49:51.981Z [DEBUG] order-service - Auth event: login_success - User: user_1079 - IP: 192.168.240.169 - RequestID: pfldgiqrrih +2025-06-18T14:49:52.081Z [INFO] order-service - Auth event: login_success - User: user_1067 - IP: 192.168.81.206 - RequestID: gvedyxxwzo5 +2025-06-18T14:49:52.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.46.63 - RequestID: 0xws70hpnpa +2025-06-18T14:49:52.281Z [TRACE] payment-service - Auth event: password_change - User: user_1085 - IP: 192.168.28.146 - RequestID: r8jmateplj +2025-06-18T14:49:52.381Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 201 - Response time: 1393ms - IP: 192.168.13.72 - User: user_1003 - RequestID: axamllixqnu +2025-06-18T14:49:52.481Z [TRACE] order-service - PATCH /api/v1/orders - Status: 201 - Response time: 571ms - IP: 192.168.14.77 - User: user_1040 - RequestID: zioa0nugqf +2025-06-18T14:49:52.581Z [INFO] payment-service - Operation: payment_processed - Processing time: 1032ms - RequestID: 34fqli1oqct +2025-06-18T14:49:52.681Z [DEBUG] order-service - GET /api/v1/inventory - Status: 401 - Response time: 798ms - IP: 192.168.33.76 - User: user_1065 - RequestID: 44fry9dlmst +2025-06-18T14:49:52.781Z [INFO] payment-service - PATCH /api/v1/users - Status: 200 - Response time: 1559ms - IP: 192.168.31.117 - User: user_1099 - RequestID: 9nzmr2yna5n +2025-06-18T14:49:52.881Z [TRACE] notification-service - Auth event: logout - User: user_1092 - IP: 192.168.79.116 - RequestID: pn24rjl2yqe +2025-06-18T14:49:52.981Z [TRACE] order-service - Operation: email_sent - Processing time: 155ms - RequestID: 23tf2uukdup +2025-06-18T14:49:53.081Z [DEBUG] auth-service - Auth event: logout - User: user_1000 - IP: 192.168.147.171 - RequestID: x4h7dgi58v +2025-06-18T14:49:53.181Z [DEBUG] payment-service - Operation: email_sent - Processing time: 507ms - RequestID: agegbwg8grk +2025-06-18T14:49:53.281Z [INFO] notification-service - PATCH /api/v1/payments - Status: 404 - Response time: 1134ms - IP: 192.168.79.141 - User: user_1094 - RequestID: zif1wyy0kdh +2025-06-18T14:49:53.381Z [TRACE] user-service - POST /api/v1/orders - Status: 404 - Response time: 944ms - IP: 192.168.44.5 - User: user_1083 - RequestID: taz4zc7ivpi +2025-06-18T14:49:53.481Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 433ms - Rows affected: 98 - RequestID: phd31widfvr +2025-06-18T14:49:53.581Z [TRACE] payment-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.247.134 - RequestID: 1cyrif1id05 +2025-06-18T14:49:53.681Z [INFO] user-service - PUT /api/v1/auth/login - Status: 201 - Response time: 273ms - IP: 192.168.227.77 - User: user_1030 - RequestID: k1eong3pu5h +2025-06-18T14:49:53.781Z [TRACE] user-service - Database UPDATE on users - Execution time: 207ms - Rows affected: 91 - RequestID: j51cgjk529 +2025-06-18T14:49:53.881Z [INFO] inventory-service - Operation: order_created - Processing time: 263ms - RequestID: wsglydb6zw +2025-06-18T14:49:53.981Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 844ms - RequestID: 4pmq22og2if +2025-06-18T14:49:54.081Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 138ms - Rows affected: 0 - RequestID: z7fszf3tld +2025-06-18T14:49:54.181Z [TRACE] payment-service - POST /api/v1/orders - Status: 201 - Response time: 1694ms - IP: 192.168.79.141 - User: user_1075 - RequestID: c28nx3z88k6 +2025-06-18T14:49:54.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.28.146 - RequestID: sx37yagu8fi +2025-06-18T14:49:54.381Z [INFO] user-service - Database SELECT on products - Execution time: 474ms - Rows affected: 72 - RequestID: 5i2dzkitg49 +2025-06-18T14:49:54.481Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 819ms - IP: 192.168.144.38 - User: user_1085 - RequestID: 3xb0vbvwpzn +2025-06-18T14:49:54.581Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 318ms - RequestID: 4bia1zn5lrp +2025-06-18T14:49:54.681Z [TRACE] user-service - Database INSERT on orders - Execution time: 88ms - Rows affected: 8 - RequestID: 6ey9537pxne +2025-06-18T14:49:54.781Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 393ms - Rows affected: 27 - RequestID: bm5ljcv3g27 +2025-06-18T14:49:54.881Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 892ms - RequestID: snpgk2xnuyh +2025-06-18T14:49:54.981Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 500 - Response time: 154ms - IP: 192.168.181.225 - User: user_1017 - RequestID: mliwj3n52w +2025-06-18T14:49:55.081Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 333ms - Rows affected: 4 - RequestID: wdmzgfpvcv9 +2025-06-18T14:49:55.181Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 54ms - Rows affected: 45 - RequestID: 7l1ptwvhe8j +2025-06-18T14:49:55.281Z [TRACE] payment-service - Auth event: login_failed - User: user_1019 - IP: 192.168.81.206 - RequestID: apwza5kq8k8 +2025-06-18T14:49:55.381Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 139ms - RequestID: 8g4mlr3zzl2 +2025-06-18T14:49:55.481Z [INFO] notification-service - Operation: webhook_sent - Processing time: 492ms - RequestID: g0ixnpqodu +2025-06-18T14:49:55.581Z [INFO] notification-service - Database INSERT on payments - Execution time: 21ms - Rows affected: 83 - RequestID: 7bwjpjnb09v +2025-06-18T14:49:55.681Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 403 - Response time: 248ms - IP: 192.168.227.77 - User: user_1057 - RequestID: u2zizbi7m0p +2025-06-18T14:49:55.781Z [INFO] inventory-service - Auth event: login_success - User: user_1015 - IP: 192.168.68.128 - RequestID: mq4khcsqfun +2025-06-18T14:49:55.881Z [TRACE] user-service - Database DELETE on sessions - Execution time: 389ms - Rows affected: 42 - RequestID: keg1tebgtu +2025-06-18T14:49:55.981Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.147.171 - RequestID: lknfb4od25j +2025-06-18T14:49:56.081Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 396ms - Rows affected: 32 - RequestID: k5hzx0mcj9 +2025-06-18T14:49:56.181Z [DEBUG] order-service - Auth event: password_change - User: user_1095 - IP: 192.168.1.152 - RequestID: 80s34k8591h +2025-06-18T14:49:56.281Z [TRACE] payment-service - Database SELECT on payments - Execution time: 164ms - Rows affected: 77 - RequestID: y3g9vv06ysc +2025-06-18T14:49:56.381Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 907ms - RequestID: fidindc5tqv +2025-06-18T14:49:56.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.85.229 - RequestID: bjbk356tlzr +2025-06-18T14:49:56.581Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 400 - Response time: 1664ms - IP: 192.168.104.37 - User: user_1095 - RequestID: rcm5x8aiz8k +2025-06-18T14:49:56.681Z [TRACE] auth-service - Operation: payment_processed - Processing time: 805ms - RequestID: 6uruu06vrfp +2025-06-18T14:49:56.781Z [DEBUG] notification-service - Auth event: password_change - User: user_1037 - IP: 192.168.242.165 - RequestID: e2z5nga0f3q +2025-06-18T14:49:56.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1012 - IP: 192.168.187.199 - RequestID: flxar0iy52n +2025-06-18T14:49:56.981Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 1018ms - RequestID: l5a37pkhc6 +2025-06-18T14:49:57.081Z [TRACE] order-service - Operation: inventory_updated - Processing time: 280ms - RequestID: 12d152nrmkd9 +2025-06-18T14:49:57.181Z [INFO] order-service - Auth event: login_failed - User: user_1051 - IP: 192.168.31.117 - RequestID: plcu6pladtb +2025-06-18T14:49:57.281Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 828ms - RequestID: fvs7tn50rbr +2025-06-18T14:49:57.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 496ms - RequestID: 25uy8f2qvbf +2025-06-18T14:49:57.481Z [TRACE] user-service - Operation: payment_processed - Processing time: 873ms - RequestID: 4okgq10s0ff +2025-06-18T14:49:57.581Z [INFO] order-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.36.218 - RequestID: xpfn7kgruz +2025-06-18T14:49:57.681Z [TRACE] auth-service - Auth event: logout - User: user_1057 - IP: 192.168.170.215 - RequestID: 3kd36p7lyoo +2025-06-18T14:49:57.781Z [INFO] order-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.133.7 - RequestID: rcoj5bpulxk +2025-06-18T14:49:57.881Z [INFO] user-service - Operation: cache_miss - Processing time: 658ms - RequestID: fmgudsmhdr8 +2025-06-18T14:49:57.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.170.215 - RequestID: cqyx2wvph9q +2025-06-18T14:49:58.081Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 723ms - IP: 192.168.100.240 - User: user_1063 - RequestID: rdo67e6sj3f +2025-06-18T14:49:58.181Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 201 - Response time: 718ms - IP: 192.168.227.77 - User: user_1085 - RequestID: 4tqrqkf6xa8 +2025-06-18T14:49:58.281Z [INFO] order-service - Operation: notification_queued - Processing time: 216ms - RequestID: e4ohcar25di +2025-06-18T14:49:58.381Z [INFO] inventory-service - Operation: cache_miss - Processing time: 859ms - RequestID: iy6lv3pxhoj +2025-06-18T14:49:58.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 895ms - RequestID: bh8zuqjq70l +2025-06-18T14:49:58.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 658ms - RequestID: x6i63fjo3g +2025-06-18T14:49:58.681Z [DEBUG] auth-service - Auth event: password_change - User: user_1002 - IP: 192.168.68.158 - RequestID: ug0lesr5wrl +2025-06-18T14:49:58.781Z [INFO] payment-service - Operation: email_sent - Processing time: 269ms - RequestID: rof6lruw6ra +2025-06-18T14:49:58.881Z [DEBUG] notification-service - GET /api/v1/orders - Status: 502 - Response time: 590ms - IP: 192.168.144.38 - User: user_1086 - RequestID: ldcurp84tie +2025-06-18T14:49:58.981Z [INFO] auth-service - Operation: email_sent - Processing time: 148ms - RequestID: 8skptw6lezi +2025-06-18T14:49:59.081Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1376ms - IP: 192.168.247.134 - User: user_1063 - RequestID: rfr4naarwds +2025-06-18T14:49:59.181Z [INFO] notification-service - Operation: cache_miss - Processing time: 227ms - RequestID: 4tyjvfniqhq +2025-06-18T14:49:59.281Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1615ms - IP: 192.168.64.33 - User: user_1086 - RequestID: py7x7pn472j +2025-06-18T14:49:59.381Z [INFO] inventory-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.138.123 - RequestID: 4c3lcp4luav +2025-06-18T14:49:59.481Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 502 - Response time: 1866ms - IP: 192.168.81.206 - User: user_1045 - RequestID: bjad6h1b73 +2025-06-18T14:49:59.581Z [TRACE] user-service - Database INSERT on users - Execution time: 35ms - Rows affected: 33 - RequestID: mz1aqwqw8ll +2025-06-18T14:49:59.681Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1219ms - IP: 192.168.227.233 - User: user_1080 - RequestID: ndgwxsufsa +2025-06-18T14:49:59.781Z [INFO] user-service - PUT /api/v1/inventory - Status: 500 - Response time: 1567ms - IP: 192.168.31.117 - User: user_1008 - RequestID: i3503jau0cg +2025-06-18T14:49:59.881Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 152ms - Rows affected: 79 - RequestID: n2x0efgcgdh +2025-06-18T14:49:59.981Z [INFO] inventory-service - Operation: order_created - Processing time: 763ms - RequestID: 042cfxaah9lf +2025-06-18T14:50:00.081Z [INFO] payment-service - Operation: cache_miss - Processing time: 829ms - RequestID: v6l1u7ranx +2025-06-18T14:50:00.181Z [INFO] notification-service - Database INSERT on payments - Execution time: 437ms - Rows affected: 35 - RequestID: v30rq9g4v3l +2025-06-18T14:50:00.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 539ms - RequestID: phixw7xh1xo +2025-06-18T14:50:00.381Z [INFO] inventory-service - POST /api/v1/payments - Status: 201 - Response time: 1102ms - IP: 192.168.85.229 - User: user_1057 - RequestID: klrlhyq5k2o +2025-06-18T14:50:00.481Z [INFO] payment-service - Auth event: login_failed - User: user_1054 - IP: 192.168.36.218 - RequestID: zhyiyw5bcn +2025-06-18T14:50:00.581Z [INFO] order-service - Database DELETE on users - Execution time: 2ms - Rows affected: 31 - RequestID: aer1wriylj +2025-06-18T14:50:00.681Z [TRACE] order-service - Operation: payment_processed - Processing time: 921ms - RequestID: osz8uzpny6b +2025-06-18T14:50:00.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.85.229 - RequestID: q6o0enthik9 +2025-06-18T14:50:00.881Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 140ms - RequestID: j0hp1reud7r +2025-06-18T14:50:00.981Z [DEBUG] user-service - Auth event: logout - User: user_1059 - IP: 192.168.10.184 - RequestID: fpiwp90bx7b +2025-06-18T14:50:01.081Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 500 - Response time: 941ms - IP: 192.168.97.87 - User: user_1096 - RequestID: 0hicwpxryevg +2025-06-18T14:50:01.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.158.144 - RequestID: gzjtk2t57ho +2025-06-18T14:50:01.281Z [DEBUG] user-service - GET /api/v1/orders - Status: 503 - Response time: 586ms - IP: 192.168.227.77 - User: user_1037 - RequestID: xmx1pchuqd +2025-06-18T14:50:01.381Z [DEBUG] order-service - POST /api/v1/payments - Status: 503 - Response time: 609ms - IP: 192.168.141.100 - User: user_1045 - RequestID: rncvdud85ga +2025-06-18T14:50:01.481Z [DEBUG] payment-service - Operation: email_sent - Processing time: 568ms - RequestID: b49acrckag +2025-06-18T14:50:01.581Z [TRACE] order-service - Operation: cache_miss - Processing time: 565ms - RequestID: c7bvmf3j29l +2025-06-18T14:50:01.681Z [INFO] auth-service - Auth event: login_failed - User: user_1036 - IP: 192.168.79.141 - RequestID: 4zuaxfcowb6 +2025-06-18T14:50:01.781Z [TRACE] auth-service - Database INSERT on payments - Execution time: 213ms - Rows affected: 10 - RequestID: rgm23ml4los +2025-06-18T14:50:01.881Z [TRACE] order-service - Operation: webhook_sent - Processing time: 292ms - RequestID: q2crs9w44kb +2025-06-18T14:50:01.981Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 500ms - Rows affected: 28 - RequestID: vglbt1gil6s +2025-06-18T14:50:02.081Z [INFO] payment-service - Database INSERT on orders - Execution time: 78ms - Rows affected: 90 - RequestID: yhs6x7ifju +2025-06-18T14:50:02.181Z [TRACE] payment-service - Auth event: logout - User: user_1027 - IP: 192.168.85.229 - RequestID: 2vij1qurkkv +2025-06-18T14:50:02.281Z [TRACE] auth-service - Operation: cache_hit - Processing time: 386ms - RequestID: ghypr2gk60a +2025-06-18T14:50:02.381Z [INFO] auth-service - PATCH /api/v1/orders - Status: 201 - Response time: 729ms - IP: 192.168.232.72 - User: user_1023 - RequestID: omehl700n9f +2025-06-18T14:50:02.481Z [TRACE] notification-service - Database DELETE on products - Execution time: 496ms - Rows affected: 93 - RequestID: l24bp41x38m +2025-06-18T14:50:02.581Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 328ms - Rows affected: 11 - RequestID: 1otecvhqbyj +2025-06-18T14:50:02.681Z [TRACE] user-service - PUT /api/v1/payments - Status: 503 - Response time: 1881ms - IP: 192.168.79.143 - User: user_1039 - RequestID: jthj66mqgri +2025-06-18T14:50:02.781Z [TRACE] order-service - Auth event: logout - User: user_1060 - IP: 192.168.33.76 - RequestID: w750ujmovt +2025-06-18T14:50:02.881Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 500 - Response time: 1668ms - IP: 192.168.79.141 - User: user_1070 - RequestID: eol0b2f7fdk +2025-06-18T14:50:02.981Z [INFO] auth-service - Database UPDATE on orders - Execution time: 371ms - Rows affected: 93 - RequestID: tmphdy3e079 +2025-06-18T14:50:03.081Z [TRACE] notification-service - Database DELETE on payments - Execution time: 79ms - Rows affected: 63 - RequestID: ho9yjrqrvq +2025-06-18T14:50:03.181Z [DEBUG] notification-service - GET /api/v1/payments - Status: 400 - Response time: 187ms - IP: 192.168.85.229 - User: user_1000 - RequestID: l0if8oqplsm +2025-06-18T14:50:03.281Z [TRACE] order-service - DELETE /api/v1/payments - Status: 200 - Response time: 1932ms - IP: 192.168.211.72 - User: user_1035 - RequestID: q6vkej3cegd +2025-06-18T14:50:03.381Z [DEBUG] notification-service - POST /api/v1/payments - Status: 500 - Response time: 1576ms - IP: 192.168.159.94 - User: user_1077 - RequestID: zxunk8afdms +2025-06-18T14:50:03.481Z [DEBUG] order-service - Database INSERT on users - Execution time: 440ms - Rows affected: 6 - RequestID: 8eecfhhnyne +2025-06-18T14:50:03.581Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 20ms - Rows affected: 43 - RequestID: k9riwzuh2xm +2025-06-18T14:50:03.681Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 133ms - RequestID: d9ddt14buqp +2025-06-18T14:50:03.781Z [INFO] payment-service - PATCH /api/v1/orders - Status: 502 - Response time: 823ms - IP: 192.168.85.229 - User: user_1081 - RequestID: scm5lr3qfm +2025-06-18T14:50:03.881Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1945ms - IP: 192.168.53.133 - User: user_1054 - RequestID: pjbsc438sj +2025-06-18T14:50:03.981Z [TRACE] payment-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.28.146 - RequestID: q3qxxsi2pm8 +2025-06-18T14:50:04.081Z [INFO] user-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.36.218 - RequestID: 0xhhk0vyyso +2025-06-18T14:50:04.181Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 233ms - IP: 192.168.85.229 - User: user_1091 - RequestID: nl0ewgtdivh +2025-06-18T14:50:04.281Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 200 - Response time: 939ms - IP: 192.168.1.152 - User: user_1069 - RequestID: vokeo2nm0fb +2025-06-18T14:50:04.381Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1282ms - IP: 192.168.229.123 - User: user_1028 - RequestID: 165k28p70af +2025-06-18T14:50:04.481Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 55ms - Rows affected: 80 - RequestID: v1dulsk85q +2025-06-18T14:50:04.581Z [INFO] user-service - POST /api/v1/users - Status: 401 - Response time: 638ms - IP: 192.168.232.72 - User: user_1066 - RequestID: dectvxms9rk +2025-06-18T14:50:04.681Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1774ms - IP: 192.168.64.33 - User: user_1066 - RequestID: to3r8rfcdrs +2025-06-18T14:50:04.781Z [TRACE] auth-service - Auth event: password_change - User: user_1092 - IP: 192.168.44.5 - RequestID: 0jygpwn1odtn +2025-06-18T14:50:04.881Z [DEBUG] user-service - POST /api/v1/inventory - Status: 404 - Response time: 90ms - IP: 192.168.28.146 - User: user_1013 - RequestID: zdnf8ks7ozc +2025-06-18T14:50:04.981Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 686ms - IP: 192.168.229.123 - User: user_1056 - RequestID: f3yupqm8clv +2025-06-18T14:50:05.081Z [TRACE] notification-service - Database SELECT on orders - Execution time: 317ms - Rows affected: 80 - RequestID: oglqx6jijwq +2025-06-18T14:50:05.181Z [DEBUG] order-service - Operation: payment_processed - Processing time: 992ms - RequestID: wappjy7gkp +2025-06-18T14:50:05.281Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 201 - Response time: 133ms - IP: 192.168.187.199 - User: user_1097 - RequestID: 099ov04edcf3 +2025-06-18T14:50:05.381Z [TRACE] payment-service - Operation: cache_miss - Processing time: 617ms - RequestID: 1gkn6hbm57r +2025-06-18T14:50:05.481Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 185ms - Rows affected: 70 - RequestID: qd1249lixfo +2025-06-18T14:50:05.581Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 401 - Response time: 816ms - IP: 192.168.159.94 - User: user_1077 - RequestID: nh5h1u93u7 +2025-06-18T14:50:05.681Z [INFO] payment-service - Database SELECT on payments - Execution time: 496ms - Rows affected: 18 - RequestID: 30hl8lz0fjv +2025-06-18T14:50:05.781Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 341ms - Rows affected: 38 - RequestID: kn5161672d +2025-06-18T14:50:05.881Z [INFO] user-service - PUT /api/v1/payments - Status: 200 - Response time: 1994ms - IP: 192.168.113.218 - User: user_1014 - RequestID: 6qf3ueigel7 +2025-06-18T14:50:05.981Z [INFO] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 260ms - IP: 192.168.79.116 - User: user_1093 - RequestID: awj67jq7dvh +2025-06-18T14:50:06.081Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 502 - Response time: 554ms - IP: 192.168.167.32 - User: user_1003 - RequestID: ym0qet3plqq +2025-06-18T14:50:06.181Z [INFO] inventory-service - Auth event: logout - User: user_1005 - IP: 192.168.158.144 - RequestID: 408b59i74wy +2025-06-18T14:50:06.281Z [TRACE] payment-service - Auth event: login_success - User: user_1033 - IP: 192.168.68.128 - RequestID: yo28tmn43ug +2025-06-18T14:50:06.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 450ms - RequestID: 2t6ug316g0s +2025-06-18T14:50:06.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.46.63 - RequestID: 7ghpl4qyqjp +2025-06-18T14:50:06.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 325ms - RequestID: 24ki28i22i6 +2025-06-18T14:50:06.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.33.76 - RequestID: ml7ngn2k5yp +2025-06-18T14:50:06.781Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 126ms - RequestID: ijy41vpayh +2025-06-18T14:50:06.881Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 990ms - RequestID: 5dzp6nvuh8i +2025-06-18T14:50:06.981Z [DEBUG] user-service - Operation: notification_queued - Processing time: 448ms - RequestID: mvtlwxncep +2025-06-18T14:50:07.081Z [DEBUG] auth-service - Auth event: logout - User: user_1083 - IP: 192.168.170.215 - RequestID: oua0xxrvv6r +2025-06-18T14:50:07.181Z [TRACE] payment-service - Auth event: password_change - User: user_1011 - IP: 192.168.240.169 - RequestID: tyqzuyipxai +2025-06-18T14:50:07.281Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 324ms - Rows affected: 82 - RequestID: n0rdo4nr4c +2025-06-18T14:50:07.381Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.44.5 - RequestID: pxfl81nbcrm +2025-06-18T14:50:07.481Z [DEBUG] order-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.68.128 - RequestID: uhci8p2rnm +2025-06-18T14:50:07.581Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 927ms - RequestID: tl4c11wxwpj +2025-06-18T14:50:07.681Z [TRACE] notification-service - Operation: cache_hit - Processing time: 105ms - RequestID: c68s0lmqkga +2025-06-18T14:50:07.781Z [DEBUG] order-service - DELETE /api/v1/users - Status: 403 - Response time: 1806ms - IP: 192.168.211.72 - User: user_1013 - RequestID: vsi6zjjkgdj +2025-06-18T14:50:07.881Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 74ms - RequestID: kn0h3ibss3k +2025-06-18T14:50:07.981Z [TRACE] notification-service - Operation: email_sent - Processing time: 492ms - RequestID: ck6lgkv9qhm +2025-06-18T14:50:08.081Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 879ms - IP: 192.168.53.133 - User: user_1047 - RequestID: gaz5sfjo45 +2025-06-18T14:50:08.181Z [INFO] auth-service - Operation: payment_processed - Processing time: 50ms - RequestID: x849rvl3za +2025-06-18T14:50:08.281Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.242.165 - RequestID: 1ifcdvm3bowh +2025-06-18T14:50:08.381Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 500 - Response time: 13ms - IP: 192.168.147.171 - User: user_1067 - RequestID: 9b6zfuoz3c9 +2025-06-18T14:50:08.481Z [TRACE] user-service - POST /api/v1/inventory - Status: 404 - Response time: 281ms - IP: 192.168.242.165 - User: user_1068 - RequestID: 8zgirsxd79 +2025-06-18T14:50:08.581Z [INFO] inventory-service - Operation: email_sent - Processing time: 845ms - RequestID: 0onm8jq9c7k +2025-06-18T14:50:08.681Z [INFO] payment-service - Auth event: login_success - User: user_1046 - IP: 192.168.100.240 - RequestID: o5o9so8pn3l +2025-06-18T14:50:08.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1005 - IP: 192.168.79.143 - RequestID: odbymj4c7t +2025-06-18T14:50:08.881Z [INFO] inventory-service - Auth event: login_success - User: user_1019 - IP: 192.168.113.218 - RequestID: 32mcoij3rt +2025-06-18T14:50:08.981Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 969ms - RequestID: l772x3d17x +2025-06-18T14:50:09.081Z [TRACE] notification-service - Auth event: password_change - User: user_1046 - IP: 192.168.11.60 - RequestID: vc5g82g4xb +2025-06-18T14:50:09.181Z [INFO] payment-service - Operation: cache_hit - Processing time: 604ms - RequestID: tx3fjyyqhfb +2025-06-18T14:50:09.281Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 206ms - Rows affected: 19 - RequestID: n06h289y44t +2025-06-18T14:50:09.381Z [INFO] notification-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.194.41 - RequestID: qqreb4k1ew +2025-06-18T14:50:09.481Z [TRACE] auth-service - Database SELECT on users - Execution time: 272ms - Rows affected: 84 - RequestID: kyou7z5cuep +2025-06-18T14:50:09.581Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 488ms - RequestID: yxah7fszxu +2025-06-18T14:50:09.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.211.72 - RequestID: mgfp3zjrk7f +2025-06-18T14:50:09.781Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 874ms - RequestID: 3wqw0g7dfz6 +2025-06-18T14:50:09.881Z [INFO] notification-service - Operation: order_created - Processing time: 345ms - RequestID: ey0x4r6abfn +2025-06-18T14:50:09.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.100.240 - RequestID: ooeq7pl6db +2025-06-18T14:50:10.081Z [TRACE] inventory-service - Operation: order_created - Processing time: 710ms - RequestID: 22nwti6z3tc +2025-06-18T14:50:10.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.167.32 - RequestID: x5cdpvs0zhq +2025-06-18T14:50:10.281Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 401 - Response time: 636ms - IP: 192.168.10.184 - User: user_1017 - RequestID: 5v1kt2uaki3 +2025-06-18T14:50:10.381Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 503 - Response time: 927ms - IP: 192.168.240.169 - User: user_1087 - RequestID: yqnl3m1tzy +2025-06-18T14:50:10.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 970ms - RequestID: mb56pkaagu +2025-06-18T14:50:10.581Z [TRACE] notification-service - Operation: payment_processed - Processing time: 685ms - RequestID: 5t0y16vmeev +2025-06-18T14:50:10.681Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 201 - Response time: 2001ms - IP: 192.168.170.215 - User: user_1058 - RequestID: gaq97kzcx38 +2025-06-18T14:50:10.781Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 921ms - RequestID: 8p074ue1l39 +2025-06-18T14:50:10.881Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 97ms - RequestID: dyjcn5p7ic +2025-06-18T14:50:10.981Z [TRACE] auth-service - GET /api/v1/inventory - Status: 400 - Response time: 931ms - IP: 192.168.100.240 - User: user_1042 - RequestID: 7kgs68mhe0y +2025-06-18T14:50:11.081Z [TRACE] auth-service - PUT /api/v1/payments - Status: 401 - Response time: 1939ms - IP: 192.168.1.152 - User: user_1071 - RequestID: uesdqqdu2a +2025-06-18T14:50:11.181Z [DEBUG] user-service - Auth event: password_change - User: user_1009 - IP: 192.168.81.206 - RequestID: e83g2x6ynat +2025-06-18T14:50:11.281Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 429ms - RequestID: 9n23l0kpz0r +2025-06-18T14:50:11.381Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 373ms - Rows affected: 72 - RequestID: yib4kbx13z +2025-06-18T14:50:11.481Z [INFO] user-service - Auth event: login_success - User: user_1078 - IP: 192.168.31.117 - RequestID: 6rzgv92e8if +2025-06-18T14:50:11.581Z [TRACE] inventory-service - POST /api/v1/users - Status: 404 - Response time: 1861ms - IP: 192.168.133.7 - User: user_1097 - RequestID: 03d0tqy8wl14 +2025-06-18T14:50:11.681Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 119ms - Rows affected: 60 - RequestID: xzvq8fxu0r +2025-06-18T14:50:11.781Z [INFO] auth-service - PATCH /api/v1/users - Status: 201 - Response time: 1511ms - IP: 192.168.97.87 - User: user_1021 - RequestID: whqufpwih98 +2025-06-18T14:50:11.881Z [INFO] payment-service - Operation: order_created - Processing time: 745ms - RequestID: jdc19sprcvn +2025-06-18T14:50:11.981Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 67ms - Rows affected: 93 - RequestID: 1q7oafjj4wn +2025-06-18T14:50:12.081Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 396ms - Rows affected: 65 - RequestID: dbcdfbyimnv +2025-06-18T14:50:12.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.181.225 - RequestID: wt3teaye2c +2025-06-18T14:50:12.281Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 43ms - IP: 192.168.229.123 - User: user_1044 - RequestID: yuy9pe55w0h +2025-06-18T14:50:12.381Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 502 - Response time: 1482ms - IP: 192.168.113.218 - User: user_1049 - RequestID: 6p828hj44qi +2025-06-18T14:50:12.481Z [DEBUG] auth-service - PUT /api/v1/users - Status: 503 - Response time: 1641ms - IP: 192.168.158.144 - User: user_1070 - RequestID: lnp4xmt56k +2025-06-18T14:50:12.581Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 498ms - Rows affected: 34 - RequestID: kqt152p6rrq +2025-06-18T14:50:12.681Z [INFO] order-service - Auth event: password_change - User: user_1076 - IP: 192.168.68.128 - RequestID: s63hmgf0kwp +2025-06-18T14:50:12.781Z [TRACE] auth-service - DELETE /api/v1/users - Status: 503 - Response time: 344ms - IP: 192.168.33.76 - User: user_1003 - RequestID: 16jcbylqr9m +2025-06-18T14:50:12.881Z [INFO] auth-service - Operation: webhook_sent - Processing time: 541ms - RequestID: hs7upspp0s9 +2025-06-18T14:50:12.981Z [TRACE] order-service - POST /api/v1/inventory - Status: 200 - Response time: 586ms - IP: 192.168.227.233 - User: user_1045 - RequestID: ea4uj07htys +2025-06-18T14:50:13.081Z [INFO] user-service - Database SELECT on products - Execution time: 84ms - Rows affected: 26 - RequestID: dwxatvoifka +2025-06-18T14:50:13.181Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 573ms - RequestID: uw7ea4tcf4j +2025-06-18T14:50:13.281Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 215ms - Rows affected: 5 - RequestID: vsp8fb40u3b +2025-06-18T14:50:13.381Z [INFO] user-service - Database INSERT on payments - Execution time: 192ms - Rows affected: 4 - RequestID: nrfrxtco4x +2025-06-18T14:50:13.481Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 364ms - IP: 192.168.167.32 - User: user_1065 - RequestID: wvnybxn714k +2025-06-18T14:50:13.581Z [TRACE] auth-service - Database DELETE on products - Execution time: 327ms - Rows affected: 62 - RequestID: b3gkfdboa56 +2025-06-18T14:50:13.681Z [TRACE] payment-service - Auth event: password_change - User: user_1016 - IP: 192.168.104.37 - RequestID: toarf649aip +2025-06-18T14:50:13.781Z [INFO] auth-service - Database DELETE on products - Execution time: 395ms - Rows affected: 11 - RequestID: u6rc4cfy2e +2025-06-18T14:50:13.881Z [INFO] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 1201ms - IP: 192.168.147.171 - User: user_1018 - RequestID: 39abejxlr42 +2025-06-18T14:50:13.981Z [DEBUG] notification-service - Auth event: logout - User: user_1050 - IP: 192.168.227.233 - RequestID: cu9i9e5v1j +2025-06-18T14:50:14.081Z [INFO] inventory-service - DELETE /api/v1/users - Status: 401 - Response time: 374ms - IP: 192.168.187.199 - User: user_1037 - RequestID: xxid5i3rwkk +2025-06-18T14:50:14.181Z [DEBUG] order-service - Database DELETE on products - Execution time: 320ms - Rows affected: 66 - RequestID: nxky5ar4das +2025-06-18T14:50:14.281Z [TRACE] payment-service - GET /api/v1/payments - Status: 400 - Response time: 1472ms - IP: 192.168.144.38 - User: user_1065 - RequestID: 0glzu4gonsgd +2025-06-18T14:50:14.381Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 466ms - RequestID: wzm6ppa292k +2025-06-18T14:50:14.481Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 464ms - Rows affected: 88 - RequestID: i6mwh34922d +2025-06-18T14:50:14.581Z [TRACE] order-service - Operation: inventory_updated - Processing time: 572ms - RequestID: subsom8wtvh +2025-06-18T14:50:14.681Z [INFO] payment-service - POST /api/v1/payments - Status: 200 - Response time: 1512ms - IP: 192.168.227.233 - User: user_1060 - RequestID: 9t2l64t5zq +2025-06-18T14:50:14.781Z [TRACE] order-service - Operation: inventory_updated - Processing time: 54ms - RequestID: 6nfnmkgc8dg +2025-06-18T14:50:14.881Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 918ms - IP: 192.168.133.7 - User: user_1087 - RequestID: iz6xszdq1q +2025-06-18T14:50:14.981Z [INFO] payment-service - Database INSERT on sessions - Execution time: 259ms - Rows affected: 44 - RequestID: ww8skh18lu +2025-06-18T14:50:15.081Z [INFO] notification-service - Auth event: password_change - User: user_1054 - IP: 192.168.133.7 - RequestID: iz3nd6vxza9 +2025-06-18T14:50:15.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1060 - IP: 192.168.79.141 - RequestID: ncffy04fwe +2025-06-18T14:50:15.281Z [TRACE] auth-service - Operation: notification_queued - Processing time: 451ms - RequestID: 0qkhflayodmh +2025-06-18T14:50:15.381Z [TRACE] user-service - Database UPDATE on users - Execution time: 84ms - Rows affected: 38 - RequestID: 5c68wi2xgb5 +2025-06-18T14:50:15.481Z [INFO] payment-service - Database UPDATE on orders - Execution time: 407ms - Rows affected: 59 - RequestID: qfql4u75pf8 +2025-06-18T14:50:15.581Z [INFO] order-service - Operation: payment_processed - Processing time: 203ms - RequestID: ftsv1f2aqjo +2025-06-18T14:50:15.681Z [INFO] notification-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.44.5 - RequestID: 3tmewa2uwct +2025-06-18T14:50:15.781Z [INFO] user-service - Auth event: login_failed - User: user_1039 - IP: 192.168.211.72 - RequestID: zo6dhboju8l +2025-06-18T14:50:15.881Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 547ms - RequestID: 4dvopge13rg +2025-06-18T14:50:15.981Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 499ms - Rows affected: 93 - RequestID: t6tidgo9sia +2025-06-18T14:50:16.081Z [INFO] notification-service - Auth event: logout - User: user_1019 - IP: 192.168.181.225 - RequestID: gdzp50zpku9 +2025-06-18T14:50:16.181Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 193ms - RequestID: 1mgwo3gobx +2025-06-18T14:50:16.281Z [INFO] auth-service - Auth event: logout - User: user_1065 - IP: 192.168.144.38 - RequestID: t1wlf8szxr +2025-06-18T14:50:16.381Z [TRACE] user-service - POST /api/v1/users - Status: 200 - Response time: 91ms - IP: 192.168.44.5 - User: user_1018 - RequestID: sv6t133h4t +2025-06-18T14:50:16.481Z [TRACE] auth-service - GET /api/v1/inventory - Status: 403 - Response time: 274ms - IP: 192.168.44.5 - User: user_1097 - RequestID: ct7c2ez25k6 +2025-06-18T14:50:16.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.189.103 - RequestID: j5e8kf17pw +2025-06-18T14:50:16.681Z [TRACE] user-service - GET /api/v1/orders - Status: 201 - Response time: 756ms - IP: 192.168.64.33 - User: user_1087 - RequestID: sc23gsyhlos +2025-06-18T14:50:16.781Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 746ms - RequestID: kpqlgrkheo9 +2025-06-18T14:50:16.881Z [INFO] auth-service - Database DELETE on products - Execution time: 30ms - Rows affected: 72 - RequestID: k39r4vy4rin +2025-06-18T14:50:16.981Z [INFO] user-service - Auth event: logout - User: user_1069 - IP: 192.168.1.152 - RequestID: 30d47zcke5c +2025-06-18T14:50:17.081Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 882ms - RequestID: urj7h22sunr +2025-06-18T14:50:17.181Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 502 - Response time: 31ms - IP: 192.168.181.225 - User: user_1091 - RequestID: vpuyn6kokxd +2025-06-18T14:50:17.281Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 981ms - RequestID: b8gb39y9p08 +2025-06-18T14:50:17.381Z [INFO] payment-service - Operation: email_sent - Processing time: 759ms - RequestID: 8fmbaq7322c +2025-06-18T14:50:17.481Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 457ms - Rows affected: 81 - RequestID: lq2oj94w24 +2025-06-18T14:50:17.581Z [TRACE] user-service - PATCH /api/v1/orders - Status: 503 - Response time: 1646ms - IP: 192.168.159.94 - User: user_1059 - RequestID: g87ghzgkuge +2025-06-18T14:50:17.681Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 134ms - Rows affected: 15 - RequestID: 5r3evgxguxa +2025-06-18T14:50:17.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.240.169 - RequestID: q2ww62fd6q +2025-06-18T14:50:17.881Z [INFO] order-service - Operation: order_created - Processing time: 577ms - RequestID: jo8vbvvuakq +2025-06-18T14:50:17.981Z [TRACE] notification-service - Operation: payment_processed - Processing time: 982ms - RequestID: x4x5nthv0pa +2025-06-18T14:50:18.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.227.77 - RequestID: pt3leu63qt +2025-06-18T14:50:18.181Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 246ms - Rows affected: 32 - RequestID: rk9bzz8x3ld +2025-06-18T14:50:18.281Z [TRACE] user-service - Auth event: password_change - User: user_1014 - IP: 192.168.247.134 - RequestID: bfwdljo90le +2025-06-18T14:50:18.381Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 201 - Response time: 180ms - IP: 192.168.159.94 - User: user_1067 - RequestID: 79a74jdz1k +2025-06-18T14:50:18.481Z [INFO] payment-service - Operation: email_sent - Processing time: 872ms - RequestID: 7k73opkgho +2025-06-18T14:50:18.581Z [INFO] auth-service - POST /api/v1/orders - Status: 503 - Response time: 136ms - IP: 192.168.79.141 - User: user_1037 - RequestID: 361h481h4n2 +2025-06-18T14:50:18.681Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 369ms - RequestID: 3jsa5zuj0j7 +2025-06-18T14:50:18.781Z [INFO] notification-service - Database UPDATE on payments - Execution time: 85ms - Rows affected: 69 - RequestID: 05grjo6gwp9a +2025-06-18T14:50:18.881Z [TRACE] auth-service - PATCH /api/v1/users - Status: 400 - Response time: 1390ms - IP: 192.168.36.218 - User: user_1063 - RequestID: gn6cc4hy1jk +2025-06-18T14:50:18.981Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1658ms - IP: 192.168.240.169 - User: user_1010 - RequestID: g7kj79v9oeu +2025-06-18T14:50:19.081Z [INFO] inventory-service - Database UPDATE on users - Execution time: 420ms - Rows affected: 99 - RequestID: 2jz7yhwi33b +2025-06-18T14:50:19.181Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 268ms - Rows affected: 70 - RequestID: jfzmgidypv +2025-06-18T14:50:19.281Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 825ms - IP: 192.168.133.7 - User: user_1014 - RequestID: 1zthk5blnte +2025-06-18T14:50:19.381Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 468ms - IP: 192.168.14.77 - User: user_1046 - RequestID: b72y3kzcwt +2025-06-18T14:50:19.481Z [INFO] order-service - DELETE /api/v1/inventory - Status: 400 - Response time: 553ms - IP: 192.168.36.218 - User: user_1036 - RequestID: fqcil63sh86 +2025-06-18T14:50:19.581Z [INFO] payment-service - Operation: email_sent - Processing time: 491ms - RequestID: c4t0i1dv6x4 +2025-06-18T14:50:19.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.174.114 - RequestID: l2m603rgxlr +2025-06-18T14:50:19.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 760ms - RequestID: 92br7ra9pb +2025-06-18T14:50:19.881Z [INFO] auth-service - Auth event: login_success - User: user_1038 - IP: 192.168.242.165 - RequestID: iqngc3qpd49 +2025-06-18T14:50:19.981Z [TRACE] payment-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.229.123 - RequestID: em4hmm9lzfe +2025-06-18T14:50:20.081Z [INFO] auth-service - Operation: email_sent - Processing time: 326ms - RequestID: 50c5nppy6gn +2025-06-18T14:50:20.181Z [DEBUG] order-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.240.169 - RequestID: 1u9vi26y12o +2025-06-18T14:50:20.281Z [INFO] auth-service - Operation: payment_processed - Processing time: 804ms - RequestID: 2fkbfzpchb6 +2025-06-18T14:50:20.381Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1158ms - IP: 192.168.81.206 - User: user_1053 - RequestID: ihiv3rlue5e +2025-06-18T14:50:20.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 1009ms - RequestID: 9xyxart71m8 +2025-06-18T14:50:20.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 152ms - RequestID: 3b0h8ds177i +2025-06-18T14:50:20.681Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 23ms - Rows affected: 35 - RequestID: jng3d7893 +2025-06-18T14:50:20.781Z [TRACE] auth-service - Database SELECT on users - Execution time: 54ms - Rows affected: 42 - RequestID: q901sch6n9k +2025-06-18T14:50:20.881Z [TRACE] notification-service - Database INSERT on users - Execution time: 66ms - Rows affected: 13 - RequestID: ndg3wye7ikb +2025-06-18T14:50:20.981Z [TRACE] order-service - Auth event: logout - User: user_1060 - IP: 192.168.189.103 - RequestID: qxojk7te8en +2025-06-18T14:50:21.081Z [INFO] auth-service - Database UPDATE on payments - Execution time: 292ms - Rows affected: 16 - RequestID: 209boolz3v9h +2025-06-18T14:50:21.181Z [TRACE] user-service - Operation: cache_hit - Processing time: 269ms - RequestID: hi5xnrp8uc +2025-06-18T14:50:21.281Z [INFO] user-service - Database DELETE on sessions - Execution time: 461ms - Rows affected: 41 - RequestID: 0tya8hp0s7z +2025-06-18T14:50:21.381Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.170.215 - RequestID: w8d4uzlba0j +2025-06-18T14:50:21.481Z [TRACE] user-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.85.229 - RequestID: vfjkvaer93 +2025-06-18T14:50:21.581Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 668ms - RequestID: ns9ca9cmq0d +2025-06-18T14:50:21.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1029 - IP: 192.168.181.225 - RequestID: q9gnkta2jd +2025-06-18T14:50:21.781Z [INFO] order-service - Database INSERT on users - Execution time: 157ms - Rows affected: 11 - RequestID: 86vyu8hnrsy +2025-06-18T14:50:21.881Z [INFO] order-service - POST /api/v1/inventory - Status: 500 - Response time: 1612ms - IP: 192.168.1.152 - User: user_1007 - RequestID: 392xh0ts7ur +2025-06-18T14:50:21.981Z [INFO] inventory-service - Operation: order_created - Processing time: 184ms - RequestID: fn9zpotw9mv +2025-06-18T14:50:22.081Z [DEBUG] payment-service - Operation: email_sent - Processing time: 491ms - RequestID: gn78q6c54mg +2025-06-18T14:50:22.181Z [TRACE] order-service - Auth event: login_failed - User: user_1039 - IP: 192.168.36.218 - RequestID: 2n8hno82aoe +2025-06-18T14:50:22.281Z [TRACE] order-service - Operation: payment_processed - Processing time: 824ms - RequestID: nls44lj08dq +2025-06-18T14:50:22.381Z [INFO] payment-service - Database DELETE on orders - Execution time: 311ms - Rows affected: 99 - RequestID: y04xpn0o4tr +2025-06-18T14:50:22.481Z [DEBUG] user-service - Auth event: login_success - User: user_1006 - IP: 192.168.113.218 - RequestID: uber7347rub +2025-06-18T14:50:22.581Z [TRACE] auth-service - Database SELECT on orders - Execution time: 40ms - Rows affected: 88 - RequestID: 9vipgntba8m +2025-06-18T14:50:22.681Z [TRACE] user-service - Operation: payment_processed - Processing time: 930ms - RequestID: 2wjgl8gh06j +2025-06-18T14:50:22.781Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 353ms - Rows affected: 41 - RequestID: uyqam7aoog +2025-06-18T14:50:22.881Z [DEBUG] order-service - Database SELECT on orders - Execution time: 447ms - Rows affected: 58 - RequestID: 0oi302vo3xhq +2025-06-18T14:50:22.981Z [DEBUG] user-service - PATCH /api/v1/users - Status: 404 - Response time: 420ms - IP: 192.168.247.134 - User: user_1046 - RequestID: fe34mv0mu6g +2025-06-18T14:50:23.081Z [INFO] notification-service - Operation: inventory_updated - Processing time: 450ms - RequestID: wl5q8obn61g +2025-06-18T14:50:23.181Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 131ms - Rows affected: 98 - RequestID: 3haygiu36wx +2025-06-18T14:50:23.281Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 277ms - Rows affected: 36 - RequestID: 96rwjlxak8 +2025-06-18T14:50:23.381Z [INFO] notification-service - Database SELECT on products - Execution time: 377ms - Rows affected: 61 - RequestID: 7owlbxmqa24 +2025-06-18T14:50:23.481Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 345ms - RequestID: b67u38d0ig6 +2025-06-18T14:50:23.581Z [DEBUG] user-service - Auth event: password_change - User: user_1031 - IP: 192.168.100.240 - RequestID: ucn6ar9js +2025-06-18T14:50:23.681Z [DEBUG] payment-service - Database SELECT on products - Execution time: 411ms - Rows affected: 62 - RequestID: 63adavfxnvf +2025-06-18T14:50:23.781Z [INFO] user-service - Database SELECT on payments - Execution time: 156ms - Rows affected: 68 - RequestID: 8ghp55vswpx +2025-06-18T14:50:23.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1001 - IP: 192.168.167.32 - RequestID: y7y4ijl2g2 +2025-06-18T14:50:23.981Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 321ms - Rows affected: 85 - RequestID: 01tqhqjaojw1 +2025-06-18T14:50:24.081Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 502 - Response time: 164ms - IP: 192.168.104.37 - User: user_1019 - RequestID: ubiqqn32n +2025-06-18T14:50:24.181Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 250ms - Rows affected: 75 - RequestID: a5tb4d586la +2025-06-18T14:50:24.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 98ms - RequestID: 24llkaxgsup +2025-06-18T14:50:24.381Z [TRACE] auth-service - Database SELECT on products - Execution time: 29ms - Rows affected: 89 - RequestID: 7x5el5h03s4 +2025-06-18T14:50:24.481Z [TRACE] inventory-service - Auth event: login_success - User: user_1051 - IP: 192.168.46.63 - RequestID: n4gr16bhnyl +2025-06-18T14:50:24.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 229ms - RequestID: xoi6zsc6hsp +2025-06-18T14:50:24.681Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 401 - Response time: 457ms - IP: 192.168.32.38 - User: user_1011 - RequestID: hoeksqnfecv +2025-06-18T14:50:24.781Z [INFO] user-service - Operation: inventory_updated - Processing time: 681ms - RequestID: rct7vjv5ruh +2025-06-18T14:50:24.881Z [TRACE] order-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.147.171 - RequestID: 7ywyg7advfh +2025-06-18T14:50:24.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.31.117 - RequestID: fsrmkzc92el +2025-06-18T14:50:25.081Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 962ms - RequestID: j634w9211v +2025-06-18T14:50:25.181Z [DEBUG] order-service - Operation: payment_processed - Processing time: 457ms - RequestID: dq87vpoggl4 +2025-06-18T14:50:25.281Z [TRACE] user-service - Database SELECT on users - Execution time: 37ms - Rows affected: 89 - RequestID: cfumyu4qshj +2025-06-18T14:50:25.381Z [TRACE] order-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.194.41 - RequestID: eh556eojt0s +2025-06-18T14:50:25.481Z [DEBUG] user-service - PUT /api/v1/users - Status: 503 - Response time: 1752ms - IP: 192.168.194.41 - User: user_1090 - RequestID: w281e5pohlr +2025-06-18T14:50:25.581Z [DEBUG] inventory-service - Auth event: password_change - User: user_1047 - IP: 192.168.36.218 - RequestID: cvdslm3t8b4 +2025-06-18T14:50:25.681Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 777ms - RequestID: xgjpg4ehq1h +2025-06-18T14:50:25.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 880ms - RequestID: dteqp3dbflf +2025-06-18T14:50:25.881Z [DEBUG] user-service - Auth event: login_failed - User: user_1041 - IP: 192.168.28.146 - RequestID: numzhaprxh +2025-06-18T14:50:25.981Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 185ms - RequestID: eazcd115bf +2025-06-18T14:50:26.081Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 95ms - Rows affected: 88 - RequestID: zasrj7brsrg +2025-06-18T14:50:26.181Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1589ms - IP: 192.168.158.144 - User: user_1013 - RequestID: kywa7m0nl9 +2025-06-18T14:50:26.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 721ms - RequestID: 1w7fixu87vb +2025-06-18T14:50:26.381Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 520ms - RequestID: c5nxdocin4q +2025-06-18T14:50:26.481Z [TRACE] notification-service - Auth event: logout - User: user_1014 - IP: 192.168.79.143 - RequestID: qo076t1m7x +2025-06-18T14:50:26.581Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 65ms - Rows affected: 24 - RequestID: qpc1foqvfra +2025-06-18T14:50:26.681Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 519ms - IP: 192.168.32.38 - User: user_1027 - RequestID: gjwq56ixvyc +2025-06-18T14:50:26.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1056 - IP: 192.168.79.116 - RequestID: wnk4mxxe5a +2025-06-18T14:50:26.881Z [INFO] payment-service - Database SELECT on orders - Execution time: 139ms - Rows affected: 46 - RequestID: hkiu8n2y9km +2025-06-18T14:50:26.981Z [INFO] user-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.138.123 - RequestID: 7wj6xt137pi +2025-06-18T14:50:27.081Z [TRACE] order-service - Database SELECT on products - Execution time: 258ms - Rows affected: 50 - RequestID: uy10dyqquy +2025-06-18T14:50:27.181Z [INFO] payment-service - GET /api/v1/auth/login - Status: 401 - Response time: 747ms - IP: 192.168.227.233 - User: user_1039 - RequestID: snkum5yxx09 +2025-06-18T14:50:27.281Z [DEBUG] payment-service - Auth event: password_change - User: user_1089 - IP: 192.168.104.37 - RequestID: 81utv6n8aho +2025-06-18T14:50:27.381Z [DEBUG] user-service - Database DELETE on payments - Execution time: 274ms - Rows affected: 38 - RequestID: 5wizg6w9gaw +2025-06-18T14:50:27.481Z [INFO] notification-service - Auth event: login_success - User: user_1015 - IP: 192.168.144.38 - RequestID: 0qf90medcyk +2025-06-18T14:50:27.581Z [TRACE] order-service - Auth event: logout - User: user_1093 - IP: 192.168.11.60 - RequestID: p6qgshfqgz +2025-06-18T14:50:27.681Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 35ms - Rows affected: 58 - RequestID: l0wb7x1zj3 +2025-06-18T14:50:27.781Z [INFO] user-service - PATCH /api/v1/users - Status: 200 - Response time: 279ms - IP: 192.168.1.152 - User: user_1068 - RequestID: 8bcq6u1trvr +2025-06-18T14:50:27.881Z [INFO] payment-service - Database DELETE on products - Execution time: 344ms - Rows affected: 67 - RequestID: 6iglkuj2qck +2025-06-18T14:50:27.981Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 446ms - Rows affected: 45 - RequestID: 4m3uratdgj +2025-06-18T14:50:28.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.158.144 - RequestID: lg5eekov85q +2025-06-18T14:50:28.181Z [INFO] order-service - Auth event: logout - User: user_1051 - IP: 192.168.10.184 - RequestID: cjj4z5kry38 +2025-06-18T14:50:28.281Z [DEBUG] auth-service - Auth event: password_change - User: user_1012 - IP: 192.168.235.117 - RequestID: sg65z6bx6b +2025-06-18T14:50:28.381Z [INFO] notification-service - Auth event: login_failed - User: user_1079 - IP: 192.168.1.152 - RequestID: qqkl1s53bgj +2025-06-18T14:50:28.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1079 - IP: 192.168.85.229 - RequestID: kuk29oq84qp +2025-06-18T14:50:28.581Z [TRACE] user-service - Database DELETE on payments - Execution time: 350ms - Rows affected: 66 - RequestID: hrhbng47thv +2025-06-18T14:50:28.681Z [TRACE] user-service - Auth event: password_change - User: user_1064 - IP: 192.168.189.103 - RequestID: d85cxajfi1d +2025-06-18T14:50:28.781Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 2001ms - IP: 192.168.232.72 - User: user_1073 - RequestID: eus3054qd7q +2025-06-18T14:50:28.881Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 13ms - Rows affected: 68 - RequestID: b43zo7lirpo +2025-06-18T14:50:28.981Z [DEBUG] order-service - Database DELETE on orders - Execution time: 283ms - Rows affected: 42 - RequestID: ei44wpziefi +2025-06-18T14:50:29.081Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 287ms - Rows affected: 92 - RequestID: znevelk3rb +2025-06-18T14:50:29.181Z [TRACE] notification-service - Database SELECT on payments - Execution time: 83ms - Rows affected: 6 - RequestID: 5fy2mcga9y2 +2025-06-18T14:50:29.281Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 182ms - RequestID: 88eosbnlla3 +2025-06-18T14:50:29.381Z [DEBUG] user-service - Operation: payment_processed - Processing time: 297ms - RequestID: oze038hg94f +2025-06-18T14:50:29.481Z [INFO] auth-service - PUT /api/v1/inventory - Status: 401 - Response time: 1712ms - IP: 192.168.33.76 - User: user_1097 - RequestID: 9fi2j6b8qmh +2025-06-18T14:50:29.581Z [DEBUG] user-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.211.72 - RequestID: 5ge132r0a8 +2025-06-18T14:50:29.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.141.100 - RequestID: bqzm9ydilwd +2025-06-18T14:50:29.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.30.79 - RequestID: b1ytx7lfz +2025-06-18T14:50:29.881Z [INFO] auth-service - Operation: payment_processed - Processing time: 1005ms - RequestID: 108rsja66p +2025-06-18T14:50:29.981Z [DEBUG] user-service - GET /api/v1/inventory - Status: 201 - Response time: 643ms - IP: 192.168.36.218 - User: user_1084 - RequestID: 3aqzhr9mfa8 +2025-06-18T14:50:30.081Z [TRACE] order-service - Database UPDATE on products - Execution time: 98ms - Rows affected: 75 - RequestID: gpbots4l7or +2025-06-18T14:50:30.181Z [TRACE] payment-service - Auth event: logout - User: user_1001 - IP: 192.168.196.226 - RequestID: pw7xvtvxpnn +2025-06-18T14:50:30.281Z [DEBUG] user-service - Operation: notification_queued - Processing time: 1024ms - RequestID: ed1klr9t2yt +2025-06-18T14:50:30.381Z [TRACE] auth-service - Operation: notification_queued - Processing time: 694ms - RequestID: brkjnnihxe +2025-06-18T14:50:30.481Z [TRACE] payment-service - Database SELECT on products - Execution time: 180ms - Rows affected: 4 - RequestID: rmnkt4c3vvi +2025-06-18T14:50:30.581Z [INFO] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 1565ms - IP: 192.168.81.206 - User: user_1059 - RequestID: rdp2slo91fj +2025-06-18T14:50:30.681Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 284ms - Rows affected: 17 - RequestID: jrffzwjteu +2025-06-18T14:50:30.781Z [DEBUG] order-service - Database INSERT on payments - Execution time: 469ms - Rows affected: 72 - RequestID: lhuy40cpshl +2025-06-18T14:50:30.881Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 200 - Response time: 764ms - IP: 192.168.28.146 - User: user_1038 - RequestID: n9n4s7lz08o +2025-06-18T14:50:30.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 703ms - RequestID: 2nafnsnnmon +2025-06-18T14:50:31.081Z [TRACE] notification-service - Auth event: login_success - User: user_1046 - IP: 192.168.147.171 - RequestID: gwy3l8gjv7 +2025-06-18T14:50:31.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1012 - IP: 192.168.100.240 - RequestID: wet7zkmrdxe +2025-06-18T14:50:31.281Z [DEBUG] order-service - Auth event: logout - User: user_1007 - IP: 192.168.13.72 - RequestID: rheilgh2j9r +2025-06-18T14:50:31.381Z [TRACE] auth-service - Auth event: login_failed - User: user_1026 - IP: 192.168.68.158 - RequestID: zz1evi8kek +2025-06-18T14:50:31.481Z [INFO] auth-service - Auth event: login_failed - User: user_1080 - IP: 192.168.232.72 - RequestID: tcty6wpsbn +2025-06-18T14:50:31.581Z [DEBUG] auth-service - Operation: email_sent - Processing time: 438ms - RequestID: k09usva8kog +2025-06-18T14:50:31.681Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 229ms - Rows affected: 34 - RequestID: aaxteaepnif +2025-06-18T14:50:31.781Z [INFO] order-service - Database UPDATE on products - Execution time: 342ms - Rows affected: 73 - RequestID: z4uq5ykzws +2025-06-18T14:50:31.881Z [DEBUG] order-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.104.37 - RequestID: duinu4imqh +2025-06-18T14:50:31.981Z [TRACE] inventory-service - Auth event: login_success - User: user_1087 - IP: 192.168.247.134 - RequestID: onzfiu8ysn +2025-06-18T14:50:32.081Z [TRACE] order-service - Auth event: login_failed - User: user_1067 - IP: 192.168.240.169 - RequestID: hvwtubpt3tq +2025-06-18T14:50:32.181Z [DEBUG] user-service - Database SELECT on payments - Execution time: 19ms - Rows affected: 44 - RequestID: 8751fau5q64 +2025-06-18T14:50:32.281Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 189ms - RequestID: 24mkj11owki +2025-06-18T14:50:32.381Z [TRACE] user-service - Operation: webhook_sent - Processing time: 501ms - RequestID: xnxujwz1w7k +2025-06-18T14:50:32.481Z [TRACE] order-service - Operation: cache_miss - Processing time: 963ms - RequestID: nx1jkqffpnc +2025-06-18T14:50:32.581Z [INFO] user-service - Operation: cache_miss - Processing time: 478ms - RequestID: 5v6j9vfeg17 +2025-06-18T14:50:32.681Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1702ms - IP: 192.168.113.218 - User: user_1033 - RequestID: 4owcnqrbfrq +2025-06-18T14:50:32.781Z [TRACE] order-service - PUT /api/v1/orders - Status: 201 - Response time: 97ms - IP: 192.168.138.123 - User: user_1084 - RequestID: 286wo5rw3cq +2025-06-18T14:50:32.881Z [INFO] auth-service - Database INSERT on payments - Execution time: 308ms - Rows affected: 52 - RequestID: i3h42fqj8as +2025-06-18T14:50:32.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.68.128 - RequestID: 6awuomvol3y +2025-06-18T14:50:33.081Z [DEBUG] payment-service - Auth event: logout - User: user_1065 - IP: 192.168.104.37 - RequestID: 536u4u78s5h +2025-06-18T14:50:33.181Z [INFO] payment-service - POST /api/v1/payments - Status: 401 - Response time: 1940ms - IP: 192.168.30.79 - User: user_1039 - RequestID: x1kwdbbu02 +2025-06-18T14:50:33.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.81.206 - RequestID: 2le6up5p9fv +2025-06-18T14:50:33.381Z [TRACE] notification-service - Database UPDATE on users - Execution time: 364ms - Rows affected: 84 - RequestID: 7acgaw0pn9x +2025-06-18T14:50:33.481Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 390ms - Rows affected: 51 - RequestID: ocsxz567i3 +2025-06-18T14:50:33.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 775ms - RequestID: n6xv5v5lbq +2025-06-18T14:50:33.681Z [TRACE] user-service - Database SELECT on products - Execution time: 41ms - Rows affected: 11 - RequestID: lh17rp2yczf +2025-06-18T14:50:33.781Z [INFO] order-service - Database SELECT on orders - Execution time: 450ms - Rows affected: 21 - RequestID: 8zhrylbs39 +2025-06-18T14:50:33.881Z [TRACE] user-service - Operation: email_sent - Processing time: 240ms - RequestID: 73i771ubp1 +2025-06-18T14:50:33.981Z [DEBUG] user-service - Database DELETE on products - Execution time: 319ms - Rows affected: 19 - RequestID: yv9l32qasee +2025-06-18T14:50:34.081Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1135ms - IP: 192.168.242.165 - User: user_1063 - RequestID: ccjf482egk +2025-06-18T14:50:34.181Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 991ms - IP: 192.168.227.233 - User: user_1015 - RequestID: rrnd82xkqr +2025-06-18T14:50:34.281Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 353ms - IP: 192.168.181.225 - User: user_1013 - RequestID: 8bo473mf835 +2025-06-18T14:50:34.381Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.242.165 - RequestID: 52aaohi3cf +2025-06-18T14:50:34.481Z [INFO] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 146ms - IP: 192.168.104.37 - User: user_1035 - RequestID: 3nuzr6h8zxs +2025-06-18T14:50:34.581Z [TRACE] notification-service - Database DELETE on users - Execution time: 28ms - Rows affected: 77 - RequestID: avqowkg878d +2025-06-18T14:50:34.681Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 510ms - RequestID: xv3fkohj6v +2025-06-18T14:50:34.781Z [TRACE] payment-service - Database SELECT on users - Execution time: 376ms - Rows affected: 19 - RequestID: xuclky51rk +2025-06-18T14:50:34.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.13.72 - RequestID: u016s3x48hk +2025-06-18T14:50:34.981Z [TRACE] user-service - Database SELECT on orders - Execution time: 215ms - Rows affected: 63 - RequestID: nel3m82vku9 +2025-06-18T14:50:35.081Z [DEBUG] order-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.36.218 - RequestID: v42qsxm089o +2025-06-18T14:50:35.181Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1039 - IP: 192.168.158.144 - RequestID: dl2rhjf0lx +2025-06-18T14:50:35.281Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1069ms - IP: 192.168.196.226 - User: user_1096 - RequestID: srw37il8hm +2025-06-18T14:50:35.381Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 214ms - Rows affected: 70 - RequestID: dkut87pl0r +2025-06-18T14:50:35.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1045 - IP: 192.168.211.72 - RequestID: nfnmvoznpoi +2025-06-18T14:50:35.581Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 702ms - IP: 192.168.104.37 - User: user_1090 - RequestID: y57v0v2f85 +2025-06-18T14:50:35.681Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 873ms - RequestID: qn8b72tl63g +2025-06-18T14:50:35.781Z [DEBUG] auth-service - Database DELETE on products - Execution time: 211ms - Rows affected: 59 - RequestID: o3oy0hbkomh +2025-06-18T14:50:35.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 690ms - RequestID: k3z48oeecpj +2025-06-18T14:50:35.981Z [TRACE] user-service - Auth event: logout - User: user_1081 - IP: 192.168.30.79 - RequestID: 1k74uqgqfp9 +2025-06-18T14:50:36.081Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 403 - Response time: 364ms - IP: 192.168.28.146 - User: user_1002 - RequestID: u6jzc54p85b +2025-06-18T14:50:36.181Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 83ms - RequestID: txn2k1tu4oa +2025-06-18T14:50:36.281Z [INFO] order-service - Operation: webhook_sent - Processing time: 916ms - RequestID: hf94mij0q4 +2025-06-18T14:50:36.381Z [INFO] user-service - Operation: webhook_sent - Processing time: 318ms - RequestID: 7onfvmz6kr7 +2025-06-18T14:50:36.481Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1909ms - IP: 192.168.14.77 - User: user_1070 - RequestID: 2x0j9xltw3d +2025-06-18T14:50:36.581Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 200 - Response time: 302ms - IP: 192.168.31.117 - User: user_1026 - RequestID: cpy9g4d6dkv +2025-06-18T14:50:36.681Z [TRACE] auth-service - GET /api/v1/users - Status: 500 - Response time: 362ms - IP: 192.168.187.199 - User: user_1034 - RequestID: dci3wqh4le +2025-06-18T14:50:36.781Z [INFO] user-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.30.79 - RequestID: lkvyzdxj36 +2025-06-18T14:50:36.881Z [TRACE] auth-service - DELETE /api/v1/users - Status: 400 - Response time: 557ms - IP: 192.168.36.218 - User: user_1045 - RequestID: 0oj1urv5gb7 +2025-06-18T14:50:36.981Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 183ms - Rows affected: 71 - RequestID: rm6zd2q5y7 +2025-06-18T14:50:37.081Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 633ms - RequestID: bnw9w7c398h +2025-06-18T14:50:37.181Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 174ms - Rows affected: 89 - RequestID: id3jg0knfvm +2025-06-18T14:50:37.281Z [TRACE] auth-service - Database DELETE on users - Execution time: 293ms - Rows affected: 26 - RequestID: xxe8k31wvc +2025-06-18T14:50:37.381Z [INFO] order-service - GET /api/v1/inventory - Status: 404 - Response time: 1376ms - IP: 192.168.79.143 - User: user_1050 - RequestID: vfpn4tubpzj +2025-06-18T14:50:37.481Z [TRACE] inventory-service - Auth event: login_success - User: user_1084 - IP: 192.168.187.199 - RequestID: 793uwauuhx6 +2025-06-18T14:50:37.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.174.114 - RequestID: lkyyg8kk66 +2025-06-18T14:50:37.681Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 22ms - Rows affected: 25 - RequestID: 37mh81icl59 +2025-06-18T14:50:37.781Z [INFO] notification-service - Operation: payment_processed - Processing time: 161ms - RequestID: s1h379qmqpe +2025-06-18T14:50:37.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1068 - IP: 192.168.64.33 - RequestID: 6gmtf96xdbl +2025-06-18T14:50:37.981Z [TRACE] auth-service - Database SELECT on orders - Execution time: 61ms - Rows affected: 85 - RequestID: xcry0ujciq +2025-06-18T14:50:38.081Z [TRACE] order-service - DELETE /api/v1/payments - Status: 503 - Response time: 114ms - IP: 192.168.1.152 - User: user_1030 - RequestID: ll52kbtbqpr +2025-06-18T14:50:38.181Z [DEBUG] order-service - POST /api/v1/payments - Status: 400 - Response time: 18ms - IP: 192.168.79.141 - User: user_1039 - RequestID: nlc3n05xhsl +2025-06-18T14:50:38.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 241ms - RequestID: 6qx1umg8d5s +2025-06-18T14:50:38.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1075 - IP: 192.168.211.72 - RequestID: jqs07aoubzi +2025-06-18T14:50:38.481Z [INFO] auth-service - Operation: notification_queued - Processing time: 506ms - RequestID: 8gt15y56o3u +2025-06-18T14:50:38.581Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1090 - IP: 192.168.147.171 - RequestID: r9tp2osy0te +2025-06-18T14:50:38.681Z [INFO] inventory-service - Operation: order_created - Processing time: 461ms - RequestID: ocx8oqrxlm +2025-06-18T14:50:38.781Z [TRACE] order-service - Operation: payment_processed - Processing time: 276ms - RequestID: gntgl68fxc7 +2025-06-18T14:50:38.881Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 253ms - Rows affected: 56 - RequestID: c3wwd37fj1q +2025-06-18T14:50:38.981Z [DEBUG] inventory-service - GET /api/v1/users - Status: 404 - Response time: 948ms - IP: 192.168.138.123 - User: user_1010 - RequestID: bva51vp6qgu +2025-06-18T14:50:39.081Z [DEBUG] order-service - Auth event: login_success - User: user_1021 - IP: 192.168.46.63 - RequestID: s0y0mozols +2025-06-18T14:50:39.181Z [INFO] order-service - GET /api/v1/inventory - Status: 500 - Response time: 290ms - IP: 192.168.158.144 - User: user_1026 - RequestID: 6hqaruyd3vy +2025-06-18T14:50:39.281Z [DEBUG] order-service - Auth event: login_success - User: user_1033 - IP: 192.168.1.152 - RequestID: v5vvh6ely3i +2025-06-18T14:50:39.381Z [INFO] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1889ms - IP: 192.168.81.206 - User: user_1074 - RequestID: 5ex6zimt4lv +2025-06-18T14:50:39.481Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 428ms - Rows affected: 45 - RequestID: j4a3cs95o9n +2025-06-18T14:50:39.581Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 503 - Response time: 170ms - IP: 192.168.97.87 - User: user_1068 - RequestID: 08xir4cbeig5 +2025-06-18T14:50:39.681Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1847ms - IP: 192.168.229.123 - User: user_1011 - RequestID: edwh5zjumll +2025-06-18T14:50:39.781Z [INFO] user-service - Auth event: login_failed - User: user_1067 - IP: 192.168.144.38 - RequestID: tqgt93pp4f +2025-06-18T14:50:39.881Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1580ms - IP: 192.168.44.5 - User: user_1010 - RequestID: 2un5l5sj8se +2025-06-18T14:50:39.981Z [INFO] user-service - POST /api/v1/auth/logout - Status: 200 - Response time: 148ms - IP: 192.168.44.5 - User: user_1042 - RequestID: 8vevqmvg8v6 +2025-06-18T14:50:40.081Z [INFO] payment-service - Auth event: logout - User: user_1089 - IP: 192.168.167.32 - RequestID: iehzs97j59n +2025-06-18T14:50:40.181Z [TRACE] user-service - Auth event: login_failed - User: user_1059 - IP: 192.168.13.72 - RequestID: 7x004prpx0v +2025-06-18T14:50:40.281Z [TRACE] auth-service - Database INSERT on orders - Execution time: 40ms - Rows affected: 38 - RequestID: 6lthqeegmk +2025-06-18T14:50:40.381Z [DEBUG] user-service - Database DELETE on payments - Execution time: 468ms - Rows affected: 23 - RequestID: r3gfbve107 +2025-06-18T14:50:40.481Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1704ms - IP: 192.168.174.114 - User: user_1052 - RequestID: 3cz0qtfmfpz +2025-06-18T14:50:40.581Z [INFO] auth-service - Database SELECT on users - Execution time: 452ms - Rows affected: 88 - RequestID: it13m2p44tm +2025-06-18T14:50:40.681Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 775ms - RequestID: tjcrokfwg0s +2025-06-18T14:50:40.781Z [TRACE] user-service - Database DELETE on products - Execution time: 66ms - Rows affected: 83 - RequestID: qgf4svz00v +2025-06-18T14:50:40.881Z [INFO] auth-service - GET /api/v1/inventory - Status: 200 - Response time: 1887ms - IP: 192.168.242.165 - User: user_1051 - RequestID: lc5wd42p27 +2025-06-18T14:50:40.981Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 297ms - Rows affected: 46 - RequestID: ebasgyy2en +2025-06-18T14:50:41.081Z [TRACE] auth-service - Database INSERT on payments - Execution time: 243ms - Rows affected: 56 - RequestID: bxcvxba5juw +2025-06-18T14:50:41.181Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 79ms - RequestID: mh2onsrylk +2025-06-18T14:50:41.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.100.240 - RequestID: 0rdyn94h5kob +2025-06-18T14:50:41.381Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1063ms - IP: 192.168.79.143 - User: user_1066 - RequestID: dsb0etcniy +2025-06-18T14:50:41.481Z [DEBUG] user-service - POST /api/v1/payments - Status: 401 - Response time: 1623ms - IP: 192.168.85.229 - User: user_1015 - RequestID: j6069qzmy4 +2025-06-18T14:50:41.581Z [TRACE] payment-service - Database UPDATE on users - Execution time: 359ms - Rows affected: 23 - RequestID: rdkjap9taoh +2025-06-18T14:50:41.681Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1134ms - IP: 192.168.113.218 - User: user_1018 - RequestID: k1r5tcnsifc +2025-06-18T14:50:41.781Z [TRACE] order-service - PUT /api/v1/users - Status: 404 - Response time: 1409ms - IP: 192.168.174.114 - User: user_1046 - RequestID: w7664yc03hh +2025-06-18T14:50:41.881Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 927ms - RequestID: 6jlr92ziuw7 +2025-06-18T14:50:41.981Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 301ms - Rows affected: 58 - RequestID: jw72yp2031 +2025-06-18T14:50:42.081Z [INFO] auth-service - Database DELETE on payments - Execution time: 51ms - Rows affected: 76 - RequestID: me8lf51zvt +2025-06-18T14:50:42.181Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 230ms - Rows affected: 77 - RequestID: 7q9ehmkivgp +2025-06-18T14:50:42.281Z [DEBUG] auth-service - Auth event: logout - User: user_1084 - IP: 192.168.196.226 - RequestID: 6e8aveti6hm +2025-06-18T14:50:42.381Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 215ms - Rows affected: 12 - RequestID: 34xm3epf8i3 +2025-06-18T14:50:42.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.147.171 - RequestID: 2c820d9suvv +2025-06-18T14:50:42.581Z [TRACE] payment-service - PUT /api/v1/users - Status: 400 - Response time: 431ms - IP: 192.168.138.123 - User: user_1088 - RequestID: 9ydd6mqtoip +2025-06-18T14:50:42.681Z [DEBUG] user-service - Operation: cache_hit - Processing time: 132ms - RequestID: ptvgj9eyod +2025-06-18T14:50:42.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1037 - IP: 192.168.1.152 - RequestID: 4macaewyucu +2025-06-18T14:50:42.881Z [TRACE] inventory-service - GET /api/v1/users - Status: 400 - Response time: 626ms - IP: 192.168.44.5 - User: user_1038 - RequestID: 5lv3cga86ev +2025-06-18T14:50:42.981Z [DEBUG] order-service - Auth event: logout - User: user_1078 - IP: 192.168.227.77 - RequestID: m3mcvjrp2kr +2025-06-18T14:50:43.081Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 478ms - RequestID: o3g3vzmgv1o +2025-06-18T14:50:43.181Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 51ms - IP: 192.168.141.100 - User: user_1006 - RequestID: 0mzattr45bn +2025-06-18T14:50:43.281Z [TRACE] auth-service - POST /api/v1/payments - Status: 404 - Response time: 815ms - IP: 192.168.36.218 - User: user_1097 - RequestID: lesx6onutbo +2025-06-18T14:50:43.381Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 34ms - Rows affected: 74 - RequestID: b06sh1qclx4 +2025-06-18T14:50:43.481Z [DEBUG] auth-service - Database SELECT on products - Execution time: 255ms - Rows affected: 13 - RequestID: uovlxcskho +2025-06-18T14:50:43.581Z [DEBUG] inventory-service - Auth event: password_change - User: user_1054 - IP: 192.168.174.114 - RequestID: tv17ln9im6 +2025-06-18T14:50:43.681Z [INFO] user-service - PUT /api/v1/orders - Status: 201 - Response time: 187ms - IP: 192.168.229.123 - User: user_1043 - RequestID: n2sn5b2qh28 +2025-06-18T14:50:43.781Z [INFO] auth-service - Operation: email_sent - Processing time: 594ms - RequestID: tbheliqc0m +2025-06-18T14:50:43.881Z [INFO] order-service - Auth event: logout - User: user_1073 - IP: 192.168.1.152 - RequestID: ljxamclieok +2025-06-18T14:50:43.981Z [TRACE] user-service - Operation: inventory_updated - Processing time: 815ms - RequestID: 1wthjf2usz3 +2025-06-18T14:50:44.081Z [TRACE] order-service - Operation: cache_miss - Processing time: 919ms - RequestID: vdyt0ykr5ql +2025-06-18T14:50:44.181Z [DEBUG] user-service - Operation: email_sent - Processing time: 212ms - RequestID: 6ht6rrmnfty +2025-06-18T14:50:44.281Z [DEBUG] order-service - DELETE /api/v1/users - Status: 400 - Response time: 1551ms - IP: 192.168.64.33 - User: user_1025 - RequestID: ok7l4qb4dqb +2025-06-18T14:50:44.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.85.229 - RequestID: vul5gomon5 +2025-06-18T14:50:44.481Z [INFO] order-service - POST /api/v1/auth/login - Status: 502 - Response time: 1277ms - IP: 192.168.32.38 - User: user_1099 - RequestID: flihkhveb8 +2025-06-18T14:50:44.581Z [INFO] auth-service - Operation: payment_processed - Processing time: 579ms - RequestID: jmptr106c1f +2025-06-18T14:50:44.681Z [TRACE] auth-service - GET /api/v1/payments - Status: 403 - Response time: 1428ms - IP: 192.168.189.103 - User: user_1094 - RequestID: jz019q443si +2025-06-18T14:50:44.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1055 - IP: 192.168.147.171 - RequestID: 7qh2ek3gos +2025-06-18T14:50:44.881Z [TRACE] user-service - PATCH /api/v1/payments - Status: 201 - Response time: 638ms - IP: 192.168.97.87 - User: user_1079 - RequestID: vak6tay582 +2025-06-18T14:50:44.981Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 200 - Response time: 821ms - IP: 192.168.64.33 - User: user_1090 - RequestID: gwlwj75si49 +2025-06-18T14:50:45.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1082 - IP: 192.168.159.94 - RequestID: nkuxmink59 +2025-06-18T14:50:45.181Z [TRACE] payment-service - Auth event: password_change - User: user_1023 - IP: 192.168.170.215 - RequestID: ku7hf407c2 +2025-06-18T14:50:45.281Z [TRACE] notification-service - Operation: notification_queued - Processing time: 926ms - RequestID: x0qwkuq0icp +2025-06-18T14:50:45.381Z [INFO] auth-service - GET /api/v1/orders - Status: 503 - Response time: 1051ms - IP: 192.168.97.87 - User: user_1035 - RequestID: nos8ucdxss +2025-06-18T14:50:45.481Z [TRACE] user-service - Database SELECT on payments - Execution time: 377ms - Rows affected: 18 - RequestID: oirrmsscbj +2025-06-18T14:50:45.581Z [INFO] notification-service - PUT /api/v1/users - Status: 400 - Response time: 366ms - IP: 192.168.141.100 - User: user_1010 - RequestID: 929h7xrmp8r +2025-06-18T14:50:45.681Z [DEBUG] user-service - Database SELECT on users - Execution time: 490ms - Rows affected: 12 - RequestID: cjdureo0mt +2025-06-18T14:50:45.781Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1094 - IP: 192.168.79.116 - RequestID: 2e0dnl9t4n9 +2025-06-18T14:50:45.881Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1541ms - IP: 192.168.144.38 - User: user_1040 - RequestID: 4ddvvhk17qu +2025-06-18T14:50:45.981Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 200 - Response time: 119ms - IP: 192.168.85.229 - User: user_1003 - RequestID: t6n63fru0h7 +2025-06-18T14:50:46.081Z [TRACE] user-service - Database DELETE on sessions - Execution time: 189ms - Rows affected: 25 - RequestID: lpa7afbdq5g +2025-06-18T14:50:46.181Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 201 - Response time: 1475ms - IP: 192.168.11.60 - User: user_1013 - RequestID: qhqc57ef77 +2025-06-18T14:50:46.281Z [TRACE] notification-service - Auth event: login_failed - User: user_1037 - IP: 192.168.64.33 - RequestID: gxjf8i5z2o +2025-06-18T14:50:46.381Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 500 - Response time: 364ms - IP: 192.168.30.79 - User: user_1053 - RequestID: gm7j450rvgp +2025-06-18T14:50:46.481Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 404 - Response time: 852ms - IP: 192.168.113.218 - User: user_1070 - RequestID: jqlbabqbze +2025-06-18T14:50:46.581Z [INFO] order-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.196.226 - RequestID: muz4772tbuc +2025-06-18T14:50:46.681Z [INFO] notification-service - Auth event: login_success - User: user_1046 - IP: 192.168.13.72 - RequestID: vb9bm27wo0j +2025-06-18T14:50:46.781Z [INFO] notification-service - Operation: order_created - Processing time: 160ms - RequestID: wu85d89oqnh +2025-06-18T14:50:46.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1054 - IP: 192.168.242.165 - RequestID: kx4umswdq +2025-06-18T14:50:46.981Z [INFO] notification-service - Operation: webhook_sent - Processing time: 101ms - RequestID: ixnlahc07n8 +2025-06-18T14:50:47.081Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 67ms - Rows affected: 34 - RequestID: 7uwa8n6hulo +2025-06-18T14:50:47.181Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 417ms - Rows affected: 51 - RequestID: ok1vanrp39e +2025-06-18T14:50:47.281Z [INFO] auth-service - Database SELECT on sessions - Execution time: 430ms - Rows affected: 41 - RequestID: kg495q549xl +2025-06-18T14:50:47.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.187.199 - RequestID: 4s8hvxuu67p +2025-06-18T14:50:47.481Z [INFO] user-service - Operation: payment_processed - Processing time: 985ms - RequestID: pz8v1nepwf +2025-06-18T14:50:47.581Z [INFO] user-service - Auth event: login_success - User: user_1038 - IP: 192.168.227.77 - RequestID: vh4au91kz4q +2025-06-18T14:50:47.681Z [DEBUG] user-service - Database INSERT on products - Execution time: 116ms - Rows affected: 97 - RequestID: lxgswzvu34d +2025-06-18T14:50:47.781Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 48ms - Rows affected: 13 - RequestID: 50h4p6na1v +2025-06-18T14:50:47.881Z [INFO] notification-service - Operation: inventory_updated - Processing time: 172ms - RequestID: 41aye20c82b +2025-06-18T14:50:47.981Z [DEBUG] payment-service - Auth event: login_failed - User: user_1004 - IP: 192.168.46.63 - RequestID: n1n91pkc3m +2025-06-18T14:50:48.081Z [TRACE] order-service - Operation: notification_queued - Processing time: 728ms - RequestID: k5devltclu +2025-06-18T14:50:48.181Z [TRACE] notification-service - POST /api/v1/payments - Status: 503 - Response time: 1758ms - IP: 192.168.97.87 - User: user_1040 - RequestID: zwmlm20zhuh +2025-06-18T14:50:48.281Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 204ms - Rows affected: 60 - RequestID: 4x5x18g5pr +2025-06-18T14:50:48.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.64.33 - RequestID: 4qc9ivz3h8 +2025-06-18T14:50:48.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 547ms - RequestID: lqn0c7ejo1m +2025-06-18T14:50:48.581Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 266ms - RequestID: 07wxe26193sm +2025-06-18T14:50:48.681Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 877ms - IP: 192.168.211.72 - User: user_1003 - RequestID: l22q3a02vth +2025-06-18T14:50:48.781Z [INFO] payment-service - Operation: webhook_sent - Processing time: 423ms - RequestID: r9z03grhtxf +2025-06-18T14:50:48.881Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1019ms - RequestID: 0st5mq73ygj +2025-06-18T14:50:48.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1041 - IP: 192.168.85.229 - RequestID: ji0pyi4wqp +2025-06-18T14:50:49.081Z [INFO] notification-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.53.133 - RequestID: srpfrgutyy +2025-06-18T14:50:49.181Z [TRACE] user-service - Database INSERT on payments - Execution time: 43ms - Rows affected: 94 - RequestID: c4mt55otudr +2025-06-18T14:50:49.281Z [DEBUG] order-service - Auth event: logout - User: user_1048 - IP: 192.168.68.128 - RequestID: bb4tg4r9rgp +2025-06-18T14:50:49.381Z [INFO] payment-service - Auth event: login_failed - User: user_1076 - IP: 192.168.240.169 - RequestID: 38l63uiq9an +2025-06-18T14:50:49.481Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 4ms - Rows affected: 25 - RequestID: b9wkeb3cbym +2025-06-18T14:50:49.581Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 193ms - Rows affected: 11 - RequestID: dkcvjm63s1p +2025-06-18T14:50:49.681Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 401 - Response time: 731ms - IP: 192.168.44.5 - User: user_1039 - RequestID: bxa37kimiz +2025-06-18T14:50:49.781Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 404 - Response time: 552ms - IP: 192.168.158.144 - User: user_1029 - RequestID: 0c38fqkvdy1b +2025-06-18T14:50:49.881Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 369ms - Rows affected: 27 - RequestID: gxxo8w82llm +2025-06-18T14:50:49.981Z [TRACE] inventory-service - POST /api/v1/users - Status: 403 - Response time: 1883ms - IP: 192.168.227.233 - User: user_1098 - RequestID: 670jt5kb4nq +2025-06-18T14:50:50.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1038 - IP: 192.168.31.117 - RequestID: acij09emag7 +2025-06-18T14:50:50.181Z [INFO] user-service - Operation: cache_hit - Processing time: 864ms - RequestID: ip3ram92eye +2025-06-18T14:50:50.281Z [INFO] notification-service - Operation: cache_hit - Processing time: 985ms - RequestID: cezap79812 +2025-06-18T14:50:50.381Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 40ms - Rows affected: 44 - RequestID: j7cuclarl6 +2025-06-18T14:50:50.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.79.143 - RequestID: h2p415o5hlw +2025-06-18T14:50:50.581Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 200 - Response time: 1346ms - IP: 192.168.11.60 - User: user_1053 - RequestID: d4fsmc144v4 +2025-06-18T14:50:50.681Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 445ms - Rows affected: 55 - RequestID: 13r8oe53r0z +2025-06-18T14:50:50.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.187.199 - RequestID: w06h550aed7 +2025-06-18T14:50:50.881Z [INFO] inventory-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.158.144 - RequestID: 1mmcmvux1xz +2025-06-18T14:50:50.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.174.114 - RequestID: hs947x3c6hu +2025-06-18T14:50:51.081Z [INFO] payment-service - Operation: order_created - Processing time: 871ms - RequestID: 8t6zj6c5xfl +2025-06-18T14:50:51.181Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 285ms - RequestID: 6zydi6sbx85 +2025-06-18T14:50:51.281Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 992ms - RequestID: 1kp1objcwon +2025-06-18T14:50:51.381Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 480ms - Rows affected: 52 - RequestID: d9nnb7nn39f +2025-06-18T14:50:51.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1030 - IP: 192.168.64.33 - RequestID: wxo79tnmwa +2025-06-18T14:50:51.581Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.242.165 - RequestID: a8ehvukqfgk +2025-06-18T14:50:51.681Z [INFO] notification-service - Auth event: password_change - User: user_1002 - IP: 192.168.14.77 - RequestID: 3ix1aza406u +2025-06-18T14:50:51.781Z [DEBUG] order-service - Auth event: logout - User: user_1048 - IP: 192.168.242.165 - RequestID: 9cu1fxu9vih +2025-06-18T14:50:51.881Z [INFO] notification-service - Database SELECT on products - Execution time: 478ms - Rows affected: 47 - RequestID: jb2z1y209y9 +2025-06-18T14:50:51.981Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 347ms - Rows affected: 24 - RequestID: 0cwy68y1caz9 +2025-06-18T14:50:52.081Z [TRACE] auth-service - Auth event: login_success - User: user_1056 - IP: 192.168.247.134 - RequestID: f5zifk6dcrj +2025-06-18T14:50:52.181Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 844ms - IP: 192.168.147.171 - User: user_1038 - RequestID: syb6piehy9l +2025-06-18T14:50:52.281Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 44ms - Rows affected: 36 - RequestID: o5wodaxpyf +2025-06-18T14:50:52.381Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 465ms - Rows affected: 80 - RequestID: uj34ur9qvnm +2025-06-18T14:50:52.481Z [INFO] auth-service - GET /api/v1/orders - Status: 502 - Response time: 1995ms - IP: 192.168.229.123 - User: user_1057 - RequestID: sxkg2wjxs8s +2025-06-18T14:50:52.581Z [TRACE] payment-service - Auth event: login_success - User: user_1005 - IP: 192.168.104.37 - RequestID: 7nl1jjhhwzy +2025-06-18T14:50:52.681Z [INFO] notification-service - Operation: cache_miss - Processing time: 709ms - RequestID: rrlmdhfz66j +2025-06-18T14:50:52.781Z [INFO] inventory-service - GET /api/v1/inventory - Status: 401 - Response time: 1542ms - IP: 192.168.138.123 - User: user_1006 - RequestID: q6p7u2o9ysl +2025-06-18T14:50:52.881Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 503 - Response time: 231ms - IP: 192.168.211.72 - User: user_1049 - RequestID: i2hfmzr29n +2025-06-18T14:50:52.981Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 947ms - IP: 192.168.64.33 - User: user_1097 - RequestID: ns9z5qfge4 +2025-06-18T14:50:53.081Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 200 - Response time: 140ms - IP: 192.168.240.169 - User: user_1035 - RequestID: ojlls0j2bh +2025-06-18T14:50:53.181Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 704ms - IP: 192.168.31.117 - User: user_1011 - RequestID: 9ct8qgr4awp +2025-06-18T14:50:53.281Z [DEBUG] user-service - Auth event: password_change - User: user_1048 - IP: 192.168.240.169 - RequestID: qgqagscy54 +2025-06-18T14:50:53.381Z [INFO] order-service - Database UPDATE on users - Execution time: 446ms - Rows affected: 38 - RequestID: rb2pn0wnnjq +2025-06-18T14:50:53.481Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1864ms - IP: 192.168.46.63 - User: user_1039 - RequestID: 7sctyct2if +2025-06-18T14:50:53.581Z [TRACE] user-service - POST /api/v1/payments - Status: 503 - Response time: 504ms - IP: 192.168.10.184 - User: user_1056 - RequestID: gs9jq5kn8w8 +2025-06-18T14:50:53.681Z [INFO] notification-service - Operation: notification_queued - Processing time: 178ms - RequestID: y0br8vaz58b +2025-06-18T14:50:53.781Z [TRACE] inventory-service - Database SELECT on products - Execution time: 267ms - Rows affected: 45 - RequestID: px2uorr061a +2025-06-18T14:50:53.881Z [TRACE] user-service - Auth event: logout - User: user_1013 - IP: 192.168.100.240 - RequestID: ej7uz2mbfwp +2025-06-18T14:50:53.981Z [INFO] inventory-service - Operation: cache_miss - Processing time: 988ms - RequestID: 5i6jnj2c5yt +2025-06-18T14:50:54.081Z [INFO] notification-service - Operation: payment_processed - Processing time: 681ms - RequestID: gdg7s6uqamt +2025-06-18T14:50:54.181Z [TRACE] auth-service - Auth event: password_change - User: user_1052 - IP: 192.168.1.152 - RequestID: jntcoyksmvr +2025-06-18T14:50:54.281Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 404 - Response time: 319ms - IP: 192.168.167.32 - User: user_1031 - RequestID: 3af3vusa79q +2025-06-18T14:50:54.381Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 496ms - RequestID: mzt4xgmgeri +2025-06-18T14:50:54.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.174.114 - RequestID: 7qtrges1kv +2025-06-18T14:50:54.581Z [INFO] notification-service - Operation: email_sent - Processing time: 770ms - RequestID: d5acly2diip +2025-06-18T14:50:54.681Z [TRACE] notification-service - Operation: order_created - Processing time: 484ms - RequestID: 22v41vk3246 +2025-06-18T14:50:54.781Z [TRACE] notification-service - Auth event: login_success - User: user_1028 - IP: 192.168.141.100 - RequestID: pafqk3k3tp +2025-06-18T14:50:54.881Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1339ms - IP: 192.168.68.158 - User: user_1040 - RequestID: 0jnkzv6prz7t +2025-06-18T14:50:54.981Z [DEBUG] payment-service - POST /api/v1/orders - Status: 201 - Response time: 1074ms - IP: 192.168.33.76 - User: user_1050 - RequestID: 82eq52akux7 +2025-06-18T14:50:55.081Z [DEBUG] user-service - Operation: cache_hit - Processing time: 810ms - RequestID: czarbrpevn +2025-06-18T14:50:55.181Z [DEBUG] user-service - GET /api/v1/inventory - Status: 503 - Response time: 942ms - IP: 192.168.31.117 - User: user_1051 - RequestID: yeagvcfysu +2025-06-18T14:50:55.281Z [DEBUG] user-service - Auth event: logout - User: user_1053 - IP: 192.168.232.72 - RequestID: 2aapyi2gook +2025-06-18T14:50:55.381Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 480ms - Rows affected: 55 - RequestID: 61zbdhnbi4o +2025-06-18T14:50:55.481Z [INFO] notification-service - Operation: inventory_updated - Processing time: 619ms - RequestID: 985luouko1k +2025-06-18T14:50:55.581Z [INFO] user-service - Auth event: logout - User: user_1068 - IP: 192.168.32.38 - RequestID: 6oyc2z7ced9 +2025-06-18T14:50:55.681Z [TRACE] notification-service - Operation: order_created - Processing time: 656ms - RequestID: svktc6u4nb +2025-06-18T14:50:55.781Z [TRACE] notification-service - Auth event: logout - User: user_1032 - IP: 192.168.68.128 - RequestID: a1b88bnc38 +2025-06-18T14:50:55.881Z [INFO] order-service - Auth event: password_change - User: user_1013 - IP: 192.168.147.171 - RequestID: 5h0jim0awtm +2025-06-18T14:50:55.981Z [INFO] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 11ms - IP: 192.168.194.41 - User: user_1027 - RequestID: 5ms9k8dcavo +2025-06-18T14:50:56.081Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 244ms - Rows affected: 38 - RequestID: hul41gc7el +2025-06-18T14:50:56.181Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 999ms - IP: 192.168.10.184 - User: user_1033 - RequestID: wvxo05tsdub +2025-06-18T14:50:56.281Z [DEBUG] order-service - POST /api/v1/users - Status: 201 - Response time: 1839ms - IP: 192.168.68.158 - User: user_1056 - RequestID: 0pgq07bpalf +2025-06-18T14:50:56.381Z [DEBUG] payment-service - Database SELECT on users - Execution time: 108ms - Rows affected: 43 - RequestID: av4l9252eka +2025-06-18T14:50:56.481Z [INFO] payment-service - Operation: order_created - Processing time: 403ms - RequestID: 4mng9her48l +2025-06-18T14:50:56.581Z [INFO] order-service - Operation: order_created - Processing time: 875ms - RequestID: cqkeht37p2j +2025-06-18T14:50:56.681Z [TRACE] notification-service - Operation: cache_miss - Processing time: 237ms - RequestID: 9bpf4zjl55d +2025-06-18T14:50:56.781Z [INFO] notification-service - Database DELETE on users - Execution time: 372ms - Rows affected: 65 - RequestID: 9is1dwj8oic +2025-06-18T14:50:56.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.242.165 - RequestID: 4l8daii41r +2025-06-18T14:50:56.981Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 1001ms - RequestID: avfrlrme2f +2025-06-18T14:50:57.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 677ms - RequestID: 2zbdcluffai +2025-06-18T14:50:57.181Z [TRACE] order-service - Database INSERT on sessions - Execution time: 341ms - Rows affected: 23 - RequestID: cq3fm7sjfe +2025-06-18T14:50:57.281Z [TRACE] notification-service - Operation: order_created - Processing time: 541ms - RequestID: 04cil9nk1zl3 +2025-06-18T14:50:57.381Z [TRACE] payment-service - Database INSERT on payments - Execution time: 214ms - Rows affected: 21 - RequestID: nbqvhwh99bj +2025-06-18T14:50:57.481Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 478ms - Rows affected: 76 - RequestID: f31oz6zulz8 +2025-06-18T14:50:57.581Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 298ms - Rows affected: 29 - RequestID: 32salz02dh +2025-06-18T14:50:57.681Z [INFO] inventory-service - Database UPDATE on products - Execution time: 77ms - Rows affected: 97 - RequestID: upmp6uzwkd9 +2025-06-18T14:50:57.781Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 58ms - Rows affected: 43 - RequestID: pyw0eiighqb +2025-06-18T14:50:57.881Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 567ms - IP: 192.168.113.218 - User: user_1002 - RequestID: 55dqq1dgioc +2025-06-18T14:50:57.981Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1068ms - IP: 192.168.36.218 - User: user_1081 - RequestID: wfdosamftnq +2025-06-18T14:50:58.081Z [DEBUG] auth-service - Operation: email_sent - Processing time: 89ms - RequestID: kji2xfcdbal +2025-06-18T14:50:58.181Z [INFO] order-service - Database DELETE on products - Execution time: 340ms - Rows affected: 15 - RequestID: h265q8h654i +2025-06-18T14:50:58.281Z [INFO] payment-service - Operation: webhook_sent - Processing time: 698ms - RequestID: 3nlgt1djl +2025-06-18T14:50:58.381Z [INFO] auth-service - Database DELETE on sessions - Execution time: 176ms - Rows affected: 13 - RequestID: by8ljk8nrsi +2025-06-18T14:50:58.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 595ms - RequestID: ja4wqt6428s +2025-06-18T14:50:58.581Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1055ms - IP: 192.168.181.225 - User: user_1077 - RequestID: uvm2ioemj9j +2025-06-18T14:50:58.681Z [DEBUG] payment-service - Auth event: logout - User: user_1090 - IP: 192.168.187.199 - RequestID: abk421r6qp +2025-06-18T14:50:58.781Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 188ms - Rows affected: 16 - RequestID: rknz6kc9jcd +2025-06-18T14:50:58.881Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 200 - Response time: 937ms - IP: 192.168.174.114 - User: user_1028 - RequestID: 6ztcmod7cn3 +2025-06-18T14:50:58.981Z [INFO] order-service - Auth event: login_success - User: user_1054 - IP: 192.168.167.32 - RequestID: ns2azatica +2025-06-18T14:50:59.081Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 192ms - IP: 192.168.247.134 - User: user_1052 - RequestID: yhahk69pmh9 +2025-06-18T14:50:59.181Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 746ms - RequestID: 4v4ns485ut4 +2025-06-18T14:50:59.281Z [INFO] order-service - PUT /api/v1/inventory - Status: 403 - Response time: 844ms - IP: 192.168.141.100 - User: user_1042 - RequestID: 1j35a2ntix2 +2025-06-18T14:50:59.381Z [TRACE] order-service - Auth event: logout - User: user_1091 - IP: 192.168.32.38 - RequestID: u3r4h79fn5 +2025-06-18T14:50:59.481Z [DEBUG] order-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.227.77 - RequestID: q8isaw39hof +2025-06-18T14:50:59.581Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 535ms - RequestID: iqh06hvyca +2025-06-18T14:50:59.681Z [INFO] user-service - Operation: order_created - Processing time: 286ms - RequestID: cbm2426vnc4 +2025-06-18T14:50:59.781Z [INFO] payment-service - GET /api/v1/orders - Status: 201 - Response time: 1997ms - IP: 192.168.158.144 - User: user_1047 - RequestID: 3ldzel4s8e5 +2025-06-18T14:50:59.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1033 - IP: 192.168.79.143 - RequestID: qjzex92rrbb +2025-06-18T14:50:59.981Z [TRACE] user-service - Operation: notification_queued - Processing time: 579ms - RequestID: mc80s4uy68q +2025-06-18T14:51:00.081Z [INFO] order-service - GET /api/v1/orders - Status: 404 - Response time: 1353ms - IP: 192.168.227.77 - User: user_1069 - RequestID: znz4v0wl9f +2025-06-18T14:51:00.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 618ms - RequestID: 5g0l81grrbs +2025-06-18T14:51:00.281Z [TRACE] user-service - POST /api/v1/inventory - Status: 201 - Response time: 114ms - IP: 192.168.53.133 - User: user_1021 - RequestID: pmgond8fte +2025-06-18T14:51:00.381Z [TRACE] auth-service - Auth event: login_failed - User: user_1090 - IP: 192.168.181.225 - RequestID: oqztos4b33 +2025-06-18T14:51:00.481Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1240ms - IP: 192.168.31.117 - User: user_1054 - RequestID: xada667i0s +2025-06-18T14:51:00.581Z [INFO] payment-service - Database INSERT on users - Execution time: 170ms - Rows affected: 72 - RequestID: nbwd9o47s1r +2025-06-18T14:51:00.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.97.87 - RequestID: 24awzdbc9xj +2025-06-18T14:51:00.781Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 166ms - Rows affected: 54 - RequestID: crvtz690n67 +2025-06-18T14:51:00.881Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 572ms - RequestID: 025gg70qpw0k +2025-06-18T14:51:00.981Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 493ms - RequestID: f833er9r00m +2025-06-18T14:51:01.081Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 115ms - Rows affected: 20 - RequestID: kpw9bozig2 +2025-06-18T14:51:01.181Z [INFO] order-service - Operation: cache_miss - Processing time: 83ms - RequestID: dqshr1w02h4 +2025-06-18T14:51:01.281Z [TRACE] inventory-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 458ms - IP: 192.168.242.165 - User: user_1047 - RequestID: ptxswaawvy +2025-06-18T14:51:01.381Z [TRACE] user-service - Database DELETE on sessions - Execution time: 153ms - Rows affected: 84 - RequestID: ar25bv4lni8 +2025-06-18T14:51:01.481Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 163ms - Rows affected: 9 - RequestID: ffynvnu9m2l +2025-06-18T14:51:01.581Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 404 - Response time: 930ms - IP: 192.168.229.123 - User: user_1049 - RequestID: e9yzl9had3j +2025-06-18T14:51:01.681Z [DEBUG] user-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.68.128 - RequestID: 8di61a4un7h +2025-06-18T14:51:01.781Z [INFO] payment-service - GET /api/v1/inventory - Status: 502 - Response time: 1551ms - IP: 192.168.85.229 - User: user_1015 - RequestID: 6tbxhf8r0j8 +2025-06-18T14:51:01.881Z [TRACE] payment-service - PUT /api/v1/payments - Status: 404 - Response time: 879ms - IP: 192.168.181.225 - User: user_1076 - RequestID: o0zdnrg89x +2025-06-18T14:51:01.981Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 200 - Response time: 418ms - IP: 192.168.36.218 - User: user_1064 - RequestID: di0aaqa36j7 +2025-06-18T14:51:02.081Z [INFO] user-service - PATCH /api/v1/users - Status: 404 - Response time: 1563ms - IP: 192.168.10.184 - User: user_1047 - RequestID: f7qx2bfvyti +2025-06-18T14:51:02.181Z [DEBUG] notification-service - Database DELETE on users - Execution time: 459ms - Rows affected: 35 - RequestID: s7v79fbzr6 +2025-06-18T14:51:02.281Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 503 - Response time: 1350ms - IP: 192.168.227.233 - User: user_1086 - RequestID: f5c99t5p90i +2025-06-18T14:51:02.381Z [DEBUG] user-service - Database INSERT on users - Execution time: 148ms - Rows affected: 41 - RequestID: uo13zl3cgk +2025-06-18T14:51:02.481Z [INFO] payment-service - Auth event: login_success - User: user_1066 - IP: 192.168.141.100 - RequestID: kzeh5r6t20k +2025-06-18T14:51:02.581Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 305ms - Rows affected: 24 - RequestID: dqryort40yt +2025-06-18T14:51:02.681Z [TRACE] notification-service - Database DELETE on users - Execution time: 17ms - Rows affected: 75 - RequestID: m9c3oqshnio +2025-06-18T14:51:02.781Z [INFO] user-service - Operation: cache_miss - Processing time: 217ms - RequestID: 0m9u60p7l93m +2025-06-18T14:51:02.881Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 924ms - RequestID: 31ra8znmrye +2025-06-18T14:51:02.981Z [TRACE] notification-service - Operation: cache_hit - Processing time: 928ms - RequestID: vey4beot7 +2025-06-18T14:51:03.081Z [INFO] notification-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.36.218 - RequestID: uqhxeocv9ps +2025-06-18T14:51:03.181Z [INFO] inventory-service - Operation: email_sent - Processing time: 870ms - RequestID: s00ro508bra +2025-06-18T14:51:03.281Z [DEBUG] payment-service - Auth event: login_success - User: user_1080 - IP: 192.168.30.79 - RequestID: a231tdzsald +2025-06-18T14:51:03.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1043 - IP: 192.168.13.72 - RequestID: pnbxa04wc7e +2025-06-18T14:51:03.481Z [DEBUG] order-service - Operation: email_sent - Processing time: 663ms - RequestID: i3ta9hd90c +2025-06-18T14:51:03.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 998ms - RequestID: e835s2t0apm +2025-06-18T14:51:03.681Z [DEBUG] notification-service - Operation: order_created - Processing time: 720ms - RequestID: v1c2ky3ywqe +2025-06-18T14:51:03.781Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 56ms - Rows affected: 78 - RequestID: jejr4x7ru2 +2025-06-18T14:51:03.881Z [TRACE] notification-service - Auth event: login_success - User: user_1025 - IP: 192.168.187.199 - RequestID: ssftx1irt6j +2025-06-18T14:51:03.981Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.85.229 - RequestID: 3ec7eme73jg +2025-06-18T14:51:04.081Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 500 - Response time: 1471ms - IP: 192.168.31.117 - User: user_1099 - RequestID: 31srjj1l3cn +2025-06-18T14:51:04.181Z [INFO] auth-service - Auth event: login_failed - User: user_1041 - IP: 192.168.46.63 - RequestID: qxyjd2rpqh +2025-06-18T14:51:04.281Z [TRACE] auth-service - Operation: payment_processed - Processing time: 1008ms - RequestID: 17oezun9im1 +2025-06-18T14:51:04.381Z [INFO] auth-service - Database SELECT on products - Execution time: 325ms - Rows affected: 85 - RequestID: 7qyx0c7fcf5 +2025-06-18T14:51:04.481Z [TRACE] auth-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.97.87 - RequestID: tzjruf2yny +2025-06-18T14:51:04.581Z [TRACE] auth-service - Database INSERT on payments - Execution time: 202ms - Rows affected: 11 - RequestID: xo2rrg1r5zp +2025-06-18T14:51:04.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.10.184 - RequestID: 1m4nl8q068k +2025-06-18T14:51:04.781Z [INFO] user-service - Database INSERT on orders - Execution time: 38ms - Rows affected: 56 - RequestID: izkw4qefhiq +2025-06-18T14:51:04.881Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 21ms - Rows affected: 65 - RequestID: mbmfo3ojked +2025-06-18T14:51:04.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.240.169 - RequestID: kac2vve19ej +2025-06-18T14:51:05.081Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 311ms - Rows affected: 41 - RequestID: pnch8dlsms +2025-06-18T14:51:05.181Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 342ms - Rows affected: 27 - RequestID: h51l3nly7c4 +2025-06-18T14:51:05.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1052 - IP: 192.168.235.117 - RequestID: fpjsr0twodp +2025-06-18T14:51:05.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.133.7 - RequestID: 59f598xazmk +2025-06-18T14:51:05.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.79.143 - RequestID: cg1aizvketv +2025-06-18T14:51:05.581Z [INFO] notification-service - Operation: cache_miss - Processing time: 534ms - RequestID: cdzbulu38zc +2025-06-18T14:51:05.681Z [INFO] payment-service - Operation: notification_queued - Processing time: 696ms - RequestID: qs87lyp3jrm +2025-06-18T14:51:05.781Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 211ms - Rows affected: 14 - RequestID: camq3kce2a4 +2025-06-18T14:51:05.881Z [INFO] payment-service - Database SELECT on payments - Execution time: 213ms - Rows affected: 62 - RequestID: d0gtt23n4qa +2025-06-18T14:51:05.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.181.225 - RequestID: d6g36q013vc +2025-06-18T14:51:06.081Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 368ms - Rows affected: 42 - RequestID: 3zpfvdhvps1 +2025-06-18T14:51:06.181Z [DEBUG] payment-service - Operation: order_created - Processing time: 672ms - RequestID: bznn10a3yj8 +2025-06-18T14:51:06.281Z [INFO] payment-service - Database SELECT on products - Execution time: 163ms - Rows affected: 54 - RequestID: k8bryr1qq7e +2025-06-18T14:51:06.381Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 664ms - RequestID: ulfctv1w5xe +2025-06-18T14:51:06.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.79.141 - RequestID: xkq5fy20gks +2025-06-18T14:51:06.581Z [DEBUG] payment-service - Auth event: password_change - User: user_1026 - IP: 192.168.189.103 - RequestID: slzoir8900j +2025-06-18T14:51:06.681Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 200 - Response time: 1963ms - IP: 192.168.1.152 - User: user_1044 - RequestID: khgby8k6moj +2025-06-18T14:51:06.781Z [TRACE] order-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.100.240 - RequestID: rdk8dfzc1lk +2025-06-18T14:51:06.881Z [TRACE] auth-service - POST /api/v1/inventory - Status: 500 - Response time: 1684ms - IP: 192.168.158.144 - User: user_1069 - RequestID: fhbx6cbzj3o +2025-06-18T14:51:06.981Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1484ms - IP: 192.168.181.225 - User: user_1089 - RequestID: 0fu4296lwmf +2025-06-18T14:51:07.081Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 270ms - Rows affected: 41 - RequestID: 4r5gpx3p60o +2025-06-18T14:51:07.181Z [TRACE] order-service - Database INSERT on products - Execution time: 124ms - Rows affected: 37 - RequestID: jjaxmhkt7ch +2025-06-18T14:51:07.281Z [DEBUG] user-service - Operation: order_created - Processing time: 93ms - RequestID: kmr73srgaba +2025-06-18T14:51:07.381Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 341ms - IP: 192.168.247.134 - User: user_1020 - RequestID: s3lqki1f6t8 +2025-06-18T14:51:07.481Z [INFO] user-service - Auth event: login_failed - User: user_1054 - IP: 192.168.138.123 - RequestID: 37pcto2e8wn +2025-06-18T14:51:07.581Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 871ms - RequestID: dxpmneq5nwr +2025-06-18T14:51:07.681Z [TRACE] order-service - Database SELECT on sessions - Execution time: 339ms - Rows affected: 10 - RequestID: kv3gvtquind +2025-06-18T14:51:07.781Z [DEBUG] order-service - Database SELECT on payments - Execution time: 85ms - Rows affected: 24 - RequestID: w71blbr6otl +2025-06-18T14:51:07.881Z [INFO] user-service - GET /api/v1/payments - Status: 400 - Response time: 1012ms - IP: 192.168.227.77 - User: user_1046 - RequestID: 2m6rs58nr3s +2025-06-18T14:51:07.981Z [DEBUG] user-service - Operation: payment_processed - Processing time: 256ms - RequestID: f7xrh6srm1q +2025-06-18T14:51:08.081Z [TRACE] order-service - GET /api/v1/orders - Status: 200 - Response time: 435ms - IP: 192.168.79.116 - User: user_1019 - RequestID: hxsg0hqj31l +2025-06-18T14:51:08.181Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 400 - Response time: 1644ms - IP: 192.168.100.240 - User: user_1065 - RequestID: e5p7gt6fbxb +2025-06-18T14:51:08.281Z [INFO] notification-service - Database INSERT on products - Execution time: 294ms - Rows affected: 66 - RequestID: jxnci4kwjse +2025-06-18T14:51:08.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 662ms - RequestID: mvz926whfhg +2025-06-18T14:51:08.481Z [DEBUG] order-service - GET /api/v1/payments - Status: 404 - Response time: 814ms - IP: 192.168.104.37 - User: user_1077 - RequestID: ovvnt1repwh +2025-06-18T14:51:08.581Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 785ms - RequestID: hajlbjfkiri +2025-06-18T14:51:08.681Z [DEBUG] order-service - POST /api/v1/users - Status: 502 - Response time: 142ms - IP: 192.168.159.94 - User: user_1092 - RequestID: noauaw3zgl +2025-06-18T14:51:08.781Z [DEBUG] auth-service - POST /api/v1/users - Status: 404 - Response time: 130ms - IP: 192.168.79.116 - User: user_1020 - RequestID: ut5iqcjotk +2025-06-18T14:51:08.881Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1330ms - IP: 192.168.189.103 - User: user_1049 - RequestID: a7884czoclq +2025-06-18T14:51:08.981Z [TRACE] notification-service - GET /api/v1/orders - Status: 503 - Response time: 1353ms - IP: 192.168.79.116 - User: user_1006 - RequestID: fi3jvbweai6 +2025-06-18T14:51:09.081Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1267ms - IP: 192.168.10.184 - User: user_1054 - RequestID: vxkrjlxdj3 +2025-06-18T14:51:09.181Z [DEBUG] notification-service - Database DELETE on users - Execution time: 202ms - Rows affected: 10 - RequestID: yujhgsv361f +2025-06-18T14:51:09.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.196.226 - RequestID: wtsrucjga4 +2025-06-18T14:51:09.381Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 400 - Response time: 501ms - IP: 192.168.46.63 - User: user_1051 - RequestID: ko24drjg249 +2025-06-18T14:51:09.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 152ms - RequestID: 7qtwci3f4j2 +2025-06-18T14:51:09.581Z [DEBUG] user-service - Auth event: login_success - User: user_1083 - IP: 192.168.64.33 - RequestID: blar9yyhlue +2025-06-18T14:51:09.681Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1192ms - IP: 192.168.144.38 - User: user_1077 - RequestID: bqbgxkkjohk +2025-06-18T14:51:09.781Z [INFO] notification-service - Database INSERT on products - Execution time: 292ms - Rows affected: 52 - RequestID: utxvhcwipfn +2025-06-18T14:51:09.881Z [TRACE] notification-service - GET /api/v1/orders - Status: 502 - Response time: 1850ms - IP: 192.168.11.60 - User: user_1082 - RequestID: 4mwwer1e5pf +2025-06-18T14:51:09.981Z [INFO] user-service - GET /api/v1/auth/login - Status: 404 - Response time: 44ms - IP: 192.168.196.226 - User: user_1099 - RequestID: 3224vr7cwme +2025-06-18T14:51:10.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.79.143 - RequestID: qk4s6n6hqe9 +2025-06-18T14:51:10.181Z [INFO] inventory-service - Auth event: password_change - User: user_1019 - IP: 192.168.30.79 - RequestID: 6iplmrtso8s +2025-06-18T14:51:10.281Z [INFO] auth-service - Operation: payment_processed - Processing time: 968ms - RequestID: 0mmnb0h57s6l +2025-06-18T14:51:10.381Z [DEBUG] notification-service - GET /api/v1/users - Status: 403 - Response time: 460ms - IP: 192.168.53.133 - User: user_1048 - RequestID: 84dfb8hx6yb +2025-06-18T14:51:10.481Z [INFO] order-service - Operation: cache_miss - Processing time: 466ms - RequestID: u3sbgpt5h3l +2025-06-18T14:51:10.581Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 747ms - RequestID: 2287dwz1twj +2025-06-18T14:51:10.681Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 500 - Response time: 1534ms - IP: 192.168.147.171 - User: user_1015 - RequestID: 538qmo5mct7 +2025-06-18T14:51:10.781Z [TRACE] auth-service - Database INSERT on users - Execution time: 124ms - Rows affected: 1 - RequestID: t138aozulal +2025-06-18T14:51:10.881Z [INFO] user-service - DELETE /api/v1/users - Status: 404 - Response time: 1573ms - IP: 192.168.194.41 - User: user_1049 - RequestID: 2josptyxao7 +2025-06-18T14:51:10.981Z [INFO] user-service - PUT /api/v1/payments - Status: 403 - Response time: 1415ms - IP: 192.168.240.169 - User: user_1062 - RequestID: 98ejhp7p2e +2025-06-18T14:51:11.081Z [TRACE] notification-service - GET /api/v1/orders - Status: 503 - Response time: 378ms - IP: 192.168.79.116 - User: user_1012 - RequestID: x6v64j634d +2025-06-18T14:51:11.181Z [DEBUG] auth-service - Database DELETE on users - Execution time: 494ms - Rows affected: 30 - RequestID: sp583bcap6 +2025-06-18T14:51:11.281Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 200 - Response time: 906ms - IP: 192.168.170.215 - User: user_1027 - RequestID: etqgjvvnzfs +2025-06-18T14:51:11.381Z [DEBUG] order-service - Operation: order_created - Processing time: 653ms - RequestID: u5gw7ok29ur +2025-06-18T14:51:11.481Z [INFO] order-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.11.60 - RequestID: ra4z1jq1ob +2025-06-18T14:51:11.581Z [INFO] order-service - Database INSERT on sessions - Execution time: 409ms - Rows affected: 0 - RequestID: j6fou5wxxve +2025-06-18T14:51:11.681Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 127ms - Rows affected: 43 - RequestID: u7p224hq5t +2025-06-18T14:51:11.781Z [INFO] payment-service - Operation: notification_queued - Processing time: 1043ms - RequestID: mtdbdxp80k +2025-06-18T14:51:11.881Z [INFO] notification-service - Operation: cache_miss - Processing time: 437ms - RequestID: dznrbb8lxs5 +2025-06-18T14:51:11.981Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 148ms - RequestID: 83uox24v9ih +2025-06-18T14:51:12.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.53.133 - RequestID: o5ldk828vno +2025-06-18T14:51:12.181Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 400 - Response time: 226ms - IP: 192.168.211.72 - User: user_1035 - RequestID: 8zuab8al09l +2025-06-18T14:51:12.281Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.68.158 - RequestID: x942iup5mtn +2025-06-18T14:51:12.381Z [TRACE] user-service - PUT /api/v1/users - Status: 503 - Response time: 1133ms - IP: 192.168.235.117 - User: user_1034 - RequestID: h9rtml6dkf +2025-06-18T14:51:12.481Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1330ms - IP: 192.168.14.77 - User: user_1054 - RequestID: 5mfudqhk5vd +2025-06-18T14:51:12.581Z [TRACE] user-service - POST /api/v1/orders - Status: 503 - Response time: 461ms - IP: 192.168.194.41 - User: user_1076 - RequestID: m9ynnw0eu4 +2025-06-18T14:51:12.681Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 995ms - IP: 192.168.174.114 - User: user_1053 - RequestID: qk5mxr93qak +2025-06-18T14:51:12.781Z [INFO] user-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.113.218 - RequestID: h0p4t5jqfd8 +2025-06-18T14:51:12.881Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 376ms - Rows affected: 55 - RequestID: 23t4omn3csu +2025-06-18T14:51:12.981Z [DEBUG] user-service - Auth event: login_success - User: user_1075 - IP: 192.168.247.134 - RequestID: zdz4dlgea9 +2025-06-18T14:51:13.081Z [TRACE] notification-service - Database UPDATE on users - Execution time: 428ms - Rows affected: 26 - RequestID: ev1w5gf266w +2025-06-18T14:51:13.181Z [INFO] payment-service - POST /api/v1/auth/login - Status: 404 - Response time: 1150ms - IP: 192.168.79.116 - User: user_1039 - RequestID: bbn75lijuv7 +2025-06-18T14:51:13.281Z [INFO] auth-service - PUT /api/v1/payments - Status: 403 - Response time: 1393ms - IP: 192.168.242.165 - User: user_1035 - RequestID: j5voralwwda +2025-06-18T14:51:13.381Z [INFO] auth-service - Database DELETE on payments - Execution time: 53ms - Rows affected: 61 - RequestID: je9tg92582 +2025-06-18T14:51:13.481Z [DEBUG] order-service - Database SELECT on orders - Execution time: 255ms - Rows affected: 72 - RequestID: fkobfypx46t +2025-06-18T14:51:13.581Z [INFO] notification-service - Database UPDATE on orders - Execution time: 366ms - Rows affected: 64 - RequestID: 37wjtecu706 +2025-06-18T14:51:13.681Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 201 - Response time: 1799ms - IP: 192.168.79.143 - User: user_1004 - RequestID: y9mzb0oh4ic +2025-06-18T14:51:13.781Z [INFO] user-service - Auth event: login_failed - User: user_1024 - IP: 192.168.68.158 - RequestID: 3wwm6t30fsz +2025-06-18T14:51:13.881Z [TRACE] order-service - PUT /api/v1/payments - Status: 200 - Response time: 1556ms - IP: 192.168.158.144 - User: user_1085 - RequestID: ezxkp7mb5k8 +2025-06-18T14:51:13.981Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 405ms - RequestID: abl8uatb0f +2025-06-18T14:51:14.081Z [INFO] order-service - Auth event: login_success - User: user_1082 - IP: 192.168.229.123 - RequestID: sdhf85pszfr +2025-06-18T14:51:14.181Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 503 - Response time: 320ms - IP: 192.168.141.100 - User: user_1057 - RequestID: qj4kjfz387 +2025-06-18T14:51:14.281Z [INFO] payment-service - Operation: notification_queued - Processing time: 119ms - RequestID: 8xkhpbxvprs +2025-06-18T14:51:14.381Z [INFO] order-service - DELETE /api/v1/payments - Status: 503 - Response time: 1828ms - IP: 192.168.31.117 - User: user_1079 - RequestID: 32pucntoe7e +2025-06-18T14:51:14.481Z [INFO] order-service - Database SELECT on orders - Execution time: 321ms - Rows affected: 68 - RequestID: tsxz1fkiexi +2025-06-18T14:51:14.581Z [INFO] user-service - POST /api/v1/orders - Status: 500 - Response time: 1101ms - IP: 192.168.79.116 - User: user_1003 - RequestID: 7myl6kkic8t +2025-06-18T14:51:14.681Z [TRACE] user-service - Database INSERT on sessions - Execution time: 372ms - Rows affected: 70 - RequestID: k0lxybh8tsk +2025-06-18T14:51:14.781Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 503 - Response time: 1058ms - IP: 192.168.28.146 - User: user_1042 - RequestID: srlu1kc3af +2025-06-18T14:51:14.881Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 500 - Response time: 437ms - IP: 192.168.133.7 - User: user_1098 - RequestID: fa52u0ksf3m +2025-06-18T14:51:14.981Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 500 - Response time: 296ms - IP: 192.168.147.171 - User: user_1012 - RequestID: gh5p9oxjnkh +2025-06-18T14:51:15.081Z [INFO] order-service - Database INSERT on payments - Execution time: 343ms - Rows affected: 15 - RequestID: 1lsfl96w291 +2025-06-18T14:51:15.181Z [TRACE] user-service - POST /api/v1/users - Status: 400 - Response time: 402ms - IP: 192.168.138.123 - User: user_1051 - RequestID: 4xdm8yltzhy +2025-06-18T14:51:15.281Z [TRACE] notification-service - Operation: order_created - Processing time: 901ms - RequestID: kgws3i2wx58 +2025-06-18T14:51:15.381Z [TRACE] auth-service - Database SELECT on users - Execution time: 29ms - Rows affected: 52 - RequestID: vs97v2s7wkg +2025-06-18T14:51:15.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1096 - IP: 192.168.68.128 - RequestID: q4yr18vu0mc +2025-06-18T14:51:15.581Z [DEBUG] inventory-service - Auth event: password_change - User: user_1012 - IP: 192.168.187.199 - RequestID: smdtd178ceo +2025-06-18T14:51:15.681Z [INFO] payment-service - Database DELETE on sessions - Execution time: 76ms - Rows affected: 83 - RequestID: jksr7hq2kp +2025-06-18T14:51:15.781Z [TRACE] inventory-service - Operation: order_created - Processing time: 991ms - RequestID: qrgu8hf8a6f +2025-06-18T14:51:15.881Z [INFO] user-service - Auth event: logout - User: user_1040 - IP: 192.168.30.79 - RequestID: o9ttlmu72th +2025-06-18T14:51:15.981Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1713ms - IP: 192.168.64.33 - User: user_1044 - RequestID: cc66a73607h +2025-06-18T14:51:16.081Z [INFO] order-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.46.63 - RequestID: fvgd2b81eop +2025-06-18T14:51:16.181Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 22ms - Rows affected: 11 - RequestID: i23mr6mp8b +2025-06-18T14:51:16.281Z [INFO] order-service - Operation: inventory_updated - Processing time: 1005ms - RequestID: 9blx3orqpzo +2025-06-18T14:51:16.381Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 452ms - IP: 192.168.31.117 - User: user_1081 - RequestID: rmm8v1h657k +2025-06-18T14:51:16.481Z [DEBUG] payment-service - Auth event: login_success - User: user_1045 - IP: 192.168.46.63 - RequestID: jc018ad41h +2025-06-18T14:51:16.581Z [TRACE] order-service - Operation: cache_miss - Processing time: 921ms - RequestID: wjoaelqa4j +2025-06-18T14:51:16.681Z [DEBUG] order-service - Operation: order_created - Processing time: 493ms - RequestID: 1y39ov4h4wd +2025-06-18T14:51:16.781Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 431ms - Rows affected: 24 - RequestID: d4bgfvk7wd +2025-06-18T14:51:16.881Z [DEBUG] payment-service - Auth event: login_failed - User: user_1063 - IP: 192.168.31.117 - RequestID: 0sx0vbaquqm +2025-06-18T14:51:16.981Z [INFO] user-service - DELETE /api/v1/users - Status: 502 - Response time: 1385ms - IP: 192.168.159.94 - User: user_1091 - RequestID: vjnhd3ow0k +2025-06-18T14:51:17.081Z [INFO] auth-service - GET /api/v1/users - Status: 200 - Response time: 374ms - IP: 192.168.141.100 - User: user_1087 - RequestID: rwxewnv26c +2025-06-18T14:51:17.181Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1567ms - IP: 192.168.181.225 - User: user_1097 - RequestID: v0qldyr3djp +2025-06-18T14:51:17.281Z [TRACE] order-service - DELETE /api/v1/orders - Status: 502 - Response time: 1172ms - IP: 192.168.13.72 - User: user_1076 - RequestID: ss5sx2w3j1 +2025-06-18T14:51:17.381Z [TRACE] notification-service - Operation: order_created - Processing time: 561ms - RequestID: iy9h0yf7ptg +2025-06-18T14:51:17.481Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 244ms - Rows affected: 49 - RequestID: v7vah2wa45g +2025-06-18T14:51:17.581Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 1006ms - RequestID: cq0xtq85ik5 +2025-06-18T14:51:17.681Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 820ms - IP: 192.168.30.79 - User: user_1006 - RequestID: k15g8h0yram +2025-06-18T14:51:17.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 739ms - RequestID: nwxgxeqkjko +2025-06-18T14:51:17.881Z [INFO] order-service - GET /api/v1/payments - Status: 401 - Response time: 242ms - IP: 192.168.235.117 - User: user_1056 - RequestID: gfz11uhch0v +2025-06-18T14:51:17.981Z [INFO] payment-service - Operation: order_created - Processing time: 876ms - RequestID: zo1cne3fdv +2025-06-18T14:51:18.081Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 403 - Response time: 269ms - IP: 192.168.36.218 - User: user_1015 - RequestID: w3q7j3whymp +2025-06-18T14:51:18.181Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 201 - Response time: 1558ms - IP: 192.168.159.94 - User: user_1084 - RequestID: ok69aptzeph +2025-06-18T14:51:18.281Z [INFO] user-service - Auth event: password_change - User: user_1079 - IP: 192.168.227.233 - RequestID: ij2ina3oro +2025-06-18T14:51:18.381Z [DEBUG] payment-service - Auth event: login_success - User: user_1026 - IP: 192.168.227.77 - RequestID: an2xn1xltcv +2025-06-18T14:51:18.481Z [TRACE] order-service - Database UPDATE on products - Execution time: 108ms - Rows affected: 35 - RequestID: 8ehtzmb68vh +2025-06-18T14:51:18.581Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 257ms - RequestID: pd954rc4kkk +2025-06-18T14:51:18.681Z [DEBUG] payment-service - POST /api/v1/orders - Status: 503 - Response time: 1976ms - IP: 192.168.104.37 - User: user_1053 - RequestID: lsi4g8t6u48 +2025-06-18T14:51:18.781Z [INFO] auth-service - Database INSERT on sessions - Execution time: 103ms - Rows affected: 74 - RequestID: wkjraw7oen +2025-06-18T14:51:18.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 740ms - RequestID: jvzxqmubn5o +2025-06-18T14:51:18.981Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 500 - Response time: 256ms - IP: 192.168.10.184 - User: user_1083 - RequestID: 98aa8lp6ga +2025-06-18T14:51:19.081Z [DEBUG] order-service - Auth event: logout - User: user_1039 - IP: 192.168.79.116 - RequestID: 63rx2pbab8w +2025-06-18T14:51:19.181Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 87ms - Rows affected: 40 - RequestID: 72ws7k29j8w +2025-06-18T14:51:19.281Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1053ms - IP: 192.168.11.60 - User: user_1031 - RequestID: thb216irje +2025-06-18T14:51:19.381Z [INFO] payment-service - Database SELECT on payments - Execution time: 351ms - Rows affected: 81 - RequestID: cc01175p276 +2025-06-18T14:51:19.481Z [TRACE] user-service - Operation: cache_hit - Processing time: 455ms - RequestID: 79aujpru35h +2025-06-18T14:51:19.581Z [INFO] notification-service - PATCH /api/v1/users - Status: 400 - Response time: 428ms - IP: 192.168.158.144 - User: user_1061 - RequestID: 0o9fnqm1iphm +2025-06-18T14:51:19.681Z [TRACE] auth-service - Auth event: login_success - User: user_1024 - IP: 192.168.247.134 - RequestID: yl0opflxqa +2025-06-18T14:51:19.781Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 346ms - Rows affected: 17 - RequestID: 12hi7kfvs61l +2025-06-18T14:51:19.881Z [INFO] user-service - Operation: order_created - Processing time: 137ms - RequestID: gvxzo511tde +2025-06-18T14:51:19.981Z [INFO] payment-service - Database INSERT on payments - Execution time: 170ms - Rows affected: 0 - RequestID: ic5mj1qkoyp +2025-06-18T14:51:20.081Z [INFO] notification-service - Operation: notification_queued - Processing time: 400ms - RequestID: ih8p8l7cedo +2025-06-18T14:51:20.181Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 400 - Response time: 993ms - IP: 192.168.104.37 - User: user_1075 - RequestID: oyqst4chnmb +2025-06-18T14:51:20.281Z [TRACE] order-service - Operation: order_created - Processing time: 897ms - RequestID: 89bx32n056x +2025-06-18T14:51:20.381Z [INFO] user-service - Auth event: login_success - User: user_1041 - IP: 192.168.64.33 - RequestID: ukj2z9tyka +2025-06-18T14:51:20.481Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 212ms - Rows affected: 80 - RequestID: mg0jalp8xlj +2025-06-18T14:51:20.581Z [INFO] notification-service - GET /api/v1/inventory - Status: 400 - Response time: 529ms - IP: 192.168.68.128 - User: user_1091 - RequestID: ernh1gq2eqd +2025-06-18T14:51:20.681Z [INFO] auth-service - POST /api/v1/payments - Status: 201 - Response time: 172ms - IP: 192.168.144.38 - User: user_1073 - RequestID: nxkchzwuwsp +2025-06-18T14:51:20.781Z [DEBUG] auth-service - Database DELETE on users - Execution time: 125ms - Rows affected: 87 - RequestID: dtpaw8wa0u6 +2025-06-18T14:51:20.881Z [TRACE] payment-service - Auth event: login_success - User: user_1033 - IP: 192.168.97.87 - RequestID: nvcxk4lrjsh +2025-06-18T14:51:20.981Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 494ms - Rows affected: 16 - RequestID: i0gt97nr58h +2025-06-18T14:51:21.081Z [INFO] payment-service - Database INSERT on orders - Execution time: 264ms - Rows affected: 76 - RequestID: 1mqywk2ypn8i +2025-06-18T14:51:21.181Z [INFO] payment-service - Operation: cache_hit - Processing time: 473ms - RequestID: levqxbc9xut +2025-06-18T14:51:21.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.138.123 - RequestID: jyhc6a1324 +2025-06-18T14:51:21.381Z [INFO] payment-service - Database DELETE on orders - Execution time: 76ms - Rows affected: 80 - RequestID: vtg3oujp36 +2025-06-18T14:51:21.481Z [INFO] order-service - PATCH /api/v1/users - Status: 404 - Response time: 483ms - IP: 192.168.36.218 - User: user_1027 - RequestID: a6cmw22u08l +2025-06-18T14:51:21.581Z [TRACE] inventory-service - Operation: email_sent - Processing time: 347ms - RequestID: 10d3kgevn9n +2025-06-18T14:51:21.681Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1581ms - IP: 192.168.30.79 - User: user_1018 - RequestID: mkpk0uc7tjr +2025-06-18T14:51:21.781Z [TRACE] user-service - Database INSERT on users - Execution time: 328ms - Rows affected: 65 - RequestID: cj80hnax3cr +2025-06-18T14:51:21.881Z [INFO] inventory-service - Operation: cache_miss - Processing time: 1030ms - RequestID: v9yppl226o +2025-06-18T14:51:21.981Z [TRACE] order-service - Database DELETE on payments - Execution time: 377ms - Rows affected: 74 - RequestID: ywyeu3dqine +2025-06-18T14:51:22.081Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 868ms - RequestID: aa1u4x7eh8c +2025-06-18T14:51:22.181Z [INFO] auth-service - Operation: notification_queued - Processing time: 967ms - RequestID: xvkhtobmexk +2025-06-18T14:51:22.281Z [INFO] payment-service - Database UPDATE on payments - Execution time: 278ms - Rows affected: 56 - RequestID: rhwbwi4ve2n +2025-06-18T14:51:22.381Z [INFO] inventory-service - Operation: order_created - Processing time: 176ms - RequestID: 6iu725zjfn +2025-06-18T14:51:22.481Z [INFO] auth-service - Database SELECT on payments - Execution time: 262ms - Rows affected: 14 - RequestID: d6hfsnmia8p +2025-06-18T14:51:22.581Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 18ms - IP: 192.168.46.63 - User: user_1064 - RequestID: ue2v8293gi9 +2025-06-18T14:51:22.681Z [INFO] inventory-service - Operation: cache_hit - Processing time: 527ms - RequestID: bzub16g2qo6 +2025-06-18T14:51:22.781Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 776ms - RequestID: iruxrd2qslh +2025-06-18T14:51:22.881Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 388ms - Rows affected: 97 - RequestID: j2h1wgx8ff +2025-06-18T14:51:22.981Z [INFO] order-service - Operation: cache_hit - Processing time: 907ms - RequestID: kidrdf8eas8 +2025-06-18T14:51:23.081Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 500 - Response time: 1553ms - IP: 192.168.167.32 - User: user_1093 - RequestID: prxt7sougaa +2025-06-18T14:51:23.181Z [INFO] auth-service - Operation: order_created - Processing time: 387ms - RequestID: sbzngl970tq +2025-06-18T14:51:23.281Z [DEBUG] payment-service - Database INSERT on products - Execution time: 405ms - Rows affected: 33 - RequestID: 2nxg7dli4ta +2025-06-18T14:51:23.381Z [INFO] order-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.64.33 - RequestID: fnjbvqg1zcu +2025-06-18T14:51:23.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 388ms - RequestID: axwmi34sx86 +2025-06-18T14:51:23.581Z [TRACE] payment-service - Auth event: password_change - User: user_1020 - IP: 192.168.28.146 - RequestID: cgo7e8fc5m +2025-06-18T14:51:23.681Z [INFO] payment-service - Database SELECT on orders - Execution time: 459ms - Rows affected: 92 - RequestID: qbjnsr7567 +2025-06-18T14:51:23.781Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1424ms - IP: 192.168.240.169 - User: user_1074 - RequestID: jco53yzy23o +2025-06-18T14:51:23.881Z [INFO] auth-service - Auth event: logout - User: user_1084 - IP: 192.168.170.215 - RequestID: 128npxynkcmb +2025-06-18T14:51:23.981Z [INFO] auth-service - Database SELECT on sessions - Execution time: 187ms - Rows affected: 30 - RequestID: 4r985djsvyh +2025-06-18T14:51:24.081Z [TRACE] auth-service - Database UPDATE on users - Execution time: 218ms - Rows affected: 81 - RequestID: dndz7m4n8pc +2025-06-18T14:51:24.181Z [INFO] user-service - Auth event: login_success - User: user_1074 - IP: 192.168.240.169 - RequestID: on8to161ipa +2025-06-18T14:51:24.281Z [DEBUG] user-service - Operation: order_created - Processing time: 891ms - RequestID: bqofustxqga +2025-06-18T14:51:24.381Z [DEBUG] user-service - Auth event: password_change - User: user_1063 - IP: 192.168.104.37 - RequestID: 6peqcohvv8d +2025-06-18T14:51:24.481Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 112ms - Rows affected: 1 - RequestID: opagllj4wy +2025-06-18T14:51:24.581Z [INFO] user-service - POST /api/v1/users - Status: 500 - Response time: 211ms - IP: 192.168.104.37 - User: user_1007 - RequestID: v02zcemv30b +2025-06-18T14:51:24.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 738ms - RequestID: 297fy3pp0d +2025-06-18T14:51:24.781Z [DEBUG] notification-service - POST /api/v1/payments - Status: 403 - Response time: 1306ms - IP: 192.168.33.76 - User: user_1023 - RequestID: dz2eqmtf8pb +2025-06-18T14:51:24.881Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 149ms - RequestID: xkj3e40yt9s +2025-06-18T14:51:24.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1081 - IP: 192.168.159.94 - RequestID: xnzpiu3p9lg +2025-06-18T14:51:25.081Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1389ms - IP: 192.168.100.240 - User: user_1087 - RequestID: lbpwn5x3nxd +2025-06-18T14:51:25.181Z [TRACE] order-service - Auth event: password_change - User: user_1041 - IP: 192.168.235.117 - RequestID: wul0iz8xlv +2025-06-18T14:51:25.281Z [INFO] order-service - Database UPDATE on users - Execution time: 147ms - Rows affected: 53 - RequestID: vr88jcgtlce +2025-06-18T14:51:25.381Z [INFO] auth-service - Database INSERT on products - Execution time: 230ms - Rows affected: 79 - RequestID: vwzsvlzo84 +2025-06-18T14:51:25.481Z [TRACE] order-service - Operation: email_sent - Processing time: 682ms - RequestID: pakbe7bww7s +2025-06-18T14:51:25.581Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1861ms - IP: 192.168.31.117 - User: user_1035 - RequestID: vvq4jdx2qfr +2025-06-18T14:51:25.681Z [DEBUG] auth-service - POST /api/v1/orders - Status: 404 - Response time: 1061ms - IP: 192.168.104.37 - User: user_1059 - RequestID: hf2k0oyyewm +2025-06-18T14:51:25.781Z [INFO] auth-service - Operation: notification_queued - Processing time: 546ms - RequestID: lhghhkoh1ie +2025-06-18T14:51:25.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1065 - IP: 192.168.133.7 - RequestID: umvev9nxi2 +2025-06-18T14:51:25.981Z [TRACE] user-service - Database DELETE on payments - Execution time: 202ms - Rows affected: 67 - RequestID: ekqj0cy5d2h +2025-06-18T14:51:26.081Z [INFO] notification-service - Database DELETE on payments - Execution time: 334ms - Rows affected: 97 - RequestID: lnafeq09e1r +2025-06-18T14:51:26.181Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 542ms - IP: 192.168.138.123 - User: user_1032 - RequestID: dkwhr7vkmlh +2025-06-18T14:51:26.281Z [INFO] notification-service - Database SELECT on users - Execution time: 240ms - Rows affected: 9 - RequestID: obm9s7gxjzn +2025-06-18T14:51:26.381Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 400ms - Rows affected: 63 - RequestID: 1hpiyj3g6nx +2025-06-18T14:51:26.481Z [TRACE] notification-service - Auth event: logout - User: user_1060 - IP: 192.168.33.76 - RequestID: wh2r8m2x6w +2025-06-18T14:51:26.581Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 828ms - RequestID: mb2zk8ijgwr +2025-06-18T14:51:26.681Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 362ms - Rows affected: 4 - RequestID: 23pe4msvxrh +2025-06-18T14:51:26.781Z [DEBUG] order-service - Operation: cache_miss - Processing time: 550ms - RequestID: ugwxr39624 +2025-06-18T14:51:26.881Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 302ms - Rows affected: 90 - RequestID: afclwvvqjl5 +2025-06-18T14:51:26.981Z [TRACE] notification-service - Database DELETE on users - Execution time: 10ms - Rows affected: 86 - RequestID: 7xy2krdlfzc +2025-06-18T14:51:27.081Z [INFO] user-service - Database INSERT on orders - Execution time: 39ms - Rows affected: 13 - RequestID: 6eh5jf6cemt +2025-06-18T14:51:27.181Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 265ms - RequestID: nrfdexx3jvk +2025-06-18T14:51:27.281Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 305ms - Rows affected: 25 - RequestID: x8qeyswro5g +2025-06-18T14:51:27.381Z [INFO] inventory-service - Auth event: login_success - User: user_1071 - IP: 192.168.1.152 - RequestID: 4577vj1tikg +2025-06-18T14:51:27.481Z [TRACE] payment-service - Database SELECT on orders - Execution time: 199ms - Rows affected: 82 - RequestID: wz5g62i6pwk +2025-06-18T14:51:27.581Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 953ms - RequestID: r4diplcjcp +2025-06-18T14:51:27.681Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 201 - Response time: 610ms - IP: 192.168.79.116 - User: user_1059 - RequestID: 0bw8a0tq67ye +2025-06-18T14:51:27.781Z [INFO] order-service - GET /api/v1/inventory - Status: 503 - Response time: 1735ms - IP: 192.168.81.206 - User: user_1027 - RequestID: juf6i6sxsx +2025-06-18T14:51:27.881Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 117ms - Rows affected: 87 - RequestID: 4tlb9wqal8q +2025-06-18T14:51:27.981Z [TRACE] order-service - GET /api/v1/inventory - Status: 502 - Response time: 255ms - IP: 192.168.104.37 - User: user_1058 - RequestID: 0b5jdwz2op8o +2025-06-18T14:51:28.081Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 483ms - Rows affected: 82 - RequestID: rutduhwmun +2025-06-18T14:51:28.181Z [TRACE] payment-service - Auth event: password_change - User: user_1045 - IP: 192.168.68.158 - RequestID: a04z6p8qrf7 +2025-06-18T14:51:28.281Z [DEBUG] order-service - Database SELECT on orders - Execution time: 194ms - Rows affected: 15 - RequestID: 5e2nhnqo6vc +2025-06-18T14:51:28.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 652ms - RequestID: oxhutachjyr +2025-06-18T14:51:28.481Z [DEBUG] auth-service - GET /api/v1/orders - Status: 201 - Response time: 1903ms - IP: 192.168.242.165 - User: user_1090 - RequestID: pepqb2j24qg +2025-06-18T14:51:28.581Z [INFO] notification-service - Database SELECT on payments - Execution time: 212ms - Rows affected: 28 - RequestID: 34bskufm315 +2025-06-18T14:51:28.681Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 503 - Response time: 989ms - IP: 192.168.196.226 - User: user_1080 - RequestID: rla6701qlbk +2025-06-18T14:51:28.781Z [INFO] order-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.138.123 - RequestID: t3x0ujxe2g +2025-06-18T14:51:28.881Z [INFO] auth-service - Auth event: logout - User: user_1061 - IP: 192.168.32.38 - RequestID: demc9rnrvos +2025-06-18T14:51:28.981Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1242ms - IP: 192.168.13.72 - User: user_1071 - RequestID: 8865eyzt6o2 +2025-06-18T14:51:29.081Z [DEBUG] notification-service - Auth event: logout - User: user_1004 - IP: 192.168.11.60 - RequestID: fz6okylx7hi +2025-06-18T14:51:29.181Z [TRACE] auth-service - Database DELETE on payments - Execution time: 34ms - Rows affected: 58 - RequestID: qijydu8s3z +2025-06-18T14:51:29.281Z [INFO] auth-service - Operation: payment_processed - Processing time: 633ms - RequestID: 8bo6a8via56 +2025-06-18T14:51:29.381Z [INFO] order-service - Auth event: login_success - User: user_1009 - IP: 192.168.187.199 - RequestID: zwx2yqora7 +2025-06-18T14:51:29.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.44.5 - RequestID: 9buagh3tump +2025-06-18T14:51:29.581Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 404 - Response time: 216ms - IP: 192.168.181.225 - User: user_1034 - RequestID: tsbfpv14bv +2025-06-18T14:51:29.681Z [TRACE] payment-service - Operation: order_created - Processing time: 84ms - RequestID: sul97ityhsa +2025-06-18T14:51:29.781Z [TRACE] user-service - Auth event: password_change - User: user_1067 - IP: 192.168.64.33 - RequestID: elkdkatbwq5 +2025-06-18T14:51:29.881Z [TRACE] order-service - Database SELECT on products - Execution time: 361ms - Rows affected: 2 - RequestID: oqp3wx4bbn +2025-06-18T14:51:29.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 397ms - RequestID: dm7800dlnfj +2025-06-18T14:51:30.081Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 67ms - Rows affected: 39 - RequestID: pz16t4oqtb +2025-06-18T14:51:30.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.79.141 - RequestID: u9cd27adex +2025-06-18T14:51:30.281Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 502 - Response time: 446ms - IP: 192.168.144.38 - User: user_1082 - RequestID: fb8hu9cjqkn +2025-06-18T14:51:30.381Z [INFO] auth-service - Operation: notification_queued - Processing time: 861ms - RequestID: 9m43zjq7kyp +2025-06-18T14:51:30.481Z [DEBUG] payment-service - Database INSERT on products - Execution time: 18ms - Rows affected: 66 - RequestID: 3kli5mhp2ab +2025-06-18T14:51:30.581Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 153ms - Rows affected: 70 - RequestID: ffcfnrg9cp +2025-06-18T14:51:30.681Z [TRACE] notification-service - Operation: notification_queued - Processing time: 312ms - RequestID: c8a5n94lj6 +2025-06-18T14:51:30.781Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 503 - Response time: 825ms - IP: 192.168.211.72 - User: user_1073 - RequestID: 52z8agt6f2k +2025-06-18T14:51:30.881Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1677ms - IP: 192.168.227.77 - User: user_1091 - RequestID: glaupj77p7k +2025-06-18T14:51:30.981Z [INFO] auth-service - Auth event: login_failed - User: user_1000 - IP: 192.168.247.134 - RequestID: et84u0515bn +2025-06-18T14:51:31.081Z [INFO] order-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.167.32 - RequestID: 4urvztgu5nc +2025-06-18T14:51:31.181Z [TRACE] payment-service - Database INSERT on products - Execution time: 58ms - Rows affected: 72 - RequestID: ol3e97zk2n +2025-06-18T14:51:31.281Z [DEBUG] user-service - Database INSERT on payments - Execution time: 451ms - Rows affected: 5 - RequestID: wjhu9z0xhnm +2025-06-18T14:51:31.381Z [DEBUG] user-service - Operation: notification_queued - Processing time: 442ms - RequestID: gdf6b6i3qd +2025-06-18T14:51:31.481Z [TRACE] order-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.64.33 - RequestID: 9morzsmwgwa +2025-06-18T14:51:31.581Z [DEBUG] user-service - Operation: email_sent - Processing time: 140ms - RequestID: 85ck5qt6xux +2025-06-18T14:51:31.681Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1066ms - IP: 192.168.174.114 - User: user_1058 - RequestID: pvt72vwugm +2025-06-18T14:51:31.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1035 - IP: 192.168.11.60 - RequestID: 9d4c0vldux9 +2025-06-18T14:51:31.881Z [INFO] auth-service - Auth event: login_success - User: user_1016 - IP: 192.168.81.206 - RequestID: yoqlas99dlr +2025-06-18T14:51:31.981Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 274ms - Rows affected: 42 - RequestID: p671e6klvtd +2025-06-18T14:51:32.081Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 217ms - Rows affected: 41 - RequestID: odyy5x0rhy +2025-06-18T14:51:32.181Z [TRACE] auth-service - Auth event: logout - User: user_1062 - IP: 192.168.104.37 - RequestID: k2vphobkd2p +2025-06-18T14:51:32.281Z [TRACE] inventory-service - GET /api/v1/orders - Status: 401 - Response time: 1704ms - IP: 192.168.242.165 - User: user_1089 - RequestID: 43ve5t86zea +2025-06-18T14:51:32.381Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 919ms - RequestID: 95afe7n1aj5 +2025-06-18T14:51:32.481Z [TRACE] payment-service - DELETE /api/v1/users - Status: 404 - Response time: 260ms - IP: 192.168.85.229 - User: user_1013 - RequestID: tm0ru5b9jbp +2025-06-18T14:51:32.581Z [INFO] order-service - GET /api/v1/inventory - Status: 500 - Response time: 704ms - IP: 192.168.68.158 - User: user_1083 - RequestID: 2fheteyqam9 +2025-06-18T14:51:32.681Z [INFO] inventory-service - Operation: cache_miss - Processing time: 767ms - RequestID: 9r3i7bjzryp +2025-06-18T14:51:32.781Z [INFO] auth-service - Operation: email_sent - Processing time: 899ms - RequestID: 8kz9osfgvdb +2025-06-18T14:51:32.881Z [TRACE] notification-service - Database DELETE on payments - Execution time: 405ms - Rows affected: 83 - RequestID: h309o5wj8z8 +2025-06-18T14:51:32.981Z [INFO] user-service - Auth event: password_change - User: user_1041 - IP: 192.168.194.41 - RequestID: dbwo53ubvc +2025-06-18T14:51:33.081Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 324ms - Rows affected: 68 - RequestID: kaz1polafus +2025-06-18T14:51:33.181Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 417ms - RequestID: qfayswzhpn +2025-06-18T14:51:33.281Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 400ms - Rows affected: 13 - RequestID: 7hulgqo31hy +2025-06-18T14:51:33.381Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 497ms - RequestID: 3dp7zk0abkf +2025-06-18T14:51:33.481Z [INFO] user-service - Operation: payment_processed - Processing time: 566ms - RequestID: o3in8xf34c +2025-06-18T14:51:33.581Z [TRACE] auth-service - Auth event: login_success - User: user_1089 - IP: 192.168.211.72 - RequestID: 1ns5cqjhb3y +2025-06-18T14:51:33.681Z [TRACE] user-service - PUT /api/v1/payments - Status: 400 - Response time: 1216ms - IP: 192.168.133.7 - User: user_1083 - RequestID: tjqa3hbtbg +2025-06-18T14:51:33.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.10.184 - RequestID: tbupoqdvxqa +2025-06-18T14:51:33.881Z [DEBUG] order-service - Operation: payment_processed - Processing time: 720ms - RequestID: pnmdr1ca37o +2025-06-18T14:51:33.981Z [INFO] auth-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.97.87 - RequestID: maif6ojgem +2025-06-18T14:51:34.081Z [INFO] auth-service - Operation: payment_processed - Processing time: 906ms - RequestID: l0ee6uj27n +2025-06-18T14:51:34.181Z [DEBUG] auth-service - Database INSERT on users - Execution time: 455ms - Rows affected: 71 - RequestID: 8faq2iv8733 +2025-06-18T14:51:34.281Z [TRACE] auth-service - POST /api/v1/inventory - Status: 400 - Response time: 952ms - IP: 192.168.13.72 - User: user_1033 - RequestID: njo4vjxb9tk +2025-06-18T14:51:34.381Z [TRACE] order-service - Database INSERT on payments - Execution time: 480ms - Rows affected: 0 - RequestID: ky9saqwdksl +2025-06-18T14:51:34.481Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 117ms - Rows affected: 46 - RequestID: eshxpgm5qmf +2025-06-18T14:51:34.581Z [INFO] order-service - Database DELETE on sessions - Execution time: 107ms - Rows affected: 4 - RequestID: 3combq3a4am +2025-06-18T14:51:34.681Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 404 - Response time: 1833ms - IP: 192.168.13.72 - User: user_1009 - RequestID: dfs2663v2ik +2025-06-18T14:51:34.781Z [INFO] inventory-service - DELETE /api/v1/users - Status: 400 - Response time: 1797ms - IP: 192.168.36.218 - User: user_1029 - RequestID: sbobdqflg6d +2025-06-18T14:51:34.881Z [INFO] inventory-service - Operation: notification_queued - Processing time: 781ms - RequestID: uxcpg64rhg9 +2025-06-18T14:51:34.981Z [TRACE] payment-service - Database SELECT on orders - Execution time: 403ms - Rows affected: 2 - RequestID: d2l36bqpnia +2025-06-18T14:51:35.081Z [INFO] auth-service - Auth event: login_success - User: user_1016 - IP: 192.168.1.152 - RequestID: g6kmssbhqzl +2025-06-18T14:51:35.181Z [TRACE] user-service - DELETE /api/v1/orders - Status: 404 - Response time: 1285ms - IP: 192.168.144.38 - User: user_1015 - RequestID: 6cmprqy1ytb +2025-06-18T14:51:35.281Z [INFO] payment-service - Database UPDATE on users - Execution time: 477ms - Rows affected: 52 - RequestID: 5ci5v3ap9gp +2025-06-18T14:51:35.381Z [INFO] order-service - Database INSERT on orders - Execution time: 102ms - Rows affected: 17 - RequestID: 4lej47t8y45 +2025-06-18T14:51:35.481Z [DEBUG] order-service - GET /api/v1/users - Status: 400 - Response time: 1918ms - IP: 192.168.28.146 - User: user_1017 - RequestID: hdwxepok3ih +2025-06-18T14:51:35.581Z [TRACE] order-service - Database SELECT on orders - Execution time: 215ms - Rows affected: 48 - RequestID: 9mc79hqeaj +2025-06-18T14:51:35.681Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 807ms - IP: 192.168.211.72 - User: user_1081 - RequestID: yxcdov1zq0s +2025-06-18T14:51:35.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.64.33 - RequestID: k3wbu2fyn8l +2025-06-18T14:51:35.881Z [TRACE] user-service - Operation: email_sent - Processing time: 72ms - RequestID: b136mkj154n +2025-06-18T14:51:35.981Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 34ms - Rows affected: 37 - RequestID: jg2083aad +2025-06-18T14:51:36.081Z [DEBUG] order-service - Database UPDATE on users - Execution time: 476ms - Rows affected: 59 - RequestID: z7ukuwrcjm +2025-06-18T14:51:36.181Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 200 - Response time: 16ms - IP: 192.168.104.37 - User: user_1043 - RequestID: u04w4ghz4df +2025-06-18T14:51:36.281Z [INFO] payment-service - Database DELETE on payments - Execution time: 147ms - Rows affected: 51 - RequestID: kuhvxfsht5 +2025-06-18T14:51:36.381Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 235ms - Rows affected: 11 - RequestID: o460o51oz4 +2025-06-18T14:51:36.481Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1431ms - IP: 192.168.113.218 - User: user_1005 - RequestID: f1oco7ajrbh +2025-06-18T14:51:36.581Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 181ms - RequestID: 39p4gxtkl6c +2025-06-18T14:51:36.681Z [DEBUG] payment-service - Auth event: login_success - User: user_1079 - IP: 192.168.30.79 - RequestID: 4ia51s5qnq9 +2025-06-18T14:51:36.781Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.13.72 - RequestID: ed7orj59v6l +2025-06-18T14:51:36.881Z [TRACE] user-service - Database SELECT on payments - Execution time: 241ms - Rows affected: 24 - RequestID: tqezahecoj +2025-06-18T14:51:36.981Z [DEBUG] notification-service - PUT /api/v1/users - Status: 500 - Response time: 1370ms - IP: 192.168.170.215 - User: user_1019 - RequestID: 1t2dep5nwdf +2025-06-18T14:51:37.081Z [TRACE] order-service - Auth event: login_failed - User: user_1060 - IP: 192.168.170.215 - RequestID: tnc339mwt5h +2025-06-18T14:51:37.181Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 268ms - RequestID: izet1f0qu5o +2025-06-18T14:51:37.281Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 732ms - IP: 192.168.1.152 - User: user_1040 - RequestID: q4fjoyezi9m +2025-06-18T14:51:37.381Z [INFO] user-service - Operation: cache_miss - Processing time: 1047ms - RequestID: xa3ivtviocb +2025-06-18T14:51:37.481Z [INFO] auth-service - POST /api/v1/inventory - Status: 503 - Response time: 798ms - IP: 192.168.187.199 - User: user_1072 - RequestID: jvvqkp3av2 +2025-06-18T14:51:37.581Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 226ms - Rows affected: 80 - RequestID: zeu4wwelfre +2025-06-18T14:51:37.681Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 432ms - Rows affected: 78 - RequestID: de65jq0jidu +2025-06-18T14:51:37.781Z [TRACE] user-service - Operation: notification_queued - Processing time: 682ms - RequestID: hrby3ucf2ml +2025-06-18T14:51:37.881Z [TRACE] user-service - Auth event: logout - User: user_1087 - IP: 192.168.227.77 - RequestID: bwiykunccg +2025-06-18T14:51:37.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.242.165 - RequestID: 0wtnolyb8kvm +2025-06-18T14:51:38.081Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 360ms - Rows affected: 81 - RequestID: oma3m3xij0q +2025-06-18T14:51:38.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 888ms - RequestID: ghpv4vdj10b +2025-06-18T14:51:38.281Z [INFO] payment-service - Operation: order_created - Processing time: 326ms - RequestID: 33w0dmgwvv7 +2025-06-18T14:51:38.381Z [INFO] inventory-service - Database UPDATE on products - Execution time: 95ms - Rows affected: 22 - RequestID: y47be4i2ykg +2025-06-18T14:51:38.481Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 471ms - Rows affected: 50 - RequestID: ogff8dkrf4i +2025-06-18T14:51:38.581Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 362ms - Rows affected: 28 - RequestID: vbta1q3p14 +2025-06-18T14:51:38.681Z [INFO] user-service - Operation: order_created - Processing time: 456ms - RequestID: qzvzzkwcp1 +2025-06-18T14:51:38.781Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 931ms - IP: 192.168.46.63 - User: user_1063 - RequestID: dbngveyfoo9 +2025-06-18T14:51:38.881Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1204ms - IP: 192.168.81.206 - User: user_1094 - RequestID: y4s73n51l5a +2025-06-18T14:51:38.981Z [TRACE] notification-service - Operation: cache_miss - Processing time: 1013ms - RequestID: ovho5415j9 +2025-06-18T14:51:39.081Z [INFO] payment-service - POST /api/v1/payments - Status: 400 - Response time: 529ms - IP: 192.168.227.233 - User: user_1018 - RequestID: z3if15k9x6d +2025-06-18T14:51:39.181Z [TRACE] order-service - Database SELECT on payments - Execution time: 496ms - Rows affected: 53 - RequestID: bh7vtzsfvia +2025-06-18T14:51:39.281Z [INFO] inventory-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.13.72 - RequestID: 5jqzcvnoa1k +2025-06-18T14:51:39.381Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1478ms - IP: 192.168.187.199 - User: user_1090 - RequestID: vbvp8jm9qdk +2025-06-18T14:51:39.481Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 253ms - Rows affected: 73 - RequestID: tlxgjn10fho +2025-06-18T14:51:39.581Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 949ms - IP: 192.168.46.63 - User: user_1061 - RequestID: xesoj780qpi +2025-06-18T14:51:39.681Z [INFO] payment-service - Database UPDATE on users - Execution time: 51ms - Rows affected: 93 - RequestID: k0ub19688fq +2025-06-18T14:51:39.781Z [INFO] auth-service - PUT /api/v1/payments - Status: 500 - Response time: 1153ms - IP: 192.168.167.32 - User: user_1049 - RequestID: zvyqh3b1xup +2025-06-18T14:51:39.881Z [TRACE] user-service - Operation: order_created - Processing time: 294ms - RequestID: isvmhq9xkn +2025-06-18T14:51:39.981Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 23ms - Rows affected: 32 - RequestID: s4ofe7ncznp +2025-06-18T14:51:40.081Z [INFO] notification-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.1.152 - RequestID: feytyovly9s +2025-06-18T14:51:40.181Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1624ms - IP: 192.168.10.184 - User: user_1070 - RequestID: nyb2p4kf5cg +2025-06-18T14:51:40.281Z [INFO] user-service - Auth event: login_success - User: user_1019 - IP: 192.168.53.133 - RequestID: xrj3ioyxnpl +2025-06-18T14:51:40.381Z [DEBUG] user-service - Operation: cache_miss - Processing time: 248ms - RequestID: mart17861 +2025-06-18T14:51:40.481Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 502 - Response time: 843ms - IP: 192.168.196.226 - User: user_1012 - RequestID: p3yyft7ejnb +2025-06-18T14:51:40.581Z [DEBUG] notification-service - Database DELETE on users - Execution time: 442ms - Rows affected: 76 - RequestID: 35nank0xil2 +2025-06-18T14:51:40.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.247.134 - RequestID: t8ky0ewim8e +2025-06-18T14:51:40.781Z [INFO] user-service - Database UPDATE on sessions - Execution time: 486ms - Rows affected: 22 - RequestID: 79dfgm6cg3d +2025-06-18T14:51:40.881Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 502 - Response time: 1717ms - IP: 192.168.227.77 - User: user_1020 - RequestID: y9ddgzd8rd +2025-06-18T14:51:40.981Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 87ms - Rows affected: 88 - RequestID: zn2z7ix1ihr +2025-06-18T14:51:41.081Z [INFO] payment-service - DELETE /api/v1/orders - Status: 400 - Response time: 1818ms - IP: 192.168.194.41 - User: user_1060 - RequestID: o5rwcj9a7ss +2025-06-18T14:51:41.181Z [INFO] order-service - Operation: inventory_updated - Processing time: 856ms - RequestID: molincx4yie +2025-06-18T14:51:41.281Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 201 - Response time: 1357ms - IP: 192.168.68.128 - User: user_1027 - RequestID: rj7mpn3gec +2025-06-18T14:51:41.381Z [TRACE] inventory-service - Auth event: logout - User: user_1056 - IP: 192.168.79.116 - RequestID: g9sbijs3gnw +2025-06-18T14:51:41.481Z [TRACE] user-service - PUT /api/v1/inventory - Status: 502 - Response time: 1568ms - IP: 192.168.181.225 - User: user_1020 - RequestID: iqymvwh8b +2025-06-18T14:51:41.581Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 300ms - Rows affected: 58 - RequestID: aia018lboqk +2025-06-18T14:51:41.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.36.218 - RequestID: m45224ip4u +2025-06-18T14:51:41.781Z [TRACE] inventory-service - Database INSERT on users - Execution time: 154ms - Rows affected: 11 - RequestID: 7ztw5kqic9p +2025-06-18T14:51:41.881Z [INFO] notification-service - Operation: notification_queued - Processing time: 373ms - RequestID: 4u46o85v0vc +2025-06-18T14:51:41.981Z [INFO] auth-service - Auth event: logout - User: user_1075 - IP: 192.168.64.33 - RequestID: 4kconw8fd0l +2025-06-18T14:51:42.081Z [INFO] notification-service - Database UPDATE on users - Execution time: 382ms - Rows affected: 87 - RequestID: cby1ny1ki +2025-06-18T14:51:42.181Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1027ms - IP: 192.168.44.5 - User: user_1031 - RequestID: 6wz4iqzqz4b +2025-06-18T14:51:42.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.174.114 - RequestID: 2sgmsho3byf +2025-06-18T14:51:42.381Z [TRACE] user-service - Database SELECT on orders - Execution time: 242ms - Rows affected: 23 - RequestID: 9z6sd783f7m +2025-06-18T14:51:42.481Z [TRACE] payment-service - Auth event: password_change - User: user_1016 - IP: 192.168.227.233 - RequestID: u9qw6spvgja +2025-06-18T14:51:42.581Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 200 - Response time: 1516ms - IP: 192.168.44.5 - User: user_1087 - RequestID: alnc1y6t6d +2025-06-18T14:51:42.681Z [INFO] auth-service - DELETE /api/v1/orders - Status: 403 - Response time: 1506ms - IP: 192.168.242.165 - User: user_1076 - RequestID: ag523w7q8ua +2025-06-18T14:51:42.781Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 401 - Response time: 637ms - IP: 192.168.13.72 - User: user_1018 - RequestID: hf1o4ki21h +2025-06-18T14:51:42.881Z [DEBUG] notification-service - Auth event: login_failed - User: user_1074 - IP: 192.168.81.206 - RequestID: c19fbdxd4er +2025-06-18T14:51:42.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.240.169 - RequestID: gvyffd5sqh +2025-06-18T14:51:43.081Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 502 - Response time: 2004ms - IP: 192.168.227.233 - User: user_1040 - RequestID: ct9hvqgcq1d +2025-06-18T14:51:43.181Z [INFO] inventory-service - Auth event: login_failed - User: user_1055 - IP: 192.168.189.103 - RequestID: puj39u4gv1 +2025-06-18T14:51:43.281Z [INFO] auth-service - Operation: webhook_sent - Processing time: 146ms - RequestID: 10wkznwwvrpi +2025-06-18T14:51:43.381Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 304ms - RequestID: a1cmzhyaa8v +2025-06-18T14:51:43.481Z [INFO] notification-service - Database UPDATE on users - Execution time: 452ms - Rows affected: 3 - RequestID: zjl4gdhrcrs +2025-06-18T14:51:43.581Z [INFO] payment-service - Database UPDATE on payments - Execution time: 446ms - Rows affected: 26 - RequestID: rbzi8qkcenp +2025-06-18T14:51:43.681Z [DEBUG] auth-service - Database INSERT on products - Execution time: 114ms - Rows affected: 85 - RequestID: w3y8fj0j1l +2025-06-18T14:51:43.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1082 - IP: 192.168.235.117 - RequestID: 77659ox5ahh +2025-06-18T14:51:43.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1095 - IP: 192.168.97.87 - RequestID: qk5gvilg3x9 +2025-06-18T14:51:43.981Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 61ms - RequestID: s6tt2bptjwb +2025-06-18T14:51:44.081Z [TRACE] auth-service - Auth event: login_success - User: user_1066 - IP: 192.168.159.94 - RequestID: jcns0iijbf +2025-06-18T14:51:44.181Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1284ms - IP: 192.168.187.199 - User: user_1009 - RequestID: ek55u9l1khe +2025-06-18T14:51:44.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.85.229 - RequestID: cbfwef8p2de +2025-06-18T14:51:44.381Z [INFO] notification-service - Database INSERT on payments - Execution time: 148ms - Rows affected: 61 - RequestID: 4mhskgrydgd +2025-06-18T14:51:44.481Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 102ms - Rows affected: 82 - RequestID: 52siyr0wi3 +2025-06-18T14:51:44.581Z [DEBUG] user-service - Operation: payment_processed - Processing time: 397ms - RequestID: y042d4km98g +2025-06-18T14:51:44.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1036 - IP: 192.168.189.103 - RequestID: dqslrb5p0zb +2025-06-18T14:51:44.781Z [INFO] payment-service - Auth event: login_failed - User: user_1010 - IP: 192.168.36.218 - RequestID: v5eyy4496h +2025-06-18T14:51:44.881Z [TRACE] user-service - Database DELETE on orders - Execution time: 490ms - Rows affected: 65 - RequestID: rqe4dwtga3 +2025-06-18T14:51:44.981Z [INFO] notification-service - Operation: email_sent - Processing time: 693ms - RequestID: wu1vnxbjvmj +2025-06-18T14:51:45.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1007 - IP: 192.168.189.103 - RequestID: ocos1oydf8 +2025-06-18T14:51:45.181Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 500 - Response time: 1436ms - IP: 192.168.211.72 - User: user_1038 - RequestID: l9510ofb9a +2025-06-18T14:51:45.281Z [INFO] auth-service - DELETE /api/v1/users - Status: 500 - Response time: 1753ms - IP: 192.168.44.5 - User: user_1004 - RequestID: 899j4zwuz8b +2025-06-18T14:51:45.381Z [INFO] order-service - Operation: email_sent - Processing time: 380ms - RequestID: lgaqwvij1pn +2025-06-18T14:51:45.481Z [INFO] payment-service - Database INSERT on payments - Execution time: 418ms - Rows affected: 91 - RequestID: 71zoose4gov +2025-06-18T14:51:45.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 751ms - RequestID: pvhcdhb75fp +2025-06-18T14:51:45.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.187.199 - RequestID: 7qsdwykbtor +2025-06-18T14:51:45.781Z [INFO] order-service - Operation: webhook_sent - Processing time: 217ms - RequestID: ozfvk67iqhe +2025-06-18T14:51:45.881Z [TRACE] payment-service - Operation: email_sent - Processing time: 1006ms - RequestID: 1xrclazcme8 +2025-06-18T14:51:45.981Z [TRACE] payment-service - GET /api/v1/orders - Status: 500 - Response time: 123ms - IP: 192.168.196.226 - User: user_1043 - RequestID: 82e57c5p8ti +2025-06-18T14:51:46.081Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 953ms - IP: 192.168.79.141 - User: user_1013 - RequestID: j4o6i31yg2s +2025-06-18T14:51:46.181Z [DEBUG] user-service - POST /api/v1/payments - Status: 401 - Response time: 1531ms - IP: 192.168.68.158 - User: user_1041 - RequestID: f6tno8ozjzk +2025-06-18T14:51:46.281Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 200 - Response time: 1430ms - IP: 192.168.36.218 - User: user_1004 - RequestID: m6orjiisq1 +2025-06-18T14:51:46.381Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 500 - Response time: 536ms - IP: 192.168.36.218 - User: user_1003 - RequestID: bkpfox2rflt +2025-06-18T14:51:46.481Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 141ms - Rows affected: 52 - RequestID: zyoh3xs7ntg +2025-06-18T14:51:46.581Z [TRACE] auth-service - Auth event: logout - User: user_1061 - IP: 192.168.100.240 - RequestID: 86j3lnrkkbu +2025-06-18T14:51:46.681Z [INFO] inventory-service - Operation: cache_miss - Processing time: 409ms - RequestID: xkv7u6f07s +2025-06-18T14:51:46.781Z [DEBUG] order-service - Database DELETE on users - Execution time: 224ms - Rows affected: 21 - RequestID: 3jt8v4e13yf +2025-06-18T14:51:46.881Z [INFO] user-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.85.229 - RequestID: prdgjbyn8ck +2025-06-18T14:51:46.981Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 511ms - RequestID: 88ue0x64db +2025-06-18T14:51:47.081Z [INFO] user-service - Database INSERT on payments - Execution time: 434ms - Rows affected: 39 - RequestID: 973v8jd7vzw +2025-06-18T14:51:47.181Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 369ms - Rows affected: 16 - RequestID: 0l25huu53i6 +2025-06-18T14:51:47.281Z [INFO] auth-service - GET /api/v1/payments - Status: 201 - Response time: 325ms - IP: 192.168.133.7 - User: user_1014 - RequestID: aohmij07zdj +2025-06-18T14:51:47.381Z [TRACE] order-service - Auth event: login_success - User: user_1036 - IP: 192.168.79.141 - RequestID: hes7tbxpxzq +2025-06-18T14:51:47.481Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 503 - Response time: 514ms - IP: 192.168.97.87 - User: user_1070 - RequestID: 6nk3pmbzw98 +2025-06-18T14:51:47.581Z [TRACE] order-service - Auth event: login_failed - User: user_1085 - IP: 192.168.68.158 - RequestID: 65fncdfeard +2025-06-18T14:51:47.681Z [DEBUG] user-service - Operation: email_sent - Processing time: 182ms - RequestID: wsn6pvnhe4c +2025-06-18T14:51:47.781Z [DEBUG] user-service - Database INSERT on orders - Execution time: 389ms - Rows affected: 7 - RequestID: w0qt060gtyj +2025-06-18T14:51:47.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.30.79 - RequestID: f8cs2gqc38 +2025-06-18T14:51:47.981Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 368ms - Rows affected: 4 - RequestID: 3v9w3rrgvph +2025-06-18T14:51:48.081Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 197ms - Rows affected: 70 - RequestID: j3ragam0g8 +2025-06-18T14:51:48.181Z [TRACE] payment-service - PATCH /api/v1/users - Status: 200 - Response time: 887ms - IP: 192.168.53.133 - User: user_1022 - RequestID: iyzed3pjmpm +2025-06-18T14:51:48.281Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1756ms - IP: 192.168.138.123 - User: user_1075 - RequestID: owwtbb6nrrm +2025-06-18T14:51:48.381Z [DEBUG] order-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.10.184 - RequestID: 0ad8y34iaps +2025-06-18T14:51:48.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1081 - IP: 192.168.189.103 - RequestID: pv90awmv72 +2025-06-18T14:51:48.581Z [INFO] notification-service - Database UPDATE on products - Execution time: 139ms - Rows affected: 12 - RequestID: wfzhrjg1mpo +2025-06-18T14:51:48.681Z [DEBUG] inventory-service - Auth event: login_success - User: user_1014 - IP: 192.168.44.5 - RequestID: v3bujjbwb6q +2025-06-18T14:51:48.781Z [INFO] order-service - Operation: payment_processed - Processing time: 962ms - RequestID: 5dsru9xz69p +2025-06-18T14:51:48.881Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 109ms - Rows affected: 67 - RequestID: 6pq1upjaffe +2025-06-18T14:51:48.981Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 404 - Response time: 1374ms - IP: 192.168.13.72 - User: user_1041 - RequestID: yq4kzog0ifd +2025-06-18T14:51:49.081Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 240ms - Rows affected: 51 - RequestID: 8kog1uvyve +2025-06-18T14:51:49.181Z [INFO] payment-service - Auth event: password_change - User: user_1099 - IP: 192.168.33.76 - RequestID: r7558nmrqpn +2025-06-18T14:51:49.281Z [TRACE] order-service - Operation: inventory_updated - Processing time: 997ms - RequestID: 5xvdavg880j +2025-06-18T14:51:49.381Z [DEBUG] user-service - Auth event: login_success - User: user_1040 - IP: 192.168.1.152 - RequestID: 3zf1zg62259 +2025-06-18T14:51:49.481Z [INFO] order-service - Operation: webhook_sent - Processing time: 849ms - RequestID: bj406f3p0p +2025-06-18T14:51:49.581Z [INFO] notification-service - Auth event: password_change - User: user_1056 - IP: 192.168.147.171 - RequestID: 6bbj7bec8zf +2025-06-18T14:51:49.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.242.165 - RequestID: euel5olcyno +2025-06-18T14:51:49.781Z [DEBUG] user-service - Database DELETE on orders - Execution time: 327ms - Rows affected: 16 - RequestID: 5ritirjt9c3 +2025-06-18T14:51:49.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.68.128 - RequestID: 6jqsdhkswfc +2025-06-18T14:51:49.981Z [TRACE] order-service - Operation: webhook_sent - Processing time: 512ms - RequestID: pnoj3l82p9j +2025-06-18T14:51:50.081Z [DEBUG] auth-service - Database SELECT on products - Execution time: 60ms - Rows affected: 80 - RequestID: zzx2cvjr5ms +2025-06-18T14:51:50.181Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 1ms - Rows affected: 44 - RequestID: c4vd2ds70w7 +2025-06-18T14:51:50.281Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 1046ms - RequestID: wr76ztrfak +2025-06-18T14:51:50.381Z [DEBUG] auth-service - Database SELECT on users - Execution time: 257ms - Rows affected: 75 - RequestID: cyh4fwqprza +2025-06-18T14:51:50.481Z [INFO] user-service - POST /api/v1/users - Status: 503 - Response time: 972ms - IP: 192.168.235.117 - User: user_1039 - RequestID: zdr4o2twthg +2025-06-18T14:51:50.581Z [TRACE] order-service - Database DELETE on sessions - Execution time: 213ms - Rows affected: 34 - RequestID: 2zegv4o3zd7 +2025-06-18T14:51:50.681Z [DEBUG] inventory-service - Auth event: password_change - User: user_1013 - IP: 192.168.64.33 - RequestID: 54stm7vxco7 +2025-06-18T14:51:50.781Z [DEBUG] user-service - Operation: order_created - Processing time: 818ms - RequestID: 2ak71f7qpij +2025-06-18T14:51:50.881Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 393ms - Rows affected: 53 - RequestID: g844tj6qz66 +2025-06-18T14:51:50.981Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 214ms - Rows affected: 9 - RequestID: 9vsco8z2k08 +2025-06-18T14:51:51.081Z [DEBUG] order-service - Operation: email_sent - Processing time: 727ms - RequestID: xx2wic1yu2e +2025-06-18T14:51:51.181Z [DEBUG] user-service - Operation: notification_queued - Processing time: 900ms - RequestID: 3ndidjdhe77 +2025-06-18T14:51:51.281Z [INFO] payment-service - Database UPDATE on payments - Execution time: 230ms - Rows affected: 67 - RequestID: v3jusyilbwp +2025-06-18T14:51:51.381Z [TRACE] notification-service - Auth event: password_change - User: user_1071 - IP: 192.168.32.38 - RequestID: jr7x6xkgjxh +2025-06-18T14:51:51.481Z [INFO] payment-service - Operation: email_sent - Processing time: 455ms - RequestID: o4j3r3nve7j +2025-06-18T14:51:51.581Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 315ms - Rows affected: 60 - RequestID: 7iyrd42yp17 +2025-06-18T14:51:51.681Z [INFO] payment-service - Auth event: logout - User: user_1062 - IP: 192.168.79.143 - RequestID: tpog4xmylan +2025-06-18T14:51:51.781Z [INFO] order-service - Database INSERT on products - Execution time: 29ms - Rows affected: 49 - RequestID: y4sifwiyesc +2025-06-18T14:51:51.881Z [INFO] payment-service - Auth event: login_success - User: user_1053 - IP: 192.168.138.123 - RequestID: 0lihwjagmzr +2025-06-18T14:51:51.981Z [DEBUG] order-service - Auth event: login_success - User: user_1079 - IP: 192.168.85.229 - RequestID: c0qnapsc855 +2025-06-18T14:51:52.081Z [TRACE] order-service - POST /api/v1/auth/login - Status: 500 - Response time: 291ms - IP: 192.168.113.218 - User: user_1056 - RequestID: ot5ovdzj0tc +2025-06-18T14:51:52.181Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 383ms - RequestID: wqyhghrxjrb +2025-06-18T14:51:52.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1019 - IP: 192.168.97.87 - RequestID: ee5olqkwk4w +2025-06-18T14:51:52.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.229.123 - RequestID: n3ge08ctak9 +2025-06-18T14:51:52.481Z [DEBUG] order-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.144.38 - RequestID: 1zj1yjc7w2y +2025-06-18T14:51:52.581Z [TRACE] auth-service - Database INSERT on orders - Execution time: 159ms - Rows affected: 27 - RequestID: iowzotcy7kr +2025-06-18T14:51:52.681Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 32ms - Rows affected: 3 - RequestID: u56wrgqviia +2025-06-18T14:51:52.781Z [DEBUG] payment-service - Operation: email_sent - Processing time: 663ms - RequestID: v8qiw41tpxb +2025-06-18T14:51:52.881Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.170.215 - RequestID: 838ks1ldoob +2025-06-18T14:51:52.981Z [INFO] user-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.85.229 - RequestID: 55nl9211zdr +2025-06-18T14:51:53.081Z [TRACE] notification-service - GET /api/v1/inventory - Status: 200 - Response time: 1593ms - IP: 192.168.227.77 - User: user_1063 - RequestID: zy55ocdxdhb +2025-06-18T14:51:53.181Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 401 - Response time: 910ms - IP: 192.168.104.37 - User: user_1076 - RequestID: h386gx7nl8 +2025-06-18T14:51:53.281Z [TRACE] auth-service - Database INSERT on orders - Execution time: 280ms - Rows affected: 1 - RequestID: dxqax71iqiu +2025-06-18T14:51:53.381Z [DEBUG] order-service - Operation: notification_queued - Processing time: 917ms - RequestID: d6k0qyho7j8 +2025-06-18T14:51:53.481Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 403 - Response time: 735ms - IP: 192.168.113.218 - User: user_1087 - RequestID: brt66lc7gz +2025-06-18T14:51:53.581Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1281ms - IP: 192.168.36.218 - User: user_1095 - RequestID: dpdot0e0mzj +2025-06-18T14:51:53.681Z [INFO] payment-service - PATCH /api/v1/payments - Status: 403 - Response time: 708ms - IP: 192.168.133.7 - User: user_1049 - RequestID: d8g83a1regn +2025-06-18T14:51:53.781Z [INFO] user-service - POST /api/v1/inventory - Status: 500 - Response time: 1736ms - IP: 192.168.68.128 - User: user_1091 - RequestID: dzbqryzayv5 +2025-06-18T14:51:53.881Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.159.94 - RequestID: d8i07clzsod +2025-06-18T14:51:53.981Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 916ms - RequestID: 3z3kcxn9r1e +2025-06-18T14:51:54.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.30.79 - RequestID: y2kc6j6k6hp +2025-06-18T14:51:54.181Z [INFO] inventory-service - Operation: email_sent - Processing time: 403ms - RequestID: knaknxprrjl +2025-06-18T14:51:54.281Z [INFO] user-service - DELETE /api/v1/orders - Status: 503 - Response time: 1140ms - IP: 192.168.229.123 - User: user_1068 - RequestID: 5bjk0cksv57 +2025-06-18T14:51:54.381Z [DEBUG] order-service - Database SELECT on users - Execution time: 368ms - Rows affected: 15 - RequestID: 55j5flaz8xl +2025-06-18T14:51:54.481Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 147ms - IP: 192.168.28.146 - User: user_1030 - RequestID: vxynpj1pdia +2025-06-18T14:51:54.581Z [DEBUG] user-service - PATCH /api/v1/users - Status: 404 - Response time: 717ms - IP: 192.168.227.233 - User: user_1044 - RequestID: w1g6styaqt +2025-06-18T14:51:54.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1043 - IP: 192.168.100.240 - RequestID: q85x8248q4n +2025-06-18T14:51:54.781Z [INFO] inventory-service - POST /api/v1/inventory - Status: 404 - Response time: 153ms - IP: 192.168.32.38 - User: user_1010 - RequestID: yt8caxrnn4 +2025-06-18T14:51:54.881Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.68.128 - RequestID: gb2sg49kxrw +2025-06-18T14:51:54.981Z [INFO] notification-service - Auth event: login_failed - User: user_1020 - IP: 192.168.235.117 - RequestID: aip1o9cc83e +2025-06-18T14:51:55.081Z [INFO] payment-service - Database INSERT on orders - Execution time: 424ms - Rows affected: 17 - RequestID: sr2qwjvzhi +2025-06-18T14:51:55.181Z [DEBUG] notification-service - POST /api/v1/orders - Status: 200 - Response time: 233ms - IP: 192.168.242.165 - User: user_1065 - RequestID: 7etl58o5op2 +2025-06-18T14:51:55.281Z [TRACE] inventory-service - Auth event: password_change - User: user_1032 - IP: 192.168.1.152 - RequestID: kvyud9qgfmj +2025-06-18T14:51:55.381Z [TRACE] user-service - Auth event: login_failed - User: user_1026 - IP: 192.168.64.33 - RequestID: 5x8q8fj0c36 +2025-06-18T14:51:55.481Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 483ms - Rows affected: 63 - RequestID: ynxq9gx3e1 +2025-06-18T14:51:55.581Z [INFO] payment-service - POST /api/v1/payments - Status: 403 - Response time: 553ms - IP: 192.168.194.41 - User: user_1035 - RequestID: e672m0pini +2025-06-18T14:51:55.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 715ms - RequestID: t9xpcs0v0km +2025-06-18T14:51:55.781Z [INFO] notification-service - Auth event: login_failed - User: user_1060 - IP: 192.168.235.117 - RequestID: yhv2wj9of2p +2025-06-18T14:51:55.881Z [DEBUG] payment-service - Auth event: logout - User: user_1078 - IP: 192.168.64.33 - RequestID: wz4h8vsn82 +2025-06-18T14:51:55.981Z [INFO] inventory-service - Operation: order_created - Processing time: 420ms - RequestID: 3w59md1ywir +2025-06-18T14:51:56.081Z [INFO] auth-service - Operation: cache_miss - Processing time: 729ms - RequestID: 41xl4wvjqt2 +2025-06-18T14:51:56.181Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 594ms - RequestID: pbx4qokscfh +2025-06-18T14:51:56.281Z [INFO] user-service - Auth event: login_success - User: user_1067 - IP: 192.168.167.32 - RequestID: tllizj3ju1k +2025-06-18T14:51:56.381Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 404 - Response time: 1263ms - IP: 192.168.229.123 - User: user_1019 - RequestID: uzdfk38m9hr +2025-06-18T14:51:56.481Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 738ms - RequestID: udvjwt08xoa +2025-06-18T14:51:56.581Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 479ms - Rows affected: 96 - RequestID: bnm5fw9at6t +2025-06-18T14:51:56.681Z [TRACE] order-service - Auth event: logout - User: user_1098 - IP: 192.168.97.87 - RequestID: 520q46fkw4x +2025-06-18T14:51:56.781Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 334ms - Rows affected: 53 - RequestID: ogz5ukol07 +2025-06-18T14:51:56.881Z [INFO] order-service - Database UPDATE on users - Execution time: 316ms - Rows affected: 39 - RequestID: mlx04uoow2 +2025-06-18T14:51:56.981Z [INFO] auth-service - GET /api/v1/users - Status: 503 - Response time: 390ms - IP: 192.168.242.165 - User: user_1055 - RequestID: vum5mc0gm2k +2025-06-18T14:51:57.081Z [DEBUG] user-service - Database DELETE on payments - Execution time: 207ms - Rows affected: 8 - RequestID: 3ukvwfe1z3j +2025-06-18T14:51:57.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1070 - IP: 192.168.44.5 - RequestID: l97mx3yf23f +2025-06-18T14:51:57.281Z [INFO] inventory-service - Database SELECT on products - Execution time: 92ms - Rows affected: 6 - RequestID: j5d6k5zgva +2025-06-18T14:51:57.381Z [INFO] payment-service - Auth event: login_failed - User: user_1068 - IP: 192.168.53.133 - RequestID: ngdnu3gvgtj +2025-06-18T14:51:57.481Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 873ms - RequestID: zpnmcd3oe1g +2025-06-18T14:51:57.581Z [TRACE] payment-service - Auth event: password_change - User: user_1098 - IP: 192.168.30.79 - RequestID: hfhwsmtlgn4 +2025-06-18T14:51:57.681Z [TRACE] inventory-service - Auth event: logout - User: user_1003 - IP: 192.168.68.128 - RequestID: k076agyr1b +2025-06-18T14:51:57.781Z [DEBUG] order-service - Database SELECT on orders - Execution time: 230ms - Rows affected: 44 - RequestID: 9ehl2is3qfv +2025-06-18T14:51:57.881Z [DEBUG] order-service - Operation: cache_hit - Processing time: 747ms - RequestID: sizif5bayd +2025-06-18T14:51:57.981Z [INFO] order-service - Database INSERT on sessions - Execution time: 170ms - Rows affected: 50 - RequestID: d26967f315 +2025-06-18T14:51:58.081Z [TRACE] user-service - GET /api/v1/auth/login - Status: 503 - Response time: 57ms - IP: 192.168.14.77 - User: user_1001 - RequestID: 2weiki6s1ni +2025-06-18T14:51:58.181Z [INFO] order-service - Operation: cache_hit - Processing time: 684ms - RequestID: zcqnp26y1b9 +2025-06-18T14:51:58.281Z [INFO] user-service - DELETE /api/v1/orders - Status: 201 - Response time: 601ms - IP: 192.168.227.77 - User: user_1002 - RequestID: s1ogn12kym +2025-06-18T14:51:58.381Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 796ms - RequestID: oofy4nwielb +2025-06-18T14:51:58.481Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 200 - Response time: 248ms - IP: 192.168.247.134 - User: user_1017 - RequestID: b8tuzwh2n27 +2025-06-18T14:51:58.581Z [INFO] notification-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.235.117 - RequestID: qyrs17s06h +2025-06-18T14:51:58.681Z [INFO] order-service - GET /api/v1/payments - Status: 403 - Response time: 885ms - IP: 192.168.240.169 - User: user_1060 - RequestID: 2icy6vf1haw +2025-06-18T14:51:58.781Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 759ms - RequestID: 2szdizqivdu +2025-06-18T14:51:58.881Z [INFO] payment-service - Operation: cache_miss - Processing time: 280ms - RequestID: 7ewy7yhq3ia +2025-06-18T14:51:58.981Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.10.184 - RequestID: 4df2fmsgl13 +2025-06-18T14:51:59.081Z [TRACE] user-service - Auth event: login_success - User: user_1076 - IP: 192.168.189.103 - RequestID: t9l9p458sb +2025-06-18T14:51:59.181Z [TRACE] order-service - Auth event: login_failed - User: user_1027 - IP: 192.168.46.63 - RequestID: zznrkwhxuis +2025-06-18T14:51:59.281Z [INFO] user-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.14.77 - RequestID: sp3ywd9ts6s +2025-06-18T14:51:59.381Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 201 - Response time: 603ms - IP: 192.168.247.134 - User: user_1097 - RequestID: g522dclahqa +2025-06-18T14:51:59.481Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 416ms - RequestID: h5er50uv0rq +2025-06-18T14:51:59.581Z [TRACE] notification-service - Database UPDATE on products - Execution time: 230ms - Rows affected: 75 - RequestID: 4e9u5ukcosj +2025-06-18T14:51:59.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1066 - IP: 192.168.174.114 - RequestID: qj4ww52ao +2025-06-18T14:51:59.781Z [DEBUG] user-service - Operation: email_sent - Processing time: 111ms - RequestID: f16s2z0z9zk +2025-06-18T14:51:59.881Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1611ms - IP: 192.168.167.32 - User: user_1069 - RequestID: tan4149m04c +2025-06-18T14:51:59.981Z [TRACE] auth-service - Operation: notification_queued - Processing time: 451ms - RequestID: jxnm9tmkgr +2025-06-18T14:52:00.081Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 555ms - IP: 192.168.31.117 - User: user_1092 - RequestID: q1tvtjiojne +2025-06-18T14:52:00.181Z [INFO] order-service - Database DELETE on payments - Execution time: 102ms - Rows affected: 92 - RequestID: ila65p0wdg +2025-06-18T14:52:00.281Z [INFO] order-service - Database UPDATE on payments - Execution time: 185ms - Rows affected: 36 - RequestID: lhokqncs5rh +2025-06-18T14:52:00.381Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1093 - IP: 192.168.174.114 - RequestID: 6hvmviujsqf +2025-06-18T14:52:00.481Z [TRACE] user-service - Auth event: logout - User: user_1032 - IP: 192.168.31.117 - RequestID: 4qn07objb19 +2025-06-18T14:52:00.581Z [DEBUG] user-service - Auth event: password_change - User: user_1009 - IP: 192.168.10.184 - RequestID: s461igzrs5r +2025-06-18T14:52:00.681Z [INFO] auth-service - Operation: webhook_sent - Processing time: 226ms - RequestID: 1dy2uh5xupr +2025-06-18T14:52:00.781Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 490ms - Rows affected: 15 - RequestID: v5tgkpn7z9 +2025-06-18T14:52:00.881Z [INFO] notification-service - Database DELETE on payments - Execution time: 351ms - Rows affected: 0 - RequestID: ojy088zqb0m +2025-06-18T14:52:00.981Z [INFO] notification-service - PATCH /api/v1/orders - Status: 403 - Response time: 1104ms - IP: 192.168.174.114 - User: user_1001 - RequestID: 2efmapphj33 +2025-06-18T14:52:01.081Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 337ms - Rows affected: 90 - RequestID: 2n7h7drsi07 +2025-06-18T14:52:01.181Z [INFO] user-service - Operation: email_sent - Processing time: 96ms - RequestID: nyaeyh9mv5j +2025-06-18T14:52:01.281Z [INFO] payment-service - Database INSERT on sessions - Execution time: 331ms - Rows affected: 62 - RequestID: tlfiikh8ph +2025-06-18T14:52:01.381Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 445ms - Rows affected: 1 - RequestID: qgu7rvizue +2025-06-18T14:52:01.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1079 - IP: 192.168.113.218 - RequestID: n2b4sp5ugpi +2025-06-18T14:52:01.581Z [DEBUG] order-service - Operation: payment_processed - Processing time: 181ms - RequestID: ndivcswhlac +2025-06-18T14:52:01.681Z [TRACE] user-service - Database DELETE on payments - Execution time: 224ms - Rows affected: 85 - RequestID: 01dfxa7fsena +2025-06-18T14:52:01.781Z [INFO] auth-service - POST /api/v1/inventory - Status: 400 - Response time: 323ms - IP: 192.168.79.116 - User: user_1094 - RequestID: p79o3zjhtob +2025-06-18T14:52:01.881Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 195ms - Rows affected: 7 - RequestID: mzlhbfqahkd +2025-06-18T14:52:01.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1016 - IP: 192.168.11.60 - RequestID: r2m7sngz7n +2025-06-18T14:52:02.081Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1273ms - IP: 192.168.240.169 - User: user_1034 - RequestID: gau0wf2i4nv +2025-06-18T14:52:02.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1034 - IP: 192.168.30.79 - RequestID: sytdq3c2e2 +2025-06-18T14:52:02.281Z [DEBUG] user-service - Operation: payment_processed - Processing time: 168ms - RequestID: 7icsj437s7p +2025-06-18T14:52:02.381Z [TRACE] payment-service - Auth event: password_change - User: user_1033 - IP: 192.168.13.72 - RequestID: 82cper0o1bd +2025-06-18T14:52:02.481Z [INFO] order-service - Auth event: password_change - User: user_1097 - IP: 192.168.242.165 - RequestID: z87du72bpz +2025-06-18T14:52:02.581Z [DEBUG] inventory-service - Operation: order_created - Processing time: 857ms - RequestID: gqnskl3isrp +2025-06-18T14:52:02.681Z [DEBUG] order-service - Database DELETE on products - Execution time: 438ms - Rows affected: 32 - RequestID: zaitk66t7e +2025-06-18T14:52:02.781Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 301ms - IP: 192.168.247.134 - User: user_1084 - RequestID: sagpt7d5qu +2025-06-18T14:52:02.881Z [INFO] payment-service - Operation: notification_queued - Processing time: 1013ms - RequestID: 4xxjwl2rsvd +2025-06-18T14:52:02.981Z [DEBUG] order-service - Database DELETE on users - Execution time: 245ms - Rows affected: 79 - RequestID: 3wnqdvyc0so +2025-06-18T14:52:03.081Z [DEBUG] user-service - PUT /api/v1/users - Status: 400 - Response time: 667ms - IP: 192.168.158.144 - User: user_1040 - RequestID: ntq38kft27 +2025-06-18T14:52:03.181Z [INFO] inventory-service - Operation: cache_hit - Processing time: 493ms - RequestID: idndfee30os +2025-06-18T14:52:03.281Z [INFO] user-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1450ms - IP: 192.168.44.5 - User: user_1011 - RequestID: d74o6g50d1p +2025-06-18T14:52:03.381Z [TRACE] payment-service - Auth event: password_change - User: user_1075 - IP: 192.168.64.33 - RequestID: ofodpbn33a +2025-06-18T14:52:03.481Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 863ms - RequestID: colyto4ax4s +2025-06-18T14:52:03.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.196.226 - RequestID: 3jm2qam357a +2025-06-18T14:52:03.681Z [TRACE] notification-service - Operation: cache_miss - Processing time: 789ms - RequestID: hj13a0rldds +2025-06-18T14:52:03.781Z [TRACE] user-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.196.226 - RequestID: lmppaxk90fd +2025-06-18T14:52:03.881Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1270ms - IP: 192.168.68.158 - User: user_1083 - RequestID: gvp33kr9ct +2025-06-18T14:52:03.981Z [INFO] user-service - Database UPDATE on products - Execution time: 460ms - Rows affected: 39 - RequestID: d6atbso4y09 +2025-06-18T14:52:04.081Z [DEBUG] order-service - PATCH /api/v1/users - Status: 500 - Response time: 54ms - IP: 192.168.227.77 - User: user_1090 - RequestID: k8nwkt3q41 +2025-06-18T14:52:04.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.44.5 - RequestID: uty6m1b7ta +2025-06-18T14:52:04.281Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 303ms - Rows affected: 73 - RequestID: 1fds1g6rspl +2025-06-18T14:52:04.381Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 986ms - RequestID: xqv3j4bztzh +2025-06-18T14:52:04.481Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 347ms - Rows affected: 98 - RequestID: 8bfiivjajl8 +2025-06-18T14:52:04.581Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 187ms - Rows affected: 49 - RequestID: rnps0ig1v2a +2025-06-18T14:52:04.681Z [INFO] payment-service - Operation: webhook_sent - Processing time: 140ms - RequestID: 43dwib70olt +2025-06-18T14:52:04.781Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 39ms - Rows affected: 80 - RequestID: hu0i6smo8yv +2025-06-18T14:52:04.881Z [INFO] auth-service - POST /api/v1/users - Status: 502 - Response time: 510ms - IP: 192.168.97.87 - User: user_1097 - RequestID: 9kxmaq4ku9c +2025-06-18T14:52:04.981Z [TRACE] order-service - Operation: inventory_updated - Processing time: 441ms - RequestID: tgk9l61vxm +2025-06-18T14:52:05.081Z [INFO] user-service - Database DELETE on sessions - Execution time: 241ms - Rows affected: 20 - RequestID: h1zcxwazj6 +2025-06-18T14:52:05.181Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 403 - Response time: 125ms - IP: 192.168.181.225 - User: user_1098 - RequestID: he10gq5mena +2025-06-18T14:52:05.281Z [DEBUG] order-service - Database SELECT on products - Execution time: 369ms - Rows affected: 1 - RequestID: pw75db5nuid +2025-06-18T14:52:05.381Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 406ms - IP: 192.168.79.116 - User: user_1075 - RequestID: t7tzk63oeoi +2025-06-18T14:52:05.481Z [DEBUG] user-service - GET /api/v1/inventory - Status: 201 - Response time: 185ms - IP: 192.168.46.63 - User: user_1073 - RequestID: fsq7aoapvwt +2025-06-18T14:52:05.581Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 405ms - Rows affected: 2 - RequestID: 4mt5ehsdrpc +2025-06-18T14:52:05.681Z [INFO] user-service - DELETE /api/v1/inventory - Status: 201 - Response time: 552ms - IP: 192.168.1.152 - User: user_1059 - RequestID: xgrpt9i85c +2025-06-18T14:52:05.781Z [INFO] payment-service - Database INSERT on users - Execution time: 199ms - Rows affected: 41 - RequestID: 9zn5539829u +2025-06-18T14:52:05.881Z [TRACE] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 281ms - IP: 192.168.81.206 - User: user_1011 - RequestID: bexdykzhbl +2025-06-18T14:52:05.981Z [INFO] notification-service - GET /api/v1/auth/login - Status: 500 - Response time: 1882ms - IP: 192.168.10.184 - User: user_1061 - RequestID: i5ex58ynhmc +2025-06-18T14:52:06.081Z [DEBUG] user-service - Operation: order_created - Processing time: 856ms - RequestID: gfqcbzyclnl +2025-06-18T14:52:06.181Z [INFO] user-service - Database SELECT on users - Execution time: 325ms - Rows affected: 35 - RequestID: w5c0olagqik +2025-06-18T14:52:06.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.53.133 - RequestID: ddxdgs94ugk +2025-06-18T14:52:06.381Z [TRACE] user-service - GET /api/v1/payments - Status: 400 - Response time: 747ms - IP: 192.168.196.226 - User: user_1006 - RequestID: 3pfj8k349d2 +2025-06-18T14:52:06.481Z [INFO] inventory-service - Auth event: password_change - User: user_1080 - IP: 192.168.104.37 - RequestID: tefjk8oc0bb +2025-06-18T14:52:06.581Z [TRACE] order-service - Operation: order_created - Processing time: 127ms - RequestID: 82zajq3o3yj +2025-06-18T14:52:06.681Z [INFO] auth-service - Auth event: logout - User: user_1030 - IP: 192.168.81.206 - RequestID: jrae8ugnxk +2025-06-18T14:52:06.781Z [DEBUG] order-service - Database INSERT on orders - Execution time: 214ms - Rows affected: 62 - RequestID: gyumm5y18 +2025-06-18T14:52:06.881Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 79ms - Rows affected: 94 - RequestID: e7uy9ytalti +2025-06-18T14:52:06.981Z [DEBUG] user-service - Operation: cache_miss - Processing time: 277ms - RequestID: 4ef2146oamv +2025-06-18T14:52:07.081Z [INFO] payment-service - Operation: payment_processed - Processing time: 207ms - RequestID: yx5wre1enh +2025-06-18T14:52:07.181Z [DEBUG] payment-service - Auth event: logout - User: user_1071 - IP: 192.168.31.117 - RequestID: 0vtlxtkew5hg +2025-06-18T14:52:07.281Z [INFO] notification-service - Auth event: login_success - User: user_1080 - IP: 192.168.158.144 - RequestID: 3k9zojebt85 +2025-06-18T14:52:07.381Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 62ms - Rows affected: 38 - RequestID: djfk9r3nevg +2025-06-18T14:52:07.481Z [INFO] order-service - Auth event: password_change - User: user_1086 - IP: 192.168.187.199 - RequestID: b3f4tthrk5u +2025-06-18T14:52:07.581Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 494ms - Rows affected: 79 - RequestID: 1j0iykpkl1j +2025-06-18T14:52:07.681Z [INFO] payment-service - GET /api/v1/payments - Status: 401 - Response time: 1537ms - IP: 192.168.187.199 - User: user_1046 - RequestID: ecfj3j0rlb6 +2025-06-18T14:52:07.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 835ms - RequestID: efvlmuv2zbv +2025-06-18T14:52:07.881Z [INFO] order-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.1.152 - RequestID: h5zrqje5nlu +2025-06-18T14:52:07.981Z [INFO] notification-service - DELETE /api/v1/orders - Status: 503 - Response time: 511ms - IP: 192.168.167.32 - User: user_1084 - RequestID: cyhieja9gf4 +2025-06-18T14:52:08.081Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 271ms - Rows affected: 45 - RequestID: 4v809offxzs +2025-06-18T14:52:08.181Z [TRACE] payment-service - Database DELETE on payments - Execution time: 192ms - Rows affected: 2 - RequestID: q6fd1tthqjg +2025-06-18T14:52:08.281Z [INFO] inventory-service - Auth event: password_change - User: user_1054 - IP: 192.168.170.215 - RequestID: dxu4gqel86k +2025-06-18T14:52:08.381Z [TRACE] auth-service - Auth event: password_change - User: user_1039 - IP: 192.168.158.144 - RequestID: wp808yr1cd8 +2025-06-18T14:52:08.481Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 85ms - Rows affected: 55 - RequestID: a47cfclj9t8 +2025-06-18T14:52:08.581Z [INFO] auth-service - Auth event: password_change - User: user_1086 - IP: 192.168.170.215 - RequestID: 7owpnbvp14r +2025-06-18T14:52:08.681Z [INFO] inventory-service - GET /api/v1/orders - Status: 500 - Response time: 554ms - IP: 192.168.211.72 - User: user_1006 - RequestID: bq6a0fp8zrk +2025-06-18T14:52:08.781Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 654ms - RequestID: e3k4l8zemkc +2025-06-18T14:52:08.881Z [DEBUG] notification-service - Database DELETE on products - Execution time: 186ms - Rows affected: 8 - RequestID: irtagbzzxc +2025-06-18T14:52:08.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 750ms - RequestID: jch25pu3y98 +2025-06-18T14:52:09.081Z [INFO] payment-service - Database INSERT on payments - Execution time: 316ms - Rows affected: 79 - RequestID: esk2e159xsh +2025-06-18T14:52:09.181Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 207ms - Rows affected: 42 - RequestID: q57d9vw8cye +2025-06-18T14:52:09.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.79.141 - RequestID: ts1cu8dh2rf +2025-06-18T14:52:09.381Z [INFO] payment-service - Auth event: login_success - User: user_1090 - IP: 192.168.11.60 - RequestID: 2ujy6d8rhhj +2025-06-18T14:52:09.481Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1314ms - IP: 192.168.227.233 - User: user_1027 - RequestID: s5r57y159l +2025-06-18T14:52:09.581Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 871ms - RequestID: z1ojxtr6fbo +2025-06-18T14:52:09.681Z [INFO] payment-service - Database DELETE on orders - Execution time: 260ms - Rows affected: 65 - RequestID: 0dqk3z3jmw2h +2025-06-18T14:52:09.781Z [INFO] order-service - Database UPDATE on payments - Execution time: 3ms - Rows affected: 61 - RequestID: 5reka8d5lh8 +2025-06-18T14:52:09.881Z [TRACE] notification-service - Auth event: login_success - User: user_1042 - IP: 192.168.14.77 - RequestID: pcgb2iqx5c +2025-06-18T14:52:09.981Z [TRACE] notification-service - Database DELETE on users - Execution time: 28ms - Rows affected: 76 - RequestID: ypvsjo03w9 +2025-06-18T14:52:10.081Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 200 - Response time: 296ms - IP: 192.168.229.123 - User: user_1005 - RequestID: k59jnby0nel +2025-06-18T14:52:10.181Z [DEBUG] payment-service - Auth event: password_change - User: user_1084 - IP: 192.168.242.165 - RequestID: rq5cmbbe3h +2025-06-18T14:52:10.281Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 445ms - Rows affected: 68 - RequestID: h3ga64oeiup +2025-06-18T14:52:10.381Z [DEBUG] auth-service - PUT /api/v1/users - Status: 503 - Response time: 1629ms - IP: 192.168.30.79 - User: user_1038 - RequestID: fonwee4uc1m +2025-06-18T14:52:10.481Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 139ms - RequestID: vfkr3u80c1r +2025-06-18T14:52:10.581Z [DEBUG] order-service - POST /api/v1/payments - Status: 403 - Response time: 1278ms - IP: 192.168.13.72 - User: user_1079 - RequestID: cxug73o6j5o +2025-06-18T14:52:10.681Z [TRACE] auth-service - Operation: cache_hit - Processing time: 598ms - RequestID: ssbqfni632 +2025-06-18T14:52:10.781Z [TRACE] order-service - Operation: email_sent - Processing time: 1022ms - RequestID: w8cn8k6phd +2025-06-18T14:52:10.881Z [INFO] payment-service - Database SELECT on users - Execution time: 286ms - Rows affected: 71 - RequestID: fne7z0pgt4q +2025-06-18T14:52:10.981Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1628ms - IP: 192.168.170.215 - User: user_1092 - RequestID: ghb9wlkmcxr +2025-06-18T14:52:11.081Z [INFO] notification-service - Auth event: login_failed - User: user_1002 - IP: 192.168.79.143 - RequestID: 1uk09hcdf7m +2025-06-18T14:52:11.181Z [INFO] inventory-service - PUT /api/v1/orders - Status: 403 - Response time: 1822ms - IP: 192.168.68.128 - User: user_1027 - RequestID: rd9w8e1ddz +2025-06-18T14:52:11.281Z [INFO] notification-service - Database SELECT on orders - Execution time: 98ms - Rows affected: 95 - RequestID: 47lpscuj9ob +2025-06-18T14:52:11.381Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 377ms - Rows affected: 24 - RequestID: dqdkfpdwky4 +2025-06-18T14:52:11.481Z [TRACE] notification-service - Auth event: login_success - User: user_1078 - IP: 192.168.232.72 - RequestID: 2k3sh94dmmi +2025-06-18T14:52:11.581Z [INFO] notification-service - Database DELETE on sessions - Execution time: 201ms - Rows affected: 52 - RequestID: gmil6953s0w +2025-06-18T14:52:11.681Z [INFO] payment-service - Operation: webhook_sent - Processing time: 822ms - RequestID: mev3zmp7u1p +2025-06-18T14:52:11.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.144.38 - RequestID: 4vwsutj6pcc +2025-06-18T14:52:11.881Z [INFO] inventory-service - POST /api/v1/inventory - Status: 502 - Response time: 1428ms - IP: 192.168.1.152 - User: user_1056 - RequestID: qumlsvm6g3 +2025-06-18T14:52:11.981Z [INFO] notification-service - POST /api/v1/users - Status: 502 - Response time: 678ms - IP: 192.168.64.33 - User: user_1009 - RequestID: ouebkorbhap +2025-06-18T14:52:12.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 226ms - RequestID: aj7psbz1v2b +2025-06-18T14:52:12.181Z [TRACE] user-service - Auth event: login_success - User: user_1016 - IP: 192.168.232.72 - RequestID: gqywaj5ne4t +2025-06-18T14:52:12.281Z [INFO] auth-service - DELETE /api/v1/payments - Status: 404 - Response time: 1119ms - IP: 192.168.158.144 - User: user_1043 - RequestID: l9tjzcvq1ee +2025-06-18T14:52:12.381Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 196ms - Rows affected: 16 - RequestID: 59xj3s8ukg9 +2025-06-18T14:52:12.481Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 256ms - Rows affected: 4 - RequestID: ljr5cxbxg7r +2025-06-18T14:52:12.581Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 986ms - RequestID: f8ts2padvp5 +2025-06-18T14:52:12.681Z [INFO] inventory-service - Operation: cache_miss - Processing time: 855ms - RequestID: jfp11rsczeh +2025-06-18T14:52:12.781Z [DEBUG] notification-service - Auth event: login_success - User: user_1039 - IP: 192.168.14.77 - RequestID: pp2hs438cjb +2025-06-18T14:52:12.881Z [INFO] inventory-service - Operation: email_sent - Processing time: 127ms - RequestID: pz0i76n7xac +2025-06-18T14:52:12.981Z [INFO] user-service - GET /api/v1/auth/login - Status: 400 - Response time: 11ms - IP: 192.168.181.225 - User: user_1093 - RequestID: iermw4fzys9 +2025-06-18T14:52:13.081Z [TRACE] order-service - Operation: order_created - Processing time: 423ms - RequestID: 86m9ofzgbdd +2025-06-18T14:52:13.181Z [INFO] notification-service - DELETE /api/v1/users - Status: 400 - Response time: 920ms - IP: 192.168.113.218 - User: user_1055 - RequestID: q03grsug3io +2025-06-18T14:52:13.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1002 - IP: 192.168.242.165 - RequestID: jpzgzhmstep +2025-06-18T14:52:13.381Z [INFO] user-service - PUT /api/v1/auth/login - Status: 200 - Response time: 561ms - IP: 192.168.79.116 - User: user_1072 - RequestID: ex1qpdd3s9 +2025-06-18T14:52:13.481Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1407ms - IP: 192.168.229.123 - User: user_1047 - RequestID: qrzw8c87708 +2025-06-18T14:52:13.581Z [TRACE] order-service - GET /api/v1/orders - Status: 404 - Response time: 1766ms - IP: 192.168.170.215 - User: user_1001 - RequestID: r3egp71xft +2025-06-18T14:52:13.681Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 136ms - Rows affected: 72 - RequestID: hp8gini42ip +2025-06-18T14:52:13.781Z [TRACE] order-service - GET /api/v1/payments - Status: 404 - Response time: 432ms - IP: 192.168.10.184 - User: user_1042 - RequestID: yb2tnjy5zgt +2025-06-18T14:52:13.881Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 118ms - Rows affected: 60 - RequestID: vx9jdg3aqjj +2025-06-18T14:52:13.981Z [INFO] auth-service - Database SELECT on sessions - Execution time: 224ms - Rows affected: 86 - RequestID: u0zpgetbrth +2025-06-18T14:52:14.081Z [INFO] user-service - PATCH /api/v1/inventory - Status: 404 - Response time: 739ms - IP: 192.168.144.38 - User: user_1094 - RequestID: jjpu6qjc0pf +2025-06-18T14:52:14.181Z [INFO] user-service - Auth event: logout - User: user_1075 - IP: 192.168.11.60 - RequestID: gbsfv9ie0ah +2025-06-18T14:52:14.281Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 503 - Response time: 482ms - IP: 192.168.97.87 - User: user_1056 - RequestID: bj8shox37p +2025-06-18T14:52:14.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.85.229 - RequestID: hp8f2gr2jji +2025-06-18T14:52:14.481Z [INFO] auth-service - Operation: webhook_sent - Processing time: 397ms - RequestID: 5l0gui2dl9d +2025-06-18T14:52:14.581Z [TRACE] notification-service - Database INSERT on orders - Execution time: 233ms - Rows affected: 24 - RequestID: gsiq4avhvqb +2025-06-18T14:52:14.681Z [TRACE] inventory-service - Auth event: logout - User: user_1028 - IP: 192.168.227.233 - RequestID: mozomu0p3o +2025-06-18T14:52:14.781Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 312ms - Rows affected: 88 - RequestID: 7zp993eawdx +2025-06-18T14:52:14.881Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 149ms - Rows affected: 75 - RequestID: j6z1ge1btre +2025-06-18T14:52:14.981Z [TRACE] user-service - Operation: inventory_updated - Processing time: 324ms - RequestID: 1zfjleeahzd +2025-06-18T14:52:15.081Z [INFO] payment-service - POST /api/v1/payments - Status: 400 - Response time: 1365ms - IP: 192.168.181.225 - User: user_1019 - RequestID: anq1peautmd +2025-06-18T14:52:15.181Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 200 - Response time: 1372ms - IP: 192.168.28.146 - User: user_1020 - RequestID: 8yz75qhhj0u +2025-06-18T14:52:15.281Z [INFO] user-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.240.169 - RequestID: 1l0j6kgk1b6 +2025-06-18T14:52:15.381Z [DEBUG] auth-service - Auth event: logout - User: user_1086 - IP: 192.168.53.133 - RequestID: dqm8la3z7d5 +2025-06-18T14:52:15.481Z [TRACE] user-service - PUT /api/v1/inventory - Status: 403 - Response time: 1593ms - IP: 192.168.44.5 - User: user_1079 - RequestID: i27d46jxnle +2025-06-18T14:52:15.581Z [TRACE] user-service - Operation: email_sent - Processing time: 977ms - RequestID: dpxdpffaghv +2025-06-18T14:52:15.681Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 293ms - Rows affected: 15 - RequestID: wi8789rcoh +2025-06-18T14:52:15.781Z [TRACE] notification-service - Database SELECT on orders - Execution time: 395ms - Rows affected: 92 - RequestID: 26melsbhe0gi +2025-06-18T14:52:15.881Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 472ms - Rows affected: 57 - RequestID: o0in9qfgo9n +2025-06-18T14:52:15.981Z [INFO] user-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.227.233 - RequestID: z0do1tuqtp +2025-06-18T14:52:16.081Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 804ms - RequestID: v7kmywuqui +2025-06-18T14:52:16.181Z [INFO] auth-service - PUT /api/v1/payments - Status: 400 - Response time: 1248ms - IP: 192.168.36.218 - User: user_1040 - RequestID: pjr7kpqrkze +2025-06-18T14:52:16.281Z [DEBUG] user-service - POST /api/v1/payments - Status: 404 - Response time: 1883ms - IP: 192.168.104.37 - User: user_1061 - RequestID: jqmzzjrg5c +2025-06-18T14:52:16.381Z [INFO] notification-service - Operation: cache_miss - Processing time: 946ms - RequestID: k1dbwb01opm +2025-06-18T14:52:16.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 1049ms - RequestID: q9e8lcazenh +2025-06-18T14:52:16.581Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 701ms - IP: 192.168.79.143 - User: user_1058 - RequestID: 69940hii1b +2025-06-18T14:52:16.681Z [TRACE] user-service - Database UPDATE on products - Execution time: 451ms - Rows affected: 70 - RequestID: i5y6xatetym +2025-06-18T14:52:16.781Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 201 - Response time: 261ms - IP: 192.168.147.171 - User: user_1017 - RequestID: wp5o2risf +2025-06-18T14:52:16.881Z [DEBUG] user-service - Database SELECT on users - Execution time: 210ms - Rows affected: 4 - RequestID: 0czmy4tc5ayd +2025-06-18T14:52:16.981Z [TRACE] user-service - Operation: order_created - Processing time: 1038ms - RequestID: lbevyzf5pnf +2025-06-18T14:52:17.081Z [TRACE] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 216ms - IP: 192.168.189.103 - User: user_1024 - RequestID: kssnlq7f3qi +2025-06-18T14:52:17.181Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 152ms - Rows affected: 18 - RequestID: zwr2lntohaa +2025-06-18T14:52:17.281Z [INFO] payment-service - Database UPDATE on products - Execution time: 221ms - Rows affected: 41 - RequestID: 6qbxi7asv66 +2025-06-18T14:52:17.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.187.199 - RequestID: ymgs6hlm1b +2025-06-18T14:52:17.481Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 96ms - Rows affected: 26 - RequestID: l1sscqr6zbd +2025-06-18T14:52:17.581Z [TRACE] payment-service - Auth event: login_success - User: user_1089 - IP: 192.168.227.233 - RequestID: gjfoi8ym65k +2025-06-18T14:52:17.681Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 400 - Response time: 870ms - IP: 192.168.229.123 - User: user_1048 - RequestID: 2w5pcaixrfb +2025-06-18T14:52:17.781Z [DEBUG] user-service - Auth event: login_failed - User: user_1051 - IP: 192.168.85.229 - RequestID: y8fr14qpefk +2025-06-18T14:52:17.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 623ms - RequestID: khkom0eik4r +2025-06-18T14:52:17.981Z [DEBUG] auth-service - Database DELETE on users - Execution time: 380ms - Rows affected: 38 - RequestID: fa65ydi4cwh +2025-06-18T14:52:18.081Z [INFO] notification-service - POST /api/v1/auth/login - Status: 401 - Response time: 1842ms - IP: 192.168.30.79 - User: user_1068 - RequestID: 1uh3yltnamj +2025-06-18T14:52:18.181Z [INFO] inventory-service - Auth event: logout - User: user_1080 - IP: 192.168.232.72 - RequestID: xk580g65zqj +2025-06-18T14:52:18.281Z [DEBUG] inventory-service - Operation: order_created - Processing time: 674ms - RequestID: znud6j59vk +2025-06-18T14:52:18.381Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 503 - Response time: 889ms - IP: 192.168.81.206 - User: user_1021 - RequestID: v58yx21cz8 +2025-06-18T14:52:18.481Z [TRACE] order-service - Database DELETE on products - Execution time: 6ms - Rows affected: 41 - RequestID: x2eazin5k8j +2025-06-18T14:52:18.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1031 - IP: 192.168.79.143 - RequestID: 8etgiyjd03r +2025-06-18T14:52:18.681Z [INFO] user-service - PATCH /api/v1/payments - Status: 403 - Response time: 1268ms - IP: 192.168.31.117 - User: user_1031 - RequestID: jnw8i0s595d +2025-06-18T14:52:18.781Z [INFO] inventory-service - Operation: notification_queued - Processing time: 68ms - RequestID: r7nit6fdq9 +2025-06-18T14:52:18.881Z [INFO] user-service - Operation: payment_processed - Processing time: 730ms - RequestID: fszfbstoxu6 +2025-06-18T14:52:18.981Z [TRACE] notification-service - Operation: order_created - Processing time: 896ms - RequestID: vsn0w80ngzg +2025-06-18T14:52:19.081Z [TRACE] payment-service - Database SELECT on users - Execution time: 143ms - Rows affected: 70 - RequestID: nscf043lfgg +2025-06-18T14:52:19.181Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1341ms - IP: 192.168.28.146 - User: user_1021 - RequestID: 858pe23w9mx +2025-06-18T14:52:19.281Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1850ms - IP: 192.168.79.116 - User: user_1061 - RequestID: b6nq850i8s5 +2025-06-18T14:52:19.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 53ms - RequestID: doai0fesq6 +2025-06-18T14:52:19.481Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 772ms - RequestID: jik0lw9pm2n +2025-06-18T14:52:19.581Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 141ms - Rows affected: 54 - RequestID: fe8nrb7v4i5 +2025-06-18T14:52:19.681Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 503 - Response time: 55ms - IP: 192.168.196.226 - User: user_1098 - RequestID: 2ds0nckrfd4 +2025-06-18T14:52:19.781Z [INFO] notification-service - PUT /api/v1/orders - Status: 403 - Response time: 1826ms - IP: 192.168.1.152 - User: user_1040 - RequestID: po7p0qohd1 +2025-06-18T14:52:19.881Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 116ms - Rows affected: 12 - RequestID: 38ikym8rtbo +2025-06-18T14:52:19.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 193ms - RequestID: flhjr0ihhl9 +2025-06-18T14:52:20.081Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 105ms - RequestID: dac9huplnlt +2025-06-18T14:52:20.181Z [TRACE] inventory-service - Database SELECT on products - Execution time: 213ms - Rows affected: 1 - RequestID: tq6ynitagy +2025-06-18T14:52:20.281Z [INFO] auth-service - Database INSERT on sessions - Execution time: 309ms - Rows affected: 87 - RequestID: gffu0feehx +2025-06-18T14:52:20.381Z [INFO] auth-service - Database DELETE on payments - Execution time: 133ms - Rows affected: 51 - RequestID: x2nwe1tlkh8 +2025-06-18T14:52:20.481Z [TRACE] auth-service - Database UPDATE on products - Execution time: 39ms - Rows affected: 98 - RequestID: 4adqkpdas6m +2025-06-18T14:52:20.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 300ms - RequestID: rpt1o86ilap +2025-06-18T14:52:20.681Z [INFO] inventory-service - Database INSERT on payments - Execution time: 495ms - Rows affected: 37 - RequestID: ixfhbpjxkw +2025-06-18T14:52:20.781Z [INFO] order-service - Database SELECT on payments - Execution time: 458ms - Rows affected: 81 - RequestID: fbejss3lnd4 +2025-06-18T14:52:20.881Z [INFO] auth-service - Database UPDATE on products - Execution time: 209ms - Rows affected: 37 - RequestID: i1xfcojog7 +2025-06-18T14:52:20.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.46.63 - RequestID: 77az0uqvpxl +2025-06-18T14:52:21.081Z [INFO] auth-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.138.123 - RequestID: 5nd22o3r9zx +2025-06-18T14:52:21.181Z [DEBUG] order-service - Auth event: login_success - User: user_1036 - IP: 192.168.174.114 - RequestID: 8qjvcqp8343 +2025-06-18T14:52:21.281Z [TRACE] user-service - Operation: order_created - Processing time: 764ms - RequestID: co4rpjzcj9 +2025-06-18T14:52:21.381Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 461ms - Rows affected: 32 - RequestID: s0cyumckt8 +2025-06-18T14:52:21.481Z [TRACE] payment-service - Operation: notification_queued - Processing time: 597ms - RequestID: 8es44obb7t3 +2025-06-18T14:52:21.581Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 404 - Response time: 1230ms - IP: 192.168.174.114 - User: user_1055 - RequestID: vtxure7hhyq +2025-06-18T14:52:21.681Z [INFO] notification-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.158.144 - RequestID: k6mq8fspiji +2025-06-18T14:52:21.781Z [TRACE] user-service - Database DELETE on sessions - Execution time: 345ms - Rows affected: 65 - RequestID: knh5s9o9as +2025-06-18T14:52:21.881Z [DEBUG] order-service - Operation: cache_miss - Processing time: 260ms - RequestID: 3huiek6rhha +2025-06-18T14:52:21.981Z [DEBUG] notification-service - Auth event: password_change - User: user_1093 - IP: 192.168.187.199 - RequestID: on6kggcx8q8 +2025-06-18T14:52:22.081Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 404 - Response time: 1092ms - IP: 192.168.232.72 - User: user_1068 - RequestID: 8b1u7048z82 +2025-06-18T14:52:22.181Z [TRACE] payment-service - GET /api/v1/users - Status: 500 - Response time: 876ms - IP: 192.168.141.100 - User: user_1018 - RequestID: whmshvm02z +2025-06-18T14:52:22.281Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 236ms - Rows affected: 52 - RequestID: iuoronpg76 +2025-06-18T14:52:22.381Z [TRACE] order-service - PATCH /api/v1/payments - Status: 400 - Response time: 1444ms - IP: 192.168.68.158 - User: user_1011 - RequestID: h9gfh6fuk66 +2025-06-18T14:52:22.481Z [TRACE] order-service - Operation: webhook_sent - Processing time: 619ms - RequestID: 33rstxs11la +2025-06-18T14:52:22.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 126ms - RequestID: h62petfnn0g +2025-06-18T14:52:22.681Z [TRACE] user-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.158.144 - RequestID: 5j5m0fliczl +2025-06-18T14:52:22.781Z [INFO] order-service - Operation: payment_processed - Processing time: 300ms - RequestID: i0cfq9y3daq +2025-06-18T14:52:22.881Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 502 - Response time: 1755ms - IP: 192.168.36.218 - User: user_1018 - RequestID: rfaivjszvd +2025-06-18T14:52:22.981Z [TRACE] user-service - Database UPDATE on products - Execution time: 265ms - Rows affected: 6 - RequestID: 62evf4y8uwj +2025-06-18T14:52:23.081Z [TRACE] order-service - PUT /api/v1/orders - Status: 502 - Response time: 1723ms - IP: 192.168.13.72 - User: user_1089 - RequestID: fjcx9cxx1ik +2025-06-18T14:52:23.181Z [TRACE] auth-service - Operation: payment_processed - Processing time: 573ms - RequestID: 29hhwrwixma +2025-06-18T14:52:23.281Z [INFO] order-service - Database DELETE on users - Execution time: 406ms - Rows affected: 25 - RequestID: 8umjbmppg4w +2025-06-18T14:52:23.381Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 325ms - Rows affected: 73 - RequestID: e7pu8c84fd +2025-06-18T14:52:23.481Z [INFO] auth-service - Auth event: login_success - User: user_1057 - IP: 192.168.189.103 - RequestID: ae5mrk0oobg +2025-06-18T14:52:23.581Z [TRACE] order-service - Auth event: logout - User: user_1032 - IP: 192.168.1.152 - RequestID: dqc1zmg3hpl +2025-06-18T14:52:23.681Z [INFO] user-service - Database SELECT on products - Execution time: 106ms - Rows affected: 87 - RequestID: zwt3nksdhen +2025-06-18T14:52:23.781Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1545ms - IP: 192.168.242.165 - User: user_1097 - RequestID: ja8408kjths +2025-06-18T14:52:23.881Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 502 - Response time: 513ms - IP: 192.168.133.7 - User: user_1099 - RequestID: 1yoaqgrnkq7 +2025-06-18T14:52:23.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.36.218 - RequestID: iv12btpsnfd +2025-06-18T14:52:24.081Z [TRACE] user-service - Database SELECT on orders - Execution time: 492ms - Rows affected: 66 - RequestID: e6wdz7uixcs +2025-06-18T14:52:24.181Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 157ms - Rows affected: 58 - RequestID: r6vvjhulhko +2025-06-18T14:52:24.281Z [TRACE] inventory-service - POST /api/v1/payments - Status: 201 - Response time: 346ms - IP: 192.168.11.60 - User: user_1043 - RequestID: l4ds98y7yt +2025-06-18T14:52:24.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.104.37 - RequestID: 737vko7zidh +2025-06-18T14:52:24.481Z [INFO] notification-service - Operation: inventory_updated - Processing time: 1021ms - RequestID: 7epnsafs9i5 +2025-06-18T14:52:24.581Z [INFO] payment-service - Auth event: logout - User: user_1099 - IP: 192.168.113.218 - RequestID: 5canybwl3pi +2025-06-18T14:52:24.681Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 23ms - Rows affected: 52 - RequestID: b35qtvu87lu +2025-06-18T14:52:24.781Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 200 - Response time: 1309ms - IP: 192.168.159.94 - User: user_1085 - RequestID: co03k7w1s3f +2025-06-18T14:52:24.881Z [TRACE] user-service - PATCH /api/v1/orders - Status: 403 - Response time: 941ms - IP: 192.168.189.103 - User: user_1053 - RequestID: gsem9g6zld +2025-06-18T14:52:24.981Z [DEBUG] payment-service - POST /api/v1/payments - Status: 200 - Response time: 766ms - IP: 192.168.247.134 - User: user_1065 - RequestID: fefzle366lv +2025-06-18T14:52:25.081Z [TRACE] order-service - Database INSERT on users - Execution time: 59ms - Rows affected: 85 - RequestID: 2nxoh3e97zq +2025-06-18T14:52:25.181Z [TRACE] user-service - Database INSERT on products - Execution time: 386ms - Rows affected: 17 - RequestID: lz432ddh71e +2025-06-18T14:52:25.281Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 489ms - Rows affected: 6 - RequestID: qg9guq2iobn +2025-06-18T14:52:25.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 323ms - RequestID: tf0gwx92rzn +2025-06-18T14:52:25.481Z [DEBUG] notification-service - Operation: order_created - Processing time: 902ms - RequestID: 8qfobew58mb +2025-06-18T14:52:25.581Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 201 - Response time: 948ms - IP: 192.168.46.63 - User: user_1048 - RequestID: f7h9nxz5lmg +2025-06-18T14:52:25.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.227.77 - RequestID: 95zm0tsal8 +2025-06-18T14:52:25.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.189.103 - RequestID: 82ughdl09p +2025-06-18T14:52:25.881Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 260ms - RequestID: gpi12g2cybw +2025-06-18T14:52:25.981Z [INFO] order-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.68.128 - RequestID: 8yegkjk73z +2025-06-18T14:52:26.081Z [DEBUG] payment-service - Auth event: login_success - User: user_1018 - IP: 192.168.81.206 - RequestID: q9rcjui177l +2025-06-18T14:52:26.181Z [INFO] notification-service - Operation: cache_miss - Processing time: 189ms - RequestID: 3x4e89bqf9v +2025-06-18T14:52:26.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1004 - IP: 192.168.242.165 - RequestID: snluikot0f +2025-06-18T14:52:26.381Z [TRACE] notification-service - GET /api/v1/orders - Status: 401 - Response time: 309ms - IP: 192.168.79.143 - User: user_1079 - RequestID: m6poui4de2 +2025-06-18T14:52:26.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1020 - IP: 192.168.10.184 - RequestID: k49r1ly7f9k +2025-06-18T14:52:26.581Z [INFO] inventory-service - GET /api/v1/orders - Status: 502 - Response time: 594ms - IP: 192.168.227.77 - User: user_1080 - RequestID: i9zr9ptv6ra +2025-06-18T14:52:26.681Z [TRACE] user-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.158.144 - RequestID: zl6hmt98adl +2025-06-18T14:52:26.781Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 814ms - IP: 192.168.46.63 - User: user_1017 - RequestID: qht6f49isj +2025-06-18T14:52:26.881Z [INFO] auth-service - Database UPDATE on payments - Execution time: 122ms - Rows affected: 40 - RequestID: 8hlvcxz69k3 +2025-06-18T14:52:26.981Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 154ms - Rows affected: 33 - RequestID: y8gf43n42fo +2025-06-18T14:52:27.081Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 151ms - IP: 192.168.242.165 - User: user_1050 - RequestID: ijqt7264rv +2025-06-18T14:52:27.181Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 400 - Response time: 1630ms - IP: 192.168.242.165 - User: user_1098 - RequestID: vjurzbteye +2025-06-18T14:52:27.281Z [INFO] order-service - GET /api/v1/inventory - Status: 400 - Response time: 1480ms - IP: 192.168.11.60 - User: user_1001 - RequestID: hlycm8yf8ug +2025-06-18T14:52:27.381Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 428ms - Rows affected: 79 - RequestID: 92zl7vxrwom +2025-06-18T14:52:27.481Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 484ms - Rows affected: 85 - RequestID: 0tls32fch4k +2025-06-18T14:52:27.581Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1262ms - IP: 192.168.32.38 - User: user_1098 - RequestID: viupipwdvjr +2025-06-18T14:52:27.681Z [INFO] user-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.79.116 - RequestID: uuxm0yqqpcr +2025-06-18T14:52:27.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1067 - IP: 192.168.138.123 - RequestID: 04hyhv36zra8 +2025-06-18T14:52:27.881Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.28.146 - RequestID: gklliz326dh +2025-06-18T14:52:27.981Z [INFO] order-service - Database DELETE on payments - Execution time: 253ms - Rows affected: 85 - RequestID: k6k3u06kco +2025-06-18T14:52:28.081Z [DEBUG] auth-service - Auth event: login_success - User: user_1019 - IP: 192.168.53.133 - RequestID: ostd0a6ol2s +2025-06-18T14:52:28.181Z [INFO] order-service - GET /api/v1/orders - Status: 200 - Response time: 1833ms - IP: 192.168.28.146 - User: user_1067 - RequestID: toyjf2byuqr +2025-06-18T14:52:28.281Z [INFO] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 1537ms - IP: 192.168.147.171 - User: user_1029 - RequestID: n91tml7nv9q +2025-06-18T14:52:28.381Z [TRACE] order-service - DELETE /api/v1/users - Status: 201 - Response time: 614ms - IP: 192.168.10.184 - User: user_1046 - RequestID: xsmmjwmghx +2025-06-18T14:52:28.481Z [INFO] inventory-service - Database INSERT on users - Execution time: 326ms - Rows affected: 68 - RequestID: hu08lpq3798 +2025-06-18T14:52:28.581Z [INFO] order-service - Auth event: login_success - User: user_1046 - IP: 192.168.158.144 - RequestID: aydgty9v3cp +2025-06-18T14:52:28.681Z [DEBUG] auth-service - GET /api/v1/payments - Status: 404 - Response time: 627ms - IP: 192.168.79.116 - User: user_1079 - RequestID: 07iqig2krz0r +2025-06-18T14:52:28.781Z [INFO] notification-service - Operation: order_created - Processing time: 315ms - RequestID: zsxbvgc8hg +2025-06-18T14:52:28.881Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 152ms - Rows affected: 39 - RequestID: vungjfnqa7l +2025-06-18T14:52:28.981Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1051ms - IP: 192.168.97.87 - User: user_1001 - RequestID: 8j3uucm7x64 +2025-06-18T14:52:29.081Z [DEBUG] user-service - Database DELETE on payments - Execution time: 146ms - Rows affected: 6 - RequestID: 742lbggck4 +2025-06-18T14:52:29.181Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 840ms - RequestID: ho9pzhxpynk +2025-06-18T14:52:29.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 962ms - RequestID: oju0km8cfzk +2025-06-18T14:52:29.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.113.218 - RequestID: dzbh1gn8sc +2025-06-18T14:52:29.481Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1989ms - IP: 192.168.100.240 - User: user_1014 - RequestID: e9jgg5c4z1i +2025-06-18T14:52:29.581Z [INFO] notification-service - PATCH /api/v1/payments - Status: 503 - Response time: 731ms - IP: 192.168.189.103 - User: user_1050 - RequestID: gc9e1awyz9f +2025-06-18T14:52:29.681Z [INFO] order-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.240.169 - RequestID: kkwzmjlubd +2025-06-18T14:52:29.781Z [TRACE] order-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.79.116 - RequestID: ik0z7vr4xm +2025-06-18T14:52:29.881Z [DEBUG] user-service - Auth event: password_change - User: user_1009 - IP: 192.168.240.169 - RequestID: m7cl6lg63af +2025-06-18T14:52:29.981Z [INFO] inventory-service - Operation: order_created - Processing time: 475ms - RequestID: zy8j9qgbxir +2025-06-18T14:52:30.081Z [INFO] inventory-service - Operation: cache_hit - Processing time: 491ms - RequestID: h2kqaodtki5 +2025-06-18T14:52:30.181Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 201 - Response time: 343ms - IP: 192.168.46.63 - User: user_1038 - RequestID: 1d8gs55sllo +2025-06-18T14:52:30.281Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 288ms - RequestID: 2o63pfswtdd +2025-06-18T14:52:30.381Z [TRACE] order-service - Database DELETE on payments - Execution time: 429ms - Rows affected: 16 - RequestID: 3viiljm649r +2025-06-18T14:52:30.481Z [DEBUG] order-service - Operation: cache_hit - Processing time: 315ms - RequestID: macmh7xak2d +2025-06-18T14:52:30.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.79.116 - RequestID: dj28neij8y +2025-06-18T14:52:30.681Z [INFO] auth-service - POST /api/v1/payments - Status: 502 - Response time: 1831ms - IP: 192.168.64.33 - User: user_1009 - RequestID: gxaqh8fen3l +2025-06-18T14:52:30.781Z [TRACE] notification-service - Auth event: password_change - User: user_1045 - IP: 192.168.79.141 - RequestID: 8kczrzci51f +2025-06-18T14:52:30.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1020 - IP: 192.168.1.152 - RequestID: crgmtgklw8e +2025-06-18T14:52:30.981Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 495ms - RequestID: jt7vqtoj73 +2025-06-18T14:52:31.081Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 201 - Response time: 509ms - IP: 192.168.79.143 - User: user_1044 - RequestID: 8cifb2zf3eh +2025-06-18T14:52:31.181Z [TRACE] payment-service - Auth event: password_change - User: user_1066 - IP: 192.168.147.171 - RequestID: x0ynu8gdfcp +2025-06-18T14:52:31.281Z [INFO] user-service - Database UPDATE on orders - Execution time: 3ms - Rows affected: 8 - RequestID: z75r6xakkc +2025-06-18T14:52:31.381Z [DEBUG] payment-service - Auth event: logout - User: user_1000 - IP: 192.168.32.38 - RequestID: 39mo3l15tgp +2025-06-18T14:52:31.481Z [INFO] auth-service - Auth event: login_failed - User: user_1054 - IP: 192.168.229.123 - RequestID: m23b3cbejq8 +2025-06-18T14:52:31.581Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 168ms - Rows affected: 40 - RequestID: 9j6nyly38pn +2025-06-18T14:52:31.681Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 385ms - Rows affected: 47 - RequestID: lh1fps2h8eo +2025-06-18T14:52:31.781Z [INFO] user-service - Operation: inventory_updated - Processing time: 87ms - RequestID: ik8oapgyu9q +2025-06-18T14:52:31.881Z [TRACE] notification-service - Database UPDATE on users - Execution time: 145ms - Rows affected: 93 - RequestID: gs1z9giaz9q +2025-06-18T14:52:31.981Z [TRACE] notification-service - Auth event: password_change - User: user_1032 - IP: 192.168.196.226 - RequestID: 061ahkipika3 +2025-06-18T14:52:32.081Z [TRACE] notification-service - Auth event: logout - User: user_1042 - IP: 192.168.174.114 - RequestID: 1cvb8vu5cie +2025-06-18T14:52:32.181Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 336ms - Rows affected: 83 - RequestID: yk19cw0hxcl +2025-06-18T14:52:32.281Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 216ms - Rows affected: 31 - RequestID: tj50e9wz8k8 +2025-06-18T14:52:32.381Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 739ms - IP: 192.168.133.7 - User: user_1023 - RequestID: 6sksfldblua +2025-06-18T14:52:32.481Z [INFO] auth-service - Auth event: logout - User: user_1007 - IP: 192.168.100.240 - RequestID: hkliclq3nn5 +2025-06-18T14:52:32.581Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1637ms - IP: 192.168.1.152 - User: user_1067 - RequestID: g41hw37odmu +2025-06-18T14:52:32.681Z [INFO] payment-service - Database INSERT on products - Execution time: 53ms - Rows affected: 83 - RequestID: pbug6yiz5c +2025-06-18T14:52:32.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 887ms - RequestID: wyeebisgowh +2025-06-18T14:52:32.881Z [DEBUG] notification-service - Operation: order_created - Processing time: 728ms - RequestID: xxk6a3gs8ln +2025-06-18T14:52:32.981Z [TRACE] notification-service - Database SELECT on users - Execution time: 214ms - Rows affected: 78 - RequestID: 6joci5duq +2025-06-18T14:52:33.081Z [TRACE] user-service - PATCH /api/v1/payments - Status: 403 - Response time: 164ms - IP: 192.168.211.72 - User: user_1020 - RequestID: fxbcs280xbt +2025-06-18T14:52:33.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 417ms - RequestID: 0fy4ryj7lzp +2025-06-18T14:52:33.281Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 237ms - Rows affected: 80 - RequestID: nsl3ouvl6dm +2025-06-18T14:52:33.381Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 503 - Response time: 535ms - IP: 192.168.68.158 - User: user_1033 - RequestID: 4778781mlfe +2025-06-18T14:52:33.481Z [INFO] order-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.174.114 - RequestID: r4vlmadigeg +2025-06-18T14:52:33.581Z [TRACE] payment-service - Database DELETE on orders - Execution time: 464ms - Rows affected: 75 - RequestID: g5n5cko3rc +2025-06-18T14:52:33.681Z [TRACE] order-service - POST /api/v1/payments - Status: 400 - Response time: 1021ms - IP: 192.168.14.77 - User: user_1006 - RequestID: wcjxsicg8n7 +2025-06-18T14:52:33.781Z [TRACE] order-service - Operation: notification_queued - Processing time: 532ms - RequestID: gc8p403rasg +2025-06-18T14:52:33.881Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 502 - Response time: 1977ms - IP: 192.168.133.7 - User: user_1055 - RequestID: a4r8v0bj2q +2025-06-18T14:52:33.981Z [INFO] user-service - Database UPDATE on payments - Execution time: 325ms - Rows affected: 40 - RequestID: qk8s2livoaj +2025-06-18T14:52:34.081Z [TRACE] auth-service - Operation: notification_queued - Processing time: 422ms - RequestID: 82c1kjphnkg +2025-06-18T14:52:34.181Z [INFO] user-service - Auth event: logout - User: user_1079 - IP: 192.168.159.94 - RequestID: ixkufyc4hg +2025-06-18T14:52:34.281Z [INFO] order-service - Auth event: password_change - User: user_1058 - IP: 192.168.14.77 - RequestID: 3eo4tvoxheg +2025-06-18T14:52:34.381Z [TRACE] user-service - Database INSERT on products - Execution time: 7ms - Rows affected: 60 - RequestID: lq2gl6wvjne +2025-06-18T14:52:34.481Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 140ms - Rows affected: 27 - RequestID: 8tllaa5pj0b +2025-06-18T14:52:34.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1077 - IP: 192.168.81.206 - RequestID: um8c8ugr798 +2025-06-18T14:52:34.681Z [INFO] order-service - Operation: cache_hit - Processing time: 573ms - RequestID: i8eghcjlxo +2025-06-18T14:52:34.781Z [DEBUG] auth-service - Auth event: logout - User: user_1071 - IP: 192.168.32.38 - RequestID: a5khlt1qf9k +2025-06-18T14:52:34.881Z [TRACE] auth-service - POST /api/v1/users - Status: 401 - Response time: 892ms - IP: 192.168.170.215 - User: user_1045 - RequestID: lbduspazfa +2025-06-18T14:52:34.981Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 116ms - Rows affected: 6 - RequestID: d6ls44b7jt +2025-06-18T14:52:35.081Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.14.77 - RequestID: urwdms9yxrf +2025-06-18T14:52:35.181Z [TRACE] inventory-service - Auth event: logout - User: user_1030 - IP: 192.168.79.143 - RequestID: 0vn8ikb8fwgp +2025-06-18T14:52:35.281Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 108ms - Rows affected: 1 - RequestID: kz9zfd444a +2025-06-18T14:52:35.381Z [INFO] inventory-service - Auth event: login_failed - User: user_1015 - IP: 192.168.138.123 - RequestID: 12cwgofvz3dm +2025-06-18T14:52:35.481Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1839ms - IP: 192.168.64.33 - User: user_1029 - RequestID: x083aoqbyck +2025-06-18T14:52:35.581Z [DEBUG] user-service - Database DELETE on users - Execution time: 213ms - Rows affected: 51 - RequestID: 2m7058akr9s +2025-06-18T14:52:35.681Z [INFO] auth-service - GET /api/v1/auth/login - Status: 503 - Response time: 1066ms - IP: 192.168.79.116 - User: user_1027 - RequestID: 0f4oipkbpdzk +2025-06-18T14:52:35.781Z [INFO] user-service - PUT /api/v1/users - Status: 503 - Response time: 609ms - IP: 192.168.211.72 - User: user_1047 - RequestID: wgfbay58a98 +2025-06-18T14:52:35.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1009 - IP: 192.168.68.158 - RequestID: bo7r2tz4k25 +2025-06-18T14:52:35.981Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 417ms - Rows affected: 41 - RequestID: z4s7udt2xio +2025-06-18T14:52:36.081Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.158.144 - RequestID: u38mj2xaln +2025-06-18T14:52:36.181Z [TRACE] auth-service - Operation: payment_processed - Processing time: 841ms - RequestID: wejmehcza5 +2025-06-18T14:52:36.281Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 401 - Response time: 1330ms - IP: 192.168.211.72 - User: user_1092 - RequestID: p0lkbwnrcws +2025-06-18T14:52:36.381Z [DEBUG] notification-service - GET /api/v1/orders - Status: 503 - Response time: 250ms - IP: 192.168.28.146 - User: user_1061 - RequestID: ro5kz7egczn +2025-06-18T14:52:36.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 137ms - RequestID: byuspwvc3x4 +2025-06-18T14:52:36.581Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 140ms - Rows affected: 93 - RequestID: azvuib3786l +2025-06-18T14:52:36.681Z [TRACE] inventory-service - Auth event: logout - User: user_1024 - IP: 192.168.247.134 - RequestID: bb1t81ynk1 +2025-06-18T14:52:36.781Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 2ms - Rows affected: 9 - RequestID: cchxesjdagp +2025-06-18T14:52:36.881Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1002ms - IP: 192.168.33.76 - User: user_1038 - RequestID: w69pdu1nt5 +2025-06-18T14:52:36.981Z [TRACE] order-service - DELETE /api/v1/users - Status: 404 - Response time: 1885ms - IP: 192.168.158.144 - User: user_1074 - RequestID: 6ipebxg36w +2025-06-18T14:52:37.081Z [INFO] payment-service - PUT /api/v1/inventory - Status: 503 - Response time: 1198ms - IP: 192.168.211.72 - User: user_1048 - RequestID: eph8zzti24 +2025-06-18T14:52:37.181Z [INFO] user-service - Database DELETE on products - Execution time: 325ms - Rows affected: 81 - RequestID: 1hrd8ihwr7k +2025-06-18T14:52:37.281Z [DEBUG] user-service - Database INSERT on users - Execution time: 165ms - Rows affected: 10 - RequestID: 498u56soh8j +2025-06-18T14:52:37.381Z [INFO] user-service - GET /api/v1/orders - Status: 502 - Response time: 351ms - IP: 192.168.240.169 - User: user_1069 - RequestID: i79n9eqgu77 +2025-06-18T14:52:37.481Z [TRACE] inventory-service - Auth event: password_change - User: user_1016 - IP: 192.168.174.114 - RequestID: tsbkr09r64 +2025-06-18T14:52:37.581Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 203ms - RequestID: f2nk9ku0wj +2025-06-18T14:52:37.681Z [INFO] auth-service - PUT /api/v1/inventory - Status: 500 - Response time: 260ms - IP: 192.168.141.100 - User: user_1087 - RequestID: imzk4jr73f +2025-06-18T14:52:37.781Z [TRACE] user-service - Database UPDATE on payments - Execution time: 7ms - Rows affected: 8 - RequestID: zojeaiplm9c +2025-06-18T14:52:37.881Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 503 - Response time: 605ms - IP: 192.168.158.144 - User: user_1001 - RequestID: kv005oevurb +2025-06-18T14:52:37.981Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 502 - Response time: 1991ms - IP: 192.168.167.32 - User: user_1085 - RequestID: c6sia6szq3o +2025-06-18T14:52:38.081Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 64ms - Rows affected: 78 - RequestID: 3nh06qf2q6g +2025-06-18T14:52:38.181Z [TRACE] user-service - Database DELETE on users - Execution time: 486ms - Rows affected: 25 - RequestID: 9tlbfvkbd8t +2025-06-18T14:52:38.281Z [TRACE] auth-service - Operation: payment_processed - Processing time: 474ms - RequestID: v2vrawcshek +2025-06-18T14:52:38.381Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 91ms - Rows affected: 37 - RequestID: qxfsa5ky6wn +2025-06-18T14:52:38.481Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1862ms - IP: 192.168.227.233 - User: user_1032 - RequestID: y6b5srthqbg +2025-06-18T14:52:38.581Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1287ms - IP: 192.168.81.206 - User: user_1004 - RequestID: gdacu18kaoi +2025-06-18T14:52:38.681Z [INFO] notification-service - DELETE /api/v1/orders - Status: 201 - Response time: 147ms - IP: 192.168.240.169 - User: user_1058 - RequestID: tcq7hb9ts8d +2025-06-18T14:52:38.781Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 274ms - Rows affected: 53 - RequestID: husjyibsa09 +2025-06-18T14:52:38.881Z [INFO] auth-service - Database DELETE on users - Execution time: 270ms - Rows affected: 3 - RequestID: euzmpuz4qiq +2025-06-18T14:52:38.981Z [DEBUG] user-service - Auth event: password_change - User: user_1013 - IP: 192.168.181.225 - RequestID: ezolfivtjh7 +2025-06-18T14:52:39.081Z [DEBUG] auth-service - POST /api/v1/users - Status: 403 - Response time: 17ms - IP: 192.168.229.123 - User: user_1097 - RequestID: lmvfvt8qxka +2025-06-18T14:52:39.181Z [INFO] inventory-service - Database SELECT on payments - Execution time: 11ms - Rows affected: 64 - RequestID: elkufway2lt +2025-06-18T14:52:39.281Z [INFO] auth-service - Operation: cache_miss - Processing time: 85ms - RequestID: nutovwiv5qn +2025-06-18T14:52:39.381Z [INFO] notification-service - DELETE /api/v1/payments - Status: 401 - Response time: 1894ms - IP: 192.168.85.229 - User: user_1032 - RequestID: xwbqlr3n8n8 +2025-06-18T14:52:39.481Z [INFO] order-service - Operation: inventory_updated - Processing time: 205ms - RequestID: m3i3esljwg +2025-06-18T14:52:39.581Z [DEBUG] user-service - POST /api/v1/orders - Status: 503 - Response time: 1837ms - IP: 192.168.227.77 - User: user_1011 - RequestID: clkssdnsox9 +2025-06-18T14:52:39.681Z [DEBUG] order-service - Operation: order_created - Processing time: 688ms - RequestID: ehohmg6znk +2025-06-18T14:52:39.781Z [INFO] notification-service - Operation: order_created - Processing time: 927ms - RequestID: ye0ea1tsdle +2025-06-18T14:52:39.881Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 343ms - Rows affected: 55 - RequestID: 2ekj720ycg3 +2025-06-18T14:52:39.981Z [INFO] user-service - DELETE /api/v1/users - Status: 400 - Response time: 226ms - IP: 192.168.147.171 - User: user_1082 - RequestID: 2ufz1gmqlfv +2025-06-18T14:52:40.081Z [INFO] order-service - Operation: cache_hit - Processing time: 336ms - RequestID: 5spcel7s4uj +2025-06-18T14:52:40.181Z [TRACE] notification-service - PUT /api/v1/payments - Status: 500 - Response time: 65ms - IP: 192.168.85.229 - User: user_1033 - RequestID: bym2n5r6fyj +2025-06-18T14:52:40.281Z [DEBUG] notification-service - GET /api/v1/orders - Status: 502 - Response time: 1436ms - IP: 192.168.144.38 - User: user_1097 - RequestID: 6qglgok23ag +2025-06-18T14:52:40.381Z [INFO] payment-service - Operation: cache_miss - Processing time: 590ms - RequestID: td8vqvkplwg +2025-06-18T14:52:40.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.81.206 - RequestID: 8ts8ev9nemg +2025-06-18T14:52:40.581Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 403 - Response time: 932ms - IP: 192.168.167.32 - User: user_1046 - RequestID: u3f1pzux1b +2025-06-18T14:52:40.681Z [DEBUG] payment-service - GET /api/v1/users - Status: 503 - Response time: 988ms - IP: 192.168.138.123 - User: user_1083 - RequestID: 6jxwu8bt21t +2025-06-18T14:52:40.781Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 441ms - Rows affected: 28 - RequestID: f02gg9nn1h9 +2025-06-18T14:52:40.881Z [TRACE] user-service - Operation: cache_miss - Processing time: 972ms - RequestID: su2mmdq1y7i +2025-06-18T14:52:40.981Z [DEBUG] user-service - Auth event: login_failed - User: user_1077 - IP: 192.168.14.77 - RequestID: u6zksdqlil +2025-06-18T14:52:41.081Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 311ms - IP: 192.168.1.152 - User: user_1090 - RequestID: hvn6gsn5jyl +2025-06-18T14:52:41.181Z [INFO] user-service - GET /api/v1/payments - Status: 500 - Response time: 1050ms - IP: 192.168.44.5 - User: user_1009 - RequestID: 4pmym7oab0o +2025-06-18T14:52:41.281Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 500 - Response time: 1099ms - IP: 192.168.1.152 - User: user_1050 - RequestID: 8r9uesfso8 +2025-06-18T14:52:41.381Z [DEBUG] user-service - Operation: email_sent - Processing time: 853ms - RequestID: ykbx9u1bry +2025-06-18T14:52:41.481Z [INFO] notification-service - Auth event: password_change - User: user_1085 - IP: 192.168.242.165 - RequestID: j8lhfu1mgx8 +2025-06-18T14:52:41.581Z [TRACE] auth-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.147.171 - RequestID: jl6bgtzhgyf +2025-06-18T14:52:41.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1025 - IP: 192.168.240.169 - RequestID: arohd0rvkis +2025-06-18T14:52:41.781Z [INFO] notification-service - Auth event: password_change - User: user_1072 - IP: 192.168.32.38 - RequestID: 733a9jaxk2l +2025-06-18T14:52:41.881Z [INFO] user-service - Auth event: logout - User: user_1094 - IP: 192.168.235.117 - RequestID: mg1n4ebculk +2025-06-18T14:52:41.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.141.100 - RequestID: jlz6mawbor +2025-06-18T14:52:42.081Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 201 - Response time: 751ms - IP: 192.168.68.128 - User: user_1008 - RequestID: e0zdeaxkc9 +2025-06-18T14:52:42.181Z [INFO] auth-service - Operation: order_created - Processing time: 414ms - RequestID: b2guj6z7gnw +2025-06-18T14:52:42.281Z [INFO] order-service - PUT /api/v1/orders - Status: 201 - Response time: 711ms - IP: 192.168.229.123 - User: user_1013 - RequestID: v7xoz7oobbs +2025-06-18T14:52:42.381Z [TRACE] inventory-service - POST /api/v1/orders - Status: 401 - Response time: 874ms - IP: 192.168.138.123 - User: user_1063 - RequestID: r1z09szmyg +2025-06-18T14:52:42.481Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 127ms - Rows affected: 93 - RequestID: 3z7do8ylp2e +2025-06-18T14:52:42.581Z [TRACE] inventory-service - Auth event: login_success - User: user_1005 - IP: 192.168.11.60 - RequestID: 6gj8wp8h54d +2025-06-18T14:52:42.681Z [TRACE] auth-service - Operation: email_sent - Processing time: 993ms - RequestID: 2dwmcvo410u +2025-06-18T14:52:42.781Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 318ms - RequestID: ws2f9esmicq +2025-06-18T14:52:42.881Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 272ms - Rows affected: 66 - RequestID: vyqqoevhmvi +2025-06-18T14:52:42.981Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 327ms - RequestID: 6g7o95fk0ae +2025-06-18T14:52:43.081Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 502 - Response time: 810ms - IP: 192.168.235.117 - User: user_1044 - RequestID: u75shbkkh4r +2025-06-18T14:52:43.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 900ms - RequestID: esvzd9ip4f +2025-06-18T14:52:43.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1084 - IP: 192.168.174.114 - RequestID: 4cfgixmbrbf +2025-06-18T14:52:43.381Z [TRACE] order-service - Operation: cache_hit - Processing time: 719ms - RequestID: lh3n1hst9e +2025-06-18T14:52:43.481Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 404 - Response time: 857ms - IP: 192.168.28.146 - User: user_1040 - RequestID: 38ynx1cscej +2025-06-18T14:52:43.581Z [TRACE] payment-service - DELETE /api/v1/users - Status: 200 - Response time: 979ms - IP: 192.168.1.152 - User: user_1039 - RequestID: sfz7v0lq9up +2025-06-18T14:52:43.681Z [DEBUG] auth-service - Database INSERT on products - Execution time: 389ms - Rows affected: 60 - RequestID: 5cnbhz2qo1r +2025-06-18T14:52:43.781Z [INFO] inventory-service - Database DELETE on products - Execution time: 405ms - Rows affected: 23 - RequestID: mwse93s00fb +2025-06-18T14:52:43.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1097 - IP: 192.168.1.152 - RequestID: yoky4tsrqe +2025-06-18T14:52:43.981Z [INFO] inventory-service - POST /api/v1/orders - Status: 500 - Response time: 1257ms - IP: 192.168.30.79 - User: user_1027 - RequestID: m7ro3hf1t8 +2025-06-18T14:52:44.081Z [DEBUG] notification-service - Database DELETE on users - Execution time: 396ms - Rows affected: 8 - RequestID: kheg3ai6tss +2025-06-18T14:52:44.181Z [TRACE] payment-service - GET /api/v1/inventory - Status: 502 - Response time: 1398ms - IP: 192.168.53.133 - User: user_1064 - RequestID: trkfzqyoe6a +2025-06-18T14:52:44.281Z [INFO] user-service - Operation: inventory_updated - Processing time: 983ms - RequestID: oruvzw1iq2 +2025-06-18T14:52:44.381Z [INFO] user-service - Operation: email_sent - Processing time: 955ms - RequestID: 8qyctzrhk7v +2025-06-18T14:52:44.481Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 500 - Response time: 1247ms - IP: 192.168.227.233 - User: user_1017 - RequestID: l4lmp06nis +2025-06-18T14:52:44.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.100.240 - RequestID: qj1osvcien +2025-06-18T14:52:44.681Z [TRACE] order-service - Operation: order_created - Processing time: 791ms - RequestID: atsalnx7fzn +2025-06-18T14:52:44.781Z [INFO] payment-service - Database INSERT on sessions - Execution time: 306ms - Rows affected: 30 - RequestID: ymv1xaqz5kc +2025-06-18T14:52:44.881Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 113ms - Rows affected: 57 - RequestID: ds114uljfqi +2025-06-18T14:52:44.981Z [TRACE] auth-service - Auth event: login_success - User: user_1078 - IP: 192.168.79.141 - RequestID: qxtrii2gejc +2025-06-18T14:52:45.081Z [TRACE] order-service - Database INSERT on payments - Execution time: 305ms - Rows affected: 18 - RequestID: 7jlmt8zcau +2025-06-18T14:52:45.181Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 251ms - Rows affected: 71 - RequestID: gkgg0jaki8b +2025-06-18T14:52:45.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.31.117 - RequestID: 4igjbksn5p8 +2025-06-18T14:52:45.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1094 - IP: 192.168.10.184 - RequestID: ux5fkl8b1ik +2025-06-18T14:52:45.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 221ms - RequestID: ex29dt64o1k +2025-06-18T14:52:45.581Z [TRACE] inventory-service - Auth event: login_success - User: user_1003 - IP: 192.168.32.38 - RequestID: b9xonm7g03v +2025-06-18T14:52:45.681Z [TRACE] inventory-service - Auth event: login_success - User: user_1072 - IP: 192.168.79.116 - RequestID: vwv4w25927 +2025-06-18T14:52:45.781Z [INFO] order-service - Operation: payment_processed - Processing time: 765ms - RequestID: udlv84ibd07 +2025-06-18T14:52:45.881Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 350ms - Rows affected: 43 - RequestID: i4h1ohbeot +2025-06-18T14:52:45.981Z [INFO] payment-service - Auth event: password_change - User: user_1006 - IP: 192.168.32.38 - RequestID: zrm42sd91hj +2025-06-18T14:52:46.081Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 389ms - Rows affected: 38 - RequestID: ry0dq7ljr2s +2025-06-18T14:52:46.181Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 400 - Response time: 1021ms - IP: 192.168.147.171 - User: user_1005 - RequestID: nbtxgog3j5m +2025-06-18T14:52:46.281Z [TRACE] order-service - Operation: inventory_updated - Processing time: 326ms - RequestID: 6k0magf0zo5 +2025-06-18T14:52:46.381Z [INFO] user-service - DELETE /api/v1/inventory - Status: 404 - Response time: 846ms - IP: 192.168.138.123 - User: user_1000 - RequestID: r51rwphvwbn +2025-06-18T14:52:46.481Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 924ms - RequestID: dmdxlhkr21t +2025-06-18T14:52:46.581Z [TRACE] payment-service - PATCH /api/v1/users - Status: 201 - Response time: 641ms - IP: 192.168.133.7 - User: user_1096 - RequestID: e6djf4ar8fd +2025-06-18T14:52:46.681Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 937ms - RequestID: 8ub38avts1 +2025-06-18T14:52:46.781Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1522ms - IP: 192.168.170.215 - User: user_1083 - RequestID: edryhzgv5ib +2025-06-18T14:52:46.881Z [DEBUG] auth-service - Database SELECT on products - Execution time: 481ms - Rows affected: 48 - RequestID: ldk3wgqlgms +2025-06-18T14:52:46.981Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 123ms - IP: 192.168.100.240 - User: user_1051 - RequestID: 6rt9bg1uc23 +2025-06-18T14:52:47.081Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 403 - Response time: 89ms - IP: 192.168.187.199 - User: user_1098 - RequestID: hxq40fpdrtj +2025-06-18T14:52:47.181Z [INFO] auth-service - Operation: cache_hit - Processing time: 490ms - RequestID: hwd0ya0hzrb +2025-06-18T14:52:47.281Z [INFO] payment-service - Operation: webhook_sent - Processing time: 348ms - RequestID: i23s19lokbf +2025-06-18T14:52:47.381Z [TRACE] payment-service - Database DELETE on products - Execution time: 278ms - Rows affected: 47 - RequestID: hy1wbmfx9co +2025-06-18T14:52:47.481Z [INFO] user-service - Database UPDATE on products - Execution time: 327ms - Rows affected: 81 - RequestID: sw9hqyemwvr +2025-06-18T14:52:47.581Z [TRACE] order-service - Operation: notification_queued - Processing time: 1002ms - RequestID: gk5kv6exq5u +2025-06-18T14:52:47.681Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 471ms - RequestID: acwfuj8hsa5 +2025-06-18T14:52:47.781Z [TRACE] payment-service - Operation: cache_miss - Processing time: 185ms - RequestID: nud2jexpxu +2025-06-18T14:52:47.881Z [INFO] notification-service - POST /api/v1/inventory - Status: 400 - Response time: 1209ms - IP: 192.168.81.206 - User: user_1030 - RequestID: s5u3zue0sxo +2025-06-18T14:52:47.981Z [INFO] auth-service - Operation: cache_hit - Processing time: 584ms - RequestID: 3e61t6u7eex +2025-06-18T14:52:48.081Z [TRACE] payment-service - Operation: cache_hit - Processing time: 538ms - RequestID: b09i6yjb1di +2025-06-18T14:52:48.181Z [TRACE] order-service - Database SELECT on payments - Execution time: 255ms - Rows affected: 86 - RequestID: f4oi8ix973 +2025-06-18T14:52:48.281Z [TRACE] inventory-service - Auth event: login_success - User: user_1055 - IP: 192.168.189.103 - RequestID: 87835efbn0r +2025-06-18T14:52:48.381Z [TRACE] order-service - Auth event: password_change - User: user_1024 - IP: 192.168.187.199 - RequestID: walfxkorz7 +2025-06-18T14:52:48.481Z [INFO] notification-service - DELETE /api/v1/payments - Status: 502 - Response time: 495ms - IP: 192.168.138.123 - User: user_1063 - RequestID: jf6417p7zsf +2025-06-18T14:52:48.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 713ms - RequestID: 50yhtfxme96 +2025-06-18T14:52:48.681Z [DEBUG] auth-service - Database INSERT on products - Execution time: 169ms - Rows affected: 33 - RequestID: 1e45r2g5bgf +2025-06-18T14:52:48.781Z [INFO] notification-service - Database INSERT on payments - Execution time: 236ms - Rows affected: 44 - RequestID: 6a7737fjhlj +2025-06-18T14:52:48.881Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 400 - Response time: 1476ms - IP: 192.168.79.141 - User: user_1057 - RequestID: w39e02m5858 +2025-06-18T14:52:48.981Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 410ms - Rows affected: 85 - RequestID: 16c5aow25sc +2025-06-18T14:52:49.081Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1881ms - IP: 192.168.53.133 - User: user_1047 - RequestID: r9gpw2qhl6 +2025-06-18T14:52:49.181Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 240ms - IP: 192.168.1.152 - User: user_1090 - RequestID: 0kp9pvbctfao +2025-06-18T14:52:49.281Z [TRACE] notification-service - PUT /api/v1/payments - Status: 502 - Response time: 1357ms - IP: 192.168.167.32 - User: user_1029 - RequestID: nk3bsapohak +2025-06-18T14:52:49.381Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1917ms - IP: 192.168.138.123 - User: user_1025 - RequestID: xkt4lckjgy +2025-06-18T14:52:49.481Z [DEBUG] user-service - Operation: notification_queued - Processing time: 217ms - RequestID: texcjk0tng +2025-06-18T14:52:49.581Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 361ms - IP: 192.168.33.76 - User: user_1061 - RequestID: zbh53e1lyi +2025-06-18T14:52:49.681Z [INFO] inventory-service - Operation: order_created - Processing time: 453ms - RequestID: krm1318muf7 +2025-06-18T14:52:49.781Z [INFO] payment-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.64.33 - RequestID: s3igpf2ss1 +2025-06-18T14:52:49.881Z [INFO] user-service - Operation: cache_hit - Processing time: 995ms - RequestID: mzl9g7x7ndo +2025-06-18T14:52:49.981Z [INFO] order-service - PUT /api/v1/inventory - Status: 201 - Response time: 1798ms - IP: 192.168.235.117 - User: user_1026 - RequestID: 4zfmssqm52v +2025-06-18T14:52:50.081Z [INFO] payment-service - Operation: cache_miss - Processing time: 902ms - RequestID: drojzn2jzg5 +2025-06-18T14:52:50.181Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 307ms - Rows affected: 53 - RequestID: 5wgqpw4oj2b +2025-06-18T14:52:50.281Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 136ms - RequestID: 2tmf0npnn2g +2025-06-18T14:52:50.381Z [TRACE] auth-service - GET /api/v1/orders - Status: 200 - Response time: 1235ms - IP: 192.168.227.77 - User: user_1066 - RequestID: fv05dsam2po +2025-06-18T14:52:50.481Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 503 - Response time: 1382ms - IP: 192.168.46.63 - User: user_1070 - RequestID: 2zdh8309zp2 +2025-06-18T14:52:50.581Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 201ms - Rows affected: 23 - RequestID: 2z7yts11j7g +2025-06-18T14:52:50.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1069 - IP: 192.168.11.60 - RequestID: 5fjqj43ba47 +2025-06-18T14:52:50.781Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 152ms - Rows affected: 88 - RequestID: 71jn7vzna0h +2025-06-18T14:52:50.881Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 270ms - Rows affected: 27 - RequestID: v386isxx7xl +2025-06-18T14:52:50.981Z [TRACE] inventory-service - Operation: order_created - Processing time: 857ms - RequestID: rdcaeoyufl +2025-06-18T14:52:51.081Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 463ms - Rows affected: 97 - RequestID: k952jfs33d +2025-06-18T14:52:51.181Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 419ms - RequestID: max60bobc +2025-06-18T14:52:51.281Z [INFO] payment-service - PUT /api/v1/payments - Status: 502 - Response time: 1825ms - IP: 192.168.36.218 - User: user_1014 - RequestID: ajxmrut5rj +2025-06-18T14:52:51.381Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 450ms - RequestID: udebjgccz9d +2025-06-18T14:52:51.481Z [INFO] auth-service - Database SELECT on users - Execution time: 172ms - Rows affected: 75 - RequestID: o3u7o4kiba +2025-06-18T14:52:51.581Z [INFO] payment-service - Auth event: login_success - User: user_1072 - IP: 192.168.53.133 - RequestID: 3r6kviq4g6p +2025-06-18T14:52:51.681Z [TRACE] order-service - PATCH /api/v1/orders - Status: 404 - Response time: 349ms - IP: 192.168.196.226 - User: user_1071 - RequestID: xys33fdl1 +2025-06-18T14:52:51.781Z [TRACE] user-service - Auth event: password_change - User: user_1077 - IP: 192.168.64.33 - RequestID: 9t6n7fcce4j +2025-06-18T14:52:51.881Z [DEBUG] payment-service - GET /api/v1/users - Status: 400 - Response time: 1543ms - IP: 192.168.181.225 - User: user_1031 - RequestID: tnlh4m48mk +2025-06-18T14:52:51.981Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 349ms - Rows affected: 24 - RequestID: c0ow6axg9ca +2025-06-18T14:52:52.081Z [TRACE] payment-service - PUT /api/v1/orders - Status: 503 - Response time: 681ms - IP: 192.168.247.134 - User: user_1037 - RequestID: u1x3vqrs41q +2025-06-18T14:52:52.181Z [INFO] user-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.14.77 - RequestID: t5b6lugfvo +2025-06-18T14:52:52.281Z [INFO] auth-service - Database DELETE on orders - Execution time: 491ms - Rows affected: 39 - RequestID: vadm7zbxgf +2025-06-18T14:52:52.381Z [TRACE] payment-service - Database DELETE on products - Execution time: 214ms - Rows affected: 22 - RequestID: paqlv6jr08o +2025-06-18T14:52:52.481Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 219ms - Rows affected: 54 - RequestID: czbmwyxfsb8 +2025-06-18T14:52:52.581Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 743ms - RequestID: 9l6xg7u35w +2025-06-18T14:52:52.681Z [INFO] order-service - Operation: inventory_updated - Processing time: 688ms - RequestID: 3cxrbkryu3l +2025-06-18T14:52:52.781Z [DEBUG] user-service - Database DELETE on payments - Execution time: 234ms - Rows affected: 11 - RequestID: 8jpc8kiyhcp +2025-06-18T14:52:52.881Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 500 - Response time: 215ms - IP: 192.168.85.229 - User: user_1008 - RequestID: u32mq98fh7g +2025-06-18T14:52:52.981Z [INFO] payment-service - Auth event: logout - User: user_1091 - IP: 192.168.194.41 - RequestID: okosxfdc5vp +2025-06-18T14:52:53.081Z [TRACE] user-service - Auth event: login_success - User: user_1070 - IP: 192.168.147.171 - RequestID: fuqgf57nz3g +2025-06-18T14:52:53.181Z [TRACE] auth-service - Database INSERT on users - Execution time: 104ms - Rows affected: 24 - RequestID: saexvpjhtg +2025-06-18T14:52:53.281Z [INFO] payment-service - Auth event: login_failed - User: user_1030 - IP: 192.168.28.146 - RequestID: 5ltn3d4offg +2025-06-18T14:52:53.381Z [TRACE] payment-service - Auth event: login_failed - User: user_1024 - IP: 192.168.31.117 - RequestID: g2yvh2xwq58 +2025-06-18T14:52:53.481Z [DEBUG] user-service - DELETE /api/v1/users - Status: 404 - Response time: 1104ms - IP: 192.168.81.206 - User: user_1006 - RequestID: r8q5ujkunen +2025-06-18T14:52:53.581Z [DEBUG] inventory-service - Auth event: login_success - User: user_1016 - IP: 192.168.189.103 - RequestID: rl43schky1 +2025-06-18T14:52:53.681Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 491ms - Rows affected: 83 - RequestID: otonbjpl4e +2025-06-18T14:52:53.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1074 - IP: 192.168.11.60 - RequestID: 6cc0ytk25er +2025-06-18T14:52:53.881Z [INFO] auth-service - Operation: order_created - Processing time: 94ms - RequestID: ng8edgmk6s +2025-06-18T14:52:53.981Z [TRACE] notification-service - POST /api/v1/orders - Status: 200 - Response time: 1184ms - IP: 192.168.14.77 - User: user_1068 - RequestID: hk5031bvn6d +2025-06-18T14:52:54.081Z [TRACE] order-service - Operation: email_sent - Processing time: 690ms - RequestID: vqacapr772 +2025-06-18T14:52:54.181Z [TRACE] order-service - POST /api/v1/inventory - Status: 200 - Response time: 1020ms - IP: 192.168.147.171 - User: user_1081 - RequestID: aowaub8ma5q +2025-06-18T14:52:54.281Z [TRACE] payment-service - Auth event: login_success - User: user_1018 - IP: 192.168.227.77 - RequestID: lrpa7bjbg7n +2025-06-18T14:52:54.381Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 15ms - Rows affected: 44 - RequestID: z8fl4denfb +2025-06-18T14:52:54.481Z [INFO] auth-service - Database SELECT on sessions - Execution time: 344ms - Rows affected: 49 - RequestID: z28701xmulo +2025-06-18T14:52:54.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 547ms - RequestID: mbsay7k0qkc +2025-06-18T14:52:54.681Z [DEBUG] user-service - Auth event: password_change - User: user_1082 - IP: 192.168.174.114 - RequestID: qm00bpcdja +2025-06-18T14:52:54.781Z [DEBUG] order-service - Auth event: logout - User: user_1080 - IP: 192.168.159.94 - RequestID: 3nr7dgm5bpr +2025-06-18T14:52:54.881Z [INFO] inventory-service - Operation: notification_queued - Processing time: 725ms - RequestID: v4t277lllcl +2025-06-18T14:52:54.981Z [TRACE] user-service - Database INSERT on users - Execution time: 217ms - Rows affected: 73 - RequestID: 6lvan52btwo +2025-06-18T14:52:55.081Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1569ms - IP: 192.168.100.240 - User: user_1086 - RequestID: emujyyzc8lg +2025-06-18T14:52:55.181Z [DEBUG] auth-service - Auth event: logout - User: user_1019 - IP: 192.168.1.152 - RequestID: 2h823u207rp +2025-06-18T14:52:55.281Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 489ms - Rows affected: 6 - RequestID: ts8wbu5uish +2025-06-18T14:52:55.381Z [INFO] payment-service - Auth event: password_change - User: user_1071 - IP: 192.168.79.141 - RequestID: jf59x20ypwm +2025-06-18T14:52:55.481Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 896ms - RequestID: vcem8of2efo +2025-06-18T14:52:55.581Z [TRACE] notification-service - Database UPDATE on users - Execution time: 103ms - Rows affected: 95 - RequestID: noqp266851j +2025-06-18T14:52:55.681Z [TRACE] auth-service - GET /api/v1/users - Status: 404 - Response time: 79ms - IP: 192.168.232.72 - User: user_1049 - RequestID: nsfjyr8azxf +2025-06-18T14:52:55.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.11.60 - RequestID: 5ju3qgv1gzx +2025-06-18T14:52:55.881Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 500 - Response time: 1004ms - IP: 192.168.11.60 - User: user_1031 - RequestID: 14unasadefuj +2025-06-18T14:52:55.981Z [TRACE] payment-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.196.226 - RequestID: 3fiqvk2l23s +2025-06-18T14:52:56.081Z [DEBUG] order-service - Database DELETE on products - Execution time: 452ms - Rows affected: 21 - RequestID: 2yo8fgphvxj +2025-06-18T14:52:56.181Z [TRACE] auth-service - Operation: email_sent - Processing time: 495ms - RequestID: e6x0iut71rn +2025-06-18T14:52:56.281Z [INFO] user-service - PUT /api/v1/auth/login - Status: 500 - Response time: 570ms - IP: 192.168.174.114 - User: user_1018 - RequestID: bvf1zq66fjq +2025-06-18T14:52:56.381Z [DEBUG] auth-service - Operation: email_sent - Processing time: 852ms - RequestID: yzcliw06xs +2025-06-18T14:52:56.481Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 503 - Response time: 830ms - IP: 192.168.187.199 - User: user_1001 - RequestID: dlsp0o4u15o +2025-06-18T14:52:56.581Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1605ms - IP: 192.168.64.33 - User: user_1011 - RequestID: no3e2qydge +2025-06-18T14:52:56.681Z [TRACE] inventory-service - Operation: order_created - Processing time: 177ms - RequestID: iu97zkruhr +2025-06-18T14:52:56.781Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.194.41 - RequestID: k0wdop5z9ze +2025-06-18T14:52:56.881Z [TRACE] user-service - Auth event: login_success - User: user_1000 - IP: 192.168.144.38 - RequestID: 2a5fv7x8g19 +2025-06-18T14:52:56.981Z [TRACE] auth-service - Database DELETE on orders - Execution time: 197ms - Rows affected: 56 - RequestID: 49dh5jmau8o +2025-06-18T14:52:57.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.247.134 - RequestID: fu85meutxp +2025-06-18T14:52:57.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 1021ms - RequestID: m58yvonc5oh +2025-06-18T14:52:57.281Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 464ms - RequestID: 3b1ps0e7x3d +2025-06-18T14:52:57.381Z [INFO] payment-service - PATCH /api/v1/orders - Status: 200 - Response time: 1307ms - IP: 192.168.187.199 - User: user_1098 - RequestID: jojxtt39v6e +2025-06-18T14:52:57.481Z [TRACE] payment-service - Operation: email_sent - Processing time: 463ms - RequestID: au56vqe2qlp +2025-06-18T14:52:57.581Z [INFO] user-service - Operation: email_sent - Processing time: 885ms - RequestID: q8z87cxnx0o +2025-06-18T14:52:57.681Z [TRACE] inventory-service - Auth event: password_change - User: user_1089 - IP: 192.168.242.165 - RequestID: p1kq905nay +2025-06-18T14:52:57.781Z [INFO] user-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.85.229 - RequestID: 0i1pdz7fzyif +2025-06-18T14:52:57.881Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 405ms - RequestID: x7bse78zd5 +2025-06-18T14:52:57.981Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 821ms - RequestID: s86shmd1umm +2025-06-18T14:52:58.081Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 916ms - RequestID: jle2vx2j95 +2025-06-18T14:52:58.181Z [DEBUG] order-service - Operation: order_created - Processing time: 420ms - RequestID: w36ebfxsa4 +2025-06-18T14:52:58.281Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 316ms - Rows affected: 97 - RequestID: rz7ljfslxm +2025-06-18T14:52:58.381Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 189ms - IP: 192.168.104.37 - User: user_1061 - RequestID: h26ao4emlkk +2025-06-18T14:52:58.481Z [INFO] user-service - Auth event: login_success - User: user_1084 - IP: 192.168.167.32 - RequestID: vf4vjzjmha +2025-06-18T14:52:58.581Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 579ms - RequestID: u09ehwvw21i +2025-06-18T14:52:58.681Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 500 - Response time: 907ms - IP: 192.168.14.77 - User: user_1082 - RequestID: zy2xxmrqsn8 +2025-06-18T14:52:58.781Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 75ms - Rows affected: 43 - RequestID: 16pn1i5v1zs +2025-06-18T14:52:58.881Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 200 - Response time: 1481ms - IP: 192.168.28.146 - User: user_1083 - RequestID: wp1aw4ctlk +2025-06-18T14:52:58.981Z [TRACE] order-service - Database SELECT on products - Execution time: 24ms - Rows affected: 96 - RequestID: 8sfgl68zk +2025-06-18T14:52:59.081Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 581ms - RequestID: fatgg67c9jl +2025-06-18T14:52:59.181Z [TRACE] auth-service - PUT /api/v1/orders - Status: 200 - Response time: 150ms - IP: 192.168.242.165 - User: user_1076 - RequestID: 2amt3w6s8gj +2025-06-18T14:52:59.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1069 - IP: 192.168.11.60 - RequestID: qiz6zrcmmxe +2025-06-18T14:52:59.381Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 350ms - Rows affected: 1 - RequestID: z8f2u2cdeq +2025-06-18T14:52:59.481Z [TRACE] order-service - Auth event: logout - User: user_1079 - IP: 192.168.31.117 - RequestID: c78a285ihxs +2025-06-18T14:52:59.581Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 1410ms - IP: 192.168.229.123 - User: user_1027 - RequestID: 2ec7hmfdp9z +2025-06-18T14:52:59.681Z [DEBUG] order-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.194.41 - RequestID: vo1wfwum2v +2025-06-18T14:52:59.781Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 200 - Response time: 798ms - IP: 192.168.10.184 - User: user_1026 - RequestID: cfub410rdf +2025-06-18T14:52:59.881Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 805ms - RequestID: ca6jzu1fyx +2025-06-18T14:52:59.981Z [INFO] payment-service - Auth event: password_change - User: user_1089 - IP: 192.168.167.32 - RequestID: wr1fm15ztaa +2025-06-18T14:53:00.081Z [TRACE] user-service - Operation: cache_hit - Processing time: 266ms - RequestID: cjq11l3ugf +2025-06-18T14:53:00.181Z [INFO] user-service - Operation: webhook_sent - Processing time: 819ms - RequestID: bmyjm6hd5hj +2025-06-18T14:53:00.281Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 241ms - IP: 192.168.159.94 - User: user_1000 - RequestID: qa6niig21zs +2025-06-18T14:53:00.381Z [TRACE] notification-service - DELETE /api/v1/users - Status: 400 - Response time: 626ms - IP: 192.168.28.146 - User: user_1037 - RequestID: h15kaxodcet +2025-06-18T14:53:00.481Z [INFO] payment-service - Operation: cache_miss - Processing time: 1028ms - RequestID: uvk7pklereq +2025-06-18T14:53:00.581Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 895ms - RequestID: 1927hky0yiw +2025-06-18T14:53:00.681Z [DEBUG] order-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.104.37 - RequestID: 0mc1wazlabn +2025-06-18T14:53:00.781Z [INFO] auth-service - POST /api/v1/orders - Status: 200 - Response time: 796ms - IP: 192.168.68.158 - User: user_1076 - RequestID: lmetd42h6wj +2025-06-18T14:53:00.881Z [TRACE] user-service - DELETE /api/v1/payments - Status: 201 - Response time: 1097ms - IP: 192.168.194.41 - User: user_1076 - RequestID: v00mrj6ve3k +2025-06-18T14:53:00.981Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 401 - Response time: 532ms - IP: 192.168.242.165 - User: user_1063 - RequestID: clbvvzde3ft +2025-06-18T14:53:01.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.174.114 - RequestID: 4bvsf3edvup +2025-06-18T14:53:01.181Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 330ms - Rows affected: 64 - RequestID: 0olktkj9dk5q +2025-06-18T14:53:01.281Z [INFO] order-service - Auth event: logout - User: user_1088 - IP: 192.168.144.38 - RequestID: 51k8bn7q8qe +2025-06-18T14:53:01.381Z [INFO] payment-service - Operation: cache_hit - Processing time: 809ms - RequestID: 32ite5pa3me +2025-06-18T14:53:01.481Z [DEBUG] user-service - Operation: notification_queued - Processing time: 1014ms - RequestID: j91wt14s3ag +2025-06-18T14:53:01.581Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 357ms - Rows affected: 86 - RequestID: r2tqgycmfar +2025-06-18T14:53:01.681Z [INFO] notification-service - Operation: cache_hit - Processing time: 890ms - RequestID: 6fd0dm0go8t +2025-06-18T14:53:01.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.242.165 - RequestID: ftah3748s87 +2025-06-18T14:53:01.881Z [DEBUG] user-service - Operation: email_sent - Processing time: 927ms - RequestID: 19gbe0x9env +2025-06-18T14:53:01.981Z [INFO] auth-service - Auth event: logout - User: user_1085 - IP: 192.168.158.144 - RequestID: 5e7739qtr4s +2025-06-18T14:53:02.081Z [INFO] notification-service - Operation: notification_queued - Processing time: 64ms - RequestID: b0qtv2griv +2025-06-18T14:53:02.181Z [TRACE] inventory-service - GET /api/v1/orders - Status: 500 - Response time: 1011ms - IP: 192.168.174.114 - User: user_1090 - RequestID: y8ubgbvdqyh +2025-06-18T14:53:02.281Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 30ms - Rows affected: 13 - RequestID: mbqm42gh4bp +2025-06-18T14:53:02.381Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 460ms - Rows affected: 43 - RequestID: d2e60w49vxu +2025-06-18T14:53:02.481Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 572ms - IP: 192.168.46.63 - User: user_1082 - RequestID: eqj9tkysah7 +2025-06-18T14:53:02.581Z [INFO] payment-service - Auth event: logout - User: user_1057 - IP: 192.168.33.76 - RequestID: tr3nz14g92g +2025-06-18T14:53:02.681Z [INFO] inventory-service - Auth event: password_change - User: user_1083 - IP: 192.168.68.158 - RequestID: j0obhqpey7f +2025-06-18T14:53:02.781Z [INFO] inventory-service - Database SELECT on payments - Execution time: 49ms - Rows affected: 35 - RequestID: xyv9r99rtoo +2025-06-18T14:53:02.881Z [INFO] user-service - Database INSERT on payments - Execution time: 401ms - Rows affected: 17 - RequestID: k4yaedw0kg8 +2025-06-18T14:53:02.981Z [TRACE] inventory-service - Database INSERT on products - Execution time: 175ms - Rows affected: 94 - RequestID: jbiqnrg9w0n +2025-06-18T14:53:03.081Z [INFO] payment-service - POST /api/v1/users - Status: 502 - Response time: 1063ms - IP: 192.168.13.72 - User: user_1008 - RequestID: b4eroyus534 +2025-06-18T14:53:03.181Z [INFO] inventory-service - Auth event: login_failed - User: user_1029 - IP: 192.168.229.123 - RequestID: ijqsh332o +2025-06-18T14:53:03.281Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1536ms - IP: 192.168.187.199 - User: user_1092 - RequestID: 7f7ptqhsv5 +2025-06-18T14:53:03.381Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 502 - Response time: 1695ms - IP: 192.168.138.123 - User: user_1087 - RequestID: hnk4saifae +2025-06-18T14:53:03.481Z [INFO] order-service - Database DELETE on sessions - Execution time: 276ms - Rows affected: 86 - RequestID: qb53k4bh6u +2025-06-18T14:53:03.581Z [INFO] inventory-service - Auth event: login_success - User: user_1094 - IP: 192.168.227.233 - RequestID: d32z3rxtk48 +2025-06-18T14:53:03.681Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 383ms - IP: 192.168.227.233 - User: user_1028 - RequestID: eoznaemzomt +2025-06-18T14:53:03.781Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 176ms - IP: 192.168.104.37 - User: user_1048 - RequestID: ti5cm7552zj +2025-06-18T14:53:03.881Z [TRACE] payment-service - Auth event: login_success - User: user_1086 - IP: 192.168.68.158 - RequestID: 09eu9jdruigp +2025-06-18T14:53:03.981Z [TRACE] inventory-service - Database SELECT on products - Execution time: 215ms - Rows affected: 76 - RequestID: kwet5140nce +2025-06-18T14:53:04.081Z [DEBUG] auth-service - Database INSERT on products - Execution time: 14ms - Rows affected: 17 - RequestID: e3yivwd5l8n +2025-06-18T14:53:04.181Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 248ms - IP: 192.168.181.225 - User: user_1004 - RequestID: 413w7v131nh +2025-06-18T14:53:04.281Z [TRACE] payment-service - Database INSERT on orders - Execution time: 291ms - Rows affected: 5 - RequestID: kjr0r6jxjwb +2025-06-18T14:53:04.381Z [TRACE] payment-service - Auth event: password_change - User: user_1051 - IP: 192.168.211.72 - RequestID: svwgjmuwi2 +2025-06-18T14:53:04.481Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 481ms - Rows affected: 54 - RequestID: xzbi3p40sx +2025-06-18T14:53:04.581Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 403 - Response time: 1026ms - IP: 192.168.158.144 - User: user_1069 - RequestID: prfivtcfyvj +2025-06-18T14:53:04.681Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 346ms - Rows affected: 30 - RequestID: ekhc25r1sqk +2025-06-18T14:53:04.781Z [DEBUG] user-service - GET /api/v1/inventory - Status: 500 - Response time: 792ms - IP: 192.168.158.144 - User: user_1011 - RequestID: vf8onwk7a9c +2025-06-18T14:53:04.881Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 720ms - RequestID: ysxfsuj628p +2025-06-18T14:53:04.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.170.215 - RequestID: mekmzen4q5i +2025-06-18T14:53:05.081Z [INFO] notification-service - POST /api/v1/inventory - Status: 400 - Response time: 508ms - IP: 192.168.46.63 - User: user_1060 - RequestID: k9z6biaa3ns +2025-06-18T14:53:05.181Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 327ms - Rows affected: 18 - RequestID: hn0luof2wmb +2025-06-18T14:53:05.281Z [TRACE] user-service - Auth event: logout - User: user_1094 - IP: 192.168.247.134 - RequestID: 8l7jotm0u27 +2025-06-18T14:53:05.381Z [TRACE] user-service - Operation: payment_processed - Processing time: 948ms - RequestID: npemp6sub2 +2025-06-18T14:53:05.481Z [DEBUG] notification-service - Auth event: logout - User: user_1072 - IP: 192.168.133.7 - RequestID: sd3emub8u4j +2025-06-18T14:53:05.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 449ms - RequestID: 18m7rdtjpl1 +2025-06-18T14:53:05.681Z [TRACE] notification-service - Database SELECT on payments - Execution time: 8ms - Rows affected: 34 - RequestID: a6qfbzpfcnj +2025-06-18T14:53:05.781Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 410ms - Rows affected: 55 - RequestID: d0pox1rveu +2025-06-18T14:53:05.881Z [TRACE] auth-service - Database DELETE on payments - Execution time: 91ms - Rows affected: 48 - RequestID: drmalq6z91 +2025-06-18T14:53:05.981Z [INFO] order-service - Operation: inventory_updated - Processing time: 177ms - RequestID: u5atnauyr5 +2025-06-18T14:53:06.081Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 521ms - RequestID: kkw2li8c4is +2025-06-18T14:53:06.181Z [TRACE] order-service - Database SELECT on sessions - Execution time: 83ms - Rows affected: 64 - RequestID: vbar43g4rhd +2025-06-18T14:53:06.281Z [TRACE] notification-service - GET /api/v1/users - Status: 201 - Response time: 538ms - IP: 192.168.147.171 - User: user_1069 - RequestID: 0lp8lb6w7oj +2025-06-18T14:53:06.381Z [TRACE] order-service - Auth event: login_failed - User: user_1059 - IP: 192.168.31.117 - RequestID: jwdcp2eyiqc +2025-06-18T14:53:06.481Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 243ms - Rows affected: 13 - RequestID: w8q0119lslh +2025-06-18T14:53:06.581Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 184ms - Rows affected: 46 - RequestID: 51vmvia4j6i +2025-06-18T14:53:06.681Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 399ms - Rows affected: 38 - RequestID: t1rqx8p3jw +2025-06-18T14:53:06.781Z [INFO] order-service - PUT /api/v1/auth/login - Status: 502 - Response time: 942ms - IP: 192.168.32.38 - User: user_1001 - RequestID: 6jwzy4hgzb8 +2025-06-18T14:53:06.881Z [TRACE] notification-service - Auth event: password_change - User: user_1016 - IP: 192.168.174.114 - RequestID: tzfa7qzljn +2025-06-18T14:53:06.981Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 75ms - Rows affected: 40 - RequestID: qyft0j1uczp +2025-06-18T14:53:07.081Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 611ms - IP: 192.168.1.152 - User: user_1035 - RequestID: ww5pchazxbd +2025-06-18T14:53:07.181Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 335ms - Rows affected: 87 - RequestID: 1esshdhm28rh +2025-06-18T14:53:07.281Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 354ms - Rows affected: 58 - RequestID: ekgrd7kc1tl +2025-06-18T14:53:07.381Z [INFO] auth-service - Database INSERT on sessions - Execution time: 4ms - Rows affected: 36 - RequestID: gmp0djl9ktt +2025-06-18T14:53:07.481Z [INFO] inventory-service - Database UPDATE on users - Execution time: 321ms - Rows affected: 18 - RequestID: imnrlw4rwxj +2025-06-18T14:53:07.581Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 502 - Response time: 385ms - IP: 192.168.10.184 - User: user_1048 - RequestID: cgpsn7c0d45 +2025-06-18T14:53:07.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1021 - IP: 192.168.133.7 - RequestID: xrwvxlt403 +2025-06-18T14:53:07.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.97.87 - RequestID: 3vu6ulbsusq +2025-06-18T14:53:07.881Z [TRACE] user-service - Operation: cache_miss - Processing time: 164ms - RequestID: 2xi8lreyozy +2025-06-18T14:53:07.981Z [INFO] auth-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.227.233 - RequestID: 9ywu3q5yxhh +2025-06-18T14:53:08.081Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 319ms - Rows affected: 30 - RequestID: esclxrwkjck +2025-06-18T14:53:08.181Z [INFO] inventory-service - GET /api/v1/orders - Status: 201 - Response time: 1114ms - IP: 192.168.144.38 - User: user_1077 - RequestID: p4q9jk9cb8n +2025-06-18T14:53:08.281Z [DEBUG] payment-service - GET /api/v1/orders - Status: 502 - Response time: 810ms - IP: 192.168.30.79 - User: user_1010 - RequestID: uw725oqcbw +2025-06-18T14:53:08.381Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 885ms - RequestID: ytuimxp5zas +2025-06-18T14:53:08.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 887ms - RequestID: w0jq3ursmf9 +2025-06-18T14:53:08.581Z [INFO] user-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.104.37 - RequestID: 0lkptwovszs +2025-06-18T14:53:08.681Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 85ms - RequestID: ji5odtwctf +2025-06-18T14:53:08.781Z [INFO] payment-service - Operation: email_sent - Processing time: 1005ms - RequestID: z38nuvqk4p +2025-06-18T14:53:08.881Z [DEBUG] notification-service - Database INSERT on users - Execution time: 403ms - Rows affected: 12 - RequestID: g4bq9yj3oc8 +2025-06-18T14:53:08.981Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 15ms - Rows affected: 21 - RequestID: 727uiyjfm12 +2025-06-18T14:53:09.081Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 404 - Response time: 59ms - IP: 192.168.147.171 - User: user_1059 - RequestID: l70ngaz65q +2025-06-18T14:53:09.181Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 58ms - Rows affected: 94 - RequestID: 7ntkvf79xgg +2025-06-18T14:53:09.281Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 206ms - RequestID: 1y5u77q3k5h +2025-06-18T14:53:09.381Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 493ms - IP: 192.168.30.79 - User: user_1035 - RequestID: xgpyo1y4gq8 +2025-06-18T14:53:09.481Z [DEBUG] payment-service - Database DELETE on products - Execution time: 76ms - Rows affected: 56 - RequestID: jibaoq5bwv +2025-06-18T14:53:09.581Z [DEBUG] payment-service - GET /api/v1/payments - Status: 502 - Response time: 568ms - IP: 192.168.46.63 - User: user_1059 - RequestID: sg3fzaboah +2025-06-18T14:53:09.681Z [INFO] notification-service - Auth event: login_failed - User: user_1023 - IP: 192.168.11.60 - RequestID: t5ai04gipqk +2025-06-18T14:53:09.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 753ms - RequestID: f3ht8o1rihk +2025-06-18T14:53:09.881Z [TRACE] notification-service - POST /api/v1/orders - Status: 401 - Response time: 1981ms - IP: 192.168.189.103 - User: user_1027 - RequestID: 6ue5sbukycu +2025-06-18T14:53:09.981Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 902ms - RequestID: meyxsbu0jsr +2025-06-18T14:53:10.081Z [TRACE] order-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.167.32 - RequestID: 7ufs7y3yolr +2025-06-18T14:53:10.181Z [DEBUG] payment-service - Database SELECT on users - Execution time: 220ms - Rows affected: 0 - RequestID: v4snnmp7qn +2025-06-18T14:53:10.281Z [DEBUG] payment-service - Operation: email_sent - Processing time: 589ms - RequestID: 39uefyv6w6 +2025-06-18T14:53:10.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1034 - IP: 192.168.31.117 - RequestID: 57mhswpv9sr +2025-06-18T14:53:10.481Z [DEBUG] user-service - Database SELECT on users - Execution time: 427ms - Rows affected: 1 - RequestID: taba041nb4 +2025-06-18T14:53:10.581Z [INFO] inventory-service - Operation: cache_miss - Processing time: 647ms - RequestID: v238ysb9i6 +2025-06-18T14:53:10.681Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 3ms - Rows affected: 31 - RequestID: r39bjurv8sg +2025-06-18T14:53:10.781Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 503 - Response time: 48ms - IP: 192.168.147.171 - User: user_1072 - RequestID: t78wpczxox +2025-06-18T14:53:10.881Z [INFO] order-service - Operation: cache_miss - Processing time: 395ms - RequestID: t9c3zol4mcf +2025-06-18T14:53:10.981Z [TRACE] auth-service - POST /api/v1/payments - Status: 502 - Response time: 746ms - IP: 192.168.194.41 - User: user_1020 - RequestID: unh9l74ky6h +2025-06-18T14:53:11.081Z [TRACE] payment-service - Database DELETE on products - Execution time: 360ms - Rows affected: 35 - RequestID: wmsdbaeqp2c +2025-06-18T14:53:11.181Z [INFO] notification-service - Database SELECT on products - Execution time: 188ms - Rows affected: 71 - RequestID: 6mk8a2dnc7d +2025-06-18T14:53:11.281Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 3ms - Rows affected: 85 - RequestID: w528ly8vnpg +2025-06-18T14:53:11.381Z [INFO] notification-service - Operation: email_sent - Processing time: 368ms - RequestID: 6vau8zhi1jm +2025-06-18T14:53:11.481Z [TRACE] auth-service - Operation: email_sent - Processing time: 114ms - RequestID: ifd8o2smnm +2025-06-18T14:53:11.581Z [DEBUG] payment-service - Database INSERT on products - Execution time: 286ms - Rows affected: 64 - RequestID: wrtqs29j5f +2025-06-18T14:53:11.681Z [DEBUG] notification-service - Auth event: password_change - User: user_1084 - IP: 192.168.10.184 - RequestID: 5117cdggedh +2025-06-18T14:53:11.781Z [INFO] payment-service - Database DELETE on users - Execution time: 360ms - Rows affected: 27 - RequestID: 48jddjkh42b +2025-06-18T14:53:11.881Z [TRACE] user-service - Database SELECT on sessions - Execution time: 27ms - Rows affected: 13 - RequestID: wdas8ndmm8 +2025-06-18T14:53:11.981Z [TRACE] user-service - Operation: payment_processed - Processing time: 810ms - RequestID: 2f05w0yi8h2 +2025-06-18T14:53:12.081Z [DEBUG] order-service - Auth event: token_refresh - User: user_1029 - IP: 192.168.104.37 - RequestID: vvuroli1u9 +2025-06-18T14:53:12.181Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 405ms - Rows affected: 24 - RequestID: a6su514xcu4 +2025-06-18T14:53:12.281Z [TRACE] auth-service - Auth event: login_success - User: user_1055 - IP: 192.168.68.128 - RequestID: ztxyl312aam +2025-06-18T14:53:12.381Z [TRACE] notification-service - Auth event: login_success - User: user_1005 - IP: 192.168.232.72 - RequestID: qy0780of8be +2025-06-18T14:53:12.481Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.227.233 - RequestID: mzgvhd2uejr +2025-06-18T14:53:12.581Z [DEBUG] order-service - Operation: cache_miss - Processing time: 743ms - RequestID: h9y6sj5nedd +2025-06-18T14:53:12.681Z [INFO] payment-service - Database UPDATE on payments - Execution time: 170ms - Rows affected: 80 - RequestID: p4z44oovp2 +2025-06-18T14:53:12.781Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.242.165 - RequestID: bauh24jggk +2025-06-18T14:53:12.881Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 664ms - RequestID: tx3h9cm0boc +2025-06-18T14:53:12.981Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 200 - Response time: 671ms - IP: 192.168.158.144 - User: user_1015 - RequestID: 87ls5nmotph +2025-06-18T14:53:13.081Z [TRACE] user-service - Operation: cache_hit - Processing time: 624ms - RequestID: vdlfg8j77m9 +2025-06-18T14:53:13.181Z [DEBUG] payment-service - Auth event: login_success - User: user_1022 - IP: 192.168.13.72 - RequestID: k8exuyepy1b +2025-06-18T14:53:13.281Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 963ms - IP: 192.168.1.152 - User: user_1056 - RequestID: fntuiua8gao +2025-06-18T14:53:13.381Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 433ms - RequestID: urfnjb8dvdo +2025-06-18T14:53:13.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 944ms - RequestID: klvwfmg1td +2025-06-18T14:53:13.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 338ms - RequestID: idnzbxr71oo +2025-06-18T14:53:13.681Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 404 - Response time: 1255ms - IP: 192.168.36.218 - User: user_1007 - RequestID: thsv5j5b50f +2025-06-18T14:53:13.781Z [INFO] inventory-service - GET /api/v1/orders - Status: 502 - Response time: 1721ms - IP: 192.168.229.123 - User: user_1094 - RequestID: g2950rr3gw +2025-06-18T14:53:13.881Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 970ms - RequestID: ygz4d8zo74 +2025-06-18T14:53:13.981Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 670ms - IP: 192.168.85.229 - User: user_1062 - RequestID: 71iv6p59af8 +2025-06-18T14:53:14.081Z [DEBUG] payment-service - Database SELECT on products - Execution time: 490ms - Rows affected: 81 - RequestID: bwcdujal46t +2025-06-18T14:53:14.181Z [DEBUG] auth-service - PUT /api/v1/users - Status: 502 - Response time: 217ms - IP: 192.168.46.63 - User: user_1014 - RequestID: oza6ybcru6 +2025-06-18T14:53:14.281Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 77ms - Rows affected: 17 - RequestID: d1trsvvnl1h +2025-06-18T14:53:14.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 456ms - RequestID: i8kfxufbwf +2025-06-18T14:53:14.481Z [INFO] auth-service - DELETE /api/v1/users - Status: 403 - Response time: 109ms - IP: 192.168.79.141 - User: user_1047 - RequestID: v3aq3x1egg +2025-06-18T14:53:14.581Z [INFO] auth-service - POST /api/v1/auth/login - Status: 403 - Response time: 372ms - IP: 192.168.144.38 - User: user_1000 - RequestID: jywecejqtrg +2025-06-18T14:53:14.681Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 73ms - Rows affected: 57 - RequestID: 709ooqbzxfp +2025-06-18T14:53:14.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 335ms - RequestID: 3sy5j52u71o +2025-06-18T14:53:14.881Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 200 - Response time: 677ms - IP: 192.168.181.225 - User: user_1065 - RequestID: l68p0bmzhql +2025-06-18T14:53:14.981Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 473ms - Rows affected: 66 - RequestID: c3xy8rg9lo7 +2025-06-18T14:53:15.081Z [TRACE] user-service - Operation: cache_miss - Processing time: 452ms - RequestID: c7y2yi3ui0m +2025-06-18T14:53:15.181Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 233ms - RequestID: rc5j955504l +2025-06-18T14:53:15.281Z [DEBUG] user-service - PUT /api/v1/orders - Status: 201 - Response time: 386ms - IP: 192.168.31.117 - User: user_1035 - RequestID: 6tkgza9wztx +2025-06-18T14:53:15.381Z [INFO] order-service - Auth event: logout - User: user_1051 - IP: 192.168.194.41 - RequestID: xsni3ei1kw8 +2025-06-18T14:53:15.481Z [INFO] notification-service - Auth event: login_success - User: user_1010 - IP: 192.168.85.229 - RequestID: 954htamxs55 +2025-06-18T14:53:15.581Z [DEBUG] order-service - Database INSERT on payments - Execution time: 337ms - Rows affected: 80 - RequestID: bxkugw0byvn +2025-06-18T14:53:15.681Z [TRACE] payment-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.196.226 - RequestID: 721ov34677b +2025-06-18T14:53:15.781Z [TRACE] auth-service - Operation: cache_hit - Processing time: 179ms - RequestID: znfq8vt1tdl +2025-06-18T14:53:15.881Z [INFO] auth-service - Operation: email_sent - Processing time: 1031ms - RequestID: xx76u6s17l7 +2025-06-18T14:53:15.981Z [TRACE] order-service - DELETE /api/v1/payments - Status: 200 - Response time: 1350ms - IP: 192.168.159.94 - User: user_1071 - RequestID: ktqqa0vp3qq +2025-06-18T14:53:16.081Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 401 - Response time: 513ms - IP: 192.168.170.215 - User: user_1070 - RequestID: jf286thfu59 +2025-06-18T14:53:16.181Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 61ms - Rows affected: 96 - RequestID: ozu0f9jflxq +2025-06-18T14:53:16.281Z [TRACE] payment-service - Auth event: password_change - User: user_1095 - IP: 192.168.14.77 - RequestID: tciby3arkpk +2025-06-18T14:53:16.381Z [INFO] notification-service - Database SELECT on sessions - Execution time: 236ms - Rows affected: 36 - RequestID: mhsecfyrxy8 +2025-06-18T14:53:16.481Z [INFO] order-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.170.215 - RequestID: gf4y2xghid6 +2025-06-18T14:53:16.581Z [TRACE] inventory-service - Auth event: login_success - User: user_1036 - IP: 192.168.32.38 - RequestID: a51h8eionp +2025-06-18T14:53:16.681Z [INFO] inventory-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.81.206 - RequestID: qsew68j8klh +2025-06-18T14:53:16.781Z [DEBUG] payment-service - Auth event: logout - User: user_1038 - IP: 192.168.242.165 - RequestID: c97z7z2xyf +2025-06-18T14:53:16.881Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 200 - Response time: 528ms - IP: 192.168.85.229 - User: user_1056 - RequestID: sbnxphief6e +2025-06-18T14:53:16.981Z [INFO] order-service - Auth event: login_success - User: user_1051 - IP: 192.168.194.41 - RequestID: jbws1i91qp +2025-06-18T14:53:17.081Z [INFO] auth-service - Operation: webhook_sent - Processing time: 736ms - RequestID: b0jkhskmmnb +2025-06-18T14:53:17.181Z [DEBUG] order-service - Database INSERT on users - Execution time: 64ms - Rows affected: 35 - RequestID: o3svz6xz028 +2025-06-18T14:53:17.281Z [INFO] notification-service - GET /api/v1/orders - Status: 500 - Response time: 730ms - IP: 192.168.158.144 - User: user_1035 - RequestID: 808uaxqzd1n +2025-06-18T14:53:17.381Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 1344ms - IP: 192.168.247.134 - User: user_1078 - RequestID: hw8rn9ayroa +2025-06-18T14:53:17.481Z [INFO] order-service - Database SELECT on payments - Execution time: 249ms - Rows affected: 29 - RequestID: skfjqth6s9n +2025-06-18T14:53:17.581Z [TRACE] user-service - Operation: cache_hit - Processing time: 670ms - RequestID: o4s6d6w29d +2025-06-18T14:53:17.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 73ms - RequestID: hhn2vo44ju +2025-06-18T14:53:17.781Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 503 - Response time: 1968ms - IP: 192.168.97.87 - User: user_1031 - RequestID: dnmauvldggw +2025-06-18T14:53:17.881Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 401 - Response time: 1094ms - IP: 192.168.81.206 - User: user_1054 - RequestID: r9wg1ycwj +2025-06-18T14:53:17.981Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 224ms - RequestID: dfypehrmkh +2025-06-18T14:53:18.081Z [INFO] auth-service - DELETE /api/v1/users - Status: 401 - Response time: 311ms - IP: 192.168.167.32 - User: user_1067 - RequestID: wh1bznh0keb +2025-06-18T14:53:18.181Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 286ms - Rows affected: 26 - RequestID: zg5m93yssi +2025-06-18T14:53:18.281Z [TRACE] user-service - Database SELECT on users - Execution time: 284ms - Rows affected: 26 - RequestID: xe3gcsge6zn +2025-06-18T14:53:18.381Z [TRACE] auth-service - Auth event: logout - User: user_1025 - IP: 192.168.170.215 - RequestID: dg5kkwvsrp +2025-06-18T14:53:18.481Z [TRACE] order-service - Database INSERT on sessions - Execution time: 308ms - Rows affected: 98 - RequestID: rihccva59db +2025-06-18T14:53:18.581Z [INFO] order-service - GET /api/v1/inventory - Status: 200 - Response time: 1309ms - IP: 192.168.229.123 - User: user_1035 - RequestID: 3si522as3lg +2025-06-18T14:53:18.681Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 403 - Response time: 558ms - IP: 192.168.235.117 - User: user_1073 - RequestID: wn3s2vl6w2p +2025-06-18T14:53:18.781Z [TRACE] inventory-service - PUT /api/v1/users - Status: 404 - Response time: 646ms - IP: 192.168.174.114 - User: user_1026 - RequestID: igeuaukta2r +2025-06-18T14:53:18.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 430ms - RequestID: sl9yfb5mn2q +2025-06-18T14:53:18.981Z [TRACE] user-service - Database SELECT on orders - Execution time: 93ms - Rows affected: 30 - RequestID: 0hax2texvpol +2025-06-18T14:53:19.081Z [TRACE] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 939ms - IP: 192.168.79.143 - User: user_1034 - RequestID: 8wpteidi6z4 +2025-06-18T14:53:19.181Z [INFO] payment-service - Operation: payment_processed - Processing time: 651ms - RequestID: qm4zi05ulcl +2025-06-18T14:53:19.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.247.134 - RequestID: netujurtktd +2025-06-18T14:53:19.381Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 464ms - Rows affected: 4 - RequestID: ct49dkic2yr +2025-06-18T14:53:19.481Z [INFO] user-service - Database INSERT on users - Execution time: 250ms - Rows affected: 47 - RequestID: 11pf7cipj7w +2025-06-18T14:53:19.581Z [INFO] user-service - Operation: order_created - Processing time: 494ms - RequestID: gza3zqpn8o +2025-06-18T14:53:19.681Z [INFO] notification-service - Database SELECT on orders - Execution time: 277ms - Rows affected: 7 - RequestID: tnsw97ma29 +2025-06-18T14:53:19.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1021 - IP: 192.168.189.103 - RequestID: s255wm6tns +2025-06-18T14:53:19.881Z [INFO] auth-service - Operation: payment_processed - Processing time: 241ms - RequestID: e9qaluog6fv +2025-06-18T14:53:19.981Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1091ms - IP: 192.168.13.72 - User: user_1045 - RequestID: g4hnk2tx23s +2025-06-18T14:53:20.081Z [TRACE] order-service - Auth event: login_failed - User: user_1027 - IP: 192.168.53.133 - RequestID: cuwkh8mwd6s +2025-06-18T14:53:20.181Z [INFO] payment-service - Database INSERT on payments - Execution time: 374ms - Rows affected: 77 - RequestID: p1w0a08eiw +2025-06-18T14:53:20.281Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 20ms - Rows affected: 52 - RequestID: nsankz2bej +2025-06-18T14:53:20.381Z [DEBUG] user-service - Database INSERT on products - Execution time: 28ms - Rows affected: 47 - RequestID: y6xjkfrvdv +2025-06-18T14:53:20.481Z [INFO] inventory-service - Auth event: login_success - User: user_1007 - IP: 192.168.97.87 - RequestID: eiz8rg6ia7g +2025-06-18T14:53:20.581Z [INFO] inventory-service - Operation: notification_queued - Processing time: 519ms - RequestID: l8mvrhv70jc +2025-06-18T14:53:20.681Z [TRACE] auth-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.229.123 - RequestID: 52zk8nrp0cy +2025-06-18T14:53:20.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.104.37 - RequestID: hslkeyt7vlp +2025-06-18T14:53:20.881Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 152ms - Rows affected: 47 - RequestID: j8vvre7i5s +2025-06-18T14:53:20.981Z [TRACE] payment-service - Database DELETE on products - Execution time: 280ms - Rows affected: 78 - RequestID: kp6fooy22kf +2025-06-18T14:53:21.081Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 503 - Response time: 116ms - IP: 192.168.68.128 - User: user_1088 - RequestID: 99xfzav9p6e +2025-06-18T14:53:21.181Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 930ms - RequestID: f0iz1wxk6g8 +2025-06-18T14:53:21.281Z [INFO] notification-service - PUT /api/v1/users - Status: 201 - Response time: 1785ms - IP: 192.168.13.72 - User: user_1030 - RequestID: 13wc3lg85s4h +2025-06-18T14:53:21.381Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 405ms - Rows affected: 70 - RequestID: m060o0c5iun +2025-06-18T14:53:21.481Z [TRACE] payment-service - Operation: payment_processed - Processing time: 796ms - RequestID: 30qbu4y8k3l +2025-06-18T14:53:21.581Z [INFO] order-service - Database SELECT on products - Execution time: 260ms - Rows affected: 33 - RequestID: ya9a1ebrokc +2025-06-18T14:53:21.681Z [TRACE] notification-service - Operation: order_created - Processing time: 105ms - RequestID: o7v4ydy6bg +2025-06-18T14:53:21.781Z [INFO] auth-service - Operation: email_sent - Processing time: 487ms - RequestID: gy2r8jb14k6 +2025-06-18T14:53:21.881Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1357ms - IP: 192.168.138.123 - User: user_1058 - RequestID: z1hapkatel +2025-06-18T14:53:21.981Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.167.32 - RequestID: yjgs1eml55o +2025-06-18T14:53:22.081Z [INFO] user-service - Database DELETE on orders - Execution time: 94ms - Rows affected: 29 - RequestID: vfv9gve8kh +2025-06-18T14:53:22.181Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 416ms - Rows affected: 57 - RequestID: 0rkw1htaknvp +2025-06-18T14:53:22.281Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 502 - Response time: 1377ms - IP: 192.168.187.199 - User: user_1020 - RequestID: 3wfzvn10f9 +2025-06-18T14:53:22.381Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 247ms - Rows affected: 93 - RequestID: syse5frn2u +2025-06-18T14:53:22.481Z [INFO] auth-service - PUT /api/v1/users - Status: 403 - Response time: 1791ms - IP: 192.168.196.226 - User: user_1079 - RequestID: dcbinw0go5r +2025-06-18T14:53:22.581Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 18ms - Rows affected: 16 - RequestID: 8gkf1bp8o16 +2025-06-18T14:53:22.681Z [TRACE] auth-service - Auth event: login_failed - User: user_1041 - IP: 192.168.36.218 - RequestID: nz3zw71zru +2025-06-18T14:53:22.781Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 89ms - Rows affected: 40 - RequestID: 9ibck06xlm +2025-06-18T14:53:22.881Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 117ms - Rows affected: 53 - RequestID: 467jpgbvlhv +2025-06-18T14:53:22.981Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 400 - Response time: 1194ms - IP: 192.168.79.141 - User: user_1090 - RequestID: 5k4a9sti77k +2025-06-18T14:53:23.081Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 499ms - RequestID: zieadcozp8i +2025-06-18T14:53:23.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 1044ms - RequestID: zlofjj2v2d +2025-06-18T14:53:23.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 956ms - RequestID: k0seiwm7cu +2025-06-18T14:53:23.381Z [INFO] order-service - Auth event: logout - User: user_1065 - IP: 192.168.229.123 - RequestID: nuqy9z3g919 +2025-06-18T14:53:23.481Z [INFO] notification-service - Database DELETE on orders - Execution time: 85ms - Rows affected: 49 - RequestID: yx4t0hbhyze +2025-06-18T14:53:23.581Z [TRACE] inventory-service - Auth event: login_success - User: user_1084 - IP: 192.168.167.32 - RequestID: pnjh5hqnij +2025-06-18T14:53:23.681Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 404 - Response time: 760ms - IP: 192.168.31.117 - User: user_1046 - RequestID: rfxfp6s3ks +2025-06-18T14:53:23.781Z [INFO] auth-service - GET /api/v1/orders - Status: 403 - Response time: 60ms - IP: 192.168.242.165 - User: user_1071 - RequestID: dgq30u2it1m +2025-06-18T14:53:23.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.189.103 - RequestID: dz45x55uzva +2025-06-18T14:53:23.981Z [TRACE] payment-service - Database INSERT on users - Execution time: 144ms - Rows affected: 10 - RequestID: l777f5zl9ui +2025-06-18T14:53:24.081Z [TRACE] payment-service - Database SELECT on products - Execution time: 311ms - Rows affected: 61 - RequestID: nnzuf9r3lv8 +2025-06-18T14:53:24.181Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1582ms - IP: 192.168.100.240 - User: user_1055 - RequestID: 436nkjbi9o7 +2025-06-18T14:53:24.281Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 34ms - IP: 192.168.133.7 - User: user_1017 - RequestID: vz2xq4q268d +2025-06-18T14:53:24.381Z [TRACE] payment-service - Operation: order_created - Processing time: 230ms - RequestID: k7pxk4l71op +2025-06-18T14:53:24.481Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 400 - Response time: 412ms - IP: 192.168.227.233 - User: user_1096 - RequestID: zlcew9ui9op +2025-06-18T14:53:24.581Z [TRACE] inventory-service - Database INSERT on products - Execution time: 481ms - Rows affected: 7 - RequestID: v7p3gti6fvl +2025-06-18T14:53:24.681Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 201 - Response time: 66ms - IP: 192.168.232.72 - User: user_1059 - RequestID: 9t4k0crcba6 +2025-06-18T14:53:24.781Z [DEBUG] user-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.194.41 - RequestID: 7tr0rm4qnpa +2025-06-18T14:53:24.881Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 201 - Response time: 961ms - IP: 192.168.46.63 - User: user_1052 - RequestID: l7qqi5ww9ff +2025-06-18T14:53:24.981Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1945ms - IP: 192.168.189.103 - User: user_1053 - RequestID: ncfasoe23qo +2025-06-18T14:53:25.081Z [TRACE] order-service - Database UPDATE on orders - Execution time: 192ms - Rows affected: 39 - RequestID: r1fytcq77ti +2025-06-18T14:53:25.181Z [INFO] auth-service - POST /api/v1/payments - Status: 500 - Response time: 1713ms - IP: 192.168.68.128 - User: user_1056 - RequestID: msu4zoxtfwl +2025-06-18T14:53:25.281Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1728ms - IP: 192.168.53.133 - User: user_1042 - RequestID: a83ll232ps6 +2025-06-18T14:53:25.381Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 498ms - Rows affected: 98 - RequestID: j8uvala02qr +2025-06-18T14:53:25.481Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1320ms - IP: 192.168.79.116 - User: user_1035 - RequestID: v8mae2zhpv +2025-06-18T14:53:25.581Z [DEBUG] order-service - PATCH /api/v1/users - Status: 401 - Response time: 44ms - IP: 192.168.85.229 - User: user_1089 - RequestID: 9i6zj6lxvad +2025-06-18T14:53:25.681Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1396ms - IP: 192.168.227.233 - User: user_1070 - RequestID: r13pxfy56pn +2025-06-18T14:53:25.781Z [INFO] order-service - Auth event: login_success - User: user_1021 - IP: 192.168.247.134 - RequestID: qhojfurs65 +2025-06-18T14:53:25.881Z [INFO] payment-service - Operation: webhook_sent - Processing time: 581ms - RequestID: ywx6sitby3l +2025-06-18T14:53:25.981Z [INFO] notification-service - Operation: order_created - Processing time: 513ms - RequestID: afv3c0dixic +2025-06-18T14:53:26.081Z [INFO] order-service - Database INSERT on users - Execution time: 60ms - Rows affected: 92 - RequestID: aa67ur1gx3l +2025-06-18T14:53:26.181Z [INFO] order-service - DELETE /api/v1/inventory - Status: 201 - Response time: 811ms - IP: 192.168.64.33 - User: user_1095 - RequestID: kbkudrez5nn +2025-06-18T14:53:26.281Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 1048ms - RequestID: ofpyxfpngb +2025-06-18T14:53:26.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.1.152 - RequestID: fvw23zx1jti +2025-06-18T14:53:26.481Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 502 - Response time: 240ms - IP: 192.168.28.146 - User: user_1086 - RequestID: 1j59qmtj53z +2025-06-18T14:53:26.581Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 258ms - IP: 192.168.31.117 - User: user_1036 - RequestID: ut7j18m69ee +2025-06-18T14:53:26.681Z [TRACE] auth-service - Operation: order_created - Processing time: 53ms - RequestID: y4vvpg55x7 +2025-06-18T14:53:26.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1078 - IP: 192.168.144.38 - RequestID: iudcygr1swa +2025-06-18T14:53:26.881Z [TRACE] auth-service - Database SELECT on orders - Execution time: 210ms - Rows affected: 34 - RequestID: hkcrwmzw37i +2025-06-18T14:53:26.981Z [TRACE] auth-service - Operation: cache_hit - Processing time: 904ms - RequestID: gpjqfxxxtr +2025-06-18T14:53:27.081Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 213ms - Rows affected: 18 - RequestID: 2j861pgid3 +2025-06-18T14:53:27.181Z [DEBUG] user-service - Operation: payment_processed - Processing time: 179ms - RequestID: esmxkhukpqm +2025-06-18T14:53:27.281Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 273ms - Rows affected: 58 - RequestID: l3o13ns37ch +2025-06-18T14:53:27.381Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 201 - Response time: 27ms - IP: 192.168.141.100 - User: user_1004 - RequestID: leujxswz2b7 +2025-06-18T14:53:27.481Z [DEBUG] auth-service - Auth event: logout - User: user_1061 - IP: 192.168.141.100 - RequestID: u7mdobnx2w +2025-06-18T14:53:27.581Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 181ms - Rows affected: 11 - RequestID: kn0d5q003em +2025-06-18T14:53:27.681Z [TRACE] auth-service - Operation: notification_queued - Processing time: 731ms - RequestID: gwupr5p2xm8 +2025-06-18T14:53:27.781Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 474ms - Rows affected: 65 - RequestID: ai4ait2njjg +2025-06-18T14:53:27.881Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 389ms - Rows affected: 87 - RequestID: daz4bnrkg7u +2025-06-18T14:53:27.981Z [DEBUG] order-service - Operation: order_created - Processing time: 602ms - RequestID: 79w788ss2v7 +2025-06-18T14:53:28.081Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.44.5 - RequestID: tug1u3oijl8 +2025-06-18T14:53:28.181Z [INFO] auth-service - Operation: order_created - Processing time: 94ms - RequestID: rivt5qfwd2o +2025-06-18T14:53:28.281Z [INFO] notification-service - Operation: order_created - Processing time: 324ms - RequestID: l8pz7vusm0d +2025-06-18T14:53:28.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.11.60 - RequestID: xq8gzcv0jzb +2025-06-18T14:53:28.481Z [TRACE] notification-service - Auth event: logout - User: user_1002 - IP: 192.168.79.116 - RequestID: xe76g3dhxj9 +2025-06-18T14:53:28.581Z [TRACE] notification-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.46.63 - RequestID: 045130sm4x1o +2025-06-18T14:53:28.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.30.79 - RequestID: t7ufgu5l2vf +2025-06-18T14:53:28.781Z [INFO] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 749ms - IP: 192.168.133.7 - User: user_1087 - RequestID: l19m3601f1c +2025-06-18T14:53:28.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 621ms - RequestID: vlt9xup3nfd +2025-06-18T14:53:28.981Z [DEBUG] payment-service - Auth event: login_success - User: user_1044 - IP: 192.168.13.72 - RequestID: ywhq0uzecm8 +2025-06-18T14:53:29.081Z [DEBUG] user-service - Database SELECT on products - Execution time: 140ms - Rows affected: 3 - RequestID: uhdnp0f78bl +2025-06-18T14:53:29.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.31.117 - RequestID: 1g9n634uu6n +2025-06-18T14:53:29.281Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1201ms - IP: 192.168.97.87 - User: user_1080 - RequestID: j77fz6n1qdk +2025-06-18T14:53:29.381Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 60ms - RequestID: mbejx75va +2025-06-18T14:53:29.481Z [INFO] payment-service - GET /api/v1/auth/login - Status: 201 - Response time: 53ms - IP: 192.168.85.229 - User: user_1098 - RequestID: xo8a286fsur +2025-06-18T14:53:29.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.167.32 - RequestID: 5qb06kqyidn +2025-06-18T14:53:29.681Z [DEBUG] order-service - Auth event: login_success - User: user_1006 - IP: 192.168.187.199 - RequestID: h0u1vgkjoe +2025-06-18T14:53:29.781Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 491ms - RequestID: ozmfwb9gyjh +2025-06-18T14:53:29.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1093 - IP: 192.168.81.206 - RequestID: apcc0xu94kl +2025-06-18T14:53:29.981Z [INFO] user-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.235.117 - RequestID: mzenqtz0nab +2025-06-18T14:53:30.081Z [TRACE] auth-service - POST /api/v1/orders - Status: 200 - Response time: 1777ms - IP: 192.168.113.218 - User: user_1070 - RequestID: ma5ql1xk8yr +2025-06-18T14:53:30.181Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1146ms - IP: 192.168.46.63 - User: user_1047 - RequestID: y9wz118km2m +2025-06-18T14:53:30.281Z [INFO] auth-service - Auth event: password_change - User: user_1014 - IP: 192.168.68.158 - RequestID: 9muhm45nr0m +2025-06-18T14:53:30.381Z [TRACE] user-service - Auth event: password_change - User: user_1073 - IP: 192.168.100.240 - RequestID: dond1gw5uh8 +2025-06-18T14:53:30.481Z [INFO] inventory-service - DELETE /api/v1/users - Status: 503 - Response time: 202ms - IP: 192.168.232.72 - User: user_1037 - RequestID: zhhajm6imsi +2025-06-18T14:53:30.581Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 588ms - IP: 192.168.158.144 - User: user_1060 - RequestID: jxul52sg53 +2025-06-18T14:53:30.681Z [INFO] payment-service - Operation: payment_processed - Processing time: 979ms - RequestID: gok9oweyzis +2025-06-18T14:53:30.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1057 - IP: 192.168.242.165 - RequestID: iz9i5bsh949 +2025-06-18T14:53:30.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.141.100 - RequestID: 08nocqzp304u +2025-06-18T14:53:30.981Z [TRACE] payment-service - Database SELECT on orders - Execution time: 31ms - Rows affected: 80 - RequestID: 5f7txjoqwq7 +2025-06-18T14:53:31.081Z [TRACE] payment-service - Operation: notification_queued - Processing time: 222ms - RequestID: mncxvkjlocn +2025-06-18T14:53:31.181Z [DEBUG] auth-service - GET /api/v1/payments - Status: 503 - Response time: 1314ms - IP: 192.168.11.60 - User: user_1066 - RequestID: dgphb5kun6a +2025-06-18T14:53:31.281Z [INFO] payment-service - Operation: webhook_sent - Processing time: 1002ms - RequestID: qtho9kbsi2a +2025-06-18T14:53:31.381Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 818ms - RequestID: rdtz1mb850l +2025-06-18T14:53:31.481Z [INFO] notification-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.242.165 - RequestID: s2cuauiwj6l +2025-06-18T14:53:31.581Z [TRACE] user-service - Auth event: logout - User: user_1083 - IP: 192.168.113.218 - RequestID: eoyxqzh2u5p +2025-06-18T14:53:31.681Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 187ms - Rows affected: 95 - RequestID: 9jsp04j885c +2025-06-18T14:53:31.781Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 337ms - Rows affected: 37 - RequestID: otmijoeg1p +2025-06-18T14:53:31.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.174.114 - RequestID: gm62bp4b87o +2025-06-18T14:53:31.981Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 400 - Response time: 968ms - IP: 192.168.81.206 - User: user_1053 - RequestID: gkq800r7az5 +2025-06-18T14:53:32.081Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 450ms - Rows affected: 84 - RequestID: x25c4duhfmn +2025-06-18T14:53:32.181Z [INFO] user-service - Operation: payment_processed - Processing time: 1010ms - RequestID: htp0f1eclh +2025-06-18T14:53:32.281Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1554ms - IP: 192.168.133.7 - User: user_1092 - RequestID: p0dx74xz4o +2025-06-18T14:53:32.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1072 - IP: 192.168.85.229 - RequestID: c046ufo8xja +2025-06-18T14:53:32.481Z [INFO] order-service - Database SELECT on payments - Execution time: 2ms - Rows affected: 51 - RequestID: ewo6u38f8in +2025-06-18T14:53:32.581Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 759ms - RequestID: 7hqr28wipk9 +2025-06-18T14:53:32.681Z [INFO] payment-service - Operation: email_sent - Processing time: 178ms - RequestID: t7119ihia2o +2025-06-18T14:53:32.781Z [TRACE] order-service - POST /api/v1/auth/login - Status: 401 - Response time: 1065ms - IP: 192.168.36.218 - User: user_1088 - RequestID: nobatnsojcs +2025-06-18T14:53:32.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1058 - IP: 192.168.144.38 - RequestID: ob710aksjm +2025-06-18T14:53:32.981Z [TRACE] payment-service - Database DELETE on products - Execution time: 462ms - Rows affected: 54 - RequestID: fa6xd4koarj +2025-06-18T14:53:33.081Z [TRACE] payment-service - Operation: email_sent - Processing time: 280ms - RequestID: bayy16ftyfm +2025-06-18T14:53:33.181Z [INFO] notification-service - POST /api/v1/inventory - Status: 200 - Response time: 1985ms - IP: 192.168.227.233 - User: user_1062 - RequestID: icdlzb9tjs +2025-06-18T14:53:33.281Z [TRACE] user-service - Database SELECT on users - Execution time: 277ms - Rows affected: 81 - RequestID: 4fmm1lv3tzj +2025-06-18T14:53:33.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1086 - IP: 192.168.227.233 - RequestID: nopdesykzrc +2025-06-18T14:53:33.481Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 67ms - Rows affected: 23 - RequestID: 2dt159ntxge +2025-06-18T14:53:33.581Z [INFO] user-service - Operation: webhook_sent - Processing time: 796ms - RequestID: y5l0mdy7bf8 +2025-06-18T14:53:33.681Z [DEBUG] user-service - Database DELETE on products - Execution time: 450ms - Rows affected: 56 - RequestID: z4dyy8mk72d +2025-06-18T14:53:33.781Z [INFO] payment-service - Database INSERT on products - Execution time: 360ms - Rows affected: 48 - RequestID: dgv7dchgpbo +2025-06-18T14:53:33.881Z [TRACE] notification-service - Auth event: logout - User: user_1094 - IP: 192.168.147.171 - RequestID: h5q9ugz6rk +2025-06-18T14:53:33.981Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 62ms - Rows affected: 72 - RequestID: ilh9z0int3 +2025-06-18T14:53:34.081Z [DEBUG] order-service - Operation: notification_queued - Processing time: 809ms - RequestID: 9wan4wyxva8 +2025-06-18T14:53:34.181Z [INFO] user-service - Auth event: login_failed - User: user_1029 - IP: 192.168.33.76 - RequestID: p7838f9txmp +2025-06-18T14:53:34.281Z [DEBUG] payment-service - GET /api/v1/users - Status: 400 - Response time: 556ms - IP: 192.168.158.144 - User: user_1058 - RequestID: ga1r4g9hxnb +2025-06-18T14:53:34.381Z [DEBUG] notification-service - Auth event: logout - User: user_1058 - IP: 192.168.144.38 - RequestID: 84vq69j21i5 +2025-06-18T14:53:34.481Z [INFO] inventory-service - POST /api/v1/orders - Status: 502 - Response time: 1659ms - IP: 192.168.196.226 - User: user_1071 - RequestID: 4xbcpk9s6zg +2025-06-18T14:53:34.581Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 75ms - Rows affected: 1 - RequestID: 792rrumf8c7 +2025-06-18T14:53:34.681Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 403 - Response time: 297ms - IP: 192.168.235.117 - User: user_1059 - RequestID: mzpekfs7ti +2025-06-18T14:53:34.781Z [TRACE] order-service - Operation: order_created - Processing time: 261ms - RequestID: yrce87srjd +2025-06-18T14:53:34.881Z [TRACE] auth-service - Operation: cache_hit - Processing time: 944ms - RequestID: eezb5pttx4g +2025-06-18T14:53:34.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.13.72 - RequestID: ztqo2eqy2cq +2025-06-18T14:53:35.081Z [TRACE] auth-service - Auth event: logout - User: user_1094 - IP: 192.168.113.218 - RequestID: 6o0ttyez7z4 +2025-06-18T14:53:35.181Z [DEBUG] notification-service - Auth event: logout - User: user_1027 - IP: 192.168.196.226 - RequestID: mlatulkqe1 +2025-06-18T14:53:35.281Z [TRACE] notification-service - Auth event: logout - User: user_1010 - IP: 192.168.229.123 - RequestID: 0ln6uhuzbkyb +2025-06-18T14:53:35.381Z [INFO] user-service - Operation: cache_hit - Processing time: 444ms - RequestID: 4j0s5urchsv +2025-06-18T14:53:35.481Z [INFO] notification-service - Database UPDATE on orders - Execution time: 271ms - Rows affected: 94 - RequestID: xaevlp85h8 +2025-06-18T14:53:35.581Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 408ms - Rows affected: 0 - RequestID: w99kojyiwtk +2025-06-18T14:53:35.681Z [INFO] inventory-service - POST /api/v1/users - Status: 502 - Response time: 1009ms - IP: 192.168.97.87 - User: user_1099 - RequestID: z4zsyxqypzr +2025-06-18T14:53:35.781Z [TRACE] order-service - Auth event: password_change - User: user_1044 - IP: 192.168.196.226 - RequestID: y0am4xhp1r7 +2025-06-18T14:53:35.881Z [INFO] order-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.196.226 - RequestID: nuueaj57vel +2025-06-18T14:53:35.981Z [TRACE] order-service - GET /api/v1/orders - Status: 502 - Response time: 1753ms - IP: 192.168.189.103 - User: user_1045 - RequestID: p1uxfesg2nf +2025-06-18T14:53:36.081Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 43ms - IP: 192.168.68.158 - User: user_1011 - RequestID: c3jhmafq517 +2025-06-18T14:53:36.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1036 - IP: 192.168.158.144 - RequestID: 6t5qhulpr4 +2025-06-18T14:53:36.281Z [TRACE] payment-service - POST /api/v1/orders - Status: 500 - Response time: 1810ms - IP: 192.168.31.117 - User: user_1022 - RequestID: 0tssxeirlvj +2025-06-18T14:53:36.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.167.32 - RequestID: pv2l5se4nq +2025-06-18T14:53:36.481Z [DEBUG] user-service - Auth event: login_failed - User: user_1006 - IP: 192.168.28.146 - RequestID: td20h7tu2k +2025-06-18T14:53:36.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.13.72 - RequestID: lehvf57qiic +2025-06-18T14:53:36.681Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 347ms - RequestID: njt92fb4hsn +2025-06-18T14:53:36.781Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 225ms - Rows affected: 81 - RequestID: 1l6dmg15sx8 +2025-06-18T14:53:36.881Z [INFO] notification-service - Database DELETE on payments - Execution time: 180ms - Rows affected: 6 - RequestID: o9i0i038tzs +2025-06-18T14:53:36.981Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 361ms - IP: 192.168.44.5 - User: user_1084 - RequestID: p1rh1rct4ps +2025-06-18T14:53:37.081Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 181ms - Rows affected: 6 - RequestID: t54erab3qpm +2025-06-18T14:53:37.181Z [INFO] payment-service - Operation: payment_processed - Processing time: 403ms - RequestID: pgja3d6xm9 +2025-06-18T14:53:37.281Z [INFO] auth-service - GET /api/v1/payments - Status: 201 - Response time: 476ms - IP: 192.168.1.152 - User: user_1090 - RequestID: q7dxwnvt7wr +2025-06-18T14:53:37.381Z [INFO] notification-service - Database INSERT on users - Execution time: 154ms - Rows affected: 15 - RequestID: u5ldnze5n18 +2025-06-18T14:53:37.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.64.33 - RequestID: j76oxzw5zo +2025-06-18T14:53:37.581Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 346ms - Rows affected: 32 - RequestID: xt65duf4l0h +2025-06-18T14:53:37.681Z [DEBUG] order-service - POST /api/v1/payments - Status: 200 - Response time: 1775ms - IP: 192.168.46.63 - User: user_1040 - RequestID: wrpzmtbz4be +2025-06-18T14:53:37.781Z [INFO] user-service - Auth event: login_failed - User: user_1074 - IP: 192.168.147.171 - RequestID: onj7goub6tr +2025-06-18T14:53:37.881Z [INFO] auth-service - Operation: payment_processed - Processing time: 71ms - RequestID: ydh6mvjwri9 +2025-06-18T14:53:37.981Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 311ms - RequestID: f55i8bb437k +2025-06-18T14:53:38.081Z [TRACE] auth-service - Auth event: login_success - User: user_1098 - IP: 192.168.28.146 - RequestID: 3iyn5r59wfz +2025-06-18T14:53:38.181Z [INFO] auth-service - PATCH /api/v1/users - Status: 400 - Response time: 963ms - IP: 192.168.159.94 - User: user_1086 - RequestID: ad3r8cgoj7i +2025-06-18T14:53:38.281Z [INFO] inventory-service - Database INSERT on payments - Execution time: 473ms - Rows affected: 1 - RequestID: me3sxbpv5d +2025-06-18T14:53:38.381Z [INFO] notification-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.242.165 - RequestID: h6g4621me3 +2025-06-18T14:53:38.481Z [INFO] inventory-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.28.146 - RequestID: hpv4duac1mt +2025-06-18T14:53:38.581Z [INFO] user-service - Auth event: login_success - User: user_1055 - IP: 192.168.159.94 - RequestID: mtem0lryt5i +2025-06-18T14:53:38.681Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 400 - Response time: 1133ms - IP: 192.168.13.72 - User: user_1069 - RequestID: u8d4cq1b5 +2025-06-18T14:53:38.781Z [INFO] inventory-service - GET /api/v1/orders - Status: 200 - Response time: 1432ms - IP: 192.168.227.77 - User: user_1016 - RequestID: qzlcgi0w33 +2025-06-18T14:53:38.881Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 406ms - RequestID: 776g3rw24b3 +2025-06-18T14:53:38.981Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 116ms - RequestID: 91lc5hox5v4 +2025-06-18T14:53:39.081Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 400 - Response time: 233ms - IP: 192.168.227.77 - User: user_1014 - RequestID: hmzly26rvx5 +2025-06-18T14:53:39.181Z [INFO] payment-service - Operation: email_sent - Processing time: 788ms - RequestID: vwrjs4bubj8 +2025-06-18T14:53:39.281Z [TRACE] payment-service - Database SELECT on products - Execution time: 286ms - Rows affected: 82 - RequestID: vfk9ow9k6l +2025-06-18T14:53:39.381Z [INFO] user-service - Auth event: login_failed - User: user_1040 - IP: 192.168.53.133 - RequestID: ppckrin6rve +2025-06-18T14:53:39.481Z [INFO] user-service - Operation: email_sent - Processing time: 863ms - RequestID: ibe2mhawpr +2025-06-18T14:53:39.581Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 131ms - Rows affected: 12 - RequestID: ssvboj1wp8 +2025-06-18T14:53:39.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.194.41 - RequestID: e6nyym3viw6 +2025-06-18T14:53:39.781Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 503 - Response time: 635ms - IP: 192.168.81.206 - User: user_1004 - RequestID: 78xa2bhbnn2 +2025-06-18T14:53:39.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.68.128 - RequestID: ls74b55lk6f +2025-06-18T14:53:39.981Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 404ms - RequestID: tk5ypuzl57 +2025-06-18T14:53:40.081Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 503 - Response time: 1133ms - IP: 192.168.227.233 - User: user_1088 - RequestID: ubswh97kdmr +2025-06-18T14:53:40.181Z [TRACE] user-service - Auth event: login_success - User: user_1014 - IP: 192.168.100.240 - RequestID: lyonnxek3u +2025-06-18T14:53:40.281Z [TRACE] notification-service - GET /api/v1/users - Status: 400 - Response time: 1627ms - IP: 192.168.147.171 - User: user_1038 - RequestID: qirrx828f5 +2025-06-18T14:53:40.381Z [TRACE] user-service - GET /api/v1/users - Status: 500 - Response time: 329ms - IP: 192.168.31.117 - User: user_1053 - RequestID: z17imup1cwo +2025-06-18T14:53:40.481Z [INFO] inventory-service - PUT /api/v1/payments - Status: 503 - Response time: 1682ms - IP: 192.168.194.41 - User: user_1061 - RequestID: h2pqotn68sg +2025-06-18T14:53:40.581Z [INFO] order-service - Operation: email_sent - Processing time: 421ms - RequestID: bs0oike1oc9 +2025-06-18T14:53:40.681Z [TRACE] auth-service - GET /api/v1/orders - Status: 401 - Response time: 1050ms - IP: 192.168.36.218 - User: user_1082 - RequestID: rusl8y5d7fs +2025-06-18T14:53:40.781Z [TRACE] payment-service - Auth event: logout - User: user_1043 - IP: 192.168.79.141 - RequestID: dm7lqtkexdq +2025-06-18T14:53:40.881Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 150ms - Rows affected: 55 - RequestID: ana3j0mzctt +2025-06-18T14:53:40.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 638ms - RequestID: z40ltldrsek +2025-06-18T14:53:41.081Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 479ms - Rows affected: 65 - RequestID: y7jbcmp69l +2025-06-18T14:53:41.181Z [INFO] payment-service - Operation: email_sent - Processing time: 749ms - RequestID: mcemthxoccq +2025-06-18T14:53:41.281Z [INFO] payment-service - GET /api/v1/orders - Status: 401 - Response time: 1795ms - IP: 192.168.187.199 - User: user_1065 - RequestID: 3023m3m3k58 +2025-06-18T14:53:41.381Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 1033ms - RequestID: mvp2gh9pp3g +2025-06-18T14:53:41.481Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 277ms - RequestID: ohilrfcldyf +2025-06-18T14:53:41.581Z [INFO] notification-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.10.184 - RequestID: zc748j8xxcp +2025-06-18T14:53:41.681Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 53ms - RequestID: frsr83v5i3r +2025-06-18T14:53:41.781Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 353ms - Rows affected: 80 - RequestID: nxpmkxv1i0g +2025-06-18T14:53:41.881Z [INFO] user-service - Operation: notification_queued - Processing time: 335ms - RequestID: n46bejghka +2025-06-18T14:53:41.981Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 411ms - Rows affected: 43 - RequestID: h4dfnbltruj +2025-06-18T14:53:42.081Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 201ms - Rows affected: 4 - RequestID: 9x8gucsr1s +2025-06-18T14:53:42.181Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 393ms - Rows affected: 41 - RequestID: n5n6sx69mep +2025-06-18T14:53:42.281Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 201 - Response time: 83ms - IP: 192.168.227.77 - User: user_1008 - RequestID: lqgprrcc2t +2025-06-18T14:53:42.381Z [INFO] order-service - Operation: order_created - Processing time: 925ms - RequestID: zu77eo5w5t8 +2025-06-18T14:53:42.481Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 200 - Response time: 1356ms - IP: 192.168.159.94 - User: user_1064 - RequestID: kt25d3u0ze +2025-06-18T14:53:42.581Z [INFO] inventory-service - PUT /api/v1/payments - Status: 500 - Response time: 717ms - IP: 192.168.85.229 - User: user_1060 - RequestID: yoduu457fz +2025-06-18T14:53:42.681Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 324ms - Rows affected: 93 - RequestID: cnm2p9wr4zo +2025-06-18T14:53:42.781Z [INFO] notification-service - GET /api/v1/payments - Status: 403 - Response time: 1174ms - IP: 192.168.14.77 - User: user_1029 - RequestID: y4czcysvnlr +2025-06-18T14:53:42.881Z [DEBUG] user-service - Operation: notification_queued - Processing time: 639ms - RequestID: hksrmbcz2lv +2025-06-18T14:53:42.981Z [TRACE] user-service - Database DELETE on orders - Execution time: 387ms - Rows affected: 5 - RequestID: g7vbzw7tann +2025-06-18T14:53:43.081Z [DEBUG] inventory-service - Auth event: logout - User: user_1024 - IP: 192.168.44.5 - RequestID: d9j6d6bq046 +2025-06-18T14:53:43.181Z [TRACE] auth-service - Operation: cache_hit - Processing time: 767ms - RequestID: 04ceqjlfc6x9 +2025-06-18T14:53:43.281Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1053ms - IP: 192.168.227.77 - User: user_1056 - RequestID: txdnu49x1xh +2025-06-18T14:53:43.381Z [TRACE] payment-service - Auth event: login_success - User: user_1076 - IP: 192.168.227.233 - RequestID: 6o2e97i1586 +2025-06-18T14:53:43.481Z [INFO] order-service - Auth event: logout - User: user_1007 - IP: 192.168.64.33 - RequestID: klsulw62thi +2025-06-18T14:53:43.581Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1152ms - IP: 192.168.138.123 - User: user_1062 - RequestID: tana480bjss +2025-06-18T14:53:43.681Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 752ms - RequestID: wu058awfsv9 +2025-06-18T14:53:43.781Z [INFO] inventory-service - DELETE /api/v1/users - Status: 200 - Response time: 1108ms - IP: 192.168.227.233 - User: user_1010 - RequestID: 938o3k06l4q +2025-06-18T14:53:43.881Z [INFO] payment-service - GET /api/v1/orders - Status: 404 - Response time: 1056ms - IP: 192.168.44.5 - User: user_1040 - RequestID: cspo2ox2on +2025-06-18T14:53:43.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 490ms - RequestID: oosh222rk6 +2025-06-18T14:53:44.081Z [DEBUG] order-service - Operation: payment_processed - Processing time: 476ms - RequestID: tzrhk1uv0os +2025-06-18T14:53:44.181Z [INFO] order-service - Database INSERT on sessions - Execution time: 98ms - Rows affected: 41 - RequestID: wfkfbz3kkch +2025-06-18T14:53:44.281Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 419ms - RequestID: 59txqcw0n4m +2025-06-18T14:53:44.381Z [INFO] order-service - Auth event: password_change - User: user_1070 - IP: 192.168.113.218 - RequestID: ctzev2xmn2c +2025-06-18T14:53:44.481Z [INFO] payment-service - Database INSERT on payments - Execution time: 143ms - Rows affected: 14 - RequestID: f90m4zsesp +2025-06-18T14:53:44.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1054 - IP: 192.168.10.184 - RequestID: 8i1zhaq2hrx +2025-06-18T14:53:44.681Z [DEBUG] user-service - Operation: cache_miss - Processing time: 875ms - RequestID: 005ywaucdjc9s +2025-06-18T14:53:44.781Z [INFO] payment-service - Auth event: login_success - User: user_1069 - IP: 192.168.113.218 - RequestID: xk91ulun3a +2025-06-18T14:53:44.881Z [TRACE] payment-service - Database SELECT on products - Execution time: 189ms - Rows affected: 72 - RequestID: mu4gxv0imp +2025-06-18T14:53:44.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.227.233 - RequestID: mc6a7epz5fc +2025-06-18T14:53:45.081Z [INFO] payment-service - Auth event: logout - User: user_1062 - IP: 192.168.113.218 - RequestID: orquvnpdih +2025-06-18T14:53:45.181Z [INFO] inventory-service - DELETE /api/v1/users - Status: 502 - Response time: 1818ms - IP: 192.168.158.144 - User: user_1045 - RequestID: 7kfu88vuvel +2025-06-18T14:53:45.281Z [TRACE] user-service - Database SELECT on sessions - Execution time: 414ms - Rows affected: 91 - RequestID: 10bueoi1xqji +2025-06-18T14:53:45.381Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 110ms - Rows affected: 56 - RequestID: qzey5jfb4ke +2025-06-18T14:53:45.481Z [TRACE] user-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.167.32 - RequestID: yl14k0dvwun +2025-06-18T14:53:45.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 247ms - RequestID: phn76l1cdgr +2025-06-18T14:53:45.681Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 319ms - Rows affected: 8 - RequestID: 3xdao9iyh2s +2025-06-18T14:53:45.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1064 - IP: 192.168.68.128 - RequestID: h8vzmpl14e5 +2025-06-18T14:53:45.881Z [INFO] auth-service - Database SELECT on users - Execution time: 388ms - Rows affected: 70 - RequestID: tz2cosmnlbr +2025-06-18T14:53:45.981Z [INFO] auth-service - Auth event: logout - User: user_1000 - IP: 192.168.31.117 - RequestID: il8wk7fsmf +2025-06-18T14:53:46.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1001 - IP: 192.168.64.33 - RequestID: j4sbuerxcdd +2025-06-18T14:53:46.181Z [INFO] order-service - Auth event: password_change - User: user_1076 - IP: 192.168.64.33 - RequestID: qrceewiidsl +2025-06-18T14:53:46.281Z [INFO] user-service - Database DELETE on orders - Execution time: 281ms - Rows affected: 89 - RequestID: hbqgdregvk +2025-06-18T14:53:46.381Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 621ms - RequestID: fhyqrg6jb8d +2025-06-18T14:53:46.481Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 34ms - Rows affected: 74 - RequestID: rx12mr0yutr +2025-06-18T14:53:46.581Z [DEBUG] payment-service - Database DELETE on products - Execution time: 213ms - Rows affected: 8 - RequestID: g7ycou63euc +2025-06-18T14:53:46.681Z [DEBUG] notification-service - Operation: order_created - Processing time: 479ms - RequestID: a8ldxss5ofq +2025-06-18T14:53:46.781Z [TRACE] auth-service - Database DELETE on payments - Execution time: 451ms - Rows affected: 31 - RequestID: df4nqn9hks +2025-06-18T14:53:46.881Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 116ms - RequestID: it8uecepxko +2025-06-18T14:53:46.981Z [INFO] payment-service - Database DELETE on sessions - Execution time: 177ms - Rows affected: 9 - RequestID: fd6wort4sfe +2025-06-18T14:53:47.081Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1332ms - IP: 192.168.141.100 - User: user_1068 - RequestID: iq18pc42zq9 +2025-06-18T14:53:47.181Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 502 - Response time: 298ms - IP: 192.168.46.63 - User: user_1056 - RequestID: 1oemc1d3tp7 +2025-06-18T14:53:47.281Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 201 - Response time: 858ms - IP: 192.168.211.72 - User: user_1095 - RequestID: u7yx4h4or0q +2025-06-18T14:53:47.381Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 41ms - Rows affected: 62 - RequestID: 1yacgy8slrz +2025-06-18T14:53:47.481Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 70ms - Rows affected: 88 - RequestID: ch6w1uikapc +2025-06-18T14:53:47.581Z [DEBUG] auth-service - Auth event: password_change - User: user_1012 - IP: 192.168.33.76 - RequestID: x0ohlfmax3r +2025-06-18T14:53:47.681Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 178ms - IP: 192.168.187.199 - User: user_1043 - RequestID: kj7nnymznt +2025-06-18T14:53:47.781Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 294ms - RequestID: obig2u9z1t +2025-06-18T14:53:47.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.33.76 - RequestID: ubvo27k0tc +2025-06-18T14:53:47.981Z [TRACE] inventory-service - Database DELETE on users - Execution time: 162ms - Rows affected: 63 - RequestID: ot2wd7rlmx +2025-06-18T14:53:48.081Z [TRACE] order-service - Auth event: login_success - User: user_1081 - IP: 192.168.144.38 - RequestID: ao1nm7bij2 +2025-06-18T14:53:48.181Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1591ms - IP: 192.168.68.128 - User: user_1092 - RequestID: kv54x0futi +2025-06-18T14:53:48.281Z [TRACE] order-service - DELETE /api/v1/orders - Status: 404 - Response time: 1127ms - IP: 192.168.170.215 - User: user_1004 - RequestID: ppz0u5ksw9h +2025-06-18T14:53:48.381Z [TRACE] inventory-service - GET /api/v1/orders - Status: 404 - Response time: 1211ms - IP: 192.168.14.77 - User: user_1054 - RequestID: c4hnut5ycwi +2025-06-18T14:53:48.481Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 1031ms - RequestID: 2cm3f738b74 +2025-06-18T14:53:48.581Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 67ms - RequestID: qwor9qrwzvm +2025-06-18T14:53:48.681Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 494ms - Rows affected: 12 - RequestID: xccrt09uwkd +2025-06-18T14:53:48.781Z [INFO] payment-service - Database INSERT on payments - Execution time: 280ms - Rows affected: 82 - RequestID: mm5hqyluy8 +2025-06-18T14:53:48.881Z [TRACE] inventory-service - Database INSERT on users - Execution time: 272ms - Rows affected: 89 - RequestID: 2bu7slmr81l +2025-06-18T14:53:48.981Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 628ms - IP: 192.168.33.76 - User: user_1029 - RequestID: 9glyjfvj3sf +2025-06-18T14:53:49.081Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 411ms - IP: 192.168.187.199 - User: user_1011 - RequestID: 1rotvkc9mf1 +2025-06-18T14:53:49.181Z [TRACE] inventory-service - Operation: order_created - Processing time: 338ms - RequestID: 601dg9rbkt3 +2025-06-18T14:53:49.281Z [INFO] auth-service - Database INSERT on orders - Execution time: 230ms - Rows affected: 37 - RequestID: fcqtfolozz8 +2025-06-18T14:53:49.381Z [TRACE] payment-service - Auth event: login_failed - User: user_1094 - IP: 192.168.81.206 - RequestID: z0yetkoxjc +2025-06-18T14:53:49.481Z [TRACE] auth-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.138.123 - RequestID: zk77qw7b2k8 +2025-06-18T14:53:49.581Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 166ms - Rows affected: 85 - RequestID: myy7efkev9j +2025-06-18T14:53:49.681Z [DEBUG] notification-service - Operation: order_created - Processing time: 315ms - RequestID: sr0arkgfnrb +2025-06-18T14:53:49.781Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 201 - Response time: 533ms - IP: 192.168.81.206 - User: user_1033 - RequestID: lpdlfpst5kp +2025-06-18T14:53:49.881Z [INFO] auth-service - GET /api/v1/orders - Status: 500 - Response time: 265ms - IP: 192.168.170.215 - User: user_1001 - RequestID: 7txjjw4o7kl +2025-06-18T14:53:49.981Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 305ms - Rows affected: 22 - RequestID: lk6qe3wt0mj +2025-06-18T14:53:50.081Z [DEBUG] payment-service - Auth event: login_success - User: user_1056 - IP: 192.168.194.41 - RequestID: 04pvqqkpmpco +2025-06-18T14:53:50.181Z [TRACE] auth-service - Database INSERT on users - Execution time: 434ms - Rows affected: 71 - RequestID: 81c2nrvgbyy +2025-06-18T14:53:50.281Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 246ms - Rows affected: 26 - RequestID: qjon5dv1b7b +2025-06-18T14:53:50.381Z [DEBUG] order-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.28.146 - RequestID: i4mxmdsbvqp +2025-06-18T14:53:50.481Z [INFO] auth-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.167.32 - RequestID: 0v2cuzzgd9q +2025-06-18T14:53:50.581Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 502 - Response time: 621ms - IP: 192.168.181.225 - User: user_1059 - RequestID: 9xt43omsmgm +2025-06-18T14:53:50.681Z [DEBUG] user-service - Auth event: login_failed - User: user_1083 - IP: 192.168.242.165 - RequestID: 8k4g0aqm8ul +2025-06-18T14:53:50.781Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 326ms - IP: 192.168.14.77 - User: user_1043 - RequestID: zlpge5tiln +2025-06-18T14:53:50.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 841ms - RequestID: 1wmimi0rm8w +2025-06-18T14:53:50.981Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 503 - Response time: 317ms - IP: 192.168.36.218 - User: user_1026 - RequestID: ktsq207j76p +2025-06-18T14:53:51.081Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 88ms - Rows affected: 56 - RequestID: ptpj35kge2 +2025-06-18T14:53:51.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.79.116 - RequestID: 26npintmz3x +2025-06-18T14:53:51.281Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 318ms - Rows affected: 24 - RequestID: jaczln5zn2n +2025-06-18T14:53:51.381Z [INFO] payment-service - Database SELECT on users - Execution time: 34ms - Rows affected: 14 - RequestID: f1o3leqk6de +2025-06-18T14:53:51.481Z [TRACE] notification-service - Auth event: logout - User: user_1054 - IP: 192.168.227.233 - RequestID: 7hnakgm7phx +2025-06-18T14:53:51.581Z [INFO] auth-service - Operation: payment_processed - Processing time: 177ms - RequestID: x96vj0sccr +2025-06-18T14:53:51.681Z [INFO] auth-service - Database DELETE on sessions - Execution time: 210ms - Rows affected: 77 - RequestID: orf6ckciscj +2025-06-18T14:53:51.781Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 880ms - IP: 192.168.235.117 - User: user_1048 - RequestID: j31ddccowr +2025-06-18T14:53:51.881Z [TRACE] order-service - Database INSERT on orders - Execution time: 333ms - Rows affected: 7 - RequestID: iawy4klcf7 +2025-06-18T14:53:51.981Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 503 - Response time: 441ms - IP: 192.168.81.206 - User: user_1038 - RequestID: jv9ta73o0f +2025-06-18T14:53:52.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.174.114 - RequestID: iycv4brk2z +2025-06-18T14:53:52.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1077 - IP: 192.168.13.72 - RequestID: wbzxfhnauq +2025-06-18T14:53:52.281Z [TRACE] payment-service - Database SELECT on users - Execution time: 97ms - Rows affected: 68 - RequestID: wo2mzg659ph +2025-06-18T14:53:52.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.247.134 - RequestID: 5layb533503 +2025-06-18T14:53:52.481Z [TRACE] notification-service - PUT /api/v1/users - Status: 200 - Response time: 1861ms - IP: 192.168.144.38 - User: user_1074 - RequestID: v4w68jiyjxs +2025-06-18T14:53:52.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 469ms - RequestID: kc50z26uqlk +2025-06-18T14:53:52.681Z [TRACE] auth-service - PUT /api/v1/users - Status: 503 - Response time: 57ms - IP: 192.168.227.233 - User: user_1000 - RequestID: b8jquyobici +2025-06-18T14:53:52.781Z [INFO] order-service - Database UPDATE on sessions - Execution time: 432ms - Rows affected: 47 - RequestID: kle8yt1oqxe +2025-06-18T14:53:52.881Z [DEBUG] order-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.113.218 - RequestID: mrtlfjklhrd +2025-06-18T14:53:52.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1002 - IP: 192.168.196.226 - RequestID: 7tbpgwxdkxa +2025-06-18T14:53:53.081Z [TRACE] auth-service - POST /api/v1/orders - Status: 502 - Response time: 1017ms - IP: 192.168.31.117 - User: user_1005 - RequestID: 8237evth0r3 +2025-06-18T14:53:53.181Z [TRACE] order-service - Database INSERT on orders - Execution time: 150ms - Rows affected: 57 - RequestID: c3igf2yu6uf +2025-06-18T14:53:53.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.141.100 - RequestID: mn7pru3ftwh +2025-06-18T14:53:53.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 827ms - RequestID: knopgr4plz +2025-06-18T14:53:53.481Z [TRACE] user-service - Auth event: logout - User: user_1007 - IP: 192.168.189.103 - RequestID: o8auqb35uod +2025-06-18T14:53:53.581Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 3ms - Rows affected: 71 - RequestID: jvpgirjjq6o +2025-06-18T14:53:53.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.138.123 - RequestID: q9xwd1oi9mq +2025-06-18T14:53:53.781Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 147ms - RequestID: g2ff3um8gwe +2025-06-18T14:53:53.881Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 200 - Response time: 562ms - IP: 192.168.235.117 - User: user_1072 - RequestID: 23pp2psdplx +2025-06-18T14:53:53.981Z [TRACE] order-service - Database INSERT on users - Execution time: 397ms - Rows affected: 29 - RequestID: wuw4s7k4bqo +2025-06-18T14:53:54.081Z [INFO] order-service - Operation: notification_queued - Processing time: 175ms - RequestID: lc1rvux4qgr +2025-06-18T14:53:54.181Z [TRACE] notification-service - GET /api/v1/users - Status: 403 - Response time: 1411ms - IP: 192.168.85.229 - User: user_1086 - RequestID: lrhcjt8913g +2025-06-18T14:53:54.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.85.229 - RequestID: w1wnl4d7pif +2025-06-18T14:53:54.381Z [TRACE] auth-service - Operation: payment_processed - Processing time: 219ms - RequestID: m67n1k7ltrb +2025-06-18T14:53:54.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.158.144 - RequestID: z5n17ajyr4d +2025-06-18T14:53:54.581Z [INFO] order-service - POST /api/v1/auth/login - Status: 404 - Response time: 1910ms - IP: 192.168.32.38 - User: user_1017 - RequestID: 3rjy91h1z1v +2025-06-18T14:53:54.681Z [DEBUG] user-service - Operation: payment_processed - Processing time: 151ms - RequestID: j2mc2fefatj +2025-06-18T14:53:54.781Z [TRACE] user-service - Auth event: logout - User: user_1033 - IP: 192.168.36.218 - RequestID: f4xycj4yu17 +2025-06-18T14:53:54.881Z [TRACE] inventory-service - Auth event: logout - User: user_1053 - IP: 192.168.158.144 - RequestID: lpi191zxxjg +2025-06-18T14:53:54.981Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 154ms - Rows affected: 55 - RequestID: no6q10ac3qr +2025-06-18T14:53:55.081Z [INFO] order-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.235.117 - RequestID: 0i5t9xwq30h +2025-06-18T14:53:55.181Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1570ms - IP: 192.168.104.37 - User: user_1052 - RequestID: pcfelrmokl +2025-06-18T14:53:55.281Z [INFO] notification-service - Database INSERT on sessions - Execution time: 470ms - Rows affected: 53 - RequestID: tv9vl5i89y +2025-06-18T14:53:55.381Z [TRACE] order-service - PUT /api/v1/orders - Status: 502 - Response time: 427ms - IP: 192.168.227.77 - User: user_1047 - RequestID: 93adu4ksc2n +2025-06-18T14:53:55.481Z [INFO] payment-service - Operation: email_sent - Processing time: 818ms - RequestID: u6o2pwgkfid +2025-06-18T14:53:55.581Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 452ms - Rows affected: 3 - RequestID: iv6dkfemd7 +2025-06-18T14:53:55.681Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 997ms - RequestID: ggos5auz3gd +2025-06-18T14:53:55.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1055 - IP: 192.168.158.144 - RequestID: l45ehs6zdac +2025-06-18T14:53:55.881Z [TRACE] payment-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.187.199 - RequestID: mbgw9gl5lkq +2025-06-18T14:53:55.981Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1724ms - IP: 192.168.147.171 - User: user_1073 - RequestID: kgwbguu3b5 +2025-06-18T14:53:56.081Z [TRACE] order-service - Operation: email_sent - Processing time: 676ms - RequestID: lh88dmueho +2025-06-18T14:53:56.181Z [INFO] notification-service - Auth event: logout - User: user_1086 - IP: 192.168.235.117 - RequestID: wlxkzh7qu4 +2025-06-18T14:53:56.281Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 280ms - IP: 192.168.1.152 - User: user_1035 - RequestID: ldca9jwebw +2025-06-18T14:53:56.381Z [INFO] user-service - Database DELETE on sessions - Execution time: 146ms - Rows affected: 81 - RequestID: 3whey8upx99 +2025-06-18T14:53:56.481Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 240ms - Rows affected: 53 - RequestID: ydga67yzty +2025-06-18T14:53:56.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.144.38 - RequestID: xyl8maj6y4b +2025-06-18T14:53:56.681Z [TRACE] auth-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.97.87 - RequestID: 0rj56p3s6jik +2025-06-18T14:53:56.781Z [TRACE] auth-service - Operation: cache_hit - Processing time: 136ms - RequestID: zsels932po +2025-06-18T14:53:56.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 703ms - RequestID: 4skro2d3hh7 +2025-06-18T14:53:56.981Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1505ms - IP: 192.168.28.146 - User: user_1089 - RequestID: 8w36hea0195 +2025-06-18T14:53:57.081Z [TRACE] auth-service - Operation: payment_processed - Processing time: 700ms - RequestID: 92htjpvx54 +2025-06-18T14:53:57.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 267ms - RequestID: hboq3bxosyl +2025-06-18T14:53:57.281Z [TRACE] user-service - Database DELETE on products - Execution time: 268ms - Rows affected: 2 - RequestID: fhbol8r2a6 +2025-06-18T14:53:57.381Z [INFO] notification-service - Auth event: login_failed - User: user_1091 - IP: 192.168.113.218 - RequestID: dsaod75ku0o +2025-06-18T14:53:57.481Z [TRACE] order-service - Auth event: logout - User: user_1090 - IP: 192.168.53.133 - RequestID: mij1xsl5hfh +2025-06-18T14:53:57.581Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 297ms - Rows affected: 18 - RequestID: 5j8xnaxv5cr +2025-06-18T14:53:57.681Z [DEBUG] user-service - Database SELECT on users - Execution time: 346ms - Rows affected: 85 - RequestID: w9dgunufqf +2025-06-18T14:53:57.781Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 934ms - RequestID: jfleme9qbn +2025-06-18T14:53:57.881Z [INFO] inventory-service - Operation: email_sent - Processing time: 959ms - RequestID: ojt3zupnbd +2025-06-18T14:53:57.981Z [INFO] user-service - Auth event: password_change - User: user_1013 - IP: 192.168.167.32 - RequestID: 5b486us2gxl +2025-06-18T14:53:58.081Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 414ms - Rows affected: 51 - RequestID: 6i7ll1e2ujc +2025-06-18T14:53:58.181Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 131ms - Rows affected: 7 - RequestID: iahydpluzvk +2025-06-18T14:53:58.281Z [TRACE] inventory-service - Database DELETE on products - Execution time: 73ms - Rows affected: 26 - RequestID: 9bqcdez34iu +2025-06-18T14:53:58.381Z [DEBUG] user-service - PATCH /api/v1/users - Status: 503 - Response time: 1515ms - IP: 192.168.158.144 - User: user_1033 - RequestID: bvabh971n9f +2025-06-18T14:53:58.481Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 236ms - RequestID: 8sejxuuqbca +2025-06-18T14:53:58.581Z [INFO] auth-service - Auth event: password_change - User: user_1082 - IP: 192.168.211.72 - RequestID: bic3whyner +2025-06-18T14:53:58.681Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 36ms - Rows affected: 33 - RequestID: qx8hmlopp6e +2025-06-18T14:53:58.781Z [INFO] order-service - Operation: cache_miss - Processing time: 65ms - RequestID: by6mkts9ykn +2025-06-18T14:53:58.881Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 347ms - RequestID: sey2r11gkjk +2025-06-18T14:53:58.981Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 130ms - Rows affected: 54 - RequestID: w0esuew5rio +2025-06-18T14:53:59.081Z [TRACE] notification-service - Operation: payment_processed - Processing time: 664ms - RequestID: 810qwhf7am +2025-06-18T14:53:59.181Z [TRACE] order-service - Database UPDATE on users - Execution time: 321ms - Rows affected: 16 - RequestID: pzj1ncn1n4h +2025-06-18T14:53:59.281Z [TRACE] user-service - Auth event: logout - User: user_1054 - IP: 192.168.13.72 - RequestID: jn9jq13m2ph +2025-06-18T14:53:59.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 91ms - RequestID: ohi0my0s8l +2025-06-18T14:53:59.481Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 25ms - Rows affected: 28 - RequestID: gjucd75jtuk +2025-06-18T14:53:59.581Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 182ms - IP: 192.168.13.72 - User: user_1060 - RequestID: y5khya11hwk +2025-06-18T14:53:59.681Z [INFO] notification-service - Operation: inventory_updated - Processing time: 336ms - RequestID: 16rfn29onum +2025-06-18T14:53:59.781Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 500 - Response time: 1107ms - IP: 192.168.14.77 - User: user_1060 - RequestID: bx236craay +2025-06-18T14:53:59.881Z [INFO] inventory-service - Database SELECT on users - Execution time: 294ms - Rows affected: 54 - RequestID: aa1ig1qb05j +2025-06-18T14:53:59.981Z [DEBUG] user-service - GET /api/v1/inventory - Status: 503 - Response time: 468ms - IP: 192.168.170.215 - User: user_1024 - RequestID: mk2z8z1q5k +2025-06-18T14:54:00.081Z [TRACE] auth-service - Database SELECT on users - Execution time: 407ms - Rows affected: 93 - RequestID: m84sv2ehi +2025-06-18T14:54:00.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.141.100 - RequestID: 6ayb6i29bdx +2025-06-18T14:54:00.281Z [INFO] payment-service - Operation: email_sent - Processing time: 991ms - RequestID: 47bx9oyqldh +2025-06-18T14:54:00.381Z [TRACE] auth-service - Auth event: login_success - User: user_1006 - IP: 192.168.242.165 - RequestID: lgn4ox6zj78 +2025-06-18T14:54:00.481Z [DEBUG] payment-service - Auth event: login_failed - User: user_1013 - IP: 192.168.133.7 - RequestID: 4noqaa3sjtw +2025-06-18T14:54:00.581Z [TRACE] user-service - GET /api/v1/inventory - Status: 404 - Response time: 1358ms - IP: 192.168.30.79 - User: user_1089 - RequestID: mvjx9h8v7dj +2025-06-18T14:54:00.681Z [DEBUG] notification-service - Auth event: logout - User: user_1032 - IP: 192.168.44.5 - RequestID: uvmmyzjcpnc +2025-06-18T14:54:00.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.97.87 - RequestID: gm5lw3cjpk +2025-06-18T14:54:00.881Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 1049ms - RequestID: t6w7lcnsr5r +2025-06-18T14:54:00.981Z [INFO] auth-service - Auth event: logout - User: user_1057 - IP: 192.168.97.87 - RequestID: ssuhp7kgp58 +2025-06-18T14:54:01.081Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 97ms - RequestID: s3g1efztb2 +2025-06-18T14:54:01.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1003 - IP: 192.168.167.32 - RequestID: 48h4k72twk3 +2025-06-18T14:54:01.281Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 578ms - RequestID: 2k802aabqsz +2025-06-18T14:54:01.381Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 326ms - Rows affected: 54 - RequestID: m428rk0zqh +2025-06-18T14:54:01.481Z [INFO] notification-service - Auth event: password_change - User: user_1085 - IP: 192.168.104.37 - RequestID: un1ysjqscb +2025-06-18T14:54:01.581Z [TRACE] order-service - Operation: cache_hit - Processing time: 673ms - RequestID: z2r45pje5dp +2025-06-18T14:54:01.681Z [TRACE] inventory-service - GET /api/v1/users - Status: 404 - Response time: 534ms - IP: 192.168.30.79 - User: user_1021 - RequestID: is2oxz0byz +2025-06-18T14:54:01.781Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1916ms - IP: 192.168.100.240 - User: user_1066 - RequestID: voqmgg43mn +2025-06-18T14:54:01.881Z [TRACE] auth-service - Operation: notification_queued - Processing time: 242ms - RequestID: 0xpz9n5wf61 +2025-06-18T14:54:01.981Z [TRACE] payment-service - Database DELETE on users - Execution time: 333ms - Rows affected: 82 - RequestID: c3g8msshsc +2025-06-18T14:54:02.081Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 614ms - RequestID: 2x9nd6ke2id +2025-06-18T14:54:02.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1029 - IP: 192.168.79.116 - RequestID: n8nnspzb01 +2025-06-18T14:54:02.281Z [TRACE] inventory-service - Database INSERT on users - Execution time: 452ms - Rows affected: 41 - RequestID: jfsootj9wjj +2025-06-18T14:54:02.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.141.100 - RequestID: cn8p0fzdlwk +2025-06-18T14:54:02.481Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 825ms - RequestID: avetx7uu1v +2025-06-18T14:54:02.581Z [TRACE] notification-service - POST /api/v1/users - Status: 404 - Response time: 1502ms - IP: 192.168.240.169 - User: user_1070 - RequestID: pzs35zesuy8 +2025-06-18T14:54:02.681Z [INFO] user-service - PATCH /api/v1/users - Status: 502 - Response time: 262ms - IP: 192.168.158.144 - User: user_1084 - RequestID: hd61i3doyz4 +2025-06-18T14:54:02.781Z [DEBUG] auth-service - POST /api/v1/users - Status: 403 - Response time: 966ms - IP: 192.168.147.171 - User: user_1037 - RequestID: x9zb8jjfwc +2025-06-18T14:54:02.881Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 827ms - RequestID: uqd7nxi9vs8 +2025-06-18T14:54:02.981Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 502 - Response time: 801ms - IP: 192.168.159.94 - User: user_1094 - RequestID: aq36olsootu +2025-06-18T14:54:03.081Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 296ms - IP: 192.168.194.41 - User: user_1084 - RequestID: kkamhzesolq +2025-06-18T14:54:03.181Z [INFO] auth-service - Database SELECT on payments - Execution time: 97ms - Rows affected: 17 - RequestID: t3byn7hzch +2025-06-18T14:54:03.281Z [INFO] inventory-service - Auth event: password_change - User: user_1022 - IP: 192.168.144.38 - RequestID: phzqb1uep1k +2025-06-18T14:54:03.381Z [TRACE] user-service - Operation: payment_processed - Processing time: 919ms - RequestID: 6z2oqxvpwxi +2025-06-18T14:54:03.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 838ms - RequestID: 554hxcxzz1f +2025-06-18T14:54:03.581Z [INFO] payment-service - GET /api/v1/users - Status: 200 - Response time: 1109ms - IP: 192.168.79.143 - User: user_1000 - RequestID: s722g9ltddd +2025-06-18T14:54:03.681Z [DEBUG] payment-service - Operation: email_sent - Processing time: 108ms - RequestID: zf3kgh2xi5 +2025-06-18T14:54:03.781Z [DEBUG] order-service - Auth event: login_success - User: user_1068 - IP: 192.168.232.72 - RequestID: bzqvm5tf6j +2025-06-18T14:54:03.881Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 401 - Response time: 270ms - IP: 192.168.79.143 - User: user_1008 - RequestID: kyjs35qgrl +2025-06-18T14:54:03.981Z [DEBUG] payment-service - Database DELETE on users - Execution time: 99ms - Rows affected: 14 - RequestID: iwa630oy4w +2025-06-18T14:54:04.081Z [DEBUG] order-service - Operation: cache_miss - Processing time: 554ms - RequestID: bwgpza9b4x +2025-06-18T14:54:04.181Z [TRACE] user-service - Operation: order_created - Processing time: 991ms - RequestID: zubpyqx4j8g +2025-06-18T14:54:04.281Z [TRACE] auth-service - Database INSERT on orders - Execution time: 170ms - Rows affected: 80 - RequestID: g50uff3ye7 +2025-06-18T14:54:04.381Z [INFO] auth-service - Database UPDATE on payments - Execution time: 486ms - Rows affected: 51 - RequestID: re00liuta8 +2025-06-18T14:54:04.481Z [INFO] order-service - Operation: inventory_updated - Processing time: 362ms - RequestID: coxc0i2wwe5 +2025-06-18T14:54:04.581Z [TRACE] order-service - Database DELETE on payments - Execution time: 360ms - Rows affected: 94 - RequestID: uz8oi903dr +2025-06-18T14:54:04.681Z [TRACE] payment-service - Database INSERT on payments - Execution time: 387ms - Rows affected: 71 - RequestID: o85q4w72lyb +2025-06-18T14:54:04.781Z [DEBUG] inventory-service - Operation: order_created - Processing time: 752ms - RequestID: khud9ts92gn +2025-06-18T14:54:04.881Z [INFO] notification-service - Operation: notification_queued - Processing time: 1009ms - RequestID: zh04nfmlvvb +2025-06-18T14:54:04.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1081 - IP: 192.168.240.169 - RequestID: x5ywdgmriph +2025-06-18T14:54:05.081Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 209ms - Rows affected: 39 - RequestID: 8ostap2wkch +2025-06-18T14:54:05.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 539ms - RequestID: pqojoih4yzj +2025-06-18T14:54:05.281Z [INFO] user-service - Auth event: password_change - User: user_1099 - IP: 192.168.181.225 - RequestID: w5qwpd0s85 +2025-06-18T14:54:05.381Z [TRACE] payment-service - Operation: cache_miss - Processing time: 837ms - RequestID: 80tgh3we70f +2025-06-18T14:54:05.481Z [TRACE] order-service - Auth event: logout - User: user_1077 - IP: 192.168.64.33 - RequestID: rj9folft37 +2025-06-18T14:54:05.581Z [INFO] notification-service - POST /api/v1/users - Status: 401 - Response time: 129ms - IP: 192.168.196.226 - User: user_1097 - RequestID: 7jn4fl34d8m +2025-06-18T14:54:05.681Z [DEBUG] payment-service - Operation: order_created - Processing time: 70ms - RequestID: apvbhl04bdb +2025-06-18T14:54:05.781Z [INFO] order-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.147.171 - RequestID: w335b1e3nti +2025-06-18T14:54:05.881Z [DEBUG] user-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.133.7 - RequestID: l3a52ic3xqj +2025-06-18T14:54:05.981Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 200 - Response time: 103ms - IP: 192.168.79.143 - User: user_1092 - RequestID: gmmx3jxot6 +2025-06-18T14:54:06.081Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 706ms - IP: 192.168.13.72 - User: user_1070 - RequestID: ui1w9nak2j +2025-06-18T14:54:06.181Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 639ms - IP: 192.168.81.206 - User: user_1061 - RequestID: phx0hn1pz8m +2025-06-18T14:54:06.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.79.116 - RequestID: ptkbqodcqga +2025-06-18T14:54:06.381Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 893ms - IP: 192.168.227.233 - User: user_1083 - RequestID: jqirzyj3sh +2025-06-18T14:54:06.481Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1923ms - IP: 192.168.158.144 - User: user_1034 - RequestID: xeej6rc30rs +2025-06-18T14:54:06.581Z [DEBUG] notification-service - GET /api/v1/payments - Status: 500 - Response time: 138ms - IP: 192.168.79.143 - User: user_1059 - RequestID: n3r0d1fk0ak +2025-06-18T14:54:06.681Z [DEBUG] user-service - Database DELETE on products - Execution time: 68ms - Rows affected: 69 - RequestID: 3ml8jopaiad +2025-06-18T14:54:06.781Z [INFO] order-service - Database SELECT on products - Execution time: 168ms - Rows affected: 47 - RequestID: yz3ra6mjt5g +2025-06-18T14:54:06.881Z [DEBUG] user-service - Database UPDATE on products - Execution time: 227ms - Rows affected: 87 - RequestID: 4aj9tre4ze1 +2025-06-18T14:54:06.981Z [TRACE] notification-service - Database SELECT on users - Execution time: 357ms - Rows affected: 43 - RequestID: l3u3zizjb6h +2025-06-18T14:54:07.081Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 281ms - Rows affected: 0 - RequestID: ujs6axjo0x +2025-06-18T14:54:07.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.68.128 - RequestID: f5uks2z8nye +2025-06-18T14:54:07.281Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 401 - Response time: 241ms - IP: 192.168.232.72 - User: user_1022 - RequestID: 81d5ycjwwsx +2025-06-18T14:54:07.381Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 1020ms - RequestID: eq9m4yiro0s +2025-06-18T14:54:07.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 53ms - RequestID: st5gri0sz8j +2025-06-18T14:54:07.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 311ms - RequestID: nns7gziyk3c +2025-06-18T14:54:07.681Z [DEBUG] auth-service - Operation: email_sent - Processing time: 857ms - RequestID: 15n3cyo0da4 +2025-06-18T14:54:07.781Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 98ms - RequestID: 6e6mlibeazr +2025-06-18T14:54:07.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1012 - IP: 192.168.79.141 - RequestID: dcqnaltqg9k +2025-06-18T14:54:07.981Z [INFO] user-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.100.240 - RequestID: n3dl6trmmhg +2025-06-18T14:54:08.081Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1793ms - IP: 192.168.97.87 - User: user_1080 - RequestID: gy6p90bfny +2025-06-18T14:54:08.181Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 891ms - IP: 192.168.97.87 - User: user_1036 - RequestID: onifq0arsdr +2025-06-18T14:54:08.281Z [INFO] auth-service - Operation: email_sent - Processing time: 362ms - RequestID: omya6pk3eh +2025-06-18T14:54:08.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 705ms - RequestID: 0tgujuz2efu +2025-06-18T14:54:08.481Z [DEBUG] inventory-service - Operation: order_created - Processing time: 289ms - RequestID: yyizaredopr +2025-06-18T14:54:08.581Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 470ms - Rows affected: 83 - RequestID: th667rs7rr +2025-06-18T14:54:08.681Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 193ms - Rows affected: 22 - RequestID: 92gq0zjptw4 +2025-06-18T14:54:08.781Z [TRACE] payment-service - Database INSERT on payments - Execution time: 284ms - Rows affected: 46 - RequestID: 6a7w6q62ky +2025-06-18T14:54:08.881Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 211ms - Rows affected: 1 - RequestID: pbejtve475g +2025-06-18T14:54:08.981Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 452ms - Rows affected: 58 - RequestID: hk56e3ndza +2025-06-18T14:54:09.081Z [INFO] auth-service - Database INSERT on sessions - Execution time: 184ms - Rows affected: 18 - RequestID: j8ge3te6gyn +2025-06-18T14:54:09.181Z [TRACE] user-service - Auth event: login_success - User: user_1004 - IP: 192.168.10.184 - RequestID: sifyg8rnp6 +2025-06-18T14:54:09.281Z [INFO] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 699ms - IP: 192.168.147.171 - User: user_1063 - RequestID: ovc7rfbsydc +2025-06-18T14:54:09.381Z [DEBUG] user-service - Database SELECT on orders - Execution time: 16ms - Rows affected: 44 - RequestID: 26fltsrs394 +2025-06-18T14:54:09.481Z [DEBUG] order-service - Operation: cache_miss - Processing time: 864ms - RequestID: nzmp91xo82l +2025-06-18T14:54:09.581Z [TRACE] order-service - Database SELECT on payments - Execution time: 260ms - Rows affected: 10 - RequestID: kqe4egeujbr +2025-06-18T14:54:09.681Z [INFO] order-service - Auth event: logout - User: user_1073 - IP: 192.168.174.114 - RequestID: e1wbfmlvnc +2025-06-18T14:54:09.781Z [DEBUG] user-service - Operation: notification_queued - Processing time: 256ms - RequestID: w0w9a9al75q +2025-06-18T14:54:09.881Z [TRACE] order-service - Operation: notification_queued - Processing time: 719ms - RequestID: ngr7kivzwl +2025-06-18T14:54:09.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 689ms - RequestID: fus6u9he11 +2025-06-18T14:54:10.081Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 33ms - Rows affected: 28 - RequestID: 8dehljeuanx +2025-06-18T14:54:10.181Z [TRACE] order-service - Operation: order_created - Processing time: 723ms - RequestID: t4sl73bbg2t +2025-06-18T14:54:10.281Z [INFO] inventory-service - Auth event: logout - User: user_1001 - IP: 192.168.187.199 - RequestID: le2xpliicml +2025-06-18T14:54:10.381Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 262ms - Rows affected: 84 - RequestID: og1n4xmf6n8 +2025-06-18T14:54:10.481Z [INFO] inventory-service - GET /api/v1/payments - Status: 200 - Response time: 373ms - IP: 192.168.79.116 - User: user_1029 - RequestID: gvo463gw4ek +2025-06-18T14:54:10.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 585ms - RequestID: eyjkfgwg7es +2025-06-18T14:54:10.681Z [INFO] payment-service - Operation: cache_miss - Processing time: 944ms - RequestID: ihzn3c1okgj +2025-06-18T14:54:10.781Z [TRACE] order-service - Database DELETE on products - Execution time: 144ms - Rows affected: 7 - RequestID: 18rxxs7bigoh +2025-06-18T14:54:10.881Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 401 - Response time: 1237ms - IP: 192.168.11.60 - User: user_1053 - RequestID: jpo4mpzh1ea +2025-06-18T14:54:10.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1014 - IP: 192.168.31.117 - RequestID: e1rdaj5r4ww +2025-06-18T14:54:11.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.196.226 - RequestID: u8qygq52m6 +2025-06-18T14:54:11.181Z [TRACE] order-service - Database UPDATE on payments - Execution time: 41ms - Rows affected: 52 - RequestID: vf1x1gz0g7 +2025-06-18T14:54:11.281Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 238ms - Rows affected: 92 - RequestID: akgai1fu9qq +2025-06-18T14:54:11.381Z [INFO] notification-service - POST /api/v1/payments - Status: 500 - Response time: 1306ms - IP: 192.168.133.7 - User: user_1006 - RequestID: dfdoau9crsf +2025-06-18T14:54:11.481Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 500 - Response time: 53ms - IP: 192.168.81.206 - User: user_1038 - RequestID: hcyupma7rql +2025-06-18T14:54:11.581Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 511ms - RequestID: lzmmbnkmky +2025-06-18T14:54:11.681Z [TRACE] auth-service - Operation: email_sent - Processing time: 363ms - RequestID: 7rfif1axfvr +2025-06-18T14:54:11.781Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 507ms - IP: 192.168.100.240 - User: user_1028 - RequestID: j5tpush9tb +2025-06-18T14:54:11.881Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 320ms - Rows affected: 74 - RequestID: g6uwqo6nbh7 +2025-06-18T14:54:11.981Z [INFO] auth-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.158.144 - RequestID: 37433v6fg4r +2025-06-18T14:54:12.081Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 174ms - Rows affected: 58 - RequestID: 0rvw101v26b +2025-06-18T14:54:12.181Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 476ms - Rows affected: 61 - RequestID: ivhisrjes8 +2025-06-18T14:54:12.281Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 445ms - Rows affected: 32 - RequestID: q4j7g2hgv0p +2025-06-18T14:54:12.381Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 867ms - IP: 192.168.144.38 - User: user_1091 - RequestID: okkchl6hb6 +2025-06-18T14:54:12.481Z [TRACE] auth-service - GET /api/v1/orders - Status: 500 - Response time: 1695ms - IP: 192.168.11.60 - User: user_1081 - RequestID: yuar3j8b09 +2025-06-18T14:54:12.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.10.184 - RequestID: k1y9gfv4949 +2025-06-18T14:54:12.681Z [TRACE] order-service - PUT /api/v1/payments - Status: 403 - Response time: 1606ms - IP: 192.168.44.5 - User: user_1049 - RequestID: 1dedv4m5rzq +2025-06-18T14:54:12.781Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 255ms - Rows affected: 19 - RequestID: 3242whovzqh +2025-06-18T14:54:12.881Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 503 - Response time: 511ms - IP: 192.168.68.158 - User: user_1054 - RequestID: 4hng123ier +2025-06-18T14:54:12.981Z [DEBUG] order-service - Database DELETE on products - Execution time: 325ms - Rows affected: 74 - RequestID: uj5bogzj4n8 +2025-06-18T14:54:13.081Z [INFO] payment-service - Operation: notification_queued - Processing time: 317ms - RequestID: wbeqahnoaql +2025-06-18T14:54:13.181Z [DEBUG] user-service - Auth event: password_change - User: user_1082 - IP: 192.168.68.158 - RequestID: 7vh6s3sisxy +2025-06-18T14:54:13.281Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 134ms - Rows affected: 73 - RequestID: lppxqgubf4m +2025-06-18T14:54:13.381Z [DEBUG] payment-service - Database SELECT on products - Execution time: 9ms - Rows affected: 71 - RequestID: 73dsj0c2584 +2025-06-18T14:54:13.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.44.5 - RequestID: cxk6zo8ytrm +2025-06-18T14:54:13.581Z [TRACE] payment-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.44.5 - RequestID: d5orzif9ejq +2025-06-18T14:54:13.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 112ms - RequestID: taq2fzesa7h +2025-06-18T14:54:13.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 944ms - RequestID: t5z00qmo08q +2025-06-18T14:54:13.881Z [DEBUG] payment-service - Auth event: logout - User: user_1064 - IP: 192.168.30.79 - RequestID: gpcpi4shjjo +2025-06-18T14:54:13.981Z [INFO] inventory-service - POST /api/v1/inventory - Status: 404 - Response time: 1376ms - IP: 192.168.170.215 - User: user_1018 - RequestID: nwvomefka6r +2025-06-18T14:54:14.081Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 92ms - Rows affected: 8 - RequestID: cb749dxg2d +2025-06-18T14:54:14.181Z [INFO] auth-service - Database UPDATE on orders - Execution time: 37ms - Rows affected: 68 - RequestID: idacqvywwf +2025-06-18T14:54:14.281Z [INFO] order-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.242.165 - RequestID: 90yjb43c50u +2025-06-18T14:54:14.381Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 259ms - Rows affected: 23 - RequestID: vj0gqvvvdt +2025-06-18T14:54:14.481Z [INFO] order-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.133.7 - RequestID: nqofy6zc6hg +2025-06-18T14:54:14.581Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 43ms - Rows affected: 88 - RequestID: 2657fcs4b1ri +2025-06-18T14:54:14.681Z [INFO] order-service - Operation: email_sent - Processing time: 712ms - RequestID: swv1je6rsea +2025-06-18T14:54:14.781Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 134ms - Rows affected: 94 - RequestID: c7dvoa00ukl +2025-06-18T14:54:14.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1013 - IP: 192.168.158.144 - RequestID: wwtq9zchar +2025-06-18T14:54:14.981Z [DEBUG] order-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.141.100 - RequestID: 0ods8jb7vpq +2025-06-18T14:54:15.081Z [TRACE] auth-service - GET /api/v1/inventory - Status: 503 - Response time: 38ms - IP: 192.168.242.165 - User: user_1043 - RequestID: j7yoiz1br9h +2025-06-18T14:54:15.181Z [INFO] user-service - DELETE /api/v1/inventory - Status: 502 - Response time: 587ms - IP: 192.168.100.240 - User: user_1068 - RequestID: cfssfcina9g +2025-06-18T14:54:15.281Z [TRACE] auth-service - GET /api/v1/orders - Status: 404 - Response time: 300ms - IP: 192.168.167.32 - User: user_1054 - RequestID: jpa6134jv7d +2025-06-18T14:54:15.381Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 403 - Response time: 890ms - IP: 192.168.242.165 - User: user_1049 - RequestID: ijceh4isomo +2025-06-18T14:54:15.481Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 401 - Response time: 359ms - IP: 192.168.79.116 - User: user_1052 - RequestID: qy5gi56kqx +2025-06-18T14:54:15.581Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 667ms - RequestID: 4v58ernwb6p +2025-06-18T14:54:15.681Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1817ms - IP: 192.168.100.240 - User: user_1060 - RequestID: lcweyc0ssga +2025-06-18T14:54:15.781Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 475ms - Rows affected: 53 - RequestID: lf2onuh7a4 +2025-06-18T14:54:15.881Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 27ms - Rows affected: 38 - RequestID: p20p8en2qi +2025-06-18T14:54:15.981Z [DEBUG] order-service - Auth event: login_success - User: user_1095 - IP: 192.168.11.60 - RequestID: tczkerpl3kk +2025-06-18T14:54:16.081Z [INFO] user-service - PATCH /api/v1/inventory - Status: 403 - Response time: 711ms - IP: 192.168.158.144 - User: user_1008 - RequestID: 2ee8j98hu8i +2025-06-18T14:54:16.181Z [INFO] auth-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.235.117 - RequestID: jj8wjkdfl +2025-06-18T14:54:16.281Z [TRACE] auth-service - Database SELECT on products - Execution time: 160ms - Rows affected: 43 - RequestID: pcpoxtwuc7b +2025-06-18T14:54:16.381Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 200 - Response time: 569ms - IP: 192.168.167.32 - User: user_1050 - RequestID: rvlgtmahv2 +2025-06-18T14:54:16.481Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 31ms - Rows affected: 82 - RequestID: nafhvzcykkg +2025-06-18T14:54:16.581Z [TRACE] auth-service - Database DELETE on payments - Execution time: 185ms - Rows affected: 89 - RequestID: 3ewijw9mw7i +2025-06-18T14:54:16.681Z [INFO] order-service - Operation: email_sent - Processing time: 382ms - RequestID: tgr2e745p6 +2025-06-18T14:54:16.781Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 437ms - IP: 192.168.158.144 - User: user_1028 - RequestID: pyonnw5h18d +2025-06-18T14:54:16.881Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.97.87 - RequestID: fx75iaajf1r +2025-06-18T14:54:16.981Z [TRACE] inventory-service - Database INSERT on users - Execution time: 406ms - Rows affected: 55 - RequestID: 3fxccxwshab +2025-06-18T14:54:17.081Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 404 - Response time: 912ms - IP: 192.168.64.33 - User: user_1041 - RequestID: xstzpp6wqfk +2025-06-18T14:54:17.181Z [TRACE] user-service - Operation: webhook_sent - Processing time: 716ms - RequestID: bs2amu7v2e4 +2025-06-18T14:54:17.281Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 500 - Response time: 1527ms - IP: 192.168.68.128 - User: user_1071 - RequestID: kboojma7sm7 +2025-06-18T14:54:17.381Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1063ms - IP: 192.168.79.116 - User: user_1025 - RequestID: xxr3tw8457o +2025-06-18T14:54:17.481Z [TRACE] notification-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.211.72 - RequestID: xy8my8f1x +2025-06-18T14:54:17.581Z [DEBUG] order-service - Operation: email_sent - Processing time: 605ms - RequestID: ccykoh3y49c +2025-06-18T14:54:17.681Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 183ms - Rows affected: 62 - RequestID: i4izfj0hiu +2025-06-18T14:54:17.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1089 - IP: 192.168.32.38 - RequestID: jbrpyq1syjm +2025-06-18T14:54:17.881Z [INFO] inventory-service - Auth event: login_success - User: user_1011 - IP: 192.168.100.240 - RequestID: veggb5p57b +2025-06-18T14:54:17.981Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 403 - Response time: 1335ms - IP: 192.168.227.77 - User: user_1008 - RequestID: d88yhgl3roh +2025-06-18T14:54:18.081Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 254ms - Rows affected: 88 - RequestID: c2owbq34os +2025-06-18T14:54:18.181Z [INFO] auth-service - Operation: inventory_updated - Processing time: 929ms - RequestID: 33a6otnks +2025-06-18T14:54:18.281Z [INFO] order-service - Database SELECT on payments - Execution time: 419ms - Rows affected: 34 - RequestID: qtc55ekig4 +2025-06-18T14:54:18.381Z [TRACE] notification-service - Operation: notification_queued - Processing time: 1020ms - RequestID: 56xw9ef9qmq +2025-06-18T14:54:18.481Z [DEBUG] payment-service - Auth event: login_failed - User: user_1059 - IP: 192.168.53.133 - RequestID: q9cmpszv5s +2025-06-18T14:54:18.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.133.7 - RequestID: tx4kn348rv +2025-06-18T14:54:18.681Z [TRACE] order-service - Auth event: login_success - User: user_1091 - IP: 192.168.189.103 - RequestID: 6cjmq85f2os +2025-06-18T14:54:18.781Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 216ms - Rows affected: 54 - RequestID: yrp2ct15ky +2025-06-18T14:54:18.881Z [TRACE] notification-service - Database UPDATE on products - Execution time: 300ms - Rows affected: 48 - RequestID: unvwau2l6y +2025-06-18T14:54:18.981Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 201 - Response time: 1988ms - IP: 192.168.53.133 - User: user_1056 - RequestID: dd6qzmqqno +2025-06-18T14:54:19.081Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 1011ms - IP: 192.168.181.225 - User: user_1025 - RequestID: l075sv2wvss +2025-06-18T14:54:19.181Z [TRACE] payment-service - Operation: order_created - Processing time: 946ms - RequestID: nl72c9iiq5c +2025-06-18T14:54:19.281Z [DEBUG] order-service - Database DELETE on payments - Execution time: 359ms - Rows affected: 21 - RequestID: 0yns2vyqc7te +2025-06-18T14:54:19.381Z [DEBUG] auth-service - Database DELETE on products - Execution time: 174ms - Rows affected: 49 - RequestID: 7e5tq0h57xm +2025-06-18T14:54:19.481Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 419ms - Rows affected: 32 - RequestID: os3ea5rghi +2025-06-18T14:54:19.581Z [TRACE] user-service - Auth event: login_success - User: user_1064 - IP: 192.168.189.103 - RequestID: ubbs9p239bd +2025-06-18T14:54:19.681Z [DEBUG] order-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.133.7 - RequestID: b2d112s6atg +2025-06-18T14:54:19.781Z [TRACE] notification-service - Auth event: logout - User: user_1041 - IP: 192.168.158.144 - RequestID: r4pggi5hlo +2025-06-18T14:54:19.881Z [TRACE] order-service - Auth event: login_success - User: user_1039 - IP: 192.168.113.218 - RequestID: 17tawl827gf +2025-06-18T14:54:19.981Z [DEBUG] order-service - POST /api/v1/inventory - Status: 404 - Response time: 1900ms - IP: 192.168.144.38 - User: user_1079 - RequestID: hkscw5tj4ci +2025-06-18T14:54:20.081Z [TRACE] order-service - Database INSERT on orders - Execution time: 297ms - Rows affected: 3 - RequestID: 4tigx5xonjf +2025-06-18T14:54:20.181Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 254ms - Rows affected: 87 - RequestID: 76fsg9lvrui +2025-06-18T14:54:20.281Z [TRACE] user-service - Operation: payment_processed - Processing time: 537ms - RequestID: 9j6r8p27la +2025-06-18T14:54:20.381Z [INFO] inventory-service - Database SELECT on products - Execution time: 104ms - Rows affected: 84 - RequestID: xk7zpynti39 +2025-06-18T14:54:20.481Z [TRACE] notification-service - Auth event: password_change - User: user_1050 - IP: 192.168.227.233 - RequestID: zvy61fjqcy +2025-06-18T14:54:20.581Z [TRACE] user-service - Database INSERT on products - Execution time: 8ms - Rows affected: 17 - RequestID: ic3ycyfnvie +2025-06-18T14:54:20.681Z [TRACE] notification-service - POST /api/v1/orders - Status: 404 - Response time: 503ms - IP: 192.168.227.233 - User: user_1003 - RequestID: uusx3b47h4i +2025-06-18T14:54:20.781Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 58ms - Rows affected: 88 - RequestID: v7oge8vu1d +2025-06-18T14:54:20.881Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 79ms - Rows affected: 46 - RequestID: btuftrf5t2u +2025-06-18T14:54:20.981Z [INFO] order-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.64.33 - RequestID: j34ntsqbt7o +2025-06-18T14:54:21.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.194.41 - RequestID: 0t5eu8qqsbh +2025-06-18T14:54:21.181Z [TRACE] user-service - Auth event: login_success - User: user_1055 - IP: 192.168.11.60 - RequestID: u4o3x1njd8c +2025-06-18T14:54:21.281Z [DEBUG] notification-service - GET /api/v1/payments - Status: 400 - Response time: 1697ms - IP: 192.168.32.38 - User: user_1002 - RequestID: o95yp9lbnv +2025-06-18T14:54:21.381Z [TRACE] order-service - Auth event: login_success - User: user_1087 - IP: 192.168.189.103 - RequestID: eaf5s1w0b2g +2025-06-18T14:54:21.481Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 850ms - RequestID: khhnb28rr8h +2025-06-18T14:54:21.581Z [TRACE] inventory-service - Operation: order_created - Processing time: 911ms - RequestID: yaa45g1x8v +2025-06-18T14:54:21.681Z [TRACE] auth-service - Auth event: password_change - User: user_1088 - IP: 192.168.133.7 - RequestID: ztst68iihf9 +2025-06-18T14:54:21.781Z [INFO] notification-service - DELETE /api/v1/users - Status: 401 - Response time: 887ms - IP: 192.168.10.184 - User: user_1096 - RequestID: yqejd6ihpf +2025-06-18T14:54:21.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1062 - IP: 192.168.159.94 - RequestID: 8i9nhze74z9 +2025-06-18T14:54:21.981Z [TRACE] auth-service - Auth event: password_change - User: user_1021 - IP: 192.168.227.233 - RequestID: 2nqnbssw8n4 +2025-06-18T14:54:22.081Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1715ms - IP: 192.168.113.218 - User: user_1009 - RequestID: 1pzpg7tlqb8 +2025-06-18T14:54:22.181Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 238ms - Rows affected: 47 - RequestID: rbut7sqojd +2025-06-18T14:54:22.281Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 248ms - Rows affected: 61 - RequestID: xh1l9a54q3 +2025-06-18T14:54:22.381Z [DEBUG] payment-service - Database DELETE on products - Execution time: 154ms - Rows affected: 14 - RequestID: on2brvs1p6 +2025-06-18T14:54:22.481Z [TRACE] user-service - PATCH /api/v1/orders - Status: 403 - Response time: 914ms - IP: 192.168.11.60 - User: user_1052 - RequestID: z2ldn0wg07a +2025-06-18T14:54:22.581Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 279ms - Rows affected: 8 - RequestID: 9a6zb0nu7zh +2025-06-18T14:54:22.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.85.229 - RequestID: ab6yztipxcv +2025-06-18T14:54:22.781Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 200 - Response time: 993ms - IP: 192.168.232.72 - User: user_1058 - RequestID: g1ykkz4fqgo +2025-06-18T14:54:22.881Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1670ms - IP: 192.168.133.7 - User: user_1066 - RequestID: mi13bu4p05 +2025-06-18T14:54:22.981Z [TRACE] auth-service - Database INSERT on products - Execution time: 270ms - Rows affected: 45 - RequestID: ru3dtacd96b +2025-06-18T14:54:23.081Z [TRACE] order-service - DELETE /api/v1/orders - Status: 400 - Response time: 731ms - IP: 192.168.104.37 - User: user_1009 - RequestID: 6p4ybwpuk4j +2025-06-18T14:54:23.181Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1109ms - IP: 192.168.30.79 - User: user_1067 - RequestID: 1mmu6l69sot +2025-06-18T14:54:23.281Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 127ms - Rows affected: 73 - RequestID: tiz6wr6p36c +2025-06-18T14:54:23.381Z [TRACE] auth-service - Auth event: login_success - User: user_1002 - IP: 192.168.81.206 - RequestID: rlj23cx63xe +2025-06-18T14:54:23.481Z [TRACE] payment-service - Database UPDATE on products - Execution time: 460ms - Rows affected: 37 - RequestID: xsljqon60sf +2025-06-18T14:54:23.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.227.77 - RequestID: nz6x1iexjdc +2025-06-18T14:54:23.681Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 742ms - RequestID: 7i3isuzug3v +2025-06-18T14:54:23.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.242.165 - RequestID: k755ikp6j2c +2025-06-18T14:54:23.881Z [TRACE] notification-service - Database DELETE on users - Execution time: 56ms - Rows affected: 92 - RequestID: mxl9qhfbly +2025-06-18T14:54:23.981Z [TRACE] notification-service - Operation: email_sent - Processing time: 863ms - RequestID: dwx5w1rirwt +2025-06-18T14:54:24.081Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 401 - Response time: 791ms - IP: 192.168.189.103 - User: user_1042 - RequestID: uoig0d5vd19 +2025-06-18T14:54:24.181Z [INFO] user-service - Database DELETE on users - Execution time: 414ms - Rows affected: 59 - RequestID: 4a58j9badh +2025-06-18T14:54:24.281Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 166ms - Rows affected: 3 - RequestID: 4c897bbd1cd +2025-06-18T14:54:24.381Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 50ms - IP: 192.168.68.128 - User: user_1044 - RequestID: n459xo4631c +2025-06-18T14:54:24.481Z [INFO] order-service - Database DELETE on payments - Execution time: 449ms - Rows affected: 91 - RequestID: 5p7c3qylijt +2025-06-18T14:54:24.581Z [TRACE] order-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.229.123 - RequestID: 11fy6xijc95a +2025-06-18T14:54:24.681Z [INFO] inventory-service - Auth event: logout - User: user_1009 - IP: 192.168.167.32 - RequestID: u9gbrwz6h6 +2025-06-18T14:54:24.781Z [INFO] auth-service - DELETE /api/v1/orders - Status: 500 - Response time: 572ms - IP: 192.168.44.5 - User: user_1058 - RequestID: 8yxh93ptxig +2025-06-18T14:54:24.881Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 10ms - Rows affected: 17 - RequestID: hp4i73jvuwu +2025-06-18T14:54:24.981Z [INFO] user-service - Operation: webhook_sent - Processing time: 538ms - RequestID: 0m743lsscis8 +2025-06-18T14:54:25.081Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 129ms - RequestID: t7c05kqp02 +2025-06-18T14:54:25.181Z [INFO] user-service - Operation: cache_miss - Processing time: 806ms - RequestID: mrsih2ubjbs +2025-06-18T14:54:25.281Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 502 - Response time: 621ms - IP: 192.168.235.117 - User: user_1098 - RequestID: 7maqx0lgaos +2025-06-18T14:54:25.381Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 201 - Response time: 81ms - IP: 192.168.227.77 - User: user_1079 - RequestID: zy3vcim34t +2025-06-18T14:54:25.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 575ms - RequestID: f0cfz390166 +2025-06-18T14:54:25.581Z [INFO] order-service - PATCH /api/v1/inventory - Status: 401 - Response time: 223ms - IP: 192.168.189.103 - User: user_1034 - RequestID: 03kk4j6wq6wk +2025-06-18T14:54:25.681Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 200 - Response time: 1908ms - IP: 192.168.247.134 - User: user_1042 - RequestID: t3u6l2smxkp +2025-06-18T14:54:25.781Z [DEBUG] order-service - Auth event: login_failed - User: user_1036 - IP: 192.168.64.33 - RequestID: oj4lssd7mh +2025-06-18T14:54:25.881Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.170.215 - RequestID: di79qnshdvg +2025-06-18T14:54:25.981Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 373ms - Rows affected: 9 - RequestID: j0c36noskp +2025-06-18T14:54:26.081Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 400 - Response time: 249ms - IP: 192.168.28.146 - User: user_1011 - RequestID: q39pui342mj +2025-06-18T14:54:26.181Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 200 - Response time: 1474ms - IP: 192.168.196.226 - User: user_1091 - RequestID: 9bg9s3jb8cp +2025-06-18T14:54:26.281Z [DEBUG] user-service - Auth event: logout - User: user_1050 - IP: 192.168.174.114 - RequestID: h4ra4b69dw6 +2025-06-18T14:54:26.381Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 805ms - IP: 192.168.79.143 - User: user_1015 - RequestID: kvup22jf8qf +2025-06-18T14:54:26.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1029 - IP: 192.168.14.77 - RequestID: q8iodyfdx7 +2025-06-18T14:54:26.581Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 646ms - RequestID: f9rqs1f3rcd +2025-06-18T14:54:26.681Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 200 - Response time: 562ms - IP: 192.168.187.199 - User: user_1086 - RequestID: 98c0v6lq4v +2025-06-18T14:54:26.781Z [TRACE] order-service - Auth event: password_change - User: user_1009 - IP: 192.168.79.141 - RequestID: g0xyzqaoki +2025-06-18T14:54:26.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1086 - IP: 192.168.85.229 - RequestID: 5avvbhckk4t +2025-06-18T14:54:26.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 1019ms - RequestID: 2jr6pyvihpa +2025-06-18T14:54:27.081Z [TRACE] inventory-service - Operation: order_created - Processing time: 456ms - RequestID: f0z6z4abmnd +2025-06-18T14:54:27.181Z [INFO] order-service - Operation: inventory_updated - Processing time: 484ms - RequestID: p4vb47by15 +2025-06-18T14:54:27.281Z [INFO] notification-service - Auth event: login_failed - User: user_1039 - IP: 192.168.79.143 - RequestID: amqozppnbkk +2025-06-18T14:54:27.381Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 401 - Response time: 1186ms - IP: 192.168.53.133 - User: user_1093 - RequestID: 1nfhzft5cul +2025-06-18T14:54:27.481Z [INFO] user-service - Database DELETE on orders - Execution time: 184ms - Rows affected: 29 - RequestID: hoh0eeih16p +2025-06-18T14:54:27.581Z [DEBUG] payment-service - Auth event: login_success - User: user_1054 - IP: 192.168.100.240 - RequestID: 88rczd2wut +2025-06-18T14:54:27.681Z [TRACE] order-service - Operation: email_sent - Processing time: 83ms - RequestID: 436w1olshfx +2025-06-18T14:54:27.781Z [TRACE] payment-service - Auth event: login_success - User: user_1044 - IP: 192.168.31.117 - RequestID: 8ax9pwe304 +2025-06-18T14:54:27.881Z [TRACE] order-service - Database DELETE on sessions - Execution time: 208ms - Rows affected: 57 - RequestID: 9a5w9a2o2ma +2025-06-18T14:54:27.981Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1778ms - IP: 192.168.10.184 - User: user_1027 - RequestID: 28g8yoct017 +2025-06-18T14:54:28.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.227.233 - RequestID: l6orxf8rvc +2025-06-18T14:54:28.181Z [DEBUG] notification-service - Database DELETE on products - Execution time: 285ms - Rows affected: 77 - RequestID: mc07mdqyqu +2025-06-18T14:54:28.281Z [INFO] inventory-service - Operation: cache_miss - Processing time: 387ms - RequestID: r18rhsjaz1c +2025-06-18T14:54:28.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.189.103 - RequestID: v2mpu0k61m +2025-06-18T14:54:28.481Z [INFO] payment-service - Database INSERT on orders - Execution time: 460ms - Rows affected: 39 - RequestID: m0bsjforau +2025-06-18T14:54:28.581Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1716ms - IP: 192.168.104.37 - User: user_1070 - RequestID: kkpnc7h08bf +2025-06-18T14:54:28.681Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 276ms - RequestID: a3rtckt7zbt +2025-06-18T14:54:28.781Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 446ms - Rows affected: 86 - RequestID: q1vtrlrpk8g +2025-06-18T14:54:28.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1092 - IP: 192.168.158.144 - RequestID: r6eir3cl5aj +2025-06-18T14:54:28.981Z [INFO] order-service - Database SELECT on products - Execution time: 489ms - Rows affected: 42 - RequestID: clhyu9k5ore +2025-06-18T14:54:29.081Z [INFO] notification-service - Operation: inventory_updated - Processing time: 295ms - RequestID: m0a4d3z4rib +2025-06-18T14:54:29.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1086 - IP: 192.168.167.32 - RequestID: j5r3v91i3f +2025-06-18T14:54:29.281Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 418ms - Rows affected: 50 - RequestID: u8hs65uxk9a +2025-06-18T14:54:29.381Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1531ms - IP: 192.168.10.184 - User: user_1062 - RequestID: ns9t3jvqqq8 +2025-06-18T14:54:29.481Z [INFO] payment-service - Auth event: logout - User: user_1070 - IP: 192.168.28.146 - RequestID: d658onk51hg +2025-06-18T14:54:29.581Z [DEBUG] user-service - Operation: payment_processed - Processing time: 467ms - RequestID: 82lkoek2usw +2025-06-18T14:54:29.681Z [TRACE] auth-service - Operation: email_sent - Processing time: 543ms - RequestID: 6fgow1zis0d +2025-06-18T14:54:29.781Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 257ms - Rows affected: 18 - RequestID: 5psefehpp36 +2025-06-18T14:54:29.881Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.181.225 - RequestID: 02s2sic8cf2e +2025-06-18T14:54:29.981Z [INFO] order-service - Operation: payment_processed - Processing time: 1035ms - RequestID: ex2qegsntl9 +2025-06-18T14:54:30.081Z [TRACE] order-service - Auth event: logout - User: user_1035 - IP: 192.168.187.199 - RequestID: ca6rkga8c6e +2025-06-18T14:54:30.181Z [INFO] auth-service - Auth event: login_failed - User: user_1060 - IP: 192.168.227.77 - RequestID: jr0h0e4e8i +2025-06-18T14:54:30.281Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.159.94 - RequestID: ce3h0n0rvf5 +2025-06-18T14:54:30.381Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 15ms - Rows affected: 96 - RequestID: 9xoxunixach +2025-06-18T14:54:30.481Z [INFO] notification-service - Operation: email_sent - Processing time: 141ms - RequestID: myg9izucr4 +2025-06-18T14:54:30.581Z [TRACE] notification-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.36.218 - RequestID: 037ndplfphjz +2025-06-18T14:54:30.681Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 255ms - Rows affected: 54 - RequestID: nnscb913rqj +2025-06-18T14:54:30.781Z [INFO] user-service - Database UPDATE on sessions - Execution time: 409ms - Rows affected: 3 - RequestID: u55pjpnxokk +2025-06-18T14:54:30.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.32.38 - RequestID: xqigkxbhez +2025-06-18T14:54:30.981Z [INFO] notification-service - POST /api/v1/users - Status: 403 - Response time: 295ms - IP: 192.168.14.77 - User: user_1080 - RequestID: cjjefzjgh3 +2025-06-18T14:54:31.081Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 404 - Response time: 1545ms - IP: 192.168.104.37 - User: user_1010 - RequestID: sfr3uqrby4 +2025-06-18T14:54:31.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1049 - IP: 192.168.141.100 - RequestID: vv50e1bnon +2025-06-18T14:54:31.281Z [TRACE] auth-service - Database UPDATE on users - Execution time: 318ms - Rows affected: 81 - RequestID: asjqhuqzra +2025-06-18T14:54:31.381Z [TRACE] inventory-service - Database DELETE on products - Execution time: 177ms - Rows affected: 0 - RequestID: rv30ku941rb +2025-06-18T14:54:31.481Z [INFO] payment-service - Operation: email_sent - Processing time: 259ms - RequestID: vjuhex44ogs +2025-06-18T14:54:31.581Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 200 - Response time: 776ms - IP: 192.168.64.33 - User: user_1040 - RequestID: cm9iqdp71mc +2025-06-18T14:54:31.681Z [TRACE] inventory-service - Database SELECT on users - Execution time: 226ms - Rows affected: 62 - RequestID: tp055c0yros +2025-06-18T14:54:31.781Z [INFO] notification-service - Database INSERT on products - Execution time: 494ms - Rows affected: 85 - RequestID: zug5daiprz +2025-06-18T14:54:31.881Z [TRACE] payment-service - Operation: email_sent - Processing time: 793ms - RequestID: qf0it2txfe +2025-06-18T14:54:31.981Z [TRACE] auth-service - Operation: notification_queued - Processing time: 740ms - RequestID: 4tejujthfpe +2025-06-18T14:54:32.081Z [TRACE] payment-service - Operation: cache_miss - Processing time: 193ms - RequestID: rtt4srzjfss +2025-06-18T14:54:32.181Z [TRACE] auth-service - Database INSERT on products - Execution time: 233ms - Rows affected: 79 - RequestID: m6ih304v0qa +2025-06-18T14:54:32.281Z [INFO] auth-service - Operation: notification_queued - Processing time: 528ms - RequestID: zl0ja60920m +2025-06-18T14:54:32.381Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 215ms - Rows affected: 82 - RequestID: 08y2uzgqsefl +2025-06-18T14:54:32.481Z [DEBUG] order-service - Auth event: logout - User: user_1003 - IP: 192.168.141.100 - RequestID: ner372yomih +2025-06-18T14:54:32.581Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 209ms - RequestID: qsrpyvt0g9j +2025-06-18T14:54:32.681Z [INFO] auth-service - Database UPDATE on payments - Execution time: 309ms - Rows affected: 31 - RequestID: e03svygz1eu +2025-06-18T14:54:32.781Z [TRACE] order-service - Operation: notification_queued - Processing time: 739ms - RequestID: wcpnt0zsbei +2025-06-18T14:54:32.881Z [TRACE] payment-service - Operation: payment_processed - Processing time: 1025ms - RequestID: o68tb58bzp +2025-06-18T14:54:32.981Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 401 - Response time: 1279ms - IP: 192.168.28.146 - User: user_1021 - RequestID: mdrlbvmtvfr +2025-06-18T14:54:33.081Z [TRACE] user-service - Operation: webhook_sent - Processing time: 744ms - RequestID: 7h0jrz2p06w +2025-06-18T14:54:33.181Z [TRACE] order-service - PUT /api/v1/payments - Status: 404 - Response time: 650ms - IP: 192.168.133.7 - User: user_1003 - RequestID: 8ukwkgwdn1l +2025-06-18T14:54:33.281Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 13ms - Rows affected: 32 - RequestID: wioshsph5nm +2025-06-18T14:54:33.381Z [INFO] user-service - Auth event: logout - User: user_1010 - IP: 192.168.232.72 - RequestID: r2970eeus +2025-06-18T14:54:33.481Z [DEBUG] auth-service - GET /api/v1/users - Status: 401 - Response time: 555ms - IP: 192.168.100.240 - User: user_1099 - RequestID: xei38threpp +2025-06-18T14:54:33.581Z [TRACE] auth-service - Auth event: logout - User: user_1048 - IP: 192.168.159.94 - RequestID: kul7n0dv43c +2025-06-18T14:54:33.681Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 200 - Response time: 547ms - IP: 192.168.141.100 - User: user_1044 - RequestID: xelyiglnvo +2025-06-18T14:54:33.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 355ms - RequestID: 0fbk40t5jii +2025-06-18T14:54:33.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 870ms - RequestID: 8zvyfie7g17 +2025-06-18T14:54:33.981Z [DEBUG] order-service - Operation: notification_queued - Processing time: 295ms - RequestID: n70ltfwx9rq +2025-06-18T14:54:34.081Z [DEBUG] order-service - Database INSERT on orders - Execution time: 164ms - Rows affected: 26 - RequestID: 0qh53xvpi2j +2025-06-18T14:54:34.181Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 862ms - RequestID: ua5fkltjjx +2025-06-18T14:54:34.281Z [TRACE] order-service - Auth event: login_failed - User: user_1094 - IP: 192.168.79.141 - RequestID: 0gt5zfwb76t7 +2025-06-18T14:54:34.381Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 348ms - Rows affected: 35 - RequestID: uy4szbqaj6n +2025-06-18T14:54:34.481Z [TRACE] user-service - Auth event: logout - User: user_1037 - IP: 192.168.167.32 - RequestID: 14ls2awjp6z +2025-06-18T14:54:34.581Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 222ms - Rows affected: 64 - RequestID: syymh7rqr +2025-06-18T14:54:34.681Z [INFO] notification-service - Database UPDATE on orders - Execution time: 66ms - Rows affected: 37 - RequestID: xuno7e70gcf +2025-06-18T14:54:34.781Z [INFO] inventory-service - Operation: notification_queued - Processing time: 615ms - RequestID: ixeyg8u12i +2025-06-18T14:54:34.881Z [TRACE] order-service - Operation: notification_queued - Processing time: 365ms - RequestID: mu06c8r9zqo +2025-06-18T14:54:34.981Z [TRACE] inventory-service - Auth event: logout - User: user_1031 - IP: 192.168.159.94 - RequestID: d11uochf7lr +2025-06-18T14:54:35.081Z [INFO] auth-service - GET /api/v1/users - Status: 200 - Response time: 149ms - IP: 192.168.247.134 - User: user_1044 - RequestID: ku5lu0v786 +2025-06-18T14:54:35.181Z [INFO] payment-service - Auth event: login_success - User: user_1046 - IP: 192.168.196.226 - RequestID: lbxfhcrk7ro +2025-06-18T14:54:35.281Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 297ms - RequestID: 1ryhxknqsvy +2025-06-18T14:54:35.381Z [INFO] inventory-service - Database SELECT on payments - Execution time: 260ms - Rows affected: 58 - RequestID: dsorm2t0m1o +2025-06-18T14:54:35.481Z [INFO] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 674ms - IP: 192.168.189.103 - User: user_1044 - RequestID: z8vg4v37elk +2025-06-18T14:54:35.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.13.72 - RequestID: t2y9b1x9ka +2025-06-18T14:54:35.681Z [TRACE] auth-service - Operation: payment_processed - Processing time: 241ms - RequestID: 0mrq23qcyfy +2025-06-18T14:54:35.781Z [INFO] user-service - Auth event: login_failed - User: user_1077 - IP: 192.168.32.38 - RequestID: 95xs31aa42 +2025-06-18T14:54:35.881Z [TRACE] auth-service - Operation: cache_hit - Processing time: 152ms - RequestID: tqi2sis5lnf +2025-06-18T14:54:35.981Z [TRACE] user-service - Auth event: password_change - User: user_1047 - IP: 192.168.13.72 - RequestID: 7itc7cn2nv5 +2025-06-18T14:54:36.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 876ms - RequestID: xoajbdav5kl +2025-06-18T14:54:36.181Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 706ms - RequestID: n37jpbdejcq +2025-06-18T14:54:36.281Z [TRACE] payment-service - Auth event: password_change - User: user_1002 - IP: 192.168.79.141 - RequestID: 1pzzk5vkyeo +2025-06-18T14:54:36.381Z [TRACE] notification-service - Database SELECT on products - Execution time: 364ms - Rows affected: 13 - RequestID: j8k1afz01jf +2025-06-18T14:54:36.481Z [INFO] order-service - Auth event: login_failed - User: user_1025 - IP: 192.168.85.229 - RequestID: 3piui0xvlwy +2025-06-18T14:54:36.581Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1689ms - IP: 192.168.144.38 - User: user_1077 - RequestID: e200fng1lun +2025-06-18T14:54:36.681Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 515ms - RequestID: 7ijk5jcqdfi +2025-06-18T14:54:36.781Z [INFO] order-service - Operation: cache_miss - Processing time: 70ms - RequestID: gn640grmb0j +2025-06-18T14:54:36.881Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.79.116 - RequestID: vpirj9a6tj +2025-06-18T14:54:36.981Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 691ms - RequestID: 2q9umh0fdu4 +2025-06-18T14:54:37.081Z [INFO] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 1652ms - IP: 192.168.11.60 - User: user_1032 - RequestID: pe77r3zd6c +2025-06-18T14:54:37.181Z [TRACE] user-service - Database INSERT on users - Execution time: 224ms - Rows affected: 36 - RequestID: ikxvwo9aduk +2025-06-18T14:54:37.281Z [INFO] order-service - Database INSERT on payments - Execution time: 402ms - Rows affected: 39 - RequestID: wcoa2tzr2q9 +2025-06-18T14:54:37.381Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 502ms - RequestID: 2sr1pgkncqs +2025-06-18T14:54:37.481Z [DEBUG] order-service - Auth event: logout - User: user_1066 - IP: 192.168.81.206 - RequestID: cby7lmovsmt +2025-06-18T14:54:37.581Z [TRACE] notification-service - Operation: notification_queued - Processing time: 386ms - RequestID: txvr5davf7 +2025-06-18T14:54:37.681Z [INFO] order-service - PATCH /api/v1/orders - Status: 401 - Response time: 1420ms - IP: 192.168.53.133 - User: user_1012 - RequestID: 336xfpux6lg +2025-06-18T14:54:37.781Z [INFO] auth-service - GET /api/v1/inventory - Status: 401 - Response time: 1037ms - IP: 192.168.14.77 - User: user_1070 - RequestID: 5r6knjddapj +2025-06-18T14:54:37.881Z [TRACE] user-service - Auth event: login_success - User: user_1075 - IP: 192.168.13.72 - RequestID: nbdxnedu7t +2025-06-18T14:54:37.981Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 502 - Response time: 872ms - IP: 192.168.46.63 - User: user_1006 - RequestID: cxsygx5mwyo +2025-06-18T14:54:38.081Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1726ms - IP: 192.168.196.226 - User: user_1009 - RequestID: hmklbefxylw +2025-06-18T14:54:38.181Z [INFO] order-service - Database INSERT on sessions - Execution time: 461ms - Rows affected: 38 - RequestID: 2m07cq2cubw +2025-06-18T14:54:38.281Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 369ms - Rows affected: 47 - RequestID: 2l6b7a1spv +2025-06-18T14:54:38.381Z [TRACE] payment-service - Operation: payment_processed - Processing time: 101ms - RequestID: 71fkypnc6et +2025-06-18T14:54:38.481Z [INFO] inventory-service - Database UPDATE on users - Execution time: 237ms - Rows affected: 8 - RequestID: mu9icyhdug8 +2025-06-18T14:54:38.581Z [INFO] payment-service - Operation: cache_miss - Processing time: 929ms - RequestID: s5dmth8giuh +2025-06-18T14:54:38.681Z [INFO] order-service - Database SELECT on orders - Execution time: 279ms - Rows affected: 61 - RequestID: iqteftjbpi +2025-06-18T14:54:38.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.68.158 - RequestID: 9vmvj6zpp +2025-06-18T14:54:38.881Z [INFO] order-service - Auth event: password_change - User: user_1001 - IP: 192.168.81.206 - RequestID: ohp4p5a2rl +2025-06-18T14:54:38.981Z [INFO] payment-service - Auth event: logout - User: user_1075 - IP: 192.168.32.38 - RequestID: itbwfhne5v +2025-06-18T14:54:39.081Z [TRACE] user-service - Operation: order_created - Processing time: 901ms - RequestID: 7nteitjj7g8 +2025-06-18T14:54:39.181Z [INFO] user-service - Database SELECT on payments - Execution time: 1ms - Rows affected: 94 - RequestID: jt1hz6urqr +2025-06-18T14:54:39.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.11.60 - RequestID: aeew7b1zesg +2025-06-18T14:54:39.381Z [INFO] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1756ms - IP: 192.168.167.32 - User: user_1014 - RequestID: kfycy5370w +2025-06-18T14:54:39.481Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 633ms - IP: 192.168.144.38 - User: user_1042 - RequestID: l6t5x2nq9a +2025-06-18T14:54:39.581Z [TRACE] auth-service - Auth event: login_success - User: user_1088 - IP: 192.168.227.77 - RequestID: he1snreh2u +2025-06-18T14:54:39.681Z [TRACE] order-service - Operation: order_created - Processing time: 660ms - RequestID: nto01n3a9zi +2025-06-18T14:54:39.781Z [INFO] user-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.232.72 - RequestID: qu8johnc65c +2025-06-18T14:54:39.881Z [INFO] order-service - Operation: payment_processed - Processing time: 858ms - RequestID: i9o4kuya4kf +2025-06-18T14:54:39.981Z [DEBUG] notification-service - Operation: order_created - Processing time: 1014ms - RequestID: 2dxka9hvww4 +2025-06-18T14:54:40.081Z [INFO] notification-service - Database SELECT on products - Execution time: 378ms - Rows affected: 46 - RequestID: sa7cr064raf +2025-06-18T14:54:40.181Z [TRACE] notification-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.247.134 - RequestID: p3nl16ko8x +2025-06-18T14:54:40.281Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 897ms - RequestID: g9cuey69a8r +2025-06-18T14:54:40.381Z [INFO] auth-service - Operation: email_sent - Processing time: 115ms - RequestID: y436wqhevlg +2025-06-18T14:54:40.481Z [DEBUG] inventory-service - Auth event: login_success - User: user_1057 - IP: 192.168.189.103 - RequestID: a0nm0n6s0vj +2025-06-18T14:54:40.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.79.143 - RequestID: xy07g9ufy9o +2025-06-18T14:54:40.681Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1288ms - IP: 192.168.79.141 - User: user_1036 - RequestID: clj5u3dlbi +2025-06-18T14:54:40.781Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1913ms - IP: 192.168.53.133 - User: user_1086 - RequestID: xx4g5vg030q +2025-06-18T14:54:40.881Z [DEBUG] order-service - Operation: cache_hit - Processing time: 418ms - RequestID: 64a1skbrs7h +2025-06-18T14:54:40.981Z [INFO] user-service - Auth event: login_failed - User: user_1040 - IP: 192.168.242.165 - RequestID: l7n6y3zp4j +2025-06-18T14:54:41.081Z [INFO] payment-service - Operation: payment_processed - Processing time: 190ms - RequestID: sfkvxu7eys +2025-06-18T14:54:41.181Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 500 - Response time: 1128ms - IP: 192.168.174.114 - User: user_1033 - RequestID: foft2ceayhg +2025-06-18T14:54:41.281Z [INFO] user-service - PUT /api/v1/orders - Status: 500 - Response time: 133ms - IP: 192.168.32.38 - User: user_1063 - RequestID: 5rcm6ccysa3 +2025-06-18T14:54:41.381Z [INFO] user-service - Database INSERT on payments - Execution time: 137ms - Rows affected: 84 - RequestID: f3354oiiggs +2025-06-18T14:54:41.481Z [INFO] order-service - PATCH /api/v1/payments - Status: 503 - Response time: 1832ms - IP: 192.168.147.171 - User: user_1049 - RequestID: nvhgqilhqe +2025-06-18T14:54:41.581Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 521ms - RequestID: jr74kr9wtg +2025-06-18T14:54:41.681Z [INFO] inventory-service - Database INSERT on payments - Execution time: 122ms - Rows affected: 7 - RequestID: 6cxvkf69e2o +2025-06-18T14:54:41.781Z [TRACE] order-service - Operation: webhook_sent - Processing time: 634ms - RequestID: eiin8ipieqr +2025-06-18T14:54:41.881Z [TRACE] auth-service - Database INSERT on orders - Execution time: 352ms - Rows affected: 10 - RequestID: 6w6lka1myic +2025-06-18T14:54:41.981Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 168ms - Rows affected: 90 - RequestID: 0sv1som4hsng +2025-06-18T14:54:42.081Z [INFO] inventory-service - Operation: cache_hit - Processing time: 500ms - RequestID: 871siekc4cn +2025-06-18T14:54:42.181Z [INFO] order-service - Operation: email_sent - Processing time: 753ms - RequestID: c3ks3e34i2w +2025-06-18T14:54:42.281Z [TRACE] payment-service - Auth event: password_change - User: user_1069 - IP: 192.168.159.94 - RequestID: 09yw57ez22af +2025-06-18T14:54:42.381Z [INFO] user-service - Database INSERT on sessions - Execution time: 433ms - Rows affected: 25 - RequestID: gv0si5k3aj9 +2025-06-18T14:54:42.481Z [INFO] user-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.158.144 - RequestID: obizqi9rdm +2025-06-18T14:54:42.581Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 340ms - RequestID: ap8dx2ay57 +2025-06-18T14:54:42.681Z [INFO] inventory-service - Database INSERT on users - Execution time: 114ms - Rows affected: 61 - RequestID: l2v6cku7z3s +2025-06-18T14:54:42.781Z [INFO] notification-service - PUT /api/v1/users - Status: 401 - Response time: 343ms - IP: 192.168.1.152 - User: user_1008 - RequestID: 4h00w5vxke +2025-06-18T14:54:42.881Z [INFO] order-service - Database DELETE on products - Execution time: 388ms - Rows affected: 50 - RequestID: bfjzk0cecvq +2025-06-18T14:54:42.981Z [TRACE] user-service - Operation: email_sent - Processing time: 238ms - RequestID: fabvd4t3myt +2025-06-18T14:54:43.081Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 201 - Response time: 1762ms - IP: 192.168.46.63 - User: user_1072 - RequestID: 52qek1i4yhg +2025-06-18T14:54:43.181Z [DEBUG] inventory-service - Auth event: password_change - User: user_1001 - IP: 192.168.247.134 - RequestID: krlia2qxw5d +2025-06-18T14:54:43.281Z [INFO] notification-service - Database INSERT on sessions - Execution time: 393ms - Rows affected: 40 - RequestID: 8nbv2edl5zy +2025-06-18T14:54:43.381Z [INFO] auth-service - DELETE /api/v1/payments - Status: 503 - Response time: 1769ms - IP: 192.168.247.134 - User: user_1055 - RequestID: qwjzw27t1j +2025-06-18T14:54:43.481Z [TRACE] payment-service - Auth event: logout - User: user_1034 - IP: 192.168.104.37 - RequestID: 7d75czan1c9 +2025-06-18T14:54:43.581Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 439ms - RequestID: 8nlre78h2n3 +2025-06-18T14:54:43.681Z [DEBUG] notification-service - GET /api/v1/payments - Status: 404 - Response time: 736ms - IP: 192.168.31.117 - User: user_1024 - RequestID: a4g1o9vs5a +2025-06-18T14:54:43.781Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 105ms - Rows affected: 67 - RequestID: 3uyr6w805pt +2025-06-18T14:54:43.881Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 672ms - RequestID: 3tt0l14izcr +2025-06-18T14:54:43.981Z [INFO] user-service - Operation: cache_miss - Processing time: 354ms - RequestID: a7thqw6agkd +2025-06-18T14:54:44.081Z [INFO] auth-service - GET /api/v1/orders - Status: 401 - Response time: 346ms - IP: 192.168.53.133 - User: user_1079 - RequestID: 9sbeghsy8qt +2025-06-18T14:54:44.181Z [TRACE] order-service - Database INSERT on orders - Execution time: 253ms - Rows affected: 69 - RequestID: peuqfi7t819 +2025-06-18T14:54:44.281Z [INFO] inventory-service - PUT /api/v1/orders - Status: 403 - Response time: 1914ms - IP: 192.168.229.123 - User: user_1038 - RequestID: 4niflchtuub +2025-06-18T14:54:44.381Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 83ms - Rows affected: 17 - RequestID: 4lcu6fe5euo +2025-06-18T14:54:44.481Z [INFO] user-service - POST /api/v1/auth/login - Status: 403 - Response time: 1716ms - IP: 192.168.235.117 - User: user_1012 - RequestID: 9oeu4ykw0hp +2025-06-18T14:54:44.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.113.218 - RequestID: 0qk3e5mo7ph +Progress: 0.1% - Log lines: 100 - Tokens: 5515 +Progress: 0.2% - Log lines: 200 - Tokens: 11060 +Progress: 0.3% - Log lines: 300 - Tokens: 16704 +Progress: 0.4% - Log lines: 400 - Tokens: 22089 +Progress: 0.6% - Log lines: 500 - Tokens: 27718 +Progress: 0.7% - Log lines: 600 - Tokens: 33290 +Progress: 0.8% - Log lines: 700 - Tokens: 38921 +Progress: 0.9% - Log lines: 800 - Tokens: 44514 +Progress: 1.0% - Log lines: 900 - Tokens: 50159 +Progress: 1.1% - Log lines: 1000 - Tokens: 55661 +Progress: 1.2% - Log lines: 1100 - Tokens: 61155 +Progress: 1.3% - Log lines: 1200 - Tokens: 66620 +Progress: 1.4% - Log lines: 1300 - Tokens: 71985 +Progress: 1.5% - Log lines: 1400 - Tokens: 77413 +Progress: 1.7% - Log lines: 1500 - Tokens: 83042 +Progress: 1.8% - Log lines: 1600 - Tokens: 88549 +Progress: 1.9% - Log lines: 1700 - Tokens: 94023 +Progress: 2.0% - Log lines: 1800 - Tokens: 99815 +Progress: 2.1% - Log lines: 1900 - Tokens: 105376 +Progress: 2.2% - Log lines: 2000 - Tokens: 110948 +Progress: 2.3% - Log lines: 2100 - Tokens: 116473 +Progress: 2.4% - Log lines: 2200 - Tokens: 121946 +Progress: 2.6% - Log lines: 2300 - Tokens: 127517 +Progress: 2.7% - Log lines: 2400 - Tokens: 133067 +Progress: 2.8% - Log lines: 2500 - Tokens: 138609 +Progress: 2.9% - Log lines: 2600 - Tokens: 144160 +Progress: 3.0% - Log lines: 2700 - Tokens: 149677 +Progress: 3.1% - Log lines: 2800 - Tokens: 155158 +Progress: 3.2% - Log lines: 2900 - Tokens: 160777 +Progress: 3.3% - Log lines: 3000 - Tokens: 166125 +Progress: 3.4% - Log lines: 3100 - Tokens: 171769 +Progress: 3.5% - Log lines: 3200 - Tokens: 177228 +Progress: 3.7% - Log lines: 3300 - Tokens: 182857 +Progress: 3.8% - Log lines: 3400 - Tokens: 188504 +Progress: 3.9% - Log lines: 3500 - Tokens: 194076 +Progress: 4.0% - Log lines: 3600 - Tokens: 199770 +Progress: 4.1% - Log lines: 3700 - Tokens: 205407 +Progress: 4.2% - Log lines: 3800 - Tokens: 210892 +Progress: 4.3% - Log lines: 3900 - Tokens: 216541 +Progress: 4.4% - Log lines: 4000 - Tokens: 221929 +Progress: 4.6% - Log lines: 4100 - Tokens: 227525 +Progress: 4.7% - Log lines: 4200 - Tokens: 232783 +Progress: 4.8% - Log lines: 4300 - Tokens: 238386 +Progress: 4.9% - Log lines: 4400 - Tokens: 243851 +Progress: 5.0% - Log lines: 4500 - Tokens: 249502 +Progress: 5.1% - Log lines: 4600 - Tokens: 254862 +Progress: 5.2% - Log lines: 4700 - Tokens: 260382 +Progress: 5.3% - Log lines: 4800 - Tokens: 266005 +Progress: 5.4% - Log lines: 4900 - Tokens: 271598 +Progress: 5.5% - Log lines: 5000 - Tokens: 277033 +Progress: 5.6% - Log lines: 5100 - Tokens: 282434 +Progress: 5.8% - Log lines: 5200 - Tokens: 288028 +Progress: 5.9% - Log lines: 5300 - Tokens: 293547 +Progress: 6.0% - Log lines: 5400 - Tokens: 299111 +Progress: 6.1% - Log lines: 5500 - Tokens: 304656 +Progress: 6.2% - Log lines: 5600 - Tokens: 310112 +Progress: 6.3% - Log lines: 5700 - Tokens: 315633 +Progress: 6.4% - Log lines: 5800 - Tokens: 321139 +Progress: 6.5% - Log lines: 5900 - Tokens: 326498 +Progress: 6.6% - Log lines: 6000 - Tokens: 332066 +Progress: 6.8% - Log lines: 6100 - Tokens: 337691 +Progress: 6.9% - Log lines: 6200 - Tokens: 343266 +Progress: 7.0% - Log lines: 6300 - Tokens: 348739 +Progress: 7.1% - Log lines: 6400 - Tokens: 354224 +Progress: 7.2% - Log lines: 6500 - Tokens: 359832 +Progress: 7.3% - Log lines: 6600 - Tokens: 365353 +Progress: 7.4% - Log lines: 6700 - Tokens: 370907 +Progress: 7.5% - Log lines: 6800 - Tokens: 376601 +Progress: 7.6% - Log lines: 6900 - Tokens: 382066 +Progress: 7.8% - Log lines: 7000 - Tokens: 387672 +Progress: 7.9% - Log lines: 7100 - Tokens: 393124 +Progress: 8.0% - Log lines: 7200 - Tokens: 398602 +Progress: 8.1% - Log lines: 7300 - Tokens: 404063 +Progress: 8.2% - Log lines: 7400 - Tokens: 409539 +Progress: 8.3% - Log lines: 7500 - Tokens: 415118 +Progress: 8.4% - Log lines: 7600 - Tokens: 420665 +Progress: 8.5% - Log lines: 7700 - Tokens: 426111 +Progress: 8.6% - Log lines: 7800 - Tokens: 431591 +Progress: 8.7% - Log lines: 7900 - Tokens: 437242 +Progress: 8.9% - Log lines: 8000 - Tokens: 443026 +Progress: 9.0% - Log lines: 8100 - Tokens: 448600 +Progress: 9.1% - Log lines: 8200 - Tokens: 454119 +Progress: 9.2% - Log lines: 8300 - Tokens: 459684 +Progress: 9.3% - Log lines: 8400 - Tokens: 464977 +Progress: 9.4% - Log lines: 8500 - Tokens: 470628 +Progress: 9.5% - Log lines: 8600 - Tokens: 476240 +Progress: 9.6% - Log lines: 8700 - Tokens: 481697 +Progress: 9.7% - Log lines: 8800 - Tokens: 487294 +Progress: 9.9% - Log lines: 8900 - Tokens: 492750 +Progress: 10.0% - Log lines: 9000 - Tokens: 498236 +Progress: 10.1% - Log lines: 9100 - Tokens: 503831 +Progress: 10.2% - Log lines: 9200 - Tokens: 509311 +Progress: 10.3% - Log lines: 9300 - Tokens: 514662 +Progress: 10.4% - Log lines: 9400 - Tokens: 520282 +Progress: 10.5% - Log lines: 9500 - Tokens: 525765 +Progress: 10.6% - Log lines: 9600 - Tokens: 531114 +Progress: 10.7% - Log lines: 9700 - Tokens: 536516 +Progress: 10.8% - Log lines: 9800 - Tokens: 541955 +Progress: 11.0% - Log lines: 9900 - Tokens: 547515 +Progress: 11.1% - Log lines: 10000 - Tokens: 553141 +Progress: 11.2% - Log lines: 10100 - Tokens: 558715 +Progress: 11.3% - Log lines: 10200 - Tokens: 564272 +Progress: 11.4% - Log lines: 10300 - Tokens: 569715 +Progress: 11.5% - Log lines: 10400 - Tokens: 575267 +Progress: 11.6% - Log lines: 10500 - Tokens: 580802 +Progress: 11.7% - Log lines: 10600 - Tokens: 586290 +Progress: 11.8% - Log lines: 10700 - Tokens: 592019 +Progress: 12.0% - Log lines: 10800 - Tokens: 597792 +Progress: 12.1% - Log lines: 10900 - Tokens: 603322 +Progress: 12.2% - Log lines: 11000 - Tokens: 609028 +Progress: 12.3% - Log lines: 11100 - Tokens: 614462 +Progress: 12.4% - Log lines: 11200 - Tokens: 620112 +Progress: 12.5% - Log lines: 11300 - Tokens: 625665 +Progress: 12.6% - Log lines: 11400 - Tokens: 631284 +Progress: 12.7% - Log lines: 11500 - Tokens: 636861 +Progress: 12.8% - Log lines: 11600 - Tokens: 642381 +Progress: 13.0% - Log lines: 11700 - Tokens: 648088 +Progress: 13.1% - Log lines: 11800 - Tokens: 653570 +Progress: 13.2% - Log lines: 11900 - Tokens: 659166 +Progress: 13.3% - Log lines: 12000 - Tokens: 664636 +Progress: 13.4% - Log lines: 12100 - Tokens: 670215 +Progress: 13.5% - Log lines: 12200 - Tokens: 675820 +Progress: 13.6% - Log lines: 12300 - Tokens: 681483 +Progress: 13.7% - Log lines: 12400 - Tokens: 687178 +Progress: 13.9% - Log lines: 12500 - Tokens: 692643 +Progress: 14.0% - Log lines: 12600 - Tokens: 698175 +Progress: 14.1% - Log lines: 12700 - Tokens: 703762 +Progress: 14.2% - Log lines: 12800 - Tokens: 709371 +Progress: 14.3% - Log lines: 12900 - Tokens: 715033 +Progress: 14.4% - Log lines: 13000 - Tokens: 720548 +Progress: 14.5% - Log lines: 13100 - Tokens: 726192 +Progress: 14.6% - Log lines: 13200 - Tokens: 731682 +Progress: 14.7% - Log lines: 13300 - Tokens: 737200 +Progress: 14.9% - Log lines: 13400 - Tokens: 742751 +Progress: 15.0% - Log lines: 13500 - Tokens: 748269 +Progress: 15.1% - Log lines: 13600 - Tokens: 753829 +Progress: 15.2% - Log lines: 13700 - Tokens: 759305 +Progress: 15.3% - Log lines: 13800 - Tokens: 764789 +Progress: 15.4% - Log lines: 13900 - Tokens: 770272 +Progress: 15.5% - Log lines: 14000 - Tokens: 775748 +Progress: 15.6% - Log lines: 14100 - Tokens: 781175 +Progress: 15.7% - Log lines: 14200 - Tokens: 786715 +Progress: 15.8% - Log lines: 14300 - Tokens: 792324 +Progress: 16.0% - Log lines: 14400 - Tokens: 797782 +Progress: 16.1% - Log lines: 14500 - Tokens: 803402 +Progress: 16.2% - Log lines: 14600 - Tokens: 808925 +Progress: 16.3% - Log lines: 14700 - Tokens: 814398 +Progress: 16.4% - Log lines: 14800 - Tokens: 820063 +Progress: 16.5% - Log lines: 14900 - Tokens: 825584 +Progress: 16.6% - Log lines: 15000 - Tokens: 831231 +Progress: 16.7% - Log lines: 15100 - Tokens: 836809 +Progress: 16.8% - Log lines: 15200 - Tokens: 842329 +Progress: 17.0% - Log lines: 15300 - Tokens: 847950 +Progress: 17.1% - Log lines: 15400 - Tokens: 853516 +Progress: 17.2% - Log lines: 15500 - Tokens: 858848 +Progress: 17.3% - Log lines: 15600 - Tokens: 864182 +Progress: 17.4% - Log lines: 15700 - Tokens: 869762 +Progress: 17.5% - Log lines: 15800 - Tokens: 875241 +Progress: 17.6% - Log lines: 15900 - Tokens: 880728 +Progress: 17.7% - Log lines: 16000 - Tokens: 886146 +Progress: 17.8% - Log lines: 16100 - Tokens: 891524 +Progress: 17.9% - Log lines: 16200 - Tokens: 897094 +Progress: 18.1% - Log lines: 16300 - Tokens: 902807 +Progress: 18.2% - Log lines: 16400 - Tokens: 908252 +Progress: 18.3% - Log lines: 16500 - Tokens: 913684 +Progress: 18.4% - Log lines: 16600 - Tokens: 919135 +Progress: 18.5% - Log lines: 16700 - Tokens: 924828 +Progress: 18.6% - Log lines: 16800 - Tokens: 930263 +Progress: 18.7% - Log lines: 16900 - Tokens: 935917 +Progress: 18.8% - Log lines: 17000 - Tokens: 941450 +Progress: 18.9% - Log lines: 17100 - Tokens: 946976 +Progress: 19.1% - Log lines: 17200 - Tokens: 952662 +Progress: 19.2% - Log lines: 17300 - Tokens: 958090 +Progress: 19.3% - Log lines: 17400 - Tokens: 963573 +Progress: 19.4% - Log lines: 17500 - Tokens: 969121 +Progress: 19.5% - Log lines: 17600 - Tokens: 974602 +Progress: 19.6% - Log lines: 17700 - Tokens: 980086 +Progress: 19.7% - Log lines: 17800 - Tokens: 985781 +Progress: 19.8% - Log lines: 17900 - Tokens: 991517 +Progress: 19.9% - Log lines: 18000 - Tokens: 996999 +Progress: 20.1% - Log lines: 18100 - Tokens: 1002505 +Progress: 20.2% - Log lines: 18200 - Tokens: 1008090 +Progress: 20.3% - Log lines: 18300 - Tokens: 1013555 +Progress: 20.4% - Log lines: 18400 - Tokens: 1019114 +Progress: 20.5% - Log lines: 18500 - Tokens: 1024680 +Progress: 20.6% - Log lines: 18600 - Tokens: 1030088 +Progress: 20.7% - Log lines: 18700 - Tokens: 1035656 +Progress: 20.8% - Log lines: 18800 - Tokens: 1041222 +Progress: 20.9% - Log lines: 18900 - Tokens: 1046711 +Progress: 21.0% - Log lines: 19000 - Tokens: 1052289 +Progress: 21.2% - Log lines: 19100 - Tokens: 1057985 +Progress: 21.3% - Log lines: 19200 - Tokens: 1063391 +Progress: 21.4% - Log lines: 19300 - Tokens: 1069013 +Progress: 21.5% - Log lines: 19400 - Tokens: 1074548 +Progress: 21.6% - Log lines: 19500 - Tokens: 1079939 +Progress: 21.7% - Log lines: 19600 - Tokens: 1085441 +Progress: 21.8% - Log lines: 19700 - Tokens: 1090721 +Progress: 21.9% - Log lines: 19800 - Tokens: 1096292 +Progress: 22.0% - Log lines: 19900 - Tokens: 1101756 +Progress: 22.1% - Log lines: 20000 - Tokens: 1107309 +Progress: 22.3% - Log lines: 20100 - Tokens: 1112923 +Progress: 22.4% - Log lines: 20200 - Tokens: 1118526 +Progress: 22.5% - Log lines: 20300 - Tokens: 1124053 +Progress: 22.6% - Log lines: 20400 - Tokens: 1129541 +Progress: 22.7% - Log lines: 20500 - Tokens: 1135061 +Progress: 22.8% - Log lines: 20600 - Tokens: 1140552 +Progress: 22.9% - Log lines: 20700 - Tokens: 1146012 +Progress: 23.0% - Log lines: 20800 - Tokens: 1151465 +Progress: 23.1% - Log lines: 20900 - Tokens: 1157092 +Progress: 23.3% - Log lines: 21000 - Tokens: 1162522 +Progress: 23.4% - Log lines: 21100 - Tokens: 1167999 +Progress: 23.5% - Log lines: 21200 - Tokens: 1173659 +Progress: 23.6% - Log lines: 21300 - Tokens: 1179345 +Progress: 23.7% - Log lines: 21400 - Tokens: 1184952 +Progress: 23.8% - Log lines: 21500 - Tokens: 1190499 +Progress: 23.9% - Log lines: 21600 - Tokens: 1195982 +Progress: 24.0% - Log lines: 21700 - Tokens: 1201539 +Progress: 24.1% - Log lines: 21800 - Tokens: 1207156 +Progress: 24.3% - Log lines: 21900 - Tokens: 1212716 +Progress: 24.4% - Log lines: 22000 - Tokens: 1218243 +Progress: 24.5% - Log lines: 22100 - Tokens: 1223833 +Progress: 24.6% - Log lines: 22200 - Tokens: 1229269 +Progress: 24.7% - Log lines: 22300 - Tokens: 1234743 +Progress: 24.8% - Log lines: 22400 - Tokens: 1240289 +Progress: 24.9% - Log lines: 22500 - Tokens: 1245891 +Progress: 25.0% - Log lines: 22600 - Tokens: 1251459 +Progress: 25.1% - Log lines: 22700 - Tokens: 1256990 +Progress: 25.3% - Log lines: 22800 - Tokens: 1262527 +Progress: 25.4% - Log lines: 22900 - Tokens: 1267982 +Progress: 25.5% - Log lines: 23000 - Tokens: 1273401 +Progress: 25.6% - Log lines: 23100 - Tokens: 1279030 +Progress: 25.7% - Log lines: 23200 - Tokens: 1284469 +Progress: 25.8% - Log lines: 23300 - Tokens: 1290050 +Progress: 25.9% - Log lines: 23400 - Tokens: 1295612 +Progress: 26.0% - Log lines: 23500 - Tokens: 1301045 +Progress: 26.1% - Log lines: 23600 - Tokens: 1306464 +Progress: 26.2% - Log lines: 23700 - Tokens: 1312039 +Progress: 26.4% - Log lines: 23800 - Tokens: 1317836 +Progress: 26.5% - Log lines: 23900 - Tokens: 1323360 +Progress: 26.6% - Log lines: 24000 - Tokens: 1328820 +Progress: 26.7% - Log lines: 24100 - Tokens: 1334487 +Progress: 26.8% - Log lines: 24200 - Tokens: 1340056 +Progress: 26.9% - Log lines: 24300 - Tokens: 1345677 +Progress: 27.0% - Log lines: 24400 - Tokens: 1351350 +Progress: 27.1% - Log lines: 24500 - Tokens: 1356866 +Progress: 27.2% - Log lines: 24600 - Tokens: 1362245 +Progress: 27.4% - Log lines: 24700 - Tokens: 1367763 +Progress: 27.5% - Log lines: 24800 - Tokens: 1373253 +Progress: 27.6% - Log lines: 24900 - Tokens: 1378862 +Progress: 27.7% - Log lines: 25000 - Tokens: 1384462 +Progress: 27.8% - Log lines: 25100 - Tokens: 1390036 +Progress: 27.9% - Log lines: 25200 - Tokens: 1395474 +Progress: 28.0% - Log lines: 25300 - Tokens: 1401030 +Progress: 28.1% - Log lines: 25400 - Tokens: 1406478 +Progress: 28.2% - Log lines: 25500 - Tokens: 1412297 +Progress: 28.4% - Log lines: 25600 - Tokens: 1417905 +Progress: 28.5% - Log lines: 25700 - Tokens: 1423518 +Progress: 28.6% - Log lines: 25800 - Tokens: 1429109 +Progress: 28.7% - Log lines: 25900 - Tokens: 1434632 +Progress: 28.8% - Log lines: 26000 - Tokens: 1440177 +Progress: 28.9% - Log lines: 26100 - Tokens: 1445676 +Progress: 29.0% - Log lines: 26200 - Tokens: 1451197 +Progress: 29.1% - Log lines: 26300 - Tokens: 1456770 +Progress: 29.2% - Log lines: 26400 - Tokens: 1462267 +Progress: 29.4% - Log lines: 26500 - Tokens: 1467771 +Progress: 29.5% - Log lines: 26600 - Tokens: 1473291 +Progress: 29.6% - Log lines: 26700 - Tokens: 1478912 +Progress: 29.7% - Log lines: 26800 - Tokens: 1484304 +Progress: 29.8% - Log lines: 26900 - Tokens: 1489830 +Progress: 29.9% - Log lines: 27000 - Tokens: 1495423 +Progress: 30.0% - Log lines: 27100 - Tokens: 1500769 +Progress: 30.1% - Log lines: 27200 - Tokens: 1506299 +Progress: 30.2% - Log lines: 27300 - Tokens: 1511730 +Progress: 30.3% - Log lines: 27400 - Tokens: 1517166 +Progress: 30.5% - Log lines: 27500 - Tokens: 1522564 +Progress: 30.6% - Log lines: 27600 - Tokens: 1528029 +Progress: 30.7% - Log lines: 27700 - Tokens: 1533601 +Progress: 30.8% - Log lines: 27800 - Tokens: 1539038 +Progress: 30.9% - Log lines: 27900 - Tokens: 1544558 +Progress: 31.0% - Log lines: 28000 - Tokens: 1550166 +Progress: 31.1% - Log lines: 28100 - Tokens: 1555549 +Progress: 31.2% - Log lines: 28200 - Tokens: 1561002 +Progress: 31.3% - Log lines: 28300 - Tokens: 1566497 +Progress: 31.4% - Log lines: 28400 - Tokens: 1572086 +Progress: 31.6% - Log lines: 28500 - Tokens: 1577542 +Progress: 31.7% - Log lines: 28600 - Tokens: 1582942 +Progress: 31.8% - Log lines: 28700 - Tokens: 1588474 +Progress: 31.9% - Log lines: 28800 - Tokens: 1593886 +Progress: 32.0% - Log lines: 28900 - Tokens: 1599413 +Progress: 32.1% - Log lines: 29000 - Tokens: 1604824 +Progress: 32.2% - Log lines: 29100 - Tokens: 1610283 +Progress: 32.3% - Log lines: 29200 - Tokens: 1615968 +Progress: 32.4% - Log lines: 29300 - Tokens: 1621502 +Progress: 32.5% - Log lines: 29400 - Tokens: 1627042 +Progress: 32.7% - Log lines: 29500 - Tokens: 1632583 +Progress: 32.8% - Log lines: 29600 - Tokens: 1638147 +Progress: 32.9% - Log lines: 29700 - Tokens: 1643731 +Progress: 33.0% - Log lines: 29800 - Tokens: 1649310 +Progress: 33.1% - Log lines: 29900 - Tokens: 1654894 +Progress: 33.2% - Log lines: 30000 - Tokens: 1660466 +Progress: 33.3% - Log lines: 30100 - Tokens: 1665915 +Progress: 33.4% - Log lines: 30200 - Tokens: 1671382 +Progress: 33.5% - Log lines: 30300 - Tokens: 1677007 +Progress: 33.6% - Log lines: 30400 - Tokens: 1682401 +Progress: 33.8% - Log lines: 30500 - Tokens: 1687999 +Progress: 33.9% - Log lines: 30600 - Tokens: 1693552 +Progress: 34.0% - Log lines: 30700 - Tokens: 1699062 +Progress: 34.1% - Log lines: 30800 - Tokens: 1704583 +Progress: 34.2% - Log lines: 30900 - Tokens: 1710144 +Progress: 34.3% - Log lines: 31000 - Tokens: 1715601 +Progress: 34.4% - Log lines: 31100 - Tokens: 1721110 +Progress: 34.5% - Log lines: 31200 - Tokens: 1726707 +Progress: 34.6% - Log lines: 31300 - Tokens: 1732184 +Progress: 34.8% - Log lines: 31400 - Tokens: 1737738 +Progress: 34.9% - Log lines: 31500 - Tokens: 1743280 +Progress: 35.0% - Log lines: 31600 - Tokens: 1748936 +Progress: 35.1% - Log lines: 312025-06-18T14:54:44.681Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 401 - Response time: 104ms - IP: 192.168.100.240 - User: user_1056 - RequestID: p3pn4fuk8as +2025-06-18T14:54:44.781Z [DEBUG] order-service - Auth event: login_failed - User: user_1009 - IP: 192.168.170.215 - RequestID: 4wgob8rar9u +2025-06-18T14:54:44.881Z [INFO] user-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1894ms - IP: 192.168.211.72 - User: user_1024 - RequestID: vcxpl2ky90k +2025-06-18T14:54:44.981Z [TRACE] order-service - POST /api/v1/payments - Status: 401 - Response time: 446ms - IP: 192.168.227.77 - User: user_1033 - RequestID: qemqgud08bn +2025-06-18T14:54:45.081Z [TRACE] auth-service - Database UPDATE on users - Execution time: 246ms - Rows affected: 44 - RequestID: 7177okrgw6p +2025-06-18T14:54:45.181Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 291ms - Rows affected: 36 - RequestID: xf2fsu9um3d +2025-06-18T14:54:45.281Z [INFO] user-service - Auth event: login_failed - User: user_1074 - IP: 192.168.147.171 - RequestID: oiee31yl1ra +2025-06-18T14:54:45.381Z [INFO] inventory-service - PATCH /api/v1/users - Status: 404 - Response time: 1036ms - IP: 192.168.97.87 - User: user_1044 - RequestID: msfgvu1iqyh +2025-06-18T14:54:45.481Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1712ms - IP: 192.168.97.87 - User: user_1022 - RequestID: hop52t2d3su +2025-06-18T14:54:45.581Z [TRACE] payment-service - POST /api/v1/orders - Status: 404 - Response time: 776ms - IP: 192.168.247.134 - User: user_1006 - RequestID: oehy7v0pmjj +2025-06-18T14:54:45.681Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 109ms - Rows affected: 83 - RequestID: 616b4hbbyal +2025-06-18T14:54:45.781Z [INFO] auth-service - Auth event: login_failed - User: user_1016 - IP: 192.168.100.240 - RequestID: l35yth74vin +2025-06-18T14:54:45.881Z [INFO] notification-service - Auth event: login_success - User: user_1047 - IP: 192.168.68.128 - RequestID: 93fuyd6276b +2025-06-18T14:54:45.981Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 201ms - Rows affected: 4 - RequestID: 8ubmhpm7b1o +2025-06-18T14:54:46.081Z [INFO] order-service - Database DELETE on payments - Execution time: 292ms - Rows affected: 57 - RequestID: 65q1ho9xs2o +2025-06-18T14:54:46.181Z [INFO] inventory-service - Database UPDATE on users - Execution time: 396ms - Rows affected: 95 - RequestID: x24avjs2nq +2025-06-18T14:54:46.281Z [DEBUG] notification-service - Database INSERT on products - Execution time: 461ms - Rows affected: 83 - RequestID: fvgdcxj6x5d +2025-06-18T14:54:46.381Z [INFO] payment-service - Auth event: login_success - User: user_1064 - IP: 192.168.158.144 - RequestID: z0tax3e719b +2025-06-18T14:54:46.481Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.170.215 - RequestID: nuha0ialvm8 +2025-06-18T14:54:46.581Z [TRACE] inventory-service - Auth event: login_success - User: user_1090 - IP: 192.168.46.63 - RequestID: i7u90e21udl +2025-06-18T14:54:46.681Z [INFO] order-service - Auth event: password_change - User: user_1095 - IP: 192.168.141.100 - RequestID: udclgeop1aj +2025-06-18T14:54:46.781Z [INFO] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 964ms - IP: 192.168.181.225 - User: user_1004 - RequestID: 5yzxo5x9cer +2025-06-18T14:54:46.881Z [TRACE] order-service - Operation: webhook_sent - Processing time: 670ms - RequestID: elil8ehfd5t +2025-06-18T14:54:46.981Z [INFO] inventory-service - Operation: notification_queued - Processing time: 785ms - RequestID: mr1jo9psttb +2025-06-18T14:54:47.081Z [INFO] auth-service - Operation: cache_hit - Processing time: 104ms - RequestID: y1uwl7rdoyk +2025-06-18T14:54:47.181Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 615ms - RequestID: szc4nf9ohy +2025-06-18T14:54:47.281Z [DEBUG] order-service - Database INSERT on products - Execution time: 44ms - Rows affected: 13 - RequestID: 5rticbtfh3 +2025-06-18T14:54:47.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1047 - IP: 192.168.227.77 - RequestID: unrb047lov9 +2025-06-18T14:54:47.481Z [TRACE] user-service - Operation: email_sent - Processing time: 477ms - RequestID: on0k0g7fao +2025-06-18T14:54:47.581Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1403ms - IP: 192.168.33.76 - User: user_1056 - RequestID: rxmovnnm4n +2025-06-18T14:54:47.681Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 102ms - RequestID: 0r46tya6srz +2025-06-18T14:54:47.781Z [INFO] notification-service - Database SELECT on sessions - Execution time: 7ms - Rows affected: 1 - RequestID: m2cnlbedi2r +2025-06-18T14:54:47.881Z [INFO] user-service - Operation: inventory_updated - Processing time: 902ms - RequestID: xm7ligx3cwo +2025-06-18T14:54:47.981Z [INFO] payment-service - Operation: email_sent - Processing time: 542ms - RequestID: 4fl9ydhp0z +2025-06-18T14:54:48.081Z [TRACE] user-service - Operation: email_sent - Processing time: 562ms - RequestID: g5lci7zwo59 +2025-06-18T14:54:48.181Z [INFO] inventory-service - Database SELECT on payments - Execution time: 153ms - Rows affected: 93 - RequestID: 4f4zduw5ibj +2025-06-18T14:54:48.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 765ms - RequestID: yd2l2wa6g6c +2025-06-18T14:54:48.381Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 500 - Response time: 1947ms - IP: 192.168.85.229 - User: user_1084 - RequestID: jvj2chk2s3 +2025-06-18T14:54:48.481Z [INFO] order-service - Auth event: password_change - User: user_1018 - IP: 192.168.187.199 - RequestID: ny669i5adw +2025-06-18T14:54:48.581Z [INFO] payment-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.138.123 - RequestID: cxx0h3ra6z +2025-06-18T14:54:48.681Z [INFO] inventory-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.104.37 - RequestID: hbqwbzqyia5 +2025-06-18T14:54:48.781Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 678ms - RequestID: sbpslws3wjn +2025-06-18T14:54:48.881Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 476ms - Rows affected: 70 - RequestID: zdde33s58vr +2025-06-18T14:54:48.981Z [INFO] payment-service - Auth event: password_change - User: user_1068 - IP: 192.168.232.72 - RequestID: cl4k6erun3 +2025-06-18T14:54:49.081Z [INFO] notification-service - Database SELECT on payments - Execution time: 82ms - Rows affected: 5 - RequestID: jtsauj0iwv +2025-06-18T14:54:49.181Z [INFO] payment-service - Operation: payment_processed - Processing time: 1039ms - RequestID: 8a7slzjwcek +2025-06-18T14:54:49.281Z [TRACE] auth-service - Auth event: password_change - User: user_1019 - IP: 192.168.189.103 - RequestID: 7nr6nzar88n +2025-06-18T14:54:49.381Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 360ms - Rows affected: 99 - RequestID: 33vtm5i44q2 +2025-06-18T14:54:49.481Z [INFO] auth-service - Auth event: login_success - User: user_1060 - IP: 192.168.85.229 - RequestID: 8g9vgoio4md +2025-06-18T14:54:49.581Z [DEBUG] order-service - Database INSERT on orders - Execution time: 434ms - Rows affected: 7 - RequestID: efjah1cguf8 +2025-06-18T14:54:49.681Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 40ms - IP: 192.168.194.41 - User: user_1007 - RequestID: nzsyi4yngz +2025-06-18T14:54:49.781Z [TRACE] order-service - Auth event: password_change - User: user_1093 - IP: 192.168.44.5 - RequestID: zyul2914y0k +2025-06-18T14:54:49.881Z [DEBUG] user-service - Auth event: logout - User: user_1054 - IP: 192.168.181.225 - RequestID: akd5xz4sxzn +2025-06-18T14:54:49.981Z [TRACE] payment-service - POST /api/v1/payments - Status: 404 - Response time: 14ms - IP: 192.168.81.206 - User: user_1089 - RequestID: 496y9jigask +2025-06-18T14:54:50.081Z [TRACE] auth-service - Operation: cache_hit - Processing time: 192ms - RequestID: lx4zllef95 +2025-06-18T14:54:50.181Z [INFO] order-service - Database UPDATE on orders - Execution time: 307ms - Rows affected: 37 - RequestID: gsqo51u1k8 +2025-06-18T14:54:50.281Z [DEBUG] auth-service - POST /api/v1/payments - Status: 401 - Response time: 1172ms - IP: 192.168.240.169 - User: user_1044 - RequestID: ytzjalw3ia +2025-06-18T14:54:50.381Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1018 - IP: 192.168.14.77 - RequestID: vr7a3zhmka +2025-06-18T14:54:50.481Z [INFO] auth-service - PATCH /api/v1/users - Status: 201 - Response time: 507ms - IP: 192.168.53.133 - User: user_1080 - RequestID: oued5p00d29 +2025-06-18T14:54:50.581Z [INFO] auth-service - Auth event: password_change - User: user_1074 - IP: 192.168.97.87 - RequestID: lavm46sg2eo +2025-06-18T14:54:50.681Z [INFO] auth-service - Database INSERT on payments - Execution time: 483ms - Rows affected: 15 - RequestID: rvfk99rajoe +2025-06-18T14:54:50.781Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 16ms - Rows affected: 30 - RequestID: qbn8eatjx7f +2025-06-18T14:54:50.881Z [INFO] user-service - PUT /api/v1/payments - Status: 403 - Response time: 1340ms - IP: 192.168.189.103 - User: user_1090 - RequestID: tyiqaoizd7m +2025-06-18T14:54:50.981Z [TRACE] payment-service - Database SELECT on users - Execution time: 403ms - Rows affected: 33 - RequestID: kqgbc42ib5 +2025-06-18T14:54:51.081Z [INFO] payment-service - Operation: email_sent - Processing time: 640ms - RequestID: 35kj3uu1q0n +2025-06-18T14:54:51.181Z [TRACE] user-service - Operation: cache_hit - Processing time: 530ms - RequestID: famegcrxse7 +2025-06-18T14:54:51.281Z [INFO] payment-service - Auth event: password_change - User: user_1039 - IP: 192.168.211.72 - RequestID: wql63iex1m +2025-06-18T14:54:51.381Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 392ms - Rows affected: 47 - RequestID: 5v1l54ujz85 +2025-06-18T14:54:51.481Z [DEBUG] auth-service - Auth event: password_change - User: user_1092 - IP: 192.168.189.103 - RequestID: vbq7rm2oig +2025-06-18T14:54:51.581Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1573ms - IP: 192.168.158.144 - User: user_1032 - RequestID: kpnkmf2uyn +2025-06-18T14:54:51.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.240.169 - RequestID: 4kl1s81jyuj +2025-06-18T14:54:51.781Z [INFO] auth-service - POST /api/v1/inventory - Status: 400 - Response time: 1324ms - IP: 192.168.133.7 - User: user_1010 - RequestID: 17lykjtyyvu +2025-06-18T14:54:51.881Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1987ms - IP: 192.168.28.146 - User: user_1047 - RequestID: uhkkz2jn4gb +2025-06-18T14:54:51.981Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 443ms - Rows affected: 2 - RequestID: i05fqz9d1jq +2025-06-18T14:54:52.081Z [TRACE] notification-service - GET /api/v1/inventory - Status: 502 - Response time: 1881ms - IP: 192.168.247.134 - User: user_1065 - RequestID: 9xzqp2s9igs +2025-06-18T14:54:52.181Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 252ms - Rows affected: 15 - RequestID: w0geo3leria +2025-06-18T14:54:52.281Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 391ms - Rows affected: 15 - RequestID: nu7pufqvvbo +2025-06-18T14:54:52.381Z [DEBUG] auth-service - Database SELECT on users - Execution time: 362ms - Rows affected: 60 - RequestID: w3pk7za76ek +2025-06-18T14:54:52.481Z [TRACE] order-service - Database SELECT on users - Execution time: 387ms - Rows affected: 53 - RequestID: yj34rhk1ho +2025-06-18T14:54:52.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.232.72 - RequestID: 0oamiti5p8g +2025-06-18T14:54:52.681Z [INFO] user-service - Operation: order_created - Processing time: 747ms - RequestID: gejbt3yx6f +2025-06-18T14:54:52.781Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1627ms - IP: 192.168.79.143 - User: user_1029 - RequestID: 08kmws3rcvmv +2025-06-18T14:54:52.881Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 156ms - Rows affected: 83 - RequestID: z1tuiv2k5fe +2025-06-18T14:54:52.981Z [INFO] user-service - Database DELETE on users - Execution time: 444ms - Rows affected: 31 - RequestID: y1ebjiu0jd +2025-06-18T14:54:53.081Z [INFO] order-service - Database DELETE on sessions - Execution time: 156ms - Rows affected: 72 - RequestID: ffe7lo127q5 +2025-06-18T14:54:53.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 62ms - RequestID: ienhmrs6b8h +2025-06-18T14:54:53.281Z [TRACE] notification-service - Database SELECT on payments - Execution time: 399ms - Rows affected: 37 - RequestID: hjltpqcsal9 +2025-06-18T14:54:53.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.79.141 - RequestID: nwj0uls7nhe +2025-06-18T14:54:53.481Z [INFO] order-service - Operation: order_created - Processing time: 333ms - RequestID: dqk6i076lgq +2025-06-18T14:54:53.581Z [INFO] auth-service - Auth event: login_success - User: user_1034 - IP: 192.168.227.77 - RequestID: o9jbruqq1n +2025-06-18T14:54:53.681Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1139ms - IP: 192.168.242.165 - User: user_1033 - RequestID: vn13plxitk9 +2025-06-18T14:54:53.781Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 503 - Response time: 307ms - IP: 192.168.158.144 - User: user_1087 - RequestID: e1wpuv19h9 +2025-06-18T14:54:53.881Z [TRACE] auth-service - Auth event: login_success - User: user_1090 - IP: 192.168.141.100 - RequestID: 4l8roia9ppu +2025-06-18T14:54:53.981Z [INFO] order-service - POST /api/v1/payments - Status: 401 - Response time: 1394ms - IP: 192.168.30.79 - User: user_1037 - RequestID: dwqojadbjel +2025-06-18T14:54:54.081Z [DEBUG] order-service - Operation: notification_queued - Processing time: 172ms - RequestID: tszc8ip82j +2025-06-18T14:54:54.181Z [INFO] payment-service - Operation: webhook_sent - Processing time: 306ms - RequestID: s045puhvgbj +2025-06-18T14:54:54.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1030 - IP: 192.168.174.114 - RequestID: kwpebmw8npa +2025-06-18T14:54:54.381Z [INFO] payment-service - Operation: email_sent - Processing time: 628ms - RequestID: acxrscp88b +2025-06-18T14:54:54.481Z [INFO] notification-service - Operation: order_created - Processing time: 1004ms - RequestID: 55puuan3wst +2025-06-18T14:54:54.581Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 142ms - Rows affected: 25 - RequestID: xx9pigvt4l +2025-06-18T14:54:54.681Z [INFO] inventory-service - PUT /api/v1/users - Status: 404 - Response time: 947ms - IP: 192.168.104.37 - User: user_1012 - RequestID: 07zb6imcdg2 +2025-06-18T14:54:54.781Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 339ms - Rows affected: 15 - RequestID: 0zaw0iq0zkyi +2025-06-18T14:54:54.881Z [TRACE] payment-service - Database INSERT on users - Execution time: 363ms - Rows affected: 89 - RequestID: y67zqzajmt +2025-06-18T14:54:54.981Z [DEBUG] inventory-service - Auth event: password_change - User: user_1008 - IP: 192.168.211.72 - RequestID: qnhitdmt9bi +2025-06-18T14:54:55.081Z [INFO] user-service - Operation: notification_queued - Processing time: 358ms - RequestID: 188md21odl4 +2025-06-18T14:54:55.181Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 214ms - Rows affected: 65 - RequestID: qmmesl4r34 +2025-06-18T14:54:55.281Z [INFO] order-service - Operation: notification_queued - Processing time: 145ms - RequestID: 34704ro5pet +2025-06-18T14:54:55.381Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 464ms - IP: 192.168.68.158 - User: user_1072 - RequestID: 54w2i0uad9s +2025-06-18T14:54:55.481Z [TRACE] inventory-service - POST /api/v1/orders - Status: 400 - Response time: 1071ms - IP: 192.168.247.134 - User: user_1029 - RequestID: uvp74koyfmo +2025-06-18T14:54:55.581Z [TRACE] order-service - Operation: inventory_updated - Processing time: 543ms - RequestID: pf7b53w4g8 +2025-06-18T14:54:55.681Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 22ms - Rows affected: 94 - RequestID: qvdbc9kf0ep +2025-06-18T14:54:55.781Z [DEBUG] payment-service - GET /api/v1/users - Status: 200 - Response time: 562ms - IP: 192.168.144.38 - User: user_1088 - RequestID: zgpzgm0k3f +2025-06-18T14:54:55.881Z [DEBUG] user-service - Operation: payment_processed - Processing time: 335ms - RequestID: 8tfrilkvelk +2025-06-18T14:54:55.981Z [TRACE] notification-service - Auth event: logout - User: user_1008 - IP: 192.168.30.79 - RequestID: iyagfw1dck +2025-06-18T14:54:56.081Z [INFO] payment-service - Auth event: logout - User: user_1050 - IP: 192.168.147.171 - RequestID: 8uodp0wkcy +2025-06-18T14:54:56.181Z [INFO] user-service - Auth event: logout - User: user_1044 - IP: 192.168.113.218 - RequestID: yjdvghtct5 +2025-06-18T14:54:56.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.68.158 - RequestID: y7wlmf6zhd +2025-06-18T14:54:56.381Z [DEBUG] notification-service - POST /api/v1/payments - Status: 503 - Response time: 1726ms - IP: 192.168.1.152 - User: user_1033 - RequestID: ylwnfrjle0i +2025-06-18T14:54:56.481Z [INFO] user-service - Auth event: password_change - User: user_1041 - IP: 192.168.227.233 - RequestID: 2d4popy3x2f +2025-06-18T14:54:56.581Z [INFO] user-service - Auth event: login_failed - User: user_1010 - IP: 192.168.159.94 - RequestID: 05nz46s1n0nu +2025-06-18T14:54:56.681Z [INFO] payment-service - DELETE /api/v1/orders - Status: 503 - Response time: 1913ms - IP: 192.168.189.103 - User: user_1008 - RequestID: 2g807neprf3 +2025-06-18T14:54:56.781Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 354ms - Rows affected: 33 - RequestID: ijpox1tp52 +2025-06-18T14:54:56.881Z [TRACE] order-service - Database SELECT on users - Execution time: 308ms - Rows affected: 88 - RequestID: ee223wt5wi +2025-06-18T14:54:56.981Z [INFO] payment-service - Auth event: login_success - User: user_1014 - IP: 192.168.11.60 - RequestID: fp7g0e8l8f +2025-06-18T14:54:57.081Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 404 - Response time: 160ms - IP: 192.168.144.38 - User: user_1083 - RequestID: zpl9wr7d9m +2025-06-18T14:54:57.181Z [DEBUG] payment-service - Auth event: logout - User: user_1083 - IP: 192.168.147.171 - RequestID: qrrvmlkcft8 +2025-06-18T14:54:57.281Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1895ms - IP: 192.168.227.233 - User: user_1021 - RequestID: oju5opop1ym +2025-06-18T14:54:57.381Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 426ms - Rows affected: 74 - RequestID: jwipi3dkw7 +2025-06-18T14:54:57.481Z [DEBUG] order-service - Operation: cache_hit - Processing time: 304ms - RequestID: 5bswxljwgzg +2025-06-18T14:54:57.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.170.215 - RequestID: cx23s2jecl4 +2025-06-18T14:54:57.681Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 379ms - Rows affected: 3 - RequestID: j59wmb6t7vm +2025-06-18T14:54:57.781Z [TRACE] user-service - GET /api/v1/inventory - Status: 400 - Response time: 1400ms - IP: 192.168.235.117 - User: user_1072 - RequestID: 9zhzoums9op +2025-06-18T14:54:57.881Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 404 - Response time: 1940ms - IP: 192.168.11.60 - User: user_1007 - RequestID: p88qs24qof9 +2025-06-18T14:54:57.981Z [TRACE] inventory-service - Auth event: logout - User: user_1019 - IP: 192.168.28.146 - RequestID: pxz7tj0kb2 +2025-06-18T14:54:58.081Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 267ms - Rows affected: 62 - RequestID: h663b3owggr +2025-06-18T14:54:58.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.30.79 - RequestID: 8a429vanlvs +2025-06-18T14:54:58.281Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1867ms - IP: 192.168.174.114 - User: user_1073 - RequestID: doe7l9gu25a +2025-06-18T14:54:58.381Z [INFO] order-service - Database INSERT on products - Execution time: 232ms - Rows affected: 29 - RequestID: b952ki4bvp7 +2025-06-18T14:54:58.481Z [TRACE] auth-service - Auth event: logout - User: user_1070 - IP: 192.168.33.76 - RequestID: um6udwa50p +2025-06-18T14:54:58.581Z [TRACE] order-service - Auth event: password_change - User: user_1085 - IP: 192.168.196.226 - RequestID: 6141urkbhub +2025-06-18T14:54:58.681Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 110ms - RequestID: csi31euplmr +2025-06-18T14:54:58.781Z [TRACE] inventory-service - Auth event: login_failed - User: user_1097 - IP: 192.168.32.38 - RequestID: s7139buuc8d +2025-06-18T14:54:58.881Z [INFO] inventory-service - Database INSERT on users - Execution time: 40ms - Rows affected: 36 - RequestID: 7x70g4x1kvl +2025-06-18T14:54:58.981Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 422ms - Rows affected: 30 - RequestID: tvan5gj0st +2025-06-18T14:54:59.081Z [INFO] payment-service - Operation: notification_queued - Processing time: 312ms - RequestID: qdjurv8700e +2025-06-18T14:54:59.181Z [DEBUG] payment-service - Database DELETE on products - Execution time: 40ms - Rows affected: 12 - RequestID: 9kcsi2pxjsa +2025-06-18T14:54:59.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 971ms - RequestID: 24ukc49ufuu +2025-06-18T14:54:59.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1011 - IP: 192.168.211.72 - RequestID: 3w7860fihpa +2025-06-18T14:54:59.481Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 503 - Response time: 224ms - IP: 192.168.227.77 - User: user_1023 - RequestID: 4ysv8k4dfaq +2025-06-18T14:54:59.581Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 281ms - Rows affected: 31 - RequestID: 7cwdsiezcip +2025-06-18T14:54:59.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 1010ms - RequestID: dd7hfkw4iwc +2025-06-18T14:54:59.781Z [INFO] user-service - Database DELETE on sessions - Execution time: 94ms - Rows affected: 37 - RequestID: id01ifd78nb +2025-06-18T14:54:59.881Z [DEBUG] order-service - POST /api/v1/orders - Status: 500 - Response time: 1432ms - IP: 192.168.141.100 - User: user_1099 - RequestID: 76kmzvmmwtx +2025-06-18T14:54:59.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 1046ms - RequestID: 6doflk4n8b +2025-06-18T14:55:00.081Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 200 - Response time: 988ms - IP: 192.168.174.114 - User: user_1063 - RequestID: kllvmuanee +2025-06-18T14:55:00.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.181.225 - RequestID: wk7xign14e +2025-06-18T14:55:00.281Z [INFO] notification-service - Auth event: password_change - User: user_1020 - IP: 192.168.13.72 - RequestID: 2g02su54ji1 +2025-06-18T14:55:00.381Z [TRACE] inventory-service - Database DELETE on products - Execution time: 213ms - Rows affected: 23 - RequestID: 97pd9wle02i +2025-06-18T14:55:00.481Z [DEBUG] notification-service - Database SELECT on products - Execution time: 91ms - Rows affected: 12 - RequestID: r40vxwqtzvf +2025-06-18T14:55:00.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1081 - IP: 192.168.104.37 - RequestID: k4iigeuib59 +2025-06-18T14:55:00.681Z [TRACE] payment-service - Operation: email_sent - Processing time: 186ms - RequestID: f9c9c2mef08 +2025-06-18T14:55:00.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 901ms - RequestID: p4u8gil2l1 +2025-06-18T14:55:00.881Z [INFO] payment-service - Operation: webhook_sent - Processing time: 503ms - RequestID: distfd4lg4v +2025-06-18T14:55:00.981Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 503 - Response time: 375ms - IP: 192.168.170.215 - User: user_1024 - RequestID: xuqox3vfpn +2025-06-18T14:55:01.081Z [INFO] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1380ms - IP: 192.168.81.206 - User: user_1019 - RequestID: 16sogz6kjxh +2025-06-18T14:55:01.181Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 24ms - Rows affected: 79 - RequestID: v46h0p0gtnh +2025-06-18T14:55:01.281Z [INFO] user-service - GET /api/v1/users - Status: 503 - Response time: 216ms - IP: 192.168.97.87 - User: user_1064 - RequestID: dztqo0zjpt +2025-06-18T14:55:01.381Z [INFO] user-service - POST /api/v1/payments - Status: 201 - Response time: 16ms - IP: 192.168.28.146 - User: user_1056 - RequestID: dsrh0uq7ssv +2025-06-18T14:55:01.481Z [INFO] order-service - PUT /api/v1/payments - Status: 400 - Response time: 1455ms - IP: 192.168.141.100 - User: user_1052 - RequestID: ygxniulsnyp +2025-06-18T14:55:01.581Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 502 - Response time: 1198ms - IP: 192.168.227.77 - User: user_1034 - RequestID: gn66luekg56 +2025-06-18T14:55:01.681Z [DEBUG] user-service - PATCH /api/v1/users - Status: 500 - Response time: 1261ms - IP: 192.168.113.218 - User: user_1046 - RequestID: qvktjdcmp5 +2025-06-18T14:55:01.781Z [INFO] auth-service - Database SELECT on orders - Execution time: 383ms - Rows affected: 45 - RequestID: 54l1aryjws8 +2025-06-18T14:55:01.881Z [DEBUG] user-service - Database INSERT on products - Execution time: 446ms - Rows affected: 28 - RequestID: 6prs2p5ohtg +2025-06-18T14:55:01.981Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 400 - Response time: 1961ms - IP: 192.168.44.5 - User: user_1000 - RequestID: n9dcdyjbl3n +2025-06-18T14:55:02.081Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 713ms - RequestID: tdynxqwc8bc +2025-06-18T14:55:02.181Z [DEBUG] user-service - Auth event: password_change - User: user_1033 - IP: 192.168.235.117 - RequestID: opkt747omk9 +2025-06-18T14:55:02.281Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 117ms - Rows affected: 50 - RequestID: g2cqm5zg0ds +2025-06-18T14:55:02.381Z [INFO] auth-service - Database UPDATE on orders - Execution time: 32ms - Rows affected: 20 - RequestID: xz1xq9gdkwj +2025-06-18T14:55:02.481Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 905ms - RequestID: l8s7hbgt20r +2025-06-18T14:55:02.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.242.165 - RequestID: huypjgavtt +2025-06-18T14:55:02.681Z [DEBUG] order-service - Operation: order_created - Processing time: 479ms - RequestID: 3owbi2dwe04 +2025-06-18T14:55:02.781Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 84ms - IP: 192.168.10.184 - User: user_1006 - RequestID: qmhivn59lv +2025-06-18T14:55:02.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1003 - IP: 192.168.189.103 - RequestID: q9boljrqxtq +2025-06-18T14:55:02.981Z [DEBUG] user-service - POST /api/v1/inventory - Status: 403 - Response time: 650ms - IP: 192.168.28.146 - User: user_1071 - RequestID: zr5bdafq4eb +2025-06-18T14:55:03.081Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 201 - Response time: 1873ms - IP: 192.168.189.103 - User: user_1030 - RequestID: ppgfo5l4jtd +2025-06-18T14:55:03.181Z [DEBUG] order-service - Database DELETE on products - Execution time: 61ms - Rows affected: 24 - RequestID: qorsvwn14zk +2025-06-18T14:55:03.281Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 707ms - IP: 192.168.32.38 - User: user_1019 - RequestID: 47wunh2x2lw +2025-06-18T14:55:03.381Z [DEBUG] order-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.79.116 - RequestID: j090ahzkhy +2025-06-18T14:55:03.481Z [DEBUG] user-service - Database UPDATE on products - Execution time: 350ms - Rows affected: 45 - RequestID: vt31wjb5nh +2025-06-18T14:55:03.581Z [DEBUG] payment-service - Auth event: password_change - User: user_1025 - IP: 192.168.113.218 - RequestID: re6pwrglbp8 +2025-06-18T14:55:03.681Z [INFO] order-service - Database UPDATE on orders - Execution time: 198ms - Rows affected: 1 - RequestID: 691ea8ysavs +2025-06-18T14:55:03.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.113.218 - RequestID: mech5j32ez +2025-06-18T14:55:03.881Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 500 - Response time: 337ms - IP: 192.168.181.225 - User: user_1080 - RequestID: pjquopgbeuj +2025-06-18T14:55:03.981Z [INFO] auth-service - POST /api/v1/users - Status: 401 - Response time: 1604ms - IP: 192.168.144.38 - User: user_1078 - RequestID: etnyxr2bmhn +2025-06-18T14:55:04.081Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 887ms - IP: 192.168.242.165 - User: user_1064 - RequestID: 2kjw2t85hgo +2025-06-18T14:55:04.181Z [DEBUG] order-service - Database SELECT on products - Execution time: 413ms - Rows affected: 63 - RequestID: hm997d9zgcd +2025-06-18T14:55:04.281Z [INFO] payment-service - Database DELETE on sessions - Execution time: 89ms - Rows affected: 74 - RequestID: m1l2qo2oul8 +2025-06-18T14:55:04.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.104.37 - RequestID: w0ced79pcdr +2025-06-18T14:55:04.481Z [TRACE] notification-service - Operation: payment_processed - Processing time: 1048ms - RequestID: t1xs6x3aami +2025-06-18T14:55:04.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.79.116 - RequestID: vxtdw875cqi +2025-06-18T14:55:04.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.181.225 - RequestID: il8uioxq55 +2025-06-18T14:55:04.781Z [DEBUG] user-service - Operation: notification_queued - Processing time: 151ms - RequestID: 13313180cpq +2025-06-18T14:55:04.881Z [DEBUG] order-service - Auth event: login_success - User: user_1022 - IP: 192.168.133.7 - RequestID: lavp3possrp +2025-06-18T14:55:04.981Z [INFO] payment-service - PATCH /api/v1/payments - Status: 200 - Response time: 1346ms - IP: 192.168.104.37 - User: user_1048 - RequestID: grlfode1len +2025-06-18T14:55:05.081Z [DEBUG] order-service - PUT /api/v1/users - Status: 500 - Response time: 1911ms - IP: 192.168.79.116 - User: user_1094 - RequestID: d64jy13k17a +2025-06-18T14:55:05.181Z [INFO] auth-service - Auth event: login_failed - User: user_1089 - IP: 192.168.138.123 - RequestID: 7c1zkuyxd8m +2025-06-18T14:55:05.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1024 - IP: 192.168.167.32 - RequestID: k6srmaez6n +2025-06-18T14:55:05.381Z [TRACE] order-service - Operation: payment_processed - Processing time: 213ms - RequestID: cvnusbs10y8 +2025-06-18T14:55:05.481Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 305ms - RequestID: robqbv7jxw +2025-06-18T14:55:05.581Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1053ms - IP: 192.168.85.229 - User: user_1038 - RequestID: x9tf52xv3h +2025-06-18T14:55:05.681Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 482ms - IP: 192.168.97.87 - User: user_1044 - RequestID: xrbt4hgmpl +2025-06-18T14:55:05.781Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.158.144 - RequestID: wf6ixcy5ad +2025-06-18T14:55:05.881Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 380ms - Rows affected: 92 - RequestID: gcsiqd05nep +2025-06-18T14:55:05.981Z [TRACE] order-service - DELETE /api/v1/users - Status: 400 - Response time: 1044ms - IP: 192.168.100.240 - User: user_1057 - RequestID: h2oi3rmsza +2025-06-18T14:55:06.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 340ms - RequestID: 2mq72l50ruk +2025-06-18T14:55:06.181Z [INFO] user-service - Operation: notification_queued - Processing time: 375ms - RequestID: 5fvi0b2yt9a +2025-06-18T14:55:06.281Z [INFO] notification-service - Database DELETE on orders - Execution time: 385ms - Rows affected: 17 - RequestID: iawjm53m75l +2025-06-18T14:55:06.381Z [INFO] auth-service - Operation: cache_miss - Processing time: 673ms - RequestID: irvkgwzal58 +2025-06-18T14:55:06.481Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 323ms - IP: 192.168.189.103 - User: user_1043 - RequestID: r5295nadfbl +2025-06-18T14:55:06.581Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 502 - Response time: 926ms - IP: 192.168.181.225 - User: user_1091 - RequestID: apqor40w3em +2025-06-18T14:55:06.681Z [DEBUG] payment-service - Database INSERT on products - Execution time: 296ms - Rows affected: 44 - RequestID: c77so4844n +2025-06-18T14:55:06.781Z [TRACE] auth-service - Database INSERT on payments - Execution time: 219ms - Rows affected: 51 - RequestID: o4itu9rfamh +2025-06-18T14:55:06.881Z [INFO] user-service - Operation: cache_miss - Processing time: 535ms - RequestID: 1r29lu2xw65 +2025-06-18T14:55:06.981Z [TRACE] user-service - Operation: order_created - Processing time: 699ms - RequestID: he8fs8oi9ye +2025-06-18T14:55:07.081Z [INFO] payment-service - Operation: order_created - Processing time: 617ms - RequestID: ic1k5a75yxo +2025-06-18T14:55:07.181Z [INFO] auth-service - Operation: email_sent - Processing time: 476ms - RequestID: z9xnups03s +2025-06-18T14:55:07.281Z [TRACE] payment-service - Database DELETE on payments - Execution time: 145ms - Rows affected: 64 - RequestID: sw3xm2041fs +2025-06-18T14:55:07.381Z [INFO] auth-service - Auth event: login_success - User: user_1092 - IP: 192.168.144.38 - RequestID: zctv1ms3cpp +2025-06-18T14:55:07.481Z [INFO] order-service - Auth event: login_failed - User: user_1039 - IP: 192.168.232.72 - RequestID: hpdqe7fwx2 +2025-06-18T14:55:07.581Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1207ms - IP: 192.168.97.87 - User: user_1097 - RequestID: 91ighwulcg7 +2025-06-18T14:55:07.681Z [INFO] auth-service - PUT /api/v1/users - Status: 500 - Response time: 1686ms - IP: 192.168.68.128 - User: user_1067 - RequestID: qydkesag72 +2025-06-18T14:55:07.781Z [INFO] order-service - Operation: notification_queued - Processing time: 581ms - RequestID: nxoj5e0m94c +2025-06-18T14:55:07.881Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 5ms - Rows affected: 48 - RequestID: e7jmgq7j73 +2025-06-18T14:55:07.981Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 404 - Response time: 492ms - IP: 192.168.138.123 - User: user_1038 - RequestID: f4gmtmw8bqk +2025-06-18T14:55:08.081Z [INFO] order-service - Auth event: login_success - User: user_1064 - IP: 192.168.167.32 - RequestID: fl2w4f47bnt +2025-06-18T14:55:08.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 296ms - RequestID: xqs2v5niwai +2025-06-18T14:55:08.281Z [TRACE] payment-service - Operation: cache_miss - Processing time: 497ms - RequestID: lwvxojt73d +2025-06-18T14:55:08.381Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 10ms - Rows affected: 9 - RequestID: 0lehroy8ksa +2025-06-18T14:55:08.481Z [INFO] user-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.36.218 - RequestID: ekyr73sg3s4 +2025-06-18T14:55:08.581Z [INFO] auth-service - Operation: inventory_updated - Processing time: 458ms - RequestID: v0prbstkf0b +2025-06-18T14:55:08.681Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 553ms - RequestID: 2qy7rljf7h6 +2025-06-18T14:55:08.781Z [TRACE] auth-service - Auth event: login_success - User: user_1071 - IP: 192.168.159.94 - RequestID: n3yik7k2tuf +2025-06-18T14:55:08.881Z [TRACE] auth-service - Operation: cache_hit - Processing time: 689ms - RequestID: jam1sde40lo +2025-06-18T14:55:08.981Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 100ms - RequestID: ybzoiamm1q +2025-06-18T14:55:09.081Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 25ms - IP: 192.168.53.133 - User: user_1077 - RequestID: xooy6m0ay5 +2025-06-18T14:55:09.181Z [DEBUG] auth-service - Auth event: login_failed - User: user_1002 - IP: 192.168.44.5 - RequestID: f7ud7j6c6m5 +2025-06-18T14:55:09.281Z [DEBUG] notification-service - Database DELETE on users - Execution time: 192ms - Rows affected: 12 - RequestID: 2oj5tvnf7j5 +2025-06-18T14:55:09.381Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1037ms - IP: 192.168.46.63 - User: user_1085 - RequestID: aa9f81t7le +2025-06-18T14:55:09.481Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 27ms - Rows affected: 53 - RequestID: 9h3lttmlnmm +2025-06-18T14:55:09.581Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1445ms - IP: 192.168.141.100 - User: user_1019 - RequestID: 6jqj8p1e7ru +2025-06-18T14:55:09.681Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 423ms - IP: 192.168.104.37 - User: user_1057 - RequestID: edcjvjhte0g +2025-06-18T14:55:09.781Z [TRACE] user-service - Database DELETE on sessions - Execution time: 121ms - Rows affected: 50 - RequestID: rrzjenz1wtc +2025-06-18T14:55:09.881Z [TRACE] payment-service - Auth event: logout - User: user_1044 - IP: 192.168.97.87 - RequestID: bnmakf8qsvm +2025-06-18T14:55:09.981Z [DEBUG] order-service - Auth event: login_failed - User: user_1032 - IP: 192.168.133.7 - RequestID: qhd3m9ntjhb +2025-06-18T14:55:10.081Z [INFO] order-service - Operation: order_created - Processing time: 224ms - RequestID: g2mlwwdhlk +2025-06-18T14:55:10.181Z [DEBUG] order-service - Database SELECT on products - Execution time: 498ms - Rows affected: 81 - RequestID: 2nwt776ucea +2025-06-18T14:55:10.281Z [DEBUG] user-service - Auth event: logout - User: user_1089 - IP: 192.168.242.165 - RequestID: bw7ntxxc57h +2025-06-18T14:55:10.381Z [DEBUG] user-service - Database INSERT on products - Execution time: 216ms - Rows affected: 46 - RequestID: l13300sfxc +2025-06-18T14:55:10.481Z [INFO] order-service - Operation: cache_miss - Processing time: 66ms - RequestID: 33tsmohezom +2025-06-18T14:55:10.581Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 287ms - IP: 192.168.196.226 - User: user_1090 - RequestID: bvkpptk1oyc +2025-06-18T14:55:10.681Z [DEBUG] auth-service - Auth event: logout - User: user_1013 - IP: 192.168.211.72 - RequestID: 5m6n0yfwh3o +2025-06-18T14:55:10.781Z [INFO] inventory-service - Auth event: login_success - User: user_1095 - IP: 192.168.104.37 - RequestID: 2hut20v4k2 +2025-06-18T14:55:10.881Z [INFO] notification-service - Operation: email_sent - Processing time: 1035ms - RequestID: mm6jkls04ja +2025-06-18T14:55:10.981Z [TRACE] order-service - Auth event: login_success - User: user_1026 - IP: 192.168.194.41 - RequestID: y29l8kna3lp +2025-06-18T14:55:11.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 558ms - RequestID: 4uocy1d609a +2025-06-18T14:55:11.181Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 662ms - RequestID: z9j84u18dg +2025-06-18T14:55:11.281Z [INFO] notification-service - Operation: inventory_updated - Processing time: 644ms - RequestID: lesfs6krsm +2025-06-18T14:55:11.381Z [DEBUG] user-service - PATCH /api/v1/users - Status: 400 - Response time: 1099ms - IP: 192.168.159.94 - User: user_1075 - RequestID: b0cdrstakpn +2025-06-18T14:55:11.481Z [INFO] order-service - Database INSERT on users - Execution time: 14ms - Rows affected: 3 - RequestID: fn1hsx4ki +2025-06-18T14:55:11.581Z [INFO] inventory-service - Operation: cache_miss - Processing time: 53ms - RequestID: pqc354yt7fg +2025-06-18T14:55:11.681Z [INFO] auth-service - Operation: email_sent - Processing time: 746ms - RequestID: kk547ndoa6 +2025-06-18T14:55:11.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.1.152 - RequestID: rkm0l2jv6mm +2025-06-18T14:55:11.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1088 - IP: 192.168.1.152 - RequestID: cih03kvtli +2025-06-18T14:55:11.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.167.32 - RequestID: deivk7fitto +2025-06-18T14:55:12.081Z [INFO] user-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.138.123 - RequestID: plmjij2h05n +2025-06-18T14:55:12.181Z [DEBUG] payment-service - Operation: order_created - Processing time: 481ms - RequestID: fk7kepqmzl9 +2025-06-18T14:55:12.281Z [INFO] inventory-service - Database INSERT on products - Execution time: 373ms - Rows affected: 29 - RequestID: qi17yq6u36b +2025-06-18T14:55:12.381Z [TRACE] payment-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.187.199 - RequestID: gbvmohsjjj +2025-06-18T14:55:12.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 328ms - RequestID: q0ao3c1f25b +2025-06-18T14:55:12.581Z [DEBUG] auth-service - PUT /api/v1/users - Status: 502 - Response time: 1658ms - IP: 192.168.113.218 - User: user_1023 - RequestID: 4zwy9zfe6xc +2025-06-18T14:55:12.681Z [INFO] order-service - Operation: email_sent - Processing time: 638ms - RequestID: s8f8eq4cd5d +2025-06-18T14:55:12.781Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 401 - Response time: 1641ms - IP: 192.168.36.218 - User: user_1077 - RequestID: qwwgt96j5k +2025-06-18T14:55:12.881Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 503 - Response time: 754ms - IP: 192.168.235.117 - User: user_1054 - RequestID: im061zse1fn +2025-06-18T14:55:12.981Z [INFO] notification-service - Database UPDATE on products - Execution time: 300ms - Rows affected: 57 - RequestID: 6l0w0pjwip +2025-06-18T14:55:13.081Z [INFO] payment-service - Operation: inventory_updated - Processing time: 988ms - RequestID: nzqx5fpwcpg +2025-06-18T14:55:13.181Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 502 - Response time: 603ms - IP: 192.168.235.117 - User: user_1058 - RequestID: ex82e0u2lso +2025-06-18T14:55:13.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 370ms - RequestID: ec2lsdds8pc +2025-06-18T14:55:13.381Z [INFO] inventory-service - Auth event: password_change - User: user_1037 - IP: 192.168.174.114 - RequestID: trh5vfkcnem +2025-06-18T14:55:13.481Z [INFO] user-service - Auth event: password_change - User: user_1008 - IP: 192.168.189.103 - RequestID: ou2u8u3i2wf +2025-06-18T14:55:13.581Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1682ms - IP: 192.168.85.229 - User: user_1082 - RequestID: 924gcynzl44 +2025-06-18T14:55:13.681Z [INFO] inventory-service - Auth event: logout - User: user_1049 - IP: 192.168.10.184 - RequestID: 68rwb5fm48y +2025-06-18T14:55:13.781Z [TRACE] user-service - Auth event: login_failed - User: user_1036 - IP: 192.168.194.41 - RequestID: srm58jgyjp +2025-06-18T14:55:13.881Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 185ms - Rows affected: 66 - RequestID: wm8cbpp6w0o +2025-06-18T14:55:13.981Z [INFO] auth-service - Database INSERT on payments - Execution time: 109ms - Rows affected: 16 - RequestID: ssvs11187l +2025-06-18T14:55:14.081Z [INFO] auth-service - Database SELECT on users - Execution time: 360ms - Rows affected: 65 - RequestID: odj88wvv3r +2025-06-18T14:55:14.181Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 196ms - RequestID: x6a2ybneno8 +2025-06-18T14:55:14.281Z [INFO] order-service - GET /api/v1/auth/logout - Status: 201 - Response time: 75ms - IP: 192.168.1.152 - User: user_1064 - RequestID: kfuei5q2oq +2025-06-18T14:55:14.381Z [TRACE] auth-service - Auth event: logout - User: user_1084 - IP: 192.168.14.77 - RequestID: bzn1g5gbsz +2025-06-18T14:55:14.481Z [INFO] notification-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.64.33 - RequestID: bqvf0zdrr8 +2025-06-18T14:55:14.581Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.28.146 - RequestID: elqqjidvwk +2025-06-18T14:55:14.681Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 803ms - RequestID: htjhw5luuj5 +2025-06-18T14:55:14.781Z [TRACE] user-service - Operation: cache_hit - Processing time: 100ms - RequestID: 2cym68rmnf7 +2025-06-18T14:55:14.881Z [TRACE] auth-service - Operation: order_created - Processing time: 937ms - RequestID: c0xzdib7mg +2025-06-18T14:55:14.981Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1817ms - IP: 192.168.14.77 - User: user_1009 - RequestID: 7napvp1o4v +2025-06-18T14:55:15.081Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 403 - Response time: 506ms - IP: 192.168.235.117 - User: user_1017 - RequestID: ctoqu4yodpo +2025-06-18T14:55:15.181Z [TRACE] inventory-service - GET /api/v1/orders - Status: 201 - Response time: 472ms - IP: 192.168.97.87 - User: user_1014 - RequestID: jqbvmogojup +2025-06-18T14:55:15.281Z [TRACE] inventory-service - Database INSERT on users - Execution time: 22ms - Rows affected: 93 - RequestID: tr92zkabblc +2025-06-18T14:55:15.381Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 161ms - RequestID: bae52b69rrl +2025-06-18T14:55:15.481Z [TRACE] order-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.44.5 - RequestID: y8qo2is77j +2025-06-18T14:55:15.581Z [INFO] user-service - Operation: inventory_updated - Processing time: 938ms - RequestID: zslsdjxklkf +2025-06-18T14:55:15.681Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 805ms - IP: 192.168.159.94 - User: user_1036 - RequestID: 0u99w5r89xc +2025-06-18T14:55:15.781Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 500 - Response time: 937ms - IP: 192.168.97.87 - User: user_1084 - RequestID: ifl28veqyp +2025-06-18T14:55:15.881Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 663ms - IP: 192.168.97.87 - User: user_1054 - RequestID: qkpgkn6c28 +2025-06-18T14:55:15.981Z [DEBUG] user-service - Database DELETE on payments - Execution time: 171ms - Rows affected: 85 - RequestID: gvgn2qrjlrc +2025-06-18T14:55:16.081Z [DEBUG] order-service - Operation: cache_hit - Processing time: 73ms - RequestID: isswsn9bbgs +2025-06-18T14:55:16.181Z [INFO] order-service - GET /api/v1/auth/logout - Status: 500 - Response time: 256ms - IP: 192.168.232.72 - User: user_1048 - RequestID: 06v2kot68ryf +2025-06-18T14:55:16.281Z [INFO] order-service - POST /api/v1/orders - Status: 401 - Response time: 67ms - IP: 192.168.32.38 - User: user_1025 - RequestID: vi0lwb8f0zn +2025-06-18T14:55:16.381Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 468ms - Rows affected: 71 - RequestID: 9uvygtgahjw +2025-06-18T14:55:16.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.64.33 - RequestID: p1rr545hht +2025-06-18T14:55:16.581Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 162ms - Rows affected: 96 - RequestID: rjv47op9vo +2025-06-18T14:55:16.681Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 200 - Response time: 223ms - IP: 192.168.14.77 - User: user_1008 - RequestID: pfau5fm4o39 +2025-06-18T14:55:16.781Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 401 - Response time: 488ms - IP: 192.168.194.41 - User: user_1056 - RequestID: h17b562qzmf +2025-06-18T14:55:16.881Z [TRACE] payment-service - Operation: cache_hit - Processing time: 509ms - RequestID: l9082ey4f1 +2025-06-18T14:55:16.981Z [TRACE] auth-service - Operation: email_sent - Processing time: 428ms - RequestID: yktu1iewv3m +2025-06-18T14:55:17.081Z [TRACE] user-service - Auth event: password_change - User: user_1056 - IP: 192.168.30.79 - RequestID: ohfa3kntkd +2025-06-18T14:55:17.181Z [TRACE] notification-service - Database INSERT on orders - Execution time: 132ms - Rows affected: 30 - RequestID: h72q7te5rll +2025-06-18T14:55:17.281Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 266ms - Rows affected: 27 - RequestID: jrfn70y9oie +2025-06-18T14:55:17.381Z [DEBUG] auth-service - Auth event: login_failed - User: user_1042 - IP: 192.168.194.41 - RequestID: gm164wgog0v +2025-06-18T14:55:17.481Z [TRACE] user-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.28.146 - RequestID: i4wrgq6vjf +2025-06-18T14:55:17.581Z [DEBUG] notification-service - Auth event: password_change - User: user_1071 - IP: 192.168.159.94 - RequestID: pvkvx9pklr8 +2025-06-18T14:55:17.681Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1740ms - IP: 192.168.30.79 - User: user_1021 - RequestID: zn0feu9odvi +2025-06-18T14:55:17.781Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1823ms - IP: 192.168.167.32 - User: user_1066 - RequestID: opp1mp275w8 +2025-06-18T14:55:17.881Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 69ms - Rows affected: 57 - RequestID: c1uwjg1pupc +2025-06-18T14:55:17.981Z [INFO] notification-service - Auth event: logout - User: user_1021 - IP: 192.168.229.123 - RequestID: xk42dcyljv9 +2025-06-18T14:55:18.081Z [INFO] inventory-service - Database INSERT on orders - Execution time: 287ms - Rows affected: 5 - RequestID: 4gvu2z4cgbc +2025-06-18T14:55:18.181Z [DEBUG] inventory-service - Auth event: password_change - User: user_1040 - IP: 192.168.85.229 - RequestID: 9dl15mybcok +2025-06-18T14:55:18.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1039 - IP: 192.168.174.114 - RequestID: 8baqcf457gc +2025-06-18T14:55:18.381Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 5ms - Rows affected: 2 - RequestID: qg3f4pnw2e7 +2025-06-18T14:55:18.481Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 500 - Response time: 1379ms - IP: 192.168.158.144 - User: user_1067 - RequestID: g9us663o3gl +2025-06-18T14:55:18.581Z [TRACE] order-service - Operation: cache_miss - Processing time: 610ms - RequestID: pzyhpmmdmmn +2025-06-18T14:55:18.681Z [TRACE] payment-service - Database INSERT on payments - Execution time: 406ms - Rows affected: 76 - RequestID: ykwutju9qdj +2025-06-18T14:55:18.781Z [DEBUG] notification-service - Database SELECT on products - Execution time: 84ms - Rows affected: 88 - RequestID: dip4mrnfrfr +2025-06-18T14:55:18.881Z [INFO] order-service - DELETE /api/v1/inventory - Status: 503 - Response time: 533ms - IP: 192.168.85.229 - User: user_1051 - RequestID: po7ajx42ogh +2025-06-18T14:55:18.981Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 404 - Response time: 172ms - IP: 192.168.147.171 - User: user_1022 - RequestID: uby7y5ahhtp +2025-06-18T14:55:19.081Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1378ms - IP: 192.168.53.133 - User: user_1005 - RequestID: uimx6fxex9k +2025-06-18T14:55:19.181Z [TRACE] notification-service - DELETE /api/v1/users - Status: 201 - Response time: 1997ms - IP: 192.168.64.33 - User: user_1060 - RequestID: 23dvmz80e9i +2025-06-18T14:55:19.281Z [INFO] notification-service - Operation: notification_queued - Processing time: 484ms - RequestID: 5itbyd8gr17 +2025-06-18T14:55:19.381Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 401 - Response time: 1047ms - IP: 192.168.242.165 - User: user_1099 - RequestID: uselbekzlu +2025-06-18T14:55:19.481Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 271ms - IP: 192.168.97.87 - User: user_1014 - RequestID: wmd8bm0drtm +2025-06-18T14:55:19.581Z [INFO] auth-service - Auth event: password_change - User: user_1012 - IP: 192.168.13.72 - RequestID: ehrkwq1oc75 +2025-06-18T14:55:19.681Z [INFO] auth-service - Operation: inventory_updated - Processing time: 639ms - RequestID: zx9uzqoxi4b +2025-06-18T14:55:19.781Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 86ms - Rows affected: 99 - RequestID: gqzqnytk3sr +2025-06-18T14:55:19.881Z [TRACE] payment-service - Auth event: password_change - User: user_1019 - IP: 192.168.227.77 - RequestID: rdqqrjusssr +2025-06-18T14:55:19.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1083 - IP: 192.168.227.77 - RequestID: kw12pes1d9r +2025-06-18T14:55:20.081Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 422ms - Rows affected: 85 - RequestID: pdh4v7cbxxj +2025-06-18T14:55:20.181Z [INFO] inventory-service - PUT /api/v1/orders - Status: 503 - Response time: 1620ms - IP: 192.168.79.143 - User: user_1011 - RequestID: l9rt8ic4oc +2025-06-18T14:55:20.281Z [TRACE] payment-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.11.60 - RequestID: d7e6tzw2kzv +2025-06-18T14:55:20.381Z [INFO] order-service - POST /api/v1/auth/login - Status: 403 - Response time: 459ms - IP: 192.168.79.143 - User: user_1005 - RequestID: u56rhnm4e6f +2025-06-18T14:55:20.481Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 463ms - Rows affected: 26 - RequestID: ovt90nmx2el +2025-06-18T14:55:20.581Z [DEBUG] payment-service - Auth event: login_success - User: user_1077 - IP: 192.168.196.226 - RequestID: k18cx6ahvy +2025-06-18T14:55:20.681Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1782ms - IP: 192.168.187.199 - User: user_1055 - RequestID: 81sml049d7g +2025-06-18T14:55:20.781Z [TRACE] auth-service - Database DELETE on orders - Execution time: 111ms - Rows affected: 96 - RequestID: 3yx1udhq96b +2025-06-18T14:55:20.881Z [TRACE] auth-service - Database DELETE on payments - Execution time: 48ms - Rows affected: 21 - RequestID: idtj9hivc8e +2025-06-18T14:55:20.981Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 126ms - Rows affected: 27 - RequestID: 6uatw3lhqzx +2025-06-18T14:55:21.081Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 201 - Response time: 1909ms - IP: 192.168.100.240 - User: user_1050 - RequestID: xpiunk3r18 +2025-06-18T14:55:21.181Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 179ms - Rows affected: 77 - RequestID: jcanrvmxyig +2025-06-18T14:55:21.281Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 683ms - RequestID: eatx9bmj02q +2025-06-18T14:55:21.381Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 437ms - Rows affected: 0 - RequestID: ocvu89560of +2025-06-18T14:55:21.481Z [TRACE] order-service - Operation: inventory_updated - Processing time: 417ms - RequestID: t0l1ew7vlg +2025-06-18T14:55:21.581Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 5ms - Rows affected: 14 - RequestID: keqgcikre7g +2025-06-18T14:55:21.681Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 453ms - Rows affected: 99 - RequestID: me3nd7tvcbd +2025-06-18T14:55:21.781Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 113ms - Rows affected: 0 - RequestID: 5bbgvd8pe4g +2025-06-18T14:55:21.881Z [INFO] auth-service - Auth event: password_change - User: user_1072 - IP: 192.168.181.225 - RequestID: wgkr4ths7pi +2025-06-18T14:55:21.981Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 428ms - Rows affected: 50 - RequestID: 0a2d7vxoy9hd +2025-06-18T14:55:22.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.46.63 - RequestID: hkrda0g40g +2025-06-18T14:55:22.181Z [INFO] notification-service - GET /api/v1/users - Status: 404 - Response time: 668ms - IP: 192.168.79.141 - User: user_1031 - RequestID: m444st26cpj +2025-06-18T14:55:22.281Z [INFO] inventory-service - Database DELETE on payments - Execution time: 380ms - Rows affected: 17 - RequestID: wmw6tzkobh +2025-06-18T14:55:22.381Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 401 - Response time: 994ms - IP: 192.168.79.141 - User: user_1083 - RequestID: jgzutmidtxs +2025-06-18T14:55:22.481Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 198ms - Rows affected: 9 - RequestID: guak5wujcpl +2025-06-18T14:55:22.581Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 804ms - RequestID: 1z5ukmlirfn +2025-06-18T14:55:22.681Z [DEBUG] order-service - Database UPDATE on products - Execution time: 431ms - Rows affected: 95 - RequestID: h7aaqeku5cm +2025-06-18T14:55:22.781Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 725ms - RequestID: ctf6imrxr7 +2025-06-18T14:55:22.881Z [TRACE] notification-service - PUT /api/v1/users - Status: 400 - Response time: 1461ms - IP: 192.168.97.87 - User: user_1011 - RequestID: prwrw27bw0m +2025-06-18T14:55:22.981Z [INFO] auth-service - Operation: order_created - Processing time: 700ms - RequestID: jl60hhgxrp +2025-06-18T14:55:23.081Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 403 - Response time: 248ms - IP: 192.168.174.114 - User: user_1040 - RequestID: hvxhqtf72qd +2025-06-18T14:55:23.181Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 502 - Response time: 1508ms - IP: 192.168.181.225 - User: user_1074 - RequestID: pyvzx5ppgwq +2025-06-18T14:55:23.281Z [DEBUG] auth-service - Auth event: login_success - User: user_1049 - IP: 192.168.174.114 - RequestID: ao9896o7uu9 +2025-06-18T14:55:23.381Z [INFO] notification-service - Operation: inventory_updated - Processing time: 1046ms - RequestID: qlec288a27 +2025-06-18T14:55:23.481Z [TRACE] notification-service - Operation: payment_processed - Processing time: 1018ms - RequestID: t13zz9pblq +2025-06-18T14:55:23.581Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 201 - Response time: 636ms - IP: 192.168.79.141 - User: user_1045 - RequestID: r3y1ake8ogm +2025-06-18T14:55:23.681Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 403 - Response time: 688ms - IP: 192.168.240.169 - User: user_1053 - RequestID: 50b8yj6sc4p +2025-06-18T14:55:23.781Z [DEBUG] user-service - Auth event: login_success - User: user_1073 - IP: 192.168.247.134 - RequestID: 47ddgv4dwo2 +2025-06-18T14:55:23.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1094 - IP: 192.168.44.5 - RequestID: ylgkricse5k +2025-06-18T14:55:23.981Z [TRACE] order-service - Operation: email_sent - Processing time: 320ms - RequestID: 8cruj5lhzyj +2025-06-18T14:55:24.081Z [TRACE] user-service - Database UPDATE on orders - Execution time: 410ms - Rows affected: 0 - RequestID: f6kapid5uyv +2025-06-18T14:55:24.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1061 - IP: 192.168.44.5 - RequestID: htxpph5ftxi +2025-06-18T14:55:24.281Z [TRACE] auth-service - Auth event: login_failed - User: user_1008 - IP: 192.168.28.146 - RequestID: om9zlabxu3p +2025-06-18T14:55:24.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1039 - IP: 192.168.174.114 - RequestID: 2sgy89ljbhn +2025-06-18T14:55:24.481Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1101ms - IP: 192.168.13.72 - User: user_1037 - RequestID: iw2o2frh3lk +2025-06-18T14:55:24.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 743ms - RequestID: lvt45eh797j +2025-06-18T14:55:24.681Z [INFO] auth-service - Auth event: login_failed - User: user_1071 - IP: 192.168.211.72 - RequestID: 7r6bqu5xejv +2025-06-18T14:55:24.781Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 259ms - RequestID: eggn82rxu5 +2025-06-18T14:55:24.881Z [TRACE] order-service - Database DELETE on users - Execution time: 217ms - Rows affected: 61 - RequestID: wzgeuxcdfvi +2025-06-18T14:55:24.981Z [TRACE] inventory-service - Auth event: logout - User: user_1099 - IP: 192.168.79.143 - RequestID: 93b1w4hkdei +2025-06-18T14:55:25.081Z [TRACE] payment-service - Auth event: logout - User: user_1064 - IP: 192.168.144.38 - RequestID: 47d2fjp7j8r +2025-06-18T14:55:25.181Z [TRACE] user-service - Operation: cache_miss - Processing time: 951ms - RequestID: q80e3yf7xx +2025-06-18T14:55:25.281Z [TRACE] auth-service - Database SELECT on users - Execution time: 375ms - Rows affected: 42 - RequestID: 402x6rtapfe +2025-06-18T14:55:25.381Z [TRACE] inventory-service - Operation: order_created - Processing time: 1008ms - RequestID: u6vjfuzy6o +2025-06-18T14:55:25.481Z [TRACE] inventory-service - Auth event: login_failed - User: user_1080 - IP: 192.168.100.240 - RequestID: ygxnms9vk9e +2025-06-18T14:55:25.581Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 412ms - RequestID: dbh1gw40u79 +2025-06-18T14:55:25.681Z [TRACE] user-service - Operation: payment_processed - Processing time: 592ms - RequestID: ptn8pwdyvmp +2025-06-18T14:55:25.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 991ms - RequestID: x7fnd1kpnd +2025-06-18T14:55:25.881Z [INFO] order-service - Database DELETE on users - Execution time: 356ms - Rows affected: 29 - RequestID: 0fbkcoolyn9v +2025-06-18T14:55:25.981Z [TRACE] order-service - Operation: order_created - Processing time: 81ms - RequestID: tlvljfj58co +2025-06-18T14:55:26.081Z [TRACE] auth-service - Database INSERT on products - Execution time: 104ms - Rows affected: 22 - RequestID: 5ng66m083hc +2025-06-18T14:55:26.181Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 291ms - RequestID: g7nt3kpjhji +2025-06-18T14:55:26.281Z [TRACE] notification-service - Database INSERT on products - Execution time: 213ms - Rows affected: 25 - RequestID: 66s63aspzk +2025-06-18T14:55:26.381Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 288ms - Rows affected: 87 - RequestID: whatukch68b +2025-06-18T14:55:26.481Z [TRACE] payment-service - Operation: payment_processed - Processing time: 405ms - RequestID: l8v4hl1a2wo +2025-06-18T14:55:26.581Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 201 - Response time: 683ms - IP: 192.168.133.7 - User: user_1013 - RequestID: 3tne70smvp2 +2025-06-18T14:55:26.681Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 547ms - IP: 192.168.174.114 - User: user_1030 - RequestID: n60dgkf3fvs +2025-06-18T14:55:26.781Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 329ms - RequestID: ikqswcbr2i +2025-06-18T14:55:26.881Z [DEBUG] user-service - Database UPDATE on products - Execution time: 47ms - Rows affected: 18 - RequestID: 362pej5ovlv +2025-06-18T14:55:26.981Z [INFO] payment-service - Auth event: login_success - User: user_1005 - IP: 192.168.138.123 - RequestID: ywmyg13f6d +2025-06-18T14:55:27.081Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 477ms - Rows affected: 64 - RequestID: mwilp2svg9 +2025-06-18T14:55:27.181Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 500 - Response time: 700ms - IP: 192.168.36.218 - User: user_1038 - RequestID: njr2lk7nacf +2025-06-18T14:55:27.281Z [TRACE] user-service - Operation: email_sent - Processing time: 831ms - RequestID: 346t5nawpie +2025-06-18T14:55:27.381Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 469ms - Rows affected: 85 - RequestID: stzlhk7ksod +2025-06-18T14:55:27.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 126ms - RequestID: qck4sz5vl1 +2025-06-18T14:55:27.581Z [INFO] user-service - Auth event: logout - User: user_1033 - IP: 192.168.229.123 - RequestID: hrkw5qe0uuw +2025-06-18T14:55:27.681Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 325ms - Rows affected: 73 - RequestID: 9ymhlo1l2ql +2025-06-18T14:55:27.781Z [INFO] user-service - GET /api/v1/inventory - Status: 201 - Response time: 588ms - IP: 192.168.138.123 - User: user_1086 - RequestID: onjlx616zil +2025-06-18T14:55:27.881Z [DEBUG] order-service - Operation: payment_processed - Processing time: 61ms - RequestID: 6sezw310v2 +2025-06-18T14:55:27.981Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 401 - Response time: 1261ms - IP: 192.168.147.171 - User: user_1009 - RequestID: zvh9xitms09 +2025-06-18T14:55:28.081Z [INFO] order-service - Database INSERT on payments - Execution time: 351ms - Rows affected: 52 - RequestID: 91169krzz2g +2025-06-18T14:55:28.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 624ms - RequestID: xh96vdj8ey +2025-06-18T14:55:28.281Z [INFO] order-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1548ms - IP: 192.168.138.123 - User: user_1001 - RequestID: nre8ld8ue6 +2025-06-18T14:55:28.381Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 438ms - RequestID: idc9mvh5mw +2025-06-18T14:55:28.481Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1559ms - IP: 192.168.147.171 - User: user_1045 - RequestID: hukckwqklbs +2025-06-18T14:55:28.581Z [DEBUG] notification-service - GET /api/v1/orders - Status: 502 - Response time: 1025ms - IP: 192.168.138.123 - User: user_1056 - RequestID: yt6dxjf5eps +2025-06-18T14:55:28.681Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 502 - Response time: 597ms - IP: 192.168.227.77 - User: user_1054 - RequestID: wrpu27dbs2a +2025-06-18T14:55:28.781Z [TRACE] payment-service - Database SELECT on products - Execution time: 360ms - Rows affected: 53 - RequestID: 8g3q29tc2ty +2025-06-18T14:55:28.881Z [TRACE] auth-service - Database DELETE on products - Execution time: 474ms - Rows affected: 98 - RequestID: a2m5u3ae38 +2025-06-18T14:55:28.981Z [TRACE] order-service - DELETE /api/v1/users - Status: 500 - Response time: 1572ms - IP: 192.168.187.199 - User: user_1058 - RequestID: ikwcio28uz +2025-06-18T14:55:29.081Z [TRACE] notification-service - Auth event: password_change - User: user_1024 - IP: 192.168.159.94 - RequestID: 6k030zqdvj3 +2025-06-18T14:55:29.181Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 114ms - Rows affected: 28 - RequestID: onn3s0487ns +2025-06-18T14:55:29.281Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 934ms - RequestID: 11ptq461suto +2025-06-18T14:55:29.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 829ms - RequestID: fmbd3aihba +2025-06-18T14:55:29.481Z [INFO] user-service - Database UPDATE on products - Execution time: 364ms - Rows affected: 23 - RequestID: ji39178qx4a +2025-06-18T14:55:29.581Z [DEBUG] order-service - PUT /api/v1/payments - Status: 404 - Response time: 180ms - IP: 192.168.235.117 - User: user_1092 - RequestID: s18iv043mk +2025-06-18T14:55:29.681Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 400 - Response time: 1174ms - IP: 192.168.104.37 - User: user_1064 - RequestID: ewztjt801gi +2025-06-18T14:55:29.781Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 420ms - Rows affected: 77 - RequestID: 4z2ovue2ggg +2025-06-18T14:55:29.881Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 480ms - Rows affected: 35 - RequestID: ali9p0truz +2025-06-18T14:55:29.981Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 982ms - RequestID: k3bkc2z8rih +2025-06-18T14:55:30.081Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 135ms - RequestID: jeh03j0j61 +2025-06-18T14:55:30.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1049 - IP: 192.168.242.165 - RequestID: i5vru7esvxq +2025-06-18T14:55:30.281Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 98ms - Rows affected: 47 - RequestID: 3f0cm181j9t +2025-06-18T14:55:30.381Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 126ms - Rows affected: 73 - RequestID: awduhefdhu +2025-06-18T14:55:30.481Z [TRACE] user-service - Database SELECT on orders - Execution time: 186ms - Rows affected: 58 - RequestID: m06pm1iwtk +2025-06-18T14:55:30.581Z [DEBUG] order-service - Operation: payment_processed - Processing time: 60ms - RequestID: cpjhombjcm7 +2025-06-18T14:55:30.681Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 861ms - RequestID: q3rwv8h0lea +2025-06-18T14:55:30.781Z [INFO] notification-service - PATCH /api/v1/users - Status: 200 - Response time: 526ms - IP: 192.168.211.72 - User: user_1064 - RequestID: qiohrpw53rf +2025-06-18T14:55:30.881Z [DEBUG] payment-service - POST /api/v1/orders - Status: 200 - Response time: 804ms - IP: 192.168.144.38 - User: user_1087 - RequestID: p3zi1nlhc5 +2025-06-18T14:55:30.981Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 503 - Response time: 973ms - IP: 192.168.97.87 - User: user_1000 - RequestID: 0gpqalfa530v +2025-06-18T14:55:31.081Z [INFO] payment-service - Operation: payment_processed - Processing time: 557ms - RequestID: 3zupjxntasy +2025-06-18T14:55:31.181Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 403 - Response time: 1701ms - IP: 192.168.11.60 - User: user_1062 - RequestID: ras3tzdjsu +2025-06-18T14:55:31.281Z [INFO] payment-service - Auth event: login_failed - User: user_1011 - IP: 192.168.196.226 - RequestID: kmrh1pziq3l +2025-06-18T14:55:31.381Z [INFO] inventory-service - PUT /api/v1/payments - Status: 500 - Response time: 690ms - IP: 192.168.113.218 - User: user_1057 - RequestID: glsi0lmpin6 +2025-06-18T14:55:31.481Z [INFO] auth-service - POST /api/v1/inventory - Status: 500 - Response time: 1907ms - IP: 192.168.174.114 - User: user_1058 - RequestID: voac5tp9wve +2025-06-18T14:55:31.581Z [INFO] payment-service - Operation: order_created - Processing time: 182ms - RequestID: 9pcz4tq7zpw +2025-06-18T14:55:31.681Z [INFO] payment-service - Database DELETE on sessions - Execution time: 327ms - Rows affected: 92 - RequestID: wmbvo2lv44c +2025-06-18T14:55:31.781Z [INFO] order-service - DELETE /api/v1/inventory - Status: 502 - Response time: 907ms - IP: 192.168.1.152 - User: user_1059 - RequestID: 02s2l37paiy5 +2025-06-18T14:55:31.881Z [TRACE] payment-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.14.77 - RequestID: nfguf32u1kr +2025-06-18T14:55:31.981Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 351ms - Rows affected: 58 - RequestID: rk6wbo0vab9 +2025-06-18T14:55:32.081Z [TRACE] order-service - Auth event: logout - User: user_1070 - IP: 192.168.194.41 - RequestID: w6bvaqwiqf +2025-06-18T14:55:32.181Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 200 - Response time: 1695ms - IP: 192.168.79.143 - User: user_1066 - RequestID: bo483z1lzjs +2025-06-18T14:55:32.281Z [DEBUG] auth-service - Auth event: logout - User: user_1008 - IP: 192.168.104.37 - RequestID: icwugmxdzwg +2025-06-18T14:55:32.381Z [DEBUG] user-service - PUT /api/v1/payments - Status: 502 - Response time: 1682ms - IP: 192.168.1.152 - User: user_1016 - RequestID: 3ab6ftxztcg +2025-06-18T14:55:32.481Z [INFO] notification-service - Database UPDATE on products - Execution time: 367ms - Rows affected: 11 - RequestID: 881t9qiz068 +2025-06-18T14:55:32.581Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 201 - Response time: 589ms - IP: 192.168.240.169 - User: user_1090 - RequestID: x8c7we3asl +2025-06-18T14:55:32.681Z [INFO] order-service - Operation: cache_miss - Processing time: 306ms - RequestID: 4h143z2xslh +2025-06-18T14:55:32.781Z [TRACE] payment-service - Auth event: logout - User: user_1012 - IP: 192.168.144.38 - RequestID: zh6fdmduer +2025-06-18T14:55:32.881Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 477ms - Rows affected: 86 - RequestID: j3pawa8lmyd +2025-06-18T14:55:32.981Z [TRACE] auth-service - Database INSERT on payments - Execution time: 233ms - Rows affected: 9 - RequestID: 8826jpu0r6q +2025-06-18T14:55:33.081Z [DEBUG] user-service - Operation: order_created - Processing time: 697ms - RequestID: p0igvv6oafa +2025-06-18T14:55:33.181Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 423ms - Rows affected: 11 - RequestID: nyjsi5xnj3 +2025-06-18T14:55:33.281Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 371ms - RequestID: eevu8ytrt4l +2025-06-18T14:55:33.381Z [DEBUG] notification-service - Database SELECT on products - Execution time: 321ms - Rows affected: 87 - RequestID: tnv67zb6o7 +2025-06-18T14:55:33.481Z [INFO] order-service - DELETE /api/v1/payments - Status: 503 - Response time: 150ms - IP: 192.168.104.37 - User: user_1010 - RequestID: dlbc0b201rl +2025-06-18T14:55:33.581Z [INFO] notification-service - PUT /api/v1/payments - Status: 500 - Response time: 1116ms - IP: 192.168.138.123 - User: user_1033 - RequestID: qzhhc3t4z2h +2025-06-18T14:55:33.681Z [INFO] order-service - Operation: email_sent - Processing time: 245ms - RequestID: e1v4lngm1rv +2025-06-18T14:55:33.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 170ms - RequestID: j8xeggpzber +2025-06-18T14:55:33.881Z [INFO] auth-service - Database UPDATE on users - Execution time: 76ms - Rows affected: 10 - RequestID: 1xs9nxjn3zx +2025-06-18T14:55:33.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.1.152 - RequestID: t2kf0ntuice +2025-06-18T14:55:34.081Z [INFO] inventory-service - PUT /api/v1/payments - Status: 500 - Response time: 1887ms - IP: 192.168.144.38 - User: user_1040 - RequestID: phxdda799k8 +2025-06-18T14:55:34.181Z [DEBUG] user-service - Database INSERT on users - Execution time: 490ms - Rows affected: 42 - RequestID: eh2p8b957to +2025-06-18T14:55:34.281Z [INFO] order-service - Database SELECT on sessions - Execution time: 312ms - Rows affected: 56 - RequestID: 16jrwei7vsu +2025-06-18T14:55:34.381Z [INFO] order-service - Auth event: login_success - User: user_1090 - IP: 192.168.14.77 - RequestID: nv420jsbz08 +2025-06-18T14:55:34.481Z [INFO] inventory-service - DELETE /api/v1/users - Status: 200 - Response time: 80ms - IP: 192.168.141.100 - User: user_1098 - RequestID: 9kk178ejkt +2025-06-18T14:55:34.581Z [INFO] notification-service - Database INSERT on orders - Execution time: 176ms - Rows affected: 11 - RequestID: jade8w1n6wa +2025-06-18T14:55:34.681Z [DEBUG] order-service - Auth event: logout - User: user_1005 - IP: 192.168.247.134 - RequestID: fn0egwislvp +2025-06-18T14:55:34.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.10.184 - RequestID: slsi1xi4in +2025-06-18T14:55:34.881Z [TRACE] payment-service - Operation: email_sent - Processing time: 788ms - RequestID: 4y3qaoivgcp +2025-06-18T14:55:34.981Z [DEBUG] inventory-service - Auth event: login_success - User: user_1098 - IP: 192.168.181.225 - RequestID: tgsdjy9p02o +2025-06-18T14:55:35.081Z [INFO] order-service - Database INSERT on products - Execution time: 277ms - Rows affected: 45 - RequestID: meci3fllji +2025-06-18T14:55:35.181Z [TRACE] user-service - Database INSERT on users - Execution time: 341ms - Rows affected: 40 - RequestID: wpfcqon5ii9 +2025-06-18T14:55:35.281Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 747ms - RequestID: 002tibo1txd5c +2025-06-18T14:55:35.381Z [INFO] inventory-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.11.60 - RequestID: wjaw83kxvg +2025-06-18T14:55:35.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1041 - IP: 192.168.68.158 - RequestID: pga5h20ah5j +2025-06-18T14:55:35.581Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1949ms - IP: 192.168.211.72 - User: user_1062 - RequestID: 9slmr224b9l +2025-06-18T14:55:35.681Z [TRACE] notification-service - Database UPDATE on products - Execution time: 441ms - Rows affected: 9 - RequestID: g6l5a4fm3d7 +2025-06-18T14:55:35.781Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 201 - Response time: 378ms - IP: 192.168.28.146 - User: user_1008 - RequestID: 1i5ww9muxwo +2025-06-18T14:55:35.881Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 400 - Response time: 12ms - IP: 192.168.187.199 - User: user_1026 - RequestID: mgwcgu6fod9 +2025-06-18T14:55:35.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1011 - IP: 192.168.81.206 - RequestID: w312ap8jd8j +2025-06-18T14:55:36.081Z [TRACE] notification-service - Operation: payment_processed - Processing time: 348ms - RequestID: 3j6szegr6g4 +2025-06-18T14:55:36.181Z [TRACE] order-service - GET /api/v1/inventory - Status: 200 - Response time: 82ms - IP: 192.168.113.218 - User: user_1099 - RequestID: pnxvq00a2p9 +2025-06-18T14:55:36.281Z [INFO] notification-service - Database DELETE on orders - Execution time: 276ms - Rows affected: 37 - RequestID: 36bwv2zl7bj +2025-06-18T14:55:36.381Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 51ms - Rows affected: 77 - RequestID: al5od6e0hz +2025-06-18T14:55:36.481Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 233ms - Rows affected: 93 - RequestID: hojs8j9ne1u +2025-06-18T14:55:36.581Z [DEBUG] payment-service - Auth event: logout - User: user_1008 - IP: 192.168.242.165 - RequestID: 73lqsk08edd +2025-06-18T14:55:36.681Z [INFO] user-service - Operation: email_sent - Processing time: 238ms - RequestID: 7asolrvfsva +2025-06-18T14:55:36.781Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 314ms - RequestID: khsb6hup54 +2025-06-18T14:55:36.881Z [TRACE] payment-service - Auth event: password_change - User: user_1052 - IP: 192.168.97.87 - RequestID: nfp3ofs8vz +2025-06-18T14:55:36.981Z [INFO] payment-service - Database SELECT on orders - Execution time: 225ms - Rows affected: 98 - RequestID: q9308mhqe +2025-06-18T14:55:37.081Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 636ms - RequestID: s04rk7gc7t +2025-06-18T14:55:37.181Z [INFO] notification-service - Auth event: logout - User: user_1092 - IP: 192.168.113.218 - RequestID: 06q610u6xfv +2025-06-18T14:55:37.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.159.94 - RequestID: cl3rphz34zv +2025-06-18T14:55:37.381Z [TRACE] auth-service - GET /api/v1/orders - Status: 400 - Response time: 1726ms - IP: 192.168.196.226 - User: user_1071 - RequestID: zgg8gu4eovh +2025-06-18T14:55:37.481Z [INFO] user-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.242.165 - RequestID: 03294e4ay3y9 +2025-06-18T14:55:37.581Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 403 - Response time: 408ms - IP: 192.168.64.33 - User: user_1080 - RequestID: o00yc1gd15i +2025-06-18T14:55:37.681Z [TRACE] order-service - Database UPDATE on users - Execution time: 363ms - Rows affected: 57 - RequestID: 5nargf3f1op +2025-06-18T14:55:37.781Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 892ms - RequestID: 3f9z7w3xuo8 +2025-06-18T14:55:37.881Z [DEBUG] order-service - Database INSERT on users - Execution time: 417ms - Rows affected: 19 - RequestID: 4lke896rwn2 +2025-06-18T14:55:37.981Z [INFO] inventory-service - Operation: notification_queued - Processing time: 884ms - RequestID: 46ac1acz2bz +2025-06-18T14:55:38.081Z [TRACE] payment-service - Operation: email_sent - Processing time: 288ms - RequestID: dbj9nwdhpto +2025-06-18T14:55:38.181Z [TRACE] user-service - Auth event: login_failed - User: user_1080 - IP: 192.168.158.144 - RequestID: 5otxqgwgzi4 +2025-06-18T14:55:38.281Z [TRACE] order-service - Database INSERT on products - Execution time: 377ms - Rows affected: 53 - RequestID: wqlylntfwlt +2025-06-18T14:55:38.381Z [INFO] auth-service - PUT /api/v1/users - Status: 503 - Response time: 918ms - IP: 192.168.113.218 - User: user_1058 - RequestID: h39k1cv6qxl +2025-06-18T14:55:38.481Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1754ms - IP: 192.168.85.229 - User: user_1076 - RequestID: 6ehhfeho4si +2025-06-18T14:55:38.581Z [INFO] payment-service - Operation: email_sent - Processing time: 270ms - RequestID: 7r4gntnp85s +2025-06-18T14:55:38.681Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 404 - Response time: 434ms - IP: 192.168.68.128 - User: user_1019 - RequestID: 58779c1mfev +2025-06-18T14:55:38.781Z [TRACE] payment-service - Auth event: password_change - User: user_1017 - IP: 192.168.235.117 - RequestID: pa7g31f38p +2025-06-18T14:55:38.881Z [DEBUG] notification-service - Operation: order_created - Processing time: 180ms - RequestID: gmx7vd94drt +2025-06-18T14:55:38.981Z [DEBUG] notification-service - Auth event: logout - User: user_1070 - IP: 192.168.170.215 - RequestID: y9qbfjqigqt +2025-06-18T14:55:39.081Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1801ms - IP: 192.168.79.116 - User: user_1030 - RequestID: qve94r70psg +2025-06-18T14:55:39.181Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1674ms - IP: 192.168.167.32 - User: user_1095 - RequestID: n9bg4q0hv5 +2025-06-18T14:55:39.281Z [TRACE] user-service - Operation: email_sent - Processing time: 758ms - RequestID: 8c95tghappq +2025-06-18T14:55:39.381Z [TRACE] auth-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.181.225 - RequestID: 6l64noz3ki9 +2025-06-18T14:55:39.481Z [INFO] auth-service - Auth event: login_success - User: user_1085 - IP: 192.168.174.114 - RequestID: oprql4yinjl +2025-06-18T14:55:39.581Z [DEBUG] notification-service - PUT /api/v1/users - Status: 500 - Response time: 1754ms - IP: 192.168.167.32 - User: user_1044 - RequestID: 1w7gtrktmdz +2025-06-18T14:55:39.681Z [INFO] auth-service - Database SELECT on payments - Execution time: 363ms - Rows affected: 72 - RequestID: 3yjh7dxfq12 +2025-06-18T14:55:39.781Z [INFO] user-service - Database DELETE on orders - Execution time: 24ms - Rows affected: 41 - RequestID: jsun3yt1wos +2025-06-18T14:55:39.881Z [DEBUG] user-service - PUT /api/v1/orders - Status: 404 - Response time: 1552ms - IP: 192.168.147.171 - User: user_1081 - RequestID: 7gy71ku3oc +2025-06-18T14:55:39.981Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 550ms - IP: 192.168.232.72 - User: user_1000 - RequestID: 1k73gxjlf2 +2025-06-18T14:55:40.081Z [TRACE] payment-service - Auth event: password_change - User: user_1069 - IP: 192.168.13.72 - RequestID: s7933zqdcif +2025-06-18T14:55:40.181Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 400 - Response time: 382ms - IP: 192.168.32.38 - User: user_1008 - RequestID: otw9zsfhtx +2025-06-18T14:55:40.281Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 403 - Response time: 78ms - IP: 192.168.189.103 - User: user_1041 - RequestID: e2fnx9l6jjm +2025-06-18T14:55:40.381Z [INFO] auth-service - Auth event: password_change - User: user_1016 - IP: 192.168.227.233 - RequestID: 9ddkuc34jl +2025-06-18T14:55:40.481Z [INFO] payment-service - Operation: payment_processed - Processing time: 244ms - RequestID: 13k6bj1c6mqn +2025-06-18T14:55:40.581Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 160ms - RequestID: gyyccjy8vx6 +2025-06-18T14:55:40.681Z [INFO] auth-service - POST /api/v1/orders - Status: 200 - Response time: 1231ms - IP: 192.168.104.37 - User: user_1030 - RequestID: nu1os3fvx9 +2025-06-18T14:55:40.781Z [INFO] order-service - Operation: order_created - Processing time: 756ms - RequestID: mgpw4uuj1x +2025-06-18T14:55:40.881Z [TRACE] inventory-service - Operation: email_sent - Processing time: 479ms - RequestID: pdyf40xthgo +2025-06-18T14:55:40.981Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 1705ms - IP: 192.168.31.117 - User: user_1029 - RequestID: jcfq0tp9g2 +2025-06-18T14:55:41.081Z [DEBUG] user-service - POST /api/v1/users - Status: 201 - Response time: 1218ms - IP: 192.168.147.171 - User: user_1059 - RequestID: v14b04w0o88 +2025-06-18T14:55:41.181Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 600ms - RequestID: 2u6w4vkeqx7 +2025-06-18T14:55:41.281Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 400 - Response time: 335ms - IP: 192.168.64.33 - User: user_1031 - RequestID: qdkcnx7gu9k +2025-06-18T14:55:41.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 50ms - RequestID: rfzsy2wcq5m +2025-06-18T14:55:41.481Z [INFO] payment-service - Database INSERT on products - Execution time: 146ms - Rows affected: 23 - RequestID: h1980v2hw4k +2025-06-18T14:55:41.581Z [TRACE] auth-service - Operation: cache_hit - Processing time: 652ms - RequestID: 97fbdaslxxt +2025-06-18T14:55:41.681Z [TRACE] payment-service - Operation: notification_queued - Processing time: 775ms - RequestID: sjudamvsp5 +2025-06-18T14:55:41.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1040 - IP: 192.168.44.5 - RequestID: 0es35lls6sne +2025-06-18T14:55:41.881Z [DEBUG] user-service - Database UPDATE on products - Execution time: 229ms - Rows affected: 89 - RequestID: mdeghanfb4 +2025-06-18T14:55:41.981Z [TRACE] inventory-service - Auth event: login_success - User: user_1082 - IP: 192.168.100.240 - RequestID: l59k14buric +2025-06-18T14:55:42.081Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 218ms - RequestID: jinj6wovwy +2025-06-18T14:55:42.181Z [TRACE] user-service - Operation: order_created - Processing time: 642ms - RequestID: pl2pm17i0g +2025-06-18T14:55:42.281Z [TRACE] inventory-service - Operation: order_created - Processing time: 637ms - RequestID: z8g8u7qdjx +2025-06-18T14:55:42.381Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 679ms - RequestID: emp7p8yxjy +2025-06-18T14:55:42.481Z [INFO] user-service - Database UPDATE on orders - Execution time: 433ms - Rows affected: 1 - RequestID: e07ybexcjib +2025-06-18T14:55:42.581Z [INFO] payment-service - Auth event: password_change - User: user_1074 - IP: 192.168.85.229 - RequestID: jvxuhvyhumn +2025-06-18T14:55:42.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 567ms - RequestID: ql1wpqypfed +2025-06-18T14:55:42.781Z [INFO] payment-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.46.63 - RequestID: 7lifh41h9ch +2025-06-18T14:55:42.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1031 - IP: 192.168.64.33 - RequestID: nina9bfrlq +2025-06-18T14:55:42.981Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 403ms - Rows affected: 99 - RequestID: 6jdutdc48ab +2025-06-18T14:55:43.081Z [DEBUG] payment-service - Auth event: logout - User: user_1099 - IP: 192.168.227.77 - RequestID: yxfjdq7v7sk +2025-06-18T14:55:43.181Z [DEBUG] order-service - Operation: email_sent - Processing time: 283ms - RequestID: tqz41toa41 +2025-06-18T14:55:43.281Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 172ms - RequestID: n76j9rz3iz +2025-06-18T14:55:43.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 211ms - RequestID: ln1r9ovgg9 +2025-06-18T14:55:43.481Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 231ms - RequestID: 6s8s21o7ddk +2025-06-18T14:55:43.581Z [INFO] inventory-service - Operation: cache_miss - Processing time: 352ms - RequestID: icz0lxz9gwb +2025-06-18T14:55:43.681Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 747ms - IP: 192.168.174.114 - User: user_1077 - RequestID: m6j9vgo315n +2025-06-18T14:55:43.781Z [INFO] notification-service - Operation: inventory_updated - Processing time: 98ms - RequestID: nzs2auhnvxl +2025-06-18T14:55:43.881Z [TRACE] inventory-service - Operation: order_created - Processing time: 1036ms - RequestID: hr7vz29uk0j +2025-06-18T14:55:43.981Z [INFO] inventory-service - Database SELECT on users - Execution time: 65ms - Rows affected: 3 - RequestID: g0x32qilb9d +2025-06-18T14:55:44.081Z [DEBUG] auth-service - Auth event: logout - User: user_1064 - IP: 192.168.11.60 - RequestID: dvm3iusvxz4 +2025-06-18T14:55:44.181Z [DEBUG] payment-service - Database INSERT on products - Execution time: 386ms - Rows affected: 33 - RequestID: 8idp9hhpm9p +2025-06-18T14:55:44.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.36.218 - RequestID: k2bz826mmwe +2025-06-18T14:55:44.381Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 200 - Response time: 65ms - IP: 192.168.170.215 - User: user_1020 - RequestID: d9hjvv6l6bs +2025-06-18T14:55:44.481Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 503 - Response time: 949ms - IP: 192.168.211.72 - User: user_1010 - RequestID: fuxvnoqqyo +2025-06-18T14:55:44.581Z [INFO] inventory-service - POST /api/v1/users - Status: 201 - Response time: 891ms - IP: 192.168.133.7 - User: user_1012 - RequestID: l4n1wfx7tz +2025-06-18T14:55:44.681Z [INFO] order-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.174.114 - RequestID: d6ksvu8vpm5 +2025-06-18T14:55:44.781Z [INFO] user-service - Database DELETE on products - Execution time: 166ms - Rows affected: 47 - RequestID: wruj6ymv0n +2025-06-18T14:55:44.881Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 1348ms - IP: 192.168.79.116 - User: user_1033 - RequestID: q3oyu04k2s +2025-06-18T14:55:44.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.159.94 - RequestID: k7ibmtmih5 +2025-06-18T14:55:45.081Z [TRACE] user-service - Operation: email_sent - Processing time: 389ms - RequestID: bgakmguix8a +2025-06-18T14:55:45.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1031 - IP: 192.168.144.38 - RequestID: vwm8emqboeb +2025-06-18T14:55:45.281Z [TRACE] notification-service - Operation: cache_miss - Processing time: 316ms - RequestID: 9feydvzdca +2025-06-18T14:55:45.381Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 984ms - RequestID: ipztc43tfn +2025-06-18T14:55:45.481Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 418ms - IP: 192.168.10.184 - User: user_1064 - RequestID: e39zf9pitg +2025-06-18T14:55:45.581Z [INFO] payment-service - Operation: payment_processed - Processing time: 66ms - RequestID: yxblzfii9n +2025-06-18T14:55:45.681Z [DEBUG] user-service - Database INSERT on payments - Execution time: 86ms - Rows affected: 29 - RequestID: pz7ubohobvf +2025-06-18T14:55:45.781Z [TRACE] auth-service - Auth event: logout - User: user_1027 - IP: 192.168.211.72 - RequestID: 1pn07kpydju +2025-06-18T14:55:45.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 766ms - RequestID: g8laotfriog +2025-06-18T14:55:45.981Z [INFO] order-service - Database DELETE on users - Execution time: 381ms - Rows affected: 47 - RequestID: mvhrtcpwal +2025-06-18T14:55:46.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.147.171 - RequestID: k190hz0l92g +2025-06-18T14:55:46.181Z [INFO] auth-service - Auth event: logout - User: user_1042 - IP: 192.168.242.165 - RequestID: 3oy0emrphj6 +2025-06-18T14:55:46.281Z [DEBUG] payment-service - Auth event: login_success - User: user_1077 - IP: 192.168.32.38 - RequestID: kprr7vob1gj +2025-06-18T14:55:46.381Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 502 - Response time: 485ms - IP: 192.168.194.41 - User: user_1046 - RequestID: 0d5jlptqdz4o +2025-06-18T14:55:46.481Z [INFO] auth-service - Auth event: logout - User: user_1022 - IP: 192.168.181.225 - RequestID: aisuxaqlz7 +2025-06-18T14:55:46.581Z [TRACE] notification-service - Auth event: password_change - User: user_1046 - IP: 192.168.144.38 - RequestID: q64b8m98ler +2025-06-18T14:55:46.681Z [DEBUG] order-service - Operation: email_sent - Processing time: 75ms - RequestID: 9x78ggd871s +2025-06-18T14:55:46.781Z [DEBUG] order-service - Auth event: logout - User: user_1027 - IP: 192.168.13.72 - RequestID: 4hirwazvpr +2025-06-18T14:55:46.881Z [DEBUG] order-service - Database UPDATE on users - Execution time: 100ms - Rows affected: 52 - RequestID: wg9vjaikawl +2025-06-18T14:55:46.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 575ms - RequestID: 6rcwngx10es +2025-06-18T14:55:47.081Z [INFO] order-service - Operation: payment_processed - Processing time: 807ms - RequestID: bdbgnwfrkhq +2025-06-18T14:55:47.181Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 111ms - Rows affected: 63 - RequestID: aica2mt97jt +2025-06-18T14:55:47.281Z [TRACE] payment-service - Database UPDATE on products - Execution time: 139ms - Rows affected: 69 - RequestID: 0eoondta8ozf +2025-06-18T14:55:47.381Z [INFO] auth-service - Database UPDATE on users - Execution time: 38ms - Rows affected: 37 - RequestID: 84sqn2vym5m +2025-06-18T14:55:47.481Z [TRACE] payment-service - Auth event: login_failed - User: user_1047 - IP: 192.168.138.123 - RequestID: me6t96nagns +2025-06-18T14:55:47.581Z [TRACE] auth-service - Database DELETE on products - Execution time: 65ms - Rows affected: 88 - RequestID: 2tywltmipy +2025-06-18T14:55:47.681Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 648ms - IP: 192.168.79.143 - User: user_1092 - RequestID: d2xv0xsrzx +2025-06-18T14:55:47.781Z [DEBUG] payment-service - GET /api/v1/users - Status: 502 - Response time: 891ms - IP: 192.168.159.94 - User: user_1080 - RequestID: 3vr5nbhrvys +2025-06-18T14:55:47.881Z [INFO] user-service - Auth event: login_success - User: user_1067 - IP: 192.168.235.117 - RequestID: 0whvjvabwyde +2025-06-18T14:55:47.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.68.158 - RequestID: 2a37vk3oqg4 +2025-06-18T14:55:48.081Z [TRACE] auth-service - Database INSERT on users - Execution time: 142ms - Rows affected: 38 - RequestID: oc4mbyz6bq +2025-06-18T14:55:48.181Z [INFO] order-service - GET /api/v1/orders - Status: 200 - Response time: 323ms - IP: 192.168.44.5 - User: user_1000 - RequestID: on2wp4m372f +2025-06-18T14:55:48.281Z [INFO] notification-service - Operation: order_created - Processing time: 54ms - RequestID: ok0q9z030pp +2025-06-18T14:55:48.381Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 222ms - RequestID: w05pxibbn9 +2025-06-18T14:55:48.481Z [INFO] user-service - POST /api/v1/auth/login - Status: 403 - Response time: 1946ms - IP: 192.168.211.72 - User: user_1056 - RequestID: a0jyi01pjj +2025-06-18T14:55:48.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 1038ms - RequestID: ols4vt9avc +2025-06-18T14:55:48.681Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 500 - Response time: 176ms - IP: 192.168.227.233 - User: user_1038 - RequestID: 1ny886p57t8 +2025-06-18T14:55:48.781Z [INFO] inventory-service - Operation: payment_processed - Processing time: 963ms - RequestID: 6ducpta6j6 +2025-06-18T14:55:48.881Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 23ms - Rows affected: 18 - RequestID: 7q2ccfexyvb +2025-06-18T14:55:48.981Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 400 - Response time: 744ms - IP: 192.168.79.143 - User: user_1070 - RequestID: 0ks9noxzkeq +2025-06-18T14:55:49.081Z [TRACE] user-service - Database INSERT on products - Execution time: 408ms - Rows affected: 57 - RequestID: 3d6xy4n5usb +2025-06-18T14:55:49.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1007 - IP: 192.168.174.114 - RequestID: gbfox9fw6z +2025-06-18T14:55:49.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.194.41 - RequestID: sthn4djsxlm +2025-06-18T14:55:49.381Z [TRACE] inventory-service - Database INSERT on users - Execution time: 39ms - Rows affected: 68 - RequestID: w3g33k4zj7 +2025-06-18T14:55:49.481Z [INFO] inventory-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.133.7 - RequestID: nbl8iunud3f +2025-06-18T14:55:49.581Z [DEBUG] user-service - POST /api/v1/payments - Status: 403 - Response time: 1731ms - IP: 192.168.189.103 - User: user_1076 - RequestID: jcaf3yqk9eo +2025-06-18T14:55:49.681Z [INFO] notification-service - DELETE /api/v1/users - Status: 401 - Response time: 615ms - IP: 192.168.170.215 - User: user_1083 - RequestID: 24umve3m4f8 +2025-06-18T14:55:49.781Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 400 - Response time: 826ms - IP: 192.168.79.143 - User: user_1073 - RequestID: fr73o6yeqtn +2025-06-18T14:55:49.881Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 883ms - RequestID: 7ns3wrlk25o +2025-06-18T14:55:49.981Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 212ms - Rows affected: 73 - RequestID: 2dic5wciqye +2025-06-18T14:55:50.081Z [TRACE] notification-service - Auth event: logout - User: user_1067 - IP: 192.168.144.38 - RequestID: zy6sqe9mhg +2025-06-18T14:55:50.181Z [INFO] order-service - Database SELECT on products - Execution time: 279ms - Rows affected: 27 - RequestID: ozijvx96xd +2025-06-18T14:55:50.281Z [INFO] auth-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.28.146 - RequestID: 6uucuy1wfzd +2025-06-18T14:55:50.381Z [INFO] notification-service - Operation: payment_processed - Processing time: 405ms - RequestID: u0lzdsgsp9g +2025-06-18T14:55:50.481Z [INFO] inventory-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.11.60 - RequestID: d68e75wdvb +2025-06-18T14:55:50.581Z [TRACE] order-service - Auth event: password_change - User: user_1040 - IP: 192.168.85.229 - RequestID: d9da7qp0ozi +2025-06-18T14:55:50.681Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 404 - Response time: 756ms - IP: 192.168.232.72 - User: user_1005 - RequestID: s1q3leounco +2025-06-18T14:55:50.781Z [DEBUG] user-service - Database SELECT on orders - Execution time: 70ms - Rows affected: 9 - RequestID: tqe1km28yq +2025-06-18T14:55:50.881Z [DEBUG] user-service - Operation: email_sent - Processing time: 197ms - RequestID: 9f69nd5tl9u +2025-06-18T14:55:50.981Z [TRACE] user-service - PATCH /api/v1/payments - Status: 201 - Response time: 1172ms - IP: 192.168.159.94 - User: user_1011 - RequestID: uo9omtavz3j +2025-06-18T14:55:51.081Z [TRACE] order-service - Operation: cache_miss - Processing time: 622ms - RequestID: otxi8f8954 +2025-06-18T14:55:51.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 806ms - RequestID: 35fg2m9714b +2025-06-18T14:55:51.281Z [TRACE] user-service - Operation: order_created - Processing time: 264ms - RequestID: 17vt2rcq3ar +2025-06-18T14:55:51.381Z [TRACE] order-service - Auth event: login_failed - User: user_1051 - IP: 192.168.170.215 - RequestID: hujmnqslx7n +2025-06-18T14:55:51.481Z [INFO] notification-service - Database INSERT on users - Execution time: 398ms - Rows affected: 42 - RequestID: arz43kc5t7i +2025-06-18T14:55:51.581Z [TRACE] notification-service - PATCH /api/v1/users - Status: 200 - Response time: 70ms - IP: 192.168.11.60 - User: user_1050 - RequestID: 9o0izrpn6 +2025-06-18T14:55:51.681Z [DEBUG] user-service - Database DELETE on orders - Execution time: 20ms - Rows affected: 3 - RequestID: jxex1azz4t +2025-06-18T14:55:51.781Z [INFO] inventory-service - Database DELETE on orders - Execution time: 368ms - Rows affected: 79 - RequestID: 734p4kwyf58 +2025-06-18T14:55:51.881Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 246ms - RequestID: pzip03c19j +2025-06-18T14:55:51.981Z [DEBUG] notification-service - Auth event: logout - User: user_1029 - IP: 192.168.133.7 - RequestID: nvjy2fa7z7 +2025-06-18T14:55:52.081Z [INFO] inventory-service - Operation: payment_processed - Processing time: 518ms - RequestID: dcgquyt6ql6 +2025-06-18T14:55:52.181Z [INFO] payment-service - PUT /api/v1/payments - Status: 500 - Response time: 298ms - IP: 192.168.36.218 - User: user_1006 - RequestID: sounjh9wknd +2025-06-18T14:55:52.281Z [DEBUG] user-service - Operation: notification_queued - Processing time: 384ms - RequestID: 580k8qp2zqj +2025-06-18T14:55:52.381Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 404 - Response time: 906ms - IP: 192.168.232.72 - User: user_1042 - RequestID: ruan4h5huy +2025-06-18T14:55:52.481Z [INFO] payment-service - Operation: order_created - Processing time: 756ms - RequestID: b5ii4rs6665 +2025-06-18T14:55:52.581Z [DEBUG] user-service - Auth event: password_change - User: user_1026 - IP: 192.168.167.32 - RequestID: 9rbhb4e9y2v +2025-06-18T14:55:52.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.79.143 - RequestID: hfdta39fym +2025-06-18T14:55:52.781Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 257ms - RequestID: do2e8fgq33s +2025-06-18T14:55:52.881Z [TRACE] inventory-service - Auth event: login_success - User: user_1084 - IP: 192.168.170.215 - RequestID: s8401nkoqog +2025-06-18T14:55:52.981Z [INFO] order-service - Database DELETE on sessions - Execution time: 477ms - Rows affected: 42 - RequestID: xh5f9e3b9fq +2025-06-18T14:55:53.081Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 538ms - RequestID: cyc1pd5u5i4 +2025-06-18T14:55:53.181Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 249ms - IP: 192.168.10.184 - User: user_1068 - RequestID: 29y6g97jfua +2025-06-18T14:55:53.281Z [TRACE] order-service - Auth event: login_success - User: user_1080 - IP: 192.168.158.144 - RequestID: erimr2kumk8 +2025-06-18T14:55:53.381Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 197ms - Rows affected: 60 - RequestID: 6jqn5g6byma +2025-06-18T14:55:53.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 168ms - RequestID: rcfqo6udywo +2025-06-18T14:55:53.581Z [TRACE] order-service - PUT /api/v1/payments - Status: 404 - Response time: 435ms - IP: 192.168.53.133 - User: user_1092 - RequestID: smj9ozhzan +2025-06-18T14:55:53.681Z [DEBUG] auth-service - Auth event: login_failed - User: user_1063 - IP: 192.168.211.72 - RequestID: ha5s9wx0i5t +2025-06-18T14:55:53.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.13.72 - RequestID: rke8lx1g3w +2025-06-18T14:55:53.881Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 137ms - Rows affected: 33 - RequestID: 6ey974dcikn +2025-06-18T14:55:53.981Z [INFO] notification-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.211.72 - RequestID: mf6ier9txnl +2025-06-18T14:55:54.081Z [INFO] notification-service - Auth event: password_change - User: user_1071 - IP: 192.168.44.5 - RequestID: rwbo9qme4w +2025-06-18T14:55:54.181Z [INFO] inventory-service - Operation: email_sent - Processing time: 924ms - RequestID: bwe15qhb0pe +2025-06-18T14:55:54.281Z [TRACE] order-service - Auth event: login_success - User: user_1045 - IP: 192.168.133.7 - RequestID: cuteyio54u +2025-06-18T14:55:54.381Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 115ms - Rows affected: 77 - RequestID: 35j3udrdyhr +2025-06-18T14:55:54.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.31.117 - RequestID: perdob95ain +2025-06-18T14:55:54.581Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 500 - Response time: 1657ms - IP: 192.168.1.152 - User: user_1097 - RequestID: fzysceu8c07 +2025-06-18T14:55:54.681Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 665ms - IP: 192.168.31.117 - User: user_1010 - RequestID: byf6b47h3ud +2025-06-18T14:55:54.781Z [INFO] user-service - Auth event: logout - User: user_1027 - IP: 192.168.133.7 - RequestID: umyu7375kxh +2025-06-18T14:55:54.881Z [TRACE] notification-service - Database DELETE on products - Execution time: 97ms - Rows affected: 55 - RequestID: aq2t53es6o +2025-06-18T14:55:54.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 1010ms - RequestID: y29fmcbqe59 +2025-06-18T14:55:55.081Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 503 - Response time: 317ms - IP: 192.168.30.79 - User: user_1003 - RequestID: m6y6mp54i5g +2025-06-18T14:55:55.181Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 201 - Response time: 480ms - IP: 192.168.133.7 - User: user_1065 - RequestID: 1fx9aomcjxui +2025-06-18T14:55:55.281Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 568ms - RequestID: k6ykr89zq3 +2025-06-18T14:55:55.381Z [TRACE] order-service - POST /api/v1/payments - Status: 404 - Response time: 207ms - IP: 192.168.138.123 - User: user_1013 - RequestID: ixjzsgfhpi9 +2025-06-18T14:55:55.481Z [TRACE] auth-service - Database DELETE on users - Execution time: 494ms - Rows affected: 20 - RequestID: fi3ipp8i1lh +2025-06-18T14:55:55.581Z [DEBUG] inventory-service - Auth event: login_success - User: user_1017 - IP: 192.168.97.87 - RequestID: 65yd4z4guz7 +2025-06-18T14:55:55.681Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 165ms - IP: 192.168.44.5 - User: user_1057 - RequestID: uik0oxe787r +2025-06-18T14:55:55.781Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 726ms - RequestID: zsj514cdrln +2025-06-18T14:55:55.881Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 163ms - RequestID: anknphaoe7 +2025-06-18T14:55:55.981Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 502 - Response time: 54ms - IP: 192.168.79.141 - User: user_1034 - RequestID: tgcsvqcgbc +2025-06-18T14:55:56.081Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 643ms - IP: 192.168.158.144 - User: user_1048 - RequestID: 0cpq3iyelo2v +2025-06-18T14:55:56.181Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1315ms - IP: 192.168.247.134 - User: user_1018 - RequestID: ste8dxeyjg +2025-06-18T14:55:56.281Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 320ms - Rows affected: 71 - RequestID: dzme2tlpg6k +2025-06-18T14:55:56.381Z [TRACE] auth-service - Database INSERT on payments - Execution time: 92ms - Rows affected: 28 - RequestID: wjoj43bpl4c +2025-06-18T14:55:56.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.79.143 - RequestID: 3h9pxoe2muc +2025-06-18T14:55:56.581Z [INFO] user-service - PATCH /api/v1/inventory - Status: 502 - Response time: 591ms - IP: 192.168.79.143 - User: user_1029 - RequestID: a4z3505b1vh +2025-06-18T14:55:56.681Z [INFO] order-service - DELETE /api/v1/payments - Status: 404 - Response time: 532ms - IP: 192.168.227.77 - User: user_1063 - RequestID: 9jdkovfm4ud +2025-06-18T14:55:56.781Z [TRACE] order-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.167.32 - RequestID: w3ai8m9wag8 +2025-06-18T14:55:56.881Z [TRACE] order-service - Auth event: login_success - User: user_1045 - IP: 192.168.144.38 - RequestID: gs86hgu7rs7 +2025-06-18T14:55:56.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1042 - IP: 192.168.229.123 - RequestID: 6nqbxhyb4al +2025-06-18T14:55:57.081Z [INFO] payment-service - Operation: email_sent - Processing time: 363ms - RequestID: x0d36x44wq +2025-06-18T14:55:57.181Z [TRACE] auth-service - Database UPDATE on products - Execution time: 71ms - Rows affected: 65 - RequestID: z327dvz1qv +2025-06-18T14:55:57.281Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 17ms - Rows affected: 86 - RequestID: hvic9eqe42k +2025-06-18T14:55:57.381Z [TRACE] payment-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.81.206 - RequestID: 9197tnutg7f +2025-06-18T14:55:57.481Z [TRACE] auth-service - Database INSERT on orders - Execution time: 109ms - Rows affected: 14 - RequestID: sxy01n4q48 +2025-06-18T14:55:57.581Z [INFO] user-service - Auth event: login_failed - User: user_1067 - IP: 192.168.1.152 - RequestID: h51w8ersj2 +2025-06-18T14:55:57.681Z [TRACE] user-service - Auth event: password_change - User: user_1020 - IP: 192.168.240.169 - RequestID: l1xerpdxvy +2025-06-18T14:55:57.781Z [TRACE] user-service - DELETE /api/v1/payments - Status: 201 - Response time: 755ms - IP: 192.168.11.60 - User: user_1008 - RequestID: to42jyr8yii +2025-06-18T14:55:57.881Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 773ms - RequestID: 8768kjxgree +2025-06-18T14:55:57.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1045 - IP: 192.168.229.123 - RequestID: ojwhubkgd5d +2025-06-18T14:55:58.081Z [DEBUG] user-service - Operation: payment_processed - Processing time: 754ms - RequestID: oiwp95q6o5 +2025-06-18T14:55:58.181Z [TRACE] order-service - PATCH /api/v1/orders - Status: 403 - Response time: 1783ms - IP: 192.168.33.76 - User: user_1083 - RequestID: 7yo2adq0kt +2025-06-18T14:55:58.281Z [TRACE] order-service - Database SELECT on sessions - Execution time: 284ms - Rows affected: 5 - RequestID: actvl3vvb9b +2025-06-18T14:55:58.381Z [INFO] auth-service - Operation: webhook_sent - Processing time: 390ms - RequestID: v3jxn7zxy7 +2025-06-18T14:55:58.481Z [TRACE] notification-service - Auth event: password_change - User: user_1012 - IP: 192.168.158.144 - RequestID: g07er2c4tjl +2025-06-18T14:55:58.581Z [TRACE] auth-service - Operation: payment_processed - Processing time: 899ms - RequestID: pxmbs38ttvs +2025-06-18T14:55:58.681Z [INFO] order-service - Auth event: login_failed - User: user_1006 - IP: 192.168.100.240 - RequestID: 07rb9441qboq +2025-06-18T14:55:58.781Z [TRACE] user-service - Operation: order_created - Processing time: 725ms - RequestID: ngvlu25yez +2025-06-18T14:55:58.881Z [DEBUG] payment-service - Auth event: login_failed - User: user_1067 - IP: 192.168.227.77 - RequestID: qmpctshau4o +2025-06-18T14:55:58.981Z [DEBUG] user-service - Database UPDATE on products - Execution time: 86ms - Rows affected: 62 - RequestID: 4nc3wjolwzt +2025-06-18T14:55:59.081Z [TRACE] notification-service - Operation: order_created - Processing time: 974ms - RequestID: t3xl6f3tyz +2025-06-18T14:55:59.181Z [DEBUG] notification-service - Operation: email_sent - Processing time: 1010ms - RequestID: gdlr9tkjl2 +2025-06-18T14:55:59.281Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 47ms - Rows affected: 79 - RequestID: kpvds414y2 +2025-06-18T14:55:59.381Z [TRACE] auth-service - Database DELETE on payments - Execution time: 135ms - Rows affected: 58 - RequestID: lxv2lh81i6j +2025-06-18T14:55:59.481Z [INFO] payment-service - Database UPDATE on products - Execution time: 232ms - Rows affected: 95 - RequestID: hqiu0jv4mik +2025-06-18T14:55:59.581Z [TRACE] notification-service - Auth event: password_change - User: user_1047 - IP: 192.168.97.87 - RequestID: 4o6442qypto +2025-06-18T14:55:59.681Z [INFO] order-service - Database INSERT on users - Execution time: 33ms - Rows affected: 32 - RequestID: 8ve9nw444w3 +2025-06-18T14:55:59.781Z [DEBUG] notification-service - Operation: order_created - Processing time: 1002ms - RequestID: 9uwkk7ajn5q +2025-06-18T14:55:59.881Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 404ms - Rows affected: 1 - RequestID: tm7thkc1lt +2025-06-18T14:55:59.981Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 161ms - Rows affected: 12 - RequestID: 70543t0g15l +2025-06-18T14:56:00.081Z [INFO] user-service - Database INSERT on orders - Execution time: 390ms - Rows affected: 68 - RequestID: h4na1oa95o6 +2025-06-18T14:56:00.181Z [TRACE] order-service - GET /api/v1/inventory - Status: 401 - Response time: 2002ms - IP: 192.168.138.123 - User: user_1097 - RequestID: cy7xourody6 +2025-06-18T14:56:00.281Z [INFO] auth-service - Operation: payment_processed - Processing time: 443ms - RequestID: z6pq5ftc7q9 +2025-06-18T14:56:00.381Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1055 - IP: 192.168.229.123 - RequestID: xye9djjnx1h +2025-06-18T14:56:00.481Z [TRACE] payment-service - Auth event: password_change - User: user_1010 - IP: 192.168.79.143 - RequestID: ann2j5daxvf +2025-06-18T14:56:00.581Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 441ms - Rows affected: 28 - RequestID: 5h0pnvgcura +2025-06-18T14:56:00.681Z [INFO] auth-service - Auth event: login_failed - User: user_1016 - IP: 192.168.189.103 - RequestID: hu5qbwy7e8 +2025-06-18T14:56:00.781Z [INFO] inventory-service - Database SELECT on orders - Execution time: 265ms - Rows affected: 94 - RequestID: zvne2msmge +2025-06-18T14:56:00.881Z [INFO] auth-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.194.41 - RequestID: uuk5au700ce +2025-06-18T14:56:00.981Z [TRACE] payment-service - Auth event: login_success - User: user_1033 - IP: 192.168.68.158 - RequestID: ysyryakands +2025-06-18T14:56:01.081Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 201 - Response time: 497ms - IP: 192.168.79.143 - User: user_1029 - RequestID: c66dp9ondbe +2025-06-18T14:56:01.181Z [TRACE] payment-service - Database SELECT on orders - Execution time: 457ms - Rows affected: 73 - RequestID: hn3lq0bi72m +2025-06-18T14:56:01.281Z [INFO] payment-service - Operation: email_sent - Processing time: 928ms - RequestID: xhtb616b58h +2025-06-18T14:56:01.381Z [TRACE] payment-service - Auth event: login_success - User: user_1070 - IP: 192.168.68.128 - RequestID: enxamxehx1 +2025-06-18T14:56:01.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1024 - IP: 192.168.97.87 - RequestID: l4ocgp3amo +2025-06-18T14:56:01.581Z [TRACE] auth-service - Database UPDATE on products - Execution time: 26ms - Rows affected: 60 - RequestID: ezuspqmvmt +2025-06-18T14:56:01.681Z [DEBUG] notification-service - Database INSERT on users - Execution time: 289ms - Rows affected: 1 - RequestID: 92zt54m7jp +2025-06-18T14:56:01.781Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 256ms - Rows affected: 53 - RequestID: wquutcelerp +2025-06-18T14:56:01.881Z [TRACE] notification-service - Auth event: password_change - User: user_1053 - IP: 192.168.79.141 - RequestID: 8ov3y4ffpcf +2025-06-18T14:56:01.981Z [DEBUG] user-service - Operation: notification_queued - Processing time: 196ms - RequestID: cxwhmv25x06 +2025-06-18T14:56:02.081Z [INFO] user-service - Auth event: login_failed - User: user_1051 - IP: 192.168.227.77 - RequestID: e0kyg3gjts6 +2025-06-18T14:56:02.181Z [TRACE] order-service - Database UPDATE on products - Execution time: 490ms - Rows affected: 24 - RequestID: 3krmhec3bew +2025-06-18T14:56:02.281Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 298ms - RequestID: wia3bnbqd7o +2025-06-18T14:56:02.381Z [TRACE] user-service - Database DELETE on orders - Execution time: 423ms - Rows affected: 35 - RequestID: 77oah9gxd9a +2025-06-18T14:56:02.481Z [INFO] user-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.85.229 - RequestID: bcoxeuqcj1i +2025-06-18T14:56:02.581Z [TRACE] payment-service - Database DELETE on payments - Execution time: 159ms - Rows affected: 1 - RequestID: 80c0l3avi6j +2025-06-18T14:56:02.681Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 502 - Response time: 1997ms - IP: 192.168.242.165 - User: user_1068 - RequestID: ttrtg8ukb +2025-06-18T14:56:02.781Z [INFO] order-service - Auth event: logout - User: user_1097 - IP: 192.168.235.117 - RequestID: rjsclvhko9 +2025-06-18T14:56:02.881Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 481ms - RequestID: j6q5bxhr8s +2025-06-18T14:56:02.981Z [INFO] payment-service - Operation: cache_miss - Processing time: 800ms - RequestID: lstsqlo38um +2025-06-18T14:56:03.081Z [INFO] order-service - Database INSERT on sessions - Execution time: 133ms - Rows affected: 48 - RequestID: esk3064ekj +2025-06-18T14:56:03.181Z [INFO] user-service - POST /api/v1/orders - Status: 200 - Response time: 98ms - IP: 192.168.81.206 - User: user_1059 - RequestID: 0axen8lxzcak +2025-06-18T14:56:03.281Z [INFO] user-service - PATCH /api/v1/payments - Status: 404 - Response time: 1600ms - IP: 192.168.181.225 - User: user_1033 - RequestID: us2kfcnxw4q +2025-06-18T14:56:03.381Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 529ms - RequestID: ey0ig3agv6 +2025-06-18T14:56:03.481Z [DEBUG] payment-service - GET /api/v1/orders - Status: 403 - Response time: 1215ms - IP: 192.168.81.206 - User: user_1031 - RequestID: yslvxoyk2vq +2025-06-18T14:56:03.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.133.7 - RequestID: ebg2df4rdw6 +2025-06-18T14:56:03.681Z [DEBUG] auth-service - POST /api/v1/orders - Status: 500 - Response time: 640ms - IP: 192.168.194.41 - User: user_1095 - RequestID: 44x4ehidh13 +2025-06-18T14:56:03.781Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 240ms - Rows affected: 68 - RequestID: 5scjbbkpho +2025-06-18T14:56:03.881Z [DEBUG] user-service - Database UPDATE on users - Execution time: 186ms - Rows affected: 75 - RequestID: 86x8tlakurd +2025-06-18T14:56:03.981Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 328ms - RequestID: fyclkjikhql +2025-06-18T14:56:04.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.68.128 - RequestID: xui0qxhhr8 +2025-06-18T14:56:04.181Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 971ms - IP: 192.168.211.72 - User: user_1075 - RequestID: ms6k9qlnf7 +2025-06-18T14:56:04.281Z [INFO] notification-service - Operation: payment_processed - Processing time: 237ms - RequestID: tjbbib8ldgp +2025-06-18T14:56:04.381Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 452ms - Rows affected: 8 - RequestID: tnc6ma1ko7 +2025-06-18T14:56:04.481Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 403 - Response time: 274ms - IP: 192.168.187.199 - User: user_1025 - RequestID: brqt2x7cglh +2025-06-18T14:56:04.581Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1845ms - IP: 192.168.64.33 - User: user_1043 - RequestID: d6luwp5bx9v +2025-06-18T14:56:04.681Z [INFO] auth-service - Database DELETE on orders - Execution time: 369ms - Rows affected: 52 - RequestID: 5v68ab43xyf +2025-06-18T14:56:04.781Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 891ms - RequestID: pm4mgaaur1q +2025-06-18T14:56:04.881Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 249ms - Rows affected: 46 - RequestID: 0th05lxxqyim +2025-06-18T14:56:04.981Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 405ms - Rows affected: 33 - RequestID: ivnsavzvyh +2025-06-18T14:56:05.081Z [TRACE] payment-service - Auth event: login_success - User: user_1078 - IP: 192.168.46.63 - RequestID: t0x9zydhxup +2025-06-18T14:56:05.181Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 400 - Response time: 1116ms - IP: 192.168.32.38 - User: user_1089 - RequestID: inb4h7ldlzk +2025-06-18T14:56:05.281Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 277ms - Rows affected: 38 - RequestID: nc1o6aljbi +2025-06-18T14:56:05.381Z [DEBUG] user-service - GET /api/v1/payments - Status: 404 - Response time: 407ms - IP: 192.168.32.38 - User: user_1012 - RequestID: d3ymdeg0vom +2025-06-18T14:56:05.481Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 502 - Response time: 1142ms - IP: 192.168.68.158 - User: user_1024 - RequestID: 3ukg0f4u0h9 +2025-06-18T14:56:05.581Z [DEBUG] user-service - Auth event: login_success - User: user_1076 - IP: 192.168.187.199 - RequestID: 4lwytyhp64d +2025-06-18T14:56:05.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 750ms - RequestID: x5c588tdmk +2025-06-18T14:56:05.781Z [INFO] auth-service - Operation: notification_queued - Processing time: 728ms - RequestID: kf302f1vz4n +2025-06-18T14:56:05.881Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 35ms - Rows affected: 73 - RequestID: 9oxci00f85 +2025-06-18T14:56:05.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1024 - IP: 192.168.100.240 - RequestID: 4stcx7u51zu +2025-06-18T14:56:06.081Z [DEBUG] payment-service - Auth event: password_change - User: user_1070 - IP: 192.168.189.103 - RequestID: d4wkqgzkwrd +2025-06-18T14:56:06.181Z [TRACE] user-service - Auth event: login_failed - User: user_1001 - IP: 192.168.141.100 - RequestID: 9ijdvc2kiae +2025-06-18T14:56:06.281Z [INFO] order-service - DELETE /api/v1/orders - Status: 500 - Response time: 263ms - IP: 192.168.227.233 - User: user_1061 - RequestID: 9kfrsxxl6dl +2025-06-18T14:56:06.381Z [TRACE] order-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.242.165 - RequestID: wc55yz9ev4 +2025-06-18T14:56:06.481Z [DEBUG] order-service - Auth event: password_change - User: user_1059 - IP: 192.168.33.76 - RequestID: j5eotwexsva +2025-06-18T14:56:06.581Z [INFO] user-service - Database INSERT on products - Execution time: 443ms - Rows affected: 90 - RequestID: mquf9gxx7w +2025-06-18T14:56:06.681Z [DEBUG] user-service - Database INSERT on users - Execution time: 39ms - Rows affected: 40 - RequestID: pjt46q9g2o +2025-06-18T14:56:06.781Z [TRACE] notification-service - Auth event: logout - User: user_1033 - IP: 192.168.227.77 - RequestID: sxilsn64qv +2025-06-18T14:56:06.881Z [TRACE] auth-service - Operation: cache_miss - Processing time: 581ms - RequestID: 5bl7lbboxh3 +2025-06-18T14:56:06.981Z [TRACE] inventory-service - Auth event: login_success - User: user_1057 - IP: 192.168.30.79 - RequestID: 1jhgl1qbm9i +2025-06-18T14:56:07.081Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 503 - Response time: 247ms - IP: 192.168.141.100 - User: user_1025 - RequestID: v9eru37enpi +2025-06-18T14:56:07.181Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 630ms - RequestID: w33b39c1h2 +2025-06-18T14:56:07.281Z [TRACE] payment-service - POST /api/v1/inventory - Status: 503 - Response time: 150ms - IP: 192.168.235.117 - User: user_1053 - RequestID: zygy2hydtzc +2025-06-18T14:56:07.381Z [INFO] user-service - PATCH /api/v1/orders - Status: 403 - Response time: 640ms - IP: 192.168.79.116 - User: user_1025 - RequestID: 6tua7vjqvu9 +2025-06-18T14:56:07.481Z [INFO] user-service - Database SELECT on sessions - Execution time: 222ms - Rows affected: 36 - RequestID: al6vg86cp3o +2025-06-18T14:56:07.581Z [TRACE] user-service - GET /api/v1/users - Status: 404 - Response time: 188ms - IP: 192.168.33.76 - User: user_1075 - RequestID: 9iyzbdtb6zs +2025-06-18T14:56:07.681Z [INFO] order-service - POST /api/v1/payments - Status: 404 - Response time: 1385ms - IP: 192.168.79.141 - User: user_1063 - RequestID: ujs0fo7oyx7 +2025-06-18T14:56:07.781Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 502 - Response time: 360ms - IP: 192.168.159.94 - User: user_1048 - RequestID: 4av3egwebn3 +2025-06-18T14:56:07.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1038 - IP: 192.168.30.79 - RequestID: w3stw0r737c +2025-06-18T14:56:07.981Z [TRACE] user-service - Auth event: password_change - User: user_1075 - IP: 192.168.30.79 - RequestID: i3lm2tujveb +2025-06-18T14:56:08.081Z [TRACE] order-service - Operation: email_sent - Processing time: 90ms - RequestID: 5wxqihutdc +2025-06-18T14:56:08.181Z [DEBUG] auth-service - GET /api/v1/payments - Status: 500 - Response time: 128ms - IP: 192.168.33.76 - User: user_1030 - RequestID: tphkzgvc5os +2025-06-18T14:56:08.281Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 319ms - Rows affected: 16 - RequestID: d5kqrz4yckc +2025-06-18T14:56:08.381Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 187ms - Rows affected: 40 - RequestID: eulciku6eo +2025-06-18T14:56:08.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.68.158 - RequestID: 6pv46gliw4 +2025-06-18T14:56:08.581Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 241ms - RequestID: cjgt18cdqkt +2025-06-18T14:56:08.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1076 - IP: 192.168.242.165 - RequestID: t2km8pimeml +2025-06-18T14:56:08.781Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 322ms - Rows affected: 15 - RequestID: jat4lfkx7go +2025-06-18T14:56:08.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1064 - IP: 192.168.100.240 - RequestID: w80ys0ybplr +2025-06-18T14:56:08.981Z [TRACE] user-service - Database SELECT on users - Execution time: 57ms - Rows affected: 65 - RequestID: dcwhajoqxch +2025-06-18T14:56:09.081Z [INFO] inventory-service - Database UPDATE on users - Execution time: 98ms - Rows affected: 95 - RequestID: tviskh7ymqf +2025-06-18T14:56:09.181Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 6ms - Rows affected: 73 - RequestID: vslt12966s +2025-06-18T14:56:09.281Z [DEBUG] notification-service - Database INSERT on users - Execution time: 170ms - Rows affected: 89 - RequestID: nt8g9bftz6a +2025-06-18T14:56:09.381Z [TRACE] auth-service - Auth event: password_change - User: user_1035 - IP: 192.168.11.60 - RequestID: ok22vaheuha +2025-06-18T14:56:09.481Z [TRACE] notification-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.46.63 - RequestID: m6gxuuh24h +2025-06-18T14:56:09.581Z [INFO] notification-service - Operation: inventory_updated - Processing time: 856ms - RequestID: jnp241vxokb +2025-06-18T14:56:09.681Z [INFO] user-service - Operation: webhook_sent - Processing time: 60ms - RequestID: 1dvllqoas6 +2025-06-18T14:56:09.781Z [TRACE] user-service - Database DELETE on orders - Execution time: 27ms - Rows affected: 79 - RequestID: scetyrk9qod +2025-06-18T14:56:09.881Z [TRACE] auth-service - Database SELECT on orders - Execution time: 467ms - Rows affected: 92 - RequestID: 42n64h6jviz +2025-06-18T14:56:09.981Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1116ms - IP: 192.168.10.184 - User: user_1039 - RequestID: yu21y3fxmod +2025-06-18T14:56:10.081Z [TRACE] order-service - Auth event: logout - User: user_1003 - IP: 192.168.44.5 - RequestID: 8omxfvz1yvf +2025-06-18T14:56:10.181Z [TRACE] user-service - Auth event: password_change - User: user_1042 - IP: 192.168.113.218 - RequestID: xg88v2585ti +2025-06-18T14:56:10.281Z [DEBUG] order-service - Database INSERT on users - Execution time: 469ms - Rows affected: 21 - RequestID: udwt5zkcis +2025-06-18T14:56:10.381Z [TRACE] auth-service - Database INSERT on users - Execution time: 264ms - Rows affected: 12 - RequestID: xk6mgrps8d +2025-06-18T14:56:10.481Z [INFO] payment-service - Database INSERT on orders - Execution time: 376ms - Rows affected: 45 - RequestID: hxfg97iklm +2025-06-18T14:56:10.581Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 400 - Response time: 71ms - IP: 192.168.133.7 - User: user_1054 - RequestID: kl2zalf8r6 +2025-06-18T14:56:10.681Z [TRACE] auth-service - Operation: order_created - Processing time: 977ms - RequestID: u7dcpux6q5b +2025-06-18T14:56:10.781Z [INFO] auth-service - Operation: payment_processed - Processing time: 861ms - RequestID: myiy54qy4p +2025-06-18T14:56:10.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 278ms - RequestID: sxzzuh2ot9c +2025-06-18T14:56:10.981Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 859ms - IP: 192.168.53.133 - User: user_1085 - RequestID: 7yt80k7blhi +2025-06-18T14:56:11.081Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.81.206 - RequestID: v4shehrevp +2025-06-18T14:56:11.181Z [TRACE] order-service - PUT /api/v1/users - Status: 502 - Response time: 324ms - IP: 192.168.187.199 - User: user_1072 - RequestID: wqwufwevdu +2025-06-18T14:56:11.281Z [DEBUG] order-service - Auth event: password_change - User: user_1033 - IP: 192.168.33.76 - RequestID: x2q2i0xjgmp +2025-06-18T14:56:11.381Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 503 - Response time: 795ms - IP: 192.168.11.60 - User: user_1003 - RequestID: 41tyur9oxc +2025-06-18T14:56:11.481Z [TRACE] user-service - PATCH /api/v1/payments - Status: 401 - Response time: 511ms - IP: 192.168.247.134 - User: user_1019 - RequestID: 242u59lpn2f +2025-06-18T14:56:11.581Z [INFO] inventory-service - Database DELETE on payments - Execution time: 256ms - Rows affected: 95 - RequestID: zw8zeglcrff +2025-06-18T14:56:11.681Z [DEBUG] auth-service - POST /api/v1/orders - Status: 404 - Response time: 825ms - IP: 192.168.13.72 - User: user_1027 - RequestID: 0czionxa361e +2025-06-18T14:56:11.781Z [INFO] payment-service - Operation: order_created - Processing time: 213ms - RequestID: 6kc8yg5jtgu +2025-06-18T14:56:11.881Z [DEBUG] order-service - Operation: payment_processed - Processing time: 455ms - RequestID: bxp0d9l3pmv +2025-06-18T14:56:11.981Z [TRACE] payment-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.170.215 - RequestID: angl1l0h30o +2025-06-18T14:56:12.081Z [INFO] notification-service - Auth event: password_change - User: user_1010 - IP: 192.168.167.32 - RequestID: f9a7nfvo4dt +2025-06-18T14:56:12.181Z [TRACE] payment-service - Database SELECT on products - Execution time: 407ms - Rows affected: 57 - RequestID: njxkx9fwxos +2025-06-18T14:56:12.281Z [DEBUG] payment-service - PUT /api/v1/users - Status: 401 - Response time: 1651ms - IP: 192.168.181.225 - User: user_1094 - RequestID: 5ere3c6e2tu +2025-06-18T14:56:12.381Z [TRACE] user-service - PATCH /api/v1/users - Status: 401 - Response time: 219ms - IP: 192.168.53.133 - User: user_1023 - RequestID: aumfxweim2t +2025-06-18T14:56:12.481Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.30.79 - RequestID: ltobf7i6dt +2025-06-18T14:56:12.581Z [TRACE] payment-service - Operation: order_created - Processing time: 59ms - RequestID: 0wqulq7inlqe +2025-06-18T14:56:12.681Z [INFO] notification-service - GET /api/v1/inventory - Status: 500 - Response time: 1915ms - IP: 192.168.46.63 - User: user_1031 - RequestID: dg6uoru1wx +2025-06-18T14:56:12.781Z [INFO] order-service - Auth event: login_success - User: user_1051 - IP: 192.168.159.94 - RequestID: z9l709mlgb +2025-06-18T14:56:12.881Z [INFO] notification-service - Auth event: login_success - User: user_1024 - IP: 192.168.189.103 - RequestID: lbhlxzg2noh +2025-06-18T14:56:12.981Z [INFO] inventory-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.227.77 - RequestID: zicjam031tq +2025-06-18T14:56:13.081Z [TRACE] order-service - DELETE /api/v1/payments - Status: 200 - Response time: 1445ms - IP: 192.168.242.165 - User: user_1014 - RequestID: aev25ko9sia +2025-06-18T14:56:13.181Z [DEBUG] notification-service - Operation: order_created - Processing time: 302ms - RequestID: fuszy5vo9w4 +2025-06-18T14:56:13.281Z [INFO] order-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.1.152 - RequestID: 86nnwdwuqxg +2025-06-18T14:56:13.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.227.77 - RequestID: hmpwir5qmi +2025-06-18T14:56:13.481Z [TRACE] user-service - Database UPDATE on products - Execution time: 410ms - Rows affected: 61 - RequestID: 5p34hmm5iu6 +2025-06-18T14:56:13.581Z [TRACE] notification-service - Auth event: login_failed - User: user_1069 - IP: 192.168.11.60 - RequestID: emi6gliud66 +2025-06-18T14:56:13.681Z [TRACE] user-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.68.128 - RequestID: t3xc7808yw +2025-06-18T14:56:13.781Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 22ms - Rows affected: 63 - RequestID: qv04x7bmyb +2025-06-18T14:56:13.881Z [INFO] inventory-service - Database SELECT on users - Execution time: 273ms - Rows affected: 60 - RequestID: szu77v8pfn +2025-06-18T14:56:13.981Z [INFO] auth-service - Operation: notification_queued - Processing time: 169ms - RequestID: uan65a1ju5 +2025-06-18T14:56:14.081Z [TRACE] notification-service - Operation: cache_hit - Processing time: 693ms - RequestID: bxji42qkyx4 +2025-06-18T14:56:14.181Z [INFO] notification-service - Auth event: logout - User: user_1083 - IP: 192.168.13.72 - RequestID: nduj7rwmfk8 +2025-06-18T14:56:14.281Z [INFO] order-service - PUT /api/v1/inventory - Status: 401 - Response time: 1380ms - IP: 192.168.242.165 - User: user_1059 - RequestID: qykaqpl0v9 +2025-06-18T14:56:14.381Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 401 - Response time: 1502ms - IP: 192.168.170.215 - User: user_1038 - RequestID: 2pdyhel19sx +2025-06-18T14:56:14.481Z [TRACE] auth-service - POST /api/v1/orders - Status: 403 - Response time: 384ms - IP: 192.168.247.134 - User: user_1040 - RequestID: dy4z3ufrp66 +2025-06-18T14:56:14.581Z [TRACE] notification-service - Auth event: login_failed - User: user_1098 - IP: 192.168.194.41 - RequestID: edcv3rucswd +2025-06-18T14:56:14.681Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 500 - Response time: 541ms - IP: 192.168.100.240 - User: user_1061 - RequestID: i1gcm9ywyc +2025-06-18T14:56:14.781Z [TRACE] auth-service - Auth event: login_success - User: user_1088 - IP: 192.168.147.171 - RequestID: gfdkza3ub7m +2025-06-18T14:56:14.881Z [DEBUG] user-service - Auth event: logout - User: user_1073 - IP: 192.168.170.215 - RequestID: q4ia5r1qdqe +2025-06-18T14:56:14.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.247.134 - RequestID: vn5bec6kd0a +2025-06-18T14:56:15.081Z [INFO] notification-service - Database INSERT on sessions - Execution time: 96ms - Rows affected: 1 - RequestID: rm4gtg47xa +2025-06-18T14:56:15.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 640ms - RequestID: 9c87a1hz1gv +2025-06-18T14:56:15.281Z [TRACE] auth-service - Operation: cache_hit - Processing time: 790ms - RequestID: c6qcoz2kfso +2025-06-18T14:56:15.381Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1865ms - IP: 192.168.189.103 - User: user_1080 - RequestID: gwk1tkx4bm6 +2025-06-18T14:56:15.481Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1083ms - IP: 192.168.30.79 - User: user_1067 - RequestID: 1cp4775i5s4 +2025-06-18T14:56:15.581Z [TRACE] user-service - Database UPDATE on payments - Execution time: 209ms - Rows affected: 23 - RequestID: 8mxp9j82s3j +2025-06-18T14:56:15.681Z [TRACE] user-service - Operation: order_created - Processing time: 1024ms - RequestID: v5u82y69l99 +2025-06-18T14:56:15.781Z [DEBUG] auth-service - Database SELECT on users - Execution time: 440ms - Rows affected: 84 - RequestID: qxptfqij5 +2025-06-18T14:56:15.881Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 365ms - Rows affected: 16 - RequestID: q822bsoggvr +2025-06-18T14:56:15.981Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 176ms - IP: 192.168.33.76 - User: user_1063 - RequestID: c5bdikbahv8 +2025-06-18T14:56:16.081Z [DEBUG] order-service - Database DELETE on products - Execution time: 166ms - Rows affected: 9 - RequestID: dqgn8s73s3j +2025-06-18T14:56:16.181Z [DEBUG] order-service - Operation: notification_queued - Processing time: 393ms - RequestID: vqsggzhzbb +2025-06-18T14:56:16.281Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 474ms - RequestID: 4261s2n0swg +2025-06-18T14:56:16.381Z [TRACE] user-service - Operation: order_created - Processing time: 373ms - RequestID: 57t9bign6pe +2025-06-18T14:56:16.481Z [INFO] inventory-service - Operation: order_created - Processing time: 722ms - RequestID: sce2rxp7po +2025-06-18T14:56:16.581Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 403 - Response time: 278ms - IP: 192.168.240.169 - User: user_1073 - RequestID: txl1qbuclbi +2025-06-18T14:56:16.681Z [TRACE] notification-service - Auth event: logout - User: user_1074 - IP: 192.168.1.152 - RequestID: 8yiw1zp5iy9 +2025-06-18T14:56:16.781Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 263ms - Rows affected: 7 - RequestID: r3woxxxm8vp +2025-06-18T14:56:16.881Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 1030ms - RequestID: kb5osuyeipp +2025-06-18T14:56:16.981Z [TRACE] auth-service - Database INSERT on payments - Execution time: 376ms - Rows affected: 14 - RequestID: b00hzeft5ig +2025-06-18T14:56:17.081Z [DEBUG] notification-service - Auth event: password_change - User: user_1052 - IP: 192.168.68.128 - RequestID: uq6qw7pvflq +2025-06-18T14:56:17.181Z [TRACE] auth-service - Auth event: password_change - User: user_1040 - IP: 192.168.229.123 - RequestID: 8mveeaygb3k +2025-06-18T14:56:17.281Z [INFO] user-service - Operation: cache_miss - Processing time: 863ms - RequestID: 3n6prrdufwt +2025-06-18T14:56:17.381Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 23ms - Rows affected: 23 - RequestID: x2cxryis5t +2025-06-18T14:56:17.481Z [TRACE] user-service - GET /api/v1/inventory - Status: 502 - Response time: 1719ms - IP: 192.168.189.103 - User: user_1017 - RequestID: gyircui4mq +2025-06-18T14:56:17.581Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 201 - Response time: 565ms - IP: 192.168.104.37 - User: user_1012 - RequestID: x65noqsp72b +2025-06-18T14:56:17.681Z [DEBUG] user-service - Operation: notification_queued - Processing time: 529ms - RequestID: ovubwh77l +2025-06-18T14:56:17.781Z [INFO] notification-service - PUT /api/v1/payments - Status: 500 - Response time: 369ms - IP: 192.168.79.116 - User: user_1011 - RequestID: 42jy6vd9i7l +2025-06-18T14:56:17.881Z [TRACE] notification-service - Operation: payment_processed - Processing time: 440ms - RequestID: f430yy3id5h +2025-06-18T14:56:17.981Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 433ms - Rows affected: 84 - RequestID: 07wslf86mv3f +2025-06-18T14:56:18.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1027 - IP: 192.168.97.87 - RequestID: ug79nl8k4bp +2025-06-18T14:56:18.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.64.33 - RequestID: 62e1kjmo899 +2025-06-18T14:56:18.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1049 - IP: 192.168.247.134 - RequestID: 0soosoux8exe +2025-06-18T14:56:18.381Z [TRACE] notification-service - GET /api/v1/orders - Status: 500 - Response time: 1205ms - IP: 192.168.133.7 - User: user_1094 - RequestID: xlvt4c61f1d +2025-06-18T14:56:18.481Z [INFO] auth-service - GET /api/v1/payments - Status: 404 - Response time: 573ms - IP: 192.168.167.32 - User: user_1025 - RequestID: 906aharb9bf +2025-06-18T14:56:18.581Z [INFO] inventory-service - POST /api/v1/orders - Status: 401 - Response time: 1372ms - IP: 192.168.32.38 - User: user_1062 - RequestID: adw8h8vpbin +2025-06-18T14:56:18.681Z [INFO] payment-service - Auth event: login_success - User: user_1008 - IP: 192.168.247.134 - RequestID: 4hsbkmtqzpx +2025-06-18T14:56:18.781Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1207ms - IP: 192.168.235.117 - User: user_1058 - RequestID: jqh2rkgnrje +2025-06-18T14:56:18.881Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 400 - Response time: 2005ms - IP: 192.168.10.184 - User: user_1088 - RequestID: u0luq8p7vwo +2025-06-18T14:56:18.981Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 63ms - Rows affected: 82 - RequestID: a07cbvv4xcm +2025-06-18T14:56:19.081Z [DEBUG] order-service - Operation: notification_queued - Processing time: 625ms - RequestID: qaul3l1noin +2025-06-18T14:56:19.181Z [INFO] auth-service - Operation: webhook_sent - Processing time: 1025ms - RequestID: r0mmwalm68j +2025-06-18T14:56:19.281Z [TRACE] notification-service - Auth event: login_failed - User: user_1060 - IP: 192.168.229.123 - RequestID: uqka9nyk5mf +2025-06-18T14:56:19.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 418ms - RequestID: w7bbtbvxhwq +2025-06-18T14:56:19.481Z [TRACE] order-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.32.38 - RequestID: zqhh18qnf2i +2025-06-18T14:56:19.581Z [TRACE] user-service - Database SELECT on products - Execution time: 123ms - Rows affected: 25 - RequestID: t0k448ndknk +2025-06-18T14:56:19.681Z [INFO] user-service - GET /api/v1/payments - Status: 401 - Response time: 1436ms - IP: 192.168.81.206 - User: user_1042 - RequestID: hd6no5am56n +2025-06-18T14:56:19.781Z [INFO] notification-service - Operation: payment_processed - Processing time: 1046ms - RequestID: rdus9zuo1s +2025-06-18T14:56:19.881Z [TRACE] notification-service - Auth event: login_success - User: user_1032 - IP: 192.168.1.152 - RequestID: szt6jzpfj7j +2025-06-18T14:56:19.981Z [INFO] order-service - Operation: cache_hit - Processing time: 209ms - RequestID: oxd7e233yhf +2025-06-18T14:56:20.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.194.41 - RequestID: gnutpqnbemu +2025-06-18T14:56:20.181Z [DEBUG] user-service - Auth event: logout - User: user_1093 - IP: 192.168.13.72 - RequestID: 6tpwe1exnd9 +2025-06-18T14:56:20.281Z [INFO] inventory-service - Auth event: login_failed - User: user_1027 - IP: 192.168.85.229 - RequestID: c5qsdoomi4a +2025-06-18T14:56:20.381Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 403 - Response time: 477ms - IP: 192.168.53.133 - User: user_1007 - RequestID: yk7cngrumn +2025-06-18T14:56:20.481Z [INFO] user-service - Operation: notification_queued - Processing time: 214ms - RequestID: aixac7ujwc6 +2025-06-18T14:56:20.581Z [TRACE] user-service - Operation: order_created - Processing time: 240ms - RequestID: jnbkx9lpyi +2025-06-18T14:56:20.681Z [DEBUG] order-service - Database DELETE on orders - Execution time: 271ms - Rows affected: 20 - RequestID: 5qj6jgik785 +2025-06-18T14:56:20.781Z [DEBUG] notification-service - Operation: email_sent - Processing time: 559ms - RequestID: eke7b03z6qb +2025-06-18T14:56:20.881Z [INFO] user-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1932ms - IP: 192.168.147.171 - User: user_1085 - RequestID: pohs9cllb8l +2025-06-18T14:56:20.981Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 245ms - Rows affected: 76 - RequestID: 6xil8js7cpi +2025-06-18T14:56:21.081Z [TRACE] order-service - Operation: order_created - Processing time: 944ms - RequestID: wl2q2fzky8d +2025-06-18T14:56:21.181Z [INFO] inventory-service - GET /api/v1/payments - Status: 401 - Response time: 342ms - IP: 192.168.158.144 - User: user_1006 - RequestID: o7ifqkmc13 +2025-06-18T14:56:21.281Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 404 - Response time: 801ms - IP: 192.168.79.141 - User: user_1030 - RequestID: 6rfqvrrz383 +2025-06-18T14:56:21.381Z [INFO] auth-service - PATCH /api/v1/payments - Status: 502 - Response time: 1624ms - IP: 192.168.46.63 - User: user_1030 - RequestID: q12xcsbg9qm +2025-06-18T14:56:21.481Z [INFO] inventory-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.158.144 - RequestID: vy6eq6aagw +2025-06-18T14:56:21.581Z [TRACE] order-service - POST /api/v1/inventory - Status: 404 - Response time: 43ms - IP: 192.168.11.60 - User: user_1004 - RequestID: 8f9cid9c6zf +2025-06-18T14:56:21.681Z [DEBUG] user-service - Operation: notification_queued - Processing time: 183ms - RequestID: iv3oldx7tll +2025-06-18T14:56:21.781Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 983ms - IP: 192.168.13.72 - User: user_1059 - RequestID: yccd17pkmtb +2025-06-18T14:56:21.881Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1519ms - IP: 192.168.1.152 - User: user_1014 - RequestID: tll19k8k2i +2025-06-18T14:56:21.981Z [TRACE] payment-service - Auth event: login_failed - User: user_1088 - IP: 192.168.10.184 - RequestID: wf1rgwun8r +2025-06-18T14:56:22.081Z [TRACE] payment-service - Operation: payment_processed - Processing time: 434ms - RequestID: k67qy6nr0ne +2025-06-18T14:56:22.181Z [INFO] order-service - Operation: webhook_sent - Processing time: 484ms - RequestID: q5tspplf13i +2025-06-18T14:56:22.281Z [TRACE] user-service - Auth event: login_failed - User: user_1099 - IP: 192.168.53.133 - RequestID: c6sn4k9d9j8 +2025-06-18T14:56:22.381Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 288ms - RequestID: 843fvaqwycl +2025-06-18T14:56:22.481Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1712ms - IP: 192.168.187.199 - User: user_1061 - RequestID: sgd4bhsiyvh +2025-06-18T14:56:22.581Z [TRACE] order-service - Auth event: logout - User: user_1094 - IP: 192.168.31.117 - RequestID: 9nb1aejjan +2025-06-18T14:56:22.681Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 404 - Response time: 792ms - IP: 192.168.235.117 - User: user_1040 - RequestID: w3z4e6h1b7d +2025-06-18T14:56:22.781Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 154ms - Rows affected: 43 - RequestID: wmwmrixg5j +2025-06-18T14:56:22.881Z [TRACE] auth-service - Database DELETE on payments - Execution time: 479ms - Rows affected: 55 - RequestID: o58va8nn9ci +2025-06-18T14:56:22.981Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 200 - Response time: 497ms - IP: 192.168.141.100 - User: user_1002 - RequestID: v301cgso94 +2025-06-18T14:56:23.081Z [TRACE] order-service - POST /api/v1/orders - Status: 400 - Response time: 448ms - IP: 192.168.113.218 - User: user_1067 - RequestID: dklju67c4ls +2025-06-18T14:56:23.181Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 445ms - Rows affected: 98 - RequestID: 43u4jhh423u +2025-06-18T14:56:23.281Z [INFO] notification-service - Database DELETE on sessions - Execution time: 365ms - Rows affected: 84 - RequestID: i3ami05smj +2025-06-18T14:56:23.381Z [DEBUG] auth-service - Database INSERT on users - Execution time: 4ms - Rows affected: 60 - RequestID: g9vpe3v9ku +2025-06-18T14:56:23.481Z [INFO] inventory-service - Auth event: login_success - User: user_1011 - IP: 192.168.211.72 - RequestID: fvw7jdzrxxa +2025-06-18T14:56:23.581Z [INFO] notification-service - Operation: cache_miss - Processing time: 131ms - RequestID: 9xhqv7gjyhw +2025-06-18T14:56:23.681Z [TRACE] user-service - Database DELETE on orders - Execution time: 313ms - Rows affected: 50 - RequestID: 7d09o3x34c9 +2025-06-18T14:56:23.781Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 72ms - RequestID: iui6qeiu4ac +2025-06-18T14:56:23.881Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 403 - Response time: 1764ms - IP: 192.168.194.41 - User: user_1048 - RequestID: jiquzowaowp +2025-06-18T14:56:23.981Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 201 - Response time: 1978ms - IP: 192.168.30.79 - User: user_1092 - RequestID: 9qbmp6bm4iq +2025-06-18T14:56:24.081Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.242.165 - RequestID: vn640kuakgh +2025-06-18T14:56:24.181Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1831ms - IP: 192.168.31.117 - User: user_1033 - RequestID: 21y75ahodw5 +2025-06-18T14:56:24.281Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 115ms - Rows affected: 79 - RequestID: c2n9gsix77v +2025-06-18T14:56:24.381Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1629ms - IP: 192.168.227.77 - User: user_1041 - RequestID: ozbrtpwwx6 +2025-06-18T14:56:24.481Z [INFO] auth-service - Auth event: login_success - User: user_1014 - IP: 192.168.167.32 - RequestID: lqbn3mk3xia +2025-06-18T14:56:24.581Z [TRACE] notification-service - Auth event: login_success - User: user_1059 - IP: 192.168.158.144 - RequestID: a75l57z2t85 +2025-06-18T14:56:24.681Z [DEBUG] auth-service - Operation: email_sent - Processing time: 654ms - RequestID: cjmojzqsazo +2025-06-18T14:56:24.781Z [INFO] inventory-service - Database UPDATE on products - Execution time: 246ms - Rows affected: 85 - RequestID: 2u5ewfeoxq9 +2025-06-18T14:56:24.881Z [TRACE] notification-service - Auth event: password_change - User: user_1000 - IP: 192.168.104.37 - RequestID: t3tw87ii0qf +2025-06-18T14:56:24.981Z [INFO] user-service - Database SELECT on users - Execution time: 429ms - Rows affected: 73 - RequestID: 95y8rsgieik +2025-06-18T14:56:25.081Z [INFO] payment-service - Operation: cache_hit - Processing time: 57ms - RequestID: dcwdladbaxk +2025-06-18T14:56:25.181Z [INFO] payment-service - Database UPDATE on orders - Execution time: 215ms - Rows affected: 66 - RequestID: dq3b2drtfkc +2025-06-18T14:56:25.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 157ms - RequestID: tx3yf90les +2025-06-18T14:56:25.381Z [INFO] payment-service - Database DELETE on payments - Execution time: 227ms - Rows affected: 36 - RequestID: 5ok37vm8og +2025-06-18T14:56:25.481Z [INFO] payment-service - Auth event: login_success - User: user_1084 - IP: 192.168.79.116 - RequestID: e5odugiugyi +2025-06-18T14:56:25.581Z [INFO] auth-service - Auth event: login_failed - User: user_1094 - IP: 192.168.36.218 - RequestID: c3elgekefd +2025-06-18T14:56:25.681Z [TRACE] auth-service - GET /api/v1/payments - Status: 404 - Response time: 1219ms - IP: 192.168.189.103 - User: user_1006 - RequestID: qwten3grm6 +2025-06-18T14:56:25.781Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 511ms - IP: 192.168.170.215 - User: user_1092 - RequestID: o8phaug674b +2025-06-18T14:56:25.881Z [TRACE] user-service - Database INSERT on sessions - Execution time: 356ms - Rows affected: 88 - RequestID: 9us64kqam1w +2025-06-18T14:56:25.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 702ms - RequestID: hno84y00sp5 +2025-06-18T14:56:26.081Z [INFO] notification-service - Operation: payment_processed - Processing time: 1006ms - RequestID: bfrij6io3hr +2025-06-18T14:56:26.181Z [INFO] notification-service - PUT /api/v1/payments - Status: 401 - Response time: 1277ms - IP: 192.168.104.37 - User: user_1033 - RequestID: 2qcgi6zjlxh +2025-06-18T14:56:26.281Z [DEBUG] inventory-service - Auth event: login_success - User: user_1008 - IP: 192.168.227.233 - RequestID: svod4towm7 +2025-06-18T14:56:26.381Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 312ms - Rows affected: 71 - RequestID: 6a79sfgojn +2025-06-18T14:56:26.481Z [INFO] user-service - Database UPDATE on orders - Execution time: 210ms - Rows affected: 91 - RequestID: 6dhg2nepcon +2025-06-18T14:56:26.581Z [INFO] payment-service - Operation: webhook_sent - Processing time: 76ms - RequestID: p7ezs2v3l4r +2025-06-18T14:56:26.681Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 899ms - RequestID: 067cp4ppq4zs +2025-06-18T14:56:26.781Z [TRACE] notification-service - Operation: cache_miss - Processing time: 855ms - RequestID: 40oqj19oj3 +2025-06-18T14:56:26.881Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1866ms - IP: 192.168.33.76 - User: user_1005 - RequestID: h9mk14134dn +2025-06-18T14:56:26.981Z [INFO] notification-service - Database SELECT on users - Execution time: 145ms - Rows affected: 53 - RequestID: nc25m1r6bx +2025-06-18T14:56:27.081Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 365ms - Rows affected: 97 - RequestID: 31zicxe15l +2025-06-18T14:56:27.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.187.199 - RequestID: xb0hucipgs +2025-06-18T14:56:27.281Z [INFO] inventory-service - Auth event: login_success - User: user_1043 - IP: 192.168.242.165 - RequestID: ucapq0jz9x +2025-06-18T14:56:27.381Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 690ms - IP: 192.168.104.37 - User: user_1005 - RequestID: 3e35m5ymltc +2025-06-18T14:56:27.481Z [DEBUG] order-service - Auth event: login_success - User: user_1088 - IP: 192.168.68.158 - RequestID: gm3lynegi0t +2025-06-18T14:56:27.581Z [TRACE] notification-service - POST /api/v1/inventory - Status: 500 - Response time: 1763ms - IP: 192.168.141.100 - User: user_1015 - RequestID: lz7co0zbgho +2025-06-18T14:56:27.681Z [DEBUG] notification-service - Auth event: logout - User: user_1006 - IP: 192.168.211.72 - RequestID: t7zvurk8qbt +2025-06-18T14:56:27.781Z [INFO] order-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.79.143 - RequestID: ve4h809ejuc +2025-06-18T14:56:27.881Z [INFO] user-service - PATCH /api/v1/payments - Status: 404 - Response time: 1424ms - IP: 192.168.227.233 - User: user_1004 - RequestID: 3lgz39qq21d +2025-06-18T14:56:27.981Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1457ms - IP: 192.168.247.134 - User: user_1058 - RequestID: hau8xplgs0l +2025-06-18T14:56:28.081Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 207ms - RequestID: iz1l9zuzmx +2025-06-18T14:56:28.181Z [INFO] notification-service - Operation: inventory_updated - Processing time: 413ms - RequestID: q2vft9bnrw +2025-06-18T14:56:28.281Z [INFO] order-service - Operation: inventory_updated - Processing time: 685ms - RequestID: dqorafxwqno +2025-06-18T14:56:28.381Z [TRACE] auth-service - Operation: notification_queued - Processing time: 547ms - RequestID: atdkpbin0y +2025-06-18T14:56:28.481Z [INFO] user-service - Auth event: login_failed - User: user_1058 - IP: 192.168.100.240 - RequestID: 5c59y5m12dq +2025-06-18T14:56:28.581Z [DEBUG] order-service - Database UPDATE on users - Execution time: 409ms - Rows affected: 81 - RequestID: 38tcb1vemi +2025-06-18T14:56:28.681Z [DEBUG] notification-service - POST /api/v1/users - Status: 502 - Response time: 1559ms - IP: 192.168.170.215 - User: user_1051 - RequestID: 3747dg8swka +2025-06-18T14:56:28.781Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 136ms - Rows affected: 79 - RequestID: 0xlq39b5y5tk +2025-06-18T14:56:28.881Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 201 - Response time: 644ms - IP: 192.168.104.37 - User: user_1081 - RequestID: xh2x75aabd +2025-06-18T14:56:28.981Z [INFO] notification-service - Auth event: logout - User: user_1083 - IP: 192.168.181.225 - RequestID: ue1p9foa7sp +2025-06-18T14:56:29.081Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 345ms - Rows affected: 15 - RequestID: ijaes1qbdd7 +2025-06-18T14:56:29.181Z [INFO] payment-service - Operation: notification_queued - Processing time: 862ms - RequestID: zge9vt0hwhn +2025-06-18T14:56:29.281Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 302ms - RequestID: 8i27h3renpc +2025-06-18T14:56:29.381Z [INFO] auth-service - Database INSERT on sessions - Execution time: 155ms - Rows affected: 94 - RequestID: ulxspfflxmm +2025-06-18T14:56:29.481Z [DEBUG] notification-service - Auth event: logout - User: user_1075 - IP: 192.168.187.199 - RequestID: xrtvijviq5 +2025-06-18T14:56:29.581Z [INFO] payment-service - Database UPDATE on products - Execution time: 403ms - Rows affected: 28 - RequestID: rpv0jameve +2025-06-18T14:56:29.681Z [DEBUG] order-service - Database SELECT on users - Execution time: 139ms - Rows affected: 25 - RequestID: opf7cl067hj +2025-06-18T14:56:29.781Z [INFO] payment-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.147.171 - RequestID: 2gzprsbkyu3 +2025-06-18T14:56:29.881Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 400 - Response time: 568ms - IP: 192.168.46.63 - User: user_1091 - RequestID: ndwev7wvf3 +2025-06-18T14:56:29.981Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1759ms - IP: 192.168.240.169 - User: user_1048 - RequestID: zcmnsq45wzq +2025-06-18T14:56:30.081Z [DEBUG] notification-service - GET /api/v1/payments - Status: 200 - Response time: 327ms - IP: 192.168.240.169 - User: user_1091 - RequestID: wisb8kood +2025-06-18T14:56:30.181Z [INFO] payment-service - Auth event: login_success - User: user_1011 - IP: 192.168.189.103 - RequestID: 4ti24awn44i +2025-06-18T14:56:30.281Z [TRACE] inventory-service - Operation: order_created - Processing time: 902ms - RequestID: m7u11o27sqn +2025-06-18T14:56:30.381Z [INFO] payment-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.68.128 - RequestID: oj37ji862sm +2025-06-18T14:56:30.481Z [INFO] order-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.97.87 - RequestID: k11ct5xly2p +2025-06-18T14:56:30.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1035 - IP: 192.168.44.5 - RequestID: yzypucqtryg +2025-06-18T14:56:30.681Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 991ms - RequestID: gur6w4s7mcd +2025-06-18T14:56:30.781Z [INFO] notification-service - Operation: webhook_sent - Processing time: 962ms - RequestID: t8baf0aksn +2025-06-18T14:56:30.881Z [INFO] order-service - DELETE /api/v1/orders - Status: 500 - Response time: 951ms - IP: 192.168.44.5 - User: user_1061 - RequestID: 0nzrz7sjsugg +2025-06-18T14:56:30.981Z [TRACE] order-service - PATCH /api/v1/users - Status: 403 - Response time: 1708ms - IP: 192.168.174.114 - User: user_1007 - RequestID: 54p7v3xdpyf +2025-06-18T14:56:31.081Z [INFO] notification-service - Auth event: logout - User: user_1087 - IP: 192.168.174.114 - RequestID: cu55h4tnafm +2025-06-18T14:56:31.181Z [INFO] payment-service - Operation: payment_processed - Processing time: 724ms - RequestID: 6e7jcxn4dmv +2025-06-18T14:56:31.281Z [DEBUG] order-service - GET /api/v1/inventory - Status: 200 - Response time: 1348ms - IP: 192.168.36.218 - User: user_1060 - RequestID: y15uom6ryji +2025-06-18T14:56:31.381Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 73ms - Rows affected: 85 - RequestID: tnwcopqloos +2025-06-18T14:56:31.481Z [INFO] auth-service - Operation: inventory_updated - Processing time: 244ms - RequestID: 8j54ztoltrh +2025-06-18T14:56:31.581Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 222ms - Rows affected: 8 - RequestID: xghgnoej5n +2025-06-18T14:56:31.681Z [INFO] notification-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.1.152 - RequestID: 8oovfpsc9j +2025-06-18T14:56:31.781Z [TRACE] auth-service - Database SELECT on payments - Execution time: 412ms - Rows affected: 85 - RequestID: j09l134h17 +2025-06-18T14:56:31.881Z [DEBUG] notification-service - POST /api/v1/users - Status: 404 - Response time: 1548ms - IP: 192.168.170.215 - User: user_1002 - RequestID: y1ltyj2a2nc +2025-06-18T14:56:31.981Z [TRACE] payment-service - Operation: cache_miss - Processing time: 411ms - RequestID: amz6dwd3g8e +2025-06-18T14:56:32.081Z [INFO] order-service - Database SELECT on orders - Execution time: 27ms - Rows affected: 25 - RequestID: dwm1rbkv6yj +2025-06-18T14:56:32.181Z [TRACE] payment-service - Auth event: password_change - User: user_1015 - IP: 192.168.232.72 - RequestID: 5c4pkk161ij +2025-06-18T14:56:32.281Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 122ms - IP: 192.168.79.141 - User: user_1049 - RequestID: 46oa0cq5fyy +2025-06-18T14:56:32.381Z [DEBUG] user-service - Operation: order_created - Processing time: 976ms - RequestID: 87qmlf15zzg +2025-06-18T14:56:32.481Z [TRACE] notification-service - Operation: order_created - Processing time: 267ms - RequestID: bnodv4mnd9r +2025-06-18T14:56:32.581Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 201 - Response time: 480ms - IP: 192.168.138.123 - User: user_1018 - RequestID: 7wav0lbawzn +2025-06-18T14:56:32.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.247.134 - RequestID: rxr58nwu939 +2025-06-18T14:56:32.781Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 404 - Response time: 1834ms - IP: 192.168.235.117 - User: user_1020 - RequestID: d8gjra7xd89 +2025-06-18T14:56:32.881Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 423ms - Rows affected: 36 - RequestID: 31qpdeuh4fk +2025-06-18T14:56:32.981Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1657ms - IP: 192.168.28.146 - User: user_1086 - RequestID: 96z97dqd915 +2025-06-18T14:56:33.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1017 - IP: 192.168.187.199 - RequestID: gtvg81a3vru +2025-06-18T14:56:33.181Z [TRACE] inventory-service - Auth event: login_success - User: user_1078 - IP: 192.168.147.171 - RequestID: q18zqr1eosn +2025-06-18T14:56:33.281Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 942ms - IP: 192.168.196.226 - User: user_1014 - RequestID: kdw1eb7kc8c +2025-06-18T14:56:33.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.46.63 - RequestID: fh7qcfm8gom +2025-06-18T14:56:33.481Z [INFO] user-service - Operation: cache_miss - Processing time: 838ms - RequestID: vdykva3ou9 +2025-06-18T14:56:33.581Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 502 - Response time: 1790ms - IP: 192.168.189.103 - User: user_1025 - RequestID: 4x80q7y1c4 +2025-06-18T14:56:33.681Z [TRACE] payment-service - Operation: order_created - Processing time: 209ms - RequestID: mh4mxrwfjhh +2025-06-18T14:56:33.781Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 484ms - Rows affected: 93 - RequestID: bjrc71nt85 +2025-06-18T14:56:33.881Z [INFO] user-service - Operation: email_sent - Processing time: 565ms - RequestID: 3dmaup2siii +2025-06-18T14:56:33.981Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 356ms - IP: 192.168.189.103 - User: user_1047 - RequestID: 15qj9rqmndf +2025-06-18T14:56:34.081Z [TRACE] auth-service - Auth event: password_change - User: user_1035 - IP: 192.168.68.158 - RequestID: dfahl6ptphe +2025-06-18T14:56:34.181Z [TRACE] order-service - Database SELECT on products - Execution time: 55ms - Rows affected: 53 - RequestID: 3179hy81e9c +2025-06-18T14:56:34.281Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 400 - Response time: 1660ms - IP: 192.168.211.72 - User: user_1092 - RequestID: hhuvgivohks +2025-06-18T14:56:34.381Z [TRACE] inventory-service - GET /api/v1/payments - Status: 200 - Response time: 1099ms - IP: 192.168.189.103 - User: user_1078 - RequestID: 5ig4iemp1ae +2025-06-18T14:56:34.481Z [TRACE] order-service - Operation: cache_hit - Processing time: 364ms - RequestID: 85oo5uvxdz7 +2025-06-18T14:56:34.581Z [DEBUG] user-service - Database SELECT on orders - Execution time: 445ms - Rows affected: 48 - RequestID: 28wlei6aauz +2025-06-18T14:56:34.681Z [TRACE] user-service - Auth event: logout - User: user_1046 - IP: 192.168.32.38 - RequestID: r94h7vftxt +2025-06-18T14:56:34.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.194.41 - RequestID: yizc9mwakj +2025-06-18T14:56:34.881Z [INFO] user-service - Auth event: login_success - User: user_1000 - IP: 192.168.100.240 - RequestID: h27ov9dch4k +2025-06-18T14:56:34.981Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 200 - Response time: 369ms - IP: 192.168.30.79 - User: user_1027 - RequestID: 1r83cp518t2 +2025-06-18T14:56:35.081Z [TRACE] notification-service - Database SELECT on orders - Execution time: 168ms - Rows affected: 56 - RequestID: f5zcbthpgf5 +2025-06-18T14:56:35.181Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 147ms - Rows affected: 82 - RequestID: 3ccj1b7vigy +2025-06-18T14:56:35.281Z [INFO] auth-service - Operation: webhook_sent - Processing time: 610ms - RequestID: 3e0izjn48cy +2025-06-18T14:56:35.381Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 234ms - RequestID: zsp7jni7izs +2025-06-18T14:56:35.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 884ms - RequestID: 36pxu83xwhv +2025-06-18T14:56:35.581Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 402ms - Rows affected: 80 - RequestID: 4vx8z4s39s9 +2025-06-18T14:56:35.681Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 201 - Response time: 612ms - IP: 192.168.33.76 - User: user_1037 - RequestID: 96wzuh6eeis +2025-06-18T14:56:35.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 893ms - RequestID: 8grdu8z7ny3 +2025-06-18T14:56:35.881Z [INFO] auth-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.227.233 - RequestID: 5s7wrt8jt2o +2025-06-18T14:56:35.981Z [DEBUG] order-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.159.94 - RequestID: 8uwaik3bznq +2025-06-18T14:56:36.081Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.81.206 - RequestID: cy605p588pv +2025-06-18T14:56:36.181Z [INFO] user-service - Operation: notification_queued - Processing time: 875ms - RequestID: vw1rne7fcd +2025-06-18T14:56:36.281Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 91ms - Rows affected: 0 - RequestID: r8rvkat7ybh +2025-06-18T14:56:36.381Z [INFO] user-service - Database SELECT on payments - Execution time: 335ms - Rows affected: 83 - RequestID: ifiafkhuif +2025-06-18T14:56:36.481Z [DEBUG] notification-service - Auth event: logout - User: user_1059 - IP: 192.168.187.199 - RequestID: xik64qtxl3 +2025-06-18T14:56:36.581Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 141ms - Rows affected: 51 - RequestID: bk9f6232ute +2025-06-18T14:56:36.681Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 122ms - Rows affected: 23 - RequestID: 1zmak58lqxj +2025-06-18T14:56:36.781Z [DEBUG] order-service - Database DELETE on payments - Execution time: 192ms - Rows affected: 67 - RequestID: bxuigv3vtxj +2025-06-18T14:56:36.881Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 120ms - RequestID: tra4gejhwr +2025-06-18T14:56:36.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 458ms - RequestID: ptuf32dwlxc +2025-06-18T14:56:37.081Z [TRACE] user-service - Operation: payment_processed - Processing time: 851ms - RequestID: axsit4obehm +2025-06-18T14:56:37.181Z [TRACE] order-service - Auth event: logout - User: user_1035 - IP: 192.168.194.41 - RequestID: hza9rdh54ew +2025-06-18T14:56:37.281Z [TRACE] payment-service - Operation: payment_processed - Processing time: 475ms - RequestID: jpwvjlcg8p +2025-06-18T14:56:37.381Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 499ms - Rows affected: 37 - RequestID: l4j0ou1aotb +2025-06-18T14:56:37.481Z [TRACE] user-service - DELETE /api/v1/orders - Status: 201 - Response time: 1046ms - IP: 192.168.104.37 - User: user_1050 - RequestID: kx8i3qe07tn +2025-06-18T14:56:37.581Z [INFO] payment-service - Database INSERT on orders - Execution time: 401ms - Rows affected: 41 - RequestID: ce47lkjqkhh +2025-06-18T14:56:37.681Z [INFO] order-service - Operation: inventory_updated - Processing time: 1006ms - RequestID: 6w5q50nzxp +2025-06-18T14:56:37.781Z [TRACE] auth-service - Operation: payment_processed - Processing time: 558ms - RequestID: h2cm58w925q +2025-06-18T14:56:37.881Z [INFO] user-service - Operation: cache_miss - Processing time: 854ms - RequestID: t6g9t4pat4k +2025-06-18T14:56:37.981Z [TRACE] payment-service - Auth event: password_change - User: user_1040 - IP: 192.168.159.94 - RequestID: jvlrvo2bjl +2025-06-18T14:56:38.081Z [TRACE] user-service - Database SELECT on products - Execution time: 440ms - Rows affected: 16 - RequestID: 0o95nejftslb +2025-06-18T14:56:38.181Z [INFO] auth-service - Operation: payment_processed - Processing time: 380ms - RequestID: xtyg8yklhnj +2025-06-18T14:56:38.281Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.181.225 - RequestID: uh3bb3d62y +2025-06-18T14:56:38.381Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 849ms - IP: 192.168.14.77 - User: user_1000 - RequestID: 46ov5jj7uw7 +2025-06-18T14:56:38.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 220ms - RequestID: 6dqw9ssfi8n +2025-06-18T14:56:38.581Z [INFO] order-service - PUT /api/v1/payments - Status: 401 - Response time: 884ms - IP: 192.168.1.152 - User: user_1097 - RequestID: p6m3w9dq61k +2025-06-18T14:56:38.681Z [INFO] notification-service - Operation: email_sent - Processing time: 593ms - RequestID: rsfzsu7434c +2025-06-18T14:56:38.781Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 333ms - Rows affected: 4 - RequestID: ajfgfjndynk +2025-06-18T14:56:38.881Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 201 - Response time: 567ms - IP: 192.168.68.128 - User: user_1041 - RequestID: l5sg9bmc5h +2025-06-18T14:56:38.981Z [INFO] inventory-service - Operation: notification_queued - Processing time: 492ms - RequestID: qz0v1fvq01 +2025-06-18T14:56:39.081Z [INFO] payment-service - Database INSERT on orders - Execution time: 370ms - Rows affected: 65 - RequestID: 57qzxa3qcr3 +2025-06-18T14:56:39.181Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 758ms - RequestID: rqe2l9pxbe +2025-06-18T14:56:39.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1033 - IP: 192.168.79.141 - RequestID: zwijt3mz73 +2025-06-18T14:56:39.381Z [INFO] user-service - Operation: email_sent - Processing time: 870ms - RequestID: 7yujjbrgmis +2025-06-18T14:56:39.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.81.206 - RequestID: tgv9ox5mop +2025-06-18T14:56:39.581Z [INFO] notification-service - Operation: inventory_updated - Processing time: 703ms - RequestID: d6wapyucmzp +2025-06-18T14:56:39.681Z [TRACE] user-service - Auth event: login_success - User: user_1028 - IP: 192.168.211.72 - RequestID: adkesxtetc7 +2025-06-18T14:56:39.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.53.133 - RequestID: liin775pizh +2025-06-18T14:56:39.881Z [INFO] payment-service - Database DELETE on products - Execution time: 226ms - Rows affected: 0 - RequestID: rqqke1rl1vh +2025-06-18T14:56:39.981Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 310ms - Rows affected: 16 - RequestID: am3tfdanw1 +2025-06-18T14:56:40.081Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 148ms - RequestID: bolhhg5cu0p +2025-06-18T14:56:40.181Z [INFO] payment-service - PUT /api/v1/users - Status: 200 - Response time: 1976ms - IP: 192.168.104.37 - User: user_1019 - RequestID: bjeytw4e2q +2025-06-18T14:56:40.281Z [INFO] inventory-service - Operation: cache_hit - Processing time: 437ms - RequestID: my9rl27yy8 +2025-06-18T14:56:40.381Z [INFO] user-service - Operation: payment_processed - Processing time: 253ms - RequestID: iqi2qadkneo +2025-06-18T14:56:40.481Z [INFO] payment-service - POST /api/v1/payments - Status: 401 - Response time: 262ms - IP: 192.168.170.215 - User: user_1002 - RequestID: u4yfuwk3m8a +2025-06-18T14:56:40.581Z [DEBUG] auth-service - POST /api/v1/orders - Status: 500 - Response time: 1289ms - IP: 192.168.46.63 - User: user_1074 - RequestID: fsju2gmnmi5 +2025-06-18T14:56:40.681Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 307ms - Rows affected: 45 - RequestID: 4xza6yqr3i6 +2025-06-18T14:56:40.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 1015ms - RequestID: w2zuq9uf3ps +2025-06-18T14:56:40.881Z [DEBUG] order-service - Database INSERT on users - Execution time: 350ms - Rows affected: 44 - RequestID: kcyzvztgzf +2025-06-18T14:56:40.981Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 500 - Response time: 207ms - IP: 192.168.227.77 - User: user_1009 - RequestID: l8cxx0njucn +2025-06-18T14:56:41.081Z [INFO] user-service - GET /api/v1/auth/logout - Status: 401 - Response time: 157ms - IP: 192.168.196.226 - User: user_1094 - RequestID: z6xwbdaihb +2025-06-18T14:56:41.181Z [INFO] auth-service - GET /api/v1/orders - Status: 502 - Response time: 1542ms - IP: 192.168.97.87 - User: user_1053 - RequestID: qw86pkgquw +2025-06-18T14:56:41.281Z [INFO] user-service - Auth event: password_change - User: user_1047 - IP: 192.168.97.87 - RequestID: r38e356ciqp +2025-06-18T14:56:41.381Z [TRACE] auth-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.30.79 - RequestID: wjftrcpox4i +2025-06-18T14:56:41.481Z [DEBUG] auth-service - Operation: email_sent - Processing time: 752ms - RequestID: n2a2exqqhs +2025-06-18T14:56:41.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.229.123 - RequestID: 33pgvlx8pn +2025-06-18T14:56:41.681Z [INFO] inventory-service - PUT /api/v1/orders - Status: 401 - Response time: 587ms - IP: 192.168.14.77 - User: user_1057 - RequestID: qhwwtb7om7 +2025-06-18T14:56:41.781Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 102ms - Rows affected: 28 - RequestID: skb5mlgjeag +2025-06-18T14:56:41.881Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1083ms - IP: 192.168.194.41 - User: user_1088 - RequestID: 8qr82lvzq95 +2025-06-18T14:56:41.981Z [INFO] notification-service - GET /api/v1/auth/login - Status: 403 - Response time: 45ms - IP: 192.168.229.123 - User: user_1009 - RequestID: m4d0c57l2do +2025-06-18T14:56:42.081Z [TRACE] notification-service - Operation: notification_queued - Processing time: 146ms - RequestID: x2lhwow1y2r +2025-06-18T14:56:42.181Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 344ms - Rows affected: 90 - RequestID: ng6wdn151vm +2025-06-18T14:56:42.281Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 200 - Response time: 384ms - IP: 192.168.32.38 - User: user_1026 - RequestID: vw4tyghr6fe +2025-06-18T14:56:42.381Z [DEBUG] payment-service - GET /api/v1/users - Status: 500 - Response time: 1680ms - IP: 192.168.170.215 - User: user_1098 - RequestID: ilu4me7mezk +2025-06-18T14:56:42.481Z [TRACE] payment-service - POST /api/v1/payments - Status: 401 - Response time: 1165ms - IP: 192.168.97.87 - User: user_1079 - RequestID: l38p0k3au7o +2025-06-18T14:56:42.581Z [INFO] payment-service - PATCH /api/v1/orders - Status: 401 - Response time: 626ms - IP: 192.168.232.72 - User: user_1072 - RequestID: d2nusxq3qw8 +2025-06-18T14:56:42.681Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 160ms - Rows affected: 25 - RequestID: w6srnimd54 +2025-06-18T14:56:42.781Z [INFO] auth-service - Auth event: password_change - User: user_1048 - IP: 192.168.68.128 - RequestID: p6fui78jkxd +2025-06-18T14:56:42.881Z [TRACE] inventory-service - Database SELECT on products - Execution time: 440ms - Rows affected: 11 - RequestID: 2t3b0g30wtn +2025-06-18T14:56:42.981Z [INFO] payment-service - Operation: cache_hit - Processing time: 357ms - RequestID: ddjxjhsolnd +2025-06-18T14:56:43.081Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1634ms - IP: 192.168.53.133 - User: user_1082 - RequestID: 0rd62zmkgg79 +2025-06-18T14:56:43.181Z [TRACE] auth-service - POST /api/v1/orders - Status: 502 - Response time: 286ms - IP: 192.168.100.240 - User: user_1009 - RequestID: 43z5t3z6h99 +2025-06-18T14:56:43.281Z [DEBUG] user-service - PUT /api/v1/orders - Status: 401 - Response time: 897ms - IP: 192.168.14.77 - User: user_1028 - RequestID: r9ye5jh415 +2025-06-18T14:56:43.381Z [INFO] notification-service - Database SELECT on sessions - Execution time: 472ms - Rows affected: 43 - RequestID: tlqqinupncm +2025-06-18T14:56:43.481Z [DEBUG] user-service - Operation: order_created - Processing time: 237ms - RequestID: q0nfueu8cvt +2025-06-18T14:56:43.581Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 210ms - Rows affected: 60 - RequestID: sr827pjtk5d +2025-06-18T14:56:43.681Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.79.141 - RequestID: e1s5co550e4 +2025-06-18T14:56:43.781Z [TRACE] payment-service - GET /api/v1/payments - Status: 500 - Response time: 1471ms - IP: 192.168.141.100 - User: user_1034 - RequestID: 2jl1sl91q3c +2025-06-18T14:56:43.881Z [TRACE] user-service - Operation: order_created - Processing time: 57ms - RequestID: 5zl1fdvcsld +2025-06-18T14:56:43.981Z [DEBUG] payment-service - Operation: email_sent - Processing time: 935ms - RequestID: xsrvyttqlg +2025-06-18T14:56:44.081Z [INFO] order-service - Operation: order_created - Processing time: 339ms - RequestID: jegz7gabbs +2025-06-18T14:56:44.181Z [DEBUG] payment-service - GET /api/v1/orders - Status: 200 - Response time: 826ms - IP: 192.168.141.100 - User: user_1017 - RequestID: 6rorn98t9fo +2025-06-18T14:56:44.281Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 159ms - Rows affected: 13 - RequestID: to3wn1acyy +2025-06-18T14:56:44.381Z [DEBUG] payment-service - Operation: email_sent - Processing time: 229ms - RequestID: f3i3wm39yh +2025-06-18T14:56:44.481Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 1012ms - RequestID: lv4cv67qi +2025-06-18T14:56:44.581Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1866ms - IP: 192.168.14.77 - User: user_1041 - RequestID: 8nnclv4mc3n +2025-06-18T14:56:44.681Z [INFO] order-service - Auth event: password_change - User: user_1057 - IP: 192.168.181.225 - RequestID: 2w1399whvmu +2025-06-18T14:56:44.781Z [DEBUG] user-service - Operation: email_sent - Processing time: 213ms - RequestID: v4nx5iw710k +2025-06-18T14:56:44.881Z [TRACE] payment-service - Operation: notification_queued - Processing time: 219ms - RequestID: d8hgvkf7js6 +2025-06-18T14:56:44.981Z [INFO] user-service - Operation: order_created - Processing time: 682ms - RequestID: b66awrwy7tv +2025-06-18T14:56:45.081Z [TRACE] notification-service - PUT /api/v1/users - Status: 502 - Response time: 435ms - IP: 192.168.147.171 - User: user_1009 - RequestID: bofnmrw07zh +2025-06-18T14:56:45.181Z [DEBUG] inventory-service - Auth event: login_success - User: user_1060 - IP: 192.168.158.144 - RequestID: 2odcq6lbgv3 +2025-06-18T14:56:45.281Z [TRACE] user-service - Operation: payment_processed - Processing time: 723ms - RequestID: wkh1ipkeus8 +2025-06-18T14:56:45.381Z [TRACE] user-service - Auth event: logout - User: user_1036 - IP: 192.168.68.128 - RequestID: ssghgrxxb1l +2025-06-18T14:56:45.481Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 503 - Response time: 740ms - IP: 192.168.196.226 - User: user_1036 - RequestID: 308m7mmilbu +2025-06-18T14:56:45.581Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 498ms - Rows affected: 1 - RequestID: 42cb4sork62 +2025-06-18T14:56:45.681Z [TRACE] inventory-service - Auth event: login_failed - User: user_1087 - IP: 192.168.104.37 - RequestID: jprkdyu1qzj +2025-06-18T14:56:45.781Z [INFO] auth-service - Operation: email_sent - Processing time: 957ms - RequestID: ehlvxsf8t2g +2025-06-18T14:56:45.881Z [INFO] order-service - Auth event: logout - User: user_1057 - IP: 192.168.181.225 - RequestID: a6dk1odpc7v +2025-06-18T14:56:45.981Z [TRACE] payment-service - Operation: payment_processed - Processing time: 887ms - RequestID: a4j9ma9ny4e +2025-06-18T14:56:46.081Z [TRACE] notification-service - Auth event: login_success - User: user_1017 - IP: 192.168.10.184 - RequestID: o7plrh1a94 +2025-06-18T14:56:46.181Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 479ms - IP: 192.168.196.226 - User: user_1005 - RequestID: 9n6vz6hn5z9 +2025-06-18T14:56:46.281Z [INFO] payment-service - Operation: cache_hit - Processing time: 463ms - RequestID: aqlosphnjeg +2025-06-18T14:56:46.381Z [INFO] auth-service - Auth event: login_success - User: user_1043 - IP: 192.168.81.206 - RequestID: o7ehnta11 +2025-06-18T14:56:46.481Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 497ms - Rows affected: 75 - RequestID: gtj81f79a1 +2025-06-18T14:56:46.581Z [DEBUG] notification-service - POST /api/v1/users - Status: 403 - Response time: 797ms - IP: 192.168.31.117 - User: user_1006 - RequestID: pyrht1llt8 +2025-06-18T14:56:46.681Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 161ms - Rows affected: 53 - RequestID: 1yn0y5n1x0n +2025-06-18T14:56:46.781Z [DEBUG] notification-service - Auth event: login_success - User: user_1025 - IP: 192.168.232.72 - RequestID: wn2try5fxz8 +2025-06-18T14:56:46.881Z [TRACE] notification-service - Operation: email_sent - Processing time: 682ms - RequestID: ej7z0gjq7cd +2025-06-18T14:56:46.981Z [INFO] user-service - GET /api/v1/users - Status: 200 - Response time: 1127ms - IP: 192.168.79.141 - User: user_1070 - RequestID: yds6t5vpa9s +2025-06-18T14:56:47.081Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1672ms - IP: 192.168.46.63 - User: user_1093 - RequestID: yyxue0jg7hk +2025-06-18T14:56:47.181Z [INFO] inventory-service - Operation: email_sent - Processing time: 490ms - RequestID: i8gzgyvmpai +2025-06-18T14:56:47.281Z [INFO] order-service - PUT /api/v1/inventory - Status: 200 - Response time: 1108ms - IP: 192.168.1.152 - User: user_1044 - RequestID: 390ccwutdw6 +2025-06-18T14:56:47.381Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 645ms - RequestID: 8i6nfojfhrb +2025-06-18T14:56:47.481Z [TRACE] user-service - Auth event: login_failed - User: user_1086 - IP: 192.168.189.103 - RequestID: mezb71l6u6h +2025-06-18T14:56:47.581Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 429ms - Rows affected: 58 - RequestID: 63hu88mmtza +2025-06-18T14:56:47.681Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 400 - Response time: 1165ms - IP: 192.168.97.87 - User: user_1000 - RequestID: jenrh4yjih +2025-06-18T14:56:47.781Z [INFO] notification-service - Operation: cache_hit - Processing time: 675ms - RequestID: mblwimyb9 +2025-06-18T14:56:47.881Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 403 - Response time: 1916ms - IP: 192.168.33.76 - User: user_1014 - RequestID: 090i2glf7tdb +2025-06-18T14:56:47.981Z [TRACE] order-service - Database DELETE on orders - Execution time: 220ms - Rows affected: 39 - RequestID: uy3rfb9zzzp +2025-06-18T14:56:48.081Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1100ms - IP: 192.168.227.77 - User: user_1074 - RequestID: k8w3f7og2q +2025-06-18T14:56:48.181Z [TRACE] user-service - DELETE /api/v1/payments - Status: 403 - Response time: 1445ms - IP: 192.168.79.141 - User: user_1000 - RequestID: bg5wsvq94h +2025-06-18T14:56:48.281Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 53ms - IP: 192.168.227.77 - User: user_1099 - RequestID: 8s35fx33uvy +2025-06-18T14:56:48.381Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 479ms - Rows affected: 29 - RequestID: 8o4v8xz4izg +2025-06-18T14:56:48.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1062 - IP: 192.168.170.215 - RequestID: zmil9bwls6n +2025-06-18T14:56:48.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.170.215 - RequestID: di3ao5bqs7f +2025-06-18T14:56:48.681Z [DEBUG] user-service - Operation: cache_hit - Processing time: 1007ms - RequestID: h0ame76pj1b +2025-06-18T14:56:48.781Z [TRACE] user-service - Operation: cache_hit - Processing time: 220ms - RequestID: e0g3jkpv9ro +2025-06-18T14:56:48.881Z [INFO] payment-service - Auth event: login_success - User: user_1050 - IP: 192.168.11.60 - RequestID: zg5scxm17d8 +2025-06-18T14:56:48.981Z [TRACE] payment-service - Auth event: logout - User: user_1025 - IP: 192.168.187.199 - RequestID: 14ruyq4sdtf +2025-06-18T14:56:49.081Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 152ms - Rows affected: 56 - RequestID: wh8al4gb11 +2025-06-18T14:56:49.181Z [INFO] user-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.189.103 - RequestID: 150qyv63ckz +2025-06-18T14:56:49.281Z [DEBUG] user-service - Auth event: password_change - User: user_1099 - IP: 192.168.227.77 - RequestID: 2mogaj7ezyd +2025-06-18T14:56:49.381Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 400 - Response time: 1075ms - IP: 192.168.53.133 - User: user_1075 - RequestID: crj3i4mw31f +2025-06-18T14:56:49.481Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.46.63 - RequestID: 4296u3rl52u +2025-06-18T14:56:49.581Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 500 - Response time: 778ms - IP: 192.168.159.94 - User: user_1005 - RequestID: 229126p9z48j +2025-06-18T14:56:49.681Z [TRACE] user-service - PATCH /api/v1/payments - Status: 400 - Response time: 488ms - IP: 192.168.13.72 - User: user_1038 - RequestID: sdbtqkbfcee +2025-06-18T14:56:49.781Z [TRACE] auth-service - Auth event: login_success - User: user_1057 - IP: 192.168.1.152 - RequestID: u2oqu9cj5pd +2025-06-18T14:56:49.881Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 490ms - Rows affected: 91 - RequestID: 7py8rxnwgjr +2025-06-18T14:56:49.981Z [INFO] order-service - Operation: notification_queued - Processing time: 497ms - RequestID: ufm6l9iot7 +2025-06-18T14:56:50.081Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 338ms - Rows affected: 51 - RequestID: 44tnhf0s9fr +2025-06-18T14:56:50.181Z [INFO] notification-service - Auth event: login_success - User: user_1036 - IP: 192.168.196.226 - RequestID: 3nxk79ge69f +2025-06-18T14:56:50.281Z [TRACE] notification-service - Operation: cache_hit - Processing time: 464ms - RequestID: slvol8wjihk +2025-06-18T14:56:50.381Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 55ms - Rows affected: 27 - RequestID: y28lmhfwlbn +2025-06-18T14:56:50.481Z [DEBUG] payment-service - Operation: order_created - Processing time: 533ms - RequestID: hpoj84efa9s +2025-06-18T14:56:50.581Z [INFO] order-service - Database INSERT on users - Execution time: 192ms - Rows affected: 13 - RequestID: bfw9h243ykc +2025-06-18T14:56:50.681Z [INFO] user-service - Auth event: login_failed - User: user_1046 - IP: 192.168.211.72 - RequestID: vpms9hxvj6 +2025-06-18T14:56:50.781Z [TRACE] payment-service - Auth event: logout - User: user_1025 - IP: 192.168.36.218 - RequestID: zvs12hbf9um +2025-06-18T14:56:50.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 486ms - RequestID: loq7p6cp6p +2025-06-18T14:56:50.981Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 400 - Response time: 136ms - IP: 192.168.68.158 - User: user_1008 - RequestID: g9lhcj0ybwr +2025-06-18T14:56:51.081Z [TRACE] order-service - Database DELETE on payments - Execution time: 497ms - Rows affected: 12 - RequestID: gefd3ow3yt +2025-06-18T14:56:51.181Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 266ms - Rows affected: 15 - RequestID: 17fpsuiqutv +2025-06-18T14:56:51.281Z [INFO] inventory-service - Auth event: password_change - User: user_1037 - IP: 192.168.64.33 - RequestID: jge41clf99 +2025-06-18T14:56:51.381Z [DEBUG] notification-service - Database DELETE on products - Execution time: 253ms - Rows affected: 6 - RequestID: dwwqua0hqth +2025-06-18T14:56:51.481Z [TRACE] notification-service - Operation: email_sent - Processing time: 386ms - RequestID: e4pb9j0aq08 +2025-06-18T14:56:51.581Z [INFO] inventory-service - Operation: order_created - Processing time: 997ms - RequestID: ub98cv7wiw +2025-06-18T14:56:51.681Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 179ms - RequestID: 3jsppr86t3r +2025-06-18T14:56:51.781Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.240.169 - RequestID: j8yq7vcrag7 +2025-06-18T14:56:51.881Z [TRACE] auth-service - GET /api/v1/payments - Status: 401 - Response time: 1200ms - IP: 192.168.242.165 - User: user_1099 - RequestID: h6mwsrjhpyq +2025-06-18T14:56:51.981Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 403 - Response time: 854ms - IP: 192.168.79.116 - User: user_1087 - RequestID: y1ysyjdzqr +2025-06-18T14:56:52.081Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 55ms - RequestID: u57e0cmrx9p +2025-06-18T14:56:52.181Z [TRACE] order-service - POST /api/v1/inventory - Status: 500 - Response time: 257ms - IP: 192.168.28.146 - User: user_1037 - RequestID: q1nx6u3bvf9 +2025-06-18T14:56:52.281Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 61ms - RequestID: 3vhusc2b3sb +2025-06-18T14:56:52.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1056 - IP: 192.168.247.134 - RequestID: td1nnx6814r +2025-06-18T14:56:52.481Z [INFO] notification-service - PUT /api/v1/orders - Status: 200 - Response time: 1639ms - IP: 192.168.36.218 - User: user_1024 - RequestID: 15tqbtiagmk +2025-06-18T14:56:52.581Z [INFO] order-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.158.144 - RequestID: v5bwdgg0mye +2025-06-18T14:56:52.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 456ms - RequestID: 884eodcd02e +2025-06-18T14:56:52.781Z [DEBUG] auth-service - Operation: email_sent - Processing time: 158ms - RequestID: 6jdab0o4k07 +2025-06-18T14:56:52.881Z [TRACE] notification-service - Auth event: password_change - User: user_1091 - IP: 192.168.100.240 - RequestID: lra6xa8xi07 +2025-06-18T14:56:52.981Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 180ms - Rows affected: 70 - RequestID: s0i1xtvrrmo +2025-06-18T14:56:53.081Z [INFO] auth-service - Operation: email_sent - Processing time: 464ms - RequestID: rkdkdh6vmf +2025-06-18T14:56:53.181Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 175ms - Rows affected: 3 - RequestID: drrnujaf3au +2025-06-18T14:56:53.281Z [DEBUG] notification-service - GET /api/v1/users - Status: 400 - Response time: 1185ms - IP: 192.168.227.77 - User: user_1014 - RequestID: bojmbqe5wd +2025-06-18T14:56:53.381Z [INFO] order-service - Database SELECT on users - Execution time: 348ms - Rows affected: 20 - RequestID: z995yztnzp +2025-06-18T14:56:53.481Z [TRACE] order-service - DELETE /api/v1/users - Status: 404 - Response time: 859ms - IP: 192.168.104.37 - User: user_1066 - RequestID: fwk25eniwdp +2025-06-18T14:56:53.581Z [TRACE] payment-service - Database DELETE on payments - Execution time: 289ms - Rows affected: 3 - RequestID: c8lrtdbgde5 +2025-06-18T14:56:53.681Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 138ms - RequestID: injt18m3av +2025-06-18T14:56:53.781Z [DEBUG] order-service - Auth event: login_failed - User: user_1027 - IP: 192.168.64.33 - RequestID: 6drwpni5v6u +2025-06-18T14:56:53.881Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 70ms - Rows affected: 56 - RequestID: l73h97ss11j +2025-06-18T14:56:53.981Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 202ms - Rows affected: 2 - RequestID: 3uzd0q2666l +2025-06-18T14:56:54.081Z [TRACE] auth-service - Operation: notification_queued - Processing time: 457ms - RequestID: q1e3gqzan8 +2025-06-18T14:56:54.181Z [TRACE] order-service - POST /api/v1/users - Status: 502 - Response time: 1159ms - IP: 192.168.14.77 - User: user_1034 - RequestID: r977z4rzvqh +2025-06-18T14:56:54.281Z [INFO] notification-service - Operation: inventory_updated - Processing time: 458ms - RequestID: dshswl18k +2025-06-18T14:56:54.381Z [TRACE] notification-service - Database SELECT on payments - Execution time: 185ms - Rows affected: 27 - RequestID: sjcc27j1q2 +2025-06-18T14:56:54.481Z [INFO] payment-service - Operation: email_sent - Processing time: 237ms - RequestID: lj29hacvwy8 +2025-06-18T14:56:54.581Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 661ms - RequestID: 6mqhl6c1knh +2025-06-18T14:56:54.681Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 378ms - Rows affected: 8 - RequestID: aolj9z2st6d +2025-06-18T14:56:54.781Z [INFO] auth-service - Database INSERT on products - Execution time: 76ms - Rows affected: 41 - RequestID: g5a8rumglxa +2025-06-18T14:56:54.881Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 440ms - Rows affected: 19 - RequestID: c0f1v4853hm +2025-06-18T14:56:54.981Z [INFO] payment-service - Database DELETE on payments - Execution time: 174ms - Rows affected: 77 - RequestID: 1ltb5hkhvb9 +2025-06-18T14:56:55.081Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 586ms - RequestID: 0te50tmhj3pk +2025-06-18T14:56:55.181Z [INFO] user-service - Database UPDATE on orders - Execution time: 135ms - Rows affected: 44 - RequestID: 04emnb31wnh6 +2025-06-18T14:56:55.281Z [DEBUG] notification-service - Auth event: login_failed - User: user_1067 - IP: 192.168.46.63 - RequestID: dwp73qay29 +2025-06-18T14:56:55.381Z [TRACE] user-service - Database SELECT on users - Execution time: 469ms - Rows affected: 93 - RequestID: z30d2bq5qqa +2025-06-18T14:56:55.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 455ms - RequestID: sptk0g6r8ua +2025-06-18T14:56:55.581Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 362ms - Rows affected: 41 - RequestID: xdyen4q97g +2025-06-18T14:56:55.681Z [TRACE] notification-service - Database INSERT on users - Execution time: 402ms - Rows affected: 49 - RequestID: lzs2ialwg9 +2025-06-18T14:56:55.781Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 502 - Response time: 103ms - IP: 192.168.133.7 - User: user_1060 - RequestID: gjuxgh4aefc +2025-06-18T14:56:55.881Z [TRACE] inventory-service - POST /api/v1/payments - Status: 201 - Response time: 1793ms - IP: 192.168.30.79 - User: user_1001 - RequestID: zbjitzofe5 +2025-06-18T14:56:55.981Z [TRACE] user-service - Auth event: password_change - User: user_1074 - IP: 192.168.79.141 - RequestID: ngzyl0u1j5 +2025-06-18T14:56:56.081Z [TRACE] user-service - PATCH /api/v1/orders - Status: 200 - Response time: 1735ms - IP: 192.168.144.38 - User: user_1038 - RequestID: 1k9ay0c9tj3 +2025-06-18T14:56:56.181Z [INFO] auth-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.31.117 - RequestID: lw17n4xocr +2025-06-18T14:56:56.281Z [INFO] auth-service - Operation: cache_hit - Processing time: 507ms - RequestID: 5vpnhxuabyj +2025-06-18T14:56:56.381Z [INFO] notification-service - DELETE /api/v1/payments - Status: 201 - Response time: 1696ms - IP: 192.168.187.199 - User: user_1049 - RequestID: f3xcek5k28j +2025-06-18T14:56:56.481Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 91ms - Rows affected: 89 - RequestID: e32v1q5onxb +2025-06-18T14:56:56.581Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 369ms - Rows affected: 33 - RequestID: ctiw8ortv5a +2025-06-18T14:56:56.681Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 830ms - RequestID: 7a6937c55g5 +2025-06-18T14:56:56.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 257ms - RequestID: cd0eua5111b +2025-06-18T14:56:56.881Z [TRACE] order-service - Auth event: logout - User: user_1007 - IP: 192.168.196.226 - RequestID: 3eukuhgmuu +2025-06-18T14:56:56.981Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 200 - Response time: 1116ms - IP: 192.168.159.94 - User: user_1047 - RequestID: 6vni6fu07qr +2025-06-18T14:56:57.081Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 503 - Response time: 68ms - IP: 192.168.53.133 - User: user_1075 - RequestID: 59uoytuwhlk +2025-06-18T14:56:57.181Z [INFO] user-service - Auth event: login_success - User: user_1016 - IP: 192.168.247.134 - RequestID: 2ql8esw2mag +2025-06-18T14:56:57.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 1022ms - RequestID: rv3oxjgeae +2025-06-18T14:56:57.381Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 203ms - Rows affected: 50 - RequestID: sou71k3wsqd +2025-06-18T14:56:57.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 711ms - RequestID: 74gpmwgbu55 +2025-06-18T14:56:57.581Z [INFO] inventory-service - Operation: cache_miss - Processing time: 510ms - RequestID: mjyhb5jb2d +2025-06-18T14:56:57.681Z [INFO] order-service - GET /api/v1/auth/login - Status: 503 - Response time: 44ms - IP: 192.168.68.128 - User: user_1046 - RequestID: kdmq0gvr9qs +2025-06-18T14:56:57.781Z [DEBUG] user-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.14.77 - RequestID: u2xtyk1iej +2025-06-18T14:56:57.881Z [INFO] order-service - DELETE /api/v1/users - Status: 404 - Response time: 2009ms - IP: 192.168.1.152 - User: user_1037 - RequestID: s4kmsd645p +2025-06-18T14:56:57.981Z [INFO] order-service - POST /api/v1/users - Status: 403 - Response time: 865ms - IP: 192.168.53.133 - User: user_1050 - RequestID: u2tmod04vg +2025-06-18T14:56:58.081Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 568ms - RequestID: 3gviim493d +2025-06-18T14:56:58.181Z [TRACE] payment-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.144.38 - RequestID: bq406an1j9f +2025-06-18T14:56:58.281Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 460ms - Rows affected: 82 - RequestID: zbkfzykch7h +2025-06-18T14:56:58.381Z [INFO] auth-service - Operation: order_created - Processing time: 911ms - RequestID: 4ii14w4qdjo +2025-06-18T14:56:58.481Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 629ms - RequestID: pdeyuw6mnl +2025-06-18T14:56:58.581Z [TRACE] order-service - Auth event: logout - User: user_1007 - IP: 192.168.36.218 - RequestID: l16tr9fgr5j +2025-06-18T14:56:58.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.194.41 - RequestID: vb1tttbgmth +2025-06-18T14:56:58.781Z [TRACE] notification-service - Database UPDATE on users - Execution time: 53ms - Rows affected: 92 - RequestID: nfkh7tn6lfc +2025-06-18T14:56:58.881Z [DEBUG] user-service - Database SELECT on products - Execution time: 258ms - Rows affected: 52 - RequestID: skm3uott71 +2025-06-18T14:56:58.981Z [TRACE] notification-service - POST /api/v1/users - Status: 502 - Response time: 1579ms - IP: 192.168.36.218 - User: user_1087 - RequestID: nvxqwloi2r +2025-06-18T14:56:59.081Z [INFO] inventory-service - Auth event: logout - User: user_1012 - IP: 192.168.81.206 - RequestID: t9bfj4ol82g +2025-06-18T14:56:59.181Z [INFO] user-service - GET /api/v1/auth/login - Status: 403 - Response time: 1379ms - IP: 192.168.187.199 - User: user_1007 - RequestID: 2fxv6iuwkj +2025-06-18T14:56:59.281Z [DEBUG] auth-service - Database INSERT on products - Execution time: 242ms - Rows affected: 28 - RequestID: f3fvs14a0nf +2025-06-18T14:56:59.381Z [INFO] auth-service - Auth event: login_success - User: user_1008 - IP: 192.168.147.171 - RequestID: 7jz0dzvgv2i +2025-06-18T14:56:59.481Z [DEBUG] user-service - Database SELECT on users - Execution time: 431ms - Rows affected: 69 - RequestID: xnbbziqypkj +2025-06-18T14:56:59.581Z [DEBUG] payment-service - PUT /api/v1/users - Status: 400 - Response time: 1627ms - IP: 192.168.36.218 - User: user_1004 - RequestID: tgl5wgj24ns +2025-06-18T14:56:59.681Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 58ms - Rows affected: 87 - RequestID: 9588idhvl2q +2025-06-18T14:56:59.781Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 220ms - Rows affected: 95 - RequestID: 8wic1r874np +2025-06-18T14:56:59.881Z [TRACE] order-service - Database SELECT on users - Execution time: 34ms - Rows affected: 32 - RequestID: wxluzkhesec +2025-06-18T14:56:59.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 579ms - RequestID: zc1o64vaidf +2025-06-18T14:57:00.081Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 401 - Response time: 1158ms - IP: 192.168.97.87 - User: user_1046 - RequestID: j5471bsusv +2025-06-18T14:57:00.181Z [TRACE] payment-service - Operation: order_created - Processing time: 107ms - RequestID: ywvjutbm86s +2025-06-18T14:57:00.281Z [TRACE] payment-service - Operation: email_sent - Processing time: 231ms - RequestID: 8b8wios8j5 +2025-06-18T14:57:00.381Z [INFO] notification-service - Database DELETE on sessions - Execution time: 334ms - Rows affected: 89 - RequestID: oc4r5gz96qj +2025-06-18T14:57:00.481Z [TRACE] payment-service - Operation: cache_miss - Processing time: 613ms - RequestID: texv5fmjbse +2025-06-18T14:57:00.581Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.97.87 - RequestID: zizz9tuypdc +2025-06-18T14:57:00.681Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 400 - Response time: 141ms - IP: 192.168.14.77 - User: user_1028 - RequestID: vkzzxfy0d2o +2025-06-18T14:57:00.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.227.77 - RequestID: ow409zs3f3f +2025-06-18T14:57:00.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1087 - IP: 192.168.147.171 - RequestID: qijnjjvpw9j +2025-06-18T14:57:00.981Z [TRACE] inventory-service - GET /api/v1/orders - Status: 502 - Response time: 380ms - IP: 192.168.227.233 - User: user_1085 - RequestID: 5qr447k83ic +2025-06-18T14:57:01.081Z [INFO] notification-service - Operation: webhook_sent - Processing time: 258ms - RequestID: 7bsrrpwdmbw +2025-06-18T14:57:01.181Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 192ms - Rows affected: 2 - RequestID: sd9u4e44elo +2025-06-18T14:57:01.281Z [INFO] user-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1004ms - IP: 192.168.240.169 - User: user_1001 - RequestID: j0ppemi9d7 +2025-06-18T14:57:01.381Z [TRACE] order-service - Operation: email_sent - Processing time: 915ms - RequestID: 137c59lhftjo +2025-06-18T14:57:01.481Z [DEBUG] user-service - Database DELETE on users - Execution time: 162ms - Rows affected: 97 - RequestID: w710ip4y4dq +2025-06-18T14:57:01.581Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 852ms - RequestID: bp8nfgterqp +2025-06-18T14:57:01.681Z [DEBUG] notification-service - GET /api/v1/payments - Status: 503 - Response time: 523ms - IP: 192.168.33.76 - User: user_1098 - RequestID: idbe9pck6w +2025-06-18T14:57:01.781Z [INFO] order-service - Auth event: logout - User: user_1070 - IP: 192.168.68.128 - RequestID: trgc9a5g93r +2025-06-18T14:57:01.881Z [TRACE] order-service - PUT /api/v1/inventory - Status: 401 - Response time: 727ms - IP: 192.168.158.144 - User: user_1036 - RequestID: a29z5she9tc +2025-06-18T14:57:01.981Z [TRACE] payment-service - Auth event: logout - User: user_1095 - IP: 192.168.97.87 - RequestID: ud9ipgngfr +2025-06-18T14:57:02.081Z [TRACE] user-service - Database INSERT on products - Execution time: 220ms - Rows affected: 55 - RequestID: pjsg4m545ai +2025-06-18T14:57:02.181Z [TRACE] user-service - Operation: payment_processed - Processing time: 1049ms - RequestID: t6h9iors7l8 +2025-06-18T14:57:02.281Z [DEBUG] order-service - Database INSERT on payments - Execution time: 433ms - Rows affected: 34 - RequestID: d6qd8tg7lz6 +2025-06-18T14:57:02.381Z [DEBUG] auth-service - POST /api/v1/orders - Status: 503 - Response time: 1670ms - IP: 192.168.194.41 - User: user_1083 - RequestID: izvffrq262 +2025-06-18T14:57:02.481Z [INFO] order-service - Operation: payment_processed - Processing time: 156ms - RequestID: 3x2rcxcxkqm +2025-06-18T14:57:02.581Z [INFO] order-service - Operation: webhook_sent - Processing time: 406ms - RequestID: afdogyami1v +2025-06-18T14:57:02.681Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1487ms - IP: 192.168.68.128 - User: user_1026 - RequestID: m1815an0l1k +2025-06-18T14:57:02.781Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 846ms - RequestID: 4a6gzikfj9b +2025-06-18T14:57:02.881Z [DEBUG] user-service - PUT /api/v1/users - Status: 201 - Response time: 1964ms - IP: 192.168.44.5 - User: user_1079 - RequestID: ix4xeq2xo1 +2025-06-18T14:57:02.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 492ms - RequestID: sd2yhx1z59g +2025-06-18T14:57:03.081Z [DEBUG] user-service - Operation: cache_miss - Processing time: 255ms - RequestID: p45bm44i1p +2025-06-18T14:57:03.181Z [INFO] payment-service - Operation: cache_miss - Processing time: 60ms - RequestID: xtmbd7xrxi +2025-06-18T14:57:03.281Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1019ms - IP: 192.168.240.169 - User: user_1000 - RequestID: va6346hb9ds +2025-06-18T14:57:03.381Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1613ms - IP: 192.168.81.206 - User: user_1036 - RequestID: xr3ga3m4af +2025-06-18T14:57:03.481Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 403 - Response time: 647ms - IP: 192.168.14.77 - User: user_1050 - RequestID: jrajahefmde +2025-06-18T14:57:03.581Z [INFO] notification-service - Auth event: logout - User: user_1007 - IP: 192.168.28.146 - RequestID: dhevq0zg8qm +2025-06-18T14:57:03.681Z [INFO] user-service - Operation: payment_processed - Processing time: 755ms - RequestID: p44dbi8j1x8 +2025-06-18T14:57:03.781Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 987ms - IP: 192.168.141.100 - User: user_1019 - RequestID: 58bm6m9s6s5 +2025-06-18T14:57:03.881Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 400 - Response time: 779ms - IP: 192.168.232.72 - User: user_1035 - RequestID: asq7ecob1n +2025-06-18T14:57:03.981Z [TRACE] auth-service - Auth event: logout - User: user_1095 - IP: 192.168.53.133 - RequestID: 03dav8tjjyku +2025-06-18T14:57:04.081Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 384ms - Rows affected: 57 - RequestID: 52m3zhs48vt +2025-06-18T14:57:04.181Z [TRACE] auth-service - Operation: order_created - Processing time: 167ms - RequestID: qvxd9gmfc9q +2025-06-18T14:57:04.281Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 1138ms - IP: 192.168.100.240 - User: user_1018 - RequestID: e4fc6sfwnmr +2025-06-18T14:57:04.381Z [INFO] notification-service - Operation: cache_hit - Processing time: 974ms - RequestID: lwlvme6ck2 +2025-06-18T14:57:04.481Z [DEBUG] auth-service - GET /api/v1/payments - Status: 201 - Response time: 1461ms - IP: 192.168.33.76 - User: user_1030 - RequestID: gac9tyhhd0o +2025-06-18T14:57:04.581Z [DEBUG] user-service - Database INSERT on payments - Execution time: 76ms - Rows affected: 74 - RequestID: del227b54ji +2025-06-18T14:57:04.681Z [INFO] user-service - Operation: order_created - Processing time: 158ms - RequestID: 7ynk0xmt8q +2025-06-18T14:57:04.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1040 - IP: 192.168.33.76 - RequestID: 5scgn66dnn4 +2025-06-18T14:57:04.881Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 418ms - Rows affected: 77 - RequestID: zb9qwkdu1wo +2025-06-18T14:57:04.981Z [INFO] payment-service - DELETE /api/v1/orders - Status: 200 - Response time: 747ms - IP: 192.168.187.199 - User: user_1084 - RequestID: dg4lqrfddx +2025-06-18T14:57:05.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 269ms - RequestID: lhumroa22s +2025-06-18T14:57:05.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.11.60 - RequestID: cod8gol73w +2025-06-18T14:57:05.281Z [TRACE] payment-service - GET /api/v1/payments - Status: 201 - Response time: 505ms - IP: 192.168.100.240 - User: user_1054 - RequestID: ucsuu0bb4i8 +2025-06-18T14:57:05.381Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.211.72 - RequestID: t3217xwnk1i +2025-06-18T14:57:05.481Z [TRACE] order-service - Operation: email_sent - Processing time: 743ms - RequestID: kl2pegru2i +2025-06-18T14:57:05.581Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 24ms - Rows affected: 8 - RequestID: ghdylxeq9oq +2025-06-18T14:57:05.681Z [DEBUG] order-service - Database DELETE on orders - Execution time: 341ms - Rows affected: 34 - RequestID: fosa3gope2h +2025-06-18T14:57:05.781Z [TRACE] notification-service - Operation: order_created - Processing time: 383ms - RequestID: zfzmxvsuzyn +2025-06-18T14:57:05.881Z [INFO] order-service - Database UPDATE on users - Execution time: 264ms - Rows affected: 83 - RequestID: 9yh7l3n949f +2025-06-18T14:57:05.981Z [INFO] user-service - PUT /api/v1/inventory - Status: 503 - Response time: 437ms - IP: 192.168.81.206 - User: user_1000 - RequestID: yltfeks52gg +2025-06-18T14:57:06.081Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 405ms - RequestID: 8qz5resj4te +2025-06-18T14:57:06.181Z [DEBUG] order-service - Operation: payment_processed - Processing time: 518ms - RequestID: go16klptcgk +2025-06-18T14:57:06.281Z [TRACE] order-service - Operation: inventory_updated - Processing time: 784ms - RequestID: stdg3a8j4le +2025-06-18T14:57:06.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1049 - IP: 192.168.235.117 - RequestID: rg2pcaji6pr +2025-06-18T14:57:06.481Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 257ms - IP: 192.168.14.77 - User: user_1025 - RequestID: 1nk163ja8kq +2025-06-18T14:57:06.581Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 404 - Response time: 712ms - IP: 192.168.85.229 - User: user_1077 - RequestID: j82j608qaet +2025-06-18T14:57:06.681Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1875ms - IP: 192.168.79.141 - User: user_1040 - RequestID: xvqbv65alo +2025-06-18T14:57:06.781Z [DEBUG] auth-service - Database SELECT on users - Execution time: 82ms - Rows affected: 92 - RequestID: j3204ktq46 +2025-06-18T14:57:06.881Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 500 - Response time: 1851ms - IP: 192.168.133.7 - User: user_1096 - RequestID: mqgva33y0ul +2025-06-18T14:57:06.981Z [TRACE] auth-service - Database DELETE on products - Execution time: 153ms - Rows affected: 85 - RequestID: 9thitra49gp +2025-06-18T14:57:07.081Z [INFO] payment-service - Operation: payment_processed - Processing time: 581ms - RequestID: 2e0l6nhl4ua +2025-06-18T14:57:07.181Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 500 - Response time: 1102ms - IP: 192.168.227.233 - User: user_1074 - RequestID: 9bx7x58nxy6 +2025-06-18T14:57:07.281Z [TRACE] payment-service - POST /api/v1/payments - Status: 400 - Response time: 1921ms - IP: 192.168.79.141 - User: user_1051 - RequestID: iqrv7d7pe7g +2025-06-18T14:57:07.381Z [TRACE] inventory-service - Auth event: logout - User: user_1015 - IP: 192.168.133.7 - RequestID: y0oo27j7hat +2025-06-18T14:57:07.481Z [TRACE] user-service - Database DELETE on orders - Execution time: 70ms - Rows affected: 34 - RequestID: ub69cyoy3pd +2025-06-18T14:57:07.581Z [TRACE] payment-service - POST /api/v1/users - Status: 502 - Response time: 589ms - IP: 192.168.227.233 - User: user_1047 - RequestID: yf2mh80kom +2025-06-18T14:57:07.681Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 134ms - Rows affected: 50 - RequestID: quajkxu143s +2025-06-18T14:57:07.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1052 - IP: 192.168.196.226 - RequestID: ikkv7qyxngf +2025-06-18T14:57:07.881Z [TRACE] order-service - Operation: cache_miss - Processing time: 681ms - RequestID: zr4aquau7mf +2025-06-18T14:57:07.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 595ms - RequestID: i7j9s6860ln +2025-06-18T14:57:08.081Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 404 - Response time: 393ms - IP: 192.168.196.226 - User: user_1083 - RequestID: giirltesfwd +2025-06-18T14:57:08.181Z [INFO] order-service - Operation: webhook_sent - Processing time: 473ms - RequestID: 2y4cuajmc6a +2025-06-18T14:57:08.281Z [TRACE] order-service - Operation: email_sent - Processing time: 113ms - RequestID: zn1hkn23xcl +2025-06-18T14:57:08.381Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 109ms - Rows affected: 34 - RequestID: d9pzeayoaee +2025-06-18T14:57:08.481Z [INFO] auth-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.46.63 - RequestID: h4dh86g7qja +2025-06-18T14:57:08.581Z [TRACE] order-service - Database INSERT on payments - Execution time: 307ms - Rows affected: 86 - RequestID: rvikzjtp7h +2025-06-18T14:57:08.681Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 503 - Response time: 749ms - IP: 192.168.97.87 - User: user_1075 - RequestID: uekn0yd8f1f +2025-06-18T14:57:08.781Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1863ms - IP: 192.168.81.206 - User: user_1018 - RequestID: jp3ydxcrgs8 +2025-06-18T14:57:08.881Z [DEBUG] user-service - Auth event: logout - User: user_1024 - IP: 192.168.227.77 - RequestID: yi2e5tbnn5 +2025-06-18T14:57:08.981Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 500 - Response time: 880ms - IP: 192.168.85.229 - User: user_1073 - RequestID: l1t34apitz +2025-06-18T14:57:09.081Z [INFO] auth-service - Operation: inventory_updated - Processing time: 400ms - RequestID: h2txzkihf8n +2025-06-18T14:57:09.181Z [INFO] inventory-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.13.72 - RequestID: rp3jxkv4x5e +2025-06-18T14:57:09.281Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 393ms - RequestID: owncyivh9mq +2025-06-18T14:57:09.381Z [INFO] inventory-service - Auth event: login_success - User: user_1049 - IP: 192.168.181.225 - RequestID: qtravq6a7ms +2025-06-18T14:57:09.481Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 502 - Response time: 1882ms - IP: 192.168.147.171 - User: user_1097 - RequestID: ts1gygl39qd +2025-06-18T14:57:09.581Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1449ms - IP: 192.168.64.33 - User: user_1049 - RequestID: sy4jb0rc4h +2025-06-18T14:57:09.681Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1522ms - IP: 192.168.100.240 - User: user_1015 - RequestID: 9iz9mdxkqt +2025-06-18T14:57:09.781Z [DEBUG] notification-service - Database INSERT on products - Execution time: 467ms - Rows affected: 47 - RequestID: tjsvww5pc6 +2025-06-18T14:57:09.881Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1004ms - IP: 192.168.14.77 - User: user_1065 - RequestID: b0broi1p9x +2025-06-18T14:57:09.981Z [INFO] inventory-service - Operation: email_sent - Processing time: 494ms - RequestID: v7qq1awh5tk +2025-06-18T14:57:10.081Z [INFO] auth-service - Operation: cache_miss - Processing time: 873ms - RequestID: yu13eetvmia +2025-06-18T14:57:10.181Z [DEBUG] user-service - Database DELETE on users - Execution time: 338ms - Rows affected: 81 - RequestID: 6jfj38hfzu +2025-06-18T14:57:10.281Z [INFO] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 1487ms - IP: 192.168.138.123 - User: user_1089 - RequestID: tu111u022a +2025-06-18T14:57:10.381Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 75ms - RequestID: usx5a51ze0k +2025-06-18T14:57:10.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1059 - IP: 192.168.242.165 - RequestID: 20ay12qs34n +2025-06-18T14:57:10.581Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 479ms - Rows affected: 5 - RequestID: 18wumc5gij8 +2025-06-18T14:57:10.681Z [TRACE] notification-service - Auth event: logout - User: user_1027 - IP: 192.168.10.184 - RequestID: qjs2fr755u +2025-06-18T14:57:10.781Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 200 - Response time: 613ms - IP: 192.168.68.128 - User: user_1023 - RequestID: u9i34ku23j +2025-06-18T14:57:10.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1041 - IP: 192.168.187.199 - RequestID: 22q8zeevhew +2025-06-18T14:57:10.981Z [INFO] auth-service - GET /api/v1/payments - Status: 502 - Response time: 769ms - IP: 192.168.79.141 - User: user_1052 - RequestID: nsy2rx4j7rn +2025-06-18T14:57:11.081Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 401 - Response time: 1821ms - IP: 192.168.227.77 - User: user_1064 - RequestID: 26y2ni0ut4g +2025-06-18T14:57:11.181Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 158ms - IP: 192.168.79.116 - User: user_1084 - RequestID: 32dyf3reweo +2025-06-18T14:57:11.281Z [TRACE] order-service - Auth event: login_success - User: user_1017 - IP: 192.168.144.38 - RequestID: y2sx6i0tqa +2025-06-18T14:57:11.381Z [DEBUG] user-service - Auth event: login_success - User: user_1010 - IP: 192.168.235.117 - RequestID: 52oaopft2oj +2025-06-18T14:57:11.481Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 134ms - RequestID: 2a965acattd +2025-06-18T14:57:11.581Z [INFO] auth-service - PATCH /api/v1/users - Status: 201 - Response time: 1882ms - IP: 192.168.240.169 - User: user_1087 - RequestID: svexwk51sb +2025-06-18T14:57:11.681Z [DEBUG] order-service - Operation: notification_queued - Processing time: 458ms - RequestID: guc6ctnby7l +2025-06-18T14:57:11.781Z [TRACE] notification-service - PUT /api/v1/payments - Status: 403 - Response time: 1138ms - IP: 192.168.247.134 - User: user_1090 - RequestID: eck5c05zgwu +2025-06-18T14:57:11.881Z [INFO] user-service - Operation: cache_hit - Processing time: 698ms - RequestID: 2gka3zr0mnl +2025-06-18T14:57:11.981Z [TRACE] payment-service - Operation: email_sent - Processing time: 166ms - RequestID: cu1ywp0bj1s +2025-06-18T14:57:12.081Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 258ms - Rows affected: 89 - RequestID: pot79p80tb +2025-06-18T14:57:12.181Z [INFO] auth-service - Operation: cache_hit - Processing time: 815ms - RequestID: nz6z3am36r +2025-06-18T14:57:12.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.227.77 - RequestID: nj8utnwn0uf +2025-06-18T14:57:12.381Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 239ms - Rows affected: 6 - RequestID: wks7h4s0mu +2025-06-18T14:57:12.481Z [TRACE] user-service - Operation: inventory_updated - Processing time: 445ms - RequestID: loco2phl9ip +2025-06-18T14:57:12.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 949ms - RequestID: i6gu0kf6ox +2025-06-18T14:57:12.681Z [INFO] inventory-service - Auth event: login_failed - User: user_1024 - IP: 192.168.11.60 - RequestID: rsmkiwlwqua +2025-06-18T14:57:12.781Z [TRACE] order-service - Operation: cache_miss - Processing time: 397ms - RequestID: 5y726181th5 +2025-06-18T14:57:12.881Z [TRACE] inventory-service - Database DELETE on users - Execution time: 162ms - Rows affected: 35 - RequestID: fcsqq6uhtul +2025-06-18T14:57:12.981Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1710ms - IP: 192.168.174.114 - User: user_1054 - RequestID: a89ey6rslvk +2025-06-18T14:57:13.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.97.87 - RequestID: y9h2drsdu58 +2025-06-18T14:57:13.181Z [TRACE] auth-service - Database INSERT on products - Execution time: 141ms - Rows affected: 78 - RequestID: 4soislpxgna +2025-06-18T14:57:13.281Z [INFO] auth-service - GET /api/v1/inventory - Status: 400 - Response time: 1029ms - IP: 192.168.229.123 - User: user_1054 - RequestID: k7kjtacgd1f +2025-06-18T14:57:13.381Z [INFO] payment-service - Database DELETE on products - Execution time: 478ms - Rows affected: 76 - RequestID: iotnvojyzeo +2025-06-18T14:57:13.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 747ms - RequestID: km4r6r0m2ho +2025-06-18T14:57:13.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.113.218 - RequestID: mx2brf535xc +2025-06-18T14:57:13.681Z [INFO] auth-service - Operation: payment_processed - Processing time: 739ms - RequestID: hqg4x019g7u +2025-06-18T14:57:13.781Z [INFO] auth-service - Operation: inventory_updated - Processing time: 620ms - RequestID: 6zyfb3aujrx +2025-06-18T14:57:13.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 611ms - RequestID: ub34luzize +2025-06-18T14:57:13.981Z [DEBUG] notification-service - Auth event: login_success - User: user_1076 - IP: 192.168.141.100 - RequestID: bfebsjtz5kw +2025-06-18T14:57:14.081Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 110ms - Rows affected: 84 - RequestID: 7ga4fs2vg7d +2025-06-18T14:57:14.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 852ms - RequestID: ahfctn00yzs +2025-06-18T14:57:14.281Z [INFO] user-service - POST /api/v1/auth/logout - Status: 201 - Response time: 492ms - IP: 192.168.46.63 - User: user_1029 - RequestID: 60ihc723een +2025-06-18T14:57:14.381Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 766ms - RequestID: qdv2fcktd8 +2025-06-18T14:57:14.481Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 500 - Response time: 1269ms - IP: 192.168.28.146 - User: user_1062 - RequestID: 1q1fyv6g3ej +2025-06-18T14:57:14.581Z [TRACE] notification-service - PUT /api/v1/users - Status: 201 - Response time: 531ms - IP: 192.168.211.72 - User: user_1045 - RequestID: szxm286aim +2025-06-18T14:57:14.681Z [TRACE] inventory-service - Operation: order_created - Processing time: 931ms - RequestID: yadsodwect7 +2025-06-18T14:57:14.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1013 - IP: 192.168.44.5 - RequestID: 2xkv7nmtfho +2025-06-18T14:57:14.881Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1073 - IP: 192.168.33.76 - RequestID: s30e9e8noe +2025-06-18T14:57:14.981Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 403 - Response time: 31ms - IP: 192.168.36.218 - User: user_1048 - RequestID: kognbjbqsr +2025-06-18T14:57:15.081Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 400 - Response time: 1379ms - IP: 192.168.174.114 - User: user_1017 - RequestID: kbdibiiyyq +2025-06-18T14:57:15.181Z [TRACE] user-service - Auth event: login_success - User: user_1035 - IP: 192.168.194.41 - RequestID: vm7q6bvjjx +2025-06-18T14:57:15.281Z [DEBUG] order-service - Operation: order_created - Processing time: 563ms - RequestID: eo1259sz7wi +2025-06-18T14:57:15.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1080 - IP: 192.168.31.117 - RequestID: 78k2re96o5f +2025-06-18T14:57:15.481Z [INFO] order-service - GET /api/v1/payments - Status: 500 - Response time: 1430ms - IP: 192.168.53.133 - User: user_1011 - RequestID: n1ga92orms +2025-06-18T14:57:15.581Z [TRACE] payment-service - Database DELETE on payments - Execution time: 203ms - Rows affected: 9 - RequestID: uyunwp7ewq +2025-06-18T14:57:15.681Z [TRACE] notification-service - Database SELECT on products - Execution time: 109ms - Rows affected: 84 - RequestID: uvwtvl48n1 +2025-06-18T14:57:15.781Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 404 - Response time: 883ms - IP: 192.168.46.63 - User: user_1070 - RequestID: 4kmeqz7628 +2025-06-18T14:57:15.881Z [DEBUG] user-service - Operation: cache_miss - Processing time: 169ms - RequestID: 21th143l47v +2025-06-18T14:57:15.981Z [TRACE] notification-service - Auth event: password_change - User: user_1047 - IP: 192.168.36.218 - RequestID: uvebip5og6 +2025-06-18T14:57:16.081Z [INFO] notification-service - Database DELETE on payments - Execution time: 44ms - Rows affected: 75 - RequestID: dn2l7kpgvgu +2025-06-18T14:57:16.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.147.171 - RequestID: d5dn233ufw +2025-06-18T14:57:16.281Z [TRACE] payment-service - Auth event: password_change - User: user_1096 - IP: 192.168.30.79 - RequestID: fkuzshnoso7 +2025-06-18T14:57:16.381Z [TRACE] notification-service - Operation: cache_miss - Processing time: 939ms - RequestID: k1acg3qktl +2025-06-18T14:57:16.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 795ms - RequestID: l2okat8avu +2025-06-18T14:57:16.581Z [DEBUG] inventory-service - Auth event: logout - User: user_1019 - IP: 192.168.138.123 - RequestID: fx3dscj7vzb +2025-06-18T14:57:16.681Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 500 - Response time: 1195ms - IP: 192.168.32.38 - User: user_1024 - RequestID: i9uk9hugtwg +2025-06-18T14:57:16.781Z [TRACE] notification-service - GET /api/v1/inventory - Status: 403 - Response time: 1531ms - IP: 192.168.53.133 - User: user_1041 - RequestID: mcz3evwqbm9 +2025-06-18T14:57:16.881Z [TRACE] order-service - GET /api/v1/users - Status: 503 - Response time: 1003ms - IP: 192.168.235.117 - User: user_1014 - RequestID: d9xsgdp1la +2025-06-18T14:57:16.981Z [DEBUG] order-service - Auth event: password_change - User: user_1036 - IP: 192.168.46.63 - RequestID: 2hd0vdmive9 +2025-06-18T14:57:17.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 612ms - RequestID: fzc7d7cht8m +2025-06-18T14:57:17.181Z [TRACE] order-service - Database INSERT on products - Execution time: 28ms - Rows affected: 77 - RequestID: xcangvesdd +2025-06-18T14:57:17.281Z [INFO] inventory-service - Auth event: password_change - User: user_1039 - IP: 192.168.147.171 - RequestID: qulcrll6bwe +2025-06-18T14:57:17.381Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 983ms - RequestID: tctqgfiqn5 +2025-06-18T14:57:17.481Z [INFO] order-service - Auth event: login_success - User: user_1077 - IP: 192.168.174.114 - RequestID: guhb1zu01z +2025-06-18T14:57:17.581Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1787ms - IP: 192.168.144.38 - User: user_1010 - RequestID: 6tbz2whsars +2025-06-18T14:57:17.681Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1112ms - IP: 192.168.81.206 - User: user_1008 - RequestID: 8idrzzddw3m +2025-06-18T14:57:17.781Z [TRACE] inventory-service - POST /api/v1/payments - Status: 200 - Response time: 500ms - IP: 192.168.174.114 - User: user_1044 - RequestID: q8azaadmao +2025-06-18T14:57:17.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.30.79 - RequestID: xufx2ghhypj +2025-06-18T14:57:17.981Z [TRACE] user-service - Auth event: logout - User: user_1024 - IP: 192.168.1.152 - RequestID: i89vd7p4fz +2025-06-18T14:57:18.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.138.123 - RequestID: iptshizox3i +2025-06-18T14:57:18.181Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 780ms - RequestID: vln30307fd +2025-06-18T14:57:18.281Z [TRACE] user-service - Auth event: login_success - User: user_1052 - IP: 192.168.232.72 - RequestID: 4utv2ldhklk +2025-06-18T14:57:18.381Z [INFO] auth-service - PUT /api/v1/users - Status: 403 - Response time: 142ms - IP: 192.168.100.240 - User: user_1094 - RequestID: 1t0qi0p9668 +2025-06-18T14:57:18.481Z [TRACE] auth-service - Database INSERT on users - Execution time: 225ms - Rows affected: 95 - RequestID: b9kwljqx79n +2025-06-18T14:57:18.581Z [INFO] order-service - Auth event: password_change - User: user_1020 - IP: 192.168.64.33 - RequestID: y7rs68ipccl +2025-06-18T14:57:18.681Z [TRACE] auth-service - Database DELETE on products - Execution time: 273ms - Rows affected: 76 - RequestID: gjtipj8reqr +2025-06-18T14:57:18.781Z [INFO] notification-service - Operation: notification_queued - Processing time: 743ms - RequestID: mkim5ywkjj8 +2025-06-18T14:57:18.881Z [DEBUG] user-service - PUT /api/v1/payments - Status: 400 - Response time: 1122ms - IP: 192.168.113.218 - User: user_1008 - RequestID: xjxzdm34s5e +2025-06-18T14:57:18.981Z [TRACE] order-service - Database UPDATE on users - Execution time: 287ms - Rows affected: 39 - RequestID: e2jw9n9mez9 +2025-06-18T14:57:19.081Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 400 - Response time: 410ms - IP: 192.168.81.206 - User: user_1012 - RequestID: 2gdsstcox7d +2025-06-18T14:57:19.181Z [DEBUG] auth-service - GET /api/v1/payments - Status: 503 - Response time: 1599ms - IP: 192.168.158.144 - User: user_1072 - RequestID: kstcrc4r14r +2025-06-18T14:57:19.281Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 33ms - Rows affected: 56 - RequestID: oggei92jikd +2025-06-18T14:57:19.381Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 200 - Response time: 802ms - IP: 192.168.187.199 - User: user_1019 - RequestID: 30q7fmwkjk3 +2025-06-18T14:57:19.481Z [INFO] user-service - Database INSERT on users - Execution time: 237ms - Rows affected: 24 - RequestID: jpjg9z157b +2025-06-18T14:57:19.581Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 162ms - RequestID: a8o7eapi64q +2025-06-18T14:57:19.681Z [TRACE] user-service - Operation: order_created - Processing time: 663ms - RequestID: 5jogfmq5cuc +2025-06-18T14:57:19.781Z [TRACE] order-service - PATCH /api/v1/users - Status: 201 - Response time: 1023ms - IP: 192.168.79.143 - User: user_1051 - RequestID: 28hzj8kejys +2025-06-18T14:57:19.881Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 201 - Response time: 579ms - IP: 192.168.133.7 - User: user_1076 - RequestID: a4ufmz5vhil +2025-06-18T14:57:19.981Z [TRACE] inventory-service - Operation: email_sent - Processing time: 502ms - RequestID: u7d3z7orjs +2025-06-18T14:57:20.081Z [DEBUG] inventory-service - Operation: order_created - Processing time: 965ms - RequestID: 4xan5g4fzlw +2025-06-18T14:57:20.181Z [TRACE] notification-service - PUT /api/v1/users - Status: 500 - Response time: 751ms - IP: 192.168.32.38 - User: user_1013 - RequestID: da7i9shth79 +2025-06-18T14:57:20.281Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 835ms - RequestID: ighxiv5pnle +2025-06-18T14:57:20.381Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 403 - Response time: 151ms - IP: 192.168.100.240 - User: user_1085 - RequestID: kv68jbb6t2e +2025-06-18T14:57:20.481Z [INFO] auth-service - Database SELECT on sessions - Execution time: 417ms - Rows affected: 20 - RequestID: otdpf27ua6 +2025-06-18T14:57:20.581Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1646ms - IP: 192.168.211.72 - User: user_1000 - RequestID: ev3xp8kw4pu +2025-06-18T14:57:20.681Z [TRACE] order-service - Database DELETE on payments - Execution time: 208ms - Rows affected: 66 - RequestID: 4k1hupimuty +2025-06-18T14:57:20.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.167.32 - RequestID: vcvj063izc +2025-06-18T14:57:20.881Z [DEBUG] user-service - Operation: notification_queued - Processing time: 177ms - RequestID: 9067f651of5 +2025-06-18T14:57:20.981Z [TRACE] payment-service - POST /api/v1/payments - Status: 401 - Response time: 1626ms - IP: 192.168.85.229 - User: user_1081 - RequestID: aulzx7w8e4h +2025-06-18T14:57:21.081Z [INFO] payment-service - Auth event: logout - User: user_1021 - IP: 192.168.68.158 - RequestID: qwi9uphkxl +2025-06-18T14:57:21.181Z [DEBUG] order-service - Auth event: password_change - User: user_1090 - IP: 192.168.68.158 - RequestID: kvckrw7kai +2025-06-18T14:57:21.281Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 18ms - Rows affected: 20 - RequestID: gch8vqd77x +2025-06-18T14:57:21.381Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 123ms - Rows affected: 89 - RequestID: pnx47tn5xfa +2025-06-18T14:57:21.481Z [INFO] auth-service - Operation: payment_processed - Processing time: 709ms - RequestID: etfk7616go +2025-06-18T14:57:21.581Z [DEBUG] user-service - Database SELECT on payments - Execution time: 191ms - Rows affected: 0 - RequestID: 7ne7bjxuxmn +2025-06-18T14:57:21.681Z [DEBUG] order-service - POST /api/v1/payments - Status: 503 - Response time: 1683ms - IP: 192.168.189.103 - User: user_1053 - RequestID: p6uowezumkf +2025-06-18T14:57:21.781Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 500 - Response time: 645ms - IP: 192.168.14.77 - User: user_1028 - RequestID: ckqjykc4sx8 +2025-06-18T14:57:21.881Z [INFO] inventory-service - Operation: notification_queued - Processing time: 734ms - RequestID: zgqbq89jycn +2025-06-18T14:57:21.981Z [INFO] notification-service - PUT /api/v1/users - Status: 500 - Response time: 1372ms - IP: 192.168.44.5 - User: user_1020 - RequestID: 6su6mee2w16 +2025-06-18T14:57:22.081Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 91ms - Rows affected: 34 - RequestID: srrtqn95zmq +2025-06-18T14:57:22.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1045 - IP: 192.168.181.225 - RequestID: 9db0xlf40h +2025-06-18T14:57:22.281Z [TRACE] user-service - POST /api/v1/payments - Status: 500 - Response time: 809ms - IP: 192.168.189.103 - User: user_1026 - RequestID: 2qb0815kgq3 +2025-06-18T14:57:22.381Z [INFO] user-service - Auth event: logout - User: user_1054 - IP: 192.168.242.165 - RequestID: v70ypsinrzg +2025-06-18T14:57:22.481Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 1021ms - RequestID: thdcpmpyky +2025-06-18T14:57:22.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 1025ms - RequestID: yyxhi9pijza +2025-06-18T14:57:22.681Z [TRACE] auth-service - Operation: order_created - Processing time: 471ms - RequestID: 6c62p65jro2 +2025-06-18T14:57:22.781Z [TRACE] user-service - Database SELECT on orders - Execution time: 89ms - Rows affected: 49 - RequestID: g7qvna1m39s +2025-06-18T14:57:22.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.1.152 - RequestID: bd8ra95qm1p +2025-06-18T14:57:22.981Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.141.100 - RequestID: 9q10os6dh4l +2025-06-18T14:57:23.081Z [DEBUG] order-service - Auth event: password_change - User: user_1060 - IP: 192.168.81.206 - RequestID: n15rbcfuggd +2025-06-18T14:57:23.181Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 403 - Response time: 195ms - IP: 192.168.30.79 - User: user_1037 - RequestID: dsiuet8vepq +2025-06-18T14:57:23.281Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 403 - Response time: 731ms - IP: 192.168.133.7 - User: user_1038 - RequestID: edzafh677hl +2025-06-18T14:57:23.381Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 642ms - IP: 192.168.167.32 - User: user_1046 - RequestID: h2y8qauadi +2025-06-18T14:57:23.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.167.32 - RequestID: fjx6piw7vns +2025-06-18T14:57:23.581Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 457ms - Rows affected: 24 - RequestID: 5son9u5rinc +2025-06-18T14:57:23.681Z [INFO] user-service - Operation: notification_queued - Processing time: 538ms - RequestID: hqq4glk0uzp +2025-06-18T14:57:23.781Z [TRACE] order-service - Database UPDATE on orders - Execution time: 122ms - Rows affected: 1 - RequestID: shjtl64denk +2025-06-18T14:57:23.881Z [TRACE] user-service - Auth event: login_failed - User: user_1081 - IP: 192.168.159.94 - RequestID: 1lr8tco83rn +2025-06-18T14:57:23.981Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1925ms - IP: 192.168.1.152 - User: user_1016 - RequestID: 2wvptdhgc1c +2025-06-18T14:57:24.081Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 401 - Response time: 598ms - IP: 192.168.227.233 - User: user_1019 - RequestID: v1dvuwtqw8d +2025-06-18T14:57:24.181Z [TRACE] payment-service - Database INSERT on users - Execution time: 256ms - Rows affected: 86 - RequestID: edjz1yiw5hp +2025-06-18T14:57:24.281Z [TRACE] notification-service - Operation: email_sent - Processing time: 933ms - RequestID: 9nm77bgggt +2025-06-18T14:57:24.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 593ms - RequestID: otdwcw6h3dl +2025-06-18T14:57:24.481Z [TRACE] notification-service - Operation: order_created - Processing time: 336ms - RequestID: gfdlasndfb +2025-06-18T14:57:24.581Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 64ms - Rows affected: 84 - RequestID: 1rem8q5dtc +2025-06-18T14:57:24.681Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 132ms - IP: 192.168.81.206 - User: user_1093 - RequestID: 9ckd3gmz9yv +2025-06-18T14:57:24.781Z [INFO] order-service - DELETE /api/v1/orders - Status: 500 - Response time: 1759ms - IP: 192.168.159.94 - User: user_1079 - RequestID: erkrse6ney +2025-06-18T14:57:24.881Z [INFO] order-service - Auth event: logout - User: user_1025 - IP: 192.168.53.133 - RequestID: tofy8gtnvmn +2025-06-18T14:57:24.981Z [INFO] payment-service - PATCH /api/v1/payments - Status: 500 - Response time: 1413ms - IP: 192.168.36.218 - User: user_1031 - RequestID: e4c5554574h +2025-06-18T14:57:25.081Z [TRACE] notification-service - Operation: notification_queued - Processing time: 429ms - RequestID: dh00r6ru119 +2025-06-18T14:57:25.181Z [TRACE] user-service - Operation: webhook_sent - Processing time: 912ms - RequestID: za8qeyymt2b +2025-06-18T14:57:25.281Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.170.215 - RequestID: 1zyxmu9yqd1 +2025-06-18T14:57:25.381Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 805ms - RequestID: 2xj2clpbifc +2025-06-18T14:57:25.481Z [DEBUG] order-service - Database SELECT on users - Execution time: 400ms - Rows affected: 21 - RequestID: yvbzdjp9b8a +2025-06-18T14:57:25.581Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 804ms - IP: 192.168.189.103 - User: user_1028 - RequestID: iv14dnahx9 +2025-06-18T14:57:25.681Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 812ms - RequestID: rge9ee3hocd +2025-06-18T14:57:25.781Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 201 - Response time: 612ms - IP: 192.168.227.233 - User: user_1088 - RequestID: ygqvm1pvcj +2025-06-18T14:57:25.881Z [TRACE] auth-service - Database INSERT on orders - Execution time: 466ms - Rows affected: 72 - RequestID: 6exapmyki6v +2025-06-18T14:57:25.981Z [TRACE] inventory-service - Auth event: password_change - User: user_1056 - IP: 192.168.14.77 - RequestID: hm5380wglf5 +2025-06-18T14:57:26.081Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 297ms - Rows affected: 45 - RequestID: 3nbyy0s6h7c +2025-06-18T14:57:26.181Z [TRACE] payment-service - Auth event: password_change - User: user_1018 - IP: 192.168.196.226 - RequestID: 4rjxo9re977 +2025-06-18T14:57:26.281Z [INFO] notification-service - Database INSERT on users - Execution time: 164ms - Rows affected: 23 - RequestID: oovirey8gg +2025-06-18T14:57:26.381Z [DEBUG] auth-service - Database DELETE on products - Execution time: 190ms - Rows affected: 16 - RequestID: 5t8nsiwwuky +2025-06-18T14:57:26.481Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 401 - Response time: 599ms - IP: 192.168.104.37 - User: user_1013 - RequestID: dxdlos6td8i +2025-06-18T14:57:26.581Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 256ms - Rows affected: 57 - RequestID: rxax1262j0d +2025-06-18T14:57:26.681Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 203ms - Rows affected: 51 - RequestID: oyv5mllufr +2025-06-18T14:57:26.781Z [DEBUG] user-service - Operation: email_sent - Processing time: 486ms - RequestID: 5i06kvfaemp +2025-06-18T14:57:26.881Z [INFO] order-service - Database UPDATE on orders - Execution time: 219ms - Rows affected: 45 - RequestID: binvah9vmwi +2025-06-18T14:57:26.981Z [TRACE] user-service - Operation: notification_queued - Processing time: 188ms - RequestID: ym6klv0kr1 +2025-06-18T14:57:27.081Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 260ms - Rows affected: 59 - RequestID: i1wtl7fcbvn +2025-06-18T14:57:27.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 737ms - RequestID: bjcz8h61qu +2025-06-18T14:57:27.281Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 136ms - Rows affected: 39 - RequestID: ao8qxsrxmr6 +2025-06-18T14:57:27.381Z [TRACE] order-service - Operation: notification_queued - Processing time: 426ms - RequestID: kijwybqf5u +2025-06-18T14:57:27.481Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 46ms - Rows affected: 6 - RequestID: 7070vgc1bo3 +2025-06-18T14:57:27.581Z [INFO] payment-service - GET /api/v1/payments - Status: 404 - Response time: 682ms - IP: 192.168.53.133 - User: user_1054 - RequestID: 3joqc5vtrrj +2025-06-18T14:57:27.681Z [INFO] inventory-service - Auth event: password_change - User: user_1030 - IP: 192.168.79.141 - RequestID: sj67jlh5sw +2025-06-18T14:57:27.781Z [INFO] notification-service - Database DELETE on products - Execution time: 110ms - Rows affected: 94 - RequestID: 6bnsoxy9y4g +2025-06-18T14:57:27.881Z [DEBUG] notification-service - Operation: order_created - Processing time: 218ms - RequestID: ywfmo5wodm +2025-06-18T14:57:27.981Z [DEBUG] user-service - Auth event: login_failed - User: user_1044 - IP: 192.168.133.7 - RequestID: zlpan5tjx6 +2025-06-18T14:57:28.081Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 502 - Response time: 735ms - IP: 192.168.36.218 - User: user_1043 - RequestID: vhetfwnplqd +2025-06-18T14:57:28.181Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 458ms - Rows affected: 57 - RequestID: gqpk5yjys26 +2025-06-18T14:57:28.281Z [TRACE] order-service - Operation: notification_queued - Processing time: 961ms - RequestID: cys5jo4zu4a +2025-06-18T14:57:28.381Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 201 - Response time: 214ms - IP: 192.168.247.134 - User: user_1027 - RequestID: 4hgnyuz3f8j +2025-06-18T14:57:28.481Z [INFO] inventory-service - GET /api/v1/payments - Status: 403 - Response time: 1792ms - IP: 192.168.30.79 - User: user_1057 - RequestID: b2hiu4e692 +2025-06-18T14:57:28.581Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 496ms - Rows affected: 52 - RequestID: q9j5wyme38 +2025-06-18T14:57:28.681Z [INFO] user-service - Database DELETE on products - Execution time: 328ms - Rows affected: 61 - RequestID: s63igh6jjfc +2025-06-18T14:57:28.781Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1582ms - IP: 192.168.227.233 - User: user_1098 - RequestID: h4eg9v6849 +2025-06-18T14:57:28.881Z [TRACE] order-service - GET /api/v1/inventory - Status: 500 - Response time: 976ms - IP: 192.168.44.5 - User: user_1011 - RequestID: 4ogswwo6qwa +2025-06-18T14:57:28.981Z [INFO] auth-service - Auth event: login_success - User: user_1002 - IP: 192.168.189.103 - RequestID: zo32kxldqos +2025-06-18T14:57:29.081Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 1327ms - IP: 192.168.46.63 - User: user_1040 - RequestID: buig0889wve +2025-06-18T14:57:29.181Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1956ms - IP: 192.168.68.158 - User: user_1053 - RequestID: 2ylwfbtjrrb +2025-06-18T14:57:29.281Z [INFO] user-service - Operation: inventory_updated - Processing time: 458ms - RequestID: dg4ircvlzwt +2025-06-18T14:57:29.381Z [INFO] payment-service - Auth event: password_change - User: user_1015 - IP: 192.168.133.7 - RequestID: 041sszyhgw38 +2025-06-18T14:57:29.481Z [TRACE] user-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.242.165 - RequestID: bdvoh1z50zh +2025-06-18T14:57:29.581Z [TRACE] payment-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.97.87 - RequestID: o7k5e6r6u5 +2025-06-18T14:57:29.681Z [TRACE] notification-service - POST /api/v1/users - Status: 404 - Response time: 172ms - IP: 192.168.68.128 - User: user_1019 - RequestID: c188gqehyh +2025-06-18T14:57:29.781Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1397ms - IP: 192.168.97.87 - User: user_1084 - RequestID: ytqoinv0ka +2025-06-18T14:57:29.881Z [TRACE] inventory-service - Operation: email_sent - Processing time: 981ms - RequestID: 5nlznckksxc +2025-06-18T14:57:29.981Z [TRACE] inventory-service - Operation: order_created - Processing time: 231ms - RequestID: 0hf1vw6pybi +2025-06-18T14:57:30.081Z [TRACE] user-service - Auth event: password_change - User: user_1094 - IP: 192.168.181.225 - RequestID: yjvj3ox71t8 +2025-06-18T14:57:30.181Z [INFO] auth-service - Auth event: logout - User: user_1066 - IP: 192.168.158.144 - RequestID: thn77n9sd2 +2025-06-18T14:57:30.281Z [TRACE] notification-service - Database UPDATE on products - Execution time: 374ms - Rows affected: 88 - RequestID: 4t4ywf4w8tv +2025-06-18T14:57:30.381Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 898ms - RequestID: oih1yq061s +2025-06-18T14:57:30.481Z [INFO] order-service - GET /api/v1/inventory - Status: 500 - Response time: 967ms - IP: 192.168.141.100 - User: user_1068 - RequestID: 7nwjw220vv6 +2025-06-18T14:57:30.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 622ms - RequestID: 6awmex8dg3r +2025-06-18T14:57:30.681Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 69ms - Rows affected: 47 - RequestID: dw133mindhc +2025-06-18T14:57:30.781Z [INFO] inventory-service - Database INSERT on orders - Execution time: 448ms - Rows affected: 69 - RequestID: rtl5iuohjkb +2025-06-18T14:57:30.881Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 971ms - RequestID: t2f2eaqc9l +2025-06-18T14:57:30.981Z [TRACE] payment-service - Auth event: logout - User: user_1096 - IP: 192.168.85.229 - RequestID: 3yxlxfznsso +2025-06-18T14:57:31.081Z [TRACE] payment-service - Auth event: logout - User: user_1006 - IP: 192.168.14.77 - RequestID: qtc3p10k3dk +2025-06-18T14:57:31.181Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 290ms - IP: 192.168.1.152 - User: user_1029 - RequestID: evewcwk6y3 +2025-06-18T14:57:31.281Z [DEBUG] user-service - Operation: cache_miss - Processing time: 313ms - RequestID: k5ahy77yfxc +2025-06-18T14:57:31.381Z [TRACE] auth-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.196.226 - RequestID: 5d6moqg5l29 +2025-06-18T14:57:31.481Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 589ms - RequestID: ijcf8pwtgfn +2025-06-18T14:57:31.581Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 894ms - RequestID: lwjr9yyrcgq +2025-06-18T14:57:31.681Z [TRACE] user-service - Auth event: password_change - User: user_1084 - IP: 192.168.174.114 - RequestID: f9dzuh3k63d +2025-06-18T14:57:31.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1026 - IP: 192.168.10.184 - RequestID: i037fjuwgx +2025-06-18T14:57:31.881Z [TRACE] order-service - Operation: email_sent - Processing time: 533ms - RequestID: 2itf6ys7462 +2025-06-18T14:57:31.981Z [DEBUG] user-service - Operation: cache_hit - Processing time: 798ms - RequestID: nm1f91pbyp9 +2025-06-18T14:57:32.081Z [INFO] auth-service - Operation: inventory_updated - Processing time: 252ms - RequestID: wv09f6cbrpn +2025-06-18T14:57:32.181Z [DEBUG] auth-service - Auth event: login_failed - User: user_1095 - IP: 192.168.46.63 - RequestID: r1qnnc48jf +2025-06-18T14:57:32.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 187ms - RequestID: bcxqr9psk1r +2025-06-18T14:57:32.381Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 389ms - Rows affected: 47 - RequestID: fsdsmpfqxu +2025-06-18T14:57:32.481Z [DEBUG] auth-service - Auth event: login_failed - User: user_1019 - IP: 192.168.79.143 - RequestID: jvsfoz0m7f +2025-06-18T14:57:32.581Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 137ms - Rows affected: 13 - RequestID: 008bt1fbkf2k7 +2025-06-18T14:57:32.681Z [INFO] auth-service - Database DELETE on payments - Execution time: 82ms - Rows affected: 24 - RequestID: p7sugz10f1s +2025-06-18T14:57:32.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1004 - IP: 192.168.64.33 - RequestID: adlq4pw24e +2025-06-18T14:57:32.881Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 67ms - Rows affected: 83 - RequestID: n3lhq2xpj4 +2025-06-18T14:57:32.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.133.7 - RequestID: itl2k0kn1ik +2025-06-18T14:57:33.081Z [DEBUG] order-service - Database DELETE on products - Execution time: 260ms - Rows affected: 21 - RequestID: 1ucfnhtkv9q +2025-06-18T14:57:33.181Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 478ms - Rows affected: 65 - RequestID: an06f7q1fkb +2025-06-18T14:57:33.281Z [INFO] notification-service - Operation: order_created - Processing time: 503ms - RequestID: menteqjwwni +2025-06-18T14:57:33.381Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 529ms - RequestID: o1377azxw39 +2025-06-18T14:57:33.481Z [DEBUG] auth-service - Auth event: password_change - User: user_1079 - IP: 192.168.138.123 - RequestID: iqartsgg1o +2025-06-18T14:57:33.581Z [DEBUG] user-service - Database SELECT on orders - Execution time: 101ms - Rows affected: 99 - RequestID: 9v8j29b574a +2025-06-18T14:57:33.681Z [INFO] order-service - Database SELECT on users - Execution time: 493ms - Rows affected: 15 - RequestID: pxjtlwdymw +2025-06-18T14:57:33.781Z [TRACE] inventory-service - Operation: order_created - Processing time: 598ms - RequestID: 3y37ph1c0gs +2025-06-18T14:57:33.881Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 289ms - Rows affected: 46 - RequestID: 4jplzs5y38l +2025-06-18T14:57:33.981Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 194ms - Rows affected: 65 - RequestID: pgezvob6cm +2025-06-18T14:57:34.081Z [INFO] payment-service - Auth event: password_change - User: user_1036 - IP: 192.168.13.72 - RequestID: kpoaceopcug +2025-06-18T14:57:34.181Z [TRACE] inventory-service - Database DELETE on users - Execution time: 384ms - Rows affected: 65 - RequestID: 3hclwuo7i22 +2025-06-18T14:57:34.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.11.60 - RequestID: 5egndzkg87b +2025-06-18T14:57:34.381Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 87ms - RequestID: 73apw70ysb9 +2025-06-18T14:57:34.481Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 503 - Response time: 129ms - IP: 192.168.113.218 - User: user_1014 - RequestID: 7rxo1deoi3s +2025-06-18T14:57:34.581Z [DEBUG] inventory-service - Auth event: login_success - User: user_1082 - IP: 192.168.141.100 - RequestID: y3c4rgs78yl +2025-06-18T14:57:34.681Z [INFO] auth-service - Auth event: login_success - User: user_1021 - IP: 192.168.36.218 - RequestID: 7xucw10e7p +2025-06-18T14:57:34.781Z [TRACE] order-service - Operation: payment_processed - Processing time: 537ms - RequestID: 5p58rji3rvc +2025-06-18T14:57:34.881Z [INFO] inventory-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.53.133 - RequestID: o4ogeveqqaf +2025-06-18T14:57:34.981Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 744ms - RequestID: xn14nk74euf +2025-06-18T14:57:35.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.211.72 - RequestID: 7pclw19yykc +2025-06-18T14:57:35.181Z [TRACE] order-service - Database UPDATE on users - Execution time: 414ms - Rows affected: 2 - RequestID: xbd79qraem +2025-06-18T14:57:35.281Z [TRACE] user-service - Operation: cache_hit - Processing time: 879ms - RequestID: 7jwkddo5x3w +2025-06-18T14:57:35.381Z [TRACE] user-service - Auth event: login_success - User: user_1071 - IP: 192.168.14.77 - RequestID: cw9660g824t +2025-06-18T14:57:35.481Z [INFO] order-service - Operation: webhook_sent - Processing time: 138ms - RequestID: 6hywwp20r32 +2025-06-18T14:57:35.581Z [INFO] user-service - Operation: email_sent - Processing time: 700ms - RequestID: 1rmiml1v56u +2025-06-18T14:57:35.681Z [INFO] inventory-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.247.134 - RequestID: m54slpld9zl +2025-06-18T14:57:35.781Z [TRACE] user-service - Database DELETE on payments - Execution time: 190ms - Rows affected: 82 - RequestID: oo85v9qm4de +2025-06-18T14:57:35.881Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 444ms - Rows affected: 49 - RequestID: lk4oviojd3h +2025-06-18T14:57:35.981Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 200 - Response time: 820ms - IP: 192.168.138.123 - User: user_1068 - RequestID: 972vtx7h4xd +2025-06-18T14:57:36.081Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 21ms - Rows affected: 57 - RequestID: 838gdmp5n57 +2025-06-18T14:57:36.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1011 - IP: 192.168.189.103 - RequestID: 4j1j7ic6nh6 +2025-06-18T14:57:36.281Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 401ms - Rows affected: 3 - RequestID: 8g0sm177lq +2025-06-18T14:57:36.381Z [TRACE] payment-service - Auth event: logout - User: user_1098 - IP: 192.168.158.144 - RequestID: gkag791sglc +2025-06-18T14:57:36.481Z [INFO] order-service - Operation: email_sent - Processing time: 149ms - RequestID: 2e4atig88a6 +2025-06-18T14:57:36.581Z [INFO] auth-service - Auth event: password_change - User: user_1019 - IP: 192.168.138.123 - RequestID: e7vlai81bo +2025-06-18T14:57:36.681Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 56ms - Rows affected: 83 - RequestID: h8oq9em90u7 +2025-06-18T14:57:36.781Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 201 - Response time: 1988ms - IP: 192.168.174.114 - User: user_1083 - RequestID: bz8eyzm1tqa +2025-06-18T14:57:36.881Z [DEBUG] auth-service - Auth event: logout - User: user_1061 - IP: 192.168.100.240 - RequestID: vds8z5y8pei +2025-06-18T14:57:36.981Z [TRACE] notification-service - GET /api/v1/inventory - Status: 502 - Response time: 189ms - IP: 192.168.36.218 - User: user_1050 - RequestID: y9es3ax1kki +2025-06-18T14:57:37.081Z [INFO] user-service - GET /api/v1/auth/login - Status: 201 - Response time: 1033ms - IP: 192.168.30.79 - User: user_1096 - RequestID: g4o7040tk2 +2025-06-18T14:57:37.181Z [INFO] auth-service - Auth event: login_failed - User: user_1077 - IP: 192.168.100.240 - RequestID: eyc0zl2elar +2025-06-18T14:57:37.281Z [DEBUG] auth-service - Auth event: logout - User: user_1003 - IP: 192.168.11.60 - RequestID: xjl83h3vop +2025-06-18T14:57:37.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1050 - IP: 192.168.181.225 - RequestID: q5tjvaz7a0f +2025-06-18T14:57:37.481Z [INFO] order-service - Database INSERT on orders - Execution time: 265ms - Rows affected: 56 - RequestID: qrutjw7dy0q +2025-06-18T14:57:37.581Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 193ms - Rows affected: 41 - RequestID: rt3tr8xqwi +2025-06-18T14:57:37.681Z [INFO] order-service - Auth event: login_failed - User: user_1008 - IP: 192.168.159.94 - RequestID: 6may2t8okyf +2025-06-18T14:57:37.781Z [TRACE] order-service - Database DELETE on orders - Execution time: 412ms - Rows affected: 94 - RequestID: gbsufjttalj +2025-06-18T14:57:37.881Z [INFO] notification-service - Operation: notification_queued - Processing time: 795ms - RequestID: 23n1xljh2mt +2025-06-18T14:57:37.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.79.116 - RequestID: ht8bq71gkg +2025-06-18T14:57:38.081Z [TRACE] order-service - Database SELECT on payments - Execution time: 62ms - Rows affected: 82 - RequestID: qbs9d6qk2wd +2025-06-18T14:57:38.181Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 500 - Response time: 404ms - IP: 192.168.31.117 - User: user_1016 - RequestID: 65trkoy58u7 +2025-06-18T14:57:38.281Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 17ms - IP: 192.168.181.225 - User: user_1086 - RequestID: kk7sr9y7ybe +2025-06-18T14:57:38.381Z [INFO] notification-service - PATCH /api/v1/users - Status: 401 - Response time: 659ms - IP: 192.168.170.215 - User: user_1093 - RequestID: aqrcwl4vkcf +2025-06-18T14:57:38.481Z [DEBUG] auth-service - Operation: email_sent - Processing time: 489ms - RequestID: u1yo0nxvl98 +2025-06-18T14:57:38.581Z [INFO] order-service - Operation: order_created - Processing time: 243ms - RequestID: 7g6zerjozgp +2025-06-18T14:57:38.681Z [INFO] notification-service - Operation: order_created - Processing time: 144ms - RequestID: 8lwpjx3029 +2025-06-18T14:57:38.781Z [TRACE] auth-service - Operation: order_created - Processing time: 613ms - RequestID: hzcuk78eq7j +2025-06-18T14:57:38.881Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 12ms - Rows affected: 84 - RequestID: 4hqwhstwa2o +2025-06-18T14:57:38.981Z [DEBUG] order-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.28.146 - RequestID: 0xovo2azo6xc +2025-06-18T14:57:39.081Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 500 - Response time: 724ms - IP: 192.168.53.133 - User: user_1057 - RequestID: knjqsr0iep +2025-06-18T14:57:39.181Z [TRACE] notification-service - GET /api/v1/orders - Status: 201 - Response time: 416ms - IP: 192.168.133.7 - User: user_1016 - RequestID: nt164xab91 +2025-06-18T14:57:39.281Z [INFO] order-service - Database INSERT on products - Execution time: 382ms - Rows affected: 42 - RequestID: pm6azo674nk +2025-06-18T14:57:39.381Z [DEBUG] auth-service - Database DELETE on products - Execution time: 323ms - Rows affected: 74 - RequestID: uc6syeebox +2025-06-18T14:57:39.481Z [INFO] notification-service - Auth event: logout - User: user_1030 - IP: 192.168.174.114 - RequestID: fl620uxapzo +2025-06-18T14:57:39.581Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1496ms - IP: 192.168.189.103 - User: user_1051 - RequestID: ufmvr5plxbk +2025-06-18T14:57:39.681Z [INFO] order-service - GET /api/v1/payments - Status: 200 - Response time: 695ms - IP: 192.168.247.134 - User: user_1020 - RequestID: wlrck3etdfk +2025-06-18T14:57:39.781Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 381ms - Rows affected: 21 - RequestID: kuvpjud7jh +2025-06-18T14:57:39.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.235.117 - RequestID: qdbxd3d4xzp +2025-06-18T14:57:39.981Z [TRACE] payment-service - Operation: order_created - Processing time: 489ms - RequestID: edy59umkd2 +2025-06-18T14:57:40.081Z [INFO] payment-service - Database SELECT on products - Execution time: 388ms - Rows affected: 10 - RequestID: yr3lwikiuw +2025-06-18T14:57:40.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.227.77 - RequestID: 8piofr7dbzf +2025-06-18T14:57:40.281Z [TRACE] user-service - DELETE /api/v1/users - Status: 503 - Response time: 25ms - IP: 192.168.167.32 - User: user_1094 - RequestID: ovqt8396hl +2025-06-18T14:57:40.381Z [INFO] inventory-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.232.72 - RequestID: 60olhqzms0x +2025-06-18T14:57:40.481Z [INFO] user-service - Database INSERT on products - Execution time: 106ms - Rows affected: 52 - RequestID: 1yus9kde36w +2025-06-18T14:57:40.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.31.117 - RequestID: 2fr8omk4kmq +2025-06-18T14:57:40.681Z [DEBUG] order-service - Operation: order_created - Processing time: 237ms - RequestID: oyxyqm6dj9 +2025-06-18T14:57:40.781Z [TRACE] user-service - Auth event: logout - User: user_1087 - IP: 192.168.46.63 - RequestID: hont6qrkrjp +2025-06-18T14:57:40.881Z [INFO] payment-service - Operation: order_created - Processing time: 860ms - RequestID: wvjw067xssd +2025-06-18T14:57:40.981Z [TRACE] auth-service - Database INSERT on payments - Execution time: 265ms - Rows affected: 61 - RequestID: pyhmua33cp +2025-06-18T14:57:41.081Z [DEBUG] order-service - Database UPDATE on products - Execution time: 48ms - Rows affected: 76 - RequestID: wydvswf9c49 +2025-06-18T14:57:41.181Z [TRACE] payment-service - Auth event: logout - User: user_1003 - IP: 192.168.1.152 - RequestID: 20klemmu2y7 +2025-06-18T14:57:41.281Z [INFO] payment-service - Operation: cache_miss - Processing time: 717ms - RequestID: cgocvxl7w5 +2025-06-18T14:57:41.381Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 219ms - Rows affected: 58 - RequestID: 7h30p0ovzyh +2025-06-18T14:57:41.481Z [DEBUG] auth-service - POST /api/v1/users - Status: 503 - Response time: 1673ms - IP: 192.168.10.184 - User: user_1010 - RequestID: cc303rulo9 +2025-06-18T14:57:41.581Z [DEBUG] payment-service - Auth event: login_success - User: user_1042 - IP: 192.168.170.215 - RequestID: pwhf4jmqwi +2025-06-18T14:57:41.681Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 139ms - Rows affected: 47 - RequestID: 4z4oh5y0i6x +2025-06-18T14:57:41.781Z [TRACE] notification-service - Operation: cache_hit - Processing time: 696ms - RequestID: hku8q4d5uyh +2025-06-18T14:57:41.881Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 402ms - Rows affected: 88 - RequestID: q0hpeslhovm +2025-06-18T14:57:41.981Z [INFO] inventory-service - Operation: cache_miss - Processing time: 369ms - RequestID: wb5zg1xiges +2025-06-18T14:57:42.081Z [INFO] payment-service - Auth event: login_failed - User: user_1083 - IP: 192.168.13.72 - RequestID: l2a5pspbgi8 +2025-06-18T14:57:42.181Z [TRACE] notification-service - Auth event: login_failed - User: user_1086 - IP: 192.168.97.87 - RequestID: vpcmwvi9qx +2025-06-18T14:57:42.281Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 201 - Response time: 1520ms - IP: 192.168.30.79 - User: user_1079 - RequestID: wb3r1399ol +2025-06-18T14:57:42.381Z [INFO] inventory-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.196.226 - RequestID: 9fnn07gsf8r +2025-06-18T14:57:42.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 449ms - RequestID: wtkj82e3rn +2025-06-18T14:57:42.581Z [INFO] notification-service - Auth event: login_success - User: user_1088 - IP: 192.168.133.7 - RequestID: va2s9kpxaok +2025-06-18T14:57:42.681Z [INFO] payment-service - Database UPDATE on products - Execution time: 240ms - Rows affected: 1 - RequestID: 79basiq8vc +2025-06-18T14:57:42.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.159.94 - RequestID: 2r0bwa7sb71 +2025-06-18T14:57:42.881Z [TRACE] user-service - POST /api/v1/users - Status: 201 - Response time: 1439ms - IP: 192.168.44.5 - User: user_1028 - RequestID: 4dek7fvaq0v +2025-06-18T14:57:42.981Z [DEBUG] notification-service - Database INSERT on users - Execution time: 356ms - Rows affected: 49 - RequestID: 566soy4d5bn +2025-06-18T14:57:43.081Z [TRACE] notification-service - POST /api/v1/users - Status: 503 - Response time: 346ms - IP: 192.168.189.103 - User: user_1039 - RequestID: 8r0nrgha4l7 +2025-06-18T14:57:43.181Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 663ms - RequestID: kvg4id3101 +2025-06-18T14:57:43.281Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 182ms - Rows affected: 52 - RequestID: o4nlo9gq2s +2025-06-18T14:57:43.381Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 183ms - IP: 192.168.147.171 - User: user_1026 - RequestID: yll02euf0us +2025-06-18T14:57:43.481Z [INFO] payment-service - Database SELECT on sessions - Execution time: 134ms - Rows affected: 40 - RequestID: u5agd0wxumk +2025-06-18T14:57:43.581Z [TRACE] notification-service - Operation: order_created - Processing time: 1027ms - RequestID: 4ecsohnwld8 +2025-06-18T14:57:43.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 718ms - RequestID: 4en8qp11kk5 +2025-06-18T14:57:43.781Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 212ms - Rows affected: 55 - RequestID: duujcgy2vb7 +2025-06-18T14:57:43.881Z [TRACE] user-service - Auth event: password_change - User: user_1021 - IP: 192.168.53.133 - RequestID: 8fcue1m0kzi +2025-06-18T14:57:43.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1069 - IP: 192.168.235.117 - RequestID: 5l2dypxlx8l +2025-06-18T14:57:44.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.240.169 - RequestID: mad2f8akhf +2025-06-18T14:57:44.181Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.100.240 - RequestID: x17v8a0vrvb +2025-06-18T14:57:44.281Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 233ms - Rows affected: 21 - RequestID: 6adnsp28ae6 +2025-06-18T14:57:44.381Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1105ms - IP: 192.168.196.226 - User: user_1020 - RequestID: tyh2hg53ptq +2025-06-18T14:57:44.481Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 298ms - Rows affected: 28 - RequestID: ov879jmmq1 +2025-06-18T14:57:44.581Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 36ms - Rows affected: 88 - RequestID: arr0l708bnc +2025-06-18T14:57:44.681Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 172ms - RequestID: gyp98exb6y8 +2025-06-18T14:57:44.781Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.79.143 - RequestID: ky1fdmmri8f +2025-06-18T14:57:44.881Z [TRACE] payment-service - Database INSERT on users - Execution time: 416ms - Rows affected: 99 - RequestID: gl936magczd +2025-06-18T14:57:44.981Z [INFO] payment-service - Auth event: password_change - User: user_1062 - IP: 192.168.133.7 - RequestID: gp55d7f0a5n +2025-06-18T14:57:45.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 992ms - RequestID: 09l9g3ttlslt +2025-06-18T14:57:45.181Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 82ms - RequestID: 5jeayf678r8 +2025-06-18T14:57:45.281Z [INFO] inventory-service - Operation: cache_hit - Processing time: 243ms - RequestID: gv3klriie8m +2025-06-18T14:57:45.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1042 - IP: 192.168.138.123 - RequestID: 9fx0rvszu0t +2025-06-18T14:57:45.481Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 126ms - RequestID: u1i5kaot54f +2025-06-18T14:57:45.581Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 885ms - RequestID: 0lh131q99n1a +2025-06-18T14:57:45.681Z [TRACE] payment-service - Auth event: password_change - User: user_1057 - IP: 192.168.242.165 - RequestID: 4p84hvdtlby +2025-06-18T14:57:45.781Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 407ms - Rows affected: 96 - RequestID: 3mq2rjacm7 +2025-06-18T14:57:45.881Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 500 - Response time: 870ms - IP: 192.168.53.133 - User: user_1000 - RequestID: sol65x7qym +2025-06-18T14:57:45.981Z [DEBUG] user-service - Auth event: logout - User: user_1062 - IP: 192.168.11.60 - RequestID: anbhiwyt4gc +2025-06-18T14:57:46.081Z [INFO] notification-service - Database SELECT on sessions - Execution time: 333ms - Rows affected: 20 - RequestID: 51qgmo5hki4 +2025-06-18T14:57:46.181Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 149ms - Rows affected: 91 - RequestID: 6evqxymlqld +2025-06-18T14:57:46.281Z [TRACE] notification-service - Operation: email_sent - Processing time: 451ms - RequestID: qjdx41qm7q +2025-06-18T14:57:46.381Z [DEBUG] user-service - Auth event: login_success - User: user_1029 - IP: 192.168.187.199 - RequestID: vimv9y2a4a +2025-06-18T14:57:46.481Z [INFO] auth-service - PATCH /api/v1/users - Status: 401 - Response time: 845ms - IP: 192.168.68.128 - User: user_1002 - RequestID: sszgrpc7q7 +2025-06-18T14:57:46.581Z [TRACE] notification-service - Operation: order_created - Processing time: 112ms - RequestID: 7nvb20zuh19 +2025-06-18T14:57:46.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.227.233 - RequestID: 580wplgjm0u +2025-06-18T14:57:46.781Z [INFO] order-service - Operation: email_sent - Processing time: 295ms - RequestID: gymecuauj27 +2025-06-18T14:57:46.881Z [TRACE] order-service - POST /api/v1/users - Status: 403 - Response time: 373ms - IP: 192.168.97.87 - User: user_1027 - RequestID: q2holedbcus +2025-06-18T14:57:46.981Z [INFO] inventory-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.28.146 - RequestID: mahyn91qksl +2025-06-18T14:57:47.081Z [INFO] auth-service - Operation: cache_miss - Processing time: 395ms - RequestID: iczmjbp6ivi +2025-06-18T14:57:47.181Z [DEBUG] order-service - GET /api/v1/inventory - Status: 404 - Response time: 429ms - IP: 192.168.181.225 - User: user_1074 - RequestID: 7g1fsjq3jfm +2025-06-18T14:57:47.281Z [DEBUG] notification-service - Auth event: login_failed - User: user_1007 - IP: 192.168.211.72 - RequestID: y6965wyhjf +2025-06-18T14:57:47.381Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.33.76 - RequestID: ivc8ncpwnuk +2025-06-18T14:57:47.481Z [DEBUG] inventory-service - Operation: order_created - Processing time: 575ms - RequestID: r2p12z06geb +2025-06-18T14:57:47.581Z [INFO] notification-service - Database SELECT on orders - Execution time: 425ms - Rows affected: 26 - RequestID: mhy5lwv3cxj +2025-06-18T14:57:47.681Z [INFO] user-service - Database SELECT on users - Execution time: 61ms - Rows affected: 57 - RequestID: qklh0tkgtsh +2025-06-18T14:57:47.781Z [TRACE] auth-service - Database DELETE on payments - Execution time: 67ms - Rows affected: 1 - RequestID: r9mb3y4ll2 +2025-06-18T14:57:47.881Z [INFO] user-service - POST /api/v1/payments - Status: 404 - Response time: 1584ms - IP: 192.168.53.133 - User: user_1034 - RequestID: ivdqs19cfya +2025-06-18T14:57:47.981Z [TRACE] user-service - PATCH /api/v1/payments - Status: 404 - Response time: 1406ms - IP: 192.168.14.77 - User: user_1033 - RequestID: 0r9onchblfzd +2025-06-18T14:57:48.081Z [TRACE] user-service - DELETE /api/v1/orders - Status: 502 - Response time: 141ms - IP: 192.168.79.116 - User: user_1065 - RequestID: d8t6ppg3s6 +2025-06-18T14:57:48.181Z [INFO] inventory-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.104.37 - RequestID: 9i14r7jqpta +2025-06-18T14:57:48.281Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 566ms - RequestID: ejpjh9d0jq +2025-06-18T14:57:48.381Z [INFO] user-service - POST /api/v1/inventory - Status: 503 - Response time: 959ms - IP: 192.168.229.123 - User: user_1044 - RequestID: ncrppo4ctf +2025-06-18T14:57:48.481Z [TRACE] user-service - Auth event: login_failed - User: user_1029 - IP: 192.168.33.76 - RequestID: 6rpzg9mxh7i +2025-06-18T14:57:48.581Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 118ms - Rows affected: 17 - RequestID: t8byk9qqzo +2025-06-18T14:57:48.681Z [INFO] auth-service - Database INSERT on users - Execution time: 498ms - Rows affected: 55 - RequestID: fvrx9e048tl +2025-06-18T14:57:48.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.79.143 - RequestID: ki73knv5xz +2025-06-18T14:57:48.881Z [INFO] user-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.36.218 - RequestID: k7yx8378o5 +2025-06-18T14:57:48.981Z [DEBUG] order-service - Database UPDATE on users - Execution time: 434ms - Rows affected: 74 - RequestID: 9e4ew88k6v8 +2025-06-18T14:57:49.081Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 200 - Response time: 190ms - IP: 192.168.170.215 - User: user_1089 - RequestID: u6yxm0vzqig +2025-06-18T14:57:49.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.79.141 - RequestID: u4qx53m2ak +2025-06-18T14:57:49.281Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 813ms - IP: 192.168.85.229 - User: user_1000 - RequestID: cw6e7pc5ayb +2025-06-18T14:57:49.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.232.72 - RequestID: gpl6e19qo9 +2025-06-18T14:57:49.481Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 651ms - IP: 192.168.1.152 - User: user_1068 - RequestID: 9xlfcws5xgp +2025-06-18T14:57:49.581Z [TRACE] inventory-service - POST /api/v1/users - Status: 404 - Response time: 773ms - IP: 192.168.141.100 - User: user_1049 - RequestID: 58yu1i39aqn +2025-06-18T14:57:49.681Z [TRACE] order-service - GET /api/v1/inventory - Status: 503 - Response time: 249ms - IP: 192.168.187.199 - User: user_1023 - RequestID: vrgiizlzo0q +2025-06-18T14:57:49.781Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 764ms - IP: 192.168.36.218 - User: user_1067 - RequestID: zlqf9hsa9x +2025-06-18T14:57:49.881Z [TRACE] user-service - Operation: cache_hit - Processing time: 475ms - RequestID: kk08qiktej +2025-06-18T14:57:49.981Z [INFO] payment-service - GET /api/v1/payments - Status: 500 - Response time: 1502ms - IP: 192.168.79.141 - User: user_1086 - RequestID: rpltd1zb9e8 +2025-06-18T14:57:50.081Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 378ms - Rows affected: 27 - RequestID: ehp5ybb1fgk +2025-06-18T14:57:50.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.85.229 - RequestID: qq6azi7dqho +2025-06-18T14:57:50.281Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 884ms - RequestID: a0x5028j0rh +2025-06-18T14:57:50.381Z [INFO] order-service - Database INSERT on users - Execution time: 383ms - Rows affected: 6 - RequestID: b7cg5xe44dj +2025-06-18T14:57:50.481Z [TRACE] auth-service - Database SELECT on orders - Execution time: 325ms - Rows affected: 13 - RequestID: jzew1dt2fp9 +2025-06-18T14:57:50.581Z [TRACE] order-service - Auth event: login_success - User: user_1006 - IP: 192.168.181.225 - RequestID: ffcwniovark +2025-06-18T14:57:50.681Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 517ms - RequestID: zjx3t5g2r3g +2025-06-18T14:57:50.781Z [INFO] user-service - GET /api/v1/auth/login - Status: 404 - Response time: 269ms - IP: 192.168.46.63 - User: user_1038 - RequestID: a4qczsqsyr5 +2025-06-18T14:57:50.881Z [TRACE] payment-service - Auth event: logout - User: user_1062 - IP: 192.168.196.226 - RequestID: yqfah1gbb6g +2025-06-18T14:57:50.981Z [DEBUG] user-service - POST /api/v1/users - Status: 401 - Response time: 1723ms - IP: 192.168.97.87 - User: user_1018 - RequestID: aknh85igzl6 +2025-06-18T14:57:51.081Z [INFO] payment-service - GET /api/v1/payments - Status: 403 - Response time: 1112ms - IP: 192.168.170.215 - User: user_1039 - RequestID: cr3ij4by0p9 +2025-06-18T14:57:51.181Z [TRACE] payment-service - Operation: cache_hit - Processing time: 193ms - RequestID: 91v644yz8hm +2025-06-18T14:57:51.281Z [TRACE] auth-service - Auth event: logout - User: user_1063 - IP: 192.168.1.152 - RequestID: s9bxjrp6xlj +2025-06-18T14:57:51.381Z [TRACE] user-service - PATCH /api/v1/payments - Status: 502 - Response time: 1146ms - IP: 192.168.14.77 - User: user_1067 - RequestID: d9oa7u6z0xe +2025-06-18T14:57:51.481Z [DEBUG] notification-service - GET /api/v1/orders - Status: 500 - Response time: 582ms - IP: 192.168.79.116 - User: user_1050 - RequestID: yxh0l9knqg +2025-06-18T14:57:51.581Z [INFO] order-service - Auth event: login_failed - User: user_1020 - IP: 192.168.14.77 - RequestID: apulrvnn4w +2025-06-18T14:57:51.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 513ms - RequestID: q07jjb8ed +2025-06-18T14:57:51.781Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1887ms - IP: 192.168.167.32 - User: user_1056 - RequestID: 8anaeyeb3ko +2025-06-18T14:57:51.881Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 200 - Response time: 553ms - IP: 192.168.79.141 - User: user_1082 - RequestID: bz35agojqhv +2025-06-18T14:57:51.981Z [INFO] user-service - Operation: cache_miss - Processing time: 798ms - RequestID: 0douo4z0dlmi +2025-06-18T14:57:52.081Z [INFO] auth-service - POST /api/v1/users - Status: 500 - Response time: 199ms - IP: 192.168.159.94 - User: user_1078 - RequestID: ympdizw1zvm +2025-06-18T14:57:52.181Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 381ms - Rows affected: 81 - RequestID: p7cdsnh2bcq +2025-06-18T14:57:52.281Z [TRACE] payment-service - Database INSERT on products - Execution time: 402ms - Rows affected: 0 - RequestID: hm05nsj59g +2025-06-18T14:57:52.381Z [INFO] payment-service - Database INSERT on products - Execution time: 335ms - Rows affected: 81 - RequestID: zzc9y8eiga +2025-06-18T14:57:52.481Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 618ms - IP: 192.168.14.77 - User: user_1043 - RequestID: 08h80mer5ps +2025-06-18T14:57:52.581Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 126ms - IP: 192.168.31.117 - User: user_1037 - RequestID: bt8qv7ls0b5 +2025-06-18T14:57:52.681Z [TRACE] payment-service - PUT /api/v1/orders - Status: 201 - Response time: 1108ms - IP: 192.168.100.240 - User: user_1075 - RequestID: t46pmh26qw +2025-06-18T14:57:52.781Z [INFO] auth-service - Auth event: logout - User: user_1034 - IP: 192.168.36.218 - RequestID: rmz5d4ukp4c +2025-06-18T14:57:52.881Z [INFO] user-service - PUT /api/v1/inventory - Status: 503 - Response time: 259ms - IP: 192.168.30.79 - User: user_1077 - RequestID: cn5obgilian +2025-06-18T14:57:52.981Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 408ms - Rows affected: 50 - RequestID: yz0a56mmtx9 +2025-06-18T14:57:53.081Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 349ms - IP: 192.168.147.171 - User: user_1016 - RequestID: uexoj81682 +2025-06-18T14:57:53.181Z [INFO] inventory-service - Operation: order_created - Processing time: 406ms - RequestID: f1wf9xtes86 +2025-06-18T14:57:53.281Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 200 - Response time: 1368ms - IP: 192.168.229.123 - User: user_1022 - RequestID: 6u0dba64nk +2025-06-18T14:57:53.381Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 548ms - RequestID: b3wzl5muynh +2025-06-18T14:57:53.481Z [TRACE] user-service - DELETE /api/v1/orders - Status: 201 - Response time: 618ms - IP: 192.168.144.38 - User: user_1015 - RequestID: p381bhfehxs +2025-06-18T14:57:53.581Z [TRACE] notification-service - Database INSERT on users - Execution time: 445ms - Rows affected: 85 - RequestID: fhuvh9sm3gk +2025-06-18T14:57:53.681Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 244ms - Rows affected: 9 - RequestID: enxk0ivpdhd +2025-06-18T14:57:53.781Z [TRACE] user-service - GET /api/v1/payments - Status: 404 - Response time: 555ms - IP: 192.168.53.133 - User: user_1047 - RequestID: rvdzccdbsm +2025-06-18T14:57:53.881Z [DEBUG] user-service - PUT /api/v1/users - Status: 403 - Response time: 1423ms - IP: 192.168.170.215 - User: user_1023 - RequestID: wx9k8to8vip +2025-06-18T14:57:53.981Z [INFO] payment-service - Database DELETE on products - Execution time: 304ms - Rows affected: 76 - RequestID: vqrbzjxsjve +2025-06-18T14:57:54.081Z [TRACE] order-service - PUT /api/v1/inventory - Status: 500 - Response time: 1048ms - IP: 192.168.242.165 - User: user_1009 - RequestID: gbit8ld1wc +2025-06-18T14:57:54.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1021 - IP: 192.168.85.229 - RequestID: cegfr5pbit +2025-06-18T14:57:54.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.247.134 - RequestID: ukmj8ywkt3 +2025-06-18T14:57:54.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.133.7 - RequestID: k66eoj0jry +2025-06-18T14:57:54.481Z [INFO] user-service - Auth event: login_success - User: user_1052 - IP: 192.168.32.38 - RequestID: qmq9q6phaja +2025-06-18T14:57:54.581Z [INFO] notification-service - Database UPDATE on payments - Execution time: 270ms - Rows affected: 27 - RequestID: 0d2796bxz6in +2025-06-18T14:57:54.681Z [INFO] auth-service - Operation: inventory_updated - Processing time: 971ms - RequestID: uvcjlxvumrs +2025-06-18T14:57:54.781Z [TRACE] payment-service - GET /api/v1/payments - Status: 403 - Response time: 617ms - IP: 192.168.68.128 - User: user_1046 - RequestID: bdqfhheuswh +2025-06-18T14:57:54.881Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 201 - Response time: 164ms - IP: 192.168.85.229 - User: user_1017 - RequestID: yha74x578qk +2025-06-18T14:57:54.981Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 200 - Response time: 227ms - IP: 192.168.10.184 - User: user_1005 - RequestID: mswrvonkju8 +2025-06-18T14:57:55.081Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 200 - Response time: 1904ms - IP: 192.168.141.100 - User: user_1023 - RequestID: rns3dszh7gh +2025-06-18T14:57:55.181Z [INFO] user-service - Database DELETE on orders - Execution time: 100ms - Rows affected: 29 - RequestID: wmqkq4foka +2025-06-18T14:57:55.281Z [DEBUG] order-service - Auth event: login_success - User: user_1003 - IP: 192.168.33.76 - RequestID: xr27np83yci +2025-06-18T14:57:55.381Z [DEBUG] auth-service - Operation: order_created - Processing time: 690ms - RequestID: zwq15f0zg7g +2025-06-18T14:57:55.481Z [INFO] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 1932ms - IP: 192.168.33.76 - User: user_1057 - RequestID: wimxqc43t1j +2025-06-18T14:57:55.581Z [DEBUG] user-service - POST /api/v1/orders - Status: 200 - Response time: 98ms - IP: 192.168.1.152 - User: user_1016 - RequestID: yms36irjqy +2025-06-18T14:57:55.681Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 179ms - Rows affected: 51 - RequestID: 4n31k8giebs +2025-06-18T14:57:55.781Z [INFO] order-service - Auth event: logout - User: user_1072 - IP: 192.168.227.233 - RequestID: w1jl906glr8 +2025-06-18T14:57:55.881Z [TRACE] payment-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.44.5 - RequestID: 6388dcz2mxr +2025-06-18T14:57:55.981Z [TRACE] order-service - Auth event: login_failed - User: user_1042 - IP: 192.168.242.165 - RequestID: yw1ujmyq6xm +2025-06-18T14:57:56.081Z [DEBUG] payment-service - GET /api/v1/orders - Status: 401 - Response time: 994ms - IP: 192.168.28.146 - User: user_1004 - RequestID: e2fgrxxrhq9 +2025-06-18T14:57:56.181Z [DEBUG] order-service - Auth event: login_success - User: user_1099 - IP: 192.168.36.218 - RequestID: anoh3kvpynv +2025-06-18T14:57:56.281Z [INFO] order-service - Operation: order_created - Processing time: 959ms - RequestID: h149lx913bt +2025-06-18T14:57:56.381Z [TRACE] order-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.235.117 - RequestID: exi4xs36bpp +2025-06-18T14:57:56.481Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 186ms - Rows affected: 5 - RequestID: 4ialf36sgub +2025-06-18T14:57:56.581Z [TRACE] order-service - Operation: notification_queued - Processing time: 657ms - RequestID: qm5nnzkquok +2025-06-18T14:57:56.681Z [TRACE] user-service - Operation: cache_hit - Processing time: 1030ms - RequestID: 7zk5w0x19xm +2025-06-18T14:57:56.781Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1846ms - IP: 192.168.194.41 - User: user_1095 - RequestID: hiqlsokmgc +2025-06-18T14:57:56.881Z [INFO] order-service - Database UPDATE on products - Execution time: 29ms - Rows affected: 28 - RequestID: uv0u0oz1fzn +2025-06-18T14:57:56.981Z [INFO] payment-service - Auth event: login_failed - User: user_1036 - IP: 192.168.79.143 - RequestID: fn8qc301kkh +2025-06-18T14:57:57.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1044 - IP: 192.168.187.199 - RequestID: lhdmecokd7 +2025-06-18T14:57:57.181Z [TRACE] order-service - Database DELETE on payments - Execution time: 180ms - Rows affected: 5 - RequestID: 26fgo49oz9m +2025-06-18T14:57:57.281Z [INFO] payment-service - PUT /api/v1/orders - Status: 200 - Response time: 577ms - IP: 192.168.46.63 - User: user_1001 - RequestID: auk9c31alcd +2025-06-18T14:57:57.381Z [INFO] order-service - Operation: cache_miss - Processing time: 374ms - RequestID: db4cgds0pcu +2025-06-18T14:57:57.481Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 232ms - Rows affected: 33 - RequestID: 89aqc8odmc +2025-06-18T14:57:57.581Z [INFO] user-service - Database INSERT on sessions - Execution time: 260ms - Rows affected: 78 - RequestID: a8ymz3l515 +2025-06-18T14:57:57.681Z [INFO] auth-service - PATCH /api/v1/payments - Status: 403 - Response time: 230ms - IP: 192.168.187.199 - User: user_1030 - RequestID: 0lez50bawwf +2025-06-18T14:57:57.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1027 - IP: 192.168.113.218 - RequestID: kh21cvgt64k +2025-06-18T14:57:57.881Z [TRACE] auth-service - Operation: payment_processed - Processing time: 291ms - RequestID: rg8i6d31ano +2025-06-18T14:57:57.981Z [DEBUG] user-service - PUT /api/v1/orders - Status: 403 - Response time: 759ms - IP: 192.168.144.38 - User: user_1093 - RequestID: mn6mrctayq8 +2025-06-18T14:57:58.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.227.233 - RequestID: pxa0om2jqh +2025-06-18T14:57:58.181Z [TRACE] order-service - Operation: cache_miss - Processing time: 122ms - RequestID: a1vgfyo361m +2025-06-18T14:57:58.281Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 454ms - Rows affected: 36 - RequestID: 6f94j9hb9i7 +2025-06-18T14:57:58.381Z [TRACE] payment-service - Database UPDATE on products - Execution time: 461ms - Rows affected: 44 - RequestID: qecm1kfjfo +2025-06-18T14:57:58.481Z [TRACE] auth-service - Auth event: login_success - User: user_1008 - IP: 192.168.235.117 - RequestID: 1mivoymj3lbj +2025-06-18T14:57:58.581Z [INFO] payment-service - PATCH /api/v1/orders - Status: 400 - Response time: 1741ms - IP: 192.168.189.103 - User: user_1087 - RequestID: x2fgztgtz6q +2025-06-18T14:57:58.681Z [TRACE] user-service - Database UPDATE on orders - Execution time: 171ms - Rows affected: 99 - RequestID: vc81lhf8gx8 +2025-06-18T14:57:58.781Z [INFO] user-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.247.134 - RequestID: m8kf544xija +2025-06-18T14:57:58.881Z [INFO] order-service - Database UPDATE on payments - Execution time: 380ms - Rows affected: 94 - RequestID: 61o4cpa8c04 +2025-06-18T14:57:58.981Z [TRACE] notification-service - Operation: cache_miss - Processing time: 645ms - RequestID: fbf3o57957b +2025-06-18T14:57:59.081Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 74ms - Rows affected: 57 - RequestID: xb0buodawj +2025-06-18T14:57:59.181Z [INFO] auth-service - GET /api/v1/payments - Status: 404 - Response time: 541ms - IP: 192.168.64.33 - User: user_1025 - RequestID: cuwxjw82yo +2025-06-18T14:57:59.281Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1267ms - IP: 192.168.113.218 - User: user_1061 - RequestID: a7id9z9c17f +2025-06-18T14:57:59.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 992ms - RequestID: sf95ugo0s3 +2025-06-18T14:57:59.481Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1124ms - IP: 192.168.133.7 - User: user_1047 - RequestID: h9hvtkuprud +2025-06-18T14:57:59.581Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 223ms - RequestID: zrd88wyr80a +2025-06-18T14:57:59.681Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1171ms - IP: 192.168.235.117 - User: user_1044 - RequestID: qclmhf1xlbg +2025-06-18T14:57:59.781Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 262ms - Rows affected: 79 - RequestID: x3kwadhw15f +2025-06-18T14:57:59.881Z [TRACE] payment-service - Operation: notification_queued - Processing time: 126ms - RequestID: jfoie1kl6tn +2025-06-18T14:57:59.981Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 404 - Response time: 478ms - IP: 192.168.174.114 - User: user_1070 - RequestID: 656cy6gsody +2025-06-18T14:58:00.081Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 502 - Response time: 281ms - IP: 192.168.133.7 - User: user_1053 - RequestID: hey9koqy2sp +2025-06-18T14:58:00.181Z [DEBUG] auth-service - Operation: email_sent - Processing time: 320ms - RequestID: 3tqp7myl4xh +2025-06-18T14:58:00.281Z [INFO] order-service - Database UPDATE on payments - Execution time: 373ms - Rows affected: 77 - RequestID: z96tf79a7vo +2025-06-18T14:58:00.381Z [INFO] payment-service - Database INSERT on products - Execution time: 322ms - Rows affected: 52 - RequestID: cd0dho23wgs +2025-06-18T14:58:00.481Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.100.240 - RequestID: o6c20vkcd5 +2025-06-18T14:58:00.581Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 263ms - IP: 192.168.240.169 - User: user_1043 - RequestID: 8c7w0bu0sqr +2025-06-18T14:58:00.681Z [DEBUG] auth-service - Database INSERT on users - Execution time: 9ms - Rows affected: 0 - RequestID: ksn0xgnfjch +2025-06-18T14:58:00.781Z [TRACE] order-service - Operation: payment_processed - Processing time: 957ms - RequestID: 8k2j58m6sw +2025-06-18T14:58:00.881Z [TRACE] payment-service - Operation: email_sent - Processing time: 367ms - RequestID: mga8p2hmfyp +2025-06-18T14:58:00.981Z [DEBUG] payment-service - Auth event: login_failed - User: user_1011 - IP: 192.168.232.72 - RequestID: l7iejetzht +2025-06-18T14:58:01.081Z [INFO] inventory-service - DELETE /api/v1/users - Status: 201 - Response time: 1232ms - IP: 192.168.235.117 - User: user_1000 - RequestID: 74c11fz5r5f +2025-06-18T14:58:01.181Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 404 - Response time: 1874ms - IP: 192.168.11.60 - User: user_1002 - RequestID: 4gg5eatsugh +2025-06-18T14:58:01.281Z [TRACE] order-service - Database DELETE on orders - Execution time: 466ms - Rows affected: 3 - RequestID: 1scok3rhr8l +2025-06-18T14:58:01.381Z [TRACE] user-service - Operation: email_sent - Processing time: 256ms - RequestID: uwcfyd2drj +2025-06-18T14:58:01.481Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 200 - Response time: 111ms - IP: 192.168.227.233 - User: user_1013 - RequestID: 9udt0w4hvxs +2025-06-18T14:58:01.581Z [TRACE] notification-service - Operation: cache_miss - Processing time: 56ms - RequestID: 2pmb5h3g5zo +2025-06-18T14:58:01.681Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 890ms - IP: 192.168.79.116 - User: user_1049 - RequestID: g07xyqpxn6a +2025-06-18T14:58:01.781Z [TRACE] auth-service - Operation: cache_hit - Processing time: 712ms - RequestID: grkp768tqsj +2025-06-18T14:58:01.881Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 400 - Response time: 318ms - IP: 192.168.189.103 - User: user_1094 - RequestID: dcv43wpkyis +2025-06-18T14:58:01.981Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1598ms - IP: 192.168.187.199 - User: user_1023 - RequestID: 3en6s75hz73 +2025-06-18T14:58:02.081Z [INFO] order-service - Operation: webhook_sent - Processing time: 753ms - RequestID: 9ixf1gp1m0s +2025-06-18T14:58:02.181Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 155ms - Rows affected: 87 - RequestID: b45owijzea +2025-06-18T14:58:02.281Z [DEBUG] user-service - Database DELETE on users - Execution time: 116ms - Rows affected: 88 - RequestID: mkj5s9u71l +2025-06-18T14:58:02.381Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 27ms - Rows affected: 39 - RequestID: gbits0fjfrs +2025-06-18T14:58:02.481Z [INFO] order-service - Operation: payment_processed - Processing time: 402ms - RequestID: h5ftq19yipq +2025-06-18T14:58:02.581Z [TRACE] auth-service - PUT /api/v1/payments - Status: 503 - Response time: 789ms - IP: 192.168.30.79 - User: user_1065 - RequestID: a5t4910a49k +2025-06-18T14:58:02.681Z [DEBUG] order-service - Operation: cache_miss - Processing time: 566ms - RequestID: cxe27htcgt +2025-06-18T14:58:02.781Z [TRACE] order-service - DELETE /api/v1/orders - Status: 404 - Response time: 855ms - IP: 192.168.141.100 - User: user_1096 - RequestID: fmrgtne6qqd +2025-06-18T14:58:02.881Z [INFO] order-service - Database UPDATE on orders - Execution time: 100ms - Rows affected: 21 - RequestID: 89ikfaxi8xo +2025-06-18T14:58:02.981Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 400 - Response time: 245ms - IP: 192.168.68.128 - User: user_1012 - RequestID: dq59t9yaxb +2025-06-18T14:58:03.081Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1981ms - IP: 192.168.97.87 - User: user_1014 - RequestID: 3iss285fodx +2025-06-18T14:58:03.181Z [INFO] user-service - Auth event: login_failed - User: user_1075 - IP: 192.168.79.143 - RequestID: 75i6mkyqtqn +2025-06-18T14:58:03.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.167.32 - RequestID: d7dtrj14w6q +2025-06-18T14:58:03.381Z [TRACE] user-service - Database DELETE on products - Execution time: 205ms - Rows affected: 79 - RequestID: lopi7bj5pj9 +2025-06-18T14:58:03.481Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 402ms - Rows affected: 15 - RequestID: a9f9jt75qag +2025-06-18T14:58:03.581Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 272ms - Rows affected: 54 - RequestID: 9pska4d24oc +2025-06-18T14:58:03.681Z [DEBUG] payment-service - Auth event: logout - User: user_1003 - IP: 192.168.36.218 - RequestID: lf8s0fzzr3 +2025-06-18T14:58:03.781Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 404 - Response time: 749ms - IP: 192.168.174.114 - User: user_1050 - RequestID: pzads6eg5o9 +2025-06-18T14:58:03.881Z [TRACE] auth-service - Database INSERT on products - Execution time: 449ms - Rows affected: 27 - RequestID: taepwnuf4c +2025-06-18T14:58:03.981Z [INFO] user-service - Operation: webhook_sent - Processing time: 912ms - RequestID: r4wwqzunqp +2025-06-18T14:58:04.081Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1811ms - IP: 192.168.147.171 - User: user_1065 - RequestID: ct96tyfsyqw +2025-06-18T14:58:04.181Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 424ms - RequestID: 20o4h2k0e99 +2025-06-18T14:58:04.281Z [INFO] user-service - PATCH /api/v1/orders - Status: 401 - Response time: 1803ms - IP: 192.168.1.152 - User: user_1035 - RequestID: 1f89pffv7m9 +2025-06-18T14:58:04.381Z [DEBUG] payment-service - Auth event: login_success - User: user_1063 - IP: 192.168.194.41 - RequestID: vuh4gevvgyp +2025-06-18T14:58:04.481Z [DEBUG] order-service - GET /api/v1/inventory - Status: 500 - Response time: 516ms - IP: 192.168.247.134 - User: user_1050 - RequestID: p0aewa6e2im +2025-06-18T14:58:04.581Z [INFO] order-service - POST /api/v1/inventory - Status: 201 - Response time: 158ms - IP: 192.168.11.60 - User: user_1098 - RequestID: xcld6owek9 +2025-06-18T14:58:04.681Z [TRACE] auth-service - Database DELETE on orders - Execution time: 146ms - Rows affected: 43 - RequestID: 0m45avo9cb1m +2025-06-18T14:58:04.781Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1416ms - IP: 192.168.247.134 - User: user_1003 - RequestID: 3wo6hykeky8 +2025-06-18T14:58:04.881Z [TRACE] auth-service - Database INSERT on products - Execution time: 213ms - Rows affected: 45 - RequestID: 6elh12t3s0q +2025-06-18T14:58:04.981Z [INFO] order-service - Database UPDATE on users - Execution time: 74ms - Rows affected: 48 - RequestID: bpesr8xa7o +2025-06-18T14:58:05.081Z [TRACE] order-service - PUT /api/v1/payments - Status: 502 - Response time: 846ms - IP: 192.168.97.87 - User: user_1091 - RequestID: a6w3azn1c2 +2025-06-18T14:58:05.181Z [TRACE] notification-service - Auth event: login_success - User: user_1057 - IP: 192.168.159.94 - RequestID: aizu9yjuj44 +2025-06-18T14:58:05.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 895ms - RequestID: bn7qt1l65 +2025-06-18T14:58:05.381Z [TRACE] payment-service - PUT /api/v1/orders - Status: 201 - Response time: 997ms - IP: 192.168.141.100 - User: user_1012 - RequestID: hud8y3q3vwm +2025-06-18T14:58:05.481Z [INFO] payment-service - Operation: order_created - Processing time: 785ms - RequestID: 332e7g1smzr +2025-06-18T14:58:05.581Z [INFO] inventory-service - POST /api/v1/payments - Status: 500 - Response time: 1857ms - IP: 192.168.81.206 - User: user_1041 - RequestID: euhd14gznre +2025-06-18T14:58:05.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.11.60 - RequestID: jhko438vjrr +2025-06-18T14:58:05.781Z [DEBUG] auth-service - Auth event: logout - User: user_1042 - IP: 192.168.100.240 - RequestID: 8qvtdsg0o1d +2025-06-18T14:58:05.881Z [INFO] notification-service - PUT /api/v1/payments - Status: 200 - Response time: 198ms - IP: 192.168.227.233 - User: user_1083 - RequestID: 4fwvbexetad +2025-06-18T14:58:05.981Z [INFO] auth-service - Database INSERT on sessions - Execution time: 274ms - Rows affected: 92 - RequestID: agdwuyc4cso +2025-06-18T14:58:06.081Z [DEBUG] payment-service - Auth event: logout - User: user_1021 - IP: 192.168.46.63 - RequestID: 04jh6xgw9glw +2025-06-18T14:58:06.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.64.33 - RequestID: 6cdeppfprwf +2025-06-18T14:58:06.281Z [TRACE] auth-service - Database SELECT on products - Execution time: 367ms - Rows affected: 20 - RequestID: ijz10zj9n7i +2025-06-18T14:58:06.381Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1029ms - IP: 192.168.28.146 - User: user_1008 - RequestID: e28lpv115gh +2025-06-18T14:58:06.481Z [INFO] notification-service - POST /api/v1/payments - Status: 200 - Response time: 807ms - IP: 192.168.187.199 - User: user_1029 - RequestID: axjk78t2pst +2025-06-18T14:58:06.581Z [TRACE] user-service - Operation: webhook_sent - Processing time: 976ms - RequestID: cmjud11s6rh +2025-06-18T14:58:06.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.81.206 - RequestID: stbn2oed74s +2025-06-18T14:58:06.781Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1525ms - IP: 192.168.46.63 - User: user_1033 - RequestID: u9ydrdaoj1j +2025-06-18T14:58:06.881Z [DEBUG] order-service - Database INSERT on products - Execution time: 406ms - Rows affected: 68 - RequestID: 3ddv2jg8g3 +2025-06-18T14:58:06.981Z [INFO] order-service - Database DELETE on payments - Execution time: 109ms - Rows affected: 43 - RequestID: ctez0typ9ic +2025-06-18T14:58:07.081Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1215ms - IP: 192.168.141.100 - User: user_1055 - RequestID: nvw6a5xn2q +2025-06-18T14:58:07.181Z [TRACE] auth-service - Database SELECT on products - Execution time: 365ms - Rows affected: 63 - RequestID: uljuz8610lk +2025-06-18T14:58:07.281Z [TRACE] notification-service - Operation: payment_processed - Processing time: 755ms - RequestID: z8d4zwr191 +2025-06-18T14:58:07.381Z [DEBUG] user-service - Database SELECT on products - Execution time: 299ms - Rows affected: 30 - RequestID: mu0lyxnhqb +2025-06-18T14:58:07.481Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 469ms - Rows affected: 79 - RequestID: 5xpbo3ecr9p +2025-06-18T14:58:07.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.79.141 - RequestID: mavecnslu3r +2025-06-18T14:58:07.681Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 1001ms - RequestID: 7z0bzzyodw +2025-06-18T14:58:07.781Z [TRACE] order-service - Operation: webhook_sent - Processing time: 617ms - RequestID: wwgmh0rteg +2025-06-18T14:58:07.881Z [DEBUG] notification-service - GET /api/v1/users - Status: 403 - Response time: 1313ms - IP: 192.168.68.128 - User: user_1009 - RequestID: kw5mm85dakq +2025-06-18T14:58:07.981Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.79.116 - RequestID: dxrrjix4lh9 +2025-06-18T14:58:08.081Z [TRACE] auth-service - Database UPDATE on users - Execution time: 123ms - Rows affected: 99 - RequestID: co5fpi1bjmv +2025-06-18T14:58:08.181Z [DEBUG] order-service - Auth event: logout - User: user_1027 - IP: 192.168.141.100 - RequestID: ov4fq28zamd +2025-06-18T14:58:08.281Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 462ms - Rows affected: 0 - RequestID: 2hubz3lt32w +2025-06-18T14:58:08.381Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 403 - Response time: 137ms - IP: 192.168.14.77 - User: user_1025 - RequestID: 8mfcwpescbf +2025-06-18T14:58:08.481Z [INFO] auth-service - Database SELECT on sessions - Execution time: 44ms - Rows affected: 3 - RequestID: 5q7xvqaporc +2025-06-18T14:58:08.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.97.87 - RequestID: dkxse241h3 +2025-06-18T14:58:08.681Z [INFO] order-service - Operation: webhook_sent - Processing time: 758ms - RequestID: afz1ivob6nd +2025-06-18T14:58:08.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.247.134 - RequestID: fwdd814mb9f +2025-06-18T14:58:08.881Z [TRACE] notification-service - Database SELECT on products - Execution time: 127ms - Rows affected: 75 - RequestID: p7ojd503pl +2025-06-18T14:58:08.981Z [DEBUG] user-service - Operation: cache_miss - Processing time: 102ms - RequestID: ollkscf752 +2025-06-18T14:58:09.081Z [INFO] order-service - Auth event: login_failed - User: user_1001 - IP: 192.168.242.165 - RequestID: cdppwvmb9e9 +2025-06-18T14:58:09.181Z [DEBUG] notification-service - Database DELETE on users - Execution time: 267ms - Rows affected: 46 - RequestID: yvxgrir81x +2025-06-18T14:58:09.281Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 99ms - Rows affected: 94 - RequestID: vr3og7408i +2025-06-18T14:58:09.381Z [TRACE] order-service - Database UPDATE on products - Execution time: 498ms - Rows affected: 3 - RequestID: xe57yy4x56 +2025-06-18T14:58:09.481Z [INFO] order-service - POST /api/v1/orders - Status: 200 - Response time: 47ms - IP: 192.168.36.218 - User: user_1053 - RequestID: 50vkxdndi4b +2025-06-18T14:58:09.581Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 315ms - Rows affected: 99 - RequestID: u99s6igjtvf +2025-06-18T14:58:09.681Z [TRACE] auth-service - Operation: order_created - Processing time: 594ms - RequestID: v6ol7p52va +2025-06-18T14:58:09.781Z [INFO] user-service - POST /api/v1/inventory - Status: 502 - Response time: 1497ms - IP: 192.168.64.33 - User: user_1010 - RequestID: pomwgz4zke +2025-06-18T14:58:09.881Z [DEBUG] user-service - Operation: cache_hit - Processing time: 104ms - RequestID: s1f4p7z5pd +2025-06-18T14:58:09.981Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.79.116 - RequestID: jwdr4qmbfi +2025-06-18T14:58:10.081Z [DEBUG] notification-service - POST /api/v1/users - Status: 503 - Response time: 1556ms - IP: 192.168.242.165 - User: user_1001 - RequestID: cl8ko5m7u6 +2025-06-18T14:58:10.181Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1740ms - IP: 192.168.147.171 - User: user_1056 - RequestID: 93oh9js1xlp +2025-06-18T14:58:10.281Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 469ms - RequestID: tjmco4qfmb +2025-06-18T14:58:10.381Z [TRACE] inventory-service - Database SELECT on users - Execution time: 164ms - Rows affected: 27 - RequestID: jnvsq44mwvj +2025-06-18T14:58:10.481Z [INFO] auth-service - Operation: cache_miss - Processing time: 601ms - RequestID: 7j2zso6ccvk +2025-06-18T14:58:10.581Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1137ms - IP: 192.168.79.116 - User: user_1093 - RequestID: 2yulm4lgnhc +2025-06-18T14:58:10.681Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1461ms - IP: 192.168.44.5 - User: user_1075 - RequestID: tg8m0f7viip +2025-06-18T14:58:10.781Z [INFO] notification-service - Database SELECT on orders - Execution time: 295ms - Rows affected: 7 - RequestID: 4rgpf2wr4n +2025-06-18T14:58:10.881Z [INFO] user-service - Database INSERT on orders - Execution time: 57ms - Rows affected: 57 - RequestID: rejhg6x7p1 +2025-06-18T14:58:10.981Z [INFO] inventory-service - POST /api/v1/payments - Status: 503 - Response time: 1936ms - IP: 192.168.138.123 - User: user_1079 - RequestID: x9fwtc32s3f +2025-06-18T14:58:11.081Z [INFO] auth-service - Database UPDATE on users - Execution time: 130ms - Rows affected: 15 - RequestID: jb29pby74i +2025-06-18T14:58:11.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1004 - IP: 192.168.159.94 - RequestID: yhi37unxoo +2025-06-18T14:58:11.281Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 763ms - RequestID: n3suu3fbfqt +2025-06-18T14:58:11.381Z [DEBUG] order-service - Database DELETE on orders - Execution time: 224ms - Rows affected: 87 - RequestID: l21vxkw7oio +2025-06-18T14:58:11.481Z [INFO] notification-service - POST /api/v1/inventory - Status: 401 - Response time: 957ms - IP: 192.168.211.72 - User: user_1008 - RequestID: egdqkm8kmbq +2025-06-18T14:58:11.581Z [TRACE] notification-service - Operation: cache_hit - Processing time: 119ms - RequestID: vojlhysdwfr +2025-06-18T14:58:11.681Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 218ms - Rows affected: 35 - RequestID: 3txy7juhsek +2025-06-18T14:58:11.781Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 502 - Response time: 849ms - IP: 192.168.147.171 - User: user_1000 - RequestID: rmi83o0rc98 +2025-06-18T14:58:11.881Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 403 - Response time: 930ms - IP: 192.168.147.171 - User: user_1099 - RequestID: tavfmi2f6jo +2025-06-18T14:58:11.981Z [TRACE] order-service - Operation: inventory_updated - Processing time: 860ms - RequestID: ttdmpdr9neh +2025-06-18T14:58:12.081Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 401 - Response time: 605ms - IP: 192.168.174.114 - User: user_1043 - RequestID: k5yfj2vr798 +2025-06-18T14:58:12.181Z [INFO] user-service - Database SELECT on products - Execution time: 277ms - Rows affected: 83 - RequestID: 05qdm5o6hqzm +2025-06-18T14:58:12.281Z [TRACE] payment-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.68.158 - RequestID: hjptq9mtsmu +2025-06-18T14:58:12.381Z [TRACE] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 1766ms - IP: 192.168.28.146 - User: user_1003 - RequestID: 5otevp3lmv4 +2025-06-18T14:58:12.481Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 132ms - Rows affected: 28 - RequestID: 79ss8f7dbz +2025-06-18T14:58:12.581Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 227ms - Rows affected: 86 - RequestID: q9eqr5yhcu +2025-06-18T14:58:12.681Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1811ms - IP: 192.168.31.117 - User: user_1027 - RequestID: zq8wflyqtt +2025-06-18T14:58:12.781Z [INFO] auth-service - Operation: payment_processed - Processing time: 114ms - RequestID: 1zztzlf1t3b +2025-06-18T14:58:12.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1026 - IP: 192.168.68.158 - RequestID: soyjw9crp7g +2025-06-18T14:58:12.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 444ms - RequestID: 4mbp001z5hx +2025-06-18T14:58:13.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.144.38 - RequestID: rb95ddmg6l +2025-06-18T14:58:13.181Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 400 - Response time: 158ms - IP: 192.168.159.94 - User: user_1065 - RequestID: wmp349lp98o +2025-06-18T14:58:13.281Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 29ms - Rows affected: 42 - RequestID: ubozgyxbddk +2025-06-18T14:58:13.381Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 434ms - RequestID: 86wzrdhjjlq +2025-06-18T14:58:13.481Z [INFO] auth-service - Operation: email_sent - Processing time: 525ms - RequestID: 3hkrsyag9v8 +2025-06-18T14:58:13.581Z [INFO] user-service - GET /api/v1/payments - Status: 404 - Response time: 1122ms - IP: 192.168.211.72 - User: user_1088 - RequestID: zupwto29z4e +2025-06-18T14:58:13.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.79.141 - RequestID: r2k98o3k7g +2025-06-18T14:58:13.781Z [TRACE] notification-service - PATCH /api/v1/users - Status: 500 - Response time: 1760ms - IP: 192.168.235.117 - User: user_1010 - RequestID: kwhh8mu61k +2025-06-18T14:58:13.881Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.247.134 - RequestID: 4c3ri9bj3x1 +2025-06-18T14:58:13.981Z [TRACE] user-service - Database DELETE on orders - Execution time: 393ms - Rows affected: 21 - RequestID: 29e649qe6l6 +2025-06-18T14:58:14.081Z [DEBUG] user-service - Database DELETE on orders - Execution time: 134ms - Rows affected: 29 - RequestID: 8d67jf43gif +2025-06-18T14:58:14.181Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 519ms - IP: 192.168.100.240 - User: user_1065 - RequestID: tgxctehj29l +2025-06-18T14:58:14.281Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 503 - Response time: 1811ms - IP: 192.168.68.128 - User: user_1091 - RequestID: n01gzyyxy2 +2025-06-18T14:58:14.381Z [DEBUG] notification-service - Operation: order_created - Processing time: 799ms - RequestID: 1yc3bqq9sih +2025-06-18T14:58:14.481Z [TRACE] order-service - Database DELETE on orders - Execution time: 173ms - Rows affected: 29 - RequestID: 028fcifober9 +2025-06-18T14:58:14.581Z [INFO] payment-service - Operation: cache_hit - Processing time: 956ms - RequestID: akhlklx7wfj +2025-06-18T14:58:14.681Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 557ms - RequestID: 3qg44po7qd8 +2025-06-18T14:58:14.781Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 115ms - Rows affected: 41 - RequestID: gci379yjxo +2025-06-18T14:58:14.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1055 - IP: 192.168.174.114 - RequestID: p3wbghbijv +2025-06-18T14:58:14.981Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 379ms - Rows affected: 26 - RequestID: ek9fvxq88ok +2025-06-18T14:58:15.081Z [TRACE] user-service - Operation: inventory_updated - Processing time: 147ms - RequestID: 8aj767xtwui +2025-06-18T14:58:15.181Z [INFO] payment-service - Database SELECT on products - Execution time: 310ms - Rows affected: 31 - RequestID: hx0iame3jfk +2025-06-18T14:58:15.281Z [TRACE] user-service - Operation: notification_queued - Processing time: 281ms - RequestID: w9p8d9y7flo +2025-06-18T14:58:15.381Z [DEBUG] order-service - Database UPDATE on products - Execution time: 351ms - Rows affected: 35 - RequestID: xmcarn7yr8 +2025-06-18T14:58:15.481Z [TRACE] order-service - Operation: order_created - Processing time: 1017ms - RequestID: x57995i5k4 +2025-06-18T14:58:15.581Z [DEBUG] notification-service - Auth event: logout - User: user_1081 - IP: 192.168.81.206 - RequestID: iqutmrox30m +2025-06-18T14:58:15.681Z [DEBUG] inventory-service - Auth event: password_change - User: user_1071 - IP: 192.168.194.41 - RequestID: 23bci3thllo +2025-06-18T14:58:15.781Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1025ms - RequestID: trtyht34zjn +2025-06-18T14:58:15.881Z [DEBUG] notification-service - GET /api/v1/orders - Status: 200 - Response time: 678ms - IP: 192.168.31.117 - User: user_1098 - RequestID: 3tqq7kmbqqo +2025-06-18T14:58:15.981Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 423ms - Rows affected: 26 - RequestID: 8v11hhvbd8 +2025-06-18T14:58:16.081Z [TRACE] order-service - PATCH /api/v1/orders - Status: 404 - Response time: 1003ms - IP: 192.168.53.133 - User: user_1024 - RequestID: cs0rv7g7ap +2025-06-18T14:58:16.181Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 700ms - RequestID: kmzxhcawsw +2025-06-18T14:58:16.281Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 200 - Response time: 307ms - IP: 192.168.113.218 - User: user_1039 - RequestID: 5xfa9tgsxac +2025-06-18T14:58:16.381Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1726ms - IP: 192.168.1.152 - User: user_1080 - RequestID: kygo6ssc3qr +2025-06-18T14:58:16.481Z [TRACE] payment-service - Auth event: login_failed - User: user_1094 - IP: 192.168.232.72 - RequestID: 96p3hmpj8v5 +2025-06-18T14:58:16.581Z [INFO] user-service - Operation: order_created - Processing time: 86ms - RequestID: ty6tk0pwv1j +2025-06-18T14:58:16.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.227.77 - RequestID: unpd3isuq2g +2025-06-18T14:58:16.781Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1680ms - IP: 192.168.174.114 - User: user_1066 - RequestID: omesc8oziim +2025-06-18T14:58:16.881Z [DEBUG] user-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.104.37 - RequestID: sdqvhtq0ub9 +2025-06-18T14:58:16.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.189.103 - RequestID: lv5s6gy6k8a +2025-06-18T14:58:17.081Z [INFO] user-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.79.141 - RequestID: yjpjid9s8qd +2025-06-18T14:58:17.181Z [INFO] payment-service - Operation: notification_queued - Processing time: 898ms - RequestID: pq7ifkyc86q +2025-06-18T14:58:17.281Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 106ms - RequestID: avczbel7f1r +2025-06-18T14:58:17.381Z [INFO] notification-service - Auth event: password_change - User: user_1081 - IP: 192.168.235.117 - RequestID: 6zk43rm6jri +2025-06-18T14:58:17.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1068 - IP: 192.168.68.128 - RequestID: bcosth2nri8 +2025-06-18T14:58:17.581Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 106ms - Rows affected: 2 - RequestID: unnwj543nyc +2025-06-18T14:58:17.681Z [INFO] user-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.31.117 - RequestID: gn2m67jk8l9 +2025-06-18T14:58:17.781Z [TRACE] inventory-service - GET /api/v1/orders - Status: 200 - Response time: 222ms - IP: 192.168.240.169 - User: user_1056 - RequestID: bw1wqe1sw6 +2025-06-18T14:58:17.881Z [TRACE] order-service - Database UPDATE on users - Execution time: 438ms - Rows affected: 4 - RequestID: umtj6qwdkt9 +2025-06-18T14:58:17.981Z [DEBUG] payment-service - POST /api/v1/orders - Status: 401 - Response time: 1227ms - IP: 192.168.44.5 - User: user_1038 - RequestID: vr7c1rb9m4 +2025-06-18T14:58:18.081Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1537ms - IP: 192.168.36.218 - User: user_1077 - RequestID: 1otsdh5a4di +2025-06-18T14:58:18.181Z [INFO] order-service - Operation: payment_processed - Processing time: 948ms - RequestID: aoiodxkd6hc +2025-06-18T14:58:18.281Z [TRACE] auth-service - Auth event: password_change - User: user_1006 - IP: 192.168.11.60 - RequestID: jumyo4ikup +2025-06-18T14:58:18.381Z [INFO] inventory-service - Database INSERT on users - Execution time: 299ms - Rows affected: 14 - RequestID: fr9zqigie9g +2025-06-18T14:58:18.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 495ms - RequestID: zsbpzimcne +2025-06-18T14:58:18.581Z [INFO] payment-service - Database INSERT on payments - Execution time: 266ms - Rows affected: 10 - RequestID: r17456bhtfh +2025-06-18T14:58:18.681Z [INFO] payment-service - Database DELETE on payments - Execution time: 250ms - Rows affected: 4 - RequestID: kf30k5djbg +2025-06-18T14:58:18.781Z [TRACE] user-service - Auth event: login_success - User: user_1044 - IP: 192.168.147.171 - RequestID: hnjirak0fu6 +2025-06-18T14:58:18.881Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 401 - Response time: 1805ms - IP: 192.168.229.123 - User: user_1069 - RequestID: t4zdtdj7upa +2025-06-18T14:58:18.981Z [INFO] user-service - GET /api/v1/users - Status: 201 - Response time: 708ms - IP: 192.168.158.144 - User: user_1068 - RequestID: ysi37mf3n2 +2025-06-18T14:58:19.081Z [DEBUG] auth-service - Operation: email_sent - Processing time: 302ms - RequestID: ys6zurlcckl +2025-06-18T14:58:19.181Z [DEBUG] auth-service - Operation: order_created - Processing time: 606ms - RequestID: droaxw1hglf +2025-06-18T14:58:19.281Z [TRACE] user-service - PUT /api/v1/inventory - Status: 502 - Response time: 1742ms - IP: 192.168.32.38 - User: user_1058 - RequestID: 83xau29v8tg +2025-06-18T14:58:19.381Z [TRACE] payment-service - Operation: cache_miss - Processing time: 492ms - RequestID: pj20fwldgyk +2025-06-18T14:58:19.481Z [TRACE] payment-service - Auth event: password_change - User: user_1030 - IP: 192.168.1.152 - RequestID: klktf6o1xs +2025-06-18T14:58:19.581Z [INFO] notification-service - Database SELECT on payments - Execution time: 319ms - Rows affected: 29 - RequestID: smecsbzqeod +2025-06-18T14:58:19.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 658ms - RequestID: 02qdcr9f0l5d +2025-06-18T14:58:19.781Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1091 - IP: 192.168.211.72 - RequestID: p0grsz9z9e +2025-06-18T14:58:19.881Z [TRACE] notification-service - Database DELETE on payments - Execution time: 388ms - Rows affected: 22 - RequestID: v7y1m4cy5ol +2025-06-18T14:58:19.981Z [INFO] auth-service - Operation: order_created - Processing time: 181ms - RequestID: sdgesu8x5y +2025-06-18T14:58:20.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 224ms - RequestID: h17i21kv5dq +2025-06-18T14:58:20.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 792ms - RequestID: cmii2isk9sn +2025-06-18T14:58:20.281Z [TRACE] order-service - Operation: order_created - Processing time: 860ms - RequestID: g6wgad5f9xq +2025-06-18T14:58:20.381Z [DEBUG] order-service - Database INSERT on products - Execution time: 155ms - Rows affected: 92 - RequestID: 3592iix11mx +2025-06-18T14:58:20.481Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 275ms - RequestID: nnmrll0pf6 +2025-06-18T14:58:20.581Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1822ms - IP: 192.168.242.165 - User: user_1054 - RequestID: 6po1mxt6ulw +2025-06-18T14:58:20.681Z [DEBUG] auth-service - Operation: email_sent - Processing time: 517ms - RequestID: aetfmyjb2b5 +2025-06-18T14:58:20.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1098 - IP: 192.168.133.7 - RequestID: wmn7vkm30ei +2025-06-18T14:58:20.881Z [INFO] payment-service - Operation: payment_processed - Processing time: 590ms - RequestID: ahc6fvzykvp +2025-06-18T14:58:20.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.85.229 - RequestID: sj1mcdk3dj8 +2025-06-18T14:58:21.081Z [TRACE] user-service - POST /api/v1/payments - Status: 404 - Response time: 1695ms - IP: 192.168.240.169 - User: user_1066 - RequestID: emv29ogrmu6 +2025-06-18T14:58:21.181Z [INFO] inventory-service - Auth event: password_change - User: user_1041 - IP: 192.168.113.218 - RequestID: ki81cc7fu9 +2025-06-18T14:58:21.281Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 796ms - RequestID: sxts57m58pi +2025-06-18T14:58:21.381Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1697ms - IP: 192.168.79.141 - User: user_1067 - RequestID: qmz7njr0ngj +2025-06-18T14:58:21.481Z [INFO] payment-service - Auth event: logout - User: user_1053 - IP: 192.168.46.63 - RequestID: s0k5yiiafig +2025-06-18T14:58:21.581Z [TRACE] auth-service - Operation: cache_miss - Processing time: 684ms - RequestID: ldgcmcnq26b +2025-06-18T14:58:21.681Z [INFO] inventory-service - Auth event: logout - User: user_1097 - IP: 192.168.30.79 - RequestID: ohifssfnxue +2025-06-18T14:58:21.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.79.143 - RequestID: yp1fpdjy9p +2025-06-18T14:58:21.881Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 500 - Response time: 988ms - IP: 192.168.187.199 - User: user_1078 - RequestID: h1ete39lp8s +2025-06-18T14:58:21.981Z [TRACE] payment-service - Auth event: login_success - User: user_1058 - IP: 192.168.159.94 - RequestID: 7qkgqo7or17 +2025-06-18T14:58:22.081Z [TRACE] order-service - PUT /api/v1/orders - Status: 403 - Response time: 943ms - IP: 192.168.158.144 - User: user_1037 - RequestID: 8fi33vuvtgs +2025-06-18T14:58:22.181Z [DEBUG] order-service - Operation: notification_queued - Processing time: 483ms - RequestID: ftlvycpmbet +2025-06-18T14:58:22.281Z [TRACE] auth-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.28.146 - RequestID: hrqs2aywoev +2025-06-18T14:58:22.381Z [DEBUG] order-service - Operation: cache_hit - Processing time: 491ms - RequestID: aoxsxpc7vn +2025-06-18T14:58:22.481Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 731ms - RequestID: 7dwignk603l +2025-06-18T14:58:22.581Z [INFO] payment-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.159.94 - RequestID: feo57frpxlk +2025-06-18T14:58:22.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 586ms - RequestID: ux2ewlzmm8 +2025-06-18T14:58:22.781Z [INFO] inventory-service - Database SELECT on products - Execution time: 416ms - Rows affected: 27 - RequestID: 1xzd79uu3b8 +2025-06-18T14:58:22.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 409ms - RequestID: z0svhn9ca18 +2025-06-18T14:58:22.981Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 200 - Response time: 709ms - IP: 192.168.97.87 - User: user_1032 - RequestID: mjcukd2vnm8 +2025-06-18T14:58:23.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.159.94 - RequestID: lp7nn8lfs1 +2025-06-18T14:58:23.181Z [DEBUG] notification-service - Operation: order_created - Processing time: 852ms - RequestID: zhsdvj1sb4 +2025-06-18T14:58:23.281Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 172ms - Rows affected: 49 - RequestID: 7k8vc2v8nm3 +2025-06-18T14:58:23.381Z [DEBUG] payment-service - Auth event: login_success - User: user_1052 - IP: 192.168.232.72 - RequestID: pwgyo40awj9 +2025-06-18T14:58:23.481Z [INFO] auth-service - Database INSERT on payments - Execution time: 392ms - Rows affected: 42 - RequestID: 6wia2q471dj +2025-06-18T14:58:23.581Z [DEBUG] auth-service - Database DELETE on users - Execution time: 113ms - Rows affected: 69 - RequestID: sjfrdgzv73s +2025-06-18T14:58:23.681Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 130ms - RequestID: fqtuzq631og +2025-06-18T14:58:23.781Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 400 - Response time: 1819ms - IP: 192.168.14.77 - User: user_1037 - RequestID: js0frhplt8f +2025-06-18T14:58:23.881Z [INFO] payment-service - Auth event: logout - User: user_1003 - IP: 192.168.174.114 - RequestID: xl4lzfzzg5 +2025-06-18T14:58:23.981Z [INFO] auth-service - PUT /api/v1/payments - Status: 500 - Response time: 500ms - IP: 192.168.242.165 - User: user_1017 - RequestID: 114ipntcj8kn +2025-06-18T14:58:24.081Z [DEBUG] order-service - Database DELETE on payments - Execution time: 64ms - Rows affected: 14 - RequestID: nd3mxz1xeck +2025-06-18T14:58:24.181Z [DEBUG] auth-service - Auth event: logout - User: user_1078 - IP: 192.168.242.165 - RequestID: jeq2k09kkt +2025-06-18T14:58:24.281Z [DEBUG] payment-service - Auth event: login_success - User: user_1078 - IP: 192.168.247.134 - RequestID: ytx2j89f6ik +2025-06-18T14:58:24.381Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 631ms - RequestID: 9chxfjim426 +2025-06-18T14:58:24.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.235.117 - RequestID: ywzh85jmxpk +2025-06-18T14:58:24.581Z [TRACE] user-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.229.123 - RequestID: 4k450p6xzyn +2025-06-18T14:58:24.681Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 450ms - Rows affected: 7 - RequestID: fpb9oczv5vu +2025-06-18T14:58:24.781Z [TRACE] order-service - Auth event: logout - User: user_1048 - IP: 192.168.13.72 - RequestID: gfz3js98jvr +2025-06-18T14:58:24.881Z [TRACE] payment-service - Auth event: logout - User: user_1091 - IP: 192.168.240.169 - RequestID: ijw843csv5 +2025-06-18T14:58:24.981Z [TRACE] order-service - PUT /api/v1/orders - Status: 404 - Response time: 1916ms - IP: 192.168.138.123 - User: user_1001 - RequestID: azxazn9e4ka +2025-06-18T14:58:25.081Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 300ms - IP: 192.168.79.116 - User: user_1051 - RequestID: inht0zd8xo +2025-06-18T14:58:25.181Z [INFO] inventory-service - Operation: cache_hit - Processing time: 664ms - RequestID: rciyro9sam +2025-06-18T14:58:25.281Z [TRACE] user-service - Operation: order_created - Processing time: 918ms - RequestID: h51sv0khizq +2025-06-18T14:58:25.381Z [TRACE] order-service - Auth event: password_change - User: user_1080 - IP: 192.168.13.72 - RequestID: ce2g9dayg6 +2025-06-18T14:58:25.481Z [TRACE] notification-service - Database INSERT on users - Execution time: 312ms - Rows affected: 43 - RequestID: pd22jlz4ci +2025-06-18T14:58:25.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.13.72 - RequestID: 748cxajmc4t +2025-06-18T14:58:25.681Z [INFO] payment-service - DELETE /api/v1/payments - Status: 400 - Response time: 957ms - IP: 192.168.10.184 - User: user_1037 - RequestID: h1d2s26sdtb +2025-06-18T14:58:25.781Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 297ms - Rows affected: 89 - RequestID: x942fzq2c2n +2025-06-18T14:58:25.881Z [INFO] order-service - Database SELECT on users - Execution time: 371ms - Rows affected: 55 - RequestID: y80dx8j8vmr +2025-06-18T14:58:25.981Z [INFO] order-service - POST /api/v1/payments - Status: 400 - Response time: 772ms - IP: 192.168.14.77 - User: user_1067 - RequestID: 07svk6jojeeb +2025-06-18T14:58:26.081Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 502 - Response time: 830ms - IP: 192.168.33.76 - User: user_1036 - RequestID: qg1oehe1ke +2025-06-18T14:58:26.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1097 - IP: 192.168.1.152 - RequestID: z5q6fh1kc3 +2025-06-18T14:58:26.281Z [TRACE] payment-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.167.32 - RequestID: lwq1jdfguc +2025-06-18T14:58:26.381Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 444ms - Rows affected: 44 - RequestID: d6xtleeh08n +2025-06-18T14:58:26.481Z [DEBUG] notification-service - Auth event: login_failed - User: user_1045 - IP: 192.168.232.72 - RequestID: puv0o96p58 +2025-06-18T14:58:26.581Z [DEBUG] notification-service - Operation: order_created - Processing time: 838ms - RequestID: map0apdj5l +2025-06-18T14:58:26.681Z [DEBUG] user-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.232.72 - RequestID: t796581uw0r +2025-06-18T14:58:26.781Z [INFO] inventory-service - Auth event: login_failed - User: user_1097 - IP: 192.168.232.72 - RequestID: qanx0e9mrhj +2025-06-18T14:58:26.881Z [DEBUG] auth-service - Database INSERT on products - Execution time: 466ms - Rows affected: 52 - RequestID: zs89r6w38n +2025-06-18T14:58:26.981Z [TRACE] auth-service - Auth event: login_success - User: user_1004 - IP: 192.168.159.94 - RequestID: 858wrq5hoxr +2025-06-18T14:58:27.081Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1568ms - IP: 192.168.189.103 - User: user_1032 - RequestID: g4zfx8suxsv +2025-06-18T14:58:27.181Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 200 - Response time: 1502ms - IP: 192.168.229.123 - User: user_1005 - RequestID: tla1ptnu3t +2025-06-18T14:58:27.281Z [INFO] order-service - Auth event: password_change - User: user_1069 - IP: 192.168.1.152 - RequestID: tmejtkzpys +2025-06-18T14:58:27.381Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 416ms - RequestID: 08pfgamfw37i +2025-06-18T14:58:27.481Z [INFO] order-service - DELETE /api/v1/payments - Status: 401 - Response time: 632ms - IP: 192.168.100.240 - User: user_1060 - RequestID: k9tjmenvqon +2025-06-18T14:58:27.581Z [TRACE] auth-service - POST /api/v1/payments - Status: 201 - Response time: 1701ms - IP: 192.168.141.100 - User: user_1072 - RequestID: tjmixp8a2p9 +2025-06-18T14:58:27.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 1022ms - RequestID: q79a1rh3hk +2025-06-18T14:58:27.781Z [INFO] order-service - Auth event: password_change - User: user_1038 - IP: 192.168.79.143 - RequestID: 9m25zfjsv1u +2025-06-18T14:58:27.881Z [TRACE] order-service - Database INSERT on users - Execution time: 216ms - Rows affected: 96 - RequestID: a2chv0pvi6w +2025-06-18T14:58:27.981Z [INFO] notification-service - Auth event: password_change - User: user_1082 - IP: 192.168.79.143 - RequestID: 3bkzrf52g6f +2025-06-18T14:58:28.081Z [INFO] payment-service - Auth event: logout - User: user_1056 - IP: 192.168.100.240 - RequestID: rdcbswx1bx +2025-06-18T14:58:28.181Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 269ms - Rows affected: 29 - RequestID: 9z4fm0btpxh +2025-06-18T14:58:28.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.159.94 - RequestID: 0k8xzdypsnx +2025-06-18T14:58:28.381Z [INFO] order-service - Auth event: logout - User: user_1024 - IP: 192.168.170.215 - RequestID: 3ojcnjg82p6 +2025-06-18T14:58:28.481Z [TRACE] user-service - Database UPDATE on orders - Execution time: 110ms - Rows affected: 62 - RequestID: ckdmkznur6f +2025-06-18T14:58:28.581Z [TRACE] notification-service - POST /api/v1/inventory - Status: 401 - Response time: 394ms - IP: 192.168.68.128 - User: user_1057 - RequestID: rktq83i7g8a +2025-06-18T14:58:28.681Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1354ms - IP: 192.168.11.60 - User: user_1072 - RequestID: 38kbv1z4oeu +2025-06-18T14:58:28.781Z [DEBUG] order-service - GET /api/v1/users - Status: 401 - Response time: 757ms - IP: 192.168.138.123 - User: user_1078 - RequestID: st2xd7hfqjm +2025-06-18T14:58:28.881Z [TRACE] notification-service - Operation: cache_miss - Processing time: 1032ms - RequestID: lmdqj3t522h +2025-06-18T14:58:28.981Z [INFO] payment-service - Auth event: logout - User: user_1041 - IP: 192.168.240.169 - RequestID: jypuwu55e9i +2025-06-18T14:58:29.081Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 284ms - RequestID: 05pfc6l3okdi +2025-06-18T14:58:29.181Z [INFO] notification-service - Operation: payment_processed - Processing time: 491ms - RequestID: k0lhjwlk5g +2025-06-18T14:58:29.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1069 - IP: 192.168.53.133 - RequestID: 9dd0kyz76se +2025-06-18T14:58:29.381Z [INFO] inventory-service - Auth event: login_success - User: user_1041 - IP: 192.168.100.240 - RequestID: ejypvjuehtf +2025-06-18T14:58:29.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.227.77 - RequestID: h11lnccmhfj +2025-06-18T14:58:29.581Z [INFO] user-service - Database SELECT on payments - Execution time: 174ms - Rows affected: 3 - RequestID: 70lf9ic6dr6 +2025-06-18T14:58:29.681Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 403 - Response time: 1951ms - IP: 192.168.28.146 - User: user_1021 - RequestID: k3nc8b7crfo +2025-06-18T14:58:29.781Z [DEBUG] auth-service - Operation: email_sent - Processing time: 202ms - RequestID: p6b4zw0g5m +2025-06-18T14:58:29.881Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1702ms - IP: 192.168.194.41 - User: user_1099 - RequestID: 5n7mxjes4wi +2025-06-18T14:58:29.981Z [TRACE] payment-service - Operation: cache_hit - Processing time: 638ms - RequestID: iqbdhn110i +2025-06-18T14:58:30.081Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 15ms - Rows affected: 73 - RequestID: 2dvzomqxdb4 +2025-06-18T14:58:30.181Z [INFO] auth-service - PUT /api/v1/users - Status: 502 - Response time: 2008ms - IP: 192.168.181.225 - User: user_1027 - RequestID: 362lfb1na72 +2025-06-18T14:58:30.281Z [INFO] inventory-service - Database INSERT on payments - Execution time: 121ms - Rows affected: 63 - RequestID: codlonnj88e +2025-06-18T14:58:30.381Z [INFO] auth-service - Auth event: login_failed - User: user_1073 - IP: 192.168.240.169 - RequestID: 2q5wpo0qsbi +2025-06-18T14:58:30.481Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 153ms - IP: 192.168.247.134 - User: user_1022 - RequestID: rr87f3dfd1 +2025-06-18T14:58:30.581Z [DEBUG] user-service - Auth event: password_change - User: user_1043 - IP: 192.168.14.77 - RequestID: 1gpv15v61keh +2025-06-18T14:58:30.681Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 158ms - IP: 192.168.113.218 - User: user_1025 - RequestID: wjw9ibewz3 +2025-06-18T14:58:30.781Z [TRACE] inventory-service - Database SELECT on products - Execution time: 108ms - Rows affected: 0 - RequestID: w5n832gx94g +2025-06-18T14:58:30.881Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 46ms - Rows affected: 40 - RequestID: aiku2rhnk45 +2025-06-18T14:58:30.981Z [TRACE] user-service - Database UPDATE on products - Execution time: 354ms - Rows affected: 15 - RequestID: etjuhomj15d +2025-06-18T14:58:31.081Z [TRACE] notification-service - Operation: order_created - Processing time: 776ms - RequestID: yj0nija8nld +2025-06-18T14:58:31.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 439ms - RequestID: fhi04a8xmts +2025-06-18T14:58:31.281Z [DEBUG] order-service - Auth event: login_failed - User: user_1005 - IP: 192.168.97.87 - RequestID: wpy51ouqow +2025-06-18T14:58:31.381Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 712ms - IP: 192.168.32.38 - User: user_1047 - RequestID: msc7wao8p9 +2025-06-18T14:58:31.481Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1078ms - IP: 192.168.167.32 - User: user_1027 - RequestID: rt1ruufds1 +2025-06-18T14:58:31.581Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 474ms - Rows affected: 18 - RequestID: tgt0y9xghds +2025-06-18T14:58:31.681Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 500 - Response time: 509ms - IP: 192.168.28.146 - User: user_1064 - RequestID: 7w1ps8d25ct +2025-06-18T14:58:31.781Z [TRACE] user-service - Auth event: login_failed - User: user_1051 - IP: 192.168.79.116 - RequestID: 3bxd7ojv8qs +2025-06-18T14:58:31.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.11.60 - RequestID: yo23raelkso +2025-06-18T14:58:31.981Z [DEBUG] order-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.44.5 - RequestID: jf7qd4vgxxc +2025-06-18T14:58:32.081Z [TRACE] notification-service - POST /api/v1/users - Status: 401 - Response time: 703ms - IP: 192.168.147.171 - User: user_1032 - RequestID: pkxtxma9nbm +2025-06-18T14:58:32.181Z [TRACE] auth-service - Auth event: login_success - User: user_1032 - IP: 192.168.64.33 - RequestID: 81q5mf0vumv +2025-06-18T14:58:32.281Z [INFO] user-service - Database INSERT on sessions - Execution time: 350ms - Rows affected: 1 - RequestID: vs55divre2g +2025-06-18T14:58:32.381Z [TRACE] inventory-service - Operation: order_created - Processing time: 133ms - RequestID: ztx7asfjppj +2025-06-18T14:58:32.481Z [INFO] inventory-service - Database INSERT on users - Execution time: 162ms - Rows affected: 86 - RequestID: kikv2rtg6ri +2025-06-18T14:58:32.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 313ms - RequestID: iqw13ummpqn +2025-06-18T14:58:32.681Z [TRACE] payment-service - POST /api/v1/orders - Status: 201 - Response time: 69ms - IP: 192.168.242.165 - User: user_1012 - RequestID: itcr52ayw2 +2025-06-18T14:58:32.781Z [DEBUG] auth-service - Auth event: logout - User: user_1089 - IP: 192.168.196.226 - RequestID: nxoos6q085q +2025-06-18T14:58:32.881Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 403 - Response time: 506ms - IP: 192.168.159.94 - User: user_1085 - RequestID: 8yix4bfnydy +2025-06-18T14:58:32.981Z [TRACE] order-service - GET /api/v1/orders - Status: 403 - Response time: 1807ms - IP: 192.168.81.206 - User: user_1097 - RequestID: zisce9npfvi +2025-06-18T14:58:33.081Z [TRACE] auth-service - Operation: cache_miss - Processing time: 697ms - RequestID: 1dq3vrykpq3 +2025-06-18T14:58:33.181Z [TRACE] payment-service - Operation: cache_miss - Processing time: 629ms - RequestID: sacvuh1g5s +2025-06-18T14:58:33.281Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 96ms - Rows affected: 20 - RequestID: iaa6lgt0wp9 +2025-06-18T14:58:33.381Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1738ms - IP: 192.168.240.169 - User: user_1054 - RequestID: 2s56tnqk1p6 +2025-06-18T14:58:33.481Z [TRACE] user-service - Database INSERT on users - Execution time: 198ms - Rows affected: 47 - RequestID: chmqzjhs7y9 +2025-06-18T14:58:33.581Z [DEBUG] order-service - Auth event: login_failed - User: user_1036 - IP: 192.168.147.171 - RequestID: 1ek21vvcq5r +2025-06-18T14:58:33.681Z [INFO] order-service - Operation: notification_queued - Processing time: 834ms - RequestID: hygaoy9eoes +2025-06-18T14:58:33.781Z [TRACE] notification-service - Operation: payment_processed - Processing time: 765ms - RequestID: nya401id6r +2025-06-18T14:58:33.881Z [INFO] user-service - DELETE /api/v1/payments - Status: 201 - Response time: 394ms - IP: 192.168.113.218 - User: user_1024 - RequestID: xbocwh0i27 +2025-06-18T14:58:33.981Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 503 - Response time: 923ms - IP: 192.168.30.79 - User: user_1074 - RequestID: 0lyua1sj36lb +2025-06-18T14:58:34.081Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 339ms - RequestID: lx40ginlrj8 +2025-06-18T14:58:34.181Z [DEBUG] payment-service - Operation: email_sent - Processing time: 431ms - RequestID: ywmu14bvoyo +2025-06-18T14:58:34.281Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 420ms - RequestID: 6dja4w1exse +2025-06-18T14:58:34.381Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 367ms - Rows affected: 87 - RequestID: n7hv4x6z3e +2025-06-18T14:58:34.481Z [INFO] inventory-service - Operation: email_sent - Processing time: 823ms - RequestID: q6m8c1h2rnn +2025-06-18T14:58:34.581Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1234ms - IP: 192.168.181.225 - User: user_1008 - RequestID: qajxfwt348s +2025-06-18T14:58:34.681Z [TRACE] auth-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.31.117 - RequestID: nrhjsg6m3ef +2025-06-18T14:58:34.781Z [TRACE] payment-service - Operation: notification_queued - Processing time: 445ms - RequestID: 25qic2oycee +2025-06-18T14:58:34.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 89ms - RequestID: lfymvm8ny8a +2025-06-18T14:58:34.981Z [TRACE] notification-service - Operation: cache_hit - Processing time: 705ms - RequestID: pg2h60c8m1 +2025-06-18T14:58:35.081Z [INFO] notification-service - Database DELETE on orders - Execution time: 125ms - Rows affected: 94 - RequestID: uij6dgh2du +2025-06-18T14:58:35.181Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 313ms - Rows affected: 62 - RequestID: 92qcobw76r6 +2025-06-18T14:58:35.281Z [TRACE] order-service - Auth event: login_failed - User: user_1064 - IP: 192.168.44.5 - RequestID: gn1tx5qpqx8 +2025-06-18T14:58:35.381Z [TRACE] order-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.232.72 - RequestID: 2cmlyirbjbf +2025-06-18T14:58:35.481Z [INFO] order-service - POST /api/v1/auth/login - Status: 403 - Response time: 832ms - IP: 192.168.68.158 - User: user_1060 - RequestID: w3cruy9wxi8 +2025-06-18T14:58:35.581Z [TRACE] user-service - Auth event: logout - User: user_1067 - IP: 192.168.32.38 - RequestID: cclv1bmgrao +2025-06-18T14:58:35.681Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 219ms - RequestID: guopzqjw19m +2025-06-18T14:58:35.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.36.218 - RequestID: n61hsnrbtr +2025-06-18T14:58:35.881Z [INFO] payment-service - POST /api/v1/users - Status: 500 - Response time: 1543ms - IP: 192.168.79.116 - User: user_1067 - RequestID: sstigkw0d8 +2025-06-18T14:58:35.981Z [TRACE] user-service - PATCH /api/v1/users - Status: 200 - Response time: 390ms - IP: 192.168.211.72 - User: user_1044 - RequestID: 5lq6ldqb64c +2025-06-18T14:58:36.081Z [TRACE] order-service - Auth event: login_success - User: user_1030 - IP: 192.168.159.94 - RequestID: u2xwr62f99i +2025-06-18T14:58:36.181Z [INFO] user-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.81.206 - RequestID: ls3fv8mo7w +2025-06-18T14:58:36.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.113.218 - RequestID: 1nzhkdunv9i +2025-06-18T14:58:36.381Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 480ms - RequestID: wieq4auvko +2025-06-18T14:58:36.481Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 34ms - Rows affected: 52 - RequestID: jx11pha8j4 +2025-06-18T14:58:36.581Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 535ms - RequestID: nhba6nlczp +2025-06-18T14:58:36.681Z [DEBUG] order-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.100.240 - RequestID: mtovdft854m +2025-06-18T14:58:36.781Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1117ms - IP: 192.168.81.206 - User: user_1002 - RequestID: 4bfte219fwi +2025-06-18T14:58:36.881Z [INFO] order-service - Database INSERT on orders - Execution time: 229ms - Rows affected: 27 - RequestID: ytmowv6j2y +2025-06-18T14:58:36.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 643ms - RequestID: por96x78kb8 +2025-06-18T14:58:37.081Z [TRACE] payment-service - Operation: email_sent - Processing time: 96ms - RequestID: 610ojinjg7n +2025-06-18T14:58:37.181Z [DEBUG] auth-service - Auth event: login_failed - User: user_1067 - IP: 192.168.242.165 - RequestID: x0hjj91bjwr +2025-06-18T14:58:37.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1037 - IP: 192.168.159.94 - RequestID: 6svd0zwqd6u +2025-06-18T14:58:37.381Z [TRACE] order-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.32.38 - RequestID: f5tdnybq6u8 +2025-06-18T14:58:37.481Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 275ms - Rows affected: 71 - RequestID: wchdxff6rrn +2025-06-18T14:58:37.581Z [INFO] order-service - Auth event: login_failed - User: user_1095 - IP: 192.168.189.103 - RequestID: pjzad5h1tv8 +2025-06-18T14:58:37.681Z [DEBUG] auth-service - Operation: order_created - Processing time: 762ms - RequestID: yrxh9fneicq +2025-06-18T14:58:37.781Z [TRACE] auth-service - Database DELETE on payments - Execution time: 120ms - Rows affected: 68 - RequestID: pvnei2s22bd +2025-06-18T14:58:37.881Z [TRACE] order-service - Database UPDATE on products - Execution time: 317ms - Rows affected: 12 - RequestID: 36x6h2vj4qa +2025-06-18T14:58:37.981Z [TRACE] order-service - Database SELECT on orders - Execution time: 352ms - Rows affected: 25 - RequestID: uu2j7h6woam +2025-06-18T14:58:38.081Z [TRACE] notification-service - Auth event: logout - User: user_1005 - IP: 192.168.14.77 - RequestID: kns6zqt51n8 +2025-06-18T14:58:38.181Z [INFO] notification-service - Database INSERT on orders - Execution time: 199ms - Rows affected: 7 - RequestID: 1wglnpyk9sg +2025-06-18T14:58:38.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1080 - IP: 192.168.104.37 - RequestID: nrcxw9d0zfd +2025-06-18T14:58:38.381Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1191ms - IP: 192.168.79.143 - User: user_1055 - RequestID: z8v42k3m5m +2025-06-18T14:58:38.481Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 93ms - IP: 192.168.211.72 - User: user_1074 - RequestID: yke3dqa5vl +2025-06-18T14:58:38.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.81.206 - RequestID: bii0y1hl56q +2025-06-18T14:58:38.681Z [TRACE] order-service - Operation: order_created - Processing time: 333ms - RequestID: 9dfl4dvjd4b +2025-06-18T14:58:38.781Z [INFO] order-service - GET /api/v1/users - Status: 201 - Response time: 1841ms - IP: 192.168.159.94 - User: user_1064 - RequestID: dsrvax0mmkq +2025-06-18T14:58:38.881Z [INFO] inventory-service - Database SELECT on products - Execution time: 29ms - Rows affected: 16 - RequestID: oc3da2ggt7 +2025-06-18T14:58:38.981Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 830ms - IP: 192.168.14.77 - User: user_1034 - RequestID: bye4jm9abpa +2025-06-18T14:58:39.081Z [TRACE] order-service - Operation: inventory_updated - Processing time: 751ms - RequestID: 80v7qjjzto9 +2025-06-18T14:58:39.181Z [TRACE] payment-service - Operation: payment_processed - Processing time: 418ms - RequestID: c9tpjjnka8s +2025-06-18T14:58:39.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.240.169 - RequestID: jnlaempdqyp +2025-06-18T14:58:39.381Z [INFO] auth-service - Database UPDATE on users - Execution time: 381ms - Rows affected: 35 - RequestID: 50w77yvsi6i +2025-06-18T14:58:39.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.138.123 - RequestID: vzp7lzzn07 +2025-06-18T14:58:39.581Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1121ms - IP: 192.168.30.79 - User: user_1019 - RequestID: vk3o3hm17qm +2025-06-18T14:58:39.681Z [INFO] order-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1096ms - IP: 192.168.31.117 - User: user_1092 - RequestID: zxo8700m4io +2025-06-18T14:58:39.781Z [DEBUG] user-service - Database SELECT on users - Execution time: 76ms - Rows affected: 80 - RequestID: kvtofkwb6k +2025-06-18T14:58:39.881Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 308ms - Rows affected: 4 - RequestID: 459ihq7ys0t +2025-06-18T14:58:39.981Z [TRACE] auth-service - Auth event: login_success - User: user_1060 - IP: 192.168.196.226 - RequestID: 2i4lh1dpp6h +2025-06-18T14:58:40.081Z [INFO] notification-service - Operation: webhook_sent - Processing time: 897ms - RequestID: igxkypmr4n +2025-06-18T14:58:40.181Z [TRACE] user-service - Operation: cache_miss - Processing time: 857ms - RequestID: qr4hnx3mjli +2025-06-18T14:58:40.281Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 200 - Response time: 1793ms - IP: 192.168.46.63 - User: user_1029 - RequestID: z3rng8x8ncd +2025-06-18T14:58:40.381Z [TRACE] auth-service - POST /api/v1/inventory - Status: 200 - Response time: 1767ms - IP: 192.168.64.33 - User: user_1072 - RequestID: ok38ihdcizc +2025-06-18T14:58:40.481Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 257ms - Rows affected: 9 - RequestID: 0zeubt82grs +2025-06-18T14:58:40.581Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1074 - IP: 192.168.229.123 - RequestID: d4xblgp2va6 +2025-06-18T14:58:40.681Z [TRACE] order-service - Auth event: password_change - User: user_1032 - IP: 192.168.227.77 - RequestID: 2an4voatrjd +2025-06-18T14:58:40.781Z [TRACE] notification-service - Auth event: password_change - User: user_1036 - IP: 192.168.53.133 - RequestID: r35x02no5or +2025-06-18T14:58:40.881Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 401 - Response time: 842ms - IP: 192.168.229.123 - User: user_1090 - RequestID: q852fqnrmko +2025-06-18T14:58:40.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1058 - IP: 192.168.104.37 - RequestID: x8kjvjvjha +2025-06-18T14:58:41.081Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 500 - Response time: 502ms - IP: 192.168.229.123 - User: user_1045 - RequestID: z1zn24zy44 +2025-06-18T14:58:41.181Z [INFO] payment-service - Operation: notification_queued - Processing time: 668ms - RequestID: y6zh4rqusyn +2025-06-18T14:58:41.281Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 485ms - Rows affected: 62 - RequestID: 5ygpelhm6y2 +2025-06-18T14:58:41.381Z [INFO] auth-service - Database SELECT on products - Execution time: 196ms - Rows affected: 47 - RequestID: c7dvj7ub9bi +2025-06-18T14:58:41.481Z [DEBUG] user-service - POST /api/v1/orders - Status: 403 - Response time: 1445ms - IP: 192.168.46.63 - User: user_1085 - RequestID: fva0pw54mf7 +2025-06-18T14:58:41.581Z [INFO] notification-service - Database SELECT on orders - Execution time: 378ms - Rows affected: 51 - RequestID: kih9j76qr3 +2025-06-18T14:58:41.681Z [INFO] user-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1223ms - IP: 192.168.100.240 - User: user_1061 - RequestID: tpsb9jn3m3 +2025-06-18T14:58:41.781Z [INFO] user-service - Operation: email_sent - Processing time: 577ms - RequestID: ckv8nbw97hv +2025-06-18T14:58:41.881Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 450ms - Rows affected: 55 - RequestID: clx5ypcehcf +2025-06-18T14:58:41.981Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 86ms - IP: 192.168.167.32 - User: user_1036 - RequestID: alfgjq3gg69 +2025-06-18T14:58:42.081Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 254ms - Rows affected: 69 - RequestID: yz9gjizsm6 +2025-06-18T14:58:42.181Z [INFO] notification-service - Auth event: login_failed - User: user_1071 - IP: 192.168.1.152 - RequestID: esw21qtj8zm +2025-06-18T14:58:42.281Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 162ms - Rows affected: 21 - RequestID: ktulimh1ph +2025-06-18T14:58:42.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1060 - IP: 192.168.44.5 - RequestID: 8unufuinacm +2025-06-18T14:58:42.481Z [DEBUG] order-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.133.7 - RequestID: xrs5d1z74qq +2025-06-18T14:58:42.581Z [TRACE] notification-service - Operation: order_created - Processing time: 442ms - RequestID: 42fmgnob9dk +2025-06-18T14:58:42.681Z [TRACE] auth-service - Database DELETE on products - Execution time: 178ms - Rows affected: 29 - RequestID: wv79ycab7qa +2025-06-18T14:58:42.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.81.206 - RequestID: mk3464h8y7k +2025-06-18T14:58:42.881Z [DEBUG] auth-service - Operation: email_sent - Processing time: 228ms - RequestID: 0qbd6xo0cqtg +2025-06-18T14:58:42.981Z [TRACE] user-service - Operation: inventory_updated - Processing time: 502ms - RequestID: smlmw1h167 +2025-06-18T14:58:43.081Z [TRACE] user-service - Operation: cache_hit - Processing time: 705ms - RequestID: f8ni3k5ko1p +2025-06-18T14:58:43.181Z [INFO] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1424ms - IP: 192.168.247.134 - User: user_1001 - RequestID: qsqb4ka7cq +2025-06-18T14:58:43.281Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 502 - Response time: 303ms - IP: 192.168.113.218 - User: user_1021 - RequestID: o24fbko6n9f +2025-06-18T14:58:43.381Z [INFO] payment-service - Operation: cache_miss - Processing time: 391ms - RequestID: tz7ya5pnka +2025-06-18T14:58:43.481Z [INFO] notification-service - Auth event: login_failed - User: user_1053 - IP: 192.168.46.63 - RequestID: zgvc2ynark +2025-06-18T14:58:43.581Z [INFO] payment-service - Operation: webhook_sent - Processing time: 535ms - RequestID: dubmgco4kjd +2025-06-18T14:58:43.681Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 293ms - Rows affected: 3 - RequestID: 1e5epi9e7x3 +2025-06-18T14:58:43.781Z [TRACE] user-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.211.72 - RequestID: lzdonnb2g0m +2025-06-18T14:58:43.881Z [TRACE] notification-service - Auth event: password_change - User: user_1078 - IP: 192.168.159.94 - RequestID: eu7qbiwcdja +2025-06-18T14:58:43.981Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 298ms - Rows affected: 83 - RequestID: weieqxptj1q +2025-06-18T14:58:44.081Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 400 - Response time: 1241ms - IP: 192.168.232.72 - User: user_1003 - RequestID: t1qp9qlfiw +2025-06-18T14:58:44.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.10.184 - RequestID: iy77amylr7d +2025-06-18T14:58:44.281Z [TRACE] user-service - Auth event: password_change - User: user_1082 - IP: 192.168.187.199 - RequestID: nap7zbzcsi +2025-06-18T14:58:44.381Z [INFO] payment-service - Database UPDATE on orders - Execution time: 443ms - Rows affected: 74 - RequestID: xzq5icrthne +2025-06-18T14:58:44.481Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 819ms - RequestID: vq3yog6iqim +2025-06-18T14:58:44.581Z [INFO] inventory-service - Auth event: password_change - User: user_1031 - IP: 192.168.133.7 - RequestID: v4zs7ac9ap +2025-06-18T14:58:44.681Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1082ms - IP: 192.168.53.133 - User: user_1001 - RequestID: 1zu5rk5japi +2025-06-18T14:58:44.781Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 50ms - Rows affected: 48 - RequestID: wkjfexgr7ti +2025-06-18T14:58:44.881Z [TRACE] payment-service - DELETE /api/v1/users - Status: 401 - Response time: 1081ms - IP: 192.168.13.72 - User: user_1067 - RequestID: ahobzmgukym +2025-06-18T14:58:44.981Z [TRACE] notification-service - Database UPDATE on users - Execution time: 134ms - Rows affected: 3 - RequestID: fkuyi48julq +2025-06-18T14:58:45.081Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.81.206 - RequestID: e5h90s4ki1f +2025-06-18T14:58:45.181Z [DEBUG] order-service - Auth event: password_change - User: user_1022 - IP: 192.168.158.144 - RequestID: xaxqqa390af +2025-06-18T14:58:45.281Z [TRACE] auth-service - Database DELETE on users - Execution time: 371ms - Rows affected: 23 - RequestID: szzmps388hc +2025-06-18T14:58:45.381Z [INFO] inventory-service - Database DELETE on users - Execution time: 279ms - Rows affected: 79 - RequestID: y5zgs22ilf +2025-06-18T14:58:45.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.133.7 - RequestID: qlgxk29mc8b +2025-06-18T14:58:45.581Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.158.144 - RequestID: krcidl840b8 +2025-06-18T14:58:45.681Z [INFO] user-service - Operation: email_sent - Processing time: 999ms - RequestID: nebztlu8h8 +2025-06-18T14:58:45.781Z [INFO] order-service - Auth event: password_change - User: user_1079 - IP: 192.168.64.33 - RequestID: a3cn3uvjgdu +2025-06-18T14:58:45.881Z [TRACE] auth-service - Auth event: login_success - User: user_1007 - IP: 192.168.79.141 - RequestID: xdl6760i52 +2025-06-18T14:58:45.981Z [INFO] order-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.31.117 - RequestID: dwlx5emq0rg +2025-06-18T14:58:46.081Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 29ms - Rows affected: 25 - RequestID: 7yjoe6bhj23 +2025-06-18T14:58:46.181Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 404 - Response time: 983ms - IP: 192.168.144.38 - User: user_1097 - RequestID: 23x8i5g1hg2 +2025-06-18T14:58:46.281Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 161ms - RequestID: dsma871qnj8 +2025-06-18T14:58:46.381Z [TRACE] auth-service - Database SELECT on users - Execution time: 51ms - Rows affected: 29 - RequestID: t8u4kn3my2b +2025-06-18T14:58:46.481Z [TRACE] notification-service - Database DELETE on payments - Execution time: 136ms - Rows affected: 78 - RequestID: kv3hfrqyz6f +2025-06-18T14:58:46.581Z [DEBUG] user-service - GET /api/v1/inventory - Status: 502 - Response time: 750ms - IP: 192.168.211.72 - User: user_1049 - RequestID: ghf260cwaj +2025-06-18T14:58:46.681Z [TRACE] payment-service - Operation: payment_processed - Processing time: 864ms - RequestID: 1m4rb6763sw +2025-06-18T14:58:46.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1025 - IP: 192.168.227.233 - RequestID: b5sp6lnh429 +2025-06-18T14:58:46.881Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 201 - Response time: 17ms - IP: 192.168.232.72 - User: user_1046 - RequestID: znirj0oxyji +2025-06-18T14:58:46.981Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 403 - Response time: 800ms - IP: 192.168.167.32 - User: user_1002 - RequestID: o5a5errt8ci +2025-06-18T14:58:47.081Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1889ms - IP: 192.168.211.72 - User: user_1048 - RequestID: tjrk1ywxmp +2025-06-18T14:58:47.181Z [INFO] order-service - Auth event: login_failed - User: user_1092 - IP: 192.168.1.152 - RequestID: 6io9z2bdvap +2025-06-18T14:58:47.281Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 400ms - Rows affected: 23 - RequestID: 5hlt92rb725 +2025-06-18T14:58:47.381Z [INFO] notification-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.68.128 - RequestID: 29ubs17fyy +2025-06-18T14:58:47.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 647ms - RequestID: pi4sg0ihphj +2025-06-18T14:58:47.581Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 98ms - RequestID: rv81j7n02do +2025-06-18T14:58:47.681Z [DEBUG] order-service - Auth event: logout - User: user_1090 - IP: 192.168.79.143 - RequestID: jb8dzgwbtnh +2025-06-18T14:58:47.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 119ms - RequestID: 64ypjji0vjc +2025-06-18T14:58:47.881Z [TRACE] user-service - GET /api/v1/auth/login - Status: 404 - Response time: 1838ms - IP: 192.168.227.77 - User: user_1078 - RequestID: jx8jwmbupwt +2025-06-18T14:58:47.981Z [INFO] auth-service - Database INSERT on users - Execution time: 103ms - Rows affected: 71 - RequestID: 16dis2fvp7w +2025-06-18T14:58:48.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.242.165 - RequestID: qiibolh50h +2025-06-18T14:58:48.181Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 400 - Response time: 1033ms - IP: 192.168.189.103 - User: user_1008 - RequestID: ty2n6u96uh +2025-06-18T14:58:48.281Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 244ms - RequestID: e8wbsul89d +2025-06-18T14:58:48.381Z [DEBUG] order-service - Operation: notification_queued - Processing time: 430ms - RequestID: jg96i6kn9lm +2025-06-18T14:58:48.481Z [DEBUG] user-service - GET /api/v1/users - Status: 503 - Response time: 1810ms - IP: 192.168.141.100 - User: user_1085 - RequestID: nnljglvl75 +2025-06-18T14:58:48.581Z [INFO] order-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.104.37 - RequestID: 2vuplmhvcpv +2025-06-18T14:58:48.681Z [INFO] notification-service - Operation: notification_queued - Processing time: 927ms - RequestID: akmopb8tifj +2025-06-18T14:58:48.781Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1179ms - IP: 192.168.14.77 - User: user_1031 - RequestID: j6cja8e9wrc +2025-06-18T14:58:48.881Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 682ms - RequestID: d5dq41k5ii8 +2025-06-18T14:58:48.981Z [INFO] notification-service - Database INSERT on payments - Execution time: 289ms - Rows affected: 47 - RequestID: nwuqsdevif +2025-06-18T14:58:49.081Z [TRACE] auth-service - Auth event: login_failed - User: user_1066 - IP: 192.168.79.116 - RequestID: h9sqsww86wj +2025-06-18T14:58:49.181Z [TRACE] payment-service - Auth event: login_success - User: user_1011 - IP: 192.168.158.144 - RequestID: ykdq5e3so7b +2025-06-18T14:58:49.281Z [INFO] auth-service - Database UPDATE on products - Execution time: 29ms - Rows affected: 98 - RequestID: fj0txvmrh36 +2025-06-18T14:58:49.381Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 880ms - RequestID: l6qnud4s9sh +2025-06-18T14:58:49.481Z [DEBUG] payment-service - Auth event: logout - User: user_1075 - IP: 192.168.28.146 - RequestID: jxq47nmcmz +2025-06-18T14:58:49.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 840ms - RequestID: doke74xljo +2025-06-18T14:58:49.681Z [TRACE] auth-service - Operation: cache_miss - Processing time: 618ms - RequestID: os7vut0oso +2025-06-18T14:58:49.781Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1094ms - IP: 192.168.13.72 - User: user_1059 - RequestID: pgd7e93sv1 +2025-06-18T14:58:49.881Z [TRACE] notification-service - PUT /api/v1/payments - Status: 500 - Response time: 1890ms - IP: 192.168.138.123 - User: user_1054 - RequestID: etg4tof2wxr +2025-06-18T14:58:49.981Z [TRACE] notification-service - Operation: cache_hit - Processing time: 984ms - RequestID: et51y2m7ong +2025-06-18T14:58:50.081Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1265ms - IP: 192.168.85.229 - User: user_1064 - RequestID: q25hvecoo1j +2025-06-18T14:58:50.181Z [DEBUG] order-service - Database UPDATE on users - Execution time: 239ms - Rows affected: 67 - RequestID: zwhz8scmins +2025-06-18T14:58:50.281Z [INFO] payment-service - Database INSERT on orders - Execution time: 500ms - Rows affected: 84 - RequestID: vab4v2riiy +2025-06-18T14:58:50.381Z [INFO] user-service - Database INSERT on products - Execution time: 485ms - Rows affected: 51 - RequestID: 768wyy2vypm +2025-06-18T14:58:50.481Z [INFO] order-service - Operation: payment_processed - Processing time: 290ms - RequestID: 0g9u5kfxy22l +2025-06-18T14:58:50.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 282ms - RequestID: nmuhp5288km +2025-06-18T14:58:50.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 257ms - RequestID: fsv1ngktdel +2025-06-18T14:58:50.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.104.37 - RequestID: mljgrw5ydo +2025-06-18T14:58:50.881Z [INFO] inventory-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.10.184 - RequestID: 052ai7bnpp8n +2025-06-18T14:58:50.981Z [TRACE] auth-service - Database SELECT on products - Execution time: 236ms - Rows affected: 91 - RequestID: a7ugskxpm7t +2025-06-18T14:58:51.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.247.134 - RequestID: zpwm9bz3m5b +2025-06-18T14:58:51.181Z [INFO] auth-service - Operation: notification_queued - Processing time: 194ms - RequestID: nse45oo98bj +2025-06-18T14:58:51.281Z [DEBUG] user-service - Operation: cache_miss - Processing time: 876ms - RequestID: x72j0a06pq +2025-06-18T14:58:51.381Z [DEBUG] order-service - Database DELETE on orders - Execution time: 457ms - Rows affected: 77 - RequestID: 7i7pljfyz5o +2025-06-18T14:58:51.481Z [INFO] payment-service - Auth event: logout - User: user_1031 - IP: 192.168.194.41 - RequestID: 1ia20fdd9cmh +2025-06-18T14:58:51.581Z [TRACE] user-service - PUT /api/v1/payments - Status: 503 - Response time: 883ms - IP: 192.168.79.116 - User: user_1040 - RequestID: vgdvbvvhcp +2025-06-18T14:58:51.681Z [TRACE] auth-service - PUT /api/v1/users - Status: 401 - Response time: 472ms - IP: 192.168.229.123 - User: user_1041 - RequestID: 0ccwf6p5nnig +2025-06-18T14:58:51.781Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 503 - Response time: 743ms - IP: 192.168.46.63 - User: user_1047 - RequestID: e90i48g73jt +2025-06-18T14:58:51.881Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 200 - Response time: 658ms - IP: 192.168.28.146 - User: user_1076 - RequestID: 4tjeq50hoe +2025-06-18T14:58:51.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 635ms - RequestID: uhr0193d54 +2025-06-18T14:58:52.081Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 300ms - IP: 192.168.232.72 - User: user_1017 - RequestID: 5wrpdcg2lgg +2025-06-18T14:58:52.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.196.226 - RequestID: b6icu2fe104 +2025-06-18T14:58:52.281Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 61ms - RequestID: 6i6grj5r8gq +2025-06-18T14:58:52.381Z [INFO] payment-service - Database INSERT on orders - Execution time: 451ms - Rows affected: 14 - RequestID: hhybpqkqyk +2025-06-18T14:58:52.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 273ms - RequestID: 9wuf4s0qzxg +2025-06-18T14:58:52.581Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 123ms - RequestID: wsqkn74otgc +2025-06-18T14:58:52.681Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 339ms - Rows affected: 74 - RequestID: spp6mzqlu1k +2025-06-18T14:58:52.781Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 546ms - RequestID: 4rt85mgas29 +2025-06-18T14:58:52.881Z [TRACE] user-service - DELETE /api/v1/payments - Status: 400 - Response time: 953ms - IP: 192.168.11.60 - User: user_1013 - RequestID: r8s84302aps +2025-06-18T14:58:52.981Z [DEBUG] user-service - Database DELETE on products - Execution time: 111ms - Rows affected: 76 - RequestID: v275l0zgub +2025-06-18T14:58:53.081Z [INFO] order-service - Auth event: password_change - User: user_1019 - IP: 192.168.174.114 - RequestID: 61a5r89qd7x +2025-06-18T14:58:53.181Z [INFO] user-service - GET /api/v1/payments - Status: 404 - Response time: 680ms - IP: 192.168.196.226 - User: user_1011 - RequestID: fbp2ft3u2sr +2025-06-18T14:58:53.281Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 400 - Response time: 209ms - IP: 192.168.14.77 - User: user_1028 - RequestID: 0389qxqd9kgt +2025-06-18T14:58:53.381Z [INFO] inventory-service - Database DELETE on users - Execution time: 51ms - Rows affected: 95 - RequestID: f77xew3xu4 +2025-06-18T14:58:53.481Z [INFO] payment-service - Auth event: login_success - User: user_1080 - IP: 192.168.147.171 - RequestID: cjsvtibirqp +2025-06-18T14:58:53.581Z [TRACE] order-service - Database UPDATE on orders - Execution time: 141ms - Rows affected: 7 - RequestID: vsh9pdo1ck +2025-06-18T14:58:53.681Z [TRACE] notification-service - Operation: notification_queued - Processing time: 204ms - RequestID: b439op6y6yv +2025-06-18T14:58:53.781Z [TRACE] auth-service - Auth event: login_success - User: user_1046 - IP: 192.168.44.5 - RequestID: avn46fscw9d +2025-06-18T14:58:53.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.44.5 - RequestID: lsny9wb31h +2025-06-18T14:58:53.981Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 487ms - RequestID: f5f0o3tnnu9 +2025-06-18T14:58:54.081Z [INFO] inventory-service - Auth event: login_success - User: user_1067 - IP: 192.168.100.240 - RequestID: ovrzolopw7 +2025-06-18T14:58:54.181Z [DEBUG] order-service - Operation: email_sent - Processing time: 805ms - RequestID: lia0pn61k0k +2025-06-18T14:58:54.281Z [INFO] auth-service - Database SELECT on orders - Execution time: 348ms - Rows affected: 19 - RequestID: mpga01nvwbc +2025-06-18T14:58:54.381Z [INFO] user-service - Database INSERT on payments - Execution time: 308ms - Rows affected: 47 - RequestID: ykmhv5vl5c +2025-06-18T14:58:54.481Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 87ms - Rows affected: 53 - RequestID: rnwopx3uzb9 +2025-06-18T14:58:54.581Z [INFO] inventory-service - Database DELETE on users - Execution time: 435ms - Rows affected: 84 - RequestID: 4ttvnbt2mt3 +2025-06-18T14:58:54.681Z [TRACE] payment-service - GET /api/v1/users - Status: 400 - Response time: 1049ms - IP: 192.168.227.233 - User: user_1008 - RequestID: ph0uc0ye6xh +2025-06-18T14:58:54.781Z [TRACE] order-service - Operation: inventory_updated - Processing time: 850ms - RequestID: yinu07pfj8m +2025-06-18T14:58:54.881Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 172ms - Rows affected: 10 - RequestID: r6s8csdidn7 +2025-06-18T14:58:54.981Z [INFO] inventory-service - Operation: notification_queued - Processing time: 655ms - RequestID: heloa1bz45s +2025-06-18T14:58:55.081Z [DEBUG] user-service - PUT /api/v1/orders - Status: 403 - Response time: 1717ms - IP: 192.168.31.117 - User: user_1073 - RequestID: ageqfb6ymr4 +2025-06-18T14:58:55.181Z [DEBUG] order-service - Database DELETE on payments - Execution time: 342ms - Rows affected: 20 - RequestID: l5vy7plhju +2025-06-18T14:58:55.281Z [INFO] payment-service - Database INSERT on products - Execution time: 278ms - Rows affected: 32 - RequestID: w7mwdsh5cxa +2025-06-18T14:58:55.381Z [INFO] notification-service - POST /api/v1/payments - Status: 201 - Response time: 953ms - IP: 192.168.196.226 - User: user_1049 - RequestID: zr2yddu37u +2025-06-18T14:58:55.481Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 403 - Response time: 1087ms - IP: 192.168.159.94 - User: user_1022 - RequestID: og4p5zr4rg +2025-06-18T14:58:55.581Z [TRACE] auth-service - Database SELECT on orders - Execution time: 295ms - Rows affected: 31 - RequestID: 7181gpwbe29 +2025-06-18T14:58:55.681Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 371ms - Rows affected: 53 - RequestID: se1yyb9kb6f +2025-06-18T14:58:55.781Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 500 - Response time: 620ms - IP: 192.168.44.5 - User: user_1042 - RequestID: 50otmfuwyl7 +2025-06-18T14:58:55.881Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 112ms - Rows affected: 13 - RequestID: a97nqqgiyaw +2025-06-18T14:58:55.981Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 109ms - Rows affected: 53 - RequestID: 0bioser4lbcs +2025-06-18T14:58:56.081Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 276ms - Rows affected: 80 - RequestID: ucy8nczu67l +2025-06-18T14:58:56.181Z [INFO] notification-service - Auth event: login_success - User: user_1032 - IP: 192.168.1.152 - RequestID: 3u51w0folru +2025-06-18T14:58:56.281Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 604ms - RequestID: b5l875ytphs +2025-06-18T14:58:56.381Z [DEBUG] payment-service - POST /api/v1/users - Status: 404 - Response time: 1016ms - IP: 192.168.100.240 - User: user_1079 - RequestID: kj54qz9ajl +2025-06-18T14:58:56.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 249ms - RequestID: fkk3z4iz9xa +2025-06-18T14:58:56.581Z [INFO] notification-service - Auth event: password_change - User: user_1013 - IP: 192.168.44.5 - RequestID: 3zxocoqelmy +2025-06-18T14:58:56.681Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 191ms - Rows affected: 67 - RequestID: d4e58bxyd2 +2025-06-18T14:58:56.781Z [TRACE] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 54ms - IP: 192.168.79.143 - User: user_1051 - RequestID: 63sz6yj6kkf +2025-06-18T14:58:56.881Z [DEBUG] auth-service - Auth event: login_failed - User: user_1007 - IP: 192.168.194.41 - RequestID: j8hclgjyqvp +2025-06-18T14:58:56.981Z [DEBUG] order-service - POST /api/v1/payments - Status: 401 - Response time: 410ms - IP: 192.168.14.77 - User: user_1077 - RequestID: xbk7ex3a8ob +2025-06-18T14:58:57.081Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 201 - Response time: 50ms - IP: 192.168.181.225 - User: user_1063 - RequestID: 9gvu7fwqdqi +2025-06-18T14:58:57.181Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 62ms - Rows affected: 87 - RequestID: ddssfbaadbw +2025-06-18T14:58:57.281Z [INFO] inventory-service - Database DELETE on payments - Execution time: 200ms - Rows affected: 68 - RequestID: byxbndqz6e7 +2025-06-18T14:58:57.381Z [TRACE] order-service - Operation: payment_processed - Processing time: 804ms - RequestID: dyn6re6m3vq +2025-06-18T14:58:57.481Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1153ms - IP: 192.168.113.218 - User: user_1055 - RequestID: 8wz9r1ty1of +2025-06-18T14:58:57.581Z [INFO] inventory-service - Operation: payment_processed - Processing time: 78ms - RequestID: qufix2ned3o +2025-06-18T14:58:57.681Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 362ms - RequestID: 6560ce6chgx +2025-06-18T14:58:57.781Z [DEBUG] order-service - GET /api/v1/inventory - Status: 500 - Response time: 194ms - IP: 192.168.97.87 - User: user_1085 - RequestID: li8jeej97mj +2025-06-18T14:58:57.881Z [INFO] inventory-service - Database INSERT on users - Execution time: 374ms - Rows affected: 29 - RequestID: ex644bexw1v +2025-06-18T14:58:57.981Z [INFO] payment-service - Database INSERT on users - Execution time: 168ms - Rows affected: 12 - RequestID: i94mq8jmqin +2025-06-18T14:58:58.081Z [TRACE] auth-service - Operation: order_created - Processing time: 609ms - RequestID: vrjn5z35x3 +2025-06-18T14:58:58.181Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 404ms - Rows affected: 71 - RequestID: 5vc2ucg8hzi +2025-06-18T14:58:58.281Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 284ms - RequestID: kgdggwj4ut +2025-06-18T14:58:58.381Z [TRACE] auth-service - Operation: order_created - Processing time: 1049ms - RequestID: k35zj0zqhnj +2025-06-18T14:58:58.481Z [INFO] notification-service - Database SELECT on users - Execution time: 79ms - Rows affected: 99 - RequestID: wpob2fph7r +2025-06-18T14:58:58.581Z [DEBUG] notification-service - PUT /api/v1/users - Status: 401 - Response time: 1024ms - IP: 192.168.10.184 - User: user_1007 - RequestID: zdyq2x2vkcd +2025-06-18T14:58:58.681Z [INFO] auth-service - Database INSERT on payments - Execution time: 464ms - Rows affected: 29 - RequestID: 8g1wjdntsjo +2025-06-18T14:58:58.781Z [DEBUG] auth-service - Database DELETE on products - Execution time: 358ms - Rows affected: 37 - RequestID: fsv63p31pm +2025-06-18T14:58:58.881Z [DEBUG] user-service - GET /api/v1/inventory - Status: 500 - Response time: 496ms - IP: 192.168.138.123 - User: user_1078 - RequestID: vuolttnd7ck +2025-06-18T14:58:58.981Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1492ms - IP: 192.168.181.225 - User: user_1090 - RequestID: d8bu2yvwmon +2025-06-18T14:58:59.081Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 354ms - Rows affected: 83 - RequestID: qv6vwoyicuk +2025-06-18T14:58:59.181Z [INFO] inventory-service - Database DELETE on products - Execution time: 170ms - Rows affected: 95 - RequestID: aleu2vqg739 +2025-06-18T14:58:59.281Z [DEBUG] notification-service - PUT /api/v1/users - Status: 200 - Response time: 1654ms - IP: 192.168.211.72 - User: user_1080 - RequestID: lojnjagolp8 +2025-06-18T14:58:59.381Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 400 - Response time: 1365ms - IP: 192.168.141.100 - User: user_1099 - RequestID: pq3kl0ejvr +2025-06-18T14:58:59.481Z [DEBUG] auth-service - Auth event: password_change - User: user_1055 - IP: 192.168.44.5 - RequestID: p07d7ipb0t +2025-06-18T14:58:59.581Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.32.38 - RequestID: g88psmqg2tp +2025-06-18T14:58:59.681Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 113ms - Rows affected: 69 - RequestID: 902zqtjweqm +2025-06-18T14:58:59.781Z [INFO] order-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.33.76 - RequestID: 07zlf44hhju +2025-06-18T14:58:59.881Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 517ms - IP: 192.168.158.144 - User: user_1035 - RequestID: gtwu5frhuy6 +2025-06-18T14:58:59.981Z [INFO] notification-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.79.116 - RequestID: 8c2d7igdasi +2025-06-18T14:59:00.081Z [DEBUG] order-service - Operation: cache_miss - Processing time: 1021ms - RequestID: wt4cnmf4pea +2025-06-18T14:59:00.181Z [INFO] user-service - Operation: payment_processed - Processing time: 178ms - RequestID: bhxa48s3xiw +2025-06-18T14:59:00.281Z [TRACE] inventory-service - Auth event: login_success - User: user_1016 - IP: 192.168.141.100 - RequestID: 3y62xwl2x2w +2025-06-18T14:59:00.381Z [TRACE] payment-service - Auth event: password_change - User: user_1095 - IP: 192.168.229.123 - RequestID: krphe993l6m +2025-06-18T14:59:00.481Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 168ms - Rows affected: 61 - RequestID: ewtojqse7dv +2025-06-18T14:59:00.581Z [DEBUG] payment-service - Operation: email_sent - Processing time: 1030ms - RequestID: q9s0ivwrcqg +2025-06-18T14:59:00.681Z [INFO] user-service - Auth event: login_success - User: user_1046 - IP: 192.168.53.133 - RequestID: p1fut1lo7i +2025-06-18T14:59:00.781Z [INFO] payment-service - Operation: email_sent - Processing time: 843ms - RequestID: opo58t23bb +2025-06-18T14:59:00.881Z [TRACE] user-service - Database INSERT on payments - Execution time: 348ms - Rows affected: 76 - RequestID: 8ox7rgy74pm +2025-06-18T14:59:00.981Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 503 - Response time: 591ms - IP: 192.168.235.117 - User: user_1078 - RequestID: jwd0zntb9mi +2025-06-18T14:59:01.081Z [DEBUG] payment-service - Database INSERT on products - Execution time: 279ms - Rows affected: 13 - RequestID: 8np3ne5oq39 +2025-06-18T14:59:01.181Z [INFO] payment-service - Auth event: login_success - User: user_1083 - IP: 192.168.141.100 - RequestID: iib55bvba4 +2025-06-18T14:59:01.281Z [DEBUG] order-service - Operation: notification_queued - Processing time: 810ms - RequestID: t289j5d9qmk +2025-06-18T14:59:01.381Z [INFO] notification-service - Operation: cache_hit - Processing time: 610ms - RequestID: 5ktfwoemrih +2025-06-18T14:59:01.481Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 494ms - Rows affected: 68 - RequestID: gljbq3o7hf +2025-06-18T14:59:01.581Z [INFO] payment-service - Database SELECT on users - Execution time: 370ms - Rows affected: 99 - RequestID: o85rrmui3cj +2025-06-18T14:59:01.681Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 403 - Response time: 354ms - IP: 192.168.79.116 - User: user_1087 - RequestID: 8ar5ai891iq +2025-06-18T14:59:01.781Z [INFO] notification-service - PUT /api/v1/orders - Status: 502 - Response time: 72ms - IP: 192.168.189.103 - User: user_1042 - RequestID: pvg9d7dczaq +2025-06-18T14:59:01.881Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 31ms - Rows affected: 71 - RequestID: o311gdvzamb +2025-06-18T14:59:01.981Z [INFO] order-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.229.123 - RequestID: whyx2dxo9og +2025-06-18T14:59:02.081Z [TRACE] order-service - Operation: cache_miss - Processing time: 815ms - RequestID: 5a3scyjv4vh +2025-06-18T14:59:02.181Z [INFO] order-service - Operation: inventory_updated - Processing time: 90ms - RequestID: 8v703essi92 +2025-06-18T14:59:02.281Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 290ms - Rows affected: 42 - RequestID: 4x0a3nxfjm9 +2025-06-18T14:59:02.381Z [INFO] notification-service - Auth event: password_change - User: user_1075 - IP: 192.168.11.60 - RequestID: poauxky1uqe +2025-06-18T14:59:02.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1080 - IP: 192.168.235.117 - RequestID: jqannzrbib +2025-06-18T14:59:02.581Z [TRACE] payment-service - Auth event: login_failed - User: user_1014 - IP: 192.168.68.128 - RequestID: ptg4mr8zo5 +2025-06-18T14:59:02.681Z [INFO] inventory-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.44.5 - RequestID: zu26ew7k7vl +2025-06-18T14:59:02.781Z [DEBUG] notification-service - Auth event: logout - User: user_1087 - IP: 192.168.64.33 - RequestID: t95j3zqomgp +2025-06-18T14:59:02.881Z [INFO] order-service - Operation: email_sent - Processing time: 626ms - RequestID: 6qb7nmxkpc2 +2025-06-18T14:59:02.981Z [TRACE] notification-service - Database DELETE on users - Execution time: 112ms - Rows affected: 79 - RequestID: rajeqovyhi +2025-06-18T14:59:03.081Z [TRACE] order-service - Auth event: password_change - User: user_1054 - IP: 192.168.28.146 - RequestID: ld2nx5wj7c +2025-06-18T14:59:03.181Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1920ms - IP: 192.168.53.133 - User: user_1014 - RequestID: jfi56bwxch7 +2025-06-18T14:59:03.281Z [TRACE] payment-service - Database INSERT on products - Execution time: 327ms - Rows affected: 40 - RequestID: p3rm3fjngu +2025-06-18T14:59:03.381Z [INFO] notification-service - Operation: cache_hit - Processing time: 923ms - RequestID: 457lobi49e9 +2025-06-18T14:59:03.481Z [TRACE] order-service - Auth event: login_failed - User: user_1068 - IP: 192.168.68.158 - RequestID: 1ogzn5gtg4n +2025-06-18T14:59:03.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 677ms - RequestID: 5fdyecyfsrn +2025-06-18T14:59:03.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 977ms - RequestID: 0fodyuq4bhza +2025-06-18T14:59:03.781Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1961ms - IP: 192.168.53.133 - User: user_1075 - RequestID: otp2h1ve59 +2025-06-18T14:59:03.881Z [DEBUG] user-service - Auth event: login_failed - User: user_1035 - IP: 192.168.240.169 - RequestID: slfkxpzpd9j +2025-06-18T14:59:03.981Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 403 - Response time: 1760ms - IP: 192.168.247.134 - User: user_1002 - RequestID: lxub4mn4g5 +2025-06-18T14:59:04.081Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 378ms - RequestID: 6q85a5tx13u +2025-06-18T14:59:04.181Z [INFO] order-service - Auth event: login_failed - User: user_1069 - IP: 192.168.138.123 - RequestID: 603x7xmpxsb +2025-06-18T14:59:04.281Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 407ms - RequestID: 6909ee1ysim +2025-06-18T14:59:04.381Z [DEBUG] order-service - Auth event: logout - User: user_1028 - IP: 192.168.240.169 - RequestID: hlavl3xep27 +2025-06-18T14:59:04.481Z [DEBUG] order-service - Database UPDATE on products - Execution time: 395ms - Rows affected: 46 - RequestID: nmxr3yayf8 +2025-06-18T14:59:04.581Z [INFO] auth-service - Auth event: password_change - User: user_1064 - IP: 192.168.53.133 - RequestID: gx1rixm8pi8 +2025-06-18T14:59:04.681Z [TRACE] user-service - Auth event: login_failed - User: user_1039 - IP: 192.168.31.117 - RequestID: q00q16p8p4c +2025-06-18T14:59:04.781Z [INFO] payment-service - Database INSERT on products - Execution time: 68ms - Rows affected: 17 - RequestID: lu8c8gdoars +2025-06-18T14:59:04.881Z [INFO] auth-service - Operation: payment_processed - Processing time: 658ms - RequestID: 6yrg0v9ga35 +2025-06-18T14:59:04.981Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 728ms - RequestID: yxzppwedq19 +2025-06-18T14:59:05.081Z [DEBUG] order-service - Operation: cache_hit - Processing time: 892ms - RequestID: lc3ri7pp9wf +2025-06-18T14:59:05.181Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 404 - Response time: 148ms - IP: 192.168.113.218 - User: user_1045 - RequestID: y6p1ri95hln +2025-06-18T14:59:05.281Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 96ms - Rows affected: 40 - RequestID: s2sn6naajm9 +2025-06-18T14:59:05.381Z [INFO] order-service - Auth event: password_change - User: user_1062 - IP: 192.168.79.143 - RequestID: q4mwrkflu0n +2025-06-18T14:59:05.481Z [DEBUG] user-service - Operation: cache_hit - Processing time: 723ms - RequestID: riepwsbgslo +2025-06-18T14:59:05.581Z [INFO] user-service - DELETE /api/v1/users - Status: 403 - Response time: 540ms - IP: 192.168.79.116 - User: user_1045 - RequestID: ibd90c0yeel +2025-06-18T14:59:05.681Z [INFO] order-service - Database SELECT on users - Execution time: 433ms - Rows affected: 57 - RequestID: 79hn6vl4ojp +2025-06-18T14:59:05.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 658ms - RequestID: 5rn2mfv2fz4 +2025-06-18T14:59:05.881Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 368ms - Rows affected: 27 - RequestID: yn52qvl3bqf +2025-06-18T14:59:05.981Z [TRACE] payment-service - Auth event: login_failed - User: user_1025 - IP: 192.168.133.7 - RequestID: 17wo4xbanu5 +2025-06-18T14:59:06.081Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1230ms - IP: 192.168.53.133 - User: user_1059 - RequestID: a81bwqd5wu7 +2025-06-18T14:59:06.181Z [INFO] payment-service - Database DELETE on sessions - Execution time: 110ms - Rows affected: 14 - RequestID: f06f8i45d4c +2025-06-18T14:59:06.281Z [TRACE] order-service - GET /api/v1/orders - Status: 200 - Response time: 1144ms - IP: 192.168.227.233 - User: user_1006 - RequestID: fc7s18ilst +2025-06-18T14:59:06.381Z [TRACE] user-service - Database UPDATE on orders - Execution time: 258ms - Rows affected: 9 - RequestID: ir1w1codd69 +2025-06-18T14:59:06.481Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 426ms - Rows affected: 47 - RequestID: lo3eh143rhp +2025-06-18T14:59:06.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1045 - IP: 192.168.68.128 - RequestID: bawdja25qmb +2025-06-18T14:59:06.681Z [DEBUG] order-service - Auth event: password_change - User: user_1088 - IP: 192.168.227.77 - RequestID: r2ll87aioz +2025-06-18T14:59:06.781Z [INFO] auth-service - Database INSERT on payments - Execution time: 443ms - Rows affected: 73 - RequestID: 430wqbu9psp +2025-06-18T14:59:06.881Z [DEBUG] auth-service - Auth event: logout - User: user_1077 - IP: 192.168.32.38 - RequestID: 0dezhizoykrq +2025-06-18T14:59:06.981Z [INFO] order-service - Database SELECT on users - Execution time: 422ms - Rows affected: 20 - RequestID: c6f8djxcxjr +2025-06-18T14:59:07.081Z [DEBUG] auth-service - Database SELECT on users - Execution time: 464ms - Rows affected: 88 - RequestID: 5cfmcq1i5ak +2025-06-18T14:59:07.181Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 139ms - Rows affected: 12 - RequestID: 90havb51hx +2025-06-18T14:59:07.281Z [INFO] auth-service - Database DELETE on payments - Execution time: 98ms - Rows affected: 6 - RequestID: 4of111gwutu +2025-06-18T14:59:07.381Z [TRACE] notification-service - Auth event: password_change - User: user_1027 - IP: 192.168.10.184 - RequestID: wrm616o4u6 +2025-06-18T14:59:07.481Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 37ms - IP: 192.168.81.206 - User: user_1001 - RequestID: euag02zjgsc +2025-06-18T14:59:07.581Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 781ms - RequestID: 26xwpuntnt9 +2025-06-18T14:59:07.681Z [DEBUG] auth-service - Auth event: logout - User: user_1032 - IP: 192.168.235.117 - RequestID: chml0vu9g74 +2025-06-18T14:59:07.781Z [DEBUG] auth-service - Database SELECT on users - Execution time: 111ms - Rows affected: 39 - RequestID: 7h16pnyho5r +2025-06-18T14:59:07.881Z [INFO] payment-service - Operation: cache_miss - Processing time: 159ms - RequestID: 85gn0s34gv9 +2025-06-18T14:59:07.981Z [INFO] payment-service - PUT /api/v1/users - Status: 503 - Response time: 310ms - IP: 192.168.28.146 - User: user_1034 - RequestID: r742kfkbqbd +2025-06-18T14:59:08.081Z [INFO] order-service - Operation: order_created - Processing time: 299ms - RequestID: ewlxburhx2w +2025-06-18T14:59:08.181Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 502 - Response time: 940ms - IP: 192.168.31.117 - User: user_1014 - RequestID: i3mxpen65md +2025-06-18T14:59:08.281Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 279ms - IP: 192.168.240.169 - User: user_1086 - RequestID: 3ssx49czzow +2025-06-18T14:59:08.381Z [INFO] auth-service - Auth event: password_change - User: user_1086 - IP: 192.168.174.114 - RequestID: 6cpdx63ade3 +2025-06-18T14:59:08.481Z [INFO] order-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.79.141 - RequestID: 3m2a1y4jrkh +2025-06-18T14:59:08.581Z [DEBUG] auth-service - Operation: email_sent - Processing time: 1018ms - RequestID: 0ogrgxtgxis +2025-06-18T14:59:08.681Z [TRACE] inventory-service - Database DELETE on products - Execution time: 394ms - Rows affected: 50 - RequestID: dn21h2p1z8l +2025-06-18T14:59:08.781Z [INFO] user-service - Operation: order_created - Processing time: 1032ms - RequestID: xc9wokjyvib +2025-06-18T14:59:08.881Z [DEBUG] order-service - Auth event: login_success - User: user_1030 - IP: 192.168.242.165 - RequestID: qnntf7fh60j +2025-06-18T14:59:08.981Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 104ms - Rows affected: 73 - RequestID: cmu4ysn7bt +2025-06-18T14:59:09.081Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 503 - Response time: 75ms - IP: 192.168.229.123 - User: user_1020 - RequestID: lzv27gntf7g +2025-06-18T14:59:09.181Z [TRACE] order-service - Operation: cache_miss - Processing time: 409ms - RequestID: qy5591qh17a +2025-06-18T14:59:09.281Z [INFO] order-service - Operation: notification_queued - Processing time: 869ms - RequestID: zq62vjq4kt +2025-06-18T14:59:09.381Z [DEBUG] order-service - Operation: order_created - Processing time: 572ms - RequestID: xofo7yf92a +2025-06-18T14:59:09.481Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 109ms - Rows affected: 3 - RequestID: ko3clkk4p6 +2025-06-18T14:59:09.581Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 201 - Response time: 351ms - IP: 192.168.170.215 - User: user_1070 - RequestID: b4145x1b9xh +2025-06-18T14:59:09.681Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 249ms - IP: 192.168.144.38 - User: user_1032 - RequestID: qbzdg69qqn +2025-06-18T14:59:09.781Z [TRACE] auth-service - GET /api/v1/payments - Status: 404 - Response time: 529ms - IP: 192.168.247.134 - User: user_1038 - RequestID: 5yt5yow12dd +2025-06-18T14:59:09.881Z [DEBUG] user-service - Database DELETE on payments - Execution time: 40ms - Rows affected: 19 - RequestID: 0v3wfrz5zsu +2025-06-18T14:59:09.981Z [DEBUG] order-service - Auth event: login_failed - User: user_1092 - IP: 192.168.79.143 - RequestID: ezi53tx1hxv +2025-06-18T14:59:10.081Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 116ms - Rows affected: 48 - RequestID: inl1vc5mk4 +2025-06-18T14:59:10.181Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 162ms - Rows affected: 80 - RequestID: 0arosvpemnmn +2025-06-18T14:59:10.281Z [INFO] payment-service - GET /api/v1/users - Status: 400 - Response time: 435ms - IP: 192.168.240.169 - User: user_1028 - RequestID: erixlx3a2tt +2025-06-18T14:59:10.381Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1846ms - IP: 192.168.227.77 - User: user_1047 - RequestID: puz4kaxjthh +2025-06-18T14:59:10.481Z [DEBUG] order-service - Auth event: login_failed - User: user_1050 - IP: 192.168.181.225 - RequestID: oseuz74inc +2025-06-18T14:59:10.581Z [TRACE] user-service - Database INSERT on users - Execution time: 425ms - Rows affected: 49 - RequestID: edhx5xezw14 +2025-06-18T14:59:10.681Z [TRACE] notification-service - Operation: cache_hit - Processing time: 707ms - RequestID: d1jjmiihob +2025-06-18T14:59:10.781Z [INFO] order-service - Operation: notification_queued - Processing time: 444ms - RequestID: uqm9fcc2mn +2025-06-18T14:59:10.881Z [INFO] auth-service - Database UPDATE on payments - Execution time: 304ms - Rows affected: 3 - RequestID: aj589riw67t +2025-06-18T14:59:10.981Z [TRACE] inventory-service - Auth event: logout - User: user_1084 - IP: 192.168.46.63 - RequestID: wx9xowax809 +2025-06-18T14:59:11.081Z [INFO] order-service - Operation: notification_queued - Processing time: 838ms - RequestID: 23cygv1qsuai +2025-06-18T14:59:11.181Z [TRACE] notification-service - Database SELECT on payments - Execution time: 139ms - Rows affected: 95 - RequestID: arko7ko6rc4 +2025-06-18T14:59:11.281Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 310ms - RequestID: furehk9k5yv +2025-06-18T14:59:11.381Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 202ms - Rows affected: 4 - RequestID: 39gtemzf2bw +2025-06-18T14:59:11.481Z [DEBUG] order-service - Auth event: logout - User: user_1069 - IP: 192.168.44.5 - RequestID: 4ltr0iihjah +2025-06-18T14:59:11.581Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 340ms - RequestID: ijwkarsqum +2025-06-18T14:59:11.681Z [INFO] order-service - Operation: payment_processed - Processing time: 705ms - RequestID: g82t5qhfmnb +2025-06-18T14:59:11.781Z [TRACE] user-service - Database DELETE on users - Execution time: 296ms - Rows affected: 52 - RequestID: j1hmuklwpe +2025-06-18T14:59:11.881Z [TRACE] auth-service - Auth event: password_change - User: user_1008 - IP: 192.168.81.206 - RequestID: to7n8w0xrp +2025-06-18T14:59:11.981Z [INFO] notification-service - Auth event: password_change - User: user_1055 - IP: 192.168.247.134 - RequestID: 4pqji4zlz5k +2025-06-18T14:59:12.081Z [TRACE] auth-service - Operation: order_created - Processing time: 60ms - RequestID: idituf40cf +2025-06-18T14:59:12.181Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 403 - Response time: 1803ms - IP: 192.168.227.77 - User: user_1045 - RequestID: mpc23btnag +2025-06-18T14:59:12.281Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1369ms - IP: 192.168.194.41 - User: user_1042 - RequestID: felf65zh4kd +2025-06-18T14:59:12.381Z [DEBUG] user-service - Operation: email_sent - Processing time: 393ms - RequestID: 8djo2u5dit9 +2025-06-18T14:59:12.481Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 200ms - Rows affected: 94 - RequestID: lfjjs9wcpoq +2025-06-18T14:59:12.581Z [TRACE] user-service - GET /api/v1/auth/login - Status: 401 - Response time: 1040ms - IP: 192.168.181.225 - User: user_1049 - RequestID: f34dmfdig35 +2025-06-18T14:59:12.681Z [INFO] auth-service - DELETE /api/v1/orders - Status: 400 - Response time: 613ms - IP: 192.168.44.5 - User: user_1069 - RequestID: ztjrjq8fz3m +2025-06-18T14:59:12.781Z [DEBUG] order-service - Auth event: login_failed - User: user_1066 - IP: 192.168.68.128 - RequestID: g55ydhtrjc6 +2025-06-18T14:59:12.881Z [TRACE] notification-service - Operation: order_created - Processing time: 374ms - RequestID: dseft3cwnt6 +2025-06-18T14:59:12.981Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 124ms - Rows affected: 98 - RequestID: kvly4shi2wr +2025-06-18T14:59:13.081Z [INFO] auth-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.13.72 - RequestID: l7bxbtu39y +2025-06-18T14:59:13.181Z [INFO] user-service - GET /api/v1/orders - Status: 403 - Response time: 622ms - IP: 192.168.79.141 - User: user_1092 - RequestID: ffrr2wh96w5 +2025-06-18T14:59:13.281Z [TRACE] user-service - Database DELETE on products - Execution time: 121ms - Rows affected: 39 - RequestID: 1jcigw8vrwi +2025-06-18T14:59:13.381Z [TRACE] user-service - Operation: inventory_updated - Processing time: 914ms - RequestID: 28obug8lmb3j +2025-06-18T14:59:13.481Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 32ms - Rows affected: 5 - RequestID: alf4gprsn64 +2025-06-18T14:59:13.581Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1954ms - IP: 192.168.104.37 - User: user_1034 - RequestID: ye633xdnpj +2025-06-18T14:59:13.681Z [INFO] payment-service - Operation: notification_queued - Processing time: 436ms - RequestID: f6d6uxg0dr4 +2025-06-18T14:59:13.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 182ms - RequestID: z7uh0jp7fy +2025-06-18T14:59:13.881Z [INFO] user-service - PUT /api/v1/orders - Status: 404 - Response time: 1242ms - IP: 192.168.68.128 - User: user_1071 - RequestID: 62gy5lq7d6m +2025-06-18T14:59:13.981Z [INFO] user-service - PUT /api/v1/inventory - Status: 404 - Response time: 1470ms - IP: 192.168.113.218 - User: user_1025 - RequestID: o0mmrhy749 +2025-06-18T14:59:14.081Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 281ms - Rows affected: 16 - RequestID: ld2easqkev +2025-06-18T14:59:14.181Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1135ms - IP: 192.168.232.72 - User: user_1026 - RequestID: h95rpec07hl +2025-06-18T14:59:14.281Z [DEBUG] inventory-service - Auth event: login_success - User: user_1070 - IP: 192.168.31.117 - RequestID: mm59yv0t8mm +2025-06-18T14:59:14.381Z [INFO] auth-service - Operation: email_sent - Processing time: 564ms - RequestID: fj7nuku3ox +2025-06-18T14:59:14.481Z [DEBUG] user-service - Auth event: login_success - User: user_1085 - IP: 192.168.235.117 - RequestID: 9c1zvm1tsxj +2025-06-18T14:59:14.581Z [TRACE] notification-service - Operation: order_created - Processing time: 989ms - RequestID: 5nod2uj7f92 +2025-06-18T14:59:14.681Z [DEBUG] user-service - Database SELECT on payments - Execution time: 106ms - Rows affected: 2 - RequestID: yjn7mvcl6vo +2025-06-18T14:59:14.781Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 503 - Response time: 989ms - IP: 192.168.14.77 - User: user_1086 - RequestID: zbula6hhz1 +2025-06-18T14:59:14.881Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 502 - Response time: 687ms - IP: 192.168.174.114 - User: user_1075 - RequestID: 6eyl9wzqn1u +2025-06-18T14:59:14.981Z [TRACE] user-service - Database INSERT on users - Execution time: 381ms - Rows affected: 76 - RequestID: s5t3rxbo7f +2025-06-18T14:59:15.081Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 23ms - IP: 192.168.44.5 - User: user_1066 - RequestID: k77fhrppdgf +2025-06-18T14:59:15.181Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 41ms - Rows affected: 44 - RequestID: pn37asg77mq +2025-06-18T14:59:15.281Z [INFO] inventory-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.170.215 - RequestID: hmj2v7icvtk +2025-06-18T14:59:15.381Z [TRACE] user-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.33.76 - RequestID: z139ttppjnm +2025-06-18T14:59:15.481Z [INFO] user-service - GET /api/v1/inventory - Status: 201 - Response time: 400ms - IP: 192.168.144.38 - User: user_1013 - RequestID: we65lxnu2o +2025-06-18T14:59:15.581Z [INFO] auth-service - Operation: cache_miss - Processing time: 969ms - RequestID: i59s0nu10sd +2025-06-18T14:59:15.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1040 - IP: 192.168.147.171 - RequestID: 9vrt0gwa6s +2025-06-18T14:59:15.781Z [TRACE] notification-service - Auth event: logout - User: user_1043 - IP: 192.168.68.158 - RequestID: yj24yc00dp +2025-06-18T14:59:15.881Z [DEBUG] auth-service - GET /api/v1/users - Status: 403 - Response time: 1800ms - IP: 192.168.235.117 - User: user_1053 - RequestID: au858ijc4jh +2025-06-18T14:59:15.981Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 758ms - RequestID: psiap0ltiui +2025-06-18T14:59:16.081Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 200 - Response time: 699ms - IP: 192.168.133.7 - User: user_1040 - RequestID: joauo0hz258 +2025-06-18T14:59:16.181Z [TRACE] user-service - Database INSERT on users - Execution time: 48ms - Rows affected: 17 - RequestID: vfpqii30f8s +2025-06-18T14:59:16.281Z [TRACE] auth-service - Database SELECT on payments - Execution time: 286ms - Rows affected: 63 - RequestID: t1fg6egaz1 +2025-06-18T14:59:16.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.141.100 - RequestID: vsbxaljzkmt +2025-06-18T14:59:16.481Z [INFO] user-service - Operation: cache_hit - Processing time: 1043ms - RequestID: 8hp53hw411n +2025-06-18T14:59:16.581Z [TRACE] order-service - Operation: notification_queued - Processing time: 682ms - RequestID: ofoo7yocbae +2025-06-18T14:59:16.681Z [TRACE] auth-service - Auth event: login_success - User: user_1049 - IP: 192.168.242.165 - RequestID: upz9x0py7wk +2025-06-18T14:59:16.781Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 525ms - IP: 192.168.53.133 - User: user_1097 - RequestID: p4iuq7yvz9a +2025-06-18T14:59:16.881Z [TRACE] inventory-service - GET /api/v1/orders - Status: 404 - Response time: 427ms - IP: 192.168.31.117 - User: user_1003 - RequestID: 8tan9y7ppkn +2025-06-18T14:59:16.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1051 - IP: 192.168.79.141 - RequestID: 1nmqrrebhzi +2025-06-18T14:59:17.081Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 441ms - Rows affected: 24 - RequestID: 78iblzrq29r +2025-06-18T14:59:17.181Z [DEBUG] order-service - Auth event: logout - User: user_1031 - IP: 192.168.13.72 - RequestID: n7ww6nvcy9j +2025-06-18T14:59:17.281Z [TRACE] payment-service - Auth event: login_failed - User: user_1079 - IP: 192.168.196.226 - RequestID: gdzykstam7 +2025-06-18T14:59:17.381Z [TRACE] payment-service - Operation: notification_queued - Processing time: 87ms - RequestID: 0vjigdg3iv6n +2025-06-18T14:59:17.481Z [TRACE] user-service - Operation: webhook_sent - Processing time: 857ms - RequestID: rvl56cvqbg9 +2025-06-18T14:59:17.581Z [TRACE] payment-service - Operation: payment_processed - Processing time: 633ms - RequestID: u4gc921tok +2025-06-18T14:59:17.681Z [INFO] payment-service - Database DELETE on users - Execution time: 6ms - Rows affected: 69 - RequestID: hgehexfs4f +2025-06-18T14:59:17.781Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 200 - Response time: 764ms - IP: 192.168.85.229 - User: user_1071 - RequestID: l39ca09lva +2025-06-18T14:59:17.881Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 572ms - RequestID: dl0r90ig7p9 +2025-06-18T14:59:17.981Z [DEBUG] notification-service - Operation: order_created - Processing time: 1023ms - RequestID: 8z8qt0sbl26 +2025-06-18T14:59:18.081Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 79ms - Rows affected: 38 - RequestID: b1iwv2r1dea +2025-06-18T14:59:18.181Z [TRACE] notification-service - Operation: cache_miss - Processing time: 136ms - RequestID: ct423d0lhaw +2025-06-18T14:59:18.281Z [TRACE] order-service - Database SELECT on orders - Execution time: 245ms - Rows affected: 81 - RequestID: g7tlfyy4hu6 +2025-06-18T14:59:18.381Z [INFO] notification-service - Database SELECT on users - Execution time: 11ms - Rows affected: 14 - RequestID: lly5ukj7jac +2025-06-18T14:59:18.481Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 201 - Response time: 749ms - IP: 192.168.30.79 - User: user_1094 - RequestID: e01njwrupsl +2025-06-18T14:59:18.581Z [DEBUG] inventory-service - Auth event: login_success - User: user_1016 - IP: 192.168.194.41 - RequestID: 3hy65ln397 +2025-06-18T14:59:18.681Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 400 - Response time: 441ms - IP: 192.168.79.141 - User: user_1046 - RequestID: gy5m6uvoq6m +2025-06-18T14:59:18.781Z [TRACE] order-service - Operation: email_sent - Processing time: 169ms - RequestID: 3du5ip972np +2025-06-18T14:59:18.881Z [INFO] user-service - Operation: payment_processed - Processing time: 970ms - RequestID: naz63w4c7u +2025-06-18T14:59:18.981Z [TRACE] auth-service - Auth event: logout - User: user_1052 - IP: 192.168.104.37 - RequestID: 03uws9n2w794 +2025-06-18T14:59:19.081Z [INFO] auth-service - Database DELETE on payments - Execution time: 349ms - Rows affected: 75 - RequestID: t46yxpjdpqh +2025-06-18T14:59:19.181Z [INFO] order-service - Database UPDATE on payments - Execution time: 206ms - Rows affected: 92 - RequestID: klilp5d8yt +2025-06-18T14:59:19.281Z [INFO] notification-service - Operation: order_created - Processing time: 747ms - RequestID: lredrjyi1zi +2025-06-18T14:59:19.381Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 221ms - Rows affected: 67 - RequestID: uwy0nvnu1n8 +2025-06-18T14:59:19.481Z [DEBUG] auth-service - Operation: email_sent - Processing time: 611ms - RequestID: zavbjfyhzy +2025-06-18T14:59:19.581Z [TRACE] order-service - Auth event: logout - User: user_1058 - IP: 192.168.227.77 - RequestID: 5j6vrsiddd5 +2025-06-18T14:59:19.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.113.218 - RequestID: pgqldtb66e +2025-06-18T14:59:19.781Z [INFO] order-service - Auth event: login_success - User: user_1018 - IP: 192.168.211.72 - RequestID: 0wpkxlfk0nz +2025-06-18T14:59:19.881Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 300ms - Rows affected: 81 - RequestID: j9b5lu0hcn +2025-06-18T14:59:19.981Z [DEBUG] auth-service - PUT /api/v1/users - Status: 502 - Response time: 31ms - IP: 192.168.211.72 - User: user_1097 - RequestID: 1a3i3yxi7mx +2025-06-18T14:59:20.081Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 400 - Response time: 766ms - IP: 192.168.242.165 - User: user_1039 - RequestID: 29ir80kuat +2025-06-18T14:59:20.181Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 41ms - Rows affected: 36 - RequestID: y3wxdhr3289 +2025-06-18T14:59:20.281Z [INFO] user-service - DELETE /api/v1/users - Status: 201 - Response time: 1033ms - IP: 192.168.68.158 - User: user_1031 - RequestID: i1z5zze9kom +2025-06-18T14:59:20.381Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 704ms - RequestID: owghm4acejd +2025-06-18T14:59:20.481Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.11.60 - RequestID: bx2k5bkt2cb +2025-06-18T14:59:20.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 1003ms - RequestID: ehukkcb75b6 +2025-06-18T14:59:20.681Z [INFO] order-service - Database DELETE on payments - Execution time: 37ms - Rows affected: 24 - RequestID: ejbj4po1oih +2025-06-18T14:59:20.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 498ms - RequestID: mf9a050hjwl +2025-06-18T14:59:20.881Z [INFO] order-service - Database INSERT on users - Execution time: 10ms - Rows affected: 42 - RequestID: vkbnfv2w5hl +2025-06-18T14:59:20.981Z [DEBUG] order-service - Database SELECT on products - Execution time: 131ms - Rows affected: 72 - RequestID: cdrrq0ptsnb +2025-06-18T14:59:21.081Z [INFO] auth-service - Database UPDATE on products - Execution time: 489ms - Rows affected: 57 - RequestID: eh1opocp1gc +2025-06-18T14:59:21.181Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 809ms - IP: 192.168.53.133 - User: user_1045 - RequestID: xqe0u2qb8lb +2025-06-18T14:59:21.281Z [INFO] auth-service - POST /api/v1/auth/login - Status: 502 - Response time: 1198ms - IP: 192.168.31.117 - User: user_1069 - RequestID: 2bqdzwclie6 +2025-06-18T14:59:21.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.147.171 - RequestID: o7vl1yfdwle +2025-06-18T14:59:21.481Z [INFO] order-service - Database INSERT on payments - Execution time: 258ms - Rows affected: 83 - RequestID: ui5fns2a3ln +2025-06-18T14:59:21.581Z [INFO] order-service - Operation: cache_hit - Processing time: 396ms - RequestID: 0lup9rdbitc +2025-06-18T14:59:21.681Z [DEBUG] notification-service - Auth event: login_success - User: user_1000 - IP: 192.168.79.143 - RequestID: h29npmwabv6 +2025-06-18T14:59:21.781Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 502 - Response time: 37ms - IP: 192.168.147.171 - User: user_1031 - RequestID: 2twaitpo3tj +2025-06-18T14:59:21.881Z [TRACE] notification-service - Operation: order_created - Processing time: 769ms - RequestID: 1h16rlz73oj +2025-06-18T14:59:21.981Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 404 - Response time: 1025ms - IP: 192.168.64.33 - User: user_1029 - RequestID: xd8ukwedrx +2025-06-18T14:59:22.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.53.133 - RequestID: b2pa6bcwzqm +2025-06-18T14:59:22.181Z [TRACE] user-service - DELETE /api/v1/payments - Status: 500 - Response time: 1105ms - IP: 192.168.187.199 - User: user_1062 - RequestID: 61cyu39o5ln +2025-06-18T14:59:22.281Z [INFO] notification-service - Auth event: logout - User: user_1004 - IP: 192.168.181.225 - RequestID: c9as1hgonss +2025-06-18T14:59:22.381Z [INFO] notification-service - DELETE /api/v1/orders - Status: 503 - Response time: 1671ms - IP: 192.168.229.123 - User: user_1037 - RequestID: mh9rzyn29pf +2025-06-18T14:59:22.481Z [TRACE] user-service - Operation: order_created - Processing time: 239ms - RequestID: 787n9d7ktdy +2025-06-18T14:59:22.581Z [DEBUG] user-service - Auth event: login_failed - User: user_1013 - IP: 192.168.14.77 - RequestID: 1u6r3t89rsr +2025-06-18T14:59:22.681Z [TRACE] auth-service - Operation: cache_hit - Processing time: 644ms - RequestID: 1l26crelg9n +2025-06-18T14:59:22.781Z [INFO] user-service - PATCH /api/v1/payments - Status: 500 - Response time: 1281ms - IP: 192.168.147.171 - User: user_1040 - RequestID: qqnbba8zxlp +2025-06-18T14:59:22.881Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 498ms - Rows affected: 57 - RequestID: w8qw9h1tg0d +2025-06-18T14:59:22.981Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 317ms - Rows affected: 98 - RequestID: akgwvwkay68 +2025-06-18T14:59:23.081Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 388ms - Rows affected: 65 - RequestID: 81w9wenpkh8 +2025-06-18T14:59:23.181Z [INFO] notification-service - POST /api/v1/inventory - Status: 503 - Response time: 1557ms - IP: 192.168.144.38 - User: user_1044 - RequestID: ve81wlvccu +2025-06-18T14:59:23.281Z [TRACE] inventory-service - Operation: email_sent - Processing time: 766ms - RequestID: arvqu1r2b3 +2025-06-18T14:59:23.381Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 395ms - Rows affected: 71 - RequestID: p1exl9pkxv +2025-06-18T14:59:23.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.227.233 - RequestID: zspplpqfpiq +2025-06-18T14:59:23.581Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 13ms - Rows affected: 11 - RequestID: pgnrjg7emil +2025-06-18T14:59:23.681Z [TRACE] order-service - GET /api/v1/inventory - Status: 200 - Response time: 733ms - IP: 192.168.170.215 - User: user_1039 - RequestID: l8ez5i6imoa +2025-06-18T14:59:23.781Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 451ms - Rows affected: 77 - RequestID: g0gptve0utm +2025-06-18T14:59:23.881Z [INFO] order-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.13.72 - RequestID: 0jxann8zmj3e +2025-06-18T14:59:23.981Z [TRACE] user-service - DELETE /api/v1/payments - Status: 401 - Response time: 1972ms - IP: 192.168.113.218 - User: user_1013 - RequestID: k6ooi7cv2q +2025-06-18T14:59:24.081Z [DEBUG] order-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.30.79 - RequestID: jvrslc3des +2025-06-18T14:59:24.181Z [INFO] auth-service - Operation: webhook_sent - Processing time: 289ms - RequestID: m0vrwjhagpc +2025-06-18T14:59:24.281Z [INFO] payment-service - Database DELETE on payments - Execution time: 75ms - Rows affected: 56 - RequestID: h4zl38ev3mf +2025-06-18T14:59:24.381Z [INFO] user-service - Auth event: login_success - User: user_1036 - IP: 192.168.247.134 - RequestID: 13cas0ljqq8j +2025-06-18T14:59:24.481Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 503 - Response time: 93ms - IP: 192.168.33.76 - User: user_1010 - RequestID: an7jjj4d9ae +2025-06-18T14:59:24.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.170.215 - RequestID: xzw6hnrcx2g +2025-06-18T14:59:24.681Z [DEBUG] payment-service - Operation: order_created - Processing time: 558ms - RequestID: hgv1yv49fhf +2025-06-18T14:59:24.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 265ms - RequestID: i79xlxtb6n +2025-06-18T14:59:24.881Z [TRACE] notification-service - Auth event: logout - User: user_1073 - IP: 192.168.144.38 - RequestID: 22xdlot0w3r +2025-06-18T14:59:24.981Z [DEBUG] payment-service - Auth event: logout - User: user_1003 - IP: 192.168.235.117 - RequestID: 4mi7sgnsh1i +2025-06-18T14:59:25.081Z [INFO] inventory-service - Auth event: password_change - User: user_1040 - IP: 192.168.100.240 - RequestID: 2q6qpqcerrp +2025-06-18T14:59:25.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.194.41 - RequestID: 0kuc2p6wms7 +2025-06-18T14:59:25.281Z [INFO] user-service - Operation: webhook_sent - Processing time: 774ms - RequestID: 3ida6pjp59e +2025-06-18T14:59:25.381Z [TRACE] notification-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.133.7 - RequestID: 1wht57t4nyr +2025-06-18T14:59:25.481Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 404 - Response time: 678ms - IP: 192.168.68.128 - User: user_1013 - RequestID: q25va1dk8zk +2025-06-18T14:59:25.581Z [INFO] payment-service - PATCH /api/v1/users - Status: 404 - Response time: 116ms - IP: 192.168.147.171 - User: user_1082 - RequestID: 6nvonvii21w +2025-06-18T14:59:25.681Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 193ms - Rows affected: 25 - RequestID: x42bfpfcrs +2025-06-18T14:59:25.781Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 403 - Response time: 925ms - IP: 192.168.79.141 - User: user_1047 - RequestID: nnvxtwlmzv +2025-06-18T14:59:25.881Z [INFO] order-service - DELETE /api/v1/inventory - Status: 404 - Response time: 945ms - IP: 192.168.138.123 - User: user_1028 - RequestID: efzpnnl0u1r +2025-06-18T14:59:25.981Z [TRACE] user-service - Auth event: login_failed - User: user_1061 - IP: 192.168.141.100 - RequestID: ww8r4nbz8g9 +2025-06-18T14:59:26.081Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 430ms - IP: 192.168.81.206 - User: user_1050 - RequestID: i60pyugt538 +2025-06-18T14:59:26.181Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1705ms - IP: 192.168.133.7 - User: user_1039 - RequestID: giejrokjovs +2025-06-18T14:59:26.281Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 403 - Response time: 1937ms - IP: 192.168.240.169 - User: user_1086 - RequestID: o299oq2jec +2025-06-18T14:59:26.381Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 797ms - RequestID: qz9r3brmmdc +2025-06-18T14:59:26.481Z [TRACE] inventory-service - PUT /api/v1/users - Status: 201 - Response time: 739ms - IP: 192.168.170.215 - User: user_1035 - RequestID: hlfckqfqzim +2025-06-18T14:59:26.581Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 121ms - RequestID: jju7xjuj7x +2025-06-18T14:59:26.681Z [TRACE] user-service - Operation: inventory_updated - Processing time: 93ms - RequestID: 1fj0ig0hehr +2025-06-18T14:59:26.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.144.38 - RequestID: y2ot170g5n +2025-06-18T14:59:26.881Z [INFO] inventory-service - Auth event: password_change - User: user_1087 - IP: 192.168.242.165 - RequestID: uisyk6odjyk +2025-06-18T14:59:26.981Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 500 - Response time: 1885ms - IP: 192.168.159.94 - User: user_1031 - RequestID: tequgmnrvo +2025-06-18T14:59:27.081Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 495ms - Rows affected: 41 - RequestID: vv7fwu5e48 +2025-06-18T14:59:27.181Z [INFO] user-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.79.116 - RequestID: 6mk7slrkwcq +2025-06-18T14:59:27.281Z [INFO] auth-service - Auth event: logout - User: user_1010 - IP: 192.168.170.215 - RequestID: dfcotl9461p +2025-06-18T14:59:27.381Z [TRACE] order-service - Operation: cache_hit - Processing time: 880ms - RequestID: n0v3xlrfifi +2025-06-18T14:59:27.481Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 502 - Response time: 1205ms - IP: 192.168.79.143 - User: user_1048 - RequestID: tbiqecqe5f +2025-06-18T14:59:27.581Z [TRACE] user-service - Database INSERT on users - Execution time: 290ms - Rows affected: 39 - RequestID: s1yyjsi27as +2025-06-18T14:59:27.681Z [INFO] order-service - Database UPDATE on users - Execution time: 30ms - Rows affected: 32 - RequestID: 02qk5fq6ufii +2025-06-18T14:59:27.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.196.226 - RequestID: gf9ltk18au +2025-06-18T14:59:27.881Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 21ms - Rows affected: 26 - RequestID: b0ydbg1kwxn +2025-06-18T14:59:27.981Z [INFO] inventory-service - Auth event: login_failed - User: user_1060 - IP: 192.168.68.128 - RequestID: wseci5za4q +2025-06-18T14:59:28.081Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 47ms - Rows affected: 87 - RequestID: uow32fa3g6 +2025-06-18T14:59:28.181Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1427ms - IP: 192.168.10.184 - User: user_1047 - RequestID: nr0t2vkdv9i +2025-06-18T14:59:28.281Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 331ms - Rows affected: 74 - RequestID: dt3tpsc208l +2025-06-18T14:59:28.381Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 384ms - Rows affected: 46 - RequestID: ckpf1i2a7 +2025-06-18T14:59:28.481Z [DEBUG] auth-service - PUT /api/v1/users - Status: 502 - Response time: 1870ms - IP: 192.168.10.184 - User: user_1059 - RequestID: pfyvcggkfll +2025-06-18T14:59:28.581Z [DEBUG] user-service - Operation: cache_hit - Processing time: 488ms - RequestID: u8j6tbq0fic +2025-06-18T14:59:28.681Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1013 - IP: 192.168.30.79 - RequestID: ppaam9jzyj +2025-06-18T14:59:28.781Z [INFO] user-service - Database INSERT on users - Execution time: 363ms - Rows affected: 81 - RequestID: dmsswazzaha +2025-06-18T14:59:28.881Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 315ms - Rows affected: 42 - RequestID: xudfb1b1jbp +2025-06-18T14:59:28.981Z [TRACE] auth-service - Auth event: password_change - User: user_1056 - IP: 192.168.229.123 - RequestID: 357hvap5e45 +2025-06-18T14:59:29.081Z [DEBUG] user-service - Operation: email_sent - Processing time: 831ms - RequestID: dajs39z3sb +2025-06-18T14:59:29.181Z [TRACE] user-service - Database DELETE on products - Execution time: 208ms - Rows affected: 94 - RequestID: 9tkbevgc2ck +2025-06-18T14:59:29.281Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 419ms - Rows affected: 67 - RequestID: 8i1wtb2yiax +2025-06-18T14:59:29.381Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 503 - Response time: 63ms - IP: 192.168.79.143 - User: user_1004 - RequestID: 4p26rau57jo +2025-06-18T14:59:29.481Z [TRACE] notification-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.229.123 - RequestID: 23klo3uw3z2 +2025-06-18T14:59:29.581Z [TRACE] user-service - Operation: cache_hit - Processing time: 757ms - RequestID: 44ea33p3qa +2025-06-18T14:59:29.681Z [DEBUG] order-service - Operation: email_sent - Processing time: 806ms - RequestID: rjwpbruzpt +2025-06-18T14:59:29.781Z [TRACE] notification-service - Auth event: password_change - User: user_1073 - IP: 192.168.113.218 - RequestID: iel5wg80ikq +2025-06-18T14:59:29.881Z [TRACE] auth-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.196.226 - RequestID: 5o1kt09hqns +2025-06-18T14:59:29.981Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 62ms - Rows affected: 52 - RequestID: w3xf08szea +2025-06-18T14:59:30.081Z [TRACE] user-service - GET /api/v1/payments - Status: 403 - Response time: 1154ms - IP: 192.168.158.144 - User: user_1059 - RequestID: npd4v3pwiri +2025-06-18T14:59:30.181Z [TRACE] auth-service - GET /api/v1/users - Status: 403 - Response time: 1379ms - IP: 192.168.147.171 - User: user_1036 - RequestID: kto29g2a5r +2025-06-18T14:59:30.281Z [INFO] auth-service - Database UPDATE on payments - Execution time: 29ms - Rows affected: 94 - RequestID: s5397pupdtf +2025-06-18T14:59:30.381Z [TRACE] order-service - Auth event: logout - User: user_1009 - IP: 192.168.79.116 - RequestID: c1e6sqfzf2t +2025-06-18T14:59:30.481Z [TRACE] inventory-service - PUT /api/v1/users - Status: 503 - Response time: 306ms - IP: 192.168.79.143 - User: user_1019 - RequestID: bea74ma463 +2025-06-18T14:59:30.581Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 111ms - IP: 192.168.64.33 - User: user_1057 - RequestID: lt5pd81woz +2025-06-18T14:59:30.681Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1476ms - IP: 192.168.14.77 - User: user_1067 - RequestID: 9rurrd2scd +2025-06-18T14:59:30.781Z [INFO] auth-service - GET /api/v1/orders - Status: 500 - Response time: 1100ms - IP: 192.168.158.144 - User: user_1090 - RequestID: uj68su9evyi +2025-06-18T14:59:30.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1021 - IP: 192.168.46.63 - RequestID: s2b8qdz29m +2025-06-18T14:59:30.981Z [TRACE] order-service - Auth event: password_change - User: user_1023 - IP: 192.168.170.215 - RequestID: a7jnnvrbunc +2025-06-18T14:59:31.081Z [INFO] notification-service - Operation: inventory_updated - Processing time: 313ms - RequestID: xvw7t5p6xv +2025-06-18T14:59:31.181Z [INFO] auth-service - Operation: webhook_sent - Processing time: 299ms - RequestID: 8huwkjrajxs +2025-06-18T14:59:31.281Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 127ms - Rows affected: 44 - RequestID: vsj3zqe597 +2025-06-18T14:59:31.381Z [DEBUG] user-service - Auth event: login_success - User: user_1026 - IP: 192.168.240.169 - RequestID: 7h7vqa1c6mi +2025-06-18T14:59:31.481Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 16ms - IP: 192.168.187.199 - User: user_1075 - RequestID: eslqisy32ql +2025-06-18T14:59:31.581Z [INFO] auth-service - Database SELECT on sessions - Execution time: 460ms - Rows affected: 72 - RequestID: o3c2d4u96z +2025-06-18T14:59:31.681Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 563ms - IP: 192.168.141.100 - User: user_1082 - RequestID: vxge2a64ze +2025-06-18T14:59:31.781Z [TRACE] order-service - Database SELECT on orders - Execution time: 325ms - Rows affected: 44 - RequestID: kebrqzja6cb +2025-06-18T14:59:31.881Z [INFO] inventory-service - GET /api/v1/inventory - Status: 200 - Response time: 1852ms - IP: 192.168.14.77 - User: user_1005 - RequestID: u7i13ovdnon +2025-06-18T14:59:31.981Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 1003ms - RequestID: 0xm6u5geyy7 +2025-06-18T14:59:32.081Z [INFO] user-service - Database INSERT on orders - Execution time: 11ms - Rows affected: 45 - RequestID: tw8vbtuxb7 +2025-06-18T14:59:32.181Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 502 - Response time: 1667ms - IP: 192.168.211.72 - User: user_1089 - RequestID: fr0ueczklu5 +2025-06-18T14:59:32.281Z [DEBUG] inventory-service - Operation: order_created - Processing time: 231ms - RequestID: gjl799lym6 +2025-06-18T14:59:32.381Z [INFO] user-service - Operation: notification_queued - Processing time: 866ms - RequestID: klafvrjocek +2025-06-18T14:59:32.481Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1961ms - IP: 192.168.53.133 - User: user_1038 - RequestID: 436g66tqrao +2025-06-18T14:59:32.581Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 200 - Response time: 648ms - IP: 192.168.100.240 - User: user_1015 - RequestID: oscpbgk4pls +2025-06-18T14:59:32.681Z [INFO] auth-service - Auth event: password_change - User: user_1093 - IP: 192.168.141.100 - RequestID: pa2l6hksoyk +2025-06-18T14:59:32.781Z [INFO] auth-service - Operation: email_sent - Processing time: 928ms - RequestID: 0p293lr1x4ee +2025-06-18T14:59:32.881Z [INFO] notification-service - PATCH /api/v1/orders - Status: 201 - Response time: 377ms - IP: 192.168.170.215 - User: user_1007 - RequestID: evguwh2t6iq +2025-06-18T14:59:32.981Z [INFO] user-service - Auth event: login_failed - User: user_1060 - IP: 192.168.79.141 - RequestID: 4peqorkbd09 +2025-06-18T14:59:33.081Z [INFO] order-service - PUT /api/v1/orders - Status: 401 - Response time: 1044ms - IP: 192.168.81.206 - User: user_1045 - RequestID: 4l4ycd0q6p8 +2025-06-18T14:59:33.181Z [DEBUG] payment-service - GET /api/v1/orders - Status: 400 - Response time: 902ms - IP: 192.168.32.38 - User: user_1099 - RequestID: pmfcgiw0ia +2025-06-18T14:59:33.281Z [TRACE] user-service - Auth event: login_failed - User: user_1033 - IP: 192.168.97.87 - RequestID: o2a1obxc5xc +2025-06-18T14:59:33.381Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.141.100 - RequestID: 45lcferynby +2025-06-18T14:59:33.481Z [TRACE] order-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.53.133 - RequestID: 5ba8uxepawt +2025-06-18T14:59:33.581Z [INFO] order-service - Operation: inventory_updated - Processing time: 246ms - RequestID: 732sd7uycrb +2025-06-18T14:59:33.681Z [INFO] auth-service - Auth event: login_success - User: user_1099 - IP: 192.168.158.144 - RequestID: qxceb0jqyu +2025-06-18T14:59:33.781Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1284ms - IP: 192.168.240.169 - User: user_1033 - RequestID: 4h1sjsx7ezz +2025-06-18T14:59:33.881Z [INFO] payment-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.104.37 - RequestID: 6cdftl6s02k +2025-06-18T14:59:33.981Z [INFO] user-service - Operation: cache_miss - Processing time: 710ms - RequestID: 07jb1km6lg7o +2025-06-18T14:59:34.081Z [INFO] order-service - Database UPDATE on payments - Execution time: 411ms - Rows affected: 35 - RequestID: eg40ga39eoc +2025-06-18T14:59:34.181Z [INFO] user-service - GET /api/v1/orders - Status: 201 - Response time: 542ms - IP: 192.168.181.225 - User: user_1013 - RequestID: xq2o1njx99 +2025-06-18T14:59:34.281Z [TRACE] payment-service - POST /api/v1/users - Status: 400 - Response time: 1298ms - IP: 192.168.174.114 - User: user_1051 - RequestID: r2lwa2a2yji +2025-06-18T14:59:34.381Z [DEBUG] auth-service - GET /api/v1/users - Status: 500 - Response time: 1236ms - IP: 192.168.159.94 - User: user_1064 - RequestID: h925n55r9ju +2025-06-18T14:59:34.481Z [INFO] user-service - Database SELECT on orders - Execution time: 134ms - Rows affected: 33 - RequestID: q2f92njsw5q +2025-06-18T14:59:34.581Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 503 - Response time: 838ms - IP: 192.168.194.41 - User: user_1063 - RequestID: foqg9z1gso +2025-06-18T14:59:34.681Z [DEBUG] order-service - Operation: order_created - Processing time: 430ms - RequestID: 4w26s4hg035 +2025-06-18T14:59:34.781Z [DEBUG] payment-service - Auth event: logout - User: user_1001 - IP: 192.168.174.114 - RequestID: gdfmp7k67x +2025-06-18T14:59:34.881Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 1031ms - RequestID: x3z3ikdv9ai +2025-06-18T14:59:34.981Z [INFO] order-service - Auth event: logout - User: user_1098 - IP: 192.168.79.143 - RequestID: k8flkzmci0l +2025-06-18T14:59:35.081Z [DEBUG] user-service - Operation: payment_processed - Processing time: 231ms - RequestID: lqj31rbjb6 +2025-06-18T14:59:35.181Z [DEBUG] user-service - PUT /api/v1/orders - Status: 400 - Response time: 992ms - IP: 192.168.81.206 - User: user_1060 - RequestID: 5rkckvyt022 +2025-06-18T14:59:35.281Z [DEBUG] notification-service - GET /api/v1/payments - Status: 404 - Response time: 42ms - IP: 192.168.1.152 - User: user_1002 - RequestID: sv52nr3oyxb +2025-06-18T14:59:35.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 607ms - RequestID: 19lztrb23a2 +2025-06-18T14:59:35.481Z [TRACE] user-service - PATCH /api/v1/orders - Status: 500 - Response time: 694ms - IP: 192.168.170.215 - User: user_1029 - RequestID: 9rppvt4qy5k +2025-06-18T14:59:35.581Z [DEBUG] user-service - GET /api/v1/payments - Status: 400 - Response time: 579ms - IP: 192.168.247.134 - User: user_1009 - RequestID: tcqb5etq0as +2025-06-18T14:59:35.681Z [INFO] order-service - Operation: cache_hit - Processing time: 196ms - RequestID: 1mrmnf2e934 +2025-06-18T14:59:35.781Z [INFO] auth-service - Database SELECT on users - Execution time: 151ms - Rows affected: 66 - RequestID: k8u6a0gaehn +2025-06-18T14:59:35.881Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 500ms - Rows affected: 74 - RequestID: zb2pp75a0jl +2025-06-18T14:59:35.981Z [INFO] inventory-service - Auth event: logout - User: user_1008 - IP: 192.168.64.33 - RequestID: 6vdoe8bsfc +2025-06-18T14:59:36.081Z [DEBUG] user-service - Database DELETE on payments - Execution time: 70ms - Rows affected: 13 - RequestID: 9yx5id3xls9 +2025-06-18T14:59:36.181Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 106ms - Rows affected: 56 - RequestID: ruv1m2ojru +2025-06-18T14:59:36.281Z [INFO] notification-service - Database DELETE on sessions - Execution time: 205ms - Rows affected: 48 - RequestID: onvibuhry1 +2025-06-18T14:59:36.381Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 899ms - RequestID: z7ud5fd8iw +2025-06-18T14:59:36.481Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 183ms - Rows affected: 90 - RequestID: 3ztk4nlqghy +2025-06-18T14:59:36.581Z [INFO] notification-service - Auth event: password_change - User: user_1061 - IP: 192.168.181.225 - RequestID: ywksn1yzq7f +2025-06-18T14:59:36.681Z [INFO] auth-service - Database INSERT on users - Execution time: 499ms - Rows affected: 62 - RequestID: t6emja9crl +2025-06-18T14:59:36.781Z [TRACE] order-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.53.133 - RequestID: doq7h32m9i7 +2025-06-18T14:59:36.881Z [INFO] payment-service - Operation: email_sent - Processing time: 749ms - RequestID: 4hrqw3ssgpp +2025-06-18T14:59:36.981Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 498ms - Rows affected: 76 - RequestID: ho8w9mgzesv +2025-06-18T14:59:37.081Z [DEBUG] payment-service - Database DELETE on products - Execution time: 359ms - Rows affected: 52 - RequestID: 87tbyqojpj5 +2025-06-18T14:59:37.181Z [TRACE] order-service - PUT /api/v1/orders - Status: 403 - Response time: 1951ms - IP: 192.168.28.146 - User: user_1010 - RequestID: bdrk1xvl8cj +2025-06-18T14:59:37.281Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1968ms - IP: 192.168.189.103 - User: user_1071 - RequestID: 9bws5y6rwt9 +2025-06-18T14:59:37.381Z [TRACE] inventory-service - Database INSERT on users - Execution time: 55ms - Rows affected: 11 - RequestID: e8cak86spn +2025-06-18T14:59:37.481Z [TRACE] notification-service - PUT /api/v1/payments - Status: 401 - Response time: 170ms - IP: 192.168.79.143 - User: user_1088 - RequestID: tfux0bitaz +2025-06-18T14:59:37.581Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 664ms - RequestID: 9o4pbkwg2sp +2025-06-18T14:59:37.681Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 200 - Response time: 1159ms - IP: 192.168.79.143 - User: user_1069 - RequestID: q4cjclgf6ck +2025-06-18T14:59:37.781Z [TRACE] inventory-service - Auth event: login_failed - User: user_1054 - IP: 192.168.232.72 - RequestID: afbibcqqum8 +2025-06-18T14:59:37.881Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 400 - Response time: 718ms - IP: 192.168.229.123 - User: user_1066 - RequestID: 187o9psz3c6 +2025-06-18T14:59:37.981Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 480ms - Rows affected: 38 - RequestID: 8n9x9okuj9h +2025-06-18T14:59:38.081Z [INFO] order-service - Auth event: login_failed - User: user_1032 - IP: 192.168.64.33 - RequestID: o4ceq42meor +2025-06-18T14:59:38.181Z [TRACE] user-service - Operation: webhook_sent - Processing time: 61ms - RequestID: 6i0eyqgug4b +2025-06-18T14:59:38.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 282ms - RequestID: 370mrue94bo +2025-06-18T14:59:38.381Z [INFO] notification-service - GET /api/v1/orders - Status: 500 - Response time: 1744ms - IP: 192.168.79.143 - User: user_1042 - RequestID: hqq8eej9sc +2025-06-18T14:59:38.481Z [TRACE] inventory-service - Database INSERT on products - Execution time: 255ms - Rows affected: 14 - RequestID: fw036gn2s54 +2025-06-18T14:59:38.581Z [TRACE] user-service - PATCH /api/v1/users - Status: 500 - Response time: 1191ms - IP: 192.168.79.143 - User: user_1093 - RequestID: mh1375kseji +2025-06-18T14:59:38.681Z [INFO] notification-service - POST /api/v1/inventory - Status: 404 - Response time: 1822ms - IP: 192.168.44.5 - User: user_1042 - RequestID: bt9grow266q +2025-06-18T14:59:38.781Z [INFO] user-service - Operation: email_sent - Processing time: 889ms - RequestID: biqefzni87 +2025-06-18T14:59:38.881Z [INFO] notification-service - Auth event: login_failed - User: user_1090 - IP: 192.168.229.123 - RequestID: z1bwsxm9rx +2025-06-18T14:59:38.981Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1788ms - IP: 192.168.227.77 - User: user_1043 - RequestID: 6j8yiov2sui +2025-06-18T14:59:39.081Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 426ms - Rows affected: 60 - RequestID: y4ysq8lhc48 +2025-06-18T14:59:39.181Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 401 - Response time: 1713ms - IP: 192.168.194.41 - User: user_1057 - RequestID: kaa5qk2mgsr +2025-06-18T14:59:39.281Z [INFO] inventory-service - Operation: email_sent - Processing time: 942ms - RequestID: t6kwbt4bnqh +2025-06-18T14:59:39.381Z [INFO] order-service - Auth event: password_change - User: user_1050 - IP: 192.168.79.116 - RequestID: 1h7rxwi093k +2025-06-18T14:59:39.481Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 216ms - Rows affected: 64 - RequestID: 2f0c13t47m1 +2025-06-18T14:59:39.581Z [TRACE] order-service - Auth event: password_change - User: user_1091 - IP: 192.168.229.123 - RequestID: fs13qkovr1 +2025-06-18T14:59:39.681Z [INFO] inventory-service - PUT /api/v1/users - Status: 200 - Response time: 1421ms - IP: 192.168.79.141 - User: user_1012 - RequestID: fasy2bbmruo +2025-06-18T14:59:39.781Z [INFO] notification-service - PUT /api/v1/orders - Status: 503 - Response time: 62ms - IP: 192.168.147.171 - User: user_1061 - RequestID: d9cyplo6li8 +2025-06-18T14:59:39.881Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 929ms - RequestID: wpvd377n31r +2025-06-18T14:59:39.981Z [TRACE] auth-service - Operation: cache_miss - Processing time: 975ms - RequestID: e14px7a6vb +2025-06-18T14:59:40.081Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 293ms - Rows affected: 64 - RequestID: 1aupfjfl042 +2025-06-18T14:59:40.181Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1828ms - IP: 192.168.144.38 - User: user_1069 - RequestID: j4tjf0tjap +2025-06-18T14:59:40.281Z [TRACE] notification-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.167.32 - RequestID: qh5bypah7sf +2025-06-18T14:59:40.381Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1220ms - IP: 192.168.227.233 - User: user_1089 - RequestID: 32ahisdzhzw +2025-06-18T14:59:40.481Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 166ms - Rows affected: 31 - RequestID: kz23331xr9d +2025-06-18T14:59:40.581Z [INFO] order-service - Operation: notification_queued - Processing time: 185ms - RequestID: 3lzq6scmvm5 +2025-06-18T14:59:40.681Z [INFO] notification-service - Operation: order_created - Processing time: 783ms - RequestID: ryyfwweh52 +2025-06-18T14:59:40.781Z [TRACE] user-service - Operation: payment_processed - Processing time: 874ms - RequestID: 3kdfyys89xt +2025-06-18T14:59:40.881Z [INFO] order-service - Auth event: login_success - User: user_1002 - IP: 192.168.32.38 - RequestID: 9blhi3gwjfq +2025-06-18T14:59:40.981Z [DEBUG] notification-service - Database INSERT on products - Execution time: 68ms - Rows affected: 8 - RequestID: rfpjf1m19n9 +2025-06-18T14:59:41.081Z [DEBUG] order-service - DELETE /api/v1/users - Status: 503 - Response time: 996ms - IP: 192.168.138.123 - User: user_1076 - RequestID: s8ddvvvh1vb +2025-06-18T14:59:41.181Z [INFO] order-service - Database INSERT on users - Execution time: 41ms - Rows affected: 24 - RequestID: rcotss9syib +2025-06-18T14:59:41.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.104.37 - RequestID: akyzh6xfuci +2025-06-18T14:59:41.381Z [DEBUG] user-service - Operation: email_sent - Processing time: 818ms - RequestID: ymotfav8jti +2025-06-18T14:59:41.481Z [DEBUG] auth-service - Operation: order_created - Processing time: 265ms - RequestID: 3jpuexyn66q +2025-06-18T14:59:41.581Z [INFO] user-service - Database SELECT on products - Execution time: 289ms - Rows affected: 43 - RequestID: ac40juqg7lp +2025-06-18T14:59:41.681Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 404 - Response time: 1809ms - IP: 192.168.235.117 - User: user_1020 - RequestID: 37y2umrf39p +2025-06-18T14:59:41.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.147.171 - RequestID: epllrrdd5hl +2025-06-18T14:59:41.881Z [TRACE] auth-service - PATCH /api/v1/users - Status: 400 - Response time: 1901ms - IP: 192.168.167.32 - User: user_1038 - RequestID: j1x74htrmgh +2025-06-18T14:59:41.981Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 173ms - Rows affected: 5 - RequestID: r6oqda7hht +2025-06-18T14:59:42.081Z [TRACE] user-service - Operation: payment_processed - Processing time: 302ms - RequestID: 3bq6x0ihdyk +2025-06-18T14:59:42.181Z [INFO] auth-service - Operation: inventory_updated - Processing time: 968ms - RequestID: cz3nfz3wi9p +2025-06-18T14:59:42.281Z [TRACE] payment-service - Auth event: login_failed - User: user_1049 - IP: 192.168.53.133 - RequestID: 0oy1fdin9ee +2025-06-18T14:59:42.381Z [TRACE] notification-service - GET /api/v1/payments - Status: 403 - Response time: 1343ms - IP: 192.168.187.199 - User: user_1065 - RequestID: mcgg8mt524j +2025-06-18T14:59:42.481Z [INFO] notification-service - Operation: inventory_updated - Processing time: 850ms - RequestID: v8oless75b9 +2025-06-18T14:59:42.581Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 502 - Response time: 353ms - IP: 192.168.158.144 - User: user_1079 - RequestID: japv3uhnme8 +2025-06-18T14:59:42.681Z [INFO] notification-service - POST /api/v1/payments - Status: 404 - Response time: 1844ms - IP: 192.168.227.233 - User: user_1047 - RequestID: yrwj5p43ybh +2025-06-18T14:59:42.781Z [INFO] inventory-service - PATCH /api/v1/users - Status: 500 - Response time: 757ms - IP: 192.168.187.199 - User: user_1008 - RequestID: kw8tu4655t +2025-06-18T14:59:42.881Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 24ms - Rows affected: 31 - RequestID: 9stnj9tnsr +2025-06-18T14:59:42.981Z [INFO] order-service - Operation: inventory_updated - Processing time: 874ms - RequestID: fa8oizrd5g +2025-06-18T14:59:43.081Z [INFO] user-service - Auth event: logout - User: user_1099 - IP: 192.168.79.116 - RequestID: 3mhffg5hsjc +2025-06-18T14:59:43.181Z [INFO] payment-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.10.184 - RequestID: smd1gr5wlac +2025-06-18T14:59:43.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.1.152 - RequestID: nglm6h602bg +2025-06-18T14:59:43.381Z [DEBUG] notification-service - POST /api/v1/payments - Status: 403 - Response time: 692ms - IP: 192.168.104.37 - User: user_1093 - RequestID: 3y1lqrsxsx +2025-06-18T14:59:43.481Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 200 - Response time: 78ms - IP: 192.168.31.117 - User: user_1047 - RequestID: pzfnh44yadi +2025-06-18T14:59:43.581Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 404 - Response time: 688ms - IP: 192.168.79.143 - User: user_1047 - RequestID: e3erne9q8ir +2025-06-18T14:59:43.681Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 351ms - Rows affected: 98 - RequestID: zhle3ey1i1p +2025-06-18T14:59:43.781Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 317ms - Rows affected: 56 - RequestID: 0rb44h2xe3m +2025-06-18T14:59:43.881Z [DEBUG] auth-service - Database SELECT on products - Execution time: 268ms - Rows affected: 52 - RequestID: sqwl2vw74d +2025-06-18T14:59:43.981Z [TRACE] payment-service - Auth event: login_success - User: user_1058 - IP: 192.168.46.63 - RequestID: m3jr55mwm3 +2025-06-18T14:59:44.081Z [TRACE] inventory-service - Auth event: login_success - User: user_1060 - IP: 192.168.159.94 - RequestID: vpc58qpo4rg +2025-06-18T14:59:44.181Z [INFO] user-service - Database UPDATE on orders - Execution time: 265ms - Rows affected: 25 - RequestID: fjisacjkwr8 +2025-06-18T14:59:44.281Z [INFO] inventory-service - Auth event: password_change - User: user_1020 - IP: 192.168.79.143 - RequestID: xd7ubobs4l +2025-06-18T14:59:44.381Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 404 - Response time: 843ms - IP: 192.168.14.77 - User: user_1063 - RequestID: f3t9h149czc +2025-06-18T14:59:44.481Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1526ms - IP: 192.168.1.152 - User: user_1058 - RequestID: xv0co9k4kws +2025-06-18T14:59:44.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 787ms - RequestID: agv285c7zuw +2025-06-18T14:59:44.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 891ms - RequestID: g0cnvo9sq4 +2025-06-18T14:59:44.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 373ms - RequestID: l0ozqxo3by9 +2025-06-18T14:59:44.881Z [INFO] auth-service - Database SELECT on sessions - Execution time: 289ms - Rows affected: 29 - RequestID: 28h09kof6ak +2025-06-18T14:59:44.981Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 480ms - Rows affected: 80 - RequestID: woea7v7r17 +2025-06-18T14:59:45.081Z [INFO] payment-service - Database SELECT on payments - Execution time: 443ms - Rows affected: 86 - RequestID: 7od513zrz53 +2025-06-18T14:59:45.181Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1468ms - IP: 192.168.44.5 - User: user_1065 - RequestID: uc030u7xkw +2025-06-18T14:59:45.281Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 256ms - Rows affected: 11 - RequestID: bd6n6pr2e5j +2025-06-18T14:59:45.381Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 594ms - RequestID: 3b5m0ffglgq +2025-06-18T14:59:45.481Z [DEBUG] user-service - Auth event: password_change - User: user_1008 - IP: 192.168.97.87 - RequestID: 0tfjo3k2ph3 +2025-06-18T14:59:45.581Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1528ms - IP: 192.168.97.87 - User: user_1029 - RequestID: j2hyfohfwv +2025-06-18T14:59:45.681Z [INFO] auth-service - Database DELETE on orders - Execution time: 106ms - Rows affected: 97 - RequestID: fqfc1fk6sf8 +2025-06-18T14:59:45.781Z [INFO] payment-service - Auth event: login_failed - User: user_1061 - IP: 192.168.133.7 - RequestID: ust1q41veve +2025-06-18T14:59:45.881Z [INFO] user-service - GET /api/v1/auth/login - Status: 502 - Response time: 786ms - IP: 192.168.229.123 - User: user_1005 - RequestID: rylnc99c1cs +2025-06-18T14:59:45.981Z [DEBUG] payment-service - Database SELECT on users - Execution time: 264ms - Rows affected: 13 - RequestID: qwxpfchwfap +2025-06-18T14:59:46.081Z [INFO] payment-service - PATCH /api/v1/users - Status: 502 - Response time: 1590ms - IP: 192.168.68.128 - User: user_1053 - RequestID: 9dkmo7dzkbt +2025-06-18T14:59:46.181Z [TRACE] payment-service - PUT /api/v1/users - Status: 201 - Response time: 709ms - IP: 192.168.147.171 - User: user_1018 - RequestID: ibfsupanq0b +2025-06-18T14:59:46.281Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 80ms - Rows affected: 74 - RequestID: sfmilr6xet9 +2025-06-18T14:59:46.381Z [INFO] user-service - Operation: inventory_updated - Processing time: 740ms - RequestID: wa2xcy1i0y +2025-06-18T14:59:46.481Z [DEBUG] user-service - Database SELECT on products - Execution time: 204ms - Rows affected: 95 - RequestID: zq8ahsia39 +2025-06-18T14:59:46.581Z [DEBUG] order-service - Database INSERT on users - Execution time: 283ms - Rows affected: 84 - RequestID: yan444egron +2025-06-18T14:59:46.681Z [TRACE] payment-service - Auth event: password_change - User: user_1069 - IP: 192.168.46.63 - RequestID: n4klljnejtq +2025-06-18T14:59:46.781Z [TRACE] payment-service - Operation: notification_queued - Processing time: 710ms - RequestID: d87a9gnl02o +2025-06-18T14:59:46.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1001 - IP: 192.168.31.117 - RequestID: v62sb33wlao +2025-06-18T14:59:46.981Z [INFO] auth-service - Operation: cache_miss - Processing time: 729ms - RequestID: wh1frvempb +2025-06-18T14:59:47.081Z [TRACE] auth-service - Auth event: logout - User: user_1094 - IP: 192.168.247.134 - RequestID: g6edfhtfhi +2025-06-18T14:59:47.181Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1200ms - IP: 192.168.194.41 - User: user_1089 - RequestID: 2y8j1dn16nq +2025-06-18T14:59:47.281Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 28ms - IP: 192.168.100.240 - User: user_1070 - RequestID: 36csthvhue8 +2025-06-18T14:59:47.381Z [TRACE] payment-service - Operation: cache_miss - Processing time: 846ms - RequestID: rriqvtkmz9 +2025-06-18T14:59:47.481Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1501ms - IP: 192.168.181.225 - User: user_1012 - RequestID: psuwy8alvrg +2025-06-18T14:59:47.581Z [DEBUG] order-service - GET /api/v1/payments - Status: 201 - Response time: 213ms - IP: 192.168.44.5 - User: user_1013 - RequestID: 8kuc0fvce1o +2025-06-18T14:59:47.681Z [INFO] notification-service - Database INSERT on sessions - Execution time: 442ms - Rows affected: 94 - RequestID: s4zi4h0mv9 +2025-06-18T14:59:47.781Z [DEBUG] user-service - DELETE /api/v1/users - Status: 400 - Response time: 1316ms - IP: 192.168.187.199 - User: user_1073 - RequestID: etg3qkiv85e +2025-06-18T14:59:47.881Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1381ms - IP: 192.168.138.123 - User: user_1032 - RequestID: pj0conccpzp +2025-06-18T14:59:47.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.30.79 - RequestID: cbl5rke4o7 +2025-06-18T14:59:48.081Z [INFO] payment-service - Auth event: logout - User: user_1070 - IP: 192.168.11.60 - RequestID: 5qdcqx7ctzw +2025-06-18T14:59:48.181Z [INFO] notification-service - Operation: email_sent - Processing time: 603ms - RequestID: 6utcju3txdi +2025-06-18T14:59:48.281Z [TRACE] user-service - Operation: email_sent - Processing time: 1009ms - RequestID: ssld1mrmt7n +2025-06-18T14:59:48.381Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 690ms - IP: 192.168.46.63 - User: user_1079 - RequestID: sn32hgbrk7 +2025-06-18T14:59:48.481Z [INFO] user-service - POST /api/v1/payments - Status: 404 - Response time: 656ms - IP: 192.168.79.116 - User: user_1063 - RequestID: 39avvgq45ae +2025-06-18T14:59:48.581Z [INFO] notification-service - Operation: payment_processed - Processing time: 888ms - RequestID: 1rtwn0u6ub6 +2025-06-18T14:59:48.681Z [INFO] notification-service - Database DELETE on orders - Execution time: 32ms - Rows affected: 45 - RequestID: jj17ogrfnoh +2025-06-18T14:59:48.781Z [INFO] order-service - Operation: notification_queued - Processing time: 396ms - RequestID: rd97semkxco +2025-06-18T14:59:48.881Z [INFO] order-service - Operation: cache_hit - Processing time: 308ms - RequestID: j8862ufhbg +2025-06-18T14:59:48.981Z [INFO] auth-service - GET /api/v1/orders - Status: 502 - Response time: 149ms - IP: 192.168.79.116 - User: user_1015 - RequestID: 2rz0ro3v6a1 +2025-06-18T14:59:49.081Z [TRACE] notification-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.138.123 - RequestID: n188vxlx94 +2025-06-18T14:59:49.181Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 1008ms - RequestID: 2eo33uukhpv +2025-06-18T14:59:49.281Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 82ms - Rows affected: 56 - RequestID: y68v03gljog +2025-06-18T14:59:49.381Z [INFO] auth-service - Operation: webhook_sent - Processing time: 815ms - RequestID: cg9uqzz1lg4 +2025-06-18T14:59:49.481Z [INFO] user-service - DELETE /api/v1/orders - Status: 500 - Response time: 955ms - IP: 192.168.147.171 - User: user_1045 - RequestID: uedjfffo5oh +2025-06-18T14:59:49.581Z [INFO] user-service - Database INSERT on sessions - Execution time: 498ms - Rows affected: 39 - RequestID: fjdc2t3qx5a +2025-06-18T14:59:49.681Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1843ms - IP: 192.168.64.33 - User: user_1065 - RequestID: lbjmzhtf6jf +2025-06-18T14:59:49.781Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 65ms - RequestID: ndonx7afw +2025-06-18T14:59:49.881Z [INFO] payment-service - Auth event: login_success - User: user_1049 - IP: 192.168.64.33 - RequestID: qtaqsgufgb +2025-06-18T14:59:49.981Z [INFO] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 773ms - IP: 192.168.227.77 - User: user_1047 - RequestID: 0om7nv4or41 +2025-06-18T14:59:50.081Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 246ms - Rows affected: 22 - RequestID: zqo37rifczc +2025-06-18T14:59:50.181Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 351ms - Rows affected: 61 - RequestID: yvgwrwra5wi +2025-06-18T14:59:50.281Z [INFO] order-service - Database SELECT on orders - Execution time: 487ms - Rows affected: 23 - RequestID: 7vz0ldeyy9u +2025-06-18T14:59:50.381Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 90ms - RequestID: wrtmwcpjo2 +2025-06-18T14:59:50.481Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 79ms - RequestID: 08xiztybybk +2025-06-18T14:59:50.581Z [INFO] auth-service - Operation: email_sent - Processing time: 300ms - RequestID: rujgn1zwq5 +2025-06-18T14:59:50.681Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 200 - Response time: 1200ms - IP: 192.168.189.103 - User: user_1072 - RequestID: 66b01czb8c4 +2025-06-18T14:59:50.781Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1706ms - IP: 192.168.174.114 - User: user_1031 - RequestID: p3z11cfocqi +2025-06-18T14:59:50.881Z [INFO] auth-service - Database DELETE on products - Execution time: 192ms - Rows affected: 88 - RequestID: 39qgx4gyf9g +2025-06-18T14:59:50.981Z [INFO] auth-service - POST /api/v1/payments - Status: 400 - Response time: 659ms - IP: 192.168.14.77 - User: user_1070 - RequestID: f4d1llxba6a +2025-06-18T14:59:51.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.104.37 - RequestID: afvvrgh4bmh +2025-06-18T14:59:51.181Z [TRACE] payment-service - Database UPDATE on products - Execution time: 244ms - Rows affected: 90 - RequestID: kf99czxiaw +2025-06-18T14:59:51.281Z [TRACE] payment-service - Auth event: login_success - User: user_1064 - IP: 192.168.174.114 - RequestID: iw2kx2qu7fp +2025-06-18T14:59:51.381Z [DEBUG] notification-service - Auth event: login_success - User: user_1035 - IP: 192.168.68.158 - RequestID: vpjgyfrlicc +2025-06-18T14:59:51.481Z [TRACE] order-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.79.116 - RequestID: u0brnufdlzj +2025-06-18T14:59:51.581Z [INFO] auth-service - Auth event: login_success - User: user_1071 - IP: 192.168.10.184 - RequestID: up9mcxu28ti +2025-06-18T14:59:51.681Z [DEBUG] inventory-service - Auth event: logout - User: user_1039 - IP: 192.168.240.169 - RequestID: z3amv0mjwbd +2025-06-18T14:59:51.781Z [DEBUG] payment-service - Database DELETE on products - Execution time: 154ms - Rows affected: 34 - RequestID: s87c23qru8 +2025-06-18T14:59:51.881Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1924ms - IP: 192.168.170.215 - User: user_1025 - RequestID: dsdlfmscqwl +2025-06-18T14:59:51.981Z [TRACE] user-service - GET /api/v1/orders - Status: 500 - Response time: 884ms - IP: 192.168.30.79 - User: user_1060 - RequestID: rj734wq2jyg +2025-06-18T14:59:52.081Z [INFO] inventory-service - Database UPDATE on users - Execution time: 144ms - Rows affected: 65 - RequestID: b8l4qb8tybp +2025-06-18T14:59:52.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 926ms - RequestID: fh94ngrj7qq +2025-06-18T14:59:52.281Z [INFO] user-service - PATCH /api/v1/payments - Status: 400 - Response time: 416ms - IP: 192.168.81.206 - User: user_1099 - RequestID: upngi7640kg +2025-06-18T14:59:52.381Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 263ms - Rows affected: 64 - RequestID: nqq28adc0t +2025-06-18T14:59:52.481Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 344ms - Rows affected: 80 - RequestID: 2f8gvw03arq +2025-06-18T14:59:52.581Z [TRACE] user-service - Operation: email_sent - Processing time: 852ms - RequestID: busf71xphkq +2025-06-18T14:59:52.681Z [INFO] order-service - GET /api/v1/orders - Status: 401 - Response time: 884ms - IP: 192.168.30.79 - User: user_1034 - RequestID: huv3fb3if4a +2025-06-18T14:59:52.781Z [INFO] notification-service - GET /api/v1/payments - Status: 400 - Response time: 1362ms - IP: 192.168.30.79 - User: user_1067 - RequestID: d1kfwy6kb07 +2025-06-18T14:59:52.881Z [DEBUG] inventory-service - Auth event: password_change - User: user_1045 - IP: 192.168.68.128 - RequestID: h9zx1cattk +2025-06-18T14:59:52.981Z [TRACE] order-service - Auth event: logout - User: user_1009 - IP: 192.168.53.133 - RequestID: u5a4rxdko3m +2025-06-18T14:59:53.081Z [TRACE] order-service - Auth event: login_failed - User: user_1069 - IP: 192.168.1.152 - RequestID: gr3umbh3m87 +2025-06-18T14:59:53.181Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 194ms - Rows affected: 23 - RequestID: jeqldg157d9 +2025-06-18T14:59:53.281Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 101ms - Rows affected: 97 - RequestID: qcow9o7k1ae +2025-06-18T14:59:53.381Z [TRACE] order-service - Operation: notification_queued - Processing time: 943ms - RequestID: ds8usve19m +2025-06-18T14:59:53.481Z [TRACE] user-service - POST /api/v1/payments - Status: 401 - Response time: 1094ms - IP: 192.168.30.79 - User: user_1023 - RequestID: nl9nht37a4l +2025-06-18T14:59:53.581Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 500 - Response time: 930ms - IP: 192.168.68.158 - User: user_1001 - RequestID: om62epnh3uf +2025-06-18T14:59:53.681Z [TRACE] payment-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.79.143 - RequestID: zsplm66tb0f +2025-06-18T14:59:53.781Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.211.72 - RequestID: qxsgomvhdmp +2025-06-18T14:59:53.881Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 404 - Response time: 932ms - IP: 192.168.46.63 - User: user_1028 - RequestID: a6evittv7td +2025-06-18T14:59:53.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.133.7 - RequestID: c9b5w9un9zl +2025-06-18T14:59:54.081Z [INFO] payment-service - POST /api/v1/inventory - Status: 503 - Response time: 1060ms - IP: 192.168.147.171 - User: user_1021 - RequestID: g8osnsth8w +2025-06-18T14:59:54.181Z [DEBUG] order-service - Auth event: password_change - User: user_1023 - IP: 192.168.170.215 - RequestID: 8cbf0tenn86 +2025-06-18T14:59:54.281Z [DEBUG] auth-service - Operation: email_sent - Processing time: 865ms - RequestID: zk1oto1njm +2025-06-18T14:59:54.381Z [TRACE] inventory-service - Operation: order_created - Processing time: 711ms - RequestID: 350ivyflp9b +2025-06-18T14:59:54.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 812ms - RequestID: or0mmn4a1i +2025-06-18T14:59:54.581Z [INFO] auth-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.211.72 - RequestID: n89ebrogil +2025-06-18T14:59:54.681Z [TRACE] notification-service - Auth event: login_success - User: user_1080 - IP: 192.168.240.169 - RequestID: 0lu1c9fuetmo +2025-06-18T14:59:54.781Z [INFO] notification-service - Operation: order_created - Processing time: 394ms - RequestID: giefk74u6qr +2025-06-18T14:59:54.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1006 - IP: 192.168.174.114 - RequestID: ev5fq8vds0v +2025-06-18T14:59:54.981Z [INFO] auth-service - Auth event: login_success - User: user_1094 - IP: 192.168.242.165 - RequestID: vfd2wj3s42 +2025-06-18T14:59:55.081Z [DEBUG] order-service - Auth event: login_success - User: user_1038 - IP: 192.168.174.114 - RequestID: kjmj1c070i +2025-06-18T14:59:55.181Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 679ms - RequestID: kisp7it3qon +2025-06-18T14:59:55.281Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 196ms - Rows affected: 69 - RequestID: ero0jj3ltth +2025-06-18T14:59:55.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.44.5 - RequestID: l4zpaak4sf +2025-06-18T14:59:55.481Z [TRACE] payment-service - Database SELECT on orders - Execution time: 453ms - Rows affected: 9 - RequestID: 9gkiegpuxx +2025-06-18T14:59:55.581Z [TRACE] auth-service - GET /api/v1/users - Status: 404 - Response time: 952ms - IP: 192.168.138.123 - User: user_1085 - RequestID: idy2h7u9lal +2025-06-18T14:59:55.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 405ms - RequestID: kaljbir8wc8 +2025-06-18T14:59:55.781Z [TRACE] auth-service - GET /api/v1/orders - Status: 404 - Response time: 357ms - IP: 192.168.187.199 - User: user_1090 - RequestID: 87etdy2v6y6 +2025-06-18T14:59:55.881Z [INFO] notification-service - Operation: email_sent - Processing time: 1008ms - RequestID: 45drjmuaot2 +2025-06-18T14:59:55.981Z [TRACE] notification-service - Operation: email_sent - Processing time: 423ms - RequestID: zna1ddw5vkn +2025-06-18T14:59:56.081Z [TRACE] auth-service - Operation: notification_queued - Processing time: 1039ms - RequestID: j5nt1jj6m6h +2025-06-18T14:59:56.181Z [INFO] notification-service - Operation: inventory_updated - Processing time: 497ms - RequestID: qzbyb8yfnui +2025-06-18T14:59:56.281Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 295ms - Rows affected: 69 - RequestID: sqnu497zr2 +2025-06-18T14:59:56.381Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 373ms - Rows affected: 52 - RequestID: 565ieq3losx +2025-06-18T14:59:56.481Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 476ms - Rows affected: 29 - RequestID: tvjvc47i2 +2025-06-18T14:59:56.581Z [TRACE] auth-service - Database DELETE on users - Execution time: 241ms - Rows affected: 66 - RequestID: 62pg9ftmqpg +2025-06-18T14:59:56.681Z [INFO] inventory-service - Auth event: login_success - User: user_1008 - IP: 192.168.36.218 - RequestID: m5tb718ar1 +2025-06-18T14:59:56.781Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 58ms - Rows affected: 93 - RequestID: qefb0ecf3t +2025-06-18T14:59:56.881Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 915ms - RequestID: wxh74qgsiod +2025-06-18T14:59:56.981Z [INFO] notification-service - Operation: cache_hit - Processing time: 198ms - RequestID: 2bk14seow0q +2025-06-18T14:59:57.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1002 - IP: 192.168.53.133 - RequestID: 6rrwip6t3t +2025-06-18T14:59:57.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.227.77 - RequestID: h0eun11jsc +2025-06-18T14:59:57.281Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1582ms - IP: 192.168.13.72 - User: user_1064 - RequestID: a8e011g014k +2025-06-18T14:59:57.381Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 672ms - RequestID: zxmb2hzwmhd +2025-06-18T14:59:57.481Z [TRACE] order-service - Operation: order_created - Processing time: 678ms - RequestID: tcm2eck6wt +2025-06-18T14:59:57.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.14.77 - RequestID: kirsf9ug9us +2025-06-18T14:59:57.681Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 973ms - IP: 192.168.1.152 - User: user_1046 - RequestID: 3qn05c8p5xr +2025-06-18T14:59:57.781Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 453ms - Rows affected: 71 - RequestID: adgesakv5r6 +2025-06-18T14:59:57.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.133.7 - RequestID: al3d8pba43l +2025-06-18T14:59:57.981Z [DEBUG] user-service - Database UPDATE on users - Execution time: 316ms - Rows affected: 6 - RequestID: qztgr4i3mob +2025-06-18T14:59:58.081Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1085 - IP: 192.168.79.143 - RequestID: o9orzjd37zj +2025-06-18T14:59:58.181Z [INFO] notification-service - Operation: cache_hit - Processing time: 622ms - RequestID: kye2lofgb0i +2025-06-18T14:59:58.281Z [INFO] notification-service - GET /api/v1/inventory - Status: 503 - Response time: 1976ms - IP: 192.168.247.134 - User: user_1025 - RequestID: bncgqxbs29v +2025-06-18T14:59:58.381Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 1021ms - RequestID: hih43emcyob +2025-06-18T14:59:58.481Z [TRACE] notification-service - Operation: order_created - Processing time: 233ms - RequestID: nck9s952mkh +2025-06-18T14:59:58.581Z [DEBUG] auth-service - Database SELECT on products - Execution time: 30ms - Rows affected: 26 - RequestID: of8dyr7427 +2025-06-18T14:59:58.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1089 - IP: 192.168.138.123 - RequestID: 6km77ou6zmx +2025-06-18T14:59:58.781Z [INFO] notification-service - Database DELETE on sessions - Execution time: 151ms - Rows affected: 91 - RequestID: nnd84i1m8j +2025-06-18T14:59:58.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.64.33 - RequestID: xa6coekqp9 +2025-06-18T14:59:58.981Z [TRACE] auth-service - Operation: email_sent - Processing time: 96ms - RequestID: xmoypnow1so +2025-06-18T14:59:59.081Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 201ms - Rows affected: 23 - RequestID: m434tnpeyu +2025-06-18T14:59:59.181Z [INFO] user-service - Operation: email_sent - Processing time: 124ms - RequestID: ftvsexiefe6 +2025-06-18T14:59:59.281Z [INFO] auth-service - POST /api/v1/auth/login - Status: 500 - Response time: 332ms - IP: 192.168.181.225 - User: user_1091 - RequestID: iwtqqewgh3m +2025-06-18T14:59:59.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1054 - IP: 192.168.64.33 - RequestID: 2834dg5vdek +2025-06-18T14:59:59.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.196.226 - RequestID: guekth1pmib +2025-06-18T14:59:59.581Z [INFO] payment-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.158.144 - RequestID: 3z7nriimhjj +2025-06-18T14:59:59.681Z [INFO] auth-service - Operation: payment_processed - Processing time: 173ms - RequestID: conxexl0s2i +2025-06-18T14:59:59.781Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 503 - Response time: 794ms - IP: 192.168.144.38 - User: user_1075 - RequestID: ptdepeci5o +2025-06-18T14:59:59.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 506ms - RequestID: t9v0ayy8i8q +2025-06-18T14:59:59.981Z [TRACE] notification-service - Database UPDATE on products - Execution time: 178ms - Rows affected: 0 - RequestID: fzgufgjlycb +2025-06-18T15:00:00.081Z [INFO] inventory-service - Operation: cache_hit - Processing time: 288ms - RequestID: 0dm8aqg0hequ +2025-06-18T15:00:00.181Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 467ms - RequestID: 5h5tg62npy +2025-06-18T15:00:00.281Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 651ms - RequestID: 0ieyok8e055d +2025-06-18T15:00:00.381Z [INFO] order-service - POST /api/v1/users - Status: 201 - Response time: 1362ms - IP: 192.168.196.226 - User: user_1061 - RequestID: wodx6s8j91a +2025-06-18T15:00:00.481Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 401 - Response time: 1306ms - IP: 192.168.81.206 - User: user_1098 - RequestID: zxadi50qgyb +2025-06-18T15:00:00.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.79.141 - RequestID: b45uwu7rfvc +2025-06-18T15:00:00.681Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 404 - Response time: 839ms - IP: 192.168.141.100 - User: user_1031 - RequestID: fgj3b5a0u3k +2025-06-18T15:00:00.781Z [INFO] payment-service - Auth event: login_success - User: user_1011 - IP: 192.168.30.79 - RequestID: eg44j12qg7c +2025-06-18T15:00:00.881Z [DEBUG] user-service - Operation: cache_hit - Processing time: 200ms - RequestID: cxz4mwc8mo +2025-06-18T15:00:00.981Z [INFO] payment-service - PUT /api/v1/users - Status: 200 - Response time: 1334ms - IP: 192.168.36.218 - User: user_1008 - RequestID: 546fwv9xfeb +2025-06-18T15:00:01.081Z [TRACE] order-service - Operation: cache_hit - Processing time: 819ms - RequestID: 4sxdo5shfse +2025-06-18T15:00:01.181Z [DEBUG] notification-service - POST /api/v1/payments - Status: 404 - Response time: 586ms - IP: 192.168.144.38 - User: user_1046 - RequestID: ghqempj4m3 +2025-06-18T15:00:01.281Z [TRACE] order-service - PATCH /api/v1/payments - Status: 502 - Response time: 1842ms - IP: 192.168.229.123 - User: user_1079 - RequestID: 6vvay1sjdqv +2025-06-18T15:00:01.381Z [TRACE] user-service - Operation: cache_miss - Processing time: 402ms - RequestID: 4ymg2t4a73c +2025-06-18T15:00:01.481Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 401 - Response time: 700ms - IP: 192.168.133.7 - User: user_1032 - RequestID: 1gkbnh9k3os +2025-06-18T15:00:01.581Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 39ms - IP: 192.168.11.60 - User: user_1077 - RequestID: wo2ddeep8m +2025-06-18T15:00:01.681Z [DEBUG] order-service - POST /api/v1/orders - Status: 404 - Response time: 878ms - IP: 192.168.159.94 - User: user_1044 - RequestID: 3tjkfaiu0vg +2025-06-18T15:00:01.781Z [INFO] auth-service - Database DELETE on orders - Execution time: 376ms - Rows affected: 26 - RequestID: 91ro2ibpx07 +2025-06-18T15:00:01.881Z [INFO] user-service - GET /api/v1/users - Status: 403 - Response time: 1510ms - IP: 192.168.227.233 - User: user_1077 - RequestID: 561u88yrhi +2025-06-18T15:00:01.981Z [DEBUG] payment-service - Operation: email_sent - Processing time: 845ms - RequestID: raan8cv5ond +2025-06-18T15:00:02.081Z [INFO] inventory-service - POST /api/v1/users - Status: 500 - Response time: 30ms - IP: 192.168.36.218 - User: user_1074 - RequestID: 2usi5j8nymo +2025-06-18T15:00:02.181Z [INFO] notification-service - Auth event: login_success - User: user_1050 - IP: 192.168.133.7 - RequestID: gjwrsh42ya4 +2025-06-18T15:00:02.281Z [INFO] notification-service - Operation: payment_processed - Processing time: 784ms - RequestID: 8exersep5o +2025-06-18T15:00:02.381Z [INFO] auth-service - Auth event: login_failed - User: user_1035 - IP: 192.168.158.144 - RequestID: 96xvfgergsg +2025-06-18T15:00:02.481Z [DEBUG] user-service - Database UPDATE on products - Execution time: 107ms - Rows affected: 59 - RequestID: 67cngo2iys8 +2025-06-18T15:00:02.581Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 409ms - Rows affected: 78 - RequestID: eb0tm5xvlxw +2025-06-18T15:00:02.681Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1075ms - IP: 192.168.113.218 - User: user_1086 - RequestID: z13zi46laz +2025-06-18T15:00:02.781Z [INFO] payment-service - Auth event: login_failed - User: user_1001 - IP: 192.168.159.94 - RequestID: lxw6duxh98m +2025-06-18T15:00:02.881Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.1.152 - RequestID: zl36bg6mlza +2025-06-18T15:00:02.981Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 200 - Response time: 411ms - IP: 192.168.158.144 - User: user_1059 - RequestID: vjq7wfh9jcl +2025-06-18T15:00:03.081Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 404 - Response time: 665ms - IP: 192.168.181.225 - User: user_1085 - RequestID: 6x2bwb56wf +2025-06-18T15:00:03.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.11.60 - RequestID: 0q2s7wcnq55d +2025-06-18T15:00:03.281Z [DEBUG] user-service - POST /api/v1/payments - Status: 400 - Response time: 374ms - IP: 192.168.11.60 - User: user_1042 - RequestID: 2tc3v6omsfn +2025-06-18T15:00:03.381Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 281ms - Rows affected: 32 - RequestID: w1ledbczc7 +2025-06-18T15:00:03.481Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 176ms - Rows affected: 31 - RequestID: o94wf15l3j +2025-06-18T15:00:03.581Z [INFO] payment-service - Database INSERT on orders - Execution time: 495ms - Rows affected: 45 - RequestID: pnzzm6dpgb +2025-06-18T15:00:03.681Z [TRACE] auth-service - Operation: order_created - Processing time: 99ms - RequestID: vde12ak75bg +2025-06-18T15:00:03.781Z [INFO] order-service - POST /api/v1/orders - Status: 200 - Response time: 764ms - IP: 192.168.167.32 - User: user_1055 - RequestID: h4232v90i6c +2025-06-18T15:00:03.881Z [TRACE] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 829ms - IP: 192.168.79.116 - User: user_1030 - RequestID: 6zt8edhzz8j +2025-06-18T15:00:03.981Z [TRACE] user-service - Database SELECT on sessions - Execution time: 86ms - Rows affected: 31 - RequestID: 5fm6o62a0tj +2025-06-18T15:00:04.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 689ms - RequestID: hsa7p0r7ce5 +2025-06-18T15:00:04.181Z [INFO] auth-service - Database DELETE on products - Execution time: 489ms - Rows affected: 47 - RequestID: l8o0n8n8qnp +2025-06-18T15:00:04.281Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1067ms - IP: 192.168.235.117 - User: user_1007 - RequestID: jktvz8ru8bb +2025-06-18T15:00:04.381Z [DEBUG] order-service - Auth event: login_success - User: user_1077 - IP: 192.168.211.72 - RequestID: yxyieeoebts +2025-06-18T15:00:04.481Z [INFO] order-service - Operation: inventory_updated - Processing time: 672ms - RequestID: zmdo69mxuf +2025-06-18T15:00:04.581Z [TRACE] order-service - Operation: cache_miss - Processing time: 292ms - RequestID: vjjsz9icfr9 +2025-06-18T15:00:04.681Z [DEBUG] user-service - Database SELECT on orders - Execution time: 250ms - Rows affected: 33 - RequestID: n93f40qoitp +2025-06-18T15:00:04.781Z [DEBUG] payment-service - Operation: email_sent - Processing time: 735ms - RequestID: wbbv2g9t35b +2025-06-18T15:00:04.881Z [DEBUG] order-service - Database SELECT on payments - Execution time: 48ms - Rows affected: 1 - RequestID: v9qgcu436e +2025-06-18T15:00:04.981Z [INFO] payment-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.30.79 - RequestID: 8disrsvge8j +2025-06-18T15:00:05.081Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 401 - Response time: 281ms - IP: 192.168.14.77 - User: user_1099 - RequestID: 1hwhd5nzswr +2025-06-18T15:00:05.181Z [TRACE] notification-service - Auth event: login_failed - User: user_1020 - IP: 192.168.240.169 - RequestID: 0uu2hihh2y3 +2025-06-18T15:00:05.281Z [DEBUG] user-service - Operation: payment_processed - Processing time: 776ms - RequestID: 0lt4i5pjcxb +2025-06-18T15:00:05.381Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1533ms - IP: 192.168.158.144 - User: user_1046 - RequestID: 2jmkksr7ygh +2025-06-18T15:00:05.481Z [INFO] inventory-service - POST /api/v1/inventory - Status: 502 - Response time: 761ms - IP: 192.168.159.94 - User: user_1056 - RequestID: uy11vxhzm8p +2025-06-18T15:00:05.581Z [DEBUG] notification-service - Auth event: logout - User: user_1043 - IP: 192.168.229.123 - RequestID: 6w3xq5291hc +2025-06-18T15:00:05.681Z [TRACE] order-service - Auth event: password_change - User: user_1025 - IP: 192.168.28.146 - RequestID: 8jucnw7tqjd +2025-06-18T15:00:05.781Z [TRACE] auth-service - Database SELECT on orders - Execution time: 240ms - Rows affected: 38 - RequestID: fzbmwoyp17b +2025-06-18T15:00:05.881Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 103ms - Rows affected: 36 - RequestID: bh41edr2fp +2025-06-18T15:00:05.981Z [INFO] notification-service - Auth event: logout - User: user_1025 - IP: 192.168.170.215 - RequestID: irkdqaq8wd +2025-06-18T15:00:06.081Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 244ms - Rows affected: 34 - RequestID: o7qyzohuook +2025-06-18T15:00:06.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1002 - IP: 192.168.187.199 - RequestID: k6utzkvvjw +2025-06-18T15:00:06.281Z [TRACE] payment-service - Operation: cache_hit - Processing time: 766ms - RequestID: 2dfkmkuljik +2025-06-18T15:00:06.381Z [TRACE] notification-service - Database UPDATE on products - Execution time: 151ms - Rows affected: 5 - RequestID: m9rnik4mi4 +2025-06-18T15:00:06.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.28.146 - RequestID: o9z8h6owmkb +2025-06-18T15:00:06.581Z [TRACE] inventory-service - Database INSERT on users - Execution time: 243ms - Rows affected: 88 - RequestID: 1h43omc4uca +2025-06-18T15:00:06.681Z [TRACE] payment-service - Database INSERT on users - Execution time: 363ms - Rows affected: 92 - RequestID: 6rsywmkf485 +2025-06-18T15:00:06.781Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 469ms - RequestID: iags9p1oe6 +2025-06-18T15:00:06.881Z [TRACE] notification-service - Operation: cache_hit - Processing time: 230ms - RequestID: fsg1im56qwr +2025-06-18T15:00:06.981Z [INFO] payment-service - Operation: order_created - Processing time: 651ms - RequestID: knal9cmjunj +2025-06-18T15:00:07.081Z [INFO] order-service - Operation: order_created - Processing time: 52ms - RequestID: v8bdjgrwae +2025-06-18T15:00:07.181Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.159.94 - RequestID: 7b94g7iq9mj +2025-06-18T15:00:07.281Z [INFO] order-service - Operation: email_sent - Processing time: 120ms - RequestID: snilnrfipv +2025-06-18T15:00:07.381Z [INFO] notification-service - Database UPDATE on orders - Execution time: 142ms - Rows affected: 93 - RequestID: tsc2hp56t8b +2025-06-18T15:00:07.481Z [TRACE] user-service - GET /api/v1/users - Status: 404 - Response time: 998ms - IP: 192.168.79.116 - User: user_1091 - RequestID: ebnaxd9d6s +2025-06-18T15:00:07.581Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 201 - Response time: 474ms - IP: 192.168.242.165 - User: user_1013 - RequestID: taigk3gjv5 +2025-06-18T15:00:07.681Z [INFO] order-service - Operation: email_sent - Processing time: 811ms - RequestID: tyre2kypck +2025-06-18T15:00:07.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1089 - IP: 192.168.158.144 - RequestID: tjjit2gkuj +2025-06-18T15:00:07.881Z [INFO] payment-service - POST /api/v1/orders - Status: 404 - Response time: 907ms - IP: 192.168.68.158 - User: user_1041 - RequestID: ksrz2s5tct +2025-06-18T15:00:07.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 492ms - RequestID: fkm25shh1av +2025-06-18T15:00:08.081Z [INFO] notification-service - POST /api/v1/auth/login - Status: 400 - Response time: 1682ms - IP: 192.168.64.33 - User: user_1079 - RequestID: dqaygk8vjz6 +2025-06-18T15:00:08.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.85.229 - RequestID: 3x5lctx6h2y +2025-06-18T15:00:08.281Z [DEBUG] payment-service - Auth event: logout - User: user_1014 - IP: 192.168.33.76 - RequestID: gwauwa6k1eh +2025-06-18T15:00:08.381Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 1331ms - IP: 192.168.30.79 - User: user_1050 - RequestID: qfiakwjoy2 +2025-06-18T15:00:08.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.174.114 - RequestID: i8z2b28llyq +2025-06-18T15:00:08.581Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 229ms - Rows affected: 69 - RequestID: lc2imip7ox +2025-06-18T15:00:08.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.100.240 - RequestID: uit6g1zl0p9 +2025-06-18T15:00:08.781Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 445ms - Rows affected: 49 - RequestID: 18g8at1u3sd +2025-06-18T15:00:08.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.174.114 - RequestID: ujurnp6gl3b +2025-06-18T15:00:08.981Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 83ms - Rows affected: 64 - RequestID: 1aodpg05jsh +2025-06-18T15:00:09.081Z [TRACE] payment-service - Operation: cache_miss - Processing time: 491ms - RequestID: kqwi01gvdi +2025-06-18T15:00:09.181Z [DEBUG] auth-service - Auth event: logout - User: user_1064 - IP: 192.168.170.215 - RequestID: 6xmicvoqonx +2025-06-18T15:00:09.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.232.72 - RequestID: f23e01kl44m +2025-06-18T15:00:09.381Z [DEBUG] auth-service - Database SELECT on users - Execution time: 130ms - Rows affected: 61 - RequestID: fqghuro0sm7 +2025-06-18T15:00:09.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1059 - IP: 192.168.189.103 - RequestID: ranu59q68j +2025-06-18T15:00:09.581Z [INFO] order-service - Operation: payment_processed - Processing time: 972ms - RequestID: locwvtalpp +2025-06-18T15:00:09.681Z [INFO] payment-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.11.60 - RequestID: dqqsuqggsy +2025-06-18T15:00:09.781Z [TRACE] order-service - Database UPDATE on orders - Execution time: 430ms - Rows affected: 48 - RequestID: ruwrabcyjyp +2025-06-18T15:00:09.881Z [TRACE] auth-service - Database INSERT on payments - Execution time: 456ms - Rows affected: 36 - RequestID: 8wmi68kcs7q +2025-06-18T15:00:09.981Z [TRACE] order-service - GET /api/v1/payments - Status: 500 - Response time: 1216ms - IP: 192.168.229.123 - User: user_1028 - RequestID: lh2ht942zjl +2025-06-18T15:00:10.081Z [INFO] notification-service - PATCH /api/v1/payments - Status: 503 - Response time: 639ms - IP: 192.168.64.33 - User: user_1090 - RequestID: awpqyb0vj3e +2025-06-18T15:00:10.181Z [TRACE] notification-service - Database DELETE on users - Execution time: 342ms - Rows affected: 0 - RequestID: r17a4mm3acc +2025-06-18T15:00:10.281Z [INFO] order-service - Operation: webhook_sent - Processing time: 928ms - RequestID: 2t0e8z4l3jg +2025-06-18T15:00:10.381Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1592ms - IP: 192.168.79.141 - User: user_1040 - RequestID: rffj2bnnuwg +2025-06-18T15:00:10.481Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 201 - Response time: 1362ms - IP: 192.168.138.123 - User: user_1053 - RequestID: rnc592h3tfp +2025-06-18T15:00:10.581Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.53.133 - RequestID: jbjk1rq29ef +2025-06-18T15:00:10.681Z [INFO] inventory-service - Auth event: password_change - User: user_1015 - IP: 192.168.1.152 - RequestID: 9resrthwxig +2025-06-18T15:00:10.781Z [INFO] auth-service - Database UPDATE on orders - Execution time: 297ms - Rows affected: 95 - RequestID: eeqhy3km3cl +2025-06-18T15:00:10.881Z [INFO] auth-service - Operation: order_created - Processing time: 631ms - RequestID: tcd2alp33no +2025-06-18T15:00:10.981Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 227ms - Rows affected: 43 - RequestID: 8ze1sykx6a +2025-06-18T15:00:11.081Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 191ms - RequestID: ssj5dmoya38 +2025-06-18T15:00:11.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.64.33 - RequestID: op18m75436 +2025-06-18T15:00:11.281Z [INFO] user-service - POST /api/v1/auth/logout - Status: 201 - Response time: 312ms - IP: 192.168.227.77 - User: user_1032 - RequestID: thc7w2c55i +2025-06-18T15:00:11.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.10.184 - RequestID: vi7eu107jz9 +2025-06-18T15:00:11.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1071 - IP: 192.168.53.133 - RequestID: ozkj4060xzg +2025-06-18T15:00:11.581Z [INFO] notification-service - Auth event: login_failed - User: user_1053 - IP: 192.168.79.141 - RequestID: 676yt4hilew +2025-06-18T15:00:11.681Z [TRACE] notification-service - Operation: payment_processed - Processing time: 595ms - RequestID: xznb01nziw +2025-06-18T15:00:11.781Z [INFO] inventory-service - Auth event: password_change - User: user_1035 - IP: 192.168.100.240 - RequestID: l97szupzm7e +2025-06-18T15:00:11.881Z [INFO] auth-service - Database UPDATE on orders - Execution time: 318ms - Rows affected: 57 - RequestID: gwhlojd5qc7 +2025-06-18T15:00:11.981Z [TRACE] order-service - Auth event: logout - User: user_1081 - IP: 192.168.64.33 - RequestID: 7t3dwnp5ksf +2025-06-18T15:00:12.081Z [TRACE] notification-service - Database INSERT on payments - Execution time: 138ms - Rows affected: 11 - RequestID: n80fxz0thmn +2025-06-18T15:00:12.181Z [INFO] payment-service - POST /api/v1/users - Status: 400 - Response time: 1391ms - IP: 192.168.97.87 - User: user_1040 - RequestID: qaxnyiv51tc +2025-06-18T15:00:12.281Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 401 - Response time: 375ms - IP: 192.168.44.5 - User: user_1097 - RequestID: c6mk284n0hi +2025-06-18T15:00:12.381Z [INFO] payment-service - Database DELETE on sessions - Execution time: 36ms - Rows affected: 18 - RequestID: qyvx54sq03i +2025-06-18T15:00:12.481Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 503 - Response time: 496ms - IP: 192.168.33.76 - User: user_1016 - RequestID: k76gvskmzcq +2025-06-18T15:00:12.581Z [INFO] user-service - Operation: cache_miss - Processing time: 822ms - RequestID: v9nueg9fw8 +2025-06-18T15:00:12.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1059 - IP: 192.168.14.77 - RequestID: z8k8aogg72r +2025-06-18T15:00:12.781Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 404 - Response time: 1544ms - IP: 192.168.64.33 - User: user_1064 - RequestID: kt1pnl3aso +2025-06-18T15:00:12.881Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.147.171 - RequestID: 5yf10zhpag +2025-06-18T15:00:12.981Z [TRACE] user-service - Operation: email_sent - Processing time: 682ms - RequestID: xkyh21ce01k +2025-06-18T15:00:13.081Z [INFO] notification-service - GET /api/v1/payments - Status: 404 - Response time: 1850ms - IP: 192.168.235.117 - User: user_1067 - RequestID: 5cbevn4kv72 +2025-06-18T15:00:13.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 944ms - RequestID: dw8rfq0chks +2025-06-18T15:00:13.281Z [DEBUG] user-service - PUT /api/v1/users - Status: 404 - Response time: 1587ms - IP: 192.168.36.218 - User: user_1072 - RequestID: d6h2fxqq1h +2025-06-18T15:00:13.381Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 172ms - Rows affected: 41 - RequestID: lu2cc3fzjls +2025-06-18T15:00:13.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 271ms - RequestID: za2pl4g6zuj +2025-06-18T15:00:13.581Z [TRACE] user-service - PATCH /api/v1/orders - Status: 200 - Response time: 271ms - IP: 192.168.32.38 - User: user_1031 - RequestID: o3z6zvdg8xf +2025-06-18T15:00:13.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.64.33 - RequestID: awsyr4bc69b +2025-06-18T15:00:13.781Z [INFO] notification-service - Database UPDATE on users - Execution time: 105ms - Rows affected: 3 - RequestID: fjngkky46g +2025-06-18T15:00:13.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1023 - IP: 192.168.242.165 - RequestID: g137f4mq48p +2025-06-18T15:00:13.981Z [DEBUG] payment-service - GET /api/v1/orders - Status: 503 - Response time: 92ms - IP: 192.168.104.37 - User: user_1065 - RequestID: swe0eniwxgq +2025-06-18T15:00:14.081Z [TRACE] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 1278ms - IP: 192.168.158.144 - User: user_1031 - RequestID: op924ahxs1e +2025-06-18T15:00:14.181Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 32ms - Rows affected: 9 - RequestID: 8kzth07iido +2025-06-18T15:00:14.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 218ms - RequestID: gp2u7bitkkv +2025-06-18T15:00:14.381Z [TRACE] user-service - Operation: inventory_updated - Processing time: 364ms - RequestID: xr6d23o21ck +2025-06-18T15:00:14.481Z [TRACE] order-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.189.103 - RequestID: jx1z3vzfl7b +2025-06-18T15:00:14.581Z [INFO] auth-service - Auth event: password_change - User: user_1085 - IP: 192.168.81.206 - RequestID: zjx28ogz72 +2025-06-18T15:00:14.681Z [TRACE] payment-service - Auth event: password_change - User: user_1019 - IP: 192.168.68.158 - RequestID: 79ada1zn8qy +2025-06-18T15:00:14.781Z [INFO] order-service - Operation: webhook_sent - Processing time: 448ms - RequestID: 5ew31y87rc +2025-06-18T15:00:14.881Z [DEBUG] user-service - Auth event: logout - User: user_1021 - IP: 192.168.79.141 - RequestID: 8pfdmzgylb9 +2025-06-18T15:00:14.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1080 - IP: 192.168.227.233 - RequestID: y24hs0add +2025-06-18T15:00:15.081Z [INFO] payment-service - Database SELECT on payments - Execution time: 221ms - Rows affected: 78 - RequestID: e5qudqshw9u +2025-06-18T15:00:15.181Z [DEBUG] order-service - Operation: email_sent - Processing time: 68ms - RequestID: 1midhc6i34a +2025-06-18T15:00:15.281Z [DEBUG] order-service - Operation: notification_queued - Processing time: 1032ms - RequestID: z9ynb9u58cr +2025-06-18T15:00:15.381Z [DEBUG] user-service - Operation: payment_processed - Processing time: 659ms - RequestID: zwwlp3ol1sg +2025-06-18T15:00:15.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 890ms - RequestID: 2bizdkb3vah +2025-06-18T15:00:15.581Z [INFO] payment-service - Database UPDATE on users - Execution time: 471ms - Rows affected: 38 - RequestID: qhonsm0qmua +2025-06-18T15:00:15.681Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 477ms - Rows affected: 88 - RequestID: 26i3ccmkbc4 +2025-06-18T15:00:15.781Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 403 - Response time: 306ms - IP: 192.168.194.41 - User: user_1096 - RequestID: 4j69d51ijvo +2025-06-18T15:00:15.881Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 181ms - Rows affected: 87 - RequestID: 9oquwckv25a +2025-06-18T15:00:15.981Z [INFO] inventory-service - Operation: email_sent - Processing time: 87ms - RequestID: 67lt0h21iun +2025-06-18T15:00:16.081Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 479ms - Rows affected: 45 - RequestID: 7bftlceirb5 +2025-06-18T15:00:16.181Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 401 - Response time: 1820ms - IP: 192.168.189.103 - User: user_1034 - RequestID: unm04afbt1r +2025-06-18T15:00:16.281Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 450ms - IP: 192.168.44.5 - User: user_1015 - RequestID: e4ewbl19597 +2025-06-18T15:00:16.381Z [INFO] notification-service - PUT /api/v1/inventory - Status: 401 - Response time: 32ms - IP: 192.168.104.37 - User: user_1045 - RequestID: 0kvkoknzuzcl +2025-06-18T15:00:16.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1052 - IP: 192.168.170.215 - RequestID: zjtrs8ifdom +2025-06-18T15:00:16.581Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 6ms - Rows affected: 15 - RequestID: kr1pjkkblf +2025-06-18T15:00:16.681Z [INFO] payment-service - PATCH /api/v1/payments - Status: 200 - Response time: 1444ms - IP: 192.168.85.229 - User: user_1047 - RequestID: qairqrwvcpg +2025-06-18T15:00:16.781Z [INFO] auth-service - Auth event: password_change - User: user_1061 - IP: 192.168.10.184 - RequestID: n64xm0oxkrg +2025-06-18T15:00:16.881Z [INFO] inventory-service - Database DELETE on products - Execution time: 454ms - Rows affected: 93 - RequestID: laykzg2swgm +2025-06-18T15:00:16.981Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 25ms - Rows affected: 21 - RequestID: 3456929m2et +2025-06-18T15:00:17.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.240.169 - RequestID: jojkboz8ub +2025-06-18T15:00:17.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.158.144 - RequestID: refyef459y +2025-06-18T15:00:17.281Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1857ms - IP: 192.168.194.41 - User: user_1093 - RequestID: sjuhff5oyyg +2025-06-18T15:00:17.381Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 461ms - Rows affected: 7 - RequestID: 5fsl9k19w6 +2025-06-18T15:00:17.481Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 421ms - RequestID: 6fcqzqk59ix +2025-06-18T15:00:17.581Z [INFO] user-service - POST /api/v1/inventory - Status: 500 - Response time: 2007ms - IP: 192.168.79.143 - User: user_1034 - RequestID: gchb017o2vv +2025-06-18T15:00:17.681Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 1963ms - IP: 192.168.196.226 - User: user_1083 - RequestID: f2hgtlt1js4 +2025-06-18T15:00:17.781Z [INFO] notification-service - Database SELECT on sessions - Execution time: 221ms - Rows affected: 38 - RequestID: 4xdta5pkjxp +2025-06-18T15:00:17.881Z [INFO] inventory-service - Auth event: password_change - User: user_1003 - IP: 192.168.104.37 - RequestID: 3gthfosnkiy +2025-06-18T15:00:17.981Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 404 - Response time: 2004ms - IP: 192.168.211.72 - User: user_1073 - RequestID: lv8gfdwgee +2025-06-18T15:00:18.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.229.123 - RequestID: i6dglsanbic +2025-06-18T15:00:18.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1076 - IP: 192.168.1.152 - RequestID: v2wq88i8h2n +2025-06-18T15:00:18.281Z [INFO] inventory-service - Database INSERT on orders - Execution time: 17ms - Rows affected: 25 - RequestID: hz86lr64ks +2025-06-18T15:00:18.381Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 201 - Response time: 1208ms - IP: 192.168.235.117 - User: user_1019 - RequestID: ocfy8si33qj +2025-06-18T15:00:18.481Z [DEBUG] order-service - Auth event: login_failed - User: user_1009 - IP: 192.168.189.103 - RequestID: ugkojeqfd +2025-06-18T15:00:18.581Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 61ms - IP: 192.168.28.146 - User: user_1086 - RequestID: q442itwqwr +2025-06-18T15:00:18.681Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 170ms - Rows affected: 61 - RequestID: 5yjy0l2opgk +2025-06-18T15:00:18.781Z [TRACE] notification-service - Auth event: login_failed - User: user_1049 - IP: 192.168.247.134 - RequestID: 4rttv5s5rja +2025-06-18T15:00:18.881Z [INFO] user-service - Auth event: login_success - User: user_1028 - IP: 192.168.242.165 - RequestID: 25eol6t384i +2025-06-18T15:00:18.981Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 99ms - RequestID: rcuytsk5dsi +2025-06-18T15:00:19.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 319ms - RequestID: b8qnihtp7vf +2025-06-18T15:00:19.181Z [INFO] notification-service - POST /api/v1/inventory - Status: 502 - Response time: 1365ms - IP: 192.168.68.158 - User: user_1094 - RequestID: 144wtiuuxyi +2025-06-18T15:00:19.281Z [DEBUG] inventory-service - Operation: order_created - Processing time: 229ms - RequestID: f6ggmry9ibc +2025-06-18T15:00:19.381Z [INFO] order-service - Operation: notification_queued - Processing time: 108ms - RequestID: 4fmetsyis07 +2025-06-18T15:00:19.481Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1219ms - IP: 192.168.14.77 - User: user_1018 - RequestID: m8awngfu4z +2025-06-18T15:00:19.581Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 502 - Response time: 656ms - IP: 192.168.85.229 - User: user_1036 - RequestID: ipket85dod +2025-06-18T15:00:19.681Z [TRACE] user-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.14.77 - RequestID: yl1ceap5mdi +2025-06-18T15:00:19.781Z [INFO] user-service - Auth event: logout - User: user_1006 - IP: 192.168.31.117 - RequestID: utb59ao8vo +2025-06-18T15:00:19.881Z [INFO] auth-service - Operation: payment_processed - Processing time: 208ms - RequestID: pkqv6x9it2 +2025-06-18T15:00:19.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 660ms - RequestID: cacjevuwt8p +2025-06-18T15:00:20.081Z [TRACE] user-service - PUT /api/v1/payments - Status: 400 - Response time: 269ms - IP: 192.168.194.41 - User: user_1089 - RequestID: 68e8wwpx8i6 +2025-06-18T15:00:20.181Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 403 - Response time: 1910ms - IP: 192.168.167.32 - User: user_1022 - RequestID: geaqtwgn1k +2025-06-18T15:00:20.281Z [INFO] auth-service - POST /api/v1/inventory - Status: 403 - Response time: 1001ms - IP: 192.168.170.215 - User: user_1047 - RequestID: d15qun48itg +2025-06-18T15:00:20.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.31.117 - RequestID: cfq7sstgei +2025-06-18T15:00:20.481Z [INFO] auth-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.79.116 - RequestID: uaafezeh91 +2025-06-18T15:00:20.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.81.206 - RequestID: r4snj88m2ln +2025-06-18T15:00:20.681Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 414ms - Rows affected: 25 - RequestID: hvk90w0xgo +2025-06-18T15:00:20.781Z [INFO] user-service - Database DELETE on sessions - Execution time: 486ms - Rows affected: 92 - RequestID: sldg7c9krs +2025-06-18T15:00:20.881Z [DEBUG] payment-service - POST /api/v1/orders - Status: 400 - Response time: 961ms - IP: 192.168.36.218 - User: user_1022 - RequestID: vvylxaa50uj +2025-06-18T15:00:20.981Z [TRACE] notification-service - Operation: order_created - Processing time: 801ms - RequestID: jrjqu7vj2y +2025-06-18T15:00:21.081Z [INFO] notification-service - GET /api/v1/inventory - Status: 400 - Response time: 205ms - IP: 192.168.133.7 - User: user_1023 - RequestID: 09luzqpnjpe8 +2025-06-18T15:00:21.181Z [TRACE] user-service - DELETE /api/v1/payments - Status: 201 - Response time: 832ms - IP: 192.168.30.79 - User: user_1056 - RequestID: 4mw8htalzb +2025-06-18T15:00:21.281Z [INFO] payment-service - Operation: webhook_sent - Processing time: 455ms - RequestID: 4ls1y0yrh4g +2025-06-18T15:00:21.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.33.76 - RequestID: 4wgzryhcb2a +2025-06-18T15:00:21.481Z [DEBUG] notification-service - Auth event: logout - User: user_1083 - IP: 192.168.170.215 - RequestID: q93g4fpf26 +2025-06-18T15:00:21.581Z [INFO] notification-service - Auth event: logout - User: user_1084 - IP: 192.168.81.206 - RequestID: luw39h2o6o +2025-06-18T15:00:21.681Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 430ms - Rows affected: 70 - RequestID: wgzy1qit7yg +2025-06-18T15:00:21.781Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 674ms - RequestID: goiw20xce46 +2025-06-18T15:00:21.881Z [DEBUG] notification-service - Auth event: login_failed - User: user_1079 - IP: 192.168.147.171 - RequestID: ixy56kpi5kq +2025-06-18T15:00:21.981Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 734ms - IP: 192.168.79.141 - User: user_1091 - RequestID: 3sadh03g14e +2025-06-18T15:00:22.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1012 - IP: 192.168.79.141 - RequestID: 35p1ef38ivu +2025-06-18T15:00:22.181Z [DEBUG] notification-service - Operation: email_sent - Processing time: 288ms - RequestID: e24t701fgib +2025-06-18T15:00:22.281Z [TRACE] payment-service - Operation: email_sent - Processing time: 670ms - RequestID: a59x9oqw15f +2025-06-18T15:00:22.381Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 500 - Response time: 780ms - IP: 192.168.144.38 - User: user_1006 - RequestID: q9iwpheqww +2025-06-18T15:00:22.481Z [INFO] user-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.235.117 - RequestID: 8pupu0cuxov +2025-06-18T15:00:22.581Z [TRACE] payment-service - POST /api/v1/inventory - Status: 502 - Response time: 111ms - IP: 192.168.138.123 - User: user_1069 - RequestID: w8m0klyilqp +2025-06-18T15:00:22.681Z [INFO] inventory-service - Auth event: logout - User: user_1000 - IP: 192.168.227.77 - RequestID: bmlitrl31c9 +2025-06-18T15:00:22.781Z [INFO] notification-service - Database INSERT on products - Execution time: 365ms - Rows affected: 9 - RequestID: 8q8b3cjz8qf +2025-06-18T15:00:22.881Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 201 - Response time: 142ms - IP: 192.168.31.117 - User: user_1022 - RequestID: g3limhacwic +2025-06-18T15:00:22.981Z [INFO] payment-service - Database SELECT on payments - Execution time: 243ms - Rows affected: 33 - RequestID: rttkx9no1n9 +2025-06-18T15:00:23.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1084 - IP: 192.168.36.218 - RequestID: 0dqez19r353u +2025-06-18T15:00:23.181Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 678ms - IP: 192.168.194.41 - User: user_1075 - RequestID: uqgd68e1dc +2025-06-18T15:00:23.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1081 - IP: 192.168.13.72 - RequestID: 7h82baitzu +2025-06-18T15:00:23.381Z [TRACE] payment-service - DELETE /api/v1/users - Status: 401 - Response time: 1574ms - IP: 192.168.14.77 - User: user_1051 - RequestID: i9tvlwliu7 +2025-06-18T15:00:23.481Z [INFO] inventory-service - Database UPDATE on products - Execution time: 412ms - Rows affected: 68 - RequestID: 9n0z5tx4yw +2025-06-18T15:00:23.581Z [TRACE] auth-service - Operation: cache_hit - Processing time: 184ms - RequestID: 828a0d5xvw +2025-06-18T15:00:23.681Z [DEBUG] user-service - Auth event: password_change - User: user_1010 - IP: 192.168.235.117 - RequestID: vb4ji3ri4qm +2025-06-18T15:00:23.781Z [INFO] user-service - Auth event: login_failed - User: user_1088 - IP: 192.168.1.152 - RequestID: kcsi3zrvu4 +2025-06-18T15:00:23.881Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 200 - Response time: 1095ms - IP: 192.168.31.117 - User: user_1087 - RequestID: ujisrf574ob +2025-06-18T15:00:23.981Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 393ms - IP: 192.168.13.72 - User: user_1068 - RequestID: ibj8rcjk2i9 +2025-06-18T15:00:24.081Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 403 - Response time: 1123ms - IP: 192.168.232.72 - User: user_1069 - RequestID: vicvob5x7id +2025-06-18T15:00:24.181Z [INFO] notification-service - Database INSERT on users - Execution time: 102ms - Rows affected: 65 - RequestID: 8gdeh03jqxq +2025-06-18T15:00:24.281Z [TRACE] order-service - GET /api/v1/auth/login - Status: 404 - Response time: 1111ms - IP: 192.168.247.134 - User: user_1092 - RequestID: bgzwitqci3f +2025-06-18T15:00:24.381Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 391ms - Rows affected: 82 - RequestID: a2etiwya6ea +2025-06-18T15:00:24.481Z [INFO] user-service - Operation: inventory_updated - Processing time: 462ms - RequestID: s7uf7xquari +2025-06-18T15:00:24.581Z [TRACE] user-service - Auth event: login_success - User: user_1004 - IP: 192.168.13.72 - RequestID: 52kpfxvn8rq +2025-06-18T15:00:24.681Z [TRACE] notification-service - Operation: order_created - Processing time: 507ms - RequestID: bumdnp4gv3w +2025-06-18T15:00:24.781Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 502 - Response time: 590ms - IP: 192.168.187.199 - User: user_1029 - RequestID: 60ho5ojam6 +2025-06-18T15:00:24.881Z [TRACE] auth-service - POST /api/v1/payments - Status: 201 - Response time: 280ms - IP: 192.168.79.141 - User: user_1032 - RequestID: cgf4ukxjv1k +2025-06-18T15:00:24.981Z [INFO] auth-service - PUT /api/v1/orders - Status: 401 - Response time: 1331ms - IP: 192.168.229.123 - User: user_1041 - RequestID: p3fboqvfrhk +2025-06-18T15:00:25.081Z [TRACE] auth-service - Database SELECT on payments - Execution time: 253ms - Rows affected: 38 - RequestID: gwvrysk77n +2025-06-18T15:00:25.181Z [TRACE] notification-service - PATCH /api/v1/users - Status: 503 - Response time: 1494ms - IP: 192.168.229.123 - User: user_1003 - RequestID: gj1taun7c8 +2025-06-18T15:00:25.281Z [TRACE] user-service - POST /api/v1/orders - Status: 403 - Response time: 1899ms - IP: 192.168.81.206 - User: user_1005 - RequestID: 8da8cfbrndq +2025-06-18T15:00:25.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 83ms - RequestID: 097o182qs7o6 +2025-06-18T15:00:25.481Z [INFO] auth-service - Auth event: logout - User: user_1045 - IP: 192.168.194.41 - RequestID: 5oxtz6pjem3 +2025-06-18T15:00:25.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.100.240 - RequestID: ht5s0y9zkcg +2025-06-18T15:00:25.681Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 21ms - Rows affected: 41 - RequestID: q4ptv90ych +2025-06-18T15:00:25.781Z [TRACE] order-service - Database DELETE on payments - Execution time: 198ms - Rows affected: 42 - RequestID: gzm4g03rxus +2025-06-18T15:00:25.881Z [TRACE] notification-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.13.72 - RequestID: plgipyekak +2025-06-18T15:00:25.981Z [INFO] notification-service - Database SELECT on users - Execution time: 122ms - Rows affected: 59 - RequestID: esjjxryugri +2025-06-18T15:00:26.081Z [TRACE] user-service - Operation: payment_processed - Processing time: 390ms - RequestID: k493q07tqmb +2025-06-18T15:00:26.181Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 315ms - IP: 192.168.227.77 - User: user_1090 - RequestID: 2jz3cf96a2y +2025-06-18T15:00:26.281Z [INFO] payment-service - POST /api/v1/users - Status: 502 - Response time: 257ms - IP: 192.168.46.63 - User: user_1068 - RequestID: g1u9h5b2awq +2025-06-18T15:00:26.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 540ms - RequestID: 0g2785v7f3a7 +2025-06-18T15:00:26.481Z [INFO] notification-service - Database DELETE on users - Execution time: 306ms - Rows affected: 87 - RequestID: 3auynhi25hj +2025-06-18T15:00:26.581Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 425ms - Rows affected: 92 - RequestID: e62ct3vtpon +2025-06-18T15:00:26.681Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 503 - Response time: 365ms - IP: 192.168.11.60 - User: user_1056 - RequestID: lzrd8o1vx2b +2025-06-18T15:00:26.781Z [TRACE] payment-service - Auth event: logout - User: user_1090 - IP: 192.168.232.72 - RequestID: kydrq3iktu8 +2025-06-18T15:00:26.881Z [INFO] inventory-service - Database SELECT on users - Execution time: 250ms - Rows affected: 85 - RequestID: 2kfkwnhbsot +2025-06-18T15:00:26.981Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 809ms - RequestID: rarxtrv6cg +2025-06-18T15:00:27.081Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1388ms - IP: 192.168.81.206 - User: user_1028 - RequestID: aql7bw7j3a +2025-06-18T15:00:27.181Z [TRACE] inventory-service - GET /api/v1/users - Status: 503 - Response time: 188ms - IP: 192.168.32.38 - User: user_1038 - RequestID: gj8u5x8trgw +2025-06-18T15:00:27.281Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 201 - Response time: 551ms - IP: 192.168.133.7 - User: user_1038 - RequestID: jkg95zalqo +2025-06-18T15:00:27.381Z [INFO] notification-service - Database SELECT on sessions - Execution time: 453ms - Rows affected: 32 - RequestID: rvj8izncil +2025-06-18T15:00:27.481Z [INFO] payment-service - Auth event: login_failed - User: user_1003 - IP: 192.168.64.33 - RequestID: vldeau8pi9b +2025-06-18T15:00:27.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.138.123 - RequestID: 33gpblk7lnj +2025-06-18T15:00:27.681Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1691ms - IP: 192.168.10.184 - User: user_1032 - RequestID: zv0qeanllp +2025-06-18T15:00:27.781Z [INFO] payment-service - Operation: inventory_updated - Processing time: 809ms - RequestID: ktmzk4waexa +2025-06-18T15:00:27.881Z [DEBUG] user-service - Database UPDATE on users - Execution time: 207ms - Rows affected: 14 - RequestID: ighyu4apr8g +2025-06-18T15:00:27.981Z [INFO] inventory-service - Auth event: password_change - User: user_1006 - IP: 192.168.235.117 - RequestID: jm407xxl4n +2025-06-18T15:00:28.081Z [INFO] payment-service - Auth event: login_failed - User: user_1093 - IP: 192.168.104.37 - RequestID: woe7iapvpxl +2025-06-18T15:00:28.181Z [INFO] auth-service - DELETE /api/v1/orders - Status: 503 - Response time: 899ms - IP: 192.168.247.134 - User: user_1022 - RequestID: jw7280ualk +2025-06-18T15:00:28.281Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 1276ms - IP: 192.168.32.38 - User: user_1081 - RequestID: vkadeabhups +2025-06-18T15:00:28.381Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 186ms - Rows affected: 61 - RequestID: 2ijf6vm4td +2025-06-18T15:00:28.481Z [INFO] auth-service - Operation: order_created - Processing time: 68ms - RequestID: y8d1pgnlf4 +2025-06-18T15:00:28.581Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 500 - Response time: 1553ms - IP: 192.168.113.218 - User: user_1050 - RequestID: u9pmjm584l +2025-06-18T15:00:28.681Z [INFO] user-service - Database SELECT on orders - Execution time: 425ms - Rows affected: 4 - RequestID: ydnt9kg91c9 +2025-06-18T15:00:28.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.144.38 - RequestID: d3arv5d8va +2025-06-18T15:00:28.881Z [TRACE] user-service - Operation: webhook_sent - Processing time: 808ms - RequestID: 8xkhtfvqlsc +2025-06-18T15:00:28.981Z [INFO] user-service - Operation: cache_hit - Processing time: 521ms - RequestID: scgu0kimssp +2025-06-18T15:00:29.081Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 692ms - RequestID: 4rf8bnbb4cb +2025-06-18T15:00:29.181Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 13ms - Rows affected: 41 - RequestID: h4n5ejc5e0w +2025-06-18T15:00:29.281Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.28.146 - RequestID: e3ig7yk0i85 +2025-06-18T15:00:29.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1046 - IP: 192.168.138.123 - RequestID: t0o99zaxo2 +2025-06-18T15:00:29.481Z [INFO] user-service - Database INSERT on sessions - Execution time: 77ms - Rows affected: 49 - RequestID: bvud8sn2g7v +2025-06-18T15:00:29.581Z [TRACE] auth-service - Database INSERT on users - Execution time: 92ms - Rows affected: 30 - RequestID: 23oye9u5typ +2025-06-18T15:00:29.681Z [TRACE] notification-service - Operation: cache_hit - Processing time: 270ms - RequestID: cwlty24pu04 +2025-06-18T15:00:29.781Z [INFO] notification-service - Operation: payment_processed - Processing time: 709ms - RequestID: ygvbu8pjneb +2025-06-18T15:00:29.881Z [TRACE] inventory-service - Auth event: password_change - User: user_1083 - IP: 192.168.174.114 - RequestID: t9218eqoxw +2025-06-18T15:00:29.981Z [DEBUG] order-service - Operation: cache_miss - Processing time: 793ms - RequestID: a907c2lzcn +2025-06-18T15:00:30.081Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 468ms - RequestID: x7lupgk0r3c +2025-06-18T15:00:30.181Z [TRACE] user-service - Auth event: logout - User: user_1077 - IP: 192.168.10.184 - RequestID: wijq8t3ela +2025-06-18T15:00:30.281Z [TRACE] order-service - Operation: payment_processed - Processing time: 126ms - RequestID: nd3rzogv42b +2025-06-18T15:00:30.381Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 183ms - Rows affected: 65 - RequestID: orcsuqne3l +2025-06-18T15:00:30.481Z [INFO] notification-service - Database INSERT on users - Execution time: 313ms - Rows affected: 32 - RequestID: 1k2wbovvz7x +2025-06-18T15:00:30.581Z [TRACE] inventory-service - Database SELECT on users - Execution time: 346ms - Rows affected: 41 - RequestID: 4qa6pkql6c9 +2025-06-18T15:00:30.681Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 410ms - RequestID: mw0wuphlmgp +2025-06-18T15:00:30.781Z [DEBUG] order-service - Operation: cache_hit - Processing time: 205ms - RequestID: yjfsskp2o9h +2025-06-18T15:00:30.881Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 503 - Response time: 490ms - IP: 192.168.235.117 - User: user_1020 - RequestID: mhx44vmtiw7 +2025-06-18T15:00:30.981Z [DEBUG] order-service - Auth event: password_change - User: user_1058 - IP: 192.168.240.169 - RequestID: b5xeziuhdk6 +2025-06-18T15:00:31.081Z [INFO] notification-service - Database SELECT on sessions - Execution time: 335ms - Rows affected: 90 - RequestID: i9i1rt6lx0c +2025-06-18T15:00:31.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1030 - IP: 192.168.44.5 - RequestID: ljrk524m85 +2025-06-18T15:00:31.281Z [INFO] user-service - Database SELECT on sessions - Execution time: 115ms - Rows affected: 54 - RequestID: 8oibvh2uiw5 +2025-06-18T15:00:31.381Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 503 - Response time: 712ms - IP: 192.168.232.72 - User: user_1002 - RequestID: 5s9f2wzsf0e +2025-06-18T15:00:31.481Z [TRACE] inventory-service - Database SELECT on products - Execution time: 182ms - Rows affected: 93 - RequestID: f2qamcuwacs +2025-06-18T15:00:31.581Z [INFO] order-service - Operation: order_created - Processing time: 377ms - RequestID: o6tvycfzdn +2025-06-18T15:00:31.681Z [DEBUG] user-service - POST /api/v1/users - Status: 500 - Response time: 1023ms - IP: 192.168.79.116 - User: user_1086 - RequestID: ejgwgy7odgt +2025-06-18T15:00:31.781Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 297ms - Rows affected: 29 - RequestID: aamsexuw7dp +2025-06-18T15:00:31.881Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 760ms - RequestID: ha7l3y4ivne +2025-06-18T15:00:31.981Z [INFO] notification-service - POST /api/v1/orders - Status: 200 - Response time: 36ms - IP: 192.168.181.225 - User: user_1035 - RequestID: ayhm7p4ccnw +2025-06-18T15:00:32.081Z [DEBUG] notification-service - Operation: email_sent - Processing time: 953ms - RequestID: 529l4eo7yky +2025-06-18T15:00:32.181Z [TRACE] notification-service - Database INSERT on products - Execution time: 347ms - Rows affected: 57 - RequestID: na6x4r9ork +2025-06-18T15:00:32.281Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 405ms - Rows affected: 25 - RequestID: orzwhxxbf2 +2025-06-18T15:00:32.381Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 403 - Response time: 486ms - IP: 192.168.229.123 - User: user_1025 - RequestID: 03pvn6tdg4ld +2025-06-18T15:00:32.481Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 201 - Response time: 343ms - IP: 192.168.170.215 - User: user_1049 - RequestID: z9k9848wr0q +2025-06-18T15:00:32.581Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 503 - Response time: 1695ms - IP: 192.168.240.169 - User: user_1041 - RequestID: ypaowa9ju0f +2025-06-18T15:00:32.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 156ms - RequestID: 3z0ucl20iom +2025-06-18T15:00:32.781Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 400 - Response time: 477ms - IP: 192.168.159.94 - User: user_1068 - RequestID: 1gq6rnkr3sj +2025-06-18T15:00:32.881Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 374ms - Rows affected: 55 - RequestID: 97yvb7kr1h +2025-06-18T15:00:32.981Z [INFO] user-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.232.72 - RequestID: hz7e1yfzzpb +2025-06-18T15:00:33.081Z [TRACE] user-service - Database DELETE on orders - Execution time: 403ms - Rows affected: 6 - RequestID: kye60jrrmef +2025-06-18T15:00:33.181Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.33.76 - RequestID: aizu7ovzhd +2025-06-18T15:00:33.281Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1237ms - IP: 192.168.1.152 - User: user_1037 - RequestID: tdp7532pnkb +2025-06-18T15:00:33.381Z [INFO] notification-service - GET /api/v1/auth/login - Status: 403 - Response time: 986ms - IP: 192.168.235.117 - User: user_1007 - RequestID: 4tx5ehyvqbp +2025-06-18T15:00:33.481Z [INFO] user-service - Database SELECT on orders - Execution time: 82ms - Rows affected: 22 - RequestID: 6kt3ybhpv1e +2025-06-18T15:00:33.581Z [TRACE] payment-service - Database INSERT on products - Execution time: 202ms - Rows affected: 40 - RequestID: 7e1ta8o3nxv +2025-06-18T15:00:33.681Z [DEBUG] payment-service - Auth event: logout - User: user_1071 - IP: 192.168.30.79 - RequestID: kzkf5e7umj +2025-06-18T15:00:33.781Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 979ms - RequestID: ygbfi3cp1ak +2025-06-18T15:00:33.881Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 601ms - IP: 192.168.158.144 - User: user_1063 - RequestID: m5zpis6401n +2025-06-18T15:00:33.981Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 403 - Response time: 324ms - IP: 192.168.174.114 - User: user_1046 - RequestID: xb5h6xvlu1f +2025-06-18T15:00:34.081Z [TRACE] payment-service - Auth event: login_failed - User: user_1044 - IP: 192.168.36.218 - RequestID: cddsyfuj64 +2025-06-18T15:00:34.181Z [DEBUG] auth-service - Database SELECT on products - Execution time: 414ms - Rows affected: 39 - RequestID: x42eytm65rg +2025-06-18T15:00:34.281Z [INFO] user-service - Operation: webhook_sent - Processing time: 828ms - RequestID: 3ufftkkj7fu +2025-06-18T15:00:34.381Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 242ms - IP: 192.168.227.233 - User: user_1069 - RequestID: 7njwpagg65k +2025-06-18T15:00:34.481Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 404 - Response time: 430ms - IP: 192.168.53.133 - User: user_1021 - RequestID: zmuoh5qvrds +2025-06-18T15:00:34.581Z [INFO] inventory-service - Auth event: login_success - User: user_1004 - IP: 192.168.53.133 - RequestID: 5ed3lb03zcv +2025-06-18T15:00:34.681Z [DEBUG] payment-service - Operation: email_sent - Processing time: 562ms - RequestID: yyso1o2qzn +2025-06-18T15:00:34.781Z [INFO] order-service - Auth event: login_success - User: user_1091 - IP: 192.168.79.116 - RequestID: abkvp7wyo7j +2025-06-18T15:00:34.881Z [INFO] user-service - Operation: email_sent - Processing time: 760ms - RequestID: 2opxetl7avx +2025-06-18T15:00:34.981Z [DEBUG] order-service - Database INSERT on users - Execution time: 66ms - Rows affected: 94 - RequestID: d8g4pcyifid +2025-06-18T15:00:35.081Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 30ms - Rows affected: 64 - RequestID: f3htwfdzljt +2025-06-18T15:00:35.181Z [INFO] user-service - Auth event: login_success - User: user_1095 - IP: 192.168.141.100 - RequestID: p1m79juf8n +2025-06-18T15:00:35.281Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 637ms - RequestID: l5j523m889 +2025-06-18T15:00:35.381Z [TRACE] user-service - GET /api/v1/auth/login - Status: 201 - Response time: 1383ms - IP: 192.168.232.72 - User: user_1064 - RequestID: y0bnwx65lhr +2025-06-18T15:00:35.481Z [TRACE] inventory-service - Operation: order_created - Processing time: 1003ms - RequestID: i3u1kggpfir +2025-06-18T15:00:35.581Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.79.143 - RequestID: v1ldo662cgi +2025-06-18T15:00:35.681Z [DEBUG] order-service - Operation: cache_miss - Processing time: 337ms - RequestID: bd25m7e5eto +2025-06-18T15:00:35.781Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.79.141 - RequestID: 7buvv8kbedj +2025-06-18T15:00:35.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1061 - IP: 192.168.189.103 - RequestID: n6dtb422ja +2025-06-18T15:00:35.981Z [TRACE] user-service - Operation: cache_hit - Processing time: 624ms - RequestID: 9j5xbutmslc +2025-06-18T15:00:36.081Z [INFO] user-service - GET /api/v1/payments - Status: 200 - Response time: 1672ms - IP: 192.168.79.116 - User: user_1040 - RequestID: jj9n4wcuo3 +2025-06-18T15:00:36.181Z [DEBUG] auth-service - Operation: order_created - Processing time: 581ms - RequestID: zdyj3sptlip +2025-06-18T15:00:36.281Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1711ms - IP: 192.168.1.152 - User: user_1094 - RequestID: z6d6uq1aukp +2025-06-18T15:00:36.381Z [DEBUG] user-service - Operation: order_created - Processing time: 208ms - RequestID: pavcmc8inz +2025-06-18T15:00:36.481Z [TRACE] inventory-service - Database INSERT on users - Execution time: 413ms - Rows affected: 84 - RequestID: 5z3lp2xg7f4 +2025-06-18T15:00:36.581Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 68ms - IP: 192.168.113.218 - User: user_1098 - RequestID: f6k9wm4mioe +2025-06-18T15:00:36.681Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 366ms - Rows affected: 47 - RequestID: g0fjbp7r4wa +2025-06-18T15:00:36.781Z [INFO] auth-service - Operation: cache_hit - Processing time: 875ms - RequestID: 7j74oev1etb +2025-06-18T15:00:36.881Z [DEBUG] notification-service - Auth event: login_failed - User: user_1057 - IP: 192.168.170.215 - RequestID: wdyov3f9k6n +2025-06-18T15:00:36.981Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 407ms - RequestID: 5nujf4bclqe +2025-06-18T15:00:37.081Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 598ms - IP: 192.168.181.225 - User: user_1098 - RequestID: 26wnmhcijxb +2025-06-18T15:00:37.181Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 503 - Response time: 482ms - IP: 192.168.11.60 - User: user_1079 - RequestID: fjv8rftc0x6 +2025-06-18T15:00:37.281Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 502 - Response time: 286ms - IP: 192.168.32.38 - User: user_1058 - RequestID: shh7khic3ll +2025-06-18T15:00:37.381Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1167ms - IP: 192.168.68.128 - User: user_1010 - RequestID: jm47lui0bdq +2025-06-18T15:00:37.481Z [INFO] payment-service - Database UPDATE on orders - Execution time: 322ms - Rows affected: 47 - RequestID: 6af1un3y8b6 +2025-06-18T15:00:37.581Z [TRACE] auth-service - POST /api/v1/orders - Status: 403 - Response time: 366ms - IP: 192.168.10.184 - User: user_1067 - RequestID: dr46nvxzzdj +2025-06-18T15:00:37.681Z [INFO] user-service - Operation: email_sent - Processing time: 199ms - RequestID: kneer2dtvxm +2025-06-18T15:00:37.781Z [INFO] auth-service - Operation: order_created - Processing time: 172ms - RequestID: qsjtg5sx7bf +2025-06-18T15:00:37.881Z [DEBUG] payment-service - Auth event: login_failed - User: user_1076 - IP: 192.168.235.117 - RequestID: wliejsnryq +2025-06-18T15:00:37.981Z [TRACE] user-service - GET /api/v1/auth/login - Status: 404 - Response time: 132ms - IP: 192.168.167.32 - User: user_1054 - RequestID: hcx1ujpea59 +2025-06-18T15:00:38.081Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 404ms - Rows affected: 0 - RequestID: x72yni9y99j +2025-06-18T15:00:38.181Z [TRACE] notification-service - Auth event: logout - User: user_1045 - IP: 192.168.170.215 - RequestID: r4y98f692l +2025-06-18T15:00:38.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.181.225 - RequestID: 4xmn5r2zkdr +2025-06-18T15:00:38.381Z [INFO] user-service - Auth event: login_success - User: user_1059 - IP: 192.168.181.225 - RequestID: h5m6a5bzxth +2025-06-18T15:00:38.481Z [TRACE] user-service - Auth event: login_success - User: user_1068 - IP: 192.168.181.225 - RequestID: ni3i8demhs +2025-06-18T15:00:38.581Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 326ms - RequestID: wgcjch79k5 +2025-06-18T15:00:38.681Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 130ms - Rows affected: 82 - RequestID: 32u7p6gjjmq +2025-06-18T15:00:38.781Z [INFO] user-service - Database DELETE on users - Execution time: 18ms - Rows affected: 45 - RequestID: sofbvfzd0q +2025-06-18T15:00:38.881Z [TRACE] notification-service - Operation: cache_miss - Processing time: 299ms - RequestID: gzz2m6zo44h +2025-06-18T15:00:38.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 491ms - RequestID: 77dirpyrtmk +2025-06-18T15:00:39.081Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 125ms - Rows affected: 19 - RequestID: yyorm4o0gjq +2025-06-18T15:00:39.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 427ms - RequestID: s2npzps1ge +2025-06-18T15:00:39.281Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 769ms - IP: 192.168.10.184 - User: user_1015 - RequestID: 94b1o5tdwdo +2025-06-18T15:00:39.381Z [INFO] order-service - Database DELETE on users - Execution time: 10ms - Rows affected: 70 - RequestID: v91qr5xlzz8 +2025-06-18T15:00:39.481Z [TRACE] user-service - Database SELECT on sessions - Execution time: 390ms - Rows affected: 3 - RequestID: t60th66drgs +2025-06-18T15:00:39.581Z [INFO] notification-service - Operation: inventory_updated - Processing time: 733ms - RequestID: yb27k8dxd0e +2025-06-18T15:00:39.681Z [TRACE] user-service - DELETE /api/v1/orders - Status: 400 - Response time: 253ms - IP: 192.168.97.87 - User: user_1083 - RequestID: udo4mpucs8 +2025-06-18T15:00:39.781Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 71ms - Rows affected: 5 - RequestID: smmlawrr62 +2025-06-18T15:00:39.881Z [TRACE] payment-service - Operation: cache_hit - Processing time: 644ms - RequestID: c0xzmt25m +2025-06-18T15:00:39.981Z [TRACE] payment-service - Auth event: logout - User: user_1038 - IP: 192.168.227.77 - RequestID: lp2yrhw4ty +2025-06-18T15:00:40.081Z [INFO] user-service - Database SELECT on payments - Execution time: 74ms - Rows affected: 65 - RequestID: yzbse5cuexp +2025-06-18T15:00:40.181Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 404 - Response time: 1781ms - IP: 192.168.33.76 - User: user_1082 - RequestID: ftk67zw7nz +2025-06-18T15:00:40.281Z [INFO] auth-service - Operation: webhook_sent - Processing time: 839ms - RequestID: dcpqxqmlplm +2025-06-18T15:00:40.381Z [TRACE] user-service - Auth event: logout - User: user_1047 - IP: 192.168.113.218 - RequestID: jq8kg2t15hs +2025-06-18T15:00:40.481Z [TRACE] notification-service - Operation: email_sent - Processing time: 753ms - RequestID: 0uduno1vg97r +2025-06-18T15:00:40.581Z [INFO] notification-service - Database INSERT on orders - Execution time: 28ms - Rows affected: 77 - RequestID: z3if5v3shs +2025-06-18T15:00:40.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 268ms - RequestID: 1l32x7gbqws +2025-06-18T15:00:40.781Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 284ms - RequestID: j16vekvx78b +2025-06-18T15:00:40.881Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 404 - Response time: 174ms - IP: 192.168.64.33 - User: user_1090 - RequestID: kiau4jo44cd +2025-06-18T15:00:40.981Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 363ms - Rows affected: 57 - RequestID: hn5ejgimvtn +2025-06-18T15:00:41.081Z [TRACE] order-service - Operation: inventory_updated - Processing time: 176ms - RequestID: ijopc7iudpo +2025-06-18T15:00:41.181Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1506ms - IP: 192.168.227.77 - User: user_1031 - RequestID: udqcu3shq8 +2025-06-18T15:00:41.281Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 391ms - RequestID: sssb3yi5vq +2025-06-18T15:00:41.381Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 400 - Response time: 1716ms - IP: 192.168.44.5 - User: user_1000 - RequestID: olfrp3grnz +2025-06-18T15:00:41.481Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1115ms - IP: 192.168.247.134 - User: user_1053 - RequestID: 5bte64429fa +2025-06-18T15:00:41.581Z [INFO] order-service - GET /api/v1/users - Status: 200 - Response time: 56ms - IP: 192.168.32.38 - User: user_1044 - RequestID: 013m6q3zv7lbd +2025-06-18T15:00:41.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 205ms - RequestID: qzpj5inizcd +2025-06-18T15:00:41.781Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 512ms - IP: 192.168.144.38 - User: user_1010 - RequestID: u0b9oq1rdpm +2025-06-18T15:00:41.881Z [INFO] auth-service - Auth event: password_change - User: user_1070 - IP: 192.168.235.117 - RequestID: mey5o4u9rmp +2025-06-18T15:00:41.981Z [INFO] order-service - Auth event: login_success - User: user_1008 - IP: 192.168.196.226 - RequestID: wjucbmf9xlq +2025-06-18T15:00:42.081Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1329ms - IP: 192.168.85.229 - User: user_1095 - RequestID: ur76juiy7bk +2025-06-18T15:00:42.181Z [INFO] user-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1972ms - IP: 192.168.79.116 - User: user_1025 - RequestID: z1m0pmmrqwp +2025-06-18T15:00:42.281Z [INFO] order-service - Operation: cache_hit - Processing time: 593ms - RequestID: 4s2v41kt13 +2025-06-18T15:00:42.381Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 401 - Response time: 1544ms - IP: 192.168.81.206 - User: user_1079 - RequestID: ezksjp5mdw +2025-06-18T15:00:42.481Z [DEBUG] order-service - Operation: cache_miss - Processing time: 374ms - RequestID: toqwnjxscok +2025-06-18T15:00:42.581Z [INFO] notification-service - Database INSERT on orders - Execution time: 498ms - Rows affected: 47 - RequestID: e3ob0lx190n +2025-06-18T15:00:42.681Z [TRACE] inventory-service - Auth event: login_success - User: user_1046 - IP: 192.168.235.117 - RequestID: kj9y4l60li +2025-06-18T15:00:42.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1050 - IP: 192.168.141.100 - RequestID: j99tk9w2g3c +2025-06-18T15:00:42.881Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 404 - Response time: 221ms - IP: 192.168.68.158 - User: user_1028 - RequestID: 8u3i1iyymfn +2025-06-18T15:00:42.981Z [INFO] order-service - GET /api/v1/auth/logout - Status: 201 - Response time: 390ms - IP: 192.168.247.134 - User: user_1001 - RequestID: usd6fcowenj +2025-06-18T15:00:43.081Z [TRACE] auth-service - Operation: order_created - Processing time: 922ms - RequestID: 1w4xyz80u6m +2025-06-18T15:00:43.181Z [INFO] user-service - Operation: cache_hit - Processing time: 395ms - RequestID: c2cujxmu2bp +2025-06-18T15:00:43.281Z [INFO] auth-service - DELETE /api/v1/orders - Status: 502 - Response time: 637ms - IP: 192.168.194.41 - User: user_1035 - RequestID: j899su4mrj +2025-06-18T15:00:43.381Z [INFO] inventory-service - Operation: cache_hit - Processing time: 468ms - RequestID: 4ej44dscpep +2025-06-18T15:00:43.481Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 73ms - RequestID: odl4kwirvvg +2025-06-18T15:00:43.581Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1755ms - IP: 192.168.229.123 - User: user_1095 - RequestID: r0iq7wmfmk +2025-06-18T15:00:43.681Z [TRACE] order-service - Database INSERT on sessions - Execution time: 285ms - Rows affected: 69 - RequestID: k1i3ymr072d +2025-06-18T15:00:43.781Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 993ms - RequestID: omx1rm42e4c +2025-06-18T15:00:43.881Z [DEBUG] user-service - PATCH /api/v1/users - Status: 401 - Response time: 1391ms - IP: 192.168.133.7 - User: user_1064 - RequestID: 2l9vsrjljsp +2025-06-18T15:00:43.981Z [INFO] order-service - DELETE /api/v1/orders - Status: 503 - Response time: 569ms - IP: 192.168.53.133 - User: user_1085 - RequestID: mjno1w7ixm +2025-06-18T15:00:44.081Z [DEBUG] order-service - Operation: cache_miss - Processing time: 756ms - RequestID: 4x8pq7fg5sl +2025-06-18T15:00:44.181Z [TRACE] notification-service - Operation: payment_processed - Processing time: 241ms - RequestID: i96zyhhmgvk +2025-06-18T15:00:44.281Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 548ms - RequestID: 2n3h8oy5dir +2025-06-18T15:00:44.381Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 777ms - RequestID: s78vtq4x6lj +2025-06-18T15:00:44.481Z [DEBUG] order-service - Auth event: password_change - User: user_1072 - IP: 192.168.242.165 - RequestID: xaxkk1zb9c9 +2025-06-18T15:00:44.581Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 188ms - Rows affected: 6 - RequestID: j11mdo17t1r +2025-06-18T15:00:44.681Z [INFO] order-service - Operation: payment_processed - Processing time: 246ms - RequestID: nf5d2m5jol +2025-06-18T15:00:44.781Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 988ms - RequestID: eqz1izepgll +2025-06-18T15:00:44.881Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 500 - Response time: 805ms - IP: 192.168.138.123 - User: user_1017 - RequestID: 0derql9h2y8n +2025-06-18T15:00:44.981Z [INFO] payment-service - Database DELETE on users - Execution time: 88ms - Rows affected: 19 - RequestID: 0o7h03118tr +2025-06-18T15:00:45.081Z [INFO] notification-service - Auth event: logout - User: user_1091 - IP: 192.168.229.123 - RequestID: jnlccfhdnqo +2025-06-18T15:00:45.181Z [INFO] payment-service - Operation: inventory_updated - Processing time: 589ms - RequestID: 7oxbt4kp3ev +2025-06-18T15:00:45.281Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 997ms - RequestID: 61b62r0eh18 +2025-06-18T15:00:45.381Z [DEBUG] payment-service - Auth event: password_change - User: user_1058 - IP: 192.168.144.38 - RequestID: 9eh3mitapx5 +2025-06-18T15:00:45.481Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 152ms - Rows affected: 0 - RequestID: nem43nayaid +2025-06-18T15:00:45.581Z [TRACE] payment-service - Database DELETE on orders - Execution time: 488ms - Rows affected: 44 - RequestID: mlx9kemule +2025-06-18T15:00:45.681Z [INFO] payment-service - Auth event: login_success - User: user_1006 - IP: 192.168.181.225 - RequestID: otolaridjcn +2025-06-18T15:00:45.781Z [INFO] notification-service - PATCH /api/v1/orders - Status: 200 - Response time: 1615ms - IP: 192.168.229.123 - User: user_1001 - RequestID: oy19cwm9sy +2025-06-18T15:00:45.881Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 508ms - RequestID: e5rwgybb35q +2025-06-18T15:00:45.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.232.72 - RequestID: 4rxocffcyxb +2025-06-18T15:00:46.081Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 152ms - Rows affected: 41 - RequestID: 8lzfern7696 +2025-06-18T15:00:46.181Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 79ms - Rows affected: 91 - RequestID: tiinn3gbgd +2025-06-18T15:00:46.281Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 90ms - Rows affected: 11 - RequestID: cuc0byld1ej +2025-06-18T15:00:46.381Z [DEBUG] user-service - Auth event: login_success - User: user_1071 - IP: 192.168.138.123 - RequestID: 7zlm1m9d2kc +2025-06-18T15:00:46.481Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1521ms - IP: 192.168.247.134 - User: user_1062 - RequestID: az1nf4ibixk +2025-06-18T15:00:46.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 1000ms - RequestID: 6ftu2k28h9c +2025-06-18T15:00:46.681Z [TRACE] inventory-service - Operation: order_created - Processing time: 980ms - RequestID: 6z8iqf7pms8 +2025-06-18T15:00:46.781Z [DEBUG] order-service - Auth event: login_success - User: user_1039 - IP: 192.168.97.87 - RequestID: 3g45t0770fz +2025-06-18T15:00:46.881Z [INFO] auth-service - Operation: payment_processed - Processing time: 977ms - RequestID: 9q438uvqx6 +2025-06-18T15:00:46.981Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 500 - Response time: 601ms - IP: 192.168.44.5 - User: user_1013 - RequestID: o0qt4jzxasr +2025-06-18T15:00:47.081Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 427ms - Rows affected: 69 - RequestID: 9xcugmcbei6 +2025-06-18T15:00:47.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1050 - IP: 192.168.31.117 - RequestID: xzs7woqe13 +2025-06-18T15:00:47.281Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 451ms - RequestID: 3hdy4a6qkfh +2025-06-18T15:00:47.381Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 403 - Response time: 227ms - IP: 192.168.10.184 - User: user_1085 - RequestID: c4s0hwy6zym +2025-06-18T15:00:47.481Z [DEBUG] notification-service - Operation: email_sent - Processing time: 1007ms - RequestID: 2m4dpuup5z3 +2025-06-18T15:00:47.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 1016ms - RequestID: r27h2umuhxj +2025-06-18T15:00:47.681Z [DEBUG] order-service - PUT /api/v1/users - Status: 500 - Response time: 311ms - IP: 192.168.97.87 - User: user_1087 - RequestID: 5oqa8486wz +2025-06-18T15:00:47.781Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 1010ms - RequestID: 5cxupm5aj08 +2025-06-18T15:00:47.881Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.133.7 - RequestID: 3ewevgrcmov +2025-06-18T15:00:47.981Z [INFO] notification-service - Database DELETE on orders - Execution time: 84ms - Rows affected: 36 - RequestID: 73xktzkw5wp +2025-06-18T15:00:48.081Z [TRACE] user-service - Operation: notification_queued - Processing time: 877ms - RequestID: 5wnw7gcaydd +2025-06-18T15:00:48.181Z [DEBUG] order-service - Auth event: password_change - User: user_1039 - IP: 192.168.227.77 - RequestID: qrtppbpjgl +2025-06-18T15:00:48.281Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 403 - Response time: 92ms - IP: 192.168.44.5 - User: user_1002 - RequestID: uh5kkvo7rtg +2025-06-18T15:00:48.381Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 140ms - RequestID: vt2g2e6t0cn +2025-06-18T15:00:48.481Z [TRACE] payment-service - Operation: email_sent - Processing time: 853ms - RequestID: um94usa40xo +2025-06-18T15:00:48.581Z [INFO] notification-service - Database SELECT on sessions - Execution time: 249ms - Rows affected: 5 - RequestID: 7y8o7dz6cjv +2025-06-18T15:00:48.681Z [TRACE] inventory-service - GET /api/v1/users - Status: 500 - Response time: 515ms - IP: 192.168.64.33 - User: user_1085 - RequestID: dy48uva2up8 +2025-06-18T15:00:48.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1020 - IP: 192.168.113.218 - RequestID: 5qtm79o04ah +2025-06-18T15:00:48.881Z [INFO] inventory-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.227.233 - RequestID: 78oysfnnzpp +2025-06-18T15:00:48.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.100.240 - RequestID: r8leeua2lzd +2025-06-18T15:00:49.081Z [INFO] user-service - Operation: email_sent - Processing time: 204ms - RequestID: 81xoewdik7 +2025-06-18T15:00:49.181Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 500 - Response time: 1079ms - IP: 192.168.1.152 - User: user_1030 - RequestID: shbf8f41u3 +2025-06-18T15:00:49.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.32.38 - RequestID: 1d37kibd89s +2025-06-18T15:00:49.381Z [DEBUG] auth-service - GET /api/v1/users - Status: 403 - Response time: 349ms - IP: 192.168.211.72 - User: user_1070 - RequestID: s8cuapjnbj +2025-06-18T15:00:49.481Z [TRACE] order-service - Auth event: login_failed - User: user_1086 - IP: 192.168.79.141 - RequestID: v03n660p6f9 +2025-06-18T15:00:49.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.174.114 - RequestID: zmuwu5hd9ur +2025-06-18T15:00:49.681Z [INFO] inventory-service - POST /api/v1/inventory - Status: 500 - Response time: 1668ms - IP: 192.168.196.226 - User: user_1061 - RequestID: 8anpguzxn1 +2025-06-18T15:00:49.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1017 - IP: 192.168.79.141 - RequestID: u51xkfixu0j +2025-06-18T15:00:49.881Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 990ms - RequestID: 4jfhzedzq39 +2025-06-18T15:00:49.981Z [INFO] payment-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.31.117 - RequestID: 0xcmzppy3i6 +2025-06-18T15:00:50.081Z [TRACE] user-service - Auth event: password_change - User: user_1096 - IP: 192.168.240.169 - RequestID: 77lm7kh4gr5 +2025-06-18T15:00:50.181Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 748ms - IP: 192.168.100.240 - User: user_1006 - RequestID: gxlyid0xlhf +2025-06-18T15:00:50.281Z [INFO] user-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1137ms - IP: 192.168.53.133 - User: user_1008 - RequestID: y6vtyu3os3 +2025-06-18T15:00:50.381Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 226ms - Rows affected: 14 - RequestID: 79m4iu9ykqb +2025-06-18T15:00:50.481Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 187ms - Rows affected: 57 - RequestID: tucwhvkseb +2025-06-18T15:00:50.581Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 503 - Response time: 812ms - IP: 192.168.242.165 - User: user_1065 - RequestID: ha6uyyazjfi +2025-06-18T15:00:50.681Z [INFO] auth-service - Operation: cache_hit - Processing time: 694ms - RequestID: pdmuzviofo +2025-06-18T15:00:50.781Z [INFO] auth-service - Operation: inventory_updated - Processing time: 167ms - RequestID: iudvzftmqhm +2025-06-18T15:00:50.881Z [TRACE] order-service - Database DELETE on sessions - Execution time: 398ms - Rows affected: 60 - RequestID: p1cz50ih99 +2025-06-18T15:00:50.981Z [DEBUG] notification-service - Operation: email_sent - Processing time: 482ms - RequestID: kobr6ei24f +2025-06-18T15:00:51.081Z [DEBUG] notification-service - Database SELECT on products - Execution time: 124ms - Rows affected: 86 - RequestID: e5zsowhoiuw +2025-06-18T15:00:51.181Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1488ms - IP: 192.168.196.226 - User: user_1010 - RequestID: zueelfk53m +2025-06-18T15:00:51.281Z [DEBUG] user-service - Operation: notification_queued - Processing time: 1014ms - RequestID: e0qkc8je4xa +2025-06-18T15:00:51.381Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 54ms - Rows affected: 27 - RequestID: slbxxn3eid +2025-06-18T15:00:51.481Z [TRACE] notification-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.81.206 - RequestID: a2gc3fat92a +2025-06-18T15:00:51.581Z [DEBUG] notification-service - Database SELECT on products - Execution time: 473ms - Rows affected: 73 - RequestID: k8y2jqpjuv +2025-06-18T15:00:51.681Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 222ms - RequestID: nk9z166pqzi +2025-06-18T15:00:51.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1057 - IP: 192.168.240.169 - RequestID: df729l1ip2t +2025-06-18T15:00:51.881Z [TRACE] order-service - GET /api/v1/orders - Status: 201 - Response time: 1432ms - IP: 192.168.44.5 - User: user_1079 - RequestID: 4l1kj36hlk4 +2025-06-18T15:00:51.981Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 153ms - RequestID: 9716a59y1 +2025-06-18T15:00:52.081Z [INFO] inventory-service - Auth event: login_success - User: user_1079 - IP: 192.168.196.226 - RequestID: dxfq2jo7yvg +2025-06-18T15:00:52.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 707ms - RequestID: 6sop3nkq0lu +2025-06-18T15:00:52.281Z [INFO] payment-service - Operation: cache_hit - Processing time: 136ms - RequestID: rmwu86ofcsf +2025-06-18T15:00:52.381Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1836ms - IP: 192.168.147.171 - User: user_1084 - RequestID: obt48dgamx +2025-06-18T15:00:52.481Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 428ms - RequestID: 0uuvptz9f3p +2025-06-18T15:00:52.581Z [INFO] order-service - Database INSERT on sessions - Execution time: 38ms - Rows affected: 85 - RequestID: 0goairtaxv6q +2025-06-18T15:00:52.681Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 503 - Response time: 1116ms - IP: 192.168.79.143 - User: user_1084 - RequestID: 0bptsmn8f8qa +2025-06-18T15:00:52.781Z [INFO] payment-service - Database UPDATE on orders - Execution time: 387ms - Rows affected: 62 - RequestID: g1irlbfe7yh +2025-06-18T15:00:52.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1064 - IP: 192.168.189.103 - RequestID: zii19j76wah +2025-06-18T15:00:52.981Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 201 - Response time: 617ms - IP: 192.168.247.134 - User: user_1001 - RequestID: hjhbrv4bgtc +2025-06-18T15:00:53.081Z [INFO] order-service - Operation: notification_queued - Processing time: 733ms - RequestID: hp97t6khoa8 +2025-06-18T15:00:53.181Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 422ms - Rows affected: 91 - RequestID: rqa2zcibnc +2025-06-18T15:00:53.281Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 381ms - RequestID: t56jwtz9fu +2025-06-18T15:00:53.381Z [DEBUG] order-service - Auth event: login_failed - User: user_1083 - IP: 192.168.81.206 - RequestID: ud5t4mtsjtj +2025-06-18T15:00:53.481Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1677ms - IP: 192.168.113.218 - User: user_1066 - RequestID: jrq5414vzz +2025-06-18T15:00:53.581Z [INFO] user-service - Operation: order_created - Processing time: 260ms - RequestID: azac7gir7p5 +2025-06-18T15:00:53.681Z [INFO] order-service - Database UPDATE on sessions - Execution time: 429ms - Rows affected: 52 - RequestID: 8k5r8am1fsy +2025-06-18T15:00:53.781Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 400 - Response time: 1034ms - IP: 192.168.240.169 - User: user_1028 - RequestID: k767696wpdq +2025-06-18T15:00:53.881Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 7ms - Rows affected: 76 - RequestID: 3ouxaqumz7f +2025-06-18T15:00:53.981Z [TRACE] inventory-service - Auth event: password_change - User: user_1008 - IP: 192.168.242.165 - RequestID: sy1yea6oda +2025-06-18T15:00:54.081Z [TRACE] auth-service - Database INSERT on payments - Execution time: 483ms - Rows affected: 68 - RequestID: 8mfvaxk88d4 +2025-06-18T15:00:54.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 666ms - RequestID: wx43sr6lje +2025-06-18T15:00:54.281Z [TRACE] order-service - Auth event: login_success - User: user_1081 - IP: 192.168.240.169 - RequestID: xc016m6pes +2025-06-18T15:00:54.381Z [TRACE] user-service - Database DELETE on sessions - Execution time: 178ms - Rows affected: 70 - RequestID: gvxvk2fgy7 +2025-06-18T15:00:54.481Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 340ms - Rows affected: 38 - RequestID: jf5u8m6i7ap +2025-06-18T15:00:54.581Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 400 - Response time: 319ms - IP: 192.168.194.41 - User: user_1038 - RequestID: ziddh1ewra +2025-06-18T15:00:54.681Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 106ms - IP: 192.168.30.79 - User: user_1022 - RequestID: walyvd1hkdk +2025-06-18T15:00:54.781Z [INFO] notification-service - DELETE /api/v1/orders - Status: 403 - Response time: 1225ms - IP: 192.168.211.72 - User: user_1036 - RequestID: xsfcalh4ixm +2025-06-18T15:00:54.881Z [DEBUG] order-service - Operation: cache_hit - Processing time: 117ms - RequestID: csbeleoelgj +2025-06-18T15:00:54.981Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1323ms - IP: 192.168.104.37 - User: user_1054 - RequestID: x03cg0pe5wf +2025-06-18T15:00:55.081Z [INFO] payment-service - Operation: webhook_sent - Processing time: 700ms - RequestID: spgqytz7sq +2025-06-18T15:00:55.181Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 404 - Response time: 680ms - IP: 192.168.85.229 - User: user_1025 - RequestID: q7e57umree +2025-06-18T15:00:55.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1067 - IP: 192.168.133.7 - RequestID: bi9ya7wtd86 +2025-06-18T15:00:55.381Z [INFO] user-service - PATCH /api/v1/users - Status: 503 - Response time: 1205ms - IP: 192.168.242.165 - User: user_1000 - RequestID: ehfcmtdzoyu +2025-06-18T15:00:55.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1022 - IP: 192.168.242.165 - RequestID: 22e6mtu1j6r +2025-06-18T15:00:55.581Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 700ms - RequestID: pzj6n9b2zh +2025-06-18T15:00:55.681Z [INFO] order-service - Auth event: login_success - User: user_1075 - IP: 192.168.144.38 - RequestID: d81510zmmym +2025-06-18T15:00:55.781Z [DEBUG] auth-service - Auth event: logout - User: user_1085 - IP: 192.168.133.7 - RequestID: g53bk87bhxd +2025-06-18T15:00:55.881Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1023ms - IP: 192.168.227.77 - User: user_1084 - RequestID: k3ztlqbw2vd +2025-06-18T15:00:55.981Z [DEBUG] inventory-service - Operation: order_created - Processing time: 459ms - RequestID: oxyukigccvq +2025-06-18T15:00:56.081Z [DEBUG] auth-service - Operation: order_created - Processing time: 956ms - RequestID: y8zqf2kepb +2025-06-18T15:00:56.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 775ms - RequestID: 4tkbu4530e +2025-06-18T15:00:56.281Z [TRACE] order-service - Database DELETE on sessions - Execution time: 80ms - Rows affected: 88 - RequestID: hrbi64dst0s +2025-06-18T15:00:56.381Z [INFO] order-service - Operation: cache_miss - Processing time: 876ms - RequestID: 0l06ekp8eaos +2025-06-18T15:00:56.481Z [DEBUG] user-service - POST /api/v1/inventory - Status: 403 - Response time: 1861ms - IP: 192.168.28.146 - User: user_1020 - RequestID: g7gkw1bevls +2025-06-18T15:00:56.581Z [TRACE] notification-service - Database INSERT on products - Execution time: 248ms - Rows affected: 91 - RequestID: ergc4qk9swi +2025-06-18T15:00:56.681Z [INFO] user-service - Operation: payment_processed - Processing time: 92ms - RequestID: umslpnhy5qf +2025-06-18T15:00:56.781Z [TRACE] inventory-service - Auth event: logout - User: user_1009 - IP: 192.168.85.229 - RequestID: v5w188vzfjo +2025-06-18T15:00:56.881Z [TRACE] order-service - Operation: webhook_sent - Processing time: 652ms - RequestID: gwbb7s6ang5 +2025-06-18T15:00:56.981Z [TRACE] user-service - Operation: cache_hit - Processing time: 1009ms - RequestID: fcgyv2xnvna +2025-06-18T15:00:57.081Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1771ms - IP: 192.168.242.165 - User: user_1072 - RequestID: r85waffvsf +2025-06-18T15:00:57.181Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 930ms - RequestID: 2t04ux1a5av +2025-06-18T15:00:57.281Z [TRACE] user-service - Auth event: login_failed - User: user_1063 - IP: 192.168.53.133 - RequestID: 8cgnrolbscg +2025-06-18T15:00:57.381Z [TRACE] user-service - Auth event: password_change - User: user_1083 - IP: 192.168.189.103 - RequestID: 2zp6ssc7jr4 +2025-06-18T15:00:57.481Z [DEBUG] auth-service - Database DELETE on products - Execution time: 168ms - Rows affected: 82 - RequestID: 603smch70if +2025-06-18T15:00:57.581Z [TRACE] notification-service - Operation: payment_processed - Processing time: 366ms - RequestID: 9c6smhv34ip +2025-06-18T15:00:57.681Z [INFO] payment-service - Auth event: logout - User: user_1078 - IP: 192.168.181.225 - RequestID: 9wfbt139u4b +2025-06-18T15:00:57.781Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 94ms - RequestID: jahj4j82939 +2025-06-18T15:00:57.881Z [TRACE] inventory-service - Auth event: login_success - User: user_1073 - IP: 192.168.104.37 - RequestID: 3327t5b89aw +2025-06-18T15:00:57.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1094 - IP: 192.168.85.229 - RequestID: cimu9hi3q49 +2025-06-18T15:00:58.081Z [TRACE] order-service - Database UPDATE on products - Execution time: 222ms - Rows affected: 3 - RequestID: l4g5bm3r6t +2025-06-18T15:00:58.181Z [INFO] user-service - Auth event: password_change - User: user_1076 - IP: 192.168.159.94 - RequestID: zgsnnit11a +2025-06-18T15:00:58.281Z [INFO] payment-service - GET /api/v1/inventory - Status: 401 - Response time: 1082ms - IP: 192.168.79.143 - User: user_1014 - RequestID: piq2p0yxnb9 +2025-06-18T15:00:58.381Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 412ms - Rows affected: 5 - RequestID: w6lju1xgc7 +2025-06-18T15:00:58.481Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 321ms - Rows affected: 92 - RequestID: 277n9iimk8t +2025-06-18T15:00:58.581Z [DEBUG] order-service - Database DELETE on products - Execution time: 342ms - Rows affected: 52 - RequestID: tiybd6ijh29 +2025-06-18T15:00:58.681Z [INFO] payment-service - Database SELECT on users - Execution time: 130ms - Rows affected: 56 - RequestID: wq3tkkk9u3r +2025-06-18T15:00:58.781Z [TRACE] auth-service - Operation: cache_miss - Processing time: 417ms - RequestID: ibtvql7wbgo +2025-06-18T15:00:58.881Z [INFO] notification-service - PUT /api/v1/inventory - Status: 400 - Response time: 252ms - IP: 192.168.100.240 - User: user_1005 - RequestID: oxqdgp425a +2025-06-18T15:00:58.981Z [INFO] inventory-service - Auth event: login_failed - User: user_1029 - IP: 192.168.133.7 - RequestID: kytuew67x7 +2025-06-18T15:00:59.081Z [TRACE] payment-service - Operation: cache_hit - Processing time: 856ms - RequestID: ixv5redt9zp +2025-06-18T15:00:59.181Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 502 - Response time: 1443ms - IP: 192.168.240.169 - User: user_1043 - RequestID: tdvwe48xxjd +2025-06-18T15:00:59.281Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1090ms - IP: 192.168.167.32 - User: user_1086 - RequestID: jtjav872j4j +2025-06-18T15:00:59.381Z [INFO] auth-service - Database DELETE on products - Execution time: 232ms - Rows affected: 37 - RequestID: azfxihfjh8l +2025-06-18T15:00:59.481Z [DEBUG] auth-service - Operation: email_sent - Processing time: 558ms - RequestID: ks4tcsbrfa +2025-06-18T15:00:59.581Z [TRACE] payment-service - Auth event: password_change - User: user_1041 - IP: 192.168.13.72 - RequestID: ur1nopnhj8 +2025-06-18T15:00:59.681Z [INFO] notification-service - Database DELETE on products - Execution time: 498ms - Rows affected: 86 - RequestID: 53flabyt4y +2025-06-18T15:00:59.781Z [TRACE] user-service - Operation: email_sent - Processing time: 140ms - RequestID: wtst2kdifd +2025-06-18T15:00:59.881Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 403 - Response time: 1795ms - IP: 192.168.28.146 - User: user_1086 - RequestID: o65nz0r8krn +2025-06-18T15:00:59.981Z [TRACE] payment-service - Auth event: password_change - User: user_1035 - IP: 192.168.11.60 - RequestID: oav28lm6dnc +2025-06-18T15:01:00.081Z [TRACE] user-service - Auth event: logout - User: user_1081 - IP: 192.168.181.225 - RequestID: h2ychk8rq3 +2025-06-18T15:01:00.181Z [TRACE] user-service - DELETE /api/v1/users - Status: 403 - Response time: 473ms - IP: 192.168.138.123 - User: user_1080 - RequestID: 1ft62j7jtuv +2025-06-18T15:01:00.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1001 - IP: 192.168.227.233 - RequestID: idiaxczwb3q +2025-06-18T15:01:00.381Z [DEBUG] order-service - Operation: cache_hit - Processing time: 316ms - RequestID: aqehac3hwgr +2025-06-18T15:01:00.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 970ms - RequestID: qoxabok677 +2025-06-18T15:01:00.581Z [INFO] inventory-service - Operation: cache_hit - Processing time: 776ms - RequestID: ac6zubdong +2025-06-18T15:01:00.681Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1864ms - IP: 192.168.227.77 - User: user_1091 - RequestID: 4mmoligp6s +2025-06-18T15:01:00.781Z [DEBUG] payment-service - Operation: order_created - Processing time: 763ms - RequestID: bkqjw3x863 +2025-06-18T15:01:00.881Z [TRACE] inventory-service - Auth event: logout - User: user_1054 - IP: 192.168.85.229 - RequestID: 97mhcmswc6j +2025-06-18T15:01:00.981Z [TRACE] order-service - Operation: order_created - Processing time: 503ms - RequestID: lqqe3ptwhs +2025-06-18T15:01:01.081Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 433ms - Rows affected: 95 - RequestID: n8ks5qla8p +2025-06-18T15:01:01.181Z [TRACE] order-service - Auth event: login_success - User: user_1053 - IP: 192.168.33.76 - RequestID: aq011p4z0u +2025-06-18T15:01:01.281Z [DEBUG] auth-service - Operation: order_created - Processing time: 802ms - RequestID: l0c6qkvndk +2025-06-18T15:01:01.381Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 361ms - RequestID: x37y0md3tkc +2025-06-18T15:01:01.481Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 232ms - Rows affected: 67 - RequestID: 1gp6br415na +2025-06-18T15:01:01.581Z [INFO] order-service - Database UPDATE on orders - Execution time: 198ms - Rows affected: 50 - RequestID: 2je71pshumi +2025-06-18T15:01:01.681Z [TRACE] payment-service - Database INSERT on orders - Execution time: 236ms - Rows affected: 70 - RequestID: 40mirxg273l +2025-06-18T15:01:01.781Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 413ms - RequestID: emyau9zj56q +2025-06-18T15:01:01.881Z [DEBUG] payment-service - Auth event: logout - User: user_1090 - IP: 192.168.81.206 - RequestID: 24u23x7it4o +2025-06-18T15:01:01.981Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 361ms - Rows affected: 72 - RequestID: 15jsrsodjct +2025-06-18T15:01:02.081Z [INFO] user-service - Operation: order_created - Processing time: 290ms - RequestID: 92tqedmu2mu +2025-06-18T15:01:02.181Z [DEBUG] auth-service - POST /api/v1/orders - Status: 401 - Response time: 1011ms - IP: 192.168.189.103 - User: user_1017 - RequestID: fa5sdfif0le +2025-06-18T15:01:02.281Z [DEBUG] notification-service - Auth event: logout - User: user_1018 - IP: 192.168.232.72 - RequestID: 6731mw3zfvo +2025-06-18T15:01:02.381Z [TRACE] order-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.28.146 - RequestID: w7u03dbmqe +2025-06-18T15:01:02.481Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 469ms - Rows affected: 94 - RequestID: v2ovzlr180m +2025-06-18T15:01:02.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 652ms - RequestID: l3siyk9nb1f +2025-06-18T15:01:02.681Z [INFO] auth-service - Operation: email_sent - Processing time: 206ms - RequestID: w4hz9z96if +2025-06-18T15:01:02.781Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.159.94 - RequestID: exv006ukohh +2025-06-18T15:01:02.881Z [TRACE] payment-service - Database DELETE on products - Execution time: 480ms - Rows affected: 34 - RequestID: aa7o3496ilr +2025-06-18T15:01:02.981Z [TRACE] notification-service - Operation: notification_queued - Processing time: 101ms - RequestID: 488u5nczorm +2025-06-18T15:01:03.081Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 217ms - Rows affected: 51 - RequestID: 0z8s8wxqarml +2025-06-18T15:01:03.181Z [TRACE] user-service - Auth event: login_failed - User: user_1027 - IP: 192.168.158.144 - RequestID: br4sm2na12n +2025-06-18T15:01:03.281Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 869ms - RequestID: xtrcl37g6er +2025-06-18T15:01:03.381Z [INFO] inventory-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.79.116 - RequestID: a6dmvqfdhph +2025-06-18T15:01:03.481Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 461ms - IP: 192.168.44.5 - User: user_1088 - RequestID: 2ixe396mvf4 +2025-06-18T15:01:03.581Z [TRACE] payment-service - Auth event: login_success - User: user_1007 - IP: 192.168.232.72 - RequestID: gjflhotdxhr +2025-06-18T15:01:03.681Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 714ms - RequestID: j4mq9vs9xml +2025-06-18T15:01:03.781Z [TRACE] notification-service - Database DELETE on users - Execution time: 407ms - Rows affected: 97 - RequestID: 2fmq478cf4i +2025-06-18T15:01:03.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1084 - IP: 192.168.46.63 - RequestID: krv5mz5wj6f +2025-06-18T15:01:03.981Z [DEBUG] user-service - Auth event: logout - User: user_1003 - IP: 192.168.10.184 - RequestID: 1n017gawwo8 +2025-06-18T15:01:04.081Z [INFO] inventory-service - POST /api/v1/inventory - Status: 403 - Response time: 1871ms - IP: 192.168.181.225 - User: user_1002 - RequestID: xy1j5ux7hcf +2025-06-18T15:01:04.181Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 330ms - Rows affected: 24 - RequestID: 6cxhf73n7vb +2025-06-18T15:01:04.281Z [DEBUG] notification-service - Auth event: logout - User: user_1021 - IP: 192.168.14.77 - RequestID: ro3pyzzyylh +2025-06-18T15:01:04.381Z [TRACE] auth-service - Operation: order_created - Processing time: 156ms - RequestID: qf44x9yhgdl +2025-06-18T15:01:04.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.11.60 - RequestID: hjv14jqwn5i +2025-06-18T15:01:04.581Z [TRACE] auth-service - PUT /api/v1/users - Status: 201 - Response time: 148ms - IP: 192.168.159.94 - User: user_1083 - RequestID: 7ax5p7wtseb +2025-06-18T15:01:04.681Z [DEBUG] user-service - Auth event: logout - User: user_1007 - IP: 192.168.100.240 - RequestID: 14hojwn8s5pr +2025-06-18T15:01:04.781Z [INFO] auth-service - Operation: email_sent - Processing time: 235ms - RequestID: 2xbfrv9tnen +2025-06-18T15:01:04.881Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 999ms - RequestID: ftsbs41buu +2025-06-18T15:01:04.981Z [DEBUG] auth-service - POST /api/v1/payments - Status: 200 - Response time: 1890ms - IP: 192.168.32.38 - User: user_1060 - RequestID: cy6d2672ed9 +2025-06-18T15:01:05.081Z [TRACE] auth-service - Database SELECT on products - Execution time: 75ms - Rows affected: 34 - RequestID: eoo4apuy2ap +2025-06-18T15:01:05.181Z [DEBUG] order-service - Auth event: login_success - User: user_1007 - IP: 192.168.13.72 - RequestID: n4kwojmu66s +2025-06-18T15:01:05.281Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1517ms - IP: 192.168.14.77 - User: user_1002 - RequestID: ibh66byqqn8 +2025-06-18T15:01:05.381Z [INFO] notification-service - Database UPDATE on orders - Execution time: 423ms - Rows affected: 84 - RequestID: wm3y1w776n +2025-06-18T15:01:05.481Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 200 - Response time: 180ms - IP: 192.168.174.114 - User: user_1032 - RequestID: xrxcc4o5nm +2025-06-18T15:01:05.581Z [INFO] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 1698ms - IP: 192.168.113.218 - User: user_1077 - RequestID: 189repw54kt +2025-06-18T15:01:05.681Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1186ms - IP: 192.168.97.87 - User: user_1071 - RequestID: 1qlctmfvblg +2025-06-18T15:01:05.781Z [INFO] payment-service - PUT /api/v1/orders - Status: 200 - Response time: 1201ms - IP: 192.168.247.134 - User: user_1070 - RequestID: 0f8eiuj469ng +2025-06-18T15:01:05.881Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 361ms - Rows affected: 1 - RequestID: xfj0eaxyizi +2025-06-18T15:01:05.981Z [TRACE] payment-service - Database INSERT on payments - Execution time: 222ms - Rows affected: 43 - RequestID: s0f0xk6sgv +2025-06-18T15:01:06.081Z [DEBUG] user-service - Database SELECT on products - Execution time: 66ms - Rows affected: 75 - RequestID: 2rgw8x4qwnn +2025-06-18T15:01:06.181Z [TRACE] order-service - Database INSERT on payments - Execution time: 386ms - Rows affected: 3 - RequestID: zn7zb1pu1rq +2025-06-18T15:01:06.281Z [TRACE] auth-service - Database UPDATE on products - Execution time: 294ms - Rows affected: 91 - RequestID: 9j1zl0fxajm +2025-06-18T15:01:06.381Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 130ms - IP: 192.168.240.169 - User: user_1030 - RequestID: qxh3pg3hqzi +2025-06-18T15:01:06.481Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 404 - Response time: 572ms - IP: 192.168.235.117 - User: user_1069 - RequestID: ti1f39rnk9 +2025-06-18T15:01:06.581Z [INFO] user-service - Database UPDATE on sessions - Execution time: 124ms - Rows affected: 24 - RequestID: j4co6lhaptl +2025-06-18T15:01:06.681Z [INFO] user-service - PATCH /api/v1/inventory - Status: 404 - Response time: 383ms - IP: 192.168.11.60 - User: user_1057 - RequestID: 4foqoxr7ruq +2025-06-18T15:01:06.781Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 401 - Response time: 832ms - IP: 192.168.235.117 - User: user_1083 - RequestID: gdmxjb3vsvf +2025-06-18T15:01:06.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1034 - IP: 192.168.10.184 - RequestID: pdm8o6w9ni +2025-06-18T15:01:06.981Z [INFO] auth-service - Database SELECT on sessions - Execution time: 313ms - Rows affected: 96 - RequestID: swmetaovrph +2025-06-18T15:01:07.081Z [TRACE] user-service - Database INSERT on sessions - Execution time: 51ms - Rows affected: 91 - RequestID: c5e9ut82nb +2025-06-18T15:01:07.181Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.242.165 - RequestID: slfhtjam80o +2025-06-18T15:01:07.281Z [DEBUG] payment-service - POST /api/v1/orders - Status: 401 - Response time: 638ms - IP: 192.168.181.225 - User: user_1007 - RequestID: 6hwlqfv1jrr +2025-06-18T15:01:07.381Z [TRACE] user-service - DELETE /api/v1/orders - Status: 503 - Response time: 1641ms - IP: 192.168.64.33 - User: user_1022 - RequestID: dkr3bsrh42 +2025-06-18T15:01:07.481Z [TRACE] order-service - Auth event: password_change - User: user_1032 - IP: 192.168.170.215 - RequestID: o16dn0p4ln9 +2025-06-18T15:01:07.581Z [INFO] order-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1327ms - IP: 192.168.158.144 - User: user_1048 - RequestID: 8frabyhw3g9 +2025-06-18T15:01:07.681Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 360ms - Rows affected: 50 - RequestID: mx9dm2wvwos +2025-06-18T15:01:07.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 267ms - RequestID: 4j4fj3ylosl +2025-06-18T15:01:07.881Z [DEBUG] auth-service - Auth event: logout - User: user_1073 - IP: 192.168.144.38 - RequestID: 9650lxbdkdq +2025-06-18T15:01:07.981Z [INFO] order-service - Database UPDATE on payments - Execution time: 233ms - Rows affected: 16 - RequestID: sctinl9c0n +2025-06-18T15:01:08.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.133.7 - RequestID: zzw4t0m9b4 +2025-06-18T15:01:08.181Z [TRACE] notification-service - Database INSERT on payments - Execution time: 387ms - Rows affected: 41 - RequestID: uow9nghm4pk +2025-06-18T15:01:08.281Z [INFO] notification-service - Auth event: password_change - User: user_1026 - IP: 192.168.68.158 - RequestID: fzug29v9y4v +2025-06-18T15:01:08.381Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 663ms - RequestID: pnlae6calgo +2025-06-18T15:01:08.481Z [TRACE] inventory-service - Operation: order_created - Processing time: 197ms - RequestID: wpp8myiocyk +2025-06-18T15:01:08.581Z [TRACE] inventory-service - POST /api/v1/users - Status: 502 - Response time: 514ms - IP: 192.168.104.37 - User: user_1065 - RequestID: 7ikpqm02jwm +2025-06-18T15:01:08.681Z [INFO] notification-service - Operation: order_created - Processing time: 416ms - RequestID: 2pk1sebm5k1 +2025-06-18T15:01:08.781Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1638ms - IP: 192.168.170.215 - User: user_1003 - RequestID: iy41m8ngnqc +2025-06-18T15:01:08.881Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.104.37 - RequestID: qoue2qr3k4c +2025-06-18T15:01:08.981Z [TRACE] auth-service - Database SELECT on users - Execution time: 367ms - Rows affected: 90 - RequestID: qvwf2rxh61 +2025-06-18T15:01:09.081Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 201 - Response time: 1019ms - IP: 192.168.64.33 - User: user_1099 - RequestID: wns1z1zuq7 +2025-06-18T15:01:09.181Z [TRACE] auth-service - Operation: cache_miss - Processing time: 1029ms - RequestID: dqy405x42r6 +2025-06-18T15:01:09.281Z [TRACE] notification-service - Database DELETE on products - Execution time: 345ms - Rows affected: 27 - RequestID: 8hljwxc5bbo +2025-06-18T15:01:09.381Z [INFO] notification-service - Auth event: login_success - User: user_1020 - IP: 192.168.247.134 - RequestID: hq5gil9q3ql +2025-06-18T15:01:09.481Z [DEBUG] order-service - Operation: order_created - Processing time: 378ms - RequestID: 4hg30460nj5 +2025-06-18T15:01:09.581Z [INFO] inventory-service - Database UPDATE on products - Execution time: 403ms - Rows affected: 12 - RequestID: 3w93zf9pen9 +2025-06-18T15:01:09.681Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 375ms - RequestID: ma4dybku3r8 +2025-06-18T15:01:09.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1040 - IP: 192.168.53.133 - RequestID: 6f04lzokb2k +2025-06-18T15:01:09.881Z [TRACE] user-service - DELETE /api/v1/orders - Status: 201 - Response time: 1764ms - IP: 192.168.187.199 - User: user_1029 - RequestID: a8p0wm5di6b +2025-06-18T15:01:09.981Z [TRACE] order-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.138.123 - RequestID: 3pjx2hamk7s +2025-06-18T15:01:10.081Z [TRACE] inventory-service - Database SELECT on products - Execution time: 228ms - Rows affected: 94 - RequestID: 1jo4lbbjfzb +2025-06-18T15:01:10.181Z [DEBUG] user-service - Auth event: logout - User: user_1069 - IP: 192.168.194.41 - RequestID: 55hsyji14ok +2025-06-18T15:01:10.281Z [INFO] auth-service - Database DELETE on payments - Execution time: 208ms - Rows affected: 13 - RequestID: duhqp8grpn +2025-06-18T15:01:10.381Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 487ms - Rows affected: 77 - RequestID: wb5wchutu7 +2025-06-18T15:01:10.481Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 178ms - Rows affected: 82 - RequestID: 2jfcnpnpdyn +2025-06-18T15:01:10.581Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 200 - Response time: 896ms - IP: 192.168.28.146 - User: user_1069 - RequestID: bvpj9s93wgw +2025-06-18T15:01:10.681Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 503 - Response time: 1470ms - IP: 192.168.85.229 - User: user_1038 - RequestID: cierlw225ks +2025-06-18T15:01:10.781Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 286ms - RequestID: 2s37cb6iwo2 +2025-06-18T15:01:10.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1098 - IP: 192.168.170.215 - RequestID: nb6kipceh6 +2025-06-18T15:01:10.981Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 503 - Response time: 482ms - IP: 192.168.46.63 - User: user_1003 - RequestID: n34ax1gn43m +2025-06-18T15:01:11.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.235.117 - RequestID: s688rpv7ov +2025-06-18T15:01:11.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1017 - IP: 192.168.14.77 - RequestID: 5id7vx266mr +2025-06-18T15:01:11.281Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 400 - Response time: 1691ms - IP: 192.168.196.226 - User: user_1005 - RequestID: 2ksaqrzhimw +2025-06-18T15:01:11.381Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 269ms - Rows affected: 88 - RequestID: w6kv4r7jzk +2025-06-18T15:01:11.481Z [TRACE] inventory-service - Database INSERT on users - Execution time: 390ms - Rows affected: 5 - RequestID: g55ny80k2ap +2025-06-18T15:01:11.581Z [TRACE] notification-service - POST /api/v1/orders - Status: 503 - Response time: 1969ms - IP: 192.168.44.5 - User: user_1082 - RequestID: 4vhfbs3nfnq +2025-06-18T15:01:11.681Z [INFO] user-service - Database UPDATE on products - Execution time: 87ms - Rows affected: 48 - RequestID: bb3jx0s7dn +2025-06-18T15:01:11.781Z [TRACE] payment-service - PUT /api/v1/payments - Status: 403 - Response time: 1788ms - IP: 192.168.138.123 - User: user_1014 - RequestID: a9zcblph1mc +2025-06-18T15:01:11.881Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 199ms - Rows affected: 40 - RequestID: ztgq6v09wh +2025-06-18T15:01:11.981Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1665ms - IP: 192.168.181.225 - User: user_1066 - RequestID: lum1gv9vjh +2025-06-18T15:01:12.081Z [INFO] payment-service - Operation: email_sent - Processing time: 669ms - RequestID: lergn09kc8 +2025-06-18T15:01:12.181Z [DEBUG] user-service - Database SELECT on payments - Execution time: 18ms - Rows affected: 9 - RequestID: rkt9i34imc +2025-06-18T15:01:12.281Z [TRACE] user-service - GET /api/v1/inventory - Status: 404 - Response time: 1657ms - IP: 192.168.227.77 - User: user_1012 - RequestID: 05wgm94wktv +2025-06-18T15:01:12.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 983ms - RequestID: 8f0xmt2so3m +2025-06-18T15:01:12.481Z [INFO] auth-service - Operation: inventory_updated - Processing time: 899ms - RequestID: amkagaswy6t +2025-06-18T15:01:12.581Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 765ms - RequestID: 13s48fn4rg2e +2025-06-18T15:01:12.681Z [DEBUG] order-service - Auth event: password_change - User: user_1025 - IP: 192.168.138.123 - RequestID: j3c3kada4m +2025-06-18T15:01:12.781Z [DEBUG] user-service - Database DELETE on products - Execution time: 302ms - Rows affected: 24 - RequestID: zp7ehi1mece +2025-06-18T15:01:12.881Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 200 - Response time: 1859ms - IP: 192.168.211.72 - User: user_1051 - RequestID: 17yg4pc2bzuj +2025-06-18T15:01:12.981Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 96ms - Rows affected: 41 - RequestID: bxhmjunaldt +2025-06-18T15:01:13.081Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 957ms - RequestID: 46d639onzb +2025-06-18T15:01:13.181Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 466ms - Rows affected: 28 - RequestID: ntwl93wz62 +2025-06-18T15:01:13.281Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 259ms - Rows affected: 4 - RequestID: bv3vstbcfj7 +2025-06-18T15:01:13.381Z [DEBUG] order-service - Database SELECT on payments - Execution time: 96ms - Rows affected: 48 - RequestID: hf3c3ka43s +2025-06-18T15:01:13.481Z [INFO] order-service - Auth event: login_success - User: user_1063 - IP: 192.168.227.233 - RequestID: b1qsr2oitv7 +2025-06-18T15:01:13.581Z [INFO] auth-service - Auth event: login_success - User: user_1025 - IP: 192.168.247.134 - RequestID: ihzhlnb85wp +2025-06-18T15:01:13.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.232.72 - RequestID: j63fx92l1i +2025-06-18T15:01:13.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.31.117 - RequestID: iwcsdwat8pg +2025-06-18T15:01:13.881Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 415ms - RequestID: bbzawk4w977 +2025-06-18T15:01:13.981Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 424ms - Rows affected: 79 - RequestID: vu5ejdjhv8 +2025-06-18T15:01:14.081Z [INFO] user-service - PUT /api/v1/auth/login - Status: 201 - Response time: 125ms - IP: 192.168.247.134 - User: user_1020 - RequestID: s8tf7sybos +2025-06-18T15:01:14.181Z [TRACE] inventory-service - Auth event: login_success - User: user_1065 - IP: 192.168.79.116 - RequestID: 9jnclha2kdl +2025-06-18T15:01:14.281Z [TRACE] payment-service - Database INSERT on users - Execution time: 379ms - Rows affected: 72 - RequestID: 41ufyfix15n +2025-06-18T15:01:14.381Z [INFO] auth-service - Database DELETE on orders - Execution time: 124ms - Rows affected: 80 - RequestID: jaf5snq6st +2025-06-18T15:01:14.481Z [TRACE] user-service - Operation: webhook_sent - Processing time: 442ms - RequestID: 7pby57ga8rk +2025-06-18T15:01:14.581Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 670ms - RequestID: 5t8tojdtwg5 +2025-06-18T15:01:14.681Z [DEBUG] notification-service - POST /api/v1/orders - Status: 502 - Response time: 46ms - IP: 192.168.13.72 - User: user_1047 - RequestID: 2wrk2dh9zzk +2025-06-18T15:01:14.781Z [INFO] auth-service - Operation: payment_processed - Processing time: 689ms - RequestID: 53ofpppsevy +2025-06-18T15:01:14.881Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 134ms - RequestID: p2pvru4eqhe +2025-06-18T15:01:14.981Z [TRACE] auth-service - PUT /api/v1/payments - Status: 403 - Response time: 1321ms - IP: 192.168.36.218 - User: user_1002 - RequestID: y8vesbith2o +2025-06-18T15:01:15.081Z [TRACE] order-service - Operation: inventory_updated - Processing time: 82ms - RequestID: jdv4mtsnug +2025-06-18T15:01:15.181Z [INFO] auth-service - Database INSERT on products - Execution time: 169ms - Rows affected: 27 - RequestID: 9g3ddzxq71b +2025-06-18T15:01:15.281Z [TRACE] inventory-service - Auth event: login_success - User: user_1021 - IP: 192.168.46.63 - RequestID: azukfb2osyd +2025-06-18T15:01:15.381Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 125ms - Rows affected: 44 - RequestID: 9n7nuxqgd3a +2025-06-18T15:01:15.481Z [INFO] inventory-service - POST /api/v1/orders - Status: 400 - Response time: 543ms - IP: 192.168.141.100 - User: user_1006 - RequestID: a78p5rsoacm +2025-06-18T15:01:15.581Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 156ms - RequestID: z57892qgkc8 +2025-06-18T15:01:15.681Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 151ms - RequestID: t8kevynkfu +2025-06-18T15:01:15.781Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 877ms - RequestID: rqcfwmhvval +2025-06-18T15:01:15.881Z [TRACE] notification-service - Operation: email_sent - Processing time: 475ms - RequestID: i4v8ufh9k9 +2025-06-18T15:01:15.981Z [INFO] order-service - Auth event: password_change - User: user_1062 - IP: 192.168.147.171 - RequestID: ojn9xl22yrc +2025-06-18T15:01:16.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.10.184 - RequestID: lt2aa5ehrr +2025-06-18T15:01:16.181Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 403 - Response time: 1655ms - IP: 192.168.10.184 - User: user_1025 - RequestID: dyebbu5v17c +2025-06-18T15:01:16.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.167.32 - RequestID: d5ijmw2eajf +2025-06-18T15:01:16.381Z [DEBUG] user-service - Auth event: login_success - User: user_1032 - IP: 192.168.229.123 - RequestID: m84krq03nn +2025-06-18T15:01:16.481Z [INFO] order-service - Operation: email_sent - Processing time: 461ms - RequestID: iu7k0l8vpb +2025-06-18T15:01:16.581Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 393ms - RequestID: ty9fp8ypo9 +2025-06-18T15:01:16.681Z [DEBUG] order-service - Auth event: logout - User: user_1006 - IP: 192.168.141.100 - RequestID: passacxxaus +2025-06-18T15:01:16.781Z [DEBUG] user-service - Auth event: logout - User: user_1021 - IP: 192.168.240.169 - RequestID: f2r2pi6kjct +2025-06-18T15:01:16.881Z [INFO] auth-service - Operation: inventory_updated - Processing time: 511ms - RequestID: dvjyvpinea9 +2025-06-18T15:01:16.981Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1983ms - IP: 192.168.100.240 - User: user_1060 - RequestID: pxh5cyvr7c +2025-06-18T15:01:17.081Z [TRACE] user-service - PUT /api/v1/users - Status: 502 - Response time: 321ms - IP: 192.168.68.128 - User: user_1046 - RequestID: wge0w0t1i9f +2025-06-18T15:01:17.181Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 500 - Response time: 212ms - IP: 192.168.170.215 - User: user_1040 - RequestID: uq8vqso7c +2025-06-18T15:01:17.281Z [TRACE] notification-service - Auth event: logout - User: user_1032 - IP: 192.168.31.117 - RequestID: iq67kda7be +2025-06-18T15:01:17.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.113.218 - RequestID: m7yamj05q2q +2025-06-18T15:01:17.481Z [INFO] user-service - Database SELECT on sessions - Execution time: 177ms - Rows affected: 82 - RequestID: 8jvphhmblwg +2025-06-18T15:01:17.581Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 77ms - Rows affected: 43 - RequestID: 1vereza2c6x +2025-06-18T15:01:17.681Z [DEBUG] order-service - Auth event: login_success - User: user_1093 - IP: 192.168.232.72 - RequestID: 66w4gb7ajp6 +2025-06-18T15:01:17.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.1.152 - RequestID: 6sd7he1l57x +2025-06-18T15:01:17.881Z [TRACE] notification-service - Auth event: login_success - User: user_1030 - IP: 192.168.79.143 - RequestID: qebtx3jf0ts +2025-06-18T15:01:17.981Z [INFO] auth-service - Auth event: logout - User: user_1064 - IP: 192.168.79.141 - RequestID: paiyfzkt7l +2025-06-18T15:01:18.081Z [TRACE] order-service - Operation: payment_processed - Processing time: 913ms - RequestID: 1vegzhkm1uk +2025-06-18T15:01:18.181Z [TRACE] order-service - Database DELETE on orders - Execution time: 263ms - Rows affected: 79 - RequestID: uvm27mj2y8k +2025-06-18T15:01:18.281Z [DEBUG] payment-service - Auth event: password_change - User: user_1036 - IP: 192.168.64.33 - RequestID: g2rc2mxi9gw +2025-06-18T15:01:18.381Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 822ms - RequestID: u9as7lcya6t +2025-06-18T15:01:18.481Z [INFO] notification-service - POST /api/v1/auth/login - Status: 403 - Response time: 1145ms - IP: 192.168.187.199 - User: user_1075 - RequestID: 58im9id5x2 +2025-06-18T15:01:18.581Z [INFO] user-service - Auth event: login_success - User: user_1086 - IP: 192.168.227.77 - RequestID: adxp27tj7nl +2025-06-18T15:01:18.681Z [INFO] payment-service - Operation: cache_hit - Processing time: 60ms - RequestID: 4nq61ca2fl8 +2025-06-18T15:01:18.781Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 490ms - RequestID: cieeopzry2l +2025-06-18T15:01:18.881Z [TRACE] inventory-service - Database INSERT on products - Execution time: 158ms - Rows affected: 88 - RequestID: d7q9ultow7 +2025-06-18T15:01:18.981Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 651ms - IP: 192.168.227.77 - User: user_1085 - RequestID: 4qrehzxa9yt +2025-06-18T15:01:19.081Z [TRACE] user-service - Database DELETE on orders - Execution time: 65ms - Rows affected: 19 - RequestID: y6oat8se86 +2025-06-18T15:01:19.181Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1391ms - IP: 192.168.189.103 - User: user_1056 - RequestID: t1gnrsy83c +2025-06-18T15:01:19.281Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 420ms - RequestID: bfzbpl2jc2 +2025-06-18T15:01:19.381Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 500 - Response time: 1118ms - IP: 192.168.141.100 - User: user_1057 - RequestID: tk0n99zfx3 +2025-06-18T15:01:19.481Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 620ms - IP: 192.168.46.63 - User: user_1085 - RequestID: fyx7o8ocdh +2025-06-18T15:01:19.581Z [TRACE] notification-service - Database DELETE on products - Execution time: 55ms - Rows affected: 43 - RequestID: eyqi3qo8xlp +2025-06-18T15:01:19.681Z [INFO] auth-service - Database SELECT on users - Execution time: 335ms - Rows affected: 97 - RequestID: gr51ol46fsb +2025-06-18T15:01:19.781Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 428ms - RequestID: mq0034ngq5b +2025-06-18T15:01:19.881Z [INFO] order-service - Auth event: logout - User: user_1063 - IP: 192.168.32.38 - RequestID: r3a3oxapjz +2025-06-18T15:01:19.981Z [TRACE] notification-service - PUT /api/v1/users - Status: 200 - Response time: 1959ms - IP: 192.168.194.41 - User: user_1088 - RequestID: xffvouk1xn +2025-06-18T15:01:20.081Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 872ms - RequestID: tzwjy75lg1l +2025-06-18T15:01:20.181Z [INFO] notification-service - Auth event: logout - User: user_1051 - IP: 192.168.170.215 - RequestID: sy9apqgytl +2025-06-18T15:01:20.281Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 402ms - RequestID: 551ho2f063y +2025-06-18T15:01:20.381Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 282ms - Rows affected: 94 - RequestID: r0w77sd9jg +2025-06-18T15:01:20.481Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 935ms - RequestID: aljdkzxdonv +2025-06-18T15:01:20.581Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 266ms - Rows affected: 89 - RequestID: 60ssj7omyii +2025-06-18T15:01:20.681Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1645ms - IP: 192.168.167.32 - User: user_1031 - RequestID: vd5y7szi3tf +2025-06-18T15:01:20.781Z [TRACE] inventory-service - Database INSERT on products - Execution time: 395ms - Rows affected: 45 - RequestID: rgctp2nirf +2025-06-18T15:01:20.881Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1305ms - IP: 192.168.32.38 - User: user_1057 - RequestID: vd95oyg6hm +2025-06-18T15:01:20.981Z [TRACE] user-service - Auth event: login_failed - User: user_1020 - IP: 192.168.227.77 - RequestID: suci1rrc25 +2025-06-18T15:01:21.081Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 404 - Response time: 632ms - IP: 192.168.32.38 - User: user_1028 - RequestID: rwoqoriuzoa +2025-06-18T15:01:21.181Z [DEBUG] auth-service - Auth event: logout - User: user_1031 - IP: 192.168.100.240 - RequestID: u86mp8xehn +2025-06-18T15:01:21.281Z [INFO] user-service - Operation: email_sent - Processing time: 777ms - RequestID: eeyxvcsq7 +2025-06-18T15:01:21.381Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 388ms - Rows affected: 13 - RequestID: dggq2jmw4pk +2025-06-18T15:01:21.481Z [INFO] auth-service - Auth event: logout - User: user_1015 - IP: 192.168.14.77 - RequestID: 9adfg9gs24h +2025-06-18T15:01:21.581Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 268ms - Rows affected: 52 - RequestID: g811zyjte8b +2025-06-18T15:01:21.681Z [INFO] payment-service - Operation: email_sent - Processing time: 346ms - RequestID: 3bocc4ob9y7 +2025-06-18T15:01:21.781Z [DEBUG] user-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.170.215 - RequestID: sw2thfmd4k +2025-06-18T15:01:21.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.53.133 - RequestID: fe62e8cfmpl +2025-06-18T15:01:21.981Z [TRACE] notification-service - GET /api/v1/users - Status: 403 - Response time: 1163ms - IP: 192.168.240.169 - User: user_1040 - RequestID: pytakebzlip +2025-06-18T15:01:22.081Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 401 - Response time: 54ms - IP: 192.168.44.5 - User: user_1062 - RequestID: vobjlmhi4zm +2025-06-18T15:01:22.181Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 18ms - IP: 192.168.133.7 - User: user_1075 - RequestID: 8y9qrmmad3f +2025-06-18T15:01:22.281Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1886ms - IP: 192.168.235.117 - User: user_1085 - RequestID: 48dafu8xswo +2025-06-18T15:01:22.381Z [DEBUG] user-service - Operation: email_sent - Processing time: 513ms - RequestID: uhuxy8atzh +2025-06-18T15:01:22.481Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 474ms - Rows affected: 94 - RequestID: 6ilccogqesx +2025-06-18T15:01:22.581Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 47ms - Rows affected: 66 - RequestID: 8o27twhq8xk +2025-06-18T15:01:22.681Z [DEBUG] notification-service - Auth event: logout - User: user_1083 - IP: 192.168.81.206 - RequestID: 6kpx9slg2fx +2025-06-18T15:01:22.781Z [INFO] payment-service - Operation: order_created - Processing time: 360ms - RequestID: v0bggflhim +2025-06-18T15:01:22.881Z [INFO] notification-service - Operation: inventory_updated - Processing time: 968ms - RequestID: z5hhn04ker +2025-06-18T15:01:22.981Z [DEBUG] inventory-service - Auth event: password_change - User: user_1018 - IP: 192.168.10.184 - RequestID: 6nuac2qdjbj +2025-06-18T15:01:23.081Z [INFO] order-service - Operation: notification_queued - Processing time: 162ms - RequestID: gwk8xduk44u +2025-06-18T15:01:23.181Z [INFO] inventory-service - Auth event: password_change - User: user_1098 - IP: 192.168.97.87 - RequestID: 4ynho07hs4e +2025-06-18T15:01:23.281Z [DEBUG] notification-service - Operation: order_created - Processing time: 551ms - RequestID: 60lfodq1rrt +2025-06-18T15:01:23.381Z [INFO] user-service - Database DELETE on payments - Execution time: 294ms - Rows affected: 30 - RequestID: npdtrifjptp +2025-06-18T15:01:23.481Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 134ms - RequestID: micor9decvp +2025-06-18T15:01:23.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1023 - IP: 192.168.174.114 - RequestID: 2atd5o3zdio +2025-06-18T15:01:23.681Z [INFO] payment-service - Auth event: logout - User: user_1016 - IP: 192.168.196.226 - RequestID: c2l6qhhykft +2025-06-18T15:01:23.781Z [INFO] notification-service - Database SELECT on sessions - Execution time: 114ms - Rows affected: 75 - RequestID: e2v0oz7bms7 +2025-06-18T15:01:23.881Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1304ms - IP: 192.168.31.117 - User: user_1067 - RequestID: bf720u703ls +2025-06-18T15:01:23.981Z [INFO] auth-service - Database DELETE on sessions - Execution time: 362ms - Rows affected: 30 - RequestID: bbamyw5w3dp +2025-06-18T15:01:24.081Z [TRACE] auth-service - Database SELECT on payments - Execution time: 352ms - Rows affected: 35 - RequestID: 7eb8uqwscbh +2025-06-18T15:01:24.181Z [INFO] auth-service - Auth event: password_change - User: user_1080 - IP: 192.168.147.171 - RequestID: m1x1w183y4l +2025-06-18T15:01:24.281Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 404 - Response time: 791ms - IP: 192.168.211.72 - User: user_1092 - RequestID: 5y71ysi054n +2025-06-18T15:01:24.381Z [INFO] auth-service - Auth event: logout - User: user_1018 - IP: 192.168.227.77 - RequestID: cbfugziszlg +2025-06-18T15:01:24.481Z [DEBUG] order-service - Operation: cache_hit - Processing time: 271ms - RequestID: fv483zkcit +2025-06-18T15:01:24.581Z [INFO] inventory-service - Operation: cache_miss - Processing time: 258ms - RequestID: yr9ifo6iu7 +2025-06-18T15:01:24.681Z [TRACE] order-service - Database INSERT on products - Execution time: 356ms - Rows affected: 24 - RequestID: iz17sukmka +2025-06-18T15:01:24.781Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 4ms - Rows affected: 98 - RequestID: 3ku55u5lf7u +2025-06-18T15:01:24.881Z [DEBUG] order-service - Database INSERT on products - Execution time: 239ms - Rows affected: 50 - RequestID: fx4d856dvbf +2025-06-18T15:01:24.981Z [DEBUG] auth-service - Auth event: logout - User: user_1076 - IP: 192.168.141.100 - RequestID: vvbve3itc8q +2025-06-18T15:01:25.081Z [INFO] user-service - PUT /api/v1/inventory - Status: 201 - Response time: 1824ms - IP: 192.168.138.123 - User: user_1001 - RequestID: j8paoy2yga +2025-06-18T15:01:25.181Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 500 - Response time: 656ms - IP: 192.168.64.33 - User: user_1089 - RequestID: epexccwzlkg +2025-06-18T15:01:25.281Z [INFO] payment-service - Operation: cache_miss - Processing time: 608ms - RequestID: 4ynk1607t78 +2025-06-18T15:01:25.381Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 500 - Response time: 461ms - IP: 192.168.167.32 - User: user_1062 - RequestID: ecip457g54 +2025-06-18T15:01:25.481Z [DEBUG] auth-service - Operation: email_sent - Processing time: 296ms - RequestID: x9l61tbqxh +2025-06-18T15:01:25.581Z [INFO] notification-service - DELETE /api/v1/payments - Status: 201 - Response time: 1189ms - IP: 192.168.68.128 - User: user_1016 - RequestID: 3bsolqsb4p4 +2025-06-18T15:01:25.681Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 201 - Response time: 250ms - IP: 192.168.79.143 - User: user_1073 - RequestID: t08xp2mthi +2025-06-18T15:01:25.781Z [TRACE] payment-service - Operation: notification_queued - Processing time: 388ms - RequestID: ppk0iy38kdh +2025-06-18T15:01:25.881Z [INFO] order-service - PUT /api/v1/orders - Status: 201 - Response time: 769ms - IP: 192.168.240.169 - User: user_1002 - RequestID: geby3m9ewma +2025-06-18T15:01:25.981Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.79.141 - RequestID: xqqj1tsmfx +2025-06-18T15:01:26.081Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1543ms - IP: 192.168.104.37 - User: user_1084 - RequestID: xb8cpzwj6d +2025-06-18T15:01:26.181Z [TRACE] payment-service - PUT /api/v1/payments - Status: 400 - Response time: 1175ms - IP: 192.168.196.226 - User: user_1080 - RequestID: r53qiuxacob +2025-06-18T15:01:26.281Z [TRACE] notification-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.44.5 - RequestID: 15vk27hchra +2025-06-18T15:01:26.381Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 266ms - Rows affected: 7 - RequestID: mgnx302i2u +2025-06-18T15:01:26.481Z [TRACE] auth-service - Database DELETE on payments - Execution time: 148ms - Rows affected: 77 - RequestID: gah7ebhx5oi +2025-06-18T15:01:26.581Z [TRACE] user-service - Database INSERT on orders - Execution time: 139ms - Rows affected: 17 - RequestID: 6v8hl0bhp6a +2025-06-18T15:01:26.681Z [DEBUG] user-service - Operation: email_sent - Processing time: 465ms - RequestID: nl0b3brd4hr +2025-06-18T15:01:26.781Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.13.72 - RequestID: p1wkvb7hrhf +2025-06-18T15:01:26.881Z [TRACE] user-service - DELETE /api/v1/users - Status: 403 - Response time: 820ms - IP: 192.168.144.38 - User: user_1002 - RequestID: jfpzn0i70sp +2025-06-18T15:01:26.981Z [INFO] inventory-service - Auth event: logout - User: user_1078 - IP: 192.168.144.38 - RequestID: qy3kilpcedr +2025-06-18T15:01:27.081Z [DEBUG] notification-service - Database INSERT on users - Execution time: 222ms - Rows affected: 79 - RequestID: 5bo7n8qqkpa +2025-06-18T15:01:27.181Z [INFO] order-service - Operation: email_sent - Processing time: 353ms - RequestID: mg7264tch7 +2025-06-18T15:01:27.281Z [INFO] notification-service - Database SELECT on payments - Execution time: 134ms - Rows affected: 29 - RequestID: q2sf5i22tds +2025-06-18T15:01:27.381Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.194.41 - RequestID: brauca0165 +2025-06-18T15:01:27.481Z [INFO] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 1074ms - IP: 192.168.81.206 - User: user_1050 - RequestID: hvcghimtnfa +2025-06-18T15:01:27.581Z [INFO] user-service - PUT /api/v1/users - Status: 400 - Response time: 210ms - IP: 192.168.138.123 - User: user_1088 - RequestID: phzqfznw3g +2025-06-18T15:01:27.681Z [INFO] user-service - Auth event: login_failed - User: user_1091 - IP: 192.168.79.141 - RequestID: rq3d3ytkxgr +2025-06-18T15:01:27.781Z [TRACE] user-service - Operation: inventory_updated - Processing time: 389ms - RequestID: z0hxxk1btyp +2025-06-18T15:01:27.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 162ms - RequestID: 2kgt2d2csui +2025-06-18T15:01:27.981Z [TRACE] notification-service - POST /api/v1/orders - Status: 500 - Response time: 1318ms - IP: 192.168.235.117 - User: user_1079 - RequestID: z21lqcowhy +2025-06-18T15:01:28.081Z [TRACE] payment-service - DELETE /api/v1/users - Status: 404 - Response time: 1655ms - IP: 192.168.81.206 - User: user_1002 - RequestID: rgpvj4c2m8 +2025-06-18T15:01:28.181Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 403 - Response time: 873ms - IP: 192.168.81.206 - User: user_1030 - RequestID: m2w71n42a8 +2025-06-18T15:01:28.281Z [INFO] notification-service - POST /api/v1/users - Status: 400 - Response time: 1641ms - IP: 192.168.10.184 - User: user_1088 - RequestID: 0i5pvaukigii +2025-06-18T15:01:28.381Z [TRACE] order-service - Operation: webhook_sent - Processing time: 950ms - RequestID: luom1n45bm +2025-06-18T15:01:28.481Z [INFO] notification-service - PUT /api/v1/payments - Status: 502 - Response time: 992ms - IP: 192.168.147.171 - User: user_1048 - RequestID: q8r5v8vp66j +2025-06-18T15:01:28.581Z [DEBUG] inventory-service - Auth event: password_change - User: user_1099 - IP: 192.168.227.77 - RequestID: 7goyqvi9tor +2025-06-18T15:01:28.681Z [TRACE] payment-service - Database DELETE on users - Execution time: 267ms - Rows affected: 43 - RequestID: mt45bzyuq6o +2025-06-18T15:01:28.781Z [INFO] user-service - Database DELETE on products - Execution time: 458ms - Rows affected: 58 - RequestID: coab0ki7u55 +2025-06-18T15:01:28.881Z [TRACE] user-service - Operation: webhook_sent - Processing time: 105ms - RequestID: n0wt3tk357n +2025-06-18T15:01:28.981Z [TRACE] order-service - Operation: webhook_sent - Processing time: 541ms - RequestID: 4dfcx9ep2qc +2025-06-18T15:01:29.081Z [TRACE] auth-service - Operation: payment_processed - Processing time: 445ms - RequestID: t0xkttaxu5p +2025-06-18T15:01:29.181Z [INFO] auth-service - Operation: notification_queued - Processing time: 667ms - RequestID: 88qwkqeixq2 +2025-06-18T15:01:29.281Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 239ms - IP: 192.168.33.76 - User: user_1059 - RequestID: 8wj9isfukgl +2025-06-18T15:01:29.381Z [TRACE] auth-service - Database INSERT on orders - Execution time: 104ms - Rows affected: 13 - RequestID: r5b5l0s244j +2025-06-18T15:01:29.481Z [INFO] inventory-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.159.94 - RequestID: unbare15aws +2025-06-18T15:01:29.581Z [INFO] auth-service - Database INSERT on users - Execution time: 241ms - Rows affected: 84 - RequestID: v8xwl7ia3ai +2025-06-18T15:01:29.681Z [TRACE] payment-service - Auth event: login_success - User: user_1052 - IP: 192.168.158.144 - RequestID: kmaco7f2kw +2025-06-18T15:01:29.781Z [TRACE] auth-service - Operation: cache_hit - Processing time: 972ms - RequestID: ozw6us9y9ea +2025-06-18T15:01:29.881Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1599ms - IP: 192.168.247.134 - User: user_1027 - RequestID: blwg1e9h7t +2025-06-18T15:01:29.981Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 210ms - RequestID: uttavhcqrxc +2025-06-18T15:01:30.081Z [INFO] user-service - Operation: cache_hit - Processing time: 763ms - RequestID: a3vqcrwb7pg +2025-06-18T15:01:30.181Z [DEBUG] payment-service - Database SELECT on users - Execution time: 454ms - Rows affected: 84 - RequestID: hww6d67fmwm +2025-06-18T15:01:30.281Z [DEBUG] order-service - Operation: cache_hit - Processing time: 603ms - RequestID: kc0dptkozwg +2025-06-18T15:01:30.381Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 56ms - RequestID: s5eipmk6eap +2025-06-18T15:01:30.481Z [TRACE] notification-service - Operation: payment_processed - Processing time: 397ms - RequestID: k2429lyn9vp +2025-06-18T15:01:30.581Z [TRACE] notification-service - PUT /api/v1/orders - Status: 200 - Response time: 656ms - IP: 192.168.133.7 - User: user_1080 - RequestID: tnf4v4w2yh +2025-06-18T15:01:30.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.211.72 - RequestID: qpxanj97h6c +2025-06-18T15:01:30.781Z [INFO] user-service - Auth event: login_success - User: user_1073 - IP: 192.168.235.117 - RequestID: u4xje1ykomb +2025-06-18T15:01:30.881Z [INFO] inventory-service - Database SELECT on products - Execution time: 113ms - Rows affected: 25 - RequestID: foqazwer7yq +2025-06-18T15:01:30.981Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 81ms - Rows affected: 72 - RequestID: 1ni959ik0y8 +2025-06-18T15:01:31.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 926ms - RequestID: 0lnipcxz7qoe +2025-06-18T15:01:31.181Z [INFO] payment-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.240.169 - RequestID: w2f0y120l3m +2025-06-18T15:01:31.281Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 106ms - Rows affected: 80 - RequestID: uyevc3ssx1 +2025-06-18T15:01:31.381Z [INFO] order-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.159.94 - RequestID: r53xxg3cjf +2025-06-18T15:01:31.481Z [DEBUG] notification-service - Database INSERT on users - Execution time: 161ms - Rows affected: 37 - RequestID: 8zo8s2r0kff +2025-06-18T15:01:31.581Z [DEBUG] notification-service - GET /api/v1/orders - Status: 502 - Response time: 1874ms - IP: 192.168.36.218 - User: user_1062 - RequestID: q5izlxjn1aa +2025-06-18T15:01:31.681Z [INFO] payment-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.10.184 - RequestID: kla2qhxouz +2025-06-18T15:01:31.781Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 500 - Response time: 1531ms - IP: 192.168.32.38 - User: user_1013 - RequestID: dcpbn60jhoc +2025-06-18T15:01:31.881Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 500 - Response time: 946ms - IP: 192.168.113.218 - User: user_1063 - RequestID: x9eyt2cuipl +2025-06-18T15:01:31.981Z [INFO] notification-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.211.72 - RequestID: 48x5i25z7xc +2025-06-18T15:01:32.081Z [DEBUG] inventory-service - Operation: order_created - Processing time: 547ms - RequestID: 1skwpoyzsk4 +2025-06-18T15:01:32.181Z [INFO] order-service - Operation: email_sent - Processing time: 928ms - RequestID: 2gdcavq5b2 +2025-06-18T15:01:32.281Z [TRACE] order-service - Operation: email_sent - Processing time: 476ms - RequestID: h9gonafsrzr +2025-06-18T15:01:32.381Z [INFO] notification-service - POST /api/v1/payments - Status: 403 - Response time: 222ms - IP: 192.168.1.152 - User: user_1076 - RequestID: dml88ajf9ya +2025-06-18T15:01:32.481Z [TRACE] user-service - Operation: order_created - Processing time: 98ms - RequestID: l6g56w4nja9 +2025-06-18T15:01:32.581Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 97ms - IP: 192.168.113.218 - User: user_1047 - RequestID: tquo46v9l8d +2025-06-18T15:01:32.681Z [TRACE] notification-service - Database INSERT on orders - Execution time: 162ms - Rows affected: 41 - RequestID: zppcifjck0l +2025-06-18T15:01:32.781Z [INFO] user-service - PATCH /api/v1/users - Status: 404 - Response time: 1258ms - IP: 192.168.167.32 - User: user_1070 - RequestID: iibfxeacqt9 +2025-06-18T15:01:32.881Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 203ms - Rows affected: 58 - RequestID: xus6dvj9cc +2025-06-18T15:01:32.981Z [INFO] auth-service - Database DELETE on users - Execution time: 214ms - Rows affected: 96 - RequestID: m32ialrzhzp +2025-06-18T15:01:33.081Z [TRACE] payment-service - POST /api/v1/inventory - Status: 200 - Response time: 1326ms - IP: 192.168.181.225 - User: user_1063 - RequestID: 4mjjymb4p6o +2025-06-18T15:01:33.181Z [DEBUG] order-service - Auth event: logout - User: user_1054 - IP: 192.168.167.32 - RequestID: bk688klxyud +2025-06-18T15:01:33.281Z [TRACE] order-service - Database DELETE on payments - Execution time: 490ms - Rows affected: 27 - RequestID: k5uwz2qhu0i +2025-06-18T15:01:33.381Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 446ms - IP: 192.168.211.72 - User: user_1015 - RequestID: gfzmsr6wyce +2025-06-18T15:01:33.481Z [DEBUG] user-service - PUT /api/v1/orders - Status: 500 - Response time: 1532ms - IP: 192.168.79.141 - User: user_1088 - RequestID: x1h7cwclb9r +2025-06-18T15:01:33.581Z [TRACE] notification-service - Auth event: password_change - User: user_1072 - IP: 192.168.235.117 - RequestID: wsupupysi5h +2025-06-18T15:01:33.681Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 16ms - Rows affected: 68 - RequestID: i1jwftkxazc +2025-06-18T15:01:33.781Z [INFO] order-service - Operation: inventory_updated - Processing time: 884ms - RequestID: 0i7ycspbok98 +2025-06-18T15:01:33.881Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.229.123 - RequestID: v58yq6ncoxb +2025-06-18T15:01:33.981Z [DEBUG] order-service - Database UPDATE on users - Execution time: 334ms - Rows affected: 61 - RequestID: u58oozmldei +2025-06-18T15:01:34.081Z [INFO] auth-service - Database UPDATE on products - Execution time: 399ms - Rows affected: 42 - RequestID: 4pyxhktl8le +2025-06-18T15:01:34.181Z [INFO] payment-service - Database SELECT on sessions - Execution time: 25ms - Rows affected: 67 - RequestID: i2a5vzetxb +2025-06-18T15:01:34.281Z [INFO] auth-service - Auth event: login_success - User: user_1097 - IP: 192.168.159.94 - RequestID: olps73i7cal +2025-06-18T15:01:34.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.33.76 - RequestID: 4512sb3iqsa +2025-06-18T15:01:34.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 415ms - RequestID: wjxweluao3c +2025-06-18T15:01:34.581Z [INFO] auth-service - PUT /api/v1/users - Status: 400 - Response time: 1773ms - IP: 192.168.170.215 - User: user_1017 - RequestID: r0vby3gvf8l +2025-06-18T15:01:34.681Z [INFO] payment-service - POST /api/v1/users - Status: 200 - Response time: 1076ms - IP: 192.168.64.33 - User: user_1022 - RequestID: upvn2iizk3 +2025-06-18T15:01:34.781Z [TRACE] auth-service - GET /api/v1/orders - Status: 400 - Response time: 1341ms - IP: 192.168.240.169 - User: user_1024 - RequestID: p3p00fv61jj +2025-06-18T15:01:34.881Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 64ms - RequestID: 0vkqeneg40q +2025-06-18T15:01:34.981Z [TRACE] order-service - Database INSERT on products - Execution time: 415ms - Rows affected: 53 - RequestID: n63gzd2iq7e +2025-06-18T15:01:35.081Z [INFO] user-service - Auth event: login_success - User: user_1065 - IP: 192.168.141.100 - RequestID: gdzj0echgh +2025-06-18T15:01:35.181Z [INFO] order-service - GET /api/v1/auth/login - Status: 500 - Response time: 1228ms - IP: 192.168.31.117 - User: user_1081 - RequestID: x8ngfh7f1dl +2025-06-18T15:01:35.281Z [TRACE] auth-service - Operation: order_created - Processing time: 345ms - RequestID: uiasoa87178 +2025-06-18T15:01:35.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1072 - IP: 192.168.11.60 - RequestID: 6gn16tbikzp +2025-06-18T15:01:35.481Z [INFO] order-service - POST /api/v1/auth/logout - Status: 502 - Response time: 460ms - IP: 192.168.31.117 - User: user_1005 - RequestID: 06nx36a2dt2q +2025-06-18T15:01:35.581Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 200 - Response time: 1438ms - IP: 192.168.147.171 - User: user_1089 - RequestID: d502xxyv2 +2025-06-18T15:01:35.681Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 201 - Response time: 449ms - IP: 192.168.242.165 - User: user_1000 - RequestID: 3e7yveeioap +2025-06-18T15:01:35.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1017 - IP: 192.168.235.117 - RequestID: l484vzaign +2025-06-18T15:01:35.881Z [INFO] order-service - Auth event: logout - User: user_1027 - IP: 192.168.10.184 - RequestID: pm80gzbkru +2025-06-18T15:01:35.981Z [INFO] auth-service - Database INSERT on orders - Execution time: 240ms - Rows affected: 0 - RequestID: r53l6ujrd8 +2025-06-18T15:01:36.081Z [INFO] inventory-service - Database INSERT on products - Execution time: 153ms - Rows affected: 77 - RequestID: zujfpt67e4q +2025-06-18T15:01:36.181Z [INFO] inventory-service - Auth event: password_change - User: user_1016 - IP: 192.168.141.100 - RequestID: qa8n5a7xtkq +2025-06-18T15:01:36.281Z [DEBUG] auth-service - Database DELETE on users - Execution time: 121ms - Rows affected: 33 - RequestID: nm04ub19uy +2025-06-18T15:01:36.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.11.60 - RequestID: 2yxww0nhokd +2025-06-18T15:01:36.481Z [DEBUG] notification-service - Auth event: logout - User: user_1028 - IP: 192.168.10.184 - RequestID: omoq2f3iarq +2025-06-18T15:01:36.581Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 800ms - IP: 192.168.113.218 - User: user_1084 - RequestID: zn3dqdcf74s +2025-06-18T15:01:36.681Z [TRACE] payment-service - Database DELETE on products - Execution time: 32ms - Rows affected: 90 - RequestID: 05po3i1zf0h +2025-06-18T15:01:36.781Z [INFO] auth-service - Auth event: password_change - User: user_1094 - IP: 192.168.31.117 - RequestID: tcfjzi3lty +2025-06-18T15:01:36.881Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 401 - Response time: 203ms - IP: 192.168.79.141 - User: user_1011 - RequestID: viccfn2x0v +2025-06-18T15:01:36.981Z [DEBUG] payment-service - PUT /api/v1/users - Status: 502 - Response time: 1033ms - IP: 192.168.32.38 - User: user_1007 - RequestID: a4efdsdr2u8 +2025-06-18T15:01:37.081Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 963ms - RequestID: gyx39zzr2k +2025-06-18T15:01:37.181Z [INFO] auth-service - Database DELETE on products - Execution time: 349ms - Rows affected: 93 - RequestID: v6ouz2nodid +2025-06-18T15:01:37.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 716ms - RequestID: sycws43edco +2025-06-18T15:01:37.381Z [DEBUG] user-service - GET /api/v1/users - Status: 200 - Response time: 1279ms - IP: 192.168.147.171 - User: user_1053 - RequestID: aroed55cns +2025-06-18T15:01:37.481Z [INFO] payment-service - Database SELECT on payments - Execution time: 75ms - Rows affected: 88 - RequestID: l4nxu7uwjvd +2025-06-18T15:01:37.581Z [INFO] inventory-service - Auth event: logout - User: user_1071 - IP: 192.168.79.141 - RequestID: 28zu5q3uyah +2025-06-18T15:01:37.681Z [INFO] notification-service - PUT /api/v1/inventory - Status: 401 - Response time: 861ms - IP: 192.168.28.146 - User: user_1089 - RequestID: ukn9hpdwv7e +2025-06-18T15:01:37.781Z [TRACE] notification-service - Database DELETE on users - Execution time: 431ms - Rows affected: 52 - RequestID: t4vwrbxklsg +2025-06-18T15:01:37.881Z [INFO] auth-service - DELETE /api/v1/payments - Status: 200 - Response time: 1382ms - IP: 192.168.10.184 - User: user_1069 - RequestID: cp9v3o2bdsf +2025-06-18T15:01:37.981Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 125ms - Rows affected: 22 - RequestID: y0q3ljb2z2 +2025-06-18T15:01:38.081Z [INFO] order-service - PATCH /api/v1/payments - Status: 502 - Response time: 1207ms - IP: 192.168.194.41 - User: user_1059 - RequestID: fhudl79c8a6 +2025-06-18T15:01:38.181Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 85ms - Rows affected: 20 - RequestID: 3jbryzjwad4 +2025-06-18T15:01:38.281Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 292ms - Rows affected: 88 - RequestID: 86257ti3gly +2025-06-18T15:01:38.381Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 502 - Response time: 1317ms - IP: 192.168.170.215 - User: user_1012 - RequestID: 7gfe0ylugcs +2025-06-18T15:01:38.481Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 377ms - Rows affected: 90 - RequestID: u3k8738s8r +2025-06-18T15:01:38.581Z [INFO] user-service - POST /api/v1/inventory - Status: 403 - Response time: 1016ms - IP: 192.168.53.133 - User: user_1076 - RequestID: 3qxnvluh9qu +2025-06-18T15:01:38.681Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1713ms - IP: 192.168.141.100 - User: user_1047 - RequestID: 11ig9zrounj +2025-06-18T15:01:38.781Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 178ms - RequestID: umzo0didh8 +2025-06-18T15:01:38.881Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1954ms - IP: 192.168.138.123 - User: user_1008 - RequestID: hu2oydalgus +2025-06-18T15:01:38.981Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 87ms - Rows affected: 77 - RequestID: ua258nnwh9 +2025-06-18T15:01:39.081Z [INFO] user-service - GET /api/v1/users - Status: 401 - Response time: 1003ms - IP: 192.168.227.77 - User: user_1083 - RequestID: fpoahux3ngw +2025-06-18T15:01:39.181Z [TRACE] auth-service - Operation: payment_processed - Processing time: 470ms - RequestID: 3kaqve2qbxz +2025-06-18T15:01:39.281Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 503 - Response time: 664ms - IP: 192.168.113.218 - User: user_1013 - RequestID: gwjx5fz2xh8 +2025-06-18T15:01:39.381Z [TRACE] order-service - Auth event: login_success - User: user_1045 - IP: 192.168.28.146 - RequestID: tgz6sa72du9 +2025-06-18T15:01:39.481Z [INFO] user-service - Auth event: logout - User: user_1084 - IP: 192.168.10.184 - RequestID: 4jacinxs694 +2025-06-18T15:01:39.581Z [DEBUG] notification-service - GET /api/v1/users - Status: 401 - Response time: 1443ms - IP: 192.168.11.60 - User: user_1083 - RequestID: rcs25gno7gl +2025-06-18T15:01:39.681Z [INFO] order-service - Operation: notification_queued - Processing time: 654ms - RequestID: l4b5lje3if +2025-06-18T15:01:39.781Z [DEBUG] notification-service - Operation: email_sent - Processing time: 395ms - RequestID: x16q5whib3 +2025-06-18T15:01:39.881Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 240ms - Rows affected: 14 - RequestID: hqokcnbevlg +2025-06-18T15:01:39.981Z [INFO] order-service - Database INSERT on payments - Execution time: 79ms - Rows affected: 13 - RequestID: 7rdwaun9l6 +2025-06-18T15:01:40.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1073 - IP: 192.168.30.79 - RequestID: oe576iy0bwk +2025-06-18T15:01:40.181Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 285ms - Rows affected: 87 - RequestID: jg26gfqr5a +2025-06-18T15:01:40.281Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 135ms - Rows affected: 49 - RequestID: dsrt33zizpg +2025-06-18T15:01:40.381Z [TRACE] user-service - Operation: webhook_sent - Processing time: 750ms - RequestID: ty72g8rilm +2025-06-18T15:01:40.481Z [TRACE] order-service - DELETE /api/v1/orders - Status: 404 - Response time: 1230ms - IP: 192.168.32.38 - User: user_1037 - RequestID: uwq7p653cm +2025-06-18T15:01:40.581Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 1005ms - RequestID: w4vpfg0mdr +2025-06-18T15:01:40.681Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 214ms - Rows affected: 57 - RequestID: mysit099j6 +2025-06-18T15:01:40.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1017 - IP: 192.168.81.206 - RequestID: a7wwtoglvvi +2025-06-18T15:01:40.881Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 242ms - Rows affected: 63 - RequestID: 92xffz5midi +2025-06-18T15:01:40.981Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 256ms - Rows affected: 31 - RequestID: 40hwd2ulz7l +2025-06-18T15:01:41.081Z [INFO] inventory-service - Operation: cache_miss - Processing time: 947ms - RequestID: 35va8hswvo4 +2025-06-18T15:01:41.181Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1350ms - IP: 192.168.167.32 - User: user_1079 - RequestID: m9am86bgzui +2025-06-18T15:01:41.281Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 466ms - Rows affected: 62 - RequestID: u493ff120b +2025-06-18T15:01:41.381Z [DEBUG] order-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.10.184 - RequestID: sep6cfdhud +2025-06-18T15:01:41.481Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1736ms - IP: 192.168.1.152 - User: user_1008 - RequestID: ke6c3occsn +2025-06-18T15:01:41.581Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 400 - Response time: 113ms - IP: 192.168.36.218 - User: user_1013 - RequestID: l5gx8p7ovtp +2025-06-18T15:01:41.681Z [INFO] notification-service - Operation: order_created - Processing time: 711ms - RequestID: hj2ksz39hsa +2025-06-18T15:01:41.781Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 403 - Response time: 434ms - IP: 192.168.232.72 - User: user_1049 - RequestID: 3msrez2oyul +2025-06-18T15:01:41.881Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 403 - Response time: 352ms - IP: 192.168.31.117 - User: user_1078 - RequestID: qhtskx7kg9 +2025-06-18T15:01:41.981Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 503 - Response time: 276ms - IP: 192.168.68.128 - User: user_1098 - RequestID: omqy60o6ts +2025-06-18T15:01:42.081Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1287ms - IP: 192.168.138.123 - User: user_1018 - RequestID: gvl96fduy7o +2025-06-18T15:01:42.181Z [INFO] order-service - Auth event: login_failed - User: user_1000 - IP: 192.168.46.63 - RequestID: wo1oqxjj3j +2025-06-18T15:01:42.281Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 328ms - Rows affected: 77 - RequestID: ax832mtm2ve +2025-06-18T15:01:42.381Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1945ms - IP: 192.168.68.158 - User: user_1027 - RequestID: ib6wfhgpn6 +2025-06-18T15:01:42.481Z [DEBUG] payment-service - POST /api/v1/users - Status: 403 - Response time: 1826ms - IP: 192.168.229.123 - User: user_1085 - RequestID: bd4codigps +2025-06-18T15:01:42.581Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 404 - Response time: 483ms - IP: 192.168.147.171 - User: user_1033 - RequestID: bp9q16sd7y +2025-06-18T15:01:42.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1049 - IP: 192.168.28.146 - RequestID: zmj0p74kpw +2025-06-18T15:01:42.781Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 309ms - Rows affected: 30 - RequestID: fiq7ikjiaqv +2025-06-18T15:01:42.881Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 400ms - Rows affected: 78 - RequestID: zeohlxk0u8 +2025-06-18T15:01:42.981Z [TRACE] auth-service - Database DELETE on orders - Execution time: 218ms - Rows affected: 2 - RequestID: m7s0qu1xtkk +2025-06-18T15:01:43.081Z [DEBUG] order-service - Operation: payment_processed - Processing time: 281ms - RequestID: 1fbicrntq82 +2025-06-18T15:01:43.181Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 605ms - RequestID: hzvslsvc5jl +2025-06-18T15:01:43.281Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 29ms - Rows affected: 34 - RequestID: 6efvjx2tpzi +2025-06-18T15:01:43.381Z [TRACE] inventory-service - PUT /api/v1/users - Status: 500 - Response time: 1274ms - IP: 192.168.147.171 - User: user_1098 - RequestID: ldokdfwrat +2025-06-18T15:01:43.481Z [DEBUG] order-service - Database SELECT on payments - Execution time: 447ms - Rows affected: 91 - RequestID: kezqokof3og +2025-06-18T15:01:43.581Z [INFO] inventory-service - Auth event: password_change - User: user_1041 - IP: 192.168.28.146 - RequestID: bh895fagylf +2025-06-18T15:01:43.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 866ms - RequestID: ude3d8kdhy8 +2025-06-18T15:01:43.781Z [TRACE] order-service - Operation: cache_miss - Processing time: 975ms - RequestID: xtqx4k3825 +2025-06-18T15:01:43.881Z [DEBUG] user-service - Operation: order_created - Processing time: 905ms - RequestID: w97johhuud +2025-06-18T15:01:43.981Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 1011ms - RequestID: gkuv8jl61wc +2025-06-18T15:01:44.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.247.134 - RequestID: 6e62zk1g9rp +2025-06-18T15:01:44.181Z [INFO] order-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.46.63 - RequestID: s32tlwwmt2 +2025-06-18T15:01:44.281Z [INFO] order-service - Operation: email_sent - Processing time: 239ms - RequestID: ibgfzaqzes +2025-06-18T15:01:44.381Z [DEBUG] user-service - Operation: order_created - Processing time: 827ms - RequestID: 0w04y6pipca8 +2025-06-18T15:01:44.481Z [INFO] order-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.211.72 - RequestID: qfuor7klky +2025-06-18T15:01:44.581Z [DEBUG] auth-service - Auth event: logout - User: user_1072 - IP: 192.168.196.226 - RequestID: 6v0zty0jk8x +2025-06-18T15:01:44.681Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 403 - Response time: 999ms - IP: 192.168.247.134 - User: user_1059 - RequestID: 80y2z8k6vjw +2025-06-18T15:01:44.781Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 573ms - RequestID: puyezb2ue9n +2025-06-18T15:01:44.881Z [TRACE] order-service - PUT /api/v1/inventory - Status: 403 - Response time: 1559ms - IP: 192.168.100.240 - User: user_1091 - RequestID: ayuoywxld2s +2025-06-18T15:01:44.981Z [INFO] inventory-service - Auth event: password_change - User: user_1052 - IP: 192.168.170.215 - RequestID: kf8uf4fb6qb +2025-06-18T15:01:45.081Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 96ms - Rows affected: 51 - RequestID: m6leqtdw7mc +2025-06-18T15:01:45.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.174.114 - RequestID: 46dl1z7dlgm +2025-06-18T15:01:45.281Z [DEBUG] notification-service - Auth event: logout - User: user_1049 - IP: 192.168.36.218 - RequestID: hlblamgt678 +2025-06-18T15:01:45.381Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 289ms - Rows affected: 47 - RequestID: 4krkk49l4a4 +2025-06-18T15:01:45.481Z [INFO] auth-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.100.240 - RequestID: lv503hc4uvc +2025-06-18T15:01:45.581Z [TRACE] user-service - PUT /api/v1/users - Status: 503 - Response time: 1449ms - IP: 192.168.100.240 - User: user_1075 - RequestID: oyfl4wsncmk +2025-06-18T15:01:45.681Z [TRACE] inventory-service - Database INSERT on users - Execution time: 487ms - Rows affected: 75 - RequestID: cxwvfus64h8 +2025-06-18T15:01:45.781Z [INFO] auth-service - PUT /api/v1/users - Status: 201 - Response time: 1331ms - IP: 192.168.46.63 - User: user_1005 - RequestID: re63awdvvk +2025-06-18T15:01:45.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1008 - IP: 192.168.14.77 - RequestID: vbwf5dp38ki +2025-06-18T15:01:45.981Z [DEBUG] user-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.229.123 - RequestID: esxytclvihf +2025-06-18T15:01:46.081Z [INFO] auth-service - Database INSERT on orders - Execution time: 342ms - Rows affected: 27 - RequestID: myr6v0lrcqk +2025-06-18T15:01:46.181Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 404 - Response time: 2008ms - IP: 192.168.167.32 - User: user_1007 - RequestID: h1afowyfacr +2025-06-18T15:01:46.281Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.28.146 - RequestID: fcbpspldywq +2025-06-18T15:01:46.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1010 - IP: 192.168.159.94 - RequestID: 9kt1hsacfn4 +2025-06-18T15:01:46.481Z [DEBUG] order-service - Database DELETE on products - Execution time: 283ms - Rows affected: 5 - RequestID: 9t0c4maf9ye +2025-06-18T15:01:46.581Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 1023ms - RequestID: 4wvxow11tit +2025-06-18T15:01:46.681Z [INFO] auth-service - Operation: email_sent - Processing time: 113ms - RequestID: 5zreo4zk1r +2025-06-18T15:01:46.781Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 461ms - Rows affected: 23 - RequestID: bprafwno4jo +2025-06-18T15:01:46.881Z [DEBUG] order-service - GET /api/v1/payments - Status: 500 - Response time: 569ms - IP: 192.168.11.60 - User: user_1071 - RequestID: 98l70hewkto +2025-06-18T15:01:46.981Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1433ms - IP: 192.168.79.141 - User: user_1054 - RequestID: qn2whmu0qd +2025-06-18T15:01:47.081Z [TRACE] payment-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.138.123 - RequestID: 5b8w3h130oj +2025-06-18T15:01:47.181Z [TRACE] order-service - GET /api/v1/payments - Status: 503 - Response time: 1840ms - IP: 192.168.211.72 - User: user_1042 - RequestID: 1g216w9yhyz +2025-06-18T15:01:47.281Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 201 - Response time: 334ms - IP: 192.168.113.218 - User: user_1003 - RequestID: qo6qqnxfqs +2025-06-18T15:01:47.381Z [TRACE] payment-service - Database SELECT on orders - Execution time: 258ms - Rows affected: 78 - RequestID: rvvyakyl6ft +2025-06-18T15:01:47.481Z [TRACE] order-service - Operation: webhook_sent - Processing time: 594ms - RequestID: qqkcbvzjrrg +2025-06-18T15:01:47.581Z [DEBUG] order-service - Operation: email_sent - Processing time: 485ms - RequestID: heqm6dijh5 +2025-06-18T15:01:47.681Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 502 - Response time: 1036ms - IP: 192.168.242.165 - User: user_1006 - RequestID: 4slk7qmyi73 +2025-06-18T15:01:47.781Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 269ms - RequestID: bgrc3douv0v +2025-06-18T15:01:47.881Z [TRACE] user-service - Database SELECT on users - Execution time: 226ms - Rows affected: 96 - RequestID: k4hg95ahl9p +2025-06-18T15:01:47.981Z [INFO] user-service - Auth event: login_success - User: user_1058 - IP: 192.168.68.158 - RequestID: c9mi0dtg8so +2025-06-18T15:01:48.081Z [DEBUG] user-service - Operation: order_created - Processing time: 125ms - RequestID: ec4ppbc6gpd +2025-06-18T15:01:48.181Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1099ms - IP: 192.168.187.199 - User: user_1061 - RequestID: 89dfpgu0vpu +2025-06-18T15:01:48.281Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 201 - Response time: 929ms - IP: 192.168.211.72 - User: user_1033 - RequestID: bcdpfwudr4f +2025-06-18T15:01:48.381Z [DEBUG] order-service - Operation: email_sent - Processing time: 254ms - RequestID: elfbquzsfsn +2025-06-18T15:01:48.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 777ms - RequestID: tus6kduhvjp +2025-06-18T15:01:48.581Z [INFO] payment-service - Database INSERT on payments - Execution time: 46ms - Rows affected: 75 - RequestID: kv73dh8vr6 +2025-06-18T15:01:48.681Z [INFO] auth-service - DELETE /api/v1/payments - Status: 400 - Response time: 705ms - IP: 192.168.247.134 - User: user_1077 - RequestID: wy0wt9ga44m +2025-06-18T15:01:48.781Z [INFO] user-service - Database SELECT on products - Execution time: 110ms - Rows affected: 34 - RequestID: mp3ebdc6oz +2025-06-18T15:01:48.881Z [TRACE] notification-service - Operation: payment_processed - Processing time: 224ms - RequestID: pwbsjtxg4q +2025-06-18T15:01:48.981Z [TRACE] payment-service - Operation: email_sent - Processing time: 850ms - RequestID: bfapny1hnso +2025-06-18T15:01:49.081Z [TRACE] auth-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.229.123 - RequestID: nm8b28narme +2025-06-18T15:01:49.181Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 89ms - RequestID: k6shhe453ya +2025-06-18T15:01:49.281Z [INFO] order-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.187.199 - RequestID: 72bbh6yl715 +2025-06-18T15:01:49.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1078 - IP: 192.168.81.206 - RequestID: 1cnpew60hzn +2025-06-18T15:01:49.481Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 155ms - RequestID: bwy3shorha4 +2025-06-18T15:01:49.581Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1480ms - IP: 192.168.187.199 - User: user_1009 - RequestID: o779jonk0n +2025-06-18T15:01:49.681Z [TRACE] inventory-service - Auth event: logout - User: user_1078 - IP: 192.168.159.94 - RequestID: tile5dtvozd +2025-06-18T15:01:49.781Z [TRACE] inventory-service - Auth event: login_failed - User: user_1095 - IP: 192.168.229.123 - RequestID: 6gtnjznifus +2025-06-18T15:01:49.881Z [DEBUG] notification-service - Operation: email_sent - Processing time: 265ms - RequestID: qiack945q4b +2025-06-18T15:01:49.981Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 380ms - Rows affected: 39 - RequestID: m30guky716 +2025-06-18T15:01:50.081Z [DEBUG] order-service - Database UPDATE on products - Execution time: 101ms - Rows affected: 24 - RequestID: 5c7y5omqlgq +2025-06-18T15:01:50.181Z [INFO] order-service - PUT /api/v1/inventory - Status: 200 - Response time: 1354ms - IP: 192.168.170.215 - User: user_1033 - RequestID: n1bzokxsjp +2025-06-18T15:01:50.281Z [INFO] inventory-service - Database DELETE on products - Execution time: 320ms - Rows affected: 3 - RequestID: gqn11ikynis +2025-06-18T15:01:50.381Z [INFO] auth-service - Database SELECT on sessions - Execution time: 107ms - Rows affected: 84 - RequestID: 72dfb5qnhr3 +2025-06-18T15:01:50.481Z [INFO] inventory-service - Operation: email_sent - Processing time: 526ms - RequestID: 85k29kxv7wo +2025-06-18T15:01:50.581Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 214ms - RequestID: uyyidnqt4a +2025-06-18T15:01:50.681Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 448ms - RequestID: 5i9yz60uo7b +2025-06-18T15:01:50.781Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 500 - Response time: 963ms - IP: 192.168.79.141 - User: user_1025 - RequestID: gi5ngjrmool +2025-06-18T15:01:50.881Z [INFO] auth-service - Operation: cache_miss - Processing time: 705ms - RequestID: xaqhzr4xj1h +2025-06-18T15:01:50.981Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 230ms - RequestID: khv6tzfsapd +2025-06-18T15:01:51.081Z [TRACE] payment-service - Operation: cache_miss - Processing time: 786ms - RequestID: zw8jdburlcl +2025-06-18T15:01:51.181Z [TRACE] notification-service - Auth event: login_failed - User: user_1013 - IP: 192.168.85.229 - RequestID: 4tc76kgqdd9 +2025-06-18T15:01:51.281Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 1036ms - RequestID: 9uh80fbi5z6 +2025-06-18T15:01:51.381Z [INFO] notification-service - PUT /api/v1/orders - Status: 404 - Response time: 1815ms - IP: 192.168.229.123 - User: user_1073 - RequestID: y7v4v10y6sn +2025-06-18T15:01:51.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1063 - IP: 192.168.79.143 - RequestID: ooa6g0oy03a +2025-06-18T15:01:51.581Z [TRACE] notification-service - Operation: order_created - Processing time: 944ms - RequestID: v2dny9y1qm +2025-06-18T15:01:51.681Z [TRACE] auth-service - Auth event: login_success - User: user_1039 - IP: 192.168.227.77 - RequestID: sf2nc49m4ri +2025-06-18T15:01:51.781Z [INFO] order-service - Operation: order_created - Processing time: 199ms - RequestID: jmy0dfh1eqe +2025-06-18T15:01:51.881Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 411ms - Rows affected: 10 - RequestID: 225418fwl5x +2025-06-18T15:01:51.981Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1696ms - IP: 192.168.227.77 - User: user_1093 - RequestID: 171m4e2rzdd +2025-06-18T15:01:52.081Z [TRACE] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 836ms - IP: 192.168.187.199 - User: user_1097 - RequestID: snxnyb7hfda +2025-06-18T15:01:52.181Z [DEBUG] order-service - Operation: email_sent - Processing time: 193ms - RequestID: ua3rvh63psb +2025-06-18T15:01:52.281Z [TRACE] auth-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.138.123 - RequestID: 16iyp4xx95y +2025-06-18T15:01:52.381Z [TRACE] payment-service - Database INSERT on payments - Execution time: 373ms - Rows affected: 46 - RequestID: rer21a8jqaf +2025-06-18T15:01:52.481Z [INFO] notification-service - Database DELETE on sessions - Execution time: 23ms - Rows affected: 30 - RequestID: 3cp4sduttu4 +2025-06-18T15:01:52.581Z [DEBUG] notification-service - Database SELECT on products - Execution time: 229ms - Rows affected: 61 - RequestID: 8upae6fwxka +2025-06-18T15:01:52.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 491ms - RequestID: sgkuh3o2jgk +2025-06-18T15:01:52.781Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 365ms - Rows affected: 88 - RequestID: i7fz1fbmy8 +2025-06-18T15:01:52.881Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 43ms - Rows affected: 20 - RequestID: ehgsl88q3tr +2025-06-18T15:01:52.981Z [INFO] order-service - Operation: payment_processed - Processing time: 619ms - RequestID: 05vxizylk1bl +2025-06-18T15:01:53.081Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1908ms - IP: 192.168.100.240 - User: user_1090 - RequestID: 0wbxqsjowjo +2025-06-18T15:01:53.181Z [TRACE] auth-service - Auth event: logout - User: user_1005 - IP: 192.168.159.94 - RequestID: hl396i489r +2025-06-18T15:01:53.281Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 1035ms - RequestID: 74kzsyfcyzm +2025-06-18T15:01:53.381Z [DEBUG] auth-service - Database INSERT on products - Execution time: 467ms - Rows affected: 93 - RequestID: lwrqzhvw1us +2025-06-18T15:01:53.481Z [INFO] user-service - GET /api/v1/auth/logout - Status: 201 - Response time: 870ms - IP: 192.168.36.218 - User: user_1026 - RequestID: t5egoh4sir +2025-06-18T15:01:53.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1090 - IP: 192.168.53.133 - RequestID: b5zdszsg7hk +2025-06-18T15:01:53.681Z [DEBUG] order-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.81.206 - RequestID: cn73wsv4l88 +2025-06-18T15:01:53.781Z [TRACE] order-service - Operation: order_created - Processing time: 199ms - RequestID: wldlx9rekfg +2025-06-18T15:01:53.881Z [TRACE] user-service - Database INSERT on orders - Execution time: 490ms - Rows affected: 32 - RequestID: 3bkvlajvun3 +2025-06-18T15:01:53.981Z [INFO] inventory-service - Operation: cache_miss - Processing time: 910ms - RequestID: x2aiisgzn5o +2025-06-18T15:01:54.081Z [INFO] user-service - Operation: inventory_updated - Processing time: 520ms - RequestID: 6taln8b5kt6 +2025-06-18T15:01:54.181Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1392ms - IP: 192.168.79.143 - User: user_1054 - RequestID: dqnh1fbd5j9 +2025-06-18T15:01:54.281Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1008ms - IP: 192.168.64.33 - User: user_1085 - RequestID: s39vhme2km +2025-06-18T15:01:54.381Z [TRACE] payment-service - Database UPDATE on users - Execution time: 334ms - Rows affected: 54 - RequestID: nbc3i7a5ho +2025-06-18T15:01:54.481Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 633ms - RequestID: ceu26wqkwr8 +2025-06-18T15:01:54.581Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1280ms - IP: 192.168.147.171 - User: user_1035 - RequestID: po5wsigth2g +2025-06-18T15:01:54.681Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 316ms - RequestID: y4eu8wa3v4s +2025-06-18T15:01:54.781Z [INFO] user-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.189.103 - RequestID: 9q2zjr3vvrl +2025-06-18T15:01:54.881Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.240.169 - RequestID: sobxk62yko +2025-06-18T15:01:54.981Z [TRACE] payment-service - Database INSERT on orders - Execution time: 18ms - Rows affected: 73 - RequestID: 582fnupmm9 +2025-06-18T15:01:55.081Z [TRACE] payment-service - Database SELECT on payments - Execution time: 420ms - Rows affected: 56 - RequestID: 6sglptdj45w +2025-06-18T15:01:55.181Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 201 - Response time: 518ms - IP: 192.168.113.218 - User: user_1075 - RequestID: muddlpydxvl +2025-06-18T15:01:55.281Z [TRACE] user-service - Auth event: password_change - User: user_1044 - IP: 192.168.81.206 - RequestID: xvzjybckiu +2025-06-18T15:01:55.381Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 7ms - Rows affected: 67 - RequestID: i3zp21bz3ud +2025-06-18T15:01:55.481Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1118ms - IP: 192.168.247.134 - User: user_1088 - RequestID: gr45vh8279i +2025-06-18T15:01:55.581Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 605ms - RequestID: 622s4kcmkmt +2025-06-18T15:01:55.681Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 403 - Response time: 563ms - IP: 192.168.170.215 - User: user_1088 - RequestID: 86nny2w7o1u +2025-06-18T15:01:55.781Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 954ms - IP: 192.168.81.206 - User: user_1044 - RequestID: 5vvu7hvh2s6 +2025-06-18T15:01:55.881Z [INFO] order-service - Database UPDATE on users - Execution time: 488ms - Rows affected: 25 - RequestID: 43gq2t5ybj8 +2025-06-18T15:01:55.981Z [DEBUG] user-service - Database DELETE on products - Execution time: 51ms - Rows affected: 56 - RequestID: 0qqlgj40plb +2025-06-18T15:01:56.081Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1100ms - IP: 192.168.11.60 - User: user_1071 - RequestID: 12mv592znd9 +2025-06-18T15:01:56.181Z [INFO] auth-service - Auth event: login_success - User: user_1079 - IP: 192.168.133.7 - RequestID: 6grvqpv6vgd +2025-06-18T15:01:56.281Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 400 - Response time: 1282ms - IP: 192.168.235.117 - User: user_1061 - RequestID: 0kucygzfy6t +2025-06-18T15:01:56.381Z [INFO] user-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.33.76 - RequestID: bvr4pedvqt +2025-06-18T15:01:56.481Z [INFO] auth-service - Auth event: logout - User: user_1098 - IP: 192.168.242.165 - RequestID: 00hbx5g7mdxn7 +2025-06-18T15:01:56.581Z [TRACE] order-service - Operation: email_sent - Processing time: 161ms - RequestID: q1qioxoyc8 +2025-06-18T15:01:56.681Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 368ms - Rows affected: 70 - RequestID: kgr97bx4ezh +2025-06-18T15:01:56.781Z [TRACE] order-service - POST /api/v1/inventory - Status: 500 - Response time: 618ms - IP: 192.168.97.87 - User: user_1064 - RequestID: pf1ywxasush +2025-06-18T15:01:56.881Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 210ms - Rows affected: 71 - RequestID: ir8ikmmuf1 +2025-06-18T15:01:56.981Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 238ms - RequestID: zrjz3mp6x8r +2025-06-18T15:01:57.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 354ms - RequestID: lk0doktm12 +2025-06-18T15:01:57.181Z [TRACE] payment-service - Auth event: logout - User: user_1075 - IP: 192.168.242.165 - RequestID: b4in8k2ko2h +2025-06-18T15:01:57.281Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 144ms - Rows affected: 30 - RequestID: 11mld9iib2la +2025-06-18T15:01:57.381Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 500 - Response time: 896ms - IP: 192.168.100.240 - User: user_1078 - RequestID: bq5h0a7x9wg +2025-06-18T15:01:57.481Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 401 - Response time: 1517ms - IP: 192.168.147.171 - User: user_1042 - RequestID: eykr3zchyi5 +2025-06-18T15:01:57.581Z [INFO] auth-service - Operation: payment_processed - Processing time: 603ms - RequestID: vqx1snbbg2 +2025-06-18T15:01:57.681Z [DEBUG] user-service - Database SELECT on products - Execution time: 485ms - Rows affected: 89 - RequestID: o8zjp5rp9fs +2025-06-18T15:01:57.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1009 - IP: 192.168.79.141 - RequestID: opx4uh7z2f +2025-06-18T15:01:57.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 441ms - RequestID: cyrg6bh8dsl +2025-06-18T15:01:57.981Z [TRACE] notification-service - POST /api/v1/orders - Status: 200 - Response time: 255ms - IP: 192.168.247.134 - User: user_1040 - RequestID: vuhog12sgwj +2025-06-18T15:01:58.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.79.141 - RequestID: gcoclfsh0gp +2025-06-18T15:01:58.181Z [INFO] order-service - POST /api/v1/inventory - Status: 500 - Response time: 890ms - IP: 192.168.44.5 - User: user_1075 - RequestID: 4rbw61wnhaw +2025-06-18T15:01:58.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 420ms - RequestID: oj37q8pc6xa +2025-06-18T15:01:58.381Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1669ms - IP: 192.168.229.123 - User: user_1065 - RequestID: tuy8silrzh +2025-06-18T15:01:58.481Z [INFO] inventory-service - Auth event: password_change - User: user_1079 - IP: 192.168.194.41 - RequestID: 25jfhiprqab +2025-06-18T15:01:58.581Z [TRACE] user-service - Database DELETE on payments - Execution time: 264ms - Rows affected: 24 - RequestID: 9w4cpq0somb +2025-06-18T15:01:58.681Z [TRACE] user-service - GET /api/v1/payments - Status: 401 - Response time: 902ms - IP: 192.168.13.72 - User: user_1082 - RequestID: 11a5hfxqpmwb +2025-06-18T15:01:58.781Z [INFO] auth-service - Operation: inventory_updated - Processing time: 750ms - RequestID: yidpt5k552 +2025-06-18T15:01:58.881Z [INFO] auth-service - Auth event: password_change - User: user_1065 - IP: 192.168.174.114 - RequestID: 60lhmip4wy2 +2025-06-18T15:01:58.981Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 79ms - Rows affected: 95 - RequestID: 8557bzzdv3v +2025-06-18T15:01:59.081Z [INFO] order-service - Operation: email_sent - Processing time: 194ms - RequestID: l2eft61qpr +2025-06-18T15:01:59.181Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1675ms - IP: 192.168.235.117 - User: user_1093 - RequestID: 8jcnm1n85rj +2025-06-18T15:01:59.281Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 388ms - IP: 192.168.113.218 - User: user_1062 - RequestID: 3q3fzfrw4kv +2025-06-18T15:01:59.381Z [DEBUG] notification-service - Auth event: login_success - User: user_1035 - IP: 192.168.64.33 - RequestID: ry7dbw6tya +2025-06-18T15:01:59.481Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 401 - Response time: 1141ms - IP: 192.168.1.152 - User: user_1060 - RequestID: yqw9zm80x48 +2025-06-18T15:01:59.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.133.7 - RequestID: pedsq1n9o7 +2025-06-18T15:01:59.681Z [TRACE] order-service - Operation: email_sent - Processing time: 724ms - RequestID: 8ssjxu3hbkr +2025-06-18T15:01:59.781Z [TRACE] notification-service - Operation: notification_queued - Processing time: 848ms - RequestID: n1ivbfzusap +2025-06-18T15:01:59.881Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 200 - Response time: 234ms - IP: 192.168.30.79 - User: user_1097 - RequestID: mnvx9ih9m5 +2025-06-18T15:01:59.981Z [DEBUG] user-service - POST /api/v1/users - Status: 201 - Response time: 113ms - IP: 192.168.13.72 - User: user_1049 - RequestID: hpo8gnr5i9o +2025-06-18T15:02:00.081Z [DEBUG] inventory-service - Operation: order_created - Processing time: 1008ms - RequestID: l9r624njzbk +2025-06-18T15:02:00.181Z [DEBUG] user-service - DELETE /api/v1/users - Status: 502 - Response time: 1804ms - IP: 192.168.104.37 - User: user_1003 - RequestID: lsxugoheun +2025-06-18T15:02:00.281Z [TRACE] user-service - Auth event: logout - User: user_1038 - IP: 192.168.30.79 - RequestID: 916pmwk0qxc +2025-06-18T15:02:00.381Z [INFO] order-service - Database DELETE on payments - Execution time: 227ms - Rows affected: 23 - RequestID: s0d1yhibjf +2025-06-18T15:02:00.481Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 388ms - Rows affected: 73 - RequestID: el31umxo29a +2025-06-18T15:02:00.581Z [INFO] payment-service - Database SELECT on orders - Execution time: 259ms - Rows affected: 87 - RequestID: onvj07aimeg +2025-06-18T15:02:00.681Z [DEBUG] order-service - POST /api/v1/payments - Status: 503 - Response time: 1824ms - IP: 192.168.79.141 - User: user_1070 - RequestID: tf43i77t1n +2025-06-18T15:02:00.781Z [INFO] notification-service - Auth event: password_change - User: user_1093 - IP: 192.168.211.72 - RequestID: 0ifv58sfmcw +2025-06-18T15:02:00.881Z [DEBUG] user-service - Operation: cache_miss - Processing time: 437ms - RequestID: 5piijw9enh3 +2025-06-18T15:02:00.981Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1743ms - IP: 192.168.141.100 - User: user_1011 - RequestID: r90i9unadeb +2025-06-18T15:02:01.081Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 499ms - Rows affected: 23 - RequestID: vvv0tz5d4fk +2025-06-18T15:02:01.181Z [TRACE] payment-service - Operation: payment_processed - Processing time: 648ms - RequestID: jc8ijldt1ud +2025-06-18T15:02:01.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.68.158 - RequestID: dpifomq8wrb +2025-06-18T15:02:01.381Z [TRACE] auth-service - Operation: cache_hit - Processing time: 131ms - RequestID: f0ta1n0ofoh +2025-06-18T15:02:01.481Z [INFO] user-service - Operation: cache_hit - Processing time: 968ms - RequestID: 5pij1a2qj1f +2025-06-18T15:02:01.581Z [INFO] user-service - PATCH /api/v1/payments - Status: 404 - Response time: 1145ms - IP: 192.168.240.169 - User: user_1020 - RequestID: dzomv583nh +2025-06-18T15:02:01.681Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 553ms - IP: 192.168.81.206 - User: user_1075 - RequestID: ymvqkrz6x2f +2025-06-18T15:02:01.781Z [INFO] user-service - PUT /api/v1/payments - Status: 403 - Response time: 104ms - IP: 192.168.187.199 - User: user_1020 - RequestID: vial7j3bcea +2025-06-18T15:02:01.881Z [TRACE] auth-service - PUT /api/v1/orders - Status: 200 - Response time: 1373ms - IP: 192.168.79.141 - User: user_1097 - RequestID: tm2uj0y9iyj +2025-06-18T15:02:01.981Z [INFO] order-service - PUT /api/v1/users - Status: 400 - Response time: 1432ms - IP: 192.168.79.116 - User: user_1032 - RequestID: dohinspuaz +2025-06-18T15:02:02.081Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 166ms - Rows affected: 89 - RequestID: 4f2bvgnj71k +2025-06-18T15:02:02.181Z [TRACE] payment-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.194.41 - RequestID: z2fvt7qn7m +2025-06-18T15:02:02.281Z [INFO] order-service - Auth event: logout - User: user_1088 - IP: 192.168.32.38 - RequestID: qmmyw00ru3r +2025-06-18T15:02:02.381Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.194.41 - RequestID: a6pyr7b3ldb +2025-06-18T15:02:02.481Z [TRACE] order-service - Database DELETE on orders - Execution time: 240ms - Rows affected: 80 - RequestID: q0pg705f16o +2025-06-18T15:02:02.581Z [INFO] inventory-service - PUT /api/v1/payments - Status: 503 - Response time: 216ms - IP: 192.168.141.100 - User: user_1068 - RequestID: 7cr3ytenx2a +2025-06-18T15:02:02.681Z [INFO] user-service - Auth event: password_change - User: user_1064 - IP: 192.168.167.32 - RequestID: nlcs33qp0x +2025-06-18T15:02:02.781Z [TRACE] user-service - Operation: order_created - Processing time: 939ms - RequestID: mewi2ygqd8 +2025-06-18T15:02:02.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.53.133 - RequestID: eqx4f81je18 +2025-06-18T15:02:02.981Z [DEBUG] notification-service - Operation: order_created - Processing time: 667ms - RequestID: w7dseea3dkd +2025-06-18T15:02:03.081Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 319ms - Rows affected: 20 - RequestID: xqxv7zw8yha +2025-06-18T15:02:03.181Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 401 - Response time: 685ms - IP: 192.168.36.218 - User: user_1076 - RequestID: yxzgwuturms +2025-06-18T15:02:03.281Z [TRACE] auth-service - Operation: notification_queued - Processing time: 365ms - RequestID: jt25bbw25wb +2025-06-18T15:02:03.381Z [INFO] user-service - Operation: email_sent - Processing time: 162ms - RequestID: vv4uxxz2c6c +2025-06-18T15:02:03.481Z [INFO] inventory-service - Database DELETE on users - Execution time: 461ms - Rows affected: 60 - RequestID: dnlg3w8lf8 +2025-06-18T15:02:03.581Z [INFO] notification-service - Operation: inventory_updated - Processing time: 305ms - RequestID: bztvxwaqt8g +2025-06-18T15:02:03.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 837ms - RequestID: m303rkii5dk +2025-06-18T15:02:03.781Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 49ms - Rows affected: 15 - RequestID: 2vttzhzr6zc +2025-06-18T15:02:03.881Z [INFO] inventory-service - Database SELECT on users - Execution time: 48ms - Rows affected: 71 - RequestID: xgx7ppg7mf +2025-06-18T15:02:03.981Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 502 - Response time: 59ms - IP: 192.168.31.117 - User: user_1042 - RequestID: r1rccjrwtv +2025-06-18T15:02:04.081Z [INFO] user-service - Operation: notification_queued - Processing time: 241ms - RequestID: 0468pxptwzp7 +2025-06-18T15:02:04.181Z [TRACE] auth-service - Operation: cache_miss - Processing time: 476ms - RequestID: zlg3riwkcjq +2025-06-18T15:02:04.281Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 223ms - Rows affected: 57 - RequestID: 2ojugm47cz3 +2025-06-18T15:02:04.381Z [INFO] notification-service - Database UPDATE on orders - Execution time: 313ms - Rows affected: 58 - RequestID: wm246ue1d1k +2025-06-18T15:02:04.481Z [TRACE] order-service - Operation: webhook_sent - Processing time: 277ms - RequestID: 2321t7fz8ca +2025-06-18T15:02:04.581Z [DEBUG] user-service - Auth event: login_failed - User: user_1067 - IP: 192.168.79.116 - RequestID: deoryghxa8 +2025-06-18T15:02:04.681Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 134ms - RequestID: w7biyxlvs7e +2025-06-18T15:02:04.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.229.123 - RequestID: vl5kjw9cfy +2025-06-18T15:02:04.881Z [INFO] notification-service - GET /api/v1/payments - Status: 401 - Response time: 561ms - IP: 192.168.104.37 - User: user_1081 - RequestID: 45l56q0wqsn +2025-06-18T15:02:04.981Z [TRACE] user-service - Auth event: password_change - User: user_1033 - IP: 192.168.81.206 - RequestID: 74pe5ep9w6q +2025-06-18T15:02:05.081Z [INFO] notification-service - Auth event: password_change - User: user_1081 - IP: 192.168.227.233 - RequestID: jrr9985kla +2025-06-18T15:02:05.181Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 201 - Response time: 335ms - IP: 192.168.44.5 - User: user_1068 - RequestID: iwn6a01546b +2025-06-18T15:02:05.281Z [TRACE] user-service - POST /api/v1/orders - Status: 200 - Response time: 1311ms - IP: 192.168.240.169 - User: user_1038 - RequestID: yw3ibsetvf +2025-06-18T15:02:05.381Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 102ms - Rows affected: 28 - RequestID: y30mfrwmbbe +2025-06-18T15:02:05.481Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 437ms - RequestID: xlkbc5x9de +2025-06-18T15:02:05.581Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 404 - Response time: 1751ms - IP: 192.168.85.229 - User: user_1007 - RequestID: m1a0i54nin +2025-06-18T15:02:05.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 780ms - RequestID: m0jkeu4sm18 +2025-06-18T15:02:05.781Z [DEBUG] notification-service - GET /api/v1/orders - Status: 400 - Response time: 508ms - IP: 192.168.211.72 - User: user_1021 - RequestID: wimvobja3ch +2025-06-18T15:02:05.881Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 401 - Response time: 703ms - IP: 192.168.53.133 - User: user_1003 - RequestID: yz3grzw547 +2025-06-18T15:02:05.981Z [DEBUG] user-service - Auth event: logout - User: user_1070 - IP: 192.168.10.184 - RequestID: 84isuixllsp +2025-06-18T15:02:06.081Z [INFO] notification-service - DELETE /api/v1/orders - Status: 200 - Response time: 787ms - IP: 192.168.81.206 - User: user_1073 - RequestID: nettoirurhi +2025-06-18T15:02:06.181Z [TRACE] user-service - Operation: payment_processed - Processing time: 526ms - RequestID: qu5v43ajjr +2025-06-18T15:02:06.281Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 827ms - RequestID: ikz61l3obf +2025-06-18T15:02:06.381Z [TRACE] order-service - Operation: email_sent - Processing time: 397ms - RequestID: k7gyso83nt8 +2025-06-18T15:02:06.481Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 403 - Response time: 1729ms - IP: 192.168.196.226 - User: user_1009 - RequestID: mty1l13n7ad +2025-06-18T15:02:06.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.235.117 - RequestID: gktsud263ui +2025-06-18T15:02:06.681Z [INFO] user-service - PUT /api/v1/users - Status: 201 - Response time: 383ms - IP: 192.168.113.218 - User: user_1084 - RequestID: asymymjnkjd +2025-06-18T15:02:06.781Z [TRACE] user-service - DELETE /api/v1/users - Status: 200 - Response time: 504ms - IP: 192.168.141.100 - User: user_1088 - RequestID: aiqxr4i7wid +2025-06-18T15:02:06.881Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 56ms - Rows affected: 65 - RequestID: e0isrfz8wve +2025-06-18T15:02:06.981Z [INFO] user-service - Database UPDATE on products - Execution time: 388ms - Rows affected: 52 - RequestID: 5x6iutlz0h +2025-06-18T15:02:07.081Z [INFO] user-service - Database UPDATE on products - Execution time: 80ms - Rows affected: 75 - RequestID: sxvm480hnfd +2025-06-18T15:02:07.181Z [DEBUG] inventory-service - Operation: order_created - Processing time: 754ms - RequestID: askhk7zwhk5 +2025-06-18T15:02:07.281Z [TRACE] user-service - Operation: email_sent - Processing time: 429ms - RequestID: h1lv24nc8vo +2025-06-18T15:02:07.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.97.87 - RequestID: o080ofl19dq +2025-06-18T15:02:07.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.13.72 - RequestID: 9fz7llku37p +2025-06-18T15:02:07.581Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 432ms - RequestID: j9g79xejozf +2025-06-18T15:02:07.681Z [INFO] auth-service - Operation: webhook_sent - Processing time: 840ms - RequestID: ivjdfvxbp2r +2025-06-18T15:02:07.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 266ms - RequestID: volel454wd +2025-06-18T15:02:07.881Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 503 - Response time: 1675ms - IP: 192.168.232.72 - User: user_1039 - RequestID: 9updyn8v59l +2025-06-18T15:02:07.981Z [INFO] order-service - Database SELECT on sessions - Execution time: 133ms - Rows affected: 12 - RequestID: mnonpogah7 +2025-06-18T15:02:08.081Z [INFO] notification-service - GET /api/v1/inventory - Status: 401 - Response time: 1543ms - IP: 192.168.235.117 - User: user_1093 - RequestID: s9fs1f1gp9d +2025-06-18T15:02:08.181Z [DEBUG] payment-service - Auth event: logout - User: user_1079 - IP: 192.168.240.169 - RequestID: tw7dhgdv35m +2025-06-18T15:02:08.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.158.144 - RequestID: fkkg3abxr6t +2025-06-18T15:02:08.381Z [DEBUG] order-service - PATCH /api/v1/users - Status: 500 - Response time: 1280ms - IP: 192.168.13.72 - User: user_1027 - RequestID: mm7mv7njn1s +2025-06-18T15:02:08.481Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 318ms - Rows affected: 35 - RequestID: sqskaqhj4b +2025-06-18T15:02:08.581Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 60ms - Rows affected: 3 - RequestID: 01x4ylg8wp4w +2025-06-18T15:02:08.681Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 86ms - IP: 192.168.211.72 - User: user_1087 - RequestID: 4o1q62hs9uh +2025-06-18T15:02:08.781Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 154ms - Rows affected: 4 - RequestID: 2vp9irsb285 +2025-06-18T15:02:08.881Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 266ms - Rows affected: 17 - RequestID: 0atgsomkzf0m +2025-06-18T15:02:08.981Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 330ms - Rows affected: 79 - RequestID: tmwkaev1oo9 +2025-06-18T15:02:09.081Z [INFO] payment-service - Database DELETE on sessions - Execution time: 447ms - Rows affected: 19 - RequestID: 8noq2x4odma +2025-06-18T15:02:09.181Z [INFO] auth-service - Operation: inventory_updated - Processing time: 928ms - RequestID: 4oulnntioj7 +2025-06-18T15:02:09.281Z [TRACE] notification-service - Auth event: password_change - User: user_1070 - IP: 192.168.64.33 - RequestID: m4upxnyr0ci +2025-06-18T15:02:09.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.68.158 - RequestID: 38gawfih2m +2025-06-18T15:02:09.481Z [TRACE] notification-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.64.33 - RequestID: oktlamh2vuj +2025-06-18T15:02:09.581Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 227ms - Rows affected: 22 - RequestID: ymyf8p6bh2 +2025-06-18T15:02:09.681Z [TRACE] inventory-service - Auth event: logout - User: user_1032 - IP: 192.168.211.72 - RequestID: 2k2rky7a78m +2025-06-18T15:02:09.781Z [DEBUG] user-service - Database SELECT on payments - Execution time: 427ms - Rows affected: 14 - RequestID: e06hl86o62i +2025-06-18T15:02:09.881Z [TRACE] inventory-service - Auth event: login_success - User: user_1008 - IP: 192.168.189.103 - RequestID: n8n8x8iumnh +2025-06-18T15:02:09.981Z [TRACE] payment-service - Auth event: password_change - User: user_1008 - IP: 192.168.235.117 - RequestID: 4sdxj7z1mf9 +2025-06-18T15:02:10.081Z [TRACE] notification-service - Auth event: password_change - User: user_1031 - IP: 192.168.170.215 - RequestID: gt4t7jhjn8 +2025-06-18T15:02:10.181Z [DEBUG] payment-service - GET /api/v1/orders - Status: 404 - Response time: 515ms - IP: 192.168.97.87 - User: user_1067 - RequestID: yee2ftv0rp +2025-06-18T15:02:10.281Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 503 - Response time: 754ms - IP: 192.168.46.63 - User: user_1031 - RequestID: emucabkt2zm +2025-06-18T15:02:10.381Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 637ms - IP: 192.168.232.72 - User: user_1035 - RequestID: wg8o5ak5htb +2025-06-18T15:02:10.481Z [INFO] user-service - Database INSERT on payments - Execution time: 153ms - Rows affected: 86 - RequestID: gkhu5vwpxu8 +2025-06-18T15:02:10.581Z [INFO] order-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.242.165 - RequestID: pw6aa1zmovd +2025-06-18T15:02:10.681Z [DEBUG] order-service - Auth event: login_success - User: user_1020 - IP: 192.168.46.63 - RequestID: kt075ifqrna +2025-06-18T15:02:10.781Z [TRACE] payment-service - PUT /api/v1/payments - Status: 500 - Response time: 1157ms - IP: 192.168.196.226 - User: user_1068 - RequestID: ld9yaqjdn5i +2025-06-18T15:02:10.881Z [TRACE] payment-service - Operation: notification_queued - Processing time: 874ms - RequestID: i6e6rqge7hi +2025-06-18T15:02:10.981Z [INFO] inventory-service - Operation: notification_queued - Processing time: 750ms - RequestID: dks8nwjz04f +2025-06-18T15:02:11.081Z [TRACE] auth-service - Database DELETE on orders - Execution time: 443ms - Rows affected: 58 - RequestID: 7neki6ji37o +2025-06-18T15:02:11.181Z [TRACE] payment-service - Auth event: logout - User: user_1050 - IP: 192.168.85.229 - RequestID: pxj11w205l8 +2025-06-18T15:02:11.281Z [DEBUG] user-service - Database INSERT on payments - Execution time: 417ms - Rows affected: 40 - RequestID: veokcl7uqu +2025-06-18T15:02:11.381Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 640ms - RequestID: kcoicp5vtvn +2025-06-18T15:02:11.481Z [INFO] user-service - Operation: payment_processed - Processing time: 284ms - RequestID: tyc2e6vjl7 +2025-06-18T15:02:11.581Z [INFO] payment-service - Auth event: logout - User: user_1028 - IP: 192.168.174.114 - RequestID: np4r7964g6 +2025-06-18T15:02:11.681Z [TRACE] auth-service - Database DELETE on orders - Execution time: 246ms - Rows affected: 84 - RequestID: 3u7eeac73yh +2025-06-18T15:02:11.781Z [INFO] order-service - Database INSERT on payments - Execution time: 337ms - Rows affected: 32 - RequestID: 18gor4mq0rn +2025-06-18T15:02:11.881Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 376ms - Rows affected: 57 - RequestID: jq7kk8nljv +2025-06-18T15:02:11.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 900ms - RequestID: qvgbygpjil +2025-06-18T15:02:12.081Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 297ms - Rows affected: 10 - RequestID: 25uav2yt59q +2025-06-18T15:02:12.181Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 500 - Response time: 283ms - IP: 192.168.1.152 - User: user_1018 - RequestID: q08lj65ockq +2025-06-18T15:02:12.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.68.158 - RequestID: jy0pvru15y +2025-06-18T15:02:12.381Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1041ms - IP: 192.168.30.79 - User: user_1008 - RequestID: ibc3eqgan7j +2025-06-18T15:02:12.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 247ms - RequestID: jhnsh90yjd +2025-06-18T15:02:12.581Z [TRACE] auth-service - Database DELETE on users - Execution time: 221ms - Rows affected: 63 - RequestID: 9udbkhmvgg +2025-06-18T15:02:12.681Z [INFO] order-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.100.240 - RequestID: o371v33lxdg +2025-06-18T15:02:12.781Z [INFO] user-service - Auth event: password_change - User: user_1090 - IP: 192.168.31.117 - RequestID: 38w8j1ad0dm +2025-06-18T15:02:12.881Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 553ms - RequestID: eiln3o8nmc +2025-06-18T15:02:12.981Z [DEBUG] order-service - Auth event: password_change - User: user_1077 - IP: 192.168.189.103 - RequestID: m99rdn5fma +2025-06-18T15:02:13.081Z [TRACE] user-service - Database SELECT on products - Execution time: 363ms - Rows affected: 89 - RequestID: rty08egp99d +2025-06-18T15:02:13.181Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 190ms - Rows affected: 59 - RequestID: rrjyhskiq4n +2025-06-18T15:02:13.281Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 466ms - Rows affected: 88 - RequestID: 9zdyze5xni +2025-06-18T15:02:13.381Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 500 - Response time: 530ms - IP: 192.168.240.169 - User: user_1044 - RequestID: 2kdlzqajqn9 +2025-06-18T15:02:13.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1019 - IP: 192.168.229.123 - RequestID: 1laxg186eln +2025-06-18T15:02:13.581Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 196ms - Rows affected: 59 - RequestID: v1e28l13ao +2025-06-18T15:02:13.681Z [INFO] auth-service - GET /api/v1/users - Status: 400 - Response time: 1299ms - IP: 192.168.235.117 - User: user_1042 - RequestID: 5bi4zao31bk +2025-06-18T15:02:13.781Z [INFO] inventory-service - GET /api/v1/inventory - Status: 401 - Response time: 1424ms - IP: 192.168.170.215 - User: user_1093 - RequestID: q0fmtvn877 +2025-06-18T15:02:13.881Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 254ms - Rows affected: 10 - RequestID: m8cri1dpwtr +2025-06-18T15:02:13.981Z [INFO] order-service - Database DELETE on sessions - Execution time: 40ms - Rows affected: 2 - RequestID: 25ptpm9vrrq +2025-06-18T15:02:14.081Z [TRACE] user-service - PUT /api/v1/orders - Status: 401 - Response time: 95ms - IP: 192.168.53.133 - User: user_1044 - RequestID: 1bsw6s4sxnk +2025-06-18T15:02:14.181Z [TRACE] payment-service - PUT /api/v1/users - Status: 502 - Response time: 1558ms - IP: 192.168.79.143 - User: user_1051 - RequestID: 2rqd3sx3wuz +2025-06-18T15:02:14.281Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 214ms - Rows affected: 87 - RequestID: b5vud35bhn6 +2025-06-18T15:02:14.381Z [INFO] payment-service - Operation: webhook_sent - Processing time: 158ms - RequestID: d0gs6tbqfoe +2025-06-18T15:02:14.481Z [TRACE] user-service - Operation: order_created - Processing time: 840ms - RequestID: wxtq19264pk +2025-06-18T15:02:14.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.240.169 - RequestID: eugllv9mf4 +2025-06-18T15:02:14.681Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1096 - IP: 192.168.14.77 - RequestID: cgvt9ftof29 +2025-06-18T15:02:14.781Z [INFO] order-service - PATCH /api/v1/orders - Status: 404 - Response time: 1894ms - IP: 192.168.232.72 - User: user_1000 - RequestID: byfo3fhmzrp +2025-06-18T15:02:14.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1074 - IP: 192.168.229.123 - RequestID: bm6zsi0xs5 +2025-06-18T15:02:14.981Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 615ms - RequestID: q4wehj89pbh +2025-06-18T15:02:15.081Z [INFO] notification-service - Operation: payment_processed - Processing time: 1037ms - RequestID: gwaopede9a +2025-06-18T15:02:15.181Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 92ms - RequestID: sxjvu03pr7m +2025-06-18T15:02:15.281Z [INFO] payment-service - Database INSERT on payments - Execution time: 341ms - Rows affected: 99 - RequestID: tynutd4h18 +2025-06-18T15:02:15.381Z [DEBUG] payment-service - Auth event: password_change - User: user_1053 - IP: 192.168.174.114 - RequestID: 8vxz9gdym7m +2025-06-18T15:02:15.481Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 73ms - Rows affected: 29 - RequestID: txxqedxadef +2025-06-18T15:02:15.581Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 84ms - Rows affected: 97 - RequestID: mepbvhyb01a +2025-06-18T15:02:15.681Z [DEBUG] user-service - Auth event: login_success - User: user_1023 - IP: 192.168.187.199 - RequestID: x8n510ki2zk +2025-06-18T15:02:15.781Z [INFO] user-service - Operation: notification_queued - Processing time: 1019ms - RequestID: rwflrqm9r1l +2025-06-18T15:02:15.881Z [INFO] notification-service - Database INSERT on sessions - Execution time: 27ms - Rows affected: 81 - RequestID: fr4l4mytnyw +2025-06-18T15:02:15.981Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 403 - Response time: 1486ms - IP: 192.168.104.37 - User: user_1013 - RequestID: 7ua7sy57wie +2025-06-18T15:02:16.081Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 437ms - RequestID: arygs4hwfpf +2025-06-18T15:02:16.181Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 847ms - RequestID: 6bm9javjm9r +2025-06-18T15:02:16.281Z [INFO] user-service - POST /api/v1/payments - Status: 502 - Response time: 716ms - IP: 192.168.247.134 - User: user_1014 - RequestID: z3r8zcrel4o +2025-06-18T15:02:16.381Z [TRACE] notification-service - Auth event: login_success - User: user_1044 - IP: 192.168.13.72 - RequestID: v0w5ju7nclp +2025-06-18T15:02:16.481Z [DEBUG] notification-service - Operation: order_created - Processing time: 891ms - RequestID: im35anlmod +2025-06-18T15:02:16.581Z [TRACE] inventory-service - Auth event: login_success - User: user_1019 - IP: 192.168.97.87 - RequestID: jufp1h3j6l +2025-06-18T15:02:16.681Z [DEBUG] auth-service - Auth event: password_change - User: user_1036 - IP: 192.168.36.218 - RequestID: zh45o7cgma +2025-06-18T15:02:16.781Z [INFO] order-service - Auth event: login_success - User: user_1005 - IP: 192.168.227.233 - RequestID: 0bs24dr92n +2025-06-18T15:02:16.881Z [TRACE] order-service - Auth event: password_change - User: user_1072 - IP: 192.168.247.134 - RequestID: xgugi1olide +2025-06-18T15:02:16.981Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 384ms - Rows affected: 24 - RequestID: cjp6r84jfgq +2025-06-18T15:02:17.081Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 857ms - RequestID: hprzzdhwlmg +2025-06-18T15:02:17.181Z [DEBUG] inventory-service - Auth event: password_change - User: user_1051 - IP: 192.168.174.114 - RequestID: 8w5hyf0xgg +2025-06-18T15:02:17.281Z [INFO] payment-service - Operation: cache_miss - Processing time: 810ms - RequestID: a3kdivh7nqg +2025-06-18T15:02:17.381Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 404 - Response time: 385ms - IP: 192.168.147.171 - User: user_1018 - RequestID: i2wd2r3kjyr +2025-06-18T15:02:17.481Z [TRACE] auth-service - Operation: email_sent - Processing time: 460ms - RequestID: 8l9pzscfryw +2025-06-18T15:02:17.581Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1121ms - IP: 192.168.79.116 - User: user_1042 - RequestID: 6djbm6swmvr +2025-06-18T15:02:17.681Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 400 - Response time: 785ms - IP: 192.168.227.77 - User: user_1083 - RequestID: yry72f631cd +2025-06-18T15:02:17.781Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 400 - Response time: 1218ms - IP: 192.168.144.38 - User: user_1053 - RequestID: 6nfrfwsusnn +2025-06-18T15:02:17.881Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 432ms - Rows affected: 13 - RequestID: 0pq85njos04i +2025-06-18T15:02:17.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 247ms - RequestID: cp2zmaiszl +2025-06-18T15:02:18.081Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1306ms - IP: 192.168.30.79 - User: user_1019 - RequestID: jcm67qmnv9e +2025-06-18T15:02:18.181Z [INFO] payment-service - Operation: email_sent - Processing time: 499ms - RequestID: i3ixvs7ppqs +2025-06-18T15:02:18.281Z [TRACE] payment-service - Operation: email_sent - Processing time: 211ms - RequestID: rwmwlq9m9r +2025-06-18T15:02:18.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.196.226 - RequestID: 4lrkbz7wqo +2025-06-18T15:02:18.481Z [DEBUG] payment-service - POST /api/v1/users - Status: 200 - Response time: 107ms - IP: 192.168.68.128 - User: user_1054 - RequestID: gvcqviih3ow +2025-06-18T15:02:18.581Z [DEBUG] payment-service - POST /api/v1/payments - Status: 400 - Response time: 1112ms - IP: 192.168.31.117 - User: user_1010 - RequestID: 6e3x6t7ql1 +2025-06-18T15:02:18.681Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1303ms - IP: 192.168.100.240 - User: user_1060 - RequestID: 9me1mm8iqb +2025-06-18T15:02:18.781Z [TRACE] order-service - Auth event: logout - User: user_1021 - IP: 192.168.159.94 - RequestID: spsws22xi1t +2025-06-18T15:02:18.881Z [DEBUG] notification-service - GET /api/v1/users - Status: 201 - Response time: 518ms - IP: 192.168.194.41 - User: user_1037 - RequestID: chfz4bw66yq +2025-06-18T15:02:18.981Z [TRACE] order-service - Operation: order_created - Processing time: 867ms - RequestID: mbyacw9fsxj +2025-06-18T15:02:19.081Z [INFO] auth-service - Operation: inventory_updated - Processing time: 255ms - RequestID: fjy5is6em57 +2025-06-18T15:02:19.181Z [INFO] inventory-service - POST /api/v1/orders - Status: 500 - Response time: 1638ms - IP: 192.168.97.87 - User: user_1034 - RequestID: maa86ly9di +2025-06-18T15:02:19.281Z [TRACE] auth-service - Auth event: login_failed - User: user_1056 - IP: 192.168.85.229 - RequestID: vccccmfo8fi +2025-06-18T15:02:19.381Z [TRACE] notification-service - Database SELECT on users - Execution time: 91ms - Rows affected: 56 - RequestID: xswkry8ald8 +2025-06-18T15:02:19.481Z [INFO] payment-service - Operation: cache_hit - Processing time: 293ms - RequestID: z4ygrlx78ji +2025-06-18T15:02:19.581Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 500 - Response time: 618ms - IP: 192.168.36.218 - User: user_1058 - RequestID: 59f22x0kccp +2025-06-18T15:02:19.681Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 306ms - Rows affected: 42 - RequestID: 6k8tt3398u4 +2025-06-18T15:02:19.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.247.134 - RequestID: dkd1rmejbp +2025-06-18T15:02:19.881Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 409ms - Rows affected: 98 - RequestID: kzabnl4wyro +2025-06-18T15:02:19.981Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 401 - Response time: 1607ms - IP: 192.168.159.94 - User: user_1046 - RequestID: e9ptsbig75p +2025-06-18T15:02:20.081Z [INFO] order-service - PATCH /api/v1/users - Status: 503 - Response time: 1722ms - IP: 192.168.232.72 - User: user_1050 - RequestID: uh69tzck5kr +2025-06-18T15:02:20.181Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 145ms - Rows affected: 53 - RequestID: w1edb1z2zwi +2025-06-18T15:02:20.281Z [TRACE] user-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.32.38 - RequestID: 6wq2yh6g3k2 +2025-06-18T15:02:20.381Z [DEBUG] payment-service - PUT /api/v1/users - Status: 200 - Response time: 583ms - IP: 192.168.81.206 - User: user_1080 - RequestID: ogk9g6yo2fa +2025-06-18T15:02:20.481Z [DEBUG] notification-service - Database DELETE on products - Execution time: 356ms - Rows affected: 42 - RequestID: d6snrwaukg +2025-06-18T15:02:20.581Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 764ms - RequestID: jpfdry0jjn +2025-06-18T15:02:20.681Z [DEBUG] inventory-service - Auth event: password_change - User: user_1010 - IP: 192.168.79.141 - RequestID: 0laira8t6fw +2025-06-18T15:02:20.781Z [DEBUG] user-service - Auth event: password_change - User: user_1097 - IP: 192.168.181.225 - RequestID: 9y15qowr32q +2025-06-18T15:02:20.881Z [TRACE] order-service - Database UPDATE on products - Execution time: 103ms - Rows affected: 0 - RequestID: dpo8f2fqiw +2025-06-18T15:02:20.981Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 449ms - Rows affected: 11 - RequestID: lh384srv8r +2025-06-18T15:02:21.081Z [DEBUG] auth-service - Auth event: login_success - User: user_1036 - IP: 192.168.68.158 - RequestID: a1lzjmadeet +2025-06-18T15:02:21.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 236ms - RequestID: jg6ftp2ksk +2025-06-18T15:02:21.281Z [DEBUG] user-service - Operation: cache_hit - Processing time: 725ms - RequestID: wrqqbvdj08 +2025-06-18T15:02:21.381Z [TRACE] notification-service - Operation: order_created - Processing time: 991ms - RequestID: 48vyi8nia1a +2025-06-18T15:02:21.481Z [INFO] notification-service - Operation: email_sent - Processing time: 557ms - RequestID: y1a19bcmara +2025-06-18T15:02:21.581Z [INFO] user-service - Operation: webhook_sent - Processing time: 810ms - RequestID: vwi15e00qkk +2025-06-18T15:02:21.681Z [INFO] order-service - Database UPDATE on orders - Execution time: 296ms - Rows affected: 88 - RequestID: rc1t9kd7b2p +2025-06-18T15:02:21.781Z [INFO] notification-service - Database DELETE on sessions - Execution time: 275ms - Rows affected: 36 - RequestID: 3lf661ezav9 +2025-06-18T15:02:21.881Z [INFO] user-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.44.5 - RequestID: v5osyttj66h +2025-06-18T15:02:21.981Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 401 - Response time: 718ms - IP: 192.168.100.240 - User: user_1025 - RequestID: p3c1j66p0n +2025-06-18T15:02:22.081Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 1656ms - IP: 192.168.68.128 - User: user_1072 - RequestID: c28imoqkzsu +2025-06-18T15:02:22.181Z [TRACE] payment-service - Operation: cache_hit - Processing time: 1031ms - RequestID: f82pott6gyt +2025-06-18T15:02:22.281Z [INFO] notification-service - PATCH /api/v1/payments - Status: 502 - Response time: 1402ms - IP: 192.168.229.123 - User: user_1013 - RequestID: 7whn1594zxh +2025-06-18T15:02:22.381Z [INFO] payment-service - Database DELETE on orders - Execution time: 451ms - Rows affected: 68 - RequestID: md2mil2x5wp +2025-06-18T15:02:22.481Z [TRACE] inventory-service - Operation: order_created - Processing time: 794ms - RequestID: o014a5uwa8 +2025-06-18T15:02:22.581Z [DEBUG] order-service - Auth event: password_change - User: user_1073 - IP: 192.168.68.158 - RequestID: twpwg0fw5j8 +2025-06-18T15:02:22.681Z [DEBUG] order-service - Operation: cache_hit - Processing time: 494ms - RequestID: h6bxaz3klm +2025-06-18T15:02:22.781Z [TRACE] order-service - Operation: order_created - Processing time: 734ms - RequestID: uw7rxboaxl +2025-06-18T15:02:22.881Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 300ms - RequestID: l2hbfnvizw9 +2025-06-18T15:02:22.981Z [TRACE] user-service - Database SELECT on payments - Execution time: 39ms - Rows affected: 23 - RequestID: onjomxryypg +2025-06-18T15:02:23.081Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1864ms - IP: 192.168.33.76 - User: user_1074 - RequestID: lukepgjhun +2025-06-18T15:02:23.181Z [DEBUG] auth-service - Auth event: logout - User: user_1064 - IP: 192.168.144.38 - RequestID: z9fqouw0s5 +2025-06-18T15:02:23.281Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 502 - Response time: 1995ms - IP: 192.168.227.77 - User: user_1028 - RequestID: mzd6infcam +2025-06-18T15:02:23.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.68.158 - RequestID: qhg7a3nktl9 +2025-06-18T15:02:23.481Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 528ms - RequestID: m6a6tnu6d4 +2025-06-18T15:02:23.581Z [INFO] payment-service - Database DELETE on payments - Execution time: 332ms - Rows affected: 18 - RequestID: 9ya9c1pmd37 +2025-06-18T15:02:23.681Z [DEBUG] order-service - Database DELETE on payments - Execution time: 313ms - Rows affected: 52 - RequestID: 5e6w38dgxjf +2025-06-18T15:02:23.781Z [TRACE] order-service - Operation: webhook_sent - Processing time: 460ms - RequestID: w7yvqehfsej +2025-06-18T15:02:23.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1004 - IP: 192.168.181.225 - RequestID: 51703b2a2x +2025-06-18T15:02:23.981Z [INFO] user-service - Database DELETE on users - Execution time: 459ms - Rows affected: 35 - RequestID: tx1dixeblse +2025-06-18T15:02:24.081Z [DEBUG] user-service - Database DELETE on products - Execution time: 31ms - Rows affected: 42 - RequestID: 1zatdurm8qch +2025-06-18T15:02:24.181Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 319ms - Rows affected: 51 - RequestID: 2cbdeuikp5n +2025-06-18T15:02:24.281Z [DEBUG] notification-service - POST /api/v1/payments - Status: 200 - Response time: 1197ms - IP: 192.168.174.114 - User: user_1094 - RequestID: og7bzfscwjn +2025-06-18T15:02:24.381Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 80ms - Rows affected: 82 - RequestID: xz64aztgorp +2025-06-18T15:02:24.481Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 511ms - RequestID: pa1l93fpm8 +2025-06-18T15:02:24.581Z [DEBUG] user-service - Operation: order_created - Processing time: 712ms - RequestID: b1jx7jw452b +2025-06-18T15:02:24.681Z [TRACE] auth-service - Operation: notification_queued - Processing time: 172ms - RequestID: 2j5ntkmllb8 +2025-06-18T15:02:24.781Z [INFO] notification-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.1.152 - RequestID: tznbrfkd03p +2025-06-18T15:02:24.881Z [INFO] order-service - Database INSERT on products - Execution time: 86ms - Rows affected: 56 - RequestID: i0ltq06909h +2025-06-18T15:02:24.981Z [TRACE] order-service - Operation: email_sent - Processing time: 1039ms - RequestID: b48wjirl97f +2025-06-18T15:02:25.081Z [TRACE] order-service - Auth event: logout - User: user_1013 - IP: 192.168.227.233 - RequestID: m2kezifw5kn +2025-06-18T15:02:25.181Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 992ms - RequestID: k8m7ub9vf3 +2025-06-18T15:02:25.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.33.76 - RequestID: gjfqug0gpvs +2025-06-18T15:02:25.381Z [DEBUG] notification-service - Operation: email_sent - Processing time: 576ms - RequestID: cbh400coqbc +2025-06-18T15:02:25.481Z [INFO] order-service - Operation: email_sent - Processing time: 982ms - RequestID: 7z8b16br3o4 +2025-06-18T15:02:25.581Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 503 - Response time: 791ms - IP: 192.168.28.146 - User: user_1022 - RequestID: xyjfzdf68ii +2025-06-18T15:02:25.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1003 - IP: 192.168.147.171 - RequestID: uwj1kblsu3g +2025-06-18T15:02:25.781Z [DEBUG] inventory-service - Operation: order_created - Processing time: 338ms - RequestID: n5ztwy63pji +2025-06-18T15:02:25.881Z [INFO] auth-service - PATCH /api/v1/orders - Status: 500 - Response time: 267ms - IP: 192.168.28.146 - User: user_1038 - RequestID: cgl9lx6ga6 +2025-06-18T15:02:25.981Z [INFO] notification-service - Auth event: login_failed - User: user_1080 - IP: 192.168.1.152 - RequestID: vabsf615hjo +2025-06-18T15:02:26.081Z [TRACE] notification-service - Database DELETE on users - Execution time: 18ms - Rows affected: 85 - RequestID: nd3ydmqqs1h +2025-06-18T15:02:26.181Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 640ms - IP: 192.168.147.171 - User: user_1044 - RequestID: 9ozhn2vdzzs +2025-06-18T15:02:26.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.196.226 - RequestID: cj7lbvoon4v +2025-06-18T15:02:26.381Z [DEBUG] user-service - Operation: notification_queued - Processing time: 192ms - RequestID: bo0v8tktkz +2025-06-18T15:02:26.481Z [TRACE] user-service - Operation: cache_miss - Processing time: 690ms - RequestID: 3cke8a7n1oc +2025-06-18T15:02:26.581Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.242.165 - RequestID: dldlcy60ita +2025-06-18T15:02:26.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.141.100 - RequestID: 9g5ub6ai1ms +2025-06-18T15:02:26.781Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 493ms - Rows affected: 63 - RequestID: 5f4xysexosb +2025-06-18T15:02:26.881Z [INFO] order-service - Auth event: logout - User: user_1070 - IP: 192.168.13.72 - RequestID: ug2k8uv6u4 +2025-06-18T15:02:26.981Z [TRACE] user-service - Operation: webhook_sent - Processing time: 510ms - RequestID: xsevhz79ngf +2025-06-18T15:02:27.081Z [TRACE] inventory-service - Auth event: logout - User: user_1041 - IP: 192.168.194.41 - RequestID: sf7uud98i2e +2025-06-18T15:02:27.181Z [TRACE] notification-service - GET /api/v1/users - Status: 200 - Response time: 1629ms - IP: 192.168.1.152 - User: user_1054 - RequestID: 5au0rkdtjjj +2025-06-18T15:02:27.281Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 393ms - Rows affected: 83 - RequestID: r7wgf8bm0h +2025-06-18T15:02:27.381Z [TRACE] user-service - Auth event: logout - User: user_1010 - IP: 192.168.138.123 - RequestID: uw25jbht46j +2025-06-18T15:02:27.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 265ms - RequestID: 7vipdorgbnk +2025-06-18T15:02:27.581Z [INFO] order-service - Auth event: password_change - User: user_1034 - IP: 192.168.147.171 - RequestID: 9l0xpq6dx17 +2025-06-18T15:02:27.681Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.170.215 - RequestID: 684n81nan7f +2025-06-18T15:02:27.781Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 200 - Response time: 1201ms - IP: 192.168.10.184 - User: user_1001 - RequestID: mu91eqi6bl +2025-06-18T15:02:27.881Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1068 - IP: 192.168.100.240 - RequestID: y75c6fyz42 +2025-06-18T15:02:27.981Z [TRACE] payment-service - Database UPDATE on products - Execution time: 308ms - Rows affected: 36 - RequestID: hihfsg8at3 +2025-06-18T15:02:28.081Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 309ms - Rows affected: 14 - RequestID: 3cl9wktpjqf +2025-06-18T15:02:28.181Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 77ms - Rows affected: 44 - RequestID: 49dggu6wexl +2025-06-18T15:02:28.281Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 148ms - Rows affected: 21 - RequestID: 2t4jadik9fx +2025-06-18T15:02:28.381Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 292ms - Rows affected: 83 - RequestID: 7ftz11hneb6 +2025-06-18T15:02:28.481Z [DEBUG] auth-service - PUT /api/v1/users - Status: 401 - Response time: 1312ms - IP: 192.168.242.165 - User: user_1069 - RequestID: hggyg4ghhqi +2025-06-18T15:02:28.581Z [DEBUG] order-service - Database INSERT on payments - Execution time: 434ms - Rows affected: 82 - RequestID: sr5ujn4mjy +2025-06-18T15:02:28.681Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1728ms - IP: 192.168.240.169 - User: user_1075 - RequestID: 246zse56sfg +2025-06-18T15:02:28.781Z [DEBUG] payment-service - POST /api/v1/payments - Status: 400 - Response time: 859ms - IP: 192.168.31.117 - User: user_1097 - RequestID: xcwteojtwz +2025-06-18T15:02:28.881Z [TRACE] user-service - GET /api/v1/auth/login - Status: 500 - Response time: 107ms - IP: 192.168.227.233 - User: user_1047 - RequestID: vfepfz8rmg +2025-06-18T15:02:28.981Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1773ms - IP: 192.168.211.72 - User: user_1088 - RequestID: 1bmcftef2uj +2025-06-18T15:02:29.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.189.103 - RequestID: a99qj6v0c5d +2025-06-18T15:02:29.181Z [TRACE] auth-service - Operation: email_sent - Processing time: 377ms - RequestID: 1rjlu0ljp8z +2025-06-18T15:02:29.281Z [TRACE] user-service - Database DELETE on orders - Execution time: 18ms - Rows affected: 38 - RequestID: 854fmpjyih +2025-06-18T15:02:29.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 986ms - RequestID: s9r15wde9x +2025-06-18T15:02:29.481Z [INFO] notification-service - GET /api/v1/orders - Status: 502 - Response time: 1346ms - IP: 192.168.104.37 - User: user_1065 - RequestID: h6ztb917oq +2025-06-18T15:02:29.581Z [INFO] user-service - Database DELETE on sessions - Execution time: 276ms - Rows affected: 35 - RequestID: gyuwy2y3w6 +2025-06-18T15:02:29.681Z [TRACE] auth-service - Operation: payment_processed - Processing time: 305ms - RequestID: f08ke9a93m5 +2025-06-18T15:02:29.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.138.123 - RequestID: 7n3xq6g0y5b +2025-06-18T15:02:29.881Z [TRACE] notification-service - Operation: cache_miss - Processing time: 183ms - RequestID: rroe0xzhe7o +2025-06-18T15:02:29.981Z [DEBUG] notification-service - Operation: email_sent - Processing time: 653ms - RequestID: 79ozn8i07f4 +2025-06-18T15:02:30.081Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 901ms - IP: 192.168.13.72 - User: user_1075 - RequestID: 8j2iaivl5gd +2025-06-18T15:02:30.181Z [TRACE] user-service - Operation: email_sent - Processing time: 521ms - RequestID: 5zwapoayume +2025-06-18T15:02:30.281Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 221ms - Rows affected: 56 - RequestID: tabsqtp4fvn +2025-06-18T15:02:30.381Z [DEBUG] payment-service - Database DELETE on products - Execution time: 457ms - Rows affected: 63 - RequestID: cgmzn2swplv +2025-06-18T15:02:30.481Z [TRACE] user-service - PATCH /api/v1/users - Status: 403 - Response time: 275ms - IP: 192.168.227.77 - User: user_1056 - RequestID: 9vjbm675v3 +2025-06-18T15:02:30.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 417ms - RequestID: ve6acgwhirc +2025-06-18T15:02:30.681Z [INFO] payment-service - POST /api/v1/inventory - Status: 401 - Response time: 559ms - IP: 192.168.181.225 - User: user_1094 - RequestID: gz014zfn0n8 +2025-06-18T15:02:30.781Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 38ms - Rows affected: 19 - RequestID: foct5oh4w2g +2025-06-18T15:02:30.881Z [DEBUG] order-service - Auth event: password_change - User: user_1005 - IP: 192.168.28.146 - RequestID: vfa8vljoa3n +2025-06-18T15:02:30.981Z [TRACE] order-service - GET /api/v1/orders - Status: 401 - Response time: 1817ms - IP: 192.168.104.37 - User: user_1092 - RequestID: wsfuuaazvg +2025-06-18T15:02:31.081Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1479ms - IP: 192.168.1.152 - User: user_1046 - RequestID: zpsim12g2s +2025-06-18T15:02:31.181Z [INFO] notification-service - PUT /api/v1/orders - Status: 400 - Response time: 1871ms - IP: 192.168.33.76 - User: user_1059 - RequestID: ek3qg1jx9d9 +2025-06-18T15:02:31.281Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 401 - Response time: 575ms - IP: 192.168.187.199 - User: user_1094 - RequestID: y1zcluqpju +2025-06-18T15:02:31.381Z [TRACE] user-service - Operation: inventory_updated - Processing time: 229ms - RequestID: r51xtag1o9k +2025-06-18T15:02:31.481Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 373ms - Rows affected: 8 - RequestID: q1ckbyj4c0e +2025-06-18T15:02:31.581Z [INFO] auth-service - Operation: cache_hit - Processing time: 794ms - RequestID: 1uq8rlyd1e7i +2025-06-18T15:02:31.681Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1129ms - IP: 192.168.97.87 - User: user_1053 - RequestID: sv1k8lvtcfa +2025-06-18T15:02:31.781Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 787ms - RequestID: idm3it9wvo +2025-06-18T15:02:31.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.64.33 - RequestID: hdrobjyhj2 +2025-06-18T15:02:31.981Z [TRACE] order-service - Database DELETE on sessions - Execution time: 387ms - Rows affected: 20 - RequestID: i39cqk8egvl +2025-06-18T15:02:32.081Z [TRACE] notification-service - Operation: notification_queued - Processing time: 701ms - RequestID: a4xhoa3gxoe +2025-06-18T15:02:32.181Z [TRACE] auth-service - Database SELECT on products - Execution time: 190ms - Rows affected: 42 - RequestID: 40clq8l8pm +2025-06-18T15:02:32.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1072 - IP: 192.168.14.77 - RequestID: lp2yg2uu6uj +2025-06-18T15:02:32.381Z [INFO] payment-service - GET /api/v1/users - Status: 201 - Response time: 989ms - IP: 192.168.141.100 - User: user_1037 - RequestID: 8k66blx5z8j +2025-06-18T15:02:32.481Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 856ms - RequestID: 0oue0vbtu1v +2025-06-18T15:02:32.581Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 299ms - Rows affected: 44 - RequestID: m735gq4nvgq +2025-06-18T15:02:32.681Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 201 - Response time: 924ms - IP: 192.168.81.206 - User: user_1099 - RequestID: wmdn237pqsf +2025-06-18T15:02:32.781Z [INFO] payment-service - Auth event: password_change - User: user_1065 - IP: 192.168.167.32 - RequestID: 0srzwm7iljo +2025-06-18T15:02:32.881Z [TRACE] payment-service - Auth event: login_failed - User: user_1026 - IP: 192.168.227.77 - RequestID: 00rk3cc2l6oc +2025-06-18T15:02:32.981Z [DEBUG] auth-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1641ms - IP: 192.168.159.94 - User: user_1039 - RequestID: g7u56e45hye +2025-06-18T15:02:33.081Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 625ms - RequestID: jd5gzjgfl6b +2025-06-18T15:02:33.181Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 400 - Response time: 343ms - IP: 192.168.189.103 - User: user_1028 - RequestID: 8bdfajno7w6 +2025-06-18T15:02:33.281Z [INFO] inventory-service - Database INSERT on users - Execution time: 22ms - Rows affected: 79 - RequestID: 8pb8ij1a4w9 +2025-06-18T15:02:33.381Z [DEBUG] user-service - POST /api/v1/users - Status: 502 - Response time: 1377ms - IP: 192.168.46.63 - User: user_1062 - RequestID: 9fz613x8b6o +2025-06-18T15:02:33.481Z [INFO] order-service - Database INSERT on sessions - Execution time: 22ms - Rows affected: 90 - RequestID: czd4k3mtbws +2025-06-18T15:02:33.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.181.225 - RequestID: xv0c66yyx29 +2025-06-18T15:02:33.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 57ms - RequestID: vzakicv19en +2025-06-18T15:02:33.781Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 500 - Response time: 1749ms - IP: 192.168.232.72 - User: user_1059 - RequestID: d99o1vx118g +2025-06-18T15:02:33.881Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 200 - Response time: 1112ms - IP: 192.168.147.171 - User: user_1099 - RequestID: qk0eo515zsc +2025-06-18T15:02:33.981Z [INFO] payment-service - Operation: inventory_updated - Processing time: 864ms - RequestID: rw1xg7okt3 +2025-06-18T15:02:34.081Z [DEBUG] order-service - Database DELETE on payments - Execution time: 204ms - Rows affected: 30 - RequestID: 7ty8dbihwzm +2025-06-18T15:02:34.181Z [TRACE] payment-service - PUT /api/v1/payments - Status: 400 - Response time: 1291ms - IP: 192.168.100.240 - User: user_1063 - RequestID: 9fnau1yj95j +2025-06-18T15:02:34.281Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 208ms - Rows affected: 97 - RequestID: yd40oysz5o9 +2025-06-18T15:02:34.381Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 14ms - Rows affected: 3 - RequestID: gyann6zj6rw +2025-06-18T15:02:34.481Z [INFO] order-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.33.76 - RequestID: zzbjaha1na +2025-06-18T15:02:34.581Z [TRACE] notification-service - Operation: notification_queued - Processing time: 987ms - RequestID: 86glgsc46ir +2025-06-18T15:02:34.681Z [DEBUG] order-service - Operation: notification_queued - Processing time: 87ms - RequestID: ikfpzev8vxj +2025-06-18T15:02:34.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 681ms - RequestID: ftjjyqq2s6 +2025-06-18T15:02:34.881Z [DEBUG] user-service - Auth event: logout - User: user_1052 - IP: 192.168.194.41 - RequestID: erw44adl0g +2025-06-18T15:02:34.981Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 401 - Response time: 1044ms - IP: 192.168.46.63 - User: user_1042 - RequestID: 1dgpknxfila +2025-06-18T15:02:35.081Z [INFO] order-service - Operation: cache_hit - Processing time: 950ms - RequestID: eai828ovxmj +2025-06-18T15:02:35.181Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 404 - Response time: 900ms - IP: 192.168.211.72 - User: user_1086 - RequestID: 8zh86k1jueg +2025-06-18T15:02:35.281Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 178ms - Rows affected: 43 - RequestID: l8cz3mzbsm +2025-06-18T15:02:35.381Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 290ms - Rows affected: 26 - RequestID: i348aktrhao +2025-06-18T15:02:35.481Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 466ms - RequestID: 0lf8u0pho79 +2025-06-18T15:02:35.581Z [TRACE] notification-service - Database UPDATE on users - Execution time: 359ms - Rows affected: 56 - RequestID: 0opi5e895ti +2025-06-18T15:02:35.681Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 452ms - Rows affected: 2 - RequestID: z94ha6wwexh +2025-06-18T15:02:35.781Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 500 - Response time: 1530ms - IP: 192.168.232.72 - User: user_1005 - RequestID: mfab3gy1be +2025-06-18T15:02:35.881Z [DEBUG] order-service - Auth event: password_change - User: user_1073 - IP: 192.168.113.218 - RequestID: t89e5lw10i +2025-06-18T15:02:35.981Z [TRACE] order-service - POST /api/v1/auth/login - Status: 502 - Response time: 1036ms - IP: 192.168.97.87 - User: user_1047 - RequestID: tvvaf0xp9je +2025-06-18T15:02:36.081Z [INFO] user-service - POST /api/v1/users - Status: 502 - Response time: 860ms - IP: 192.168.104.37 - User: user_1067 - RequestID: ozwgk86h6u +2025-06-18T15:02:36.181Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 401 - Response time: 857ms - IP: 192.168.187.199 - User: user_1070 - RequestID: danc4nvdm85 +2025-06-18T15:02:36.281Z [INFO] order-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1411ms - IP: 192.168.100.240 - User: user_1015 - RequestID: ybsv9k1h5i +2025-06-18T15:02:36.381Z [INFO] order-service - Operation: email_sent - Processing time: 946ms - RequestID: y36ep0jnf9j +2025-06-18T15:02:36.481Z [INFO] user-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1835ms - IP: 192.168.10.184 - User: user_1046 - RequestID: 2waoqwdsrdk +2025-06-18T15:02:36.581Z [TRACE] user-service - Auth event: login_success - User: user_1084 - IP: 192.168.104.37 - RequestID: 0eu2uicd64xj +2025-06-18T15:02:36.681Z [INFO] notification-service - Operation: email_sent - Processing time: 128ms - RequestID: lu3u5kn0y1 +2025-06-18T15:02:36.781Z [TRACE] payment-service - Operation: payment_processed - Processing time: 456ms - RequestID: nqsk44w36j +2025-06-18T15:02:36.881Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 85ms - Rows affected: 1 - RequestID: e2kakhxq95k +2025-06-18T15:02:36.981Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 97ms - RequestID: zpfdmep6dk +2025-06-18T15:02:37.081Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 460ms - Rows affected: 17 - RequestID: skbu0zb4t1 +2025-06-18T15:02:37.181Z [TRACE] notification-service - Database UPDATE on products - Execution time: 493ms - Rows affected: 15 - RequestID: 9xiyfiv58kg +2025-06-18T15:02:37.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.232.72 - RequestID: 7soobs318r +2025-06-18T15:02:37.381Z [DEBUG] order-service - Database UPDATE on users - Execution time: 496ms - Rows affected: 35 - RequestID: rinyqangc7 +2025-06-18T15:02:37.481Z [DEBUG] notification-service - Database INSERT on products - Execution time: 381ms - Rows affected: 42 - RequestID: q39lz3a3wjj +2025-06-18T15:02:37.581Z [DEBUG] order-service - Auth event: password_change - User: user_1055 - IP: 192.168.33.76 - RequestID: ghxt10yi67n +2025-06-18T15:02:37.681Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 200 - Response time: 1925ms - IP: 192.168.30.79 - User: user_1023 - RequestID: d2c6i5k4r7 +2025-06-18T15:02:37.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 762ms - RequestID: 4pl3b1yqyhu +2025-06-18T15:02:37.881Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 54ms - Rows affected: 88 - RequestID: q7mm796cq3l +2025-06-18T15:02:37.981Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1358ms - IP: 192.168.167.32 - User: user_1051 - RequestID: 7tohihvuewb +2025-06-18T15:02:38.081Z [TRACE] order-service - POST /api/v1/auth/login - Status: 401 - Response time: 783ms - IP: 192.168.81.206 - User: user_1006 - RequestID: ec3u0jgqf6u +2025-06-18T15:02:38.181Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.147.171 - RequestID: zu44x1qbk2r +2025-06-18T15:02:38.281Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 312ms - IP: 192.168.36.218 - User: user_1054 - RequestID: lvdsmyzx1b +2025-06-18T15:02:38.381Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.196.226 - RequestID: w4g5jr2sgx +2025-06-18T15:02:38.481Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1156ms - IP: 192.168.1.152 - User: user_1053 - RequestID: bbiuj1gw9l +2025-06-18T15:02:38.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.33.76 - RequestID: ajyr5f8airo +2025-06-18T15:02:38.681Z [DEBUG] auth-service - GET /api/v1/payments - Status: 500 - Response time: 1518ms - IP: 192.168.85.229 - User: user_1018 - RequestID: wnpwpwmpbw9 +2025-06-18T15:02:38.781Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 632ms - RequestID: e2kjkuhv9bt +2025-06-18T15:02:38.881Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 1015ms - RequestID: r8qyqczcj3b +2025-06-18T15:02:38.981Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 201 - Response time: 688ms - IP: 192.168.144.38 - User: user_1082 - RequestID: v9dah335gic +2025-06-18T15:02:39.081Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 81ms - Rows affected: 62 - RequestID: q8z4jufmov +2025-06-18T15:02:39.181Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1410ms - IP: 192.168.36.218 - User: user_1061 - RequestID: x3wkfkhl6e9 +2025-06-18T15:02:39.281Z [DEBUG] auth-service - POST /api/v1/users - Status: 500 - Response time: 190ms - IP: 192.168.174.114 - User: user_1012 - RequestID: b0mldqdq8xv +2025-06-18T15:02:39.381Z [INFO] auth-service - Database UPDATE on payments - Execution time: 459ms - Rows affected: 79 - RequestID: 7lqwkcuva0c +2025-06-18T15:02:39.481Z [INFO] notification-service - GET /api/v1/auth/login - Status: 201 - Response time: 183ms - IP: 192.168.232.72 - User: user_1039 - RequestID: 4omvh8ju6y7 +2025-06-18T15:02:39.581Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 200 - Response time: 1185ms - IP: 192.168.68.128 - User: user_1043 - RequestID: 707gxryc0mn +2025-06-18T15:02:39.681Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 503 - Response time: 585ms - IP: 192.168.147.171 - User: user_1001 - RequestID: 29dyk0a4l6k +2025-06-18T15:02:39.781Z [TRACE] user-service - PUT /api/v1/inventory - Status: 403 - Response time: 1131ms - IP: 192.168.11.60 - User: user_1060 - RequestID: 78a5mmj1dt3 +2025-06-18T15:02:39.881Z [INFO] order-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1813ms - IP: 192.168.81.206 - User: user_1008 - RequestID: j67034slgo +2025-06-18T15:02:39.981Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1872ms - IP: 192.168.14.77 - User: user_1071 - RequestID: 9vxwbq7ex5 +2025-06-18T15:02:40.081Z [INFO] payment-service - Database INSERT on products - Execution time: 36ms - Rows affected: 62 - RequestID: pz2rjqm7s1m +2025-06-18T15:02:40.181Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 376ms - Rows affected: 34 - RequestID: cegdiy4ge7o +2025-06-18T15:02:40.281Z [DEBUG] user-service - POST /api/v1/orders - Status: 500 - Response time: 1990ms - IP: 192.168.240.169 - User: user_1076 - RequestID: 3hje5gt3j0m +2025-06-18T15:02:40.381Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 93ms - Rows affected: 44 - RequestID: 7c7450uank8 +2025-06-18T15:02:40.481Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 217ms - RequestID: 3z791yof0rr +2025-06-18T15:02:40.581Z [DEBUG] order-service - Auth event: login_failed - User: user_1055 - IP: 192.168.104.37 - RequestID: clzxpffwohw +2025-06-18T15:02:40.681Z [INFO] notification-service - Operation: inventory_updated - Processing time: 832ms - RequestID: q6ki97ed5nb +2025-06-18T15:02:40.781Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 192ms - Rows affected: 63 - RequestID: xdxc40s9iic +2025-06-18T15:02:40.881Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 312ms - RequestID: ezypnqin1s +2025-06-18T15:02:40.981Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1761ms - IP: 192.168.10.184 - User: user_1069 - RequestID: nvzmo2x248g +2025-06-18T15:02:41.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.113.218 - RequestID: pyiy29r3n18 +2025-06-18T15:02:41.181Z [TRACE] inventory-service - Operation: email_sent - Processing time: 894ms - RequestID: 5pn7mknchey +2025-06-18T15:02:41.281Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 463ms - RequestID: on8qj9uterf +2025-06-18T15:02:41.381Z [TRACE] notification-service - GET /api/v1/users - Status: 200 - Response time: 422ms - IP: 192.168.133.7 - User: user_1098 - RequestID: wa7pf42iwvn +2025-06-18T15:02:41.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 705ms - RequestID: k3phcup0hq8 +2025-06-18T15:02:41.581Z [INFO] inventory-service - Auth event: login_success - User: user_1075 - IP: 192.168.242.165 - RequestID: ql2ctb6axpj +2025-06-18T15:02:41.681Z [DEBUG] order-service - Database SELECT on products - Execution time: 391ms - Rows affected: 73 - RequestID: 25lltrkdseq +2025-06-18T15:02:41.781Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 400 - Response time: 1245ms - IP: 192.168.64.33 - User: user_1068 - RequestID: 1bwfpc1rhcoh +2025-06-18T15:02:41.881Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 663ms - RequestID: ioz1jm5u289 +2025-06-18T15:02:41.981Z [INFO] auth-service - Auth event: login_failed - User: user_1081 - IP: 192.168.14.77 - RequestID: 37ha8t1y6q1 +2025-06-18T15:02:42.081Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 400 - Response time: 973ms - IP: 192.168.14.77 - User: user_1076 - RequestID: 1h0rltkbc0g +2025-06-18T15:02:42.181Z [INFO] auth-service - Database DELETE on users - Execution time: 36ms - Rows affected: 51 - RequestID: vk4po8pt9vn +2025-06-18T15:02:42.281Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1597ms - IP: 192.168.242.165 - User: user_1009 - RequestID: 44232ctz2uo +2025-06-18T15:02:42.381Z [TRACE] payment-service - Operation: payment_processed - Processing time: 848ms - RequestID: im7xhelz54o +2025-06-18T15:02:42.481Z [TRACE] payment-service - Database SELECT on orders - Execution time: 107ms - Rows affected: 3 - RequestID: rcgmoiklyy +2025-06-18T15:02:42.581Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1213ms - IP: 192.168.167.32 - User: user_1015 - RequestID: uoxuzfbxstq +2025-06-18T15:02:42.681Z [TRACE] payment-service - Auth event: logout - User: user_1067 - IP: 192.168.138.123 - RequestID: gq6s6vhl2zg +2025-06-18T15:02:42.781Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 403 - Response time: 939ms - IP: 192.168.13.72 - User: user_1095 - RequestID: 5se8txjjd5v +2025-06-18T15:02:42.881Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 358ms - Rows affected: 19 - RequestID: kjdedwcaqw +2025-06-18T15:02:42.981Z [INFO] user-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.79.116 - RequestID: ylrck4b7w4m +2025-06-18T15:02:43.081Z [TRACE] notification-service - Database SELECT on users - Execution time: 485ms - Rows affected: 10 - RequestID: w9gaiceerh8 +2025-06-18T15:02:43.181Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 652ms - RequestID: g9ynwgkdqhq +2025-06-18T15:02:43.281Z [INFO] user-service - GET /api/v1/payments - Status: 403 - Response time: 962ms - IP: 192.168.100.240 - User: user_1047 - RequestID: pxhf2tpplw +2025-06-18T15:02:43.381Z [TRACE] user-service - POST /api/v1/inventory - Status: 201 - Response time: 859ms - IP: 192.168.32.38 - User: user_1025 - RequestID: gtbusuftkh4 +2025-06-18T15:02:43.481Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 225ms - IP: 192.168.104.37 - User: user_1086 - RequestID: 3duszksxa0b +2025-06-18T15:02:43.581Z [INFO] inventory-service - Auth event: login_failed - User: user_1034 - IP: 192.168.242.165 - RequestID: 67ve6yv9fys +2025-06-18T15:02:43.681Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 244ms - Rows affected: 34 - RequestID: 7d1z21ermq +2025-06-18T15:02:43.781Z [DEBUG] user-service - Auth event: login_failed - User: user_1014 - IP: 192.168.1.152 - RequestID: dfcr442eox +2025-06-18T15:02:43.881Z [INFO] notification-service - PUT /api/v1/orders - Status: 200 - Response time: 1594ms - IP: 192.168.232.72 - User: user_1084 - RequestID: 9j0wj9tglik +2025-06-18T15:02:43.981Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 162ms - RequestID: wz9ju2ey29k +2025-06-18T15:02:44.081Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 114ms - Rows affected: 62 - RequestID: 7t2uixgdb2a +2025-06-18T15:02:44.181Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 163ms - Rows affected: 41 - RequestID: 9nidlvjmie8 +2025-06-18T15:02:44.281Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 305ms - Rows affected: 63 - RequestID: be2oainaxdf +2025-06-18T15:02:44.381Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 497ms - Rows affected: 29 - RequestID: 1vndy0npix9 +2025-06-18T15:02:44.481Z [DEBUG] order-service - Auth event: login_success - User: user_1020 - IP: 192.168.100.240 - RequestID: z0tjkf1w7tl +2025-06-18T15:02:44.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 250ms - RequestID: jlsh76phj +2025-06-18T15:02:44.681Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 27ms - Rows affected: 55 - RequestID: pb4yhynn52l +2025-06-18T15:02:44.781Z [TRACE] notification-service - Database SELECT on orders - Execution time: 11ms - Rows affected: 95 - RequestID: 41ape51fg2m +2025-06-18T15:02:44.881Z [INFO] auth-service - Database SELECT on products - Execution time: 338ms - Rows affected: 51 - RequestID: vxfgq76vpwa +2025-06-18T15:02:44.981Z [INFO] user-service - PUT /api/v1/inventory - Status: 400 - Response time: 1584ms - IP: 192.168.81.206 - User: user_1049 - RequestID: m92mhfmilrd +2025-06-18T15:02:45.081Z [INFO] auth-service - Auth event: password_change - User: user_1011 - IP: 192.168.97.87 - RequestID: mfg2z0n19ue +2025-06-18T15:02:45.181Z [TRACE] user-service - Operation: email_sent - Processing time: 799ms - RequestID: or0q9ra3dys +2025-06-18T15:02:45.281Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 503 - Response time: 1915ms - IP: 192.168.44.5 - User: user_1058 - RequestID: xybqsh883f +2025-06-18T15:02:45.381Z [INFO] inventory-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.1.152 - RequestID: rs73mfsg0tf +2025-06-18T15:02:45.481Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1223ms - IP: 192.168.64.33 - User: user_1067 - RequestID: bvk2dt908o7 +2025-06-18T15:02:45.581Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 906ms - RequestID: l1nwhojj6t +2025-06-18T15:02:45.681Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1025ms - IP: 192.168.11.60 - User: user_1014 - RequestID: g4k89itc4lv +2025-06-18T15:02:45.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 624ms - RequestID: i4apsv367b8 +2025-06-18T15:02:45.881Z [INFO] payment-service - Operation: cache_miss - Processing time: 250ms - RequestID: j7hdci071nn +2025-06-18T15:02:45.981Z [DEBUG] order-service - Auth event: login_failed - User: user_1032 - IP: 192.168.242.165 - RequestID: futdw4zw72u +2025-06-18T15:02:46.081Z [INFO] order-service - PUT /api/v1/payments - Status: 200 - Response time: 928ms - IP: 192.168.189.103 - User: user_1040 - RequestID: tfml4jfx7rm +2025-06-18T15:02:46.181Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 500 - Response time: 726ms - IP: 192.168.240.169 - User: user_1054 - RequestID: bls67feffnt +2025-06-18T15:02:46.281Z [DEBUG] auth-service - Operation: order_created - Processing time: 611ms - RequestID: cyp3qnab8ws +2025-06-18T15:02:46.381Z [TRACE] user-service - Auth event: login_success - User: user_1099 - IP: 192.168.229.123 - RequestID: 9b7jbgw121 +2025-06-18T15:02:46.481Z [INFO] inventory-service - DELETE /api/v1/users - Status: 404 - Response time: 1151ms - IP: 192.168.28.146 - User: user_1074 - RequestID: 7vwo3m7pbl7 +2025-06-18T15:02:46.581Z [DEBUG] auth-service - GET /api/v1/payments - Status: 403 - Response time: 1737ms - IP: 192.168.36.218 - User: user_1019 - RequestID: 8s12ekuhvy +2025-06-18T15:02:46.681Z [INFO] notification-service - Auth event: logout - User: user_1007 - IP: 192.168.229.123 - RequestID: zertu3cpdvg +2025-06-18T15:02:46.781Z [INFO] auth-service - GET /api/v1/orders - Status: 502 - Response time: 1993ms - IP: 192.168.147.171 - User: user_1018 - RequestID: fdjddm0zrwq +2025-06-18T15:02:46.881Z [INFO] auth-service - Database SELECT on sessions - Execution time: 55ms - Rows affected: 24 - RequestID: sdffmjp0txq +2025-06-18T15:02:46.981Z [TRACE] order-service - Database SELECT on sessions - Execution time: 94ms - Rows affected: 88 - RequestID: vfrtvjdlqlg +2025-06-18T15:02:47.081Z [TRACE] payment-service - Operation: notification_queued - Processing time: 416ms - RequestID: 0yoza7xosfo +2025-06-18T15:02:47.181Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 337ms - RequestID: 97hv5vgrdjf +2025-06-18T15:02:47.281Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 200 - Response time: 1343ms - IP: 192.168.229.123 - User: user_1044 - RequestID: jk3r91w41x +2025-06-18T15:02:47.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 286ms - RequestID: m9h9ktrng8 +2025-06-18T15:02:47.481Z [TRACE] order-service - Database SELECT on users - Execution time: 487ms - Rows affected: 18 - RequestID: g8otv9w4ae5 +2025-06-18T15:02:47.581Z [INFO] auth-service - Database DELETE on payments - Execution time: 85ms - Rows affected: 22 - RequestID: lhxcmvn3nn +2025-06-18T15:02:47.681Z [TRACE] order-service - PATCH /api/v1/payments - Status: 404 - Response time: 1624ms - IP: 192.168.235.117 - User: user_1082 - RequestID: 2tjhu41atmj +2025-06-18T15:02:47.781Z [INFO] user-service - Database DELETE on users - Execution time: 371ms - Rows affected: 38 - RequestID: gn3ckp9byzi +2025-06-18T15:02:47.881Z [DEBUG] order-service - Operation: cache_hit - Processing time: 1025ms - RequestID: uy8bo0z1ko +2025-06-18T15:02:47.981Z [TRACE] user-service - Auth event: password_change - User: user_1097 - IP: 192.168.33.76 - RequestID: grn4vihu1x +2025-06-18T15:02:48.081Z [INFO] order-service - Auth event: password_change - User: user_1048 - IP: 192.168.28.146 - RequestID: i3o9f0synm8 +2025-06-18T15:02:48.181Z [TRACE] user-service - Auth event: logout - User: user_1036 - IP: 192.168.141.100 - RequestID: wudi739zzm +2025-06-18T15:02:48.281Z [INFO] auth-service - Auth event: logout - User: user_1029 - IP: 192.168.211.72 - RequestID: a3kg4ye3tsk +2025-06-18T15:02:48.381Z [INFO] notification-service - Auth event: password_change - User: user_1046 - IP: 192.168.242.165 - RequestID: 6ke9nmqk96d +2025-06-18T15:02:48.481Z [INFO] auth-service - POST /api/v1/inventory - Status: 201 - Response time: 1395ms - IP: 192.168.10.184 - User: user_1016 - RequestID: o6at9hdw19 +2025-06-18T15:02:48.581Z [DEBUG] user-service - Operation: email_sent - Processing time: 474ms - RequestID: 4akz2zlfxzt +2025-06-18T15:02:48.681Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 630ms - RequestID: 3nat9h9kmdy +2025-06-18T15:02:48.781Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 379ms - Rows affected: 12 - RequestID: p6w0xdpmi0m +2025-06-18T15:02:48.881Z [INFO] auth-service - Database UPDATE on users - Execution time: 178ms - Rows affected: 25 - RequestID: if3u7yalf1 +2025-06-18T15:02:48.981Z [INFO] user-service - Operation: notification_queued - Processing time: 457ms - RequestID: fnjp7zaemsv +2025-06-18T15:02:49.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.240.169 - RequestID: zlzqjj94pbk +2025-06-18T15:02:49.181Z [INFO] order-service - Operation: email_sent - Processing time: 906ms - RequestID: wvqjra8tyh +2025-06-18T15:02:49.281Z [DEBUG] notification-service - Operation: email_sent - Processing time: 994ms - RequestID: 4avtabjl3xs +2025-06-18T15:02:49.381Z [TRACE] user-service - DELETE /api/v1/orders - Status: 500 - Response time: 1310ms - IP: 192.168.147.171 - User: user_1019 - RequestID: j4kie93j019 +2025-06-18T15:02:49.481Z [INFO] order-service - Operation: cache_miss - Processing time: 516ms - RequestID: urkrs8u1own +2025-06-18T15:02:49.581Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1582ms - IP: 192.168.227.233 - User: user_1023 - RequestID: 4e0rlq1kip +2025-06-18T15:02:49.681Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 180ms - RequestID: cgwu3rw5n3 +2025-06-18T15:02:49.781Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 99ms - Rows affected: 58 - RequestID: 0uzw8t1lwpyc +2025-06-18T15:02:49.881Z [TRACE] order-service - Auth event: login_success - User: user_1000 - IP: 192.168.79.143 - RequestID: j2upbz3c4e9 +2025-06-18T15:02:49.981Z [DEBUG] order-service - POST /api/v1/payments - Status: 404 - Response time: 241ms - IP: 192.168.33.76 - User: user_1014 - RequestID: c17wzgmz4tn +2025-06-18T15:02:50.081Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 500 - Response time: 645ms - IP: 192.168.235.117 - User: user_1038 - RequestID: 3oc0ek41qi +2025-06-18T15:02:50.181Z [INFO] auth-service - Operation: email_sent - Processing time: 895ms - RequestID: j0fgrgwe8t +2025-06-18T15:02:50.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.196.226 - RequestID: lpxin684ne +2025-06-18T15:02:50.381Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 39ms - Rows affected: 26 - RequestID: vlyjyrkw0sk +2025-06-18T15:02:50.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.113.218 - RequestID: l8cb4gs12b +2025-06-18T15:02:50.581Z [DEBUG] order-service - Auth event: logout - User: user_1072 - IP: 192.168.141.100 - RequestID: oq55n2g6ty +2025-06-18T15:02:50.681Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 259ms - RequestID: a1bz81oolip +2025-06-18T15:02:50.781Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.79.143 - RequestID: f278sb06kd4 +2025-06-18T15:02:50.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1063 - IP: 192.168.33.76 - RequestID: 2ppidwoztmy +2025-06-18T15:02:50.981Z [INFO] payment-service - POST /api/v1/payments - Status: 201 - Response time: 378ms - IP: 192.168.28.146 - User: user_1010 - RequestID: ne3qh7hmlum +2025-06-18T15:02:51.081Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 403 - Response time: 1193ms - IP: 192.168.68.158 - User: user_1004 - RequestID: 7dem3aow625 +2025-06-18T15:02:51.181Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 295ms - Rows affected: 5 - RequestID: wwi0w13m7tn +2025-06-18T15:02:51.281Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 212ms - Rows affected: 52 - RequestID: rrhio6q4c2 +2025-06-18T15:02:51.381Z [DEBUG] auth-service - POST /api/v1/users - Status: 200 - Response time: 355ms - IP: 192.168.79.143 - User: user_1078 - RequestID: wxro0lxagpl +2025-06-18T15:02:51.481Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1021ms - IP: 192.168.46.63 - User: user_1070 - RequestID: ezohi1gr9ah +2025-06-18T15:02:51.581Z [INFO] auth-service - Auth event: login_success - User: user_1045 - IP: 192.168.167.32 - RequestID: mbxaujj0ig8 +2025-06-18T15:02:51.681Z [DEBUG] user-service - PUT /api/v1/users - Status: 503 - Response time: 276ms - IP: 192.168.14.77 - User: user_1014 - RequestID: s4qskzwb9kg +2025-06-18T15:02:51.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.30.79 - RequestID: 9v1r5f1tev +2025-06-18T15:02:51.881Z [DEBUG] inventory-service - POST /api/v1/users - Status: 404 - Response time: 573ms - IP: 192.168.33.76 - User: user_1095 - RequestID: gt3onxt71cc +2025-06-18T15:02:51.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1098 - IP: 192.168.211.72 - RequestID: bs501y09xf +2025-06-18T15:02:52.081Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 500 - Response time: 1681ms - IP: 192.168.144.38 - User: user_1000 - RequestID: szfkvj0hsid +2025-06-18T15:02:52.181Z [DEBUG] notification-service - POST /api/v1/payments - Status: 400 - Response time: 776ms - IP: 192.168.227.77 - User: user_1022 - RequestID: 3ryv9ptfpng +2025-06-18T15:02:52.281Z [TRACE] notification-service - Database SELECT on orders - Execution time: 25ms - Rows affected: 15 - RequestID: naa5ghwu278 +2025-06-18T15:02:52.381Z [TRACE] auth-service - Database UPDATE on users - Execution time: 318ms - Rows affected: 89 - RequestID: wkonf2fn4t +2025-06-18T15:02:52.481Z [TRACE] inventory-service - Auth event: login_failed - User: user_1023 - IP: 192.168.189.103 - RequestID: liw2lm7oxa9 +2025-06-18T15:02:52.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.79.116 - RequestID: 15qieytra1f +2025-06-18T15:02:52.681Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 503 - Response time: 393ms - IP: 192.168.100.240 - User: user_1036 - RequestID: ttqsgea8myl +2025-06-18T15:02:52.781Z [DEBUG] notification-service - Auth event: password_change - User: user_1029 - IP: 192.168.46.63 - RequestID: l082t6mn8l +2025-06-18T15:02:52.881Z [INFO] payment-service - Database DELETE on users - Execution time: 70ms - Rows affected: 89 - RequestID: szd081rb1w +2025-06-18T15:02:52.981Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 1007ms - RequestID: adh9lkb5c9p +2025-06-18T15:02:53.081Z [INFO] notification-service - Operation: email_sent - Processing time: 1044ms - RequestID: c90ydme5318 +2025-06-18T15:02:53.181Z [TRACE] user-service - Operation: notification_queued - Processing time: 991ms - RequestID: m9iu20vo1cc +2025-06-18T15:02:53.281Z [INFO] notification-service - Auth event: login_failed - User: user_1044 - IP: 192.168.30.79 - RequestID: jwpuhwm1h0f +2025-06-18T15:02:53.381Z [TRACE] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 247ms - IP: 192.168.211.72 - User: user_1009 - RequestID: ufbdd4qpw5 +2025-06-18T15:02:53.481Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 921ms - RequestID: stgpnqngc5k +2025-06-18T15:02:53.581Z [TRACE] notification-service - Operation: cache_hit - Processing time: 777ms - RequestID: dymezwopm4h +2025-06-18T15:02:53.681Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.181.225 - RequestID: nrlaccs9h6 +2025-06-18T15:02:53.781Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 500 - Response time: 202ms - IP: 192.168.79.143 - User: user_1040 - RequestID: pcma5rx2etj +2025-06-18T15:02:53.881Z [INFO] order-service - Operation: notification_queued - Processing time: 432ms - RequestID: nn9syh7e1y +2025-06-18T15:02:53.981Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 102ms - RequestID: akibchjls5 +2025-06-18T15:02:54.081Z [DEBUG] user-service - Database UPDATE on products - Execution time: 48ms - Rows affected: 92 - RequestID: kvz7cbu6pr +2025-06-18T15:02:54.181Z [TRACE] payment-service - POST /api/v1/payments - Status: 201 - Response time: 1418ms - IP: 192.168.227.77 - User: user_1057 - RequestID: 6s5mmwc4l4r +2025-06-18T15:02:54.281Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.68.158 - RequestID: bqbhtui4kcf +2025-06-18T15:02:54.381Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 677ms - IP: 192.168.81.206 - User: user_1035 - RequestID: n3upd7vae3p +2025-06-18T15:02:54.481Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 223ms - IP: 192.168.235.117 - User: user_1051 - RequestID: rj0fn0a44ah +2025-06-18T15:02:54.581Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 200 - Response time: 949ms - IP: 192.168.147.171 - User: user_1037 - RequestID: 6po5p03xz0l +2025-06-18T15:02:54.681Z [INFO] notification-service - Auth event: login_success - User: user_1069 - IP: 192.168.44.5 - RequestID: frxw4ydvi2n +2025-06-18T15:02:54.781Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 205ms - IP: 192.168.174.114 - User: user_1041 - RequestID: cbnbm2jxapt +2025-06-18T15:02:54.881Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 401 - Response time: 1453ms - IP: 192.168.30.79 - User: user_1098 - RequestID: ai2ax8g1ecw +2025-06-18T15:02:54.981Z [INFO] auth-service - POST /api/v1/inventory - Status: 401 - Response time: 751ms - IP: 192.168.14.77 - User: user_1008 - RequestID: ajo1uhc7p49 +2025-06-18T15:02:55.081Z [DEBUG] user-service - PATCH /api/v1/users - Status: 200 - Response time: 873ms - IP: 192.168.10.184 - User: user_1059 - RequestID: 2c74mp4xthj +2025-06-18T15:02:55.181Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 174ms - Rows affected: 91 - RequestID: 6mdrut1upys +2025-06-18T15:02:55.281Z [INFO] user-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.227.77 - RequestID: mne51xor9bq +2025-06-18T15:02:55.381Z [DEBUG] notification-service - Auth event: login_failed - User: user_1068 - IP: 192.168.68.158 - RequestID: p1afsrpv36s +2025-06-18T15:02:55.481Z [DEBUG] user-service - Database DELETE on users - Execution time: 172ms - Rows affected: 19 - RequestID: jeanp0femu +2025-06-18T15:02:55.581Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 145ms - Rows affected: 73 - RequestID: w94c2bu2a6d +2025-06-18T15:02:55.681Z [DEBUG] user-service - POST /api/v1/inventory - Status: 503 - Response time: 225ms - IP: 192.168.141.100 - User: user_1046 - RequestID: ubb5mc9dsw +2025-06-18T15:02:55.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 720ms - RequestID: wwu9hmtkl2 +2025-06-18T15:02:55.881Z [INFO] payment-service - Database DELETE on products - Execution time: 34ms - Rows affected: 18 - RequestID: zb74goubl38 +2025-06-18T15:02:55.981Z [TRACE] user-service - Database UPDATE on products - Execution time: 372ms - Rows affected: 5 - RequestID: ivcg2220qtj +2025-06-18T15:02:56.081Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 183ms - Rows affected: 3 - RequestID: 6t11bvqewdf +2025-06-18T15:02:56.181Z [TRACE] payment-service - DELETE /api/v1/users - Status: 400 - Response time: 1392ms - IP: 192.168.133.7 - User: user_1086 - RequestID: nxpxofpi2pe +2025-06-18T15:02:56.281Z [TRACE] notification-service - Database SELECT on users - Execution time: 74ms - Rows affected: 25 - RequestID: ge0g445eoz5 +2025-06-18T15:02:56.381Z [INFO] notification-service - Auth event: password_change - User: user_1006 - IP: 192.168.196.226 - RequestID: ki0c8dvsgx +2025-06-18T15:02:56.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 953ms - RequestID: 1mvjn6wespt +2025-06-18T15:02:56.581Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 146ms - Rows affected: 40 - RequestID: tkfxoqm4g8s +2025-06-18T15:02:56.681Z [DEBUG] order-service - Auth event: login_success - User: user_1002 - IP: 192.168.28.146 - RequestID: 2m49e811zqy +2025-06-18T15:02:56.781Z [TRACE] user-service - GET /api/v1/payments - Status: 500 - Response time: 1846ms - IP: 192.168.44.5 - User: user_1031 - RequestID: 44ma7k738dg +2025-06-18T15:02:56.881Z [INFO] payment-service - GET /api/v1/users - Status: 401 - Response time: 633ms - IP: 192.168.28.146 - User: user_1030 - RequestID: ygz3ikdz2hn +2025-06-18T15:02:56.981Z [TRACE] auth-service - Database INSERT on orders - Execution time: 64ms - Rows affected: 30 - RequestID: 7yt8frky549 +2025-06-18T15:02:57.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.1.152 - RequestID: z2guo42qn48 +2025-06-18T15:02:57.181Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 196ms - RequestID: x75uqksw6n +2025-06-18T15:02:57.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.181.225 - RequestID: mslqk3o4z4 +2025-06-18T15:02:57.381Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 199ms - RequestID: 57yeuh53xx9 +2025-06-18T15:02:57.481Z [TRACE] user-service - POST /api/v1/users - Status: 502 - Response time: 1880ms - IP: 192.168.32.38 - User: user_1010 - RequestID: uf0ka2wm7ed +2025-06-18T15:02:57.581Z [INFO] notification-service - Database INSERT on payments - Execution time: 291ms - Rows affected: 62 - RequestID: ryp573rnlo +2025-06-18T15:02:57.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 495ms - RequestID: dii4xjt02a +2025-06-18T15:02:57.781Z [DEBUG] order-service - Database UPDATE on users - Execution time: 390ms - Rows affected: 84 - RequestID: adomvrytgr +2025-06-18T15:02:57.881Z [INFO] auth-service - Operation: email_sent - Processing time: 956ms - RequestID: bqh3tz6zdb +2025-06-18T15:02:57.981Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 502 - Response time: 89ms - IP: 192.168.174.114 - User: user_1081 - RequestID: bzx67gtgtsb +2025-06-18T15:02:58.081Z [INFO] inventory-service - Auth event: password_change - User: user_1030 - IP: 192.168.144.38 - RequestID: c4aywg8t68k +2025-06-18T15:02:58.181Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1474ms - IP: 192.168.167.32 - User: user_1072 - RequestID: 3cl2hgbj6tp +2025-06-18T15:02:58.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.159.94 - RequestID: mbd18ae00ca +2025-06-18T15:02:58.381Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 405ms - Rows affected: 59 - RequestID: v7jf6ffyzho +2025-06-18T15:02:58.481Z [DEBUG] order-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.144.38 - RequestID: 2lfvew0xcmn +2025-06-18T15:02:58.581Z [TRACE] payment-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.211.72 - RequestID: 1xmvw9ew9ws +2025-06-18T15:02:58.681Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 503 - Response time: 1099ms - IP: 192.168.14.77 - User: user_1074 - RequestID: qjyr2b0ep1 +2025-06-18T15:02:58.781Z [TRACE] order-service - Database INSERT on payments - Execution time: 458ms - Rows affected: 96 - RequestID: zkh523pzh4g +2025-06-18T15:02:58.881Z [INFO] order-service - Database SELECT on users - Execution time: 318ms - Rows affected: 85 - RequestID: n5htk7yh5w8 +2025-06-18T15:02:58.981Z [TRACE] user-service - Auth event: login_success - User: user_1068 - IP: 192.168.31.117 - RequestID: nfifueqk08 +2025-06-18T15:02:59.081Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 403 - Response time: 1727ms - IP: 192.168.68.158 - User: user_1040 - RequestID: ro3f6ln15hn +2025-06-18T15:02:59.181Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 287ms - Rows affected: 10 - RequestID: llf5nzzubo +2025-06-18T15:02:59.281Z [INFO] user-service - Database UPDATE on orders - Execution time: 220ms - Rows affected: 41 - RequestID: 9t93eqstx39 +2025-06-18T15:02:59.381Z [TRACE] notification-service - PUT /api/v1/orders - Status: 404 - Response time: 495ms - IP: 192.168.97.87 - User: user_1017 - RequestID: 12vhhytvyzcm +2025-06-18T15:02:59.481Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 400 - Response time: 415ms - IP: 192.168.44.5 - User: user_1095 - RequestID: wghoikw0bd +2025-06-18T15:02:59.581Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 620ms - RequestID: k378eg5jpua +2025-06-18T15:02:59.681Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.158.144 - RequestID: gbby52xwf8 +2025-06-18T15:02:59.781Z [TRACE] order-service - Auth event: login_success - User: user_1083 - IP: 192.168.13.72 - RequestID: i0z17ldrt2l +2025-06-18T15:02:59.881Z [TRACE] auth-service - PATCH /api/v1/users - Status: 502 - Response time: 1856ms - IP: 192.168.227.233 - User: user_1079 - RequestID: ob0bib3v3ks +2025-06-18T15:02:59.981Z [DEBUG] inventory-service - Auth event: login_success - User: user_1037 - IP: 192.168.13.72 - RequestID: dt222xfsnzk +2025-06-18T15:03:00.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 817ms - RequestID: s8r2w9nuy7 +2025-06-18T15:03:00.181Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 190ms - Rows affected: 52 - RequestID: hbx807ctnn +2025-06-18T15:03:00.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.1.152 - RequestID: q7w8luxsbw +2025-06-18T15:03:00.381Z [INFO] notification-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.159.94 - RequestID: 7kmq3616daq +2025-06-18T15:03:00.481Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 848ms - RequestID: xzheavt8qep +2025-06-18T15:03:00.581Z [INFO] notification-service - Database DELETE on orders - Execution time: 18ms - Rows affected: 94 - RequestID: x6bgscgesd +2025-06-18T15:03:00.681Z [TRACE] payment-service - Auth event: logout - User: user_1001 - IP: 192.168.113.218 - RequestID: 432aabrzuh2 +2025-06-18T15:03:00.781Z [INFO] auth-service - Auth event: password_change - User: user_1011 - IP: 192.168.196.226 - RequestID: 856vz60n4a2 +2025-06-18T15:03:00.881Z [TRACE] notification-service - Database SELECT on users - Execution time: 367ms - Rows affected: 95 - RequestID: nwlevsnfp3 +2025-06-18T15:03:00.981Z [DEBUG] order-service - Operation: cache_hit - Processing time: 784ms - RequestID: lbdbtgrol5n +2025-06-18T15:03:01.081Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 401 - Response time: 1710ms - IP: 192.168.31.117 - User: user_1047 - RequestID: k1c0mbnnpio +2025-06-18T15:03:01.181Z [INFO] user-service - Database SELECT on sessions - Execution time: 3ms - Rows affected: 74 - RequestID: 8eiywh782lr +2025-06-18T15:03:01.281Z [INFO] notification-service - Operation: email_sent - Processing time: 765ms - RequestID: 7dvrmngmcs7 +2025-06-18T15:03:01.381Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 258ms - Rows affected: 62 - RequestID: 7i2lmdnrhub +2025-06-18T15:03:01.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 418ms - RequestID: 6ku5w4k6n7 +2025-06-18T15:03:01.581Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 400 - Response time: 11ms - IP: 192.168.211.72 - User: user_1017 - RequestID: cir3c0a6mdu +2025-06-18T15:03:01.681Z [INFO] auth-service - POST /api/v1/inventory - Status: 404 - Response time: 1908ms - IP: 192.168.11.60 - User: user_1063 - RequestID: px29zx2dj8n +2025-06-18T15:03:01.781Z [TRACE] notification-service - PUT /api/v1/orders - Status: 401 - Response time: 78ms - IP: 192.168.79.143 - User: user_1090 - RequestID: n4i720c16w +2025-06-18T15:03:01.881Z [DEBUG] payment-service - Database SELECT on products - Execution time: 117ms - Rows affected: 83 - RequestID: 0f4wi9p88xt +2025-06-18T15:03:01.981Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 510ms - RequestID: beq91rfanle +2025-06-18T15:03:02.081Z [INFO] payment-service - Database SELECT on sessions - Execution time: 244ms - Rows affected: 8 - RequestID: oel3k56liv +2025-06-18T15:03:02.181Z [TRACE] user-service - GET /api/v1/users - Status: 404 - Response time: 1962ms - IP: 192.168.232.72 - User: user_1003 - RequestID: 20238p1bjkf +2025-06-18T15:03:02.281Z [TRACE] auth-service - Operation: cache_miss - Processing time: 818ms - RequestID: wswyeqznd3i +2025-06-18T15:03:02.381Z [DEBUG] order-service - Auth event: logout - User: user_1083 - IP: 192.168.227.233 - RequestID: qo6a8jwi6z +2025-06-18T15:03:02.481Z [INFO] user-service - Operation: cache_hit - Processing time: 784ms - RequestID: ys6kqsvlibe +2025-06-18T15:03:02.581Z [INFO] notification-service - PUT /api/v1/users - Status: 403 - Response time: 109ms - IP: 192.168.81.206 - User: user_1087 - RequestID: qp4jjjmjmea +2025-06-18T15:03:02.681Z [TRACE] auth-service - Auth event: login_success - User: user_1038 - IP: 192.168.68.158 - RequestID: r9tk2t4c03j +2025-06-18T15:03:02.781Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 500 - Response time: 580ms - IP: 192.168.53.133 - User: user_1023 - RequestID: moitc6rsh9 +2025-06-18T15:03:02.881Z [DEBUG] auth-service - Database DELETE on products - Execution time: 317ms - Rows affected: 5 - RequestID: ney2710mg3o +2025-06-18T15:03:02.981Z [INFO] payment-service - GET /api/v1/users - Status: 200 - Response time: 1852ms - IP: 192.168.247.134 - User: user_1031 - RequestID: ib1ixciv9yk +2025-06-18T15:03:03.081Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1999ms - IP: 192.168.158.144 - User: user_1085 - RequestID: a1oqn8zkih +2025-06-18T15:03:03.181Z [INFO] auth-service - PATCH /api/v1/payments - Status: 200 - Response time: 1178ms - IP: 192.168.1.152 - User: user_1037 - RequestID: g9qfnaoon07 +2025-06-18T15:03:03.281Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 35ms - Rows affected: 50 - RequestID: h64lvh0co0s +2025-06-18T15:03:03.381Z [INFO] inventory-service - Operation: cache_miss - Processing time: 272ms - RequestID: 546x50dpjbf +2025-06-18T15:03:03.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.158.144 - RequestID: 9q4hiy451ek +2025-06-18T15:03:03.581Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 500 - Response time: 1466ms - IP: 192.168.81.206 - User: user_1053 - RequestID: turcqwxr9mg +2025-06-18T15:03:03.681Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 503 - Response time: 229ms - IP: 192.168.194.41 - User: user_1049 - RequestID: ipjevezymps +2025-06-18T15:03:03.781Z [TRACE] order-service - Operation: email_sent - Processing time: 167ms - RequestID: bhcf0hlw4u9 +2025-06-18T15:03:03.881Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 751ms - RequestID: svsnx9ygmr +2025-06-18T15:03:03.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.10.184 - RequestID: jkv1rt49xdb +2025-06-18T15:03:04.081Z [TRACE] order-service - Auth event: password_change - User: user_1073 - IP: 192.168.170.215 - RequestID: aymcujpkpvo +2025-06-18T15:03:04.181Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 282ms - Rows affected: 80 - RequestID: goqdz7hi59 +2025-06-18T15:03:04.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 473ms - RequestID: damjch4zj8a +2025-06-18T15:03:04.381Z [INFO] notification-service - Operation: order_created - Processing time: 213ms - RequestID: aajl8dzvwo9 +2025-06-18T15:03:04.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.247.134 - RequestID: avs6oigl20r +2025-06-18T15:03:04.581Z [INFO] inventory-service - Database DELETE on users - Execution time: 321ms - Rows affected: 43 - RequestID: 015i83qkbourf +2025-06-18T15:03:04.681Z [INFO] inventory-service - Database DELETE on products - Execution time: 260ms - Rows affected: 0 - RequestID: xgkfkgawgi +2025-06-18T15:03:04.781Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 359ms - IP: 192.168.64.33 - User: user_1073 - RequestID: x4cl02vdo +2025-06-18T15:03:04.881Z [TRACE] user-service - Operation: email_sent - Processing time: 653ms - RequestID: myrpdqbaj9b +2025-06-18T15:03:04.981Z [TRACE] user-service - Operation: order_created - Processing time: 884ms - RequestID: x86u659uzmg +2025-06-18T15:03:05.081Z [INFO] order-service - Operation: webhook_sent - Processing time: 590ms - RequestID: 2ta9d6wjmj +2025-06-18T15:03:05.181Z [INFO] inventory-service - Auth event: login_failed - User: user_1099 - IP: 192.168.14.77 - RequestID: ja0gz0fbmi +2025-06-18T15:03:05.281Z [INFO] inventory-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.144.38 - RequestID: 40rlxgktewy +2025-06-18T15:03:05.381Z [INFO] order-service - Auth event: logout - User: user_1051 - IP: 192.168.14.77 - RequestID: regjzroxdl +2025-06-18T15:03:05.481Z [TRACE] notification-service - Operation: payment_processed - Processing time: 832ms - RequestID: 1050u13yfe1k +2025-06-18T15:03:05.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.247.134 - RequestID: vbkbxejomn +2025-06-18T15:03:05.681Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 401 - Response time: 797ms - IP: 192.168.187.199 - User: user_1045 - RequestID: 15zl6a1qpbg +2025-06-18T15:03:05.781Z [INFO] payment-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.1.152 - RequestID: 2bmh95jbya5 +2025-06-18T15:03:05.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 862ms - RequestID: qbcdbf5j7e +2025-06-18T15:03:05.981Z [TRACE] inventory-service - GET /api/v1/users - Status: 502 - Response time: 444ms - IP: 192.168.187.199 - User: user_1064 - RequestID: gxrsea6xzi5 +2025-06-18T15:03:06.081Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 307ms - Rows affected: 43 - RequestID: 6to1z0vrgg +2025-06-18T15:03:06.181Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 704ms - RequestID: o9bmz1o98rb +2025-06-18T15:03:06.281Z [TRACE] payment-service - Database DELETE on users - Execution time: 169ms - Rows affected: 58 - RequestID: xowsm4b7ts +2025-06-18T15:03:06.381Z [INFO] auth-service - Operation: inventory_updated - Processing time: 92ms - RequestID: ltp7mczjwi +2025-06-18T15:03:06.481Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 400 - Response time: 822ms - IP: 192.168.10.184 - User: user_1045 - RequestID: lg6gmqk0rws +2025-06-18T15:03:06.581Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 428ms - Rows affected: 16 - RequestID: xusvbeoctop +2025-06-18T15:03:06.681Z [DEBUG] user-service - Database DELETE on payments - Execution time: 472ms - Rows affected: 94 - RequestID: c74w7tn2gt +2025-06-18T15:03:06.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.28.146 - RequestID: qaukxnttgh +2025-06-18T15:03:06.881Z [DEBUG] user-service - Auth event: logout - User: user_1040 - IP: 192.168.64.33 - RequestID: d3maijm478 +2025-06-18T15:03:06.981Z [TRACE] user-service - Operation: webhook_sent - Processing time: 293ms - RequestID: p1f43gfs45 +2025-06-18T15:03:07.081Z [TRACE] order-service - Operation: inventory_updated - Processing time: 819ms - RequestID: af4mdhcv4nn +2025-06-18T15:03:07.181Z [INFO] notification-service - Operation: email_sent - Processing time: 217ms - RequestID: k5c1bhq0flj +2025-06-18T15:03:07.281Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 401 - Response time: 684ms - IP: 192.168.36.218 - User: user_1098 - RequestID: srugt876zd +2025-06-18T15:03:07.381Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 20ms - IP: 192.168.240.169 - User: user_1028 - RequestID: xz9mvt8685p +2025-06-18T15:03:07.481Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 677ms - RequestID: z40tpnse379 +2025-06-18T15:03:07.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 855ms - RequestID: x8t9e8gqgfr +2025-06-18T15:03:07.681Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1445ms - IP: 192.168.44.5 - User: user_1003 - RequestID: dmx4xc4z42s +2025-06-18T15:03:07.781Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 271ms - RequestID: xkmpftejj07 +2025-06-18T15:03:07.881Z [TRACE] payment-service - Operation: email_sent - Processing time: 492ms - RequestID: 6o41wlagmqk +2025-06-18T15:03:07.981Z [INFO] order-service - Operation: payment_processed - Processing time: 197ms - RequestID: pqkkez8hys +2025-06-18T15:03:08.081Z [INFO] auth-service - GET /api/v1/inventory - Status: 500 - Response time: 604ms - IP: 192.168.13.72 - User: user_1082 - RequestID: dkmpanle8t9 +2025-06-18T15:03:08.181Z [INFO] inventory-service - Auth event: logout - User: user_1076 - IP: 192.168.144.38 - RequestID: ef7fpzbj5fi +2025-06-18T15:03:08.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.14.77 - RequestID: oau58tmzq9 +2025-06-18T15:03:08.381Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 535ms - RequestID: tauf9dd9m5j +2025-06-18T15:03:08.481Z [TRACE] notification-service - POST /api/v1/users - Status: 201 - Response time: 71ms - IP: 192.168.181.225 - User: user_1035 - RequestID: 6jzv77wvm6t +2025-06-18T15:03:08.581Z [DEBUG] user-service - Operation: order_created - Processing time: 108ms - RequestID: 8tgsg0sdqds +2025-06-18T15:03:08.681Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 146ms - Rows affected: 23 - RequestID: 7zd08v3onh +2025-06-18T15:03:08.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 957ms - RequestID: yebwx19foko +2025-06-18T15:03:08.881Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 169ms - Rows affected: 49 - RequestID: czz33aao9mn +2025-06-18T15:03:08.981Z [TRACE] order-service - GET /api/v1/users - Status: 404 - Response time: 481ms - IP: 192.168.240.169 - User: user_1084 - RequestID: c2zj8vq4qr4 +2025-06-18T15:03:09.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 867ms - RequestID: golkrrm76yb +2025-06-18T15:03:09.181Z [INFO] notification-service - Operation: inventory_updated - Processing time: 656ms - RequestID: 992ar06cypo +2025-06-18T15:03:09.281Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 369ms - Rows affected: 30 - RequestID: j4zhu9h9yj9 +2025-06-18T15:03:09.381Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 397ms - Rows affected: 10 - RequestID: 6hc45cq4k6p +2025-06-18T15:03:09.481Z [DEBUG] payment-service - Database INSERT on products - Execution time: 399ms - Rows affected: 69 - RequestID: 6h1rj3ew97o +2025-06-18T15:03:09.581Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 845ms - IP: 192.168.11.60 - User: user_1079 - RequestID: wlfznyzwy8 +2025-06-18T15:03:09.681Z [TRACE] notification-service - PUT /api/v1/orders - Status: 400 - Response time: 870ms - IP: 192.168.33.76 - User: user_1084 - RequestID: yvxlz39752f +2025-06-18T15:03:09.781Z [INFO] auth-service - Auth event: logout - User: user_1047 - IP: 192.168.240.169 - RequestID: q85m7zs44xr +2025-06-18T15:03:09.881Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 952ms - RequestID: t0p67myg31 +2025-06-18T15:03:09.981Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 62ms - IP: 192.168.79.116 - User: user_1036 - RequestID: kpzc63t72w9 +2025-06-18T15:03:10.081Z [INFO] order-service - Database UPDATE on payments - Execution time: 368ms - Rows affected: 84 - RequestID: knqj00d3f8m +2025-06-18T15:03:10.181Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 404 - Response time: 404ms - IP: 192.168.181.225 - User: user_1087 - RequestID: e8q9cyj5ymb +2025-06-18T15:03:10.281Z [DEBUG] order-service - Database DELETE on products - Execution time: 101ms - Rows affected: 69 - RequestID: wmnffyf3isl +2025-06-18T15:03:10.381Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 579ms - RequestID: pgfzslswwhg +2025-06-18T15:03:10.481Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 403 - Response time: 265ms - IP: 192.168.81.206 - User: user_1016 - RequestID: lje9idr834g +2025-06-18T15:03:10.581Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 727ms - RequestID: utzs0tsvay +2025-06-18T15:03:10.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.196.226 - RequestID: x78vlpmryal +2025-06-18T15:03:10.781Z [TRACE] notification-service - Auth event: login_success - User: user_1021 - IP: 192.168.100.240 - RequestID: ppppg59gcrl +2025-06-18T15:03:10.881Z [INFO] auth-service - Database INSERT on payments - Execution time: 105ms - Rows affected: 70 - RequestID: h2w4ne77jam +2025-06-18T15:03:10.981Z [TRACE] payment-service - Database DELETE on orders - Execution time: 332ms - Rows affected: 10 - RequestID: vpybgvk673 +2025-06-18T15:03:11.081Z [INFO] order-service - Auth event: password_change - User: user_1003 - IP: 192.168.28.146 - RequestID: av0rzsbi05 +2025-06-18T15:03:11.181Z [INFO] user-service - GET /api/v1/inventory - Status: 500 - Response time: 138ms - IP: 192.168.11.60 - User: user_1093 - RequestID: p4cti8qenek +2025-06-18T15:03:11.281Z [INFO] inventory-service - Auth event: login_success - User: user_1097 - IP: 192.168.232.72 - RequestID: ifiw4pxg4go +2025-06-18T15:03:11.381Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 11ms - IP: 192.168.229.123 - User: user_1076 - RequestID: i4zisbxaw0i +2025-06-18T15:03:11.481Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 500ms - Rows affected: 65 - RequestID: sfbfpm0auac +2025-06-18T15:03:11.581Z [INFO] user-service - Operation: cache_miss - Processing time: 506ms - RequestID: gn4qu7f3rkm +2025-06-18T15:03:11.681Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 436ms - Rows affected: 6 - RequestID: n4fb00v0lrl +2025-06-18T15:03:11.781Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1823ms - IP: 192.168.85.229 - User: user_1031 - RequestID: yolgx4xmli +2025-06-18T15:03:11.881Z [TRACE] payment-service - Auth event: password_change - User: user_1014 - IP: 192.168.167.32 - RequestID: jt4feqyzq0e +2025-06-18T15:03:11.981Z [INFO] inventory-service - Auth event: logout - User: user_1071 - IP: 192.168.32.38 - RequestID: h26ors995y +2025-06-18T15:03:12.081Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 400 - Response time: 730ms - IP: 192.168.13.72 - User: user_1031 - RequestID: dhqtea189yg +2025-06-18T15:03:12.181Z [TRACE] user-service - Operation: inventory_updated - Processing time: 288ms - RequestID: q2a3k249718 +2025-06-18T15:03:12.281Z [TRACE] user-service - Operation: order_created - Processing time: 293ms - RequestID: k9rfcqz2e6c +2025-06-18T15:03:12.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 137ms - RequestID: 4p9w8gyb3ri +2025-06-18T15:03:12.481Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1629ms - IP: 192.168.81.206 - User: user_1025 - RequestID: mgx3koit2w +2025-06-18T15:03:12.581Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 250ms - Rows affected: 44 - RequestID: 7jtl5279t6v +2025-06-18T15:03:12.681Z [INFO] order-service - Database SELECT on users - Execution time: 489ms - Rows affected: 68 - RequestID: ymj5rgft6p +2025-06-18T15:03:12.781Z [DEBUG] notification-service - Operation: order_created - Processing time: 202ms - RequestID: s9tlx62tcdn +2025-06-18T15:03:12.881Z [INFO] inventory-service - Operation: order_created - Processing time: 994ms - RequestID: dahhdfs2buo +2025-06-18T15:03:12.981Z [TRACE] notification-service - PATCH /api/v1/users - Status: 400 - Response time: 203ms - IP: 192.168.147.171 - User: user_1043 - RequestID: ahoe4mklonq +2025-06-18T15:03:13.081Z [TRACE] user-service - Operation: inventory_updated - Processing time: 437ms - RequestID: b9ztzmg66h +2025-06-18T15:03:13.181Z [INFO] order-service - GET /api/v1/auth/login - Status: 404 - Response time: 1595ms - IP: 192.168.159.94 - User: user_1055 - RequestID: ibh7205adgs +2025-06-18T15:03:13.281Z [INFO] payment-service - GET /api/v1/orders - Status: 502 - Response time: 1374ms - IP: 192.168.68.128 - User: user_1044 - RequestID: 4t0o4gwteb3 +2025-06-18T15:03:13.381Z [INFO] notification-service - Operation: payment_processed - Processing time: 75ms - RequestID: kgdyvpbw5a +2025-06-18T15:03:13.481Z [TRACE] auth-service - GET /api/v1/users - Status: 201 - Response time: 88ms - IP: 192.168.113.218 - User: user_1050 - RequestID: 7pa29j5i2ab +2025-06-18T15:03:13.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1037 - IP: 192.168.147.171 - RequestID: unoxfijn7ms +2025-06-18T15:03:13.681Z [INFO] auth-service - Database UPDATE on users - Execution time: 81ms - Rows affected: 27 - RequestID: fj995qu8cvv +2025-06-18T15:03:13.781Z [TRACE] notification-service - Operation: email_sent - Processing time: 950ms - RequestID: 8cr9mrs5a0c +2025-06-18T15:03:13.881Z [TRACE] inventory-service - Database DELETE on products - Execution time: 431ms - Rows affected: 50 - RequestID: x23qxadtdij +2025-06-18T15:03:13.981Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 503 - Response time: 1635ms - IP: 192.168.240.169 - User: user_1004 - RequestID: wglxz81ckhp +2025-06-18T15:03:14.081Z [TRACE] payment-service - Auth event: login_success - User: user_1005 - IP: 192.168.53.133 - RequestID: mzurjnr52oe +2025-06-18T15:03:14.181Z [TRACE] payment-service - Operation: order_created - Processing time: 669ms - RequestID: 93safu6cgub +2025-06-18T15:03:14.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.229.123 - RequestID: 5zcc5exkpqt +2025-06-18T15:03:14.381Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 342ms - RequestID: 0e61rx99z6ht +2025-06-18T15:03:14.481Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1737ms - IP: 192.168.144.38 - User: user_1096 - RequestID: 2fgtwiedmjm +2025-06-18T15:03:14.581Z [INFO] notification-service - PUT /api/v1/orders - Status: 404 - Response time: 1388ms - IP: 192.168.13.72 - User: user_1061 - RequestID: 1g5hrk6jpb5 +2025-06-18T15:03:14.681Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 230ms - RequestID: beve9k52bn +2025-06-18T15:03:14.781Z [INFO] payment-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.159.94 - RequestID: j0r0wbbzrs +2025-06-18T15:03:14.881Z [DEBUG] payment-service - Database INSERT on products - Execution time: 353ms - Rows affected: 42 - RequestID: 27hqlldkgfs +2025-06-18T15:03:14.981Z [TRACE] notification-service - Database UPDATE on users - Execution time: 294ms - Rows affected: 18 - RequestID: 8jsaq5f1u1a +2025-06-18T15:03:15.081Z [TRACE] inventory-service - Database SELECT on users - Execution time: 118ms - Rows affected: 39 - RequestID: i1l4osbvdns +2025-06-18T15:03:15.181Z [INFO] payment-service - Database INSERT on orders - Execution time: 209ms - Rows affected: 81 - RequestID: y2zwngpub5c +2025-06-18T15:03:15.281Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 397ms - Rows affected: 65 - RequestID: fcqorc9n6t +2025-06-18T15:03:15.381Z [TRACE] order-service - Auth event: login_failed - User: user_1024 - IP: 192.168.144.38 - RequestID: txtw8abo03 +2025-06-18T15:03:15.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 881ms - RequestID: r42s1lwej1b +2025-06-18T15:03:15.581Z [DEBUG] user-service - Operation: email_sent - Processing time: 683ms - RequestID: o25ye5d25kb +2025-06-18T15:03:15.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.33.76 - RequestID: ev2fhhzakho +2025-06-18T15:03:15.781Z [TRACE] user-service - Database INSERT on orders - Execution time: 160ms - Rows affected: 81 - RequestID: 5muow6n5vil +2025-06-18T15:03:15.881Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 307ms - Rows affected: 97 - RequestID: 8k96l4exwct +2025-06-18T15:03:15.981Z [INFO] auth-service - Auth event: logout - User: user_1085 - IP: 192.168.227.233 - RequestID: 9x5mj01dol +2025-06-18T15:03:16.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.159.94 - RequestID: lo7bghg6y2 +2025-06-18T15:03:16.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1057 - IP: 192.168.85.229 - RequestID: 4uh7mq5284 +2025-06-18T15:03:16.281Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 522ms - RequestID: za65n86u2ls +2025-06-18T15:03:16.381Z [TRACE] auth-service - Auth event: login_failed - User: user_1075 - IP: 192.168.113.218 - RequestID: xkxfjz7ydfo +2025-06-18T15:03:16.481Z [INFO] user-service - Operation: email_sent - Processing time: 344ms - RequestID: a69ksytn6wv +2025-06-18T15:03:16.581Z [TRACE] inventory-service - Database INSERT on products - Execution time: 261ms - Rows affected: 52 - RequestID: j13zlkrc2p +2025-06-18T15:03:16.681Z [DEBUG] notification-service - Database DELETE on products - Execution time: 112ms - Rows affected: 97 - RequestID: h0wt47uxyi +2025-06-18T15:03:16.781Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 164ms - Rows affected: 95 - RequestID: 331s3x24ez4 +2025-06-18T15:03:16.881Z [INFO] inventory-service - Database SELECT on payments - Execution time: 54ms - Rows affected: 31 - RequestID: haupkwv9zwa +2025-06-18T15:03:16.981Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 315ms - RequestID: c81w2r89s6d +2025-06-18T15:03:17.081Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 142ms - RequestID: eaz42eto8x +2025-06-18T15:03:17.181Z [INFO] notification-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.229.123 - RequestID: saplbr4w7r +2025-06-18T15:03:17.281Z [DEBUG] auth-service - Auth event: login_success - User: user_1086 - IP: 192.168.227.233 - RequestID: 5okoxvg3fxt +2025-06-18T15:03:17.381Z [TRACE] order-service - Operation: webhook_sent - Processing time: 849ms - RequestID: kuz1ijnj9af +2025-06-18T15:03:17.481Z [TRACE] auth-service - Database SELECT on orders - Execution time: 326ms - Rows affected: 90 - RequestID: elh38f2jhb7 +2025-06-18T15:03:17.581Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 937ms - IP: 192.168.138.123 - User: user_1090 - RequestID: jpz6cvmmxza +2025-06-18T15:03:17.681Z [INFO] order-service - Database SELECT on payments - Execution time: 401ms - Rows affected: 10 - RequestID: xc9epq0yos +2025-06-18T15:03:17.781Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 400 - Response time: 817ms - IP: 192.168.33.76 - User: user_1025 - RequestID: biqsnt4ukkc +2025-06-18T15:03:17.881Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 374ms - Rows affected: 94 - RequestID: eoniratnhii +2025-06-18T15:03:17.981Z [INFO] inventory-service - Auth event: password_change - User: user_1045 - IP: 192.168.194.41 - RequestID: 0zn4vm8jr2ol +2025-06-18T15:03:18.081Z [INFO] notification-service - Auth event: logout - User: user_1078 - IP: 192.168.196.226 - RequestID: elpkr2oqia +2025-06-18T15:03:18.181Z [TRACE] notification-service - POST /api/v1/users - Status: 403 - Response time: 1509ms - IP: 192.168.1.152 - User: user_1032 - RequestID: pp9l2asaiyf +2025-06-18T15:03:18.281Z [TRACE] user-service - Database INSERT on orders - Execution time: 153ms - Rows affected: 46 - RequestID: mm13r4rxke +2025-06-18T15:03:18.381Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 483ms - Rows affected: 71 - RequestID: xgzrr18clsa +2025-06-18T15:03:18.481Z [TRACE] payment-service - Operation: email_sent - Processing time: 240ms - RequestID: 204jjwgyxfm +2025-06-18T15:03:18.581Z [TRACE] order-service - Operation: email_sent - Processing time: 869ms - RequestID: z1unm58nuu +2025-06-18T15:03:18.681Z [DEBUG] user-service - Operation: notification_queued - Processing time: 510ms - RequestID: 3hjhmxhgrx7 +2025-06-18T15:03:18.781Z [INFO] notification-service - Auth event: login_failed - User: user_1019 - IP: 192.168.11.60 - RequestID: 845qkwqguhd +2025-06-18T15:03:18.881Z [DEBUG] order-service - Database SELECT on payments - Execution time: 350ms - Rows affected: 38 - RequestID: 40674te4jex +2025-06-18T15:03:18.981Z [TRACE] order-service - Auth event: login_failed - User: user_1094 - IP: 192.168.100.240 - RequestID: 8mzfgpun6zi +2025-06-18T15:03:19.081Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 502 - Response time: 1031ms - IP: 192.168.79.143 - User: user_1022 - RequestID: 7kbmnuf90ha +2025-06-18T15:03:19.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.79.116 - RequestID: e0hb3ei7dy +2025-06-18T15:03:19.281Z [DEBUG] user-service - Database UPDATE on users - Execution time: 338ms - Rows affected: 24 - RequestID: 67htoslh94t +2025-06-18T15:03:19.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 789ms - RequestID: j9nk1vtnmta +2025-06-18T15:03:19.481Z [INFO] user-service - Operation: cache_hit - Processing time: 578ms - RequestID: z0ppdnbfan +2025-06-18T15:03:19.581Z [INFO] user-service - PUT /api/v1/orders - Status: 404 - Response time: 107ms - IP: 192.168.79.143 - User: user_1092 - RequestID: bsrqqrm7csu +2025-06-18T15:03:19.681Z [INFO] auth-service - Database DELETE on orders - Execution time: 288ms - Rows affected: 64 - RequestID: cleom9sr9io +2025-06-18T15:03:19.781Z [TRACE] auth-service - Database INSERT on payments - Execution time: 122ms - Rows affected: 65 - RequestID: 75ro5bqgub4 +2025-06-18T15:03:19.881Z [INFO] user-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.81.206 - RequestID: uppi100e2ek +2025-06-18T15:03:19.981Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 403 - Response time: 496ms - IP: 192.168.79.143 - User: user_1031 - RequestID: 5koq0k5780o +2025-06-18T15:03:20.081Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 401 - Response time: 1666ms - IP: 192.168.79.116 - User: user_1037 - RequestID: fchqsf80spm +2025-06-18T15:03:20.181Z [TRACE] user-service - Database SELECT on users - Execution time: 452ms - Rows affected: 64 - RequestID: m2s5gdd3p4 +2025-06-18T15:03:20.281Z [INFO] payment-service - Database INSERT on orders - Execution time: 258ms - Rows affected: 2 - RequestID: do0fmas0or4 +2025-06-18T15:03:20.381Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.235.117 - RequestID: ujdfk0j7k3 +2025-06-18T15:03:20.481Z [TRACE] payment-service - Database DELETE on orders - Execution time: 328ms - Rows affected: 44 - RequestID: 7kmtus0mov8 +2025-06-18T15:03:20.581Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 910ms - RequestID: vy2na307xn +2025-06-18T15:03:20.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.79.143 - RequestID: hcfvsg4s9w +2025-06-18T15:03:20.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.170.215 - RequestID: kjq8jzolyz +2025-06-18T15:03:20.881Z [INFO] payment-service - Operation: webhook_sent - Processing time: 621ms - RequestID: ugf36l324jr +2025-06-18T15:03:20.981Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 476ms - Rows affected: 95 - RequestID: rtje6uqysp +2025-06-18T15:03:21.081Z [TRACE] order-service - Database INSERT on orders - Execution time: 136ms - Rows affected: 90 - RequestID: i7z3ftncvc +2025-06-18T15:03:21.181Z [INFO] auth-service - Database UPDATE on payments - Execution time: 494ms - Rows affected: 25 - RequestID: mzcuk6sv3t +2025-06-18T15:03:21.281Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 502 - Response time: 1913ms - IP: 192.168.10.184 - User: user_1049 - RequestID: 2s5nl1dzk0k +2025-06-18T15:03:21.381Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1445ms - IP: 192.168.11.60 - User: user_1035 - RequestID: g0pkcgubrj +2025-06-18T15:03:21.481Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 1032ms - RequestID: e9egmnoh63b +2025-06-18T15:03:21.581Z [INFO] user-service - Operation: cache_miss - Processing time: 752ms - RequestID: srqbp5zsxfk +2025-06-18T15:03:21.681Z [TRACE] auth-service - Operation: payment_processed - Processing time: 252ms - RequestID: 75sgs1xonmd +2025-06-18T15:03:21.781Z [INFO] user-service - Operation: notification_queued - Processing time: 573ms - RequestID: g01ooxe4k +2025-06-18T15:03:21.881Z [TRACE] notification-service - Database INSERT on orders - Execution time: 84ms - Rows affected: 50 - RequestID: l4tc16l4hcb +2025-06-18T15:03:21.981Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1379ms - IP: 192.168.104.37 - User: user_1013 - RequestID: ht425nhzqi +2025-06-18T15:03:22.081Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 807ms - RequestID: hyrvu7z9ds5 +2025-06-18T15:03:22.181Z [INFO] user-service - Database DELETE on payments - Execution time: 28ms - Rows affected: 16 - RequestID: eyiyo4lcf3e +2025-06-18T15:03:22.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 215ms - RequestID: 5af3fez5ob +2025-06-18T15:03:22.381Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 403 - Response time: 537ms - IP: 192.168.79.116 - User: user_1066 - RequestID: 4ptiyec6xa3 +2025-06-18T15:03:22.481Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 134ms - RequestID: ut98cjznty +2025-06-18T15:03:22.581Z [TRACE] auth-service - Database UPDATE on products - Execution time: 400ms - Rows affected: 22 - RequestID: mlmv7ed9xbs +2025-06-18T15:03:22.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 282ms - RequestID: 7rn6n19jigy +2025-06-18T15:03:22.781Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 428ms - Rows affected: 61 - RequestID: 66sgczaae0i +2025-06-18T15:03:22.881Z [DEBUG] payment-service - Operation: email_sent - Processing time: 241ms - RequestID: z1mkqwmzulb +2025-06-18T15:03:22.981Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 745ms - RequestID: bqv5mxhtelq +2025-06-18T15:03:23.081Z [TRACE] order-service - Database DELETE on sessions - Execution time: 139ms - Rows affected: 59 - RequestID: a40kbqka27i +2025-06-18T15:03:23.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1076 - IP: 192.168.235.117 - RequestID: 92opovwlof +2025-06-18T15:03:23.281Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1106ms - IP: 192.168.242.165 - User: user_1022 - RequestID: zr9whhagpsk +2025-06-18T15:03:23.381Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 895ms - RequestID: xuz71zx0bje +2025-06-18T15:03:23.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 343ms - RequestID: el7h9wv5m5 +2025-06-18T15:03:23.581Z [DEBUG] user-service - Operation: email_sent - Processing time: 90ms - RequestID: 9x7xqdyxara +2025-06-18T15:03:23.681Z [INFO] inventory-service - PUT /api/v1/users - Status: 201 - Response time: 1080ms - IP: 192.168.144.38 - User: user_1029 - RequestID: 7gm7kc4ztja +2025-06-18T15:03:23.781Z [DEBUG] user-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.138.123 - RequestID: h6eboai6ryv +2025-06-18T15:03:23.881Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 342ms - RequestID: wmg7t5l2h29 +2025-06-18T15:03:23.981Z [TRACE] notification-service - Database SELECT on products - Execution time: 162ms - Rows affected: 26 - RequestID: 0qqowfutpb0a +2025-06-18T15:03:24.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.30.79 - RequestID: 3qgmcrbw8qr +2025-06-18T15:03:24.181Z [DEBUG] user-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.79.141 - RequestID: o984wwskf7d +2025-06-18T15:03:24.281Z [TRACE] notification-service - Auth event: password_change - User: user_1023 - IP: 192.168.11.60 - RequestID: 8gn0jsmwhnp +2025-06-18T15:03:24.381Z [DEBUG] notification-service - Database DELETE on products - Execution time: 383ms - Rows affected: 37 - RequestID: u3f472vj6e +2025-06-18T15:03:24.481Z [INFO] payment-service - PATCH /api/v1/payments - Status: 404 - Response time: 1427ms - IP: 192.168.79.143 - User: user_1063 - RequestID: 3pjqthfa5r +2025-06-18T15:03:24.581Z [DEBUG] user-service - Operation: order_created - Processing time: 874ms - RequestID: y5x4viurlua +2025-06-18T15:03:24.681Z [TRACE] notification-service - POST /api/v1/payments - Status: 503 - Response time: 1761ms - IP: 192.168.187.199 - User: user_1097 - RequestID: 2q1vynnp26h +2025-06-18T15:03:24.781Z [INFO] auth-service - POST /api/v1/auth/login - Status: 400 - Response time: 646ms - IP: 192.168.11.60 - User: user_1074 - RequestID: 920g8gbmfx9 +2025-06-18T15:03:24.881Z [INFO] inventory-service - Operation: cache_hit - Processing time: 752ms - RequestID: ox5e8ui3rse +2025-06-18T15:03:24.981Z [INFO] order-service - Operation: cache_hit - Processing time: 194ms - RequestID: ce9iopf3zir +2025-06-18T15:03:25.081Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 9ms - Rows affected: 26 - RequestID: 91hpjjg5z46 +2025-06-18T15:03:25.181Z [INFO] order-service - Database UPDATE on payments - Execution time: 315ms - Rows affected: 42 - RequestID: 4vu1xyl1unf +2025-06-18T15:03:25.281Z [TRACE] order-service - POST /api/v1/orders - Status: 400 - Response time: 684ms - IP: 192.168.46.63 - User: user_1066 - RequestID: 7yed95gqnf +2025-06-18T15:03:25.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1051 - IP: 192.168.167.32 - RequestID: muwi91z9t9 +2025-06-18T15:03:25.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 99ms - RequestID: 6z7iox9atj8 +2025-06-18T15:03:25.581Z [TRACE] payment-service - Database DELETE on orders - Execution time: 166ms - Rows affected: 11 - RequestID: 0zi2mj97v9p +2025-06-18T15:03:25.681Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 169ms - Rows affected: 36 - RequestID: 0c06z7v863tg +2025-06-18T15:03:25.781Z [TRACE] payment-service - Operation: cache_hit - Processing time: 660ms - RequestID: nhxelin5oia +2025-06-18T15:03:25.881Z [INFO] auth-service - Database DELETE on sessions - Execution time: 328ms - Rows affected: 32 - RequestID: 0bt3h3owbimv +2025-06-18T15:03:25.981Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 201 - Response time: 1334ms - IP: 192.168.30.79 - User: user_1058 - RequestID: 8ryu8gijdg +2025-06-18T15:03:26.081Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 616ms - IP: 192.168.167.32 - User: user_1098 - RequestID: r3hyz747arc +2025-06-18T15:03:26.181Z [INFO] order-service - Database SELECT on products - Execution time: 306ms - Rows affected: 51 - RequestID: xmd3mq4la5 +2025-06-18T15:03:26.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.227.233 - RequestID: iaeomm2hik8 +2025-06-18T15:03:26.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1055 - IP: 192.168.100.240 - RequestID: nkidhg3wxr +2025-06-18T15:03:26.481Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 167ms - Rows affected: 91 - RequestID: 0zdeajn78tad +2025-06-18T15:03:26.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 217ms - RequestID: t51e5f6a0r +2025-06-18T15:03:26.681Z [DEBUG] user-service - POST /api/v1/payments - Status: 404 - Response time: 1022ms - IP: 192.168.194.41 - User: user_1009 - RequestID: a6k6m78jahi +2025-06-18T15:03:26.781Z [INFO] user-service - Database SELECT on users - Execution time: 49ms - Rows affected: 87 - RequestID: 1h5iykdnyvu +2025-06-18T15:03:26.881Z [DEBUG] user-service - Auth event: password_change - User: user_1081 - IP: 192.168.181.225 - RequestID: mqc63ui6lb +2025-06-18T15:03:26.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1097 - IP: 192.168.10.184 - RequestID: 7lhd25ih37e +2025-06-18T15:03:27.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 740ms - RequestID: 5n02sg3ff2i +2025-06-18T15:03:27.181Z [TRACE] auth-service - Operation: notification_queued - Processing time: 234ms - RequestID: 44hr8pyg7aw +2025-06-18T15:03:27.281Z [TRACE] payment-service - Auth event: password_change - User: user_1015 - IP: 192.168.113.218 - RequestID: oqth537kzq +2025-06-18T15:03:27.381Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1169ms - IP: 192.168.174.114 - User: user_1067 - RequestID: a5fv9dyj8gk +2025-06-18T15:03:27.481Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.158.144 - RequestID: e2zix2aqj7v +2025-06-18T15:03:27.581Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 411ms - Rows affected: 88 - RequestID: l94famnkl6a +2025-06-18T15:03:27.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.33.76 - RequestID: 4kjd5jrde1l +2025-06-18T15:03:27.781Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 410ms - Rows affected: 32 - RequestID: jujf3ge90n +2025-06-18T15:03:27.881Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 200 - Response time: 855ms - IP: 192.168.104.37 - User: user_1057 - RequestID: 91lsmrsqvzt +2025-06-18T15:03:27.981Z [TRACE] auth-service - Auth event: password_change - User: user_1082 - IP: 192.168.85.229 - RequestID: fg0iob3gk35 +2025-06-18T15:03:28.081Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1258ms - IP: 192.168.31.117 - User: user_1043 - RequestID: aw5467quwl +2025-06-18T15:03:28.181Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 401 - Response time: 1337ms - IP: 192.168.181.225 - User: user_1023 - RequestID: fcqun8y9co +2025-06-18T15:03:28.281Z [DEBUG] notification-service - Operation: email_sent - Processing time: 655ms - RequestID: tyy06i6t4i +2025-06-18T15:03:28.381Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 237ms - Rows affected: 41 - RequestID: rqt5c2miz9 +2025-06-18T15:03:28.481Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 288ms - Rows affected: 52 - RequestID: w8cqvkm0gqk +2025-06-18T15:03:28.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 743ms - RequestID: t9sfm9og9ef +2025-06-18T15:03:28.681Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 111ms - Rows affected: 95 - RequestID: qtgnxdew4pf +2025-06-18T15:03:28.781Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 478ms - Rows affected: 97 - RequestID: 94cwzp458f +2025-06-18T15:03:28.881Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1271ms - IP: 192.168.36.218 - User: user_1011 - RequestID: i6vldy8ufbj +2025-06-18T15:03:28.981Z [INFO] auth-service - Database INSERT on sessions - Execution time: 28ms - Rows affected: 95 - RequestID: 5wpe0153bgs +2025-06-18T15:03:29.081Z [INFO] payment-service - Database UPDATE on payments - Execution time: 322ms - Rows affected: 91 - RequestID: 5d4zsch6ni7 +2025-06-18T15:03:29.181Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 260ms - IP: 192.168.104.37 - User: user_1078 - RequestID: fgu7fjqbc9 +2025-06-18T15:03:29.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 459ms - RequestID: ghpu57w0hjr +2025-06-18T15:03:29.381Z [DEBUG] order-service - Database INSERT on payments - Execution time: 342ms - Rows affected: 58 - RequestID: u33ltgjoa2 +2025-06-18T15:03:29.481Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 293ms - RequestID: s6fqfu9weej +2025-06-18T15:03:29.581Z [INFO] notification-service - Database SELECT on products - Execution time: 259ms - Rows affected: 23 - RequestID: dx61qp043lb +2025-06-18T15:03:29.681Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1466ms - IP: 192.168.147.171 - User: user_1093 - RequestID: mk90nr0l2a8 +2025-06-18T15:03:29.781Z [DEBUG] order-service - Database DELETE on payments - Execution time: 418ms - Rows affected: 10 - RequestID: po44oe8rxo +2025-06-18T15:03:29.881Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1883ms - IP: 192.168.242.165 - User: user_1088 - RequestID: x15xc0saq6 +2025-06-18T15:03:29.981Z [DEBUG] notification-service - Auth event: password_change - User: user_1063 - IP: 192.168.159.94 - RequestID: i0gg3a3qq2m +2025-06-18T15:03:30.081Z [INFO] user-service - Operation: inventory_updated - Processing time: 50ms - RequestID: 65b7ingaxwg +2025-06-18T15:03:30.181Z [TRACE] user-service - PATCH /api/v1/orders - Status: 500 - Response time: 1055ms - IP: 192.168.31.117 - User: user_1058 - RequestID: qilifv5e2v +2025-06-18T15:03:30.281Z [INFO] order-service - Database INSERT on products - Execution time: 235ms - Rows affected: 74 - RequestID: 8c1twvh14zm +2025-06-18T15:03:30.381Z [TRACE] user-service - PUT /api/v1/payments - Status: 200 - Response time: 1628ms - IP: 192.168.167.32 - User: user_1059 - RequestID: j8g5ru1vryn +2025-06-18T15:03:30.481Z [TRACE] order-service - Auth event: login_failed - User: user_1056 - IP: 192.168.159.94 - RequestID: qw552ao3qjp +2025-06-18T15:03:30.581Z [INFO] order-service - Auth event: password_change - User: user_1070 - IP: 192.168.79.116 - RequestID: 3f5564kzypy +2025-06-18T15:03:30.681Z [TRACE] auth-service - Database INSERT on products - Execution time: 148ms - Rows affected: 9 - RequestID: nccyh4mnedh +2025-06-18T15:03:30.781Z [DEBUG] notification-service - Database DELETE on users - Execution time: 207ms - Rows affected: 23 - RequestID: 0fxxe20fggej +2025-06-18T15:03:30.881Z [TRACE] order-service - GET /api/v1/payments - Status: 500 - Response time: 918ms - IP: 192.168.227.77 - User: user_1047 - RequestID: ghav34ht06t +2025-06-18T15:03:30.981Z [INFO] inventory-service - Auth event: login_success - User: user_1022 - IP: 192.168.1.152 - RequestID: 1bs7yivk7h2 +2025-06-18T15:03:31.081Z [INFO] notification-service - POST /api/v1/auth/login - Status: 400 - Response time: 937ms - IP: 192.168.104.37 - User: user_1010 - RequestID: tbngpudz3g +2025-06-18T15:03:31.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1030 - IP: 192.168.11.60 - RequestID: fzgvpy32nsw +2025-06-18T15:03:31.281Z [DEBUG] order-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.46.63 - RequestID: wrshze7crn +2025-06-18T15:03:31.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 209ms - RequestID: wqb2nmfv84n +2025-06-18T15:03:31.481Z [INFO] auth-service - Database UPDATE on users - Execution time: 118ms - Rows affected: 78 - RequestID: mk9zufxer6b +2025-06-18T15:03:31.581Z [DEBUG] user-service - Auth event: login_success - User: user_1097 - IP: 192.168.28.146 - RequestID: p243mp3005e +2025-06-18T15:03:31.681Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.11.60 - RequestID: 1fow242bk4z +2025-06-18T15:03:31.781Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 617ms - RequestID: enxwu99us9 +2025-06-18T15:03:31.881Z [TRACE] notification-service - Operation: order_created - Processing time: 58ms - RequestID: haiqepp2kch +2025-06-18T15:03:31.981Z [DEBUG] order-service - Database UPDATE on products - Execution time: 202ms - Rows affected: 29 - RequestID: a9eib0jwnjv +2025-06-18T15:03:32.081Z [DEBUG] user-service - Database INSERT on products - Execution time: 162ms - Rows affected: 42 - RequestID: 1efh9huxcib +2025-06-18T15:03:32.181Z [DEBUG] user-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.36.218 - RequestID: loussrskiq9 +2025-06-18T15:03:32.281Z [DEBUG] payment-service - Auth event: logout - User: user_1008 - IP: 192.168.170.215 - RequestID: dz298amsc3r +2025-06-18T15:03:32.381Z [INFO] user-service - Database UPDATE on users - Execution time: 355ms - Rows affected: 22 - RequestID: 0fibykltwiys +2025-06-18T15:03:32.481Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 165ms - IP: 192.168.33.76 - User: user_1077 - RequestID: mi9fntj4ee +2025-06-18T15:03:32.581Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 688ms - RequestID: v5g45siswe +2025-06-18T15:03:32.681Z [TRACE] order-service - PUT /api/v1/users - Status: 403 - Response time: 1192ms - IP: 192.168.33.76 - User: user_1090 - RequestID: kuwfkabx0h +2025-06-18T15:03:32.781Z [INFO] order-service - Database INSERT on payments - Execution time: 152ms - Rows affected: 95 - RequestID: miz223sgh28 +2025-06-18T15:03:32.881Z [INFO] notification-service - PATCH /api/v1/users - Status: 201 - Response time: 1301ms - IP: 192.168.10.184 - User: user_1086 - RequestID: a3vmt1sqd5g +2025-06-18T15:03:32.981Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 441ms - Rows affected: 83 - RequestID: 91cwa3zvnb +2025-06-18T15:03:33.081Z [INFO] user-service - Operation: payment_processed - Processing time: 930ms - RequestID: mu9y37wdood +2025-06-18T15:03:33.181Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 400 - Response time: 1537ms - IP: 192.168.53.133 - User: user_1008 - RequestID: f1jocwxxsx +2025-06-18T15:03:33.281Z [TRACE] notification-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.68.128 - RequestID: dpq5q2kcpq9 +2025-06-18T15:03:33.381Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 304ms - Rows affected: 12 - RequestID: gabzdio473b +2025-06-18T15:03:33.481Z [DEBUG] inventory-service - Auth event: login_success - User: user_1043 - IP: 192.168.11.60 - RequestID: s7oojoyext8 +2025-06-18T15:03:33.581Z [TRACE] user-service - Database SELECT on orders - Execution time: 228ms - Rows affected: 67 - RequestID: cnss75x9geb +2025-06-18T15:03:33.681Z [DEBUG] user-service - Database INSERT on orders - Execution time: 91ms - Rows affected: 72 - RequestID: w6pvcyqclwd +2025-06-18T15:03:33.781Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 722ms - RequestID: glevd687y7c +2025-06-18T15:03:33.881Z [INFO] payment-service - Database UPDATE on payments - Execution time: 25ms - Rows affected: 43 - RequestID: vvi53j1eu1n +2025-06-18T15:03:33.981Z [TRACE] payment-service - Database SELECT on products - Execution time: 348ms - Rows affected: 10 - RequestID: b3l9v301jbm +2025-06-18T15:03:34.081Z [TRACE] auth-service - Database SELECT on orders - Execution time: 233ms - Rows affected: 64 - RequestID: 7mlhckq1bhc +2025-06-18T15:03:34.181Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 263ms - Rows affected: 95 - RequestID: rd3x108f0zc +2025-06-18T15:03:34.281Z [INFO] user-service - Auth event: logout - User: user_1068 - IP: 192.168.79.116 - RequestID: rtzl7i8jkte +2025-06-18T15:03:34.381Z [DEBUG] order-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.30.79 - RequestID: 054fudnwdmm8 +2025-06-18T15:03:34.481Z [TRACE] order-service - Database SELECT on sessions - Execution time: 265ms - Rows affected: 72 - RequestID: 7x5ohvc699y +2025-06-18T15:03:34.581Z [INFO] payment-service - Database DELETE on sessions - Execution time: 179ms - Rows affected: 97 - RequestID: dv4j89g6ozd +2025-06-18T15:03:34.681Z [INFO] order-service - Database UPDATE on users - Execution time: 434ms - Rows affected: 68 - RequestID: 567p45fydt2 +2025-06-18T15:03:34.781Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 201 - Response time: 926ms - IP: 192.168.44.5 - User: user_1010 - RequestID: hdx49xdqxdw +2025-06-18T15:03:34.881Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 414ms - Rows affected: 48 - RequestID: dwf8kqbwigk +2025-06-18T15:03:34.981Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 486ms - RequestID: cslaj80sdkl +2025-06-18T15:03:35.081Z [INFO] auth-service - Auth event: logout - User: user_1099 - IP: 192.168.229.123 - RequestID: osxb4fjot5 +2025-06-18T15:03:35.181Z [INFO] user-service - Database SELECT on orders - Execution time: 119ms - Rows affected: 93 - RequestID: du00f37iegv +2025-06-18T15:03:35.281Z [INFO] order-service - Operation: notification_queued - Processing time: 85ms - RequestID: s955vquf3z8 +2025-06-18T15:03:35.381Z [INFO] order-service - PUT /api/v1/payments - Status: 201 - Response time: 127ms - IP: 192.168.81.206 - User: user_1061 - RequestID: vwv9zsa5vbp +2025-06-18T15:03:35.481Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 410ms - Rows affected: 61 - RequestID: tic8bmmglcn +2025-06-18T15:03:35.581Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 444ms - Rows affected: 40 - RequestID: f5840c1i6nt +2025-06-18T15:03:35.681Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 191ms - IP: 192.168.113.218 - User: user_1033 - RequestID: 4atza5ra2cj +2025-06-18T15:03:35.781Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 292ms - Rows affected: 85 - RequestID: 4l1ma20f8up +2025-06-18T15:03:35.881Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 600ms - IP: 192.168.1.152 - User: user_1007 - RequestID: r80di5lkwa +2025-06-18T15:03:35.981Z [INFO] order-service - Auth event: password_change - User: user_1004 - IP: 192.168.100.240 - RequestID: h1b8ruwmag +2025-06-18T15:03:36.081Z [INFO] auth-service - Database SELECT on sessions - Execution time: 477ms - Rows affected: 60 - RequestID: 833vch96kk +2025-06-18T15:03:36.181Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1844ms - IP: 192.168.32.38 - User: user_1078 - RequestID: npayqk2qrf +2025-06-18T15:03:36.281Z [DEBUG] order-service - Operation: order_created - Processing time: 728ms - RequestID: 3t8pm7t0keq +2025-06-18T15:03:36.381Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 333ms - Rows affected: 21 - RequestID: mis1mdoc8wn +2025-06-18T15:03:36.481Z [TRACE] notification-service - Operation: notification_queued - Processing time: 89ms - RequestID: xewd2fxjvo +2025-06-18T15:03:36.581Z [TRACE] user-service - Database DELETE on sessions - Execution time: 304ms - Rows affected: 34 - RequestID: of7xsa30wk +2025-06-18T15:03:36.681Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 59ms - Rows affected: 49 - RequestID: jwc5zx2pao +2025-06-18T15:03:36.781Z [TRACE] user-service - Database DELETE on sessions - Execution time: 492ms - Rows affected: 33 - RequestID: hgy8c9kadej +2025-06-18T15:03:36.881Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 202ms - Rows affected: 1 - RequestID: 2jlsxd3skmj +2025-06-18T15:03:36.981Z [INFO] user-service - Database INSERT on sessions - Execution time: 387ms - Rows affected: 73 - RequestID: sr3953ffere +2025-06-18T15:03:37.081Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 349ms - Rows affected: 0 - RequestID: vpg6s019mba +2025-06-18T15:03:37.181Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 242ms - Rows affected: 81 - RequestID: o49zis5wyvg +2025-06-18T15:03:37.281Z [INFO] notification-service - Operation: notification_queued - Processing time: 232ms - RequestID: 917m4szhdwv +2025-06-18T15:03:37.381Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 404 - Response time: 992ms - IP: 192.168.240.169 - User: user_1049 - RequestID: 0bc77ta2lzce +2025-06-18T15:03:37.481Z [TRACE] payment-service - PUT /api/v1/payments - Status: 500 - Response time: 1831ms - IP: 192.168.68.158 - User: user_1069 - RequestID: 6i44y3nob1q +2025-06-18T15:03:37.581Z [INFO] order-service - Auth event: logout - User: user_1012 - IP: 192.168.232.72 - RequestID: kc31xkhkhp +2025-06-18T15:03:37.681Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 404 - Response time: 47ms - IP: 192.168.133.7 - User: user_1010 - RequestID: cz1p4etcdct +2025-06-18T15:03:37.781Z [INFO] auth-service - Database SELECT on payments - Execution time: 16ms - Rows affected: 83 - RequestID: vdsgn7gm6og +2025-06-18T15:03:37.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 500ms - RequestID: pvm46wf5xe +2025-06-18T15:03:37.981Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 446ms - Rows affected: 70 - RequestID: 0b4w18evks1t +2025-06-18T15:03:38.081Z [INFO] user-service - Database SELECT on users - Execution time: 50ms - Rows affected: 27 - RequestID: 1hezhk2m95q +2025-06-18T15:03:38.181Z [TRACE] payment-service - Database SELECT on payments - Execution time: 360ms - Rows affected: 69 - RequestID: f04s1wdalu +2025-06-18T15:03:38.281Z [INFO] notification-service - Database UPDATE on products - Execution time: 97ms - Rows affected: 91 - RequestID: jhhbv0kxuu +2025-06-18T15:03:38.381Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 755ms - RequestID: pfqf3j8k57p +2025-06-18T15:03:38.481Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 688ms - RequestID: qtss277vt8j +2025-06-18T15:03:38.581Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 58ms - Rows affected: 67 - RequestID: 3bnbwdy28as +2025-06-18T15:03:38.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.68.158 - RequestID: bicniewj31k +2025-06-18T15:03:38.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.159.94 - RequestID: bhrbqm9rizb +2025-06-18T15:03:38.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1002 - IP: 192.168.68.158 - RequestID: euq000869q +2025-06-18T15:03:38.981Z [INFO] order-service - PUT /api/v1/inventory - Status: 200 - Response time: 1236ms - IP: 192.168.159.94 - User: user_1084 - RequestID: zqg4jbzcfq +2025-06-18T15:03:39.081Z [TRACE] inventory-service - Operation: email_sent - Processing time: 625ms - RequestID: 2cm6cfmrala +2025-06-18T15:03:39.181Z [TRACE] user-service - Operation: inventory_updated - Processing time: 671ms - RequestID: thazjjwrdk +2025-06-18T15:03:39.281Z [TRACE] auth-service - Database SELECT on orders - Execution time: 459ms - Rows affected: 95 - RequestID: sf748nxin6 +2025-06-18T15:03:39.381Z [INFO] notification-service - Operation: order_created - Processing time: 958ms - RequestID: vfwr1fm6u5e +2025-06-18T15:03:39.481Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.46.63 - RequestID: 3q3uwtuk5ke +2025-06-18T15:03:39.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 807ms - RequestID: 3ciaf4iyl84 +2025-06-18T15:03:39.681Z [TRACE] order-service - Auth event: logout - User: user_1005 - IP: 192.168.36.218 - RequestID: u3omyhp8d7 +2025-06-18T15:03:39.781Z [TRACE] order-service - Operation: email_sent - Processing time: 908ms - RequestID: htqzac90o0k +2025-06-18T15:03:39.881Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 502 - Response time: 1338ms - IP: 192.168.79.143 - User: user_1016 - RequestID: e2jyv0pznqb +2025-06-18T15:03:39.981Z [DEBUG] notification-service - GET /api/v1/orders - Status: 500 - Response time: 1767ms - IP: 192.168.141.100 - User: user_1014 - RequestID: 29s4svdqyll +2025-06-18T15:03:40.081Z [INFO] inventory-service - POST /api/v1/inventory - Status: 503 - Response time: 1929ms - IP: 192.168.79.143 - User: user_1050 - RequestID: 24duyx436ki +2025-06-18T15:03:40.181Z [TRACE] order-service - DELETE /api/v1/orders - Status: 403 - Response time: 649ms - IP: 192.168.189.103 - User: user_1011 - RequestID: wjxcrdeoejs +2025-06-18T15:03:40.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1080 - IP: 192.168.104.37 - RequestID: htflyku4abk +2025-06-18T15:03:40.381Z [INFO] notification-service - Database INSERT on orders - Execution time: 41ms - Rows affected: 89 - RequestID: boptpls026i +2025-06-18T15:03:40.481Z [INFO] payment-service - Operation: inventory_updated - Processing time: 977ms - RequestID: tunh5uzgxak +2025-06-18T15:03:40.581Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 480ms - Rows affected: 51 - RequestID: k277ytajzpo +2025-06-18T15:03:40.681Z [INFO] user-service - Operation: payment_processed - Processing time: 561ms - RequestID: 1ohe24ns0s +2025-06-18T15:03:40.781Z [TRACE] auth-service - Database INSERT on products - Execution time: 244ms - Rows affected: 80 - RequestID: aaj9xmlh78d +2025-06-18T15:03:40.881Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 232ms - IP: 192.168.46.63 - User: user_1038 - RequestID: hz79kx161h +2025-06-18T15:03:40.981Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 100ms - Rows affected: 98 - RequestID: 5auvgmenzoc +2025-06-18T15:03:41.081Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 396ms - Rows affected: 57 - RequestID: od2wvvl37x8 +2025-06-18T15:03:41.181Z [INFO] inventory-service - Database SELECT on products - Execution time: 82ms - Rows affected: 51 - RequestID: 6jzeaicma4 +2025-06-18T15:03:41.281Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 178ms - Rows affected: 36 - RequestID: 7ko3iinob2o +2025-06-18T15:03:41.381Z [INFO] auth-service - Auth event: login_success - User: user_1061 - IP: 192.168.170.215 - RequestID: dlrcyx5289a +2025-06-18T15:03:41.481Z [TRACE] user-service - Operation: inventory_updated - Processing time: 951ms - RequestID: pezlxngw0ck +2025-06-18T15:03:41.581Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1142ms - IP: 192.168.229.123 - User: user_1019 - RequestID: dhjtlimd6b +2025-06-18T15:03:41.681Z [DEBUG] notification-service - Auth event: login_success - User: user_1098 - IP: 192.168.187.199 - RequestID: vbtwx0aukb +2025-06-18T15:03:41.781Z [TRACE] user-service - Operation: email_sent - Processing time: 53ms - RequestID: f7aji3sj8fq +2025-06-18T15:03:41.881Z [INFO] payment-service - Database UPDATE on users - Execution time: 91ms - Rows affected: 75 - RequestID: 9w2j3kl8mlu +2025-06-18T15:03:41.981Z [DEBUG] auth-service - Auth event: logout - User: user_1087 - IP: 192.168.232.72 - RequestID: y64be6n62x +2025-06-18T15:03:42.081Z [DEBUG] order-service - Database UPDATE on users - Execution time: 222ms - Rows affected: 36 - RequestID: w6yucfc7sln +2025-06-18T15:03:42.181Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 1517ms - IP: 192.168.227.233 - User: user_1020 - RequestID: 1m9x5u79jwu +2025-06-18T15:03:42.281Z [TRACE] order-service - Operation: inventory_updated - Processing time: 831ms - RequestID: ze12dwwgko +2025-06-18T15:03:42.381Z [INFO] payment-service - GET /api/v1/auth/login - Status: 502 - Response time: 254ms - IP: 192.168.181.225 - User: user_1078 - RequestID: 9kgoczt9ge +2025-06-18T15:03:42.481Z [INFO] order-service - Operation: cache_hit - Processing time: 257ms - RequestID: v3tjr63ann +2025-06-18T15:03:42.581Z [INFO] inventory-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.194.41 - RequestID: i4bkk9b4g7p +2025-06-18T15:03:42.681Z [INFO] inventory-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.68.128 - RequestID: pznbp9nm2y +2025-06-18T15:03:42.781Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 73ms - Rows affected: 23 - RequestID: unvvwkepib +2025-06-18T15:03:42.881Z [INFO] user-service - Auth event: logout - User: user_1051 - IP: 192.168.33.76 - RequestID: bgr5cl4w4sq +2025-06-18T15:03:42.981Z [TRACE] auth-service - Database UPDATE on users - Execution time: 198ms - Rows affected: 31 - RequestID: keqy2n2ic4r +2025-06-18T15:03:43.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 236ms - RequestID: i78mqhrtrt +2025-06-18T15:03:43.181Z [DEBUG] order-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.13.72 - RequestID: ehg0hkke414 +2025-06-18T15:03:43.281Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 252ms - RequestID: a3zmr3hvzaq +2025-06-18T15:03:43.381Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 346ms - Rows affected: 94 - RequestID: jlgx6aayr8t +2025-06-18T15:03:43.481Z [DEBUG] order-service - Operation: cache_hit - Processing time: 711ms - RequestID: ylla9ys2b2 +2025-06-18T15:03:43.581Z [TRACE] order-service - PATCH /api/v1/orders - Status: 200 - Response time: 2008ms - IP: 192.168.30.79 - User: user_1005 - RequestID: 75euc4f2yt +2025-06-18T15:03:43.681Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 905ms - IP: 192.168.13.72 - User: user_1023 - RequestID: oy9px1k906g +2025-06-18T15:03:43.781Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 168ms - Rows affected: 98 - RequestID: vxta4i96kw8 +2025-06-18T15:03:43.881Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 146ms - Rows affected: 50 - RequestID: 9gksac4twju +2025-06-18T15:03:43.981Z [DEBUG] payment-service - PUT /api/v1/users - Status: 503 - Response time: 604ms - IP: 192.168.159.94 - User: user_1038 - RequestID: xid34uijg8p +2025-06-18T15:03:44.081Z [INFO] user-service - Auth event: login_failed - User: user_1073 - IP: 192.168.147.171 - RequestID: jy8zsslkn4c +2025-06-18T15:03:44.181Z [INFO] payment-service - Database DELETE on sessions - Execution time: 262ms - Rows affected: 45 - RequestID: pwjp221auql +2025-06-18T15:03:44.281Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 219ms - Rows affected: 70 - RequestID: dljnmzp9d39 +2025-06-18T15:03:44.381Z [INFO] notification-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.174.114 - RequestID: ncft6bszih +2025-06-18T15:03:44.481Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1462ms - IP: 192.168.113.218 - User: user_1058 - RequestID: in9ygz3eff +2025-06-18T15:03:44.581Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 342ms - Rows affected: 97 - RequestID: z99uxtc71rk +2025-06-18T15:03:44.681Z [DEBUG] user-service - DELETE /api/v1/users - Status: 400 - Response time: 1490ms - IP: 192.168.227.77 - User: user_1013 - RequestID: sdem2yhwpz +2025-06-18T15:03:44.781Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1328ms - IP: 192.168.81.206 - User: user_1078 - RequestID: ua140bbhacg +2025-06-18T15:03:44.881Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1786ms - IP: 192.168.79.141 - User: user_1053 - RequestID: wizo1g0285s +2025-06-18T15:03:44.981Z [DEBUG] user-service - Auth event: login_success - User: user_1071 - IP: 192.168.79.116 - RequestID: 7vlbodktlbe +2025-06-18T15:03:45.081Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 206ms - Rows affected: 5 - RequestID: 0wwlymdv22t9 +2025-06-18T15:03:45.181Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 401 - Response time: 1155ms - IP: 192.168.232.72 - User: user_1019 - RequestID: a5yz5v389ze +2025-06-18T15:03:45.281Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 399ms - Rows affected: 60 - RequestID: jlvef4y7ke8 +2025-06-18T15:03:45.381Z [TRACE] notification-service - Database SELECT on payments - Execution time: 290ms - Rows affected: 55 - RequestID: bpv44pfzwj7 +2025-06-18T15:03:45.481Z [INFO] inventory-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.227.233 - RequestID: v6prbqu8oh +2025-06-18T15:03:45.581Z [INFO] order-service - Database DELETE on users - Execution time: 367ms - Rows affected: 57 - RequestID: p7t9t3nrp8e +2025-06-18T15:03:45.681Z [TRACE] order-service - Auth event: login_failed - User: user_1080 - IP: 192.168.68.158 - RequestID: i05edyosxmj +2025-06-18T15:03:45.781Z [TRACE] payment-service - Operation: notification_queued - Processing time: 397ms - RequestID: 00mw1xpzpkowe +2025-06-18T15:03:45.881Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 534ms - IP: 192.168.10.184 - User: user_1078 - RequestID: t9xxg2rdt6 +2025-06-18T15:03:45.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.187.199 - RequestID: jnm9yls8cmg +2025-06-18T15:03:46.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1077 - IP: 192.168.79.141 - RequestID: rf6vc1xvxft +2025-06-18T15:03:46.181Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 105ms - Rows affected: 32 - RequestID: 7tdf577n19h +2025-06-18T15:03:46.281Z [DEBUG] auth-service - Operation: email_sent - Processing time: 257ms - RequestID: i8ifuw1m2al +2025-06-18T15:03:46.381Z [INFO] user-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.85.229 - RequestID: v4rg6cncfk +2025-06-18T15:03:46.481Z [TRACE] payment-service - Database SELECT on products - Execution time: 59ms - Rows affected: 8 - RequestID: jrw38s8f59q +2025-06-18T15:03:46.581Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 201 - Response time: 1464ms - IP: 192.168.181.225 - User: user_1003 - RequestID: 12ghbb0dluob +2025-06-18T15:03:46.681Z [INFO] order-service - PATCH /api/v1/users - Status: 201 - Response time: 1252ms - IP: 192.168.1.152 - User: user_1038 - RequestID: qasqzdagax +2025-06-18T15:03:46.781Z [TRACE] order-service - Operation: order_created - Processing time: 372ms - RequestID: vs8uij3l73i +2025-06-18T15:03:46.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1092 - IP: 192.168.144.38 - RequestID: 89gyjui3 +2025-06-18T15:03:46.981Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 959ms - IP: 192.168.64.33 - User: user_1040 - RequestID: ins8w81mbz +2025-06-18T15:03:47.081Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 146ms - Rows affected: 1 - RequestID: ki6fmlr2rgb +2025-06-18T15:03:47.181Z [INFO] notification-service - Auth event: login_success - User: user_1055 - IP: 192.168.79.116 - RequestID: pih4ebdt4f +2025-06-18T15:03:47.281Z [TRACE] notification-service - Operation: notification_queued - Processing time: 1020ms - RequestID: 3ak0wvmv5ga +2025-06-18T15:03:47.381Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 977ms - RequestID: zu5r74pyilo +2025-06-18T15:03:47.481Z [INFO] order-service - Auth event: login_success - User: user_1015 - IP: 192.168.68.158 - RequestID: puhgw874lgj +2025-06-18T15:03:47.581Z [TRACE] user-service - Auth event: password_change - User: user_1017 - IP: 192.168.174.114 - RequestID: te2yu7paf2l +2025-06-18T15:03:47.681Z [INFO] inventory-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.235.117 - RequestID: jdb4c8n27u +2025-06-18T15:03:47.781Z [DEBUG] user-service - Database SELECT on payments - Execution time: 409ms - Rows affected: 9 - RequestID: db1b4e9dojl +2025-06-18T15:03:47.881Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 1018ms - RequestID: f24muvdpiv9 +2025-06-18T15:03:47.981Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 1005ms - RequestID: f6y9kk21kdl +2025-06-18T15:03:48.081Z [INFO] order-service - GET /api/v1/auth/login - Status: 500 - Response time: 1520ms - IP: 192.168.64.33 - User: user_1065 - RequestID: 9tosshxa33 +2025-06-18T15:03:48.181Z [TRACE] inventory-service - GET /api/v1/users - Status: 400 - Response time: 1701ms - IP: 192.168.46.63 - User: user_1023 - RequestID: g9ovjhdr5hk +2025-06-18T15:03:48.281Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 192ms - RequestID: b2s9hggcmm +2025-06-18T15:03:48.381Z [INFO] user-service - Database UPDATE on products - Execution time: 75ms - Rows affected: 73 - RequestID: aawq01ua15n +2025-06-18T15:03:48.481Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 201 - Response time: 1525ms - IP: 192.168.235.117 - User: user_1027 - RequestID: 1hb8kkcoxtz +2025-06-18T15:03:48.581Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 404 - Response time: 384ms - IP: 192.168.196.226 - User: user_1047 - RequestID: m30cb4wy8wp +2025-06-18T15:03:48.681Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 16ms - Rows affected: 76 - RequestID: hlmapg01yfn +2025-06-18T15:03:48.781Z [TRACE] order-service - PUT /api/v1/inventory - Status: 403 - Response time: 1116ms - IP: 192.168.97.87 - User: user_1009 - RequestID: t8tkhkhz5s +2025-06-18T15:03:48.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 1044ms - RequestID: etbdc06ltmt +2025-06-18T15:03:48.981Z [INFO] payment-service - Auth event: login_success - User: user_1099 - IP: 192.168.138.123 - RequestID: c7pvsb7b90u +2025-06-18T15:03:49.081Z [TRACE] payment-service - Auth event: logout - User: user_1043 - IP: 192.168.97.87 - RequestID: s1h6l8b2sbm +2025-06-18T15:03:49.181Z [TRACE] order-service - Operation: cache_hit - Processing time: 578ms - RequestID: xdzdwnts4im +2025-06-18T15:03:49.281Z [TRACE] order-service - Operation: inventory_updated - Processing time: 465ms - RequestID: 6kehkqodwdb +2025-06-18T15:03:49.381Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 418ms - Rows affected: 6 - RequestID: ojvxi8g99i +2025-06-18T15:03:49.481Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 448ms - IP: 192.168.79.141 - User: user_1052 - RequestID: xj75hdwh4u +2025-06-18T15:03:49.581Z [TRACE] notification-service - Database INSERT on products - Execution time: 370ms - Rows affected: 11 - RequestID: bg7871xspir +2025-06-18T15:03:49.681Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 677ms - RequestID: zprix0dp0fr +2025-06-18T15:03:49.781Z [INFO] user-service - Auth event: logout - User: user_1055 - IP: 192.168.79.141 - RequestID: ho2y8fmfwir +2025-06-18T15:03:49.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.174.114 - RequestID: rylsb7jt58o +2025-06-18T15:03:49.981Z [DEBUG] order-service - Operation: payment_processed - Processing time: 355ms - RequestID: 5qlz0pv67kg +2025-06-18T15:03:50.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.181.225 - RequestID: mkf6z21uh9 +2025-06-18T15:03:50.181Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 200ms - Rows affected: 37 - RequestID: mnzsg9ni4cm +2025-06-18T15:03:50.281Z [DEBUG] order-service - POST /api/v1/payments - Status: 403 - Response time: 1822ms - IP: 192.168.97.87 - User: user_1014 - RequestID: k715s09a7og +2025-06-18T15:03:50.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.229.123 - RequestID: w3fci0e0wy +2025-06-18T15:03:50.481Z [TRACE] payment-service - Operation: cache_hit - Processing time: 942ms - RequestID: d9neznrf887 +2025-06-18T15:03:50.581Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 243ms - Rows affected: 21 - RequestID: zypdt3d8l +2025-06-18T15:03:50.681Z [INFO] user-service - Database SELECT on users - Execution time: 343ms - Rows affected: 90 - RequestID: 18ltvf1q1by +2025-06-18T15:03:50.781Z [TRACE] inventory-service - Auth event: logout - User: user_1006 - IP: 192.168.133.7 - RequestID: m7zbcfu4w6i +2025-06-18T15:03:50.881Z [TRACE] order-service - PUT /api/v1/payments - Status: 500 - Response time: 1273ms - IP: 192.168.33.76 - User: user_1071 - RequestID: 6i2f7eo2irq +2025-06-18T15:03:50.981Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 500 - Response time: 898ms - IP: 192.168.79.143 - User: user_1095 - RequestID: 586i5twc235 +2025-06-18T15:03:51.081Z [INFO] user-service - Database UPDATE on products - Execution time: 330ms - Rows affected: 85 - RequestID: n7qhzk3sbqg +2025-06-18T15:03:51.181Z [INFO] payment-service - Operation: payment_processed - Processing time: 915ms - RequestID: vp21mbn463l +2025-06-18T15:03:51.281Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 345ms - Rows affected: 17 - RequestID: gk8wqmv7ia6 +2025-06-18T15:03:51.381Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 845ms - IP: 192.168.64.33 - User: user_1064 - RequestID: 8283lv8zz6l +2025-06-18T15:03:51.481Z [TRACE] auth-service - Auth event: password_change - User: user_1016 - IP: 192.168.13.72 - RequestID: zg426gehuqn +2025-06-18T15:03:51.581Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 400 - Response time: 410ms - IP: 192.168.64.33 - User: user_1082 - RequestID: g44jyi3uwtf +2025-06-18T15:03:51.681Z [INFO] inventory-service - Auth event: logout - User: user_1040 - IP: 192.168.46.63 - RequestID: x4b5u6mi6bf +2025-06-18T15:03:51.781Z [INFO] payment-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.240.169 - RequestID: 8ki4n8633vn +2025-06-18T15:03:51.881Z [INFO] payment-service - Database SELECT on sessions - Execution time: 184ms - Rows affected: 38 - RequestID: d6f0vqh3y6q +2025-06-18T15:03:51.981Z [INFO] user-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.181.225 - RequestID: nz476191wek +2025-06-18T15:03:52.081Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 404 - Response time: 326ms - IP: 192.168.227.77 - User: user_1074 - RequestID: svulsm6twu +2025-06-18T15:03:52.181Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 485ms - Rows affected: 25 - RequestID: t1658wx0pu +2025-06-18T15:03:52.281Z [TRACE] user-service - Database DELETE on orders - Execution time: 477ms - Rows affected: 59 - RequestID: mst81453p4c +2025-06-18T15:03:52.381Z [INFO] user-service - Auth event: login_failed - User: user_1010 - IP: 192.168.227.233 - RequestID: 87a3916no6x +2025-06-18T15:03:52.481Z [TRACE] user-service - Database UPDATE on products - Execution time: 222ms - Rows affected: 88 - RequestID: 88g01g84w67 +2025-06-18T15:03:52.581Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 788ms - RequestID: fg949ivkqjs +2025-06-18T15:03:52.681Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 89ms - Rows affected: 29 - RequestID: 0m81lsajyp5b +2025-06-18T15:03:52.781Z [TRACE] auth-service - Operation: cache_miss - Processing time: 205ms - RequestID: j7p6ysnowtm +2025-06-18T15:03:52.881Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 461ms - Rows affected: 65 - RequestID: tfi1pulfzwp +2025-06-18T15:03:52.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1077 - IP: 192.168.53.133 - RequestID: ki5q5ljseyi +2025-06-18T15:03:53.081Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1194ms - IP: 192.168.159.94 - User: user_1019 - RequestID: sqrqvrtwms +2025-06-18T15:03:53.181Z [INFO] order-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.167.32 - RequestID: v8zc8il5w4p +2025-06-18T15:03:53.281Z [INFO] user-service - Operation: inventory_updated - Processing time: 213ms - RequestID: d95op720q9k +2025-06-18T15:03:53.381Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 118ms - Rows affected: 3 - RequestID: 89bwg5lxrzc +2025-06-18T15:03:53.481Z [INFO] notification-service - POST /api/v1/orders - Status: 400 - Response time: 1578ms - IP: 192.168.229.123 - User: user_1012 - RequestID: 68f473usw8 +2025-06-18T15:03:53.581Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1157ms - IP: 192.168.227.77 - User: user_1047 - RequestID: kftvm7hl4v +2025-06-18T15:03:53.681Z [INFO] user-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.141.100 - RequestID: yqbljacau4i +2025-06-18T15:03:53.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.28.146 - RequestID: c9j2fe1l9wd +2025-06-18T15:03:53.881Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.46.63 - RequestID: rxfb7bw1oa +2025-06-18T15:03:53.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1011 - IP: 192.168.64.33 - RequestID: rix9sftvoy +2025-06-18T15:03:54.081Z [INFO] payment-service - Auth event: login_failed - User: user_1099 - IP: 192.168.211.72 - RequestID: nw060os30u +2025-06-18T15:03:54.181Z [TRACE] notification-service - DELETE /api/v1/users - Status: 500 - Response time: 640ms - IP: 192.168.30.79 - User: user_1025 - RequestID: gyw51ju6a6f +2025-06-18T15:03:54.281Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 427ms - Rows affected: 64 - RequestID: bftucxqdjef +2025-06-18T15:03:54.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.235.117 - RequestID: 3as4c22k2y5 +2025-06-18T15:03:54.481Z [INFO] order-service - Operation: inventory_updated - Processing time: 99ms - RequestID: ci93qm8dftl +2025-06-18T15:03:54.581Z [TRACE] payment-service - Database INSERT on users - Execution time: 262ms - Rows affected: 3 - RequestID: styk8e7lc7i +2025-06-18T15:03:54.681Z [TRACE] payment-service - Operation: email_sent - Processing time: 730ms - RequestID: nx1h1fa8eik +2025-06-18T15:03:54.781Z [INFO] notification-service - POST /api/v1/payments - Status: 400 - Response time: 2002ms - IP: 192.168.79.116 - User: user_1049 - RequestID: 20p2965x2ne +2025-06-18T15:03:54.881Z [DEBUG] payment-service - Auth event: login_failed - User: user_1098 - IP: 192.168.113.218 - RequestID: l6yhqak0q1a +2025-06-18T15:03:54.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 966ms - RequestID: ydxl264wm1 +2025-06-18T15:03:55.081Z [TRACE] user-service - Operation: inventory_updated - Processing time: 195ms - RequestID: mio28bm72 +2025-06-18T15:03:55.181Z [DEBUG] order-service - DELETE /api/v1/users - Status: 400 - Response time: 915ms - IP: 192.168.13.72 - User: user_1094 - RequestID: iw018dxrxcn +2025-06-18T15:03:55.281Z [TRACE] auth-service - Operation: payment_processed - Processing time: 109ms - RequestID: 96rz8gdjm4v +2025-06-18T15:03:55.381Z [TRACE] auth-service - Auth event: login_failed - User: user_1016 - IP: 192.168.81.206 - RequestID: lxnrqokns5 +2025-06-18T15:03:55.481Z [DEBUG] auth-service - Auth event: password_change - User: user_1096 - IP: 192.168.174.114 - RequestID: qbsiyrwe5wi +2025-06-18T15:03:55.581Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 597ms - RequestID: b3gqc4so7rf +2025-06-18T15:03:55.681Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 248ms - Rows affected: 10 - RequestID: 9cd4wkx1uqb +2025-06-18T15:03:55.781Z [TRACE] notification-service - GET /api/v1/users - Status: 403 - Response time: 1541ms - IP: 192.168.174.114 - User: user_1098 - RequestID: snk9uatqsxi +2025-06-18T15:03:55.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.79.143 - RequestID: zn4ae01r1v9 +2025-06-18T15:03:55.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.81.206 - RequestID: xu76nktaoua +2025-06-18T15:03:56.081Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 44ms - Rows affected: 29 - RequestID: nrkors5mxp +2025-06-18T15:03:56.181Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 503 - Response time: 1667ms - IP: 192.168.97.87 - User: user_1018 - RequestID: 3x5c3pztdmr +2025-06-18T15:03:56.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 800ms - RequestID: do1hqvzpkio +2025-06-18T15:03:56.381Z [INFO] auth-service - Operation: cache_miss - Processing time: 260ms - RequestID: vtmlyz8kucd +2025-06-18T15:03:56.481Z [INFO] user-service - Database INSERT on payments - Execution time: 36ms - Rows affected: 72 - RequestID: r5pchy1yc3m +2025-06-18T15:03:56.581Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 912ms - IP: 192.168.194.41 - User: user_1091 - RequestID: frkasr5218v +2025-06-18T15:03:56.681Z [TRACE] order-service - Operation: cache_miss - Processing time: 240ms - RequestID: 3mdntwhl9qd +2025-06-18T15:03:56.781Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 382ms - Rows affected: 12 - RequestID: l4jupgh80v8 +2025-06-18T15:03:56.881Z [TRACE] notification-service - Auth event: logout - User: user_1042 - IP: 192.168.242.165 - RequestID: gi0f51icubq +2025-06-18T15:03:56.981Z [TRACE] user-service - Operation: order_created - Processing time: 567ms - RequestID: xzjmrr5ijgs +2025-06-18T15:03:57.081Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 369ms - Rows affected: 74 - RequestID: 8kq0qikns9w +2025-06-18T15:03:57.181Z [INFO] inventory-service - PATCH /api/v1/users - Status: 200 - Response time: 1111ms - IP: 192.168.227.77 - User: user_1024 - RequestID: 7ph8bm613mn +2025-06-18T15:03:57.281Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 624ms - RequestID: 6ltzdjg6kdc +2025-06-18T15:03:57.381Z [DEBUG] user-service - GET /api/v1/inventory - Status: 502 - Response time: 1066ms - IP: 192.168.240.169 - User: user_1086 - RequestID: 71tx18to8r8 +2025-06-18T15:03:57.481Z [TRACE] user-service - Auth event: password_change - User: user_1082 - IP: 192.168.247.134 - RequestID: 3ub1encham9 +2025-06-18T15:03:57.581Z [INFO] auth-service - Auth event: login_success - User: user_1053 - IP: 192.168.133.7 - RequestID: q2gox791uf +2025-06-18T15:03:57.681Z [INFO] order-service - Operation: cache_miss - Processing time: 918ms - RequestID: m8u3tu05dw +2025-06-18T15:03:57.781Z [INFO] auth-service - Auth event: login_failed - User: user_1092 - IP: 192.168.11.60 - RequestID: 6rpnc4qaaha +2025-06-18T15:03:57.881Z [TRACE] notification-service - Auth event: logout - User: user_1004 - IP: 192.168.159.94 - RequestID: tdxwl3rgz4l +2025-06-18T15:03:57.981Z [TRACE] order-service - Auth event: password_change - User: user_1045 - IP: 192.168.187.199 - RequestID: 8bg2lp4fbnu +2025-06-18T15:03:58.081Z [TRACE] payment-service - Database DELETE on products - Execution time: 117ms - Rows affected: 5 - RequestID: 0vvcr7di1u1c +2025-06-18T15:03:58.181Z [DEBUG] inventory-service - GET /api/v1/users - Status: 201 - Response time: 255ms - IP: 192.168.10.184 - User: user_1089 - RequestID: iwokf4pi9 +2025-06-18T15:03:58.281Z [INFO] order-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.68.158 - RequestID: 7z0v2havxzo +2025-06-18T15:03:58.381Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1187ms - IP: 192.168.64.33 - User: user_1062 - RequestID: kgo33rezhw +2025-06-18T15:03:58.481Z [TRACE] payment-service - Operation: cache_hit - Processing time: 824ms - RequestID: 086zpwydoraw +2025-06-18T15:03:58.581Z [INFO] user-service - Database DELETE on products - Execution time: 487ms - Rows affected: 51 - RequestID: n1bvdr6gv2j +2025-06-18T15:03:58.681Z [INFO] notification-service - POST /api/v1/orders - Status: 400 - Response time: 1035ms - IP: 192.168.68.128 - User: user_1007 - RequestID: ngqmubygojn +2025-06-18T15:03:58.781Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 274ms - RequestID: ktf8wo3ryp +2025-06-18T15:03:58.881Z [TRACE] order-service - PUT /api/v1/inventory - Status: 400 - Response time: 211ms - IP: 192.168.36.218 - User: user_1066 - RequestID: m3cnyuvwev +2025-06-18T15:03:58.981Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 734ms - IP: 192.168.36.218 - User: user_1039 - RequestID: x3b7j0qrj4 +2025-06-18T15:03:59.081Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 422ms - Rows affected: 20 - RequestID: 0y5xf1xmyuq +2025-06-18T15:03:59.181Z [INFO] notification-service - Operation: inventory_updated - Processing time: 227ms - RequestID: u57davqes8m +2025-06-18T15:03:59.281Z [INFO] user-service - Database UPDATE on products - Execution time: 167ms - Rows affected: 8 - RequestID: wyh8ozl3uk +2025-06-18T15:03:59.381Z [INFO] auth-service - Operation: webhook_sent - Processing time: 559ms - RequestID: 4sr8qwjb1ce +2025-06-18T15:03:59.481Z [INFO] notification-service - Operation: order_created - Processing time: 988ms - RequestID: 8mxh33kfpww +2025-06-18T15:03:59.581Z [DEBUG] notification-service - GET /api/v1/users - Status: 401 - Response time: 1530ms - IP: 192.168.81.206 - User: user_1077 - RequestID: gmobutvj9ug +2025-06-18T15:03:59.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 613ms - RequestID: r8drsjrbml8 +2025-06-18T15:03:59.781Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 247ms - Rows affected: 52 - RequestID: 334tdsd6nxs +2025-06-18T15:03:59.881Z [INFO] auth-service - PUT /api/v1/payments - Status: 502 - Response time: 727ms - IP: 192.168.235.117 - User: user_1035 - RequestID: 16nre2egyqd +2025-06-18T15:03:59.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.159.94 - RequestID: o393tt670ed +2025-06-18T15:04:00.081Z [DEBUG] auth-service - Auth event: login_success - User: user_1039 - IP: 192.168.68.128 - RequestID: ia7la1u3kp +2025-06-18T15:04:00.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1097 - IP: 192.168.68.158 - RequestID: cimf601x75p +2025-06-18T15:04:00.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.211.72 - RequestID: 9tand70h8dt +2025-06-18T15:04:00.381Z [DEBUG] order-service - Auth event: password_change - User: user_1013 - IP: 192.168.14.77 - RequestID: g7hfligo0ew +2025-06-18T15:04:00.481Z [INFO] order-service - Database INSERT on products - Execution time: 131ms - Rows affected: 80 - RequestID: p68nx5dzph8 +2025-06-18T15:04:00.581Z [INFO] inventory-service - Auth event: login_success - User: user_1018 - IP: 192.168.79.141 - RequestID: vsccc1zxc3 +2025-06-18T15:04:00.681Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 21ms - Rows affected: 74 - RequestID: yycj94ibsac +2025-06-18T15:04:00.781Z [TRACE] order-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.159.94 - RequestID: yjdp6zm5pi +2025-06-18T15:04:00.881Z [INFO] order-service - Operation: order_created - Processing time: 368ms - RequestID: mq4eax9mjes +2025-06-18T15:04:00.981Z [TRACE] user-service - Database INSERT on products - Execution time: 424ms - Rows affected: 34 - RequestID: q3i068keet +2025-06-18T15:04:01.081Z [INFO] payment-service - Operation: order_created - Processing time: 370ms - RequestID: nwjt6wf76f +2025-06-18T15:04:01.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1019 - IP: 192.168.170.215 - RequestID: lfx9e2jejh +2025-06-18T15:04:01.281Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 121ms - Rows affected: 12 - RequestID: vr9doxp25j +2025-06-18T15:04:01.381Z [INFO] notification-service - Operation: inventory_updated - Processing time: 829ms - RequestID: mmyk48i5w +2025-06-18T15:04:01.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 766ms - RequestID: fu4s6fri4nb +2025-06-18T15:04:01.581Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 88ms - Rows affected: 89 - RequestID: arrpvvtgn1i +2025-06-18T15:04:01.681Z [INFO] user-service - PATCH /api/v1/orders - Status: 201 - Response time: 151ms - IP: 192.168.240.169 - User: user_1080 - RequestID: ox2feqob4wh +2025-06-18T15:04:01.781Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 450ms - Rows affected: 27 - RequestID: itr1f3uvs79 +2025-06-18T15:04:01.881Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 201 - Response time: 1259ms - IP: 192.168.36.218 - User: user_1040 - RequestID: njfsquu0uzm +2025-06-18T15:04:01.981Z [INFO] auth-service - Database UPDATE on users - Execution time: 177ms - Rows affected: 74 - RequestID: webj0eher9f +2025-06-18T15:04:02.081Z [TRACE] user-service - Database SELECT on products - Execution time: 51ms - Rows affected: 42 - RequestID: hlqt3mvy6o7 +2025-06-18T15:04:02.181Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 404 - Response time: 1466ms - IP: 192.168.174.114 - User: user_1094 - RequestID: qeq7n6mtnpq +2025-06-18T15:04:02.281Z [INFO] user-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.141.100 - RequestID: qa6182m7fw +2025-06-18T15:04:02.381Z [DEBUG] order-service - Auth event: login_failed - User: user_1027 - IP: 192.168.232.72 - RequestID: nj4udlxu6tg +2025-06-18T15:04:02.481Z [TRACE] auth-service - Database UPDATE on users - Execution time: 360ms - Rows affected: 72 - RequestID: fmqk4qrj21w +2025-06-18T15:04:02.581Z [INFO] order-service - Database DELETE on products - Execution time: 248ms - Rows affected: 21 - RequestID: cmfrrk4em1o +2025-06-18T15:04:02.681Z [DEBUG] user-service - Operation: cache_miss - Processing time: 970ms - RequestID: mydwgnn4v9 +2025-06-18T15:04:02.781Z [DEBUG] user-service - GET /api/v1/orders - Status: 403 - Response time: 546ms - IP: 192.168.32.38 - User: user_1090 - RequestID: f6zsbq4spk9 +2025-06-18T15:04:02.881Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1535ms - IP: 192.168.144.38 - User: user_1053 - RequestID: fbvll8nbmhc +2025-06-18T15:04:02.981Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 336ms - Rows affected: 51 - RequestID: ahn379je7q6 +2025-06-18T15:04:03.081Z [INFO] payment-service - GET /api/v1/inventory - Status: 502 - Response time: 289ms - IP: 192.168.113.218 - User: user_1005 - RequestID: cp37rm6r5o8 +2025-06-18T15:04:03.181Z [TRACE] inventory-service - POST /api/v1/users - Status: 400 - Response time: 1869ms - IP: 192.168.174.114 - User: user_1021 - RequestID: c90pwv9aqz9 +2025-06-18T15:04:03.281Z [INFO] auth-service - DELETE /api/v1/orders - Status: 503 - Response time: 565ms - IP: 192.168.196.226 - User: user_1086 - RequestID: mczotk8nrw +2025-06-18T15:04:03.381Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 187ms - Rows affected: 66 - RequestID: x183yeu5c7 +2025-06-18T15:04:03.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 670ms - RequestID: cg8sc727okb +2025-06-18T15:04:03.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 227ms - RequestID: 78isqlt0vf8 +2025-06-18T15:04:03.681Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 298ms - Rows affected: 62 - RequestID: bgyhc0vjvt +2025-06-18T15:04:03.781Z [INFO] payment-service - Database DELETE on orders - Execution time: 214ms - Rows affected: 9 - RequestID: 03r5kdtx6irl +2025-06-18T15:04:03.881Z [TRACE] auth-service - Database INSERT on orders - Execution time: 208ms - Rows affected: 49 - RequestID: 7m1ydvyq3im +2025-06-18T15:04:03.981Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 493ms - RequestID: cdwdkanveg7 +2025-06-18T15:04:04.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 860ms - RequestID: rqu25y6hxyh +2025-06-18T15:04:04.181Z [TRACE] inventory-service - Operation: order_created - Processing time: 384ms - RequestID: h0inzavhyjp +2025-06-18T15:04:04.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.10.184 - RequestID: 80agesloayn +2025-06-18T15:04:04.381Z [TRACE] payment-service - Auth event: login_failed - User: user_1004 - IP: 192.168.141.100 - RequestID: o2ao3bvt1xq +2025-06-18T15:04:04.481Z [TRACE] payment-service - Operation: order_created - Processing time: 135ms - RequestID: oh162kov84 +2025-06-18T15:04:04.581Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 80ms - Rows affected: 88 - RequestID: pme5nobkmp +2025-06-18T15:04:04.681Z [DEBUG] notification-service - Operation: order_created - Processing time: 945ms - RequestID: 7h5eqvn38ul +2025-06-18T15:04:04.781Z [INFO] notification-service - Operation: inventory_updated - Processing time: 542ms - RequestID: jqgw6apjsv +2025-06-18T15:04:04.881Z [INFO] auth-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.194.41 - RequestID: c0p05wuslzt +2025-06-18T15:04:04.981Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 200 - Response time: 1603ms - IP: 192.168.144.38 - User: user_1078 - RequestID: 9082t255hj5 +2025-06-18T15:04:05.081Z [INFO] user-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.64.33 - RequestID: p04fnxwvc29 +2025-06-18T15:04:05.181Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 200 - Response time: 360ms - IP: 192.168.68.158 - User: user_1011 - RequestID: gkx1er62j16 +2025-06-18T15:04:05.281Z [DEBUG] user-service - Operation: email_sent - Processing time: 110ms - RequestID: nyfzr6axx7e +2025-06-18T15:04:05.381Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 81ms - Rows affected: 29 - RequestID: oeduwp2xh3h +2025-06-18T15:04:05.481Z [INFO] notification-service - GET /api/v1/auth/login - Status: 201 - Response time: 718ms - IP: 192.168.247.134 - User: user_1040 - RequestID: zfx9o3qtg2h +2025-06-18T15:04:05.581Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 432ms - Rows affected: 97 - RequestID: o4i3yq3b1p +2025-06-18T15:04:05.681Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1394ms - IP: 192.168.158.144 - User: user_1059 - RequestID: zpbxpiof7jq +2025-06-18T15:04:05.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1010 - IP: 192.168.53.133 - RequestID: s8s929um2s +2025-06-18T15:04:05.881Z [INFO] notification-service - Auth event: logout - User: user_1029 - IP: 192.168.138.123 - RequestID: 4803d5bhsg7 +2025-06-18T15:04:05.981Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 502 - Response time: 111ms - IP: 192.168.158.144 - User: user_1008 - RequestID: pom2vtqrahi +2025-06-18T15:04:06.081Z [DEBUG] order-service - Database DELETE on payments - Execution time: 7ms - Rows affected: 84 - RequestID: ihydc5wc4lo +2025-06-18T15:04:06.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.211.72 - RequestID: 26z37onj2jm +2025-06-18T15:04:06.281Z [INFO] payment-service - Database DELETE on products - Execution time: 151ms - Rows affected: 49 - RequestID: v24xefhcl4k +2025-06-18T15:04:06.381Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 1018ms - RequestID: pm7ix4fodnd +2025-06-18T15:04:06.481Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 400 - Response time: 227ms - IP: 192.168.196.226 - User: user_1019 - RequestID: uq3t525cq6h +2025-06-18T15:04:06.581Z [TRACE] user-service - Database DELETE on sessions - Execution time: 86ms - Rows affected: 29 - RequestID: stb3dv6a78h +2025-06-18T15:04:06.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1023 - IP: 192.168.81.206 - RequestID: ix3k21lb13g +2025-06-18T15:04:06.781Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 151ms - Rows affected: 83 - RequestID: y6e66ieb22q +2025-06-18T15:04:06.881Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 533ms - RequestID: o641rgxa0cs +2025-06-18T15:04:06.981Z [TRACE] inventory-service - Auth event: password_change - User: user_1095 - IP: 192.168.36.218 - RequestID: i0danvs8ubl +2025-06-18T15:04:07.081Z [DEBUG] payment-service - GET /api/v1/users - Status: 500 - Response time: 1399ms - IP: 192.168.113.218 - User: user_1058 - RequestID: s9cuo47gav +2025-06-18T15:04:07.181Z [TRACE] order-service - Database SELECT on payments - Execution time: 69ms - Rows affected: 92 - RequestID: fr3ots66jya +2025-06-18T15:04:07.281Z [INFO] payment-service - Database UPDATE on payments - Execution time: 472ms - Rows affected: 57 - RequestID: 8ok2cp9ed4n +2025-06-18T15:04:07.381Z [INFO] order-service - PATCH /api/v1/orders - Status: 201 - Response time: 538ms - IP: 192.168.235.117 - User: user_1035 - RequestID: srzreamdu8 +2025-06-18T15:04:07.481Z [TRACE] auth-service - Operation: notification_queued - Processing time: 993ms - RequestID: l8733a95xpl +2025-06-18T15:04:07.581Z [TRACE] order-service - Operation: inventory_updated - Processing time: 423ms - RequestID: aj7gc9z3s9e +2025-06-18T15:04:07.681Z [INFO] order-service - Operation: inventory_updated - Processing time: 716ms - RequestID: xs2htuni7pf +2025-06-18T15:04:07.781Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 400 - Response time: 622ms - IP: 192.168.189.103 - User: user_1076 - RequestID: h3htwm33uvd +2025-06-18T15:04:07.881Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 897ms - IP: 192.168.227.77 - User: user_1090 - RequestID: 3t24cq8cx0u +2025-06-18T15:04:07.981Z [DEBUG] order-service - Auth event: logout - User: user_1086 - IP: 192.168.147.171 - RequestID: dzyh59cmf27 +2025-06-18T15:04:08.081Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 719ms - IP: 192.168.144.38 - User: user_1066 - RequestID: 9z0whkbaose +2025-06-18T15:04:08.181Z [DEBUG] auth-service - GET /api/v1/orders - Status: 400 - Response time: 494ms - IP: 192.168.28.146 - User: user_1085 - RequestID: d7ozov08p4s +2025-06-18T15:04:08.281Z [INFO] notification-service - Auth event: logout - User: user_1066 - IP: 192.168.14.77 - RequestID: 9e1mq96flqv +2025-06-18T15:04:08.381Z [TRACE] user-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.194.41 - RequestID: ud0j47mewc +2025-06-18T15:04:08.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 632ms - RequestID: mt81ix3c3e +2025-06-18T15:04:08.581Z [TRACE] notification-service - Database SELECT on products - Execution time: 157ms - Rows affected: 0 - RequestID: 8hrilbpuod7 +2025-06-18T15:04:08.681Z [DEBUG] user-service - GET /api/v1/users - Status: 502 - Response time: 82ms - IP: 192.168.147.171 - User: user_1006 - RequestID: s9mgyztgkk +2025-06-18T15:04:08.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.187.199 - RequestID: f1wd41n26q +2025-06-18T15:04:08.881Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 274ms - Rows affected: 33 - RequestID: pz8p30b9t +2025-06-18T15:04:08.981Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 422ms - Rows affected: 91 - RequestID: q78dh4fkmcs +2025-06-18T15:04:09.081Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 201 - Response time: 1087ms - IP: 192.168.170.215 - User: user_1038 - RequestID: garke3i8dbp +2025-06-18T15:04:09.181Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 1013ms - RequestID: p6ndbz69zd8 +2025-06-18T15:04:09.281Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1117ms - IP: 192.168.247.134 - User: user_1075 - RequestID: wtgw328f88q +2025-06-18T15:04:09.381Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 72ms - Rows affected: 74 - RequestID: n18vxn4uq5 +2025-06-18T15:04:09.481Z [DEBUG] user-service - Operation: payment_processed - Processing time: 344ms - RequestID: 08y36ww7sb0w +2025-06-18T15:04:09.581Z [DEBUG] auth-service - Operation: email_sent - Processing time: 135ms - RequestID: cuve8ea8ysj +2025-06-18T15:04:09.681Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 201ms - RequestID: kcln1bh3y09 +2025-06-18T15:04:09.781Z [TRACE] user-service - Database DELETE on users - Execution time: 424ms - Rows affected: 76 - RequestID: zl4vd0nginp +2025-06-18T15:04:09.881Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.181.225 - RequestID: tlr5j5q85pq +2025-06-18T15:04:09.981Z [TRACE] notification-service - Database DELETE on users - Execution time: 299ms - Rows affected: 56 - RequestID: tfc36c48sc +2025-06-18T15:04:10.081Z [TRACE] order-service - Auth event: logout - User: user_1093 - IP: 192.168.189.103 - RequestID: memjgda91zf +2025-06-18T15:04:10.181Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 813ms - IP: 192.168.79.141 - User: user_1028 - RequestID: wylf0inz89 +2025-06-18T15:04:10.281Z [INFO] notification-service - Operation: payment_processed - Processing time: 696ms - RequestID: in7ds0ws8b +2025-06-18T15:04:10.381Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 415ms - Rows affected: 98 - RequestID: wskb65whhoq +2025-06-18T15:04:10.481Z [INFO] inventory-service - Database DELETE on users - Execution time: 74ms - Rows affected: 74 - RequestID: 8mvr07y940d +2025-06-18T15:04:10.581Z [TRACE] payment-service - Database SELECT on orders - Execution time: 46ms - Rows affected: 87 - RequestID: prf74ekpz9 +2025-06-18T15:04:10.681Z [INFO] notification-service - Operation: cache_hit - Processing time: 311ms - RequestID: ir3cic0mlhk +2025-06-18T15:04:10.781Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 50ms - Rows affected: 45 - RequestID: ltujuszjn1d +2025-06-18T15:04:10.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 169ms - RequestID: xqq7ol8h3be +2025-06-18T15:04:10.981Z [DEBUG] user-service - Database INSERT on orders - Execution time: 61ms - Rows affected: 76 - RequestID: m0kcsa1utu +2025-06-18T15:04:11.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.141.100 - RequestID: eqke7b292x6 +2025-06-18T15:04:11.181Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 614ms - RequestID: xcp91s25umb +2025-06-18T15:04:11.281Z [DEBUG] payment-service - POST /api/v1/payments - Status: 403 - Response time: 334ms - IP: 192.168.13.72 - User: user_1068 - RequestID: 585a6rmcy4c +2025-06-18T15:04:11.381Z [DEBUG] notification-service - Auth event: login_failed - User: user_1013 - IP: 192.168.144.38 - RequestID: wfb0dc6e5wb +2025-06-18T15:04:11.481Z [INFO] payment-service - Database SELECT on orders - Execution time: 333ms - Rows affected: 81 - RequestID: 88eod5q35wk +2025-06-18T15:04:11.581Z [INFO] user-service - PATCH /api/v1/orders - Status: 403 - Response time: 1541ms - IP: 192.168.133.7 - User: user_1095 - RequestID: yp5b3hlxgtl +2025-06-18T15:04:11.681Z [TRACE] inventory-service - Operation: email_sent - Processing time: 955ms - RequestID: v1pk3z669xc +2025-06-18T15:04:11.781Z [INFO] order-service - Auth event: logout - User: user_1099 - IP: 192.168.170.215 - RequestID: 9kfjup2f28i +2025-06-18T15:04:11.881Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 897ms - IP: 192.168.113.218 - User: user_1093 - RequestID: vzgrnsokfsl +2025-06-18T15:04:11.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.100.240 - RequestID: x4nqyft929g +2025-06-18T15:04:12.081Z [DEBUG] payment-service - Auth event: login_failed - User: user_1023 - IP: 192.168.13.72 - RequestID: 6tl8cz65qbc +2025-06-18T15:04:12.181Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 500 - Response time: 1233ms - IP: 192.168.229.123 - User: user_1005 - RequestID: 42e5gn9tfdy +2025-06-18T15:04:12.281Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1994ms - IP: 192.168.138.123 - User: user_1026 - RequestID: 3rqb4gj4gu2 +2025-06-18T15:04:12.381Z [DEBUG] user-service - Auth event: login_success - User: user_1096 - IP: 192.168.211.72 - RequestID: 1wltd87e2b4 +2025-06-18T15:04:12.481Z [INFO] auth-service - Operation: order_created - Processing time: 978ms - RequestID: pas9ukd75zf +2025-06-18T15:04:12.581Z [TRACE] notification-service - Database SELECT on products - Execution time: 237ms - Rows affected: 95 - RequestID: yei9yjiolrn +2025-06-18T15:04:12.681Z [TRACE] notification-service - Database DELETE on orders - Execution time: 47ms - Rows affected: 2 - RequestID: orqqnmaubec +2025-06-18T15:04:12.781Z [TRACE] order-service - Operation: webhook_sent - Processing time: 920ms - RequestID: jn3lpxlsai +2025-06-18T15:04:12.881Z [DEBUG] user-service - Operation: cache_hit - Processing time: 482ms - RequestID: vyhzaieiw4 +2025-06-18T15:04:12.981Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 294ms - Rows affected: 4 - RequestID: wz3ve62zk2h +2025-06-18T15:04:13.081Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 326ms - Rows affected: 84 - RequestID: ipcvzktizx +2025-06-18T15:04:13.181Z [INFO] order-service - Database INSERT on orders - Execution time: 111ms - Rows affected: 37 - RequestID: zdeq9f8at2f +2025-06-18T15:04:13.281Z [INFO] auth-service - Auth event: logout - User: user_1084 - IP: 192.168.232.72 - RequestID: 6xu4lfu5k58 +2025-06-18T15:04:13.381Z [INFO] auth-service - Auth event: logout - User: user_1051 - IP: 192.168.141.100 - RequestID: t6b1mpreyt +2025-06-18T15:04:13.481Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 997ms - RequestID: y2ykhmusi1 +2025-06-18T15:04:13.581Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 431ms - Rows affected: 78 - RequestID: ye0enylh8 +2025-06-18T15:04:13.681Z [DEBUG] order-service - Database SELECT on payments - Execution time: 15ms - Rows affected: 20 - RequestID: 62qldalhbkq +2025-06-18T15:04:13.781Z [INFO] auth-service - POST /api/v1/payments - Status: 400 - Response time: 248ms - IP: 192.168.85.229 - User: user_1071 - RequestID: 84jlmgxq56w +2025-06-18T15:04:13.881Z [TRACE] inventory-service - POST /api/v1/payments - Status: 500 - Response time: 1496ms - IP: 192.168.174.114 - User: user_1016 - RequestID: rhts6vfqtn +2025-06-18T15:04:13.981Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 400 - Response time: 1528ms - IP: 192.168.85.229 - User: user_1077 - RequestID: 1q6k9p4l56z +2025-06-18T15:04:14.081Z [TRACE] auth-service - Operation: payment_processed - Processing time: 233ms - RequestID: 1x8n7jfhuu7 +2025-06-18T15:04:14.181Z [TRACE] payment-service - Database SELECT on payments - Execution time: 427ms - Rows affected: 54 - RequestID: 018xzbsahrbp +2025-06-18T15:04:14.281Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 939ms - RequestID: mdzps0rqp4h +2025-06-18T15:04:14.381Z [INFO] payment-service - Operation: email_sent - Processing time: 624ms - RequestID: kqyzn0d2wy +2025-06-18T15:04:14.481Z [INFO] payment-service - POST /api/v1/auth/login - Status: 400 - Response time: 1155ms - IP: 192.168.194.41 - User: user_1043 - RequestID: ce8fhvdpuvd +2025-06-18T15:04:14.581Z [INFO] payment-service - Auth event: logout - User: user_1050 - IP: 192.168.181.225 - RequestID: y8j9cv40av +2025-06-18T15:04:14.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.30.79 - RequestID: 93ck7ru4jxa +2025-06-18T15:04:14.781Z [TRACE] user-service - Operation: payment_processed - Processing time: 1032ms - RequestID: zm6peu1m0gn +2025-06-18T15:04:14.881Z [INFO] auth-service - Operation: inventory_updated - Processing time: 89ms - RequestID: 1ryi2g83ib2 +2025-06-18T15:04:14.981Z [INFO] user-service - Database INSERT on users - Execution time: 348ms - Rows affected: 0 - RequestID: 7sagk5uxy27 +2025-06-18T15:04:15.081Z [INFO] order-service - Auth event: password_change - User: user_1088 - IP: 192.168.144.38 - RequestID: wt1unitwfbf +2025-06-18T15:04:15.181Z [INFO] order-service - Auth event: login_success - User: user_1049 - IP: 192.168.44.5 - RequestID: cjq9uy3dtyd +2025-06-18T15:04:15.281Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 403 - Response time: 1606ms - IP: 192.168.46.63 - User: user_1042 - RequestID: uapfcsvy3md +2025-06-18T15:04:15.381Z [TRACE] order-service - Auth event: password_change - User: user_1097 - IP: 192.168.229.123 - RequestID: 8sbs905curr +2025-06-18T15:04:15.481Z [TRACE] user-service - Database SELECT on users - Execution time: 351ms - Rows affected: 86 - RequestID: j87sblonz8n +2025-06-18T15:04:15.581Z [TRACE] notification-service - PATCH /api/v1/users - Status: 400 - Response time: 151ms - IP: 192.168.81.206 - User: user_1016 - RequestID: 5wh4esb1c8o +2025-06-18T15:04:15.681Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 403 - Response time: 1466ms - IP: 192.168.194.41 - User: user_1013 - RequestID: r3uapgr58cq +2025-06-18T15:04:15.781Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 898ms - RequestID: j2uelybki2 +2025-06-18T15:04:15.881Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 500 - Response time: 579ms - IP: 192.168.141.100 - User: user_1066 - RequestID: uvp4e3j4wck +2025-06-18T15:04:15.981Z [TRACE] auth-service - Auth event: login_success - User: user_1025 - IP: 192.168.79.141 - RequestID: x0klz7lv2zb +2025-06-18T15:04:16.081Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 667ms - RequestID: q82pqfaewu +2025-06-18T15:04:16.181Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1414ms - IP: 192.168.14.77 - User: user_1008 - RequestID: lk79zalhxm +2025-06-18T15:04:16.281Z [TRACE] order-service - Operation: order_created - Processing time: 174ms - RequestID: kz8ublgseos +2025-06-18T15:04:16.381Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 401 - Response time: 525ms - IP: 192.168.133.7 - User: user_1070 - RequestID: lmu5nuox1qm +2025-06-18T15:04:16.481Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1825ms - IP: 192.168.133.7 - User: user_1013 - RequestID: me2scg0mmy8 +2025-06-18T15:04:16.581Z [INFO] order-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.227.233 - RequestID: ehehxlooiq +2025-06-18T15:04:16.681Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 946ms - RequestID: c6alrpr64x +2025-06-18T15:04:16.781Z [INFO] payment-service - Auth event: password_change - User: user_1069 - IP: 192.168.158.144 - RequestID: kkfuieol6m +2025-06-18T15:04:16.881Z [TRACE] inventory-service - Auth event: logout - User: user_1059 - IP: 192.168.10.184 - RequestID: 3qxdi29pqto +2025-06-18T15:04:16.981Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 278ms - RequestID: js6ps9n57a +2025-06-18T15:04:17.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.211.72 - RequestID: hedc9vidple +2025-06-18T15:04:17.181Z [INFO] inventory-service - GET /api/v1/orders - Status: 500 - Response time: 1514ms - IP: 192.168.147.171 - User: user_1039 - RequestID: jryr3vhkmfe +2025-06-18T15:04:17.281Z [INFO] order-service - GET /api/v1/inventory - Status: 404 - Response time: 1907ms - IP: 192.168.141.100 - User: user_1056 - RequestID: eqq7dm9lmfm +2025-06-18T15:04:17.381Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1980ms - IP: 192.168.227.77 - User: user_1091 - RequestID: x9s3q6j48r +2025-06-18T15:04:17.481Z [DEBUG] notification-service - Operation: order_created - Processing time: 519ms - RequestID: uuy6mmd3awn +2025-06-18T15:04:17.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 887ms - RequestID: 7cwc17qpl3o +2025-06-18T15:04:17.681Z [INFO] auth-service - PUT /api/v1/users - Status: 502 - Response time: 1737ms - IP: 192.168.147.171 - User: user_1036 - RequestID: nc3yys5mgx +2025-06-18T15:04:17.781Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 800ms - RequestID: ocnvnr2vpf +2025-06-18T15:04:17.881Z [DEBUG] order-service - Database INSERT on users - Execution time: 43ms - Rows affected: 51 - RequestID: fxyrgwxhurv +2025-06-18T15:04:17.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.144.38 - RequestID: ncn3sxurzuh +2025-06-18T15:04:18.081Z [INFO] user-service - GET /api/v1/users - Status: 503 - Response time: 1989ms - IP: 192.168.181.225 - User: user_1038 - RequestID: pf0jhx78mqe +2025-06-18T15:04:18.181Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 112ms - Rows affected: 95 - RequestID: kifgicyeet +2025-06-18T15:04:18.281Z [INFO] order-service - Operation: cache_hit - Processing time: 164ms - RequestID: w1c9iq6hsxq +2025-06-18T15:04:18.381Z [INFO] user-service - Operation: inventory_updated - Processing time: 590ms - RequestID: 46w39btgtvc +2025-06-18T15:04:18.481Z [TRACE] order-service - Auth event: password_change - User: user_1043 - IP: 192.168.11.60 - RequestID: 9wk4o2of8s +2025-06-18T15:04:18.581Z [TRACE] user-service - Operation: inventory_updated - Processing time: 554ms - RequestID: i30mi8fgrw +2025-06-18T15:04:18.681Z [TRACE] user-service - Operation: payment_processed - Processing time: 852ms - RequestID: k9dukwje8at +2025-06-18T15:04:18.781Z [TRACE] payment-service - PATCH /api/v1/users - Status: 401 - Response time: 1489ms - IP: 192.168.14.77 - User: user_1090 - RequestID: eietm6mu8y +2025-06-18T15:04:18.881Z [TRACE] order-service - POST /api/v1/payments - Status: 404 - Response time: 1290ms - IP: 192.168.36.218 - User: user_1016 - RequestID: 3az0rp3dlj9 +2025-06-18T15:04:18.981Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1679ms - IP: 192.168.33.76 - User: user_1074 - RequestID: e9jh20q7x9d +2025-06-18T15:04:19.081Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 610ms - RequestID: hf6x7hyf0cd +2025-06-18T15:04:19.181Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1851ms - IP: 192.168.85.229 - User: user_1010 - RequestID: aulglvph4jb +2025-06-18T15:04:19.281Z [INFO] inventory-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.30.79 - RequestID: uyy590cz3q +2025-06-18T15:04:19.381Z [DEBUG] order-service - Auth event: login_success - User: user_1058 - IP: 192.168.81.206 - RequestID: og4ms1domm +2025-06-18T15:04:19.481Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.147.171 - RequestID: rmu8sn1oyuf +2025-06-18T15:04:19.581Z [TRACE] auth-service - POST /api/v1/inventory - Status: 403 - Response time: 1193ms - IP: 192.168.79.143 - User: user_1089 - RequestID: s4lwcym8ps9 +2025-06-18T15:04:19.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.11.60 - RequestID: igj1bjycmp +2025-06-18T15:04:19.781Z [DEBUG] payment-service - POST /api/v1/users - Status: 500 - Response time: 1555ms - IP: 192.168.10.184 - User: user_1051 - RequestID: 1k1eu3f5252 +2025-06-18T15:04:19.881Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 403 - Response time: 725ms - IP: 192.168.211.72 - User: user_1098 - RequestID: vsc7lkmtzw +2025-06-18T15:04:19.981Z [INFO] user-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.64.33 - RequestID: s6i116qxaeo +2025-06-18T15:04:20.081Z [TRACE] order-service - Database INSERT on sessions - Execution time: 105ms - Rows affected: 17 - RequestID: d20d90sq39r +2025-06-18T15:04:20.181Z [DEBUG] payment-service - Database INSERT on users - Execution time: 241ms - Rows affected: 73 - RequestID: k9kpzkiym2j +2025-06-18T15:04:20.281Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1236ms - IP: 192.168.32.38 - User: user_1057 - RequestID: ruegkrqkxjh +2025-06-18T15:04:20.381Z [TRACE] auth-service - Database INSERT on payments - Execution time: 105ms - Rows affected: 93 - RequestID: dqswzkkw2e +2025-06-18T15:04:20.481Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 541ms - RequestID: 32dmdulxwax +2025-06-18T15:04:20.581Z [INFO] order-service - Operation: payment_processed - Processing time: 170ms - RequestID: 91rxyxm141u +2025-06-18T15:04:20.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.33.76 - RequestID: cfdarlidsyn +2025-06-18T15:04:20.781Z [INFO] order-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.79.141 - RequestID: 9s82sdg6ees +2025-06-18T15:04:20.881Z [INFO] user-service - Database UPDATE on sessions - Execution time: 301ms - Rows affected: 5 - RequestID: fotg7xdfsfu +2025-06-18T15:04:20.981Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 503 - Response time: 952ms - IP: 192.168.194.41 - User: user_1001 - RequestID: y2b15cr4bgm +2025-06-18T15:04:21.081Z [INFO] user-service - POST /api/v1/users - Status: 200 - Response time: 1792ms - IP: 192.168.229.123 - User: user_1058 - RequestID: dbqp94sny7q +2025-06-18T15:04:21.181Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 330ms - IP: 192.168.242.165 - User: user_1080 - RequestID: qk1nr4to4vr +2025-06-18T15:04:21.281Z [TRACE] notification-service - Operation: email_sent - Processing time: 790ms - RequestID: 2xtc2xc25gg +2025-06-18T15:04:21.381Z [TRACE] user-service - DELETE /api/v1/users - Status: 201 - Response time: 639ms - IP: 192.168.147.171 - User: user_1068 - RequestID: el6ns70jul4 +2025-06-18T15:04:21.481Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 675ms - IP: 192.168.14.77 - User: user_1080 - RequestID: ft5n3e98ost +2025-06-18T15:04:21.581Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 400 - Response time: 591ms - IP: 192.168.64.33 - User: user_1094 - RequestID: kb4ln9ecq2c +2025-06-18T15:04:21.681Z [INFO] payment-service - Auth event: login_success - User: user_1031 - IP: 192.168.174.114 - RequestID: 3aomz5zjtif +2025-06-18T15:04:21.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.167.32 - RequestID: u24u3m8az7g +2025-06-18T15:04:21.881Z [INFO] notification-service - Database UPDATE on users - Execution time: 400ms - Rows affected: 78 - RequestID: gfbojibeyan +2025-06-18T15:04:21.981Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 599ms - IP: 192.168.53.133 - User: user_1014 - RequestID: jg3sdk3mdls +2025-06-18T15:04:22.081Z [TRACE] auth-service - DELETE /api/v1/payments - Status: 403 - Response time: 1072ms - IP: 192.168.46.63 - User: user_1014 - RequestID: 9gn2qfeb5u +2025-06-18T15:04:22.181Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 224ms - Rows affected: 87 - RequestID: gmjic66osg +2025-06-18T15:04:22.281Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 401 - Response time: 838ms - IP: 192.168.138.123 - User: user_1069 - RequestID: 8wxylg4wcz3 +2025-06-18T15:04:22.381Z [INFO] payment-service - PUT /api/v1/inventory - Status: 201 - Response time: 971ms - IP: 192.168.232.72 - User: user_1090 - RequestID: 8csv57te0an +2025-06-18T15:04:22.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 240ms - RequestID: 8srrf0xek8w +2025-06-18T15:04:22.581Z [TRACE] user-service - Operation: cache_miss - Processing time: 694ms - RequestID: b94axfchltd +2025-06-18T15:04:22.681Z [DEBUG] order-service - Auth event: password_change - User: user_1044 - IP: 192.168.235.117 - RequestID: ff3vxf5aw1p +2025-06-18T15:04:22.781Z [INFO] payment-service - GET /api/v1/users - Status: 500 - Response time: 119ms - IP: 192.168.44.5 - User: user_1090 - RequestID: 6jn5c2swi28 +2025-06-18T15:04:22.881Z [INFO] payment-service - Database SELECT on products - Execution time: 157ms - Rows affected: 20 - RequestID: b5hf2zjfxwb +2025-06-18T15:04:22.981Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 458ms - Rows affected: 81 - RequestID: 4j6amegcjn2 +2025-06-18T15:04:23.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1003 - IP: 192.168.36.218 - RequestID: rq8rcjzioxb +2025-06-18T15:04:23.181Z [TRACE] order-service - Database INSERT on sessions - Execution time: 172ms - Rows affected: 26 - RequestID: 1spvvri41a7 +2025-06-18T15:04:23.281Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 401 - Response time: 85ms - IP: 192.168.138.123 - User: user_1090 - RequestID: dlb89lhnhk +2025-06-18T15:04:23.381Z [TRACE] inventory-service - Database DELETE on products - Execution time: 2ms - Rows affected: 88 - RequestID: uvg8kycluvl +2025-06-18T15:04:23.481Z [INFO] inventory-service - Auth event: logout - User: user_1031 - IP: 192.168.144.38 - RequestID: uytamrvsrcq +2025-06-18T15:04:23.581Z [INFO] order-service - PATCH /api/v1/orders - Status: 503 - Response time: 526ms - IP: 192.168.32.38 - User: user_1021 - RequestID: pbpdw23nbrs +2025-06-18T15:04:23.681Z [INFO] user-service - Operation: cache_hit - Processing time: 738ms - RequestID: zd97o6ta7g +2025-06-18T15:04:23.781Z [INFO] user-service - Auth event: logout - User: user_1074 - IP: 192.168.235.117 - RequestID: 972yzyh3lmm +2025-06-18T15:04:23.881Z [INFO] payment-service - Operation: order_created - Processing time: 999ms - RequestID: 8184rppygv4 +2025-06-18T15:04:23.981Z [TRACE] payment-service - Auth event: login_failed - User: user_1094 - IP: 192.168.158.144 - RequestID: vdoicdlery +2025-06-18T15:04:24.081Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 309ms - RequestID: 26yl2kjfk29 +2025-06-18T15:04:24.181Z [TRACE] payment-service - Auth event: password_change - User: user_1052 - IP: 192.168.170.215 - RequestID: 8limt6qukdk +2025-06-18T15:04:24.281Z [TRACE] auth-service - Auth event: logout - User: user_1026 - IP: 192.168.187.199 - RequestID: 1sz8xhmpvqi +2025-06-18T15:04:24.381Z [INFO] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 1498ms - IP: 192.168.11.60 - User: user_1036 - RequestID: rvhx2b5mu2a +2025-06-18T15:04:24.481Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 957ms - RequestID: khl51y4gcd8 +2025-06-18T15:04:24.581Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 242ms - Rows affected: 78 - RequestID: 4fzlkectb26 +2025-06-18T15:04:24.681Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 200 - Response time: 1501ms - IP: 192.168.242.165 - User: user_1056 - RequestID: wdkmbcn60ce +2025-06-18T15:04:24.781Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 900ms - IP: 192.168.181.225 - User: user_1090 - RequestID: er6nqmdbve +2025-06-18T15:04:24.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1027 - IP: 192.168.138.123 - RequestID: zt14eo61hl8 +2025-06-18T15:04:24.981Z [TRACE] auth-service - Operation: cache_miss - Processing time: 149ms - RequestID: f6khfwohv3l +2025-06-18T15:04:25.081Z [INFO] notification-service - Operation: payment_processed - Processing time: 87ms - RequestID: xgpwz8d8e6i +2025-06-18T15:04:25.181Z [INFO] order-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.97.87 - RequestID: 17y7ccr5eo3 +2025-06-18T15:04:25.281Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 234ms - RequestID: 62o4taqi1m2 +2025-06-18T15:04:25.381Z [TRACE] payment-service - Database DELETE on products - Execution time: 484ms - Rows affected: 96 - RequestID: pz651cbhl29 +2025-06-18T15:04:25.481Z [TRACE] auth-service - POST /api/v1/payments - Status: 201 - Response time: 185ms - IP: 192.168.181.225 - User: user_1039 - RequestID: jmno6t6qojp +2025-06-18T15:04:25.581Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 400 - Response time: 1120ms - IP: 192.168.235.117 - User: user_1064 - RequestID: wsgtn51tqtq +2025-06-18T15:04:25.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.167.32 - RequestID: w1lq0tmu5da +2025-06-18T15:04:25.781Z [TRACE] order-service - Operation: inventory_updated - Processing time: 372ms - RequestID: vosqj1ty72o +2025-06-18T15:04:25.881Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1663ms - IP: 192.168.170.215 - User: user_1028 - RequestID: 0bxn283uzx3 +2025-06-18T15:04:25.981Z [INFO] order-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1804ms - IP: 192.168.79.141 - User: user_1081 - RequestID: dtcgs1hqlqs +2025-06-18T15:04:26.081Z [TRACE] user-service - Auth event: password_change - User: user_1064 - IP: 192.168.138.123 - RequestID: 9m972i44ncu +2025-06-18T15:04:26.181Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 401 - Response time: 184ms - IP: 192.168.174.114 - User: user_1061 - RequestID: s1jbkdmasg +2025-06-18T15:04:26.281Z [TRACE] inventory-service - Auth event: login_success - User: user_1030 - IP: 192.168.211.72 - RequestID: kz6v8hxvrfe +2025-06-18T15:04:26.381Z [DEBUG] user-service - Auth event: logout - User: user_1084 - IP: 192.168.31.117 - RequestID: 9r6ii118zr +2025-06-18T15:04:26.481Z [TRACE] user-service - GET /api/v1/auth/login - Status: 403 - Response time: 1144ms - IP: 192.168.100.240 - User: user_1034 - RequestID: jh3f1acxmy +2025-06-18T15:04:26.581Z [DEBUG] order-service - Operation: payment_processed - Processing time: 719ms - RequestID: wk35iiu6bzr +2025-06-18T15:04:26.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 400ms - RequestID: 6ee3atwulek +2025-06-18T15:04:26.781Z [INFO] auth-service - Auth event: login_success - User: user_1025 - IP: 192.168.227.233 - RequestID: u23oj5wm72 +2025-06-18T15:04:26.881Z [INFO] order-service - POST /api/v1/auth/login - Status: 404 - Response time: 884ms - IP: 192.168.33.76 - User: user_1077 - RequestID: 9429j5fgckq +2025-06-18T15:04:26.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1013 - IP: 192.168.11.60 - RequestID: ei971jbn4lv +2025-06-18T15:04:27.081Z [INFO] order-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.187.199 - RequestID: luxewyqjo6p +2025-06-18T15:04:27.181Z [DEBUG] inventory-service - Operation: order_created - Processing time: 939ms - RequestID: cvdrjalhkx7 +2025-06-18T15:04:27.281Z [DEBUG] order-service - Operation: payment_processed - Processing time: 144ms - RequestID: wr1qgj0ola8 +2025-06-18T15:04:27.381Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.229.123 - RequestID: gw6x04d65s +2025-06-18T15:04:27.481Z [INFO] inventory-service - Database UPDATE on products - Execution time: 27ms - Rows affected: 47 - RequestID: 7fj0ftn4bmk +2025-06-18T15:04:27.581Z [TRACE] notification-service - Operation: cache_hit - Processing time: 699ms - RequestID: g0jw97x6ap6 +2025-06-18T15:04:27.681Z [TRACE] order-service - Operation: payment_processed - Processing time: 672ms - RequestID: l01tox0lqa +2025-06-18T15:04:27.781Z [TRACE] payment-service - Auth event: logout - User: user_1049 - IP: 192.168.159.94 - RequestID: 4289pckzwvo +2025-06-18T15:04:27.881Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 158ms - Rows affected: 58 - RequestID: qpj8g2rnd8d +2025-06-18T15:04:27.981Z [TRACE] inventory-service - Auth event: logout - User: user_1086 - IP: 192.168.158.144 - RequestID: i9hz95lu3fq +2025-06-18T15:04:28.081Z [TRACE] auth-service - Database SELECT on payments - Execution time: 406ms - Rows affected: 26 - RequestID: s4au4mcfw1 +2025-06-18T15:04:28.181Z [DEBUG] payment-service - Auth event: password_change - User: user_1046 - IP: 192.168.159.94 - RequestID: vt6t5m33s +2025-06-18T15:04:28.281Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 354ms - Rows affected: 82 - RequestID: 5wyfj23095 +2025-06-18T15:04:28.381Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 591ms - IP: 192.168.11.60 - User: user_1021 - RequestID: fkg8x6pm7si +2025-06-18T15:04:28.481Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1775ms - IP: 192.168.31.117 - User: user_1043 - RequestID: 18dz1m3b7mb +2025-06-18T15:04:28.581Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 403 - Response time: 639ms - IP: 192.168.141.100 - User: user_1097 - RequestID: 83o25p97qg4 +2025-06-18T15:04:28.681Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 404 - Response time: 683ms - IP: 192.168.68.128 - User: user_1099 - RequestID: 9uzm5uxybl +2025-06-18T15:04:28.781Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 201 - Response time: 735ms - IP: 192.168.11.60 - User: user_1053 - RequestID: nkbfpkncgt8 +2025-06-18T15:04:28.881Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1149ms - IP: 192.168.138.123 - User: user_1001 - RequestID: m9jj9sw31lo +2025-06-18T15:04:28.981Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 69ms - Rows affected: 60 - RequestID: bte0bhejdj9 +2025-06-18T15:04:29.081Z [INFO] user-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.104.37 - RequestID: ak7vfgi6zoq +2025-06-18T15:04:29.181Z [INFO] order-service - Auth event: password_change - User: user_1078 - IP: 192.168.79.143 - RequestID: jw8lzxr7j4s +2025-06-18T15:04:29.281Z [INFO] payment-service - DELETE /api/v1/orders - Status: 200 - Response time: 1829ms - IP: 192.168.53.133 - User: user_1084 - RequestID: rl81r3lo3j +2025-06-18T15:04:29.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1018 - IP: 192.168.196.226 - RequestID: wcdyezua3mn +2025-06-18T15:04:29.481Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 92ms - Rows affected: 40 - RequestID: 9utf8i38bdo +2025-06-18T15:04:29.581Z [TRACE] auth-service - Database UPDATE on users - Execution time: 492ms - Rows affected: 77 - RequestID: incjzai2h3s +2025-06-18T15:04:29.681Z [TRACE] notification-service - Database INSERT on orders - Execution time: 120ms - Rows affected: 35 - RequestID: sdlbhd92ya +2025-06-18T15:04:29.781Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 400 - Response time: 389ms - IP: 192.168.104.37 - User: user_1058 - RequestID: u5uwycr8xwh +2025-06-18T15:04:29.881Z [INFO] auth-service - POST /api/v1/auth/login - Status: 400 - Response time: 1573ms - IP: 192.168.159.94 - User: user_1090 - RequestID: vyt1i1qg6pa +2025-06-18T15:04:29.981Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1672ms - IP: 192.168.64.33 - User: user_1033 - RequestID: aradjoqatow +2025-06-18T15:04:30.081Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 503 - Response time: 1586ms - IP: 192.168.28.146 - User: user_1065 - RequestID: 73uv82nnf2b +2025-06-18T15:04:30.181Z [INFO] auth-service - Operation: email_sent - Processing time: 959ms - RequestID: 7dyh1uou1rf +2025-06-18T15:04:30.281Z [TRACE] auth-service - Auth event: login_success - User: user_1010 - IP: 192.168.187.199 - RequestID: u505nop33t +2025-06-18T15:04:30.381Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 393ms - Rows affected: 37 - RequestID: 5zrifrp5hjy +2025-06-18T15:04:30.481Z [INFO] order-service - Auth event: login_success - User: user_1029 - IP: 192.168.79.116 - RequestID: qq3hc965e8 +2025-06-18T15:04:30.581Z [TRACE] payment-service - Auth event: login_failed - User: user_1080 - IP: 192.168.167.32 - RequestID: e1hv2ezjb3d +2025-06-18T15:04:30.681Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 404ms - Rows affected: 22 - RequestID: 5fvokl21o8a +2025-06-18T15:04:30.781Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 350ms - RequestID: uswuqg07b8k +2025-06-18T15:04:30.881Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 339ms - RequestID: 9crfkig5va +2025-06-18T15:04:30.981Z [INFO] order-service - Database SELECT on sessions - Execution time: 98ms - Rows affected: 53 - RequestID: 43r74yrq6fr +2025-06-18T15:04:31.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1039 - IP: 192.168.167.32 - RequestID: f6borpronxo +2025-06-18T15:04:31.181Z [INFO] order-service - POST /api/v1/orders - Status: 404 - Response time: 1240ms - IP: 192.168.144.38 - User: user_1035 - RequestID: e72qnek0a3 +2025-06-18T15:04:31.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 103ms - RequestID: z0a4xn55zbl +2025-06-18T15:04:31.381Z [INFO] user-service - Auth event: login_failed - User: user_1088 - IP: 192.168.64.33 - RequestID: 6cx4aro2zdl +2025-06-18T15:04:31.481Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 509ms - RequestID: qprinxk5zmc +2025-06-18T15:04:31.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 498ms - RequestID: d0wf9pykh8b +2025-06-18T15:04:31.681Z [INFO] notification-service - Auth event: login_success - User: user_1014 - IP: 192.168.79.143 - RequestID: ia0ghc2hfr +2025-06-18T15:04:31.781Z [INFO] notification-service - POST /api/v1/users - Status: 200 - Response time: 1166ms - IP: 192.168.227.77 - User: user_1050 - RequestID: zv4uiqppyje +2025-06-18T15:04:31.881Z [TRACE] payment-service - Auth event: logout - User: user_1078 - IP: 192.168.227.233 - RequestID: nohbido9b +2025-06-18T15:04:31.981Z [TRACE] order-service - DELETE /api/v1/orders - Status: 403 - Response time: 435ms - IP: 192.168.104.37 - User: user_1089 - RequestID: qy0bsxxecrb +2025-06-18T15:04:32.081Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1422ms - IP: 192.168.227.233 - User: user_1080 - RequestID: jp0q3jhz32 +2025-06-18T15:04:32.181Z [INFO] order-service - Database INSERT on products - Execution time: 432ms - Rows affected: 14 - RequestID: g7y5jtyek54 +2025-06-18T15:04:32.281Z [DEBUG] notification-service - PUT /api/v1/users - Status: 201 - Response time: 1690ms - IP: 192.168.53.133 - User: user_1050 - RequestID: xawfrkut7w +2025-06-18T15:04:32.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1026 - IP: 192.168.44.5 - RequestID: ehxh5g8ragb +2025-06-18T15:04:32.481Z [TRACE] notification-service - GET /api/v1/auth/login - Status: 201 - Response time: 540ms - IP: 192.168.13.72 - User: user_1012 - RequestID: 97r0lytgvo8 +2025-06-18T15:04:32.581Z [INFO] user-service - Auth event: password_change - User: user_1078 - IP: 192.168.46.63 - RequestID: dmk8jqx6hn +2025-06-18T15:04:32.681Z [DEBUG] user-service - Operation: payment_processed - Processing time: 916ms - RequestID: 8hx6h6h52tu +2025-06-18T15:04:32.781Z [DEBUG] user-service - Database DELETE on products - Execution time: 192ms - Rows affected: 51 - RequestID: 232533xakz5 +2025-06-18T15:04:32.881Z [TRACE] auth-service - Auth event: password_change - User: user_1077 - IP: 192.168.211.72 - RequestID: y2a8qq07pah +2025-06-18T15:04:32.981Z [DEBUG] user-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.1.152 - RequestID: tlw88uv1xdn +2025-06-18T15:04:33.081Z [TRACE] payment-service - Auth event: login_success - User: user_1071 - IP: 192.168.141.100 - RequestID: x7iarkxhyq +2025-06-18T15:04:33.181Z [DEBUG] order-service - Auth event: login_failed - User: user_1001 - IP: 192.168.158.144 - RequestID: errju4kfpf4 +2025-06-18T15:04:33.281Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 148ms - Rows affected: 75 - RequestID: hrxx4q96v6 +2025-06-18T15:04:33.381Z [TRACE] user-service - Database DELETE on sessions - Execution time: 483ms - Rows affected: 80 - RequestID: q0dk6km38pj +2025-06-18T15:04:33.481Z [TRACE] payment-service - Database INSERT on users - Execution time: 428ms - Rows affected: 14 - RequestID: e5c68qkvwl9 +2025-06-18T15:04:33.581Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 78ms - IP: 192.168.79.141 - User: user_1072 - RequestID: hxz0m3n463c +2025-06-18T15:04:33.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.79.143 - RequestID: cqw9n0py1ko +2025-06-18T15:04:33.781Z [DEBUG] payment-service - GET /api/v1/users - Status: 403 - Response time: 268ms - IP: 192.168.79.141 - User: user_1044 - RequestID: 06aqtxm9r5n5 +2025-06-18T15:04:33.881Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 257ms - Rows affected: 10 - RequestID: a6c6p072nf +2025-06-18T15:04:33.981Z [TRACE] notification-service - Database DELETE on payments - Execution time: 345ms - Rows affected: 41 - RequestID: 720fe5lhl6w +2025-06-18T15:04:34.081Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 503 - Response time: 1455ms - IP: 192.168.85.229 - User: user_1063 - RequestID: efxpv3t67ke +2025-06-18T15:04:34.181Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 400 - Response time: 545ms - IP: 192.168.31.117 - User: user_1055 - RequestID: 5ssjjoj0a5 +2025-06-18T15:04:34.281Z [TRACE] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 22ms - IP: 192.168.227.77 - User: user_1049 - RequestID: 6roazr8smys +2025-06-18T15:04:34.381Z [TRACE] user-service - Operation: cache_miss - Processing time: 1047ms - RequestID: z1xnnkm5gv +2025-06-18T15:04:34.481Z [INFO] notification-service - DELETE /api/v1/payments - Status: 401 - Response time: 1001ms - IP: 192.168.235.117 - User: user_1052 - RequestID: dnmzxzrn1h7 +2025-06-18T15:04:34.581Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1224ms - IP: 192.168.53.133 - User: user_1052 - RequestID: vub8ykbeb6r +2025-06-18T15:04:34.681Z [INFO] auth-service - Auth event: password_change - User: user_1056 - IP: 192.168.81.206 - RequestID: fqs3rnhom1l +2025-06-18T15:04:34.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 789ms - RequestID: i5zea5kv12n +2025-06-18T15:04:34.881Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 69ms - Rows affected: 0 - RequestID: 4z3aw2thrzc +2025-06-18T15:04:34.981Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 200 - Response time: 1720ms - IP: 192.168.36.218 - User: user_1016 - RequestID: gm1s245gslh +2025-06-18T15:04:35.081Z [TRACE] auth-service - PUT /api/v1/payments - Status: 503 - Response time: 1431ms - IP: 192.168.227.233 - User: user_1091 - RequestID: 0we9c4bjwibe +2025-06-18T15:04:35.181Z [TRACE] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 1626ms - IP: 192.168.79.141 - User: user_1081 - RequestID: 6nv43tauuw5 +2025-06-18T15:04:35.281Z [DEBUG] notification-service - POST /api/v1/users - Status: 201 - Response time: 1132ms - IP: 192.168.79.143 - User: user_1023 - RequestID: wdov0ui17fk +2025-06-18T15:04:35.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 353ms - RequestID: ui1t37mdqo +2025-06-18T15:04:35.481Z [INFO] auth-service - GET /api/v1/auth/login - Status: 401 - Response time: 1643ms - IP: 192.168.232.72 - User: user_1091 - RequestID: hf52czs9vii +2025-06-18T15:04:35.581Z [INFO] payment-service - POST /api/v1/auth/login - Status: 200 - Response time: 173ms - IP: 192.168.187.199 - User: user_1082 - RequestID: rf9to9e204 +2025-06-18T15:04:35.681Z [TRACE] notification-service - Database UPDATE on products - Execution time: 35ms - Rows affected: 21 - RequestID: rp7p0lkp8ej +2025-06-18T15:04:35.781Z [INFO] order-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.227.77 - RequestID: sita6x9maq +2025-06-18T15:04:35.881Z [INFO] payment-service - Database INSERT on products - Execution time: 10ms - Rows affected: 83 - RequestID: d3kwy3e1pa7 +2025-06-18T15:04:35.981Z [INFO] user-service - Operation: email_sent - Processing time: 577ms - RequestID: r4s76rmem7e +2025-06-18T15:04:36.081Z [DEBUG] notification-service - Auth event: password_change - User: user_1018 - IP: 192.168.32.38 - RequestID: vw95cro0o7e +2025-06-18T15:04:36.181Z [INFO] notification-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.141.100 - RequestID: khogzba72 +2025-06-18T15:04:36.281Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 194ms - Rows affected: 43 - RequestID: y0zk7h65znr +2025-06-18T15:04:36.381Z [INFO] order-service - PATCH /api/v1/orders - Status: 201 - Response time: 238ms - IP: 192.168.144.38 - User: user_1097 - RequestID: ygyz8rce96f +2025-06-18T15:04:36.481Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 401 - Response time: 1942ms - IP: 192.168.196.226 - User: user_1016 - RequestID: ge8o0c71qbb +2025-06-18T15:04:36.581Z [DEBUG] payment-service - Auth event: login_failed - User: user_1024 - IP: 192.168.141.100 - RequestID: k4vcm4gogap +2025-06-18T15:04:36.681Z [TRACE] user-service - Operation: email_sent - Processing time: 693ms - RequestID: kudvp9a3dhm +2025-06-18T15:04:36.781Z [DEBUG] order-service - Operation: cache_miss - Processing time: 997ms - RequestID: ayoces66wdu +2025-06-18T15:04:36.881Z [INFO] order-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.194.41 - RequestID: 7xcy7wkwiju +2025-06-18T15:04:36.981Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.36.218 - RequestID: 5pekz6s09sj +2025-06-18T15:04:37.081Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 201 - Response time: 1823ms - IP: 192.168.85.229 - User: user_1045 - RequestID: yzahkq751rm +2025-06-18T15:04:37.181Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 83ms - Rows affected: 51 - RequestID: 7xw51yw32ug +2025-06-18T15:04:37.281Z [INFO] user-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.158.144 - RequestID: cbfv0hb1uln +2025-06-18T15:04:37.381Z [TRACE] auth-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.194.41 - RequestID: t1kndy6r1h +2025-06-18T15:04:37.481Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 213ms - Rows affected: 12 - RequestID: h7r5861g8ig +2025-06-18T15:04:37.581Z [TRACE] order-service - Operation: notification_queued - Processing time: 1020ms - RequestID: b5xgk7qavhh +2025-06-18T15:04:37.681Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 399ms - Rows affected: 47 - RequestID: x1hti4xiubh +2025-06-18T15:04:37.781Z [INFO] inventory-service - Operation: email_sent - Processing time: 967ms - RequestID: vfwsf6lh8yq +2025-06-18T15:04:37.881Z [INFO] auth-service - Database DELETE on payments - Execution time: 286ms - Rows affected: 10 - RequestID: pzefluj1oys +2025-06-18T15:04:37.981Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 440ms - Rows affected: 20 - RequestID: bkvtmz4xz7h +2025-06-18T15:04:38.081Z [INFO] payment-service - Database DELETE on sessions - Execution time: 183ms - Rows affected: 63 - RequestID: aulmzzpq0z9 +2025-06-18T15:04:38.181Z [TRACE] auth-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.194.41 - RequestID: duj8nf3nuss +2025-06-18T15:04:38.281Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 993ms - RequestID: 0b0yl5ju97g9 +2025-06-18T15:04:38.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.68.128 - RequestID: zixvpn76zwb +2025-06-18T15:04:38.481Z [INFO] user-service - Operation: payment_processed - Processing time: 462ms - RequestID: b2pvgasy6oc +2025-06-18T15:04:38.581Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 13ms - IP: 192.168.229.123 - User: user_1051 - RequestID: byxfg7h5cd +2025-06-18T15:04:38.681Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 55ms - RequestID: uxsx9v1p7ra +2025-06-18T15:04:38.781Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 429ms - RequestID: okn3zfqc7z8 +2025-06-18T15:04:38.881Z [INFO] auth-service - Auth event: logout - User: user_1082 - IP: 192.168.158.144 - RequestID: c4x3q84te2t +2025-06-18T15:04:38.981Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 883ms - RequestID: vo0z7jpfxpo +2025-06-18T15:04:39.081Z [INFO] payment-service - Auth event: login_success - User: user_1064 - IP: 192.168.133.7 - RequestID: zlx1rhmozjs +2025-06-18T15:04:39.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1009 - IP: 192.168.30.79 - RequestID: ko7p0cy3t3b +2025-06-18T15:04:39.281Z [INFO] inventory-service - Auth event: logout - User: user_1034 - IP: 192.168.187.199 - RequestID: svug11kmw3p +2025-06-18T15:04:39.381Z [DEBUG] notification-service - Database SELECT on users - Execution time: 291ms - Rows affected: 55 - RequestID: 8tbulgg9f3b +2025-06-18T15:04:39.481Z [INFO] auth-service - Auth event: login_success - User: user_1069 - IP: 192.168.227.233 - RequestID: aedbvpvempe +2025-06-18T15:04:39.581Z [DEBUG] order-service - Operation: cache_hit - Processing time: 957ms - RequestID: 9o03650wwvr +2025-06-18T15:04:39.681Z [DEBUG] auth-service - Database SELECT on products - Execution time: 500ms - Rows affected: 90 - RequestID: 3e8nreuo39i +2025-06-18T15:04:39.781Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 503 - Response time: 2006ms - IP: 192.168.81.206 - User: user_1078 - RequestID: lqmd76jmk6 +2025-06-18T15:04:39.881Z [INFO] user-service - Operation: payment_processed - Processing time: 331ms - RequestID: 7wnlaoj38ma +2025-06-18T15:04:39.981Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1838ms - IP: 192.168.14.77 - User: user_1013 - RequestID: qicuo4lpy9i +2025-06-18T15:04:40.081Z [TRACE] notification-service - Operation: order_created - Processing time: 597ms - RequestID: 40gsf9l2yn7 +2025-06-18T15:04:40.181Z [TRACE] order-service - Database DELETE on products - Execution time: 171ms - Rows affected: 94 - RequestID: l8akrtjld9i +2025-06-18T15:04:40.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.174.114 - RequestID: bym7mhqcafe +2025-06-18T15:04:40.381Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 446ms - Rows affected: 84 - RequestID: kf4j7xkmpud +2025-06-18T15:04:40.481Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 200 - Response time: 833ms - IP: 192.168.133.7 - User: user_1029 - RequestID: pwigu756llc +2025-06-18T15:04:40.581Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 932ms - IP: 192.168.138.123 - User: user_1001 - RequestID: 7zuqar3lk7t +2025-06-18T15:04:40.681Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 327ms - Rows affected: 55 - RequestID: qmvm0eawxy +2025-06-18T15:04:40.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 1011ms - RequestID: 749gtjy5dhe +2025-06-18T15:04:40.881Z [TRACE] user-service - Operation: cache_hit - Processing time: 533ms - RequestID: e0bzcyephuw +2025-06-18T15:04:40.981Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1913ms - IP: 192.168.85.229 - User: user_1043 - RequestID: rapsgff8mum +2025-06-18T15:04:41.081Z [INFO] payment-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.235.117 - RequestID: k774qhjt68 +2025-06-18T15:04:41.181Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 351ms - Rows affected: 25 - RequestID: yva34qnoy3m +2025-06-18T15:04:41.281Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.189.103 - RequestID: uvqscch38w +2025-06-18T15:04:41.381Z [DEBUG] user-service - Operation: order_created - Processing time: 216ms - RequestID: wao0ngwrtd +2025-06-18T15:04:41.481Z [INFO] order-service - Database DELETE on sessions - Execution time: 456ms - Rows affected: 50 - RequestID: wrwjxg5jt6c +2025-06-18T15:04:41.581Z [INFO] user-service - Database UPDATE on payments - Execution time: 350ms - Rows affected: 29 - RequestID: gqpau8hrksc +2025-06-18T15:04:41.681Z [INFO] order-service - Auth event: login_failed - User: user_1002 - IP: 192.168.44.5 - RequestID: 8616c81bajq +2025-06-18T15:04:41.781Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 81ms - RequestID: s75ai4hjtl +2025-06-18T15:04:41.881Z [DEBUG] user-service - GET /api/v1/inventory - Status: 502 - Response time: 1536ms - IP: 192.168.33.76 - User: user_1074 - RequestID: xdqs0j3z0p +2025-06-18T15:04:41.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.36.218 - RequestID: co3wuqse3i +2025-06-18T15:04:42.081Z [DEBUG] user-service - Database INSERT on payments - Execution time: 312ms - Rows affected: 56 - RequestID: 23twoqan0ns +2025-06-18T15:04:42.181Z [TRACE] user-service - Operation: webhook_sent - Processing time: 112ms - RequestID: 93quuu3mswd +2025-06-18T15:04:42.281Z [TRACE] auth-service - Database UPDATE on users - Execution time: 471ms - Rows affected: 88 - RequestID: w8xxlqwx0i +2025-06-18T15:04:42.381Z [DEBUG] payment-service - Auth event: login_success - User: user_1055 - IP: 192.168.242.165 - RequestID: d63ycb68t9s +2025-06-18T15:04:42.481Z [INFO] notification-service - Operation: order_created - Processing time: 999ms - RequestID: tk1v7kokf5g +2025-06-18T15:04:42.581Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 200 - Response time: 1389ms - IP: 192.168.85.229 - User: user_1024 - RequestID: 80welby2kkw +2025-06-18T15:04:42.681Z [TRACE] payment-service - PATCH /api/v1/users - Status: 201 - Response time: 724ms - IP: 192.168.104.37 - User: user_1033 - RequestID: iqdhdna77j9 +2025-06-18T15:04:42.781Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 253ms - Rows affected: 97 - RequestID: 2zi59oyakmi +2025-06-18T15:04:42.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 509ms - RequestID: tclq46whixl +2025-06-18T15:04:42.981Z [TRACE] payment-service - Auth event: login_failed - User: user_1028 - IP: 192.168.211.72 - RequestID: kky845o6wu +2025-06-18T15:04:43.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 684ms - RequestID: m2c6td7aw2h +2025-06-18T15:04:43.181Z [INFO] payment-service - Auth event: login_failed - User: user_1040 - IP: 192.168.79.141 - RequestID: 4ml9t0fixzk +2025-06-18T15:04:43.281Z [INFO] payment-service - POST /api/v1/orders - Status: 201 - Response time: 1966ms - IP: 192.168.53.133 - User: user_1058 - RequestID: 4i0rhzyu75a +2025-06-18T15:04:43.381Z [DEBUG] user-service - Auth event: password_change - User: user_1060 - IP: 192.168.235.117 - RequestID: 2pfl9ngqqnr +2025-06-18T15:04:43.481Z [DEBUG] notification-service - Auth event: login_failed - User: user_1062 - IP: 192.168.14.77 - RequestID: 9sk6snvgzoq +2025-06-18T15:04:43.581Z [TRACE] inventory-service - Database SELECT on users - Execution time: 20ms - Rows affected: 68 - RequestID: moqiea7rp5o +2025-06-18T15:04:43.681Z [DEBUG] user-service - Operation: cache_miss - Processing time: 961ms - RequestID: s6ks87sqsvt +2025-06-18T15:04:43.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.68.158 - RequestID: spo35asnxic +2025-06-18T15:04:43.881Z [TRACE] user-service - DELETE /api/v1/payments - Status: 404 - Response time: 1559ms - IP: 192.168.68.158 - User: user_1072 - RequestID: 4curtqz9en +2025-06-18T15:04:43.981Z [DEBUG] order-service - Database SELECT on products - Execution time: 345ms - Rows affected: 51 - RequestID: nyoc4vw700s +2025-06-18T15:04:44.081Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 760ms - RequestID: 10d2ctj3mgp +2025-06-18T15:04:44.181Z [TRACE] payment-service - Operation: email_sent - Processing time: 389ms - RequestID: y6a9do94kda +2025-06-18T15:04:44.281Z [DEBUG] payment-service - Database DELETE on users - Execution time: 35ms - Rows affected: 76 - RequestID: 148d60c3nnn +2025-06-18T15:04:44.381Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 187ms - RequestID: t4aldwr8lco +2025-06-18T15:04:44.481Z [DEBUG] auth-service - Auth event: login_failed - User: user_1027 - IP: 192.168.33.76 - RequestID: v0bat92h7nd +2025-06-18T15:04:44.581Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 500 - Response time: 1272ms - IP: 192.168.170.215 - User: user_1081 - RequestID: 0ad9jqdrtu38 +2025-06-18T15:04:44.681Z [INFO] payment-service - Auth event: logout - User: user_1059 - IP: 192.168.189.103 - RequestID: f6xz50irgqt +2025-06-18T15:04:44.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 819ms - RequestID: za1m1lp066q +2025-06-18T15:04:44.881Z [INFO] user-service - Operation: order_created - Processing time: 836ms - RequestID: 9zzu3qku1xt +2025-06-18T15:04:44.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1083 - IP: 192.168.181.225 - RequestID: 72ptbkjf3rv +2025-06-18T15:04:45.081Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 400 - Response time: 819ms - IP: 192.168.32.38 - User: user_1081 - RequestID: yg3z94i2z8 +2025-06-18T15:04:45.181Z [TRACE] notification-service - Operation: cache_hit - Processing time: 202ms - RequestID: 8r6q50w5lj9 +2025-06-18T15:04:45.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.138.123 - RequestID: 60pql22mde3 +2025-06-18T15:04:45.381Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 340ms - Rows affected: 62 - RequestID: cw428tgiihn +2025-06-18T15:04:45.481Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 463ms - Rows affected: 95 - RequestID: 1tf9xsuttct +2025-06-18T15:04:45.581Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 477ms - Rows affected: 7 - RequestID: 6wo7omuktec +2025-06-18T15:04:45.681Z [INFO] payment-service - Database UPDATE on orders - Execution time: 381ms - Rows affected: 98 - RequestID: g7pk8tfbdps +2025-06-18T15:04:45.781Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 32ms - Rows affected: 70 - RequestID: tht2bgymga +2025-06-18T15:04:45.881Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.79.116 - RequestID: 2qs842a3nha +2025-06-18T15:04:45.981Z [INFO] order-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.167.32 - RequestID: b0jl7x5cg47 +2025-06-18T15:04:46.081Z [DEBUG] user-service - Operation: notification_queued - Processing time: 82ms - RequestID: gbdhva3ivh9 +2025-06-18T15:04:46.181Z [TRACE] inventory-service - Database SELECT on users - Execution time: 101ms - Rows affected: 56 - RequestID: c378lwx1lmq +2025-06-18T15:04:46.281Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 685ms - IP: 192.168.227.233 - User: user_1009 - RequestID: 4xt4wg9eglp +2025-06-18T15:04:46.381Z [INFO] payment-service - Operation: inventory_updated - Processing time: 391ms - RequestID: afbupkyzxsm +2025-06-18T15:04:46.481Z [INFO] payment-service - Operation: payment_processed - Processing time: 190ms - RequestID: ma03o08dpt +2025-06-18T15:04:46.581Z [INFO] order-service - Auth event: logout - User: user_1025 - IP: 192.168.11.60 - RequestID: 73x1m4jte2a +2025-06-18T15:04:46.681Z [INFO] notification-service - Operation: cache_hit - Processing time: 455ms - RequestID: f2idzrm98mm +2025-06-18T15:04:46.781Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 21ms - Rows affected: 54 - RequestID: ae1pxnhx4a +2025-06-18T15:04:46.881Z [INFO] payment-service - Database INSERT on payments - Execution time: 93ms - Rows affected: 36 - RequestID: a2fwtftxx8s +2025-06-18T15:04:46.981Z [INFO] inventory-service - Database SELECT on users - Execution time: 485ms - Rows affected: 99 - RequestID: 7x463592x3s +2025-06-18T15:04:47.081Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 148ms - Rows affected: 46 - RequestID: mwvq5ovdwl +2025-06-18T15:04:47.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 779ms - RequestID: 3kijawm6w6q +2025-06-18T15:04:47.281Z [TRACE] user-service - Auth event: password_change - User: user_1083 - IP: 192.168.189.103 - RequestID: sa02p51xubk +2025-06-18T15:04:47.381Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 261ms - Rows affected: 81 - RequestID: twffaofmpvf +2025-06-18T15:04:47.481Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 474ms - IP: 192.168.64.33 - User: user_1051 - RequestID: jqy9gc6pf2j +2025-06-18T15:04:47.581Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 39ms - IP: 192.168.138.123 - User: user_1023 - RequestID: lnhm1zo20rh +2025-06-18T15:04:47.681Z [INFO] inventory-service - PUT /api/v1/payments - Status: 403 - Response time: 1724ms - IP: 192.168.194.41 - User: user_1012 - RequestID: zogjj65iagk +2025-06-18T15:04:47.781Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1181ms - IP: 192.168.53.133 - User: user_1014 - RequestID: 827faq4lq3 +2025-06-18T15:04:47.881Z [TRACE] user-service - Auth event: login_failed - User: user_1004 - IP: 192.168.159.94 - RequestID: ufipfhed2s +2025-06-18T15:04:47.981Z [TRACE] notification-service - Auth event: logout - User: user_1086 - IP: 192.168.104.37 - RequestID: l1pcbek02z +2025-06-18T15:04:48.081Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 264ms - Rows affected: 3 - RequestID: nyieiv268pp +2025-06-18T15:04:48.181Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 503 - Response time: 1917ms - IP: 192.168.14.77 - User: user_1069 - RequestID: wefz5jfcb7 +2025-06-18T15:04:48.281Z [DEBUG] payment-service - Database SELECT on products - Execution time: 454ms - Rows affected: 12 - RequestID: pusci3ybiw +2025-06-18T15:04:48.381Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 180ms - Rows affected: 12 - RequestID: ougga7d9x0f +2025-06-18T15:04:48.481Z [INFO] user-service - Database INSERT on payments - Execution time: 193ms - Rows affected: 9 - RequestID: mb6pmuh8f1 +2025-06-18T15:04:48.581Z [DEBUG] payment-service - Auth event: password_change - User: user_1003 - IP: 192.168.36.218 - RequestID: cljn3odmvq5 +2025-06-18T15:04:48.681Z [INFO] user-service - Operation: order_created - Processing time: 735ms - RequestID: jopag5cwiga +2025-06-18T15:04:48.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.158.144 - RequestID: yhoisdmcspi +2025-06-18T15:04:48.881Z [INFO] user-service - PATCH /api/v1/payments - Status: 401 - Response time: 172ms - IP: 192.168.144.38 - User: user_1038 - RequestID: 3j4cp0r5l2i +2025-06-18T15:04:48.981Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 400 - Response time: 110ms - IP: 192.168.13.72 - User: user_1006 - RequestID: 36kuo9nqzf +2025-06-18T15:04:49.081Z [TRACE] payment-service - POST /api/v1/users - Status: 200 - Response time: 347ms - IP: 192.168.158.144 - User: user_1060 - RequestID: p5g65xrefim +2025-06-18T15:04:49.181Z [INFO] notification-service - Database INSERT on users - Execution time: 331ms - Rows affected: 23 - RequestID: 0wnjh1auhht +2025-06-18T15:04:49.281Z [INFO] auth-service - Database DELETE on sessions - Execution time: 494ms - Rows affected: 69 - RequestID: henzof0cuhp +2025-06-18T15:04:49.381Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 401 - Response time: 584ms - IP: 192.168.144.38 - User: user_1026 - RequestID: tdvmv2007v8 +2025-06-18T15:04:49.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 472ms - RequestID: mr1uxifiecp +2025-06-18T15:04:49.581Z [DEBUG] notification-service - Database SELECT on users - Execution time: 98ms - Rows affected: 25 - RequestID: 17x7iiju7yn +2025-06-18T15:04:49.681Z [INFO] notification-service - Operation: payment_processed - Processing time: 531ms - RequestID: a7dcpx4e98 +2025-06-18T15:04:49.781Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 181ms - Rows affected: 96 - RequestID: xi82kait5sj +2025-06-18T15:04:49.881Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 858ms - RequestID: vsarvv1f36m +2025-06-18T15:04:49.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1095 - IP: 192.168.158.144 - RequestID: miow8gjkiog +2025-06-18T15:04:50.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 631ms - RequestID: kygfds0rpwc +2025-06-18T15:04:50.181Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 70ms - Rows affected: 75 - RequestID: 8gba5nnk56w +2025-06-18T15:04:50.281Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1216ms - IP: 192.168.53.133 - User: user_1037 - RequestID: dew7lj8lo6 +2025-06-18T15:04:50.381Z [DEBUG] order-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.196.226 - RequestID: 6qi19665vzf +2025-06-18T15:04:50.481Z [DEBUG] inventory-service - Auth event: login_success - User: user_1049 - IP: 192.168.30.79 - RequestID: pu3u97ldelo +2025-06-18T15:04:50.581Z [DEBUG] user-service - Operation: cache_hit - Processing time: 314ms - RequestID: 4umwzn4zvlc +2025-06-18T15:04:50.681Z [INFO] user-service - GET /api/v1/auth/login - Status: 403 - Response time: 1105ms - IP: 192.168.141.100 - User: user_1080 - RequestID: 0bl960j9wl6g +2025-06-18T15:04:50.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1018 - IP: 192.168.170.215 - RequestID: kwwcd42uvyi +2025-06-18T15:04:50.881Z [INFO] inventory-service - Operation: notification_queued - Processing time: 288ms - RequestID: a6mdgwezxvm +2025-06-18T15:04:50.981Z [DEBUG] user-service - Operation: cache_hit - Processing time: 822ms - RequestID: ugao52jee3 +2025-06-18T15:04:51.081Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 214ms - Rows affected: 24 - RequestID: 7davgplzovj +2025-06-18T15:04:51.181Z [TRACE] inventory-service - Database SELECT on users - Execution time: 403ms - Rows affected: 23 - RequestID: p22urkit5a +2025-06-18T15:04:51.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 507ms - RequestID: kkgfnf224j +2025-06-18T15:04:51.381Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 467ms - Rows affected: 72 - RequestID: vzfiucjcuu +2025-06-18T15:04:51.481Z [DEBUG] user-service - Operation: order_created - Processing time: 830ms - RequestID: q11467aof6k +2025-06-18T15:04:51.581Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 92ms - Rows affected: 74 - RequestID: 9ixskl4eao +2025-06-18T15:04:51.681Z [TRACE] inventory-service - POST /api/v1/payments - Status: 500 - Response time: 921ms - IP: 192.168.170.215 - User: user_1037 - RequestID: 1zyd1grd1az +2025-06-18T15:04:51.781Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 780ms - IP: 192.168.242.165 - User: user_1053 - RequestID: qq3bn9u91mq +2025-06-18T15:04:51.881Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 400 - Response time: 1155ms - IP: 192.168.211.72 - User: user_1086 - RequestID: wj62szsa7zi +2025-06-18T15:04:51.981Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 106ms - Rows affected: 62 - RequestID: 3koisry03dg +2025-06-18T15:04:52.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.79.116 - RequestID: ixzdnzdalt +2025-06-18T15:04:52.181Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 291ms - Rows affected: 76 - RequestID: boobax5yy56 +2025-06-18T15:04:52.281Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 200 - Response time: 656ms - IP: 192.168.181.225 - User: user_1089 - RequestID: hbgmglw88dr +2025-06-18T15:04:52.381Z [DEBUG] order-service - Database UPDATE on users - Execution time: 444ms - Rows affected: 37 - RequestID: b9xaafx1jd8 +2025-06-18T15:04:52.481Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 284ms - Rows affected: 11 - RequestID: l5j6761rqsa +2025-06-18T15:04:52.581Z [DEBUG] order-service - Operation: cache_hit - Processing time: 708ms - RequestID: 28tdotvyz45 +2025-06-18T15:04:52.681Z [INFO] auth-service - Database UPDATE on payments - Execution time: 224ms - Rows affected: 29 - RequestID: dwv6kzhzrao +2025-06-18T15:04:52.781Z [DEBUG] user-service - Database INSERT on payments - Execution time: 67ms - Rows affected: 60 - RequestID: 2e3vxo9vcx +2025-06-18T15:04:52.881Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 502 - Response time: 716ms - IP: 192.168.147.171 - User: user_1049 - RequestID: a09q4vqmt46 +2025-06-18T15:04:52.981Z [INFO] auth-service - Auth event: password_change - User: user_1084 - IP: 192.168.53.133 - RequestID: fbxp28ng0el +2025-06-18T15:04:53.081Z [INFO] payment-service - Operation: inventory_updated - Processing time: 825ms - RequestID: g7vxiquu696 +2025-06-18T15:04:53.181Z [DEBUG] notification-service - POST /api/v1/orders - Status: 500 - Response time: 923ms - IP: 192.168.242.165 - User: user_1056 - RequestID: kmqxwks60p +2025-06-18T15:04:53.281Z [TRACE] user-service - Operation: notification_queued - Processing time: 522ms - RequestID: ltp8zmz2bei +2025-06-18T15:04:53.381Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 142ms - Rows affected: 18 - RequestID: r0s8e4hfy1n +2025-06-18T15:04:53.481Z [DEBUG] auth-service - Auth event: password_change - User: user_1017 - IP: 192.168.170.215 - RequestID: sy299r28f2h +2025-06-18T15:04:53.581Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 880ms - RequestID: 7qqbuzfgh4s +2025-06-18T15:04:53.681Z [TRACE] auth-service - Database SELECT on payments - Execution time: 57ms - Rows affected: 11 - RequestID: u91vzf0sa1 +2025-06-18T15:04:53.781Z [TRACE] payment-service - Database SELECT on products - Execution time: 286ms - Rows affected: 19 - RequestID: uad9io6guho +2025-06-18T15:04:53.881Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1045 - IP: 192.168.194.41 - RequestID: yn139lu50mt +2025-06-18T15:04:53.981Z [TRACE] user-service - Operation: notification_queued - Processing time: 532ms - RequestID: 4njaztiqdcc +2025-06-18T15:04:54.081Z [TRACE] user-service - GET /api/v1/orders - Status: 201 - Response time: 275ms - IP: 192.168.81.206 - User: user_1011 - RequestID: bc5hjsqvqne +2025-06-18T15:04:54.181Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1080ms - IP: 192.168.196.226 - User: user_1055 - RequestID: u5c4wmpuagg +2025-06-18T15:04:54.281Z [DEBUG] notification-service - Operation: order_created - Processing time: 543ms - RequestID: 5v23n7nqvbf +2025-06-18T15:04:54.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.31.117 - RequestID: y5kas6l9gt +2025-06-18T15:04:54.481Z [INFO] notification-service - Operation: cache_hit - Processing time: 314ms - RequestID: iozume9ks6h +2025-06-18T15:04:54.581Z [INFO] user-service - Auth event: login_success - User: user_1093 - IP: 192.168.31.117 - RequestID: sstyikqn77e +2025-06-18T15:04:54.681Z [TRACE] order-service - Database DELETE on sessions - Execution time: 106ms - Rows affected: 98 - RequestID: o3s3g3i2td7 +2025-06-18T15:04:54.781Z [TRACE] auth-service - Database INSERT on payments - Execution time: 205ms - Rows affected: 67 - RequestID: mkhvniy31w +2025-06-18T15:04:54.881Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 273ms - IP: 192.168.64.33 - User: user_1026 - RequestID: vbfxl2t25yj +2025-06-18T15:04:54.981Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1341ms - IP: 192.168.1.152 - User: user_1037 - RequestID: dr6r7ubwwk +2025-06-18T15:04:55.081Z [INFO] user-service - Operation: order_created - Processing time: 373ms - RequestID: oeofqxndk1r +2025-06-18T15:04:55.181Z [INFO] user-service - Database UPDATE on products - Execution time: 199ms - Rows affected: 56 - RequestID: iut2zamzxgn +2025-06-18T15:04:55.281Z [INFO] payment-service - Operation: order_created - Processing time: 641ms - RequestID: ppj9nhv45t7 +2025-06-18T15:04:55.381Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 258ms - Rows affected: 9 - RequestID: tsco57vy7x9 +2025-06-18T15:04:55.481Z [INFO] inventory-service - Database INSERT on orders - Execution time: 234ms - Rows affected: 36 - RequestID: 9j237wl3z6u +2025-06-18T15:04:55.581Z [TRACE] order-service - Auth event: login_success - User: user_1075 - IP: 192.168.100.240 - RequestID: tu1xwt4h8ll +2025-06-18T15:04:55.681Z [DEBUG] order-service - Auth event: login_success - User: user_1015 - IP: 192.168.13.72 - RequestID: kfwl60vryqj +2025-06-18T15:04:55.781Z [TRACE] user-service - POST /api/v1/orders - Status: 403 - Response time: 591ms - IP: 192.168.227.233 - User: user_1014 - RequestID: d9z89e3sr6w +2025-06-18T15:04:55.881Z [DEBUG] user-service - Operation: cache_hit - Processing time: 968ms - RequestID: k2p9if0cw4 +2025-06-18T15:04:55.981Z [DEBUG] user-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.138.123 - RequestID: ksp0cwpmzck +2025-06-18T15:04:56.081Z [INFO] notification-service - Database UPDATE on products - Execution time: 397ms - Rows affected: 38 - RequestID: axwiplxg3is +2025-06-18T15:04:56.181Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1091ms - IP: 192.168.227.77 - User: user_1053 - RequestID: j3vhn2w0ks +2025-06-18T15:04:56.281Z [INFO] auth-service - Auth event: login_success - User: user_1050 - IP: 192.168.14.77 - RequestID: 09vj8ranshrg +2025-06-18T15:04:56.381Z [INFO] user-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.10.184 - RequestID: 5qi9gk1ec6 +2025-06-18T15:04:56.481Z [DEBUG] user-service - Database UPDATE on products - Execution time: 38ms - Rows affected: 70 - RequestID: wrhiizfo82l +2025-06-18T15:04:56.581Z [TRACE] inventory-service - Auth event: login_success - User: user_1040 - IP: 192.168.240.169 - RequestID: avyskpu8f99 +2025-06-18T15:04:56.681Z [TRACE] notification-service - Operation: notification_queued - Processing time: 111ms - RequestID: kel2w8s44me +2025-06-18T15:04:56.781Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 500 - Response time: 1362ms - IP: 192.168.133.7 - User: user_1046 - RequestID: 6z6dz9u9vc +2025-06-18T15:04:56.881Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 186ms - Rows affected: 38 - RequestID: 3q4vnkrljvh +2025-06-18T15:04:56.981Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 292ms - IP: 192.168.170.215 - User: user_1060 - RequestID: o6qbxu0kuj +2025-06-18T15:04:57.081Z [DEBUG] order-service - Database INSERT on payments - Execution time: 98ms - Rows affected: 16 - RequestID: de6rp9mhzy +2025-06-18T15:04:57.181Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 66ms - Rows affected: 74 - RequestID: tugl7l2negl +2025-06-18T15:04:57.281Z [TRACE] auth-service - Operation: payment_processed - Processing time: 371ms - RequestID: auzi1cq9vzj +2025-06-18T15:04:57.381Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 907ms - RequestID: 31wgxhqrk9r +2025-06-18T15:04:57.481Z [TRACE] order-service - Operation: payment_processed - Processing time: 439ms - RequestID: jocgda7shcp +2025-06-18T15:04:57.581Z [INFO] payment-service - Operation: order_created - Processing time: 800ms - RequestID: h5m9ltvov99 +2025-06-18T15:04:57.681Z [TRACE] inventory-service - Auth event: login_success - User: user_1047 - IP: 192.168.211.72 - RequestID: m5l5liqx75 +2025-06-18T15:04:57.781Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 403 - Response time: 1483ms - IP: 192.168.33.76 - User: user_1054 - RequestID: ypcszyn7co +2025-06-18T15:04:57.881Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 192ms - Rows affected: 53 - RequestID: 6ewudyapg1f +2025-06-18T15:04:57.981Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 170ms - Rows affected: 54 - RequestID: bx1tb6h0f6 +2025-06-18T15:04:58.081Z [INFO] payment-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.79.141 - RequestID: mo2nzpjj5yr +2025-06-18T15:04:58.181Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 201 - Response time: 1947ms - IP: 192.168.33.76 - User: user_1040 - RequestID: t63p97c5wjg +2025-06-18T15:04:58.281Z [INFO] notification-service - POST /api/v1/auth/login - Status: 502 - Response time: 1331ms - IP: 192.168.227.77 - User: user_1000 - RequestID: emyo71fso9j +2025-06-18T15:04:58.381Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 403 - Response time: 788ms - IP: 192.168.13.72 - User: user_1075 - RequestID: td32fh3khid +2025-06-18T15:04:58.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.44.5 - RequestID: einiill45n6 +2025-06-18T15:04:58.581Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 250ms - Rows affected: 71 - RequestID: hwqh2npoen +2025-06-18T15:04:58.681Z [DEBUG] payment-service - Operation: order_created - Processing time: 444ms - RequestID: vtgyk67jx6 +2025-06-18T15:04:58.781Z [INFO] inventory-service - Database DELETE on orders - Execution time: 24ms - Rows affected: 15 - RequestID: myam7ynhvl +2025-06-18T15:04:58.881Z [DEBUG] user-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.14.77 - RequestID: 3tk3wudepsq +2025-06-18T15:04:58.981Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1454ms - IP: 192.168.79.141 - User: user_1098 - RequestID: a5yes0nt2d +2025-06-18T15:04:59.081Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1969ms - IP: 192.168.235.117 - User: user_1096 - RequestID: y14tyf4aofi +2025-06-18T15:04:59.181Z [INFO] user-service - GET /api/v1/orders - Status: 400 - Response time: 1602ms - IP: 192.168.79.141 - User: user_1019 - RequestID: hr2351f0myf +2025-06-18T15:04:59.281Z [DEBUG] order-service - Database SELECT on orders - Execution time: 383ms - Rows affected: 70 - RequestID: 80xnyo7j1mw +2025-06-18T15:04:59.381Z [DEBUG] notification-service - Auth event: logout - User: user_1060 - IP: 192.168.10.184 - RequestID: 91fw5grxxm +2025-06-18T15:04:59.481Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 242ms - RequestID: t6kz1nvbcfq +2025-06-18T15:04:59.581Z [INFO] auth-service - Auth event: login_failed - User: user_1042 - IP: 192.168.1.152 - RequestID: e3gsvmbjcnb +2025-06-18T15:04:59.681Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 201 - Response time: 795ms - IP: 192.168.53.133 - User: user_1039 - RequestID: fkh9svtdwup +2025-06-18T15:04:59.781Z [INFO] inventory-service - POST /api/v1/inventory - Status: 503 - Response time: 700ms - IP: 192.168.85.229 - User: user_1008 - RequestID: 7tvrm3oo6wb +2025-06-18T15:04:59.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 102ms - RequestID: h0fztse39vm +2025-06-18T15:04:59.981Z [TRACE] auth-service - Operation: cache_miss - Processing time: 706ms - RequestID: 7rskrjdpsh3 +2025-06-18T15:05:00.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 624ms - RequestID: w39sou13l +2025-06-18T15:05:00.181Z [TRACE] user-service - POST /api/v1/inventory - Status: 503 - Response time: 79ms - IP: 192.168.113.218 - User: user_1053 - RequestID: jkws2yphbjd +2025-06-18T15:05:00.281Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 453ms - RequestID: 653gdxnnxd +2025-06-18T15:05:00.381Z [DEBUG] order-service - Database DELETE on products - Execution time: 157ms - Rows affected: 97 - RequestID: kqznf8z1b2 +2025-06-18T15:05:00.481Z [INFO] notification-service - Database UPDATE on orders - Execution time: 168ms - Rows affected: 75 - RequestID: jiskskc3748 +2025-06-18T15:05:00.581Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1658ms - IP: 192.168.196.226 - User: user_1049 - RequestID: 9g9q9kh8hw7 +2025-06-18T15:05:00.681Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1143ms - IP: 192.168.187.199 - User: user_1069 - RequestID: 20cp9os3jx4 +2025-06-18T15:05:00.781Z [TRACE] notification-service - Auth event: logout - User: user_1016 - IP: 192.168.81.206 - RequestID: wghk5b9rj3 +2025-06-18T15:05:00.881Z [INFO] user-service - Operation: payment_processed - Processing time: 100ms - RequestID: 41e9cls2djw +2025-06-18T15:05:00.981Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 403 - Response time: 869ms - IP: 192.168.13.72 - User: user_1035 - RequestID: 7bsb8eqj0ev +2025-06-18T15:05:01.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.229.123 - RequestID: 4z8ymdrb18g +2025-06-18T15:05:01.181Z [INFO] order-service - Database DELETE on products - Execution time: 218ms - Rows affected: 92 - RequestID: ie786ekf5mj +2025-06-18T15:05:01.281Z [DEBUG] notification-service - GET /api/v1/users - Status: 404 - Response time: 1962ms - IP: 192.168.85.229 - User: user_1007 - RequestID: phpbvcrklc +2025-06-18T15:05:01.381Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 201 - Response time: 1311ms - IP: 192.168.68.158 - User: user_1084 - RequestID: 3z8j6jpvf6i +2025-06-18T15:05:01.481Z [DEBUG] payment-service - Operation: email_sent - Processing time: 236ms - RequestID: g2ldngtfkgo +2025-06-18T15:05:01.581Z [DEBUG] order-service - Database SELECT on orders - Execution time: 9ms - Rows affected: 68 - RequestID: 3f5ffzbu89k +2025-06-18T15:05:01.681Z [INFO] user-service - Operation: notification_queued - Processing time: 254ms - RequestID: v569k1115ls +2025-06-18T15:05:01.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1076 - IP: 192.168.36.218 - RequestID: kbegfy8s179 +2025-06-18T15:05:01.881Z [TRACE] user-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.158.144 - RequestID: fp5e1t5r2s +2025-06-18T15:05:01.981Z [TRACE] notification-service - POST /api/v1/orders - Status: 503 - Response time: 1256ms - IP: 192.168.227.233 - User: user_1064 - RequestID: 7qb9f427sv5 +2025-06-18T15:05:02.081Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 292ms - Rows affected: 31 - RequestID: aohnmgavq2i +2025-06-18T15:05:02.181Z [INFO] order-service - Database DELETE on products - Execution time: 404ms - Rows affected: 5 - RequestID: 1vsztr28ck5 +2025-06-18T15:05:02.281Z [TRACE] payment-service - Operation: notification_queued - Processing time: 739ms - RequestID: 4st080hftp6 +2025-06-18T15:05:02.381Z [INFO] inventory-service - Auth event: login_success - User: user_1050 - IP: 192.168.46.63 - RequestID: 4wn2cjcyyzs +2025-06-18T15:05:02.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.189.103 - RequestID: gg7bu50mpnj +2025-06-18T15:05:02.581Z [INFO] auth-service - Auth event: login_success - User: user_1042 - IP: 192.168.11.60 - RequestID: as8ei6m0ogl +2025-06-18T15:05:02.681Z [TRACE] order-service - GET /api/v1/orders - Status: 503 - Response time: 1556ms - IP: 192.168.242.165 - User: user_1009 - RequestID: ku5pq2ykhu +2025-06-18T15:05:02.781Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 193ms - IP: 192.168.227.77 - User: user_1026 - RequestID: 5rxrnz9dc8q +2025-06-18T15:05:02.881Z [DEBUG] notification-service - Auth event: logout - User: user_1053 - IP: 192.168.31.117 - RequestID: ic9aa3bohtp +2025-06-18T15:05:02.981Z [INFO] auth-service - GET /api/v1/users - Status: 403 - Response time: 241ms - IP: 192.168.68.158 - User: user_1073 - RequestID: jjfbcdr25ek +2025-06-18T15:05:03.081Z [INFO] inventory-service - Auth event: logout - User: user_1008 - IP: 192.168.229.123 - RequestID: e40bbn99pgp +2025-06-18T15:05:03.181Z [INFO] inventory-service - PUT /api/v1/users - Status: 200 - Response time: 507ms - IP: 192.168.141.100 - User: user_1023 - RequestID: xx03h25jor +2025-06-18T15:05:03.281Z [INFO] payment-service - Operation: inventory_updated - Processing time: 441ms - RequestID: e1qduq2goso +2025-06-18T15:05:03.381Z [TRACE] user-service - Database DELETE on products - Execution time: 488ms - Rows affected: 84 - RequestID: yomolc4l1o8 +2025-06-18T15:05:03.481Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1809ms - IP: 192.168.138.123 - User: user_1076 - RequestID: xcipal8bw4s +2025-06-18T15:05:03.581Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 614ms - RequestID: 2g0ibfuvj9o +2025-06-18T15:05:03.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.1.152 - RequestID: nskujrijaal +2025-06-18T15:05:03.781Z [TRACE] auth-service - Database UPDATE on users - Execution time: 229ms - Rows affected: 1 - RequestID: 2p0qtf3tgzq +2025-06-18T15:05:03.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.1.152 - RequestID: dpe069z4fvo +2025-06-18T15:05:03.981Z [INFO] inventory-service - Auth event: login_failed - User: user_1010 - IP: 192.168.100.240 - RequestID: 7xra9ugizd3 +2025-06-18T15:05:04.081Z [DEBUG] payment-service - Auth event: login_failed - User: user_1041 - IP: 192.168.141.100 - RequestID: xkvthjywlu +2025-06-18T15:05:04.181Z [INFO] order-service - DELETE /api/v1/users - Status: 201 - Response time: 1412ms - IP: 192.168.229.123 - User: user_1055 - RequestID: 8bzjeke7gnm +2025-06-18T15:05:04.281Z [TRACE] auth-service - Database SELECT on orders - Execution time: 41ms - Rows affected: 41 - RequestID: f51wo0rdtdm +2025-06-18T15:05:04.381Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 382ms - Rows affected: 70 - RequestID: 2fsoyd3rjt4 +2025-06-18T15:05:04.481Z [DEBUG] order-service - Auth event: password_change - User: user_1079 - IP: 192.168.68.128 - RequestID: 42gnutn8ank +2025-06-18T15:05:04.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 606ms - RequestID: vujk2oyijc +2025-06-18T15:05:04.681Z [DEBUG] notification-service - Auth event: login_success - User: user_1069 - IP: 192.168.97.87 - RequestID: dm206apd7cs +2025-06-18T15:05:04.781Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 44ms - Rows affected: 21 - RequestID: 8wefkpp3yja +2025-06-18T15:05:04.881Z [INFO] inventory-service - Operation: cache_hit - Processing time: 753ms - RequestID: r3kww7qaj7e +2025-06-18T15:05:04.981Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 290ms - Rows affected: 15 - RequestID: q97jlndohuc +2025-06-18T15:05:05.081Z [INFO] user-service - Auth event: login_success - User: user_1071 - IP: 192.168.53.133 - RequestID: p1q6f7oisp +2025-06-18T15:05:05.181Z [INFO] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 291ms - IP: 192.168.85.229 - User: user_1054 - RequestID: fo3bj54857 +2025-06-18T15:05:05.281Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 545ms - RequestID: yx5ucjlzpqf +2025-06-18T15:05:05.381Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 258ms - Rows affected: 31 - RequestID: w920i7xbxo +2025-06-18T15:05:05.481Z [TRACE] payment-service - Operation: payment_processed - Processing time: 686ms - RequestID: 6mv9bfhhebr +2025-06-18T15:05:05.581Z [DEBUG] notification-service - Database INSERT on products - Execution time: 379ms - Rows affected: 1 - RequestID: lhcvnmfflu9 +2025-06-18T15:05:05.681Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 6ms - Rows affected: 78 - RequestID: z04vmta9998 +2025-06-18T15:05:05.781Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 683ms - RequestID: brlda0fjqrt +2025-06-18T15:05:05.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.44.5 - RequestID: 1pbavuf5hrx +2025-06-18T15:05:05.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1028 - IP: 192.168.229.123 - RequestID: p904qq84u2 +2025-06-18T15:05:06.081Z [DEBUG] user-service - Auth event: logout - User: user_1020 - IP: 192.168.232.72 - RequestID: 19vpc5xzhv5 +2025-06-18T15:05:06.181Z [TRACE] user-service - DELETE /api/v1/payments - Status: 200 - Response time: 1901ms - IP: 192.168.32.38 - User: user_1032 - RequestID: h1xrirhmxdv +2025-06-18T15:05:06.281Z [DEBUG] order-service - POST /api/v1/inventory - Status: 503 - Response time: 886ms - IP: 192.168.159.94 - User: user_1016 - RequestID: xrfs0m497z +2025-06-18T15:05:06.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1042 - IP: 192.168.144.38 - RequestID: b5m33nxr3dr +2025-06-18T15:05:06.481Z [TRACE] auth-service - Database INSERT on payments - Execution time: 151ms - Rows affected: 47 - RequestID: wdd6pae73la +2025-06-18T15:05:06.581Z [TRACE] order-service - GET /api/v1/orders - Status: 403 - Response time: 1270ms - IP: 192.168.81.206 - User: user_1083 - RequestID: gy4xhtqidb +2025-06-18T15:05:06.681Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 400 - Response time: 827ms - IP: 192.168.100.240 - User: user_1060 - RequestID: 2ja1xy4y2iy +2025-06-18T15:05:06.781Z [INFO] order-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1356ms - IP: 192.168.44.5 - User: user_1047 - RequestID: nnyud9w9ukc +2025-06-18T15:05:06.881Z [DEBUG] notification-service - POST /api/v1/orders - Status: 403 - Response time: 853ms - IP: 192.168.229.123 - User: user_1046 - RequestID: ttuw55wvah +2025-06-18T15:05:06.981Z [INFO] notification-service - Operation: email_sent - Processing time: 291ms - RequestID: 39t3kzs9id5 +2025-06-18T15:05:07.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.31.117 - RequestID: bsfy5azm75a +2025-06-18T15:05:07.181Z [TRACE] auth-service - Operation: notification_queued - Processing time: 97ms - RequestID: q88hqhzsjx +2025-06-18T15:05:07.281Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 964ms - IP: 192.168.33.76 - User: user_1044 - RequestID: x2zrwl03nzr +2025-06-18T15:05:07.381Z [INFO] payment-service - Auth event: login_failed - User: user_1012 - IP: 192.168.1.152 - RequestID: bxpaql0ln7c +2025-06-18T15:05:07.481Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 404 - Response time: 859ms - IP: 192.168.68.128 - User: user_1030 - RequestID: b0kz2kxxpbo +2025-06-18T15:05:07.581Z [INFO] notification-service - POST /api/v1/inventory - Status: 403 - Response time: 91ms - IP: 192.168.100.240 - User: user_1013 - RequestID: 0707198jyxwj +2025-06-18T15:05:07.681Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 315ms - RequestID: 4ngode3hne3 +2025-06-18T15:05:07.781Z [INFO] payment-service - POST /api/v1/users - Status: 502 - Response time: 202ms - IP: 192.168.79.141 - User: user_1079 - RequestID: jvenhrd4939 +2025-06-18T15:05:07.881Z [DEBUG] notification-service - Operation: email_sent - Processing time: 569ms - RequestID: t7590q9xcv +2025-06-18T15:05:07.981Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 824ms - RequestID: n772nutfhos +2025-06-18T15:05:08.081Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 434ms - RequestID: ow5relfezw +2025-06-18T15:05:08.181Z [INFO] auth-service - Database UPDATE on products - Execution time: 326ms - Rows affected: 85 - RequestID: x1yvjca3htr +2025-06-18T15:05:08.281Z [INFO] order-service - Operation: cache_hit - Processing time: 435ms - RequestID: 1ms2v7fzbau +2025-06-18T15:05:08.381Z [INFO] user-service - Auth event: password_change - User: user_1001 - IP: 192.168.79.141 - RequestID: gvbymyl2l8 +2025-06-18T15:05:08.481Z [INFO] order-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.113.218 - RequestID: 2thi42muwif +2025-06-18T15:05:08.581Z [INFO] payment-service - Database DELETE on users - Execution time: 29ms - Rows affected: 87 - RequestID: jpl4du2y3r +2025-06-18T15:05:08.681Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 216ms - Rows affected: 52 - RequestID: lab9h2qb2h9 +2025-06-18T15:05:08.781Z [DEBUG] payment-service - Operation: email_sent - Processing time: 898ms - RequestID: 8wfdm2zrazy +2025-06-18T15:05:08.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.133.7 - RequestID: zqt8xrz0pwi +2025-06-18T15:05:08.981Z [INFO] order-service - DELETE /api/v1/users - Status: 403 - Response time: 1570ms - IP: 192.168.159.94 - User: user_1028 - RequestID: fa0bw19mvot +2025-06-18T15:05:09.081Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 500 - Response time: 515ms - IP: 192.168.44.5 - User: user_1049 - RequestID: qd099ig52l +2025-06-18T15:05:09.181Z [TRACE] payment-service - Operation: order_created - Processing time: 966ms - RequestID: vo10h694339 +2025-06-18T15:05:09.281Z [TRACE] auth-service - Database DELETE on products - Execution time: 382ms - Rows affected: 13 - RequestID: c73ml4r8epf +2025-06-18T15:05:09.381Z [TRACE] order-service - Operation: payment_processed - Processing time: 1037ms - RequestID: kw8fwf5wx5c +2025-06-18T15:05:09.481Z [TRACE] auth-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.1.152 - RequestID: 5o4lwfz0w54 +2025-06-18T15:05:09.581Z [TRACE] user-service - Database DELETE on sessions - Execution time: 266ms - Rows affected: 21 - RequestID: wrfoi60nin +2025-06-18T15:05:09.681Z [TRACE] auth-service - Operation: payment_processed - Processing time: 355ms - RequestID: 0v14py764ny +2025-06-18T15:05:09.781Z [INFO] user-service - Operation: webhook_sent - Processing time: 450ms - RequestID: nf3dyeos2yq +2025-06-18T15:05:09.881Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 964ms - RequestID: 2d8zt0hujyw +2025-06-18T15:05:09.981Z [DEBUG] user-service - POST /api/v1/users - Status: 503 - Response time: 1664ms - IP: 192.168.14.77 - User: user_1078 - RequestID: 8w2y5vh7bk +2025-06-18T15:05:10.081Z [INFO] notification-service - Database UPDATE on products - Execution time: 379ms - Rows affected: 37 - RequestID: fy7io5ygaxg +2025-06-18T15:05:10.181Z [DEBUG] user-service - Database INSERT on products - Execution time: 166ms - Rows affected: 98 - RequestID: dzmmwdyte1l +2025-06-18T15:05:10.281Z [TRACE] user-service - PATCH /api/v1/orders - Status: 200 - Response time: 1577ms - IP: 192.168.104.37 - User: user_1069 - RequestID: k5dcdu3kyqf +2025-06-18T15:05:10.381Z [TRACE] payment-service - Database DELETE on products - Execution time: 353ms - Rows affected: 13 - RequestID: q53kohivhh +2025-06-18T15:05:10.481Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 290ms - RequestID: aph3xxapf1o +2025-06-18T15:05:10.581Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 706ms - RequestID: kiqzvz342kb +2025-06-18T15:05:10.681Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1479ms - IP: 192.168.187.199 - User: user_1069 - RequestID: 92iaigx8685 +2025-06-18T15:05:10.781Z [INFO] order-service - PUT /api/v1/payments - Status: 201 - Response time: 140ms - IP: 192.168.13.72 - User: user_1030 - RequestID: up4i9ovahaj +2025-06-18T15:05:10.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1062 - IP: 192.168.170.215 - RequestID: lvwgx75y9nf +2025-06-18T15:05:10.981Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 43ms - Rows affected: 92 - RequestID: 3znzptzbwb2 +2025-06-18T15:05:11.081Z [INFO] auth-service - Auth event: password_change - User: user_1045 - IP: 192.168.196.226 - RequestID: q3fucaqpi2 +2025-06-18T15:05:11.181Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 56ms - Rows affected: 48 - RequestID: wdkrcpi66is +2025-06-18T15:05:11.281Z [INFO] auth-service - Auth event: login_success - User: user_1028 - IP: 192.168.10.184 - RequestID: qqhvotglgu +2025-06-18T15:05:11.381Z [DEBUG] order-service - Operation: email_sent - Processing time: 915ms - RequestID: gsqo281dg9g +2025-06-18T15:05:11.481Z [INFO] order-service - Database UPDATE on sessions - Execution time: 321ms - Rows affected: 42 - RequestID: uqu3xq77ama +2025-06-18T15:05:11.581Z [DEBUG] order-service - Operation: cache_miss - Processing time: 850ms - RequestID: bppiab5s59g +2025-06-18T15:05:11.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1056 - IP: 192.168.14.77 - RequestID: dgog1i8dbgt +2025-06-18T15:05:11.781Z [TRACE] payment-service - Database UPDATE on products - Execution time: 437ms - Rows affected: 95 - RequestID: h8dgdjjdco +2025-06-18T15:05:11.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.167.32 - RequestID: q43rr6fxybo +2025-06-18T15:05:11.981Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.227.77 - RequestID: yp4fv1wex2i +2025-06-18T15:05:12.081Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 401 - Response time: 957ms - IP: 192.168.167.32 - User: user_1014 - RequestID: c1yv1ms74y7 +2025-06-18T15:05:12.181Z [INFO] auth-service - Database UPDATE on users - Execution time: 130ms - Rows affected: 5 - RequestID: mb9io1lehua +2025-06-18T15:05:12.281Z [TRACE] user-service - Operation: payment_processed - Processing time: 333ms - RequestID: 87l1zoyx8l4 +2025-06-18T15:05:12.381Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 238ms - Rows affected: 42 - RequestID: k1vvyir6qkd +2025-06-18T15:05:12.481Z [INFO] auth-service - Operation: email_sent - Processing time: 434ms - RequestID: 9vhdhv4ucl4 +2025-06-18T15:05:12.581Z [DEBUG] user-service - Database UPDATE on users - Execution time: 407ms - Rows affected: 37 - RequestID: ywtlqdy0x9i +2025-06-18T15:05:12.681Z [INFO] payment-service - Operation: inventory_updated - Processing time: 591ms - RequestID: fyzhwftkhm +2025-06-18T15:05:12.781Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1593ms - IP: 192.168.196.226 - User: user_1012 - RequestID: g2yushmueic +2025-06-18T15:05:12.881Z [INFO] user-service - PUT /api/v1/users - Status: 401 - Response time: 119ms - IP: 192.168.85.229 - User: user_1045 - RequestID: n5fbsy159rd +2025-06-18T15:05:12.981Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1001ms - IP: 192.168.181.225 - User: user_1084 - RequestID: 2ufn8a0qpx +2025-06-18T15:05:13.081Z [INFO] order-service - Auth event: password_change - User: user_1011 - IP: 192.168.138.123 - RequestID: 467i2u1zzbj +2025-06-18T15:05:13.181Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1413ms - IP: 192.168.32.38 - User: user_1050 - RequestID: t4w8nyxg5id +2025-06-18T15:05:13.281Z [INFO] order-service - Auth event: login_success - User: user_1023 - IP: 192.168.97.87 - RequestID: 0g7yo935de7l +2025-06-18T15:05:13.381Z [DEBUG] notification-service - Database DELETE on products - Execution time: 301ms - Rows affected: 53 - RequestID: 9ue29l2fy8k +2025-06-18T15:05:13.481Z [INFO] order-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.64.33 - RequestID: 4x5k37um7jv +2025-06-18T15:05:13.581Z [INFO] user-service - DELETE /api/v1/payments - Status: 401 - Response time: 1902ms - IP: 192.168.235.117 - User: user_1088 - RequestID: zpolfwmkpri +2025-06-18T15:05:13.681Z [INFO] notification-service - Operation: cache_miss - Processing time: 264ms - RequestID: idq2c41vsro +2025-06-18T15:05:13.781Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 503 - Response time: 889ms - IP: 192.168.97.87 - User: user_1004 - RequestID: d9vfick6dj6 +2025-06-18T15:05:13.881Z [TRACE] auth-service - Database SELECT on users - Execution time: 178ms - Rows affected: 79 - RequestID: ajexy5gwr8r +2025-06-18T15:05:13.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1082 - IP: 192.168.36.218 - RequestID: hc4m47xsblr +2025-06-18T15:05:14.081Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 201 - Response time: 1705ms - IP: 192.168.181.225 - User: user_1045 - RequestID: zlhs5647wj +2025-06-18T15:05:14.181Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 761ms - RequestID: efihy3rzt6t +2025-06-18T15:05:14.281Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 566ms - IP: 192.168.68.128 - User: user_1002 - RequestID: otoj967wcm +2025-06-18T15:05:14.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 550ms - RequestID: y94j8vfs0on +2025-06-18T15:05:14.481Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 302ms - Rows affected: 78 - RequestID: 2a55w9e3i76 +2025-06-18T15:05:14.581Z [TRACE] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 579ms - IP: 192.168.11.60 - User: user_1022 - RequestID: e9rn02hicd5 +2025-06-18T15:05:14.681Z [DEBUG] user-service - Operation: payment_processed - Processing time: 306ms - RequestID: l2cznecnvhs +2025-06-18T15:05:14.781Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1228ms - IP: 192.168.81.206 - User: user_1076 - RequestID: r5u5qijnmea +2025-06-18T15:05:14.881Z [INFO] payment-service - POST /api/v1/orders - Status: 401 - Response time: 1378ms - IP: 192.168.181.225 - User: user_1059 - RequestID: s7hbghcbkhq +2025-06-18T15:05:14.981Z [INFO] notification-service - Auth event: password_change - User: user_1003 - IP: 192.168.79.143 - RequestID: jpu4a4q82i7 +2025-06-18T15:05:15.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.68.158 - RequestID: n91fzatix8j +2025-06-18T15:05:15.181Z [DEBUG] auth-service - Operation: order_created - Processing time: 160ms - RequestID: zchgcbofh0r +2025-06-18T15:05:15.281Z [INFO] user-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.53.133 - RequestID: vldq27sm7re +2025-06-18T15:05:15.381Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 403 - Response time: 1387ms - IP: 192.168.240.169 - User: user_1020 - RequestID: 6zmqedb39wl +2025-06-18T15:05:15.481Z [INFO] order-service - Database DELETE on users - Execution time: 453ms - Rows affected: 37 - RequestID: xy3y1juop78 +2025-06-18T15:05:15.581Z [INFO] order-service - Database DELETE on products - Execution time: 91ms - Rows affected: 39 - RequestID: dq7y7a9tdxp +2025-06-18T15:05:15.681Z [TRACE] notification-service - Database DELETE on orders - Execution time: 138ms - Rows affected: 96 - RequestID: 4gwem8fud0d +2025-06-18T15:05:15.781Z [DEBUG] user-service - Operation: order_created - Processing time: 234ms - RequestID: ew1hhg91sg5 +2025-06-18T15:05:15.881Z [TRACE] notification-service - Database SELECT on products - Execution time: 299ms - Rows affected: 57 - RequestID: 8triyw6zsqu +2025-06-18T15:05:15.981Z [INFO] payment-service - Operation: webhook_sent - Processing time: 584ms - RequestID: sjg75wtfr6o +2025-06-18T15:05:16.081Z [INFO] auth-service - Auth event: logout - User: user_1055 - IP: 192.168.227.77 - RequestID: 24sm3h3z32w +2025-06-18T15:05:16.181Z [TRACE] user-service - Database DELETE on products - Execution time: 54ms - Rows affected: 19 - RequestID: n1k8u54uo6a +2025-06-18T15:05:16.281Z [INFO] auth-service - Auth event: login_failed - User: user_1037 - IP: 192.168.229.123 - RequestID: 8z6wnfemgnq +2025-06-18T15:05:16.381Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 363ms - IP: 192.168.79.143 - User: user_1083 - RequestID: zd0acrphovg +2025-06-18T15:05:16.481Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 403 - Response time: 121ms - IP: 192.168.194.41 - User: user_1068 - RequestID: tdyngf98xr +2025-06-18T15:05:16.581Z [DEBUG] inventory-service - Auth event: logout - User: user_1085 - IP: 192.168.187.199 - RequestID: 54dyq1olti4 +2025-06-18T15:05:16.681Z [INFO] user-service - PUT /api/v1/orders - Status: 201 - Response time: 390ms - IP: 192.168.97.87 - User: user_1043 - RequestID: dxdicoqc9f6 +2025-06-18T15:05:16.781Z [DEBUG] user-service - Operation: email_sent - Processing time: 573ms - RequestID: rb45cd9i17 +2025-06-18T15:05:16.881Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 500 - Response time: 899ms - IP: 192.168.104.37 - User: user_1088 - RequestID: bv937w50xu6 +2025-06-18T15:05:16.981Z [INFO] order-service - Database DELETE on orders - Execution time: 333ms - Rows affected: 78 - RequestID: s0fsbf5go2 +2025-06-18T15:05:17.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1007 - IP: 192.168.144.38 - RequestID: gkd73r9qh2 +2025-06-18T15:05:17.181Z [INFO] auth-service - DELETE /api/v1/orders - Status: 500 - Response time: 2009ms - IP: 192.168.46.63 - User: user_1009 - RequestID: a6a81kw75v +2025-06-18T15:05:17.281Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 533ms - RequestID: pise0ymkhol +2025-06-18T15:05:17.381Z [INFO] auth-service - Database INSERT on orders - Execution time: 433ms - Rows affected: 14 - RequestID: h89fo3yo9sf +2025-06-18T15:05:17.481Z [DEBUG] order-service - Operation: email_sent - Processing time: 538ms - RequestID: a25ti7e9r +2025-06-18T15:05:17.581Z [DEBUG] order-service - Database SELECT on orders - Execution time: 34ms - Rows affected: 81 - RequestID: 1by0i4rosxf +2025-06-18T15:05:17.681Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 474ms - Rows affected: 72 - RequestID: ly2zgzkibzi +2025-06-18T15:05:17.781Z [INFO] payment-service - PATCH /api/v1/payments - Status: 403 - Response time: 1234ms - IP: 192.168.100.240 - User: user_1056 - RequestID: 8ajdnoypcps +2025-06-18T15:05:17.881Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1293ms - IP: 192.168.158.144 - User: user_1064 - RequestID: e0friilniwg +2025-06-18T15:05:17.981Z [INFO] user-service - Database SELECT on orders - Execution time: 124ms - Rows affected: 47 - RequestID: 51c53b60oo2 +2025-06-18T15:05:18.081Z [DEBUG] order-service - Auth event: login_success - User: user_1090 - IP: 192.168.167.32 - RequestID: 11n6mmzbo4ip +2025-06-18T15:05:18.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 499ms - RequestID: vwae0i9wlp +2025-06-18T15:05:18.281Z [DEBUG] user-service - Operation: notification_queued - Processing time: 159ms - RequestID: zuqsuk3fgie +2025-06-18T15:05:18.381Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1624ms - IP: 192.168.232.72 - User: user_1082 - RequestID: 22jv8c9go7x +2025-06-18T15:05:18.481Z [INFO] auth-service - Operation: cache_miss - Processing time: 1038ms - RequestID: 1hcb9cpbs5 +2025-06-18T15:05:18.581Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 386ms - Rows affected: 66 - RequestID: 8gqpk7cm5pv +2025-06-18T15:05:18.681Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 726ms - IP: 192.168.170.215 - User: user_1086 - RequestID: i6iqc06jye +2025-06-18T15:05:18.781Z [INFO] notification-service - PATCH /api/v1/payments - Status: 404 - Response time: 1848ms - IP: 192.168.133.7 - User: user_1040 - RequestID: 5ezu0uthllt +2025-06-18T15:05:18.881Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1947ms - IP: 192.168.104.37 - User: user_1085 - RequestID: rt1k7x7s92q +2025-06-18T15:05:18.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 235ms - RequestID: 3ef0m39bcvc +2025-06-18T15:05:19.081Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 403 - Response time: 999ms - IP: 192.168.227.233 - User: user_1092 - RequestID: abhe18wvcad +2025-06-18T15:05:19.181Z [TRACE] order-service - PUT /api/v1/users - Status: 403 - Response time: 1813ms - IP: 192.168.79.143 - User: user_1035 - RequestID: 9vee4eujd9g +2025-06-18T15:05:19.281Z [DEBUG] payment-service - Database DELETE on products - Execution time: 98ms - Rows affected: 83 - RequestID: 4xcz1xscqo3 +2025-06-18T15:05:19.381Z [INFO] order-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.227.77 - RequestID: 6wuen5rntoa +2025-06-18T15:05:19.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 902ms - RequestID: jrwlxl53wah +2025-06-18T15:05:19.581Z [INFO] notification-service - Database DELETE on orders - Execution time: 102ms - Rows affected: 82 - RequestID: kemzi8fqsqr +2025-06-18T15:05:19.681Z [TRACE] order-service - GET /api/v1/inventory - Status: 400 - Response time: 1700ms - IP: 192.168.81.206 - User: user_1068 - RequestID: 98c98oxtnwl +2025-06-18T15:05:19.781Z [INFO] user-service - Operation: cache_hit - Processing time: 527ms - RequestID: 4qj1qrn6ev6 +2025-06-18T15:05:19.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1070 - IP: 192.168.242.165 - RequestID: pwdvigqa2nd +2025-06-18T15:05:19.981Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 401 - Response time: 400ms - IP: 192.168.138.123 - User: user_1095 - RequestID: dm6uzkgqsfu +2025-06-18T15:05:20.081Z [INFO] user-service - Database INSERT on products - Execution time: 364ms - Rows affected: 41 - RequestID: 9nd90q6gwus +2025-06-18T15:05:20.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1077 - IP: 192.168.79.141 - RequestID: 9tdixuhj6a7 +2025-06-18T15:05:20.281Z [INFO] inventory-service - Operation: email_sent - Processing time: 790ms - RequestID: kzt3sxq0uzl +2025-06-18T15:05:20.381Z [INFO] order-service - Database DELETE on users - Execution time: 373ms - Rows affected: 38 - RequestID: c68x6wtynnl +2025-06-18T15:05:20.481Z [INFO] order-service - Operation: notification_queued - Processing time: 600ms - RequestID: tdtcqit3ini +2025-06-18T15:05:20.581Z [INFO] auth-service - Operation: order_created - Processing time: 657ms - RequestID: 0k4dud60my3t +2025-06-18T15:05:20.681Z [INFO] inventory-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.133.7 - RequestID: dn9o2kjjbhd +2025-06-18T15:05:20.781Z [INFO] auth-service - Operation: payment_processed - Processing time: 992ms - RequestID: kwkdeql1ghm +2025-06-18T15:05:20.881Z [INFO] payment-service - Auth event: password_change - User: user_1084 - IP: 192.168.138.123 - RequestID: ksckof6yepe +2025-06-18T15:05:20.981Z [TRACE] payment-service - Operation: order_created - Processing time: 191ms - RequestID: k2im01sx2ec +2025-06-18T15:05:21.081Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 484ms - Rows affected: 26 - RequestID: yjxu3q85nfl +2025-06-18T15:05:21.181Z [INFO] payment-service - Database UPDATE on payments - Execution time: 118ms - Rows affected: 42 - RequestID: wos9s9zitm9 +2025-06-18T15:05:21.281Z [TRACE] user-service - Database SELECT on users - Execution time: 126ms - Rows affected: 78 - RequestID: f9tra1tekq +2025-06-18T15:05:21.381Z [INFO] user-service - Auth event: logout - User: user_1004 - IP: 192.168.64.33 - RequestID: e6u36m06ear +2025-06-18T15:05:21.481Z [DEBUG] order-service - GET /api/v1/users - Status: 200 - Response time: 1569ms - IP: 192.168.232.72 - User: user_1095 - RequestID: u33aci86hg +2025-06-18T15:05:21.581Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.211.72 - RequestID: i5armp1b1f9 +2025-06-18T15:05:21.681Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 706ms - RequestID: vxslohve77 +2025-06-18T15:05:21.781Z [TRACE] order-service - Database UPDATE on products - Execution time: 88ms - Rows affected: 39 - RequestID: oc1tgod5wz +2025-06-18T15:05:21.881Z [INFO] notification-service - PUT /api/v1/users - Status: 201 - Response time: 491ms - IP: 192.168.227.233 - User: user_1051 - RequestID: 7clnyy7tz0i +2025-06-18T15:05:21.981Z [TRACE] payment-service - POST /api/v1/inventory - Status: 403 - Response time: 1617ms - IP: 192.168.31.117 - User: user_1096 - RequestID: 2fff0kw9k8f +2025-06-18T15:05:22.081Z [DEBUG] auth-service - POST /api/v1/users - Status: 403 - Response time: 1117ms - IP: 192.168.46.63 - User: user_1085 - RequestID: c4wyf6v4ort +2025-06-18T15:05:22.181Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 745ms - RequestID: w90dm5a26it +2025-06-18T15:05:22.281Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 825ms - RequestID: qx8hcsixfe9 +2025-06-18T15:05:22.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 683ms - RequestID: 17qsbdyd6rhj +2025-06-18T15:05:22.481Z [INFO] payment-service - Auth event: logout - User: user_1015 - IP: 192.168.53.133 - RequestID: d28ytw2cu4 +2025-06-18T15:05:22.581Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1312ms - IP: 192.168.187.199 - User: user_1030 - RequestID: foryugwk9yf +2025-06-18T15:05:22.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.211.72 - RequestID: tr7d0w37i2f +2025-06-18T15:05:22.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.144.38 - RequestID: g0draqs9vyh +2025-06-18T15:05:22.881Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1895ms - IP: 192.168.247.134 - User: user_1011 - RequestID: uszb48y2uk +2025-06-18T15:05:22.981Z [INFO] notification-service - Operation: notification_queued - Processing time: 177ms - RequestID: h7kxzanmis +2025-06-18T15:05:23.081Z [DEBUG] user-service - Operation: cache_miss - Processing time: 810ms - RequestID: pxbi1ae0nl +2025-06-18T15:05:23.181Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1107ms - IP: 192.168.242.165 - User: user_1036 - RequestID: fmwegueoj1 +2025-06-18T15:05:23.281Z [INFO] auth-service - Operation: notification_queued - Processing time: 821ms - RequestID: aeruvrjfdkv +2025-06-18T15:05:23.381Z [DEBUG] auth-service - Auth event: logout - User: user_1053 - IP: 192.168.13.72 - RequestID: hw1wu7adkjq +2025-06-18T15:05:23.481Z [INFO] order-service - PATCH /api/v1/orders - Status: 200 - Response time: 916ms - IP: 192.168.187.199 - User: user_1003 - RequestID: x818ql4oj8j +2025-06-18T15:05:23.581Z [DEBUG] user-service - Auth event: login_failed - User: user_1046 - IP: 192.168.113.218 - RequestID: 2fq3hxcwq6y +2025-06-18T15:05:23.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 922ms - RequestID: gqsh6pl0k7u +2025-06-18T15:05:23.781Z [TRACE] auth-service - Auth event: password_change - User: user_1002 - IP: 192.168.232.72 - RequestID: l822wa0smy +2025-06-18T15:05:23.881Z [TRACE] notification-service - Operation: order_created - Processing time: 141ms - RequestID: kzjfxyghmgo +2025-06-18T15:05:23.981Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 234ms - Rows affected: 72 - RequestID: 37mco0m1k11 +2025-06-18T15:05:24.081Z [INFO] inventory-service - Auth event: login_failed - User: user_1062 - IP: 192.168.30.79 - RequestID: t15md6ze8kf +2025-06-18T15:05:24.181Z [INFO] auth-service - Auth event: logout - User: user_1060 - IP: 192.168.32.38 - RequestID: vi31impr6g +2025-06-18T15:05:24.281Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 279ms - Rows affected: 12 - RequestID: gvppwo8se59 +2025-06-18T15:05:24.381Z [TRACE] auth-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.159.94 - RequestID: by4vqbh2a7 +2025-06-18T15:05:24.481Z [INFO] notification-service - Database DELETE on orders - Execution time: 58ms - Rows affected: 95 - RequestID: sy6nsjwy0hm +2025-06-18T15:05:24.581Z [TRACE] payment-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.181.225 - RequestID: r23t5p5wamd +2025-06-18T15:05:24.681Z [DEBUG] payment-service - Database DELETE on users - Execution time: 130ms - Rows affected: 57 - RequestID: i2p8ga2wdp +2025-06-18T15:05:24.781Z [TRACE] order-service - Database SELECT on sessions - Execution time: 391ms - Rows affected: 80 - RequestID: mz42kugs6wi +2025-06-18T15:05:24.881Z [INFO] user-service - Operation: webhook_sent - Processing time: 534ms - RequestID: gfeviwfctch +2025-06-18T15:05:24.981Z [DEBUG] user-service - Operation: payment_processed - Processing time: 754ms - RequestID: qt1xcji8r6p +2025-06-18T15:05:25.081Z [INFO] auth-service - Database INSERT on users - Execution time: 165ms - Rows affected: 12 - RequestID: v6ffhc5nw6 +2025-06-18T15:05:25.181Z [DEBUG] payment-service - GET /api/v1/orders - Status: 500 - Response time: 168ms - IP: 192.168.133.7 - User: user_1061 - RequestID: p3e8di3wbum +2025-06-18T15:05:25.281Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 201 - Response time: 1379ms - IP: 192.168.232.72 - User: user_1087 - RequestID: iw6hcj3x1oc +2025-06-18T15:05:25.381Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1026ms - RequestID: trljea2cbr +2025-06-18T15:05:25.481Z [TRACE] notification-service - Operation: email_sent - Processing time: 274ms - RequestID: zy6tcawb1u +2025-06-18T15:05:25.581Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 274ms - Rows affected: 24 - RequestID: tyqgl4lvov +2025-06-18T15:05:25.681Z [INFO] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 352ms - IP: 192.168.13.72 - User: user_1066 - RequestID: q38rkscty3k +2025-06-18T15:05:25.781Z [TRACE] inventory-service - Database INSERT on users - Execution time: 88ms - Rows affected: 4 - RequestID: ljvzgn4bg +2025-06-18T15:05:25.881Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 400 - Response time: 1311ms - IP: 192.168.159.94 - User: user_1034 - RequestID: t5qlfaowpbt +2025-06-18T15:05:25.981Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 503 - Response time: 985ms - IP: 192.168.104.37 - User: user_1021 - RequestID: k49qp9mgmh8 +2025-06-18T15:05:26.081Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 219ms - IP: 192.168.141.100 - User: user_1085 - RequestID: owtcgnsmj3k +2025-06-18T15:05:26.181Z [DEBUG] user-service - Database UPDATE on products - Execution time: 386ms - Rows affected: 64 - RequestID: icc5pgh4vwi +2025-06-18T15:05:26.281Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 834ms - RequestID: p0vhfyqeac +2025-06-18T15:05:26.381Z [DEBUG] user-service - Auth event: login_success - User: user_1098 - IP: 192.168.46.63 - RequestID: il0etg7mkt +2025-06-18T15:05:26.481Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 726ms - RequestID: gbmivctyss +2025-06-18T15:05:26.581Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 1705ms - IP: 192.168.14.77 - User: user_1060 - RequestID: bmvj5rpbt9g +2025-06-18T15:05:26.681Z [INFO] user-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.174.114 - RequestID: 5xldwmnedo5 +2025-06-18T15:05:26.781Z [TRACE] payment-service - Auth event: logout - User: user_1057 - IP: 192.168.11.60 - RequestID: 1ngrw0xoqnl +2025-06-18T15:05:26.881Z [INFO] user-service - Operation: cache_miss - Processing time: 775ms - RequestID: iql8usf5ao +2025-06-18T15:05:26.981Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1697ms - IP: 192.168.194.41 - User: user_1020 - RequestID: evraehsmqcg +2025-06-18T15:05:27.081Z [INFO] payment-service - PUT /api/v1/users - Status: 403 - Response time: 304ms - IP: 192.168.68.158 - User: user_1034 - RequestID: lk67jswjr +2025-06-18T15:05:27.181Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 502 - Response time: 1339ms - IP: 192.168.53.133 - User: user_1046 - RequestID: rsuuunul6sl +2025-06-18T15:05:27.281Z [INFO] user-service - Database SELECT on products - Execution time: 206ms - Rows affected: 9 - RequestID: 875iautqlyc +2025-06-18T15:05:27.381Z [DEBUG] auth-service - PUT /api/v1/users - Status: 500 - Response time: 674ms - IP: 192.168.232.72 - User: user_1067 - RequestID: jle7wbm05c9 +2025-06-18T15:05:27.481Z [DEBUG] auth-service - Database SELECT on products - Execution time: 3ms - Rows affected: 90 - RequestID: 9fc7so1y54 +2025-06-18T15:05:27.581Z [INFO] notification-service - Database SELECT on sessions - Execution time: 492ms - Rows affected: 74 - RequestID: 2kl9hmyri7p +2025-06-18T15:05:27.681Z [TRACE] auth-service - Operation: cache_hit - Processing time: 451ms - RequestID: gbwlveo14z +2025-06-18T15:05:27.781Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1649ms - IP: 192.168.68.158 - User: user_1042 - RequestID: sbwe6vfkg1 +2025-06-18T15:05:27.881Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 143ms - RequestID: m7n888uy1ys +2025-06-18T15:05:27.981Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 200 - Response time: 931ms - IP: 192.168.242.165 - User: user_1022 - RequestID: w59lpx4yibi +2025-06-18T15:05:28.081Z [DEBUG] order-service - Database SELECT on orders - Execution time: 350ms - Rows affected: 3 - RequestID: x3cp167xr88 +2025-06-18T15:05:28.181Z [TRACE] auth-service - Auth event: password_change - User: user_1025 - IP: 192.168.240.169 - RequestID: o9k7r2ab7xs +2025-06-18T15:05:28.281Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1380ms - IP: 192.168.13.72 - User: user_1013 - RequestID: hb0003rgx4 +2025-06-18T15:05:28.381Z [DEBUG] order-service - PATCH /api/v1/users - Status: 502 - Response time: 191ms - IP: 192.168.81.206 - User: user_1034 - RequestID: 45ay0rn742j +2025-06-18T15:05:28.481Z [DEBUG] payment-service - GET /api/v1/users - Status: 401 - Response time: 1641ms - IP: 192.168.46.63 - User: user_1016 - RequestID: 41ow7gfflbj +2025-06-18T15:05:28.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 208ms - RequestID: c6ypobeuavg +2025-06-18T15:05:28.681Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 851ms - RequestID: lkfswd7nzvq +2025-06-18T15:05:28.781Z [INFO] user-service - Database SELECT on products - Execution time: 485ms - Rows affected: 36 - RequestID: mjqaxe51ts +2025-06-18T15:05:28.881Z [TRACE] payment-service - Database DELETE on products - Execution time: 24ms - Rows affected: 92 - RequestID: j1rmo7toxpd +2025-06-18T15:05:28.981Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 238ms - Rows affected: 8 - RequestID: da2fkqgois +2025-06-18T15:05:29.081Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 403 - Response time: 185ms - IP: 192.168.30.79 - User: user_1053 - RequestID: t0t8dcahfta +2025-06-18T15:05:29.181Z [INFO] auth-service - Database DELETE on products - Execution time: 427ms - Rows affected: 82 - RequestID: ep4xw9aqb0v +2025-06-18T15:05:29.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1082 - IP: 192.168.81.206 - RequestID: 1e656rv5lp +2025-06-18T15:05:29.381Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 503 - Response time: 613ms - IP: 192.168.28.146 - User: user_1060 - RequestID: xqytlcmz0i9 +2025-06-18T15:05:29.481Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 362ms - Rows affected: 43 - RequestID: zccg5s37na +2025-06-18T15:05:29.581Z [TRACE] user-service - Database UPDATE on payments - Execution time: 108ms - Rows affected: 38 - RequestID: 37gc5mqojyy +2025-06-18T15:05:29.681Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 62ms - Rows affected: 98 - RequestID: 6wxbjdqb5ml +2025-06-18T15:05:29.781Z [DEBUG] user-service - Database UPDATE on users - Execution time: 187ms - Rows affected: 80 - RequestID: d1e54x8j8o +2025-06-18T15:05:29.881Z [INFO] notification-service - Database SELECT on users - Execution time: 216ms - Rows affected: 0 - RequestID: tubqlpqqmc +2025-06-18T15:05:29.981Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 11ms - Rows affected: 63 - RequestID: 2jyln2ibvcr +2025-06-18T15:05:30.081Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 404 - Response time: 981ms - IP: 192.168.68.128 - User: user_1081 - RequestID: g9y9vxjh9l +2025-06-18T15:05:30.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 266ms - RequestID: h3iertcv1vk +2025-06-18T15:05:30.281Z [INFO] auth-service - Operation: email_sent - Processing time: 500ms - RequestID: kuxfd8dqxod +2025-06-18T15:05:30.381Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 201 - Response time: 31ms - IP: 192.168.97.87 - User: user_1008 - RequestID: vswqwffe3j +2025-06-18T15:05:30.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.170.215 - RequestID: jvynptzwba +2025-06-18T15:05:30.581Z [TRACE] auth-service - Database SELECT on users - Execution time: 373ms - Rows affected: 34 - RequestID: xr80d6nlqf +2025-06-18T15:05:30.681Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 136ms - Rows affected: 25 - RequestID: vl80qmdzrr +2025-06-18T15:05:30.781Z [INFO] auth-service - Auth event: logout - User: user_1010 - IP: 192.168.194.41 - RequestID: 5zm9fegf5p3 +2025-06-18T15:05:30.881Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 303ms - Rows affected: 90 - RequestID: xaji7aubhrn +2025-06-18T15:05:30.981Z [TRACE] inventory-service - Operation: email_sent - Processing time: 683ms - RequestID: ctlndi8bnid +2025-06-18T15:05:31.081Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 215ms - Rows affected: 34 - RequestID: uit2k5m276k +2025-06-18T15:05:31.181Z [TRACE] order-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.189.103 - RequestID: 0qrcitgzf26p +2025-06-18T15:05:31.281Z [TRACE] notification-service - Auth event: password_change - User: user_1065 - IP: 192.168.32.38 - RequestID: v1axwsmjxz +2025-06-18T15:05:31.381Z [DEBUG] notification-service - Auth event: login_failed - User: user_1086 - IP: 192.168.147.171 - RequestID: 5cv8l6z196 +2025-06-18T15:05:31.481Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 47ms - Rows affected: 55 - RequestID: 38nxyajy7ry +2025-06-18T15:05:31.581Z [TRACE] user-service - Auth event: login_failed - User: user_1001 - IP: 192.168.30.79 - RequestID: dvh0uhgtqaw +2025-06-18T15:05:31.681Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1744ms - IP: 192.168.79.141 - User: user_1029 - RequestID: zhkpgkzlpjq +2025-06-18T15:05:31.781Z [TRACE] payment-service - DELETE /api/v1/users - Status: 503 - Response time: 434ms - IP: 192.168.97.87 - User: user_1010 - RequestID: 96mf945w5a8 +2025-06-18T15:05:31.881Z [TRACE] notification-service - Operation: payment_processed - Processing time: 976ms - RequestID: zwhkuuqyir +2025-06-18T15:05:31.981Z [INFO] inventory-service - PUT /api/v1/orders - Status: 502 - Response time: 1094ms - IP: 192.168.44.5 - User: user_1037 - RequestID: xxkth6l4qk +2025-06-18T15:05:32.081Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 73ms - IP: 192.168.144.38 - User: user_1083 - RequestID: labotxze7hk +2025-06-18T15:05:32.181Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 64ms - Rows affected: 42 - RequestID: av7awq45cxm +2025-06-18T15:05:32.281Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 66ms - RequestID: xeuf3vs1xz +2025-06-18T15:05:32.381Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 320ms - Rows affected: 65 - RequestID: 36n5mm1os7p +2025-06-18T15:05:32.481Z [DEBUG] auth-service - Auth event: password_change - User: user_1094 - IP: 192.168.194.41 - RequestID: kz3qqj2ella +2025-06-18T15:05:32.581Z [TRACE] order-service - Auth event: login_failed - User: user_1049 - IP: 192.168.138.123 - RequestID: 5aglnujvosu +2025-06-18T15:05:32.681Z [TRACE] notification-service - Operation: cache_hit - Processing time: 480ms - RequestID: bgvn7j3dljc +2025-06-18T15:05:32.781Z [INFO] notification-service - PUT /api/v1/inventory - Status: 201 - Response time: 525ms - IP: 192.168.81.206 - User: user_1043 - RequestID: p9d2jafwty +2025-06-18T15:05:32.881Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 308ms - Rows affected: 47 - RequestID: wrq584ea40r +2025-06-18T15:05:32.981Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 403 - Response time: 691ms - IP: 192.168.133.7 - User: user_1026 - RequestID: qz9enkfef +2025-06-18T15:05:33.081Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 373ms - Rows affected: 86 - RequestID: ojbod6ciuya +2025-06-18T15:05:33.181Z [DEBUG] auth-service - Auth event: login_failed - User: user_1058 - IP: 192.168.44.5 - RequestID: cc5xmpxlzat +2025-06-18T15:05:33.281Z [DEBUG] payment-service - Operation: email_sent - Processing time: 451ms - RequestID: 4iqs4ljonhx +2025-06-18T15:05:33.381Z [INFO] auth-service - POST /api/v1/inventory - Status: 500 - Response time: 1876ms - IP: 192.168.235.117 - User: user_1002 - RequestID: x6q5wwwq8vo +2025-06-18T15:05:33.481Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 500 - Response time: 628ms - IP: 192.168.79.116 - User: user_1070 - RequestID: 8kr6yfp93ad +2025-06-18T15:05:33.581Z [INFO] auth-service - GET /api/v1/auth/login - Status: 401 - Response time: 1322ms - IP: 192.168.1.152 - User: user_1013 - RequestID: dvwlq988hvh +2025-06-18T15:05:33.681Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 304ms - Rows affected: 57 - RequestID: x40ywj82jf +2025-06-18T15:05:33.781Z [TRACE] auth-service - Auth event: login_success - User: user_1082 - IP: 192.168.85.229 - RequestID: m8q8y3hknyd +2025-06-18T15:05:33.881Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 500 - Response time: 1627ms - IP: 192.168.36.218 - User: user_1073 - RequestID: a6q0mn4243j +2025-06-18T15:05:33.981Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 169ms - Rows affected: 50 - RequestID: s68wppdltuc +2025-06-18T15:05:34.081Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 136ms - Rows affected: 7 - RequestID: d6afy9ms8d +2025-06-18T15:05:34.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1000 - IP: 192.168.97.87 - RequestID: awfk02jb3ip +2025-06-18T15:05:34.281Z [TRACE] user-service - Operation: email_sent - Processing time: 146ms - RequestID: wxubztgchd +2025-06-18T15:05:34.381Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1674ms - IP: 192.168.113.218 - User: user_1052 - RequestID: vwmc7hmxztq +2025-06-18T15:05:34.481Z [INFO] order-service - Database SELECT on users - Execution time: 64ms - Rows affected: 7 - RequestID: bve6b9n0tk9 +2025-06-18T15:05:34.581Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.211.72 - RequestID: r2vhcgqmut8 +2025-06-18T15:05:34.681Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 500 - Response time: 1516ms - IP: 192.168.85.229 - User: user_1013 - RequestID: sjbuilz77mi +2025-06-18T15:05:34.781Z [INFO] user-service - POST /api/v1/users - Status: 403 - Response time: 1166ms - IP: 192.168.181.225 - User: user_1058 - RequestID: 7gmk2chbl1s +2025-06-18T15:05:34.881Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 290ms - Rows affected: 0 - RequestID: v3lyiu5ogk +2025-06-18T15:05:34.981Z [DEBUG] auth-service - Auth event: logout - User: user_1071 - IP: 192.168.133.7 - RequestID: wi3sq2rb9b +2025-06-18T15:05:35.081Z [TRACE] notification-service - Operation: payment_processed - Processing time: 254ms - RequestID: y3ngf36xini +2025-06-18T15:05:35.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.11.60 - RequestID: 2i6rfr5llga +2025-06-18T15:05:35.281Z [INFO] payment-service - Operation: cache_hit - Processing time: 518ms - RequestID: gvfaijbac6d +2025-06-18T15:05:35.381Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 823ms - IP: 192.168.227.77 - User: user_1008 - RequestID: dou64zbs8qk +2025-06-18T15:05:35.481Z [TRACE] user-service - GET /api/v1/orders - Status: 201 - Response time: 1846ms - IP: 192.168.36.218 - User: user_1088 - RequestID: 9iw808aebui +2025-06-18T15:05:35.581Z [TRACE] inventory-service - Operation: order_created - Processing time: 630ms - RequestID: 3azcszflio7 +2025-06-18T15:05:35.681Z [INFO] user-service - Operation: webhook_sent - Processing time: 991ms - RequestID: 92ymy7lgolw +2025-06-18T15:05:35.781Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 65ms - Rows affected: 18 - RequestID: iysdmmhkf8 +2025-06-18T15:05:35.881Z [INFO] auth-service - Database INSERT on sessions - Execution time: 116ms - Rows affected: 19 - RequestID: jwnj2et8rak +2025-06-18T15:05:35.981Z [INFO] user-service - Operation: notification_queued - Processing time: 162ms - RequestID: nwlxwcesjk +2025-06-18T15:05:36.081Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 827ms - RequestID: gvlhb5vld8l +2025-06-18T15:05:36.181Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 56ms - Rows affected: 30 - RequestID: 9ryy2tndfw +2025-06-18T15:05:36.281Z [DEBUG] user-service - Auth event: password_change - User: user_1015 - IP: 192.168.100.240 - RequestID: rtpcegtpl4 +2025-06-18T15:05:36.381Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1805ms - IP: 192.168.242.165 - User: user_1096 - RequestID: a58b6kqba4q +2025-06-18T15:05:36.481Z [DEBUG] notification-service - Operation: email_sent - Processing time: 188ms - RequestID: ddmu7sdptc8 +2025-06-18T15:05:36.581Z [TRACE] inventory-service - Operation: order_created - Processing time: 863ms - RequestID: 7enjznl2mwj +2025-06-18T15:05:36.681Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1449ms - IP: 192.168.79.141 - User: user_1049 - RequestID: kotuwa0n4q +2025-06-18T15:05:36.781Z [TRACE] user-service - Operation: email_sent - Processing time: 992ms - RequestID: sgpuazftf2n +2025-06-18T15:05:36.881Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 106ms - Rows affected: 25 - RequestID: bxoqgwhw4l +2025-06-18T15:05:36.981Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 455ms - RequestID: 9v2qi8d252r +2025-06-18T15:05:37.081Z [DEBUG] inventory-service - Auth event: logout - User: user_1018 - IP: 192.168.31.117 - RequestID: 5sirk47scr +2025-06-18T15:05:37.181Z [TRACE] user-service - POST /api/v1/inventory - Status: 400 - Response time: 71ms - IP: 192.168.46.63 - User: user_1085 - RequestID: hrm6p4roifa +2025-06-18T15:05:37.281Z [INFO] notification-service - Operation: payment_processed - Processing time: 290ms - RequestID: 4elg0r3605h +2025-06-18T15:05:37.381Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.53.133 - RequestID: leh2jkz4hob +2025-06-18T15:05:37.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1013 - IP: 192.168.174.114 - RequestID: wwhfqvfn2gc +2025-06-18T15:05:37.581Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 325ms - Rows affected: 14 - RequestID: nkiw10enzag +2025-06-18T15:05:37.681Z [TRACE] notification-service - Auth event: login_success - User: user_1093 - IP: 192.168.46.63 - RequestID: d6qy0aoqev +2025-06-18T15:05:37.781Z [TRACE] user-service - Auth event: password_change - User: user_1057 - IP: 192.168.167.32 - RequestID: l8fq7csc0tj +2025-06-18T15:05:37.881Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 2ms - Rows affected: 35 - RequestID: d46ej0ja0jr +2025-06-18T15:05:37.981Z [TRACE] user-service - Database UPDATE on payments - Execution time: 482ms - Rows affected: 96 - RequestID: kelruqg231 +2025-06-18T15:05:38.081Z [INFO] user-service - Database UPDATE on payments - Execution time: 115ms - Rows affected: 30 - RequestID: 54qvghbejeb +2025-06-18T15:05:38.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1032 - IP: 192.168.187.199 - RequestID: ub28p0mqfqq +2025-06-18T15:05:38.281Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 643ms - RequestID: k9jr7c8620q +2025-06-18T15:05:38.381Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 889ms - RequestID: fnj8dkbkvmn +2025-06-18T15:05:38.481Z [DEBUG] user-service - Auth event: logout - User: user_1067 - IP: 192.168.240.169 - RequestID: 8xcn5f6smsa +2025-06-18T15:05:38.581Z [INFO] auth-service - Database DELETE on orders - Execution time: 47ms - Rows affected: 79 - RequestID: r86mr3imv7e +2025-06-18T15:05:38.681Z [TRACE] notification-service - Database UPDATE on users - Execution time: 320ms - Rows affected: 41 - RequestID: lnvqdfouzvo +2025-06-18T15:05:38.781Z [TRACE] notification-service - Database DELETE on users - Execution time: 377ms - Rows affected: 9 - RequestID: raoblgqsf3g +2025-06-18T15:05:38.881Z [INFO] user-service - Auth event: login_failed - User: user_1046 - IP: 192.168.36.218 - RequestID: 0z8r00zvtzf +2025-06-18T15:05:38.981Z [INFO] order-service - Database SELECT on users - Execution time: 64ms - Rows affected: 21 - RequestID: z9yjeie2v9 +2025-06-18T15:05:39.081Z [INFO] inventory-service - Operation: cache_hit - Processing time: 59ms - RequestID: 15qeb0myc2hj +2025-06-18T15:05:39.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.194.41 - RequestID: fslrgc6jflv +2025-06-18T15:05:39.281Z [TRACE] user-service - Auth event: login_failed - User: user_1028 - IP: 192.168.187.199 - RequestID: 3360fl1qb4y +2025-06-18T15:05:39.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1094 - IP: 192.168.170.215 - RequestID: 3j627nmf37x +2025-06-18T15:05:39.481Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 397ms - RequestID: bj81obzvpns +2025-06-18T15:05:39.581Z [DEBUG] auth-service - Auth event: password_change - User: user_1048 - IP: 192.168.33.76 - RequestID: 7bucxnmqgnq +2025-06-18T15:05:39.681Z [INFO] user-service - Auth event: login_success - User: user_1044 - IP: 192.168.32.38 - RequestID: 61ru50hva72 +2025-06-18T15:05:39.781Z [INFO] inventory-service - Database INSERT on payments - Execution time: 221ms - Rows affected: 52 - RequestID: y4itmf0gi1p +2025-06-18T15:05:39.881Z [INFO] auth-service - PUT /api/v1/orders - Status: 503 - Response time: 1457ms - IP: 192.168.174.114 - User: user_1011 - RequestID: a40bqdtr4r4 +2025-06-18T15:05:39.981Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.158.144 - RequestID: l1mxhgm5bx +2025-06-18T15:05:40.081Z [INFO] order-service - Database INSERT on products - Execution time: 380ms - Rows affected: 74 - RequestID: zmroq7a02kr +2025-06-18T15:05:40.181Z [TRACE] inventory-service - GET /api/v1/orders - Status: 200 - Response time: 51ms - IP: 192.168.79.116 - User: user_1044 - RequestID: 6kqkoqydfes +2025-06-18T15:05:40.281Z [DEBUG] payment-service - PUT /api/v1/users - Status: 500 - Response time: 1818ms - IP: 192.168.196.226 - User: user_1046 - RequestID: c8rmqf93v14 +2025-06-18T15:05:40.381Z [DEBUG] auth-service - Auth event: logout - User: user_1039 - IP: 192.168.242.165 - RequestID: y53djcq0di8 +2025-06-18T15:05:40.481Z [TRACE] payment-service - Operation: email_sent - Processing time: 225ms - RequestID: c0a385pvlca +2025-06-18T15:05:40.581Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1209ms - IP: 192.168.11.60 - User: user_1058 - RequestID: 3asguvkssgh +2025-06-18T15:05:40.681Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 201 - Response time: 663ms - IP: 192.168.174.114 - User: user_1060 - RequestID: urua4m2weao +2025-06-18T15:05:40.781Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1031ms - IP: 192.168.227.233 - User: user_1097 - RequestID: y6mea56wv8j +2025-06-18T15:05:40.881Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 1014ms - RequestID: b9sdn4t9xcb +2025-06-18T15:05:40.981Z [TRACE] inventory-service - Database SELECT on products - Execution time: 207ms - Rows affected: 78 - RequestID: n3j2rsaq7x +2025-06-18T15:05:41.081Z [TRACE] user-service - Operation: cache_hit - Processing time: 776ms - RequestID: l32f8u4q4ts +2025-06-18T15:05:41.181Z [TRACE] auth-service - POST /api/v1/users - Status: 201 - Response time: 1014ms - IP: 192.168.147.171 - User: user_1092 - RequestID: nr7j3s06ez +2025-06-18T15:05:41.281Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 531ms - RequestID: asa3lrg5fog +2025-06-18T15:05:41.381Z [INFO] inventory-service - Auth event: logout - User: user_1067 - IP: 192.168.79.116 - RequestID: ub40z6qaje +2025-06-18T15:05:41.481Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 553ms - RequestID: 619dvv8q5if +2025-06-18T15:05:41.581Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 201 - Response time: 805ms - IP: 192.168.138.123 - User: user_1095 - RequestID: xvi88l4xdi +2025-06-18T15:05:41.681Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 132ms - Rows affected: 98 - RequestID: u5ops1ecx78 +2025-06-18T15:05:41.781Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 403 - Response time: 1081ms - IP: 192.168.227.233 - User: user_1042 - RequestID: z9h54b0pq9q +2025-06-18T15:05:41.881Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 450ms - RequestID: 519sfhs9yg8 +2025-06-18T15:05:41.981Z [DEBUG] auth-service - Operation: order_created - Processing time: 396ms - RequestID: vv4igfte01n +2025-06-18T15:05:42.081Z [TRACE] auth-service - GET /api/v1/payments - Status: 400 - Response time: 1763ms - IP: 192.168.10.184 - User: user_1073 - RequestID: aatnk030gq +2025-06-18T15:05:42.181Z [TRACE] auth-service - Database INSERT on orders - Execution time: 133ms - Rows affected: 40 - RequestID: fxr9t4f1jq5 +2025-06-18T15:05:42.281Z [DEBUG] order-service - Operation: cache_miss - Processing time: 582ms - RequestID: 0v4yot4foq2 +2025-06-18T15:05:42.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1078 - IP: 192.168.133.7 - RequestID: bbjw7bz26j +2025-06-18T15:05:42.481Z [INFO] user-service - PUT /api/v1/payments - Status: 400 - Response time: 1650ms - IP: 192.168.68.128 - User: user_1066 - RequestID: vgauslmtvj +2025-06-18T15:05:42.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.229.123 - RequestID: 95tvakow0yi +2025-06-18T15:05:42.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1017 - IP: 192.168.53.133 - RequestID: n4mz4uk4jc +2025-06-18T15:05:42.781Z [INFO] auth-service - Operation: email_sent - Processing time: 896ms - RequestID: m5ly8em3m3 +2025-06-18T15:05:42.881Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 334ms - RequestID: fvsmy57ft46 +2025-06-18T15:05:42.981Z [TRACE] auth-service - Auth event: logout - User: user_1015 - IP: 192.168.79.116 - RequestID: kbdcrb9s1yc +2025-06-18T15:05:43.081Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 903ms - IP: 192.168.104.37 - User: user_1014 - RequestID: cfsw6517dnb +2025-06-18T15:05:43.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.104.37 - RequestID: fuwjlzdhext +2025-06-18T15:05:43.281Z [DEBUG] user-service - Operation: notification_queued - Processing time: 532ms - RequestID: yde8l9ijo2a +2025-06-18T15:05:43.381Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 449ms - RequestID: yr86baxedk +2025-06-18T15:05:43.481Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 312ms - Rows affected: 17 - RequestID: ia6k9ny0be +2025-06-18T15:05:43.581Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 404 - Response time: 797ms - IP: 192.168.196.226 - User: user_1081 - RequestID: lpsg3wxx33o +2025-06-18T15:05:43.681Z [INFO] order-service - GET /api/v1/inventory - Status: 201 - Response time: 168ms - IP: 192.168.1.152 - User: user_1022 - RequestID: a6v9mgt1pn +2025-06-18T15:05:43.781Z [INFO] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 1606ms - IP: 192.168.113.218 - User: user_1004 - RequestID: jxmoeyqqgns +2025-06-18T15:05:43.881Z [INFO] order-service - Database SELECT on orders - Execution time: 426ms - Rows affected: 51 - RequestID: yjlnpatdob +2025-06-18T15:05:43.981Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 274ms - Rows affected: 98 - RequestID: pf65n9n5dwc +2025-06-18T15:05:44.081Z [INFO] auth-service - Database DELETE on users - Execution time: 149ms - Rows affected: 16 - RequestID: zwsob6ui3rj +2025-06-18T15:05:44.181Z [TRACE] payment-service - Operation: email_sent - Processing time: 961ms - RequestID: g41qgqisnxj +2025-06-18T15:05:44.281Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 487ms - RequestID: vvm9csigo6i +2025-06-18T15:05:44.381Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 457ms - Rows affected: 12 - RequestID: 37ym3ty4bv8 +2025-06-18T15:05:44.481Z [INFO] inventory-service - Operation: order_created - Processing time: 570ms - RequestID: vmfypahrlbj +2025-06-18T15:05:44.581Z [INFO] order-service - GET /api/v1/users - Status: 502 - Response time: 31ms - IP: 192.168.79.116 - User: user_1008 - RequestID: kmsedumo29 +2025-06-18T15:05:44.681Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 935ms - RequestID: l325xz53lqs +2025-06-18T15:05:44.781Z [INFO] notification-service - Database UPDATE on products - Execution time: 51ms - Rows affected: 73 - RequestID: hnfwl4sj66m +2025-06-18T15:05:44.881Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 448ms - Rows affected: 3 - RequestID: 6p01j4qzeuu +2025-06-18T15:05:44.981Z [DEBUG] user-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.64.33 - RequestID: idkw5lawmcb +2025-06-18T15:05:45.081Z [INFO] order-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.158.144 - RequestID: 6i0gdeuoe95 +2025-06-18T15:05:45.181Z [INFO] user-service - Database INSERT on orders - Execution time: 211ms - Rows affected: 97 - RequestID: cpr95tjbahe +2025-06-18T15:05:45.281Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 290ms - Rows affected: 57 - RequestID: zrn37hp13e +2025-06-18T15:05:45.381Z [TRACE] user-service - Auth event: login_success - User: user_1045 - IP: 192.168.97.87 - RequestID: 99jtjcfzzwd +2025-06-18T15:05:45.481Z [TRACE] user-service - Auth event: logout - User: user_1071 - IP: 192.168.174.114 - RequestID: 3rmt1ksurhg +2025-06-18T15:05:45.581Z [TRACE] user-service - GET /api/v1/orders - Status: 201 - Response time: 1135ms - IP: 192.168.68.158 - User: user_1073 - RequestID: t1ndwkr0t4g +2025-06-18T15:05:45.681Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 1ms - Rows affected: 83 - RequestID: 30p5b0vjydy +2025-06-18T15:05:45.781Z [INFO] order-service - Database INSERT on payments - Execution time: 422ms - Rows affected: 36 - RequestID: ismt3gq98kr +2025-06-18T15:05:45.881Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 358ms - IP: 192.168.79.116 - User: user_1009 - RequestID: mnevq3lv97m +2025-06-18T15:05:45.981Z [INFO] payment-service - Auth event: login_success - User: user_1010 - IP: 192.168.235.117 - RequestID: eaxgp2gw6z +2025-06-18T15:05:46.081Z [DEBUG] order-service - Database SELECT on users - Execution time: 374ms - Rows affected: 5 - RequestID: ljsrx1h1zy +2025-06-18T15:05:46.181Z [TRACE] notification-service - Auth event: login_success - User: user_1026 - IP: 192.168.227.233 - RequestID: usvkfl64mah +2025-06-18T15:05:46.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.187.199 - RequestID: sae7nkpex7f +2025-06-18T15:05:46.381Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 446ms - Rows affected: 76 - RequestID: inwj0z9tih +2025-06-18T15:05:46.481Z [TRACE] user-service - Auth event: login_failed - User: user_1042 - IP: 192.168.174.114 - RequestID: 27ft47l9tar +2025-06-18T15:05:46.581Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 682ms - RequestID: 4ndzfzzpt8p +2025-06-18T15:05:46.681Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1004 - IP: 192.168.138.123 - RequestID: g1m5hbm23yu +2025-06-18T15:05:46.781Z [TRACE] payment-service - Database DELETE on users - Execution time: 283ms - Rows affected: 88 - RequestID: g90a2vika2v +2025-06-18T15:05:46.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.33.76 - RequestID: 7szg60yvagi +2025-06-18T15:05:46.981Z [DEBUG] order-service - Database SELECT on users - Execution time: 179ms - Rows affected: 34 - RequestID: d6p3dw6ulq +2025-06-18T15:05:47.081Z [INFO] payment-service - Database SELECT on users - Execution time: 279ms - Rows affected: 17 - RequestID: 0i9aixiqnuh +2025-06-18T15:05:47.181Z [DEBUG] payment-service - Auth event: password_change - User: user_1085 - IP: 192.168.81.206 - RequestID: usdvzn6s6g +2025-06-18T15:05:47.281Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 503 - Response time: 1261ms - IP: 192.168.33.76 - User: user_1094 - RequestID: 7styccikq89 +2025-06-18T15:05:47.381Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 191ms - Rows affected: 42 - RequestID: hryq3rxlsvd +2025-06-18T15:05:47.481Z [INFO] notification-service - Database DELETE on sessions - Execution time: 340ms - Rows affected: 29 - RequestID: cak7u9lbmyd +2025-06-18T15:05:47.581Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1067ms - IP: 192.168.147.171 - User: user_1054 - RequestID: ibu0w091scs +2025-06-18T15:05:47.681Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 82ms - RequestID: dmhpparkta4 +2025-06-18T15:05:47.781Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 358ms - Rows affected: 27 - RequestID: g62wnjoillp +2025-06-18T15:05:47.881Z [TRACE] user-service - Operation: notification_queued - Processing time: 846ms - RequestID: fmitfptq6r +2025-06-18T15:05:47.981Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 402ms - RequestID: kzdun3w71re +2025-06-18T15:05:48.081Z [INFO] auth-service - GET /api/v1/payments - Status: 503 - Response time: 98ms - IP: 192.168.196.226 - User: user_1018 - RequestID: zxn5r6onype +2025-06-18T15:05:48.181Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 200 - Response time: 1709ms - IP: 192.168.33.76 - User: user_1019 - RequestID: em4hmgqrwe5 +2025-06-18T15:05:48.281Z [INFO] order-service - Database DELETE on payments - Execution time: 195ms - Rows affected: 83 - RequestID: vicg5thd9bl +2025-06-18T15:05:48.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.36.218 - RequestID: dca4w653veo +2025-06-18T15:05:48.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 447ms - RequestID: lzreysubvvm +2025-06-18T15:05:48.581Z [TRACE] notification-service - Operation: notification_queued - Processing time: 902ms - RequestID: 4d2ogt4093j +2025-06-18T15:05:48.681Z [TRACE] user-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.227.77 - RequestID: qzi4677lwra +2025-06-18T15:05:48.781Z [INFO] order-service - GET /api/v1/orders - Status: 200 - Response time: 1372ms - IP: 192.168.144.38 - User: user_1079 - RequestID: lxedi041el +2025-06-18T15:05:48.881Z [DEBUG] payment-service - Auth event: logout - User: user_1073 - IP: 192.168.1.152 - RequestID: xtcp8ysfmx +2025-06-18T15:05:48.981Z [TRACE] auth-service - Auth event: logout - User: user_1024 - IP: 192.168.64.33 - RequestID: mzwo1lub42b +2025-06-18T15:05:49.081Z [DEBUG] notification-service - Operation: order_created - Processing time: 1002ms - RequestID: mn1zmxskpv9 +2025-06-18T15:05:49.181Z [INFO] notification-service - Operation: cache_miss - Processing time: 689ms - RequestID: yv5xx99bngf +2025-06-18T15:05:49.281Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 485ms - IP: 192.168.14.77 - User: user_1034 - RequestID: bt3fk2u3alv +2025-06-18T15:05:49.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.144.38 - RequestID: jrpngtnf74g +2025-06-18T15:05:49.481Z [TRACE] payment-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.68.128 - RequestID: v5ol2kp3giq +2025-06-18T15:05:49.581Z [INFO] payment-service - Database UPDATE on orders - Execution time: 259ms - Rows affected: 19 - RequestID: nqdout3783s +2025-06-18T15:05:49.681Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 633ms - RequestID: r07b0cr9xmi +2025-06-18T15:05:49.781Z [TRACE] notification-service - Auth event: password_change - User: user_1066 - IP: 192.168.1.152 - RequestID: jjfr6fxr7t +2025-06-18T15:05:49.881Z [INFO] payment-service - Database INSERT on orders - Execution time: 207ms - Rows affected: 62 - RequestID: 9t99ktdxv15 +2025-06-18T15:05:49.981Z [TRACE] user-service - Database SELECT on products - Execution time: 305ms - Rows affected: 15 - RequestID: tg6k5nae6b +2025-06-18T15:05:50.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.240.169 - RequestID: ugzbfk5zctn +2025-06-18T15:05:50.181Z [TRACE] payment-service - Auth event: login_success - User: user_1049 - IP: 192.168.53.133 - RequestID: 05jbn2h62fqq +2025-06-18T15:05:50.281Z [INFO] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 1785ms - IP: 192.168.79.141 - User: user_1028 - RequestID: 4k62sja037w +2025-06-18T15:05:50.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 87ms - RequestID: 6z70spsftkq +2025-06-18T15:05:50.481Z [TRACE] auth-service - Auth event: login_failed - User: user_1030 - IP: 192.168.189.103 - RequestID: b88f06t7oxf +2025-06-18T15:05:50.581Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 445ms - Rows affected: 83 - RequestID: jr7lwygzdfb +2025-06-18T15:05:50.681Z [INFO] inventory-service - Operation: order_created - Processing time: 988ms - RequestID: lol4f7nvd1m +2025-06-18T15:05:50.781Z [TRACE] payment-service - PUT /api/v1/users - Status: 404 - Response time: 1691ms - IP: 192.168.159.94 - User: user_1036 - RequestID: wjql800hh6 +2025-06-18T15:05:50.881Z [INFO] user-service - Operation: webhook_sent - Processing time: 468ms - RequestID: i3fsz92qq0j +2025-06-18T15:05:50.981Z [INFO] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 503ms - IP: 192.168.53.133 - User: user_1095 - RequestID: tjxezhplshh +2025-06-18T15:05:51.081Z [INFO] auth-service - Database SELECT on products - Execution time: 490ms - Rows affected: 80 - RequestID: clw1ike9b9l +2025-06-18T15:05:51.181Z [TRACE] order-service - Database INSERT on products - Execution time: 78ms - Rows affected: 79 - RequestID: nk68ij45rg9 +2025-06-18T15:05:51.281Z [TRACE] order-service - Operation: payment_processed - Processing time: 285ms - RequestID: exd9xjqei3j +2025-06-18T15:05:51.381Z [TRACE] notification-service - Database DELETE on orders - Execution time: 117ms - Rows affected: 72 - RequestID: 2g4b8xgpezo +2025-06-18T15:05:51.481Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 500 - Response time: 1145ms - IP: 192.168.227.77 - User: user_1092 - RequestID: 4660buw2m5t +2025-06-18T15:05:51.581Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 136ms - Rows affected: 55 - RequestID: pohdxbuxe8p +2025-06-18T15:05:51.681Z [INFO] order-service - Auth event: password_change - User: user_1049 - IP: 192.168.46.63 - RequestID: 5niteyapqod +2025-06-18T15:05:51.781Z [INFO] user-service - DELETE /api/v1/inventory - Status: 401 - Response time: 32ms - IP: 192.168.64.33 - User: user_1065 - RequestID: l4epnl79ug +2025-06-18T15:05:51.881Z [INFO] payment-service - Operation: inventory_updated - Processing time: 835ms - RequestID: t08ji8xso0g +2025-06-18T15:05:51.981Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 121ms - Rows affected: 86 - RequestID: mp6yd1y032n +2025-06-18T15:05:52.081Z [TRACE] notification-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.113.218 - RequestID: ike5qslpk2a +2025-06-18T15:05:52.181Z [TRACE] auth-service - Auth event: password_change - User: user_1071 - IP: 192.168.10.184 - RequestID: tqveqn60prh +2025-06-18T15:05:52.281Z [TRACE] auth-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.147.171 - RequestID: z0uc8yyoun +2025-06-18T15:05:52.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1098 - IP: 192.168.104.37 - RequestID: a4j5o14cbvt +2025-06-18T15:05:52.481Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 953ms - RequestID: d31vussm94 +2025-06-18T15:05:52.581Z [DEBUG] order-service - Database DELETE on payments - Execution time: 87ms - Rows affected: 82 - RequestID: 9ma6mqcg4d6 +2025-06-18T15:05:52.681Z [INFO] inventory-service - Auth event: password_change - User: user_1032 - IP: 192.168.85.229 - RequestID: 8t09x90zz5m +2025-06-18T15:05:52.781Z [DEBUG] payment-service - Database INSERT on products - Execution time: 166ms - Rows affected: 64 - RequestID: s52r2hz9d9n +2025-06-18T15:05:52.881Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 423ms - Rows affected: 71 - RequestID: n5f22pdp38q +2025-06-18T15:05:52.981Z [DEBUG] notification-service - Auth event: logout - User: user_1012 - IP: 192.168.242.165 - RequestID: j6vm9fpwy6p +2025-06-18T15:05:53.081Z [INFO] user-service - Operation: cache_hit - Processing time: 655ms - RequestID: 0l40qhrneky +2025-06-18T15:05:53.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 715ms - RequestID: 6orb18zslaf +2025-06-18T15:05:53.281Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 599ms - RequestID: mbdvsbteu8 +2025-06-18T15:05:53.381Z [TRACE] payment-service - Database DELETE on payments - Execution time: 288ms - Rows affected: 73 - RequestID: bwoa77nf30v +2025-06-18T15:05:53.481Z [INFO] payment-service - Database DELETE on payments - Execution time: 239ms - Rows affected: 34 - RequestID: o6724rx37jq +2025-06-18T15:05:53.581Z [DEBUG] user-service - GET /api/v1/orders - Status: 500 - Response time: 45ms - IP: 192.168.240.169 - User: user_1015 - RequestID: txlsok3ytr +2025-06-18T15:05:53.681Z [TRACE] payment-service - DELETE /api/v1/users - Status: 502 - Response time: 1010ms - IP: 192.168.229.123 - User: user_1069 - RequestID: mq5lqbauxj +2025-06-18T15:05:53.781Z [INFO] user-service - Database DELETE on products - Execution time: 141ms - Rows affected: 91 - RequestID: 9cdv5n8b0g +2025-06-18T15:05:53.881Z [INFO] notification-service - DELETE /api/v1/orders - Status: 500 - Response time: 1957ms - IP: 192.168.53.133 - User: user_1040 - RequestID: g6dg1c7gdah +2025-06-18T15:05:53.981Z [TRACE] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 519ms - IP: 192.168.194.41 - User: user_1025 - RequestID: d17j2elm7z4 +2025-06-18T15:05:54.081Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 420ms - Rows affected: 61 - RequestID: ebrs4bbfax +2025-06-18T15:05:54.181Z [TRACE] payment-service - Database SELECT on users - Execution time: 168ms - Rows affected: 54 - RequestID: fmwtknrndr +2025-06-18T15:05:54.281Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 255ms - Rows affected: 52 - RequestID: o1g4lc1gcol +2025-06-18T15:05:54.381Z [INFO] order-service - GET /api/v1/payments - Status: 201 - Response time: 927ms - IP: 192.168.181.225 - User: user_1017 - RequestID: 1gzpn1wn8pn +2025-06-18T15:05:54.481Z [TRACE] inventory-service - GET /api/v1/payments - Status: 400 - Response time: 1604ms - IP: 192.168.79.141 - User: user_1063 - RequestID: 5cig9iuvj5o +2025-06-18T15:05:54.581Z [INFO] notification-service - Operation: payment_processed - Processing time: 480ms - RequestID: 5i2ub611yga +2025-06-18T15:05:54.681Z [INFO] order-service - POST /api/v1/orders - Status: 201 - Response time: 15ms - IP: 192.168.44.5 - User: user_1054 - RequestID: 3vbase44lry +2025-06-18T15:05:54.781Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 200 - Response time: 1976ms - IP: 192.168.242.165 - User: user_1015 - RequestID: zlzseol1mka +2025-06-18T15:05:54.881Z [INFO] order-service - Auth event: logout - User: user_1097 - IP: 192.168.141.100 - RequestID: g0abqtqeia7 +2025-06-18T15:05:54.981Z [TRACE] order-service - Database UPDATE on users - Execution time: 129ms - Rows affected: 95 - RequestID: t4dg0a393u +2025-06-18T15:05:55.081Z [TRACE] notification-service - Database UPDATE on users - Execution time: 473ms - Rows affected: 27 - RequestID: e0ywzrx1oi +2025-06-18T15:05:55.181Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 286ms - Rows affected: 19 - RequestID: zsfh18opijc +2025-06-18T15:05:55.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.144.38 - RequestID: pjkdj1u6aq +2025-06-18T15:05:55.381Z [INFO] auth-service - Auth event: password_change - User: user_1025 - IP: 192.168.30.79 - RequestID: 17zvqb816p5 +2025-06-18T15:05:55.481Z [TRACE] inventory-service - Database DELETE on products - Execution time: 218ms - Rows affected: 38 - RequestID: 9febxya3sd +2025-06-18T15:05:55.581Z [INFO] user-service - DELETE /api/v1/orders - Status: 201 - Response time: 75ms - IP: 192.168.32.38 - User: user_1066 - RequestID: fpgwrlh9dtf +2025-06-18T15:05:55.681Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 403 - Response time: 900ms - IP: 192.168.196.226 - User: user_1002 - RequestID: 4f58l8mzuwv +2025-06-18T15:05:55.781Z [DEBUG] order-service - Auth event: login_success - User: user_1007 - IP: 192.168.133.7 - RequestID: ml5jbsrv4si +2025-06-18T15:05:55.881Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 425ms - IP: 192.168.1.152 - User: user_1017 - RequestID: ckvr5ouf4nf +2025-06-18T15:05:55.981Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 549ms - IP: 192.168.167.32 - User: user_1048 - RequestID: z1ih01riwhp +2025-06-18T15:05:56.081Z [TRACE] order-service - POST /api/v1/users - Status: 404 - Response time: 1151ms - IP: 192.168.147.171 - User: user_1040 - RequestID: ipsw9kc4zfj +2025-06-18T15:05:56.181Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 356ms - Rows affected: 88 - RequestID: y0f6fz3wjgq +2025-06-18T15:05:56.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.235.117 - RequestID: m69ztwxl8nj +2025-06-18T15:05:56.381Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 164ms - IP: 192.168.196.226 - User: user_1018 - RequestID: m08ljw7lcbg +2025-06-18T15:05:56.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 814ms - RequestID: l74ix435h2 +2025-06-18T15:05:56.581Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 236ms - Rows affected: 18 - RequestID: 2gd02m9zt0p +2025-06-18T15:05:56.681Z [TRACE] notification-service - Database SELECT on payments - Execution time: 241ms - Rows affected: 40 - RequestID: r0712woi1i +2025-06-18T15:05:56.781Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 1208ms - IP: 192.168.14.77 - User: user_1014 - RequestID: v8cbdyp777 +2025-06-18T15:05:56.881Z [TRACE] notification-service - Auth event: password_change - User: user_1004 - IP: 192.168.32.38 - RequestID: fk7mz2rwayi +2025-06-18T15:05:56.981Z [DEBUG] user-service - Auth event: login_failed - User: user_1021 - IP: 192.168.227.77 - RequestID: qg304bcnxm +2025-06-18T15:05:57.081Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 503 - Response time: 1875ms - IP: 192.168.68.158 - User: user_1093 - RequestID: jigb5xee3fs +2025-06-18T15:05:57.181Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 905ms - RequestID: o9aak6ydvq +2025-06-18T15:05:57.281Z [INFO] auth-service - DELETE /api/v1/orders - Status: 401 - Response time: 556ms - IP: 192.168.31.117 - User: user_1047 - RequestID: ogc0k3dbj3 +2025-06-18T15:05:57.381Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.79.143 - RequestID: x97uy3s9rwj +2025-06-18T15:05:57.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1059 - IP: 192.168.240.169 - RequestID: av7414zrlx6 +2025-06-18T15:05:57.581Z [DEBUG] auth-service - Auth event: login_success - User: user_1058 - IP: 192.168.1.152 - RequestID: mhbd81qpm5 +2025-06-18T15:05:57.681Z [INFO] auth-service - Auth event: login_success - User: user_1013 - IP: 192.168.113.218 - RequestID: ha6xdg3jy7a +2025-06-18T15:05:57.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 934ms - RequestID: ih6r3gol52c +2025-06-18T15:05:57.881Z [INFO] notification-service - Database UPDATE on orders - Execution time: 436ms - Rows affected: 98 - RequestID: u1t8cfx2ors +2025-06-18T15:05:57.981Z [TRACE] notification-service - Operation: order_created - Processing time: 917ms - RequestID: 64pihl3g0qx +2025-06-18T15:05:58.081Z [INFO] auth-service - Operation: payment_processed - Processing time: 323ms - RequestID: fhykate1u8m +2025-06-18T15:05:58.181Z [INFO] inventory-service - Database UPDATE on products - Execution time: 249ms - Rows affected: 75 - RequestID: 0c7espeapw1b +2025-06-18T15:05:58.281Z [INFO] order-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1854ms - IP: 192.168.227.77 - User: user_1041 - RequestID: i1id2ml7ge +2025-06-18T15:05:58.381Z [TRACE] order-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.174.114 - RequestID: mjc4il6kf4q +2025-06-18T15:05:58.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.44.5 - RequestID: an3aiut1plu +2025-06-18T15:05:58.581Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 404 - Response time: 286ms - IP: 192.168.196.226 - User: user_1030 - RequestID: 46gv08mrhg8 +2025-06-18T15:05:58.681Z [INFO] notification-service - Database UPDATE on orders - Execution time: 210ms - Rows affected: 22 - RequestID: nmufzvdtetd +2025-06-18T15:05:58.781Z [INFO] inventory-service - POST /api/v1/inventory - Status: 404 - Response time: 480ms - IP: 192.168.196.226 - User: user_1063 - RequestID: aujrtj13dxd +2025-06-18T15:05:58.881Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 642ms - RequestID: xw8ql6jbwhd +2025-06-18T15:05:58.981Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 107ms - Rows affected: 3 - RequestID: 91us1b8norg +2025-06-18T15:05:59.081Z [INFO] auth-service - Auth event: logout - User: user_1056 - IP: 192.168.79.141 - RequestID: lrc6cw0a4ic +2025-06-18T15:05:59.181Z [INFO] user-service - PUT /api/v1/orders - Status: 502 - Response time: 527ms - IP: 192.168.227.233 - User: user_1022 - RequestID: fymif0hqab4 +2025-06-18T15:05:59.281Z [TRACE] notification-service - GET /api/v1/auth/login - Status: 401 - Response time: 1797ms - IP: 192.168.240.169 - User: user_1089 - RequestID: 1b41xgs77tg +2025-06-18T15:05:59.381Z [INFO] order-service - PATCH /api/v1/users - Status: 502 - Response time: 1574ms - IP: 192.168.187.199 - User: user_1039 - RequestID: 8ajks6hfzp +2025-06-18T15:05:59.481Z [INFO] user-service - Auth event: login_failed - User: user_1098 - IP: 192.168.97.87 - RequestID: 94s6vcvm5xi +2025-06-18T15:05:59.581Z [TRACE] payment-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.81.206 - RequestID: bgud1ta5l4f +2025-06-18T15:05:59.681Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1163ms - IP: 192.168.181.225 - User: user_1051 - RequestID: auppypk416u +2025-06-18T15:05:59.781Z [TRACE] payment-service - Database UPDATE on users - Execution time: 218ms - Rows affected: 28 - RequestID: sjug8u61u7c +2025-06-18T15:05:59.881Z [TRACE] user-service - Database SELECT on payments - Execution time: 49ms - Rows affected: 3 - RequestID: xjv9ldgwgoj +2025-06-18T15:05:59.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.189.103 - RequestID: 263z9zndxo +2025-06-18T15:06:00.081Z [INFO] user-service - Operation: order_created - Processing time: 477ms - RequestID: 62mcyruze5i +2025-06-18T15:06:00.181Z [INFO] notification-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.32.38 - RequestID: hhvifle5zo6 +2025-06-18T15:06:00.281Z [INFO] order-service - Auth event: login_failed - User: user_1036 - IP: 192.168.64.33 - RequestID: r0cjq9trzeq +2025-06-18T15:06:00.381Z [INFO] notification-service - Database SELECT on payments - Execution time: 312ms - Rows affected: 73 - RequestID: b8qc3zu5hx +2025-06-18T15:06:00.481Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 504ms - RequestID: n0jsg6rcrw +2025-06-18T15:06:00.581Z [TRACE] order-service - Operation: order_created - Processing time: 88ms - RequestID: 7d6nwdowts8 +2025-06-18T15:06:00.681Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1971ms - IP: 192.168.1.152 - User: user_1087 - RequestID: dhfda5idy1m +2025-06-18T15:06:00.781Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 766ms - RequestID: g4xhhozkfq7 +2025-06-18T15:06:00.881Z [TRACE] payment-service - Auth event: logout - User: user_1013 - IP: 192.168.196.226 - RequestID: 8fpj8thfe4f +2025-06-18T15:06:00.981Z [DEBUG] user-service - Operation: cache_miss - Processing time: 674ms - RequestID: rmlr2b2d5h +2025-06-18T15:06:01.081Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 683ms - RequestID: zz22mj8wya +2025-06-18T15:06:01.181Z [TRACE] user-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.53.133 - RequestID: ot02cg8bcjk +2025-06-18T15:06:01.281Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.133.7 - RequestID: corvjvfiwhw +2025-06-18T15:06:01.381Z [DEBUG] order-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.211.72 - RequestID: xynsmq3wl1r +2025-06-18T15:06:01.481Z [TRACE] user-service - Database SELECT on products - Execution time: 192ms - Rows affected: 56 - RequestID: onxkjb48wp7 +2025-06-18T15:06:01.581Z [DEBUG] user-service - Database UPDATE on products - Execution time: 442ms - Rows affected: 55 - RequestID: u1wsgkkoajq +2025-06-18T15:06:01.681Z [DEBUG] auth-service - Auth event: logout - User: user_1020 - IP: 192.168.194.41 - RequestID: fc47o3dsrr9 +2025-06-18T15:06:01.781Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 400 - Response time: 1875ms - IP: 192.168.240.169 - User: user_1093 - RequestID: ekf5uhbye6d +2025-06-18T15:06:01.881Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 768ms - RequestID: on5tlrrhiop +2025-06-18T15:06:01.981Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 404 - Response time: 1680ms - IP: 192.168.28.146 - User: user_1060 - RequestID: 8x0fqbvhymb +2025-06-18T15:06:02.081Z [INFO] order-service - Database SELECT on users - Execution time: 30ms - Rows affected: 47 - RequestID: lilbayoxs7 +2025-06-18T15:06:02.181Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 201 - Response time: 1310ms - IP: 192.168.10.184 - User: user_1028 - RequestID: id58p6t44y +2025-06-18T15:06:02.281Z [INFO] inventory-service - Database SELECT on users - Execution time: 359ms - Rows affected: 48 - RequestID: b984bii4bsr +2025-06-18T15:06:02.381Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 403 - Response time: 886ms - IP: 192.168.227.233 - User: user_1048 - RequestID: jbh3jdsjl +2025-06-18T15:06:02.481Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 184ms - Rows affected: 37 - RequestID: 6kridk7vhuu +2025-06-18T15:06:02.581Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 296ms - Rows affected: 54 - RequestID: lwhbx847s2 +2025-06-18T15:06:02.681Z [INFO] auth-service - DELETE /api/v1/payments - Status: 201 - Response time: 1866ms - IP: 192.168.167.32 - User: user_1041 - RequestID: qxgdm5wg0t +2025-06-18T15:06:02.781Z [INFO] auth-service - GET /api/v1/payments - Status: 201 - Response time: 1198ms - IP: 192.168.68.128 - User: user_1067 - RequestID: qs8omcxik9f +2025-06-18T15:06:02.881Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.181.225 - RequestID: 7gpiyrljd3m +2025-06-18T15:06:02.981Z [DEBUG] order-service - Operation: payment_processed - Processing time: 344ms - RequestID: z965kd16sf +2025-06-18T15:06:03.081Z [INFO] auth-service - Operation: cache_miss - Processing time: 874ms - RequestID: z7en6hgjktg +2025-06-18T15:06:03.181Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 51ms - Rows affected: 30 - RequestID: 2lsxofasvxo +2025-06-18T15:06:03.281Z [INFO] user-service - Database INSERT on users - Execution time: 204ms - Rows affected: 37 - RequestID: p1z2r26chwe +2025-06-18T15:06:03.381Z [INFO] notification-service - GET /api/v1/payments - Status: 500 - Response time: 319ms - IP: 192.168.187.199 - User: user_1036 - RequestID: v9paaxk8s3 +2025-06-18T15:06:03.481Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 256ms - IP: 192.168.1.152 - User: user_1018 - RequestID: 8k0qtqod5vk +2025-06-18T15:06:03.581Z [TRACE] notification-service - Database DELETE on users - Execution time: 34ms - Rows affected: 31 - RequestID: o91aggcfjte +2025-06-18T15:06:03.681Z [TRACE] auth-service - Operation: payment_processed - Processing time: 409ms - RequestID: 9iwyzeuilro +2025-06-18T15:06:03.781Z [INFO] notification-service - Auth event: logout - User: user_1098 - IP: 192.168.36.218 - RequestID: yo3i0ut6mj +2025-06-18T15:06:03.881Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 200 - Response time: 1878ms - IP: 192.168.167.32 - User: user_1077 - RequestID: k5u9imjjk1j +2025-06-18T15:06:03.981Z [INFO] user-service - Database INSERT on payments - Execution time: 98ms - Rows affected: 92 - RequestID: jdm4wahc7b +2025-06-18T15:06:04.081Z [TRACE] notification-service - Auth event: password_change - User: user_1059 - IP: 192.168.1.152 - RequestID: x7z5yy0f4j8 +2025-06-18T15:06:04.181Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 265ms - Rows affected: 62 - RequestID: l6pr4o9fgu +2025-06-18T15:06:04.281Z [INFO] inventory-service - Operation: notification_queued - Processing time: 895ms - RequestID: 6089kiiytyu +2025-06-18T15:06:04.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.85.229 - RequestID: 3imhsvfuita +2025-06-18T15:06:04.481Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 342ms - Rows affected: 14 - RequestID: rpjk3o1u1k +2025-06-18T15:06:04.581Z [TRACE] payment-service - Database SELECT on products - Execution time: 262ms - Rows affected: 68 - RequestID: 54kpkq88rct +2025-06-18T15:06:04.681Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1098ms - IP: 192.168.28.146 - User: user_1010 - RequestID: qppihr71byq +2025-06-18T15:06:04.781Z [INFO] order-service - PATCH /api/v1/payments - Status: 404 - Response time: 1564ms - IP: 192.168.46.63 - User: user_1062 - RequestID: 50dqv2ozzl +2025-06-18T15:06:04.881Z [TRACE] order-service - Operation: email_sent - Processing time: 868ms - RequestID: 1084smvm7tap +2025-06-18T15:06:04.981Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 82ms - IP: 192.168.240.169 - User: user_1018 - RequestID: m3mtwxvetxe +2025-06-18T15:06:05.081Z [INFO] notification-service - Operation: cache_miss - Processing time: 978ms - RequestID: tfm4p0w1wmp +2025-06-18T15:06:05.181Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 262ms - Rows affected: 55 - RequestID: f70yewku3mc +2025-06-18T15:06:05.281Z [INFO] payment-service - Database INSERT on products - Execution time: 23ms - Rows affected: 63 - RequestID: zuvaa7gb49m +2025-06-18T15:06:05.381Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 1485ms - IP: 192.168.211.72 - User: user_1079 - RequestID: 24beycuw9gt +2025-06-18T15:06:05.481Z [DEBUG] payment-service - Auth event: login_success - User: user_1071 - IP: 192.168.64.33 - RequestID: y4nv647bwg +2025-06-18T15:06:05.581Z [INFO] user-service - Database SELECT on orders - Execution time: 488ms - Rows affected: 29 - RequestID: 5xh1po6u55d +2025-06-18T15:06:05.681Z [INFO] notification-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.187.199 - RequestID: isotu1iqph +2025-06-18T15:06:05.781Z [TRACE] user-service - Operation: order_created - Processing time: 690ms - RequestID: wuf8m1z6ol +2025-06-18T15:06:05.881Z [INFO] inventory-service - Operation: order_created - Processing time: 265ms - RequestID: jp5h7016aun +2025-06-18T15:06:05.981Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 529ms - RequestID: uliu8vsx1j +2025-06-18T15:06:06.081Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.232.72 - RequestID: dpqh2ns7nr +2025-06-18T15:06:06.181Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 340ms - Rows affected: 48 - RequestID: y3rwo6zhl8g +2025-06-18T15:06:06.281Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 897ms - RequestID: p0bs5e5et0j +2025-06-18T15:06:06.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1001 - IP: 192.168.113.218 - RequestID: ovr7i9jvr0m +2025-06-18T15:06:06.481Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 436ms - Rows affected: 26 - RequestID: 5khsx1gmy29 +2025-06-18T15:06:06.581Z [INFO] order-service - Operation: webhook_sent - Processing time: 92ms - RequestID: ul1silvxrh +2025-06-18T15:06:06.681Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 406ms - IP: 192.168.13.72 - User: user_1026 - RequestID: nb586ez7woa +2025-06-18T15:06:06.781Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 21ms - Rows affected: 43 - RequestID: jtjd150v78 +2025-06-18T15:06:06.881Z [TRACE] payment-service - Auth event: logout - User: user_1031 - IP: 192.168.14.77 - RequestID: 3g0kdo0ryve +2025-06-18T15:06:06.981Z [TRACE] user-service - Operation: notification_queued - Processing time: 620ms - RequestID: u5brwtzv0qd +2025-06-18T15:06:07.081Z [TRACE] order-service - Auth event: logout - User: user_1082 - IP: 192.168.235.117 - RequestID: s4o9sacbdhh +2025-06-18T15:06:07.181Z [INFO] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 1775ms - IP: 192.168.36.218 - User: user_1000 - RequestID: s1d3503nzik +2025-06-18T15:06:07.281Z [INFO] user-service - Database INSERT on products - Execution time: 110ms - Rows affected: 12 - RequestID: po03d4j215p +2025-06-18T15:06:07.381Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 820ms - RequestID: k390ir64dan +2025-06-18T15:06:07.481Z [TRACE] user-service - Auth event: password_change - User: user_1093 - IP: 192.168.30.79 - RequestID: itvzktuftf +2025-06-18T15:06:07.581Z [TRACE] notification-service - GET /api/v1/orders - Status: 503 - Response time: 726ms - IP: 192.168.194.41 - User: user_1060 - RequestID: 4goip2owovn +2025-06-18T15:06:07.681Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 430ms - Rows affected: 3 - RequestID: lu1x6s6l92e +2025-06-18T15:06:07.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.158.144 - RequestID: czl8zjt82vj +2025-06-18T15:06:07.881Z [TRACE] user-service - Auth event: login_failed - User: user_1052 - IP: 192.168.174.114 - RequestID: 44if6u754v7 +2025-06-18T15:06:07.981Z [TRACE] user-service - Auth event: login_failed - User: user_1055 - IP: 192.168.32.38 - RequestID: vjfis9drzi +2025-06-18T15:06:08.081Z [INFO] inventory-service - POST /api/v1/payments - Status: 404 - Response time: 1219ms - IP: 192.168.13.72 - User: user_1073 - RequestID: stmf06jldo +2025-06-18T15:06:08.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1002 - IP: 192.168.79.143 - RequestID: 8jm46tpifmx +2025-06-18T15:06:08.281Z [DEBUG] inventory-service - POST /api/v1/users - Status: 404 - Response time: 218ms - IP: 192.168.147.171 - User: user_1002 - RequestID: xj7o9l8zkfd +2025-06-18T15:06:08.381Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1718ms - IP: 192.168.32.38 - User: user_1067 - RequestID: sey4n30jrvo +2025-06-18T15:06:08.481Z [TRACE] order-service - Auth event: login_failed - User: user_1045 - IP: 192.168.14.77 - RequestID: h4yru7vtlec +2025-06-18T15:06:08.581Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 110ms - Rows affected: 74 - RequestID: k3xnz6rgqs +2025-06-18T15:06:08.681Z [TRACE] order-service - DELETE /api/v1/orders - Status: 200 - Response time: 964ms - IP: 192.168.227.77 - User: user_1093 - RequestID: z6jpx4s39bs +2025-06-18T15:06:08.781Z [INFO] auth-service - POST /api/v1/users - Status: 404 - Response time: 833ms - IP: 192.168.232.72 - User: user_1061 - RequestID: bbew02uuho +2025-06-18T15:06:08.881Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 856ms - RequestID: qesrm8cxgu +2025-06-18T15:06:08.981Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 401 - Response time: 361ms - IP: 192.168.211.72 - User: user_1034 - RequestID: i5isie4eojs +2025-06-18T15:06:09.081Z [TRACE] notification-service - Auth event: login_success - User: user_1087 - IP: 192.168.174.114 - RequestID: wh9fh94rmgd +2025-06-18T15:06:09.181Z [INFO] inventory-service - PUT /api/v1/orders - Status: 400 - Response time: 1409ms - IP: 192.168.28.146 - User: user_1058 - RequestID: doy5q42nqu +2025-06-18T15:06:09.281Z [INFO] auth-service - Operation: email_sent - Processing time: 655ms - RequestID: sxmak7j72ib +2025-06-18T15:06:09.381Z [DEBUG] payment-service - Auth event: logout - User: user_1032 - IP: 192.168.11.60 - RequestID: ngyitprwz58 +2025-06-18T15:06:09.481Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 456ms - Rows affected: 26 - RequestID: b20srdgmgut +2025-06-18T15:06:09.581Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 201 - Response time: 990ms - IP: 192.168.79.143 - User: user_1098 - RequestID: iltb23lbc6m +2025-06-18T15:06:09.681Z [DEBUG] auth-service - Operation: email_sent - Processing time: 778ms - RequestID: tw5xzqdm2v +2025-06-18T15:06:09.781Z [INFO] user-service - Operation: order_created - Processing time: 147ms - RequestID: 3usjppque1u +2025-06-18T15:06:09.881Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 400 - Response time: 2000ms - IP: 192.168.227.77 - User: user_1043 - RequestID: mmzqe3q8zzg +2025-06-18T15:06:09.981Z [INFO] user-service - Operation: payment_processed - Processing time: 220ms - RequestID: ysakf8jva6c +2025-06-18T15:06:10.081Z [TRACE] payment-service - Auth event: logout - User: user_1002 - IP: 192.168.79.143 - RequestID: ydt4sumhiae +2025-06-18T15:06:10.181Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 200 - Response time: 1141ms - IP: 192.168.174.114 - User: user_1050 - RequestID: px02szh3fx +2025-06-18T15:06:10.281Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 832ms - IP: 192.168.1.152 - User: user_1015 - RequestID: c1rvdq0k5gw +2025-06-18T15:06:10.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 292ms - RequestID: wqb7y57xvzf +2025-06-18T15:06:10.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 887ms - RequestID: fdcaf15abhk +2025-06-18T15:06:10.581Z [DEBUG] order-service - Auth event: logout - User: user_1067 - IP: 192.168.141.100 - RequestID: 20jrf4vwc1y +2025-06-18T15:06:10.681Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 964ms - IP: 192.168.240.169 - User: user_1000 - RequestID: 00km11267t07r +2025-06-18T15:06:10.781Z [TRACE] order-service - POST /api/v1/auth/login - Status: 201 - Response time: 969ms - IP: 192.168.141.100 - User: user_1042 - RequestID: devza8ikvgm +2025-06-18T15:06:10.881Z [DEBUG] payment-service - POST /api/v1/users - Status: 500 - Response time: 1459ms - IP: 192.168.170.215 - User: user_1076 - RequestID: 73tpsfqg1rm +2025-06-18T15:06:10.981Z [INFO] payment-service - PUT /api/v1/orders - Status: 401 - Response time: 1497ms - IP: 192.168.68.128 - User: user_1069 - RequestID: on64jt78l9 +2025-06-18T15:06:11.081Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 356ms - Rows affected: 87 - RequestID: 2j5acmb6hki +2025-06-18T15:06:11.181Z [INFO] notification-service - Operation: webhook_sent - Processing time: 278ms - RequestID: a0jf4p85d5 +2025-06-18T15:06:11.281Z [INFO] auth-service - PUT /api/v1/payments - Status: 401 - Response time: 1956ms - IP: 192.168.167.32 - User: user_1041 - RequestID: ucotcsu3i8 +2025-06-18T15:06:11.381Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.44.5 - RequestID: cikmfk18ugq +2025-06-18T15:06:11.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1093 - IP: 192.168.196.226 - RequestID: c63nsjrk43r +2025-06-18T15:06:11.581Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.36.218 - RequestID: tagxz78ogde +2025-06-18T15:06:11.681Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1663ms - IP: 192.168.158.144 - User: user_1038 - RequestID: y9zfktv1xea +2025-06-18T15:06:11.781Z [INFO] inventory-service - Database DELETE on users - Execution time: 218ms - Rows affected: 62 - RequestID: 45gcmb3na +2025-06-18T15:06:11.881Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1205ms - IP: 192.168.85.229 - User: user_1092 - RequestID: stgcrgobjh +2025-06-18T15:06:11.981Z [INFO] user-service - Operation: email_sent - Processing time: 645ms - RequestID: 4l8fden5xe +2025-06-18T15:06:12.081Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 42ms - Rows affected: 85 - RequestID: jrkbowj6it +2025-06-18T15:06:12.181Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 718ms - IP: 192.168.81.206 - User: user_1018 - RequestID: 90u1mstb06a +2025-06-18T15:06:12.281Z [INFO] order-service - Operation: cache_miss - Processing time: 870ms - RequestID: 8veoejb5fqk +2025-06-18T15:06:12.381Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 101ms - Rows affected: 88 - RequestID: 592dczf8mn4 +2025-06-18T15:06:12.481Z [INFO] payment-service - Database UPDATE on users - Execution time: 114ms - Rows affected: 94 - RequestID: hw5yfuvdao +2025-06-18T15:06:12.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1038 - IP: 192.168.242.165 - RequestID: uvu11ss053 +2025-06-18T15:06:12.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.33.76 - RequestID: rwaau1msrw +2025-06-18T15:06:12.781Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 65ms - Rows affected: 40 - RequestID: 3rm7bfbxwp9 +2025-06-18T15:06:12.881Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 214ms - RequestID: vrrksxvtmjh +2025-06-18T15:06:12.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 199ms - RequestID: g03154crkpb +2025-06-18T15:06:13.081Z [INFO] order-service - Operation: order_created - Processing time: 82ms - RequestID: olfjpzu57u +2025-06-18T15:06:13.181Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 538ms - RequestID: xivlskf5si +2025-06-18T15:06:13.281Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 780ms - RequestID: et9ayze4l8v +2025-06-18T15:06:13.381Z [INFO] order-service - PUT /api/v1/orders - Status: 401 - Response time: 1625ms - IP: 192.168.247.134 - User: user_1064 - RequestID: v5avc3sb0w +2025-06-18T15:06:13.481Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 201 - Response time: 980ms - IP: 192.168.81.206 - User: user_1010 - RequestID: d2ot0u63lej +2025-06-18T15:06:13.581Z [INFO] user-service - Database INSERT on users - Execution time: 189ms - Rows affected: 78 - RequestID: egqg2k8v4h9 +2025-06-18T15:06:13.681Z [TRACE] notification-service - Operation: cache_miss - Processing time: 924ms - RequestID: tm37az12q8 +2025-06-18T15:06:13.781Z [DEBUG] order-service - DELETE /api/v1/users - Status: 401 - Response time: 1177ms - IP: 192.168.181.225 - User: user_1011 - RequestID: yamc4dpwn1i +2025-06-18T15:06:13.881Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 396ms - Rows affected: 28 - RequestID: ryce65xqxzj +2025-06-18T15:06:13.981Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 647ms - IP: 192.168.194.41 - User: user_1005 - RequestID: 02akfmi9puwt +2025-06-18T15:06:14.081Z [INFO] auth-service - POST /api/v1/orders - Status: 400 - Response time: 1302ms - IP: 192.168.104.37 - User: user_1085 - RequestID: myxav302gzl +2025-06-18T15:06:14.181Z [TRACE] auth-service - Operation: cache_miss - Processing time: 508ms - RequestID: hlaqfyuofun +2025-06-18T15:06:14.281Z [TRACE] payment-service - POST /api/v1/inventory - Status: 400 - Response time: 1507ms - IP: 192.168.10.184 - User: user_1065 - RequestID: erzo0pex49k +2025-06-18T15:06:14.381Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1775ms - IP: 192.168.100.240 - User: user_1008 - RequestID: zfevz8gd4l +2025-06-18T15:06:14.481Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 101ms - Rows affected: 67 - RequestID: tuc65q7wj1 +2025-06-18T15:06:14.581Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 376ms - Rows affected: 5 - RequestID: xjodgkh4cng +2025-06-18T15:06:14.681Z [INFO] payment-service - Database SELECT on products - Execution time: 459ms - Rows affected: 40 - RequestID: rjw8ed7612f +2025-06-18T15:06:14.781Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 493ms - Rows affected: 6 - RequestID: wo1qavbosii +2025-06-18T15:06:14.881Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 60ms - Rows affected: 30 - RequestID: 364vt1ay3bx +2025-06-18T15:06:14.981Z [TRACE] notification-service - Operation: cache_miss - Processing time: 266ms - RequestID: 3bh9o0ojpdo +2025-06-18T15:06:15.081Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 27ms - Rows affected: 67 - RequestID: ohpyxhpl7mj +2025-06-18T15:06:15.181Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 401ms - Rows affected: 5 - RequestID: dpdpmqhfljb +2025-06-18T15:06:15.281Z [TRACE] payment-service - Database INSERT on products - Execution time: 326ms - Rows affected: 89 - RequestID: hdpmxzf1uj5 +2025-06-18T15:06:15.381Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 400 - Response time: 39ms - IP: 192.168.53.133 - User: user_1025 - RequestID: x9zrm7huyh +2025-06-18T15:06:15.481Z [DEBUG] notification-service - Auth event: logout - User: user_1005 - IP: 192.168.79.141 - RequestID: 8xfqs57ce9u +2025-06-18T15:06:15.581Z [INFO] auth-service - Database INSERT on products - Execution time: 47ms - Rows affected: 23 - RequestID: 9z1chggjmhw +2025-06-18T15:06:15.681Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 161ms - Rows affected: 97 - RequestID: 7sypeo01k34 +2025-06-18T15:06:15.781Z [INFO] user-service - Database DELETE on sessions - Execution time: 103ms - Rows affected: 93 - RequestID: djevcse731k +2025-06-18T15:06:15.881Z [INFO] auth-service - Auth event: password_change - User: user_1005 - IP: 192.168.232.72 - RequestID: l9fwe5ji3es +2025-06-18T15:06:15.981Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 762ms - IP: 192.168.53.133 - User: user_1078 - RequestID: z31s1lgs5j +2025-06-18T15:06:16.081Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 281ms - Rows affected: 22 - RequestID: 825i35beat +2025-06-18T15:06:16.181Z [DEBUG] notification-service - Database DELETE on products - Execution time: 476ms - Rows affected: 29 - RequestID: 3insljhrtbn +2025-06-18T15:06:16.281Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 400 - Response time: 697ms - IP: 192.168.85.229 - User: user_1093 - RequestID: ta0jpcy5ndn +2025-06-18T15:06:16.381Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1214ms - IP: 192.168.28.146 - User: user_1072 - RequestID: 3el8xryxllz +2025-06-18T15:06:16.481Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 657ms - RequestID: hifmdlwq59c +2025-06-18T15:06:16.581Z [INFO] payment-service - DELETE /api/v1/payments - Status: 403 - Response time: 69ms - IP: 192.168.138.123 - User: user_1077 - RequestID: iq4kyxdjs +2025-06-18T15:06:16.681Z [DEBUG] user-service - Database DELETE on users - Execution time: 463ms - Rows affected: 70 - RequestID: 1sy9eono3xz +2025-06-18T15:06:16.781Z [TRACE] notification-service - Database DELETE on orders - Execution time: 402ms - Rows affected: 67 - RequestID: p4arcstp1mc +2025-06-18T15:06:16.881Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 239ms - Rows affected: 59 - RequestID: ajpvr6k0rbg +2025-06-18T15:06:16.981Z [INFO] auth-service - PUT /api/v1/orders - Status: 404 - Response time: 589ms - IP: 192.168.235.117 - User: user_1034 - RequestID: w46byzd5az +2025-06-18T15:06:17.081Z [INFO] user-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.133.7 - RequestID: 160zam7zkyq +2025-06-18T15:06:17.181Z [INFO] payment-service - Auth event: login_failed - User: user_1015 - IP: 192.168.100.240 - RequestID: eg4ihla4omp +2025-06-18T15:06:17.281Z [TRACE] user-service - Operation: cache_hit - Processing time: 964ms - RequestID: ocbpznemvi9 +2025-06-18T15:06:17.381Z [INFO] order-service - Database DELETE on users - Execution time: 380ms - Rows affected: 26 - RequestID: utmct86dxar +2025-06-18T15:06:17.481Z [INFO] inventory-service - PUT /api/v1/payments - Status: 200 - Response time: 1387ms - IP: 192.168.211.72 - User: user_1035 - RequestID: ame54mga9g +2025-06-18T15:06:17.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.46.63 - RequestID: 9vtkc7almcs +2025-06-18T15:06:17.681Z [TRACE] payment-service - Operation: payment_processed - Processing time: 1038ms - RequestID: a5cgf683enc +2025-06-18T15:06:17.781Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 262ms - Rows affected: 84 - RequestID: g8e1i3e30wq +2025-06-18T15:06:17.881Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.141.100 - RequestID: v6vyqqzdomd +2025-06-18T15:06:17.981Z [INFO] auth-service - Database INSERT on users - Execution time: 222ms - Rows affected: 37 - RequestID: 6rm33p8ac78 +2025-06-18T15:06:18.081Z [INFO] inventory-service - PUT /api/v1/users - Status: 503 - Response time: 78ms - IP: 192.168.46.63 - User: user_1039 - RequestID: tnyoj4h9bte +2025-06-18T15:06:18.181Z [TRACE] user-service - DELETE /api/v1/orders - Status: 404 - Response time: 2000ms - IP: 192.168.211.72 - User: user_1029 - RequestID: 8y4nnrj12fd +2025-06-18T15:06:18.281Z [TRACE] auth-service - Operation: notification_queued - Processing time: 477ms - RequestID: 4i9t5ino4pg +2025-06-18T15:06:18.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 861ms - RequestID: 6vvmtbvph +2025-06-18T15:06:18.481Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 360ms - RequestID: yfu6hzivqhq +2025-06-18T15:06:18.581Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 404 - Response time: 496ms - IP: 192.168.174.114 - User: user_1009 - RequestID: gexrvsopho8 +2025-06-18T15:06:18.681Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 819ms - IP: 192.168.97.87 - User: user_1019 - RequestID: 8tmczbs9tes +2025-06-18T15:06:18.781Z [INFO] user-service - Auth event: login_failed - User: user_1066 - IP: 192.168.174.114 - RequestID: gut2hayz1t8 +2025-06-18T15:06:18.881Z [INFO] payment-service - Database SELECT on orders - Execution time: 141ms - Rows affected: 3 - RequestID: pa3e8f4984 +2025-06-18T15:06:18.981Z [INFO] notification-service - Operation: email_sent - Processing time: 68ms - RequestID: acryh8pz1es +2025-06-18T15:06:19.081Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 48ms - Rows affected: 34 - RequestID: 0xbey0w0n9re +2025-06-18T15:06:19.181Z [DEBUG] notification-service - Operation: email_sent - Processing time: 927ms - RequestID: 05levf1kue2m +2025-06-18T15:06:19.281Z [DEBUG] user-service - Operation: cache_miss - Processing time: 445ms - RequestID: der01l7ysye +2025-06-18T15:06:19.381Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 65ms - IP: 192.168.13.72 - User: user_1057 - RequestID: 3v82dbqopp2 +2025-06-18T15:06:19.481Z [INFO] order-service - PATCH /api/v1/inventory - Status: 201 - Response time: 449ms - IP: 192.168.79.143 - User: user_1016 - RequestID: iba7as0pbv +2025-06-18T15:06:19.581Z [DEBUG] user-service - PUT /api/v1/orders - Status: 502 - Response time: 654ms - IP: 192.168.81.206 - User: user_1000 - RequestID: loqdv6sr61o +2025-06-18T15:06:19.681Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 249ms - Rows affected: 59 - RequestID: tum2173vaua +2025-06-18T15:06:19.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 889ms - RequestID: 8srysifcmy4 +2025-06-18T15:06:19.881Z [INFO] notification-service - Operation: webhook_sent - Processing time: 255ms - RequestID: e00qn9t1tmu +2025-06-18T15:06:19.981Z [DEBUG] order-service - Database SELECT on products - Execution time: 218ms - Rows affected: 24 - RequestID: j1qtirkl34 +2025-06-18T15:06:20.081Z [TRACE] inventory-service - Auth event: login_failed - User: user_1074 - IP: 192.168.46.63 - RequestID: mi77ul4yf3 +2025-06-18T15:06:20.181Z [INFO] order-service - GET /api/v1/orders - Status: 401 - Response time: 72ms - IP: 192.168.141.100 - User: user_1001 - RequestID: j1t6cwomusd +2025-06-18T15:06:20.281Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 197ms - Rows affected: 69 - RequestID: 66ljdtvhqx6 +2025-06-18T15:06:20.381Z [DEBUG] payment-service - Database SELECT on users - Execution time: 153ms - Rows affected: 37 - RequestID: w2lbvfdnxpp +2025-06-18T15:06:20.481Z [INFO] payment-service - Operation: email_sent - Processing time: 842ms - RequestID: hveu6cfkb9o +2025-06-18T15:06:20.581Z [DEBUG] inventory-service - GET /api/v1/users - Status: 500 - Response time: 711ms - IP: 192.168.14.77 - User: user_1055 - RequestID: 4vmlwselhff +2025-06-18T15:06:20.681Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 801ms - RequestID: 5laki2v0tx4 +2025-06-18T15:06:20.781Z [INFO] payment-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.31.117 - RequestID: 9h2s6hu1k46 +2025-06-18T15:06:20.881Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1543ms - IP: 192.168.1.152 - User: user_1098 - RequestID: jse58yl26u +2025-06-18T15:06:20.981Z [TRACE] notification-service - Operation: payment_processed - Processing time: 800ms - RequestID: pz6wl6svj9o +2025-06-18T15:06:21.081Z [INFO] user-service - Operation: order_created - Processing time: 1043ms - RequestID: f5facsymqpb +2025-06-18T15:06:21.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.1.152 - RequestID: wqgvdc1vzml +2025-06-18T15:06:21.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.196.226 - RequestID: ami1f2vpgo9 +2025-06-18T15:06:21.381Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 83ms - Rows affected: 69 - RequestID: w7p5nhf77th +2025-06-18T15:06:21.481Z [INFO] notification-service - Database INSERT on users - Execution time: 128ms - Rows affected: 72 - RequestID: 6faclo0snvk +2025-06-18T15:06:21.581Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 842ms - RequestID: 0fqqrlpj8g7g +2025-06-18T15:06:21.681Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 69ms - RequestID: mqj0i4go3tr +2025-06-18T15:06:21.781Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 587ms - IP: 192.168.138.123 - User: user_1064 - RequestID: ezbc407h849 +2025-06-18T15:06:21.881Z [INFO] notification-service - Operation: notification_queued - Processing time: 598ms - RequestID: 4nm0dpkua2o +2025-06-18T15:06:21.981Z [DEBUG] user-service - Auth event: login_failed - User: user_1022 - IP: 192.168.229.123 - RequestID: vj40ihij30a +2025-06-18T15:06:22.081Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 462ms - RequestID: wa8m4utw6jg +2025-06-18T15:06:22.181Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 664ms - RequestID: 6xf1a6ctw4k +2025-06-18T15:06:22.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.242.165 - RequestID: 98s3ztkbd7 +2025-06-18T15:06:22.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.144.38 - RequestID: fcboxbpx1ii +2025-06-18T15:06:22.481Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 401 - Response time: 1266ms - IP: 192.168.79.143 - User: user_1099 - RequestID: 8ouats8i9a +2025-06-18T15:06:22.581Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 242ms - IP: 192.168.229.123 - User: user_1047 - RequestID: xfzjchmcf8 +2025-06-18T15:06:22.681Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 403 - Response time: 1187ms - IP: 192.168.144.38 - User: user_1003 - RequestID: atuggp3y0aw +2025-06-18T15:06:22.781Z [TRACE] user-service - GET /api/v1/auth/login - Status: 401 - Response time: 1375ms - IP: 192.168.227.77 - User: user_1028 - RequestID: mhhwamd6om +2025-06-18T15:06:22.881Z [DEBUG] user-service - Operation: notification_queued - Processing time: 797ms - RequestID: 04w447z7vvyh +2025-06-18T15:06:22.981Z [INFO] payment-service - POST /api/v1/auth/login - Status: 404 - Response time: 548ms - IP: 192.168.113.218 - User: user_1001 - RequestID: w18r1k4lt4 +2025-06-18T15:06:23.081Z [INFO] user-service - Auth event: login_failed - User: user_1005 - IP: 192.168.181.225 - RequestID: 1nbf795l3xi +2025-06-18T15:06:23.181Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 216ms - Rows affected: 93 - RequestID: 4a03hw0uzvv +2025-06-18T15:06:23.281Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 469ms - Rows affected: 55 - RequestID: qw4k3jucdik +2025-06-18T15:06:23.381Z [DEBUG] user-service - Operation: order_created - Processing time: 776ms - RequestID: zmb5qw13lsn +2025-06-18T15:06:23.481Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 200 - Response time: 1338ms - IP: 192.168.235.117 - User: user_1030 - RequestID: 0py0ah73l6p +2025-06-18T15:06:23.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 650ms - RequestID: 89e7gr3ctkj +2025-06-18T15:06:23.681Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 325ms - Rows affected: 57 - RequestID: 2lnxutv97ml +2025-06-18T15:06:23.781Z [DEBUG] order-service - Database UPDATE on users - Execution time: 273ms - Rows affected: 83 - RequestID: 36r7rf86z7w +2025-06-18T15:06:23.881Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 401ms - RequestID: 58rlyj14ha7 +2025-06-18T15:06:23.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1044 - IP: 192.168.100.240 - RequestID: fpzc1m657xs +2025-06-18T15:06:24.081Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 165ms - Rows affected: 34 - RequestID: fsjsdf5njmk +2025-06-18T15:06:24.181Z [TRACE] notification-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.113.218 - RequestID: jb85c0icbx +2025-06-18T15:06:24.281Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1580ms - IP: 192.168.174.114 - User: user_1031 - RequestID: 5nnnu7aau5m +2025-06-18T15:06:24.381Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 310ms - RequestID: skzqkrib5mt +2025-06-18T15:06:24.481Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 367ms - Rows affected: 8 - RequestID: t9vnudjc5zi +2025-06-18T15:06:24.581Z [TRACE] auth-service - GET /api/v1/payments - Status: 403 - Response time: 397ms - IP: 192.168.81.206 - User: user_1098 - RequestID: pq997ak1eue +2025-06-18T15:06:24.681Z [INFO] user-service - POST /api/v1/auth/login - Status: 502 - Response time: 1536ms - IP: 192.168.97.87 - User: user_1004 - RequestID: g5vsga1wea +2025-06-18T15:06:24.781Z [INFO] user-service - DELETE /api/v1/users - Status: 500 - Response time: 1912ms - IP: 192.168.211.72 - User: user_1087 - RequestID: 3z57wbo7uil +2025-06-18T15:06:24.881Z [TRACE] order-service - Operation: cache_miss - Processing time: 686ms - RequestID: 1q53ox97we4 +2025-06-18T15:06:24.981Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 965ms - RequestID: scdqqkb0vxc +2025-06-18T15:06:25.081Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 183ms - RequestID: 7rykgb4j33 +2025-06-18T15:06:25.181Z [TRACE] payment-service - Auth event: logout - User: user_1069 - IP: 192.168.79.141 - RequestID: tmorhgwajd +2025-06-18T15:06:25.281Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 503 - Response time: 522ms - IP: 192.168.144.38 - User: user_1082 - RequestID: wkgn8wymuu +2025-06-18T15:06:25.381Z [INFO] payment-service - Database UPDATE on orders - Execution time: 357ms - Rows affected: 25 - RequestID: 9j2wc0r5kve +2025-06-18T15:06:25.481Z [TRACE] user-service - Operation: cache_miss - Processing time: 765ms - RequestID: sed745bac6 +2025-06-18T15:06:25.581Z [INFO] inventory-service - Operation: notification_queued - Processing time: 375ms - RequestID: 777b1qj6a5x +2025-06-18T15:06:25.681Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 546ms - RequestID: e49a5fwln3p +2025-06-18T15:06:25.781Z [DEBUG] auth-service - Auth event: logout - User: user_1051 - IP: 192.168.232.72 - RequestID: 1nrbjf437xx +2025-06-18T15:06:25.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.104.37 - RequestID: nsz2puzfhoj +2025-06-18T15:06:25.981Z [TRACE] payment-service - Operation: cache_hit - Processing time: 517ms - RequestID: yc2hp3nwioi +2025-06-18T15:06:26.081Z [INFO] notification-service - Auth event: logout - User: user_1074 - IP: 192.168.247.134 - RequestID: y391r8fz81g +2025-06-18T15:06:26.181Z [TRACE] inventory-service - Auth event: login_failed - User: user_1083 - IP: 192.168.174.114 - RequestID: epdhvpeeca +2025-06-18T15:06:26.281Z [DEBUG] notification-service - Database INSERT on users - Execution time: 364ms - Rows affected: 82 - RequestID: h6nhb9ppwii +2025-06-18T15:06:26.381Z [INFO] order-service - Operation: cache_hit - Processing time: 784ms - RequestID: 73vheqx3jlo +2025-06-18T15:06:26.481Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 897ms - RequestID: nwt3jtnlipa +2025-06-18T15:06:26.581Z [TRACE] notification-service - Operation: payment_processed - Processing time: 237ms - RequestID: 7hxjyvk4dh3 +2025-06-18T15:06:26.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.79.141 - RequestID: cwf76ndw218 +2025-06-18T15:06:26.781Z [TRACE] order-service - Database DELETE on users - Execution time: 68ms - Rows affected: 45 - RequestID: vciri0b8sxg +2025-06-18T15:06:26.881Z [TRACE] order-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.158.144 - RequestID: lm7zwu7pow +2025-06-18T15:06:26.981Z [INFO] order-service - GET /api/v1/orders - Status: 502 - Response time: 1757ms - IP: 192.168.144.38 - User: user_1099 - RequestID: n493l1j271 +2025-06-18T15:06:27.081Z [INFO] auth-service - Operation: inventory_updated - Processing time: 461ms - RequestID: 2mywgfb97xc +2025-06-18T15:06:27.181Z [TRACE] notification-service - Auth event: login_failed - User: user_1018 - IP: 192.168.159.94 - RequestID: i99rbgqmi9i +2025-06-18T15:06:27.281Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 438ms - Rows affected: 64 - RequestID: bzfufpj3fvs +2025-06-18T15:06:27.381Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 849ms - RequestID: x94kes331v +2025-06-18T15:06:27.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.232.72 - RequestID: z5s0c3n1idn +2025-06-18T15:06:27.581Z [DEBUG] order-service - Operation: payment_processed - Processing time: 1016ms - RequestID: 7nrbueu033f +2025-06-18T15:06:27.681Z [INFO] auth-service - Operation: email_sent - Processing time: 151ms - RequestID: ra4h4vyf36q +2025-06-18T15:06:27.781Z [INFO] notification-service - POST /api/v1/users - Status: 404 - Response time: 1636ms - IP: 192.168.211.72 - User: user_1060 - RequestID: ayhktkp74bv +2025-06-18T15:06:27.881Z [TRACE] order-service - PUT /api/v1/orders - Status: 403 - Response time: 1641ms - IP: 192.168.240.169 - User: user_1016 - RequestID: bk2p22vray +2025-06-18T15:06:27.981Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 1525ms - IP: 192.168.174.114 - User: user_1050 - RequestID: zyeswkvs21e +2025-06-18T15:06:28.081Z [TRACE] order-service - Auth event: login_success - User: user_1074 - IP: 192.168.13.72 - RequestID: qoyjnqdg6mc +2025-06-18T15:06:28.181Z [DEBUG] auth-service - Operation: order_created - Processing time: 452ms - RequestID: y77km657tia +2025-06-18T15:06:28.281Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 384ms - Rows affected: 18 - RequestID: 4vlw78x4pq +2025-06-18T15:06:28.381Z [INFO] auth-service - Operation: email_sent - Processing time: 565ms - RequestID: 9e044j7nlvl +2025-06-18T15:06:28.481Z [TRACE] payment-service - Database DELETE on orders - Execution time: 242ms - Rows affected: 14 - RequestID: 3a9j0eja7c1 +2025-06-18T15:06:28.581Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 424ms - Rows affected: 65 - RequestID: 4i3vbevrm5e +2025-06-18T15:06:28.681Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.170.215 - RequestID: m2fdlbdwj8l +2025-06-18T15:06:28.781Z [INFO] auth-service - Operation: notification_queued - Processing time: 92ms - RequestID: g2ady6voe4 +2025-06-18T15:06:28.881Z [INFO] order-service - GET /api/v1/auth/logout - Status: 201 - Response time: 150ms - IP: 192.168.68.158 - User: user_1016 - RequestID: 45xnwj9o7xy +2025-06-18T15:06:28.981Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1205ms - IP: 192.168.196.226 - User: user_1051 - RequestID: uqs3gp8fedt +2025-06-18T15:06:29.081Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 639ms - RequestID: aej2n4ti8wg +2025-06-18T15:06:29.181Z [TRACE] auth-service - Operation: order_created - Processing time: 310ms - RequestID: 538qe3tgq9v +2025-06-18T15:06:29.281Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 695ms - RequestID: 17z9etyxtdy +2025-06-18T15:06:29.381Z [TRACE] user-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.138.123 - RequestID: 1l2ql15fpz4 +2025-06-18T15:06:29.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1067 - IP: 192.168.147.171 - RequestID: efrraydgylj +2025-06-18T15:06:29.581Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 502 - Response time: 652ms - IP: 192.168.32.38 - User: user_1048 - RequestID: afr3tsi7j6b +2025-06-18T15:06:29.681Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 701ms - RequestID: 8gtdyi78r9t +2025-06-18T15:06:29.781Z [INFO] order-service - Operation: webhook_sent - Processing time: 156ms - RequestID: 095cagq9p0e8 +2025-06-18T15:06:29.881Z [INFO] order-service - PUT /api/v1/inventory - Status: 401 - Response time: 493ms - IP: 192.168.232.72 - User: user_1053 - RequestID: e7grlp72ojq +2025-06-18T15:06:29.981Z [DEBUG] user-service - Operation: notification_queued - Processing time: 354ms - RequestID: 7nxnrkqt80k +2025-06-18T15:06:30.081Z [INFO] auth-service - Auth event: password_change - User: user_1067 - IP: 192.168.14.77 - RequestID: isqkyxzvah +2025-06-18T15:06:30.181Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1223ms - IP: 192.168.97.87 - User: user_1067 - RequestID: sv8162ljtzc +2025-06-18T15:06:30.281Z [INFO] order-service - Auth event: login_failed - User: user_1010 - IP: 192.168.229.123 - RequestID: k760jiu3sh +2025-06-18T15:06:30.381Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1281ms - IP: 192.168.158.144 - User: user_1049 - RequestID: x8bsn16igl +2025-06-18T15:06:30.481Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 261ms - Rows affected: 26 - RequestID: 4x11blzbed2 +2025-06-18T15:06:30.581Z [TRACE] auth-service - PUT /api/v1/orders - Status: 404 - Response time: 267ms - IP: 192.168.235.117 - User: user_1049 - RequestID: r0dtrzpw5ih +2025-06-18T15:06:30.681Z [INFO] order-service - Auth event: password_change - User: user_1069 - IP: 192.168.85.229 - RequestID: lz255q0yrbp +2025-06-18T15:06:30.781Z [DEBUG] auth-service - PUT /api/v1/users - Status: 404 - Response time: 213ms - IP: 192.168.167.32 - User: user_1048 - RequestID: wx047j08bx +2025-06-18T15:06:30.881Z [TRACE] user-service - Auth event: login_failed - User: user_1057 - IP: 192.168.28.146 - RequestID: xeoswhbi8he +2025-06-18T15:06:30.981Z [INFO] notification-service - Auth event: login_success - User: user_1070 - IP: 192.168.11.60 - RequestID: y7w2c2hmwu +2025-06-18T15:06:31.081Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 395ms - Rows affected: 70 - RequestID: kmfqvrogn2 +2025-06-18T15:06:31.181Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 153ms - Rows affected: 38 - RequestID: 7r8apaf1fvj +2025-06-18T15:06:31.281Z [TRACE] user-service - Operation: webhook_sent - Processing time: 912ms - RequestID: 823u0gfcrr4 +2025-06-18T15:06:31.381Z [TRACE] inventory-service - Auth event: logout - User: user_1055 - IP: 192.168.81.206 - RequestID: 0k42001cv5z8 +2025-06-18T15:06:31.481Z [INFO] order-service - Operation: webhook_sent - Processing time: 225ms - RequestID: 1shysx2lvof +2025-06-18T15:06:31.581Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 853ms - RequestID: 8hioammgnwt +2025-06-18T15:06:31.681Z [TRACE] notification-service - Auth event: password_change - User: user_1032 - IP: 192.168.227.77 - RequestID: fhe41xir6xi +2025-06-18T15:06:31.781Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 520ms - IP: 192.168.138.123 - User: user_1006 - RequestID: 3d780chxbgw +2025-06-18T15:06:31.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 925ms - RequestID: nfr5pgj98f +2025-06-18T15:06:31.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1017 - IP: 192.168.97.87 - RequestID: jncvd9xuq4 +2025-06-18T15:06:32.081Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.159.94 - RequestID: 19ull5s1zzuj +2025-06-18T15:06:32.181Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 95ms - Rows affected: 46 - RequestID: 2jiz31skyxn +2025-06-18T15:06:32.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.11.60 - RequestID: wquvzjlmkz +2025-06-18T15:06:32.381Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 403 - Response time: 558ms - IP: 192.168.33.76 - User: user_1077 - RequestID: 5gfcift7zb +2025-06-18T15:06:32.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.240.169 - RequestID: 4waliy376n +2025-06-18T15:06:32.581Z [INFO] order-service - Operation: notification_queued - Processing time: 423ms - RequestID: r1su3ksem9n +2025-06-18T15:06:32.681Z [DEBUG] user-service - Database SELECT on products - Execution time: 77ms - Rows affected: 29 - RequestID: ke6kbk0jmoo +2025-06-18T15:06:32.781Z [INFO] auth-service - PUT /api/v1/users - Status: 500 - Response time: 158ms - IP: 192.168.85.229 - User: user_1035 - RequestID: b61fh7mptjj +2025-06-18T15:06:32.881Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 468ms - RequestID: n4ei4h7ouhr +2025-06-18T15:06:32.981Z [INFO] order-service - Database SELECT on payments - Execution time: 173ms - Rows affected: 90 - RequestID: q1js9m3bl4b +2025-06-18T15:06:33.081Z [TRACE] payment-service - Database INSERT on orders - Execution time: 255ms - Rows affected: 36 - RequestID: ztx16fn1ue +2025-06-18T15:06:33.181Z [TRACE] inventory-service - Database SELECT on products - Execution time: 453ms - Rows affected: 67 - RequestID: 7jmkvmo1d55 +2025-06-18T15:06:33.281Z [INFO] auth-service - Database DELETE on sessions - Execution time: 447ms - Rows affected: 39 - RequestID: km3qwq5r4lm +2025-06-18T15:06:33.381Z [INFO] inventory-service - Operation: order_created - Processing time: 168ms - RequestID: yr48m0qh71 +2025-06-18T15:06:33.481Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 302ms - Rows affected: 64 - RequestID: 3mmvylwf6rt +2025-06-18T15:06:33.581Z [INFO] auth-service - Operation: cache_hit - Processing time: 943ms - RequestID: 63xybva8nqg +2025-06-18T15:06:33.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.53.133 - RequestID: 0uj3gqi6n25p +2025-06-18T15:06:33.781Z [TRACE] payment-service - Auth event: login_success - User: user_1093 - IP: 192.168.46.63 - RequestID: pav68u1ldj +2025-06-18T15:06:33.881Z [DEBUG] order-service - Auth event: login_success - User: user_1071 - IP: 192.168.133.7 - RequestID: q8gom69k4yd +2025-06-18T15:06:33.981Z [TRACE] payment-service - Database INSERT on payments - Execution time: 181ms - Rows affected: 47 - RequestID: vbp39n6nje +2025-06-18T15:06:34.081Z [INFO] auth-service - GET /api/v1/payments - Status: 503 - Response time: 1850ms - IP: 192.168.14.77 - User: user_1046 - RequestID: 5wy6vxike88 +2025-06-18T15:06:34.181Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1294ms - IP: 192.168.68.128 - User: user_1041 - RequestID: 1jg0vrw1uhh +2025-06-18T15:06:34.281Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1767ms - IP: 192.168.44.5 - User: user_1013 - RequestID: ur85q1nznlr +2025-06-18T15:06:34.381Z [TRACE] user-service - Operation: cache_miss - Processing time: 542ms - RequestID: vnprms984cc +2025-06-18T15:06:34.481Z [TRACE] user-service - Auth event: login_failed - User: user_1090 - IP: 192.168.227.233 - RequestID: r2n5q3bojrf +2025-06-18T15:06:34.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.14.77 - RequestID: 8ygzmzn2exg +2025-06-18T15:06:34.681Z [INFO] notification-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.30.79 - RequestID: z0t1kx47gp +2025-06-18T15:06:34.781Z [INFO] auth-service - Operation: cache_hit - Processing time: 332ms - RequestID: 3dlhzfet67v +2025-06-18T15:06:34.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1029 - IP: 192.168.14.77 - RequestID: czt94fgg6nm +2025-06-18T15:06:34.981Z [TRACE] user-service - Database DELETE on orders - Execution time: 399ms - Rows affected: 86 - RequestID: yrng9941yz +2025-06-18T15:06:35.081Z [TRACE] notification-service - Operation: notification_queued - Processing time: 894ms - RequestID: qmwp0f7s83k +2025-06-18T15:06:35.181Z [INFO] user-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.1.152 - RequestID: ctm5t5xsl8r +2025-06-18T15:06:35.281Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1450ms - IP: 192.168.13.72 - User: user_1037 - RequestID: meyc2p3nfc +2025-06-18T15:06:35.381Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 400 - Response time: 1919ms - IP: 192.168.33.76 - User: user_1056 - RequestID: rhr4nlpy2mq +2025-06-18T15:06:35.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.170.215 - RequestID: hm605qu9lwi +2025-06-18T15:06:35.581Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 200 - Response time: 53ms - IP: 192.168.159.94 - User: user_1056 - RequestID: 3vv738dfrnh +2025-06-18T15:06:35.681Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 190ms - Rows affected: 36 - RequestID: 36pka18ymn3 +2025-06-18T15:06:35.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1001 - IP: 192.168.46.63 - RequestID: nrjfxoo36l +2025-06-18T15:06:35.881Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1811ms - IP: 192.168.1.152 - User: user_1077 - RequestID: 9if5oblawos +2025-06-18T15:06:35.981Z [TRACE] user-service - GET /api/v1/users - Status: 500 - Response time: 953ms - IP: 192.168.247.134 - User: user_1050 - RequestID: i398u61a6l +2025-06-18T15:06:36.081Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 281ms - Rows affected: 98 - RequestID: y0qy08avlep +2025-06-18T15:06:36.181Z [TRACE] payment-service - Operation: cache_hit - Processing time: 787ms - RequestID: lzf4ga8yd7q +2025-06-18T15:06:36.281Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 491ms - Rows affected: 64 - RequestID: aysxvzbardu +2025-06-18T15:06:36.381Z [INFO] notification-service - Operation: order_created - Processing time: 898ms - RequestID: kkb3rmxsoj +2025-06-18T15:06:36.481Z [TRACE] auth-service - Operation: order_created - Processing time: 836ms - RequestID: uvtl74epl1c +2025-06-18T15:06:36.581Z [INFO] notification-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.133.7 - RequestID: mhwe3h70prc +2025-06-18T15:06:36.681Z [TRACE] inventory-service - Operation: order_created - Processing time: 1024ms - RequestID: iq7n2u2sa3o +2025-06-18T15:06:36.781Z [DEBUG] auth-service - PUT /api/v1/users - Status: 201 - Response time: 2005ms - IP: 192.168.33.76 - User: user_1042 - RequestID: bvzftbelor9 +2025-06-18T15:06:36.881Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 468ms - Rows affected: 70 - RequestID: tv911xb26fl +2025-06-18T15:06:36.981Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 425ms - RequestID: lapxuf58mc +2025-06-18T15:06:37.081Z [INFO] notification-service - Database UPDATE on orders - Execution time: 282ms - Rows affected: 85 - RequestID: z4v06dzg9o7 +2025-06-18T15:06:37.181Z [INFO] notification-service - POST /api/v1/payments - Status: 500 - Response time: 1713ms - IP: 192.168.235.117 - User: user_1061 - RequestID: np0wrtrxnc +2025-06-18T15:06:37.281Z [DEBUG] payment-service - Operation: email_sent - Processing time: 61ms - RequestID: gtl0w64kgpg +2025-06-18T15:06:37.381Z [INFO] user-service - PUT /api/v1/orders - Status: 403 - Response time: 779ms - IP: 192.168.167.32 - User: user_1087 - RequestID: o9rtewh6eg +2025-06-18T15:06:37.481Z [DEBUG] user-service - Operation: order_created - Processing time: 407ms - RequestID: ytb25jxjix8 +2025-06-18T15:06:37.581Z [DEBUG] notification-service - Operation: order_created - Processing time: 773ms - RequestID: amigizbg31r +2025-06-18T15:06:37.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1065 - IP: 192.168.144.38 - RequestID: ok7njjpq18 +2025-06-18T15:06:37.781Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 8ms - Rows affected: 5 - RequestID: bl19g8kyk57 +2025-06-18T15:06:37.881Z [TRACE] order-service - Database SELECT on sessions - Execution time: 269ms - Rows affected: 76 - RequestID: t0z30wgo3zo +2025-06-18T15:06:37.981Z [INFO] auth-service - Database SELECT on sessions - Execution time: 323ms - Rows affected: 31 - RequestID: 3sv2pagub2w +2025-06-18T15:06:38.081Z [TRACE] user-service - Database UPDATE on orders - Execution time: 267ms - Rows affected: 25 - RequestID: x6ra8nwply +2025-06-18T15:06:38.181Z [INFO] user-service - Auth event: password_change - User: user_1086 - IP: 192.168.170.215 - RequestID: 9coos5o8a3v +2025-06-18T15:06:38.281Z [DEBUG] user-service - Database INSERT on orders - Execution time: 60ms - Rows affected: 86 - RequestID: w3tu5wi7xh +2025-06-18T15:06:38.381Z [INFO] inventory-service - Database DELETE on users - Execution time: 384ms - Rows affected: 66 - RequestID: qxxp8h1jd8q +2025-06-18T15:06:38.481Z [TRACE] order-service - Database SELECT on payments - Execution time: 467ms - Rows affected: 25 - RequestID: wdx3cnbwzg +2025-06-18T15:06:38.581Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 930ms - RequestID: yeevt7yvp4d +2025-06-18T15:06:38.681Z [DEBUG] user-service - Operation: order_created - Processing time: 618ms - RequestID: 66ri4b5or8 +2025-06-18T15:06:38.781Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 244ms - Rows affected: 42 - RequestID: hu3s0odb9bg +2025-06-18T15:06:38.881Z [INFO] inventory-service - Auth event: logout - User: user_1073 - IP: 192.168.68.158 - RequestID: lj9d8nk8ot +2025-06-18T15:06:38.981Z [TRACE] auth-service - Operation: email_sent - Processing time: 152ms - RequestID: 9vymwks5ki +2025-06-18T15:06:39.081Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 505ms - RequestID: cmna1jc079n +2025-06-18T15:06:39.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.138.123 - RequestID: o12w0v40eu +2025-06-18T15:06:39.281Z [TRACE] order-service - Database INSERT on payments - Execution time: 472ms - Rows affected: 19 - RequestID: 8k6thwa73qd +2025-06-18T15:06:39.381Z [INFO] auth-service - Database SELECT on orders - Execution time: 356ms - Rows affected: 81 - RequestID: s43hkirebba +2025-06-18T15:06:39.481Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 143ms - Rows affected: 96 - RequestID: q2i7yrkmjv +2025-06-18T15:06:39.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 461ms - RequestID: z2tm9emzlth +2025-06-18T15:06:39.681Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 605ms - IP: 192.168.158.144 - User: user_1004 - RequestID: 2kwdcedsx9f +2025-06-18T15:06:39.781Z [DEBUG] notification-service - GET /api/v1/orders - Status: 403 - Response time: 1784ms - IP: 192.168.28.146 - User: user_1093 - RequestID: he9g1bvpusg +2025-06-18T15:06:39.881Z [DEBUG] user-service - Operation: order_created - Processing time: 89ms - RequestID: dnaevgwwcmj +2025-06-18T15:06:39.981Z [TRACE] payment-service - PUT /api/v1/payments - Status: 404 - Response time: 378ms - IP: 192.168.79.116 - User: user_1036 - RequestID: 06nv4gp8bklo +2025-06-18T15:06:40.081Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 263ms - Rows affected: 34 - RequestID: fg0ywfuw5y +2025-06-18T15:06:40.181Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1724ms - IP: 192.168.79.116 - User: user_1065 - RequestID: wt93ypn1jjt +2025-06-18T15:06:40.281Z [DEBUG] user-service - Auth event: login_failed - User: user_1034 - IP: 192.168.11.60 - RequestID: dxck02zeg2 +2025-06-18T15:06:40.381Z [TRACE] notification-service - Database INSERT on orders - Execution time: 275ms - Rows affected: 6 - RequestID: zscfz9uorqn +2025-06-18T15:06:40.481Z [INFO] inventory-service - Operation: cache_miss - Processing time: 260ms - RequestID: s2a31z2ae +2025-06-18T15:06:40.581Z [TRACE] auth-service - Database UPDATE on users - Execution time: 497ms - Rows affected: 62 - RequestID: jxg50044wtj +2025-06-18T15:06:40.681Z [TRACE] notification-service - Operation: cache_miss - Processing time: 455ms - RequestID: 9o0odbzjqtn +2025-06-18T15:06:40.781Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 94ms - Rows affected: 78 - RequestID: ioo3d0x1s5k +2025-06-18T15:06:40.881Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 401 - Response time: 870ms - IP: 192.168.31.117 - User: user_1019 - RequestID: 3n8zwzdinkj +2025-06-18T15:06:40.981Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 500 - Response time: 1041ms - IP: 192.168.229.123 - User: user_1007 - RequestID: 6qhxo68rdxi +2025-06-18T15:06:41.081Z [DEBUG] order-service - Database DELETE on orders - Execution time: 388ms - Rows affected: 43 - RequestID: a7jwpobzj1p +2025-06-18T15:06:41.181Z [TRACE] inventory-service - Auth event: logout - User: user_1079 - IP: 192.168.232.72 - RequestID: y9oonuiw2p9 +2025-06-18T15:06:41.281Z [DEBUG] user-service - Database DELETE on users - Execution time: 41ms - Rows affected: 22 - RequestID: 7gaxpzqe66d +2025-06-18T15:06:41.381Z [DEBUG] notification-service - GET /api/v1/orders - Status: 400 - Response time: 1460ms - IP: 192.168.36.218 - User: user_1068 - RequestID: 7a3c87wp5j5 +2025-06-18T15:06:41.481Z [INFO] user-service - POST /api/v1/auth/logout - Status: 502 - Response time: 709ms - IP: 192.168.28.146 - User: user_1022 - RequestID: wjcsk8fqwv +2025-06-18T15:06:41.581Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 47ms - Rows affected: 63 - RequestID: ynth1pfce4 +2025-06-18T15:06:41.681Z [TRACE] order-service - Auth event: login_failed - User: user_1092 - IP: 192.168.100.240 - RequestID: x6bqbimkwf +2025-06-18T15:06:41.781Z [INFO] user-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.174.114 - RequestID: xs668275a2 +2025-06-18T15:06:41.881Z [DEBUG] notification-service - POST /api/v1/orders - Status: 400 - Response time: 194ms - IP: 192.168.85.229 - User: user_1091 - RequestID: j8npx16wy7p +2025-06-18T15:06:41.981Z [DEBUG] order-service - Auth event: password_change - User: user_1024 - IP: 192.168.174.114 - RequestID: o9afep92xi +2025-06-18T15:06:42.081Z [INFO] user-service - GET /api/v1/inventory - Status: 503 - Response time: 161ms - IP: 192.168.141.100 - User: user_1062 - RequestID: ympawueede +2025-06-18T15:06:42.181Z [DEBUG] user-service - Auth event: logout - User: user_1063 - IP: 192.168.46.63 - RequestID: fy42uy3979p +2025-06-18T15:06:42.281Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 271ms - Rows affected: 90 - RequestID: 89k9095wtlk +2025-06-18T15:06:42.381Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 201 - Response time: 1050ms - IP: 192.168.167.32 - User: user_1079 - RequestID: do171eakcfm +2025-06-18T15:06:42.481Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 371ms - Rows affected: 86 - RequestID: qe20uw50jve +2025-06-18T15:06:42.581Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 753ms - RequestID: ug4rcsimgh +2025-06-18T15:06:42.681Z [INFO] notification-service - Auth event: password_change - User: user_1037 - IP: 192.168.28.146 - RequestID: 8gbzg0ze9x6 +2025-06-18T15:06:42.781Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1117ms - IP: 192.168.32.38 - User: user_1015 - RequestID: 4pb9neyz0tp +2025-06-18T15:06:42.881Z [INFO] notification-service - GET /api/v1/payments - Status: 400 - Response time: 1757ms - IP: 192.168.181.225 - User: user_1022 - RequestID: m3j2iukt47b +2025-06-18T15:06:42.981Z [DEBUG] notification-service - PUT /api/v1/users - Status: 500 - Response time: 1776ms - IP: 192.168.100.240 - User: user_1074 - RequestID: z0i4tre9zhf +2025-06-18T15:06:43.081Z [INFO] order-service - Auth event: login_failed - User: user_1056 - IP: 192.168.240.169 - RequestID: 7f8cq9gbfl8 +2025-06-18T15:06:43.181Z [TRACE] user-service - Operation: email_sent - Processing time: 563ms - RequestID: 0zf1idkdeymn +2025-06-18T15:06:43.281Z [TRACE] order-service - Database SELECT on payments - Execution time: 226ms - Rows affected: 86 - RequestID: 1vypmllxrz9 +2025-06-18T15:06:43.381Z [INFO] notification-service - Auth event: password_change - User: user_1082 - IP: 192.168.174.114 - RequestID: dixm9rxvlq +2025-06-18T15:06:43.481Z [TRACE] order-service - Auth event: login_failed - User: user_1046 - IP: 192.168.53.133 - RequestID: tphoaojy2z +2025-06-18T15:06:43.581Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 34ms - Rows affected: 33 - RequestID: bcng3ofvee7 +2025-06-18T15:06:43.681Z [INFO] order-service - Database DELETE on products - Execution time: 79ms - Rows affected: 81 - RequestID: ir2fsl70fyn +2025-06-18T15:06:43.781Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 502 - Response time: 460ms - IP: 192.168.36.218 - User: user_1082 - RequestID: 95weckzq63 +2025-06-18T15:06:43.881Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 189ms - Rows affected: 60 - RequestID: ppbb82066u +2025-06-18T15:06:43.981Z [TRACE] inventory-service - Auth event: password_change - User: user_1088 - IP: 192.168.138.123 - RequestID: 0e0hkfs3s7ne +2025-06-18T15:06:44.081Z [TRACE] payment-service - POST /api/v1/users - Status: 502 - Response time: 1421ms - IP: 192.168.158.144 - User: user_1058 - RequestID: a5men1xpddg +2025-06-18T15:06:44.181Z [TRACE] auth-service - Operation: payment_processed - Processing time: 612ms - RequestID: yi38u48m58r +2025-06-18T15:06:44.281Z [TRACE] order-service - Auth event: logout - User: user_1097 - IP: 192.168.196.226 - RequestID: rhmghj95s6o +2025-06-18T15:06:44.381Z [INFO] notification-service - Database SELECT on payments - Execution time: 115ms - Rows affected: 12 - RequestID: bvhblwwgmm +2025-06-18T15:06:44.481Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 356ms - RequestID: wids1tksgbd +2025-06-18T15:06:44.581Z [DEBUG] user-service - GET /api/v1/inventory - Status: 401 - Response time: 1607ms - IP: 192.168.68.158 - User: user_1011 - RequestID: b32tboysqqv +2025-06-18T15:06:44.681Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 611ms - RequestID: keuutxzkyng +2025-06-18T15:06:44.781Z [DEBUG] notification-service - Auth event: password_change - User: user_1071 - IP: 192.168.79.141 - RequestID: u7wo4r5qe5b +2025-06-18T15:06:44.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1084 - IP: 192.168.79.143 - RequestID: x0rxd2rybnl +2025-06-18T15:06:44.981Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 98ms - RequestID: j0tmf1atysr +2025-06-18T15:06:45.081Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 469ms - RequestID: te3e0osr31n +2025-06-18T15:06:45.181Z [DEBUG] notification-service - Auth event: logout - User: user_1069 - IP: 192.168.28.146 - RequestID: vqge0igd84 +2025-06-18T15:06:45.281Z [INFO] inventory-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.138.123 - RequestID: bu3ccm5uod +2025-06-18T15:06:45.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 483ms - RequestID: oc6w3yfpdd +2025-06-18T15:06:45.481Z [INFO] auth-service - Operation: order_created - Processing time: 222ms - RequestID: 7s9cigc9mh3 +2025-06-18T15:06:45.581Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 576ms - RequestID: n4hugnmd1hh +2025-06-18T15:06:45.681Z [INFO] payment-service - Operation: order_created - Processing time: 992ms - RequestID: kfwkuf59a0d +2025-06-18T15:06:45.781Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 78ms - Rows affected: 86 - RequestID: 085gfpfll7fx +2025-06-18T15:06:45.881Z [DEBUG] order-service - GET /api/v1/payments - Status: 503 - Response time: 1442ms - IP: 192.168.227.77 - User: user_1047 - RequestID: 0zjudm3s0hy +2025-06-18T15:06:45.981Z [INFO] order-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1877ms - IP: 192.168.158.144 - User: user_1050 - RequestID: lv3okuf4hee +2025-06-18T15:06:46.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.100.240 - RequestID: 4dezkspqj61 +2025-06-18T15:06:46.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 812ms - RequestID: dmijjxgn82s +2025-06-18T15:06:46.281Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 794ms - RequestID: 1slz3kuq6d4 +2025-06-18T15:06:46.381Z [DEBUG] notification-service - Database SELECT on products - Execution time: 69ms - Rows affected: 63 - RequestID: 1vbnb5ohl63 +2025-06-18T15:06:46.481Z [TRACE] user-service - Operation: cache_miss - Processing time: 585ms - RequestID: d4xw9ec7ty6 +2025-06-18T15:06:46.581Z [INFO] notification-service - Operation: inventory_updated - Processing time: 198ms - RequestID: 0oyi1rhlwceb +2025-06-18T15:06:46.681Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 640ms - RequestID: 6i6x8xnu0se +2025-06-18T15:06:46.781Z [TRACE] auth-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.1.152 - RequestID: whv3fq2robq +2025-06-18T15:06:46.881Z [TRACE] order-service - Database SELECT on sessions - Execution time: 431ms - Rows affected: 60 - RequestID: 9yeo6ufk44 +2025-06-18T15:06:46.981Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 503 - Response time: 1608ms - IP: 192.168.144.38 - User: user_1028 - RequestID: yh08wh9y8mr +2025-06-18T15:06:47.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.53.133 - RequestID: y0k30ymp9qn +2025-06-18T15:06:47.181Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 896ms - RequestID: 8fnozm6pkzs +2025-06-18T15:06:47.281Z [INFO] auth-service - Auth event: password_change - User: user_1051 - IP: 192.168.68.128 - RequestID: qn30uk8sq5k +2025-06-18T15:06:47.381Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 125ms - Rows affected: 12 - RequestID: svmvm613jar +2025-06-18T15:06:47.481Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 463ms - Rows affected: 17 - RequestID: c0bmzjqm4qm +2025-06-18T15:06:47.581Z [TRACE] user-service - Operation: payment_processed - Processing time: 512ms - RequestID: l3njw33phon +2025-06-18T15:06:47.681Z [INFO] user-service - Auth event: password_change - User: user_1042 - IP: 192.168.1.152 - RequestID: a6yx2ijpa28 +2025-06-18T15:06:47.781Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1072ms - IP: 192.168.79.143 - User: user_1019 - RequestID: jt3kxeensvc +2025-06-18T15:06:47.881Z [DEBUG] order-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.31.117 - RequestID: rsv5epaytli +2025-06-18T15:06:47.981Z [INFO] payment-service - GET /api/v1/payments - Status: 401 - Response time: 1235ms - IP: 192.168.14.77 - User: user_1095 - RequestID: qg7if8w37l +2025-06-18T15:06:48.081Z [INFO] order-service - Database INSERT on orders - Execution time: 238ms - Rows affected: 29 - RequestID: dw4ay7v2klk +2025-06-18T15:06:48.181Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 74ms - Rows affected: 55 - RequestID: jloj8xnbtg +2025-06-18T15:06:48.281Z [INFO] order-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.227.77 - RequestID: m4nswn3djr +2025-06-18T15:06:48.381Z [TRACE] user-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.227.77 - RequestID: h3h5f5wsa49 +2025-06-18T15:06:48.481Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 503 - Response time: 1496ms - IP: 192.168.79.143 - User: user_1010 - RequestID: qr2uldx15gm +2025-06-18T15:06:48.581Z [INFO] auth-service - Operation: notification_queued - Processing time: 486ms - RequestID: km2c24ky93c +2025-06-18T15:06:48.681Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 351ms - Rows affected: 71 - RequestID: 234zii9pm17 +2025-06-18T15:06:48.781Z [TRACE] user-service - Operation: payment_processed - Processing time: 208ms - RequestID: krfp8g0ev7s +2025-06-18T15:06:48.881Z [INFO] auth-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.167.32 - RequestID: 19mqjqlry1h +2025-06-18T15:06:48.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1094 - IP: 192.168.32.38 - RequestID: kmpet12nqg +2025-06-18T15:06:49.081Z [INFO] auth-service - GET /api/v1/users - Status: 200 - Response time: 1597ms - IP: 192.168.53.133 - User: user_1087 - RequestID: yn8uufwmdhs +2025-06-18T15:06:49.181Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1293ms - IP: 192.168.68.158 - User: user_1038 - RequestID: mwonh5c5nl +2025-06-18T15:06:49.281Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1022ms - IP: 192.168.104.37 - User: user_1086 - RequestID: hwrkb3jnlg9 +2025-06-18T15:06:49.381Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 650ms - RequestID: dowqtdn91y6 +2025-06-18T15:06:49.481Z [INFO] order-service - Database UPDATE on users - Execution time: 428ms - Rows affected: 93 - RequestID: xx1qbbjkijk +2025-06-18T15:06:49.581Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 200 - Response time: 1009ms - IP: 192.168.247.134 - User: user_1036 - RequestID: 6kx4it9a09k +2025-06-18T15:06:49.681Z [INFO] notification-service - Database SELECT on payments - Execution time: 152ms - Rows affected: 86 - RequestID: m5beycf0x9 +2025-06-18T15:06:49.781Z [INFO] inventory-service - Database DELETE on users - Execution time: 343ms - Rows affected: 54 - RequestID: a3kh5d73t4 +2025-06-18T15:06:49.881Z [INFO] user-service - Operation: cache_miss - Processing time: 54ms - RequestID: 4xrva1mfa8n +2025-06-18T15:06:49.981Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1903ms - IP: 192.168.227.233 - User: user_1063 - RequestID: 5etaagvn6zo +2025-06-18T15:06:50.081Z [TRACE] auth-service - Operation: cache_miss - Processing time: 446ms - RequestID: d6x1oggiijs +2025-06-18T15:06:50.181Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 500 - Response time: 1978ms - IP: 192.168.159.94 - User: user_1092 - RequestID: pf7wfwi6qhj +2025-06-18T15:06:50.281Z [INFO] user-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.32.38 - RequestID: 1hxv3ek0oko +2025-06-18T15:06:50.381Z [DEBUG] auth-service - Operation: order_created - Processing time: 856ms - RequestID: qss2o90s0dd +2025-06-18T15:06:50.481Z [TRACE] user-service - Auth event: login_success - User: user_1068 - IP: 192.168.196.226 - RequestID: v9nogpihc6o +2025-06-18T15:06:50.581Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1769ms - IP: 192.168.97.87 - User: user_1088 - RequestID: kmpsqaxr2q +2025-06-18T15:06:50.681Z [DEBUG] order-service - Operation: cache_miss - Processing time: 696ms - RequestID: 8servg6b595 +2025-06-18T15:06:50.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.81.206 - RequestID: 6idrxqaxqxt +2025-06-18T15:06:50.881Z [TRACE] order-service - Operation: cache_hit - Processing time: 375ms - RequestID: hyj3vp43d0s +2025-06-18T15:06:50.981Z [TRACE] user-service - Operation: email_sent - Processing time: 1026ms - RequestID: 8mdljgefsfc +2025-06-18T15:06:51.081Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 814ms - RequestID: a0x6sp60qhq +2025-06-18T15:06:51.181Z [DEBUG] order-service - Operation: notification_queued - Processing time: 581ms - RequestID: cedkdsm929m +2025-06-18T15:06:51.281Z [INFO] inventory-service - Database DELETE on orders - Execution time: 224ms - Rows affected: 40 - RequestID: b5j4gj4370u +2025-06-18T15:06:51.381Z [TRACE] inventory-service - Database DELETE on users - Execution time: 496ms - Rows affected: 21 - RequestID: 0ze66ruazkw +2025-06-18T15:06:51.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 334ms - RequestID: 8atuyhbjqdy +2025-06-18T15:06:51.581Z [INFO] order-service - Operation: order_created - Processing time: 558ms - RequestID: mw6bc80vzp +2025-06-18T15:06:51.681Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1316ms - IP: 192.168.11.60 - User: user_1068 - RequestID: lhorm9ieuk9 +2025-06-18T15:06:51.781Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1471ms - IP: 192.168.68.158 - User: user_1073 - RequestID: 86me2rhtwwi +2025-06-18T15:06:51.881Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 401 - Response time: 1149ms - IP: 192.168.144.38 - User: user_1039 - RequestID: sy8bjrh7lf +2025-06-18T15:06:51.981Z [INFO] user-service - GET /api/v1/auth/login - Status: 403 - Response time: 1914ms - IP: 192.168.194.41 - User: user_1018 - RequestID: el1tqrre786 +2025-06-18T15:06:52.081Z [INFO] order-service - Auth event: password_change - User: user_1065 - IP: 192.168.240.169 - RequestID: t4untxaivaf +2025-06-18T15:06:52.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.104.37 - RequestID: s83enr6zle +2025-06-18T15:06:52.281Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 778ms - IP: 192.168.85.229 - User: user_1001 - RequestID: a80c089ez1 +2025-06-18T15:06:52.381Z [TRACE] notification-service - Database DELETE on orders - Execution time: 200ms - Rows affected: 45 - RequestID: ctklht5dxb +2025-06-18T15:06:52.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1063 - IP: 192.168.36.218 - RequestID: cvwjpiztdgc +2025-06-18T15:06:52.581Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 502 - Response time: 903ms - IP: 192.168.227.77 - User: user_1039 - RequestID: vfcdk51erj9 +2025-06-18T15:06:52.681Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1471ms - IP: 192.168.187.199 - User: user_1097 - RequestID: u523ocy8svg +2025-06-18T15:06:52.781Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 840ms - IP: 192.168.14.77 - User: user_1050 - RequestID: oy0yc5opne +2025-06-18T15:06:52.881Z [TRACE] auth-service - Database DELETE on orders - Execution time: 369ms - Rows affected: 53 - RequestID: 80pss5et6m9 +2025-06-18T15:06:52.981Z [INFO] inventory-service - Operation: cache_miss - Processing time: 628ms - RequestID: 670qp801tio +2025-06-18T15:06:53.081Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1751ms - IP: 192.168.189.103 - User: user_1088 - RequestID: tyi78u8t5fi +2025-06-18T15:06:53.181Z [TRACE] notification-service - Database INSERT on users - Execution time: 440ms - Rows affected: 99 - RequestID: p0ek1pghblo +2025-06-18T15:06:53.281Z [TRACE] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 17ms - IP: 192.168.1.152 - User: user_1025 - RequestID: hfuqix71a4w +2025-06-18T15:06:53.381Z [TRACE] order-service - Auth event: login_success - User: user_1085 - IP: 192.168.14.77 - RequestID: pv639r05lei +2025-06-18T15:06:53.481Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1247ms - IP: 192.168.159.94 - User: user_1032 - RequestID: gtk21ezyo7n +2025-06-18T15:06:53.581Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 500 - Response time: 202ms - IP: 192.168.240.169 - User: user_1041 - RequestID: 8z1dur53b49 +2025-06-18T15:06:53.681Z [DEBUG] order-service - Auth event: login_success - User: user_1042 - IP: 192.168.144.38 - RequestID: 5uhb1kh2fq5 +2025-06-18T15:06:53.781Z [INFO] notification-service - Auth event: login_failed - User: user_1083 - IP: 192.168.1.152 - RequestID: flf26ohvu1a +2025-06-18T15:06:53.881Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1965ms - IP: 192.168.174.114 - User: user_1016 - RequestID: vz27ghiu2hl +2025-06-18T15:06:53.981Z [TRACE] notification-service - Operation: notification_queued - Processing time: 377ms - RequestID: gmk103a3vk8 +2025-06-18T15:06:54.081Z [INFO] notification-service - Auth event: logout - User: user_1018 - IP: 192.168.189.103 - RequestID: 65rrvehjcam +2025-06-18T15:06:54.181Z [INFO] order-service - POST /api/v1/users - Status: 201 - Response time: 364ms - IP: 192.168.235.117 - User: user_1036 - RequestID: qtz0eumee2 +2025-06-18T15:06:54.281Z [INFO] auth-service - Operation: cache_miss - Processing time: 428ms - RequestID: fjgu9w0peev +2025-06-18T15:06:54.381Z [DEBUG] auth-service - GET /api/v1/payments - Status: 503 - Response time: 881ms - IP: 192.168.79.143 - User: user_1015 - RequestID: yegijruazvl +2025-06-18T15:06:54.481Z [INFO] order-service - Operation: cache_hit - Processing time: 591ms - RequestID: bzyv4iwodj5 +2025-06-18T15:06:54.581Z [TRACE] inventory-service - Auth event: login_failed - User: user_1042 - IP: 192.168.13.72 - RequestID: gbmxt7alo5u +2025-06-18T15:06:54.681Z [INFO] auth-service - Database DELETE on users - Execution time: 32ms - Rows affected: 49 - RequestID: c8d9y8dd1po +2025-06-18T15:06:54.781Z [TRACE] notification-service - Database INSERT on payments - Execution time: 358ms - Rows affected: 72 - RequestID: 86o9xtfm2fq +2025-06-18T15:06:54.881Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 403 - Response time: 1083ms - IP: 192.168.97.87 - User: user_1003 - RequestID: rkh1n6btr8 +2025-06-18T15:06:54.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.28.146 - RequestID: qtjenp72ucd +2025-06-18T15:06:55.081Z [TRACE] user-service - POST /api/v1/orders - Status: 500 - Response time: 376ms - IP: 192.168.229.123 - User: user_1098 - RequestID: tod0jf9i61 +2025-06-18T15:06:55.181Z [INFO] user-service - Database UPDATE on orders - Execution time: 19ms - Rows affected: 41 - RequestID: rnqefoaz78d +2025-06-18T15:06:55.281Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 401 - Response time: 1495ms - IP: 192.168.46.63 - User: user_1061 - RequestID: k8zx58u6g5 +2025-06-18T15:06:55.381Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.28.146 - RequestID: gbllqun58w +2025-06-18T15:06:55.481Z [TRACE] auth-service - POST /api/v1/users - Status: 400 - Response time: 1176ms - IP: 192.168.138.123 - User: user_1097 - RequestID: adezydssrd +2025-06-18T15:06:55.581Z [INFO] payment-service - Operation: email_sent - Processing time: 62ms - RequestID: q715ulh2bp +2025-06-18T15:06:55.681Z [INFO] order-service - Operation: email_sent - Processing time: 257ms - RequestID: f2vy1j37hfj +2025-06-18T15:06:55.781Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.232.72 - RequestID: w0u6wqlvqm +2025-06-18T15:06:55.881Z [INFO] order-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.242.165 - RequestID: wk0t827zblk +2025-06-18T15:06:55.981Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 18ms - Rows affected: 61 - RequestID: yldihuqckxs +2025-06-18T15:06:56.081Z [TRACE] order-service - Database DELETE on products - Execution time: 314ms - Rows affected: 50 - RequestID: xkpqir9u6br +2025-06-18T15:06:56.181Z [INFO] notification-service - Operation: notification_queued - Processing time: 360ms - RequestID: kjavot07eb +2025-06-18T15:06:56.281Z [TRACE] notification-service - Auth event: password_change - User: user_1048 - IP: 192.168.133.7 - RequestID: a8ppdh3ej4d +2025-06-18T15:06:56.381Z [TRACE] payment-service - Operation: order_created - Processing time: 374ms - RequestID: k23givey3bi +2025-06-18T15:06:56.481Z [INFO] notification-service - Auth event: login_failed - User: user_1072 - IP: 192.168.46.63 - RequestID: ghokjmnowmp +2025-06-18T15:06:56.581Z [INFO] user-service - POST /api/v1/inventory - Status: 200 - Response time: 458ms - IP: 192.168.79.141 - User: user_1092 - RequestID: 4i0ktsh7lhm +2025-06-18T15:06:56.681Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 141ms - Rows affected: 41 - RequestID: ow8eypbe2v +2025-06-18T15:06:56.781Z [TRACE] user-service - Auth event: login_success - User: user_1014 - IP: 192.168.32.38 - RequestID: u6di16heiae +2025-06-18T15:06:56.881Z [TRACE] payment-service - Database INSERT on payments - Execution time: 29ms - Rows affected: 14 - RequestID: 4hkborxp0xv +2025-06-18T15:06:56.981Z [TRACE] user-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.138.123 - RequestID: ihylgzsukjk +2025-06-18T15:06:57.081Z [TRACE] order-service - PATCH /api/v1/orders - Status: 503 - Response time: 1668ms - IP: 192.168.113.218 - User: user_1072 - RequestID: xxwy0ube1uc +2025-06-18T15:06:57.181Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.30.79 - RequestID: tlkaqxnuox +2025-06-18T15:06:57.281Z [INFO] order-service - Auth event: login_success - User: user_1083 - IP: 192.168.31.117 - RequestID: 7hxjcbc6mtp +2025-06-18T15:06:57.381Z [INFO] notification-service - Auth event: login_failed - User: user_1082 - IP: 192.168.97.87 - RequestID: it45fspcrz +2025-06-18T15:06:57.481Z [TRACE] order-service - Operation: cache_miss - Processing time: 76ms - RequestID: 506l8h45j1j +2025-06-18T15:06:57.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.1.152 - RequestID: 7y29z87ot2u +2025-06-18T15:06:57.681Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1132ms - IP: 192.168.64.33 - User: user_1021 - RequestID: 78wayevykty +2025-06-18T15:06:57.781Z [INFO] payment-service - Auth event: login_failed - User: user_1097 - IP: 192.168.167.32 - RequestID: 30362vhbe2z +2025-06-18T15:06:57.881Z [TRACE] payment-service - Database SELECT on payments - Execution time: 51ms - Rows affected: 38 - RequestID: 8nahqq3etui +2025-06-18T15:06:57.981Z [INFO] auth-service - Operation: payment_processed - Processing time: 392ms - RequestID: s0cnqgvoudj +2025-06-18T15:06:58.081Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 54ms - Rows affected: 10 - RequestID: 9vrc0zl4uai +2025-06-18T15:06:58.181Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 274ms - Rows affected: 16 - RequestID: 43p973cyunr +2025-06-18T15:06:58.281Z [TRACE] user-service - POST /api/v1/orders - Status: 404 - Response time: 1112ms - IP: 192.168.159.94 - User: user_1065 - RequestID: ksj18l8g2va +2025-06-18T15:06:58.381Z [DEBUG] order-service - GET /api/v1/inventory - Status: 200 - Response time: 100ms - IP: 192.168.189.103 - User: user_1064 - RequestID: barafg6w61k +2025-06-18T15:06:58.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 654ms - RequestID: vd1jhzm482 +2025-06-18T15:06:58.581Z [TRACE] payment-service - Auth event: login_success - User: user_1071 - IP: 192.168.85.229 - RequestID: lf11ahgvi +2025-06-18T15:06:58.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 911ms - RequestID: tcl6mtnglea +2025-06-18T15:06:58.781Z [TRACE] user-service - DELETE /api/v1/orders - Status: 201 - Response time: 433ms - IP: 192.168.33.76 - User: user_1070 - RequestID: iu80guv5ch +2025-06-18T15:06:58.881Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 500 - Response time: 769ms - IP: 192.168.235.117 - User: user_1006 - RequestID: qq0592opkz +2025-06-18T15:06:58.981Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 404 - Response time: 1442ms - IP: 192.168.211.72 - User: user_1007 - RequestID: vlc91n9qiok +2025-06-18T15:06:59.081Z [TRACE] payment-service - Auth event: logout - User: user_1036 - IP: 192.168.36.218 - RequestID: oagr9rfik6r +2025-06-18T15:06:59.181Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 311ms - Rows affected: 21 - RequestID: cdzd3wwlps4 +2025-06-18T15:06:59.281Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 503 - Response time: 210ms - IP: 192.168.46.63 - User: user_1079 - RequestID: psc2gsmu9ts +2025-06-18T15:06:59.381Z [DEBUG] auth-service - Operation: order_created - Processing time: 87ms - RequestID: 00r7rg6v080lm +2025-06-18T15:06:59.481Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 503 - Response time: 1186ms - IP: 192.168.31.117 - User: user_1030 - RequestID: 0fd51htqakm9 +2025-06-18T15:06:59.581Z [INFO] user-service - GET /api/v1/payments - Status: 503 - Response time: 1657ms - IP: 192.168.36.218 - User: user_1025 - RequestID: ob5idb1aal +2025-06-18T15:06:59.681Z [DEBUG] auth-service - Operation: order_created - Processing time: 102ms - RequestID: uwfgj8jnxsr +2025-06-18T15:06:59.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1006 - IP: 192.168.79.143 - RequestID: gh3s3gd57rb +2025-06-18T15:06:59.881Z [INFO] order-service - POST /api/v1/payments - Status: 403 - Response time: 1738ms - IP: 192.168.53.133 - User: user_1068 - RequestID: epjqtys67 +2025-06-18T15:06:59.981Z [INFO] auth-service - Auth event: login_success - User: user_1039 - IP: 192.168.174.114 - RequestID: iai93pj2bec +2025-06-18T15:07:00.081Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 292ms - Rows affected: 61 - RequestID: rbcbvm66fv +2025-06-18T15:07:00.181Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 156ms - Rows affected: 9 - RequestID: y74iikngp8d +2025-06-18T15:07:00.281Z [INFO] payment-service - Auth event: logout - User: user_1005 - IP: 192.168.147.171 - RequestID: 2tw88lpduwx +2025-06-18T15:07:00.381Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 754ms - RequestID: glypth4q067 +2025-06-18T15:07:00.481Z [TRACE] payment-service - Auth event: login_success - User: user_1097 - IP: 192.168.174.114 - RequestID: w9xnb7rsda +2025-06-18T15:07:00.581Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1921ms - IP: 192.168.79.116 - User: user_1006 - RequestID: 28re0xscrc2 +2025-06-18T15:07:00.681Z [TRACE] order-service - Auth event: login_success - User: user_1019 - IP: 192.168.97.87 - RequestID: p1191pqgt9s +2025-06-18T15:07:00.781Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.31.117 - RequestID: h4a4uhlmnnv +2025-06-18T15:07:00.881Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 120ms - Rows affected: 60 - RequestID: xvvcgr7wjyf +2025-06-18T15:07:00.981Z [TRACE] notification-service - Database SELECT on orders - Execution time: 156ms - Rows affected: 60 - RequestID: al6dnam987t +2025-06-18T15:07:01.081Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 404 - Response time: 553ms - IP: 192.168.227.233 - User: user_1094 - RequestID: 6fjflgr7sg +2025-06-18T15:07:01.181Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 400 - Response time: 1295ms - IP: 192.168.97.87 - User: user_1096 - RequestID: aquptzicxbl +2025-06-18T15:07:01.281Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 234ms - IP: 192.168.113.218 - User: user_1003 - RequestID: lqfpjpvopr +2025-06-18T15:07:01.381Z [TRACE] notification-service - Operation: notification_queued - Processing time: 930ms - RequestID: 3x3u3id9ncg +2025-06-18T15:07:01.481Z [INFO] auth-service - Operation: order_created - Processing time: 994ms - RequestID: i2fa1y5q1oc +2025-06-18T15:07:01.581Z [INFO] notification-service - Database UPDATE on users - Execution time: 381ms - Rows affected: 40 - RequestID: yo5v3f7ddwm +2025-06-18T15:07:01.681Z [INFO] auth-service - Operation: order_created - Processing time: 585ms - RequestID: gxnq80sutrb +2025-06-18T15:07:01.781Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 503 - Response time: 217ms - IP: 192.168.187.199 - User: user_1050 - RequestID: nuima9a78nm +2025-06-18T15:07:01.881Z [DEBUG] payment-service - Database DELETE on users - Execution time: 223ms - Rows affected: 85 - RequestID: jlrkxmdxckg +2025-06-18T15:07:01.981Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 401 - Response time: 481ms - IP: 192.168.138.123 - User: user_1059 - RequestID: vpiv5ij09u +2025-06-18T15:07:02.081Z [TRACE] user-service - PATCH /api/v1/users - Status: 400 - Response time: 319ms - IP: 192.168.28.146 - User: user_1000 - RequestID: 4vq86ppoaqy +2025-06-18T15:07:02.181Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 880ms - RequestID: csqxet6x3bh +2025-06-18T15:07:02.281Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 200 - Response time: 981ms - IP: 192.168.13.72 - User: user_1048 - RequestID: f8k7v71ktsk +2025-06-18T15:07:02.381Z [INFO] inventory-service - Auth event: login_success - User: user_1044 - IP: 192.168.33.76 - RequestID: vu6yv7j0uk +2025-06-18T15:07:02.481Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 559ms - RequestID: ne93vijf8r +2025-06-18T15:07:02.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1044 - IP: 192.168.13.72 - RequestID: 1jobzwr0fwx +2025-06-18T15:07:02.681Z [INFO] auth-service - Auth event: password_change - User: user_1038 - IP: 192.168.227.233 - RequestID: yt5fa76qdlp +2025-06-18T15:07:02.781Z [TRACE] user-service - Database DELETE on orders - Execution time: 442ms - Rows affected: 28 - RequestID: sopt1o1qx7g +2025-06-18T15:07:02.881Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 455ms - Rows affected: 65 - RequestID: e0c2y6u1agl +2025-06-18T15:07:02.981Z [INFO] auth-service - Database SELECT on payments - Execution time: 81ms - Rows affected: 36 - RequestID: yp6qjkpxwbn +2025-06-18T15:07:03.081Z [INFO] order-service - PATCH /api/v1/payments - Status: 400 - Response time: 908ms - IP: 192.168.85.229 - User: user_1078 - RequestID: hyf6tekmo4o +2025-06-18T15:07:03.181Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 448ms - Rows affected: 18 - RequestID: uwyhjovaevl +2025-06-18T15:07:03.281Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 116ms - Rows affected: 31 - RequestID: zez19muqgtf +2025-06-18T15:07:03.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 62ms - RequestID: 0jr8xaw1c7y +2025-06-18T15:07:03.481Z [DEBUG] order-service - Auth event: password_change - User: user_1053 - IP: 192.168.10.184 - RequestID: 6ijv7cqjy0f +2025-06-18T15:07:03.581Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1275ms - IP: 192.168.79.116 - User: user_1054 - RequestID: rs0l29lbe5 +2025-06-18T15:07:03.681Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1464ms - IP: 192.168.159.94 - User: user_1096 - RequestID: vl372vdfymo +2025-06-18T15:07:03.781Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 843ms - IP: 192.168.227.77 - User: user_1060 - RequestID: 2xic3qprtm +2025-06-18T15:07:03.881Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1637ms - IP: 192.168.30.79 - User: user_1021 - RequestID: shp66eb858j +2025-06-18T15:07:03.981Z [TRACE] order-service - Operation: email_sent - Processing time: 61ms - RequestID: ybdyiot2gg +2025-06-18T15:07:04.081Z [TRACE] user-service - Database DELETE on sessions - Execution time: 383ms - Rows affected: 86 - RequestID: qil5t9z9kv +2025-06-18T15:07:04.181Z [INFO] inventory-service - Operation: cache_hit - Processing time: 170ms - RequestID: zs8wd3ripeg +2025-06-18T15:07:04.281Z [INFO] notification-service - GET /api/v1/payments - Status: 500 - Response time: 628ms - IP: 192.168.32.38 - User: user_1044 - RequestID: 2u94nwrn52j +2025-06-18T15:07:04.381Z [TRACE] order-service - PATCH /api/v1/orders - Status: 400 - Response time: 59ms - IP: 192.168.174.114 - User: user_1023 - RequestID: jhjf7vvips +2025-06-18T15:07:04.481Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 253ms - Rows affected: 89 - RequestID: z6f7w93ax4 +2025-06-18T15:07:04.581Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 200 - Response time: 1147ms - IP: 192.168.68.158 - User: user_1008 - RequestID: p3qfr1omgp +2025-06-18T15:07:04.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.79.116 - RequestID: e9ukcewipdd +2025-06-18T15:07:04.781Z [TRACE] auth-service - Auth event: logout - User: user_1059 - IP: 192.168.159.94 - RequestID: ntw7ny5w3cj +2025-06-18T15:07:04.881Z [INFO] order-service - Operation: payment_processed - Processing time: 180ms - RequestID: g80o8gqpb8q +2025-06-18T15:07:04.981Z [INFO] payment-service - Database DELETE on orders - Execution time: 115ms - Rows affected: 91 - RequestID: ca736s8bwmb +2025-06-18T15:07:05.081Z [INFO] inventory-service - Operation: cache_miss - Processing time: 93ms - RequestID: w77waf4i64a +2025-06-18T15:07:05.181Z [DEBUG] user-service - Operation: notification_queued - Processing time: 305ms - RequestID: ykiu6r5icic +2025-06-18T15:07:05.281Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 612ms - RequestID: buk8np5jt9a +2025-06-18T15:07:05.381Z [TRACE] notification-service - Operation: order_created - Processing time: 443ms - RequestID: 5uw730qxod7 +2025-06-18T15:07:05.481Z [INFO] user-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.79.143 - RequestID: 0y6f17id03mk +2025-06-18T15:07:05.581Z [INFO] auth-service - Auth event: login_failed - User: user_1020 - IP: 192.168.227.233 - RequestID: tn4qz8v9718 +2025-06-18T15:07:05.681Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 125ms - Rows affected: 42 - RequestID: 1efr8v1v8ol +2025-06-18T15:07:05.781Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 36ms - Rows affected: 8 - RequestID: 2ykusp0w6id +2025-06-18T15:07:05.881Z [INFO] notification-service - Database SELECT on users - Execution time: 54ms - Rows affected: 19 - RequestID: 5j2or1pp56q +2025-06-18T15:07:05.981Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 502 - Response time: 656ms - IP: 192.168.187.199 - User: user_1076 - RequestID: t75j7mksiis +2025-06-18T15:07:06.081Z [INFO] auth-service - Operation: order_created - Processing time: 424ms - RequestID: me5099jan6m +2025-06-18T15:07:06.181Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 178ms - Rows affected: 99 - RequestID: 2svaeyg4vqt +2025-06-18T15:07:06.281Z [INFO] notification-service - Database UPDATE on users - Execution time: 353ms - Rows affected: 56 - RequestID: k9vhpu9x3hr +2025-06-18T15:07:06.381Z [INFO] auth-service - Database INSERT on sessions - Execution time: 175ms - Rows affected: 56 - RequestID: 31d5a2xsb45 +2025-06-18T15:07:06.481Z [TRACE] user-service - Operation: email_sent - Processing time: 267ms - RequestID: ftvey328m9i +2025-06-18T15:07:06.581Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 1020ms - RequestID: 2l61xjoyxke +2025-06-18T15:07:06.681Z [INFO] user-service - Auth event: logout - User: user_1029 - IP: 192.168.13.72 - RequestID: 199zvq98msh +2025-06-18T15:07:06.781Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 841ms - RequestID: 98wu94x1pi +2025-06-18T15:07:06.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1076 - IP: 192.168.32.38 - RequestID: 10lxg4yrtqli +2025-06-18T15:07:06.981Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 198ms - RequestID: ygitm85hn1f +2025-06-18T15:07:07.081Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 130ms - Rows affected: 71 - RequestID: pjalr7c78b +2025-06-18T15:07:07.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.167.32 - RequestID: w4yiyc56m +2025-06-18T15:07:07.281Z [DEBUG] user-service - Database UPDATE on products - Execution time: 53ms - Rows affected: 48 - RequestID: 1wferqnj5pw +2025-06-18T15:07:07.381Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 59ms - Rows affected: 24 - RequestID: cbn6vsc430n +2025-06-18T15:07:07.481Z [INFO] auth-service - Auth event: login_failed - User: user_1065 - IP: 192.168.174.114 - RequestID: 1wqbcnry0h9 +2025-06-18T15:07:07.581Z [INFO] inventory-service - Auth event: login_failed - User: user_1008 - IP: 192.168.100.240 - RequestID: tdsamoiyw8f +2025-06-18T15:07:07.681Z [TRACE] payment-service - Auth event: login_failed - User: user_1097 - IP: 192.168.13.72 - RequestID: vno1qq5gm9 +2025-06-18T15:07:07.781Z [TRACE] order-service - Auth event: login_failed - User: user_1025 - IP: 192.168.194.41 - RequestID: if5tiqot3ph +2025-06-18T15:07:07.881Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 210ms - Rows affected: 88 - RequestID: vf30dbueogp +2025-06-18T15:07:07.981Z [TRACE] order-service - Auth event: login_failed - User: user_1028 - IP: 192.168.181.225 - RequestID: bpiifjlhg2h +2025-06-18T15:07:08.081Z [DEBUG] auth-service - Operation: order_created - Processing time: 654ms - RequestID: 787dwch1258 +2025-06-18T15:07:08.181Z [DEBUG] user-service - Database SELECT on products - Execution time: 290ms - Rows affected: 91 - RequestID: xys9sqa7r7b +2025-06-18T15:07:08.281Z [TRACE] payment-service - Database UPDATE on products - Execution time: 221ms - Rows affected: 61 - RequestID: ifrx485od4 +2025-06-18T15:07:08.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1066 - IP: 192.168.64.33 - RequestID: bllijv9wyjc +2025-06-18T15:07:08.481Z [INFO] notification-service - PUT /api/v1/orders - Status: 502 - Response time: 249ms - IP: 192.168.144.38 - User: user_1020 - RequestID: 4zirdcrmao9 +2025-06-18T15:07:08.581Z [TRACE] user-service - GET /api/v1/payments - Status: 503 - Response time: 218ms - IP: 192.168.11.60 - User: user_1057 - RequestID: hw473leenvv +2025-06-18T15:07:08.681Z [INFO] inventory-service - Database DELETE on products - Execution time: 71ms - Rows affected: 59 - RequestID: ox0fg7609v +2025-06-18T15:07:08.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1099 - IP: 192.168.167.32 - RequestID: 2yy40ejomby +2025-06-18T15:07:08.881Z [TRACE] user-service - Operation: payment_processed - Processing time: 422ms - RequestID: 5z34j6iayqq +2025-06-18T15:07:08.981Z [TRACE] payment-service - Operation: order_created - Processing time: 674ms - RequestID: 87ptssouiyc +2025-06-18T15:07:09.081Z [INFO] user-service - Database DELETE on payments - Execution time: 439ms - Rows affected: 76 - RequestID: 2wuvh2k1jsn +2025-06-18T15:07:09.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1026 - IP: 192.168.242.165 - RequestID: 7u50f8skgv3 +2025-06-18T15:07:09.281Z [TRACE] notification-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.181.225 - RequestID: 3outtxru24f +2025-06-18T15:07:09.381Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 401 - Response time: 231ms - IP: 192.168.229.123 - User: user_1043 - RequestID: mvyekkfo7li +2025-06-18T15:07:09.481Z [INFO] notification-service - GET /api/v1/orders - Status: 503 - Response time: 1702ms - IP: 192.168.97.87 - User: user_1012 - RequestID: 9ik62u6a4ha +2025-06-18T15:07:09.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1008 - IP: 192.168.232.72 - RequestID: 7lh7ir2okp9 +2025-06-18T15:07:09.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.229.123 - RequestID: k8vqntsv0um +2025-06-18T15:07:09.781Z [DEBUG] auth-service - Auth event: logout - User: user_1012 - IP: 192.168.68.158 - RequestID: m2pg1r3edb +2025-06-18T15:07:09.881Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 792ms - RequestID: toyia00gyg +2025-06-18T15:07:09.981Z [TRACE] user-service - Database DELETE on products - Execution time: 180ms - Rows affected: 94 - RequestID: q9wa3i1kmw +2025-06-18T15:07:10.081Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 121ms - Rows affected: 38 - RequestID: d3tg9gjq39d +2025-06-18T15:07:10.181Z [TRACE] order-service - Database INSERT on users - Execution time: 87ms - Rows affected: 30 - RequestID: sa1yfesd +2025-06-18T15:07:10.281Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 820ms - RequestID: 63jskt15cby +2025-06-18T15:07:10.381Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 251ms - Rows affected: 24 - RequestID: lb3joqvq5xm +2025-06-18T15:07:10.481Z [DEBUG] user-service - Database UPDATE on products - Execution time: 179ms - Rows affected: 54 - RequestID: euqj9v2hsr +2025-06-18T15:07:10.581Z [TRACE] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 1300ms - IP: 192.168.235.117 - User: user_1049 - RequestID: ytmqqvjy10p +2025-06-18T15:07:10.681Z [TRACE] auth-service - Operation: cache_miss - Processing time: 633ms - RequestID: r2kz76hj37q +2025-06-18T15:07:10.781Z [INFO] user-service - Auth event: password_change - User: user_1067 - IP: 192.168.44.5 - RequestID: eknozh851lh +2025-06-18T15:07:10.881Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 404 - Response time: 911ms - IP: 192.168.167.32 - User: user_1031 - RequestID: fbf43u4z68k +2025-06-18T15:07:10.981Z [TRACE] order-service - Database INSERT on users - Execution time: 76ms - Rows affected: 19 - RequestID: 422262grre3 +2025-06-18T15:07:11.081Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 401 - Response time: 874ms - IP: 192.168.141.100 - User: user_1015 - RequestID: e1uctve3g0l +2025-06-18T15:07:11.181Z [TRACE] notification-service - PUT /api/v1/orders - Status: 200 - Response time: 1350ms - IP: 192.168.133.7 - User: user_1059 - RequestID: 7v3pucvc60w +2025-06-18T15:07:11.281Z [DEBUG] payment-service - Database SELECT on users - Execution time: 461ms - Rows affected: 33 - RequestID: wyk9ncrj3po +2025-06-18T15:07:11.381Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 412ms - Rows affected: 47 - RequestID: wcg1ml6gwog +2025-06-18T15:07:11.481Z [INFO] user-service - Operation: notification_queued - Processing time: 117ms - RequestID: ebopg750a4 +2025-06-18T15:07:11.581Z [DEBUG] notification-service - POST /api/v1/users - Status: 201 - Response time: 845ms - IP: 192.168.13.72 - User: user_1077 - RequestID: r49i5w7262b +2025-06-18T15:07:11.681Z [TRACE] payment-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.28.146 - RequestID: qusomfzq2c +2025-06-18T15:07:11.781Z [TRACE] auth-service - Database UPDATE on users - Execution time: 492ms - Rows affected: 97 - RequestID: qv3nise2f3c +2025-06-18T15:07:11.881Z [TRACE] payment-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.247.134 - RequestID: wygydg9k1j +2025-06-18T15:07:11.981Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 416ms - Rows affected: 77 - RequestID: d3il90oy8jd +2025-06-18T15:07:12.081Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 201 - Response time: 837ms - IP: 192.168.187.199 - User: user_1017 - RequestID: 6qizlxmfa2a +2025-06-18T15:07:12.181Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 972ms - IP: 192.168.81.206 - User: user_1042 - RequestID: 5uhekv045wh +2025-06-18T15:07:12.281Z [INFO] inventory-service - Auth event: login_failed - User: user_1093 - IP: 192.168.81.206 - RequestID: k10xmo3m038 +2025-06-18T15:07:12.381Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 50ms - RequestID: al2pznmwxwc +2025-06-18T15:07:12.481Z [TRACE] user-service - Operation: notification_queued - Processing time: 135ms - RequestID: c7h85w5mv18 +2025-06-18T15:07:12.581Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1004 - IP: 192.168.44.5 - RequestID: pqqlyrgisdp +2025-06-18T15:07:12.681Z [DEBUG] order-service - Operation: cache_hit - Processing time: 103ms - RequestID: ht5sbc3fqc9 +2025-06-18T15:07:12.781Z [INFO] payment-service - Auth event: login_failed - User: user_1096 - IP: 192.168.33.76 - RequestID: 6c4bv308w2 +2025-06-18T15:07:12.881Z [INFO] user-service - Database DELETE on sessions - Execution time: 107ms - Rows affected: 80 - RequestID: kmusfl4j3v +2025-06-18T15:07:12.981Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 320ms - Rows affected: 30 - RequestID: y00wml8oe7 +2025-06-18T15:07:13.081Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 436ms - Rows affected: 99 - RequestID: jtbge50dvqq +2025-06-18T15:07:13.181Z [INFO] user-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.13.72 - RequestID: mw2cp2wnms +2025-06-18T15:07:13.281Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 386ms - Rows affected: 89 - RequestID: 18dqwplyffl +2025-06-18T15:07:13.381Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 500 - Response time: 79ms - IP: 192.168.1.152 - User: user_1044 - RequestID: na082m03ph +2025-06-18T15:07:13.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.144.38 - RequestID: 25dnt6px2z4 +2025-06-18T15:07:13.581Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.194.41 - RequestID: w49xfcqkx5s +2025-06-18T15:07:13.681Z [TRACE] order-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.79.143 - RequestID: lh1tk9ye9e +2025-06-18T15:07:13.781Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 200 - Response time: 859ms - IP: 192.168.113.218 - User: user_1064 - RequestID: l8sxybyctz9 +2025-06-18T15:07:13.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.44.5 - RequestID: yjd0sn0cgh +2025-06-18T15:07:13.981Z [TRACE] user-service - Operation: notification_queued - Processing time: 599ms - RequestID: n86nb7tinsi +2025-06-18T15:07:14.081Z [INFO] auth-service - GET /api/v1/orders - Status: 502 - Response time: 1001ms - IP: 192.168.68.158 - User: user_1058 - RequestID: ma255wvqqu +2025-06-18T15:07:14.181Z [DEBUG] auth-service - Database DELETE on users - Execution time: 197ms - Rows affected: 30 - RequestID: t01wvcjuhdh +2025-06-18T15:07:14.281Z [INFO] user-service - Database SELECT on users - Execution time: 274ms - Rows affected: 99 - RequestID: 931w3t6xycb +2025-06-18T15:07:14.381Z [INFO] user-service - Operation: cache_hit - Processing time: 709ms - RequestID: o44opynn3v +2025-06-18T15:07:14.481Z [DEBUG] order-service - GET /api/v1/payments - Status: 201 - Response time: 868ms - IP: 192.168.133.7 - User: user_1042 - RequestID: jfw1wwjjt5 +2025-06-18T15:07:14.581Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.167.32 - RequestID: 2axajxxc3po +2025-06-18T15:07:14.681Z [INFO] payment-service - Auth event: login_success - User: user_1091 - IP: 192.168.189.103 - RequestID: 3nvervkz6up +2025-06-18T15:07:14.781Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 377ms - Rows affected: 80 - RequestID: 05oitzji7vz +2025-06-18T15:07:14.881Z [TRACE] auth-service - POST /api/v1/inventory - Status: 502 - Response time: 1701ms - IP: 192.168.46.63 - User: user_1016 - RequestID: 7f1dg8psqid +2025-06-18T15:07:14.981Z [INFO] payment-service - Operation: email_sent - Processing time: 400ms - RequestID: j9c7usraphi +2025-06-18T15:07:15.081Z [TRACE] notification-service - Operation: order_created - Processing time: 489ms - RequestID: xunviyw3gdk +2025-06-18T15:07:15.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1066 - IP: 192.168.181.225 - RequestID: m7jgusrlf2h +2025-06-18T15:07:15.281Z [TRACE] inventory-service - Auth event: logout - User: user_1048 - IP: 192.168.36.218 - RequestID: tdd9opaj15 +2025-06-18T15:07:15.381Z [TRACE] auth-service - Operation: cache_hit - Processing time: 925ms - RequestID: ddspd7ip2ma +2025-06-18T15:07:15.481Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 849ms - RequestID: uiffoxid4kl +2025-06-18T15:07:15.581Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1446ms - IP: 192.168.181.225 - User: user_1017 - RequestID: 03a91ijea6be +2025-06-18T15:07:15.681Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 123ms - Rows affected: 49 - RequestID: gbh86r2x35l +2025-06-18T15:07:15.781Z [INFO] inventory-service - Operation: order_created - Processing time: 730ms - RequestID: mabiu6cl0un +2025-06-18T15:07:15.881Z [INFO] notification-service - Database UPDATE on payments - Execution time: 62ms - Rows affected: 69 - RequestID: 9xrsrekszhk +2025-06-18T15:07:15.981Z [TRACE] order-service - Operation: notification_queued - Processing time: 253ms - RequestID: 895k0bqz135 +2025-06-18T15:07:16.081Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1526ms - IP: 192.168.174.114 - User: user_1023 - RequestID: cz4dwdz06pw +2025-06-18T15:07:16.181Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 222ms - Rows affected: 30 - RequestID: rjoyv4vuex +2025-06-18T15:07:16.281Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 906ms - RequestID: ukfguoqiben +2025-06-18T15:07:16.381Z [TRACE] inventory-service - POST /api/v1/payments - Status: 403 - Response time: 376ms - IP: 192.168.187.199 - User: user_1020 - RequestID: 7tfcngq59cf +2025-06-18T15:07:16.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1012 - IP: 192.168.14.77 - RequestID: 5bp1ql7q515 +2025-06-18T15:07:16.581Z [INFO] notification-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.113.218 - RequestID: 5czhst39h8l +2025-06-18T15:07:16.681Z [DEBUG] auth-service - Auth event: password_change - User: user_1039 - IP: 192.168.235.117 - RequestID: j119z55x89n +2025-06-18T15:07:16.781Z [TRACE] payment-service - POST /api/v1/inventory - Status: 401 - Response time: 596ms - IP: 192.168.33.76 - User: user_1093 - RequestID: mjot5z3bcr +2025-06-18T15:07:16.881Z [TRACE] notification-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.138.123 - RequestID: yz9m9l7zkq +2025-06-18T15:07:16.981Z [INFO] order-service - POST /api/v1/payments - Status: 400 - Response time: 303ms - IP: 192.168.181.225 - User: user_1031 - RequestID: 5ue32oqtd0f +2025-06-18T15:07:17.081Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 25ms - Rows affected: 59 - RequestID: 0z9qf2cd1szp +2025-06-18T15:07:17.181Z [INFO] payment-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.36.218 - RequestID: 5rguo0pfv3r +2025-06-18T15:07:17.281Z [TRACE] payment-service - Auth event: login_success - User: user_1047 - IP: 192.168.232.72 - RequestID: gl2maz5g6ra +2025-06-18T15:07:17.381Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 26ms - Rows affected: 20 - RequestID: uazxgiwjbak +2025-06-18T15:07:17.481Z [INFO] inventory-service - Auth event: password_change - User: user_1060 - IP: 192.168.170.215 - RequestID: nt8qb7lstcd +2025-06-18T15:07:17.581Z [INFO] user-service - Operation: order_created - Processing time: 350ms - RequestID: 33piruprrdd +2025-06-18T15:07:17.681Z [INFO] order-service - Operation: email_sent - Processing time: 485ms - RequestID: xj8iqjg7v5p +2025-06-18T15:07:17.781Z [INFO] notification-service - Database UPDATE on users - Execution time: 192ms - Rows affected: 75 - RequestID: 8eclgfv8kzw +2025-06-18T15:07:17.881Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 502 - Response time: 847ms - IP: 192.168.232.72 - User: user_1095 - RequestID: 944elnw5o1f +2025-06-18T15:07:17.981Z [TRACE] payment-service - Auth event: password_change - User: user_1022 - IP: 192.168.81.206 - RequestID: 9728n1hyofw +2025-06-18T15:07:18.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.167.32 - RequestID: shgx9n4zx7r +2025-06-18T15:07:18.181Z [INFO] inventory-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.104.37 - RequestID: 05nal5vce4pj +2025-06-18T15:07:18.281Z [DEBUG] auth-service - Database INSERT on products - Execution time: 53ms - Rows affected: 98 - RequestID: cucs9rkw1hf +2025-06-18T15:07:18.381Z [INFO] auth-service - DELETE /api/v1/payments - Status: 200 - Response time: 1304ms - IP: 192.168.227.77 - User: user_1061 - RequestID: o8gm7x79cis +2025-06-18T15:07:18.481Z [TRACE] auth-service - Auth event: login_success - User: user_1033 - IP: 192.168.138.123 - RequestID: 2cpq88q6vi7 +2025-06-18T15:07:18.581Z [INFO] order-service - Auth event: password_change - User: user_1014 - IP: 192.168.189.103 - RequestID: 88wrx2w4nx6 +2025-06-18T15:07:18.681Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 277ms - Rows affected: 30 - RequestID: cpm4etwqfbt +2025-06-18T15:07:18.781Z [DEBUG] user-service - PUT /api/v1/orders - Status: 400 - Response time: 1442ms - IP: 192.168.232.72 - User: user_1074 - RequestID: t26x9bjew6a +2025-06-18T15:07:18.881Z [DEBUG] auth-service - GET /api/v1/orders - Status: 201 - Response time: 1465ms - IP: 192.168.227.77 - User: user_1048 - RequestID: ysc6a7sd5hs +2025-06-18T15:07:18.981Z [DEBUG] order-service - Auth event: password_change - User: user_1067 - IP: 192.168.104.37 - RequestID: gdsd76y6ov +2025-06-18T15:07:19.081Z [TRACE] user-service - POST /api/v1/payments - Status: 500 - Response time: 153ms - IP: 192.168.13.72 - User: user_1043 - RequestID: rkt5aeopo4a +2025-06-18T15:07:19.181Z [INFO] auth-service - Database INSERT on sessions - Execution time: 479ms - Rows affected: 62 - RequestID: nn4sh33nv1f +2025-06-18T15:07:19.281Z [INFO] payment-service - GET /api/v1/users - Status: 201 - Response time: 514ms - IP: 192.168.144.38 - User: user_1036 - RequestID: lkuegxpf0rr +2025-06-18T15:07:19.381Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1624ms - IP: 192.168.167.32 - User: user_1075 - RequestID: vl037lhrs5 +2025-06-18T15:07:19.481Z [INFO] user-service - Auth event: login_success - User: user_1019 - IP: 192.168.100.240 - RequestID: olah10cqdmp +2025-06-18T15:07:19.581Z [INFO] auth-service - Operation: cache_hit - Processing time: 654ms - RequestID: ruccqt5oatk +2025-06-18T15:07:19.681Z [INFO] notification-service - POST /api/v1/inventory - Status: 200 - Response time: 585ms - IP: 192.168.68.158 - User: user_1012 - RequestID: ezls9u0r4e8 +2025-06-18T15:07:19.781Z [TRACE] order-service - PUT /api/v1/orders - Status: 404 - Response time: 1479ms - IP: 192.168.14.77 - User: user_1016 - RequestID: 9q9tmx9b67f +2025-06-18T15:07:19.881Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 675ms - RequestID: vh9peveh4u8 +2025-06-18T15:07:19.981Z [DEBUG] notification-service - Auth event: login_success - User: user_1015 - IP: 192.168.100.240 - RequestID: 6at197o5b4p +2025-06-18T15:07:20.081Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 111ms - Rows affected: 29 - RequestID: gvjf2r8i6am +2025-06-18T15:07:20.181Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 72ms - Rows affected: 72 - RequestID: cxfqcayzw4c +2025-06-18T15:07:20.281Z [INFO] user-service - Operation: cache_hit - Processing time: 752ms - RequestID: tyoa9el0kvo +2025-06-18T15:07:20.381Z [INFO] notification-service - Database UPDATE on users - Execution time: 83ms - Rows affected: 10 - RequestID: wavsooq10d +2025-06-18T15:07:20.481Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1591ms - IP: 192.168.141.100 - User: user_1010 - RequestID: qs1gzb3gt8j +2025-06-18T15:07:20.581Z [TRACE] order-service - DELETE /api/v1/orders - Status: 502 - Response time: 1724ms - IP: 192.168.187.199 - User: user_1011 - RequestID: zzq958v8oke +2025-06-18T15:07:20.681Z [DEBUG] payment-service - Database INSERT on users - Execution time: 407ms - Rows affected: 51 - RequestID: zwqaf3x0poo +2025-06-18T15:07:20.781Z [INFO] inventory-service - Database SELECT on orders - Execution time: 11ms - Rows affected: 97 - RequestID: hmq76hdtnv6 +2025-06-18T15:07:20.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.113.218 - RequestID: 8yeqacywxz4 +2025-06-18T15:07:20.981Z [INFO] user-service - Operation: cache_hit - Processing time: 601ms - RequestID: t4ufuenlp1 +2025-06-18T15:07:21.081Z [TRACE] order-service - Auth event: password_change - User: user_1004 - IP: 192.168.113.218 - RequestID: nw4osp1niqg +2025-06-18T15:07:21.181Z [DEBUG] user-service - Database SELECT on orders - Execution time: 58ms - Rows affected: 36 - RequestID: fzxnxem9b4q +2025-06-18T15:07:21.281Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1263ms - IP: 192.168.33.76 - User: user_1012 - RequestID: c2bvaplg4xv +2025-06-18T15:07:21.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1052 - IP: 192.168.30.79 - RequestID: 0cihkr1i468r +2025-06-18T15:07:21.481Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 380ms - Rows affected: 27 - RequestID: mh4kpg3dv4 +2025-06-18T15:07:21.581Z [INFO] inventory-service - Operation: payment_processed - Processing time: 178ms - RequestID: 0dvpvq70904 +2025-06-18T15:07:21.681Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 170ms - Rows affected: 85 - RequestID: th5t1u3bvip +2025-06-18T15:07:21.781Z [TRACE] user-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.11.60 - RequestID: kv6emedxvyg +2025-06-18T15:07:21.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.1.152 - RequestID: kb1kd071nza +2025-06-18T15:07:21.981Z [DEBUG] user-service - Auth event: password_change - User: user_1081 - IP: 192.168.85.229 - RequestID: wxmfidchtj9 +2025-06-18T15:07:22.081Z [TRACE] inventory-service - Auth event: login_failed - User: user_1000 - IP: 192.168.79.141 - RequestID: gpqf14crjnf +2025-06-18T15:07:22.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1035 - IP: 192.168.240.169 - RequestID: cus2gigwbc +2025-06-18T15:07:22.281Z [INFO] inventory-service - Database UPDATE on users - Execution time: 218ms - Rows affected: 18 - RequestID: e63k57zins4 +2025-06-18T15:07:22.381Z [DEBUG] user-service - Database DELETE on payments - Execution time: 488ms - Rows affected: 2 - RequestID: uggyj1burgj +2025-06-18T15:07:22.481Z [TRACE] order-service - Operation: email_sent - Processing time: 686ms - RequestID: qcsq1q1h0vc +2025-06-18T15:07:22.581Z [INFO] user-service - Operation: order_created - Processing time: 443ms - RequestID: 5mf1a5dsbm7 +2025-06-18T15:07:22.681Z [INFO] inventory-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.170.215 - RequestID: duahqecfkri +2025-06-18T15:07:22.781Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 398ms - IP: 192.168.13.72 - User: user_1088 - RequestID: l16tuuiqz4 +2025-06-18T15:07:22.881Z [INFO] payment-service - Auth event: password_change - User: user_1069 - IP: 192.168.189.103 - RequestID: j4gyoxpfyfc +2025-06-18T15:07:22.981Z [TRACE] order-service - POST /api/v1/inventory - Status: 401 - Response time: 1132ms - IP: 192.168.232.72 - User: user_1021 - RequestID: 2gppcbad8fa +2025-06-18T15:07:23.081Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 573ms - RequestID: oi96wn6f4hd +2025-06-18T15:07:23.181Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 469ms - Rows affected: 58 - RequestID: ly8x73khpv +2025-06-18T15:07:23.281Z [INFO] payment-service - GET /api/v1/inventory - Status: 502 - Response time: 1422ms - IP: 192.168.104.37 - User: user_1056 - RequestID: 7385c9z14c +2025-06-18T15:07:23.381Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 400 - Response time: 1530ms - IP: 192.168.227.233 - User: user_1070 - RequestID: dvn7irs7oal +2025-06-18T15:07:23.481Z [INFO] user-service - POST /api/v1/payments - Status: 500 - Response time: 95ms - IP: 192.168.240.169 - User: user_1095 - RequestID: ep61li50te6 +2025-06-18T15:07:23.581Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1136ms - IP: 192.168.113.218 - User: user_1063 - RequestID: 4qmltuwnzlg +2025-06-18T15:07:23.681Z [INFO] order-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.211.72 - RequestID: k9ryql1c1bj +2025-06-18T15:07:23.781Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 401 - Response time: 763ms - IP: 192.168.138.123 - User: user_1060 - RequestID: nfcm9u2i1nc +2025-06-18T15:07:23.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 95ms - RequestID: 60tmxz31lj +2025-06-18T15:07:23.981Z [DEBUG] auth-service - Auth event: password_change - User: user_1008 - IP: 192.168.44.5 - RequestID: vsg36pzdyg +2025-06-18T15:07:24.081Z [TRACE] notification-service - Operation: cache_hit - Processing time: 120ms - RequestID: 8h20d6u2pzb +2025-06-18T15:07:24.181Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 606ms - RequestID: 95lz4u6ig +2025-06-18T15:07:24.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1047 - IP: 192.168.79.141 - RequestID: ja5dsu82qz +2025-06-18T15:07:24.381Z [DEBUG] notification-service - Auth event: login_success - User: user_1049 - IP: 192.168.36.218 - RequestID: ttx3gtq015k +2025-06-18T15:07:24.481Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 342ms - Rows affected: 46 - RequestID: 0xaqgj5dxl2q +2025-06-18T15:07:24.581Z [TRACE] auth-service - Database INSERT on orders - Execution time: 437ms - Rows affected: 68 - RequestID: n5wdy137ovs +2025-06-18T15:07:24.681Z [INFO] user-service - POST /api/v1/inventory - Status: 400 - Response time: 1960ms - IP: 192.168.10.184 - User: user_1078 - RequestID: w01riiywti +2025-06-18T15:07:24.781Z [INFO] payment-service - Operation: cache_miss - Processing time: 505ms - RequestID: 3opcmzvk3ja +2025-06-18T15:07:24.881Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 269ms - Rows affected: 20 - RequestID: oygk8n7lfcn +2025-06-18T15:07:24.981Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 175ms - Rows affected: 82 - RequestID: lgwbh641lk8 +2025-06-18T15:07:25.081Z [DEBUG] auth-service - Operation: order_created - Processing time: 861ms - RequestID: 2g8rvoyc8lk +2025-06-18T15:07:25.181Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 401 - Response time: 871ms - IP: 192.168.68.158 - User: user_1095 - RequestID: sni3ondxip +2025-06-18T15:07:25.281Z [INFO] user-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.68.128 - RequestID: 0oln7ir74w5 +2025-06-18T15:07:25.381Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 400 - Response time: 660ms - IP: 192.168.33.76 - User: user_1076 - RequestID: 0ft05eovmhin +2025-06-18T15:07:25.481Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 403 - Response time: 715ms - IP: 192.168.211.72 - User: user_1053 - RequestID: 8gech0qykx +2025-06-18T15:07:25.581Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1388ms - IP: 192.168.141.100 - User: user_1060 - RequestID: xpjmtsh8wal +2025-06-18T15:07:25.681Z [INFO] payment-service - Operation: cache_miss - Processing time: 238ms - RequestID: 6zb4fv2qcmo +2025-06-18T15:07:25.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.79.116 - RequestID: fa3hqbdk32 +2025-06-18T15:07:25.881Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 783ms - RequestID: qmjycpoqude +2025-06-18T15:07:25.981Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 65ms - RequestID: 2cw91fz4olo +2025-06-18T15:07:26.081Z [INFO] inventory-service - Database INSERT on payments - Execution time: 489ms - Rows affected: 89 - RequestID: ngb48zw5e6e +2025-06-18T15:07:26.181Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1029ms - RequestID: jfoap6hf069 +2025-06-18T15:07:26.281Z [INFO] auth-service - Database DELETE on users - Execution time: 188ms - Rows affected: 0 - RequestID: w57svfvs9o +2025-06-18T15:07:26.381Z [TRACE] payment-service - Auth event: login_success - User: user_1029 - IP: 192.168.170.215 - RequestID: weojzljjp +2025-06-18T15:07:26.481Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1444ms - IP: 192.168.44.5 - User: user_1093 - RequestID: 0d7ahrztemyh +2025-06-18T15:07:26.581Z [DEBUG] notification-service - Database SELECT on products - Execution time: 277ms - Rows affected: 5 - RequestID: rwjoq0npnp +2025-06-18T15:07:26.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1058 - IP: 192.168.36.218 - RequestID: yu04zt5pjr9 +2025-06-18T15:07:26.781Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 462ms - Rows affected: 45 - RequestID: sn8th8tzv2 +2025-06-18T15:07:26.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1042 - IP: 192.168.159.94 - RequestID: 0u3r3q8dnmej +2025-06-18T15:07:26.981Z [TRACE] payment-service - Auth event: logout - User: user_1060 - IP: 192.168.46.63 - RequestID: f6tnn6ouy2j +2025-06-18T15:07:27.081Z [INFO] notification-service - Database SELECT on users - Execution time: 151ms - Rows affected: 0 - RequestID: nvpq5npbpxs +2025-06-18T15:07:27.181Z [TRACE] order-service - PATCH /api/v1/payments - Status: 500 - Response time: 453ms - IP: 192.168.81.206 - User: user_1093 - RequestID: qs10x9bs83a +2025-06-18T15:07:27.281Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 177ms - RequestID: exidr66pob +2025-06-18T15:07:27.381Z [TRACE] payment-service - GET /api/v1/users - Status: 403 - Response time: 856ms - IP: 192.168.235.117 - User: user_1084 - RequestID: keau730z25 +2025-06-18T15:07:27.481Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 1ms - Rows affected: 61 - RequestID: xjtcfmwbti +2025-06-18T15:07:27.581Z [TRACE] user-service - Operation: payment_processed - Processing time: 965ms - RequestID: betwgak7trl +2025-06-18T15:07:27.681Z [TRACE] payment-service - Operation: cache_miss - Processing time: 816ms - RequestID: 0k7hnf46dksj +2025-06-18T15:07:27.781Z [INFO] user-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1859ms - IP: 192.168.14.77 - User: user_1005 - RequestID: vxivh0ppqv +2025-06-18T15:07:27.881Z [INFO] notification-service - Operation: notification_queued - Processing time: 629ms - RequestID: 5ph3ijb2d26 +2025-06-18T15:07:27.981Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 389ms - RequestID: 3dcsvrxbbnc +2025-06-18T15:07:28.081Z [INFO] order-service - Auth event: login_success - User: user_1070 - IP: 192.168.31.117 - RequestID: 2wjr76mkdf4 +2025-06-18T15:07:28.181Z [TRACE] order-service - Auth event: password_change - User: user_1024 - IP: 192.168.85.229 - RequestID: 17v9rn9ly7n +2025-06-18T15:07:28.281Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1734ms - IP: 192.168.196.226 - User: user_1021 - RequestID: 7r59jzsfhj +2025-06-18T15:07:28.381Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1097 - IP: 192.168.64.33 - RequestID: 7gbqxyo9xxd +2025-06-18T15:07:28.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.211.72 - RequestID: 3zlum5yz4kl +2025-06-18T15:07:28.581Z [INFO] inventory-service - PUT /api/v1/payments - Status: 401 - Response time: 1245ms - IP: 192.168.32.38 - User: user_1079 - RequestID: u8iaxrmxee +2025-06-18T15:07:28.681Z [INFO] order-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.196.226 - RequestID: 29l1k6evvpa +2025-06-18T15:07:28.781Z [TRACE] payment-service - Auth event: password_change - User: user_1067 - IP: 192.168.97.87 - RequestID: 24ulnzun0og +2025-06-18T15:07:28.881Z [INFO] user-service - Operation: notification_queued - Processing time: 927ms - RequestID: pn0rbfiurj +2025-06-18T15:07:28.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.227.233 - RequestID: qrer1fw1c7g +2025-06-18T15:07:29.081Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 423ms - Rows affected: 17 - RequestID: gqfrh2z0s7 +2025-06-18T15:07:29.181Z [DEBUG] auth-service - Auth event: login_success - User: user_1041 - IP: 192.168.79.143 - RequestID: py3mzuw6yno +2025-06-18T15:07:29.281Z [TRACE] auth-service - Operation: cache_miss - Processing time: 311ms - RequestID: hz3ltflcnz4 +2025-06-18T15:07:29.381Z [INFO] order-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.32.38 - RequestID: 7a2489pznst +2025-06-18T15:07:29.481Z [TRACE] payment-service - Auth event: login_failed - User: user_1081 - IP: 192.168.235.117 - RequestID: ss6silersn +2025-06-18T15:07:29.581Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 17ms - Rows affected: 24 - RequestID: nvw6xkarm9 +2025-06-18T15:07:29.681Z [INFO] user-service - Operation: notification_queued - Processing time: 509ms - RequestID: 6yibe59g86g +2025-06-18T15:07:29.781Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 449ms - IP: 192.168.104.37 - User: user_1089 - RequestID: hdgj4408ini +2025-06-18T15:07:29.881Z [INFO] inventory-service - Operation: order_created - Processing time: 159ms - RequestID: dzwn303u3wg +2025-06-18T15:07:29.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.232.72 - RequestID: 4esrhqnolxq +2025-06-18T15:07:30.081Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1251ms - IP: 192.168.240.169 - User: user_1085 - RequestID: cthsg2sxq3c +2025-06-18T15:07:30.181Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 435ms - RequestID: bs072nil0rp +2025-06-18T15:07:30.281Z [DEBUG] user-service - GET /api/v1/users - Status: 201 - Response time: 74ms - IP: 192.168.68.128 - User: user_1001 - RequestID: b7pgohrcm2 +2025-06-18T15:07:30.381Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 437ms - Rows affected: 4 - RequestID: lo9o12ajui +2025-06-18T15:07:30.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.240.169 - RequestID: okjzw9ac8sk +2025-06-18T15:07:30.581Z [TRACE] auth-service - Auth event: password_change - User: user_1062 - IP: 192.168.167.32 - RequestID: ab562ytp9dh +2025-06-18T15:07:30.681Z [TRACE] notification-service - Database INSERT on payments - Execution time: 87ms - Rows affected: 9 - RequestID: szyck8r8xqh +2025-06-18T15:07:30.781Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 400 - Response time: 817ms - IP: 192.168.158.144 - User: user_1091 - RequestID: ac6rgf9bogh +2025-06-18T15:07:30.881Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1430ms - IP: 192.168.79.116 - User: user_1048 - RequestID: 0hlxav8bu01s +2025-06-18T15:07:30.981Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 763ms - RequestID: hx7exf2mt59 +2025-06-18T15:07:31.081Z [TRACE] notification-service - Operation: notification_queued - Processing time: 716ms - RequestID: ytayjrqs84d +2025-06-18T15:07:31.181Z [TRACE] notification-service - Database SELECT on users - Execution time: 235ms - Rows affected: 71 - RequestID: 24g9z5dnbfc +2025-06-18T15:07:31.281Z [INFO] inventory-service - PUT /api/v1/users - Status: 503 - Response time: 879ms - IP: 192.168.104.37 - User: user_1094 - RequestID: sm82jnwejqe +2025-06-18T15:07:31.381Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 475ms - Rows affected: 27 - RequestID: ia59t1vjsk +2025-06-18T15:07:31.481Z [INFO] payment-service - GET /api/v1/users - Status: 500 - Response time: 1158ms - IP: 192.168.235.117 - User: user_1022 - RequestID: emuxc6gsuli +2025-06-18T15:07:31.581Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 183ms - RequestID: xwb6jwvilaa +2025-06-18T15:07:31.681Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 118ms - Rows affected: 11 - RequestID: 18p8grkxcz4h +2025-06-18T15:07:31.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1015 - IP: 192.168.174.114 - RequestID: xv1lelneh9 +2025-06-18T15:07:31.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.104.37 - RequestID: eqq9aucf9bi +2025-06-18T15:07:31.981Z [INFO] notification-service - Operation: notification_queued - Processing time: 586ms - RequestID: 2dltftmwqyq +2025-06-18T15:07:32.081Z [INFO] payment-service - Auth event: password_change - User: user_1095 - IP: 192.168.196.226 - RequestID: w1j736etbv +2025-06-18T15:07:32.181Z [TRACE] user-service - Auth event: password_change - User: user_1076 - IP: 192.168.235.117 - RequestID: 7qxvamw5u6m +2025-06-18T15:07:32.281Z [TRACE] order-service - POST /api/v1/users - Status: 500 - Response time: 468ms - IP: 192.168.159.94 - User: user_1019 - RequestID: yaue5e21xw +2025-06-18T15:07:32.381Z [TRACE] auth-service - Database DELETE on orders - Execution time: 489ms - Rows affected: 82 - RequestID: i50st2p8n4 +2025-06-18T15:07:32.481Z [INFO] order-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.64.33 - RequestID: 1warflmbfjr +2025-06-18T15:07:32.581Z [TRACE] auth-service - GET /api/v1/users - Status: 502 - Response time: 1511ms - IP: 192.168.85.229 - User: user_1092 - RequestID: w1attscvne +2025-06-18T15:07:32.681Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 500 - Response time: 666ms - IP: 192.168.32.38 - User: user_1047 - RequestID: 4k2t1nuzjoe +2025-06-18T15:07:32.781Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 183ms - Rows affected: 57 - RequestID: iliu6t7w2za +2025-06-18T15:07:32.881Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 24ms - Rows affected: 60 - RequestID: i2g07qsq59e +2025-06-18T15:07:32.981Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 362ms - Rows affected: 74 - RequestID: yduhz32uux +2025-06-18T15:07:33.081Z [TRACE] user-service - Auth event: logout - User: user_1064 - IP: 192.168.53.133 - RequestID: fdyngr62gd9 +2025-06-18T15:07:33.181Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 296ms - Rows affected: 21 - RequestID: 6bncyxayqnm +2025-06-18T15:07:33.281Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 233ms - Rows affected: 86 - RequestID: doj448cbs +2025-06-18T15:07:33.381Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 201 - Response time: 705ms - IP: 192.168.68.158 - User: user_1090 - RequestID: 2azdjpnq9uq +2025-06-18T15:07:33.481Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 361ms - Rows affected: 54 - RequestID: x2wqbiin50j +2025-06-18T15:07:33.581Z [TRACE] auth-service - Operation: cache_hit - Processing time: 955ms - RequestID: sj445p3bzg +2025-06-18T15:07:33.681Z [DEBUG] order-service - Database UPDATE on products - Execution time: 177ms - Rows affected: 70 - RequestID: q4ip8h8qarn +2025-06-18T15:07:33.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1008 - IP: 192.168.174.114 - RequestID: xgc17famm39 +2025-06-18T15:07:33.881Z [INFO] order-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.79.143 - RequestID: 23i8hlnhi76 +2025-06-18T15:07:33.981Z [TRACE] order-service - Database DELETE on orders - Execution time: 379ms - Rows affected: 33 - RequestID: jjnx3lewkv +2025-06-18T15:07:34.081Z [DEBUG] payment-service - Auth event: logout - User: user_1013 - IP: 192.168.79.116 - RequestID: sda1v8e4mpn +2025-06-18T15:07:34.181Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1563ms - IP: 192.168.189.103 - User: user_1049 - RequestID: lu1vo6yyd6g +2025-06-18T15:07:34.281Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1404ms - IP: 192.168.138.123 - User: user_1063 - RequestID: kh5ntv8iwpq +2025-06-18T15:07:34.381Z [TRACE] auth-service - Auth event: login_success - User: user_1053 - IP: 192.168.147.171 - RequestID: vzcttafys6a +2025-06-18T15:07:34.481Z [INFO] order-service - POST /api/v1/orders - Status: 500 - Response time: 1372ms - IP: 192.168.68.128 - User: user_1022 - RequestID: 11m0x2mfgar +2025-06-18T15:07:34.581Z [TRACE] auth-service - Operation: payment_processed - Processing time: 223ms - RequestID: xxo7zyxs9pc +2025-06-18T15:07:34.681Z [DEBUG] payment-service - Auth event: login_success - User: user_1070 - IP: 192.168.44.5 - RequestID: gdfdacbjtgs +2025-06-18T15:07:34.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.68.128 - RequestID: 3gk5h4vzh88 +2025-06-18T15:07:34.881Z [INFO] notification-service - Auth event: password_change - User: user_1094 - IP: 192.168.28.146 - RequestID: wf3e08fg5hi +2025-06-18T15:07:34.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.64.33 - RequestID: m8r89405uye +2025-06-18T15:07:35.081Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 144ms - Rows affected: 12 - RequestID: onqwbq99jyf +2025-06-18T15:07:35.181Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 863ms - RequestID: zqqhwznw8kr +2025-06-18T15:07:35.281Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 377ms - Rows affected: 79 - RequestID: 37a3hjlo5x +2025-06-18T15:07:35.381Z [INFO] notification-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.14.77 - RequestID: 0towl736n2wk +2025-06-18T15:07:35.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 882ms - RequestID: lrwqx45aerl +2025-06-18T15:07:35.581Z [TRACE] user-service - Database SELECT on products - Execution time: 186ms - Rows affected: 84 - RequestID: p3v0syxgkm +2025-06-18T15:07:35.681Z [TRACE] user-service - Auth event: logout - User: user_1084 - IP: 192.168.68.128 - RequestID: hvoheemek39 +2025-06-18T15:07:35.781Z [INFO] order-service - Database INSERT on orders - Execution time: 165ms - Rows affected: 71 - RequestID: fh2vanfqcil +2025-06-18T15:07:35.881Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 69ms - IP: 192.168.247.134 - User: user_1068 - RequestID: g3yc3f5d29 +2025-06-18T15:07:35.981Z [INFO] payment-service - Auth event: login_failed - User: user_1098 - IP: 192.168.159.94 - RequestID: dlnh5ijub25 +2025-06-18T15:07:36.081Z [TRACE] user-service - Database SELECT on users - Execution time: 384ms - Rows affected: 98 - RequestID: z5ghcvkbf8b +2025-06-18T15:07:36.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 944ms - RequestID: 1ka9lrlsim7 +2025-06-18T15:07:36.281Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.232.72 - RequestID: qee0bdo6ff9 +2025-06-18T15:07:36.381Z [TRACE] notification-service - Operation: order_created - Processing time: 729ms - RequestID: kli7lhi9cv +2025-06-18T15:07:36.481Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 268ms - Rows affected: 23 - RequestID: sckv8alaijf +2025-06-18T15:07:36.581Z [DEBUG] order-service - GET /api/v1/users - Status: 404 - Response time: 384ms - IP: 192.168.13.72 - User: user_1098 - RequestID: 1letyg6shun +2025-06-18T15:07:36.681Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1063ms - IP: 192.168.187.199 - User: user_1010 - RequestID: fde2afbra4m +2025-06-18T15:07:36.781Z [TRACE] order-service - DELETE /api/v1/payments - Status: 500 - Response time: 1091ms - IP: 192.168.10.184 - User: user_1090 - RequestID: mh5gxvgnwa +2025-06-18T15:07:36.881Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 10ms - Rows affected: 12 - RequestID: lwytnuvoump +2025-06-18T15:07:36.981Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1443ms - IP: 192.168.79.116 - User: user_1080 - RequestID: khgobbh09ij +2025-06-18T15:07:37.081Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 486ms - Rows affected: 67 - RequestID: s4h5xbu8i0t +2025-06-18T15:07:37.181Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 777ms - RequestID: jenzk5bxgnf +2025-06-18T15:07:37.281Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 386ms - Rows affected: 17 - RequestID: e50mhkxe8je +2025-06-18T15:07:37.381Z [INFO] auth-service - PATCH /api/v1/orders - Status: 404 - Response time: 558ms - IP: 192.168.227.233 - User: user_1025 - RequestID: pg2kmfvisqr +2025-06-18T15:07:37.481Z [TRACE] order-service - Operation: payment_processed - Processing time: 335ms - RequestID: cbs4wgjy71r +2025-06-18T15:07:37.581Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 196ms - Rows affected: 75 - RequestID: 4wjchd6nn3 +2025-06-18T15:07:37.681Z [INFO] payment-service - Auth event: logout - User: user_1081 - IP: 192.168.32.38 - RequestID: p4hi2ag3kwa +2025-06-18T15:07:37.781Z [TRACE] notification-service - Operation: order_created - Processing time: 101ms - RequestID: iurz53khdfl +2025-06-18T15:07:37.881Z [TRACE] user-service - Database INSERT on users - Execution time: 96ms - Rows affected: 10 - RequestID: rywj1l35kpl +2025-06-18T15:07:37.981Z [DEBUG] payment-service - Auth event: logout - User: user_1055 - IP: 192.168.158.144 - RequestID: 0zd7cd3j87t +2025-06-18T15:07:38.081Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 400 - Response time: 370ms - IP: 192.168.235.117 - User: user_1021 - RequestID: 1451wu3sma1c +2025-06-18T15:07:38.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.11.60 - RequestID: ywfmcylhbh +2025-06-18T15:07:38.281Z [TRACE] auth-service - Database UPDATE on users - Execution time: 192ms - Rows affected: 42 - RequestID: c8cy311qe1d +2025-06-18T15:07:38.381Z [TRACE] payment-service - Operation: cache_miss - Processing time: 731ms - RequestID: 8ca52swtez +2025-06-18T15:07:38.481Z [TRACE] user-service - POST /api/v1/inventory - Status: 500 - Response time: 1812ms - IP: 192.168.141.100 - User: user_1082 - RequestID: o5jqh5f9xj +2025-06-18T15:07:38.581Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 165ms - Rows affected: 73 - RequestID: g888bjrohkr +2025-06-18T15:07:38.681Z [DEBUG] user-service - Database INSERT on payments - Execution time: 86ms - Rows affected: 66 - RequestID: ofp5qjr2foh +2025-06-18T15:07:38.781Z [TRACE] payment-service - Operation: payment_processed - Processing time: 264ms - RequestID: p0a1kaijgin +2025-06-18T15:07:38.881Z [TRACE] user-service - Operation: notification_queued - Processing time: 880ms - RequestID: g6d3sfgu13 +2025-06-18T15:07:38.981Z [INFO] payment-service - Operation: cache_miss - Processing time: 1036ms - RequestID: pzd885jlfmd +2025-06-18T15:07:39.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.211.72 - RequestID: igig8bsjda +2025-06-18T15:07:39.181Z [DEBUG] notification-service - Database INSERT on products - Execution time: 142ms - Rows affected: 71 - RequestID: eqdkus6pmsi +2025-06-18T15:07:39.281Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 502 - Response time: 1654ms - IP: 192.168.211.72 - User: user_1016 - RequestID: 2e3reoyf89r +2025-06-18T15:07:39.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.133.7 - RequestID: q0fjbrmhdlb +2025-06-18T15:07:39.481Z [TRACE] notification-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.167.32 - RequestID: 8g4ze2qzbne +2025-06-18T15:07:39.581Z [INFO] order-service - Operation: inventory_updated - Processing time: 613ms - RequestID: sqenh84uxf +2025-06-18T15:07:39.681Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 294ms - Rows affected: 12 - RequestID: dt91rqeydz +2025-06-18T15:07:39.781Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 534ms - RequestID: mwrhvtsh53n +2025-06-18T15:07:39.881Z [DEBUG] notification-service - Database SELECT on users - Execution time: 439ms - Rows affected: 60 - RequestID: zzkonsyjbqi +2025-06-18T15:07:39.981Z [DEBUG] order-service - PATCH /api/v1/users - Status: 400 - Response time: 420ms - IP: 192.168.211.72 - User: user_1025 - RequestID: ri9uob4ujpg +2025-06-18T15:07:40.081Z [INFO] order-service - PUT /api/v1/users - Status: 400 - Response time: 596ms - IP: 192.168.79.143 - User: user_1062 - RequestID: x1vkiypll8m +2025-06-18T15:07:40.181Z [INFO] order-service - PUT /api/v1/inventory - Status: 201 - Response time: 70ms - IP: 192.168.113.218 - User: user_1085 - RequestID: hvjv2jqlvoq +2025-06-18T15:07:40.281Z [TRACE] order-service - Auth event: logout - User: user_1070 - IP: 192.168.211.72 - RequestID: qjz22xm92ye +2025-06-18T15:07:40.381Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 321ms - Rows affected: 64 - RequestID: s38zixl24c +2025-06-18T15:07:40.481Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 403 - Response time: 87ms - IP: 192.168.227.233 - User: user_1006 - RequestID: 1njihkxx435 +2025-06-18T15:07:40.581Z [INFO] inventory-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.194.41 - RequestID: bmgkueblq5w +2025-06-18T15:07:40.681Z [DEBUG] user-service - Operation: cache_miss - Processing time: 906ms - RequestID: z3670vq14s +2025-06-18T15:07:40.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1023 - IP: 192.168.85.229 - RequestID: jd7kukn3ibl +2025-06-18T15:07:40.881Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 366ms - Rows affected: 8 - RequestID: xirfahucmsn +2025-06-18T15:07:40.981Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 968ms - RequestID: uvd9s0rjnkp +2025-06-18T15:07:41.081Z [INFO] user-service - Database UPDATE on orders - Execution time: 56ms - Rows affected: 50 - RequestID: gu1p5snp0lf +2025-06-18T15:07:41.181Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 403 - Response time: 187ms - IP: 192.168.10.184 - User: user_1015 - RequestID: jycbaoznw5 +2025-06-18T15:07:41.281Z [TRACE] payment-service - Auth event: login_success - User: user_1049 - IP: 192.168.68.128 - RequestID: oxmpxdztll +2025-06-18T15:07:41.381Z [INFO] auth-service - POST /api/v1/users - Status: 201 - Response time: 826ms - IP: 192.168.10.184 - User: user_1001 - RequestID: 9v54zyqsvya +2025-06-18T15:07:41.481Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 663ms - RequestID: fvpz5tb1k7 +2025-06-18T15:07:41.581Z [TRACE] payment-service - Operation: order_created - Processing time: 701ms - RequestID: 7bnkinvaele +2025-06-18T15:07:41.681Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 459ms - Rows affected: 14 - RequestID: y78k3ib3g9h +2025-06-18T15:07:41.781Z [DEBUG] auth-service - Operation: email_sent - Processing time: 686ms - RequestID: znhm0tsqzx9 +2025-06-18T15:07:41.881Z [TRACE] auth-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.97.87 - RequestID: 4czcf5416u7 +2025-06-18T15:07:41.981Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 219ms - Rows affected: 71 - RequestID: qmt7kufuiu +2025-06-18T15:07:42.081Z [DEBUG] order-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.138.123 - RequestID: tfqg3935fqb +2025-06-18T15:07:42.181Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 479ms - Rows affected: 52 - RequestID: a7i9qqm61r +2025-06-18T15:07:42.281Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 100ms - Rows affected: 21 - RequestID: 56titulztj9 +2025-06-18T15:07:42.381Z [INFO] notification-service - GET /api/v1/inventory - Status: 502 - Response time: 1733ms - IP: 192.168.79.143 - User: user_1018 - RequestID: 4cokbwqtdng +2025-06-18T15:07:42.481Z [INFO] user-service - PUT /api/v1/orders - Status: 200 - Response time: 1011ms - IP: 192.168.227.233 - User: user_1035 - RequestID: 30iy2cpd475 +2025-06-18T15:07:42.581Z [DEBUG] order-service - Operation: notification_queued - Processing time: 178ms - RequestID: gd4j2scurk +2025-06-18T15:07:42.681Z [INFO] notification-service - Database UPDATE on users - Execution time: 397ms - Rows affected: 80 - RequestID: yx45tl6coac +2025-06-18T15:07:42.781Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 19ms - Rows affected: 98 - RequestID: b40qrqvtblq +2025-06-18T15:07:42.881Z [TRACE] order-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.68.158 - RequestID: yhocozepw4 +2025-06-18T15:07:42.981Z [DEBUG] user-service - Auth event: password_change - User: user_1069 - IP: 192.168.133.7 - RequestID: hsjqveqaei +2025-06-18T15:07:43.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.141.100 - RequestID: r1pi393ukaq +2025-06-18T15:07:43.181Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1522ms - IP: 192.168.97.87 - User: user_1007 - RequestID: e5zax4r1r +2025-06-18T15:07:43.281Z [INFO] inventory-service - Database DELETE on payments - Execution time: 222ms - Rows affected: 80 - RequestID: z2uue6ka2rl +2025-06-18T15:07:43.381Z [DEBUG] order-service - Auth event: login_failed - User: user_1038 - IP: 192.168.36.218 - RequestID: ffqv7bvqeh4 +2025-06-18T15:07:43.481Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 787ms - RequestID: tqj7otcsvo +2025-06-18T15:07:43.581Z [TRACE] order-service - Operation: cache_miss - Processing time: 498ms - RequestID: oztiof9n79 +2025-06-18T15:07:43.681Z [DEBUG] order-service - Database INSERT on users - Execution time: 495ms - Rows affected: 61 - RequestID: n4mp6a0c2ms +2025-06-18T15:07:43.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1017 - IP: 192.168.229.123 - RequestID: o7vt85myjd +2025-06-18T15:07:43.881Z [TRACE] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 1376ms - IP: 192.168.174.114 - User: user_1084 - RequestID: fz37gzdt2k +2025-06-18T15:07:43.981Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1472ms - IP: 192.168.14.77 - User: user_1040 - RequestID: 0lw81lwbpeg +2025-06-18T15:07:44.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1009 - IP: 192.168.68.128 - RequestID: zmmaiu94iq9 +2025-06-18T15:07:44.181Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 336ms - RequestID: 8eukjiipm54 +2025-06-18T15:07:44.281Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 403 - Response time: 181ms - IP: 192.168.227.233 - User: user_1069 - RequestID: u9z0pddohw +2025-06-18T15:07:44.381Z [TRACE] payment-service - POST /api/v1/payments - Status: 403 - Response time: 1732ms - IP: 192.168.85.229 - User: user_1081 - RequestID: 8rlu91y9ba +2025-06-18T15:07:44.481Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1768ms - IP: 192.168.232.72 - User: user_1084 - RequestID: 1wks1azq5ovh +2025-06-18T15:07:44.581Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 37ms - Rows affected: 73 - RequestID: x8mknqtyych +2025-06-18T15:07:44.681Z [DEBUG] auth-service - Auth event: logout - User: user_1060 - IP: 192.168.10.184 - RequestID: fcfl4jcdaat +2025-06-18T15:07:44.781Z [TRACE] notification-service - Operation: cache_miss - Processing time: 387ms - RequestID: fv7fuck17kk +2025-06-18T15:07:44.881Z [INFO] inventory-service - Auth event: login_success - User: user_1055 - IP: 192.168.242.165 - RequestID: yzpyll2cep +2025-06-18T15:07:44.981Z [INFO] notification-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.138.123 - RequestID: 4pa28axwaq4 +2025-06-18T15:07:45.081Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 160ms - Rows affected: 93 - RequestID: i7phcfg3jme +2025-06-18T15:07:45.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.79.141 - RequestID: h7cwtu3mv5a +2025-06-18T15:07:45.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.104.37 - RequestID: 40nzr8c3u5o +2025-06-18T15:07:45.381Z [DEBUG] user-service - Operation: payment_processed - Processing time: 851ms - RequestID: 1ydd3pd1pvv +2025-06-18T15:07:45.481Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 400 - Response time: 638ms - IP: 192.168.247.134 - User: user_1045 - RequestID: 2qvqpqe2isn +2025-06-18T15:07:45.581Z [DEBUG] auth-service - Auth event: password_change - User: user_1007 - IP: 192.168.32.38 - RequestID: 3jedcpuy64r +2025-06-18T15:07:45.681Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 263ms - Rows affected: 13 - RequestID: purvjt2x65 +2025-06-18T15:07:45.781Z [INFO] order-service - Auth event: logout - User: user_1015 - IP: 192.168.11.60 - RequestID: bcb90rr1vf +2025-06-18T15:07:45.881Z [TRACE] order-service - Database SELECT on users - Execution time: 23ms - Rows affected: 9 - RequestID: dnxy4duvb4 +2025-06-18T15:07:45.981Z [DEBUG] order-service - Auth event: password_change - User: user_1062 - IP: 192.168.68.128 - RequestID: 5tqzjzy8eh +2025-06-18T15:07:46.081Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 500 - Response time: 811ms - IP: 192.168.113.218 - User: user_1029 - RequestID: 3y7k4uaqell +2025-06-18T15:07:46.181Z [INFO] inventory-service - Operation: payment_processed - Processing time: 480ms - RequestID: y6c94cthfv +2025-06-18T15:07:46.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 658ms - RequestID: tpd4ffjk9z +2025-06-18T15:07:46.381Z [DEBUG] order-service - Auth event: password_change - User: user_1048 - IP: 192.168.30.79 - RequestID: hlyac5l7xc7 +2025-06-18T15:07:46.481Z [INFO] order-service - Auth event: password_change - User: user_1065 - IP: 192.168.30.79 - RequestID: vhygyvu0cq +2025-06-18T15:07:46.581Z [TRACE] user-service - Auth event: password_change - User: user_1039 - IP: 192.168.144.38 - RequestID: wl7ljcpjte +2025-06-18T15:07:46.681Z [TRACE] payment-service - Operation: email_sent - Processing time: 535ms - RequestID: 3feq3vkh4ha +2025-06-18T15:07:46.781Z [INFO] payment-service - PATCH /api/v1/users - Status: 400 - Response time: 966ms - IP: 192.168.11.60 - User: user_1070 - RequestID: gzxlqnhx6q5 +2025-06-18T15:07:46.881Z [INFO] notification-service - Operation: cache_miss - Processing time: 273ms - RequestID: 1joskyi9hef +2025-06-18T15:07:46.981Z [TRACE] auth-service - Operation: order_created - Processing time: 979ms - RequestID: wizsq8lq7c +2025-06-18T15:07:47.081Z [DEBUG] order-service - PATCH /api/v1/users - Status: 200 - Response time: 1487ms - IP: 192.168.104.37 - User: user_1080 - RequestID: s81jc3k5nwh +2025-06-18T15:07:47.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 250ms - RequestID: aa4v3xzmvzj +2025-06-18T15:07:47.281Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1301ms - IP: 192.168.247.134 - User: user_1004 - RequestID: 6y9jrxlqw5h +2025-06-18T15:07:47.381Z [DEBUG] order-service - Auth event: login_success - User: user_1015 - IP: 192.168.31.117 - RequestID: g3nq5rzhi5f +2025-06-18T15:07:47.481Z [DEBUG] auth-service - Operation: email_sent - Processing time: 778ms - RequestID: p0e6yafmfy +2025-06-18T15:07:47.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1001 - IP: 192.168.33.76 - RequestID: kx43a5vrxcd +2025-06-18T15:07:47.681Z [INFO] auth-service - GET /api/v1/inventory - Status: 201 - Response time: 200ms - IP: 192.168.147.171 - User: user_1062 - RequestID: hacndemy7ro +2025-06-18T15:07:47.781Z [INFO] payment-service - GET /api/v1/inventory - Status: 403 - Response time: 1460ms - IP: 192.168.10.184 - User: user_1092 - RequestID: qlhzea7gbhq +2025-06-18T15:07:47.881Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1208ms - IP: 192.168.10.184 - User: user_1043 - RequestID: mq6f2edq4wr +2025-06-18T15:07:47.981Z [INFO] payment-service - Operation: email_sent - Processing time: 251ms - RequestID: wvkesr3pi +2025-06-18T15:07:48.081Z [INFO] user-service - Auth event: password_change - User: user_1053 - IP: 192.168.13.72 - RequestID: 4lawi07326a +2025-06-18T15:07:48.181Z [INFO] auth-service - DELETE /api/v1/payments - Status: 502 - Response time: 518ms - IP: 192.168.79.143 - User: user_1010 - RequestID: ttd864gub8 +2025-06-18T15:07:48.281Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1243ms - IP: 192.168.227.233 - User: user_1018 - RequestID: dd51loamhvo +2025-06-18T15:07:48.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1050 - IP: 192.168.189.103 - RequestID: zefled7pbg8 +2025-06-18T15:07:48.481Z [TRACE] inventory-service - PUT /api/v1/users - Status: 403 - Response time: 974ms - IP: 192.168.232.72 - User: user_1093 - RequestID: 47navz19si6 +2025-06-18T15:07:48.581Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 1040ms - RequestID: ubengcuds0q +2025-06-18T15:07:48.681Z [INFO] auth-service - Database DELETE on users - Execution time: 40ms - Rows affected: 8 - RequestID: yoidq612cjj +2025-06-18T15:07:48.781Z [INFO] notification-service - Operation: notification_queued - Processing time: 971ms - RequestID: a5gbiwtgpl5 +2025-06-18T15:07:48.881Z [TRACE] user-service - Auth event: login_success - User: user_1062 - IP: 192.168.229.123 - RequestID: u2nbkegna2f +2025-06-18T15:07:48.981Z [INFO] auth-service - Operation: order_created - Processing time: 151ms - RequestID: wk0m5032d8d +2025-06-18T15:07:49.081Z [DEBUG] auth-service - Operation: order_created - Processing time: 164ms - RequestID: kctrzu4u67j +2025-06-18T15:07:49.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.30.79 - RequestID: y5t84ikfc7 +2025-06-18T15:07:49.281Z [TRACE] notification-service - GET /api/v1/payments - Status: 400 - Response time: 1510ms - IP: 192.168.211.72 - User: user_1062 - RequestID: dhnsibz88w6 +2025-06-18T15:07:49.381Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 432ms - Rows affected: 5 - RequestID: rykm7ybgp1 +2025-06-18T15:07:49.481Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 360ms - RequestID: 0eve194v9cm +2025-06-18T15:07:49.581Z [TRACE] order-service - Auth event: logout - User: user_1000 - IP: 192.168.79.143 - RequestID: v3ab06lwa1r +2025-06-18T15:07:49.681Z [INFO] auth-service - Database DELETE on users - Execution time: 320ms - Rows affected: 92 - RequestID: g82jlil5ycg +2025-06-18T15:07:49.781Z [TRACE] order-service - DELETE /api/v1/payments - Status: 200 - Response time: 267ms - IP: 192.168.28.146 - User: user_1070 - RequestID: xewanpomh3r +2025-06-18T15:07:49.881Z [DEBUG] user-service - DELETE /api/v1/users - Status: 400 - Response time: 141ms - IP: 192.168.240.169 - User: user_1039 - RequestID: 0wuzw9s3rdr +2025-06-18T15:07:49.981Z [DEBUG] user-service - Operation: order_created - Processing time: 564ms - RequestID: zkc8n4f4wb8 +2025-06-18T15:07:50.081Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1623ms - IP: 192.168.247.134 - User: user_1055 - RequestID: o6aspmpnu1k +2025-06-18T15:07:50.181Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1163ms - IP: 192.168.46.63 - User: user_1037 - RequestID: j96y9pu3djo +2025-06-18T15:07:50.281Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 503 - Response time: 1087ms - IP: 192.168.211.72 - User: user_1019 - RequestID: twnroe644p +2025-06-18T15:07:50.381Z [TRACE] notification-service - Operation: email_sent - Processing time: 839ms - RequestID: wnr4t2bha9q +2025-06-18T15:07:50.481Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 1002ms - RequestID: u271u4i7nl +2025-06-18T15:07:50.581Z [DEBUG] auth-service - POST /api/v1/payments - Status: 200 - Response time: 496ms - IP: 192.168.138.123 - User: user_1074 - RequestID: 1h332j9ur3m +2025-06-18T15:07:50.681Z [DEBUG] auth-service - GET /api/v1/users - Status: 403 - Response time: 1259ms - IP: 192.168.33.76 - User: user_1003 - RequestID: k9i1ymt10hq +2025-06-18T15:07:50.781Z [INFO] notification-service - GET /api/v1/payments - Status: 404 - Response time: 559ms - IP: 192.168.133.7 - User: user_1055 - RequestID: 00m211qslhj0m +2025-06-18T15:07:50.881Z [TRACE] user-service - Database SELECT on payments - Execution time: 86ms - Rows affected: 73 - RequestID: dt1lsxjuqi +2025-06-18T15:07:50.981Z [DEBUG] order-service - Database INSERT on products - Execution time: 348ms - Rows affected: 34 - RequestID: xfelh6x0vcj +2025-06-18T15:07:51.081Z [DEBUG] order-service - Operation: email_sent - Processing time: 95ms - RequestID: cosbmm4rdyq +2025-06-18T15:07:51.181Z [TRACE] order-service - POST /api/v1/auth/login - Status: 404 - Response time: 300ms - IP: 192.168.247.134 - User: user_1087 - RequestID: cggid7k59pa +2025-06-18T15:07:51.281Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 81ms - Rows affected: 43 - RequestID: 4ljauzpw4y4 +2025-06-18T15:07:51.381Z [INFO] payment-service - Auth event: login_failed - User: user_1036 - IP: 192.168.167.32 - RequestID: hi7tg4c1ejf +2025-06-18T15:07:51.481Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1609ms - IP: 192.168.158.144 - User: user_1094 - RequestID: 9nm4ypck576 +2025-06-18T15:07:51.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 139ms - RequestID: vfa7l5ccrmn +2025-06-18T15:07:51.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.68.158 - RequestID: 5xzglh71b4b +2025-06-18T15:07:51.781Z [TRACE] notification-service - Database DELETE on orders - Execution time: 84ms - Rows affected: 47 - RequestID: qpe1mixe9u +2025-06-18T15:07:51.881Z [TRACE] user-service - Operation: email_sent - Processing time: 521ms - RequestID: mt38gog773 +2025-06-18T15:07:51.981Z [DEBUG] payment-service - POST /api/v1/orders - Status: 404 - Response time: 1117ms - IP: 192.168.159.94 - User: user_1016 - RequestID: ctph0k5ft2s +2025-06-18T15:07:52.081Z [TRACE] order-service - Auth event: login_success - User: user_1085 - IP: 192.168.147.171 - RequestID: z93dz2fm9c +2025-06-18T15:07:52.181Z [INFO] order-service - DELETE /api/v1/payments - Status: 401 - Response time: 1735ms - IP: 192.168.235.117 - User: user_1027 - RequestID: k8sry0dee6f +2025-06-18T15:07:52.281Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.158.144 - RequestID: k7zpm7ttz7 +2025-06-18T15:07:52.381Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 374ms - Rows affected: 17 - RequestID: 47xg4a6xvq7 +2025-06-18T15:07:52.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.170.215 - RequestID: kdxilderb2 +2025-06-18T15:07:52.581Z [TRACE] user-service - Operation: email_sent - Processing time: 687ms - RequestID: f3dpoaah256 +2025-06-18T15:07:52.681Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 502 - Response time: 819ms - IP: 192.168.235.117 - User: user_1093 - RequestID: mf7uonz4ve +2025-06-18T15:07:52.781Z [INFO] user-service - Database UPDATE on sessions - Execution time: 321ms - Rows affected: 81 - RequestID: xobglalxut +2025-06-18T15:07:52.881Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1999ms - IP: 192.168.240.169 - User: user_1025 - RequestID: hmkcelfmei +2025-06-18T15:07:52.981Z [INFO] notification-service - GET /api/v1/auth/login - Status: 400 - Response time: 930ms - IP: 192.168.227.233 - User: user_1013 - RequestID: vbr9htxk48 +2025-06-18T15:07:53.081Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 466ms - RequestID: yo3lu9flf8 +2025-06-18T15:07:53.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1025 - IP: 192.168.100.240 - RequestID: eeygdzr50vm +2025-06-18T15:07:53.281Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 905ms - RequestID: 9d7io3yejkb +2025-06-18T15:07:53.381Z [INFO] order-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1998ms - IP: 192.168.158.144 - User: user_1028 - RequestID: fd8hv7h7go9 +2025-06-18T15:07:53.481Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 414ms - Rows affected: 89 - RequestID: 2sue352qwwu +2025-06-18T15:07:53.581Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1433ms - IP: 192.168.187.199 - User: user_1095 - RequestID: el83vjw8ncc +2025-06-18T15:07:53.681Z [INFO] inventory-service - PATCH /api/v1/users - Status: 503 - Response time: 1767ms - IP: 192.168.79.116 - User: user_1020 - RequestID: ezgixra20ef +2025-06-18T15:07:53.781Z [INFO] auth-service - Operation: inventory_updated - Processing time: 690ms - RequestID: n9gl9jn6voe +2025-06-18T15:07:53.881Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 716ms - RequestID: 3l6ytoe5g8l +2025-06-18T15:07:53.981Z [INFO] payment-service - Operation: order_created - Processing time: 301ms - RequestID: pau0wy5vjd +2025-06-18T15:07:54.081Z [DEBUG] user-service - Database DELETE on payments - Execution time: 369ms - Rows affected: 11 - RequestID: 8d1rxjp2peq +2025-06-18T15:07:54.181Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 587ms - RequestID: ce6b4gv2ij7 +2025-06-18T15:07:54.281Z [TRACE] payment-service - Operation: order_created - Processing time: 406ms - RequestID: yw9ufhkvzhs +2025-06-18T15:07:54.381Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 1015ms - RequestID: sbymcjuozsb +2025-06-18T15:07:54.481Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 232ms - Rows affected: 26 - RequestID: 24pf9bj40s4 +2025-06-18T15:07:54.581Z [INFO] payment-service - POST /api/v1/users - Status: 404 - Response time: 1552ms - IP: 192.168.229.123 - User: user_1047 - RequestID: litqoy0w5q9 +2025-06-18T15:07:54.681Z [INFO] notification-service - Operation: inventory_updated - Processing time: 607ms - RequestID: 7c85zqcu7k +2025-06-18T15:07:54.781Z [INFO] notification-service - Database DELETE on users - Execution time: 8ms - Rows affected: 22 - RequestID: 2n6p36yn1bv +2025-06-18T15:07:54.881Z [TRACE] user-service - DELETE /api/v1/users - Status: 400 - Response time: 1991ms - IP: 192.168.147.171 - User: user_1014 - RequestID: espfl1otric +2025-06-18T15:07:54.981Z [INFO] payment-service - Operation: cache_miss - Processing time: 260ms - RequestID: nkf9r90mrk +2025-06-18T15:07:55.081Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 503 - Response time: 664ms - IP: 192.168.113.218 - User: user_1038 - RequestID: amfq6haff3u +2025-06-18T15:07:55.181Z [TRACE] user-service - Operation: cache_hit - Processing time: 354ms - RequestID: uu57e2d84p +2025-06-18T15:07:55.281Z [DEBUG] order-service - GET /api/v1/payments - Status: 500 - Response time: 663ms - IP: 192.168.167.32 - User: user_1078 - RequestID: mj6y0nmbz1i +2025-06-18T15:07:55.381Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 370ms - Rows affected: 12 - RequestID: bhrerqypbl5 +2025-06-18T15:07:55.481Z [TRACE] inventory-service - Auth event: password_change - User: user_1010 - IP: 192.168.133.7 - RequestID: brx84h9snhl +2025-06-18T15:07:55.581Z [TRACE] notification-service - Auth event: logout - User: user_1001 - IP: 192.168.174.114 - RequestID: tefhxdfra1n +2025-06-18T15:07:55.681Z [INFO] notification-service - Database UPDATE on payments - Execution time: 478ms - Rows affected: 33 - RequestID: s2smx0sded +2025-06-18T15:07:55.781Z [INFO] notification-service - Database INSERT on payments - Execution time: 150ms - Rows affected: 26 - RequestID: 6onpkge6xus +2025-06-18T15:07:55.881Z [INFO] payment-service - PUT /api/v1/users - Status: 503 - Response time: 177ms - IP: 192.168.1.152 - User: user_1047 - RequestID: 3dbjm8c9px +2025-06-18T15:07:55.981Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 246ms - Rows affected: 16 - RequestID: l2jem7471f +2025-06-18T15:07:56.081Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1476ms - IP: 192.168.46.63 - User: user_1080 - RequestID: 28tydkb3kyn +2025-06-18T15:07:56.181Z [TRACE] notification-service - Database SELECT on orders - Execution time: 194ms - Rows affected: 53 - RequestID: 4ku4yedmfk6 +2025-06-18T15:07:56.281Z [DEBUG] user-service - GET /api/v1/payments - Status: 503 - Response time: 430ms - IP: 192.168.247.134 - User: user_1069 - RequestID: e1qj5a0exwd +2025-06-18T15:07:56.381Z [TRACE] order-service - Auth event: password_change - User: user_1088 - IP: 192.168.247.134 - RequestID: mxuh5ml6a3b +2025-06-18T15:07:56.481Z [INFO] payment-service - DELETE /api/v1/users - Status: 403 - Response time: 1310ms - IP: 192.168.229.123 - User: user_1093 - RequestID: vj2nxlktimn +2025-06-18T15:07:56.581Z [INFO] payment-service - Operation: email_sent - Processing time: 224ms - RequestID: mngmat406di +2025-06-18T15:07:56.681Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 74ms - RequestID: e4y1oed5jyd +2025-06-18T15:07:56.781Z [INFO] auth-service - Auth event: logout - User: user_1004 - IP: 192.168.14.77 - RequestID: 7cpdxjtmb2a +2025-06-18T15:07:56.881Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 502 - Response time: 358ms - IP: 192.168.79.116 - User: user_1055 - RequestID: c6wsttesutg +2025-06-18T15:07:56.981Z [TRACE] order-service - Database SELECT on orders - Execution time: 32ms - Rows affected: 67 - RequestID: ibcb4v1ty8i +2025-06-18T15:07:57.081Z [TRACE] inventory-service - Auth event: logout - User: user_1078 - IP: 192.168.44.5 - RequestID: jzugtc1hx2 +2025-06-18T15:07:57.181Z [TRACE] inventory-service - Operation: order_created - Processing time: 398ms - RequestID: 7svv0uczjpc +2025-06-18T15:07:57.281Z [INFO] inventory-service - Auth event: login_success - User: user_1008 - IP: 192.168.189.103 - RequestID: kpdkcq0bch +2025-06-18T15:07:57.381Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 91ms - RequestID: wvdz0809j9m +2025-06-18T15:07:57.481Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 437ms - Rows affected: 40 - RequestID: jm7bt8gd72d +2025-06-18T15:07:57.581Z [INFO] payment-service - DELETE /api/v1/orders - Status: 502 - Response time: 1330ms - IP: 192.168.196.226 - User: user_1033 - RequestID: 31izk7imfmk +2025-06-18T15:07:57.681Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 201 - Response time: 57ms - IP: 192.168.64.33 - User: user_1095 - RequestID: x7auy90l8qg +2025-06-18T15:07:57.781Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 322ms - RequestID: 82inhs14sn +2025-06-18T15:07:57.881Z [TRACE] order-service - Operation: notification_queued - Processing time: 721ms - RequestID: c6xistwpko +2025-06-18T15:07:57.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.85.229 - RequestID: 4zcxpadahl6 +2025-06-18T15:07:58.081Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 1003ms - RequestID: ioyihnipv2h +2025-06-18T15:07:58.181Z [TRACE] notification-service - Operation: cache_miss - Processing time: 108ms - RequestID: s5z9k54fvge +2025-06-18T15:07:58.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.240.169 - RequestID: tlgr3k44tn +2025-06-18T15:07:58.381Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 180ms - IP: 192.168.181.225 - User: user_1023 - RequestID: cv9wzlf65af +2025-06-18T15:07:58.481Z [INFO] inventory-service - Database INSERT on users - Execution time: 467ms - Rows affected: 17 - RequestID: 8nc885o7kpn +2025-06-18T15:07:58.581Z [INFO] inventory-service - PATCH /api/v1/users - Status: 502 - Response time: 1251ms - IP: 192.168.14.77 - User: user_1054 - RequestID: fq0uviowcge +2025-06-18T15:07:58.681Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 297ms - Rows affected: 39 - RequestID: sv13g5kriqp +2025-06-18T15:07:58.781Z [INFO] notification-service - Database SELECT on payments - Execution time: 303ms - Rows affected: 96 - RequestID: n1kc229vlx8 +2025-06-18T15:07:58.881Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1051ms - IP: 192.168.32.38 - User: user_1098 - RequestID: xjkeckdb44 +2025-06-18T15:07:58.981Z [TRACE] auth-service - Database SELECT on users - Execution time: 39ms - Rows affected: 6 - RequestID: wai7j6c2vg +2025-06-18T15:07:59.081Z [DEBUG] user-service - PUT /api/v1/users - Status: 500 - Response time: 944ms - IP: 192.168.11.60 - User: user_1099 - RequestID: w048qj90nys +2025-06-18T15:07:59.181Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 401 - Response time: 176ms - IP: 192.168.64.33 - User: user_1087 - RequestID: b208x65a1ye +2025-06-18T15:07:59.281Z [TRACE] user-service - Database SELECT on sessions - Execution time: 142ms - Rows affected: 93 - RequestID: vfy09hl0po +2025-06-18T15:07:59.381Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 989ms - RequestID: 6hdkdqq64eu +2025-06-18T15:07:59.481Z [DEBUG] order-service - Auth event: logout - User: user_1036 - IP: 192.168.31.117 - RequestID: tcbcfp9nhj +2025-06-18T15:07:59.581Z [TRACE] payment-service - PUT /api/v1/orders - Status: 201 - Response time: 265ms - IP: 192.168.11.60 - User: user_1083 - RequestID: zg9c7cn20mm +2025-06-18T15:07:59.681Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 358ms - Rows affected: 46 - RequestID: 7bmbz7913jp +2025-06-18T15:07:59.781Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 262ms - Rows affected: 44 - RequestID: npzdntwznv +2025-06-18T15:07:59.881Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 201 - Response time: 1714ms - IP: 192.168.240.169 - User: user_1046 - RequestID: jy7kxwnofq8 +2025-06-18T15:07:59.981Z [INFO] notification-service - Operation: notification_queued - Processing time: 238ms - RequestID: i0nzv0l95wa +2025-06-18T15:08:00.081Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 147ms - Rows affected: 42 - RequestID: tu936j3dg4m +2025-06-18T15:08:00.181Z [TRACE] auth-service - PUT /api/v1/payments - Status: 500 - Response time: 741ms - IP: 192.168.141.100 - User: user_1012 - RequestID: gbyks28jbhc +2025-06-18T15:08:00.281Z [INFO] notification-service - Operation: webhook_sent - Processing time: 397ms - RequestID: mf9vb85t86q +2025-06-18T15:08:00.381Z [INFO] notification-service - Auth event: logout - User: user_1011 - IP: 192.168.181.225 - RequestID: 0uxeefrgl7q +2025-06-18T15:08:00.481Z [DEBUG] auth-service - Auth event: password_change - User: user_1072 - IP: 192.168.181.225 - RequestID: 5ts8qbgrojv +2025-06-18T15:08:00.581Z [DEBUG] notification-service - GET /api/v1/orders - Status: 404 - Response time: 822ms - IP: 192.168.44.5 - User: user_1083 - RequestID: mgrddfxh86s +2025-06-18T15:08:00.681Z [TRACE] user-service - Database INSERT on users - Execution time: 322ms - Rows affected: 64 - RequestID: lh0lk1qgrk +2025-06-18T15:08:00.781Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.247.134 - RequestID: r774dukth5l +2025-06-18T15:08:00.881Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 612ms - IP: 192.168.104.37 - User: user_1068 - RequestID: aygpbe818bq +2025-06-18T15:08:00.981Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 37ms - Rows affected: 96 - RequestID: l0aiw1xfdse +2025-06-18T15:08:01.081Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 500 - Response time: 204ms - IP: 192.168.174.114 - User: user_1009 - RequestID: hn1q3gk2yoq +2025-06-18T15:08:01.181Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 502 - Response time: 1507ms - IP: 192.168.232.72 - User: user_1076 - RequestID: 0eecpixa5yxf +2025-06-18T15:08:01.281Z [INFO] inventory-service - Auth event: login_failed - User: user_1052 - IP: 192.168.159.94 - RequestID: 7w3entzfygo +2025-06-18T15:08:01.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 716ms - RequestID: b2ev99rq9u +2025-06-18T15:08:01.481Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 346ms - IP: 192.168.159.94 - User: user_1008 - RequestID: mauqb91se0o +2025-06-18T15:08:01.581Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 682ms - RequestID: y7aa0did8kl +2025-06-18T15:08:01.681Z [INFO] auth-service - Auth event: logout - User: user_1095 - IP: 192.168.227.233 - RequestID: wg4a9p6gqf +2025-06-18T15:08:01.781Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 73ms - Rows affected: 69 - RequestID: ctnml75oada +2025-06-18T15:08:01.881Z [DEBUG] payment-service - Auth event: login_failed - User: user_1033 - IP: 192.168.11.60 - RequestID: 6rb4akqb78k +2025-06-18T15:08:01.981Z [INFO] inventory-service - Auth event: password_change - User: user_1046 - IP: 192.168.159.94 - RequestID: otfh5lds4ef +2025-06-18T15:08:02.081Z [TRACE] auth-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.64.33 - RequestID: pizfrh2pj8d +2025-06-18T15:08:02.181Z [TRACE] inventory-service - Operation: email_sent - Processing time: 993ms - RequestID: 2xx4n13ge9b +2025-06-18T15:08:02.281Z [INFO] inventory-service - POST /api/v1/inventory - Status: 404 - Response time: 474ms - IP: 192.168.229.123 - User: user_1052 - RequestID: h55itgqqawg +2025-06-18T15:08:02.381Z [TRACE] auth-service - Auth event: logout - User: user_1005 - IP: 192.168.68.158 - RequestID: ccjtzlghyr4 +2025-06-18T15:08:02.481Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 271ms - Rows affected: 54 - RequestID: 0ya3jvjndpn +2025-06-18T15:08:02.581Z [INFO] user-service - Operation: cache_hit - Processing time: 364ms - RequestID: pmfgat2lyz +2025-06-18T15:08:02.681Z [TRACE] auth-service - Operation: cache_miss - Processing time: 144ms - RequestID: exey99s378m +2025-06-18T15:08:02.781Z [DEBUG] inventory-service - GET /api/v1/users - Status: 201 - Response time: 1028ms - IP: 192.168.79.143 - User: user_1057 - RequestID: tlejxjhcxid +2025-06-18T15:08:02.881Z [INFO] notification-service - Operation: email_sent - Processing time: 371ms - RequestID: k01di53ifq +2025-06-18T15:08:02.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 979ms - RequestID: n21q9mif9a9 +2025-06-18T15:08:03.081Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 400 - Response time: 1081ms - IP: 192.168.10.184 - User: user_1062 - RequestID: wb6hwb4r8cg +2025-06-18T15:08:03.181Z [DEBUG] user-service - GET /api/v1/orders - Status: 200 - Response time: 1081ms - IP: 192.168.85.229 - User: user_1040 - RequestID: hucv0sa804k +2025-06-18T15:08:03.281Z [INFO] auth-service - Database DELETE on payments - Execution time: 36ms - Rows affected: 2 - RequestID: 9waoab95wd8 +2025-06-18T15:08:03.381Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.144.38 - RequestID: ccr12hxz89r +2025-06-18T15:08:03.481Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 14ms - Rows affected: 14 - RequestID: yw7urn9jyfb +2025-06-18T15:08:03.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 671ms - RequestID: kjvyl4y4eil +2025-06-18T15:08:03.681Z [INFO] inventory-service - Auth event: password_change - User: user_1095 - IP: 192.168.247.134 - RequestID: 50qrsn0wyf +2025-06-18T15:08:03.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 252ms - RequestID: ed6c2uzvb2w +2025-06-18T15:08:03.881Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 200 - Response time: 237ms - IP: 192.168.31.117 - User: user_1030 - RequestID: ql2m26ive0r +2025-06-18T15:08:03.981Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 295ms - Rows affected: 85 - RequestID: jhfw7mihc3 +2025-06-18T15:08:04.081Z [TRACE] user-service - Operation: cache_miss - Processing time: 809ms - RequestID: mvncmenopl +2025-06-18T15:08:04.181Z [DEBUG] notification-service - Database SELECT on users - Execution time: 236ms - Rows affected: 5 - RequestID: yvnfi84ummr +2025-06-18T15:08:04.281Z [TRACE] user-service - Operation: order_created - Processing time: 866ms - RequestID: g1ay8cztzf +2025-06-18T15:08:04.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1038 - IP: 192.168.85.229 - RequestID: a1uozq4omqn +2025-06-18T15:08:04.481Z [DEBUG] inventory-service - Operation: order_created - Processing time: 304ms - RequestID: 7nbfgm96khg +2025-06-18T15:08:04.581Z [TRACE] order-service - Database DELETE on users - Execution time: 26ms - Rows affected: 77 - RequestID: mtvc4ivec8n +2025-06-18T15:08:04.681Z [INFO] payment-service - Database UPDATE on payments - Execution time: 434ms - Rows affected: 70 - RequestID: fk1bnhfi1wj +2025-06-18T15:08:04.781Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 200 - Response time: 649ms - IP: 192.168.81.206 - User: user_1078 - RequestID: o0ogsipez6r +2025-06-18T15:08:04.881Z [INFO] user-service - PUT /api/v1/orders - Status: 404 - Response time: 359ms - IP: 192.168.31.117 - User: user_1081 - RequestID: g7k7arlae86 +2025-06-18T15:08:04.981Z [INFO] payment-service - Auth event: login_success - User: user_1001 - IP: 192.168.100.240 - RequestID: hg0s8pv9ufj +2025-06-18T15:08:05.081Z [DEBUG] order-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.53.133 - RequestID: 227oib3iyxk +2025-06-18T15:08:05.181Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1598ms - IP: 192.168.32.38 - User: user_1000 - RequestID: t2hnhupvooa +2025-06-18T15:08:05.281Z [INFO] order-service - Operation: payment_processed - Processing time: 477ms - RequestID: kfv88o53kl +2025-06-18T15:08:05.381Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 712ms - IP: 192.168.79.141 - User: user_1064 - RequestID: 3dx2tzf7ran +2025-06-18T15:08:05.481Z [INFO] user-service - Database INSERT on orders - Execution time: 146ms - Rows affected: 15 - RequestID: daf7jwe2fch +2025-06-18T15:08:05.581Z [INFO] notification-service - Operation: payment_processed - Processing time: 921ms - RequestID: rcfk2chkiad +2025-06-18T15:08:05.681Z [TRACE] auth-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.158.144 - RequestID: g5phf0pwih9 +2025-06-18T15:08:05.781Z [INFO] notification-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.187.199 - RequestID: ozckfc5tgyb +2025-06-18T15:08:05.881Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 448ms - Rows affected: 33 - RequestID: 8s6u0niu13w +2025-06-18T15:08:05.981Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 381ms - Rows affected: 29 - RequestID: 6ghelkq4blx +2025-06-18T15:08:06.081Z [DEBUG] order-service - GET /api/v1/payments - Status: 401 - Response time: 1008ms - IP: 192.168.44.5 - User: user_1074 - RequestID: 7stehy4xvos +2025-06-18T15:08:06.181Z [DEBUG] order-service - Database UPDATE on products - Execution time: 12ms - Rows affected: 66 - RequestID: e5na9qqbgdd +2025-06-18T15:08:06.281Z [TRACE] notification-service - PUT /api/v1/orders - Status: 503 - Response time: 1170ms - IP: 192.168.13.72 - User: user_1032 - RequestID: 641l4hw37be +2025-06-18T15:08:06.381Z [TRACE] payment-service - Auth event: login_success - User: user_1084 - IP: 192.168.44.5 - RequestID: ak119tubmav +2025-06-18T15:08:06.481Z [INFO] payment-service - Database UPDATE on orders - Execution time: 214ms - Rows affected: 9 - RequestID: dv71xgh1uzu +2025-06-18T15:08:06.581Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 573ms - RequestID: wwfm6ns4d8e +2025-06-18T15:08:06.681Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 450ms - Rows affected: 77 - RequestID: q1hurqeiukg +2025-06-18T15:08:06.781Z [DEBUG] user-service - PUT /api/v1/users - Status: 503 - Response time: 274ms - IP: 192.168.232.72 - User: user_1023 - RequestID: uyy4trok17l +2025-06-18T15:08:06.881Z [TRACE] user-service - Auth event: password_change - User: user_1012 - IP: 192.168.33.76 - RequestID: 917hk5dzsc +2025-06-18T15:08:06.981Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 211ms - Rows affected: 48 - RequestID: i0zzt90snx +2025-06-18T15:08:07.081Z [TRACE] payment-service - Operation: notification_queued - Processing time: 776ms - RequestID: 7873o0bm9t +2025-06-18T15:08:07.181Z [DEBUG] user-service - Auth event: password_change - User: user_1077 - IP: 192.168.167.32 - RequestID: hcynh5tx377 +2025-06-18T15:08:07.281Z [TRACE] inventory-service - Database DELETE on products - Execution time: 245ms - Rows affected: 12 - RequestID: wxp44tfu9mg +2025-06-18T15:08:07.381Z [DEBUG] user-service - Operation: email_sent - Processing time: 502ms - RequestID: 1gjark1m48x +2025-06-18T15:08:07.481Z [TRACE] inventory-service - Auth event: login_success - User: user_1058 - IP: 192.168.229.123 - RequestID: tbludr9t4c +2025-06-18T15:08:07.581Z [TRACE] auth-service - Database DELETE on users - Execution time: 58ms - Rows affected: 29 - RequestID: ae53m7egxzc +2025-06-18T15:08:07.681Z [INFO] order-service - Operation: inventory_updated - Processing time: 708ms - RequestID: o4jp9quu3u +2025-06-18T15:08:07.781Z [INFO] order-service - Operation: webhook_sent - Processing time: 152ms - RequestID: ok2kaohkasl +2025-06-18T15:08:07.881Z [TRACE] user-service - DELETE /api/v1/orders - Status: 404 - Response time: 1698ms - IP: 192.168.64.33 - User: user_1086 - RequestID: se5wdxiebuh +2025-06-18T15:08:07.981Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 405ms - Rows affected: 13 - RequestID: iquj1pzm58d +2025-06-18T15:08:08.081Z [INFO] notification-service - Operation: webhook_sent - Processing time: 983ms - RequestID: 45h2o3kikwn +2025-06-18T15:08:08.181Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 404 - Response time: 373ms - IP: 192.168.194.41 - User: user_1046 - RequestID: 5z2mrtt2xgo +2025-06-18T15:08:08.281Z [TRACE] order-service - Database DELETE on payments - Execution time: 362ms - Rows affected: 10 - RequestID: gjm210fdik4 +2025-06-18T15:08:08.381Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1640ms - IP: 192.168.104.37 - User: user_1011 - RequestID: uxjdk2bgaa +2025-06-18T15:08:08.481Z [TRACE] auth-service - Operation: notification_queued - Processing time: 439ms - RequestID: s2wj2nlzxne +2025-06-18T15:08:08.581Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 503 - Response time: 1998ms - IP: 192.168.211.72 - User: user_1051 - RequestID: z11nvvov0vq +2025-06-18T15:08:08.681Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 502 - Response time: 496ms - IP: 192.168.167.32 - User: user_1049 - RequestID: z9725fucnd8 +2025-06-18T15:08:08.781Z [INFO] notification-service - Operation: order_created - Processing time: 890ms - RequestID: 4idob8pkvft +2025-06-18T15:08:08.881Z [TRACE] payment-service - Auth event: login_failed - User: user_1001 - IP: 192.168.170.215 - RequestID: km5r906m83 +2025-06-18T15:08:08.981Z [INFO] notification-service - POST /api/v1/users - Status: 404 - Response time: 1736ms - IP: 192.168.167.32 - User: user_1008 - RequestID: j49rpuajk5 +2025-06-18T15:08:09.081Z [INFO] auth-service - Operation: inventory_updated - Processing time: 450ms - RequestID: i66uehddnfd +2025-06-18T15:08:09.181Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 500 - Response time: 1695ms - IP: 192.168.81.206 - User: user_1066 - RequestID: sq9dy7o7c7 +2025-06-18T15:08:09.281Z [DEBUG] user-service - Operation: payment_processed - Processing time: 117ms - RequestID: 3vj1m758bpl +2025-06-18T15:08:09.381Z [DEBUG] order-service - Database INSERT on payments - Execution time: 220ms - Rows affected: 41 - RequestID: 67kutq73mm +2025-06-18T15:08:09.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 844ms - RequestID: xhqvphcbp3p +2025-06-18T15:08:09.581Z [TRACE] payment-service - Operation: payment_processed - Processing time: 268ms - RequestID: h401lwem0k +2025-06-18T15:08:09.681Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1971ms - IP: 192.168.31.117 - User: user_1058 - RequestID: eze4mz4rqa +2025-06-18T15:08:09.781Z [INFO] payment-service - Auth event: login_success - User: user_1023 - IP: 192.168.232.72 - RequestID: 8zpw8nko3kx +2025-06-18T15:08:09.881Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 502 - Response time: 571ms - IP: 192.168.14.77 - User: user_1051 - RequestID: 86y25ccjjv5 +2025-06-18T15:08:09.981Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 351ms - Rows affected: 14 - RequestID: khipf1rktj +2025-06-18T15:08:10.081Z [DEBUG] notification-service - Operation: email_sent - Processing time: 133ms - RequestID: 7wqvog1ju24 +2025-06-18T15:08:10.181Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 202ms - Rows affected: 35 - RequestID: k16hraxxpn +2025-06-18T15:08:10.281Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1826ms - IP: 192.168.81.206 - User: user_1053 - RequestID: 6amhg2j2vws +2025-06-18T15:08:10.381Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 426ms - RequestID: 976prvqi07 +2025-06-18T15:08:10.481Z [TRACE] auth-service - Database DELETE on products - Execution time: 83ms - Rows affected: 67 - RequestID: 8eqfpb0f1g8 +2025-06-18T15:08:10.581Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 113ms - RequestID: j09f1ehpqnd +2025-06-18T15:08:10.681Z [INFO] auth-service - Auth event: password_change - User: user_1088 - IP: 192.168.53.133 - RequestID: 9wpyxa1npci +2025-06-18T15:08:10.781Z [DEBUG] user-service - Operation: order_created - Processing time: 212ms - RequestID: 6ub6cob5pq4 +2025-06-18T15:08:10.881Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 180ms - Rows affected: 26 - RequestID: zn6ed4x408 +2025-06-18T15:08:10.981Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 367ms - Rows affected: 91 - RequestID: ai3kxg47cmt +2025-06-18T15:08:11.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1032 - IP: 192.168.196.226 - RequestID: mxlhxyf6vhl +2025-06-18T15:08:11.181Z [INFO] user-service - Database UPDATE on sessions - Execution time: 167ms - Rows affected: 5 - RequestID: pzfu2ag643 +2025-06-18T15:08:11.281Z [INFO] user-service - Database DELETE on sessions - Execution time: 340ms - Rows affected: 88 - RequestID: 7blhr9wlvja +2025-06-18T15:08:11.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.64.33 - RequestID: fymqo30e08p +2025-06-18T15:08:11.481Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 502 - Response time: 614ms - IP: 192.168.170.215 - User: user_1027 - RequestID: ivhu6mnz8u +2025-06-18T15:08:11.581Z [INFO] order-service - Auth event: logout - User: user_1000 - IP: 192.168.30.79 - RequestID: q9rhw4eq9d +2025-06-18T15:08:11.681Z [DEBUG] auth-service - Database SELECT on users - Execution time: 236ms - Rows affected: 77 - RequestID: j7cyzhxhse +2025-06-18T15:08:11.781Z [INFO] inventory-service - DELETE /api/v1/users - Status: 502 - Response time: 1319ms - IP: 192.168.46.63 - User: user_1015 - RequestID: d31h25476z +2025-06-18T15:08:11.881Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1879ms - IP: 192.168.64.33 - User: user_1023 - RequestID: j1oirq90am8 +2025-06-18T15:08:11.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1012 - IP: 192.168.85.229 - RequestID: 53cplomcftf +2025-06-18T15:08:12.081Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 502 - Response time: 82ms - IP: 192.168.13.72 - User: user_1030 - RequestID: e0itigvkcsk +2025-06-18T15:08:12.181Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 55ms - Rows affected: 72 - RequestID: i3nffsqwuk8 +2025-06-18T15:08:12.281Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1045ms - IP: 192.168.79.141 - User: user_1025 - RequestID: 9aq6ge9kyfe +2025-06-18T15:08:12.381Z [INFO] payment-service - Database DELETE on payments - Execution time: 365ms - Rows affected: 85 - RequestID: 10s8f83xstho +2025-06-18T15:08:12.481Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 404 - Response time: 822ms - IP: 192.168.53.133 - User: user_1021 - RequestID: 5ikpodshhmd +2025-06-18T15:08:12.581Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 266ms - Rows affected: 10 - RequestID: mg9v6shp3l +2025-06-18T15:08:12.681Z [INFO] user-service - GET /api/v1/payments - Status: 401 - Response time: 1164ms - IP: 192.168.174.114 - User: user_1055 - RequestID: u9wawi1sfvp +2025-06-18T15:08:12.781Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1587ms - IP: 192.168.147.171 - User: user_1093 - RequestID: l7ovmmixya +2025-06-18T15:08:12.881Z [INFO] user-service - Operation: webhook_sent - Processing time: 528ms - RequestID: 1y9al784c6fh +2025-06-18T15:08:12.981Z [INFO] inventory-service - PUT /api/v1/orders - Status: 400 - Response time: 143ms - IP: 192.168.227.233 - User: user_1064 - RequestID: 3pwq2ytz9vw +2025-06-18T15:08:13.081Z [INFO] payment-service - Auth event: login_failed - User: user_1096 - IP: 192.168.97.87 - RequestID: 3jzfjt9uvl1 +2025-06-18T15:08:13.181Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 359ms - RequestID: qtgrs6g6p1 +2025-06-18T15:08:13.281Z [DEBUG] user-service - Database SELECT on orders - Execution time: 466ms - Rows affected: 4 - RequestID: reuoc44rhg +2025-06-18T15:08:13.381Z [INFO] payment-service - Database INSERT on sessions - Execution time: 130ms - Rows affected: 17 - RequestID: 700hmzo59s +2025-06-18T15:08:13.481Z [TRACE] inventory-service - GET /api/v1/users - Status: 200 - Response time: 1856ms - IP: 192.168.36.218 - User: user_1061 - RequestID: igssqubjn7e +2025-06-18T15:08:13.581Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 325ms - Rows affected: 95 - RequestID: 4m3p1hsqlom +2025-06-18T15:08:13.681Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 627ms - RequestID: wkdqf5dfrrf +2025-06-18T15:08:13.781Z [INFO] order-service - Operation: payment_processed - Processing time: 470ms - RequestID: ednsvn8by78 +2025-06-18T15:08:13.881Z [INFO] user-service - Auth event: login_failed - User: user_1086 - IP: 192.168.28.146 - RequestID: h2w20s8ge7i +2025-06-18T15:08:13.981Z [TRACE] payment-service - Operation: cache_miss - Processing time: 504ms - RequestID: s0y328n8ey +2025-06-18T15:08:14.081Z [TRACE] notification-service - Operation: notification_queued - Processing time: 495ms - RequestID: dpb5bilopuf +2025-06-18T15:08:14.181Z [INFO] payment-service - Operation: email_sent - Processing time: 676ms - RequestID: fjw4oda9nds +2025-06-18T15:08:14.281Z [INFO] user-service - Operation: email_sent - Processing time: 628ms - RequestID: 25scizz2km +2025-06-18T15:08:14.381Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 262ms - IP: 192.168.196.226 - User: user_1056 - RequestID: g0i96kibge +2025-06-18T15:08:14.481Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 492ms - RequestID: jmcog59gcj +2025-06-18T15:08:14.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1015 - IP: 192.168.240.169 - RequestID: n08g2yij3l +2025-06-18T15:08:14.681Z [TRACE] payment-service - POST /api/v1/users - Status: 400 - Response time: 905ms - IP: 192.168.196.226 - User: user_1037 - RequestID: tghn8e013so +2025-06-18T15:08:14.781Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.158.144 - RequestID: 5hvr3080rip +2025-06-18T15:08:14.881Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1761ms - IP: 192.168.247.134 - User: user_1082 - RequestID: sv6dxkdr9kd +2025-06-18T15:08:14.981Z [INFO] user-service - Operation: order_created - Processing time: 740ms - RequestID: btjhv0yx9bf +2025-06-18T15:08:15.081Z [INFO] order-service - Operation: cache_miss - Processing time: 220ms - RequestID: 89kbjsmroh2 +2025-06-18T15:08:15.181Z [TRACE] notification-service - Auth event: logout - User: user_1094 - IP: 192.168.14.77 - RequestID: 2g6fptykko1 +2025-06-18T15:08:15.281Z [TRACE] notification-service - Auth event: logout - User: user_1046 - IP: 192.168.229.123 - RequestID: 8opmqim8o8 +2025-06-18T15:08:15.381Z [INFO] auth-service - PUT /api/v1/payments - Status: 500 - Response time: 968ms - IP: 192.168.104.37 - User: user_1027 - RequestID: 9cnz73vt4v8 +2025-06-18T15:08:15.481Z [INFO] order-service - Database UPDATE on sessions - Execution time: 327ms - Rows affected: 81 - RequestID: 1877jkkdfhi +2025-06-18T15:08:15.581Z [INFO] user-service - GET /api/v1/auth/logout - Status: 403 - Response time: 769ms - IP: 192.168.227.77 - User: user_1041 - RequestID: r8aci9xuvj +2025-06-18T15:08:15.681Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 202ms - Rows affected: 71 - RequestID: hcgcbuk7lpd +2025-06-18T15:08:15.781Z [INFO] payment-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.240.169 - RequestID: pllzc8pnctq +2025-06-18T15:08:15.881Z [INFO] inventory-service - Auth event: logout - User: user_1084 - IP: 192.168.158.144 - RequestID: t4mwi4xmzz +2025-06-18T15:08:15.981Z [TRACE] notification-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.10.184 - RequestID: tkjbgep45z +2025-06-18T15:08:16.081Z [TRACE] notification-service - Auth event: logout - User: user_1052 - IP: 192.168.28.146 - RequestID: ibg4fr1ede +2025-06-18T15:08:16.181Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 200 - Response time: 1050ms - IP: 192.168.170.215 - User: user_1014 - RequestID: 8w6u54g772c +2025-06-18T15:08:16.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.211.72 - RequestID: 3z7wgn8qm6a +2025-06-18T15:08:16.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 431ms - RequestID: k4go2ka3nb +2025-06-18T15:08:16.481Z [INFO] auth-service - Database DELETE on payments - Execution time: 267ms - Rows affected: 55 - RequestID: h0wzzciny0r +2025-06-18T15:08:16.581Z [TRACE] payment-service - Database SELECT on users - Execution time: 17ms - Rows affected: 22 - RequestID: vblawti5jko +2025-06-18T15:08:16.681Z [INFO] user-service - Database INSERT on payments - Execution time: 247ms - Rows affected: 38 - RequestID: 1j6bx9hnph9 +2025-06-18T15:08:16.781Z [TRACE] payment-service - Auth event: logout - User: user_1022 - IP: 192.168.227.77 - RequestID: 70df7ipo83g +2025-06-18T15:08:16.881Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 98ms - Rows affected: 90 - RequestID: 3kj86gp0ncx +2025-06-18T15:08:16.981Z [INFO] user-service - Database INSERT on payments - Execution time: 222ms - Rows affected: 39 - RequestID: 5uk9syz4s3s +2025-06-18T15:08:17.081Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 869ms - RequestID: 1qs4efrttj9 +2025-06-18T15:08:17.181Z [INFO] notification-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.97.87 - RequestID: 2xuvbdrlxp +2025-06-18T15:08:17.281Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 693ms - RequestID: c69287wwou7 +2025-06-18T15:08:17.381Z [TRACE] notification-service - Auth event: logout - User: user_1035 - IP: 192.168.44.5 - RequestID: l09a58j4bs9 +2025-06-18T15:08:17.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 386ms - RequestID: 2v16wqvo7q5 +2025-06-18T15:08:17.581Z [DEBUG] user-service - Database INSERT on users - Execution time: 120ms - Rows affected: 78 - RequestID: mco1kt31a7o +2025-06-18T15:08:17.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 741ms - RequestID: h9wqyf41ozi +2025-06-18T15:08:17.781Z [DEBUG] user-service - Auth event: password_change - User: user_1030 - IP: 192.168.53.133 - RequestID: e6rbe5fcj17 +2025-06-18T15:08:17.881Z [TRACE] payment-service - Database INSERT on users - Execution time: 362ms - Rows affected: 35 - RequestID: 6fqe359ykau +2025-06-18T15:08:17.981Z [TRACE] inventory-service - Database DELETE on users - Execution time: 319ms - Rows affected: 75 - RequestID: k9a7x1ugzkj +2025-06-18T15:08:18.081Z [TRACE] order-service - Database SELECT on products - Execution time: 469ms - Rows affected: 12 - RequestID: bob680muoud +2025-06-18T15:08:18.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.167.32 - RequestID: mzuarwfreqo +2025-06-18T15:08:18.281Z [INFO] inventory-service - Database SELECT on orders - Execution time: 302ms - Rows affected: 27 - RequestID: gxix5n02ygi +2025-06-18T15:08:18.381Z [INFO] payment-service - DELETE /api/v1/payments - Status: 400 - Response time: 1935ms - IP: 192.168.33.76 - User: user_1025 - RequestID: o8patdgp02h +2025-06-18T15:08:18.481Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1556ms - IP: 192.168.196.226 - User: user_1020 - RequestID: 1uml5w9xcas +2025-06-18T15:08:18.581Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 388ms - Rows affected: 84 - RequestID: 2pwj4j9kbb3 +2025-06-18T15:08:18.681Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 495ms - Rows affected: 31 - RequestID: qzsj9yat2s +2025-06-18T15:08:18.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1091 - IP: 192.168.194.41 - RequestID: orh36p2z1fc +2025-06-18T15:08:18.881Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.10.184 - RequestID: 80m935mf4f +2025-06-18T15:08:18.981Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 228ms - RequestID: skw92ktdd1h +2025-06-18T15:08:19.081Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 270ms - Rows affected: 82 - RequestID: 1jv29hi8x1eh +2025-06-18T15:08:19.181Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 481ms - RequestID: wy2rpuzycds +2025-06-18T15:08:19.281Z [TRACE] inventory-service - GET /api/v1/users - Status: 500 - Response time: 1552ms - IP: 192.168.158.144 - User: user_1007 - RequestID: yhzpzyg9zjk +2025-06-18T15:08:19.381Z [TRACE] user-service - Database SELECT on orders - Execution time: 43ms - Rows affected: 54 - RequestID: dyzi0nrqz7 +2025-06-18T15:08:19.481Z [DEBUG] auth-service - Operation: order_created - Processing time: 1001ms - RequestID: kxyzgsqhhy +2025-06-18T15:08:19.581Z [TRACE] auth-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.232.72 - RequestID: 1eklwhd8rp1 +2025-06-18T15:08:19.681Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 200 - Response time: 1853ms - IP: 192.168.68.158 - User: user_1023 - RequestID: m06hhxuolxe +2025-06-18T15:08:19.781Z [TRACE] payment-service - Operation: order_created - Processing time: 213ms - RequestID: m3oer73f82o +2025-06-18T15:08:19.881Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 502 - Response time: 1973ms - IP: 192.168.30.79 - User: user_1051 - RequestID: hnus6vz2fku +2025-06-18T15:08:19.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.144.38 - RequestID: 4pky6qutzhb +2025-06-18T15:08:20.081Z [INFO] auth-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.227.233 - RequestID: cwu7h4525ep +2025-06-18T15:08:20.181Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 401 - Response time: 1516ms - IP: 192.168.196.226 - User: user_1047 - RequestID: xnuw65mxfbj +2025-06-18T15:08:20.281Z [DEBUG] order-service - Auth event: password_change - User: user_1081 - IP: 192.168.167.32 - RequestID: z2f94hh4h4o +2025-06-18T15:08:20.381Z [TRACE] notification-service - Auth event: login_failed - User: user_1014 - IP: 192.168.235.117 - RequestID: 1lqln11lg73 +2025-06-18T15:08:20.481Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 130ms - Rows affected: 67 - RequestID: q2agl3anmlc +2025-06-18T15:08:20.581Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 374ms - Rows affected: 63 - RequestID: 9r1b6pwlwu +2025-06-18T15:08:20.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1006 - IP: 192.168.30.79 - RequestID: a4bbardwd3 +2025-06-18T15:08:20.781Z [DEBUG] order-service - POST /api/v1/orders - Status: 500 - Response time: 274ms - IP: 192.168.79.116 - User: user_1058 - RequestID: q9n5elv64zb +2025-06-18T15:08:20.881Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 500 - Response time: 747ms - IP: 192.168.104.37 - User: user_1017 - RequestID: 2xgqx7vs6il +2025-06-18T15:08:20.981Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 400 - Response time: 270ms - IP: 192.168.138.123 - User: user_1075 - RequestID: 7kl686osy5r +2025-06-18T15:08:21.081Z [INFO] inventory-service - PUT /api/v1/orders - Status: 404 - Response time: 786ms - IP: 192.168.36.218 - User: user_1016 - RequestID: a0bmf0hsft +2025-06-18T15:08:21.181Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 503 - Response time: 695ms - IP: 192.168.1.152 - User: user_1023 - RequestID: ec33541ey6c +2025-06-18T15:08:21.281Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.229.123 - RequestID: zc62vzz77zn +2025-06-18T15:08:21.381Z [TRACE] order-service - Database INSERT on users - Execution time: 446ms - Rows affected: 81 - RequestID: lvg60s63ge +2025-06-18T15:08:21.481Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1394ms - IP: 192.168.113.218 - User: user_1050 - RequestID: amgdpexsdoe +2025-06-18T15:08:21.581Z [TRACE] payment-service - Operation: order_created - Processing time: 605ms - RequestID: 24wqdkqscry +2025-06-18T15:08:21.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 523ms - RequestID: fjen0wdx9eg +2025-06-18T15:08:21.781Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 318ms - Rows affected: 76 - RequestID: jnwyxshybw +2025-06-18T15:08:21.881Z [TRACE] auth-service - Operation: email_sent - Processing time: 569ms - RequestID: 4ykkegku7rp +2025-06-18T15:08:21.981Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1738ms - IP: 192.168.187.199 - User: user_1020 - RequestID: cfh98k32v7e +2025-06-18T15:08:22.081Z [INFO] auth-service - Operation: webhook_sent - Processing time: 185ms - RequestID: u2uofkyzlh +2025-06-18T15:08:22.181Z [DEBUG] user-service - Operation: payment_processed - Processing time: 631ms - RequestID: hwu3f7b1izg +2025-06-18T15:08:22.281Z [DEBUG] user-service - Operation: order_created - Processing time: 139ms - RequestID: giccj7462ra +2025-06-18T15:08:22.381Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 56ms - Rows affected: 60 - RequestID: 6s2g06x597t +2025-06-18T15:08:22.481Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 1453ms - IP: 192.168.240.169 - User: user_1077 - RequestID: 8o129u4vbo3 +2025-06-18T15:08:22.581Z [INFO] auth-service - Database SELECT on users - Execution time: 6ms - Rows affected: 88 - RequestID: ggqci2vfdk9 +2025-06-18T15:08:22.681Z [DEBUG] order-service - Database SELECT on users - Execution time: 15ms - Rows affected: 14 - RequestID: 3l9zbm2rmbn +2025-06-18T15:08:22.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1018 - IP: 192.168.247.134 - RequestID: gmik5vh5agt +2025-06-18T15:08:22.881Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 183ms - Rows affected: 40 - RequestID: 1ofbfmhsn0r +2025-06-18T15:08:22.981Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 4ms - Rows affected: 64 - RequestID: 4bwvkrjcmyb +2025-06-18T15:08:23.081Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1628ms - IP: 192.168.158.144 - User: user_1023 - RequestID: 2tlyz86zvl1 +2025-06-18T15:08:23.181Z [DEBUG] user-service - POST /api/v1/users - Status: 503 - Response time: 726ms - IP: 192.168.53.133 - User: user_1000 - RequestID: irw08tht0ja +2025-06-18T15:08:23.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1056 - IP: 192.168.13.72 - RequestID: f32wa5o3pj +2025-06-18T15:08:23.381Z [INFO] inventory-service - Database DELETE on orders - Execution time: 259ms - Rows affected: 15 - RequestID: npeoprvu3zh +2025-06-18T15:08:23.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1099 - IP: 192.168.159.94 - RequestID: 4rlwp8hmz59 +2025-06-18T15:08:23.581Z [TRACE] payment-service - Auth event: login_failed - User: user_1014 - IP: 192.168.53.133 - RequestID: 2c2y20ehz65 +2025-06-18T15:08:23.681Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 329ms - Rows affected: 90 - RequestID: paxccbxdt4 +2025-06-18T15:08:23.781Z [DEBUG] order-service - Operation: order_created - Processing time: 814ms - RequestID: 4oqoa3vg8cm +2025-06-18T15:08:23.881Z [TRACE] order-service - GET /api/v1/payments - Status: 403 - Response time: 1693ms - IP: 192.168.79.141 - User: user_1019 - RequestID: 1uxy4wxpcqxh +2025-06-18T15:08:23.981Z [INFO] inventory-service - Operation: notification_queued - Processing time: 842ms - RequestID: w2boq5rrg8 +2025-06-18T15:08:24.081Z [INFO] payment-service - GET /api/v1/orders - Status: 403 - Response time: 171ms - IP: 192.168.31.117 - User: user_1050 - RequestID: qbs7rjyqfng +2025-06-18T15:08:24.181Z [INFO] inventory-service - Database SELECT on users - Execution time: 77ms - Rows affected: 64 - RequestID: d52s9tbp13a +2025-06-18T15:08:24.281Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 414ms - Rows affected: 92 - RequestID: 0kg2589d34fj +2025-06-18T15:08:24.381Z [TRACE] inventory-service - POST /api/v1/orders - Status: 503 - Response time: 1030ms - IP: 192.168.79.141 - User: user_1056 - RequestID: 9ow9n016l5v +2025-06-18T15:08:24.481Z [TRACE] auth-service - Operation: cache_hit - Processing time: 439ms - RequestID: mldhdsv7qo +2025-06-18T15:08:24.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 1019ms - RequestID: 8sofp10kqtw +2025-06-18T15:08:24.681Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 232ms - Rows affected: 81 - RequestID: 0zqzd9xdf2ve +2025-06-18T15:08:24.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1074 - IP: 192.168.144.38 - RequestID: rpui65qwdwe +2025-06-18T15:08:24.881Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 666ms - RequestID: ynomyj3amkc +2025-06-18T15:08:24.981Z [DEBUG] user-service - GET /api/v1/users - Status: 201 - Response time: 1274ms - IP: 192.168.159.94 - User: user_1037 - RequestID: 48mondccxjg +2025-06-18T15:08:25.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1092 - IP: 192.168.158.144 - RequestID: 9w6lh3cot9s +2025-06-18T15:08:25.181Z [DEBUG] user-service - Database DELETE on products - Execution time: 55ms - Rows affected: 38 - RequestID: 2gm5giuj3wk +2025-06-18T15:08:25.281Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 86ms - Rows affected: 97 - RequestID: iscnt8u7j9e +2025-06-18T15:08:25.381Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 232ms - Rows affected: 14 - RequestID: vxpwqxhbjyk +2025-06-18T15:08:25.481Z [TRACE] order-service - Database DELETE on orders - Execution time: 22ms - Rows affected: 69 - RequestID: 2izto5e1ldg +2025-06-18T15:08:25.581Z [DEBUG] inventory-service - Auth event: password_change - User: user_1035 - IP: 192.168.31.117 - RequestID: 194f2j96j3i +2025-06-18T15:08:25.681Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 488ms - RequestID: iyscg1oqnq +2025-06-18T15:08:25.781Z [TRACE] notification-service - GET /api/v1/orders - Status: 503 - Response time: 705ms - IP: 192.168.167.32 - User: user_1057 - RequestID: iuosl3dem39 +2025-06-18T15:08:25.881Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 994ms - RequestID: s90fzau2fgi +2025-06-18T15:08:25.981Z [INFO] order-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.11.60 - RequestID: 0rrlcmicypse +2025-06-18T15:08:26.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1029 - IP: 192.168.53.133 - RequestID: r6xgn8m0zuk +2025-06-18T15:08:26.181Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 79ms - RequestID: h3e4mmz516v +2025-06-18T15:08:26.281Z [INFO] auth-service - POST /api/v1/users - Status: 200 - Response time: 515ms - IP: 192.168.211.72 - User: user_1095 - RequestID: 0w9vlgoapsa +2025-06-18T15:08:26.381Z [TRACE] user-service - Database DELETE on products - Execution time: 411ms - Rows affected: 84 - RequestID: 3os9o7aowq7 +2025-06-18T15:08:26.481Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 12ms - Rows affected: 65 - RequestID: 5fpich2a5rj +2025-06-18T15:08:26.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.1.152 - RequestID: dfy09uj682c +2025-06-18T15:08:26.681Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 474ms - Rows affected: 87 - RequestID: awmv73jfob +2025-06-18T15:08:26.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.1.152 - RequestID: ls287ydbo6s +2025-06-18T15:08:26.881Z [TRACE] user-service - Database INSERT on products - Execution time: 321ms - Rows affected: 60 - RequestID: zp4iku7ns1a +2025-06-18T15:08:26.981Z [DEBUG] user-service - POST /api/v1/users - Status: 503 - Response time: 1808ms - IP: 192.168.31.117 - User: user_1022 - RequestID: 4waxlgw48ne +2025-06-18T15:08:27.081Z [INFO] payment-service - Operation: webhook_sent - Processing time: 988ms - RequestID: 3syv9xtpod6 +2025-06-18T15:08:27.181Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 134ms - Rows affected: 11 - RequestID: i65q8177wej +2025-06-18T15:08:27.281Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.170.215 - RequestID: yayxf9qf2o +2025-06-18T15:08:27.381Z [TRACE] user-service - Operation: payment_processed - Processing time: 61ms - RequestID: vdlndl3kblr +2025-06-18T15:08:27.481Z [DEBUG] auth-service - Operation: email_sent - Processing time: 252ms - RequestID: 9u1ehhke7pk +2025-06-18T15:08:27.581Z [INFO] inventory-service - Auth event: login_success - User: user_1088 - IP: 192.168.44.5 - RequestID: 1bo6f9bnegd +2025-06-18T15:08:27.681Z [INFO] auth-service - Auth event: password_change - User: user_1045 - IP: 192.168.187.199 - RequestID: 3rb1f0dkbu3 +2025-06-18T15:08:27.781Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 111ms - IP: 192.168.113.218 - User: user_1003 - RequestID: wvxuns980cm +2025-06-18T15:08:27.881Z [INFO] order-service - PUT /api/v1/orders - Status: 200 - Response time: 783ms - IP: 192.168.211.72 - User: user_1068 - RequestID: 394icpvacc8 +2025-06-18T15:08:27.981Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 1046ms - RequestID: o9wj9q3uyhk +2025-06-18T15:08:28.081Z [TRACE] notification-service - POST /api/v1/orders - Status: 401 - Response time: 772ms - IP: 192.168.100.240 - User: user_1050 - RequestID: zxiuq9opg3 +2025-06-18T15:08:28.181Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1015 - IP: 192.168.242.165 - RequestID: ln8r5m2yova +2025-06-18T15:08:28.281Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 492ms - RequestID: bqzrx8pwek +2025-06-18T15:08:28.381Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 1633ms - IP: 192.168.187.199 - User: user_1019 - RequestID: xzt5721zhts +2025-06-18T15:08:28.481Z [TRACE] payment-service - Operation: payment_processed - Processing time: 347ms - RequestID: spamm6t4x2 +2025-06-18T15:08:28.581Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 500 - Response time: 322ms - IP: 192.168.232.72 - User: user_1041 - RequestID: i8vz638jqgc +2025-06-18T15:08:28.681Z [TRACE] notification-service - Operation: order_created - Processing time: 272ms - RequestID: h0znhz2n7gg +2025-06-18T15:08:28.781Z [TRACE] order-service - POST /api/v1/users - Status: 500 - Response time: 1510ms - IP: 192.168.235.117 - User: user_1013 - RequestID: qb81xzkejj8 +2025-06-18T15:08:28.881Z [DEBUG] payment-service - Auth event: logout - User: user_1006 - IP: 192.168.64.33 - RequestID: ruwqqjewtdp +2025-06-18T15:08:28.981Z [INFO] auth-service - GET /api/v1/inventory - Status: 400 - Response time: 1291ms - IP: 192.168.1.152 - User: user_1042 - RequestID: br6j8vl5omw +2025-06-18T15:08:29.081Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 814ms - RequestID: k31pw5tf0n +2025-06-18T15:08:29.181Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 176ms - Rows affected: 38 - RequestID: xdy2jr2bnoh +2025-06-18T15:08:29.281Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1967ms - IP: 192.168.194.41 - User: user_1054 - RequestID: 9t2upo7gaph +2025-06-18T15:08:29.381Z [DEBUG] auth-service - Operation: email_sent - Processing time: 733ms - RequestID: 064mh38j9oo9 +2025-06-18T15:08:29.481Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 200 - Response time: 952ms - IP: 192.168.14.77 - User: user_1026 - RequestID: c7mqo9h7kun +2025-06-18T15:08:29.581Z [TRACE] order-service - PUT /api/v1/payments - Status: 403 - Response time: 541ms - IP: 192.168.187.199 - User: user_1085 - RequestID: 9qyv8e9y0jt +2025-06-18T15:08:29.681Z [TRACE] payment-service - Operation: email_sent - Processing time: 145ms - RequestID: fi82k38maah +2025-06-18T15:08:29.781Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1077 - IP: 192.168.1.152 - RequestID: mwfwb9151kj +2025-06-18T15:08:29.881Z [INFO] inventory-service - Database SELECT on orders - Execution time: 447ms - Rows affected: 52 - RequestID: 1b8m8ddtzpa +2025-06-18T15:08:29.981Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 401 - Response time: 267ms - IP: 192.168.11.60 - User: user_1052 - RequestID: vvptpbktox +2025-06-18T15:08:30.081Z [INFO] order-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.235.117 - RequestID: r5pw9557fo +2025-06-18T15:08:30.181Z [INFO] inventory-service - Database SELECT on orders - Execution time: 206ms - Rows affected: 13 - RequestID: 4bcd1qt1ykq +2025-06-18T15:08:30.281Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 735ms - IP: 192.168.44.5 - User: user_1081 - RequestID: imxm6e1qcxk +2025-06-18T15:08:30.381Z [TRACE] user-service - Auth event: login_success - User: user_1023 - IP: 192.168.113.218 - RequestID: v2piva0uj8p +2025-06-18T15:08:30.481Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 840ms - RequestID: sdfsbbewrwr +2025-06-18T15:08:30.581Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 404 - Response time: 932ms - IP: 192.168.64.33 - User: user_1050 - RequestID: 3tubdkw4q3o +2025-06-18T15:08:30.681Z [INFO] auth-service - Auth event: logout - User: user_1038 - IP: 192.168.13.72 - RequestID: syxj91l4brb +2025-06-18T15:08:30.781Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 76ms - Rows affected: 30 - RequestID: iynzgb304dq +2025-06-18T15:08:30.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 899ms - RequestID: cxafwpi8q84 +2025-06-18T15:08:30.981Z [INFO] payment-service - Operation: cache_miss - Processing time: 483ms - RequestID: 2j6s4cz0bea +2025-06-18T15:08:31.081Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 186ms - RequestID: a3q98zsxww8 +2025-06-18T15:08:31.181Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 256ms - Rows affected: 97 - RequestID: o5sk9ksvb1m +2025-06-18T15:08:31.281Z [DEBUG] auth-service - Auth event: login_success - User: user_1001 - IP: 192.168.68.158 - RequestID: bwthyzvjwvw +2025-06-18T15:08:31.381Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 384ms - Rows affected: 5 - RequestID: nyrfbbub6z +2025-06-18T15:08:31.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 277ms - RequestID: x493084ulrb +2025-06-18T15:08:31.581Z [TRACE] user-service - Auth event: login_failed - User: user_1048 - IP: 192.168.144.38 - RequestID: xhiteca3gvh +2025-06-18T15:08:31.681Z [TRACE] auth-service - Auth event: login_failed - User: user_1018 - IP: 192.168.144.38 - RequestID: ikllqoeb8j +2025-06-18T15:08:31.781Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 115ms - Rows affected: 20 - RequestID: lnr2bxdiitk +2025-06-18T15:08:31.881Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 130ms - RequestID: 8d6ij11fsoy +2025-06-18T15:08:31.981Z [INFO] order-service - Database INSERT on orders - Execution time: 285ms - Rows affected: 88 - RequestID: vizpbw75ppa +2025-06-18T15:08:32.081Z [INFO] user-service - Auth event: password_change - User: user_1054 - IP: 192.168.187.199 - RequestID: qhdaj8rjfc +2025-06-18T15:08:32.181Z [INFO] inventory-service - Operation: order_created - Processing time: 651ms - RequestID: 31zroy9bd7z +2025-06-18T15:08:32.281Z [INFO] user-service - Auth event: login_failed - User: user_1059 - IP: 192.168.167.32 - RequestID: y7aic93t4za +2025-06-18T15:08:32.381Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 330ms - Rows affected: 26 - RequestID: wzxw5bg7sos +2025-06-18T15:08:32.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.194.41 - RequestID: 40hnv3rmprd +2025-06-18T15:08:32.581Z [TRACE] notification-service - Auth event: login_success - User: user_1040 - IP: 192.168.64.33 - RequestID: 18f454pji4n +2025-06-18T15:08:32.681Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 215ms - Rows affected: 44 - RequestID: yc0cv1wrgzo +2025-06-18T15:08:32.781Z [DEBUG] user-service - Database SELECT on users - Execution time: 147ms - Rows affected: 70 - RequestID: 54uxx6fxdu +2025-06-18T15:08:32.881Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1582ms - IP: 192.168.159.94 - User: user_1081 - RequestID: p1k67qs12cd +2025-06-18T15:08:32.981Z [TRACE] order-service - Auth event: login_failed - User: user_1073 - IP: 192.168.97.87 - RequestID: hn4gtbv6otv +2025-06-18T15:08:33.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.104.37 - RequestID: pypq1931pj +2025-06-18T15:08:33.181Z [TRACE] payment-service - GET /api/v1/users - Status: 201 - Response time: 215ms - IP: 192.168.13.72 - User: user_1097 - RequestID: nk1spd0klyf +2025-06-18T15:08:33.281Z [INFO] notification-service - Auth event: logout - User: user_1026 - IP: 192.168.28.146 - RequestID: 1hhqk841th3 +2025-06-18T15:08:33.381Z [TRACE] order-service - Operation: notification_queued - Processing time: 395ms - RequestID: zqa9c9ngrq9 +2025-06-18T15:08:33.481Z [TRACE] notification-service - Database INSERT on orders - Execution time: 497ms - Rows affected: 7 - RequestID: ssut71pqy7o +2025-06-18T15:08:33.581Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 961ms - RequestID: ajf9ws6cvqn +2025-06-18T15:08:33.681Z [DEBUG] order-service - GET /api/v1/payments - Status: 404 - Response time: 917ms - IP: 192.168.227.233 - User: user_1066 - RequestID: nvko4oyx09 +2025-06-18T15:08:33.781Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 401 - Response time: 753ms - IP: 192.168.247.134 - User: user_1051 - RequestID: ecyfdbyxyt9 +2025-06-18T15:08:33.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.79.116 - RequestID: 73hjulqvhk9 +2025-06-18T15:08:33.981Z [DEBUG] user-service - POST /api/v1/inventory - Status: 502 - Response time: 921ms - IP: 192.168.100.240 - User: user_1044 - RequestID: 47fwqmpt7ub +2025-06-18T15:08:34.081Z [INFO] inventory-service - Operation: cache_hit - Processing time: 797ms - RequestID: omdmahpyz9p +2025-06-18T15:08:34.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 803ms - RequestID: lhzoq6cpu2h +2025-06-18T15:08:34.281Z [TRACE] order-service - PATCH /api/v1/payments - Status: 201 - Response time: 557ms - IP: 192.168.100.240 - User: user_1072 - RequestID: 1mqxcin5eox +2025-06-18T15:08:34.381Z [TRACE] notification-service - Database DELETE on orders - Execution time: 296ms - Rows affected: 60 - RequestID: z37tehtrad +2025-06-18T15:08:34.481Z [INFO] auth-service - POST /api/v1/orders - Status: 500 - Response time: 194ms - IP: 192.168.68.128 - User: user_1010 - RequestID: trprilerdii +2025-06-18T15:08:34.581Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 502 - Response time: 618ms - IP: 192.168.33.76 - User: user_1071 - RequestID: hmjr7ar5sya +2025-06-18T15:08:34.681Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 367ms - RequestID: l4nrdns1v2f +2025-06-18T15:08:34.781Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 121ms - Rows affected: 48 - RequestID: bl33begc4j +2025-06-18T15:08:34.881Z [INFO] notification-service - Database DELETE on sessions - Execution time: 128ms - Rows affected: 21 - RequestID: puwzr5nryfh +2025-06-18T15:08:34.981Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 210ms - IP: 192.168.196.226 - User: user_1094 - RequestID: kbi5skx6of +2025-06-18T15:08:35.081Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 401 - Response time: 693ms - IP: 192.168.147.171 - User: user_1043 - RequestID: ctul6an7tzk +2025-06-18T15:08:35.181Z [INFO] inventory-service - Operation: cache_miss - Processing time: 805ms - RequestID: x16ya8a54yn +2025-06-18T15:08:35.281Z [INFO] notification-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.68.158 - RequestID: c4kapwhh3y +2025-06-18T15:08:35.381Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 168ms - Rows affected: 85 - RequestID: ih7ntbqfuun +2025-06-18T15:08:35.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.242.165 - RequestID: axbxnusj1iu +2025-06-18T15:08:35.581Z [INFO] order-service - Operation: order_created - Processing time: 306ms - RequestID: abtr27p1pwp +2025-06-18T15:08:35.681Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 437ms - Rows affected: 51 - RequestID: w0hvr50z9na +2025-06-18T15:08:35.781Z [INFO] order-service - Auth event: login_success - User: user_1003 - IP: 192.168.79.116 - RequestID: mxuy2jvmuum +2025-06-18T15:08:35.881Z [INFO] auth-service - Database UPDATE on users - Execution time: 228ms - Rows affected: 28 - RequestID: 74g9qtdt1l +2025-06-18T15:08:35.981Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 372ms - RequestID: eak3wn239pa +2025-06-18T15:08:36.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1068 - IP: 192.168.227.77 - RequestID: jmtn9c228k +2025-06-18T15:08:36.181Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 199ms - Rows affected: 91 - RequestID: m6l2a5jcgcf +2025-06-18T15:08:36.281Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 107ms - Rows affected: 77 - RequestID: bp7mketgegb +2025-06-18T15:08:36.381Z [TRACE] notification-service - Operation: email_sent - Processing time: 177ms - RequestID: 5nrivit4h3c +2025-06-18T15:08:36.481Z [TRACE] user-service - PATCH /api/v1/orders - Status: 201 - Response time: 490ms - IP: 192.168.187.199 - User: user_1095 - RequestID: jkwh2nbdg4 +2025-06-18T15:08:36.581Z [INFO] auth-service - Operation: payment_processed - Processing time: 167ms - RequestID: ghc8l8jbzk8 +2025-06-18T15:08:36.681Z [DEBUG] payment-service - GET /api/v1/users - Status: 500 - Response time: 1262ms - IP: 192.168.44.5 - User: user_1020 - RequestID: fvc4e4l7pru +2025-06-18T15:08:36.781Z [TRACE] user-service - Operation: inventory_updated - Processing time: 1028ms - RequestID: jha35r98x3n +2025-06-18T15:08:36.881Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1481ms - IP: 192.168.68.128 - User: user_1018 - RequestID: 6hzsn033a89 +2025-06-18T15:08:36.981Z [INFO] auth-service - Operation: payment_processed - Processing time: 450ms - RequestID: 9n8is6tp3ob +2025-06-18T15:08:37.081Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 400 - Response time: 1102ms - IP: 192.168.211.72 - User: user_1078 - RequestID: kn3ytf8ibz +2025-06-18T15:08:37.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.227.77 - RequestID: umyk6ufjdp +2025-06-18T15:08:37.281Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1727ms - IP: 192.168.196.226 - User: user_1064 - RequestID: 42hc0ix8wns +2025-06-18T15:08:37.381Z [TRACE] auth-service - Operation: order_created - Processing time: 201ms - RequestID: 361qh25u3yf +2025-06-18T15:08:37.481Z [TRACE] order-service - Auth event: login_success - User: user_1011 - IP: 192.168.194.41 - RequestID: avispu42ca +2025-06-18T15:08:37.581Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1119ms - IP: 192.168.81.206 - User: user_1073 - RequestID: v80h04xk5xn +2025-06-18T15:08:37.681Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 279ms - Rows affected: 2 - RequestID: jec3jdb864 +2025-06-18T15:08:37.781Z [DEBUG] notification-service - Database SELECT on products - Execution time: 6ms - Rows affected: 92 - RequestID: agr3w5ghaxu +2025-06-18T15:08:37.881Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 342ms - Rows affected: 89 - RequestID: s2jy5vdf6uk +2025-06-18T15:08:37.981Z [TRACE] user-service - PATCH /api/v1/users - Status: 200 - Response time: 1907ms - IP: 192.168.10.184 - User: user_1040 - RequestID: ky0t6jmcygm +2025-06-18T15:08:38.081Z [DEBUG] order-service - Database DELETE on orders - Execution time: 194ms - Rows affected: 97 - RequestID: tt0na5gp30g +2025-06-18T15:08:38.181Z [DEBUG] user-service - Auth event: password_change - User: user_1068 - IP: 192.168.196.226 - RequestID: lus440kfkv +2025-06-18T15:08:38.281Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1301ms - IP: 192.168.113.218 - User: user_1072 - RequestID: iu415wc5vai +2025-06-18T15:08:38.381Z [TRACE] user-service - GET /api/v1/orders - Status: 502 - Response time: 1922ms - IP: 192.168.79.141 - User: user_1083 - RequestID: w2xpa2ifbq +2025-06-18T15:08:38.481Z [INFO] user-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.31.117 - RequestID: suup9rgkpya +2025-06-18T15:08:38.581Z [INFO] payment-service - Auth event: login_failed - User: user_1004 - IP: 192.168.79.116 - RequestID: kzwrosrd3lr +2025-06-18T15:08:38.681Z [INFO] notification-service - Auth event: password_change - User: user_1095 - IP: 192.168.79.141 - RequestID: 5dezow54il6 +2025-06-18T15:08:38.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1069 - IP: 192.168.28.146 - RequestID: bgodg2qkxxo +2025-06-18T15:08:38.881Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 94ms - Rows affected: 14 - RequestID: 1l8rdonnvx9 +2025-06-18T15:08:38.981Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 403 - Response time: 1218ms - IP: 192.168.147.171 - User: user_1074 - RequestID: c960boixdxk +2025-06-18T15:08:39.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.36.218 - RequestID: b93xzncfb3q +2025-06-18T15:08:39.181Z [TRACE] user-service - Operation: inventory_updated - Processing time: 862ms - RequestID: 9dfirbh3tld +2025-06-18T15:08:39.281Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 157ms - Rows affected: 47 - RequestID: 8k05bmti6gq +2025-06-18T15:08:39.381Z [TRACE] order-service - GET /api/v1/inventory - Status: 403 - Response time: 190ms - IP: 192.168.144.38 - User: user_1014 - RequestID: bv0uvtp7x3b +2025-06-18T15:08:39.481Z [DEBUG] notification-service - Auth event: logout - User: user_1031 - IP: 192.168.46.63 - RequestID: ymiuepbm0ft +2025-06-18T15:08:39.581Z [TRACE] order-service - Auth event: login_success - User: user_1022 - IP: 192.168.46.63 - RequestID: k05n8lbxaa +2025-06-18T15:08:39.681Z [INFO] auth-service - Database SELECT on payments - Execution time: 375ms - Rows affected: 37 - RequestID: a5vd1zach3l +2025-06-18T15:08:39.781Z [TRACE] user-service - Database DELETE on orders - Execution time: 185ms - Rows affected: 47 - RequestID: 9mut5ycax4 +2025-06-18T15:08:39.881Z [DEBUG] user-service - Operation: notification_queued - Processing time: 262ms - RequestID: 8dizxv86999 +2025-06-18T15:08:39.981Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 472ms - Rows affected: 1 - RequestID: nb734ydlils +2025-06-18T15:08:40.081Z [TRACE] auth-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.81.206 - RequestID: nnoo7jk3vb +2025-06-18T15:08:40.181Z [TRACE] user-service - POST /api/v1/inventory - Status: 404 - Response time: 773ms - IP: 192.168.229.123 - User: user_1016 - RequestID: cgwyx2t349 +2025-06-18T15:08:40.281Z [TRACE] notification-service - Auth event: logout - User: user_1016 - IP: 192.168.144.38 - RequestID: c9g5p7muhnk +2025-06-18T15:08:40.381Z [INFO] payment-service - Operation: webhook_sent - Processing time: 409ms - RequestID: gv1pcm8un8 +2025-06-18T15:08:40.481Z [DEBUG] notification-service - GET /api/v1/users - Status: 403 - Response time: 83ms - IP: 192.168.36.218 - User: user_1096 - RequestID: bvf7kpgoifk +2025-06-18T15:08:40.581Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 118ms - RequestID: 8riiqpapnyh +2025-06-18T15:08:40.681Z [TRACE] payment-service - Operation: payment_processed - Processing time: 830ms - RequestID: b6c321on1ah +2025-06-18T15:08:40.781Z [INFO] auth-service - Operation: inventory_updated - Processing time: 963ms - RequestID: 3ao0p5kinnu +2025-06-18T15:08:40.881Z [INFO] order-service - PUT /api/v1/orders - Status: 500 - Response time: 350ms - IP: 192.168.36.218 - User: user_1002 - RequestID: xnvmxhoxkds +2025-06-18T15:08:40.981Z [INFO] payment-service - Operation: notification_queued - Processing time: 536ms - RequestID: vhdg846ovsq +2025-06-18T15:08:41.081Z [TRACE] auth-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.79.143 - RequestID: oip5y108zlf +2025-06-18T15:08:41.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1059 - IP: 192.168.227.77 - RequestID: zeyevzr86pp +2025-06-18T15:08:41.281Z [DEBUG] order-service - Auth event: logout - User: user_1016 - IP: 192.168.36.218 - RequestID: 33e87dzl2fj +2025-06-18T15:08:41.381Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 225ms - Rows affected: 79 - RequestID: 8gys3ra1c8b +2025-06-18T15:08:41.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.30.79 - RequestID: g6uelkh5wd6 +2025-06-18T15:08:41.581Z [DEBUG] payment-service - Database DELETE on products - Execution time: 482ms - Rows affected: 91 - RequestID: nhnou5f12j +2025-06-18T15:08:41.681Z [TRACE] order-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.144.38 - RequestID: zeelcn32jjc +2025-06-18T15:08:41.781Z [INFO] payment-service - POST /api/v1/inventory - Status: 401 - Response time: 1921ms - IP: 192.168.104.37 - User: user_1071 - RequestID: p50suskmzom +2025-06-18T15:08:41.881Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 71ms - Rows affected: 16 - RequestID: zmsmrkq3rz +2025-06-18T15:08:41.981Z [INFO] user-service - PUT /api/v1/orders - Status: 401 - Response time: 1417ms - IP: 192.168.1.152 - User: user_1078 - RequestID: ja3wbkf8zqq +2025-06-18T15:08:42.081Z [INFO] auth-service - Auth event: login_failed - User: user_1052 - IP: 192.168.141.100 - RequestID: 7k7ica01i2w +2025-06-18T15:08:42.181Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 31ms - Rows affected: 52 - RequestID: oftetfumwec +2025-06-18T15:08:42.281Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 404 - Response time: 1929ms - IP: 192.168.133.7 - User: user_1015 - RequestID: avj4o4bztk8 +2025-06-18T15:08:42.381Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 462ms - Rows affected: 48 - RequestID: 4ihavn73c8 +2025-06-18T15:08:42.481Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1477ms - IP: 192.168.247.134 - User: user_1031 - RequestID: qgs0aolrrc +2025-06-18T15:08:42.581Z [TRACE] user-service - Operation: cache_miss - Processing time: 946ms - RequestID: 52newuxo08h +2025-06-18T15:08:42.681Z [DEBUG] order-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.79.116 - RequestID: s5xzxtf7bb +2025-06-18T15:08:42.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 806ms - RequestID: yp41kanhedi +2025-06-18T15:08:42.881Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 28ms - Rows affected: 9 - RequestID: f1vg4ocsc2f +2025-06-18T15:08:42.981Z [INFO] payment-service - Auth event: logout - User: user_1051 - IP: 192.168.170.215 - RequestID: akxduxvoy6 +2025-06-18T15:08:43.081Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 388ms - Rows affected: 90 - RequestID: lfexfwgrxd +2025-06-18T15:08:43.181Z [DEBUG] order-service - Operation: payment_processed - Processing time: 744ms - RequestID: 4ujnyows64n +2025-06-18T15:08:43.281Z [INFO] payment-service - POST /api/v1/auth/login - Status: 200 - Response time: 551ms - IP: 192.168.174.114 - User: user_1090 - RequestID: bbo653o23nm +2025-06-18T15:08:43.381Z [DEBUG] user-service - Auth event: password_change - User: user_1056 - IP: 192.168.133.7 - RequestID: bb94jgj3ta5 +2025-06-18T15:08:43.481Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 500 - Response time: 338ms - IP: 192.168.174.114 - User: user_1079 - RequestID: sa3lerog7lq +2025-06-18T15:08:43.581Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.133.7 - RequestID: wxs9ff0quih +2025-06-18T15:08:43.681Z [TRACE] auth-service - Auth event: login_success - User: user_1000 - IP: 192.168.174.114 - RequestID: 2rh0i4rcrdw +2025-06-18T15:08:43.781Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 498ms - RequestID: 3itnsw9mab2 +2025-06-18T15:08:43.881Z [DEBUG] user-service - POST /api/v1/users - Status: 503 - Response time: 1899ms - IP: 192.168.10.184 - User: user_1052 - RequestID: pckelupqmrc +2025-06-18T15:08:43.981Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 747ms - RequestID: hfq6fdhodd8 +2025-06-18T15:08:44.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.227.233 - RequestID: p0d5v3i4lh +2025-06-18T15:08:44.181Z [INFO] auth-service - Auth event: login_failed - User: user_1043 - IP: 192.168.46.63 - RequestID: jmbck1fz7u +2025-06-18T15:08:44.281Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 400 - Response time: 1213ms - IP: 192.168.1.152 - User: user_1008 - RequestID: vnupp1608ab +2025-06-18T15:08:44.381Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 400 - Response time: 1638ms - IP: 192.168.104.37 - User: user_1015 - RequestID: 7g97t3lulm7 +2025-06-18T15:08:44.481Z [INFO] notification-service - PUT /api/v1/users - Status: 201 - Response time: 1450ms - IP: 192.168.211.72 - User: user_1025 - RequestID: jcp09hw9uzg +2025-06-18T15:08:44.581Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 88ms - Rows affected: 76 - RequestID: 3atu7aeof85 +2025-06-18T15:08:44.681Z [DEBUG] user-service - Database SELECT on payments - Execution time: 160ms - Rows affected: 89 - RequestID: vdwlpfh8srs +2025-06-18T15:08:44.781Z [DEBUG] order-service - Operation: cache_miss - Processing time: 833ms - RequestID: bxy8zlepstd +2025-06-18T15:08:44.881Z [INFO] inventory-service - Auth event: logout - User: user_1028 - IP: 192.168.133.7 - RequestID: 291dkxw6b82 +2025-06-18T15:08:44.981Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 147ms - Rows affected: 99 - RequestID: nelxwjf1k5 +2025-06-18T15:08:45.081Z [INFO] user-service - Auth event: logout - User: user_1052 - IP: 192.168.79.141 - RequestID: gf3a7t2bhsj +2025-06-18T15:08:45.181Z [INFO] notification-service - Database INSERT on users - Execution time: 10ms - Rows affected: 57 - RequestID: q8ghu535gfh +2025-06-18T15:08:45.281Z [DEBUG] payment-service - Operation: email_sent - Processing time: 672ms - RequestID: 0k9h8iwxcbl +2025-06-18T15:08:45.381Z [DEBUG] order-service - Operation: cache_hit - Processing time: 287ms - RequestID: 2g6lap98zkc +2025-06-18T15:08:45.481Z [INFO] order-service - Operation: notification_queued - Processing time: 447ms - RequestID: 75ky0u3q4oe +2025-06-18T15:08:45.581Z [DEBUG] auth-service - POST /api/v1/users - Status: 403 - Response time: 1799ms - IP: 192.168.196.226 - User: user_1059 - RequestID: 4yn894cxqm +2025-06-18T15:08:45.681Z [INFO] auth-service - Database UPDATE on users - Execution time: 300ms - Rows affected: 41 - RequestID: ivykum6vwm +2025-06-18T15:08:45.781Z [TRACE] auth-service - Auth event: login_success - User: user_1034 - IP: 192.168.32.38 - RequestID: 0ebji89wsu2 +2025-06-18T15:08:45.881Z [INFO] payment-service - Database UPDATE on orders - Execution time: 287ms - Rows affected: 70 - RequestID: dlmnwpvc0ki +2025-06-18T15:08:45.981Z [INFO] notification-service - DELETE /api/v1/payments - Status: 403 - Response time: 1064ms - IP: 192.168.189.103 - User: user_1029 - RequestID: fkzlc83f2oe +2025-06-18T15:08:46.081Z [INFO] user-service - Database SELECT on products - Execution time: 305ms - Rows affected: 8 - RequestID: sgae5uv48cm +2025-06-18T15:08:46.181Z [DEBUG] user-service - Auth event: logout - User: user_1022 - IP: 192.168.85.229 - RequestID: reib04avve +2025-06-18T15:08:46.281Z [INFO] payment-service - Database SELECT on payments - Execution time: 191ms - Rows affected: 41 - RequestID: uwyldc8o2di +2025-06-18T15:08:46.381Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 403 - Response time: 1075ms - IP: 192.168.31.117 - User: user_1073 - RequestID: ww2p1zbif1 +2025-06-18T15:08:46.481Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 503 - Response time: 763ms - IP: 192.168.227.77 - User: user_1048 - RequestID: ptoit5dimc +2025-06-18T15:08:46.581Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1749ms - IP: 192.168.194.41 - User: user_1063 - RequestID: elgdredzl5s +2025-06-18T15:08:46.681Z [TRACE] notification-service - Database DELETE on users - Execution time: 6ms - Rows affected: 86 - RequestID: eke075ujaqe +2025-06-18T15:08:46.781Z [INFO] notification-service - Auth event: logout - User: user_1097 - IP: 192.168.159.94 - RequestID: zy1hyf8jw2e +2025-06-18T15:08:46.881Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 201ms - IP: 192.168.174.114 - User: user_1051 - RequestID: 4fg1c0yg6kr +2025-06-18T15:08:46.981Z [TRACE] order-service - Operation: cache_miss - Processing time: 671ms - RequestID: wqaeo046j8 +2025-06-18T15:08:47.081Z [DEBUG] order-service - Database UPDATE on users - Execution time: 162ms - Rows affected: 18 - RequestID: 45llaowlg18 +2025-06-18T15:08:47.181Z [TRACE] order-service - Database UPDATE on products - Execution time: 354ms - Rows affected: 5 - RequestID: qi9917bb0yd +2025-06-18T15:08:47.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 889ms - RequestID: s9fepetxg1o +2025-06-18T15:08:47.381Z [TRACE] user-service - Database INSERT on sessions - Execution time: 11ms - Rows affected: 11 - RequestID: rhad2sv71n +2025-06-18T15:08:47.481Z [INFO] user-service - Database INSERT on sessions - Execution time: 107ms - Rows affected: 74 - RequestID: eu3a2ul13qt +2025-06-18T15:08:47.581Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 19ms - Rows affected: 71 - RequestID: 644sm6h4vtv +2025-06-18T15:08:47.681Z [INFO] auth-service - PATCH /api/v1/orders - Status: 400 - Response time: 1354ms - IP: 192.168.33.76 - User: user_1092 - RequestID: n9o4g128px9 +2025-06-18T15:08:47.781Z [INFO] auth-service - Database INSERT on products - Execution time: 136ms - Rows affected: 42 - RequestID: ihh1wbx138m +2025-06-18T15:08:47.881Z [TRACE] payment-service - Database SELECT on users - Execution time: 481ms - Rows affected: 47 - RequestID: hy4dsy06855 +2025-06-18T15:08:47.981Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 873ms - RequestID: qma41izgow +2025-06-18T15:08:48.081Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 500 - Response time: 966ms - IP: 192.168.232.72 - User: user_1099 - RequestID: 8460vslgq1h +2025-06-18T15:08:48.181Z [INFO] notification-service - Database DELETE on orders - Execution time: 239ms - Rows affected: 45 - RequestID: fdqdqlor0et +2025-06-18T15:08:48.281Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 139ms - RequestID: xd6gzgu9cym +2025-06-18T15:08:48.381Z [DEBUG] auth-service - POST /api/v1/payments - Status: 400 - Response time: 314ms - IP: 192.168.68.128 - User: user_1017 - RequestID: qfjwv8182l +2025-06-18T15:08:48.481Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 265ms - Rows affected: 62 - RequestID: n3kxa96oie +2025-06-18T15:08:48.581Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 9ms - Rows affected: 60 - RequestID: yrt6l5cxk5l +2025-06-18T15:08:48.681Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 301ms - Rows affected: 24 - RequestID: qe4n9xh7a1 +2025-06-18T15:08:48.781Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 503 - Response time: 544ms - IP: 192.168.187.199 - User: user_1092 - RequestID: 5va71rbuctm +2025-06-18T15:08:48.881Z [DEBUG] notification-service - Database INSERT on users - Execution time: 181ms - Rows affected: 35 - RequestID: fa3vbbizslh +2025-06-18T15:08:48.981Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 500 - Response time: 1336ms - IP: 192.168.79.143 - User: user_1045 - RequestID: 6tgk11as4je +2025-06-18T15:08:49.081Z [INFO] inventory-service - Database SELECT on payments - Execution time: 256ms - Rows affected: 46 - RequestID: 11mbao7ejlg +2025-06-18T15:08:49.181Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 400 - Response time: 798ms - IP: 192.168.138.123 - User: user_1028 - RequestID: fl4qtabhggp +2025-06-18T15:08:49.281Z [DEBUG] auth-service - POST /api/v1/orders - Status: 500 - Response time: 875ms - IP: 192.168.196.226 - User: user_1026 - RequestID: r133ogjil7q +2025-06-18T15:08:49.381Z [INFO] order-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.68.158 - RequestID: mhfemk95c8 +2025-06-18T15:08:49.481Z [INFO] payment-service - Operation: payment_processed - Processing time: 815ms - RequestID: os75i9e1cg +2025-06-18T15:08:49.581Z [TRACE] user-service - Operation: payment_processed - Processing time: 546ms - RequestID: sx1cjhwhmng +2025-06-18T15:08:49.681Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 201 - Response time: 855ms - IP: 192.168.32.38 - User: user_1063 - RequestID: 9peo8qyiruk +2025-06-18T15:08:49.781Z [INFO] notification-service - GET /api/v1/users - Status: 502 - Response time: 282ms - IP: 192.168.187.199 - User: user_1079 - RequestID: zp5i58ywsbc +2025-06-18T15:08:49.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.144.38 - RequestID: 9cpcoz027o5 +2025-06-18T15:08:49.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.113.218 - RequestID: br6ael2tfpb +2025-06-18T15:08:50.081Z [DEBUG] user-service - GET /api/v1/users - Status: 201 - Response time: 1713ms - IP: 192.168.211.72 - User: user_1060 - RequestID: 82wa1o6no2t +2025-06-18T15:08:50.181Z [TRACE] inventory-service - Database INSERT on users - Execution time: 82ms - Rows affected: 33 - RequestID: hqmx6tsqsff +2025-06-18T15:08:50.281Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 866ms - RequestID: 7dsdhrxlltm +2025-06-18T15:08:50.381Z [INFO] auth-service - Operation: cache_miss - Processing time: 514ms - RequestID: 8f1z876zcx3 +2025-06-18T15:08:50.481Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 921ms - RequestID: nhe1eml8tcs +2025-06-18T15:08:50.581Z [TRACE] inventory-service - PUT /api/v1/users - Status: 502 - Response time: 1078ms - IP: 192.168.104.37 - User: user_1009 - RequestID: 3u73f5apw36 +2025-06-18T15:08:50.681Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 86ms - Rows affected: 27 - RequestID: uzhvfpdt92k +2025-06-18T15:08:50.781Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 272ms - Rows affected: 45 - RequestID: 3sewcxt2iua +2025-06-18T15:08:50.881Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1091ms - IP: 192.168.13.72 - User: user_1033 - RequestID: hopdunhkz58 +2025-06-18T15:08:50.981Z [INFO] order-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.242.165 - RequestID: nwbhknwkh3e +2025-06-18T15:08:51.081Z [INFO] order-service - Auth event: password_change - User: user_1064 - IP: 192.168.227.77 - RequestID: cv5uly23ah +2025-06-18T15:08:51.181Z [DEBUG] auth-service - Auth event: password_change - User: user_1032 - IP: 192.168.97.87 - RequestID: ok38ndubnh +2025-06-18T15:08:51.281Z [INFO] order-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.187.199 - RequestID: q7836p4hw88 +2025-06-18T15:08:51.381Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 400 - Response time: 536ms - IP: 192.168.79.141 - User: user_1019 - RequestID: 9q924u5p2m +2025-06-18T15:08:51.481Z [INFO] auth-service - Database SELECT on sessions - Execution time: 494ms - Rows affected: 85 - RequestID: jrc6b5v2iv +2025-06-18T15:08:51.581Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.196.226 - RequestID: mcgw3726hzb +2025-06-18T15:08:51.681Z [INFO] inventory-service - Operation: email_sent - Processing time: 283ms - RequestID: 7kpd4zbjwfr +2025-06-18T15:08:51.781Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 51ms - Rows affected: 10 - RequestID: 51begltnfuv +2025-06-18T15:08:51.881Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 672ms - RequestID: c6sb95ygbzv +2025-06-18T15:08:51.981Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 488ms - Rows affected: 2 - RequestID: 3eyqslv1p7 +2025-06-18T15:08:52.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.232.72 - RequestID: w8zutkxbts +2025-06-18T15:08:52.181Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 431ms - RequestID: xtonb1ymepa +2025-06-18T15:08:52.281Z [INFO] auth-service - Database SELECT on users - Execution time: 262ms - Rows affected: 96 - RequestID: iqbbfhjzmod +2025-06-18T15:08:52.381Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 303ms - Rows affected: 4 - RequestID: 108200d2jxk +2025-06-18T15:08:52.481Z [TRACE] auth-service - Operation: cache_miss - Processing time: 733ms - RequestID: kxyn5o90lzb +2025-06-18T15:08:52.581Z [DEBUG] auth-service - Auth event: login_success - User: user_1096 - IP: 192.168.229.123 - RequestID: z4lef2nnbd9 +2025-06-18T15:08:52.681Z [INFO] auth-service - Auth event: password_change - User: user_1060 - IP: 192.168.235.117 - RequestID: eh3izbd6bz +2025-06-18T15:08:52.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1030 - IP: 192.168.229.123 - RequestID: ugz28lfp5e +2025-06-18T15:08:52.881Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 291ms - Rows affected: 86 - RequestID: zcwfnjbn2qk +2025-06-18T15:08:52.981Z [TRACE] order-service - Database SELECT on users - Execution time: 4ms - Rows affected: 84 - RequestID: t0d22y1x4xb +2025-06-18T15:08:53.081Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 946ms - IP: 192.168.138.123 - User: user_1094 - RequestID: 40ox2s4895v +2025-06-18T15:08:53.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.79.143 - RequestID: layqw5fol4 +2025-06-18T15:08:53.281Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 471ms - Rows affected: 41 - RequestID: gayoti5ihhs +2025-06-18T15:08:53.381Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 143ms - Rows affected: 25 - RequestID: ki9o1ancgw +2025-06-18T15:08:53.481Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 424ms - RequestID: d3pt6ag5kb4 +2025-06-18T15:08:53.581Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 329ms - Rows affected: 16 - RequestID: 334zkwsw8if +2025-06-18T15:08:53.681Z [INFO] auth-service - Operation: inventory_updated - Processing time: 233ms - RequestID: g5q7d9tbk1 +2025-06-18T15:08:53.781Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 502 - Response time: 567ms - IP: 192.168.181.225 - User: user_1044 - RequestID: a80n1ss3ype +2025-06-18T15:08:53.881Z [TRACE] payment-service - GET /api/v1/users - Status: 503 - Response time: 1147ms - IP: 192.168.159.94 - User: user_1073 - RequestID: cyv6xvm92i9 +2025-06-18T15:08:53.981Z [TRACE] user-service - Database INSERT on payments - Execution time: 491ms - Rows affected: 90 - RequestID: nn77es8ra59 +2025-06-18T15:08:54.081Z [TRACE] auth-service - Auth event: login_success - User: user_1000 - IP: 192.168.68.158 - RequestID: h41ge9r4acl +2025-06-18T15:08:54.181Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1980ms - IP: 192.168.33.76 - User: user_1067 - RequestID: s812h60jz8a +2025-06-18T15:08:54.281Z [TRACE] user-service - Auth event: login_failed - User: user_1040 - IP: 192.168.181.225 - RequestID: f2zyam658q +2025-06-18T15:08:54.381Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 176ms - RequestID: 0vzhx561y3q +2025-06-18T15:08:54.481Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 331ms - Rows affected: 96 - RequestID: 1sffo28db3f +2025-06-18T15:08:54.581Z [DEBUG] order-service - PATCH /api/v1/users - Status: 200 - Response time: 1263ms - IP: 192.168.181.225 - User: user_1014 - RequestID: 8upwxatzbl8 +2025-06-18T15:08:54.681Z [DEBUG] user-service - Database DELETE on users - Execution time: 324ms - Rows affected: 55 - RequestID: 9lrkxznstlf +2025-06-18T15:08:54.781Z [INFO] payment-service - PATCH /api/v1/users - Status: 502 - Response time: 1115ms - IP: 192.168.104.37 - User: user_1051 - RequestID: u4ozgfsx04 +2025-06-18T15:08:54.881Z [INFO] auth-service - Database SELECT on products - Execution time: 365ms - Rows affected: 56 - RequestID: 8ooeote4jso +2025-06-18T15:08:54.981Z [INFO] user-service - Database DELETE on orders - Execution time: 45ms - Rows affected: 15 - RequestID: ffuqr2wtzmt +2025-06-18T15:08:55.081Z [INFO] auth-service - Operation: order_created - Processing time: 310ms - RequestID: ovyrsqe9lxo +2025-06-18T15:08:55.181Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 584ms - RequestID: pqnoa7x3itr +2025-06-18T15:08:55.281Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1431ms - IP: 192.168.1.152 - User: user_1012 - RequestID: lckrpxuqzw +2025-06-18T15:08:55.381Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 503 - Response time: 774ms - IP: 192.168.187.199 - User: user_1011 - RequestID: r45gqbdbgtp +2025-06-18T15:08:55.481Z [TRACE] order-service - Operation: cache_miss - Processing time: 905ms - RequestID: 83ime7xeupj +2025-06-18T15:08:55.581Z [INFO] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 977ms - IP: 192.168.194.41 - User: user_1028 - RequestID: 2bmjeol7wt5 +2025-06-18T15:08:55.681Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 316ms - Rows affected: 9 - RequestID: 3xs1q4ck2yy +2025-06-18T15:08:55.781Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 276ms - Rows affected: 79 - RequestID: rtc4z1h2uyb +2025-06-18T15:08:55.881Z [INFO] user-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.247.134 - RequestID: eyatacyqmin +2025-06-18T15:08:55.981Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1619ms - IP: 192.168.170.215 - User: user_1050 - RequestID: op4uy8gs5b +2025-06-18T15:08:56.081Z [INFO] inventory-service - Auth event: login_success - User: user_1014 - IP: 192.168.181.225 - RequestID: kiij04jqjf +2025-06-18T15:08:56.181Z [DEBUG] user-service - Operation: order_created - Processing time: 171ms - RequestID: r9ek7rbf4tq +2025-06-18T15:08:56.281Z [TRACE] user-service - Operation: email_sent - Processing time: 328ms - RequestID: 8n5exrvkxoj +2025-06-18T15:08:56.381Z [DEBUG] order-service - Auth event: login_failed - User: user_1028 - IP: 192.168.167.32 - RequestID: 3086yg4z3sv +2025-06-18T15:08:56.481Z [DEBUG] inventory-service - Auth event: login_success - User: user_1038 - IP: 192.168.46.63 - RequestID: 066r05rcbre9 +2025-06-18T15:08:56.581Z [INFO] auth-service - Database DELETE on products - Execution time: 188ms - Rows affected: 12 - RequestID: lhhs6qo6h3 +2025-06-18T15:08:56.681Z [TRACE] auth-service - DELETE /api/v1/users - Status: 400 - Response time: 1410ms - IP: 192.168.232.72 - User: user_1015 - RequestID: he5wmu2b7og +2025-06-18T15:08:56.781Z [INFO] user-service - Operation: webhook_sent - Processing time: 730ms - RequestID: fs604oexkom +2025-06-18T15:08:56.881Z [INFO] payment-service - POST /api/v1/orders - Status: 502 - Response time: 271ms - IP: 192.168.46.63 - User: user_1071 - RequestID: 7x06vbdf7fx +2025-06-18T15:08:56.981Z [INFO] payment-service - Auth event: logout - User: user_1039 - IP: 192.168.187.199 - RequestID: hbxju0c3to +2025-06-18T15:08:57.081Z [TRACE] notification-service - Database SELECT on products - Execution time: 332ms - Rows affected: 54 - RequestID: puzm5ubbugm +2025-06-18T15:08:57.181Z [INFO] order-service - Operation: cache_hit - Processing time: 248ms - RequestID: povwyr1iy48 +2025-06-18T15:08:57.281Z [INFO] order-service - Auth event: password_change - User: user_1036 - IP: 192.168.196.226 - RequestID: 5ap79xbydqr +2025-06-18T15:08:57.381Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 201 - Response time: 1767ms - IP: 192.168.141.100 - User: user_1050 - RequestID: v3ifep6bxs +2025-06-18T15:08:57.481Z [TRACE] order-service - Operation: email_sent - Processing time: 702ms - RequestID: yqctevkwips +2025-06-18T15:08:57.581Z [TRACE] order-service - Database INSERT on orders - Execution time: 348ms - Rows affected: 87 - RequestID: un077gz0kz +2025-06-18T15:08:57.681Z [DEBUG] order-service - Operation: cache_hit - Processing time: 910ms - RequestID: qthk5yb6kkh +2025-06-18T15:08:57.781Z [INFO] notification-service - Operation: cache_hit - Processing time: 398ms - RequestID: n8lyyqw5l0s +2025-06-18T15:08:57.881Z [TRACE] user-service - Operation: order_created - Processing time: 156ms - RequestID: u84afjo1ejm +2025-06-18T15:08:57.981Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 70ms - Rows affected: 80 - RequestID: 53c8oyzwp8r +2025-06-18T15:08:58.081Z [INFO] notification-service - Database DELETE on payments - Execution time: 452ms - Rows affected: 7 - RequestID: sxg7cr9m54 +2025-06-18T15:08:58.181Z [INFO] auth-service - Operation: email_sent - Processing time: 125ms - RequestID: 0pwjj3ompwo +2025-06-18T15:08:58.281Z [INFO] user-service - PATCH /api/v1/users - Status: 404 - Response time: 803ms - IP: 192.168.147.171 - User: user_1073 - RequestID: 1rf4piicafm +2025-06-18T15:08:58.381Z [INFO] user-service - Operation: inventory_updated - Processing time: 906ms - RequestID: y7fhqryt7j +2025-06-18T15:08:58.481Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 35ms - Rows affected: 91 - RequestID: rkfbczyj3i9 +2025-06-18T15:08:58.581Z [INFO] notification-service - GET /api/v1/inventory - Status: 403 - Response time: 807ms - IP: 192.168.32.38 - User: user_1058 - RequestID: 5wfzoup8kwl +2025-06-18T15:08:58.681Z [INFO] order-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.79.143 - RequestID: ckklxlvigmt +2025-06-18T15:08:58.781Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 500 - Response time: 709ms - IP: 192.168.141.100 - User: user_1093 - RequestID: ehvkg4t0vp9 +2025-06-18T15:08:58.881Z [DEBUG] order-service - DELETE /api/v1/users - Status: 403 - Response time: 1585ms - IP: 192.168.36.218 - User: user_1041 - RequestID: atevvnv098n +2025-06-18T15:08:58.981Z [INFO] auth-service - Database DELETE on orders - Execution time: 460ms - Rows affected: 17 - RequestID: crza8ouebh +2025-06-18T15:08:59.081Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 500 - Response time: 1598ms - IP: 192.168.196.226 - User: user_1033 - RequestID: vnj1hdma3ml +2025-06-18T15:08:59.181Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 500 - Response time: 804ms - IP: 192.168.10.184 - User: user_1087 - RequestID: v3dseuv8ryp +2025-06-18T15:08:59.281Z [INFO] notification-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.79.143 - RequestID: tp4fzoy5kw +2025-06-18T15:08:59.381Z [TRACE] auth-service - POST /api/v1/users - Status: 500 - Response time: 1104ms - IP: 192.168.187.199 - User: user_1056 - RequestID: gprsr2ed85d +2025-06-18T15:08:59.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.1.152 - RequestID: 3v7jnyu4jj +2025-06-18T15:08:59.581Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 503 - Response time: 1509ms - IP: 192.168.30.79 - User: user_1097 - RequestID: l8n0ry438gl +2025-06-18T15:08:59.681Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 74ms - Rows affected: 60 - RequestID: npd35tusna7 +2025-06-18T15:08:59.781Z [INFO] notification-service - Database DELETE on products - Execution time: 326ms - Rows affected: 29 - RequestID: sobi0g0c5t8 +2025-06-18T15:08:59.881Z [TRACE] order-service - Auth event: login_failed - User: user_1073 - IP: 192.168.14.77 - RequestID: zpg4awb2lta +2025-06-18T15:08:59.981Z [DEBUG] notification-service - Auth event: logout - User: user_1092 - IP: 192.168.79.116 - RequestID: vvzgpbyi0ig +2025-06-18T15:09:00.081Z [INFO] payment-service - Database SELECT on orders - Execution time: 48ms - Rows affected: 53 - RequestID: fzkhj901615 +2025-06-18T15:09:00.181Z [INFO] inventory-service - Database DELETE on payments - Execution time: 399ms - Rows affected: 98 - RequestID: 4dubbbp85xs +2025-06-18T15:09:00.281Z [INFO] payment-service - Auth event: login_failed - User: user_1008 - IP: 192.168.10.184 - RequestID: tyr06qcsunp +2025-06-18T15:09:00.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1041 - IP: 192.168.181.225 - RequestID: 5sjsj8lverb +2025-06-18T15:09:00.481Z [TRACE] user-service - Database INSERT on orders - Execution time: 405ms - Rows affected: 11 - RequestID: u3whe7sfj1n +2025-06-18T15:09:00.581Z [DEBUG] order-service - PUT /api/v1/users - Status: 404 - Response time: 310ms - IP: 192.168.79.116 - User: user_1066 - RequestID: ygflcdiwwzg +2025-06-18T15:09:00.681Z [DEBUG] notification-service - Auth event: login_success - User: user_1029 - IP: 192.168.181.225 - RequestID: pk0unhcpxud +2025-06-18T15:09:00.781Z [TRACE] payment-service - Auth event: logout - User: user_1074 - IP: 192.168.211.72 - RequestID: ik8r0skhvw +2025-06-18T15:09:00.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.79.141 - RequestID: n61onooa6pj +2025-06-18T15:09:00.981Z [DEBUG] user-service - Database DELETE on orders - Execution time: 238ms - Rows affected: 17 - RequestID: lhn80jvs8yh +2025-06-18T15:09:01.081Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.227.77 - RequestID: ga4y90624u +2025-06-18T15:09:01.181Z [DEBUG] order-service - GET /api/v1/inventory - Status: 503 - Response time: 924ms - IP: 192.168.13.72 - User: user_1084 - RequestID: edovloqrkvl +2025-06-18T15:09:01.281Z [TRACE] notification-service - Database INSERT on products - Execution time: 386ms - Rows affected: 64 - RequestID: i9buk28d39s +2025-06-18T15:09:01.381Z [DEBUG] user-service - Database INSERT on payments - Execution time: 330ms - Rows affected: 89 - RequestID: jsyji4ftedk +2025-06-18T15:09:01.481Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 928ms - RequestID: 29swylc4vl2 +2025-06-18T15:09:01.581Z [INFO] order-service - Database SELECT on orders - Execution time: 184ms - Rows affected: 3 - RequestID: by3f28r4po9 +2025-06-18T15:09:01.681Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 421ms - Rows affected: 10 - RequestID: mxl2ofzrgt +2025-06-18T15:09:01.781Z [DEBUG] user-service - Auth event: password_change - User: user_1014 - IP: 192.168.10.184 - RequestID: 6518adtgcqw +2025-06-18T15:09:01.881Z [INFO] payment-service - Operation: cache_hit - Processing time: 239ms - RequestID: lwkx92ughm +2025-06-18T15:09:01.981Z [INFO] auth-service - Operation: notification_queued - Processing time: 480ms - RequestID: dbiwsqupxxc +2025-06-18T15:09:02.081Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1919ms - IP: 192.168.11.60 - User: user_1095 - RequestID: 8sdomi1gxam +2025-06-18T15:09:02.181Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 403 - Response time: 1318ms - IP: 192.168.194.41 - User: user_1007 - RequestID: 5ng7thq2p8r +2025-06-18T15:09:02.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 1028ms - RequestID: o8gldg1dgz +2025-06-18T15:09:02.381Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 33ms - Rows affected: 40 - RequestID: kbasusowid +2025-06-18T15:09:02.481Z [INFO] user-service - Operation: email_sent - Processing time: 512ms - RequestID: 8taoi1vfe9m +2025-06-18T15:09:02.581Z [INFO] notification-service - Auth event: login_failed - User: user_1091 - IP: 192.168.159.94 - RequestID: 71e7dlhjs8d +2025-06-18T15:09:02.681Z [DEBUG] notification-service - Operation: email_sent - Processing time: 737ms - RequestID: gj0x6r04agv +2025-06-18T15:09:02.781Z [INFO] order-service - Database UPDATE on orders - Execution time: 262ms - Rows affected: 56 - RequestID: n5xqfq2b3c9 +2025-06-18T15:09:02.881Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 246ms - RequestID: p4yiuggi1yq +2025-06-18T15:09:02.981Z [TRACE] order-service - Database SELECT on payments - Execution time: 294ms - Rows affected: 78 - RequestID: ljs9rok05z8 +2025-06-18T15:09:03.081Z [INFO] auth-service - Database DELETE on users - Execution time: 175ms - Rows affected: 62 - RequestID: 7iy7awu0tl +2025-06-18T15:09:03.181Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 88ms - Rows affected: 24 - RequestID: xeg4m9x96w +2025-06-18T15:09:03.281Z [INFO] notification-service - Database INSERT on payments - Execution time: 201ms - Rows affected: 79 - RequestID: 6sjlrau9w6 +2025-06-18T15:09:03.381Z [INFO] inventory-service - DELETE /api/v1/users - Status: 503 - Response time: 212ms - IP: 192.168.28.146 - User: user_1015 - RequestID: qjoudxh1r9m +2025-06-18T15:09:03.481Z [INFO] user-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.36.218 - RequestID: w4bvffizaaf +2025-06-18T15:09:03.581Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 415ms - Rows affected: 73 - RequestID: 0hye9ignby9o +2025-06-18T15:09:03.681Z [TRACE] user-service - POST /api/v1/inventory - Status: 200 - Response time: 936ms - IP: 192.168.147.171 - User: user_1061 - RequestID: fqlw0b6f0u8 +2025-06-18T15:09:03.781Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 503 - Response time: 281ms - IP: 192.168.46.63 - User: user_1070 - RequestID: i3oo428bnv +2025-06-18T15:09:03.881Z [INFO] auth-service - Operation: cache_hit - Processing time: 317ms - RequestID: qvah8ksmin +2025-06-18T15:09:03.981Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 171ms - Rows affected: 10 - RequestID: 9cy5459y886 +2025-06-18T15:09:04.081Z [INFO] user-service - GET /api/v1/payments - Status: 201 - Response time: 1304ms - IP: 192.168.133.7 - User: user_1099 - RequestID: ie4z1885m4 +2025-06-18T15:09:04.181Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 201 - Response time: 1283ms - IP: 192.168.81.206 - User: user_1068 - RequestID: zjrmg6c1i0d +2025-06-18T15:09:04.281Z [INFO] user-service - Operation: notification_queued - Processing time: 1033ms - RequestID: 5h2ip2gqoj3 +2025-06-18T15:09:04.381Z [TRACE] payment-service - Operation: payment_processed - Processing time: 111ms - RequestID: 4w08fp04d9u +2025-06-18T15:09:04.481Z [INFO] user-service - Database DELETE on payments - Execution time: 58ms - Rows affected: 18 - RequestID: 77r84wgr5v +2025-06-18T15:09:04.581Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 873ms - IP: 192.168.64.33 - User: user_1043 - RequestID: 5poa1eb7rm2 +2025-06-18T15:09:04.681Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 10ms - IP: 192.168.240.169 - User: user_1084 - RequestID: f2dow3txe9f +2025-06-18T15:09:04.781Z [DEBUG] auth-service - PUT /api/v1/users - Status: 503 - Response time: 1220ms - IP: 192.168.133.7 - User: user_1037 - RequestID: cf4y74jgrzu +2025-06-18T15:09:04.881Z [INFO] auth-service - PUT /api/v1/users - Status: 401 - Response time: 99ms - IP: 192.168.240.169 - User: user_1016 - RequestID: 4w7870ioq59 +2025-06-18T15:09:04.981Z [INFO] notification-service - Auth event: password_change - User: user_1075 - IP: 192.168.13.72 - RequestID: j0as39mu6um +2025-06-18T15:09:05.081Z [INFO] notification-service - DELETE /api/v1/orders - Status: 502 - Response time: 745ms - IP: 192.168.31.117 - User: user_1094 - RequestID: u7lrsof5sg +2025-06-18T15:09:05.181Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 498ms - RequestID: cx11o48sil +2025-06-18T15:09:05.281Z [INFO] order-service - PUT /api/v1/payments - Status: 404 - Response time: 22ms - IP: 192.168.113.218 - User: user_1010 - RequestID: ufubqc2476 +2025-06-18T15:09:05.381Z [DEBUG] notification-service - Database DELETE on products - Execution time: 55ms - Rows affected: 24 - RequestID: degyoexkenh +2025-06-18T15:09:05.481Z [TRACE] payment-service - Auth event: login_success - User: user_1065 - IP: 192.168.242.165 - RequestID: tmbnwzvl9eq +2025-06-18T15:09:05.581Z [INFO] order-service - Auth event: logout - User: user_1041 - IP: 192.168.1.152 - RequestID: lsvpc9v7d9 +2025-06-18T15:09:05.681Z [DEBUG] auth-service - Auth event: login_failed - User: user_1048 - IP: 192.168.158.144 - RequestID: 3hg0ns0ix9u +2025-06-18T15:09:05.781Z [DEBUG] auth-service - Operation: order_created - Processing time: 82ms - RequestID: 8jr6491eq0b +2025-06-18T15:09:05.881Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 400 - Response time: 314ms - IP: 192.168.46.63 - User: user_1082 - RequestID: 0ivra9m4aats +2025-06-18T15:09:05.981Z [INFO] user-service - DELETE /api/v1/inventory - Status: 403 - Response time: 88ms - IP: 192.168.36.218 - User: user_1021 - RequestID: kth6oxlvm3 +2025-06-18T15:09:06.081Z [TRACE] order-service - Auth event: login_failed - User: user_1074 - IP: 192.168.36.218 - RequestID: kv07ucrwyj +2025-06-18T15:09:06.181Z [INFO] user-service - Auth event: logout - User: user_1016 - IP: 192.168.187.199 - RequestID: 5bc4x8zmj9e +2025-06-18T15:09:06.281Z [INFO] notification-service - PUT /api/v1/orders - Status: 400 - Response time: 638ms - IP: 192.168.30.79 - User: user_1044 - RequestID: u338ex5be4 +2025-06-18T15:09:06.381Z [DEBUG] order-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.187.199 - RequestID: bxkd0gjsaw +2025-06-18T15:09:06.481Z [TRACE] notification-service - Auth event: logout - User: user_1061 - IP: 192.168.13.72 - RequestID: xue2q7yonm8 +2025-06-18T15:09:06.581Z [INFO] auth-service - GET /api/v1/users - Status: 500 - Response time: 1402ms - IP: 192.168.68.128 - User: user_1073 - RequestID: 3i1no55yb78 +2025-06-18T15:09:06.681Z [TRACE] auth-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.68.158 - RequestID: t5oez5m72zl +2025-06-18T15:09:06.781Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 630ms - RequestID: mpkito3y7hd +2025-06-18T15:09:06.881Z [INFO] auth-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.28.146 - RequestID: szpsjit1sgl +2025-06-18T15:09:06.981Z [DEBUG] payment-service - Operation: order_created - Processing time: 550ms - RequestID: zxgqpigwv1q +2025-06-18T15:09:07.081Z [INFO] payment-service - Operation: cache_hit - Processing time: 317ms - RequestID: t12zrcfjcdj +2025-06-18T15:09:07.181Z [DEBUG] notification-service - Operation: email_sent - Processing time: 290ms - RequestID: 8itf5gmtkx +2025-06-18T15:09:07.281Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 433ms - Rows affected: 39 - RequestID: ayds3mctee8 +2025-06-18T15:09:07.381Z [INFO] user-service - PUT /api/v1/payments - Status: 200 - Response time: 829ms - IP: 192.168.158.144 - User: user_1066 - RequestID: dvad2byauwe +2025-06-18T15:09:07.481Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 199ms - Rows affected: 93 - RequestID: atsy8b8vnbo +2025-06-18T15:09:07.581Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 359ms - Rows affected: 88 - RequestID: 75664cdek5y +2025-06-18T15:09:07.681Z [INFO] auth-service - Database DELETE on products - Execution time: 173ms - Rows affected: 23 - RequestID: 28xcqb2tl9x +2025-06-18T15:09:07.781Z [INFO] order-service - Operation: webhook_sent - Processing time: 1039ms - RequestID: opvauj9qdj +2025-06-18T15:09:07.881Z [TRACE] payment-service - Auth event: password_change - User: user_1084 - IP: 192.168.159.94 - RequestID: fam50fjj8oc +2025-06-18T15:09:07.981Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 376ms - IP: 192.168.189.103 - User: user_1056 - RequestID: 467vqkxf7be +2025-06-18T15:09:08.081Z [INFO] payment-service - Auth event: login_failed - User: user_1022 - IP: 192.168.194.41 - RequestID: fg5k61rj344 +2025-06-18T15:09:08.181Z [TRACE] notification-service - Database SELECT on users - Execution time: 371ms - Rows affected: 98 - RequestID: 4lvlankm2bj +2025-06-18T15:09:08.281Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 560ms - IP: 192.168.242.165 - User: user_1005 - RequestID: i5g4a4drl6e +2025-06-18T15:09:08.381Z [TRACE] inventory-service - Database INSERT on users - Execution time: 473ms - Rows affected: 30 - RequestID: ibxx7xxxlg +2025-06-18T15:09:08.481Z [INFO] payment-service - Database DELETE on products - Execution time: 13ms - Rows affected: 23 - RequestID: c5hus1rphns +2025-06-18T15:09:08.581Z [INFO] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 1104ms - IP: 192.168.235.117 - User: user_1034 - RequestID: wniougkrmfq +2025-06-18T15:09:08.681Z [INFO] order-service - Operation: email_sent - Processing time: 545ms - RequestID: zi9l4tz3s5 +2025-06-18T15:09:08.781Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 862ms - RequestID: h834usasnco +2025-06-18T15:09:08.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.227.233 - RequestID: y7btxqspp1 +2025-06-18T15:09:08.981Z [INFO] payment-service - Operation: email_sent - Processing time: 642ms - RequestID: rrpznqfpn5h +2025-06-18T15:09:09.081Z [INFO] auth-service - Auth event: password_change - User: user_1006 - IP: 192.168.46.63 - RequestID: inc4gak7at +2025-06-18T15:09:09.181Z [TRACE] auth-service - GET /api/v1/users - Status: 502 - Response time: 1893ms - IP: 192.168.11.60 - User: user_1044 - RequestID: vwjjb1m87lq +2025-06-18T15:09:09.281Z [TRACE] inventory-service - Auth event: password_change - User: user_1082 - IP: 192.168.211.72 - RequestID: ig7z7w28rl9 +2025-06-18T15:09:09.381Z [INFO] order-service - GET /api/v1/auth/login - Status: 502 - Response time: 216ms - IP: 192.168.227.77 - User: user_1039 - RequestID: i4urwpip60m +2025-06-18T15:09:09.481Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1282ms - IP: 192.168.138.123 - User: user_1059 - RequestID: khoe8ij8dtk +2025-06-18T15:09:09.581Z [TRACE] payment-service - Auth event: login_success - User: user_1006 - IP: 192.168.147.171 - RequestID: 9dw5eygppjd +2025-06-18T15:09:09.681Z [INFO] payment-service - PUT /api/v1/inventory - Status: 200 - Response time: 716ms - IP: 192.168.81.206 - User: user_1051 - RequestID: 0ow6vos7rqd +2025-06-18T15:09:09.781Z [INFO] notification-service - Auth event: login_failed - User: user_1089 - IP: 192.168.235.117 - RequestID: t7jpvqwuihs +2025-06-18T15:09:09.881Z [INFO] payment-service - Operation: payment_processed - Processing time: 470ms - RequestID: 2qt9h1ukrzy +2025-06-18T15:09:09.981Z [INFO] user-service - POST /api/v1/inventory - Status: 403 - Response time: 587ms - IP: 192.168.187.199 - User: user_1096 - RequestID: tqtqllo6bgg +2025-06-18T15:09:10.081Z [TRACE] order-service - Database INSERT on orders - Execution time: 243ms - Rows affected: 15 - RequestID: basg2cgg0sc +2025-06-18T15:09:10.181Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 200 - Response time: 1786ms - IP: 192.168.68.128 - User: user_1071 - RequestID: k3u98js9ea +2025-06-18T15:09:10.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.158.144 - RequestID: erqk1ydoe86 +2025-06-18T15:09:10.381Z [TRACE] user-service - Operation: inventory_updated - Processing time: 239ms - RequestID: lvhmrwb3roi +2025-06-18T15:09:10.481Z [DEBUG] order-service - Operation: email_sent - Processing time: 208ms - RequestID: h4qof392jlu +2025-06-18T15:09:10.581Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 314ms - IP: 192.168.31.117 - User: user_1048 - RequestID: p0df432i0lh +2025-06-18T15:09:10.681Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 200 - Response time: 322ms - IP: 192.168.104.37 - User: user_1094 - RequestID: 9ipumegy63k +2025-06-18T15:09:10.781Z [INFO] order-service - Auth event: password_change - User: user_1002 - IP: 192.168.196.226 - RequestID: zok0ykn9z4 +2025-06-18T15:09:10.881Z [INFO] inventory-service - Operation: email_sent - Processing time: 79ms - RequestID: np2pew78x1g +2025-06-18T15:09:10.981Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 300ms - Rows affected: 88 - RequestID: 432bx8clfuc +2025-06-18T15:09:11.081Z [INFO] inventory-service - Database INSERT on products - Execution time: 305ms - Rows affected: 57 - RequestID: 6jy3221sxdb +2025-06-18T15:09:11.181Z [INFO] inventory-service - Operation: cache_hit - Processing time: 84ms - RequestID: wkjg7d0vl1g +2025-06-18T15:09:11.281Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 64ms - IP: 192.168.100.240 - User: user_1078 - RequestID: 74fgdg934bh +2025-06-18T15:09:11.381Z [INFO] auth-service - Database DELETE on orders - Execution time: 146ms - Rows affected: 42 - RequestID: 0of35xcv0u9a +2025-06-18T15:09:11.481Z [INFO] order-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1888ms - IP: 192.168.44.5 - User: user_1017 - RequestID: cvjcj6lb5gs +2025-06-18T15:09:11.581Z [DEBUG] user-service - Database UPDATE on users - Execution time: 231ms - Rows affected: 42 - RequestID: 1cu5fbhrbnr +2025-06-18T15:09:11.681Z [DEBUG] payment-service - Database SELECT on users - Execution time: 127ms - Rows affected: 89 - RequestID: 0e3k7sq6pvu +2025-06-18T15:09:11.781Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 486ms - IP: 192.168.14.77 - User: user_1044 - RequestID: 0sfd88bbxrcq +2025-06-18T15:09:11.881Z [TRACE] inventory-service - Database SELECT on users - Execution time: 303ms - Rows affected: 42 - RequestID: oqog9jepxx +2025-06-18T15:09:11.981Z [TRACE] auth-service - Database SELECT on orders - Execution time: 238ms - Rows affected: 25 - RequestID: 45ljn5mnnvn +2025-06-18T15:09:12.081Z [INFO] order-service - Operation: webhook_sent - Processing time: 515ms - RequestID: qo5i59uu9qi +2025-06-18T15:09:12.181Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 200ms - RequestID: a9jacpq31nf +2025-06-18T15:09:12.281Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 285ms - Rows affected: 4 - RequestID: i47jyenqttr +2025-06-18T15:09:12.381Z [INFO] user-service - Database INSERT on payments - Execution time: 79ms - Rows affected: 27 - RequestID: 9hi18gej57t +2025-06-18T15:09:12.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.79.141 - RequestID: leimo4ebvbc +2025-06-18T15:09:12.581Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 200 - Response time: 1244ms - IP: 192.168.79.116 - User: user_1093 - RequestID: c71qxwq4wy4 +2025-06-18T15:09:12.681Z [DEBUG] user-service - Auth event: password_change - User: user_1014 - IP: 192.168.32.38 - RequestID: 8a2xbx3bf2m +2025-06-18T15:09:12.781Z [INFO] auth-service - Auth event: logout - User: user_1006 - IP: 192.168.181.225 - RequestID: vceo7wiqel +2025-06-18T15:09:12.881Z [TRACE] auth-service - Auth event: login_failed - User: user_1067 - IP: 192.168.31.117 - RequestID: f1t74b3xkoj +2025-06-18T15:09:12.981Z [INFO] payment-service - Database INSERT on payments - Execution time: 493ms - Rows affected: 10 - RequestID: vct3qgzznf +2025-06-18T15:09:13.081Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1058ms - IP: 192.168.68.128 - User: user_1020 - RequestID: jmrly4u41o +2025-06-18T15:09:13.181Z [INFO] order-service - GET /api/v1/users - Status: 200 - Response time: 687ms - IP: 192.168.44.5 - User: user_1041 - RequestID: eywhb6u9gkq +2025-06-18T15:09:13.281Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 406ms - IP: 192.168.187.199 - User: user_1060 - RequestID: 96fk7ukaspr +2025-06-18T15:09:13.381Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 502 - Response time: 323ms - IP: 192.168.31.117 - User: user_1010 - RequestID: 1sye6xoajew +2025-06-18T15:09:13.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.100.240 - RequestID: wabzbtikgg +2025-06-18T15:09:13.581Z [TRACE] order-service - PUT /api/v1/inventory - Status: 502 - Response time: 1088ms - IP: 192.168.1.152 - User: user_1028 - RequestID: tn9skp8y5o +2025-06-18T15:09:13.681Z [TRACE] payment-service - Database INSERT on users - Execution time: 213ms - Rows affected: 77 - RequestID: lnq1dkrko2h +2025-06-18T15:09:13.781Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 185ms - Rows affected: 13 - RequestID: jhaa5syx77 +2025-06-18T15:09:13.881Z [TRACE] notification-service - Database SELECT on payments - Execution time: 347ms - Rows affected: 62 - RequestID: 92hjabsou6w +2025-06-18T15:09:13.981Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 531ms - RequestID: 9g8d6n9uzvk +2025-06-18T15:09:14.081Z [INFO] auth-service - Database UPDATE on orders - Execution time: 194ms - Rows affected: 13 - RequestID: xpx0kv81xu +2025-06-18T15:09:14.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.138.123 - RequestID: gfyr6p6w5pt +2025-06-18T15:09:14.281Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 174ms - Rows affected: 11 - RequestID: rioxaqyi1pp +2025-06-18T15:09:14.381Z [INFO] user-service - Auth event: login_failed - User: user_1002 - IP: 192.168.79.141 - RequestID: oz2ndsxfdzn +2025-06-18T15:09:14.481Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 178ms - Rows affected: 57 - RequestID: 2z69cdt7lja +2025-06-18T15:09:14.581Z [TRACE] user-service - Database SELECT on orders - Execution time: 387ms - Rows affected: 65 - RequestID: ciqc0s2b2o +2025-06-18T15:09:14.681Z [DEBUG] user-service - Auth event: password_change - User: user_1083 - IP: 192.168.133.7 - RequestID: nrime6buqmk +2025-06-18T15:09:14.781Z [TRACE] notification-service - Database SELECT on products - Execution time: 68ms - Rows affected: 46 - RequestID: 3bpckqdcxr2 +2025-06-18T15:09:14.881Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 350ms - Rows affected: 27 - RequestID: vunmg47nk6 +2025-06-18T15:09:14.981Z [TRACE] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 1586ms - IP: 192.168.104.37 - User: user_1000 - RequestID: cgv554u6qjg +2025-06-18T15:09:15.081Z [INFO] inventory-service - Operation: email_sent - Processing time: 891ms - RequestID: zpx4wsf23ol +2025-06-18T15:09:15.181Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 253ms - Rows affected: 67 - RequestID: 2b18w2m7426 +2025-06-18T15:09:15.281Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 109ms - Rows affected: 7 - RequestID: 5ibuqwe7239 +2025-06-18T15:09:15.381Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 1041ms - RequestID: 2anaop4l2rl +2025-06-18T15:09:15.481Z [INFO] auth-service - Operation: payment_processed - Processing time: 417ms - RequestID: 05pdykf6gwjf +2025-06-18T15:09:15.581Z [INFO] inventory-service - Auth event: login_failed - User: user_1067 - IP: 192.168.68.128 - RequestID: dhre5k7r3s8 +2025-06-18T15:09:15.681Z [INFO] inventory-service - POST /api/v1/users - Status: 200 - Response time: 791ms - IP: 192.168.1.152 - User: user_1095 - RequestID: v5v5q44lgkb +2025-06-18T15:09:15.781Z [TRACE] inventory-service - Auth event: logout - User: user_1088 - IP: 192.168.229.123 - RequestID: 1u645gr983e +2025-06-18T15:09:15.881Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 329ms - Rows affected: 58 - RequestID: ag1x1npg92f +2025-06-18T15:09:15.981Z [DEBUG] inventory-service - Auth event: login_success - User: user_1041 - IP: 192.168.104.37 - RequestID: mqvbo35jzgq +2025-06-18T15:09:16.081Z [TRACE] user-service - Database DELETE on orders - Execution time: 341ms - Rows affected: 1 - RequestID: u3beeclfht +2025-06-18T15:09:16.181Z [INFO] order-service - Database INSERT on orders - Execution time: 48ms - Rows affected: 22 - RequestID: xhcacy1zoc +2025-06-18T15:09:16.281Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 130ms - Rows affected: 81 - RequestID: 03wrqijgo45u +2025-06-18T15:09:16.381Z [INFO] user-service - Operation: webhook_sent - Processing time: 320ms - RequestID: dzzd33p116b +2025-06-18T15:09:16.481Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 254ms - Rows affected: 83 - RequestID: gvc5fqm2c8u +2025-06-18T15:09:16.581Z [INFO] payment-service - Auth event: login_success - User: user_1048 - IP: 192.168.159.94 - RequestID: jko0z1z00pb +2025-06-18T15:09:16.681Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 503 - Response time: 460ms - IP: 192.168.46.63 - User: user_1024 - RequestID: tpyyw5yzidd +2025-06-18T15:09:16.781Z [DEBUG] notification-service - Database SELECT on products - Execution time: 190ms - Rows affected: 0 - RequestID: xyulsj8s3kd +2025-06-18T15:09:16.881Z [TRACE] auth-service - Auth event: password_change - User: user_1079 - IP: 192.168.229.123 - RequestID: oxidzr5feyh +2025-06-18T15:09:16.981Z [INFO] inventory-service - Auth event: logout - User: user_1075 - IP: 192.168.46.63 - RequestID: 7qxc9cglu8a +2025-06-18T15:09:17.081Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 662ms - RequestID: 03i7zjyf94x9 +2025-06-18T15:09:17.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 585ms - RequestID: cf1qw1cnt35 +2025-06-18T15:09:17.281Z [DEBUG] auth-service - Auth event: login_failed - User: user_1002 - IP: 192.168.36.218 - RequestID: j78lf96ixd +2025-06-18T15:09:17.381Z [INFO] auth-service - Auth event: login_success - User: user_1009 - IP: 192.168.147.171 - RequestID: 7s0xxw9j9v7 +2025-06-18T15:09:17.481Z [INFO] order-service - Database INSERT on users - Execution time: 108ms - Rows affected: 39 - RequestID: y97dftf9jjf +2025-06-18T15:09:17.581Z [TRACE] auth-service - Operation: payment_processed - Processing time: 913ms - RequestID: nmsqw97useo +2025-06-18T15:09:17.681Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 428ms - Rows affected: 30 - RequestID: f0qlowrwqx +2025-06-18T15:09:17.781Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 578ms - RequestID: hlscmlo0zao +2025-06-18T15:09:17.881Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 32ms - Rows affected: 84 - RequestID: mpp8z7zk8j +2025-06-18T15:09:17.981Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 315ms - Rows affected: 1 - RequestID: ir9zus0k9ob +2025-06-18T15:09:18.081Z [TRACE] notification-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.227.233 - RequestID: hjnutcdhkkg +2025-06-18T15:09:18.181Z [TRACE] notification-service - PUT /api/v1/users - Status: 201 - Response time: 593ms - IP: 192.168.100.240 - User: user_1086 - RequestID: e0d5bg0k2yj +2025-06-18T15:09:18.281Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 244ms - RequestID: s82vznl6ur +2025-06-18T15:09:18.381Z [INFO] payment-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.247.134 - RequestID: tpvvsbf1t6 +2025-06-18T15:09:18.481Z [INFO] inventory-service - Operation: payment_processed - Processing time: 312ms - RequestID: kqkgrqwm15t +2025-06-18T15:09:18.581Z [TRACE] user-service - Auth event: password_change - User: user_1002 - IP: 192.168.97.87 - RequestID: n4onl6ut1fc +2025-06-18T15:09:18.681Z [TRACE] user-service - DELETE /api/v1/users - Status: 401 - Response time: 1196ms - IP: 192.168.141.100 - User: user_1007 - RequestID: 5ha2p4cpywo +2025-06-18T15:09:18.781Z [TRACE] order-service - PUT /api/v1/payments - Status: 200 - Response time: 1261ms - IP: 192.168.44.5 - User: user_1077 - RequestID: idal0di8z9l +2025-06-18T15:09:18.881Z [INFO] notification-service - Database SELECT on payments - Execution time: 274ms - Rows affected: 30 - RequestID: vn060c6afur +2025-06-18T15:09:18.981Z [DEBUG] user-service - Auth event: login_failed - User: user_1045 - IP: 192.168.187.199 - RequestID: 1bdkg6xrma9 +2025-06-18T15:09:19.081Z [TRACE] order-service - Auth event: logout - User: user_1074 - IP: 192.168.141.100 - RequestID: rins6xb7ct8 +2025-06-18T15:09:19.181Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 200 - Response time: 1661ms - IP: 192.168.31.117 - User: user_1032 - RequestID: gueezv6ujiv +2025-06-18T15:09:19.281Z [TRACE] notification-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.31.117 - RequestID: oxlwt4u65f +2025-06-18T15:09:19.381Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 299ms - Rows affected: 98 - RequestID: yxth49aab2g +2025-06-18T15:09:19.481Z [INFO] notification-service - Operation: webhook_sent - Processing time: 730ms - RequestID: 5w6faxjbocb +2025-06-18T15:09:19.581Z [INFO] inventory-service - Database INSERT on products - Execution time: 47ms - Rows affected: 97 - RequestID: bqkb86g4jh +2025-06-18T15:09:19.681Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 312ms - Rows affected: 4 - RequestID: umylgi18xl +2025-06-18T15:09:19.781Z [INFO] user-service - Auth event: logout - User: user_1017 - IP: 192.168.147.171 - RequestID: xj56tpstjfd +2025-06-18T15:09:19.881Z [DEBUG] user-service - Database INSERT on users - Execution time: 333ms - Rows affected: 87 - RequestID: 50c3hgnbewq +2025-06-18T15:09:19.981Z [INFO] order-service - Operation: cache_miss - Processing time: 103ms - RequestID: 7f74rn0cd6g +2025-06-18T15:09:20.081Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 96ms - Rows affected: 24 - RequestID: hxo8w7fndu5 +2025-06-18T15:09:20.181Z [DEBUG] order-service - Database UPDATE on products - Execution time: 289ms - Rows affected: 76 - RequestID: 1gvka6ph7gd +2025-06-18T15:09:20.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1094 - IP: 192.168.33.76 - RequestID: ar40wzv2ab +2025-06-18T15:09:20.381Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 357ms - Rows affected: 34 - RequestID: v0vnqnn6k9 +2025-06-18T15:09:20.481Z [TRACE] order-service - Auth event: login_failed - User: user_1032 - IP: 192.168.53.133 - RequestID: jc4lbvugyl +2025-06-18T15:09:20.581Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 1031ms - RequestID: s8alwfdk1pa +2025-06-18T15:09:20.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.189.103 - RequestID: 8p2dnd8ev4d +2025-06-18T15:09:20.781Z [INFO] user-service - Database SELECT on payments - Execution time: 318ms - Rows affected: 66 - RequestID: nd84zybn17 +2025-06-18T15:09:20.881Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 466ms - Rows affected: 93 - RequestID: r8goh3acibq +2025-06-18T15:09:20.981Z [TRACE] payment-service - Database SELECT on products - Execution time: 353ms - Rows affected: 58 - RequestID: 5hwlly4se14 +2025-06-18T15:09:21.081Z [INFO] user-service - Operation: payment_processed - Processing time: 374ms - RequestID: qf01i0q51ho +2025-06-18T15:09:21.181Z [TRACE] user-service - Operation: email_sent - Processing time: 940ms - RequestID: 777nu2rt4p4 +2025-06-18T15:09:21.281Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 390ms - IP: 192.168.113.218 - User: user_1050 - RequestID: ax8wz4odjgg +2025-06-18T15:09:21.381Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 368ms - Rows affected: 97 - RequestID: zibd8vyva4r +2025-06-18T15:09:21.481Z [TRACE] user-service - Operation: notification_queued - Processing time: 241ms - RequestID: 4ah4psakjrs +2025-06-18T15:09:21.581Z [DEBUG] notification-service - Database DELETE on users - Execution time: 16ms - Rows affected: 15 - RequestID: jfggzdp08nq +2025-06-18T15:09:21.681Z [TRACE] inventory-service - Database DELETE on users - Execution time: 93ms - Rows affected: 69 - RequestID: imqtu0wcfa +2025-06-18T15:09:21.781Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 275ms - Rows affected: 73 - RequestID: qto2ep7t6r +2025-06-18T15:09:21.881Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 400 - Response time: 1298ms - IP: 192.168.11.60 - User: user_1008 - RequestID: gghr42bt42t +2025-06-18T15:09:21.981Z [DEBUG] user-service - Database INSERT on products - Execution time: 107ms - Rows affected: 3 - RequestID: qz3e6cqjmw +2025-06-18T15:09:22.081Z [TRACE] user-service - Auth event: logout - User: user_1040 - IP: 192.168.64.33 - RequestID: 8x9pj8om6i3 +2025-06-18T15:09:22.181Z [INFO] auth-service - Operation: payment_processed - Processing time: 288ms - RequestID: v9l4a2taare +2025-06-18T15:09:22.281Z [INFO] auth-service - Operation: cache_hit - Processing time: 99ms - RequestID: 29x56lali4 +2025-06-18T15:09:22.381Z [INFO] payment-service - DELETE /api/v1/orders - Status: 401 - Response time: 1637ms - IP: 192.168.227.77 - User: user_1056 - RequestID: 4yf77eeiv86 +2025-06-18T15:09:22.481Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 899ms - RequestID: 6m337tn4mdk +2025-06-18T15:09:22.581Z [INFO] notification-service - Operation: notification_queued - Processing time: 792ms - RequestID: kug81dhcss +2025-06-18T15:09:22.681Z [DEBUG] user-service - DELETE /api/v1/users - Status: 401 - Response time: 565ms - IP: 192.168.104.37 - User: user_1052 - RequestID: y2y2tdnosk8 +2025-06-18T15:09:22.781Z [TRACE] order-service - Auth event: login_success - User: user_1036 - IP: 192.168.158.144 - RequestID: ybbm22iwm0h +2025-06-18T15:09:22.881Z [TRACE] order-service - GET /api/v1/inventory - Status: 403 - Response time: 786ms - IP: 192.168.187.199 - User: user_1086 - RequestID: q9270r6ugt +2025-06-18T15:09:22.981Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 551ms - IP: 192.168.28.146 - User: user_1047 - RequestID: dtohefdhjl5 +2025-06-18T15:09:23.081Z [INFO] inventory-service - GET /api/v1/orders - Status: 500 - Response time: 409ms - IP: 192.168.64.33 - User: user_1098 - RequestID: ghowemewjn7 +2025-06-18T15:09:23.181Z [DEBUG] order-service - Operation: cache_miss - Processing time: 563ms - RequestID: n8xn8zejrm +2025-06-18T15:09:23.281Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 702ms - RequestID: ldm8xm4p01 +2025-06-18T15:09:23.381Z [DEBUG] auth-service - Database INSERT on products - Execution time: 9ms - Rows affected: 69 - RequestID: jt0b6ue53lq +2025-06-18T15:09:23.481Z [INFO] user-service - Database SELECT on sessions - Execution time: 78ms - Rows affected: 4 - RequestID: 8s29v8vcvoe +2025-06-18T15:09:23.581Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1556ms - IP: 192.168.28.146 - User: user_1091 - RequestID: znulbid8q4 +2025-06-18T15:09:23.681Z [INFO] inventory-service - GET /api/v1/orders - Status: 200 - Response time: 1875ms - IP: 192.168.104.37 - User: user_1071 - RequestID: 81b7909i9gw +2025-06-18T15:09:23.781Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 502 - Response time: 1687ms - IP: 192.168.196.226 - User: user_1027 - RequestID: aztl566bgf9 +2025-06-18T15:09:23.881Z [TRACE] payment-service - Operation: payment_processed - Processing time: 762ms - RequestID: h0v1751t13 +2025-06-18T15:09:23.981Z [INFO] order-service - GET /api/v1/orders - Status: 201 - Response time: 1284ms - IP: 192.168.11.60 - User: user_1030 - RequestID: pcg5rnqk5y +2025-06-18T15:09:24.081Z [INFO] order-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.46.63 - RequestID: owj9hqtxbs +2025-06-18T15:09:24.181Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 169ms - Rows affected: 92 - RequestID: saj0msq61a +2025-06-18T15:09:24.281Z [TRACE] payment-service - Database INSERT on products - Execution time: 11ms - Rows affected: 9 - RequestID: isdbpi8ed8k +2025-06-18T15:09:24.381Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 381ms - RequestID: ckkh6q8gav +2025-06-18T15:09:24.481Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 212ms - Rows affected: 95 - RequestID: oxetnv0q8y +2025-06-18T15:09:24.581Z [INFO] user-service - PATCH /api/v1/payments - Status: 400 - Response time: 544ms - IP: 192.168.247.134 - User: user_1072 - RequestID: qlqo4bubj5m +2025-06-18T15:09:24.681Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1489ms - IP: 192.168.227.77 - User: user_1089 - RequestID: 7wt0x17ss2w +2025-06-18T15:09:24.781Z [TRACE] order-service - POST /api/v1/payments - Status: 201 - Response time: 1110ms - IP: 192.168.167.32 - User: user_1095 - RequestID: 38wwyatm9i5 +2025-06-18T15:09:24.881Z [INFO] order-service - Operation: notification_queued - Processing time: 441ms - RequestID: bkv0x7evx +2025-06-18T15:09:24.981Z [DEBUG] auth-service - Database SELECT on users - Execution time: 81ms - Rows affected: 58 - RequestID: lrp9brypuk +2025-06-18T15:09:25.081Z [INFO] user-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.64.33 - RequestID: 5i62ow03asj +2025-06-18T15:09:25.181Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 502 - Response time: 1445ms - IP: 192.168.100.240 - User: user_1054 - RequestID: 07wv37pou3ib +2025-06-18T15:09:25.281Z [INFO] user-service - Database SELECT on users - Execution time: 409ms - Rows affected: 60 - RequestID: a6umus36d6m +2025-06-18T15:09:25.381Z [TRACE] inventory-service - POST /api/v1/payments - Status: 502 - Response time: 1000ms - IP: 192.168.174.114 - User: user_1008 - RequestID: n6ih77mcw9d +2025-06-18T15:09:25.481Z [TRACE] auth-service - Operation: payment_processed - Processing time: 746ms - RequestID: p2n0v8qdzo +2025-06-18T15:09:25.581Z [INFO] order-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.104.37 - RequestID: jmliwkov74 +2025-06-18T15:09:25.681Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 328ms - Rows affected: 47 - RequestID: 42l20hlk4oi +2025-06-18T15:09:25.781Z [INFO] auth-service - Auth event: password_change - User: user_1008 - IP: 192.168.64.33 - RequestID: jlo9w5c11b8 +2025-06-18T15:09:25.881Z [DEBUG] inventory-service - Operation: order_created - Processing time: 134ms - RequestID: i3b3dyu8c7e +2025-06-18T15:09:25.981Z [INFO] user-service - Database SELECT on users - Execution time: 165ms - Rows affected: 23 - RequestID: wf36y8hjuq +2025-06-18T15:09:26.081Z [INFO] notification-service - Auth event: logout - User: user_1078 - IP: 192.168.97.87 - RequestID: mql98me7ky +2025-06-18T15:09:26.181Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 790ms - RequestID: lthi8godpv +2025-06-18T15:09:26.281Z [INFO] auth-service - GET /api/v1/users - Status: 500 - Response time: 986ms - IP: 192.168.30.79 - User: user_1042 - RequestID: mtpwa19ocr +2025-06-18T15:09:26.381Z [TRACE] payment-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.189.103 - RequestID: 6fc7ii4ulvr +2025-06-18T15:09:26.481Z [TRACE] auth-service - Auth event: logout - User: user_1050 - IP: 192.168.79.143 - RequestID: u009k7i0f0j +2025-06-18T15:09:26.581Z [DEBUG] inventory-service - Operation: order_created - Processing time: 256ms - RequestID: tj41k0xrjhp +2025-06-18T15:09:26.681Z [INFO] notification-service - Operation: order_created - Processing time: 814ms - RequestID: mhaclapgfl +2025-06-18T15:09:26.781Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 168ms - Rows affected: 65 - RequestID: lcwi8s560h9 +2025-06-18T15:09:26.881Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 179ms - Rows affected: 6 - RequestID: de1di7fop6s +2025-06-18T15:09:26.981Z [INFO] user-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.100.240 - RequestID: t6g2fhyc2l +2025-06-18T15:09:27.081Z [TRACE] notification-service - Auth event: password_change - User: user_1039 - IP: 192.168.174.114 - RequestID: d11ovo9es1 +2025-06-18T15:09:27.181Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 289ms - Rows affected: 9 - RequestID: ygrb7mjmcf +2025-06-18T15:09:27.281Z [INFO] notification-service - Database DELETE on sessions - Execution time: 353ms - Rows affected: 56 - RequestID: 9rnot6ysmhc +2025-06-18T15:09:27.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1098 - IP: 192.168.147.171 - RequestID: iaypkxgrhv +2025-06-18T15:09:27.481Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 834ms - RequestID: pji5tcsd7ac +2025-06-18T15:09:27.581Z [INFO] order-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.64.33 - RequestID: xgo0dc1bpxn +2025-06-18T15:09:27.681Z [TRACE] auth-service - Database INSERT on users - Execution time: 426ms - Rows affected: 31 - RequestID: 7487p7kk059 +2025-06-18T15:09:27.781Z [TRACE] user-service - Database UPDATE on products - Execution time: 364ms - Rows affected: 82 - RequestID: fop7ye33sh9 +2025-06-18T15:09:27.881Z [INFO] order-service - Operation: cache_hit - Processing time: 1022ms - RequestID: 5jdqzh6307t +2025-06-18T15:09:27.981Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 59ms - RequestID: 4odg7lgl8wu +2025-06-18T15:09:28.081Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 515ms - RequestID: 8stb537tqj +2025-06-18T15:09:28.181Z [INFO] auth-service - POST /api/v1/auth/login - Status: 401 - Response time: 696ms - IP: 192.168.113.218 - User: user_1021 - RequestID: ou902543fx +2025-06-18T15:09:28.281Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 471ms - RequestID: ozg43vkl6cm +2025-06-18T15:09:28.381Z [INFO] order-service - Database INSERT on users - Execution time: 158ms - Rows affected: 82 - RequestID: amtmvv06agk +2025-06-18T15:09:28.481Z [INFO] payment-service - Database INSERT on orders - Execution time: 249ms - Rows affected: 75 - RequestID: 5k1laweur9s +2025-06-18T15:09:28.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.229.123 - RequestID: e0ie5ds0raf +2025-06-18T15:09:28.681Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 404 - Response time: 30ms - IP: 192.168.36.218 - User: user_1096 - RequestID: eo5c7guz8v4 +2025-06-18T15:09:28.781Z [INFO] notification-service - Operation: notification_queued - Processing time: 836ms - RequestID: 4orz2utpayw +2025-06-18T15:09:28.881Z [INFO] notification-service - Database SELECT on payments - Execution time: 326ms - Rows affected: 20 - RequestID: dl4yr6qoh56 +2025-06-18T15:09:28.981Z [INFO] order-service - GET /api/v1/inventory - Status: 500 - Response time: 1029ms - IP: 192.168.14.77 - User: user_1059 - RequestID: 1jg3g3zj7ch +2025-06-18T15:09:29.081Z [DEBUG] order-service - Auth event: password_change - User: user_1023 - IP: 192.168.227.77 - RequestID: 1wv4gglmk4y +2025-06-18T15:09:29.181Z [TRACE] user-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.174.114 - RequestID: s2ssybtc7om +2025-06-18T15:09:29.281Z [DEBUG] auth-service - GET /api/v1/orders - Status: 502 - Response time: 187ms - IP: 192.168.113.218 - User: user_1074 - RequestID: h0tq5hfhnrp +2025-06-18T15:09:29.381Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 38ms - Rows affected: 21 - RequestID: n690aqw102b +2025-06-18T15:09:29.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.170.215 - RequestID: zs0xhfsz06r +2025-06-18T15:09:29.581Z [DEBUG] auth-service - Auth event: password_change - User: user_1095 - IP: 192.168.33.76 - RequestID: 2reyemjz76g +2025-06-18T15:09:29.681Z [INFO] inventory-service - Database SELECT on products - Execution time: 387ms - Rows affected: 91 - RequestID: mp3bmrkhzf +2025-06-18T15:09:29.781Z [INFO] payment-service - Database INSERT on users - Execution time: 110ms - Rows affected: 38 - RequestID: thx0cex27i +2025-06-18T15:09:29.881Z [INFO] payment-service - Database SELECT on payments - Execution time: 66ms - Rows affected: 57 - RequestID: g82ueyirq1i +2025-06-18T15:09:29.981Z [TRACE] payment-service - Operation: email_sent - Processing time: 664ms - RequestID: qlhnnq9lg99 +2025-06-18T15:09:30.081Z [TRACE] auth-service - Operation: order_created - Processing time: 248ms - RequestID: y9ffqv8jd1n +2025-06-18T15:09:30.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.141.100 - RequestID: kto31r1qcpj +2025-06-18T15:09:30.281Z [INFO] auth-service - Database UPDATE on payments - Execution time: 41ms - Rows affected: 37 - RequestID: yqxlhfcsaqm +2025-06-18T15:09:30.381Z [INFO] payment-service - Auth event: login_failed - User: user_1041 - IP: 192.168.30.79 - RequestID: kseq3ubj5v +2025-06-18T15:09:30.481Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 687ms - RequestID: 1tingrtf42v +2025-06-18T15:09:30.581Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1152ms - IP: 192.168.170.215 - User: user_1007 - RequestID: 0z32l22myv0b +2025-06-18T15:09:30.681Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1683ms - IP: 192.168.211.72 - User: user_1081 - RequestID: 4s6l18g8fcs +2025-06-18T15:09:30.781Z [TRACE] user-service - Database INSERT on products - Execution time: 136ms - Rows affected: 58 - RequestID: vta8hzhleb +2025-06-18T15:09:30.881Z [TRACE] order-service - Auth event: logout - User: user_1005 - IP: 192.168.53.133 - RequestID: fl7j2vyt264 +2025-06-18T15:09:30.981Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 802ms - RequestID: 35x38anvwxs +2025-06-18T15:09:31.081Z [DEBUG] order-service - Database INSERT on orders - Execution time: 404ms - Rows affected: 38 - RequestID: k3tbws1diuc +2025-06-18T15:09:31.181Z [TRACE] order-service - Auth event: password_change - User: user_1078 - IP: 192.168.79.141 - RequestID: sf8agsmimk +2025-06-18T15:09:31.281Z [INFO] auth-service - Operation: notification_queued - Processing time: 373ms - RequestID: 4dyz48pzjxp +2025-06-18T15:09:31.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1080 - IP: 192.168.167.32 - RequestID: 7dh4fwiy8eh +2025-06-18T15:09:31.481Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 400 - Response time: 753ms - IP: 192.168.53.133 - User: user_1065 - RequestID: xyyfoelk9d +2025-06-18T15:09:31.581Z [INFO] inventory-service - Database UPDATE on products - Execution time: 384ms - Rows affected: 1 - RequestID: 8c1udh87xls +2025-06-18T15:09:31.681Z [TRACE] user-service - Operation: cache_hit - Processing time: 121ms - RequestID: ud50p5z6vx +2025-06-18T15:09:31.781Z [INFO] user-service - Operation: payment_processed - Processing time: 710ms - RequestID: zj9uj0yehp +2025-06-18T15:09:31.881Z [TRACE] user-service - Operation: cache_hit - Processing time: 91ms - RequestID: pxrtq0wjtyn +2025-06-18T15:09:31.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 191ms - RequestID: eaqawz88kz +2025-06-18T15:09:32.081Z [INFO] inventory-service - Operation: cache_miss - Processing time: 202ms - RequestID: pv4ly76svpb +2025-06-18T15:09:32.181Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 321ms - Rows affected: 3 - RequestID: gbvvhggy48e +2025-06-18T15:09:32.281Z [INFO] payment-service - Operation: cache_miss - Processing time: 944ms - RequestID: ziwek6i0omo +2025-06-18T15:09:32.381Z [TRACE] order-service - Auth event: logout - User: user_1076 - IP: 192.168.104.37 - RequestID: bu554ykic9c +2025-06-18T15:09:32.481Z [INFO] notification-service - Operation: email_sent - Processing time: 864ms - RequestID: 5mxtzghkerj +2025-06-18T15:09:32.581Z [DEBUG] user-service - Database SELECT on orders - Execution time: 242ms - Rows affected: 76 - RequestID: gfhievzn4kh +2025-06-18T15:09:32.681Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 500 - Response time: 480ms - IP: 192.168.113.218 - User: user_1028 - RequestID: 1ttjmnbn3ns +2025-06-18T15:09:32.781Z [INFO] auth-service - Database UPDATE on payments - Execution time: 313ms - Rows affected: 19 - RequestID: 8atlmxeybgh +2025-06-18T15:09:32.881Z [INFO] payment-service - Auth event: password_change - User: user_1071 - IP: 192.168.64.33 - RequestID: 2yyh6yn6hnu +2025-06-18T15:09:32.981Z [TRACE] notification-service - Auth event: logout - User: user_1086 - IP: 192.168.81.206 - RequestID: y66fr7gg0l +2025-06-18T15:09:33.081Z [TRACE] inventory-service - POST /api/v1/payments - Status: 502 - Response time: 1000ms - IP: 192.168.85.229 - User: user_1080 - RequestID: 4rooe7vgwvy +2025-06-18T15:09:33.181Z [INFO] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 289ms - IP: 192.168.104.37 - User: user_1029 - RequestID: dclbd3zr9ll +2025-06-18T15:09:33.281Z [INFO] user-service - Operation: cache_miss - Processing time: 879ms - RequestID: qe703ov4og +2025-06-18T15:09:33.381Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1625ms - IP: 192.168.81.206 - User: user_1014 - RequestID: epapc8ch2uu +2025-06-18T15:09:33.481Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 149ms - RequestID: l3rn2hfmvsm +2025-06-18T15:09:33.581Z [TRACE] notification-service - Database DELETE on payments - Execution time: 364ms - Rows affected: 87 - RequestID: voah4ydf2r +2025-06-18T15:09:33.681Z [DEBUG] notification-service - Auth event: logout - User: user_1003 - IP: 192.168.181.225 - RequestID: n4mkv0xnbo +2025-06-18T15:09:33.781Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 500 - Response time: 552ms - IP: 192.168.138.123 - User: user_1027 - RequestID: saoi51v4opo +2025-06-18T15:09:33.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1055 - IP: 192.168.242.165 - RequestID: jud47gz7mr +2025-06-18T15:09:33.981Z [DEBUG] auth-service - POST /api/v1/orders - Status: 401 - Response time: 1639ms - IP: 192.168.181.225 - User: user_1010 - RequestID: w8kkovpspm9 +2025-06-18T15:09:34.081Z [INFO] notification-service - Auth event: password_change - User: user_1027 - IP: 192.168.28.146 - RequestID: hweehikbdhp +2025-06-18T15:09:34.181Z [DEBUG] order-service - Auth event: password_change - User: user_1059 - IP: 192.168.227.233 - RequestID: ewfwnwc2mk +2025-06-18T15:09:34.281Z [INFO] user-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.232.72 - RequestID: 6zzotv934v3 +2025-06-18T15:09:34.381Z [INFO] order-service - Operation: email_sent - Processing time: 212ms - RequestID: wm6bl5iook +2025-06-18T15:09:34.481Z [DEBUG] notification-service - Operation: email_sent - Processing time: 107ms - RequestID: c1kacpob8qc +2025-06-18T15:09:34.581Z [INFO] auth-service - Database INSERT on sessions - Execution time: 94ms - Rows affected: 69 - RequestID: l8dbtpkmgw +2025-06-18T15:09:34.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1001 - IP: 192.168.85.229 - RequestID: 278ltjwifzj +2025-06-18T15:09:34.781Z [INFO] order-service - Operation: cache_miss - Processing time: 143ms - RequestID: hw6l7cata8 +2025-06-18T15:09:34.881Z [DEBUG] user-service - Auth event: login_failed - User: user_1044 - IP: 192.168.227.77 - RequestID: ed7d7c1ztde +2025-06-18T15:09:34.981Z [TRACE] payment-service - Operation: payment_processed - Processing time: 690ms - RequestID: kads0wp212 +2025-06-18T15:09:35.081Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 471ms - Rows affected: 63 - RequestID: zw7a0fh0p8e +2025-06-18T15:09:35.181Z [INFO] auth-service - Operation: order_created - Processing time: 696ms - RequestID: s77wyjh9t8 +2025-06-18T15:09:35.281Z [INFO] payment-service - Operation: payment_processed - Processing time: 224ms - RequestID: 1tubwuy8khs +2025-06-18T15:09:35.381Z [INFO] payment-service - GET /api/v1/orders - Status: 503 - Response time: 1772ms - IP: 192.168.194.41 - User: user_1017 - RequestID: u5zo5msles +2025-06-18T15:09:35.481Z [INFO] payment-service - POST /api/v1/orders - Status: 201 - Response time: 1200ms - IP: 192.168.189.103 - User: user_1044 - RequestID: xeltmiziym +2025-06-18T15:09:35.581Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 1030ms - RequestID: 01viotp60dlm +2025-06-18T15:09:35.681Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 247ms - Rows affected: 96 - RequestID: jx2ktc1e0p +2025-06-18T15:09:35.781Z [TRACE] notification-service - Operation: email_sent - Processing time: 158ms - RequestID: afsrz7c42b9 +2025-06-18T15:09:35.881Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 2000ms - IP: 192.168.79.116 - User: user_1099 - RequestID: o921o3ekjtn +2025-06-18T15:09:35.981Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 289ms - RequestID: rxnbt1u6lm +2025-06-18T15:09:36.081Z [TRACE] user-service - Database INSERT on users - Execution time: 296ms - Rows affected: 16 - RequestID: ktfrbseqfj +2025-06-18T15:09:36.181Z [INFO] notification-service - Auth event: password_change - User: user_1045 - IP: 192.168.194.41 - RequestID: lovchdiz1vi +2025-06-18T15:09:36.281Z [INFO] payment-service - Database DELETE on users - Execution time: 367ms - Rows affected: 68 - RequestID: clnseuoob6a +2025-06-18T15:09:36.381Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 456ms - Rows affected: 33 - RequestID: lxz7y1xt1y +2025-06-18T15:09:36.481Z [INFO] auth-service - POST /api/v1/users - Status: 404 - Response time: 362ms - IP: 192.168.141.100 - User: user_1032 - RequestID: pe6oux79z1o +2025-06-18T15:09:36.581Z [TRACE] payment-service - PUT /api/v1/orders - Status: 400 - Response time: 233ms - IP: 192.168.36.218 - User: user_1094 - RequestID: fp50a13g4 +2025-06-18T15:09:36.681Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 423ms - Rows affected: 96 - RequestID: fujhapfvisu +2025-06-18T15:09:36.781Z [TRACE] user-service - Database DELETE on orders - Execution time: 57ms - Rows affected: 16 - RequestID: n0qcljnhmsi +2025-06-18T15:09:36.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1090 - IP: 192.168.14.77 - RequestID: lz7xnq4yanr +2025-06-18T15:09:36.981Z [TRACE] auth-service - Auth event: logout - User: user_1021 - IP: 192.168.247.134 - RequestID: zs02btgfzk +2025-06-18T15:09:37.081Z [DEBUG] auth-service - Database INSERT on users - Execution time: 74ms - Rows affected: 15 - RequestID: iokwwxqyryn +2025-06-18T15:09:37.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.68.158 - RequestID: j7mpd7oc61r +2025-06-18T15:09:37.281Z [DEBUG] notification-service - Operation: email_sent - Processing time: 123ms - RequestID: d1iqhg7uku +2025-06-18T15:09:37.381Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1393ms - IP: 192.168.46.63 - User: user_1011 - RequestID: csx50hwgwm +2025-06-18T15:09:37.481Z [DEBUG] order-service - Database DELETE on payments - Execution time: 192ms - Rows affected: 70 - RequestID: dgsys2lobq +2025-06-18T15:09:37.581Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 213ms - Rows affected: 32 - RequestID: jeqsx6bzt8o +2025-06-18T15:09:37.681Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 229ms - Rows affected: 54 - RequestID: 5l74g78pohs +2025-06-18T15:09:37.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.196.226 - RequestID: w28y2ogxg5g +2025-06-18T15:09:37.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 975ms - RequestID: j6xfm00vud +2025-06-18T15:09:37.981Z [INFO] order-service - Database DELETE on orders - Execution time: 238ms - Rows affected: 77 - RequestID: yi9spe2qoao +2025-06-18T15:09:38.081Z [DEBUG] user-service - Auth event: login_failed - User: user_1005 - IP: 192.168.189.103 - RequestID: 3ezmx8nie4h +2025-06-18T15:09:38.181Z [INFO] payment-service - POST /api/v1/orders - Status: 401 - Response time: 1267ms - IP: 192.168.81.206 - User: user_1083 - RequestID: 73a2tjcuuen +2025-06-18T15:09:38.281Z [TRACE] user-service - Database UPDATE on products - Execution time: 112ms - Rows affected: 34 - RequestID: h7an68cgnw4 +2025-06-18T15:09:38.381Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 403 - Response time: 135ms - IP: 192.168.33.76 - User: user_1076 - RequestID: imat3esc9m +2025-06-18T15:09:38.481Z [TRACE] user-service - Auth event: password_change - User: user_1094 - IP: 192.168.158.144 - RequestID: 7xtnc0yj3we +2025-06-18T15:09:38.581Z [TRACE] user-service - POST /api/v1/users - Status: 500 - Response time: 1170ms - IP: 192.168.1.152 - User: user_1053 - RequestID: 889qlecp6vr +2025-06-18T15:09:38.681Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 222ms - RequestID: 0qhwtyjtl1dq +2025-06-18T15:09:38.781Z [DEBUG] inventory-service - Operation: order_created - Processing time: 444ms - RequestID: xq568y6zele +2025-06-18T15:09:38.881Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 900ms - IP: 192.168.187.199 - User: user_1072 - RequestID: 4tv7fl749xg +2025-06-18T15:09:38.981Z [DEBUG] notification-service - Auth event: login_success - User: user_1034 - IP: 192.168.211.72 - RequestID: mikn70b37qe +2025-06-18T15:09:39.081Z [DEBUG] order-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.194.41 - RequestID: 8w9txpy9hdt +2025-06-18T15:09:39.181Z [TRACE] inventory-service - GET /api/v1/users - Status: 401 - Response time: 1908ms - IP: 192.168.159.94 - User: user_1049 - RequestID: j0vkudwoul +2025-06-18T15:09:39.281Z [TRACE] inventory-service - POST /api/v1/payments - Status: 502 - Response time: 282ms - IP: 192.168.174.114 - User: user_1037 - RequestID: djegj9sod0u +2025-06-18T15:09:39.381Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 954ms - IP: 192.168.46.63 - User: user_1005 - RequestID: ltslpoxzom8 +2025-06-18T15:09:39.481Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 200 - Response time: 382ms - IP: 192.168.33.76 - User: user_1027 - RequestID: 6lm7g8k1bj8 +2025-06-18T15:09:39.581Z [DEBUG] inventory-service - Auth event: logout - User: user_1044 - IP: 192.168.187.199 - RequestID: m6e85jwprd +2025-06-18T15:09:39.681Z [INFO] user-service - GET /api/v1/users - Status: 500 - Response time: 894ms - IP: 192.168.227.233 - User: user_1059 - RequestID: 1za1o7z4cbe +2025-06-18T15:09:39.781Z [TRACE] payment-service - GET /api/v1/payments - Status: 500 - Response time: 1582ms - IP: 192.168.181.225 - User: user_1002 - RequestID: olb2xp1472s +2025-06-18T15:09:39.881Z [TRACE] order-service - Auth event: login_failed - User: user_1048 - IP: 192.168.229.123 - RequestID: p2y164yoj99 +2025-06-18T15:09:39.981Z [INFO] notification-service - Database SELECT on users - Execution time: 381ms - Rows affected: 22 - RequestID: 4jxnzfky7kp +2025-06-18T15:09:40.081Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 931ms - RequestID: 4xgxwaoq81r +2025-06-18T15:09:40.181Z [INFO] order-service - Auth event: login_attempt - User: user_1061 - IP: 192.168.181.225 - RequestID: xzyhkdw7coa +2025-06-18T15:09:40.281Z [DEBUG] order-service - Operation: notification_queued - Processing time: 634ms - RequestID: z2nnnqfqexs +2025-06-18T15:09:40.381Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 91ms - RequestID: 5fyxasm6aep +2025-06-18T15:09:40.481Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 165ms - RequestID: w5siagjvwz +2025-06-18T15:09:40.581Z [INFO] user-service - Database DELETE on sessions - Execution time: 195ms - Rows affected: 86 - RequestID: 876jyz1clq3 +2025-06-18T15:09:40.681Z [INFO] inventory-service - Auth event: login_success - User: user_1079 - IP: 192.168.144.38 - RequestID: tbkc0y9u35 +2025-06-18T15:09:40.781Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 503 - Response time: 958ms - IP: 192.168.235.117 - User: user_1038 - RequestID: 8vxrx47znf3 +2025-06-18T15:09:40.881Z [INFO] auth-service - Operation: email_sent - Processing time: 638ms - RequestID: i9zibc8xaaa +2025-06-18T15:09:40.981Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1128ms - IP: 192.168.10.184 - User: user_1054 - RequestID: do0cq05z7rw +2025-06-18T15:09:41.081Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1406ms - IP: 192.168.31.117 - User: user_1040 - RequestID: 7da2vc0n69b +2025-06-18T15:09:41.181Z [INFO] auth-service - Database SELECT on orders - Execution time: 137ms - Rows affected: 45 - RequestID: 902fk9a8jjc +2025-06-18T15:09:41.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.147.171 - RequestID: f9kgbswbkzj +2025-06-18T15:09:41.381Z [TRACE] user-service - Operation: cache_miss - Processing time: 618ms - RequestID: zx9ufq9ieip +2025-06-18T15:09:41.481Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 448ms - Rows affected: 48 - RequestID: jlcn38xj3s +2025-06-18T15:09:41.581Z [TRACE] auth-service - Operation: payment_processed - Processing time: 688ms - RequestID: z4ru7f3idcm +2025-06-18T15:09:41.681Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1492ms - IP: 192.168.187.199 - User: user_1071 - RequestID: tnspg5mesr +2025-06-18T15:09:41.781Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 947ms - RequestID: 65jp454rka6 +2025-06-18T15:09:41.881Z [INFO] auth-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.147.171 - RequestID: bo7yccgt4wt +2025-06-18T15:09:41.981Z [INFO] payment-service - Database INSERT on sessions - Execution time: 355ms - Rows affected: 56 - RequestID: mmokla6us2 +2025-06-18T15:09:42.081Z [TRACE] inventory-service - Auth event: login_success - User: user_1076 - IP: 192.168.81.206 - RequestID: ap6v1uuuozv +2025-06-18T15:09:42.181Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 239ms - Rows affected: 97 - RequestID: ntyziga5yx +2025-06-18T15:09:42.281Z [TRACE] notification-service - Operation: email_sent - Processing time: 892ms - RequestID: 5s7xtjlmcij +2025-06-18T15:09:42.381Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 314ms - RequestID: 7ts8ozc5jms +2025-06-18T15:09:42.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.32.38 - RequestID: 0yjn2lqlaom +2025-06-18T15:09:42.581Z [INFO] notification-service - Operation: webhook_sent - Processing time: 507ms - RequestID: fl8xy90hi5s +2025-06-18T15:09:42.681Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 914ms - RequestID: 9e5osqu6x2 +2025-06-18T15:09:42.781Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 1011ms - RequestID: a3k918f2qcf +2025-06-18T15:09:42.881Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 145ms - Rows affected: 39 - RequestID: 4auo5panr95 +2025-06-18T15:09:42.981Z [INFO] auth-service - DELETE /api/v1/payments - Status: 403 - Response time: 899ms - IP: 192.168.46.63 - User: user_1050 - RequestID: wfr8idqybrj +2025-06-18T15:09:43.081Z [TRACE] payment-service - Database SELECT on products - Execution time: 414ms - Rows affected: 95 - RequestID: mc1gxhk0n5j +2025-06-18T15:09:43.181Z [TRACE] notification-service - Database INSERT on orders - Execution time: 78ms - Rows affected: 94 - RequestID: n11wg2ys54 +2025-06-18T15:09:43.281Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.13.72 - RequestID: p2wjz4d9vlr +2025-06-18T15:09:43.381Z [INFO] user-service - Operation: payment_processed - Processing time: 903ms - RequestID: e5m24wtcxio +2025-06-18T15:09:43.481Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 325ms - IP: 192.168.46.63 - User: user_1096 - RequestID: ia0w341dsb +2025-06-18T15:09:43.581Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 404 - Response time: 1941ms - IP: 192.168.36.218 - User: user_1005 - RequestID: uk5ilcv74mp +2025-06-18T15:09:43.681Z [INFO] order-service - Operation: email_sent - Processing time: 565ms - RequestID: sofv5m1iamg +2025-06-18T15:09:43.781Z [TRACE] payment-service - Database INSERT on products - Execution time: 190ms - Rows affected: 79 - RequestID: 4sl7f9hs0n +2025-06-18T15:09:43.881Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 101ms - Rows affected: 48 - RequestID: 0aoj89vjod7s +2025-06-18T15:09:43.981Z [DEBUG] order-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.189.103 - RequestID: 7vutoo4g1i7 +2025-06-18T15:09:44.081Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 296ms - RequestID: 5yxvr4aiv3u +2025-06-18T15:09:44.181Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 407ms - Rows affected: 43 - RequestID: 3ra14qknm8p +2025-06-18T15:09:44.281Z [DEBUG] payment-service - Auth event: logout - User: user_1050 - IP: 192.168.79.116 - RequestID: xaoayjua3cr +2025-06-18T15:09:44.381Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 403 - Response time: 617ms - IP: 192.168.30.79 - User: user_1096 - RequestID: s5f4cc13gdf +2025-06-18T15:09:44.481Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 269ms - Rows affected: 85 - RequestID: 1w7bwnakg8d +2025-06-18T15:09:44.581Z [TRACE] order-service - Database DELETE on payments - Execution time: 78ms - Rows affected: 97 - RequestID: hzwsok4xev +2025-06-18T15:09:44.681Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 662ms - RequestID: 2crmjyc6u4y +2025-06-18T15:09:44.781Z [TRACE] notification-service - PUT /api/v1/orders - Status: 400 - Response time: 662ms - IP: 192.168.113.218 - User: user_1099 - RequestID: ice8uih9sue +2025-06-18T15:09:44.881Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 110ms - Rows affected: 52 - RequestID: eqveuzj29sc +2025-06-18T15:09:44.981Z [TRACE] order-service - Operation: notification_queued - Processing time: 141ms - RequestID: yeope1qonci +2025-06-18T15:09:45.081Z [INFO] user-service - Auth event: login_success - User: user_1083 - IP: 192.168.189.103 - RequestID: bmfu322689 +2025-06-18T15:09:45.181Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 47ms - Rows affected: 94 - RequestID: ta3nyx7ntj +2025-06-18T15:09:45.281Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 1023ms - RequestID: kr86u20zku +2025-06-18T15:09:45.381Z [DEBUG] notification-service - Auth event: login_success - User: user_1096 - IP: 192.168.211.72 - RequestID: 8z2ix71mbq6 +2025-06-18T15:09:45.481Z [DEBUG] order-service - Operation: email_sent - Processing time: 602ms - RequestID: k37p17hrm3s +2025-06-18T15:09:45.581Z [TRACE] payment-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.194.41 - RequestID: iea8cc82sa +2025-06-18T15:09:45.681Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 270ms - RequestID: jlq9qdxn5p +2025-06-18T15:09:45.781Z [INFO] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 404ms - IP: 192.168.138.123 - User: user_1014 - RequestID: p3r6hujav3c +2025-06-18T15:09:45.881Z [INFO] payment-service - Database DELETE on payments - Execution time: 35ms - Rows affected: 7 - RequestID: w4e2uwz43j8 +2025-06-18T15:09:45.981Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 355ms - Rows affected: 5 - RequestID: s6cewesfig8 +2025-06-18T15:09:46.081Z [TRACE] user-service - GET /api/v1/inventory - Status: 503 - Response time: 676ms - IP: 192.168.229.123 - User: user_1005 - RequestID: 2583v85ek5m +2025-06-18T15:09:46.181Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 424ms - Rows affected: 4 - RequestID: p5j0lvj22kp +2025-06-18T15:09:46.281Z [TRACE] payment-service - Operation: cache_hit - Processing time: 706ms - RequestID: ppiu3xqo7qh +2025-06-18T15:09:46.381Z [INFO] auth-service - Database DELETE on users - Execution time: 172ms - Rows affected: 10 - RequestID: i63j8eckcu +2025-06-18T15:09:46.481Z [INFO] user-service - Operation: order_created - Processing time: 173ms - RequestID: gez2xb0a2hw +2025-06-18T15:09:46.581Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 403 - Response time: 166ms - IP: 192.168.181.225 - User: user_1023 - RequestID: 8si8jezse3g +2025-06-18T15:09:46.681Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 502 - Response time: 283ms - IP: 192.168.68.158 - User: user_1015 - RequestID: jkchbbtawe +2025-06-18T15:09:46.781Z [TRACE] order-service - Operation: order_created - Processing time: 260ms - RequestID: 2r10cse5ek4 +2025-06-18T15:09:46.881Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 231ms - Rows affected: 96 - RequestID: s6cdsei3qei +2025-06-18T15:09:46.981Z [INFO] notification-service - Operation: inventory_updated - Processing time: 587ms - RequestID: ze68jc3ykt +2025-06-18T15:09:47.081Z [TRACE] payment-service - Database SELECT on products - Execution time: 37ms - Rows affected: 57 - RequestID: r4e4pb353kp +2025-06-18T15:09:47.181Z [TRACE] payment-service - DELETE /api/v1/orders - Status: 503 - Response time: 1422ms - IP: 192.168.227.77 - User: user_1079 - RequestID: 6brkos0nb49 +2025-06-18T15:09:47.281Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 201 - Response time: 451ms - IP: 192.168.158.144 - User: user_1045 - RequestID: ncn59jigog +2025-06-18T15:09:47.381Z [DEBUG] user-service - Database SELECT on users - Execution time: 389ms - Rows affected: 59 - RequestID: jc1guiteaxm +2025-06-18T15:09:47.481Z [TRACE] notification-service - Operation: notification_queued - Processing time: 259ms - RequestID: sbp448bmvun +2025-06-18T15:09:47.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 89ms - RequestID: o0kps4olar8 +2025-06-18T15:09:47.681Z [TRACE] user-service - Operation: webhook_sent - Processing time: 959ms - RequestID: doyucrbzjn +2025-06-18T15:09:47.781Z [DEBUG] user-service - Auth event: login_success - User: user_1038 - IP: 192.168.11.60 - RequestID: 80i5u2nsljq +2025-06-18T15:09:47.881Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 715ms - RequestID: 2lexucznxhs +2025-06-18T15:09:47.981Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1705ms - IP: 192.168.97.87 - User: user_1085 - RequestID: zrqa4oycq5t +2025-06-18T15:09:48.081Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 481ms - Rows affected: 74 - RequestID: 4qmoedom29q +2025-06-18T15:09:48.181Z [DEBUG] user-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.229.123 - RequestID: 5btk3tqwb7w +2025-06-18T15:09:48.281Z [DEBUG] user-service - Database SELECT on payments - Execution time: 70ms - Rows affected: 65 - RequestID: xovm6tybhok +2025-06-18T15:09:48.381Z [DEBUG] payment-service - Auth event: login_success - User: user_1001 - IP: 192.168.10.184 - RequestID: 6b1l9gn8ecq +2025-06-18T15:09:48.481Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 35ms - Rows affected: 5 - RequestID: 6t6w86anvpe +2025-06-18T15:09:48.581Z [INFO] user-service - Auth event: login_failed - User: user_1061 - IP: 192.168.68.158 - RequestID: ijqnsfn2wma +2025-06-18T15:09:48.681Z [INFO] notification-service - Auth event: login_success - User: user_1097 - IP: 192.168.141.100 - RequestID: dyzhy39ktpg +2025-06-18T15:09:48.781Z [DEBUG] payment-service - Auth event: login_success - User: user_1005 - IP: 192.168.240.169 - RequestID: r3gyb6wkza +2025-06-18T15:09:48.881Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 249ms - Rows affected: 26 - RequestID: n6q5nzp2jib +2025-06-18T15:09:48.981Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 273ms - IP: 192.168.104.37 - User: user_1058 - RequestID: w1q2sfot9ea +2025-06-18T15:09:49.081Z [INFO] user-service - Operation: payment_processed - Processing time: 292ms - RequestID: in96rqec5w9 +2025-06-18T15:09:49.181Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 281ms - Rows affected: 48 - RequestID: 6oso80eoj7d +2025-06-18T15:09:49.281Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 500 - Response time: 1479ms - IP: 192.168.81.206 - User: user_1072 - RequestID: b424m9d5yr +2025-06-18T15:09:49.381Z [TRACE] notification-service - Auth event: logout - User: user_1063 - IP: 192.168.138.123 - RequestID: e6wa8mu9kic +2025-06-18T15:09:49.481Z [INFO] order-service - Operation: cache_hit - Processing time: 700ms - RequestID: lbg29jbh16 +2025-06-18T15:09:49.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 121ms - RequestID: e0auc6o5kze +2025-06-18T15:09:49.681Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 400 - Response time: 1409ms - IP: 192.168.11.60 - User: user_1012 - RequestID: is06p5jtrmi +2025-06-18T15:09:49.781Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 503 - Response time: 186ms - IP: 192.168.68.158 - User: user_1022 - RequestID: 3sjzogxxeqc +2025-06-18T15:09:49.881Z [INFO] inventory-service - Database SELECT on products - Execution time: 63ms - Rows affected: 32 - RequestID: 2lhqyodeng +2025-06-18T15:09:49.981Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 618ms - RequestID: habr15z0wi4 +2025-06-18T15:09:50.081Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 455ms - Rows affected: 50 - RequestID: bvlfup25q1a +2025-06-18T15:09:50.181Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 200 - Response time: 1327ms - IP: 192.168.79.141 - User: user_1042 - RequestID: nyf6ejz3oc +2025-06-18T15:09:50.281Z [TRACE] notification-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.100.240 - RequestID: xr17tga060l +2025-06-18T15:09:50.381Z [DEBUG] order-service - DELETE /api/v1/users - Status: 403 - Response time: 1923ms - IP: 192.168.227.77 - User: user_1083 - RequestID: 8pfu65mevj +2025-06-18T15:09:50.481Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 412ms - Rows affected: 64 - RequestID: t8erm2vilsr +2025-06-18T15:09:50.581Z [TRACE] payment-service - Database SELECT on products - Execution time: 303ms - Rows affected: 70 - RequestID: r81ttvm32x +2025-06-18T15:09:50.681Z [INFO] user-service - POST /api/v1/auth/login - Status: 503 - Response time: 1370ms - IP: 192.168.113.218 - User: user_1090 - RequestID: grzyrx1zeh +2025-06-18T15:09:50.781Z [INFO] payment-service - Operation: cache_miss - Processing time: 59ms - RequestID: j3odbpdqbee +2025-06-18T15:09:50.881Z [TRACE] user-service - Operation: email_sent - Processing time: 298ms - RequestID: ax60gn7fj87 +2025-06-18T15:09:50.981Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 33ms - Rows affected: 97 - RequestID: nxf15h6h8ih +2025-06-18T15:09:51.081Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 322ms - Rows affected: 93 - RequestID: kqn2pscvvuf +2025-06-18T15:09:51.181Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 246ms - Rows affected: 45 - RequestID: iedh6prxmbh +2025-06-18T15:09:51.281Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1575ms - IP: 192.168.211.72 - User: user_1011 - RequestID: gz86gk2g41v +2025-06-18T15:09:51.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.79.143 - RequestID: ic1ff9b9e9l +2025-06-18T15:09:51.481Z [TRACE] auth-service - Operation: email_sent - Processing time: 273ms - RequestID: 1i2am5x5wdr +2025-06-18T15:09:51.581Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 342ms - Rows affected: 65 - RequestID: j9lm5njb4p +2025-06-18T15:09:51.681Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 552ms - RequestID: q1cgdn5mzgh +2025-06-18T15:09:51.781Z [TRACE] order-service - Database INSERT on products - Execution time: 361ms - Rows affected: 6 - RequestID: it09xg7lzss +2025-06-18T15:09:51.881Z [INFO] auth-service - Operation: payment_processed - Processing time: 170ms - RequestID: 7gbl1z317jw +2025-06-18T15:09:51.981Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 401ms - RequestID: xtbmlsslps +2025-06-18T15:09:52.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.167.32 - RequestID: qms0rq1cidl +2025-06-18T15:09:52.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 164ms - RequestID: 4lea7ui67zb +2025-06-18T15:09:52.281Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 183ms - Rows affected: 55 - RequestID: 6fkkqayktnx +2025-06-18T15:09:52.381Z [TRACE] order-service - Operation: payment_processed - Processing time: 1017ms - RequestID: 645b23bwumi +2025-06-18T15:09:52.481Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 40ms - Rows affected: 15 - RequestID: mrg4022232 +2025-06-18T15:09:52.581Z [INFO] order-service - Database DELETE on sessions - Execution time: 313ms - Rows affected: 36 - RequestID: kr0ijc2uj8k +2025-06-18T15:09:52.681Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 303ms - Rows affected: 24 - RequestID: ezynekw2437 +2025-06-18T15:09:52.781Z [DEBUG] notification-service - Database DELETE on products - Execution time: 85ms - Rows affected: 53 - RequestID: s7wq291gef +2025-06-18T15:09:52.881Z [TRACE] payment-service - Database DELETE on payments - Execution time: 249ms - Rows affected: 4 - RequestID: rgsbcms0l8 +2025-06-18T15:09:52.981Z [TRACE] user-service - Database UPDATE on payments - Execution time: 439ms - Rows affected: 51 - RequestID: fezbt7fa1he +2025-06-18T15:09:53.081Z [TRACE] order-service - Operation: email_sent - Processing time: 782ms - RequestID: am6u2eczr18 +2025-06-18T15:09:53.181Z [INFO] notification-service - POST /api/v1/inventory - Status: 503 - Response time: 285ms - IP: 192.168.232.72 - User: user_1072 - RequestID: 305q2nofwlu +2025-06-18T15:09:53.281Z [INFO] notification-service - DELETE /api/v1/users - Status: 401 - Response time: 986ms - IP: 192.168.28.146 - User: user_1011 - RequestID: 49djza4k0tf +2025-06-18T15:09:53.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 858ms - RequestID: 5wk11k4rf44 +2025-06-18T15:09:53.481Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 346ms - Rows affected: 75 - RequestID: nrjsu98olbr +2025-06-18T15:09:53.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.1.152 - RequestID: vrpuswiaux +2025-06-18T15:09:53.681Z [INFO] order-service - Operation: order_created - Processing time: 451ms - RequestID: sui1adiwcu +2025-06-18T15:09:53.781Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 237ms - Rows affected: 89 - RequestID: 3jtw8g9to1g +2025-06-18T15:09:53.881Z [INFO] auth-service - Operation: notification_queued - Processing time: 657ms - RequestID: 5xjw6vnh2x6 +2025-06-18T15:09:53.981Z [INFO] notification-service - Auth event: login_success - User: user_1053 - IP: 192.168.32.38 - RequestID: pu5gvyv0cgs +2025-06-18T15:09:54.081Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 698ms - RequestID: hsmawtcha1a +2025-06-18T15:09:54.181Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 618ms - RequestID: qa1oei3nvfh +2025-06-18T15:09:54.281Z [INFO] auth-service - Auth event: login_success - User: user_1047 - IP: 192.168.13.72 - RequestID: iy1o3z7tepk +2025-06-18T15:09:54.381Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1047ms - IP: 192.168.211.72 - User: user_1095 - RequestID: 69r61jtm2w8 +2025-06-18T15:09:54.481Z [TRACE] payment-service - Auth event: login_failed - User: user_1002 - IP: 192.168.194.41 - RequestID: hjed2fcp27b +2025-06-18T15:09:54.581Z [INFO] order-service - POST /api/v1/users - Status: 500 - Response time: 1420ms - IP: 192.168.85.229 - User: user_1071 - RequestID: n8i9frsom6 +2025-06-18T15:09:54.681Z [INFO] notification-service - PATCH /api/v1/payments - Status: 401 - Response time: 130ms - IP: 192.168.1.152 - User: user_1037 - RequestID: 8vgmcxq7lxr +2025-06-18T15:09:54.781Z [TRACE] inventory-service - Auth event: login_failed - User: user_1022 - IP: 192.168.64.33 - RequestID: 952vaqe74lj +2025-06-18T15:09:54.881Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 13ms - Rows affected: 75 - RequestID: vutsokwr7b8 +2025-06-18T15:09:54.981Z [DEBUG] inventory-service - PUT /api/v1/users - Status: 200 - Response time: 1333ms - IP: 192.168.31.117 - User: user_1013 - RequestID: uh9z2ih147q +2025-06-18T15:09:55.081Z [INFO] inventory-service - POST /api/v1/orders - Status: 401 - Response time: 1899ms - IP: 192.168.33.76 - User: user_1021 - RequestID: jv288cpk29o +2025-06-18T15:09:55.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 391ms - RequestID: f0bh30akp3 +2025-06-18T15:09:55.281Z [INFO] auth-service - Auth event: password_change - User: user_1099 - IP: 192.168.141.100 - RequestID: lryy2257svm +2025-06-18T15:09:55.381Z [INFO] notification-service - Auth event: login_success - User: user_1030 - IP: 192.168.174.114 - RequestID: ul5f79aceqm +2025-06-18T15:09:55.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.81.206 - RequestID: bcaknjyflor +2025-06-18T15:09:55.581Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 502 - Response time: 1660ms - IP: 192.168.144.38 - User: user_1094 - RequestID: yctih8e61v +2025-06-18T15:09:55.681Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 191ms - Rows affected: 12 - RequestID: 5i7hxh3214v +2025-06-18T15:09:55.781Z [INFO] notification-service - Auth event: login_failed - User: user_1035 - IP: 192.168.68.128 - RequestID: 04nndbj58fr2 +2025-06-18T15:09:55.881Z [DEBUG] order-service - Database UPDATE on users - Execution time: 24ms - Rows affected: 99 - RequestID: kaldf6fzw9n +2025-06-18T15:09:55.981Z [INFO] order-service - PUT /api/v1/users - Status: 404 - Response time: 1568ms - IP: 192.168.64.33 - User: user_1009 - RequestID: twv6kfa1li +2025-06-18T15:09:56.081Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 355ms - IP: 192.168.141.100 - User: user_1046 - RequestID: 1dlt2817hpij +2025-06-18T15:09:56.181Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 140ms - Rows affected: 35 - RequestID: en07q118vs +2025-06-18T15:09:56.281Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 400 - Response time: 1554ms - IP: 192.168.147.171 - User: user_1010 - RequestID: 09ah97z4r5mi +2025-06-18T15:09:56.381Z [DEBUG] notification-service - POST /api/v1/payments - Status: 200 - Response time: 750ms - IP: 192.168.79.141 - User: user_1036 - RequestID: p9wu7l166y +2025-06-18T15:09:56.481Z [TRACE] user-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.196.226 - RequestID: 42hapnws7xt +2025-06-18T15:09:56.581Z [DEBUG] order-service - Auth event: logout - User: user_1034 - IP: 192.168.100.240 - RequestID: fwkfe2rzwht +2025-06-18T15:09:56.681Z [DEBUG] order-service - Auth event: login_success - User: user_1019 - IP: 192.168.32.38 - RequestID: bhsnr7ns7j6 +2025-06-18T15:09:56.781Z [INFO] notification-service - Database SELECT on sessions - Execution time: 245ms - Rows affected: 40 - RequestID: pn2bgyoi48p +2025-06-18T15:09:56.881Z [TRACE] notification-service - Operation: cache_hit - Processing time: 624ms - RequestID: bbw3gt5fllj +2025-06-18T15:09:56.981Z [INFO] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 1404ms - IP: 192.168.144.38 - User: user_1086 - RequestID: tsors29kbl8 +2025-06-18T15:09:57.081Z [INFO] payment-service - Database UPDATE on payments - Execution time: 41ms - Rows affected: 45 - RequestID: x2dz4ilh8k +2025-06-18T15:09:57.181Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 400 - Response time: 499ms - IP: 192.168.53.133 - User: user_1084 - RequestID: mhb6vtp1eo +2025-06-18T15:09:57.281Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1138ms - IP: 192.168.97.87 - User: user_1087 - RequestID: ew1w6suwepj +2025-06-18T15:09:57.381Z [INFO] user-service - Database INSERT on sessions - Execution time: 19ms - Rows affected: 99 - RequestID: 0zysex0806zr +2025-06-18T15:09:57.481Z [INFO] notification-service - Auth event: logout - User: user_1054 - IP: 192.168.14.77 - RequestID: tlehqiwaz2h +2025-06-18T15:09:57.581Z [INFO] user-service - GET /api/v1/auth/logout - Status: 401 - Response time: 63ms - IP: 192.168.235.117 - User: user_1072 - RequestID: gskutcj9co +2025-06-18T15:09:57.681Z [TRACE] user-service - Auth event: login_success - User: user_1043 - IP: 192.168.100.240 - RequestID: rq8murilps +2025-06-18T15:09:57.781Z [TRACE] order-service - Operation: payment_processed - Processing time: 795ms - RequestID: ggbbv0s8ep5 +2025-06-18T15:09:57.881Z [INFO] notification-service - Auth event: password_change - User: user_1001 - IP: 192.168.196.226 - RequestID: j8j8d4g3n2b +2025-06-18T15:09:57.981Z [INFO] notification-service - Database DELETE on sessions - Execution time: 68ms - Rows affected: 57 - RequestID: fh7es9kj2wv +2025-06-18T15:09:58.081Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1219ms - IP: 192.168.147.171 - User: user_1054 - RequestID: 1w6mk9jbokb +2025-06-18T15:09:58.181Z [INFO] payment-service - GET /api/v1/payments - Status: 500 - Response time: 472ms - IP: 192.168.235.117 - User: user_1098 - RequestID: 76qhp3qaghv +2025-06-18T15:09:58.281Z [INFO] auth-service - Auth event: logout - User: user_1012 - IP: 192.168.158.144 - RequestID: 0fqv04ztlyp5 +2025-06-18T15:09:58.381Z [TRACE] order-service - Database DELETE on users - Execution time: 6ms - Rows affected: 76 - RequestID: xpv54th9eq +2025-06-18T15:09:58.481Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1211ms - IP: 192.168.68.128 - User: user_1080 - RequestID: jx1unbnrai +2025-06-18T15:09:58.581Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 363ms - Rows affected: 99 - RequestID: y1hzvevhw2q +2025-06-18T15:09:58.681Z [DEBUG] notification-service - Operation: email_sent - Processing time: 62ms - RequestID: sb38xbr3tcl +2025-06-18T15:09:58.781Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 466ms - Rows affected: 69 - RequestID: 5mzfz06uqqc +2025-06-18T15:09:58.881Z [INFO] user-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1297ms - IP: 192.168.14.77 - User: user_1074 - RequestID: jtrc83rpl8 +2025-06-18T15:09:58.981Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 492ms - Rows affected: 12 - RequestID: sh0l2278ik +2025-06-18T15:09:59.081Z [INFO] order-service - PUT /api/v1/orders - Status: 400 - Response time: 1874ms - IP: 192.168.227.233 - User: user_1087 - RequestID: n3xqi90ke4p +2025-06-18T15:09:59.181Z [TRACE] user-service - Auth event: login_failed - User: user_1058 - IP: 192.168.79.143 - RequestID: x6firw47epn +2025-06-18T15:09:59.281Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1824ms - IP: 192.168.147.171 - User: user_1056 - RequestID: kk6tax241wa +2025-06-18T15:09:59.381Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 435ms - RequestID: gtxtcq3eram +2025-06-18T15:09:59.481Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 100ms - Rows affected: 96 - RequestID: n2bw2c906w +2025-06-18T15:09:59.581Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 63ms - Rows affected: 82 - RequestID: 4jb0vw00p7r +2025-06-18T15:09:59.681Z [TRACE] user-service - Database DELETE on products - Execution time: 394ms - Rows affected: 44 - RequestID: lv69wvdtky +2025-06-18T15:09:59.781Z [DEBUG] notification-service - Operation: order_created - Processing time: 428ms - RequestID: obn6qj80jy9 +2025-06-18T15:09:59.881Z [TRACE] user-service - PUT /api/v1/users - Status: 502 - Response time: 1962ms - IP: 192.168.147.171 - User: user_1068 - RequestID: urpoper3ok +2025-06-18T15:09:59.981Z [TRACE] notification-service - Database DELETE on payments - Execution time: 16ms - Rows affected: 55 - RequestID: 8g2fcfqte1i +2025-06-18T15:10:00.081Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 404 - Response time: 222ms - IP: 192.168.33.76 - User: user_1053 - RequestID: wehzieqp1ga +2025-06-18T15:10:00.181Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 500 - Response time: 1072ms - IP: 192.168.79.143 - User: user_1048 - RequestID: 27kxtu2w1jy +2025-06-18T15:10:00.281Z [TRACE] user-service - Operation: webhook_sent - Processing time: 751ms - RequestID: fkoyyth14u +2025-06-18T15:10:00.381Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 937ms - RequestID: l2r7a7q1p6h +2025-06-18T15:10:00.481Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 287ms - Rows affected: 27 - RequestID: 9rm2a6710kh +2025-06-18T15:10:00.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1029 - IP: 192.168.32.38 - RequestID: uiz5jjje9an +2025-06-18T15:10:00.681Z [INFO] notification-service - GET /api/v1/payments - Status: 403 - Response time: 1631ms - IP: 192.168.68.128 - User: user_1078 - RequestID: kdy1p8492i8 +2025-06-18T15:10:00.781Z [INFO] user-service - Auth event: logout - User: user_1064 - IP: 192.168.44.5 - RequestID: xquh9ym3tgb +2025-06-18T15:10:00.881Z [INFO] user-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.196.226 - RequestID: rcc2lvr2wxk +2025-06-18T15:10:00.981Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 338ms - Rows affected: 0 - RequestID: 0s9ivsy2uvhi +2025-06-18T15:10:01.081Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 195ms - Rows affected: 52 - RequestID: lhy5lbhdvmf +2025-06-18T15:10:01.181Z [INFO] inventory-service - Operation: order_created - Processing time: 873ms - RequestID: gaog2iy0bxu +2025-06-18T15:10:01.281Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 503 - Response time: 1889ms - IP: 192.168.159.94 - User: user_1011 - RequestID: 28tptizmt3p +2025-06-18T15:10:01.381Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 317ms - RequestID: xzct8vx023 +2025-06-18T15:10:01.481Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 339ms - Rows affected: 35 - RequestID: 96uqe4p2kok +2025-06-18T15:10:01.581Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 430ms - RequestID: t9r9wreiv3d +2025-06-18T15:10:01.681Z [INFO] notification-service - Database UPDATE on orders - Execution time: 492ms - Rows affected: 43 - RequestID: 81d5jroazn7 +2025-06-18T15:10:01.781Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 106ms - Rows affected: 80 - RequestID: m4ghjop5m0h +2025-06-18T15:10:01.881Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 201 - Response time: 305ms - IP: 192.168.113.218 - User: user_1038 - RequestID: ghcrocgslx +2025-06-18T15:10:01.981Z [DEBUG] payment-service - Auth event: login_failed - User: user_1028 - IP: 192.168.30.79 - RequestID: vwa9os861r +2025-06-18T15:10:02.081Z [INFO] inventory-service - POST /api/v1/payments - Status: 502 - Response time: 1594ms - IP: 192.168.64.33 - User: user_1057 - RequestID: 402jxh94a14 +2025-06-18T15:10:02.181Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 528ms - RequestID: 1r83csv4wx5 +2025-06-18T15:10:02.281Z [DEBUG] order-service - Database DELETE on payments - Execution time: 476ms - Rows affected: 19 - RequestID: iriax44hez +2025-06-18T15:10:02.381Z [DEBUG] order-service - Auth event: password_change - User: user_1033 - IP: 192.168.235.117 - RequestID: o65g7l5fh8 +2025-06-18T15:10:02.481Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.46.63 - RequestID: yarbn4pto08 +2025-06-18T15:10:02.581Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 571ms - RequestID: yeppa4a4xn +2025-06-18T15:10:02.681Z [INFO] order-service - Operation: webhook_sent - Processing time: 740ms - RequestID: 1tn6ggezemj +2025-06-18T15:10:02.781Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 812ms - IP: 192.168.68.128 - User: user_1095 - RequestID: 4vvx9ainied +2025-06-18T15:10:02.881Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 402ms - RequestID: u14uyeh28al +2025-06-18T15:10:02.981Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 50ms - Rows affected: 78 - RequestID: spkhhmltveh +2025-06-18T15:10:03.081Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1372ms - IP: 192.168.170.215 - User: user_1098 - RequestID: nurbr1syelk +2025-06-18T15:10:03.181Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.31.117 - RequestID: a4cq181nhi +2025-06-18T15:10:03.281Z [TRACE] user-service - Auth event: password_change - User: user_1079 - IP: 192.168.46.63 - RequestID: aknecgy60w +2025-06-18T15:10:03.381Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 787ms - RequestID: 8nu87pq3nai +2025-06-18T15:10:03.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 354ms - RequestID: tvk0rws1ij +2025-06-18T15:10:03.581Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 396ms - Rows affected: 95 - RequestID: i90xinucdil +2025-06-18T15:10:03.681Z [INFO] notification-service - Auth event: logout - User: user_1006 - IP: 192.168.104.37 - RequestID: 64m0mlx4h9r +2025-06-18T15:10:03.781Z [TRACE] notification-service - Database INSERT on payments - Execution time: 390ms - Rows affected: 19 - RequestID: qlzju7a1199 +2025-06-18T15:10:03.881Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 404ms - IP: 192.168.242.165 - User: user_1025 - RequestID: dzc45egtcfh +2025-06-18T15:10:03.981Z [DEBUG] order-service - Operation: notification_queued - Processing time: 510ms - RequestID: lbz3v0yuhe9 +2025-06-18T15:10:04.081Z [INFO] payment-service - Operation: email_sent - Processing time: 384ms - RequestID: cy43qd641d7 +2025-06-18T15:10:04.181Z [INFO] order-service - GET /api/v1/orders - Status: 503 - Response time: 1329ms - IP: 192.168.227.233 - User: user_1032 - RequestID: tmmh7hsnjkh +2025-06-18T15:10:04.281Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 406ms - RequestID: hqcjkp5up5l +2025-06-18T15:10:04.381Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 502 - Response time: 556ms - IP: 192.168.13.72 - User: user_1084 - RequestID: uabtbl7ku6q +2025-06-18T15:10:04.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.64.33 - RequestID: eqdxzyks44t +2025-06-18T15:10:04.581Z [TRACE] notification-service - Database SELECT on products - Execution time: 66ms - Rows affected: 20 - RequestID: lpizcmwvdzh +2025-06-18T15:10:04.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.181.225 - RequestID: zefv1a6ptao +2025-06-18T15:10:04.781Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 490ms - RequestID: wmnvhd8blw +2025-06-18T15:10:04.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1028 - IP: 192.168.64.33 - RequestID: 8vb4qpg0n9l +2025-06-18T15:10:04.981Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 37ms - Rows affected: 96 - RequestID: t8my36q4df +2025-06-18T15:10:05.081Z [INFO] user-service - Operation: webhook_sent - Processing time: 432ms - RequestID: 0e3pnrnzrz6v +2025-06-18T15:10:05.181Z [TRACE] payment-service - Operation: email_sent - Processing time: 268ms - RequestID: 7sstlnsh7p5 +2025-06-18T15:10:05.281Z [TRACE] auth-service - Database DELETE on payments - Execution time: 225ms - Rows affected: 43 - RequestID: p80wr4kr9d +2025-06-18T15:10:05.381Z [DEBUG] order-service - Auth event: logout - User: user_1022 - IP: 192.168.141.100 - RequestID: ge2c8g50mb5 +2025-06-18T15:10:05.481Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 256ms - RequestID: mjaodtnjj +2025-06-18T15:10:05.581Z [INFO] auth-service - Database SELECT on payments - Execution time: 322ms - Rows affected: 19 - RequestID: u2exjua5zjf +2025-06-18T15:10:05.681Z [DEBUG] user-service - Auth event: login_failed - User: user_1022 - IP: 192.168.167.32 - RequestID: kq0njr4tr4 +2025-06-18T15:10:05.781Z [DEBUG] notification-service - Database SELECT on products - Execution time: 404ms - Rows affected: 20 - RequestID: ptq8rtlxfk +2025-06-18T15:10:05.881Z [TRACE] order-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.53.133 - RequestID: uqdrrvv456 +2025-06-18T15:10:05.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1030 - IP: 192.168.64.33 - RequestID: s8vpj2sxz3j +2025-06-18T15:10:06.081Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 76ms - IP: 192.168.194.41 - User: user_1012 - RequestID: nir3jo23jhh +2025-06-18T15:10:06.181Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 404 - Response time: 497ms - IP: 192.168.133.7 - User: user_1020 - RequestID: q955wm6wwuc +2025-06-18T15:10:06.281Z [DEBUG] order-service - Auth event: password_change - User: user_1078 - IP: 192.168.79.143 - RequestID: fezjz9r9rwc +2025-06-18T15:10:06.381Z [TRACE] order-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.194.41 - RequestID: 6wrtc2jjawa +2025-06-18T15:10:06.481Z [TRACE] notification-service - Database DELETE on payments - Execution time: 117ms - Rows affected: 14 - RequestID: ell4h479t3 +2025-06-18T15:10:06.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1082 - IP: 192.168.53.133 - RequestID: wqw3ig0p8ug +2025-06-18T15:10:06.681Z [DEBUG] user-service - Database INSERT on products - Execution time: 12ms - Rows affected: 53 - RequestID: yf1rdbiggv +2025-06-18T15:10:06.781Z [DEBUG] user-service - Operation: notification_queued - Processing time: 640ms - RequestID: uauztw0d8gk +2025-06-18T15:10:06.881Z [TRACE] order-service - Auth event: logout - User: user_1011 - IP: 192.168.189.103 - RequestID: yj46fwp8xod +2025-06-18T15:10:06.981Z [DEBUG] notification-service - Operation: email_sent - Processing time: 574ms - RequestID: ree4l57xcm +2025-06-18T15:10:07.081Z [INFO] user-service - PUT /api/v1/payments - Status: 200 - Response time: 63ms - IP: 192.168.196.226 - User: user_1022 - RequestID: b7tpbyvmcy9 +2025-06-18T15:10:07.181Z [TRACE] order-service - POST /api/v1/users - Status: 503 - Response time: 1087ms - IP: 192.168.46.63 - User: user_1005 - RequestID: 9a0e8f10ee +2025-06-18T15:10:07.281Z [TRACE] notification-service - Operation: cache_miss - Processing time: 1004ms - RequestID: xakrk4ta45j +2025-06-18T15:10:07.381Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 17ms - Rows affected: 94 - RequestID: x9rbynuarp +2025-06-18T15:10:07.481Z [DEBUG] order-service - Database DELETE on orders - Execution time: 266ms - Rows affected: 24 - RequestID: g5csfyyxqb7 +2025-06-18T15:10:07.581Z [INFO] auth-service - Auth event: password_change - User: user_1053 - IP: 192.168.64.33 - RequestID: 931vj23mkib +2025-06-18T15:10:07.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.44.5 - RequestID: bxjdx69xofo +2025-06-18T15:10:07.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.181.225 - RequestID: 1gvhefv6weo +2025-06-18T15:10:07.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 801ms - RequestID: yrlw7zziv9 +2025-06-18T15:10:07.981Z [INFO] payment-service - Database DELETE on payments - Execution time: 379ms - Rows affected: 19 - RequestID: wzrzs41jv2 +2025-06-18T15:10:08.081Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 125ms - Rows affected: 58 - RequestID: zop55pudii +2025-06-18T15:10:08.181Z [TRACE] user-service - POST /api/v1/inventory - Status: 401 - Response time: 534ms - IP: 192.168.141.100 - User: user_1017 - RequestID: kuty662153r +2025-06-18T15:10:08.281Z [INFO] order-service - Auth event: login_success - User: user_1000 - IP: 192.168.30.79 - RequestID: yb2fqfqqi8l +2025-06-18T15:10:08.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 562ms - RequestID: 2cjjj33d3ek +2025-06-18T15:10:08.481Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 19ms - IP: 192.168.187.199 - User: user_1012 - RequestID: 7czqqplv3fm +2025-06-18T15:10:08.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 225ms - RequestID: ig7kc1kta87 +2025-06-18T15:10:08.681Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 659ms - IP: 192.168.14.77 - User: user_1069 - RequestID: yyxtpa33j8j +2025-06-18T15:10:08.781Z [TRACE] payment-service - Database SELECT on products - Execution time: 270ms - Rows affected: 8 - RequestID: zz3jd49h6rp +2025-06-18T15:10:08.881Z [TRACE] notification-service - Operation: cache_hit - Processing time: 342ms - RequestID: o53may3wf5i +2025-06-18T15:10:08.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.232.72 - RequestID: m6issbeeno +2025-06-18T15:10:09.081Z [INFO] notification-service - PUT /api/v1/users - Status: 404 - Response time: 1389ms - IP: 192.168.227.77 - User: user_1091 - RequestID: mxtjzqk7c6 +2025-06-18T15:10:09.181Z [INFO] inventory-service - Operation: cache_miss - Processing time: 724ms - RequestID: yrv0xk3ek68 +2025-06-18T15:10:09.281Z [INFO] notification-service - Operation: notification_queued - Processing time: 1023ms - RequestID: 1stqivxmq0ri +2025-06-18T15:10:09.381Z [DEBUG] auth-service - Auth event: logout - User: user_1092 - IP: 192.168.33.76 - RequestID: 21obk1b52f6 +2025-06-18T15:10:09.481Z [DEBUG] inventory-service - Operation: order_created - Processing time: 767ms - RequestID: bj1vedtpmx +2025-06-18T15:10:09.581Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 10ms - Rows affected: 3 - RequestID: 6pr68i4kqeq +2025-06-18T15:10:09.681Z [INFO] notification-service - PUT /api/v1/payments - Status: 503 - Response time: 1453ms - IP: 192.168.46.63 - User: user_1088 - RequestID: lbfiv2asf5r +2025-06-18T15:10:09.781Z [INFO] order-service - Database DELETE on products - Execution time: 378ms - Rows affected: 87 - RequestID: xxwtssg23g +2025-06-18T15:10:09.881Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 223ms - RequestID: 2klq8w0qupt +2025-06-18T15:10:09.981Z [INFO] order-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.36.218 - RequestID: c9orml3blw +2025-06-18T15:10:10.081Z [TRACE] user-service - Operation: notification_queued - Processing time: 237ms - RequestID: 4cesc2sma22 +2025-06-18T15:10:10.181Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 500 - Response time: 1192ms - IP: 192.168.138.123 - User: user_1098 - RequestID: ehbh12wasn +2025-06-18T15:10:10.281Z [INFO] inventory-service - Database UPDATE on users - Execution time: 347ms - Rows affected: 37 - RequestID: gnzo0jrojzg +2025-06-18T15:10:10.381Z [TRACE] user-service - Operation: email_sent - Processing time: 516ms - RequestID: qcyxl1r6kol +2025-06-18T15:10:10.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 100ms - RequestID: 66w0ikoy6yj +2025-06-18T15:10:10.581Z [INFO] order-service - Database SELECT on payments - Execution time: 148ms - Rows affected: 48 - RequestID: ijlsoolc28 +2025-06-18T15:10:10.681Z [TRACE] inventory-service - Auth event: logout - User: user_1099 - IP: 192.168.227.233 - RequestID: vjgsp3971bn +2025-06-18T15:10:10.781Z [DEBUG] notification-service - GET /api/v1/users - Status: 403 - Response time: 683ms - IP: 192.168.174.114 - User: user_1067 - RequestID: r98vsl95ui +2025-06-18T15:10:10.881Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 416ms - Rows affected: 66 - RequestID: 4pmogicbg1f +2025-06-18T15:10:10.981Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 320ms - Rows affected: 23 - RequestID: sdywkgug4d +2025-06-18T15:10:11.081Z [INFO] order-service - GET /api/v1/orders - Status: 201 - Response time: 597ms - IP: 192.168.159.94 - User: user_1050 - RequestID: qic0g704hd +2025-06-18T15:10:11.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1085 - IP: 192.168.68.158 - RequestID: tlsmcj8118 +2025-06-18T15:10:11.281Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 242ms - Rows affected: 2 - RequestID: gt0gv5wtr1o +2025-06-18T15:10:11.381Z [INFO] order-service - Auth event: logout - User: user_1069 - IP: 192.168.79.143 - RequestID: 7wzuwwt3c6s +2025-06-18T15:10:11.481Z [INFO] payment-service - Auth event: login_failed - User: user_1073 - IP: 192.168.247.134 - RequestID: w9npr4mcwuq +2025-06-18T15:10:11.581Z [TRACE] auth-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.144.38 - RequestID: cq6xh20f1a +2025-06-18T15:10:11.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.79.116 - RequestID: 6tnkk1geitk +2025-06-18T15:10:11.781Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 84ms - Rows affected: 39 - RequestID: j7ufzfwa2sn +2025-06-18T15:10:11.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.97.87 - RequestID: acgwk1g2486 +2025-06-18T15:10:11.981Z [TRACE] auth-service - Operation: payment_processed - Processing time: 595ms - RequestID: 1fv0rtmgtbs +2025-06-18T15:10:12.081Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.1.152 - RequestID: m6tlken0dm +2025-06-18T15:10:12.181Z [INFO] order-service - Operation: payment_processed - Processing time: 617ms - RequestID: 2coeicig48a +2025-06-18T15:10:12.281Z [INFO] payment-service - PUT /api/v1/orders - Status: 401 - Response time: 220ms - IP: 192.168.68.128 - User: user_1025 - RequestID: mic7h2z4fm +2025-06-18T15:10:12.381Z [TRACE] user-service - Auth event: logout - User: user_1011 - IP: 192.168.68.128 - RequestID: tzhc0683bx +2025-06-18T15:10:12.481Z [TRACE] order-service - Operation: order_created - Processing time: 945ms - RequestID: 9uwrshpo1bv +2025-06-18T15:10:12.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 600ms - RequestID: rpc96r6519o +2025-06-18T15:10:12.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 523ms - RequestID: 7nitu77phqq +2025-06-18T15:10:12.781Z [TRACE] auth-service - GET /api/v1/inventory - Status: 401 - Response time: 809ms - IP: 192.168.10.184 - User: user_1017 - RequestID: 0vnfmpkyfqgd +2025-06-18T15:10:12.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1064 - IP: 192.168.32.38 - RequestID: ufc23fqypk +2025-06-18T15:10:12.981Z [INFO] auth-service - Operation: notification_queued - Processing time: 651ms - RequestID: dgsi3djmkjc +2025-06-18T15:10:13.081Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 233ms - Rows affected: 1 - RequestID: tljb4oz0qq +2025-06-18T15:10:13.181Z [TRACE] user-service - Database DELETE on products - Execution time: 429ms - Rows affected: 36 - RequestID: bd3lat0i3y +2025-06-18T15:10:13.281Z [TRACE] payment-service - Database DELETE on payments - Execution time: 47ms - Rows affected: 34 - RequestID: gnfyewqdfsa +2025-06-18T15:10:13.381Z [INFO] inventory-service - Database SELECT on users - Execution time: 461ms - Rows affected: 78 - RequestID: eacl5s75i1f +2025-06-18T15:10:13.481Z [DEBUG] auth-service - POST /api/v1/orders - Status: 500 - Response time: 1351ms - IP: 192.168.31.117 - User: user_1004 - RequestID: fopyhb41lao +2025-06-18T15:10:13.581Z [INFO] user-service - PUT /api/v1/inventory - Status: 404 - Response time: 793ms - IP: 192.168.147.171 - User: user_1002 - RequestID: goxv7spl2r +2025-06-18T15:10:13.681Z [DEBUG] order-service - Operation: email_sent - Processing time: 485ms - RequestID: xddk3nx3zvi +2025-06-18T15:10:13.781Z [INFO] payment-service - Operation: notification_queued - Processing time: 879ms - RequestID: dy3izlnwzj9 +2025-06-18T15:10:13.881Z [TRACE] order-service - Auth event: logout - User: user_1073 - IP: 192.168.1.152 - RequestID: zvf6mmlfbel +2025-06-18T15:10:13.981Z [INFO] order-service - POST /api/v1/payments - Status: 201 - Response time: 1959ms - IP: 192.168.11.60 - User: user_1095 - RequestID: u1wyq9g4xh +2025-06-18T15:10:14.081Z [INFO] user-service - Operation: cache_miss - Processing time: 191ms - RequestID: y10vn49g82l +2025-06-18T15:10:14.181Z [INFO] payment-service - Operation: notification_queued - Processing time: 789ms - RequestID: 91hno09vrb5 +2025-06-18T15:10:14.281Z [TRACE] order-service - POST /api/v1/users - Status: 201 - Response time: 1776ms - IP: 192.168.28.146 - User: user_1029 - RequestID: diurthceph +2025-06-18T15:10:14.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.79.116 - RequestID: vjom8u3cpm +2025-06-18T15:10:14.481Z [INFO] notification-service - Database UPDATE on orders - Execution time: 133ms - Rows affected: 3 - RequestID: 8fypi5vu9ps +2025-06-18T15:10:14.581Z [TRACE] inventory-service - GET /api/v1/payments - Status: 502 - Response time: 1772ms - IP: 192.168.53.133 - User: user_1071 - RequestID: xb17dfgy4o +2025-06-18T15:10:14.681Z [INFO] user-service - PATCH /api/v1/orders - Status: 400 - Response time: 1354ms - IP: 192.168.10.184 - User: user_1067 - RequestID: 8jfjfukos4c +2025-06-18T15:10:14.781Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 401 - Response time: 186ms - IP: 192.168.211.72 - User: user_1058 - RequestID: pvr8pcwu77 +2025-06-18T15:10:14.881Z [INFO] order-service - Operation: cache_miss - Processing time: 1020ms - RequestID: hwi50up9q0g +2025-06-18T15:10:14.981Z [INFO] payment-service - Operation: cache_miss - Processing time: 287ms - RequestID: ystjl1wvutm +2025-06-18T15:10:15.081Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1715ms - IP: 192.168.159.94 - User: user_1002 - RequestID: gl786qa1qh4 +2025-06-18T15:10:15.181Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1502ms - IP: 192.168.229.123 - User: user_1034 - RequestID: 9cdazjc4oqp +2025-06-18T15:10:15.281Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1329ms - IP: 192.168.167.32 - User: user_1061 - RequestID: l3utkuw5xfb +2025-06-18T15:10:15.381Z [INFO] order-service - Operation: cache_hit - Processing time: 1017ms - RequestID: yreggxg720m +2025-06-18T15:10:15.481Z [TRACE] payment-service - Operation: cache_miss - Processing time: 130ms - RequestID: 64n61fd9r5u +2025-06-18T15:10:15.581Z [INFO] notification-service - Auth event: password_change - User: user_1078 - IP: 192.168.158.144 - RequestID: myb6xbyjb5 +2025-06-18T15:10:15.681Z [DEBUG] order-service - Auth event: password_change - User: user_1062 - IP: 192.168.46.63 - RequestID: 0ftnwbr9k035 +2025-06-18T15:10:15.781Z [DEBUG] notification-service - POST /api/v1/users - Status: 500 - Response time: 1783ms - IP: 192.168.100.240 - User: user_1052 - RequestID: u0kmdyfsuj +2025-06-18T15:10:15.881Z [DEBUG] auth-service - POST /api/v1/orders - Status: 500 - Response time: 569ms - IP: 192.168.81.206 - User: user_1088 - RequestID: jqoks15814 +2025-06-18T15:10:15.981Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 868ms - RequestID: s5vl0wacldp +2025-06-18T15:10:16.081Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 141ms - Rows affected: 7 - RequestID: sz0uflqx4cj +2025-06-18T15:10:16.181Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 402ms - Rows affected: 57 - RequestID: mb6m1jxcqji +2025-06-18T15:10:16.281Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 134ms - Rows affected: 28 - RequestID: d5ndx2cg8rw +2025-06-18T15:10:16.381Z [INFO] notification-service - Database INSERT on users - Execution time: 123ms - Rows affected: 70 - RequestID: te2oug5soo +2025-06-18T15:10:16.481Z [INFO] order-service - Database UPDATE on products - Execution time: 23ms - Rows affected: 54 - RequestID: 544u1yolfgv +2025-06-18T15:10:16.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1049 - IP: 192.168.240.169 - RequestID: heti7kwr7ri +2025-06-18T15:10:16.681Z [TRACE] order-service - Auth event: login_success - User: user_1060 - IP: 192.168.68.128 - RequestID: xc4br3wywao +2025-06-18T15:10:16.781Z [DEBUG] order-service - Auth event: login_failed - User: user_1091 - IP: 192.168.227.233 - RequestID: atii93kcul +2025-06-18T15:10:16.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.104.37 - RequestID: 5y4dya4oddc +2025-06-18T15:10:16.981Z [TRACE] payment-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.79.143 - RequestID: 7vo6yhwbnri +2025-06-18T15:10:17.081Z [TRACE] inventory-service - Database INSERT on products - Execution time: 142ms - Rows affected: 16 - RequestID: 5xjp63dk886 +2025-06-18T15:10:17.181Z [TRACE] auth-service - Auth event: password_change - User: user_1039 - IP: 192.168.242.165 - RequestID: 2q4h6wyq2ps +2025-06-18T15:10:17.281Z [INFO] user-service - Operation: cache_miss - Processing time: 374ms - RequestID: 4profn2epmr +2025-06-18T15:10:17.381Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 371ms - Rows affected: 53 - RequestID: ne2krujshem +2025-06-18T15:10:17.481Z [TRACE] order-service - Auth event: logout - User: user_1041 - IP: 192.168.170.215 - RequestID: vw2ii5mz98q +2025-06-18T15:10:17.581Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 404 - Response time: 1942ms - IP: 192.168.138.123 - User: user_1024 - RequestID: vsd8m841al +2025-06-18T15:10:17.681Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 401 - Response time: 753ms - IP: 192.168.232.72 - User: user_1063 - RequestID: ethciv7gpx +2025-06-18T15:10:17.781Z [INFO] payment-service - Operation: order_created - Processing time: 570ms - RequestID: 8l9z5j0c8o +2025-06-18T15:10:17.881Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 811ms - IP: 192.168.13.72 - User: user_1049 - RequestID: 0md7w1ymz64q +2025-06-18T15:10:17.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 308ms - RequestID: 4thn0h4qlxw +2025-06-18T15:10:18.081Z [TRACE] auth-service - Database DELETE on users - Execution time: 447ms - Rows affected: 60 - RequestID: sgu0g8wf0q8 +2025-06-18T15:10:18.181Z [INFO] payment-service - Auth event: password_change - User: user_1046 - IP: 192.168.141.100 - RequestID: 4y7vbffo7lb +2025-06-18T15:10:18.281Z [INFO] order-service - Database UPDATE on payments - Execution time: 97ms - Rows affected: 50 - RequestID: 228l1o5h9wi +2025-06-18T15:10:18.381Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1480ms - IP: 192.168.170.215 - User: user_1068 - RequestID: 6ha84cr8t0n +2025-06-18T15:10:18.481Z [DEBUG] auth-service - Auth event: login_failed - User: user_1038 - IP: 192.168.174.114 - RequestID: u1eyoeewve +2025-06-18T15:10:18.581Z [INFO] notification-service - PUT /api/v1/orders - Status: 503 - Response time: 676ms - IP: 192.168.133.7 - User: user_1097 - RequestID: mc0c33r421p +2025-06-18T15:10:18.681Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 152ms - Rows affected: 98 - RequestID: ypixgm3worr +2025-06-18T15:10:18.781Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 159ms - Rows affected: 31 - RequestID: g2e5ye0p9qk +2025-06-18T15:10:18.881Z [INFO] inventory-service - Database DELETE on payments - Execution time: 393ms - Rows affected: 91 - RequestID: 4xosq44srmk +2025-06-18T15:10:18.981Z [INFO] order-service - Operation: email_sent - Processing time: 61ms - RequestID: ef9pzvssqh +2025-06-18T15:10:19.081Z [DEBUG] payment-service - Database DELETE on users - Execution time: 49ms - Rows affected: 15 - RequestID: 4b7gw7r1g +2025-06-18T15:10:19.181Z [INFO] inventory-service - Auth event: login_failed - User: user_1015 - IP: 192.168.1.152 - RequestID: imz0dy8mlp +2025-06-18T15:10:19.281Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 165ms - Rows affected: 86 - RequestID: 4kq3tgelk6b +2025-06-18T15:10:19.381Z [INFO] user-service - Database SELECT on products - Execution time: 264ms - Rows affected: 64 - RequestID: 50wmp0dlhuc +2025-06-18T15:10:19.481Z [INFO] payment-service - POST /api/v1/payments - Status: 201 - Response time: 1297ms - IP: 192.168.189.103 - User: user_1092 - RequestID: 46p4d0p2e2l +2025-06-18T15:10:19.581Z [DEBUG] auth-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1002ms - IP: 192.168.242.165 - User: user_1072 - RequestID: ea50aic40xa +2025-06-18T15:10:19.681Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1608ms - IP: 192.168.174.114 - User: user_1064 - RequestID: x282twsgs3b +2025-06-18T15:10:19.781Z [TRACE] inventory-service - Operation: order_created - Processing time: 143ms - RequestID: v8ljmmbdih7 +2025-06-18T15:10:19.881Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 33ms - Rows affected: 82 - RequestID: tj3ht4za5qr +2025-06-18T15:10:19.981Z [TRACE] notification-service - Database SELECT on orders - Execution time: 326ms - Rows affected: 89 - RequestID: ktt4e0p267r +2025-06-18T15:10:20.081Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 630ms - RequestID: 1o0zgq7ohuc +2025-06-18T15:10:20.181Z [INFO] user-service - Database DELETE on users - Execution time: 248ms - Rows affected: 16 - RequestID: b2x579cwl2p +2025-06-18T15:10:20.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 775ms - RequestID: zye4us1vnan +2025-06-18T15:10:20.381Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 339ms - Rows affected: 38 - RequestID: 9quhu6eejok +2025-06-18T15:10:20.481Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 200 - Response time: 227ms - IP: 192.168.174.114 - User: user_1056 - RequestID: ww3l3wr1blj +2025-06-18T15:10:20.581Z [DEBUG] order-service - Operation: order_created - Processing time: 439ms - RequestID: 04mujsmoroue +2025-06-18T15:10:20.681Z [INFO] notification-service - Auth event: password_change - User: user_1021 - IP: 192.168.240.169 - RequestID: wxrjb3iu5bn +2025-06-18T15:10:20.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.170.215 - RequestID: km2g97vv1i +2025-06-18T15:10:20.881Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 503 - Response time: 416ms - IP: 192.168.30.79 - User: user_1060 - RequestID: jyjzs2x5rz +2025-06-18T15:10:20.981Z [TRACE] notification-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.79.141 - RequestID: 00guw6xg1sgw +2025-06-18T15:10:21.081Z [DEBUG] user-service - Database UPDATE on products - Execution time: 275ms - Rows affected: 6 - RequestID: yr0mksc96ws +2025-06-18T15:10:21.181Z [DEBUG] user-service - Operation: payment_processed - Processing time: 897ms - RequestID: hnnjhyawxdf +2025-06-18T15:10:21.281Z [TRACE] user-service - DELETE /api/v1/users - Status: 404 - Response time: 1228ms - IP: 192.168.113.218 - User: user_1096 - RequestID: uu77f2hs9bg +2025-06-18T15:10:21.381Z [TRACE] order-service - Operation: cache_hit - Processing time: 343ms - RequestID: xwxtnu8aosq +2025-06-18T15:10:21.481Z [INFO] auth-service - Auth event: logout - User: user_1097 - IP: 192.168.1.152 - RequestID: la8dk2534ej +2025-06-18T15:10:21.581Z [DEBUG] user-service - Auth event: login_success - User: user_1011 - IP: 192.168.141.100 - RequestID: eehqtsbiea8 +2025-06-18T15:10:21.681Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 502 - Response time: 1300ms - IP: 192.168.32.38 - User: user_1031 - RequestID: 9518pr0xp37 +2025-06-18T15:10:21.781Z [INFO] order-service - Operation: email_sent - Processing time: 107ms - RequestID: bjbh7h1l5ov +2025-06-18T15:10:21.881Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1091ms - IP: 192.168.64.33 - User: user_1090 - RequestID: 71and3pgb5d +2025-06-18T15:10:21.981Z [INFO] user-service - Auth event: logout - User: user_1028 - IP: 192.168.64.33 - RequestID: fzp1rt36rg6 +2025-06-18T15:10:22.081Z [INFO] payment-service - Database SELECT on sessions - Execution time: 182ms - Rows affected: 12 - RequestID: hl2qm6xlh68 +2025-06-18T15:10:22.181Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 1ms - Rows affected: 98 - RequestID: gqv6b18lbsj +2025-06-18T15:10:22.281Z [INFO] auth-service - POST /api/v1/users - Status: 502 - Response time: 713ms - IP: 192.168.167.32 - User: user_1049 - RequestID: yv5dnj2d3l +2025-06-18T15:10:22.381Z [DEBUG] order-service - Operation: cache_miss - Processing time: 278ms - RequestID: ay6a917ul9 +2025-06-18T15:10:22.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.31.117 - RequestID: 0we7dchgfx5 +2025-06-18T15:10:22.581Z [INFO] order-service - Database UPDATE on products - Execution time: 424ms - Rows affected: 43 - RequestID: 3uvlyfmjvk6 +2025-06-18T15:10:22.681Z [INFO] inventory-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.79.141 - RequestID: umabp1h4uz +2025-06-18T15:10:22.781Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1129ms - IP: 192.168.33.76 - User: user_1038 - RequestID: przi5uz36fk +2025-06-18T15:10:22.881Z [INFO] order-service - Database INSERT on sessions - Execution time: 366ms - Rows affected: 9 - RequestID: m6mjednhkg +2025-06-18T15:10:22.981Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 767ms - RequestID: pi24128fddd +2025-06-18T15:10:23.081Z [TRACE] notification-service - Operation: payment_processed - Processing time: 689ms - RequestID: pqcn69ndnw +2025-06-18T15:10:23.181Z [INFO] auth-service - Auth event: login_success - User: user_1099 - IP: 192.168.53.133 - RequestID: 8b8r9a57p2v +2025-06-18T15:10:23.281Z [TRACE] order-service - Operation: notification_queued - Processing time: 864ms - RequestID: bo6ytu0zl0g +2025-06-18T15:10:23.381Z [INFO] auth-service - Operation: inventory_updated - Processing time: 370ms - RequestID: xqkk3c0p7l +2025-06-18T15:10:23.481Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 256ms - RequestID: n41zxl9ih4i +2025-06-18T15:10:23.581Z [TRACE] order-service - Auth event: login_success - User: user_1023 - IP: 192.168.189.103 - RequestID: 5z7j28qn0a +2025-06-18T15:10:23.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.240.169 - RequestID: 1xunxlk43ct +2025-06-18T15:10:23.781Z [INFO] payment-service - Database DELETE on users - Execution time: 288ms - Rows affected: 49 - RequestID: e2vmd9im5q6 +2025-06-18T15:10:23.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1045 - IP: 192.168.113.218 - RequestID: mfrv66uxq9r +2025-06-18T15:10:23.981Z [INFO] inventory-service - Operation: cache_miss - Processing time: 767ms - RequestID: 6qzmqj3vec +2025-06-18T15:10:24.081Z [INFO] payment-service - Auth event: login_success - User: user_1062 - IP: 192.168.14.77 - RequestID: 93ssr6ho6dq +2025-06-18T15:10:24.181Z [TRACE] user-service - Operation: webhook_sent - Processing time: 64ms - RequestID: 83w3tp4cqc7 +2025-06-18T15:10:24.281Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 403 - Response time: 1528ms - IP: 192.168.232.72 - User: user_1061 - RequestID: 1uxzch03smg +2025-06-18T15:10:24.381Z [DEBUG] auth-service - Operation: order_created - Processing time: 556ms - RequestID: nsd4btjbeh +2025-06-18T15:10:24.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.138.123 - RequestID: bkqg3q3fdjm +2025-06-18T15:10:24.581Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 494ms - Rows affected: 92 - RequestID: e66gzcohd3 +2025-06-18T15:10:24.681Z [TRACE] user-service - Database SELECT on users - Execution time: 331ms - Rows affected: 99 - RequestID: 3kt30dhatsb +2025-06-18T15:10:24.781Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 178ms - RequestID: zzgxna0o4h +2025-06-18T15:10:24.881Z [DEBUG] notification-service - GET /api/v1/users - Status: 401 - Response time: 116ms - IP: 192.168.79.116 - User: user_1009 - RequestID: pmj9htg5vlj +2025-06-18T15:10:24.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1044 - IP: 192.168.133.7 - RequestID: jn5a1s8td3l +2025-06-18T15:10:25.081Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 16ms - Rows affected: 37 - RequestID: xzh7a409vh +2025-06-18T15:10:25.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.227.233 - RequestID: rxj7smkpmco +2025-06-18T15:10:25.281Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 725ms - RequestID: grzg5cop528 +2025-06-18T15:10:25.381Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 368ms - RequestID: 7n2xog7svbf +2025-06-18T15:10:25.481Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1146ms - IP: 192.168.31.117 - User: user_1051 - RequestID: uq5314tbed +2025-06-18T15:10:25.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 587ms - RequestID: hu4fla4yh5d +2025-06-18T15:10:25.681Z [DEBUG] inventory-service - Auth event: logout - User: user_1064 - IP: 192.168.158.144 - RequestID: kntefj3wlt +2025-06-18T15:10:25.781Z [INFO] order-service - GET /api/v1/users - Status: 201 - Response time: 1556ms - IP: 192.168.104.37 - User: user_1000 - RequestID: lffgg67wyoj +2025-06-18T15:10:25.881Z [TRACE] order-service - Operation: cache_miss - Processing time: 299ms - RequestID: pyj78ttce9 +2025-06-18T15:10:25.981Z [TRACE] payment-service - Database SELECT on payments - Execution time: 250ms - Rows affected: 93 - RequestID: 50jkvrtoyxi +2025-06-18T15:10:26.081Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 401 - Response time: 1260ms - IP: 192.168.235.117 - User: user_1063 - RequestID: ie03hcuftc +2025-06-18T15:10:26.181Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 30ms - Rows affected: 16 - RequestID: sm97a8dprac +2025-06-18T15:10:26.281Z [DEBUG] notification-service - Database DELETE on users - Execution time: 479ms - Rows affected: 12 - RequestID: 3m2jttri4gf +2025-06-18T15:10:26.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1092 - IP: 192.168.174.114 - RequestID: c1avjemnaib +2025-06-18T15:10:26.481Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 1483ms - IP: 192.168.159.94 - User: user_1011 - RequestID: 3eawjbshvc3 +2025-06-18T15:10:26.581Z [TRACE] notification-service - Auth event: logout - User: user_1037 - IP: 192.168.97.87 - RequestID: j46y4r77dmr +2025-06-18T15:10:26.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 474ms - RequestID: ljjjl2ouex +2025-06-18T15:10:26.781Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 883ms - RequestID: tft8ycazyh +2025-06-18T15:10:26.881Z [INFO] notification-service - Operation: cache_miss - Processing time: 65ms - RequestID: s5scpzzpg4 +2025-06-18T15:10:26.981Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 138ms - Rows affected: 31 - RequestID: 9z0zopzudxp +2025-06-18T15:10:27.081Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 236ms - RequestID: kingd2z4ihr +2025-06-18T15:10:27.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.227.77 - RequestID: 6og97cf8x2v +2025-06-18T15:10:27.281Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 109ms - Rows affected: 42 - RequestID: arimiigerqm +2025-06-18T15:10:27.381Z [TRACE] order-service - Operation: payment_processed - Processing time: 1018ms - RequestID: 7sfr07i1xmo +2025-06-18T15:10:27.481Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 381ms - Rows affected: 46 - RequestID: 4z75ud58udq +2025-06-18T15:10:27.581Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 500 - Response time: 1080ms - IP: 192.168.144.38 - User: user_1095 - RequestID: o3arzjgcjg8 +2025-06-18T15:10:27.681Z [TRACE] payment-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.11.60 - RequestID: oj3dhbbvpq +2025-06-18T15:10:27.781Z [TRACE] inventory-service - Operation: order_created - Processing time: 577ms - RequestID: ri83lwcvnp7 +2025-06-18T15:10:27.881Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1327ms - IP: 192.168.147.171 - User: user_1057 - RequestID: csxjz6ceryd +2025-06-18T15:10:27.981Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 201 - Response time: 389ms - IP: 192.168.196.226 - User: user_1046 - RequestID: 0mum4v5ro9a +2025-06-18T15:10:28.081Z [INFO] auth-service - Operation: payment_processed - Processing time: 732ms - RequestID: xu3da91yzg +2025-06-18T15:10:28.181Z [INFO] user-service - DELETE /api/v1/inventory - Status: 503 - Response time: 692ms - IP: 192.168.33.76 - User: user_1040 - RequestID: v2tbwmmmf +2025-06-18T15:10:28.281Z [TRACE] payment-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.79.141 - RequestID: h14p5pnifbd +2025-06-18T15:10:28.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1090 - IP: 192.168.104.37 - RequestID: ja3gzz7cxtd +2025-06-18T15:10:28.481Z [DEBUG] user-service - Auth event: login_success - User: user_1067 - IP: 192.168.68.158 - RequestID: fv1nmnm01cq +2025-06-18T15:10:28.581Z [INFO] inventory-service - Operation: notification_queued - Processing time: 1032ms - RequestID: ljvyz20k97 +2025-06-18T15:10:28.681Z [INFO] order-service - Auth event: login_success - User: user_1017 - IP: 192.168.147.171 - RequestID: t7e0qfkrh7 +2025-06-18T15:10:28.781Z [INFO] notification-service - Database UPDATE on products - Execution time: 138ms - Rows affected: 19 - RequestID: 0wcifug3ndkl +2025-06-18T15:10:28.881Z [INFO] notification-service - Database SELECT on products - Execution time: 236ms - Rows affected: 47 - RequestID: oj7wwl9xt5 +2025-06-18T15:10:28.981Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 176ms - Rows affected: 0 - RequestID: wu112f2y0tf +2025-06-18T15:10:29.081Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 11ms - IP: 192.168.81.206 - User: user_1043 - RequestID: 4p3fjah83uq +2025-06-18T15:10:29.181Z [INFO] payment-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.30.79 - RequestID: 8mo2lggq7b4 +2025-06-18T15:10:29.281Z [TRACE] notification-service - Database DELETE on payments - Execution time: 428ms - Rows affected: 68 - RequestID: i7k4lbb8x1 +2025-06-18T15:10:29.381Z [INFO] auth-service - Operation: webhook_sent - Processing time: 232ms - RequestID: iryxn55zuqn +2025-06-18T15:10:29.481Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 388ms - Rows affected: 3 - RequestID: t0o5d96hw6 +2025-06-18T15:10:29.581Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1255ms - IP: 192.168.227.77 - User: user_1052 - RequestID: zkwvvsy297 +2025-06-18T15:10:29.681Z [INFO] auth-service - PUT /api/v1/users - Status: 403 - Response time: 249ms - IP: 192.168.170.215 - User: user_1018 - RequestID: 4wytaz616jh +2025-06-18T15:10:29.781Z [TRACE] order-service - Database DELETE on orders - Execution time: 484ms - Rows affected: 83 - RequestID: wgu6ub5rxzg +2025-06-18T15:10:29.881Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 399ms - Rows affected: 5 - RequestID: ms4vw74et6 +2025-06-18T15:10:29.981Z [DEBUG] notification-service - Database SELECT on users - Execution time: 71ms - Rows affected: 25 - RequestID: x63u5s5bp4 +2025-06-18T15:10:30.081Z [TRACE] auth-service - Operation: payment_processed - Processing time: 475ms - RequestID: 8sn6rg2ap5x +2025-06-18T15:10:30.181Z [TRACE] auth-service - Operation: payment_processed - Processing time: 116ms - RequestID: n2r5thkj4g +2025-06-18T15:10:30.281Z [INFO] auth-service - Database DELETE on sessions - Execution time: 280ms - Rows affected: 7 - RequestID: 7ivsz9x2cba +2025-06-18T15:10:30.381Z [TRACE] inventory-service - Database DELETE on products - Execution time: 300ms - Rows affected: 69 - RequestID: o1ie34zspr8 +2025-06-18T15:10:30.481Z [TRACE] user-service - Operation: inventory_updated - Processing time: 550ms - RequestID: real4jmtn5 +2025-06-18T15:10:30.581Z [INFO] auth-service - Auth event: login_failed - User: user_1051 - IP: 192.168.97.87 - RequestID: dbhukts9ohr +2025-06-18T15:10:30.681Z [INFO] payment-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.147.171 - RequestID: tvpmpvyxvvn +2025-06-18T15:10:30.781Z [INFO] user-service - Operation: cache_miss - Processing time: 161ms - RequestID: 46egxklk4tr +2025-06-18T15:10:30.881Z [TRACE] auth-service - Operation: cache_miss - Processing time: 648ms - RequestID: qrw77za37h +2025-06-18T15:10:30.981Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 687ms - RequestID: xosixrj8noe +2025-06-18T15:10:31.081Z [INFO] inventory-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.10.184 - RequestID: dif2jazrn7c +2025-06-18T15:10:31.181Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 518ms - IP: 192.168.28.146 - User: user_1054 - RequestID: dkq1a0jjhoa +2025-06-18T15:10:31.281Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 151ms - Rows affected: 20 - RequestID: 0my2y9iokvd +2025-06-18T15:10:31.381Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.194.41 - RequestID: aasu7lakl55 +2025-06-18T15:10:31.481Z [INFO] auth-service - Database INSERT on sessions - Execution time: 493ms - Rows affected: 82 - RequestID: wx7hf2hkzun +2025-06-18T15:10:31.581Z [INFO] user-service - DELETE /api/v1/users - Status: 403 - Response time: 628ms - IP: 192.168.247.134 - User: user_1046 - RequestID: wcd6b8rmmh +2025-06-18T15:10:31.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.187.199 - RequestID: 0jbdoe2t0qzp +2025-06-18T15:10:31.781Z [TRACE] user-service - Operation: inventory_updated - Processing time: 658ms - RequestID: oaby78duqpd +2025-06-18T15:10:31.881Z [TRACE] order-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.141.100 - RequestID: k40ux1h9ovo +2025-06-18T15:10:31.981Z [INFO] user-service - Database UPDATE on users - Execution time: 156ms - Rows affected: 56 - RequestID: lenhnv0y5np +2025-06-18T15:10:32.081Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1222ms - IP: 192.168.174.114 - User: user_1079 - RequestID: vi45vs5tlh +2025-06-18T15:10:32.181Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 476ms - Rows affected: 53 - RequestID: f3zfwtmac3 +2025-06-18T15:10:32.281Z [INFO] auth-service - Auth event: password_change - User: user_1035 - IP: 192.168.167.32 - RequestID: 5yqr4brajja +2025-06-18T15:10:32.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1084 - IP: 192.168.181.225 - RequestID: x84wmfi4ul +2025-06-18T15:10:32.481Z [INFO] inventory-service - Auth event: login_success - User: user_1029 - IP: 192.168.167.32 - RequestID: zc5a61sn58h +2025-06-18T15:10:32.581Z [INFO] inventory-service - Operation: notification_queued - Processing time: 218ms - RequestID: zvw4tc0dxkq +2025-06-18T15:10:32.681Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 180ms - Rows affected: 15 - RequestID: z7k118ta1j +2025-06-18T15:10:32.781Z [DEBUG] notification-service - Database SELECT on users - Execution time: 247ms - Rows affected: 5 - RequestID: 6a39jmtsjlw +2025-06-18T15:10:32.881Z [TRACE] notification-service - Database INSERT on payments - Execution time: 162ms - Rows affected: 28 - RequestID: 8lh7t90natv +2025-06-18T15:10:32.981Z [TRACE] user-service - Operation: email_sent - Processing time: 849ms - RequestID: botgijh3l3o +2025-06-18T15:10:33.081Z [DEBUG] auth-service - Auth event: login_failed - User: user_1047 - IP: 192.168.229.123 - RequestID: so5oofkwfuc +2025-06-18T15:10:33.181Z [TRACE] user-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.247.134 - RequestID: 6xso9vp71u4 +2025-06-18T15:10:33.281Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 148ms - Rows affected: 64 - RequestID: uqj6n36prkh +2025-06-18T15:10:33.381Z [DEBUG] order-service - GET /api/v1/payments - Status: 401 - Response time: 1477ms - IP: 192.168.33.76 - User: user_1038 - RequestID: u3nnmj04q3 +2025-06-18T15:10:33.481Z [INFO] order-service - Operation: cache_miss - Processing time: 389ms - RequestID: e7kfznis9i7 +2025-06-18T15:10:33.581Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 654ms - RequestID: 0y68hf13qafk +2025-06-18T15:10:33.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.138.123 - RequestID: 4c30729hnd7 +2025-06-18T15:10:33.781Z [DEBUG] payment-service - GET /api/v1/payments - Status: 500 - Response time: 396ms - IP: 192.168.159.94 - User: user_1016 - RequestID: 46fjo5cz10b +2025-06-18T15:10:33.881Z [TRACE] order-service - Database UPDATE on payments - Execution time: 17ms - Rows affected: 29 - RequestID: y5fisw0lk2 +2025-06-18T15:10:33.981Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1555ms - IP: 192.168.68.158 - User: user_1025 - RequestID: r3fjazoppjn +2025-06-18T15:10:34.081Z [TRACE] user-service - PUT /api/v1/orders - Status: 403 - Response time: 1017ms - IP: 192.168.229.123 - User: user_1073 - RequestID: c02y49oigr7 +2025-06-18T15:10:34.181Z [INFO] notification-service - Auth event: login_success - User: user_1001 - IP: 192.168.229.123 - RequestID: hcbfpx88k7 +2025-06-18T15:10:34.281Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1074ms - IP: 192.168.189.103 - User: user_1093 - RequestID: 165b6znwl4w +2025-06-18T15:10:34.381Z [DEBUG] notification-service - Database INSERT on products - Execution time: 29ms - Rows affected: 20 - RequestID: i758oq1mjr +2025-06-18T15:10:34.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 974ms - RequestID: b3e16iarafp +2025-06-18T15:10:34.581Z [INFO] auth-service - Operation: payment_processed - Processing time: 876ms - RequestID: vku73pjrpng +2025-06-18T15:10:34.681Z [INFO] payment-service - Operation: cache_miss - Processing time: 885ms - RequestID: zig9vc5r8a +2025-06-18T15:10:34.781Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 83ms - Rows affected: 42 - RequestID: 4lx2rt9g518 +2025-06-18T15:10:34.881Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 396ms - Rows affected: 91 - RequestID: t6xiclhdq4 +2025-06-18T15:10:34.981Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 142ms - RequestID: 00y8rk95imuyk +2025-06-18T15:10:35.081Z [INFO] order-service - POST /api/v1/inventory - Status: 502 - Response time: 1620ms - IP: 192.168.53.133 - User: user_1059 - RequestID: wsa2p6qd06e +2025-06-18T15:10:35.181Z [INFO] order-service - Database DELETE on payments - Execution time: 213ms - Rows affected: 39 - RequestID: gdgketoi20t +2025-06-18T15:10:35.281Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 12ms - Rows affected: 69 - RequestID: uczmlpkmjoa +2025-06-18T15:10:35.381Z [TRACE] order-service - Database SELECT on products - Execution time: 498ms - Rows affected: 11 - RequestID: 4p8mtxfzlu8 +2025-06-18T15:10:35.481Z [DEBUG] order-service - Database SELECT on payments - Execution time: 298ms - Rows affected: 22 - RequestID: 0vjvokhp5ig +2025-06-18T15:10:35.581Z [DEBUG] order-service - Database INSERT on users - Execution time: 119ms - Rows affected: 77 - RequestID: n7nay6zrhl +2025-06-18T15:10:35.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 947ms - RequestID: 07n3undiys1d +2025-06-18T15:10:35.781Z [INFO] notification-service - PATCH /api/v1/payments - Status: 404 - Response time: 1607ms - IP: 192.168.85.229 - User: user_1086 - RequestID: zag5wbcol5 +2025-06-18T15:10:35.881Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 470ms - Rows affected: 14 - RequestID: ihtrqj0pmb +2025-06-18T15:10:35.981Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.189.103 - RequestID: 714etqh0wmh +2025-06-18T15:10:36.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.229.123 - RequestID: lwrhy9br9bj +2025-06-18T15:10:36.181Z [INFO] inventory-service - Database DELETE on payments - Execution time: 150ms - Rows affected: 14 - RequestID: 1t0ycyvy2g +2025-06-18T15:10:36.281Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 412ms - Rows affected: 80 - RequestID: pjox3o6u9ih +2025-06-18T15:10:36.381Z [TRACE] auth-service - Operation: payment_processed - Processing time: 748ms - RequestID: oqwty9zrjq +2025-06-18T15:10:36.481Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 503 - Response time: 206ms - IP: 192.168.30.79 - User: user_1085 - RequestID: 48tef499n85 +2025-06-18T15:10:36.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1015 - IP: 192.168.14.77 - RequestID: wrvhw4mb2pk +2025-06-18T15:10:36.681Z [DEBUG] auth-service - Database SELECT on users - Execution time: 204ms - Rows affected: 95 - RequestID: 30sqpef3w0s +2025-06-18T15:10:36.781Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 403 - Response time: 1591ms - IP: 192.168.113.218 - User: user_1075 - RequestID: w7hpgt61bl +2025-06-18T15:10:36.881Z [DEBUG] inventory-service - GET /api/v1/users - Status: 503 - Response time: 1652ms - IP: 192.168.232.72 - User: user_1078 - RequestID: uex1aiiuyc +2025-06-18T15:10:36.981Z [INFO] payment-service - PATCH /api/v1/payments - Status: 200 - Response time: 889ms - IP: 192.168.247.134 - User: user_1011 - RequestID: s7p20bss1m +2025-06-18T15:10:37.081Z [DEBUG] inventory-service - Operation: order_created - Processing time: 491ms - RequestID: cc7dhq8uhz5 +2025-06-18T15:10:37.181Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 448ms - Rows affected: 91 - RequestID: 0wk90gsasc0i +2025-06-18T15:10:37.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.10.184 - RequestID: 1p5uoo04h2d +2025-06-18T15:10:37.381Z [INFO] payment-service - Operation: inventory_updated - Processing time: 352ms - RequestID: 0xt1aji7gsmg +2025-06-18T15:10:37.481Z [INFO] user-service - Auth event: password_change - User: user_1013 - IP: 192.168.79.143 - RequestID: ig3s4arqwj8 +2025-06-18T15:10:37.581Z [DEBUG] auth-service - Auth event: login_success - User: user_1007 - IP: 192.168.64.33 - RequestID: ho3w87omn14 +2025-06-18T15:10:37.681Z [INFO] order-service - Auth event: login_failed - User: user_1034 - IP: 192.168.194.41 - RequestID: g7w7829jcaq +2025-06-18T15:10:37.781Z [TRACE] user-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.189.103 - RequestID: y4odfi1jn6c +2025-06-18T15:10:37.881Z [INFO] inventory-service - PATCH /api/v1/users - Status: 401 - Response time: 137ms - IP: 192.168.79.116 - User: user_1006 - RequestID: adsrxi36zxn +2025-06-18T15:10:37.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 814ms - RequestID: k0h7jeq1z2q +2025-06-18T15:10:38.081Z [TRACE] notification-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.138.123 - RequestID: y9v5pnuexs8 +2025-06-18T15:10:38.181Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 858ms - IP: 192.168.44.5 - User: user_1089 - RequestID: o4lyw20ohg +2025-06-18T15:10:38.281Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 201 - Response time: 1950ms - IP: 192.168.30.79 - User: user_1088 - RequestID: eq2tmcnyycb +2025-06-18T15:10:38.381Z [TRACE] inventory-service - Auth event: login_success - User: user_1018 - IP: 192.168.232.72 - RequestID: gygpl0lwtx6 +2025-06-18T15:10:38.481Z [INFO] user-service - Auth event: logout - User: user_1098 - IP: 192.168.158.144 - RequestID: zx0lr6248al +2025-06-18T15:10:38.581Z [DEBUG] notification-service - Database INSERT on products - Execution time: 386ms - Rows affected: 42 - RequestID: 6uu0287832v +2025-06-18T15:10:38.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.232.72 - RequestID: 4gl1zip9dp1 +2025-06-18T15:10:38.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1014 - IP: 192.168.79.143 - RequestID: fgd3o2lxbj +2025-06-18T15:10:38.881Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 179ms - RequestID: 7unsng487kw +2025-06-18T15:10:38.981Z [INFO] inventory-service - Operation: cache_miss - Processing time: 793ms - RequestID: 2puy5zxwvfh +2025-06-18T15:10:39.081Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 500 - Response time: 666ms - IP: 192.168.97.87 - User: user_1021 - RequestID: o941a4ndnya +2025-06-18T15:10:39.181Z [DEBUG] user-service - Database INSERT on payments - Execution time: 375ms - Rows affected: 16 - RequestID: 72ezpeiyasb +2025-06-18T15:10:39.281Z [TRACE] notification-service - Operation: cache_hit - Processing time: 980ms - RequestID: 1o2ctxukrkc +2025-06-18T15:10:39.381Z [DEBUG] auth-service - Database DELETE on products - Execution time: 60ms - Rows affected: 7 - RequestID: vueampvjubo +2025-06-18T15:10:39.481Z [TRACE] notification-service - GET /api/v1/orders - Status: 401 - Response time: 859ms - IP: 192.168.13.72 - User: user_1081 - RequestID: h9epstwdeem +2025-06-18T15:10:39.581Z [INFO] user-service - Operation: webhook_sent - Processing time: 961ms - RequestID: ycp4bdqgyfs +2025-06-18T15:10:39.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1028 - IP: 192.168.141.100 - RequestID: lkbop9e5kpr +2025-06-18T15:10:39.781Z [TRACE] user-service - PUT /api/v1/inventory - Status: 503 - Response time: 1732ms - IP: 192.168.196.226 - User: user_1037 - RequestID: vwudarn73m +2025-06-18T15:10:39.881Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.31.117 - RequestID: bl44fc709lu +2025-06-18T15:10:39.981Z [TRACE] payment-service - Database DELETE on payments - Execution time: 40ms - Rows affected: 12 - RequestID: 06yypdc978ta +2025-06-18T15:10:40.081Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 282ms - Rows affected: 65 - RequestID: a6iszvgphc7 +2025-06-18T15:10:40.181Z [INFO] user-service - Operation: cache_miss - Processing time: 399ms - RequestID: icyxgn1xxe +2025-06-18T15:10:40.281Z [INFO] notification-service - Operation: webhook_sent - Processing time: 100ms - RequestID: frj6y6dky7q +2025-06-18T15:10:40.381Z [INFO] notification-service - Operation: webhook_sent - Processing time: 649ms - RequestID: 9yl5jx8v196 +2025-06-18T15:10:40.481Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 201 - Response time: 741ms - IP: 192.168.31.117 - User: user_1041 - RequestID: 3z2ya6nouhu +2025-06-18T15:10:40.581Z [INFO] payment-service - Database SELECT on products - Execution time: 356ms - Rows affected: 87 - RequestID: hiivo7izjgo +2025-06-18T15:10:40.681Z [DEBUG] order-service - Auth event: logout - User: user_1037 - IP: 192.168.229.123 - RequestID: cwdwc8hxsvs +2025-06-18T15:10:40.781Z [INFO] notification-service - Auth event: password_change - User: user_1069 - IP: 192.168.181.225 - RequestID: o0cdwo7ow8 +2025-06-18T15:10:40.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.211.72 - RequestID: cp97r63x02w +2025-06-18T15:10:40.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.147.171 - RequestID: x64eiumfkg +2025-06-18T15:10:41.081Z [TRACE] payment-service - Operation: notification_queued - Processing time: 609ms - RequestID: 9372t2uks7 +2025-06-18T15:10:41.181Z [INFO] user-service - Operation: order_created - Processing time: 463ms - RequestID: 4hpp9xl53qj +2025-06-18T15:10:41.281Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 226ms - Rows affected: 2 - RequestID: 9jkoktlif7 +2025-06-18T15:10:41.381Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1262ms - IP: 192.168.240.169 - User: user_1015 - RequestID: eu4wx2wgqr7 +2025-06-18T15:10:41.481Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 200 - Response time: 1942ms - IP: 192.168.46.63 - User: user_1008 - RequestID: pvai44qq30j +2025-06-18T15:10:41.581Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 403 - Response time: 533ms - IP: 192.168.189.103 - User: user_1020 - RequestID: qt07m052j6q +2025-06-18T15:10:41.681Z [INFO] auth-service - Database INSERT on sessions - Execution time: 200ms - Rows affected: 16 - RequestID: ewnuqpi1xyp +2025-06-18T15:10:41.781Z [INFO] inventory-service - Operation: order_created - Processing time: 437ms - RequestID: 667sdzk1h1j +2025-06-18T15:10:41.881Z [INFO] order-service - Operation: notification_queued - Processing time: 919ms - RequestID: 82medvkx8e2 +2025-06-18T15:10:41.981Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 30ms - Rows affected: 48 - RequestID: aa1aoqlu8f4 +2025-06-18T15:10:42.081Z [TRACE] notification-service - Database INSERT on users - Execution time: 365ms - Rows affected: 80 - RequestID: 99wxd34i97b +2025-06-18T15:10:42.181Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 201 - Response time: 1793ms - IP: 192.168.64.33 - User: user_1055 - RequestID: 4b5y76hvg7c +2025-06-18T15:10:42.281Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 181ms - Rows affected: 96 - RequestID: 41htaqhtya5 +2025-06-18T15:10:42.381Z [INFO] payment-service - Operation: webhook_sent - Processing time: 708ms - RequestID: jtg6ubkqhq +2025-06-18T15:10:42.481Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1171ms - IP: 192.168.189.103 - User: user_1089 - RequestID: ccis97qrgk +2025-06-18T15:10:42.581Z [TRACE] auth-service - Database SELECT on payments - Execution time: 404ms - Rows affected: 50 - RequestID: xkjrs44fs3g +2025-06-18T15:10:42.681Z [TRACE] auth-service - PATCH /api/v1/users - Status: 201 - Response time: 1677ms - IP: 192.168.100.240 - User: user_1020 - RequestID: kptjn97w82g +2025-06-18T15:10:42.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 271ms - RequestID: rw9vatqc7r +2025-06-18T15:10:42.881Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 188ms - Rows affected: 78 - RequestID: lhpvvlbzwd +2025-06-18T15:10:42.981Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 625ms - IP: 192.168.227.233 - User: user_1007 - RequestID: nxy12ldn0j +2025-06-18T15:10:43.081Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 634ms - IP: 192.168.44.5 - User: user_1082 - RequestID: c2egpzch7cd +2025-06-18T15:10:43.181Z [TRACE] user-service - Operation: payment_processed - Processing time: 672ms - RequestID: e4e7o6ayaxv +2025-06-18T15:10:43.281Z [INFO] inventory-service - Operation: payment_processed - Processing time: 852ms - RequestID: eu7ikxjmwrb +2025-06-18T15:10:43.381Z [DEBUG] user-service - GET /api/v1/orders - Status: 403 - Response time: 1248ms - IP: 192.168.181.225 - User: user_1085 - RequestID: 8a70i2wy9dm +2025-06-18T15:10:43.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.147.171 - RequestID: k8fbs8fsf1r +2025-06-18T15:10:43.581Z [TRACE] notification-service - Operation: email_sent - Processing time: 371ms - RequestID: 9mcw54psb9 +2025-06-18T15:10:43.681Z [DEBUG] user-service - Operation: order_created - Processing time: 598ms - RequestID: 9msdlcbclae +2025-06-18T15:10:43.781Z [TRACE] auth-service - Operation: order_created - Processing time: 319ms - RequestID: i4rr009oz8h +2025-06-18T15:10:43.881Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 200 - Response time: 597ms - IP: 192.168.68.128 - User: user_1008 - RequestID: c7m4nxhaij +2025-06-18T15:10:43.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.211.72 - RequestID: f7fcxmfehzu +2025-06-18T15:10:44.081Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 137ms - Rows affected: 37 - RequestID: 5xkl3p4k204 +2025-06-18T15:10:44.181Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 161ms - Rows affected: 93 - RequestID: hme4x4syov +2025-06-18T15:10:44.281Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 310ms - RequestID: i6b397yescb +2025-06-18T15:10:44.381Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1450ms - IP: 192.168.174.114 - User: user_1017 - RequestID: wgmb6b99e7r +2025-06-18T15:10:44.481Z [TRACE] notification-service - Auth event: login_success - User: user_1021 - IP: 192.168.53.133 - RequestID: fu2tryrx7l +2025-06-18T15:10:44.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.187.199 - RequestID: 9oh7l4nyao8 +2025-06-18T15:10:44.681Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 321ms - Rows affected: 89 - RequestID: dy34tgqvd6a +2025-06-18T15:10:44.781Z [INFO] auth-service - PUT /api/v1/users - Status: 201 - Response time: 1658ms - IP: 192.168.170.215 - User: user_1084 - RequestID: xve9yd9k2kb +2025-06-18T15:10:44.881Z [INFO] user-service - PATCH /api/v1/users - Status: 200 - Response time: 1017ms - IP: 192.168.227.77 - User: user_1042 - RequestID: 6a2r54mzrp +2025-06-18T15:10:44.981Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 3ms - Rows affected: 26 - RequestID: krokr059vc +2025-06-18T15:10:45.081Z [DEBUG] notification-service - GET /api/v1/orders - Status: 401 - Response time: 355ms - IP: 192.168.97.87 - User: user_1095 - RequestID: rdfupxw5ue +2025-06-18T15:10:45.181Z [TRACE] notification-service - Auth event: logout - User: user_1088 - IP: 192.168.144.38 - RequestID: 2tgld0okyvi +2025-06-18T15:10:45.281Z [INFO] notification-service - Operation: cache_hit - Processing time: 962ms - RequestID: 7hkzeqbznbq +2025-06-18T15:10:45.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1004 - IP: 192.168.227.233 - RequestID: kyvpgsdi43e +2025-06-18T15:10:45.481Z [INFO] notification-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 548ms - IP: 192.168.242.165 - User: user_1027 - RequestID: nscrn9ojke +2025-06-18T15:10:45.581Z [DEBUG] auth-service - Database DELETE on users - Execution time: 219ms - Rows affected: 75 - RequestID: 9mjfj7inwf +2025-06-18T15:10:45.681Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 413ms - RequestID: 3e4ug6ibge5 +2025-06-18T15:10:45.781Z [TRACE] auth-service - Operation: order_created - Processing time: 145ms - RequestID: nsa3c8zhaq9 +2025-06-18T15:10:45.881Z [TRACE] notification-service - Operation: order_created - Processing time: 641ms - RequestID: 367ne66fusz +2025-06-18T15:10:45.981Z [TRACE] order-service - Operation: email_sent - Processing time: 511ms - RequestID: s22qkz3r7zf +2025-06-18T15:10:46.081Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 200 - Response time: 986ms - IP: 192.168.1.152 - User: user_1076 - RequestID: 8m3ucdk7o5b +2025-06-18T15:10:46.181Z [DEBUG] order-service - Database SELECT on products - Execution time: 117ms - Rows affected: 7 - RequestID: 8c6sr82p30j +2025-06-18T15:10:46.281Z [INFO] user-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.100.240 - RequestID: d0ozqqbj73f +2025-06-18T15:10:46.381Z [TRACE] user-service - Operation: email_sent - Processing time: 697ms - RequestID: tj3e8jlv01k +2025-06-18T15:10:46.481Z [INFO] payment-service - Operation: inventory_updated - Processing time: 322ms - RequestID: evwhz1x4p3w +2025-06-18T15:10:46.581Z [INFO] auth-service - Operation: cache_hit - Processing time: 65ms - RequestID: 1xymvynjjsn +2025-06-18T15:10:46.681Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 948ms - RequestID: 994xjk0faqf +2025-06-18T15:10:46.781Z [INFO] payment-service - Auth event: logout - User: user_1099 - IP: 192.168.11.60 - RequestID: rfjry32mhmp +2025-06-18T15:10:46.881Z [INFO] user-service - Operation: order_created - Processing time: 959ms - RequestID: rv2u5pb6bu +2025-06-18T15:10:46.981Z [INFO] user-service - POST /api/v1/inventory - Status: 200 - Response time: 972ms - IP: 192.168.28.146 - User: user_1037 - RequestID: ge8lt0mlgj +2025-06-18T15:10:47.081Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1346ms - IP: 192.168.85.229 - User: user_1066 - RequestID: 90q8bx68fs +2025-06-18T15:10:47.181Z [INFO] inventory-service - GET /api/v1/payments - Status: 403 - Response time: 631ms - IP: 192.168.227.233 - User: user_1047 - RequestID: xok31idgl2 +2025-06-18T15:10:47.281Z [TRACE] payment-service - Database SELECT on users - Execution time: 84ms - Rows affected: 86 - RequestID: 7agpdfvpgcb +2025-06-18T15:10:47.381Z [INFO] auth-service - Operation: notification_queued - Processing time: 913ms - RequestID: 1s26ace6w2dj +2025-06-18T15:10:47.481Z [TRACE] notification-service - Auth event: password_change - User: user_1061 - IP: 192.168.227.233 - RequestID: efh5t8kjlu +2025-06-18T15:10:47.581Z [DEBUG] user-service - PUT /api/v1/orders - Status: 502 - Response time: 498ms - IP: 192.168.138.123 - User: user_1028 - RequestID: eci7g2h5chu +2025-06-18T15:10:47.681Z [INFO] user-service - Auth event: password_change - User: user_1055 - IP: 192.168.31.117 - RequestID: ay2ha7eu35s +2025-06-18T15:10:47.781Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 200 - Response time: 448ms - IP: 192.168.32.38 - User: user_1094 - RequestID: c78vuaterfu +2025-06-18T15:10:47.881Z [INFO] auth-service - PATCH /api/v1/users - Status: 502 - Response time: 1550ms - IP: 192.168.13.72 - User: user_1012 - RequestID: tvxrvutw05d +2025-06-18T15:10:47.981Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 395ms - Rows affected: 42 - RequestID: 94iqypmcceq +2025-06-18T15:10:48.081Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1352ms - IP: 192.168.28.146 - User: user_1039 - RequestID: lvbku6mbgt8 +2025-06-18T15:10:48.181Z [INFO] user-service - Operation: order_created - Processing time: 154ms - RequestID: t40vvheeidq +2025-06-18T15:10:48.281Z [INFO] user-service - Auth event: login_failed - User: user_1068 - IP: 192.168.240.169 - RequestID: 6aqyouhcsa2 +2025-06-18T15:10:48.381Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 215ms - Rows affected: 34 - RequestID: 7k6u17m6gnq +2025-06-18T15:10:48.481Z [INFO] user-service - Operation: cache_hit - Processing time: 393ms - RequestID: 5domyiid5xr +2025-06-18T15:10:48.581Z [DEBUG] auth-service - Operation: email_sent - Processing time: 645ms - RequestID: 8kiw8a3uktv +2025-06-18T15:10:48.681Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 284ms - Rows affected: 78 - RequestID: fk1unpvn0ql +2025-06-18T15:10:48.781Z [DEBUG] user-service - Operation: cache_miss - Processing time: 802ms - RequestID: vcx6v8rx2lf +2025-06-18T15:10:48.881Z [DEBUG] payment-service - Database DELETE on products - Execution time: 418ms - Rows affected: 8 - RequestID: sxoqv43ij9j +2025-06-18T15:10:48.981Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 723ms - IP: 192.168.64.33 - User: user_1092 - RequestID: cfui1qtcvyk +2025-06-18T15:10:49.081Z [TRACE] payment-service - Auth event: login_failed - User: user_1057 - IP: 192.168.227.77 - RequestID: nq4jaucbg8f +2025-06-18T15:10:49.181Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 201 - Response time: 677ms - IP: 192.168.104.37 - User: user_1014 - RequestID: foc0sy874vb +2025-06-18T15:10:49.281Z [DEBUG] order-service - Operation: notification_queued - Processing time: 172ms - RequestID: 63i53nbghz +2025-06-18T15:10:49.381Z [INFO] order-service - Database UPDATE on payments - Execution time: 474ms - Rows affected: 45 - RequestID: z58sgz10lr +2025-06-18T15:10:49.481Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 201 - Response time: 1186ms - IP: 192.168.11.60 - User: user_1060 - RequestID: mzgj70t1p8 +2025-06-18T15:10:49.581Z [INFO] order-service - PUT /api/v1/inventory - Status: 403 - Response time: 1408ms - IP: 192.168.247.134 - User: user_1008 - RequestID: yskdc3k3h5p +2025-06-18T15:10:49.681Z [DEBUG] user-service - Operation: payment_processed - Processing time: 161ms - RequestID: kkyim3mx8t +2025-06-18T15:10:49.781Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 327ms - Rows affected: 97 - RequestID: m1prykl0zd +2025-06-18T15:10:49.881Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 194ms - Rows affected: 67 - RequestID: tokpjuavxp +2025-06-18T15:10:49.981Z [INFO] payment-service - Operation: notification_queued - Processing time: 80ms - RequestID: w2etz1kedrs +2025-06-18T15:10:50.081Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 201 - Response time: 781ms - IP: 192.168.229.123 - User: user_1095 - RequestID: pdzyd6zkhn +2025-06-18T15:10:50.181Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 777ms - RequestID: ol7vle1xeyb +2025-06-18T15:10:50.281Z [TRACE] notification-service - Database DELETE on payments - Execution time: 408ms - Rows affected: 52 - RequestID: 71g5p5idz2r +2025-06-18T15:10:50.381Z [DEBUG] payment-service - Auth event: login_success - User: user_1021 - IP: 192.168.13.72 - RequestID: qrcxtppwrh +2025-06-18T15:10:50.481Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 201 - Response time: 1338ms - IP: 192.168.194.41 - User: user_1070 - RequestID: zq85vch0vlo +2025-06-18T15:10:50.581Z [TRACE] order-service - Operation: payment_processed - Processing time: 975ms - RequestID: es961yyxs1u +2025-06-18T15:10:50.681Z [TRACE] payment-service - Database INSERT on orders - Execution time: 453ms - Rows affected: 63 - RequestID: hd953mu6i1i +2025-06-18T15:10:50.781Z [INFO] payment-service - Auth event: login_success - User: user_1014 - IP: 192.168.181.225 - RequestID: knd7zfqovrn +2025-06-18T15:10:50.881Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 433ms - RequestID: s6mkhgpim1 +2025-06-18T15:10:50.981Z [INFO] auth-service - Operation: order_created - Processing time: 801ms - RequestID: 6ro20ad3r9t +2025-06-18T15:10:51.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.138.123 - RequestID: 6wanmwm1qyl +2025-06-18T15:10:51.181Z [INFO] notification-service - Operation: order_created - Processing time: 921ms - RequestID: drqmrgtelzl +2025-06-18T15:10:51.281Z [DEBUG] inventory-service - GET /api/v1/users - Status: 500 - Response time: 1692ms - IP: 192.168.170.215 - User: user_1002 - RequestID: 6faddyiq97 +2025-06-18T15:10:51.381Z [DEBUG] user-service - GET /api/v1/users - Status: 403 - Response time: 1178ms - IP: 192.168.100.240 - User: user_1043 - RequestID: v7bsqm8c5s +2025-06-18T15:10:51.481Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 281ms - Rows affected: 62 - RequestID: sfhdnhlf3vm +2025-06-18T15:10:51.581Z [INFO] notification-service - Auth event: login_success - User: user_1026 - IP: 192.168.235.117 - RequestID: jw26qynulm +2025-06-18T15:10:51.681Z [INFO] user-service - Database DELETE on orders - Execution time: 13ms - Rows affected: 20 - RequestID: gyqyg1r92gq +2025-06-18T15:10:51.781Z [INFO] user-service - Auth event: password_change - User: user_1018 - IP: 192.168.32.38 - RequestID: 3kczx8l0q2o +2025-06-18T15:10:51.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.235.117 - RequestID: bhys7f9dxvw +2025-06-18T15:10:51.981Z [TRACE] payment-service - Auth event: login_failed - User: user_1006 - IP: 192.168.53.133 - RequestID: 63g0odoeyx +2025-06-18T15:10:52.081Z [TRACE] order-service - Auth event: login_success - User: user_1010 - IP: 192.168.235.117 - RequestID: amiflja3eso +2025-06-18T15:10:52.181Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 87ms - Rows affected: 85 - RequestID: 36lg9u6cz5y +2025-06-18T15:10:52.281Z [TRACE] notification-service - Auth event: login_failed - User: user_1024 - IP: 192.168.44.5 - RequestID: somi0307sp +2025-06-18T15:10:52.381Z [DEBUG] user-service - Database DELETE on users - Execution time: 463ms - Rows affected: 25 - RequestID: ubaflz5ix8 +2025-06-18T15:10:52.481Z [DEBUG] notification-service - POST /api/v1/payments - Status: 500 - Response time: 253ms - IP: 192.168.10.184 - User: user_1085 - RequestID: p3kfjfx4z7p +2025-06-18T15:10:52.581Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 196ms - Rows affected: 48 - RequestID: 7yb1wh14gjj +2025-06-18T15:10:52.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 282ms - RequestID: rcr3dhzp0c +2025-06-18T15:10:52.781Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1632ms - IP: 192.168.235.117 - User: user_1025 - RequestID: sloydsqbvoc +2025-06-18T15:10:52.881Z [TRACE] user-service - PATCH /api/v1/orders - Status: 201 - Response time: 1011ms - IP: 192.168.14.77 - User: user_1082 - RequestID: ome3iipta5d +2025-06-18T15:10:52.981Z [TRACE] payment-service - Operation: email_sent - Processing time: 577ms - RequestID: fxk8zixjo7v +2025-06-18T15:10:53.081Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1669ms - IP: 192.168.68.158 - User: user_1060 - RequestID: 7o9adx4wxuf +2025-06-18T15:10:53.181Z [INFO] notification-service - GET /api/v1/orders - Status: 503 - Response time: 1555ms - IP: 192.168.235.117 - User: user_1097 - RequestID: gl2eoypwz2n +2025-06-18T15:10:53.281Z [INFO] order-service - Operation: webhook_sent - Processing time: 89ms - RequestID: xwllnf17pqp +2025-06-18T15:10:53.381Z [INFO] user-service - Auth event: logout - User: user_1041 - IP: 192.168.159.94 - RequestID: wxqmssp6uck +2025-06-18T15:10:53.481Z [DEBUG] order-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.232.72 - RequestID: hrx1bipigum +2025-06-18T15:10:53.581Z [INFO] order-service - Auth event: logout - User: user_1095 - IP: 192.168.32.38 - RequestID: omeyq216ayq +2025-06-18T15:10:53.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.97.87 - RequestID: kpavm6pa5gr +2025-06-18T15:10:53.781Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 254ms - Rows affected: 62 - RequestID: ik0kdqp37th +2025-06-18T15:10:53.881Z [DEBUG] order-service - Auth event: login_failed - User: user_1052 - IP: 192.168.232.72 - RequestID: 73mfg8ixyts +2025-06-18T15:10:53.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.28.146 - RequestID: zc8oydns6mh +2025-06-18T15:10:54.081Z [INFO] user-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.189.103 - RequestID: s74yebzhpwb +2025-06-18T15:10:54.181Z [TRACE] payment-service - Auth event: logout - User: user_1090 - IP: 192.168.32.38 - RequestID: 27d8r799osi +2025-06-18T15:10:54.281Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1535ms - IP: 192.168.159.94 - User: user_1032 - RequestID: 1t0vxcukwek +2025-06-18T15:10:54.381Z [DEBUG] auth-service - Database SELECT on products - Execution time: 319ms - Rows affected: 33 - RequestID: 0pupq8xlw3e +2025-06-18T15:10:54.481Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 143ms - Rows affected: 33 - RequestID: zi5vozx8qgd +2025-06-18T15:10:54.581Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 1032ms - RequestID: tu5s0mbnpwd +2025-06-18T15:10:54.681Z [DEBUG] user-service - Database INSERT on payments - Execution time: 281ms - Rows affected: 52 - RequestID: y7ns0ihg4f8 +2025-06-18T15:10:54.781Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 819ms - IP: 192.168.32.38 - User: user_1026 - RequestID: ezodop7vg25 +2025-06-18T15:10:54.881Z [TRACE] user-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.46.63 - RequestID: qmsik36xit8 +2025-06-18T15:10:54.981Z [INFO] notification-service - Database UPDATE on orders - Execution time: 2ms - Rows affected: 81 - RequestID: zaev9mss1pq +2025-06-18T15:10:55.081Z [DEBUG] order-service - POST /api/v1/inventory - Status: 400 - Response time: 825ms - IP: 192.168.31.117 - User: user_1058 - RequestID: 0m3vqgv1pu6 +2025-06-18T15:10:55.181Z [TRACE] inventory-service - Auth event: login_success - User: user_1094 - IP: 192.168.242.165 - RequestID: 1537c1h8yx2 +2025-06-18T15:10:55.281Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.240.169 - RequestID: l4v1qowizm +2025-06-18T15:10:55.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 790ms - RequestID: zmsopsnj0o +2025-06-18T15:10:55.481Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1045ms - IP: 192.168.85.229 - User: user_1054 - RequestID: hnsksqog5o8 +2025-06-18T15:10:55.581Z [INFO] notification-service - Operation: notification_queued - Processing time: 939ms - RequestID: 77t8c90irh3 +2025-06-18T15:10:55.681Z [DEBUG] notification-service - Operation: email_sent - Processing time: 174ms - RequestID: 8kxlpyffxzq +2025-06-18T15:10:55.781Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 326ms - Rows affected: 62 - RequestID: f9aesxgsau +2025-06-18T15:10:55.881Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 55ms - RequestID: 8lwg38yb35q +2025-06-18T15:10:55.981Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 347ms - RequestID: lz3l1qtwzz +2025-06-18T15:10:56.081Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1352ms - IP: 192.168.159.94 - User: user_1020 - RequestID: josyr2hffzj +2025-06-18T15:10:56.181Z [INFO] user-service - Database SELECT on payments - Execution time: 484ms - Rows affected: 31 - RequestID: bdxgu2wxcdc +2025-06-18T15:10:56.281Z [INFO] inventory-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.113.218 - RequestID: kutcdxwcznc +2025-06-18T15:10:56.381Z [TRACE] order-service - Operation: cache_hit - Processing time: 576ms - RequestID: wxgg6kly1j7 +2025-06-18T15:10:56.481Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 949ms - RequestID: tv793o0n55b +2025-06-18T15:10:56.581Z [INFO] inventory-service - Database INSERT on payments - Execution time: 467ms - Rows affected: 3 - RequestID: 8bzng1h67oe +2025-06-18T15:10:56.681Z [TRACE] notification-service - Auth event: login_success - User: user_1048 - IP: 192.168.85.229 - RequestID: zmx2v0rwptc +2025-06-18T15:10:56.781Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 942ms - RequestID: yhw38gguyo +2025-06-18T15:10:56.881Z [INFO] auth-service - Operation: webhook_sent - Processing time: 879ms - RequestID: taxx592622s +2025-06-18T15:10:56.981Z [INFO] inventory-service - Database INSERT on orders - Execution time: 183ms - Rows affected: 62 - RequestID: swunoh38ghh +2025-06-18T15:10:57.081Z [INFO] notification-service - Auth event: password_change - User: user_1031 - IP: 192.168.242.165 - RequestID: y65od266el +2025-06-18T15:10:57.181Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 80ms - RequestID: u6szocpotw8 +2025-06-18T15:10:57.281Z [DEBUG] order-service - Operation: payment_processed - Processing time: 619ms - RequestID: 7rjov9e8h5f +2025-06-18T15:10:57.381Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 193ms - Rows affected: 82 - RequestID: ckixltd6ugh +2025-06-18T15:10:57.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.141.100 - RequestID: yggeykfm57n +2025-06-18T15:10:57.581Z [INFO] inventory-service - Auth event: login_success - User: user_1015 - IP: 192.168.79.143 - RequestID: c24kjqkcm6a +2025-06-18T15:10:57.681Z [DEBUG] auth-service - Database DELETE on users - Execution time: 213ms - Rows affected: 14 - RequestID: yhunyuv3tgf +2025-06-18T15:10:57.781Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 314ms - Rows affected: 42 - RequestID: 0zt934m6s2dj +2025-06-18T15:10:57.881Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 203ms - RequestID: oew30ega6oo +2025-06-18T15:10:57.981Z [TRACE] order-service - Auth event: login_success - User: user_1098 - IP: 192.168.14.77 - RequestID: t2156wh4c5l +2025-06-18T15:10:58.081Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 435ms - Rows affected: 15 - RequestID: sgg17a357m +2025-06-18T15:10:58.181Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1326ms - IP: 192.168.28.146 - User: user_1023 - RequestID: jvr6sa34957 +2025-06-18T15:10:58.281Z [DEBUG] order-service - Database INSERT on products - Execution time: 302ms - Rows affected: 83 - RequestID: al15a671xmp +2025-06-18T15:10:58.381Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 197ms - RequestID: 5ki99qk8jiu +2025-06-18T15:10:58.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.32.38 - RequestID: d85fewnjdg6 +2025-06-18T15:10:58.581Z [TRACE] auth-service - Auth event: password_change - User: user_1017 - IP: 192.168.141.100 - RequestID: r44j2dlzj3b +2025-06-18T15:10:58.681Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 887ms - RequestID: mx5om3v3r7 +2025-06-18T15:10:58.781Z [INFO] notification-service - Operation: notification_queued - Processing time: 195ms - RequestID: 8jrxeaq9c9f +2025-06-18T15:10:58.881Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 484ms - Rows affected: 1 - RequestID: q8tt21nqzne +2025-06-18T15:10:58.981Z [TRACE] user-service - DELETE /api/v1/users - Status: 503 - Response time: 1420ms - IP: 192.168.235.117 - User: user_1069 - RequestID: ybw6em7vo3t +2025-06-18T15:10:59.081Z [TRACE] notification-service - Auth event: password_change - User: user_1096 - IP: 192.168.211.72 - RequestID: 9ac5z1vvg9t +2025-06-18T15:10:59.181Z [TRACE] order-service - Operation: webhook_sent - Processing time: 1004ms - RequestID: 1afaaawt3sm +2025-06-18T15:10:59.281Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 68ms - RequestID: hvs2vo7shki +2025-06-18T15:10:59.381Z [INFO] user-service - Operation: inventory_updated - Processing time: 825ms - RequestID: mopqy4vnrvr +2025-06-18T15:10:59.481Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 205ms - RequestID: 9dul7qh1ot +2025-06-18T15:10:59.581Z [INFO] order-service - Database DELETE on orders - Execution time: 328ms - Rows affected: 69 - RequestID: u0dhoqaqgk +2025-06-18T15:10:59.681Z [TRACE] order-service - POST /api/v1/users - Status: 404 - Response time: 10ms - IP: 192.168.44.5 - User: user_1016 - RequestID: uo6vyt47l5o +2025-06-18T15:10:59.781Z [TRACE] auth-service - Database UPDATE on users - Execution time: 459ms - Rows affected: 10 - RequestID: ffnlbw6pn7u +2025-06-18T15:10:59.881Z [TRACE] user-service - Auth event: logout - User: user_1004 - IP: 192.168.85.229 - RequestID: gt0kq3emjur +2025-06-18T15:10:59.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1020 - IP: 192.168.10.184 - RequestID: i2zsihzsgfj +2025-06-18T15:11:00.081Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 400 - Response time: 1531ms - IP: 192.168.227.233 - User: user_1015 - RequestID: 0ilr3ptbk3fr +2025-06-18T15:11:00.181Z [INFO] payment-service - Operation: cache_miss - Processing time: 606ms - RequestID: 7mo55prehvc +2025-06-18T15:11:00.281Z [TRACE] payment-service - Database DELETE on users - Execution time: 185ms - Rows affected: 51 - RequestID: 7jpchrmtml4 +2025-06-18T15:11:00.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.196.226 - RequestID: c8wo37uti67 +2025-06-18T15:11:00.481Z [INFO] user-service - Operation: cache_hit - Processing time: 286ms - RequestID: k2e3c0zqoum +2025-06-18T15:11:00.581Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 502 - Response time: 194ms - IP: 192.168.79.143 - User: user_1062 - RequestID: vu5aryp885 +2025-06-18T15:11:00.681Z [INFO] user-service - DELETE /api/v1/payments - Status: 400 - Response time: 1563ms - IP: 192.168.181.225 - User: user_1085 - RequestID: x06nbbsurb +2025-06-18T15:11:00.781Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 252ms - Rows affected: 37 - RequestID: mjx0br4tkdc +2025-06-18T15:11:00.881Z [INFO] user-service - Database UPDATE on payments - Execution time: 256ms - Rows affected: 38 - RequestID: sr71vz4wxm +2025-06-18T15:11:00.981Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 502 - Response time: 921ms - IP: 192.168.68.158 - User: user_1063 - RequestID: a1f3wdjcwn +2025-06-18T15:11:01.081Z [INFO] notification-service - POST /api/v1/users - Status: 401 - Response time: 1418ms - IP: 192.168.79.116 - User: user_1015 - RequestID: 1lvwywj2z6o +2025-06-18T15:11:01.181Z [INFO] order-service - GET /api/v1/orders - Status: 502 - Response time: 606ms - IP: 192.168.196.226 - User: user_1099 - RequestID: a5dgn9fgx15 +2025-06-18T15:11:01.281Z [INFO] order-service - PATCH /api/v1/users - Status: 403 - Response time: 1295ms - IP: 192.168.68.128 - User: user_1042 - RequestID: 5uxsx4vrws7 +2025-06-18T15:11:01.381Z [TRACE] user-service - Auth event: login_success - User: user_1044 - IP: 192.168.33.76 - RequestID: s4mpokxpdt +2025-06-18T15:11:01.481Z [DEBUG] user-service - Database DELETE on products - Execution time: 141ms - Rows affected: 15 - RequestID: 5iq29796o4h +2025-06-18T15:11:01.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.68.128 - RequestID: c4a4s3crsas +2025-06-18T15:11:01.681Z [INFO] order-service - Auth event: password_change - User: user_1092 - IP: 192.168.81.206 - RequestID: fq2j05su70c +2025-06-18T15:11:01.781Z [TRACE] payment-service - Database SELECT on users - Execution time: 474ms - Rows affected: 83 - RequestID: sqedvybeg5 +2025-06-18T15:11:01.881Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 834ms - RequestID: a37qm6dngy +2025-06-18T15:11:01.981Z [INFO] payment-service - Database DELETE on products - Execution time: 334ms - Rows affected: 6 - RequestID: xd4e7z8599 +2025-06-18T15:11:02.081Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 144ms - RequestID: nkxkycsg66k +2025-06-18T15:11:02.181Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 500 - Response time: 1606ms - IP: 192.168.30.79 - User: user_1054 - RequestID: uzrd8tny25 +2025-06-18T15:11:02.281Z [INFO] inventory-service - Operation: payment_processed - Processing time: 842ms - RequestID: k99uevz70u +2025-06-18T15:11:02.381Z [INFO] notification-service - Database INSERT on products - Execution time: 471ms - Rows affected: 61 - RequestID: zvtbxbaomq9 +2025-06-18T15:11:02.481Z [DEBUG] order-service - Operation: cache_hit - Processing time: 601ms - RequestID: 3bc47lisv7g +2025-06-18T15:11:02.581Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 503 - Response time: 1021ms - IP: 192.168.211.72 - User: user_1097 - RequestID: 5fpzx4mr7pt +2025-06-18T15:11:02.681Z [TRACE] auth-service - Auth event: login_success - User: user_1004 - IP: 192.168.138.123 - RequestID: eibrlpwyfns +2025-06-18T15:11:02.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.68.158 - RequestID: 0bqnej7pbdm +2025-06-18T15:11:02.881Z [TRACE] order-service - Operation: payment_processed - Processing time: 174ms - RequestID: mxk29fupi +2025-06-18T15:11:02.981Z [INFO] order-service - Operation: email_sent - Processing time: 136ms - RequestID: 608tzyh97t +2025-06-18T15:11:03.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1007 - IP: 192.168.104.37 - RequestID: vr7osb0shzm +2025-06-18T15:11:03.181Z [DEBUG] order-service - PUT /api/v1/users - Status: 403 - Response time: 916ms - IP: 192.168.235.117 - User: user_1003 - RequestID: ddieaxv37v8 +2025-06-18T15:11:03.281Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 252ms - IP: 192.168.1.152 - User: user_1061 - RequestID: 300l7m5p72u +2025-06-18T15:11:03.381Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1592ms - IP: 192.168.138.123 - User: user_1066 - RequestID: bd9tep40bgj +2025-06-18T15:11:03.481Z [TRACE] user-service - GET /api/v1/users - Status: 201 - Response time: 1871ms - IP: 192.168.28.146 - User: user_1000 - RequestID: skwvsjekxyd +2025-06-18T15:11:03.581Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 1001ms - RequestID: rsbkfzvrcin +2025-06-18T15:11:03.681Z [DEBUG] user-service - Operation: notification_queued - Processing time: 812ms - RequestID: o0ix5jqnih +2025-06-18T15:11:03.781Z [TRACE] inventory-service - POST /api/v1/orders - Status: 502 - Response time: 609ms - IP: 192.168.30.79 - User: user_1002 - RequestID: qwglf59v98n +2025-06-18T15:11:03.881Z [INFO] auth-service - GET /api/v1/orders - Status: 200 - Response time: 1040ms - IP: 192.168.44.5 - User: user_1077 - RequestID: j34gyxsioe +2025-06-18T15:11:03.981Z [INFO] inventory-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.81.206 - RequestID: 1ah2gsorae1 +2025-06-18T15:11:04.081Z [TRACE] notification-service - DELETE /api/v1/users - Status: 400 - Response time: 1718ms - IP: 192.168.79.116 - User: user_1075 - RequestID: h6hrq2nm89 +2025-06-18T15:11:04.181Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1118ms - IP: 192.168.170.215 - User: user_1038 - RequestID: eaw7p6nn53n +2025-06-18T15:11:04.281Z [TRACE] notification-service - Auth event: password_change - User: user_1048 - IP: 192.168.235.117 - RequestID: uuuaxslacq +2025-06-18T15:11:04.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 434ms - RequestID: 136oq6zip4d +2025-06-18T15:11:04.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.100.240 - RequestID: drfrvzbupwv +2025-06-18T15:11:04.581Z [INFO] payment-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.100.240 - RequestID: nw9jzv8cm5 +2025-06-18T15:11:04.681Z [INFO] inventory-service - Auth event: logout - User: user_1050 - IP: 192.168.104.37 - RequestID: 66zqbjc5zt8 +2025-06-18T15:11:04.781Z [INFO] notification-service - GET /api/v1/inventory - Status: 403 - Response time: 1381ms - IP: 192.168.79.116 - User: user_1008 - RequestID: ngo4hmj2ii9 +2025-06-18T15:11:04.881Z [TRACE] user-service - PATCH /api/v1/users - Status: 503 - Response time: 1010ms - IP: 192.168.81.206 - User: user_1047 - RequestID: 5dli52c13e6 +2025-06-18T15:11:04.981Z [INFO] user-service - PATCH /api/v1/users - Status: 401 - Response time: 43ms - IP: 192.168.235.117 - User: user_1024 - RequestID: mz31i98kdh +2025-06-18T15:11:05.081Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1421ms - IP: 192.168.81.206 - User: user_1025 - RequestID: 4aloy8cysa +2025-06-18T15:11:05.181Z [INFO] order-service - Operation: order_created - Processing time: 493ms - RequestID: y1y0hur3r9 +2025-06-18T15:11:05.281Z [TRACE] inventory-service - Operation: email_sent - Processing time: 411ms - RequestID: wxmxfhwxxgk +2025-06-18T15:11:05.381Z [TRACE] payment-service - Operation: notification_queued - Processing time: 869ms - RequestID: ltxvvhefcyo +2025-06-18T15:11:05.481Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 217ms - Rows affected: 68 - RequestID: tvg545qep8 +2025-06-18T15:11:05.581Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 500 - Response time: 335ms - IP: 192.168.32.38 - User: user_1028 - RequestID: jzfcmecfj5p +2025-06-18T15:11:05.681Z [INFO] payment-service - Database INSERT on products - Execution time: 98ms - Rows affected: 72 - RequestID: je8wex1a5ik +2025-06-18T15:11:05.781Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1989ms - IP: 192.168.33.76 - User: user_1042 - RequestID: gt826ii8us6 +2025-06-18T15:11:05.881Z [INFO] user-service - Database DELETE on orders - Execution time: 95ms - Rows affected: 3 - RequestID: ntyafgz576 +2025-06-18T15:11:05.981Z [TRACE] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1306ms - IP: 192.168.36.218 - User: user_1014 - RequestID: 82df5ygufoo +2025-06-18T15:11:06.081Z [INFO] auth-service - Database DELETE on sessions - Execution time: 303ms - Rows affected: 50 - RequestID: yuck43g413r +2025-06-18T15:11:06.181Z [INFO] auth-service - Database DELETE on users - Execution time: 77ms - Rows affected: 19 - RequestID: n7d2m81aths +2025-06-18T15:11:06.281Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.189.103 - RequestID: heu1mhmgaan +2025-06-18T15:11:06.381Z [TRACE] payment-service - Auth event: login_success - User: user_1040 - IP: 192.168.144.38 - RequestID: kofcz4tst2c +2025-06-18T15:11:06.481Z [INFO] notification-service - Operation: notification_queued - Processing time: 602ms - RequestID: o72zqktmfai +2025-06-18T15:11:06.581Z [INFO] payment-service - Database UPDATE on products - Execution time: 339ms - Rows affected: 67 - RequestID: 2erbh0co5c8 +2025-06-18T15:11:06.681Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 340ms - Rows affected: 24 - RequestID: pwphs30tjo +2025-06-18T15:11:06.781Z [INFO] auth-service - Operation: inventory_updated - Processing time: 766ms - RequestID: 8u00pumoyul +2025-06-18T15:11:06.881Z [TRACE] auth-service - Auth event: login_success - User: user_1060 - IP: 192.168.232.72 - RequestID: jur72ixor19 +2025-06-18T15:11:06.981Z [DEBUG] order-service - Auth event: logout - User: user_1031 - IP: 192.168.10.184 - RequestID: a89djwze7ll +2025-06-18T15:11:07.081Z [INFO] inventory-service - Operation: cache_miss - Processing time: 64ms - RequestID: tqwc0czmy2 +2025-06-18T15:11:07.181Z [TRACE] user-service - Operation: inventory_updated - Processing time: 608ms - RequestID: gmllwmhga9 +2025-06-18T15:11:07.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.68.158 - RequestID: 73z7r3zym7k +2025-06-18T15:11:07.381Z [DEBUG] notification-service - Auth event: login_success - User: user_1003 - IP: 192.168.68.158 - RequestID: 2rsk5nojqwv +2025-06-18T15:11:07.481Z [INFO] user-service - Auth event: login_success - User: user_1089 - IP: 192.168.46.63 - RequestID: zu1hhbvqs3 +2025-06-18T15:11:07.581Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 356ms - Rows affected: 43 - RequestID: r6kxd42ei29 +2025-06-18T15:11:07.681Z [TRACE] inventory-service - Database DELETE on users - Execution time: 1ms - Rows affected: 21 - RequestID: qvhjlelim0q +2025-06-18T15:11:07.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 638ms - RequestID: gwgayyectxs +2025-06-18T15:11:07.881Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 403 - Response time: 659ms - IP: 192.168.28.146 - User: user_1049 - RequestID: 7mlag46y8ou +2025-06-18T15:11:07.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 289ms - RequestID: z4kb4ujd78 +2025-06-18T15:11:08.081Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 468ms - Rows affected: 95 - RequestID: tbuaqx91to +2025-06-18T15:11:08.181Z [TRACE] order-service - Operation: cache_hit - Processing time: 985ms - RequestID: rdab5sajhnh +2025-06-18T15:11:08.281Z [INFO] payment-service - PUT /api/v1/users - Status: 404 - Response time: 752ms - IP: 192.168.28.146 - User: user_1049 - RequestID: 2y72vog201b +2025-06-18T15:11:08.381Z [INFO] user-service - Auth event: logout - User: user_1036 - IP: 192.168.13.72 - RequestID: ba280f2ek28 +2025-06-18T15:11:08.481Z [INFO] order-service - Operation: email_sent - Processing time: 915ms - RequestID: 9ylo36h5o +2025-06-18T15:11:08.581Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 200 - Response time: 1640ms - IP: 192.168.138.123 - User: user_1066 - RequestID: 42w4w4pm2od +2025-06-18T15:11:08.681Z [TRACE] user-service - Database SELECT on payments - Execution time: 130ms - Rows affected: 78 - RequestID: aqypyn6o7o +2025-06-18T15:11:08.781Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 328ms - IP: 192.168.85.229 - User: user_1021 - RequestID: 5ly7n5pjr13 +2025-06-18T15:11:08.881Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1114ms - IP: 192.168.181.225 - User: user_1036 - RequestID: ao9lb5iw8ei +2025-06-18T15:11:08.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 271ms - RequestID: s7tmlttfowi +2025-06-18T15:11:09.081Z [TRACE] auth-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.242.165 - RequestID: aure4tbppgq +2025-06-18T15:11:09.181Z [INFO] auth-service - Database INSERT on users - Execution time: 384ms - Rows affected: 12 - RequestID: sdek0118evi +2025-06-18T15:11:09.281Z [DEBUG] order-service - Auth event: password_change - User: user_1028 - IP: 192.168.167.32 - RequestID: melgcb0cr88 +2025-06-18T15:11:09.381Z [TRACE] payment-service - GET /api/v1/orders - Status: 401 - Response time: 687ms - IP: 192.168.64.33 - User: user_1057 - RequestID: 303hqaj0ym +2025-06-18T15:11:09.481Z [TRACE] user-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.36.218 - RequestID: 07yl8hikskd +2025-06-18T15:11:09.581Z [INFO] inventory-service - Operation: email_sent - Processing time: 689ms - RequestID: f4o121tzxqq +2025-06-18T15:11:09.681Z [INFO] order-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.144.38 - RequestID: sje3n2rpsvm +2025-06-18T15:11:09.781Z [DEBUG] user-service - GET /api/v1/orders - Status: 401 - Response time: 653ms - IP: 192.168.247.134 - User: user_1068 - RequestID: q8xvsgx5vtr +2025-06-18T15:11:09.881Z [INFO] payment-service - Auth event: login_failed - User: user_1031 - IP: 192.168.28.146 - RequestID: 6rppq141l73 +2025-06-18T15:11:09.981Z [DEBUG] payment-service - Auth event: login_success - User: user_1059 - IP: 192.168.211.72 - RequestID: 0amthuxod5cd +2025-06-18T15:11:10.081Z [INFO] user-service - Database SELECT on payments - Execution time: 494ms - Rows affected: 49 - RequestID: drvinajfdr7 +2025-06-18T15:11:10.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1001 - IP: 192.168.138.123 - RequestID: 4lfa3twi7ox +2025-06-18T15:11:10.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.30.79 - RequestID: 0tgig0kuycqo +2025-06-18T15:11:10.381Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1783ms - IP: 192.168.46.63 - User: user_1025 - RequestID: 3jb170dru62 +2025-06-18T15:11:10.481Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 49ms - IP: 192.168.113.218 - User: user_1066 - RequestID: 7xt81rb6dg5 +2025-06-18T15:11:10.581Z [TRACE] order-service - Database DELETE on sessions - Execution time: 414ms - Rows affected: 85 - RequestID: tmdgogza2gc +2025-06-18T15:11:10.681Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 500 - Response time: 1616ms - IP: 192.168.30.79 - User: user_1042 - RequestID: 2ljzm0wlsu1 +2025-06-18T15:11:10.781Z [DEBUG] user-service - Database SELECT on payments - Execution time: 340ms - Rows affected: 10 - RequestID: o4xmkkfaw5q +2025-06-18T15:11:10.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 145ms - RequestID: t6znuowobai +2025-06-18T15:11:10.981Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 400 - Response time: 29ms - IP: 192.168.68.128 - User: user_1099 - RequestID: s9n784xkhvh +2025-06-18T15:11:11.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1073 - IP: 192.168.196.226 - RequestID: 2mdj6wxb1yw +2025-06-18T15:11:11.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 478ms - RequestID: 7sfouzo2afi +2025-06-18T15:11:11.281Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 277ms - Rows affected: 87 - RequestID: ryu5n6e2wp +2025-06-18T15:11:11.381Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 280ms - RequestID: yi8e3nb114s +2025-06-18T15:11:11.481Z [TRACE] order-service - Database DELETE on sessions - Execution time: 340ms - Rows affected: 19 - RequestID: 6ym97megnzk +2025-06-18T15:11:11.581Z [TRACE] auth-service - GET /api/v1/inventory - Status: 401 - Response time: 115ms - IP: 192.168.79.116 - User: user_1097 - RequestID: uo1onm1v52 +2025-06-18T15:11:11.681Z [DEBUG] user-service - Auth event: password_change - User: user_1025 - IP: 192.168.53.133 - RequestID: et5zt4zj357 +2025-06-18T15:11:11.781Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 503 - Response time: 917ms - IP: 192.168.113.218 - User: user_1098 - RequestID: le32qv4g94a +2025-06-18T15:11:11.881Z [INFO] order-service - Auth event: login_failed - User: user_1007 - IP: 192.168.211.72 - RequestID: utb86houy5s +2025-06-18T15:11:11.981Z [TRACE] inventory-service - Auth event: password_change - User: user_1070 - IP: 192.168.159.94 - RequestID: 3fawfwzf1u +2025-06-18T15:11:12.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 302ms - RequestID: 2un22370ctj +2025-06-18T15:11:12.181Z [INFO] user-service - PATCH /api/v1/users - Status: 201 - Response time: 854ms - IP: 192.168.14.77 - User: user_1099 - RequestID: 7ch000lsa4h +2025-06-18T15:11:12.281Z [INFO] auth-service - Auth event: logout - User: user_1077 - IP: 192.168.79.116 - RequestID: z9277v5bh38 +2025-06-18T15:11:12.381Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 1874ms - IP: 192.168.68.158 - User: user_1003 - RequestID: 90moxci6p4 +2025-06-18T15:11:12.481Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 502 - Response time: 1864ms - IP: 192.168.181.225 - User: user_1033 - RequestID: dl07okeyqi +2025-06-18T15:11:12.581Z [TRACE] payment-service - Auth event: password_change - User: user_1030 - IP: 192.168.14.77 - RequestID: krip2qhnitp +2025-06-18T15:11:12.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 87ms - RequestID: faesjdu8fcn +2025-06-18T15:11:12.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1006 - IP: 192.168.235.117 - RequestID: ktp70u1egvq +2025-06-18T15:11:12.881Z [INFO] notification-service - Auth event: logout - User: user_1081 - IP: 192.168.100.240 - RequestID: tpufwzhwcia +2025-06-18T15:11:12.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.242.165 - RequestID: e4t65jw2vml +2025-06-18T15:11:13.081Z [INFO] order-service - Auth event: login_failed - User: user_1072 - IP: 192.168.32.38 - RequestID: ef3oqfb17pr +2025-06-18T15:11:13.181Z [TRACE] notification-service - Auth event: login_failed - User: user_1048 - IP: 192.168.79.143 - RequestID: 678u6lps84w +2025-06-18T15:11:13.281Z [DEBUG] notification-service - Database SELECT on products - Execution time: 257ms - Rows affected: 52 - RequestID: ge0rg09nqle +2025-06-18T15:11:13.381Z [TRACE] user-service - Auth event: password_change - User: user_1027 - IP: 192.168.13.72 - RequestID: dxgeb1ux10s +2025-06-18T15:11:13.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.141.100 - RequestID: xfp3snj7o8 +2025-06-18T15:11:13.581Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 404 - Response time: 687ms - IP: 192.168.229.123 - User: user_1022 - RequestID: 3n8aymm65o1 +2025-06-18T15:11:13.681Z [DEBUG] user-service - Operation: cache_miss - Processing time: 1029ms - RequestID: y2i91phkxb +2025-06-18T15:11:13.781Z [TRACE] user-service - POST /api/v1/users - Status: 502 - Response time: 20ms - IP: 192.168.196.226 - User: user_1009 - RequestID: cyxx2cjyt77 +2025-06-18T15:11:13.881Z [INFO] order-service - Database DELETE on orders - Execution time: 99ms - Rows affected: 87 - RequestID: y1bskiab9qa +2025-06-18T15:11:13.981Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 947ms - RequestID: 3vua4yvlf2y +2025-06-18T15:11:14.081Z [INFO] order-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.85.229 - RequestID: dom7lp4c8n +2025-06-18T15:11:14.181Z [INFO] inventory-service - Database UPDATE on products - Execution time: 22ms - Rows affected: 20 - RequestID: 186hq0dih1e +2025-06-18T15:11:14.281Z [DEBUG] user-service - Operation: cache_hit - Processing time: 555ms - RequestID: mwrtkqg2f1g +2025-06-18T15:11:14.381Z [INFO] order-service - Operation: order_created - Processing time: 217ms - RequestID: cw335l1ziv7 +2025-06-18T15:11:14.481Z [DEBUG] order-service - Auth event: logout - User: user_1014 - IP: 192.168.14.77 - RequestID: dfilnt704c8 +2025-06-18T15:11:14.581Z [INFO] notification-service - Database INSERT on users - Execution time: 113ms - Rows affected: 94 - RequestID: gl7qw5n8jl +2025-06-18T15:11:14.681Z [INFO] inventory-service - Operation: cache_hit - Processing time: 420ms - RequestID: ek59qqher2 +2025-06-18T15:11:14.781Z [TRACE] user-service - POST /api/v1/orders - Status: 400 - Response time: 82ms - IP: 192.168.14.77 - User: user_1047 - RequestID: bmiwiiaptdo +2025-06-18T15:11:14.881Z [INFO] order-service - Auth event: logout - User: user_1025 - IP: 192.168.81.206 - RequestID: 3hbmhybm1bu +2025-06-18T15:11:14.981Z [TRACE] user-service - Auth event: logout - User: user_1077 - IP: 192.168.247.134 - RequestID: 2k6uzygweyv +2025-06-18T15:11:15.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 788ms - RequestID: aifbk3j3dva +2025-06-18T15:11:15.181Z [INFO] notification-service - Auth event: token_refresh - User: user_1098 - IP: 192.168.68.128 - RequestID: 6u2shpjcaf8 +2025-06-18T15:11:15.281Z [DEBUG] notification-service - Auth event: logout - User: user_1093 - IP: 192.168.64.33 - RequestID: w9t9wu1d82 +2025-06-18T15:11:15.381Z [INFO] notification-service - Database INSERT on sessions - Execution time: 98ms - Rows affected: 5 - RequestID: 5houipgix02 +2025-06-18T15:11:15.481Z [INFO] inventory-service - Auth event: login_success - User: user_1092 - IP: 192.168.138.123 - RequestID: cgpi0bh6od9 +2025-06-18T15:11:15.581Z [TRACE] user-service - Auth event: login_success - User: user_1012 - IP: 192.168.68.128 - RequestID: v787xz684a +2025-06-18T15:11:15.681Z [TRACE] payment-service - Database UPDATE on products - Execution time: 479ms - Rows affected: 70 - RequestID: 0prl6jzc5qki +2025-06-18T15:11:15.781Z [DEBUG] order-service - Auth event: logout - User: user_1041 - IP: 192.168.32.38 - RequestID: kdqzv5o0xe +2025-06-18T15:11:15.881Z [DEBUG] order-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.196.226 - RequestID: sek7qfsqxa +2025-06-18T15:11:15.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1069 - IP: 192.168.211.72 - RequestID: rsds88dgzbk +2025-06-18T15:11:16.081Z [INFO] user-service - Database SELECT on products - Execution time: 82ms - Rows affected: 54 - RequestID: dg3sbbiv46f +2025-06-18T15:11:16.181Z [DEBUG] order-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 640ms - IP: 192.168.144.38 - User: user_1092 - RequestID: crk52sqt0xu +2025-06-18T15:11:16.281Z [INFO] order-service - Operation: webhook_sent - Processing time: 927ms - RequestID: 63795vfaoiu +2025-06-18T15:11:16.381Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 404 - Response time: 1114ms - IP: 192.168.138.123 - User: user_1022 - RequestID: k6j08ir4wl +2025-06-18T15:11:16.481Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.28.146 - RequestID: wo9b4jepitm +2025-06-18T15:11:16.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 676ms - RequestID: cbhzmu93s64 +2025-06-18T15:11:16.681Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 649ms - IP: 192.168.28.146 - User: user_1020 - RequestID: hb2pr9crp5q +2025-06-18T15:11:16.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.79.143 - RequestID: 72jdq0skhdv +2025-06-18T15:11:16.881Z [DEBUG] auth-service - GET /api/v1/payments - Status: 401 - Response time: 929ms - IP: 192.168.232.72 - User: user_1072 - RequestID: bhn72lybi9 +2025-06-18T15:11:16.981Z [DEBUG] user-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.159.94 - RequestID: tz5cqe4t5bp +2025-06-18T15:11:17.081Z [INFO] order-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1667ms - IP: 192.168.229.123 - User: user_1090 - RequestID: jmmuihjd7nd +2025-06-18T15:11:17.181Z [INFO] auth-service - GET /api/v1/auth/login - Status: 200 - Response time: 723ms - IP: 192.168.14.77 - User: user_1010 - RequestID: lq5ygm45c9h +2025-06-18T15:11:17.281Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 257ms - Rows affected: 54 - RequestID: p0t3nubf3uj +2025-06-18T15:11:17.381Z [INFO] user-service - Database INSERT on payments - Execution time: 368ms - Rows affected: 98 - RequestID: zrdd3tuhtjr +2025-06-18T15:11:17.481Z [TRACE] user-service - Auth event: login_failed - User: user_1057 - IP: 192.168.227.77 - RequestID: k9s1tk9p2a +2025-06-18T15:11:17.581Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 396ms - RequestID: gbbud62l1y5 +2025-06-18T15:11:17.681Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 200 - Response time: 1746ms - IP: 192.168.100.240 - User: user_1089 - RequestID: 6ci29sjfs5u +2025-06-18T15:11:17.781Z [INFO] order-service - Operation: webhook_sent - Processing time: 461ms - RequestID: m218b3urx2a +2025-06-18T15:11:17.881Z [DEBUG] order-service - Database DELETE on users - Execution time: 426ms - Rows affected: 91 - RequestID: grgcdb1qoq +2025-06-18T15:11:17.981Z [INFO] user-service - Auth event: login_success - User: user_1031 - IP: 192.168.187.199 - RequestID: fjx9w7a6hx8 +2025-06-18T15:11:18.081Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.144.38 - RequestID: hwu9nbdru7 +2025-06-18T15:11:18.181Z [TRACE] user-service - Database UPDATE on users - Execution time: 378ms - Rows affected: 18 - RequestID: 4jw4oxvgr3e +2025-06-18T15:11:18.281Z [TRACE] user-service - Auth event: logout - User: user_1077 - IP: 192.168.194.41 - RequestID: xodn9d578gn +2025-06-18T15:11:18.381Z [INFO] inventory-service - Database INSERT on orders - Execution time: 389ms - Rows affected: 12 - RequestID: axslrdw2zsv +2025-06-18T15:11:18.481Z [TRACE] user-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 194ms - IP: 192.168.32.38 - User: user_1076 - RequestID: y5c4u34fxx +2025-06-18T15:11:18.581Z [INFO] payment-service - Auth event: login_success - User: user_1093 - IP: 192.168.144.38 - RequestID: zam8840gpq9 +2025-06-18T15:11:18.681Z [DEBUG] auth-service - Auth event: password_change - User: user_1039 - IP: 192.168.189.103 - RequestID: 28eb0spm5fo +2025-06-18T15:11:18.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.28.146 - RequestID: zb5husqomp +2025-06-18T15:11:18.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 562ms - RequestID: j0wsli2vmbo +2025-06-18T15:11:18.981Z [INFO] payment-service - Operation: order_created - Processing time: 465ms - RequestID: 3d5ol5cfumj +2025-06-18T15:11:19.081Z [INFO] user-service - Auth event: logout - User: user_1047 - IP: 192.168.242.165 - RequestID: dgl0kehx30l +2025-06-18T15:11:19.181Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 132ms - Rows affected: 79 - RequestID: hien36pout7 +2025-06-18T15:11:19.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.247.134 - RequestID: k1qb4o3edz +2025-06-18T15:11:19.381Z [INFO] order-service - PUT /api/v1/inventory - Status: 500 - Response time: 1252ms - IP: 192.168.229.123 - User: user_1064 - RequestID: jceneo5bcn +2025-06-18T15:11:19.481Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 401 - Response time: 397ms - IP: 192.168.141.100 - User: user_1066 - RequestID: ppk0qmr7jpl +2025-06-18T15:11:19.581Z [TRACE] inventory-service - Auth event: login_failed - User: user_1067 - IP: 192.168.14.77 - RequestID: n8wsfz6it +2025-06-18T15:11:19.681Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 487ms - Rows affected: 43 - RequestID: 7c4kqkvivru +2025-06-18T15:11:19.781Z [INFO] user-service - Operation: cache_miss - Processing time: 686ms - RequestID: 4bldnp4f2ql +2025-06-18T15:11:19.881Z [INFO] user-service - Database SELECT on products - Execution time: 18ms - Rows affected: 69 - RequestID: 6v165ju0qd7 +2025-06-18T15:11:19.981Z [INFO] notification-service - Database UPDATE on users - Execution time: 365ms - Rows affected: 91 - RequestID: m8967b59qt +2025-06-18T15:11:20.081Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 500 - Response time: 94ms - IP: 192.168.170.215 - User: user_1021 - RequestID: 1hgc9qqs9qh +2025-06-18T15:11:20.181Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1017 - IP: 192.168.227.77 - RequestID: 699b2emlyqx +2025-06-18T15:11:20.281Z [DEBUG] notification-service - Operation: order_created - Processing time: 926ms - RequestID: 6i651iuczfd +2025-06-18T15:11:20.381Z [TRACE] notification-service - Auth event: logout - User: user_1050 - IP: 192.168.147.171 - RequestID: 28tvyox8nzg +2025-06-18T15:11:20.481Z [DEBUG] user-service - POST /api/v1/payments - Status: 401 - Response time: 227ms - IP: 192.168.240.169 - User: user_1012 - RequestID: e0g47jcbefr +2025-06-18T15:11:20.581Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 558ms - IP: 192.168.167.32 - User: user_1076 - RequestID: 36d0c8uni08 +2025-06-18T15:11:20.681Z [TRACE] notification-service - POST /api/v1/inventory - Status: 502 - Response time: 1418ms - IP: 192.168.167.32 - User: user_1091 - RequestID: xfsjkde35d8 +2025-06-18T15:11:20.781Z [INFO] inventory-service - Auth event: login_failed - User: user_1057 - IP: 192.168.147.171 - RequestID: y9drd9frcxp +2025-06-18T15:11:20.881Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 149ms - Rows affected: 88 - RequestID: wa6vpevaqk +2025-06-18T15:11:20.981Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 560ms - RequestID: xp5zjgon28 +2025-06-18T15:11:21.081Z [DEBUG] notification-service - Auth event: password_change - User: user_1077 - IP: 192.168.138.123 - RequestID: 38y48nbou1m +2025-06-18T15:11:21.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 621ms - RequestID: y1q20e1z5ob +2025-06-18T15:11:21.281Z [TRACE] auth-service - Database UPDATE on users - Execution time: 12ms - Rows affected: 17 - RequestID: 4dzzpn8c2ua +2025-06-18T15:11:21.381Z [INFO] user-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.159.94 - RequestID: eoghoclylko +2025-06-18T15:11:21.481Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 169ms - Rows affected: 45 - RequestID: 0i2jg46xluf +2025-06-18T15:11:21.581Z [INFO] inventory-service - Database DELETE on users - Execution time: 342ms - Rows affected: 65 - RequestID: det3hektpq9 +2025-06-18T15:11:21.681Z [INFO] inventory-service - DELETE /api/v1/users - Status: 201 - Response time: 1071ms - IP: 192.168.242.165 - User: user_1041 - RequestID: q8j6hqvk7vc +2025-06-18T15:11:21.781Z [TRACE] auth-service - GET /api/v1/payments - Status: 404 - Response time: 400ms - IP: 192.168.158.144 - User: user_1066 - RequestID: o683pnf6q0g +2025-06-18T15:11:21.881Z [DEBUG] auth-service - GET /api/v1/users - Status: 503 - Response time: 384ms - IP: 192.168.33.76 - User: user_1042 - RequestID: kyqumew82od +2025-06-18T15:11:21.981Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 140ms - Rows affected: 44 - RequestID: jwxuexqr63d +2025-06-18T15:11:22.081Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 211ms - Rows affected: 54 - RequestID: f7hmyqsy0mq +2025-06-18T15:11:22.181Z [INFO] order-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.227.77 - RequestID: v5abpq03rim +2025-06-18T15:11:22.281Z [DEBUG] order-service - Database SELECT on users - Execution time: 363ms - Rows affected: 92 - RequestID: ycephtkuhi +2025-06-18T15:11:22.381Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 384ms - Rows affected: 46 - RequestID: crkwk563ibl +2025-06-18T15:11:22.481Z [TRACE] notification-service - Auth event: login_success - User: user_1040 - IP: 192.168.53.133 - RequestID: ch7caq4l0n9 +2025-06-18T15:11:22.581Z [TRACE] order-service - Database SELECT on orders - Execution time: 86ms - Rows affected: 24 - RequestID: adj68g9f42e +2025-06-18T15:11:22.681Z [TRACE] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 1495ms - IP: 192.168.147.171 - User: user_1042 - RequestID: zzaseh3hf58 +2025-06-18T15:11:22.781Z [INFO] order-service - Operation: payment_processed - Processing time: 850ms - RequestID: 084fdnra9qso +2025-06-18T15:11:22.881Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1824ms - IP: 192.168.196.226 - User: user_1034 - RequestID: j0dzrb79iv +2025-06-18T15:11:22.981Z [TRACE] payment-service - Auth event: login_success - User: user_1054 - IP: 192.168.187.199 - RequestID: kp38ra0gun +2025-06-18T15:11:23.081Z [INFO] auth-service - POST /api/v1/payments - Status: 503 - Response time: 239ms - IP: 192.168.232.72 - User: user_1009 - RequestID: cwbumepm7d6 +2025-06-18T15:11:23.181Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 421ms - Rows affected: 36 - RequestID: b7vd0jdyfhp +2025-06-18T15:11:23.281Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 286ms - Rows affected: 67 - RequestID: nyxk1wdgawb +2025-06-18T15:11:23.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.138.123 - RequestID: 803pz5074lh +2025-06-18T15:11:23.481Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 613ms - RequestID: t9egzlu5u3g +2025-06-18T15:11:23.581Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 24ms - Rows affected: 38 - RequestID: a4xvjnq8j6o +2025-06-18T15:11:23.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.81.206 - RequestID: 9xv8byimao9 +2025-06-18T15:11:23.781Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 200 - Response time: 912ms - IP: 192.168.33.76 - User: user_1052 - RequestID: bhuh9137an +2025-06-18T15:11:23.881Z [INFO] notification-service - Operation: payment_processed - Processing time: 347ms - RequestID: znx5co9dnx +2025-06-18T15:11:23.981Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 59ms - Rows affected: 14 - RequestID: ge9jwhxa72v +2025-06-18T15:11:24.081Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 396ms - RequestID: r38hbow4t8l +2025-06-18T15:11:24.181Z [TRACE] notification-service - PUT /api/v1/users - Status: 404 - Response time: 1377ms - IP: 192.168.138.123 - User: user_1070 - RequestID: 7hqszdx2j78 +2025-06-18T15:11:24.281Z [INFO] payment-service - PUT /api/v1/orders - Status: 400 - Response time: 934ms - IP: 192.168.159.94 - User: user_1034 - RequestID: 3wfvxw4ptpy +2025-06-18T15:11:24.381Z [DEBUG] notification-service - Auth event: login_failed - User: user_1069 - IP: 192.168.181.225 - RequestID: 2lx7e71lzdd +2025-06-18T15:11:24.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.133.7 - RequestID: 9p8hjb6lvng +2025-06-18T15:11:24.581Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 353ms - Rows affected: 47 - RequestID: fs4nfy17m6w +2025-06-18T15:11:24.681Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 246ms - IP: 192.168.167.32 - User: user_1026 - RequestID: 6yk6m6f39o +2025-06-18T15:11:24.781Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 401 - Response time: 477ms - IP: 192.168.30.79 - User: user_1093 - RequestID: 8w7rk44ufft +2025-06-18T15:11:24.881Z [INFO] auth-service - Operation: payment_processed - Processing time: 292ms - RequestID: nshrhnrj3l +2025-06-18T15:11:24.981Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 500 - Response time: 85ms - IP: 192.168.30.79 - User: user_1004 - RequestID: khfddqifla +2025-06-18T15:11:25.081Z [INFO] inventory-service - Auth event: login_failed - User: user_1092 - IP: 192.168.31.117 - RequestID: dglbbrlnmo9 +2025-06-18T15:11:25.181Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1522ms - IP: 192.168.189.103 - User: user_1095 - RequestID: zdge704razp +2025-06-18T15:11:25.281Z [TRACE] order-service - Auth event: login_success - User: user_1082 - IP: 192.168.14.77 - RequestID: hn4debywcan +2025-06-18T15:11:25.381Z [INFO] order-service - POST /api/v1/auth/login - Status: 503 - Response time: 1294ms - IP: 192.168.44.5 - User: user_1023 - RequestID: 1ool8v5ugwi +2025-06-18T15:11:25.481Z [DEBUG] payment-service - Database DELETE on products - Execution time: 468ms - Rows affected: 62 - RequestID: 9n9jy9jmwgl +2025-06-18T15:11:25.581Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 682ms - RequestID: 7jhkut8perb +2025-06-18T15:11:25.681Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 503 - Response time: 504ms - IP: 192.168.196.226 - User: user_1032 - RequestID: kq3i04jocdh +2025-06-18T15:11:25.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.167.32 - RequestID: 5z1njuo40tl +2025-06-18T15:11:25.881Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 126ms - Rows affected: 82 - RequestID: lwof8em58ob +2025-06-18T15:11:25.981Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 355ms - Rows affected: 89 - RequestID: m75qoewqvx +2025-06-18T15:11:26.081Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 404 - Response time: 1471ms - IP: 192.168.100.240 - User: user_1009 - RequestID: 48adqpy8zhe +2025-06-18T15:11:26.181Z [TRACE] auth-service - Operation: payment_processed - Processing time: 928ms - RequestID: l2l0x1t975l +2025-06-18T15:11:26.281Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 702ms - IP: 192.168.141.100 - User: user_1095 - RequestID: gcdr24g0mxl +2025-06-18T15:11:26.381Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 189ms - Rows affected: 3 - RequestID: k20exb14g6k +2025-06-18T15:11:26.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 456ms - RequestID: f71msexcbx +2025-06-18T15:11:26.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1064 - IP: 192.168.10.184 - RequestID: duyobroy5ws +2025-06-18T15:11:26.681Z [TRACE] payment-service - GET /api/v1/orders - Status: 500 - Response time: 1318ms - IP: 192.168.100.240 - User: user_1052 - RequestID: 7w7vz0rs3m3 +2025-06-18T15:11:26.781Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 400 - Response time: 641ms - IP: 192.168.232.72 - User: user_1053 - RequestID: djpogxyxvx9 +2025-06-18T15:11:26.881Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1170ms - IP: 192.168.28.146 - User: user_1066 - RequestID: pwd9rn5d96 +2025-06-18T15:11:26.981Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 896ms - IP: 192.168.46.63 - User: user_1064 - RequestID: 78xpfrrxyhn +2025-06-18T15:11:27.081Z [INFO] notification-service - GET /api/v1/auth/login - Status: 403 - Response time: 1386ms - IP: 192.168.104.37 - User: user_1086 - RequestID: asaxxe2kjvf +2025-06-18T15:11:27.181Z [DEBUG] auth-service - Database INSERT on users - Execution time: 138ms - Rows affected: 89 - RequestID: z13533nqf3o +2025-06-18T15:11:27.281Z [TRACE] order-service - Auth event: password_change - User: user_1076 - IP: 192.168.100.240 - RequestID: 9amzkb8fm7f +2025-06-18T15:11:27.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.158.144 - RequestID: 6lrbtdd6qtv +2025-06-18T15:11:27.481Z [INFO] user-service - Database INSERT on orders - Execution time: 133ms - Rows affected: 27 - RequestID: 9a8oty6oknm +2025-06-18T15:11:27.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.229.123 - RequestID: 8krvtx6466n +2025-06-18T15:11:27.681Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 269ms - Rows affected: 87 - RequestID: syx3p8x5bsh +2025-06-18T15:11:27.781Z [DEBUG] notification-service - Database SELECT on users - Execution time: 466ms - Rows affected: 98 - RequestID: bv6o0nvs2k +2025-06-18T15:11:27.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 679ms - RequestID: lzx301d495 +2025-06-18T15:11:27.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.158.144 - RequestID: dgdy2ipjyyv +2025-06-18T15:11:28.081Z [INFO] payment-service - Operation: payment_processed - Processing time: 459ms - RequestID: 4qzpd1m0pal +2025-06-18T15:11:28.181Z [TRACE] user-service - Auth event: login_success - User: user_1025 - IP: 192.168.1.152 - RequestID: 77opplbhrht +2025-06-18T15:11:28.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 517ms - RequestID: iz8u0pzf72b +2025-06-18T15:11:28.381Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 319ms - RequestID: kfhb2a7g1if +2025-06-18T15:11:28.481Z [DEBUG] order-service - POST /api/v1/inventory - Status: 500 - Response time: 929ms - IP: 192.168.247.134 - User: user_1048 - RequestID: n3i464gps6 +2025-06-18T15:11:28.581Z [TRACE] order-service - Operation: email_sent - Processing time: 275ms - RequestID: 1n3qgfo1hms +2025-06-18T15:11:28.681Z [INFO] user-service - Operation: webhook_sent - Processing time: 838ms - RequestID: ew7t3iey6fk +2025-06-18T15:11:28.781Z [TRACE] user-service - Operation: cache_hit - Processing time: 313ms - RequestID: oqwd3dbv7w +2025-06-18T15:11:28.881Z [TRACE] inventory-service - Database INSERT on products - Execution time: 393ms - Rows affected: 0 - RequestID: nehznogdr3 +2025-06-18T15:11:28.981Z [INFO] order-service - Database DELETE on users - Execution time: 241ms - Rows affected: 54 - RequestID: xddhikyfr8s +2025-06-18T15:11:29.081Z [INFO] payment-service - Operation: cache_miss - Processing time: 493ms - RequestID: 8p3pcqa60fn +2025-06-18T15:11:29.181Z [INFO] payment-service - DELETE /api/v1/payments - Status: 403 - Response time: 1906ms - IP: 192.168.242.165 - User: user_1059 - RequestID: z1r5hjm67t +2025-06-18T15:11:29.281Z [TRACE] payment-service - GET /api/v1/orders - Status: 401 - Response time: 663ms - IP: 192.168.100.240 - User: user_1034 - RequestID: df6813xszhg +2025-06-18T15:11:29.381Z [TRACE] auth-service - Auth event: logout - User: user_1063 - IP: 192.168.138.123 - RequestID: ezcxixqv17a +2025-06-18T15:11:29.481Z [TRACE] order-service - POST /api/v1/orders - Status: 502 - Response time: 1442ms - IP: 192.168.174.114 - User: user_1042 - RequestID: 9j1qgocqivb +2025-06-18T15:11:29.581Z [INFO] auth-service - PATCH /api/v1/users - Status: 201 - Response time: 1173ms - IP: 192.168.229.123 - User: user_1077 - RequestID: x2ami6qh5xc +2025-06-18T15:11:29.681Z [INFO] payment-service - DELETE /api/v1/orders - Status: 401 - Response time: 441ms - IP: 192.168.64.33 - User: user_1004 - RequestID: jbgz5ac264n +2025-06-18T15:11:29.781Z [INFO] auth-service - GET /api/v1/inventory - Status: 404 - Response time: 222ms - IP: 192.168.100.240 - User: user_1007 - RequestID: t0z9o0qz9di +2025-06-18T15:11:29.881Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 320ms - Rows affected: 19 - RequestID: wn1ayg8ng5h +2025-06-18T15:11:29.981Z [INFO] user-service - Auth event: login_success - User: user_1012 - IP: 192.168.68.128 - RequestID: v315f5ldodi +2025-06-18T15:11:30.081Z [DEBUG] order-service - Database SELECT on payments - Execution time: 413ms - Rows affected: 89 - RequestID: t5s2v7prmkg +2025-06-18T15:11:30.181Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 402ms - Rows affected: 8 - RequestID: iiuxzzier48 +2025-06-18T15:11:30.281Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 335ms - Rows affected: 17 - RequestID: je1phhei5iq +2025-06-18T15:11:30.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.159.94 - RequestID: 8tazfb23sef +2025-06-18T15:11:30.481Z [TRACE] order-service - Operation: email_sent - Processing time: 1020ms - RequestID: qms0e6a2rz8 +2025-06-18T15:11:30.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 974ms - RequestID: gtrpulxymko +2025-06-18T15:11:30.681Z [INFO] inventory-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.235.117 - RequestID: fynoiwof2rk +2025-06-18T15:11:30.781Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 96ms - Rows affected: 84 - RequestID: majkaah0s4 +2025-06-18T15:11:30.881Z [INFO] notification-service - Database INSERT on payments - Execution time: 288ms - Rows affected: 91 - RequestID: uhuusgybjsi +2025-06-18T15:11:30.981Z [DEBUG] user-service - Auth event: password_change - User: user_1039 - IP: 192.168.10.184 - RequestID: qdnf8q040c +2025-06-18T15:11:31.081Z [TRACE] user-service - Auth event: login_failed - User: user_1040 - IP: 192.168.10.184 - RequestID: j6b9oa46b6s +2025-06-18T15:11:31.181Z [TRACE] order-service - Auth event: login_failed - User: user_1015 - IP: 192.168.53.133 - RequestID: ilkniu1se2 +2025-06-18T15:11:31.281Z [INFO] payment-service - POST /api/v1/orders - Status: 401 - Response time: 725ms - IP: 192.168.64.33 - User: user_1092 - RequestID: bercp4ua28n +2025-06-18T15:11:31.381Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 200 - Response time: 678ms - IP: 192.168.235.117 - User: user_1059 - RequestID: 09mlpesl7lce +2025-06-18T15:11:31.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.79.141 - RequestID: y31bhe9hotd +2025-06-18T15:11:31.581Z [INFO] notification-service - Database DELETE on payments - Execution time: 37ms - Rows affected: 75 - RequestID: wfjq4xwt3lp +2025-06-18T15:11:31.681Z [DEBUG] auth-service - Operation: email_sent - Processing time: 557ms - RequestID: 6xoripn3nw5 +2025-06-18T15:11:31.781Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 1472ms - IP: 192.168.104.37 - User: user_1087 - RequestID: 1umstm10jwl +2025-06-18T15:11:31.881Z [INFO] payment-service - Auth event: password_change - User: user_1078 - IP: 192.168.68.128 - RequestID: sk4j6td6f0j +2025-06-18T15:11:31.981Z [TRACE] order-service - Operation: email_sent - Processing time: 286ms - RequestID: 1hfibxcliff +2025-06-18T15:11:32.081Z [INFO] notification-service - Database INSERT on products - Execution time: 230ms - Rows affected: 29 - RequestID: yz1f8qa3hw +2025-06-18T15:11:32.181Z [INFO] notification-service - Operation: order_created - Processing time: 276ms - RequestID: hvr1c4e4nne +2025-06-18T15:11:32.281Z [INFO] auth-service - Database DELETE on products - Execution time: 442ms - Rows affected: 95 - RequestID: yneqpks6ynh +2025-06-18T15:11:32.381Z [TRACE] order-service - Database UPDATE on users - Execution time: 246ms - Rows affected: 14 - RequestID: l4z7ah9ye5g +2025-06-18T15:11:32.481Z [INFO] user-service - Auth event: login_failed - User: user_1060 - IP: 192.168.85.229 - RequestID: 6sr8e1dq6ui +2025-06-18T15:11:32.581Z [TRACE] user-service - PUT /api/v1/users - Status: 502 - Response time: 160ms - IP: 192.168.31.117 - User: user_1001 - RequestID: j5eif1uisng +2025-06-18T15:11:32.681Z [INFO] inventory-service - Operation: email_sent - Processing time: 186ms - RequestID: rhfdaths0hj +2025-06-18T15:11:32.781Z [DEBUG] order-service - Database UPDATE on users - Execution time: 199ms - Rows affected: 90 - RequestID: nn66pngo8o +2025-06-18T15:11:32.881Z [TRACE] payment-service - Operation: email_sent - Processing time: 1016ms - RequestID: wud9spm43u +2025-06-18T15:11:32.981Z [INFO] notification-service - Auth event: password_change - User: user_1037 - IP: 192.168.240.169 - RequestID: yxc6ipket +2025-06-18T15:11:33.081Z [INFO] order-service - POST /api/v1/auth/login - Status: 500 - Response time: 1211ms - IP: 192.168.81.206 - User: user_1060 - RequestID: 25yrahx397w +2025-06-18T15:11:33.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 300ms - RequestID: 0lf3rivwtrfd +2025-06-18T15:11:33.281Z [TRACE] order-service - Database DELETE on products - Execution time: 376ms - Rows affected: 23 - RequestID: xj7nlsnhxq +2025-06-18T15:11:33.381Z [INFO] payment-service - Operation: inventory_updated - Processing time: 550ms - RequestID: a7q7yqwd3ao +2025-06-18T15:11:33.481Z [TRACE] user-service - Auth event: logout - User: user_1006 - IP: 192.168.232.72 - RequestID: 1npodxiuswd +2025-06-18T15:11:33.581Z [TRACE] auth-service - Database SELECT on products - Execution time: 207ms - Rows affected: 95 - RequestID: aagu8bq1tg8 +2025-06-18T15:11:33.681Z [TRACE] user-service - Auth event: login_failed - User: user_1012 - IP: 192.168.85.229 - RequestID: 23q4nosob88 +2025-06-18T15:11:33.781Z [TRACE] user-service - POST /api/v1/inventory - Status: 404 - Response time: 358ms - IP: 192.168.32.38 - User: user_1094 - RequestID: gf2s6huvk1a +2025-06-18T15:11:33.881Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.113.218 - RequestID: 7of7k4rqfu3 +2025-06-18T15:11:33.981Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 797ms - RequestID: exhk17dl8g +2025-06-18T15:11:34.081Z [INFO] notification-service - GET /api/v1/auth/login - Status: 201 - Response time: 128ms - IP: 192.168.97.87 - User: user_1066 - RequestID: kzffhwxyo08 +2025-06-18T15:11:34.181Z [INFO] inventory-service - Auth event: login_success - User: user_1071 - IP: 192.168.68.128 - RequestID: 1nv9w2o421f +2025-06-18T15:11:34.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 83ms - RequestID: kbuhidaiuz +2025-06-18T15:11:34.381Z [TRACE] order-service - Database SELECT on products - Execution time: 38ms - Rows affected: 0 - RequestID: n4m5eyifsii +2025-06-18T15:11:34.481Z [DEBUG] order-service - GET /api/v1/inventory - Status: 404 - Response time: 880ms - IP: 192.168.53.133 - User: user_1089 - RequestID: ax5b7kai6mm +2025-06-18T15:11:34.581Z [TRACE] payment-service - PATCH /api/v1/users - Status: 401 - Response time: 414ms - IP: 192.168.181.225 - User: user_1045 - RequestID: rzsw6xic7m +2025-06-18T15:11:34.681Z [INFO] payment-service - Operation: cache_miss - Processing time: 871ms - RequestID: p8rvjeojgya +2025-06-18T15:11:34.781Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 400ms - RequestID: ghdweqgrx3e +2025-06-18T15:11:34.881Z [TRACE] user-service - Auth event: password_change - User: user_1035 - IP: 192.168.68.158 - RequestID: jcyqvb9w0n +2025-06-18T15:11:34.981Z [TRACE] inventory-service - Database INSERT on products - Execution time: 19ms - Rows affected: 89 - RequestID: fgh73gal18 +2025-06-18T15:11:35.081Z [TRACE] inventory-service - Operation: order_created - Processing time: 952ms - RequestID: du2e2k6v52w +2025-06-18T15:11:35.181Z [INFO] inventory-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.30.79 - RequestID: cahqkto92uc +2025-06-18T15:11:35.281Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 1014ms - RequestID: sdfvxe7l90h +2025-06-18T15:11:35.381Z [DEBUG] notification-service - Auth event: logout - User: user_1019 - IP: 192.168.232.72 - RequestID: kfeiz5dnh9d +2025-06-18T15:11:35.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 668ms - RequestID: x4qct68xy3 +2025-06-18T15:11:35.581Z [DEBUG] user-service - Database DELETE on orders - Execution time: 409ms - Rows affected: 22 - RequestID: vpal00n53k +2025-06-18T15:11:35.681Z [TRACE] notification-service - Auth event: password_change - User: user_1066 - IP: 192.168.100.240 - RequestID: tmoytdidr8e +2025-06-18T15:11:35.781Z [DEBUG] user-service - Operation: order_created - Processing time: 234ms - RequestID: eb2cezvxtzd +2025-06-18T15:11:35.881Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 270ms - Rows affected: 94 - RequestID: svv2velhx3 +2025-06-18T15:11:35.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.100.240 - RequestID: 3so78ijdfpn +2025-06-18T15:11:36.081Z [INFO] user-service - Operation: webhook_sent - Processing time: 690ms - RequestID: m81z5zlukz +2025-06-18T15:11:36.181Z [TRACE] notification-service - Operation: notification_queued - Processing time: 269ms - RequestID: js3zweswplp +2025-06-18T15:11:36.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1059 - IP: 192.168.33.76 - RequestID: ersvuminneh +2025-06-18T15:11:36.381Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 200 - Response time: 213ms - IP: 192.168.79.116 - User: user_1084 - RequestID: il9cbbourz +2025-06-18T15:11:36.481Z [INFO] notification-service - GET /api/v1/inventory - Status: 400 - Response time: 1631ms - IP: 192.168.79.143 - User: user_1017 - RequestID: v4kezmqe0op +2025-06-18T15:11:36.581Z [INFO] payment-service - Database SELECT on sessions - Execution time: 143ms - Rows affected: 60 - RequestID: wftn6ujdmj +2025-06-18T15:11:36.681Z [INFO] auth-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.33.76 - RequestID: zvnzl9oou1 +2025-06-18T15:11:36.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.33.76 - RequestID: k11o6yzdsqg +2025-06-18T15:11:36.881Z [INFO] user-service - Database UPDATE on payments - Execution time: 116ms - Rows affected: 35 - RequestID: 1y1z1fzu49sj +2025-06-18T15:11:36.981Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 230ms - Rows affected: 55 - RequestID: muzw23ktqt +2025-06-18T15:11:37.081Z [TRACE] user-service - Operation: cache_miss - Processing time: 436ms - RequestID: x2eei4l5tpi +2025-06-18T15:11:37.181Z [INFO] notification-service - Operation: cache_hit - Processing time: 748ms - RequestID: zfdnvx1zr9 +2025-06-18T15:11:37.281Z [TRACE] user-service - PATCH /api/v1/payments - Status: 401 - Response time: 326ms - IP: 192.168.174.114 - User: user_1013 - RequestID: 7ii7lew9cfs +2025-06-18T15:11:37.381Z [TRACE] auth-service - POST /api/v1/inventory - Status: 400 - Response time: 1707ms - IP: 192.168.85.229 - User: user_1045 - RequestID: qbk0kdgfof +2025-06-18T15:11:37.481Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.229.123 - RequestID: jxoz3tio3s +2025-06-18T15:11:37.581Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 467ms - Rows affected: 75 - RequestID: egz2862osha +2025-06-18T15:11:37.681Z [INFO] payment-service - Auth event: logout - User: user_1065 - IP: 192.168.36.218 - RequestID: 5rh1oyiwpz9 +2025-06-18T15:11:37.781Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 53ms - Rows affected: 48 - RequestID: 3nfm65dvwlj +2025-06-18T15:11:37.881Z [INFO] notification-service - GET /api/v1/inventory - Status: 502 - Response time: 1563ms - IP: 192.168.44.5 - User: user_1083 - RequestID: llmeylcd2jb +2025-06-18T15:11:37.981Z [TRACE] order-service - PATCH /api/v1/payments - Status: 400 - Response time: 1206ms - IP: 192.168.181.225 - User: user_1027 - RequestID: c7ckghnhbjo +2025-06-18T15:11:38.081Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 402ms - RequestID: ud84k680b5 +2025-06-18T15:11:38.181Z [INFO] inventory-service - PATCH /api/v1/users - Status: 404 - Response time: 2004ms - IP: 192.168.11.60 - User: user_1045 - RequestID: 9j91i1o0fq +2025-06-18T15:11:38.281Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 94ms - Rows affected: 7 - RequestID: u03o23mssy +2025-06-18T15:11:38.381Z [TRACE] payment-service - POST /api/v1/inventory - Status: 503 - Response time: 320ms - IP: 192.168.13.72 - User: user_1089 - RequestID: xib15p8mep +2025-06-18T15:11:38.481Z [TRACE] notification-service - Operation: cache_miss - Processing time: 115ms - RequestID: 4a7nmokb8eu +2025-06-18T15:11:38.581Z [INFO] payment-service - Database UPDATE on payments - Execution time: 47ms - Rows affected: 66 - RequestID: btwtsh4xu3t +2025-06-18T15:11:38.681Z [TRACE] order-service - Operation: order_created - Processing time: 969ms - RequestID: h5yowhoi596 +2025-06-18T15:11:38.781Z [INFO] user-service - Operation: cache_miss - Processing time: 776ms - RequestID: fez6lh5zlbw +2025-06-18T15:11:38.881Z [TRACE] user-service - Database DELETE on sessions - Execution time: 477ms - Rows affected: 65 - RequestID: 6jkri2cor64 +2025-06-18T15:11:38.981Z [INFO] payment-service - POST /api/v1/auth/login - Status: 200 - Response time: 2008ms - IP: 192.168.141.100 - User: user_1013 - RequestID: fx74qmvoqir +2025-06-18T15:11:39.081Z [TRACE] inventory-service - Auth event: login_failed - User: user_1059 - IP: 192.168.53.133 - RequestID: zf2xxm3uggg +2025-06-18T15:11:39.181Z [TRACE] auth-service - Auth event: login_failed - User: user_1053 - IP: 192.168.144.38 - RequestID: vu34wxzwc1p +2025-06-18T15:11:39.281Z [INFO] inventory-service - Auth event: password_change - User: user_1096 - IP: 192.168.196.226 - RequestID: 8zklxst1a2v +2025-06-18T15:11:39.381Z [INFO] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 1490ms - IP: 192.168.68.158 - User: user_1035 - RequestID: ebnawr62k6s +2025-06-18T15:11:39.481Z [TRACE] user-service - Database UPDATE on products - Execution time: 51ms - Rows affected: 65 - RequestID: mwksq2tnlwp +2025-06-18T15:11:39.581Z [TRACE] inventory-service - Auth event: login_failed - User: user_1096 - IP: 192.168.11.60 - RequestID: o93ts7m25g +2025-06-18T15:11:39.681Z [DEBUG] inventory-service - Operation: order_created - Processing time: 628ms - RequestID: epd2rfpb5xe +2025-06-18T15:11:39.781Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 72ms - Rows affected: 67 - RequestID: gch0ezfuptl +2025-06-18T15:11:39.881Z [INFO] user-service - PUT /api/v1/payments - Status: 404 - Response time: 889ms - IP: 192.168.240.169 - User: user_1039 - RequestID: 08hnmncphlbl +2025-06-18T15:11:39.981Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1684ms - IP: 192.168.187.199 - User: user_1021 - RequestID: ormtm3zp4d +2025-06-18T15:11:40.081Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 200ms - RequestID: eeky7ji0kvd +2025-06-18T15:11:40.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.31.117 - RequestID: 4wo6q0tl5pi +2025-06-18T15:11:40.281Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 334ms - Rows affected: 24 - RequestID: f7zh1adm7w +2025-06-18T15:11:40.381Z [INFO] payment-service - PUT /api/v1/inventory - Status: 400 - Response time: 614ms - IP: 192.168.141.100 - User: user_1095 - RequestID: b0r5saflz06 +2025-06-18T15:11:40.481Z [TRACE] notification-service - POST /api/v1/users - Status: 201 - Response time: 548ms - IP: 192.168.227.77 - User: user_1098 - RequestID: n9s2lnjcgde +2025-06-18T15:11:40.581Z [TRACE] payment-service - Database DELETE on products - Execution time: 278ms - Rows affected: 37 - RequestID: b3ce3ezeop +2025-06-18T15:11:40.681Z [INFO] payment-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.240.169 - RequestID: 0wfkfoe3efb +2025-06-18T15:11:40.781Z [INFO] order-service - Database INSERT on products - Execution time: 69ms - Rows affected: 56 - RequestID: 9g7rvpo7kgo +2025-06-18T15:11:40.881Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 346ms - RequestID: mx2t2twtp47 +2025-06-18T15:11:40.981Z [TRACE] order-service - Operation: order_created - Processing time: 327ms - RequestID: gl0i9z6efe +2025-06-18T15:11:41.081Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1032 - IP: 192.168.181.225 - RequestID: vg7wvono1z +2025-06-18T15:11:41.181Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 34ms - Rows affected: 27 - RequestID: tjiw5lx47gh +2025-06-18T15:11:41.281Z [INFO] order-service - GET /api/v1/auth/login - Status: 503 - Response time: 847ms - IP: 192.168.196.226 - User: user_1055 - RequestID: mgrp8uzmm6p +2025-06-18T15:11:41.381Z [DEBUG] auth-service - Operation: order_created - Processing time: 424ms - RequestID: fb5a895pk3m +2025-06-18T15:11:41.481Z [INFO] payment-service - Database UPDATE on payments - Execution time: 129ms - Rows affected: 68 - RequestID: bfat15veadf +2025-06-18T15:11:41.581Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 503 - Response time: 1169ms - IP: 192.168.170.215 - User: user_1066 - RequestID: qrc79ucro58 +2025-06-18T15:11:41.681Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 407ms - Rows affected: 92 - RequestID: bnro099xmd +2025-06-18T15:11:41.781Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 622ms - IP: 192.168.174.114 - User: user_1053 - RequestID: rv4si2kgkm +2025-06-18T15:11:41.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 166ms - RequestID: pozxaxzk1tq +2025-06-18T15:11:41.981Z [INFO] notification-service - GET /api/v1/users - Status: 404 - Response time: 918ms - IP: 192.168.100.240 - User: user_1061 - RequestID: gksqbz8off5 +2025-06-18T15:11:42.081Z [INFO] order-service - PUT /api/v1/users - Status: 401 - Response time: 445ms - IP: 192.168.10.184 - User: user_1025 - RequestID: nrqj4v4stvi +2025-06-18T15:11:42.181Z [DEBUG] order-service - Database INSERT on payments - Execution time: 29ms - Rows affected: 66 - RequestID: n7othoh58f +2025-06-18T15:11:42.281Z [INFO] user-service - PUT /api/v1/orders - Status: 400 - Response time: 197ms - IP: 192.168.187.199 - User: user_1011 - RequestID: 1y4vs4w3cgni +2025-06-18T15:11:42.381Z [TRACE] notification-service - Operation: cache_miss - Processing time: 224ms - RequestID: 2wspt3u8wnq +2025-06-18T15:11:42.481Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 147ms - Rows affected: 25 - RequestID: k114b4k43h +2025-06-18T15:11:42.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1015 - IP: 192.168.113.218 - RequestID: co2dm1cj65t +2025-06-18T15:11:42.681Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 585ms - RequestID: byuauhu4u5u +2025-06-18T15:11:42.781Z [INFO] order-service - Operation: order_created - Processing time: 725ms - RequestID: 8rkrl99y8nh +2025-06-18T15:11:42.881Z [TRACE] auth-service - Database UPDATE on products - Execution time: 435ms - Rows affected: 23 - RequestID: sawfmztlblb +2025-06-18T15:11:42.981Z [TRACE] user-service - Database INSERT on products - Execution time: 297ms - Rows affected: 0 - RequestID: g7ihgdg3e +2025-06-18T15:11:43.081Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 601ms - RequestID: 6scj8kz75i2 +2025-06-18T15:11:43.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 112ms - RequestID: s4d17xwrrr +2025-06-18T15:11:43.281Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 221ms - RequestID: 2gmimb6dpvs +2025-06-18T15:11:43.381Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 495ms - IP: 192.168.31.117 - User: user_1098 - RequestID: 81smz8a7oxa +2025-06-18T15:11:43.481Z [DEBUG] user-service - Auth event: password_change - User: user_1058 - IP: 192.168.113.218 - RequestID: bk3l04mttzs +2025-06-18T15:11:43.581Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 281ms - Rows affected: 53 - RequestID: s9lcyot0c5r +2025-06-18T15:11:43.681Z [INFO] user-service - Database UPDATE on payments - Execution time: 317ms - Rows affected: 34 - RequestID: u97g86pv5w +2025-06-18T15:11:43.781Z [INFO] notification-service - Operation: email_sent - Processing time: 670ms - RequestID: ibrraojjz6g +2025-06-18T15:11:43.881Z [DEBUG] user-service - Auth event: password_change - User: user_1063 - IP: 192.168.138.123 - RequestID: 4ihhado28b4 +2025-06-18T15:11:43.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1050 - IP: 192.168.170.215 - RequestID: m6vbw54q4b +2025-06-18T15:11:44.081Z [INFO] user-service - Database INSERT on payments - Execution time: 314ms - Rows affected: 17 - RequestID: zx7aicnzfwt +2025-06-18T15:11:44.181Z [TRACE] payment-service - Operation: notification_queued - Processing time: 906ms - RequestID: yauooirt83 +2025-06-18T15:11:44.281Z [INFO] payment-service - GET /api/v1/payments - Status: 404 - Response time: 1382ms - IP: 192.168.189.103 - User: user_1049 - RequestID: z17c1us15lo +2025-06-18T15:11:44.381Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 879ms - RequestID: pj55t79ydf +2025-06-18T15:11:44.481Z [TRACE] notification-service - Auth event: logout - User: user_1098 - IP: 192.168.211.72 - RequestID: tzs8cbvrwp +2025-06-18T15:11:44.581Z [TRACE] auth-service - GET /api/v1/orders - Status: 404 - Response time: 344ms - IP: 192.168.227.77 - User: user_1031 - RequestID: yqq4nsjlu7m +2025-06-18T15:11:44.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.138.123 - RequestID: habljnpjvr5 +2025-06-18T15:11:44.781Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 159ms - Rows affected: 53 - RequestID: sujwc0v7r6 +2025-06-18T15:11:44.881Z [DEBUG] user-service - Database INSERT on users - Execution time: 283ms - Rows affected: 72 - RequestID: 9bxv6zzr4p +2025-06-18T15:11:44.981Z [TRACE] auth-service - Operation: payment_processed - Processing time: 671ms - RequestID: df8q59qvfka +2025-06-18T15:11:45.081Z [INFO] notification-service - Database INSERT on products - Execution time: 110ms - Rows affected: 7 - RequestID: r2wqhcamvq8 +2025-06-18T15:11:45.181Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.79.143 - RequestID: ot5mb839al +2025-06-18T15:11:45.281Z [INFO] order-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.79.143 - RequestID: eles7gp0zg +2025-06-18T15:11:45.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 942ms - RequestID: jwldhxgpe3 +2025-06-18T15:11:45.481Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 234ms - Rows affected: 54 - RequestID: 3s5yj3e49q +2025-06-18T15:11:45.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1077 - IP: 192.168.79.143 - RequestID: x3et9jfn61 +2025-06-18T15:11:45.681Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 487ms - Rows affected: 90 - RequestID: zo512cpl8x +2025-06-18T15:11:45.781Z [INFO] user-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1965ms - IP: 192.168.64.33 - User: user_1074 - RequestID: 3my5us63vgk +2025-06-18T15:11:45.881Z [TRACE] order-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.11.60 - RequestID: u8l5isjfobr +2025-06-18T15:11:45.981Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 345ms - RequestID: zl9c5o2srmk +2025-06-18T15:11:46.081Z [INFO] payment-service - Auth event: logout - User: user_1074 - IP: 192.168.138.123 - RequestID: v12idnbwc8p +2025-06-18T15:11:46.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1097 - IP: 192.168.30.79 - RequestID: 1ue7n9yf9te +2025-06-18T15:11:46.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1054 - IP: 192.168.10.184 - RequestID: 0fx3y1wh986b +2025-06-18T15:11:46.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.11.60 - RequestID: 548jo5eb89m +2025-06-18T15:11:46.481Z [INFO] inventory-service - PATCH /api/v1/users - Status: 503 - Response time: 1476ms - IP: 192.168.36.218 - User: user_1076 - RequestID: ipig4xliibg +2025-06-18T15:11:46.581Z [TRACE] user-service - GET /api/v1/payments - Status: 503 - Response time: 427ms - IP: 192.168.64.33 - User: user_1000 - RequestID: e1hrleb3nbj +2025-06-18T15:11:46.681Z [TRACE] inventory-service - Auth event: password_change - User: user_1020 - IP: 192.168.81.206 - RequestID: nf5f73s8xlg +2025-06-18T15:11:46.781Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 91ms - Rows affected: 32 - RequestID: 8fg0vhvowba +2025-06-18T15:11:46.881Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 200 - Response time: 831ms - IP: 192.168.36.218 - User: user_1004 - RequestID: stsrjhv825e +2025-06-18T15:11:46.981Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 503 - Response time: 1132ms - IP: 192.168.235.117 - User: user_1045 - RequestID: apqs6l485u +2025-06-18T15:11:47.081Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 790ms - RequestID: i4zrymudhtk +2025-06-18T15:11:47.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.211.72 - RequestID: 76v0as2hakp +2025-06-18T15:11:47.281Z [INFO] notification-service - Operation: order_created - Processing time: 189ms - RequestID: ibslw5fokjs +2025-06-18T15:11:47.381Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 184ms - RequestID: v6oezpq6mq +2025-06-18T15:11:47.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.31.117 - RequestID: vwfu54v688 +2025-06-18T15:11:47.581Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 344ms - Rows affected: 90 - RequestID: v0d45kf87fq +2025-06-18T15:11:47.681Z [TRACE] order-service - Database DELETE on users - Execution time: 171ms - Rows affected: 96 - RequestID: hd8tk2ibxcj +2025-06-18T15:11:47.781Z [TRACE] notification-service - Database INSERT on users - Execution time: 95ms - Rows affected: 0 - RequestID: 06aleg16ti0x +2025-06-18T15:11:47.881Z [INFO] notification-service - Database INSERT on users - Execution time: 23ms - Rows affected: 57 - RequestID: qwk3nys3f8 +2025-06-18T15:11:47.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1042 - IP: 192.168.240.169 - RequestID: 5vpr1wsu39n +2025-06-18T15:11:48.081Z [DEBUG] inventory-service - Operation: order_created - Processing time: 863ms - RequestID: sgx4d5k9h0p +2025-06-18T15:11:48.181Z [TRACE] payment-service - Operation: notification_queued - Processing time: 149ms - RequestID: ias17nbtqh +2025-06-18T15:11:48.281Z [DEBUG] user-service - Database INSERT on users - Execution time: 313ms - Rows affected: 29 - RequestID: aal6vy63dvv +2025-06-18T15:11:48.381Z [TRACE] order-service - Database UPDATE on users - Execution time: 437ms - Rows affected: 0 - RequestID: 23aichmbiws +2025-06-18T15:11:48.481Z [INFO] inventory-service - Database SELECT on orders - Execution time: 270ms - Rows affected: 40 - RequestID: ta8zn87lkl +2025-06-18T15:11:48.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 276ms - RequestID: s0iyeg4clxi +2025-06-18T15:11:48.681Z [INFO] order-service - Operation: webhook_sent - Processing time: 546ms - RequestID: l79upooresk +2025-06-18T15:11:48.781Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 121ms - Rows affected: 55 - RequestID: oq4sev1e8b +2025-06-18T15:11:48.881Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 336ms - IP: 192.168.97.87 - User: user_1007 - RequestID: q9zaz5vr54m +2025-06-18T15:11:48.981Z [INFO] notification-service - Auth event: password_change - User: user_1084 - IP: 192.168.187.199 - RequestID: orhu72bjtl +2025-06-18T15:11:49.081Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 200 - Response time: 830ms - IP: 192.168.81.206 - User: user_1039 - RequestID: exw7btyh8vt +2025-06-18T15:11:49.181Z [INFO] notification-service - Operation: cache_miss - Processing time: 759ms - RequestID: 845f87v2kj8 +2025-06-18T15:11:49.281Z [INFO] notification-service - Database DELETE on sessions - Execution time: 297ms - Rows affected: 91 - RequestID: 91rtbapd7o7 +2025-06-18T15:11:49.381Z [TRACE] user-service - Auth event: login_failed - User: user_1062 - IP: 192.168.194.41 - RequestID: 55bvnftqt3m +2025-06-18T15:11:49.481Z [TRACE] order-service - Database UPDATE on products - Execution time: 405ms - Rows affected: 20 - RequestID: ot9mvxkvxkn +2025-06-18T15:11:49.581Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 220ms - Rows affected: 11 - RequestID: z7gqrnoc7oj +2025-06-18T15:11:49.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1014 - IP: 192.168.227.233 - RequestID: 5ch9zukjs1 +2025-06-18T15:11:49.781Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 856ms - RequestID: 6744nf5mwmq +2025-06-18T15:11:49.881Z [INFO] payment-service - POST /api/v1/payments - Status: 500 - Response time: 100ms - IP: 192.168.242.165 - User: user_1091 - RequestID: wmsc6ipzt9 +2025-06-18T15:11:49.981Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 359ms - IP: 192.168.138.123 - User: user_1016 - RequestID: m116fqnmu4i +2025-06-18T15:11:50.081Z [TRACE] payment-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.28.146 - RequestID: 3mjl0htep6t +2025-06-18T15:11:50.181Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 796ms - RequestID: bz06dq80ho6 +2025-06-18T15:11:50.281Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 404 - Response time: 1157ms - IP: 192.168.227.77 - User: user_1083 - RequestID: lrpa41stkm +2025-06-18T15:11:50.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 904ms - RequestID: igxblbvq9v +2025-06-18T15:11:50.481Z [TRACE] auth-service - Operation: cache_miss - Processing time: 514ms - RequestID: jglfnui63rb +2025-06-18T15:11:50.581Z [TRACE] inventory-service - Database SELECT on products - Execution time: 156ms - Rows affected: 9 - RequestID: 11w20nph1tz +2025-06-18T15:11:50.681Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 151ms - RequestID: nfj8vm59fbk +2025-06-18T15:11:50.781Z [TRACE] order-service - Database SELECT on sessions - Execution time: 140ms - Rows affected: 82 - RequestID: mt46tnilcrj +2025-06-18T15:11:50.881Z [TRACE] order-service - Database INSERT on orders - Execution time: 265ms - Rows affected: 69 - RequestID: jooqh3rhhm +2025-06-18T15:11:50.981Z [TRACE] auth-service - Database DELETE on orders - Execution time: 114ms - Rows affected: 43 - RequestID: 76x0uv8bfty +2025-06-18T15:11:51.081Z [TRACE] inventory-service - POST /api/v1/payments - Status: 200 - Response time: 319ms - IP: 192.168.242.165 - User: user_1074 - RequestID: yz79pmyo95 +2025-06-18T15:11:51.181Z [INFO] user-service - Operation: webhook_sent - Processing time: 326ms - RequestID: 38tzmr8gwkl +2025-06-18T15:11:51.281Z [INFO] payment-service - Operation: notification_queued - Processing time: 688ms - RequestID: sijouzk0k2f +2025-06-18T15:11:51.381Z [INFO] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1196ms - IP: 192.168.159.94 - User: user_1029 - RequestID: pnlf808r4vc +2025-06-18T15:11:51.481Z [TRACE] inventory-service - Database INSERT on users - Execution time: 450ms - Rows affected: 90 - RequestID: 4e6r256pvfc +2025-06-18T15:11:51.581Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 388ms - RequestID: v9jut2wpe5o +2025-06-18T15:11:51.681Z [TRACE] user-service - Database INSERT on users - Execution time: 332ms - Rows affected: 61 - RequestID: wqkb080ejf +2025-06-18T15:11:51.781Z [TRACE] order-service - Database UPDATE on users - Execution time: 387ms - Rows affected: 64 - RequestID: voefuyrwyq +2025-06-18T15:11:51.881Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 1002ms - RequestID: febkc5dk6qn +2025-06-18T15:11:51.981Z [DEBUG] order-service - Operation: notification_queued - Processing time: 723ms - RequestID: 10ioewroknmh +2025-06-18T15:11:52.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.81.206 - RequestID: 7u5ldogrybr +2025-06-18T15:11:52.181Z [INFO] order-service - Database SELECT on products - Execution time: 292ms - Rows affected: 97 - RequestID: 9kj35vh4sog +2025-06-18T15:11:52.281Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 68ms - Rows affected: 4 - RequestID: jxew8enoo5q +2025-06-18T15:11:52.381Z [TRACE] payment-service - POST /api/v1/orders - Status: 502 - Response time: 1701ms - IP: 192.168.194.41 - User: user_1089 - RequestID: ev41r3jf3jp +2025-06-18T15:11:52.481Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 140ms - Rows affected: 97 - RequestID: ft931h75pdf +2025-06-18T15:11:52.581Z [INFO] notification-service - Database UPDATE on orders - Execution time: 259ms - Rows affected: 43 - RequestID: q5h9nh2v5hp +2025-06-18T15:11:52.681Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 1042ms - RequestID: xo8nuynf2v +2025-06-18T15:11:52.781Z [TRACE] auth-service - PUT /api/v1/payments - Status: 201 - Response time: 1363ms - IP: 192.168.33.76 - User: user_1002 - RequestID: fnnnm68hknr +2025-06-18T15:11:52.881Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 41ms - Rows affected: 32 - RequestID: wwdzr1q6ox +2025-06-18T15:11:52.981Z [TRACE] order-service - Operation: cache_miss - Processing time: 706ms - RequestID: ug8sc8tybm +2025-06-18T15:11:53.081Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1743ms - IP: 192.168.13.72 - User: user_1030 - RequestID: i20cgf48hi +2025-06-18T15:11:53.181Z [TRACE] auth-service - Operation: notification_queued - Processing time: 471ms - RequestID: 802xg8j6am2 +2025-06-18T15:11:53.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.44.5 - RequestID: cwb2eo957rk +2025-06-18T15:11:53.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.232.72 - RequestID: 3kyum9ug7pz +2025-06-18T15:11:53.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.10.184 - RequestID: 0rieodhiajrn +2025-06-18T15:11:53.581Z [TRACE] payment-service - Operation: order_created - Processing time: 571ms - RequestID: nc582rjeygb +2025-06-18T15:11:53.681Z [DEBUG] user-service - Database DELETE on orders - Execution time: 372ms - Rows affected: 43 - RequestID: o8auqrt04j +2025-06-18T15:11:53.781Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1040 - IP: 192.168.11.60 - RequestID: berrni8mbfs +2025-06-18T15:11:53.881Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 253ms - Rows affected: 47 - RequestID: ks17guganm +2025-06-18T15:11:53.981Z [TRACE] user-service - Auth event: password_change - User: user_1037 - IP: 192.168.36.218 - RequestID: 93uairalvil +2025-06-18T15:11:54.081Z [INFO] notification-service - Auth event: password_change - User: user_1048 - IP: 192.168.181.225 - RequestID: qlsfnb9byba +2025-06-18T15:11:54.181Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 326ms - Rows affected: 83 - RequestID: l2dcou1focb +2025-06-18T15:11:54.281Z [INFO] order-service - DELETE /api/v1/payments - Status: 401 - Response time: 1394ms - IP: 192.168.46.63 - User: user_1006 - RequestID: w7law6tx7qs +2025-06-18T15:11:54.381Z [TRACE] order-service - Operation: notification_queued - Processing time: 94ms - RequestID: e6fql6kd537 +2025-06-18T15:11:54.481Z [TRACE] user-service - Operation: notification_queued - Processing time: 57ms - RequestID: a109u75s445 +2025-06-18T15:11:54.581Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 153ms - RequestID: pba8tlwrw1j +2025-06-18T15:11:54.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 682ms - RequestID: mdxm3v54cc +2025-06-18T15:11:54.781Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.32.38 - RequestID: xk1p2ou97j +2025-06-18T15:11:54.881Z [INFO] notification-service - Database SELECT on products - Execution time: 345ms - Rows affected: 57 - RequestID: b4ysu47eqb4 +2025-06-18T15:11:54.981Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 992ms - RequestID: 8ut3e5s32xj +2025-06-18T15:11:55.081Z [INFO] auth-service - Operation: email_sent - Processing time: 841ms - RequestID: m0vrihd3lze +2025-06-18T15:11:55.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.33.76 - RequestID: bktla6uyca6 +2025-06-18T15:11:55.281Z [INFO] payment-service - Operation: email_sent - Processing time: 792ms - RequestID: cw43ndsfcr +2025-06-18T15:11:55.381Z [INFO] order-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.79.141 - RequestID: wo0g37rnbpl +2025-06-18T15:11:55.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.174.114 - RequestID: x3b9wba2al +2025-06-18T15:11:55.581Z [TRACE] user-service - PATCH /api/v1/payments - Status: 401 - Response time: 1334ms - IP: 192.168.68.128 - User: user_1042 - RequestID: bak5ldw8s8 +2025-06-18T15:11:55.681Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1354ms - IP: 192.168.28.146 - User: user_1098 - RequestID: z2kosij0b49 +2025-06-18T15:11:55.781Z [TRACE] user-service - GET /api/v1/inventory - Status: 502 - Response time: 1753ms - IP: 192.168.194.41 - User: user_1021 - RequestID: 7aqxzv7eg2s +2025-06-18T15:11:55.881Z [INFO] notification-service - Auth event: login_success - User: user_1060 - IP: 192.168.11.60 - RequestID: 72yo21itd9 +2025-06-18T15:11:55.981Z [INFO] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 78ms - IP: 192.168.229.123 - User: user_1093 - RequestID: yzmnl7k2vmj +2025-06-18T15:11:56.081Z [TRACE] order-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.113.218 - RequestID: 9v2r1tzxgot +2025-06-18T15:11:56.181Z [DEBUG] order-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.141.100 - RequestID: 4ezx75skr2g +2025-06-18T15:11:56.281Z [DEBUG] auth-service - GET /api/v1/users - Status: 200 - Response time: 43ms - IP: 192.168.167.32 - User: user_1097 - RequestID: 11f0cg8sbjga +2025-06-18T15:11:56.381Z [TRACE] auth-service - Operation: order_created - Processing time: 482ms - RequestID: sf5x73czhk9 +2025-06-18T15:11:56.481Z [DEBUG] notification-service - Database INSERT on products - Execution time: 165ms - Rows affected: 17 - RequestID: zbwvhvma5u +2025-06-18T15:11:56.581Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 404 - Response time: 833ms - IP: 192.168.79.116 - User: user_1052 - RequestID: yr6ggmg3mq9 +2025-06-18T15:11:56.681Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 451ms - Rows affected: 33 - RequestID: s4olhthbo98 +2025-06-18T15:11:56.781Z [INFO] order-service - Operation: notification_queued - Processing time: 415ms - RequestID: 5nvt05a7oxy +2025-06-18T15:11:56.881Z [INFO] user-service - GET /api/v1/payments - Status: 500 - Response time: 998ms - IP: 192.168.79.143 - User: user_1034 - RequestID: yec72ge95ga +2025-06-18T15:11:56.981Z [INFO] auth-service - Database UPDATE on users - Execution time: 498ms - Rows affected: 70 - RequestID: azckzfq1in7 +2025-06-18T15:11:57.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 900ms - RequestID: t0hck0p3b6r +2025-06-18T15:11:57.181Z [INFO] auth-service - Operation: payment_processed - Processing time: 882ms - RequestID: o7vzswyjq9q +2025-06-18T15:11:57.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1020 - IP: 192.168.196.226 - RequestID: yq5oqs5m599 +2025-06-18T15:11:57.381Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 250ms - RequestID: zla58n6f8v +2025-06-18T15:11:57.481Z [TRACE] payment-service - POST /api/v1/inventory - Status: 502 - Response time: 212ms - IP: 192.168.170.215 - User: user_1068 - RequestID: 2gyhsms7qgm +2025-06-18T15:11:57.581Z [INFO] user-service - Operation: webhook_sent - Processing time: 57ms - RequestID: 2z1lhamxhpj +2025-06-18T15:11:57.681Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 491ms - Rows affected: 0 - RequestID: snckukoe7s +2025-06-18T15:11:57.781Z [DEBUG] notification-service - Auth event: logout - User: user_1001 - IP: 192.168.227.77 - RequestID: qkasmoah3mc +2025-06-18T15:11:57.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1059 - IP: 192.168.81.206 - RequestID: ef7yeswamdp +2025-06-18T15:11:57.981Z [INFO] order-service - Operation: webhook_sent - Processing time: 703ms - RequestID: t8ygdbgq7t +2025-06-18T15:11:58.081Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 1019ms - RequestID: o0f440wyvxj +2025-06-18T15:11:58.181Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 149ms - Rows affected: 61 - RequestID: 2tk7a04v5xf +2025-06-18T15:11:58.281Z [TRACE] auth-service - PATCH /api/v1/users - Status: 502 - Response time: 1710ms - IP: 192.168.167.32 - User: user_1034 - RequestID: d3npkmdhzvv +2025-06-18T15:11:58.381Z [INFO] auth-service - Database SELECT on users - Execution time: 389ms - Rows affected: 53 - RequestID: mh5wz3tbqka +2025-06-18T15:11:58.481Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 751ms - RequestID: sfakq949ibp +2025-06-18T15:11:58.581Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 292ms - Rows affected: 82 - RequestID: t6osf7ll79l +2025-06-18T15:11:58.681Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 444ms - Rows affected: 56 - RequestID: 778wszi7897 +2025-06-18T15:11:58.781Z [DEBUG] order-service - Database DELETE on users - Execution time: 464ms - Rows affected: 86 - RequestID: zo603of1p9f +2025-06-18T15:11:58.881Z [DEBUG] user-service - Auth event: login_success - User: user_1013 - IP: 192.168.10.184 - RequestID: xxa4qgngzf +2025-06-18T15:11:58.981Z [INFO] user-service - Auth event: login_success - User: user_1047 - IP: 192.168.33.76 - RequestID: db21a9wtgzr +2025-06-18T15:11:59.081Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 410ms - RequestID: wsogoe5zjec +2025-06-18T15:11:59.181Z [DEBUG] order-service - Database SELECT on payments - Execution time: 116ms - Rows affected: 13 - RequestID: s3pa26v7gt +2025-06-18T15:11:59.281Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 480ms - RequestID: qc3liiwz8v +2025-06-18T15:11:59.381Z [INFO] notification-service - Auth event: logout - User: user_1052 - IP: 192.168.229.123 - RequestID: c6ehrbnrjn +2025-06-18T15:11:59.481Z [INFO] auth-service - Auth event: password_change - User: user_1088 - IP: 192.168.181.225 - RequestID: bwhhkywipsq +2025-06-18T15:11:59.581Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 754ms - IP: 192.168.141.100 - User: user_1012 - RequestID: gd4wz2tdqhn +2025-06-18T15:11:59.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.242.165 - RequestID: g2xv4kkwkgr +2025-06-18T15:11:59.781Z [INFO] user-service - Operation: cache_hit - Processing time: 690ms - RequestID: ky6rstkxt6m +2025-06-18T15:11:59.881Z [INFO] payment-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.100.240 - RequestID: c56pvun0zek +2025-06-18T15:11:59.981Z [TRACE] order-service - Database UPDATE on orders - Execution time: 321ms - Rows affected: 65 - RequestID: bc5xwn9xtw +2025-06-18T15:12:00.081Z [TRACE] auth-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.227.233 - RequestID: jp7lrfx6gbk +2025-06-18T15:12:00.181Z [INFO] order-service - Operation: payment_processed - Processing time: 503ms - RequestID: fcy5exct4qm +2025-06-18T15:12:00.281Z [INFO] user-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.79.116 - RequestID: 2bfftu20qyr +2025-06-18T15:12:00.381Z [TRACE] user-service - Operation: payment_processed - Processing time: 292ms - RequestID: ekwjrzw89cj +2025-06-18T15:12:00.481Z [DEBUG] payment-service - Auth event: login_success - User: user_1019 - IP: 192.168.235.117 - RequestID: 7e590wam3rd +2025-06-18T15:12:00.581Z [INFO] auth-service - Operation: inventory_updated - Processing time: 456ms - RequestID: 7imwo0tutzu +2025-06-18T15:12:00.681Z [INFO] notification-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.28.146 - RequestID: k1zmzazfoun +2025-06-18T15:12:00.781Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.81.206 - RequestID: kdy7tkxjn9k +2025-06-18T15:12:00.881Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 510ms - RequestID: j3n554ntdta +2025-06-18T15:12:00.981Z [INFO] inventory-service - Auth event: logout - User: user_1021 - IP: 192.168.227.233 - RequestID: 3cnm2ws9mmz +2025-06-18T15:12:01.081Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1251ms - IP: 192.168.53.133 - User: user_1055 - RequestID: c1th25ssqin +2025-06-18T15:12:01.181Z [INFO] inventory-service - Operation: email_sent - Processing time: 712ms - RequestID: h9zrwwu4rr +2025-06-18T15:12:01.281Z [TRACE] inventory-service - Auth event: logout - User: user_1043 - IP: 192.168.227.77 - RequestID: hr8xuul2bnj +2025-06-18T15:12:01.381Z [TRACE] order-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.13.72 - RequestID: pwod8aavbnp +2025-06-18T15:12:01.481Z [TRACE] order-service - Operation: email_sent - Processing time: 524ms - RequestID: 61zma1j7h4 +2025-06-18T15:12:01.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1032 - IP: 192.168.81.206 - RequestID: esbawl9ze2w +2025-06-18T15:12:01.681Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 53ms - RequestID: dnl23u8zx08 +2025-06-18T15:12:01.781Z [TRACE] user-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.167.32 - RequestID: ehns78haelk +2025-06-18T15:12:01.881Z [INFO] payment-service - Auth event: login_success - User: user_1064 - IP: 192.168.14.77 - RequestID: dkwf4ufz91d +2025-06-18T15:12:01.981Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 763ms - RequestID: 6u18fhdi0ln +2025-06-18T15:12:02.081Z [DEBUG] order-service - Operation: order_created - Processing time: 858ms - RequestID: ikxepb1rn7r +2025-06-18T15:12:02.181Z [DEBUG] user-service - Auth event: password_change - User: user_1047 - IP: 192.168.144.38 - RequestID: u9ix54l6w6c +2025-06-18T15:12:02.281Z [DEBUG] payment-service - Auth event: login_success - User: user_1096 - IP: 192.168.196.226 - RequestID: 2ypkyk97d8v +2025-06-18T15:12:02.381Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 88ms - Rows affected: 87 - RequestID: ucbr4ozo19f +2025-06-18T15:12:02.481Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 84ms - Rows affected: 25 - RequestID: jt01sdbaca +2025-06-18T15:12:02.581Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 114ms - Rows affected: 81 - RequestID: 2gj5uuqstqv +2025-06-18T15:12:02.681Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 339ms - Rows affected: 60 - RequestID: 8m6sbynlzhj +2025-06-18T15:12:02.781Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 201 - Response time: 691ms - IP: 192.168.32.38 - User: user_1030 - RequestID: grbmv3e8j76 +2025-06-18T15:12:02.881Z [INFO] payment-service - Auth event: logout - User: user_1050 - IP: 192.168.79.141 - RequestID: hvk4x25rwnf +2025-06-18T15:12:02.981Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 296ms - Rows affected: 60 - RequestID: atdeynqhe1g +2025-06-18T15:12:03.081Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 892ms - RequestID: zbcpsauuo88 +2025-06-18T15:12:03.181Z [DEBUG] payment-service - Auth event: login_success - User: user_1030 - IP: 192.168.196.226 - RequestID: h211hc8unuw +2025-06-18T15:12:03.281Z [TRACE] order-service - Operation: payment_processed - Processing time: 1022ms - RequestID: jf7h8zuzszb +2025-06-18T15:12:03.381Z [DEBUG] notification-service - Auth event: login_failed - User: user_1014 - IP: 192.168.227.233 - RequestID: c4jejic3luf +2025-06-18T15:12:03.481Z [DEBUG] notification-service - Auth event: login_failed - User: user_1041 - IP: 192.168.53.133 - RequestID: q8htu2h72f +2025-06-18T15:12:03.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.232.72 - RequestID: gsl6jafgxg4 +2025-06-18T15:12:03.681Z [INFO] auth-service - Database DELETE on orders - Execution time: 388ms - Rows affected: 24 - RequestID: l1x0tqtp6oo +2025-06-18T15:12:03.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.235.117 - RequestID: 5l04adu5xne +2025-06-18T15:12:03.881Z [TRACE] auth-service - POST /api/v1/payments - Status: 201 - Response time: 907ms - IP: 192.168.167.32 - User: user_1081 - RequestID: t1hnmqdzbs +2025-06-18T15:12:03.981Z [TRACE] inventory-service - Auth event: login_failed - User: user_1088 - IP: 192.168.194.41 - RequestID: o2lppl0uap +2025-06-18T15:12:04.081Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 511ms - IP: 192.168.174.114 - User: user_1068 - RequestID: wyeabmzcji +2025-06-18T15:12:04.181Z [INFO] payment-service - Operation: cache_miss - Processing time: 730ms - RequestID: 68ytw82m22 +2025-06-18T15:12:04.281Z [INFO] order-service - Operation: order_created - Processing time: 172ms - RequestID: 4llv9mxrmp2 +2025-06-18T15:12:04.381Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 401 - Response time: 1987ms - IP: 192.168.211.72 - User: user_1019 - RequestID: 7vfkrh7c332 +2025-06-18T15:12:04.481Z [INFO] auth-service - Operation: cache_miss - Processing time: 855ms - RequestID: me2xlcl2lxp +2025-06-18T15:12:04.581Z [DEBUG] user-service - Operation: email_sent - Processing time: 625ms - RequestID: 0341vsoylxt9 +2025-06-18T15:12:04.681Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1271ms - IP: 192.168.32.38 - User: user_1092 - RequestID: 95m2s5pr71v +2025-06-18T15:12:04.781Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1026ms - IP: 192.168.10.184 - User: user_1059 - RequestID: xh7ovstx5u +2025-06-18T15:12:04.881Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 403 - Response time: 86ms - IP: 192.168.247.134 - User: user_1060 - RequestID: mtd4ve0b9cj +2025-06-18T15:12:04.981Z [TRACE] user-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.141.100 - RequestID: c19ymzratgg +2025-06-18T15:12:05.081Z [TRACE] auth-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.227.233 - RequestID: kcgaqq0v82b +2025-06-18T15:12:05.181Z [INFO] payment-service - Operation: inventory_updated - Processing time: 979ms - RequestID: dxfwo5aj0ja +2025-06-18T15:12:05.281Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 503 - Response time: 349ms - IP: 192.168.159.94 - User: user_1078 - RequestID: qli4c7gba1g +2025-06-18T15:12:05.381Z [TRACE] order-service - PATCH /api/v1/payments - Status: 403 - Response time: 806ms - IP: 192.168.144.38 - User: user_1062 - RequestID: 4k4h4ngt79e +2025-06-18T15:12:05.481Z [INFO] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1737ms - IP: 192.168.211.72 - User: user_1042 - RequestID: zda6wul9otb +2025-06-18T15:12:05.581Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 320ms - Rows affected: 72 - RequestID: jnpg1i5bnpq +2025-06-18T15:12:05.681Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 656ms - RequestID: 6hxwbwj5ohw +2025-06-18T15:12:05.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.141.100 - RequestID: o7e4med77fc +2025-06-18T15:12:05.881Z [TRACE] auth-service - Operation: payment_processed - Processing time: 510ms - RequestID: nfiof07odun +2025-06-18T15:12:05.981Z [INFO] user-service - Operation: order_created - Processing time: 661ms - RequestID: uqkkpxcrede +2025-06-18T15:12:06.081Z [INFO] user-service - Operation: email_sent - Processing time: 92ms - RequestID: gdxqeut5rrt +2025-06-18T15:12:06.181Z [INFO] payment-service - Operation: cache_hit - Processing time: 324ms - RequestID: wvll1e9o47f +2025-06-18T15:12:06.281Z [TRACE] notification-service - Database DELETE on payments - Execution time: 374ms - Rows affected: 88 - RequestID: p90nunbm5sg +2025-06-18T15:12:06.381Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 462ms - Rows affected: 5 - RequestID: b6xvsqj7ida +2025-06-18T15:12:06.481Z [DEBUG] auth-service - Database SELECT on users - Execution time: 31ms - Rows affected: 93 - RequestID: ctrkkkr23eg +2025-06-18T15:12:06.581Z [INFO] user-service - Auth event: login_success - User: user_1074 - IP: 192.168.68.128 - RequestID: pjqsdwz567 +2025-06-18T15:12:06.681Z [DEBUG] user-service - Database DELETE on users - Execution time: 82ms - Rows affected: 77 - RequestID: 8fh5nzshqs5 +2025-06-18T15:12:06.781Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 455ms - Rows affected: 56 - RequestID: ge71vuo0ps5 +2025-06-18T15:12:06.881Z [INFO] payment-service - Auth event: login_failed - User: user_1045 - IP: 192.168.33.76 - RequestID: gxx1j946q0h +2025-06-18T15:12:06.981Z [TRACE] auth-service - Operation: order_created - Processing time: 866ms - RequestID: n4h9jjw752 +2025-06-18T15:12:07.081Z [INFO] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 1785ms - IP: 192.168.174.114 - User: user_1096 - RequestID: gl3z680xpsg +2025-06-18T15:12:07.181Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.13.72 - RequestID: a5wa8pnhs1h +2025-06-18T15:12:07.281Z [INFO] payment-service - Database INSERT on sessions - Execution time: 359ms - Rows affected: 82 - RequestID: d3sbo0805wr +2025-06-18T15:12:07.381Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 401 - Response time: 208ms - IP: 192.168.13.72 - User: user_1022 - RequestID: wj0hpsxbmf +2025-06-18T15:12:07.481Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 500 - Response time: 828ms - IP: 192.168.64.33 - User: user_1035 - RequestID: sfn0vkecimp +2025-06-18T15:12:07.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 596ms - RequestID: jrgmhoj7csi +2025-06-18T15:12:07.681Z [INFO] order-service - Operation: payment_processed - Processing time: 438ms - RequestID: 8be8xrmblfk +2025-06-18T15:12:07.781Z [INFO] user-service - Operation: payment_processed - Processing time: 542ms - RequestID: wl3g2lmdrga +2025-06-18T15:12:07.881Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1458ms - IP: 192.168.141.100 - User: user_1051 - RequestID: hpmktcv1wfn +2025-06-18T15:12:07.981Z [DEBUG] order-service - Database DELETE on payments - Execution time: 455ms - Rows affected: 55 - RequestID: 3f8lirtw15g +2025-06-18T15:12:08.081Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 21ms - Rows affected: 12 - RequestID: yzd5jvx5qr +2025-06-18T15:12:08.181Z [INFO] user-service - Database UPDATE on orders - Execution time: 487ms - Rows affected: 31 - RequestID: dsupw0rkdu8 +2025-06-18T15:12:08.281Z [DEBUG] user-service - Operation: cache_miss - Processing time: 250ms - RequestID: spdtgek6a6q +2025-06-18T15:12:08.381Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 246ms - Rows affected: 15 - RequestID: mxhn1ecsl2n +2025-06-18T15:12:08.481Z [DEBUG] order-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.30.79 - RequestID: 20kxxb92oh8 +2025-06-18T15:12:08.581Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 372ms - Rows affected: 28 - RequestID: vt1t7dz64rj +2025-06-18T15:12:08.681Z [DEBUG] order-service - Operation: cache_miss - Processing time: 900ms - RequestID: 4f71xjwl5i +2025-06-18T15:12:08.781Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 201 - Response time: 1423ms - IP: 192.168.79.116 - User: user_1087 - RequestID: br92feox708 +2025-06-18T15:12:08.881Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1892ms - IP: 192.168.181.225 - User: user_1036 - RequestID: wpzssng71b +2025-06-18T15:12:08.981Z [INFO] auth-service - Database DELETE on products - Execution time: 383ms - Rows affected: 62 - RequestID: 4032ut5okkg +2025-06-18T15:12:09.081Z [INFO] auth-service - Database DELETE on sessions - Execution time: 148ms - Rows affected: 5 - RequestID: 0klbqjqtbzqr +2025-06-18T15:12:09.181Z [TRACE] user-service - Database UPDATE on payments - Execution time: 50ms - Rows affected: 37 - RequestID: dsnhwo8yydt +2025-06-18T15:12:09.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.144.38 - RequestID: icdebdro98 +2025-06-18T15:12:09.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 554ms - RequestID: y6kln9u05nf +2025-06-18T15:12:09.481Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 30ms - Rows affected: 60 - RequestID: rqwo39tq8xp +2025-06-18T15:12:09.581Z [INFO] order-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.138.123 - RequestID: 1wwo8honbja +2025-06-18T15:12:09.681Z [INFO] notification-service - Database INSERT on products - Execution time: 321ms - Rows affected: 33 - RequestID: p459hr10nb8 +2025-06-18T15:12:09.781Z [INFO] user-service - Database UPDATE on products - Execution time: 19ms - Rows affected: 27 - RequestID: zidx0zitkyd +2025-06-18T15:12:09.881Z [INFO] inventory-service - Operation: cache_miss - Processing time: 125ms - RequestID: uafl700ku4j +2025-06-18T15:12:09.981Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 492ms - Rows affected: 64 - RequestID: qhipqhfg2u8 +2025-06-18T15:12:10.081Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 400 - Response time: 44ms - IP: 192.168.46.63 - User: user_1072 - RequestID: 3sze0w2f5xs +2025-06-18T15:12:10.181Z [TRACE] payment-service - Operation: order_created - Processing time: 1035ms - RequestID: toini7q1crs +2025-06-18T15:12:10.281Z [INFO] payment-service - Auth event: login_success - User: user_1088 - IP: 192.168.79.116 - RequestID: g1loblfa5a +2025-06-18T15:12:10.381Z [INFO] user-service - Operation: notification_queued - Processing time: 445ms - RequestID: gjj9qo8tgd5 +2025-06-18T15:12:10.481Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 866ms - RequestID: z313v8tfwd +2025-06-18T15:12:10.581Z [INFO] payment-service - Operation: email_sent - Processing time: 665ms - RequestID: 163izrc3uym +2025-06-18T15:12:10.681Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 308ms - RequestID: yj7nugdvb +2025-06-18T15:12:10.781Z [TRACE] user-service - Auth event: password_change - User: user_1025 - IP: 192.168.32.38 - RequestID: ar1so730twb +2025-06-18T15:12:10.881Z [TRACE] inventory-service - Operation: order_created - Processing time: 315ms - RequestID: hhmo5rkzs0w +2025-06-18T15:12:10.981Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 93ms - Rows affected: 60 - RequestID: ppzr5qmnwqp +2025-06-18T15:12:11.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.133.7 - RequestID: h0lahdhuhju +2025-06-18T15:12:11.181Z [TRACE] auth-service - Database SELECT on orders - Execution time: 243ms - Rows affected: 90 - RequestID: 2roq1j33o5r +2025-06-18T15:12:11.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1000 - IP: 192.168.53.133 - RequestID: bi3qulus56d +2025-06-18T15:12:11.381Z [TRACE] order-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.79.116 - RequestID: s1gcqhpjcl +2025-06-18T15:12:11.481Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.104.37 - RequestID: 2h9xyj201og +2025-06-18T15:12:11.581Z [DEBUG] user-service - PUT /api/v1/payments - Status: 201 - Response time: 1379ms - IP: 192.168.158.144 - User: user_1078 - RequestID: qsmviff8i8e +2025-06-18T15:12:11.681Z [INFO] payment-service - Auth event: login_failed - User: user_1003 - IP: 192.168.113.218 - RequestID: evn66vq109c +2025-06-18T15:12:11.781Z [TRACE] user-service - POST /api/v1/payments - Status: 200 - Response time: 789ms - IP: 192.168.30.79 - User: user_1040 - RequestID: uxxvrgtyg6h +2025-06-18T15:12:11.881Z [TRACE] order-service - Database SELECT on payments - Execution time: 156ms - Rows affected: 79 - RequestID: ciqn3ityvhl +2025-06-18T15:12:11.981Z [INFO] user-service - Operation: payment_processed - Processing time: 960ms - RequestID: 8dmibm3ri25 +2025-06-18T15:12:12.081Z [TRACE] payment-service - POST /api/v1/payments - Status: 200 - Response time: 708ms - IP: 192.168.28.146 - User: user_1043 - RequestID: 8xtr6phjvxq +2025-06-18T15:12:12.181Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 1007ms - RequestID: hau48buucim +2025-06-18T15:12:12.281Z [INFO] payment-service - POST /api/v1/inventory - Status: 500 - Response time: 99ms - IP: 192.168.13.72 - User: user_1013 - RequestID: p078ssz7nfe +2025-06-18T15:12:12.381Z [INFO] auth-service - Auth event: login_failed - User: user_1049 - IP: 192.168.11.60 - RequestID: azdgm5txqqa +2025-06-18T15:12:12.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 148ms - RequestID: fxiiro8sqne +2025-06-18T15:12:12.581Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 1033ms - RequestID: qacbaowejld +2025-06-18T15:12:12.681Z [INFO] inventory-service - Auth event: login_success - User: user_1009 - IP: 192.168.229.123 - RequestID: l9ec0znl3e +2025-06-18T15:12:12.781Z [DEBUG] payment-service - Database SELECT on products - Execution time: 38ms - Rows affected: 25 - RequestID: k6m2795s93 +2025-06-18T15:12:12.881Z [TRACE] order-service - Auth event: login_success - User: user_1097 - IP: 192.168.81.206 - RequestID: uosbta6rvzo +2025-06-18T15:12:12.981Z [INFO] inventory-service - Operation: order_created - Processing time: 307ms - RequestID: 5uxzi6e3md +2025-06-18T15:12:13.081Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 616ms - RequestID: 9dkytr1hld9 +2025-06-18T15:12:13.181Z [TRACE] payment-service - Database DELETE on users - Execution time: 410ms - Rows affected: 23 - RequestID: vv0e3hgafl8 +2025-06-18T15:12:13.281Z [TRACE] payment-service - Operation: notification_queued - Processing time: 921ms - RequestID: 7ra1kk2j89o +2025-06-18T15:12:13.381Z [TRACE] notification-service - Operation: cache_miss - Processing time: 510ms - RequestID: fq5sne2b7zv +2025-06-18T15:12:13.481Z [DEBUG] order-service - POST /api/v1/inventory - Status: 400 - Response time: 176ms - IP: 192.168.229.123 - User: user_1004 - RequestID: e3b78g42xue +2025-06-18T15:12:13.581Z [INFO] user-service - Auth event: login_failed - User: user_1017 - IP: 192.168.31.117 - RequestID: 0y5nl24r80id +2025-06-18T15:12:13.681Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 143ms - IP: 192.168.104.37 - User: user_1066 - RequestID: 9pamcosdf3 +2025-06-18T15:12:13.781Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 490ms - Rows affected: 7 - RequestID: 4gzz80cjku2 +2025-06-18T15:12:13.881Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 567ms - RequestID: 1n3eyqzwk16i +2025-06-18T15:12:13.981Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.79.141 - RequestID: 92o6z2qpu0e +2025-06-18T15:12:14.081Z [INFO] payment-service - Auth event: password_change - User: user_1041 - IP: 192.168.104.37 - RequestID: syonu49gzbr +2025-06-18T15:12:14.181Z [TRACE] user-service - Database INSERT on sessions - Execution time: 233ms - Rows affected: 20 - RequestID: dbvkluyuyk9 +2025-06-18T15:12:14.281Z [INFO] payment-service - Auth event: logout - User: user_1024 - IP: 192.168.100.240 - RequestID: hud9lgg3egm +2025-06-18T15:12:14.381Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 243ms - Rows affected: 21 - RequestID: ja5k2nnkjwa +2025-06-18T15:12:14.481Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 503 - Response time: 909ms - IP: 192.168.13.72 - User: user_1031 - RequestID: pxv3xd2lkg +2025-06-18T15:12:14.581Z [TRACE] user-service - Auth event: password_change - User: user_1005 - IP: 192.168.79.141 - RequestID: c5ut5fp10na +2025-06-18T15:12:14.681Z [INFO] user-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.170.215 - RequestID: 001xrh5dfwj5s +2025-06-18T15:12:14.781Z [DEBUG] user-service - GET /api/v1/payments - Status: 404 - Response time: 1693ms - IP: 192.168.31.117 - User: user_1059 - RequestID: j44pw82uxuq +2025-06-18T15:12:14.881Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 916ms - RequestID: leqmnkuhkc +2025-06-18T15:12:14.981Z [INFO] notification-service - Operation: cache_miss - Processing time: 430ms - RequestID: ot080mqkvfk +2025-06-18T15:12:15.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1009 - IP: 192.168.158.144 - RequestID: 8z6ph2eoiys +2025-06-18T15:12:15.181Z [INFO] user-service - PATCH /api/v1/users - Status: 201 - Response time: 100ms - IP: 192.168.147.171 - User: user_1016 - RequestID: bbskqy4319o +2025-06-18T15:12:15.281Z [INFO] payment-service - Database UPDATE on payments - Execution time: 273ms - Rows affected: 23 - RequestID: hcwtvno8ygl +2025-06-18T15:12:15.381Z [INFO] user-service - Operation: email_sent - Processing time: 347ms - RequestID: f2cukunbfs7 +2025-06-18T15:12:15.481Z [TRACE] notification-service - Database INSERT on payments - Execution time: 128ms - Rows affected: 92 - RequestID: y8pc9nadrw +2025-06-18T15:12:15.581Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 847ms - RequestID: f88kwestllm +2025-06-18T15:12:15.681Z [DEBUG] inventory-service - Auth event: password_change - User: user_1090 - IP: 192.168.232.72 - RequestID: mkyojtowyap +2025-06-18T15:12:15.781Z [TRACE] auth-service - POST /api/v1/payments - Status: 201 - Response time: 1194ms - IP: 192.168.64.33 - User: user_1040 - RequestID: 97htj5liyh8 +2025-06-18T15:12:15.881Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 22ms - Rows affected: 38 - RequestID: 2gs52cu6fr5 +2025-06-18T15:12:15.981Z [TRACE] order-service - Database SELECT on orders - Execution time: 365ms - Rows affected: 95 - RequestID: 05tpre30vfn +2025-06-18T15:12:16.081Z [TRACE] user-service - Auth event: logout - User: user_1087 - IP: 192.168.113.218 - RequestID: bplvggqfdes +2025-06-18T15:12:16.181Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 79ms - Rows affected: 22 - RequestID: nc1eksh40yp +2025-06-18T15:12:16.281Z [TRACE] user-service - Operation: order_created - Processing time: 735ms - RequestID: rsuj7cuoo7 +2025-06-18T15:12:16.381Z [INFO] payment-service - Database DELETE on sessions - Execution time: 13ms - Rows affected: 31 - RequestID: gbe20whw03n +2025-06-18T15:12:16.481Z [DEBUG] order-service - Auth event: token_refresh - User: user_1029 - IP: 192.168.79.141 - RequestID: j1sp591gux +2025-06-18T15:12:16.581Z [INFO] user-service - PUT /api/v1/orders - Status: 201 - Response time: 1031ms - IP: 192.168.33.76 - User: user_1000 - RequestID: ocbinsly1t +2025-06-18T15:12:16.681Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 401 - Response time: 1506ms - IP: 192.168.144.38 - User: user_1075 - RequestID: omq5w647r +2025-06-18T15:12:16.781Z [DEBUG] order-service - Database INSERT on payments - Execution time: 76ms - Rows affected: 86 - RequestID: lby68tb93rd +2025-06-18T15:12:16.881Z [INFO] inventory-service - Auth event: login_success - User: user_1004 - IP: 192.168.138.123 - RequestID: z4pm2hjz7pm +2025-06-18T15:12:16.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1098 - IP: 192.168.113.218 - RequestID: 448txmjq4wp +2025-06-18T15:12:17.081Z [TRACE] auth-service - Operation: notification_queued - Processing time: 829ms - RequestID: y1q53m3voj +2025-06-18T15:12:17.181Z [TRACE] payment-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.229.123 - RequestID: 2glw2tuq8lm +2025-06-18T15:12:17.281Z [DEBUG] order-service - POST /api/v1/orders - Status: 403 - Response time: 1681ms - IP: 192.168.44.5 - User: user_1027 - RequestID: z3t2lb98hpk +2025-06-18T15:12:17.381Z [TRACE] user-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.196.226 - RequestID: qnjk9xcq45m +2025-06-18T15:12:17.481Z [INFO] auth-service - Database DELETE on products - Execution time: 187ms - Rows affected: 94 - RequestID: nmgmo7wsiu +2025-06-18T15:12:17.581Z [TRACE] order-service - POST /api/v1/inventory - Status: 502 - Response time: 778ms - IP: 192.168.247.134 - User: user_1082 - RequestID: qt4xvi1d0m +2025-06-18T15:12:17.681Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1742ms - IP: 192.168.68.128 - User: user_1045 - RequestID: 3650mybqta4 +2025-06-18T15:12:17.781Z [TRACE] notification-service - Database UPDATE on users - Execution time: 111ms - Rows affected: 57 - RequestID: h0yqggtodgk +2025-06-18T15:12:17.881Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 502 - Response time: 479ms - IP: 192.168.85.229 - User: user_1009 - RequestID: 2lc6ibombtq +2025-06-18T15:12:17.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.10.184 - RequestID: x17abzf2hon +2025-06-18T15:12:18.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.53.133 - RequestID: p0djtz4puxb +2025-06-18T15:12:18.181Z [TRACE] notification-service - Database DELETE on products - Execution time: 20ms - Rows affected: 2 - RequestID: dy9ugemzcnp +2025-06-18T15:12:18.281Z [DEBUG] order-service - Database INSERT on users - Execution time: 35ms - Rows affected: 11 - RequestID: knhihkaxcr +2025-06-18T15:12:18.381Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 447ms - Rows affected: 86 - RequestID: 31v9k33l78o +2025-06-18T15:12:18.481Z [INFO] auth-service - POST /api/v1/payments - Status: 503 - Response time: 1977ms - IP: 192.168.181.225 - User: user_1044 - RequestID: 3weforultx4 +2025-06-18T15:12:18.581Z [INFO] user-service - Operation: payment_processed - Processing time: 368ms - RequestID: k95xgsvfrl9 +2025-06-18T15:12:18.681Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 475ms - Rows affected: 13 - RequestID: 75ox8irkabb +2025-06-18T15:12:18.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.53.133 - RequestID: tsfmgsj0wq +2025-06-18T15:12:18.881Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1971ms - IP: 192.168.159.94 - User: user_1005 - RequestID: xbv5v6ymz0s +2025-06-18T15:12:18.981Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 502 - Response time: 196ms - IP: 192.168.138.123 - User: user_1085 - RequestID: 5g53rajckx +2025-06-18T15:12:19.081Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 326ms - RequestID: 37q0qe3ea3d +2025-06-18T15:12:19.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.30.79 - RequestID: kmij1a9gn8r +2025-06-18T15:12:19.281Z [TRACE] user-service - GET /api/v1/orders - Status: 403 - Response time: 484ms - IP: 192.168.227.233 - User: user_1030 - RequestID: g0lufkmq3tp +2025-06-18T15:12:19.381Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 308ms - IP: 192.168.181.225 - User: user_1061 - RequestID: 9pwobqbzryv +2025-06-18T15:12:19.481Z [DEBUG] order-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.68.158 - RequestID: k4r18s6kdvd +2025-06-18T15:12:19.581Z [TRACE] auth-service - Operation: cache_miss - Processing time: 804ms - RequestID: s1wnmad3l9r +2025-06-18T15:12:19.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 221ms - RequestID: 8ewxgs4eryj +2025-06-18T15:12:19.781Z [INFO] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1306ms - IP: 192.168.11.60 - User: user_1019 - RequestID: 1wusd9ecv51 +2025-06-18T15:12:19.881Z [TRACE] auth-service - Operation: order_created - Processing time: 410ms - RequestID: x649bim1al +2025-06-18T15:12:19.981Z [INFO] payment-service - Database UPDATE on products - Execution time: 258ms - Rows affected: 56 - RequestID: 57ll46u718l +2025-06-18T15:12:20.081Z [INFO] user-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.227.77 - RequestID: 4q1ztb9jnit +2025-06-18T15:12:20.181Z [DEBUG] payment-service - Auth event: password_change - User: user_1097 - IP: 192.168.79.116 - RequestID: m6pvmqm2tg +2025-06-18T15:12:20.281Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 907ms - RequestID: waxe78jfrg +2025-06-18T15:12:20.381Z [DEBUG] payment-service - POST /api/v1/payments - Status: 500 - Response time: 348ms - IP: 192.168.181.225 - User: user_1089 - RequestID: 3ceu8br42sw +2025-06-18T15:12:20.481Z [INFO] user-service - GET /api/v1/orders - Status: 404 - Response time: 1870ms - IP: 192.168.79.116 - User: user_1090 - RequestID: zpejpbk9xgb +2025-06-18T15:12:20.581Z [INFO] payment-service - Auth event: login_success - User: user_1053 - IP: 192.168.181.225 - RequestID: bfxije0m646 +2025-06-18T15:12:20.681Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 981ms - RequestID: 75ygpyz1l6t +2025-06-18T15:12:20.781Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.113.218 - RequestID: i8by31lbsor +2025-06-18T15:12:20.881Z [TRACE] notification-service - Database SELECT on users - Execution time: 140ms - Rows affected: 72 - RequestID: dhtel5reih9 +2025-06-18T15:12:20.981Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1890ms - IP: 192.168.158.144 - User: user_1061 - RequestID: cix4gk8lz68 +2025-06-18T15:12:21.081Z [DEBUG] order-service - GET /api/v1/payments - Status: 401 - Response time: 1408ms - IP: 192.168.68.158 - User: user_1092 - RequestID: 8gb01nh9o5f +2025-06-18T15:12:21.181Z [INFO] order-service - Operation: notification_queued - Processing time: 928ms - RequestID: 8yh9j5ku63r +2025-06-18T15:12:21.281Z [DEBUG] payment-service - Operation: order_created - Processing time: 279ms - RequestID: 6tiw2w336x +2025-06-18T15:12:21.381Z [TRACE] notification-service - Operation: cache_miss - Processing time: 287ms - RequestID: 0jbx9x0vy20n +2025-06-18T15:12:21.481Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 430ms - Rows affected: 94 - RequestID: na6mqqppzo +2025-06-18T15:12:21.581Z [INFO] payment-service - GET /api/v1/payments - Status: 403 - Response time: 822ms - IP: 192.168.33.76 - User: user_1031 - RequestID: cyhvqg2zyg +2025-06-18T15:12:21.681Z [DEBUG] payment-service - Auth event: logout - User: user_1010 - IP: 192.168.227.77 - RequestID: 73xwxw8zlgk +2025-06-18T15:12:21.781Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 201 - Response time: 188ms - IP: 192.168.44.5 - User: user_1030 - RequestID: yuxxw6h0po +2025-06-18T15:12:21.881Z [DEBUG] user-service - Database INSERT on users - Execution time: 141ms - Rows affected: 99 - RequestID: xxtzym9r4w +2025-06-18T15:12:21.981Z [TRACE] user-service - Auth event: login_success - User: user_1088 - IP: 192.168.147.171 - RequestID: 54tdgtaaie +2025-06-18T15:12:22.081Z [TRACE] inventory-service - POST /api/v1/orders - Status: 400 - Response time: 457ms - IP: 192.168.144.38 - User: user_1075 - RequestID: onpx449xfwp +2025-06-18T15:12:22.181Z [TRACE] payment-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.79.116 - RequestID: 45zb50wztpe +2025-06-18T15:12:22.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 113ms - RequestID: qvyoa37ssl9 +2025-06-18T15:12:22.381Z [TRACE] payment-service - Operation: email_sent - Processing time: 957ms - RequestID: 56vvb6c4v6x +2025-06-18T15:12:22.481Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.68.128 - RequestID: ew9sq3ollgt +2025-06-18T15:12:22.581Z [INFO] auth-service - PUT /api/v1/inventory - Status: 200 - Response time: 1460ms - IP: 192.168.144.38 - User: user_1011 - RequestID: h9k2z6xfx7e +2025-06-18T15:12:22.681Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1317ms - IP: 192.168.28.146 - User: user_1091 - RequestID: nbu0796pwmn +2025-06-18T15:12:22.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 409ms - RequestID: 0jslrp9ribas +2025-06-18T15:12:22.881Z [TRACE] user-service - Database DELETE on sessions - Execution time: 404ms - Rows affected: 33 - RequestID: fko4wyx9qn +2025-06-18T15:12:22.981Z [TRACE] inventory-service - GET /api/v1/users - Status: 400 - Response time: 1815ms - IP: 192.168.211.72 - User: user_1044 - RequestID: 8t080ja73af +2025-06-18T15:12:23.081Z [INFO] notification-service - Database DELETE on orders - Execution time: 445ms - Rows affected: 36 - RequestID: 1gxkiydv7lx +2025-06-18T15:12:23.181Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1058ms - IP: 192.168.33.76 - User: user_1066 - RequestID: eh7u8tv4u5g +2025-06-18T15:12:23.281Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 341ms - Rows affected: 99 - RequestID: mn4b8d9c0g +2025-06-18T15:12:23.381Z [INFO] notification-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.242.165 - RequestID: 8a6v1zbzb7i +2025-06-18T15:12:23.481Z [INFO] notification-service - Database UPDATE on orders - Execution time: 478ms - Rows affected: 88 - RequestID: wf4ho3dtea +2025-06-18T15:12:23.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 871ms - RequestID: u7550213o48 +2025-06-18T15:12:23.681Z [DEBUG] payment-service - Operation: email_sent - Processing time: 470ms - RequestID: t1gumxw334 +2025-06-18T15:12:23.781Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 61ms - Rows affected: 49 - RequestID: iy7fjn8puwf +2025-06-18T15:12:23.881Z [DEBUG] order-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.189.103 - RequestID: pn1d4u9k8mj +2025-06-18T15:12:23.981Z [TRACE] order-service - Auth event: password_change - User: user_1049 - IP: 192.168.68.128 - RequestID: j8s18cmahb +2025-06-18T15:12:24.081Z [TRACE] payment-service - GET /api/v1/inventory - Status: 201 - Response time: 315ms - IP: 192.168.11.60 - User: user_1055 - RequestID: g170hh3jfua +2025-06-18T15:12:24.181Z [TRACE] payment-service - Auth event: password_change - User: user_1035 - IP: 192.168.170.215 - RequestID: o81sxgifct +2025-06-18T15:12:24.281Z [DEBUG] user-service - Operation: email_sent - Processing time: 986ms - RequestID: lq8i9vo4fxa +2025-06-18T15:12:24.381Z [INFO] notification-service - Operation: order_created - Processing time: 379ms - RequestID: jre54vxipz +2025-06-18T15:12:24.481Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 201ms - Rows affected: 22 - RequestID: 3vr9vzugswe +2025-06-18T15:12:24.581Z [INFO] inventory-service - Auth event: login_failed - User: user_1090 - IP: 192.168.79.116 - RequestID: p3of6kk553 +2025-06-18T15:12:24.681Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 733ms - RequestID: agf45hcvdjn +2025-06-18T15:12:24.781Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 500 - Response time: 233ms - IP: 192.168.147.171 - User: user_1079 - RequestID: 9yl8xze1zsd +2025-06-18T15:12:24.881Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 91ms - Rows affected: 59 - RequestID: n1d1igwnhd +2025-06-18T15:12:24.981Z [INFO] user-service - Auth event: logout - User: user_1044 - IP: 192.168.187.199 - RequestID: 68ukbbpy7rs +2025-06-18T15:12:25.081Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 466ms - Rows affected: 85 - RequestID: jlasd6ow72 +2025-06-18T15:12:25.181Z [INFO] user-service - Database SELECT on orders - Execution time: 126ms - Rows affected: 99 - RequestID: erdmwqe7lai +2025-06-18T15:12:25.281Z [INFO] payment-service - Operation: inventory_updated - Processing time: 685ms - RequestID: 6r7hl4xp0ww +2025-06-18T15:12:25.381Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1483ms - IP: 192.168.79.143 - User: user_1013 - RequestID: 8coip4rs669 +2025-06-18T15:12:25.481Z [DEBUG] order-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.28.146 - RequestID: k97zfykq68 +2025-06-18T15:12:25.581Z [INFO] user-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.10.184 - RequestID: a6pkhd8scnh +2025-06-18T15:12:25.681Z [TRACE] user-service - POST /api/v1/payments - Status: 404 - Response time: 835ms - IP: 192.168.79.141 - User: user_1001 - RequestID: zjnfwj4pnbo +2025-06-18T15:12:25.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.144.38 - RequestID: oy29zpwn42m +2025-06-18T15:12:25.881Z [DEBUG] user-service - GET /api/v1/orders - Status: 400 - Response time: 1504ms - IP: 192.168.227.77 - User: user_1067 - RequestID: iveuvmjhpk +2025-06-18T15:12:25.981Z [DEBUG] user-service - Auth event: logout - User: user_1085 - IP: 192.168.229.123 - RequestID: 1o68fvjwv23 +2025-06-18T15:12:26.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.33.76 - RequestID: r5avabxukx +2025-06-18T15:12:26.181Z [TRACE] payment-service - Database SELECT on users - Execution time: 1ms - Rows affected: 67 - RequestID: 51afp92zaah +2025-06-18T15:12:26.281Z [TRACE] payment-service - Operation: email_sent - Processing time: 100ms - RequestID: 9r28xzr1vev +2025-06-18T15:12:26.381Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 400 - Response time: 39ms - IP: 192.168.53.133 - User: user_1051 - RequestID: gmehlw8ch56 +2025-06-18T15:12:26.481Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 175ms - RequestID: skb9ylm30lr +2025-06-18T15:12:26.581Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 415ms - Rows affected: 44 - RequestID: u2xquf6ku5 +2025-06-18T15:12:26.681Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1544ms - IP: 192.168.44.5 - User: user_1010 - RequestID: sw0upfoka0b +2025-06-18T15:12:26.781Z [DEBUG] order-service - Auth event: login_success - User: user_1054 - IP: 192.168.68.158 - RequestID: 3xfxk9aseyz +2025-06-18T15:12:26.881Z [DEBUG] notification-service - Operation: email_sent - Processing time: 889ms - RequestID: zdslt46h0c +2025-06-18T15:12:26.981Z [DEBUG] payment-service - GET /api/v1/orders - Status: 403 - Response time: 1262ms - IP: 192.168.68.128 - User: user_1052 - RequestID: w61awugkxb +2025-06-18T15:12:27.081Z [TRACE] order-service - Database DELETE on sessions - Execution time: 260ms - Rows affected: 50 - RequestID: bmbdpiycx4k +2025-06-18T15:12:27.181Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 289ms - Rows affected: 53 - RequestID: m9a24gx6tjb +2025-06-18T15:12:27.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.211.72 - RequestID: nqtbtr0ddlf +2025-06-18T15:12:27.381Z [TRACE] user-service - Database DELETE on users - Execution time: 359ms - Rows affected: 13 - RequestID: jeslgfh9cis +2025-06-18T15:12:27.481Z [TRACE] auth-service - Operation: payment_processed - Processing time: 869ms - RequestID: b0fwvopqul +2025-06-18T15:12:27.581Z [DEBUG] inventory-service - Auth event: login_success - User: user_1097 - IP: 192.168.32.38 - RequestID: v0qejdlh43m +2025-06-18T15:12:27.681Z [DEBUG] user-service - Auth event: logout - User: user_1089 - IP: 192.168.189.103 - RequestID: 2kiqsqbbcdu +2025-06-18T15:12:27.781Z [TRACE] order-service - DELETE /api/v1/orders - Status: 400 - Response time: 926ms - IP: 192.168.133.7 - User: user_1017 - RequestID: i8eonjoya9 +2025-06-18T15:12:27.881Z [DEBUG] order-service - Database SELECT on orders - Execution time: 459ms - Rows affected: 50 - RequestID: xpwg0ux8tb +2025-06-18T15:12:27.981Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 649ms - IP: 192.168.68.128 - User: user_1083 - RequestID: 5kwjvm2y6v6 +2025-06-18T15:12:28.081Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 74ms - RequestID: sc2lcjcklhr +2025-06-18T15:12:28.181Z [TRACE] user-service - Database DELETE on users - Execution time: 70ms - Rows affected: 79 - RequestID: am0z62i12vc +2025-06-18T15:12:28.281Z [TRACE] user-service - Auth event: login_success - User: user_1067 - IP: 192.168.1.152 - RequestID: dzc7jc5yned +2025-06-18T15:12:28.381Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.79.116 - RequestID: lt6giywr69f +2025-06-18T15:12:28.481Z [INFO] auth-service - PUT /api/v1/inventory - Status: 401 - Response time: 1699ms - IP: 192.168.79.116 - User: user_1039 - RequestID: v37yhjd7ryh +2025-06-18T15:12:28.581Z [DEBUG] order-service - Auth event: password_change - User: user_1022 - IP: 192.168.235.117 - RequestID: k359c58t16r +2025-06-18T15:12:28.681Z [TRACE] notification-service - Auth event: password_change - User: user_1027 - IP: 192.168.68.128 - RequestID: 6d51kts2nog +2025-06-18T15:12:28.781Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 191ms - RequestID: k270bvf5sq9 +2025-06-18T15:12:28.881Z [INFO] user-service - Operation: payment_processed - Processing time: 178ms - RequestID: 1xktyag10ud +2025-06-18T15:12:28.981Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 196ms - Rows affected: 47 - RequestID: fpaerpw1h1b +2025-06-18T15:12:29.081Z [TRACE] notification-service - Database INSERT on payments - Execution time: 103ms - Rows affected: 82 - RequestID: xnkc446bow +2025-06-18T15:12:29.181Z [INFO] order-service - Database UPDATE on orders - Execution time: 74ms - Rows affected: 52 - RequestID: p9k8cyltr4 +2025-06-18T15:12:29.281Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 217ms - RequestID: bplmbm35jn +2025-06-18T15:12:29.381Z [TRACE] payment-service - Database UPDATE on users - Execution time: 253ms - Rows affected: 81 - RequestID: 0s1hibf4rian +2025-06-18T15:12:29.481Z [DEBUG] order-service - Database SELECT on products - Execution time: 82ms - Rows affected: 82 - RequestID: 7x96lislpqq +2025-06-18T15:12:29.581Z [DEBUG] user-service - Operation: cache_hit - Processing time: 802ms - RequestID: mr9bcuoirmr +2025-06-18T15:12:29.681Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 264ms - RequestID: cv7icxwmfmt +2025-06-18T15:12:29.781Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1628ms - IP: 192.168.64.33 - User: user_1032 - RequestID: jgyfldmlol +2025-06-18T15:12:29.881Z [DEBUG] user-service - Auth event: login_success - User: user_1022 - IP: 192.168.158.144 - RequestID: bgs14ffpo2 +2025-06-18T15:12:29.981Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 161ms - IP: 192.168.159.94 - User: user_1006 - RequestID: rl1g3p49yef +2025-06-18T15:12:30.081Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 654ms - RequestID: cd6ipczfgsr +2025-06-18T15:12:30.181Z [INFO] order-service - Database DELETE on users - Execution time: 229ms - Rows affected: 87 - RequestID: r8jclfhv3ip +2025-06-18T15:12:30.281Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 312ms - Rows affected: 38 - RequestID: jpsm4sv1r5h +2025-06-18T15:12:30.381Z [INFO] auth-service - PUT /api/v1/payments - Status: 500 - Response time: 1691ms - IP: 192.168.11.60 - User: user_1078 - RequestID: qr4rceodg5r +2025-06-18T15:12:30.481Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 503 - Response time: 150ms - IP: 192.168.147.171 - User: user_1092 - RequestID: 0oulr7j2gbin +2025-06-18T15:12:30.581Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1017ms - IP: 192.168.147.171 - User: user_1061 - RequestID: ey7zvenvzfq +2025-06-18T15:12:30.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 895ms - RequestID: trw17jg28c +2025-06-18T15:12:30.781Z [TRACE] user-service - Operation: email_sent - Processing time: 1019ms - RequestID: qnaqvprmx9 +2025-06-18T15:12:30.881Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 165ms - Rows affected: 71 - RequestID: yf9thg3yb8h +2025-06-18T15:12:30.981Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 503 - Response time: 1544ms - IP: 192.168.196.226 - User: user_1088 - RequestID: c6g7w5ui38a +2025-06-18T15:12:31.081Z [DEBUG] payment-service - GET /api/v1/users - Status: 500 - Response time: 234ms - IP: 192.168.113.218 - User: user_1019 - RequestID: 2xymoj65shm +2025-06-18T15:12:31.181Z [TRACE] inventory-service - Auth event: login_success - User: user_1063 - IP: 192.168.181.225 - RequestID: twoxtwx5qgh +2025-06-18T15:12:31.281Z [DEBUG] order-service - Auth event: login_success - User: user_1065 - IP: 192.168.170.215 - RequestID: 9mxx2uiqx5c +2025-06-18T15:12:31.381Z [INFO] inventory-service - Operation: email_sent - Processing time: 507ms - RequestID: ao0s985dzer +2025-06-18T15:12:31.481Z [TRACE] notification-service - Operation: cache_miss - Processing time: 907ms - RequestID: 9oavsa4ryn +2025-06-18T15:12:31.581Z [INFO] auth-service - Operation: inventory_updated - Processing time: 401ms - RequestID: c56fasq5iqp +2025-06-18T15:12:31.681Z [INFO] payment-service - Auth event: password_change - User: user_1085 - IP: 192.168.113.218 - RequestID: q0gznywcul8 +2025-06-18T15:12:31.781Z [INFO] payment-service - Database SELECT on sessions - Execution time: 128ms - Rows affected: 57 - RequestID: 4xlteydz6a4 +2025-06-18T15:12:31.881Z [INFO] user-service - Operation: notification_queued - Processing time: 84ms - RequestID: ma6i5e6w3jq +2025-06-18T15:12:31.981Z [DEBUG] notification-service - Operation: order_created - Processing time: 506ms - RequestID: hwlr10o0toe +2025-06-18T15:12:32.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.100.240 - RequestID: ncl564zlaz +2025-06-18T15:12:32.181Z [TRACE] payment-service - Auth event: password_change - User: user_1010 - IP: 192.168.113.218 - RequestID: na2bpuf2zw +2025-06-18T15:12:32.281Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1590ms - IP: 192.168.211.72 - User: user_1079 - RequestID: 35ffacv9s8j +2025-06-18T15:12:32.381Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 171ms - Rows affected: 75 - RequestID: 5ldblfpq3jk +2025-06-18T15:12:32.481Z [DEBUG] payment-service - Auth event: logout - User: user_1014 - IP: 192.168.36.218 - RequestID: 5r9ar9ijogo +2025-06-18T15:12:32.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 289ms - RequestID: n0wcnbrfa8 +2025-06-18T15:12:32.681Z [INFO] user-service - Operation: payment_processed - Processing time: 196ms - RequestID: 26d7cus01kq +2025-06-18T15:12:32.781Z [INFO] notification-service - Auth event: login_success - User: user_1042 - IP: 192.168.159.94 - RequestID: 5c980ef2jra +2025-06-18T15:12:32.881Z [TRACE] user-service - DELETE /api/v1/payments - Status: 503 - Response time: 1935ms - IP: 192.168.232.72 - User: user_1095 - RequestID: isdecw1ee1b +2025-06-18T15:12:32.981Z [TRACE] order-service - GET /api/v1/users - Status: 500 - Response time: 1845ms - IP: 192.168.31.117 - User: user_1089 - RequestID: r86mplh0jsq +2025-06-18T15:12:33.081Z [INFO] inventory-service - Auth event: logout - User: user_1009 - IP: 192.168.79.116 - RequestID: y2s88bdchtg +2025-06-18T15:12:33.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.79.141 - RequestID: 6squpre78s3 +2025-06-18T15:12:33.281Z [INFO] order-service - Operation: order_created - Processing time: 192ms - RequestID: bkajgz3ckw +2025-06-18T15:12:33.381Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 500 - Response time: 1743ms - IP: 192.168.79.116 - User: user_1060 - RequestID: sj5lqg9n83q +2025-06-18T15:12:33.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 319ms - RequestID: hsm3r0ulpma +2025-06-18T15:12:33.581Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 502 - Response time: 182ms - IP: 192.168.53.133 - User: user_1019 - RequestID: e4181zaspmw +2025-06-18T15:12:33.681Z [TRACE] payment-service - Database SELECT on payments - Execution time: 216ms - Rows affected: 82 - RequestID: bi8i80ny3ho +2025-06-18T15:12:33.781Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 191ms - Rows affected: 40 - RequestID: 751awnkrr34 +2025-06-18T15:12:33.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1049 - IP: 192.168.229.123 - RequestID: vmcd16wmh0h +2025-06-18T15:12:33.981Z [DEBUG] order-service - Operation: email_sent - Processing time: 1027ms - RequestID: 7f6nsth1utw +2025-06-18T15:12:34.081Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 200 - Response time: 596ms - IP: 192.168.247.134 - User: user_1079 - RequestID: 3sdmlkc9alf +2025-06-18T15:12:34.181Z [INFO] user-service - Auth event: token_refresh - User: user_1055 - IP: 192.168.68.128 - RequestID: nqyqfv6ia3f +2025-06-18T15:12:34.281Z [INFO] notification-service - Auth event: logout - User: user_1044 - IP: 192.168.104.37 - RequestID: kd13cz3x2zc +2025-06-18T15:12:34.381Z [INFO] order-service - Operation: cache_miss - Processing time: 233ms - RequestID: qrzhi6dw0ak +2025-06-18T15:12:34.481Z [INFO] inventory-service - Auth event: login_failed - User: user_1022 - IP: 192.168.13.72 - RequestID: cvtx6ahbe7e +2025-06-18T15:12:34.581Z [TRACE] notification-service - Auth event: login_failed - User: user_1017 - IP: 192.168.79.143 - RequestID: yafdchwp3vm +2025-06-18T15:12:34.681Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 503 - Response time: 1371ms - IP: 192.168.13.72 - User: user_1046 - RequestID: pdiauiexeq +2025-06-18T15:12:34.781Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 47ms - IP: 192.168.138.123 - User: user_1089 - RequestID: 9qg6kx7qfw5 +2025-06-18T15:12:34.881Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1787ms - IP: 192.168.104.37 - User: user_1014 - RequestID: hitegonz29f +2025-06-18T15:12:34.981Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 400 - Response time: 534ms - IP: 192.168.170.215 - User: user_1093 - RequestID: yieh51e0q0q +2025-06-18T15:12:35.081Z [INFO] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1870ms - IP: 192.168.46.63 - User: user_1084 - RequestID: b8u7xg3gm3f +2025-06-18T15:12:35.181Z [TRACE] auth-service - Database UPDATE on users - Execution time: 444ms - Rows affected: 42 - RequestID: j4r49hou14 +2025-06-18T15:12:35.281Z [TRACE] order-service - Database SELECT on users - Execution time: 78ms - Rows affected: 89 - RequestID: j9i7otavppe +2025-06-18T15:12:35.381Z [TRACE] payment-service - Auth event: login_failed - User: user_1012 - IP: 192.168.242.165 - RequestID: u0t2c4rrldc +2025-06-18T15:12:35.481Z [DEBUG] payment-service - Auth event: logout - User: user_1018 - IP: 192.168.11.60 - RequestID: hhh9eosncp4 +2025-06-18T15:12:35.581Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 401 - Response time: 669ms - IP: 192.168.104.37 - User: user_1009 - RequestID: qxqd3tymszi +2025-06-18T15:12:35.681Z [DEBUG] order-service - Operation: notification_queued - Processing time: 961ms - RequestID: iwgprwhlssp +2025-06-18T15:12:35.781Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 176ms - Rows affected: 57 - RequestID: a347x61dciv +2025-06-18T15:12:35.881Z [TRACE] payment-service - Database DELETE on orders - Execution time: 197ms - Rows affected: 27 - RequestID: l23drvh2a28 +2025-06-18T15:12:35.981Z [TRACE] auth-service - Auth event: login_success - User: user_1042 - IP: 192.168.187.199 - RequestID: lit1fb66tgm +2025-06-18T15:12:36.081Z [INFO] order-service - POST /api/v1/orders - Status: 404 - Response time: 883ms - IP: 192.168.211.72 - User: user_1012 - RequestID: h0zj7qryba5 +2025-06-18T15:12:36.181Z [TRACE] user-service - PUT /api/v1/payments - Status: 400 - Response time: 1100ms - IP: 192.168.31.117 - User: user_1046 - RequestID: evj14xm9ybr +2025-06-18T15:12:36.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 523ms - RequestID: oy0wxnsn5i +2025-06-18T15:12:36.381Z [INFO] notification-service - Database INSERT on sessions - Execution time: 195ms - Rows affected: 54 - RequestID: 37hkdamzadz +2025-06-18T15:12:36.481Z [INFO] order-service - Auth event: password_change - User: user_1014 - IP: 192.168.196.226 - RequestID: ot4yqdjya8q +2025-06-18T15:12:36.581Z [TRACE] notification-service - Operation: order_created - Processing time: 1046ms - RequestID: skpvnjziceh +2025-06-18T15:12:36.681Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 665ms - RequestID: pdl1sjzof6k +2025-06-18T15:12:36.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 1031ms - RequestID: 95rlf4bri4 +2025-06-18T15:12:36.881Z [TRACE] user-service - Operation: webhook_sent - Processing time: 110ms - RequestID: i0dvyteqxs9 +2025-06-18T15:12:36.981Z [INFO] payment-service - DELETE /api/v1/users - Status: 201 - Response time: 444ms - IP: 192.168.13.72 - User: user_1044 - RequestID: ghiylqabhxm +2025-06-18T15:12:37.081Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1992ms - IP: 192.168.10.184 - User: user_1076 - RequestID: 6gawjsnlae +2025-06-18T15:12:37.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 561ms - RequestID: 1e4dmi9qnok +2025-06-18T15:12:37.281Z [TRACE] notification-service - Auth event: logout - User: user_1045 - IP: 192.168.31.117 - RequestID: mqi406e6be +2025-06-18T15:12:37.381Z [INFO] inventory-service - Operation: email_sent - Processing time: 423ms - RequestID: hdexiiacyxp +2025-06-18T15:12:37.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 430ms - RequestID: 8xex7vyqehe +2025-06-18T15:12:37.581Z [INFO] payment-service - Database INSERT on orders - Execution time: 5ms - Rows affected: 5 - RequestID: or5pl2pn1o +2025-06-18T15:12:37.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 214ms - RequestID: tf3nzzvsty +2025-06-18T15:12:37.781Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 1981ms - IP: 192.168.81.206 - User: user_1044 - RequestID: 1nro3m2xu6t +2025-06-18T15:12:37.881Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 313ms - RequestID: onqzfwtedum +2025-06-18T15:12:37.981Z [INFO] auth-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.68.128 - RequestID: tph389pxq4e +2025-06-18T15:12:38.081Z [DEBUG] order-service - GET /api/v1/payments - Status: 200 - Response time: 74ms - IP: 192.168.247.134 - User: user_1049 - RequestID: zyl0q0n4txl +2025-06-18T15:12:38.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.79.143 - RequestID: xpbaiwaji9k +2025-06-18T15:12:38.281Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 178ms - RequestID: as679ff466a +2025-06-18T15:12:38.381Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 502ms - RequestID: 5wwxp0sc087 +2025-06-18T15:12:38.481Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 400 - Response time: 1998ms - IP: 192.168.159.94 - User: user_1020 - RequestID: gw4phpkepdl +2025-06-18T15:12:38.581Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 611ms - IP: 192.168.235.117 - User: user_1095 - RequestID: d357vagt4d7 +2025-06-18T15:12:38.681Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 403 - Response time: 1992ms - IP: 192.168.227.77 - User: user_1068 - RequestID: hhoxlb47jqh +2025-06-18T15:12:38.781Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 503 - Response time: 1175ms - IP: 192.168.141.100 - User: user_1030 - RequestID: 7lajnubrhln +2025-06-18T15:12:38.881Z [INFO] inventory-service - Operation: notification_queued - Processing time: 132ms - RequestID: nepp1mfhhsi +2025-06-18T15:12:38.981Z [TRACE] order-service - Auth event: password_change - User: user_1067 - IP: 192.168.53.133 - RequestID: wscivkf9tqs +2025-06-18T15:12:39.081Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 684ms - RequestID: vpvmufy2qs7 +2025-06-18T15:12:39.181Z [DEBUG] order-service - Operation: payment_processed - Processing time: 402ms - RequestID: vkoqjvnsa7 +2025-06-18T15:12:39.281Z [DEBUG] payment-service - Database INSERT on users - Execution time: 439ms - Rows affected: 57 - RequestID: p6g2n3byrxd +2025-06-18T15:12:39.381Z [TRACE] user-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.232.72 - RequestID: u43ka6urq8 +2025-06-18T15:12:39.481Z [TRACE] auth-service - Operation: cache_hit - Processing time: 398ms - RequestID: s0gqrzx1vii +2025-06-18T15:12:39.581Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 400 - Response time: 74ms - IP: 192.168.14.77 - User: user_1094 - RequestID: dq0qos9r31u +2025-06-18T15:12:39.681Z [INFO] order-service - Operation: notification_queued - Processing time: 955ms - RequestID: fl2ghsnui0s +2025-06-18T15:12:39.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.181.225 - RequestID: 4hwkbtlpohq +2025-06-18T15:12:39.881Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 201 - Response time: 1092ms - IP: 192.168.13.72 - User: user_1044 - RequestID: 33c1t6fd41m +2025-06-18T15:12:39.981Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1218ms - IP: 192.168.28.146 - User: user_1097 - RequestID: eqvn4radq2g +2025-06-18T15:12:40.081Z [INFO] payment-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.32.38 - RequestID: zdafqgy844h +2025-06-18T15:12:40.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 523ms - RequestID: owv0kdsj7eo +2025-06-18T15:12:40.281Z [INFO] inventory-service - Database INSERT on products - Execution time: 352ms - Rows affected: 95 - RequestID: 1p6nxypa97a +2025-06-18T15:12:40.381Z [INFO] order-service - Auth event: logout - User: user_1047 - IP: 192.168.240.169 - RequestID: waje6fbfp8g +2025-06-18T15:12:40.481Z [TRACE] notification-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.97.87 - RequestID: botlrbrdwdb +2025-06-18T15:12:40.581Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 180ms - Rows affected: 27 - RequestID: eiecq7ny7qr +2025-06-18T15:12:40.681Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 224ms - Rows affected: 28 - RequestID: hksjowohci +2025-06-18T15:12:40.781Z [INFO] auth-service - Database UPDATE on orders - Execution time: 207ms - Rows affected: 59 - RequestID: ztb7y753m9d +2025-06-18T15:12:40.881Z [INFO] payment-service - Operation: email_sent - Processing time: 640ms - RequestID: hmutn93sh9 +2025-06-18T15:12:40.981Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 201 - Response time: 879ms - IP: 192.168.133.7 - User: user_1097 - RequestID: k626z1bmrha +2025-06-18T15:12:41.081Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 64ms - RequestID: nii24599v6s +2025-06-18T15:12:41.181Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 597ms - RequestID: o60o3f6e8x +2025-06-18T15:12:41.281Z [DEBUG] user-service - Database UPDATE on users - Execution time: 340ms - Rows affected: 82 - RequestID: n09mmov2k2 +2025-06-18T15:12:41.381Z [TRACE] order-service - Auth event: login_success - User: user_1054 - IP: 192.168.240.169 - RequestID: 58b8rc0b0gg +2025-06-18T15:12:41.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.242.165 - RequestID: cvq20w77wt +2025-06-18T15:12:41.581Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 987ms - RequestID: 96fagyk50hh +2025-06-18T15:12:41.681Z [INFO] notification-service - Operation: notification_queued - Processing time: 217ms - RequestID: 55davmlj2xk +2025-06-18T15:12:41.781Z [INFO] order-service - Operation: webhook_sent - Processing time: 931ms - RequestID: eeu6b912z2m +2025-06-18T15:12:41.881Z [DEBUG] auth-service - PUT /api/v1/users - Status: 400 - Response time: 107ms - IP: 192.168.79.141 - User: user_1079 - RequestID: p6j7gu4ybmo +2025-06-18T15:12:41.981Z [INFO] payment-service - PUT /api/v1/inventory - Status: 401 - Response time: 1651ms - IP: 192.168.229.123 - User: user_1077 - RequestID: cbrvclc9wbf +2025-06-18T15:12:42.081Z [INFO] user-service - Database SELECT on users - Execution time: 302ms - Rows affected: 39 - RequestID: zlqs38zwyvm +2025-06-18T15:12:42.181Z [TRACE] notification-service - GET /api/v1/payments - Status: 201 - Response time: 893ms - IP: 192.168.196.226 - User: user_1041 - RequestID: hy42i5ud2yr +2025-06-18T15:12:42.281Z [TRACE] order-service - PATCH /api/v1/payments - Status: 503 - Response time: 523ms - IP: 192.168.81.206 - User: user_1088 - RequestID: e8epfcavoms +2025-06-18T15:12:42.381Z [DEBUG] notification-service - Database DELETE on users - Execution time: 262ms - Rows affected: 47 - RequestID: 69braqpp4qv +2025-06-18T15:12:42.481Z [DEBUG] user-service - Auth event: logout - User: user_1064 - IP: 192.168.13.72 - RequestID: 380on95ae5n +2025-06-18T15:12:42.581Z [TRACE] user-service - Operation: order_created - Processing time: 925ms - RequestID: syrg8wt96x +2025-06-18T15:12:42.681Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 123ms - Rows affected: 50 - RequestID: cju27pj90wv +2025-06-18T15:12:42.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1065 - IP: 192.168.247.134 - RequestID: x52l2qy2lgi +2025-06-18T15:12:42.881Z [TRACE] user-service - Database SELECT on sessions - Execution time: 137ms - Rows affected: 64 - RequestID: pamawavf6w +2025-06-18T15:12:42.981Z [INFO] auth-service - Auth event: login_failed - User: user_1088 - IP: 192.168.232.72 - RequestID: t4sifxsca9i +2025-06-18T15:12:43.081Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 155ms - Rows affected: 10 - RequestID: 0hwamkwzil8s +2025-06-18T15:12:43.181Z [INFO] user-service - Auth event: login_failed - User: user_1020 - IP: 192.168.158.144 - RequestID: nquiye8pzm +2025-06-18T15:12:43.281Z [INFO] payment-service - Auth event: password_change - User: user_1086 - IP: 192.168.159.94 - RequestID: pumch4woc5h +2025-06-18T15:12:43.381Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 407ms - Rows affected: 47 - RequestID: ulbi37yfgu +2025-06-18T15:12:43.481Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 291ms - RequestID: xcyw7kus6c +2025-06-18T15:12:43.581Z [TRACE] order-service - Operation: cache_hit - Processing time: 288ms - RequestID: dlwkbe9lcjh +2025-06-18T15:12:43.681Z [TRACE] payment-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.247.134 - RequestID: r8ezynunbz +2025-06-18T15:12:43.781Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.68.158 - RequestID: v3dxg03y88 +2025-06-18T15:12:43.881Z [TRACE] payment-service - Auth event: login_success - User: user_1095 - IP: 192.168.79.116 - RequestID: zdmye1amgc9 +2025-06-18T15:12:43.981Z [TRACE] user-service - Operation: notification_queued - Processing time: 114ms - RequestID: 5sh7vxc171 +2025-06-18T15:12:44.081Z [INFO] payment-service - Database DELETE on users - Execution time: 444ms - Rows affected: 6 - RequestID: tr8gmwrnuo +2025-06-18T15:12:44.181Z [DEBUG] order-service - Auth event: password_change - User: user_1030 - IP: 192.168.181.225 - RequestID: hfanu5rc2u8 +2025-06-18T15:12:44.281Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 294ms - Rows affected: 66 - RequestID: y1o2hhg5qlq +2025-06-18T15:12:44.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1015 - IP: 192.168.13.72 - RequestID: 6nvq3fl2m1 +2025-06-18T15:12:44.481Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 209ms - RequestID: m8mva5mtaun +2025-06-18T15:12:44.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 623ms - RequestID: sd0cbe0kou +2025-06-18T15:12:44.681Z [INFO] auth-service - Auth event: login_failed - User: user_1054 - IP: 192.168.174.114 - RequestID: bxj1xw13kuc +2025-06-18T15:12:44.781Z [INFO] auth-service - Database SELECT on sessions - Execution time: 148ms - Rows affected: 1 - RequestID: rvv5z3h11ri +2025-06-18T15:12:44.881Z [INFO] payment-service - POST /api/v1/users - Status: 400 - Response time: 525ms - IP: 192.168.100.240 - User: user_1064 - RequestID: lbmr1j3oud +2025-06-18T15:12:44.981Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 249ms - Rows affected: 29 - RequestID: f2lddh3clpa +2025-06-18T15:12:45.081Z [INFO] notification-service - Auth event: password_change - User: user_1075 - IP: 192.168.28.146 - RequestID: ughnf3zw238 +2025-06-18T15:12:45.181Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 302ms - Rows affected: 9 - RequestID: oprp4h1m3s +2025-06-18T15:12:45.281Z [DEBUG] order-service - Operation: cache_miss - Processing time: 891ms - RequestID: kn4z5kofdeq +2025-06-18T15:12:45.381Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 552ms - RequestID: o55i93xcw9g +2025-06-18T15:12:45.481Z [DEBUG] order-service - Database DELETE on users - Execution time: 234ms - Rows affected: 94 - RequestID: wh1uu1fi2sq +2025-06-18T15:12:45.581Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1236ms - IP: 192.168.1.152 - User: user_1082 - RequestID: ur5rdggxhw +2025-06-18T15:12:45.681Z [TRACE] payment-service - Auth event: login_success - User: user_1077 - IP: 192.168.79.116 - RequestID: rm1nb0kmuif +2025-06-18T15:12:45.781Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 201 - Response time: 1857ms - IP: 192.168.33.76 - User: user_1056 - RequestID: sjshb4vhr6o +2025-06-18T15:12:45.881Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1744ms - IP: 192.168.232.72 - User: user_1030 - RequestID: hl4oyf4k67 +2025-06-18T15:12:45.981Z [DEBUG] order-service - Database DELETE on users - Execution time: 377ms - Rows affected: 26 - RequestID: skew1awmwss +2025-06-18T15:12:46.081Z [INFO] order-service - Auth event: password_change - User: user_1083 - IP: 192.168.100.240 - RequestID: 4xep8woo3ah +2025-06-18T15:12:46.181Z [INFO] order-service - POST /api/v1/inventory - Status: 403 - Response time: 803ms - IP: 192.168.64.33 - User: user_1074 - RequestID: l9l7irtw6qe +2025-06-18T15:12:46.281Z [DEBUG] auth-service - POST /api/v1/payments - Status: 500 - Response time: 216ms - IP: 192.168.181.225 - User: user_1022 - RequestID: u9nnp4hgdvm +2025-06-18T15:12:46.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 827ms - RequestID: i1jjcfwz8q +2025-06-18T15:12:46.481Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 269ms - RequestID: uy5cxgrik3 +2025-06-18T15:12:46.581Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.194.41 - RequestID: ur17iie07ns +2025-06-18T15:12:46.681Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1652ms - IP: 192.168.79.141 - User: user_1089 - RequestID: whucdarnbgb +2025-06-18T15:12:46.781Z [INFO] inventory-service - Auth event: login_failed - User: user_1048 - IP: 192.168.31.117 - RequestID: l5v1ihkyjhp +2025-06-18T15:12:46.881Z [DEBUG] notification-service - Auth event: login_failed - User: user_1028 - IP: 192.168.79.141 - RequestID: qhggidre1lm +2025-06-18T15:12:46.981Z [DEBUG] user-service - GET /api/v1/orders - Status: 401 - Response time: 516ms - IP: 192.168.159.94 - User: user_1027 - RequestID: 2pnv3kpsh8y +2025-06-18T15:12:47.081Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 879ms - IP: 192.168.85.229 - User: user_1028 - RequestID: nxe5budsyj8 +2025-06-18T15:12:47.181Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 481ms - RequestID: 35vmjwtaorz +2025-06-18T15:12:47.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 706ms - RequestID: 2q7a5zi6i8c +2025-06-18T15:12:47.381Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1251ms - IP: 192.168.232.72 - User: user_1012 - RequestID: ndws8hiy2zr +2025-06-18T15:12:47.481Z [INFO] auth-service - Operation: cache_miss - Processing time: 1029ms - RequestID: nc42bwfa6th +2025-06-18T15:12:47.581Z [INFO] auth-service - Operation: payment_processed - Processing time: 566ms - RequestID: cb21pubrtpb +2025-06-18T15:12:47.681Z [INFO] payment-service - Operation: webhook_sent - Processing time: 479ms - RequestID: 71b83ufcmmd +2025-06-18T15:12:47.781Z [INFO] order-service - PATCH /api/v1/orders - Status: 401 - Response time: 910ms - IP: 192.168.11.60 - User: user_1085 - RequestID: 4k3allsrtpg +2025-06-18T15:12:47.881Z [TRACE] order-service - PATCH /api/v1/orders - Status: 404 - Response time: 395ms - IP: 192.168.68.128 - User: user_1065 - RequestID: x00kwfg8ut +2025-06-18T15:12:47.981Z [INFO] auth-service - PUT /api/v1/payments - Status: 500 - Response time: 1983ms - IP: 192.168.33.76 - User: user_1050 - RequestID: 3rja6sro422 +2025-06-18T15:12:48.081Z [INFO] payment-service - Auth event: login_failed - User: user_1049 - IP: 192.168.68.158 - RequestID: gvg9led8muj +2025-06-18T15:12:48.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.167.32 - RequestID: nwy5ptu3jem +2025-06-18T15:12:48.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 1028ms - RequestID: x0nwxlkvvn +2025-06-18T15:12:48.381Z [INFO] auth-service - Database UPDATE on users - Execution time: 366ms - Rows affected: 44 - RequestID: fhqbiwar01 +2025-06-18T15:12:48.481Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 378ms - Rows affected: 50 - RequestID: q7xrwmyg9mb +2025-06-18T15:12:48.581Z [DEBUG] order-service - GET /api/v1/users - Status: 201 - Response time: 1042ms - IP: 192.168.33.76 - User: user_1002 - RequestID: b52m6y70lx8 +2025-06-18T15:12:48.681Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 293ms - RequestID: 7c48qzbpfkm +2025-06-18T15:12:48.781Z [DEBUG] user-service - POST /api/v1/orders - Status: 404 - Response time: 1223ms - IP: 192.168.113.218 - User: user_1037 - RequestID: 41c23x467bn +2025-06-18T15:12:48.881Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 403 - Response time: 429ms - IP: 192.168.247.134 - User: user_1087 - RequestID: kxpkq5d5kd +2025-06-18T15:12:48.981Z [TRACE] order-service - PUT /api/v1/users - Status: 502 - Response time: 1589ms - IP: 192.168.240.169 - User: user_1043 - RequestID: qgg2cruswd +2025-06-18T15:12:49.081Z [TRACE] notification-service - Auth event: login_failed - User: user_1084 - IP: 192.168.68.128 - RequestID: ytn2voj6o6 +2025-06-18T15:12:49.181Z [INFO] inventory-service - DELETE /api/v1/users - Status: 502 - Response time: 1397ms - IP: 192.168.13.72 - User: user_1033 - RequestID: 8rnzd4rnbnt +2025-06-18T15:12:49.281Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 300ms - RequestID: ano74sfstne +2025-06-18T15:12:49.381Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 984ms - RequestID: vieya8imbbm +2025-06-18T15:12:49.481Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 197ms - Rows affected: 94 - RequestID: dfhauky9x6 +2025-06-18T15:12:49.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.227.77 - RequestID: 1tynr7denkm +2025-06-18T15:12:49.681Z [INFO] notification-service - Auth event: login_failed - User: user_1045 - IP: 192.168.44.5 - RequestID: 6rah7joim2l +2025-06-18T15:12:49.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 56ms - RequestID: 0u616m18myr +2025-06-18T15:12:49.881Z [INFO] notification-service - Operation: webhook_sent - Processing time: 1002ms - RequestID: jpn7rrwxbi +2025-06-18T15:12:49.981Z [TRACE] notification-service - Auth event: logout - User: user_1010 - IP: 192.168.81.206 - RequestID: tnracni6de +2025-06-18T15:12:50.081Z [INFO] inventory-service - Auth event: login_success - User: user_1085 - IP: 192.168.138.123 - RequestID: 1way5ho633q +2025-06-18T15:12:50.181Z [TRACE] user-service - POST /api/v1/payments - Status: 200 - Response time: 873ms - IP: 192.168.79.143 - User: user_1085 - RequestID: jmdt7v5im5r +2025-06-18T15:12:50.281Z [INFO] order-service - Auth event: login_success - User: user_1079 - IP: 192.168.229.123 - RequestID: a9w5h4ed09 +2025-06-18T15:12:50.381Z [INFO] notification-service - Operation: cache_hit - Processing time: 144ms - RequestID: 3ephxz6foi4 +2025-06-18T15:12:50.481Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 492ms - RequestID: bs96pkcwld +2025-06-18T15:12:50.581Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 974ms - RequestID: 9welsi7uwyl +2025-06-18T15:12:50.681Z [INFO] payment-service - Operation: order_created - Processing time: 151ms - RequestID: 1zs267jv9r1 +2025-06-18T15:12:50.781Z [DEBUG] user-service - Database SELECT on users - Execution time: 436ms - Rows affected: 84 - RequestID: qp4l35nz51l +2025-06-18T15:12:50.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 58ms - RequestID: byn495cvn8r +2025-06-18T15:12:50.981Z [INFO] notification-service - Database DELETE on products - Execution time: 237ms - Rows affected: 91 - RequestID: wq49rcv12mi +2025-06-18T15:12:51.081Z [TRACE] payment-service - Auth event: login_success - User: user_1060 - IP: 192.168.68.158 - RequestID: ctebe7czffu +2025-06-18T15:12:51.181Z [DEBUG] notification-service - Auth event: logout - User: user_1095 - IP: 192.168.100.240 - RequestID: e531cffxjka +2025-06-18T15:12:51.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.36.218 - RequestID: 86oog22q813 +2025-06-18T15:12:51.381Z [TRACE] payment-service - Database DELETE on orders - Execution time: 407ms - Rows affected: 98 - RequestID: f3dgnx1rhs6 +2025-06-18T15:12:51.481Z [TRACE] auth-service - Operation: cache_hit - Processing time: 214ms - RequestID: qw1nvmarpn +2025-06-18T15:12:51.581Z [TRACE] payment-service - GET /api/v1/users - Status: 502 - Response time: 1210ms - IP: 192.168.36.218 - User: user_1087 - RequestID: asw3tdj2hlk +2025-06-18T15:12:51.681Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 404 - Response time: 450ms - IP: 192.168.141.100 - User: user_1083 - RequestID: oe01gegeq8b +2025-06-18T15:12:51.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.30.79 - RequestID: bkhfvl450p5 +2025-06-18T15:12:51.881Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 206ms - Rows affected: 43 - RequestID: pp5u36sk9w +2025-06-18T15:12:51.981Z [INFO] notification-service - Database INSERT on payments - Execution time: 264ms - Rows affected: 89 - RequestID: i99wdzwqgt +2025-06-18T15:12:52.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 688ms - RequestID: w1atxnxnsdi +2025-06-18T15:12:52.181Z [INFO] notification-service - Database UPDATE on payments - Execution time: 252ms - Rows affected: 96 - RequestID: jfnv7huwpmd +2025-06-18T15:12:52.281Z [TRACE] payment-service - Auth event: logout - User: user_1020 - IP: 192.168.187.199 - RequestID: 7mnnee3dqjr +2025-06-18T15:12:52.381Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 775ms - RequestID: qxjjvhns2r +2025-06-18T15:12:52.481Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 972ms - IP: 192.168.242.165 - User: user_1004 - RequestID: bkuojpvbo6 +2025-06-18T15:12:52.581Z [TRACE] user-service - Auth event: login_success - User: user_1001 - IP: 192.168.31.117 - RequestID: hhrtpkbw68l +2025-06-18T15:12:52.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 828ms - RequestID: mh1o3b778pl +2025-06-18T15:12:52.781Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 426ms - Rows affected: 89 - RequestID: qhoh2c47u0q +2025-06-18T15:12:52.881Z [INFO] order-service - PUT /api/v1/auth/login - Status: 500 - Response time: 392ms - IP: 192.168.158.144 - User: user_1038 - RequestID: og7bfr9zww +2025-06-18T15:12:52.981Z [TRACE] order-service - Operation: cache_miss - Processing time: 228ms - RequestID: vuczkmcxo3 +2025-06-18T15:12:53.081Z [TRACE] order-service - Operation: inventory_updated - Processing time: 390ms - RequestID: o4zc4xikhf +2025-06-18T15:12:53.181Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 403 - Response time: 1809ms - IP: 192.168.158.144 - User: user_1083 - RequestID: t2u6mgf94yc +2025-06-18T15:12:53.281Z [TRACE] auth-service - Database INSERT on users - Execution time: 171ms - Rows affected: 16 - RequestID: 636kcncf77a +2025-06-18T15:12:53.381Z [DEBUG] notification-service - Auth event: login_success - User: user_1091 - IP: 192.168.174.114 - RequestID: x9ln9cw8vwf +2025-06-18T15:12:53.481Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 284ms - Rows affected: 13 - RequestID: gii061a1epi +2025-06-18T15:12:53.581Z [INFO] notification-service - Auth event: logout - User: user_1053 - IP: 192.168.133.7 - RequestID: 8evlflihj7x +2025-06-18T15:12:53.681Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 99ms - IP: 192.168.13.72 - User: user_1053 - RequestID: x7xo6iqy4h +2025-06-18T15:12:53.781Z [INFO] user-service - Database SELECT on orders - Execution time: 281ms - Rows affected: 62 - RequestID: baggrkvduv8 +2025-06-18T15:12:53.881Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 75ms - Rows affected: 51 - RequestID: yv2wq8dk9hk +2025-06-18T15:12:53.981Z [INFO] auth-service - Database SELECT on users - Execution time: 117ms - Rows affected: 98 - RequestID: fufjogj7089 +2025-06-18T15:12:54.081Z [TRACE] user-service - Auth event: password_change - User: user_1023 - IP: 192.168.79.116 - RequestID: d045dv323dk +2025-06-18T15:12:54.181Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 199ms - Rows affected: 10 - RequestID: qznbuo7qxdi +2025-06-18T15:12:54.281Z [DEBUG] auth-service - Auth event: password_change - User: user_1012 - IP: 192.168.138.123 - RequestID: 1t8e2n4657h +2025-06-18T15:12:54.381Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 985ms - IP: 192.168.211.72 - User: user_1049 - RequestID: hgnikm6avbh +2025-06-18T15:12:54.481Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 404 - Response time: 38ms - IP: 192.168.229.123 - User: user_1075 - RequestID: 0uvl00j02kd +2025-06-18T15:12:54.581Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 441ms - Rows affected: 15 - RequestID: wlr372ciz9r +2025-06-18T15:12:54.681Z [TRACE] order-service - Auth event: login_failed - User: user_1031 - IP: 192.168.28.146 - RequestID: r8k8tmros6 +2025-06-18T15:12:54.781Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1108ms - IP: 192.168.158.144 - User: user_1033 - RequestID: omxjnaz4nq +2025-06-18T15:12:54.881Z [TRACE] inventory-service - Auth event: password_change - User: user_1097 - IP: 192.168.31.117 - RequestID: k7wwc436fwq +2025-06-18T15:12:54.981Z [DEBUG] user-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.79.141 - RequestID: 1ph9zwa7kze +2025-06-18T15:12:55.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 56ms - RequestID: yywxdtlil4n +2025-06-18T15:12:55.181Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 328ms - Rows affected: 46 - RequestID: 289f7prwgwp +2025-06-18T15:12:55.281Z [INFO] order-service - Operation: order_created - Processing time: 589ms - RequestID: 3a71akxiv56 +2025-06-18T15:12:55.381Z [TRACE] notification-service - Database DELETE on orders - Execution time: 50ms - Rows affected: 28 - RequestID: o4hnekwifvj +2025-06-18T15:12:55.481Z [TRACE] inventory-service - Auth event: login_success - User: user_1026 - IP: 192.168.159.94 - RequestID: sr7uy72i1h +2025-06-18T15:12:55.581Z [INFO] payment-service - POST /api/v1/payments - Status: 201 - Response time: 1605ms - IP: 192.168.44.5 - User: user_1018 - RequestID: 75r0ndhrlo +2025-06-18T15:12:55.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.240.169 - RequestID: 8yk6pk8s3ye +2025-06-18T15:12:55.781Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 322ms - Rows affected: 14 - RequestID: v3eohwh9x8 +2025-06-18T15:12:55.881Z [INFO] inventory-service - Database DELETE on payments - Execution time: 408ms - Rows affected: 35 - RequestID: hy9v85sa6ti +2025-06-18T15:12:55.981Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 870ms - RequestID: pi0c0y0pl3i +2025-06-18T15:12:56.081Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 503 - Response time: 238ms - IP: 192.168.247.134 - User: user_1085 - RequestID: xf5gysowhpi +2025-06-18T15:12:56.181Z [TRACE] payment-service - Operation: notification_queued - Processing time: 793ms - RequestID: sjdbmarkonj +2025-06-18T15:12:56.281Z [TRACE] order-service - Database SELECT on products - Execution time: 279ms - Rows affected: 34 - RequestID: orozspvqzvd +2025-06-18T15:12:56.381Z [TRACE] notification-service - Operation: order_created - Processing time: 183ms - RequestID: lb6zsyyjzi8 +2025-06-18T15:12:56.481Z [INFO] notification-service - Database INSERT on payments - Execution time: 91ms - Rows affected: 52 - RequestID: g62neiljl7g +2025-06-18T15:12:56.581Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 401 - Response time: 223ms - IP: 192.168.247.134 - User: user_1022 - RequestID: gomru15915l +2025-06-18T15:12:56.681Z [INFO] payment-service - Database DELETE on products - Execution time: 75ms - Rows affected: 43 - RequestID: dgimgt0q1b +2025-06-18T15:12:56.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.240.169 - RequestID: koos01wvoa +2025-06-18T15:12:56.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 430ms - RequestID: ptgecm99a4s +2025-06-18T15:12:56.981Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 1887ms - IP: 192.168.194.41 - User: user_1089 - RequestID: cnyqiewsb3v +2025-06-18T15:12:57.081Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 99ms - RequestID: t55fjgc1coo +2025-06-18T15:12:57.181Z [INFO] auth-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.189.103 - RequestID: t7xs801570q +2025-06-18T15:12:57.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.85.229 - RequestID: p1wq9kq8xx +2025-06-18T15:12:57.381Z [INFO] payment-service - PATCH /api/v1/users - Status: 404 - Response time: 305ms - IP: 192.168.158.144 - User: user_1043 - RequestID: rf7ajyt8kjo +2025-06-18T15:12:57.481Z [TRACE] order-service - POST /api/v1/auth/login - Status: 401 - Response time: 918ms - IP: 192.168.79.143 - User: user_1020 - RequestID: 17nko5qcf3i +2025-06-18T15:12:57.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.194.41 - RequestID: 00ysg86ae13c +2025-06-18T15:12:57.681Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 828ms - RequestID: 76mfb0xaz68 +2025-06-18T15:12:57.781Z [INFO] inventory-service - Operation: order_created - Processing time: 841ms - RequestID: ayscnwq5io +2025-06-18T15:12:57.881Z [TRACE] payment-service - Operation: email_sent - Processing time: 742ms - RequestID: m6p7a93wvyq +2025-06-18T15:12:57.981Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 401ms - Rows affected: 24 - RequestID: rq0tt17vemn +2025-06-18T15:12:58.081Z [TRACE] notification-service - Auth event: password_change - User: user_1026 - IP: 192.168.79.116 - RequestID: 7yflrk6xall +2025-06-18T15:12:58.181Z [DEBUG] auth-service - Operation: email_sent - Processing time: 586ms - RequestID: 1bcx35u4yb8 +2025-06-18T15:12:58.281Z [INFO] order-service - Operation: webhook_sent - Processing time: 344ms - RequestID: ievqzce1tt9 +2025-06-18T15:12:58.381Z [INFO] inventory-service - Operation: payment_processed - Processing time: 111ms - RequestID: qepwdhuh6eh +2025-06-18T15:12:58.481Z [TRACE] auth-service - Operation: order_created - Processing time: 979ms - RequestID: 70dggdo0qb9 +2025-06-18T15:12:58.581Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 134ms - Rows affected: 78 - RequestID: 0oj2rl9u1snp +2025-06-18T15:12:58.681Z [TRACE] notification-service - Operation: order_created - Processing time: 965ms - RequestID: qbkhnz66c +2025-06-18T15:12:58.781Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 401 - Response time: 1111ms - IP: 192.168.147.171 - User: user_1002 - RequestID: 9w4k5iy3x2g +2025-06-18T15:12:58.881Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 1046ms - RequestID: 9j0i60m0s9f +2025-06-18T15:12:58.981Z [INFO] payment-service - Database SELECT on products - Execution time: 193ms - Rows affected: 73 - RequestID: 3nxkpiaoiyl +2025-06-18T15:12:59.081Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 310ms - Rows affected: 66 - RequestID: 5ragec8xf0c +2025-06-18T15:12:59.181Z [INFO] order-service - Database SELECT on users - Execution time: 255ms - Rows affected: 7 - RequestID: b9qg6n0i6ac +2025-06-18T15:12:59.281Z [DEBUG] payment-service - Auth event: login_success - User: user_1049 - IP: 192.168.229.123 - RequestID: xaxdb8w3q58 +2025-06-18T15:12:59.381Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1504ms - IP: 192.168.68.128 - User: user_1005 - RequestID: mm7k46gpfkj +2025-06-18T15:12:59.481Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 400 - Response time: 1954ms - IP: 192.168.1.152 - User: user_1042 - RequestID: d55vf6fr3tk +2025-06-18T15:12:59.581Z [DEBUG] order-service - Auth event: login_success - User: user_1060 - IP: 192.168.32.38 - RequestID: 34wr8i7ewo1 +2025-06-18T15:12:59.681Z [TRACE] payment-service - Database INSERT on users - Execution time: 40ms - Rows affected: 66 - RequestID: 96uk6l3n8wn +2025-06-18T15:12:59.781Z [DEBUG] order-service - Operation: order_created - Processing time: 353ms - RequestID: avatbcgpw7h +2025-06-18T15:12:59.881Z [INFO] order-service - Database UPDATE on sessions - Execution time: 309ms - Rows affected: 75 - RequestID: v2klbl8x67a +2025-06-18T15:12:59.981Z [DEBUG] order-service - Auth event: login_failed - User: user_1013 - IP: 192.168.31.117 - RequestID: gwm3jd4y27a +2025-06-18T15:13:00.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.44.5 - RequestID: zeamf32lr5n +2025-06-18T15:13:00.181Z [INFO] user-service - POST /api/v1/users - Status: 403 - Response time: 1411ms - IP: 192.168.196.226 - User: user_1039 - RequestID: 67xz5aqb5pp +2025-06-18T15:13:00.281Z [INFO] order-service - Operation: notification_queued - Processing time: 386ms - RequestID: qvqw1skacfo +2025-06-18T15:13:00.381Z [INFO] notification-service - Auth event: login_failed - User: user_1087 - IP: 192.168.174.114 - RequestID: fv3oc189a67 +2025-06-18T15:13:00.481Z [TRACE] inventory-service - Auth event: logout - User: user_1075 - IP: 192.168.159.94 - RequestID: fbiis0qr01l +2025-06-18T15:13:00.581Z [DEBUG] user-service - Auth event: login_success - User: user_1080 - IP: 192.168.30.79 - RequestID: q0xqlr9r8no +2025-06-18T15:13:00.681Z [DEBUG] user-service - Operation: payment_processed - Processing time: 549ms - RequestID: qqpv20wsmvm +2025-06-18T15:13:00.781Z [INFO] user-service - DELETE /api/v1/payments - Status: 201 - Response time: 1738ms - IP: 192.168.158.144 - User: user_1048 - RequestID: e98ftheu2j +2025-06-18T15:13:00.881Z [TRACE] payment-service - Operation: notification_queued - Processing time: 959ms - RequestID: acbmlptqc5h +2025-06-18T15:13:00.981Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 239ms - RequestID: 11bgk4akhym +2025-06-18T15:13:01.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 857ms - RequestID: t4mck0vgw5p +2025-06-18T15:13:01.181Z [TRACE] order-service - Database INSERT on sessions - Execution time: 175ms - Rows affected: 64 - RequestID: tt2kvd47jrq +2025-06-18T15:13:01.281Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 404 - Response time: 427ms - IP: 192.168.79.116 - User: user_1065 - RequestID: gh23lmb2rjg +2025-06-18T15:13:01.381Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 698ms - IP: 192.168.144.38 - User: user_1004 - RequestID: kfxm3dz4jf +2025-06-18T15:13:01.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.227.77 - RequestID: r560sbmmxze +2025-06-18T15:13:01.581Z [DEBUG] order-service - GET /api/v1/payments - Status: 200 - Response time: 1706ms - IP: 192.168.85.229 - User: user_1041 - RequestID: wr6uuudaveo +2025-06-18T15:13:01.681Z [TRACE] payment-service - Auth event: logout - User: user_1030 - IP: 192.168.31.117 - RequestID: 506tikvsu1v +2025-06-18T15:13:01.781Z [DEBUG] user-service - Auth event: password_change - User: user_1017 - IP: 192.168.79.141 - RequestID: ngxns3lyzfl +2025-06-18T15:13:01.881Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 686ms - IP: 192.168.158.144 - User: user_1059 - RequestID: qnns4mncl8 +2025-06-18T15:13:01.981Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 616ms - IP: 192.168.11.60 - User: user_1028 - RequestID: fp68rzq1qy +2025-06-18T15:13:02.081Z [INFO] user-service - GET /api/v1/users - Status: 400 - Response time: 1336ms - IP: 192.168.247.134 - User: user_1078 - RequestID: 9uk7b6mkni5 +2025-06-18T15:13:02.181Z [DEBUG] user-service - POST /api/v1/payments - Status: 200 - Response time: 1524ms - IP: 192.168.113.218 - User: user_1051 - RequestID: p697m3fk19k +2025-06-18T15:13:02.281Z [INFO] user-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1631ms - IP: 192.168.79.116 - User: user_1040 - RequestID: ffnmp33sujj +2025-06-18T15:13:02.381Z [INFO] order-service - Database UPDATE on users - Execution time: 27ms - Rows affected: 68 - RequestID: smikf1ghye +2025-06-18T15:13:02.481Z [TRACE] order-service - Database SELECT on payments - Execution time: 410ms - Rows affected: 39 - RequestID: v6vjh5juix8 +2025-06-18T15:13:02.581Z [TRACE] notification-service - Auth event: logout - User: user_1086 - IP: 192.168.158.144 - RequestID: ozqw4axi82c +2025-06-18T15:13:02.681Z [INFO] order-service - Operation: email_sent - Processing time: 129ms - RequestID: z18q8zivcii +2025-06-18T15:13:02.781Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 334ms - Rows affected: 57 - RequestID: s25azp1ps3j +2025-06-18T15:13:02.881Z [TRACE] order-service - Operation: cache_miss - Processing time: 515ms - RequestID: 98kmku7jbil +2025-06-18T15:13:02.981Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 502 - Response time: 1316ms - IP: 192.168.13.72 - User: user_1077 - RequestID: xu1paxlmxs9 +2025-06-18T15:13:03.081Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 429ms - Rows affected: 15 - RequestID: dxcioq1bx0f +2025-06-18T15:13:03.181Z [TRACE] notification-service - Operation: order_created - Processing time: 260ms - RequestID: j7clofkffa +2025-06-18T15:13:03.281Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 972ms - RequestID: qblk6thme6 +2025-06-18T15:13:03.381Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 420ms - Rows affected: 98 - RequestID: 1uo3j1oggvi +2025-06-18T15:13:03.481Z [INFO] user-service - Auth event: password_change - User: user_1045 - IP: 192.168.11.60 - RequestID: uso8b1jzh1l +2025-06-18T15:13:03.581Z [DEBUG] user-service - POST /api/v1/inventory - Status: 404 - Response time: 537ms - IP: 192.168.64.33 - User: user_1021 - RequestID: 2t5s2hkqnkw +2025-06-18T15:13:03.681Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 137ms - Rows affected: 64 - RequestID: u22xusczpjh +2025-06-18T15:13:03.781Z [INFO] inventory-service - Auth event: password_change - User: user_1069 - IP: 192.168.196.226 - RequestID: zlzbqo5f9ya +2025-06-18T15:13:03.881Z [DEBUG] user-service - Auth event: password_change - User: user_1026 - IP: 192.168.158.144 - RequestID: yhmn6qsre5 +2025-06-18T15:13:03.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.79.116 - RequestID: 9itzee9ypa +2025-06-18T15:13:04.081Z [INFO] notification-service - GET /api/v1/inventory - Status: 404 - Response time: 929ms - IP: 192.168.133.7 - User: user_1024 - RequestID: mommiw2aa6c +2025-06-18T15:13:04.181Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1638ms - IP: 192.168.227.233 - User: user_1074 - RequestID: g5lnhf5w5g +2025-06-18T15:13:04.281Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 107ms - Rows affected: 15 - RequestID: 77a4gsys8y8 +2025-06-18T15:13:04.381Z [TRACE] user-service - GET /api/v1/users - Status: 404 - Response time: 1902ms - IP: 192.168.10.184 - User: user_1008 - RequestID: z00j0beup8 +2025-06-18T15:13:04.481Z [DEBUG] user-service - PATCH /api/v1/users - Status: 502 - Response time: 612ms - IP: 192.168.79.116 - User: user_1004 - RequestID: lum8hudn23r +2025-06-18T15:13:04.581Z [TRACE] user-service - Operation: inventory_updated - Processing time: 832ms - RequestID: nvgpwtz5k7m +2025-06-18T15:13:04.681Z [INFO] order-service - Operation: webhook_sent - Processing time: 863ms - RequestID: 8tfiygmmq6p +2025-06-18T15:13:04.781Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 616ms - IP: 192.168.14.77 - User: user_1065 - RequestID: ky9qi7n991 +2025-06-18T15:13:04.881Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1605ms - IP: 192.168.44.5 - User: user_1006 - RequestID: 296o13mm3yh +2025-06-18T15:13:04.981Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 553ms - RequestID: w5uqzmwqvl +2025-06-18T15:13:05.081Z [INFO] payment-service - Auth event: login_failed - User: user_1040 - IP: 192.168.227.77 - RequestID: opcecin517g +2025-06-18T15:13:05.181Z [DEBUG] order-service - GET /api/v1/orders - Status: 503 - Response time: 1611ms - IP: 192.168.46.63 - User: user_1077 - RequestID: rl5ih2fbni +2025-06-18T15:13:05.281Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 403 - Response time: 1133ms - IP: 192.168.133.7 - User: user_1005 - RequestID: 9g2sfobase +2025-06-18T15:13:05.381Z [TRACE] notification-service - Database SELECT on orders - Execution time: 40ms - Rows affected: 72 - RequestID: 90fwbpp1vl +2025-06-18T15:13:05.481Z [INFO] inventory-service - Operation: order_created - Processing time: 1024ms - RequestID: 7dj9v5f2wj5 +2025-06-18T15:13:05.581Z [DEBUG] payment-service - Auth event: login_success - User: user_1065 - IP: 192.168.32.38 - RequestID: ak7k1dffoei +2025-06-18T15:13:05.681Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 404 - Response time: 864ms - IP: 192.168.11.60 - User: user_1038 - RequestID: 81oy17tcwbm +2025-06-18T15:13:05.781Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1481ms - IP: 192.168.13.72 - User: user_1080 - RequestID: sjwulstsdnk +2025-06-18T15:13:05.881Z [INFO] auth-service - Database INSERT on sessions - Execution time: 293ms - Rows affected: 59 - RequestID: xfv008m32ea +2025-06-18T15:13:05.981Z [TRACE] auth-service - Auth event: password_change - User: user_1052 - IP: 192.168.33.76 - RequestID: xwliuil8atl +2025-06-18T15:13:06.081Z [TRACE] order-service - Operation: payment_processed - Processing time: 634ms - RequestID: 80t3utk4z58 +2025-06-18T15:13:06.181Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 70ms - RequestID: 854g7pg23ro +2025-06-18T15:13:06.281Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 218ms - Rows affected: 97 - RequestID: 1y9i7fp8dg9 +2025-06-18T15:13:06.381Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 391ms - Rows affected: 79 - RequestID: 5ya51zvjedf +2025-06-18T15:13:06.481Z [INFO] payment-service - Database UPDATE on payments - Execution time: 240ms - Rows affected: 90 - RequestID: nh9wojrhol +2025-06-18T15:13:06.581Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 884ms - RequestID: omvep3ozzs +2025-06-18T15:13:06.681Z [INFO] order-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1165ms - IP: 192.168.97.87 - User: user_1010 - RequestID: pr2mxj870t +2025-06-18T15:13:06.781Z [TRACE] order-service - Operation: notification_queued - Processing time: 151ms - RequestID: m2wao3salig +2025-06-18T15:13:06.881Z [INFO] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 30ms - IP: 192.168.100.240 - User: user_1060 - RequestID: 1ymzli49p79 +2025-06-18T15:13:06.981Z [INFO] order-service - Operation: email_sent - Processing time: 277ms - RequestID: svwicivko5 +2025-06-18T15:13:07.081Z [TRACE] order-service - Database SELECT on products - Execution time: 225ms - Rows affected: 37 - RequestID: 0akgcicgml4s +2025-06-18T15:13:07.181Z [INFO] payment-service - PATCH /api/v1/orders - Status: 201 - Response time: 1713ms - IP: 192.168.133.7 - User: user_1084 - RequestID: 6wc4p6bpdjx +2025-06-18T15:13:07.281Z [TRACE] inventory-service - Database INSERT on users - Execution time: 202ms - Rows affected: 89 - RequestID: bktdo9lko3r +2025-06-18T15:13:07.381Z [DEBUG] payment-service - PUT /api/v1/users - Status: 502 - Response time: 1184ms - IP: 192.168.170.215 - User: user_1071 - RequestID: yrmfqw91uw +2025-06-18T15:13:07.481Z [TRACE] notification-service - Auth event: logout - User: user_1066 - IP: 192.168.44.5 - RequestID: 45j1zqk1ips +2025-06-18T15:13:07.581Z [INFO] order-service - Operation: payment_processed - Processing time: 629ms - RequestID: 2aen5s9z5c8 +2025-06-18T15:13:07.681Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 185ms - Rows affected: 44 - RequestID: hflc237abkv +2025-06-18T15:13:07.781Z [TRACE] auth-service - POST /api/v1/orders - Status: 500 - Response time: 1085ms - IP: 192.168.33.76 - User: user_1029 - RequestID: yct6hz501zm +2025-06-18T15:13:07.881Z [TRACE] payment-service - Auth event: password_change - User: user_1053 - IP: 192.168.235.117 - RequestID: 6sex7cj89r8 +2025-06-18T15:13:07.981Z [INFO] order-service - Auth event: password_change - User: user_1025 - IP: 192.168.194.41 - RequestID: x0avg5c52u +2025-06-18T15:13:08.081Z [TRACE] auth-service - Operation: cache_hit - Processing time: 988ms - RequestID: 4r8imeani8b +2025-06-18T15:13:08.181Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 500 - Response time: 1425ms - IP: 192.168.13.72 - User: user_1098 - RequestID: 5hiazj7xw9a +2025-06-18T15:13:08.281Z [TRACE] notification-service - PUT /api/v1/orders - Status: 400 - Response time: 809ms - IP: 192.168.79.141 - User: user_1095 - RequestID: o8ntasphqxd +2025-06-18T15:13:08.381Z [INFO] notification-service - Database UPDATE on payments - Execution time: 194ms - Rows affected: 14 - RequestID: eh29ea4irob +2025-06-18T15:13:08.481Z [TRACE] user-service - Operation: inventory_updated - Processing time: 795ms - RequestID: hri63367yfq +2025-06-18T15:13:08.581Z [TRACE] payment-service - Database INSERT on payments - Execution time: 52ms - Rows affected: 74 - RequestID: 74242l3rn35 +2025-06-18T15:13:08.681Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 404 - Response time: 849ms - IP: 192.168.44.5 - User: user_1056 - RequestID: mcicnpa2i7 +2025-06-18T15:13:08.781Z [INFO] user-service - Auth event: login_success - User: user_1070 - IP: 192.168.64.33 - RequestID: evbxpy05cot +2025-06-18T15:13:08.881Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 17ms - Rows affected: 61 - RequestID: oomd6usajc +2025-06-18T15:13:08.981Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 194ms - Rows affected: 14 - RequestID: irj7sebe91r +2025-06-18T15:13:09.081Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 307ms - Rows affected: 49 - RequestID: 8ggh3j3sg7k +2025-06-18T15:13:09.181Z [INFO] auth-service - DELETE /api/v1/orders - Status: 500 - Response time: 937ms - IP: 192.168.46.63 - User: user_1028 - RequestID: 6nhv30ny6j9 +2025-06-18T15:13:09.281Z [INFO] inventory-service - Database DELETE on payments - Execution time: 61ms - Rows affected: 16 - RequestID: u1wajc1jdy +2025-06-18T15:13:09.381Z [INFO] user-service - POST /api/v1/auth/login - Status: 400 - Response time: 1124ms - IP: 192.168.104.37 - User: user_1032 - RequestID: 8bpehw275a2 +2025-06-18T15:13:09.481Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 565ms - RequestID: ctz2bh9mbtn +2025-06-18T15:13:09.581Z [INFO] auth-service - Database UPDATE on payments - Execution time: 243ms - Rows affected: 85 - RequestID: ars9c0h666i +2025-06-18T15:13:09.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.159.94 - RequestID: dh4xjohkaxa +2025-06-18T15:13:09.781Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 130ms - Rows affected: 82 - RequestID: mj6a4r9j8zl +2025-06-18T15:13:09.881Z [TRACE] auth-service - Database UPDATE on users - Execution time: 124ms - Rows affected: 25 - RequestID: zph8h8zcv +2025-06-18T15:13:09.981Z [INFO] notification-service - Auth event: password_change - User: user_1063 - IP: 192.168.227.77 - RequestID: z3ou74vdump +2025-06-18T15:13:10.081Z [INFO] order-service - Database UPDATE on sessions - Execution time: 56ms - Rows affected: 34 - RequestID: kydu479rcl +2025-06-18T15:13:10.181Z [INFO] auth-service - PUT /api/v1/inventory - Status: 201 - Response time: 1014ms - IP: 192.168.181.225 - User: user_1028 - RequestID: klj5fnfhvm +2025-06-18T15:13:10.281Z [DEBUG] user-service - Auth event: logout - User: user_1047 - IP: 192.168.113.218 - RequestID: wdj5cxw8r8p +2025-06-18T15:13:10.381Z [DEBUG] user-service - GET /api/v1/payments - Status: 503 - Response time: 885ms - IP: 192.168.232.72 - User: user_1075 - RequestID: 3u4a7a2t3t4 +2025-06-18T15:13:10.481Z [INFO] payment-service - POST /api/v1/orders - Status: 404 - Response time: 1288ms - IP: 192.168.187.199 - User: user_1053 - RequestID: 66ipac9000k +2025-06-18T15:13:10.581Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 49ms - Rows affected: 54 - RequestID: xgjog8jzewm +2025-06-18T15:13:10.681Z [INFO] notification-service - Database SELECT on orders - Execution time: 305ms - Rows affected: 15 - RequestID: d86f801jfpi +2025-06-18T15:13:10.781Z [INFO] auth-service - Database UPDATE on orders - Execution time: 384ms - Rows affected: 65 - RequestID: fkv7o0bxizs +2025-06-18T15:13:10.881Z [TRACE] user-service - Auth event: logout - User: user_1088 - IP: 192.168.36.218 - RequestID: zi28uvhnkb +2025-06-18T15:13:10.981Z [TRACE] user-service - Auth event: password_change - User: user_1029 - IP: 192.168.10.184 - RequestID: foptdizblnq +2025-06-18T15:13:11.081Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1944ms - IP: 192.168.227.233 - User: user_1069 - RequestID: d4viplvryp7 +2025-06-18T15:13:11.181Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 348ms - Rows affected: 64 - RequestID: i4dcsgx6toe +2025-06-18T15:13:11.281Z [TRACE] notification-service - Operation: cache_miss - Processing time: 547ms - RequestID: hsa9eyx1zpf +2025-06-18T15:13:11.381Z [TRACE] user-service - Database DELETE on orders - Execution time: 448ms - Rows affected: 60 - RequestID: qcuy9rhrr7k +2025-06-18T15:13:11.481Z [TRACE] auth-service - Database INSERT on orders - Execution time: 354ms - Rows affected: 69 - RequestID: 06coo9fjgn05 +2025-06-18T15:13:11.581Z [DEBUG] order-service - Operation: cache_hit - Processing time: 148ms - RequestID: ho8w4rtdlak +2025-06-18T15:13:11.681Z [INFO] order-service - Auth event: password_change - User: user_1081 - IP: 192.168.229.123 - RequestID: et2fjurqmlq +2025-06-18T15:13:11.781Z [TRACE] user-service - Auth event: logout - User: user_1095 - IP: 192.168.79.143 - RequestID: ymm5g2c025 +2025-06-18T15:13:11.881Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 259ms - Rows affected: 15 - RequestID: 28pilyir4t3 +2025-06-18T15:13:11.981Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 856ms - RequestID: ofkry7qb56o +2025-06-18T15:13:12.081Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 276ms - Rows affected: 23 - RequestID: doahebowbkq +2025-06-18T15:13:12.181Z [DEBUG] payment-service - Auth event: login_success - User: user_1062 - IP: 192.168.138.123 - RequestID: ujxk0rop33 +2025-06-18T15:13:12.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 607ms - RequestID: g6y5ch4jqa +2025-06-18T15:13:12.381Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 383ms - Rows affected: 61 - RequestID: cuv41pxdhjq +2025-06-18T15:13:12.481Z [TRACE] notification-service - PUT /api/v1/orders - Status: 502 - Response time: 584ms - IP: 192.168.133.7 - User: user_1079 - RequestID: nozmjt88xnp +2025-06-18T15:13:12.581Z [TRACE] user-service - POST /api/v1/orders - Status: 400 - Response time: 1554ms - IP: 192.168.211.72 - User: user_1048 - RequestID: s7u8i301f3 +2025-06-18T15:13:12.681Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 555ms - IP: 192.168.232.72 - User: user_1047 - RequestID: 5tyu83ycran +2025-06-18T15:13:12.781Z [TRACE] notification-service - Auth event: login_success - User: user_1002 - IP: 192.168.227.233 - RequestID: hmszrsxp0f6 +2025-06-18T15:13:12.881Z [TRACE] user-service - Operation: cache_hit - Processing time: 322ms - RequestID: rfn6qpucad +2025-06-18T15:13:12.981Z [INFO] inventory-service - Operation: notification_queued - Processing time: 460ms - RequestID: mdl2kcyzufo +2025-06-18T15:13:13.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.170.215 - RequestID: oj2xdjvqvzg +2025-06-18T15:13:13.181Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 399ms - Rows affected: 86 - RequestID: 9conyvbd2r7 +2025-06-18T15:13:13.281Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 222ms - Rows affected: 68 - RequestID: 564w36010k3 +2025-06-18T15:13:13.381Z [INFO] auth-service - Auth event: password_change - User: user_1088 - IP: 192.168.181.225 - RequestID: qpngsg51sv +2025-06-18T15:13:13.481Z [INFO] notification-service - Auth event: password_change - User: user_1056 - IP: 192.168.11.60 - RequestID: r29pyghsrr8 +2025-06-18T15:13:13.581Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 503 - Response time: 1669ms - IP: 192.168.44.5 - User: user_1049 - RequestID: bj9nmrdxbuu +2025-06-18T15:13:13.681Z [TRACE] order-service - Operation: payment_processed - Processing time: 112ms - RequestID: 2klx937ug7k +2025-06-18T15:13:13.781Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 502 - Response time: 1750ms - IP: 192.168.138.123 - User: user_1029 - RequestID: r5ie4394vcn +2025-06-18T15:13:13.881Z [INFO] order-service - Operation: email_sent - Processing time: 790ms - RequestID: 8cn66paqcpj +2025-06-18T15:13:13.981Z [TRACE] auth-service - Operation: notification_queued - Processing time: 408ms - RequestID: wp275uvbcmp +2025-06-18T15:13:14.081Z [DEBUG] auth-service - Database INSERT on users - Execution time: 408ms - Rows affected: 56 - RequestID: 251yd15m08n +2025-06-18T15:13:14.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.229.123 - RequestID: lpw0nkefm4 +2025-06-18T15:13:14.281Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 146ms - Rows affected: 28 - RequestID: tef9meco5jf +2025-06-18T15:13:14.381Z [TRACE] auth-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.32.38 - RequestID: 0ecrrpe1yf97 +2025-06-18T15:13:14.481Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 255ms - Rows affected: 34 - RequestID: to2ros733p +2025-06-18T15:13:14.581Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1588ms - IP: 192.168.232.72 - User: user_1076 - RequestID: oqfo5btsav +2025-06-18T15:13:14.681Z [INFO] notification-service - DELETE /api/v1/users - Status: 201 - Response time: 774ms - IP: 192.168.81.206 - User: user_1065 - RequestID: v0acjsk9p3 +2025-06-18T15:13:14.781Z [INFO] inventory-service - Database INSERT on products - Execution time: 397ms - Rows affected: 65 - RequestID: xlggdfbx8oj +2025-06-18T15:13:14.881Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 773ms - RequestID: s2u4mnsln8 +2025-06-18T15:13:14.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1017 - IP: 192.168.174.114 - RequestID: w2sn534p1ma +2025-06-18T15:13:15.081Z [TRACE] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 254ms - IP: 192.168.181.225 - User: user_1096 - RequestID: baxyrb7cdu +2025-06-18T15:13:15.181Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 503 - Response time: 268ms - IP: 192.168.159.94 - User: user_1018 - RequestID: f9lcgtldip +2025-06-18T15:13:15.281Z [TRACE] order-service - Operation: cache_hit - Processing time: 719ms - RequestID: r4h6v3fq8c +2025-06-18T15:13:15.381Z [INFO] inventory-service - POST /api/v1/users - Status: 401 - Response time: 805ms - IP: 192.168.28.146 - User: user_1098 - RequestID: prr9cy90vfl +2025-06-18T15:13:15.481Z [INFO] inventory-service - Database INSERT on payments - Execution time: 120ms - Rows affected: 71 - RequestID: 53yk7lt134t +2025-06-18T15:13:15.581Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 562ms - RequestID: tkx2j2l5sob +2025-06-18T15:13:15.681Z [TRACE] user-service - Database DELETE on orders - Execution time: 195ms - Rows affected: 36 - RequestID: 0h1spaixrjem +2025-06-18T15:13:15.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 838ms - RequestID: btopzds9w +2025-06-18T15:13:15.881Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 1011ms - RequestID: 0nbmgddokeln +2025-06-18T15:13:15.981Z [INFO] user-service - Database INSERT on users - Execution time: 286ms - Rows affected: 67 - RequestID: zjnsw6u9wr +2025-06-18T15:13:16.081Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 90ms - RequestID: qvec2uj6x0k +2025-06-18T15:13:16.181Z [TRACE] notification-service - Database SELECT on users - Execution time: 419ms - Rows affected: 92 - RequestID: mo80m1qad9 +2025-06-18T15:13:16.281Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 309ms - RequestID: vnz5pyareqg +2025-06-18T15:13:16.381Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1650ms - IP: 192.168.181.225 - User: user_1088 - RequestID: 8rwlzpo4yxn +2025-06-18T15:13:16.481Z [INFO] order-service - Auth event: logout - User: user_1011 - IP: 192.168.28.146 - RequestID: 4kan9h6tr9o +2025-06-18T15:13:16.581Z [TRACE] payment-service - Database SELECT on products - Execution time: 449ms - Rows affected: 13 - RequestID: 7ftx2ednzbx +2025-06-18T15:13:16.681Z [INFO] inventory-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.64.33 - RequestID: jj1gocsqfhb +2025-06-18T15:13:16.781Z [INFO] order-service - PUT /api/v1/payments - Status: 404 - Response time: 198ms - IP: 192.168.247.134 - User: user_1008 - RequestID: 40ea66fx5yq +2025-06-18T15:13:16.881Z [TRACE] notification-service - Auth event: password_change - User: user_1022 - IP: 192.168.211.72 - RequestID: 9asf9hrjh +2025-06-18T15:13:16.981Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 200 - Response time: 819ms - IP: 192.168.68.128 - User: user_1056 - RequestID: 405stuu1x8o +2025-06-18T15:13:17.081Z [INFO] user-service - Operation: order_created - Processing time: 290ms - RequestID: nzxocwh94hf +2025-06-18T15:13:17.181Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 437ms - Rows affected: 16 - RequestID: ide4r39vcuc +2025-06-18T15:13:17.281Z [INFO] order-service - POST /api/v1/users - Status: 403 - Response time: 1462ms - IP: 192.168.196.226 - User: user_1089 - RequestID: pkkgnd9ryzl +2025-06-18T15:13:17.381Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 553ms - IP: 192.168.28.146 - User: user_1064 - RequestID: gdu3as5dn84 +2025-06-18T15:13:17.481Z [INFO] user-service - Database SELECT on orders - Execution time: 71ms - Rows affected: 76 - RequestID: mya0k9p4iz +2025-06-18T15:13:17.581Z [TRACE] order-service - GET /api/v1/users - Status: 403 - Response time: 1265ms - IP: 192.168.64.33 - User: user_1065 - RequestID: 5ihdjml3ivy +2025-06-18T15:13:17.681Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 225ms - Rows affected: 91 - RequestID: nydmaddhjzm +2025-06-18T15:13:17.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 881ms - RequestID: iuuhkb5t65p +2025-06-18T15:13:17.881Z [INFO] auth-service - Operation: inventory_updated - Processing time: 408ms - RequestID: 0z0esgklptb +2025-06-18T15:13:17.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 534ms - RequestID: ak23ckini9 +2025-06-18T15:13:18.081Z [DEBUG] order-service - Database SELECT on users - Execution time: 122ms - Rows affected: 59 - RequestID: kzg85bmbkvs +2025-06-18T15:13:18.181Z [INFO] order-service - Operation: webhook_sent - Processing time: 56ms - RequestID: h48ojx94k6 +2025-06-18T15:13:18.281Z [INFO] payment-service - Database DELETE on users - Execution time: 498ms - Rows affected: 45 - RequestID: 8c63f2p7w0j +2025-06-18T15:13:18.381Z [TRACE] notification-service - Database INSERT on payments - Execution time: 380ms - Rows affected: 64 - RequestID: cpi2m6sibpr +2025-06-18T15:13:18.481Z [TRACE] notification-service - Operation: payment_processed - Processing time: 196ms - RequestID: 061a854b6gxq +2025-06-18T15:13:18.581Z [TRACE] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 26ms - IP: 192.168.144.38 - User: user_1056 - RequestID: 30d91lg5u3w +2025-06-18T15:13:18.681Z [TRACE] auth-service - Auth event: login_failed - User: user_1046 - IP: 192.168.28.146 - RequestID: oax8jvd27g +2025-06-18T15:13:18.781Z [TRACE] order-service - Operation: cache_hit - Processing time: 1037ms - RequestID: kbcd7lhsl1l +2025-06-18T15:13:18.881Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 352ms - RequestID: 3p2srtlddf6 +2025-06-18T15:13:18.981Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 308ms - RequestID: qxsq263z9xl +2025-06-18T15:13:19.081Z [DEBUG] order-service - Database DELETE on users - Execution time: 179ms - Rows affected: 20 - RequestID: ilzwg8ke4n +2025-06-18T15:13:19.181Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.10.184 - RequestID: pghclsipj38 +2025-06-18T15:13:19.281Z [DEBUG] order-service - PUT /api/v1/payments - Status: 500 - Response time: 1673ms - IP: 192.168.187.199 - User: user_1054 - RequestID: zr74hg108f +2025-06-18T15:13:19.381Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 503 - Response time: 1967ms - IP: 192.168.85.229 - User: user_1010 - RequestID: ils8taac27e +2025-06-18T15:13:19.481Z [DEBUG] inventory-service - Auth event: login_success - User: user_1022 - IP: 192.168.158.144 - RequestID: 398r5ynttpk +2025-06-18T15:13:19.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1041 - IP: 192.168.194.41 - RequestID: 1fx2d0ww5h8h +2025-06-18T15:13:19.681Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 563ms - RequestID: vxnwep30hwi +2025-06-18T15:13:19.781Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 400 - Response time: 1924ms - IP: 192.168.33.76 - User: user_1046 - RequestID: 4y8u85pkgg8 +2025-06-18T15:13:19.881Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 263ms - Rows affected: 84 - RequestID: cnnob77qltc +2025-06-18T15:13:19.981Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1166ms - IP: 192.168.13.72 - User: user_1046 - RequestID: 5bmqxecqepx +2025-06-18T15:13:20.081Z [INFO] user-service - Operation: payment_processed - Processing time: 755ms - RequestID: hbbg4wgr6vv +2025-06-18T15:13:20.181Z [INFO] notification-service - Database UPDATE on payments - Execution time: 341ms - Rows affected: 11 - RequestID: xb1ra962sd +2025-06-18T15:13:20.281Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 301ms - Rows affected: 26 - RequestID: ykbcvoipxs +2025-06-18T15:13:20.381Z [INFO] order-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.138.123 - RequestID: cvhsniphhf8 +2025-06-18T15:13:20.481Z [TRACE] notification-service - Database SELECT on orders - Execution time: 458ms - Rows affected: 12 - RequestID: mitaizzzq7 +2025-06-18T15:13:20.581Z [INFO] inventory-service - Auth event: login_success - User: user_1004 - IP: 192.168.14.77 - RequestID: oif94bbdpl +2025-06-18T15:13:20.681Z [INFO] user-service - Operation: order_created - Processing time: 572ms - RequestID: 6r5vg8h4lua +2025-06-18T15:13:20.781Z [INFO] auth-service - Database UPDATE on users - Execution time: 473ms - Rows affected: 2 - RequestID: e37hftwgv0u +2025-06-18T15:13:20.881Z [TRACE] auth-service - Operation: order_created - Processing time: 693ms - RequestID: levq9r7a0x +2025-06-18T15:13:20.981Z [INFO] user-service - Operation: webhook_sent - Processing time: 390ms - RequestID: 06sf5dk1kqlu +2025-06-18T15:13:21.081Z [TRACE] payment-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.232.72 - RequestID: wxtq1hidvh +2025-06-18T15:13:21.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1020 - IP: 192.168.235.117 - RequestID: sjkl32vfiq +2025-06-18T15:13:21.281Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 574ms - RequestID: we1nu5opqgq +2025-06-18T15:13:21.381Z [INFO] payment-service - DELETE /api/v1/orders - Status: 400 - Response time: 1453ms - IP: 192.168.10.184 - User: user_1097 - RequestID: esj4tlljmxs +2025-06-18T15:13:21.481Z [DEBUG] auth-service - GET /api/v1/auth/login - Status: 403 - Response time: 1446ms - IP: 192.168.187.199 - User: user_1027 - RequestID: 2296sorwvos +2025-06-18T15:13:21.581Z [DEBUG] payment-service - Database INSERT on users - Execution time: 264ms - Rows affected: 63 - RequestID: h3g6ieymwvc +2025-06-18T15:13:21.681Z [TRACE] user-service - GET /api/v1/payments - Status: 500 - Response time: 1825ms - IP: 192.168.30.79 - User: user_1065 - RequestID: e26pvwhdpbi +2025-06-18T15:13:21.781Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 404 - Response time: 836ms - IP: 192.168.53.133 - User: user_1055 - RequestID: newzfbvsmj +2025-06-18T15:13:21.881Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 160ms - Rows affected: 47 - RequestID: icu3022uqmn +2025-06-18T15:13:21.981Z [INFO] order-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.196.226 - RequestID: racfsr85yji +2025-06-18T15:13:22.081Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 480ms - Rows affected: 72 - RequestID: q09sy05empo +2025-06-18T15:13:22.181Z [INFO] payment-service - Database UPDATE on payments - Execution time: 255ms - Rows affected: 3 - RequestID: pnffrc44fr +2025-06-18T15:13:22.281Z [DEBUG] auth-service - Database DELETE on products - Execution time: 189ms - Rows affected: 4 - RequestID: c3r5rnkkjpo +2025-06-18T15:13:22.381Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 200ms - Rows affected: 14 - RequestID: 3gaqw47au7c +2025-06-18T15:13:22.481Z [INFO] notification-service - Database UPDATE on users - Execution time: 132ms - Rows affected: 88 - RequestID: ailurjd8f3 +2025-06-18T15:13:22.581Z [TRACE] payment-service - Operation: order_created - Processing time: 243ms - RequestID: rc86hck73vi +2025-06-18T15:13:22.681Z [TRACE] order-service - Auth event: login_failed - User: user_1096 - IP: 192.168.100.240 - RequestID: fkftg2c9ea +2025-06-18T15:13:22.781Z [INFO] auth-service - Operation: webhook_sent - Processing time: 956ms - RequestID: rgghtga9ug +2025-06-18T15:13:22.881Z [TRACE] inventory-service - POST /api/v1/orders - Status: 401 - Response time: 285ms - IP: 192.168.240.169 - User: user_1083 - RequestID: h822deb6yqd +2025-06-18T15:13:22.981Z [TRACE] notification-service - Operation: notification_queued - Processing time: 330ms - RequestID: he9fvqrejrf +2025-06-18T15:13:23.081Z [TRACE] order-service - Auth event: logout - User: user_1070 - IP: 192.168.1.152 - RequestID: v83bul54p8 +2025-06-18T15:13:23.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.44.5 - RequestID: tslagk40f6 +2025-06-18T15:13:23.281Z [TRACE] notification-service - Operation: order_created - Processing time: 166ms - RequestID: 0ome8rayggsc +2025-06-18T15:13:23.381Z [INFO] inventory-service - Database SELECT on orders - Execution time: 266ms - Rows affected: 31 - RequestID: jzudh35brf +2025-06-18T15:13:23.481Z [TRACE] payment-service - Operation: cache_miss - Processing time: 741ms - RequestID: 5z9v8z7etv6 +2025-06-18T15:13:23.581Z [INFO] auth-service - Operation: payment_processed - Processing time: 172ms - RequestID: ayds51sjg6c +2025-06-18T15:13:23.681Z [TRACE] order-service - Auth event: logout - User: user_1080 - IP: 192.168.194.41 - RequestID: n8fkza3zp5a +2025-06-18T15:13:23.781Z [TRACE] auth-service - Database INSERT on orders - Execution time: 325ms - Rows affected: 37 - RequestID: k1zynvjah6 +2025-06-18T15:13:23.881Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 201 - Response time: 706ms - IP: 192.168.232.72 - User: user_1029 - RequestID: 90alr7rr5wr +2025-06-18T15:13:23.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 756ms - RequestID: 8lb0ezw07w3 +2025-06-18T15:13:24.081Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 322ms - RequestID: k6sn1snp9bn +2025-06-18T15:13:24.181Z [INFO] auth-service - Auth event: login_success - User: user_1059 - IP: 192.168.10.184 - RequestID: zsx3uf1vnm +2025-06-18T15:13:24.281Z [TRACE] user-service - Operation: notification_queued - Processing time: 150ms - RequestID: dyfmz6c34lw +2025-06-18T15:13:24.381Z [INFO] notification-service - Operation: order_created - Processing time: 196ms - RequestID: zp4cprnfbqi +2025-06-18T15:13:24.481Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 503 - Response time: 526ms - IP: 192.168.227.77 - User: user_1086 - RequestID: 5dd0tggeycj +2025-06-18T15:13:24.581Z [DEBUG] payment-service - PATCH /api/v1/users - Status: 403 - Response time: 1545ms - IP: 192.168.33.76 - User: user_1017 - RequestID: n1rqfu2efrh +2025-06-18T15:13:24.681Z [TRACE] order-service - Operation: inventory_updated - Processing time: 365ms - RequestID: s1o7mqbznt +2025-06-18T15:13:24.781Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 402ms - Rows affected: 44 - RequestID: y0uuzgooqt +2025-06-18T15:13:24.881Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.64.33 - RequestID: a9kv6snww15 +2025-06-18T15:13:24.981Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 306ms - Rows affected: 57 - RequestID: n3ywvi1tn9 +2025-06-18T15:13:25.081Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1926ms - IP: 192.168.46.63 - User: user_1098 - RequestID: 1k5tl9x56bg +2025-06-18T15:13:25.181Z [INFO] payment-service - Auth event: login_failed - User: user_1095 - IP: 192.168.170.215 - RequestID: qo9c7y060v +2025-06-18T15:13:25.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.159.94 - RequestID: cdtspk71824 +2025-06-18T15:13:25.381Z [TRACE] inventory-service - Operation: order_created - Processing time: 146ms - RequestID: 14a6z5ashnf +2025-06-18T15:13:25.481Z [INFO] user-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.68.158 - RequestID: thjder51m4f +2025-06-18T15:13:25.581Z [INFO] inventory-service - Database UPDATE on users - Execution time: 69ms - Rows affected: 64 - RequestID: l7exccgzsy +2025-06-18T15:13:25.681Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 1036ms - RequestID: nfpfa03kl9k +2025-06-18T15:13:25.781Z [INFO] payment-service - Database SELECT on sessions - Execution time: 53ms - Rows affected: 66 - RequestID: jhb7x176jtk +2025-06-18T15:13:25.881Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 491ms - RequestID: mt3489txlg +2025-06-18T15:13:25.981Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 262ms - RequestID: xys3po342w +2025-06-18T15:13:26.081Z [TRACE] payment-service - DELETE /api/v1/users - Status: 404 - Response time: 1662ms - IP: 192.168.113.218 - User: user_1082 - RequestID: 1ccwls484ey +2025-06-18T15:13:26.181Z [TRACE] auth-service - Operation: order_created - Processing time: 977ms - RequestID: 3ztizrha24o +2025-06-18T15:13:26.281Z [TRACE] inventory-service - Auth event: password_change - User: user_1089 - IP: 192.168.68.128 - RequestID: 6dduq4ih26n +2025-06-18T15:13:26.381Z [TRACE] user-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.174.114 - RequestID: gxemwab19sw +2025-06-18T15:13:26.481Z [INFO] user-service - Database UPDATE on orders - Execution time: 70ms - Rows affected: 96 - RequestID: 4jx5gw59lor +2025-06-18T15:13:26.581Z [TRACE] order-service - Database DELETE on sessions - Execution time: 353ms - Rows affected: 55 - RequestID: bdkwslc6psg +2025-06-18T15:13:26.681Z [TRACE] payment-service - Database SELECT on orders - Execution time: 3ms - Rows affected: 66 - RequestID: lp27h61zykk +2025-06-18T15:13:26.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1030 - IP: 192.168.53.133 - RequestID: skj9qsggpv +2025-06-18T15:13:26.881Z [TRACE] payment-service - Operation: order_created - Processing time: 926ms - RequestID: cap8vasov56 +2025-06-18T15:13:26.981Z [TRACE] order-service - Database INSERT on products - Execution time: 461ms - Rows affected: 23 - RequestID: z0b3cb3jijo +2025-06-18T15:13:27.081Z [TRACE] user-service - Operation: webhook_sent - Processing time: 512ms - RequestID: 61mhnnhp89a +2025-06-18T15:13:27.181Z [TRACE] auth-service - Database DELETE on orders - Execution time: 366ms - Rows affected: 52 - RequestID: 7dc80xzvacc +2025-06-18T15:13:27.281Z [INFO] order-service - Operation: notification_queued - Processing time: 156ms - RequestID: vmavdthta4 +2025-06-18T15:13:27.381Z [TRACE] inventory-service - POST /api/v1/users - Status: 403 - Response time: 367ms - IP: 192.168.79.143 - User: user_1006 - RequestID: t8vg4triitb +2025-06-18T15:13:27.481Z [INFO] payment-service - Auth event: login_failed - User: user_1058 - IP: 192.168.44.5 - RequestID: s9erpne5vsl +2025-06-18T15:13:27.581Z [INFO] inventory-service - Database SELECT on orders - Execution time: 243ms - Rows affected: 96 - RequestID: u37bn9u2mjn +2025-06-18T15:13:27.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 193ms - RequestID: vqckystf02 +2025-06-18T15:13:27.781Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 217ms - Rows affected: 80 - RequestID: kznly7n73sd +2025-06-18T15:13:27.881Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 456ms - Rows affected: 4 - RequestID: wgnwozd8du +2025-06-18T15:13:27.981Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1828ms - IP: 192.168.30.79 - User: user_1071 - RequestID: k9gzozgbb5k +2025-06-18T15:13:28.081Z [DEBUG] user-service - Auth event: login_success - User: user_1086 - IP: 192.168.227.77 - RequestID: lqr6okcx6o +2025-06-18T15:13:28.181Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1473ms - IP: 192.168.46.63 - User: user_1059 - RequestID: ebsd7xemsy5 +2025-06-18T15:13:28.281Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.174.114 - RequestID: maksqgr4lr +2025-06-18T15:13:28.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.229.123 - RequestID: 25l7nxy4ne2 +2025-06-18T15:13:28.481Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 388ms - Rows affected: 0 - RequestID: uwerjml99z +2025-06-18T15:13:28.581Z [INFO] notification-service - Operation: payment_processed - Processing time: 236ms - RequestID: rlqigccjsxc +2025-06-18T15:13:28.681Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1891ms - IP: 192.168.159.94 - User: user_1025 - RequestID: 54sji8qw758 +2025-06-18T15:13:28.781Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 397ms - Rows affected: 79 - RequestID: eawx5vq8en +2025-06-18T15:13:28.881Z [INFO] user-service - Auth event: login_success - User: user_1085 - IP: 192.168.170.215 - RequestID: 5mkvqnnem3r +2025-06-18T15:13:28.981Z [DEBUG] user-service - Database UPDATE on products - Execution time: 143ms - Rows affected: 25 - RequestID: ucbpkhzblar +2025-06-18T15:13:29.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1058 - IP: 192.168.229.123 - RequestID: 11byt41p7s6c +2025-06-18T15:13:29.181Z [INFO] payment-service - PUT /api/v1/users - Status: 503 - Response time: 279ms - IP: 192.168.211.72 - User: user_1021 - RequestID: 88jkpwp9t98 +2025-06-18T15:13:29.281Z [TRACE] notification-service - Operation: notification_queued - Processing time: 203ms - RequestID: 2vkgmcqvghw +2025-06-18T15:13:29.381Z [INFO] user-service - Auth event: login_success - User: user_1020 - IP: 192.168.100.240 - RequestID: b9hckhi1gju +2025-06-18T15:13:29.481Z [DEBUG] payment-service - Auth event: logout - User: user_1087 - IP: 192.168.79.116 - RequestID: e36qwfqcsr +2025-06-18T15:13:29.581Z [TRACE] user-service - GET /api/v1/inventory - Status: 502 - Response time: 1223ms - IP: 192.168.242.165 - User: user_1056 - RequestID: hfe4g7dgcgj +2025-06-18T15:13:29.681Z [INFO] notification-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.227.233 - RequestID: 70lm1230zc6 +2025-06-18T15:13:29.781Z [TRACE] user-service - GET /api/v1/inventory - Status: 400 - Response time: 1556ms - IP: 192.168.144.38 - User: user_1009 - RequestID: 04mcirnh91xm +2025-06-18T15:13:29.881Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1023ms - IP: 192.168.211.72 - User: user_1061 - RequestID: z5ky4qopuhr +2025-06-18T15:13:29.981Z [TRACE] user-service - Auth event: logout - User: user_1087 - IP: 192.168.144.38 - RequestID: c8iknq01u7k +2025-06-18T15:13:30.081Z [INFO] payment-service - Operation: inventory_updated - Processing time: 706ms - RequestID: ya51bztqbs +2025-06-18T15:13:30.181Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 307ms - Rows affected: 78 - RequestID: awqoecfjip +2025-06-18T15:13:30.281Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 149ms - Rows affected: 61 - RequestID: okxn3vayprc +2025-06-18T15:13:30.381Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 207ms - RequestID: 7nrzkxr3x72 +2025-06-18T15:13:30.481Z [DEBUG] order-service - Auth event: password_change - User: user_1060 - IP: 192.168.33.76 - RequestID: 5cd2qeicmlq +2025-06-18T15:13:30.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.189.103 - RequestID: crci2g2dcv8 +2025-06-18T15:13:30.681Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 269ms - Rows affected: 69 - RequestID: 9915bg42ibb +2025-06-18T15:13:30.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 690ms - RequestID: 9r761rc6cdg +2025-06-18T15:13:30.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1084 - IP: 192.168.194.41 - RequestID: y6yugx2w1xq +2025-06-18T15:13:30.981Z [INFO] notification-service - Operation: webhook_sent - Processing time: 807ms - RequestID: rco3r8co2q +2025-06-18T15:13:31.081Z [INFO] order-service - DELETE /api/v1/payments - Status: 200 - Response time: 1160ms - IP: 192.168.64.33 - User: user_1035 - RequestID: m06j0qewvu +2025-06-18T15:13:31.181Z [INFO] auth-service - Auth event: logout - User: user_1083 - IP: 192.168.11.60 - RequestID: dpirak855hi +2025-06-18T15:13:31.281Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 614ms - RequestID: bynff3be5b +2025-06-18T15:13:31.381Z [TRACE] inventory-service - Auth event: logout - User: user_1009 - IP: 192.168.147.171 - RequestID: r1thukzfd8h +2025-06-18T15:13:31.481Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1891ms - IP: 192.168.46.63 - User: user_1026 - RequestID: 8xsk3bil9n +2025-06-18T15:13:31.581Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 335ms - RequestID: ily3lnulo9n +2025-06-18T15:13:31.681Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 4ms - Rows affected: 98 - RequestID: a0arpit3ryo +2025-06-18T15:13:31.781Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 796ms - RequestID: enj1587ww96 +2025-06-18T15:13:31.881Z [INFO] payment-service - Auth event: logout - User: user_1081 - IP: 192.168.147.171 - RequestID: hq8esdew0nk +2025-06-18T15:13:31.981Z [DEBUG] order-service - Database SELECT on products - Execution time: 305ms - Rows affected: 39 - RequestID: 9ke73tula3i +2025-06-18T15:13:32.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.46.63 - RequestID: 5gn9b1ecp04 +2025-06-18T15:13:32.181Z [TRACE] user-service - DELETE /api/v1/users - Status: 502 - Response time: 35ms - IP: 192.168.13.72 - User: user_1016 - RequestID: jm39zpz6cvg +2025-06-18T15:13:32.281Z [INFO] payment-service - Auth event: logout - User: user_1008 - IP: 192.168.46.63 - RequestID: 9r9hxn2x39 +2025-06-18T15:13:32.381Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 401 - Response time: 854ms - IP: 192.168.194.41 - User: user_1053 - RequestID: ulko8ao168d +2025-06-18T15:13:32.481Z [TRACE] notification-service - Auth event: login_success - User: user_1009 - IP: 192.168.144.38 - RequestID: el37l3kwplj +2025-06-18T15:13:32.581Z [DEBUG] user-service - POST /api/v1/users - Status: 502 - Response time: 316ms - IP: 192.168.13.72 - User: user_1081 - RequestID: par2z0kdbhg +2025-06-18T15:13:32.681Z [INFO] order-service - Database DELETE on orders - Execution time: 99ms - Rows affected: 24 - RequestID: w17zjxoyr3a +2025-06-18T15:13:32.781Z [INFO] auth-service - Operation: webhook_sent - Processing time: 950ms - RequestID: lnltas7xj1 +2025-06-18T15:13:32.881Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 539ms - IP: 192.168.13.72 - User: user_1058 - RequestID: 17docuqmy5 +2025-06-18T15:13:32.981Z [INFO] order-service - POST /api/v1/payments - Status: 500 - Response time: 1327ms - IP: 192.168.79.116 - User: user_1099 - RequestID: rkcwu4b2rcl +2025-06-18T15:13:33.081Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 502 - Response time: 1889ms - IP: 192.168.247.134 - User: user_1058 - RequestID: 5gvmr6clqht +2025-06-18T15:13:33.181Z [TRACE] auth-service - Database INSERT on products - Execution time: 335ms - Rows affected: 38 - RequestID: m5990ddz5zi +2025-06-18T15:13:33.281Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1520ms - IP: 192.168.81.206 - User: user_1043 - RequestID: np4wrsuktc +2025-06-18T15:13:33.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.1.152 - RequestID: tad1mfyz2ds +2025-06-18T15:13:33.481Z [DEBUG] order-service - Operation: email_sent - Processing time: 303ms - RequestID: 1zh18nutkub +2025-06-18T15:13:33.581Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 650ms - RequestID: kphl244yv9 +2025-06-18T15:13:33.681Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 338ms - Rows affected: 10 - RequestID: r0qdzor2p1t +2025-06-18T15:13:33.781Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 972ms - RequestID: zkywg9zfbvb +2025-06-18T15:13:33.881Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 821ms - RequestID: s8sb5sshzdr +2025-06-18T15:13:33.981Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 571ms - RequestID: l2ja85pz72f +2025-06-18T15:13:34.081Z [TRACE] user-service - PUT /api/v1/orders - Status: 200 - Response time: 1718ms - IP: 192.168.232.72 - User: user_1095 - RequestID: 7au0kehej2f +2025-06-18T15:13:34.181Z [TRACE] auth-service - PUT /api/v1/users - Status: 500 - Response time: 1156ms - IP: 192.168.196.226 - User: user_1051 - RequestID: wxfzwbnfni +2025-06-18T15:13:34.281Z [TRACE] inventory-service - Auth event: login_success - User: user_1014 - IP: 192.168.181.225 - RequestID: nhhk9tr373g +2025-06-18T15:13:34.381Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1404ms - IP: 192.168.100.240 - User: user_1039 - RequestID: 48o3rxuns1r +2025-06-18T15:13:34.481Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 738ms - RequestID: 3kjfpo0ackz +2025-06-18T15:13:34.581Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 39ms - Rows affected: 40 - RequestID: 7jn5jc84yg9 +2025-06-18T15:13:34.681Z [DEBUG] user-service - Database INSERT on products - Execution time: 441ms - Rows affected: 74 - RequestID: jl5jdqjl1oo +2025-06-18T15:13:34.781Z [INFO] auth-service - Auth event: login_success - User: user_1022 - IP: 192.168.240.169 - RequestID: i20717vtz7 +2025-06-18T15:13:34.881Z [DEBUG] order-service - POST /api/v1/payments - Status: 404 - Response time: 342ms - IP: 192.168.229.123 - User: user_1062 - RequestID: 3lwmhygdvw +2025-06-18T15:13:34.981Z [INFO] auth-service - Auth event: login_failed - User: user_1075 - IP: 192.168.13.72 - RequestID: m7yvu7veafb +2025-06-18T15:13:35.081Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 329ms - Rows affected: 29 - RequestID: w9s0eh1291 +2025-06-18T15:13:35.181Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 147ms - Rows affected: 59 - RequestID: pl84hf4t7e +2025-06-18T15:13:35.281Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 380ms - Rows affected: 36 - RequestID: 6pb0yrxiw63 +2025-06-18T15:13:35.381Z [TRACE] user-service - Operation: email_sent - Processing time: 179ms - RequestID: 25jbu9twy3jj +2025-06-18T15:13:35.481Z [INFO] inventory-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.79.141 - RequestID: vt7clj02rk +2025-06-18T15:13:35.581Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 243ms - RequestID: 6fyly7p34ei +2025-06-18T15:13:35.681Z [TRACE] order-service - Database INSERT on users - Execution time: 314ms - Rows affected: 19 - RequestID: ejgozcr922r +2025-06-18T15:13:35.781Z [TRACE] notification-service - Auth event: login_failed - User: user_1026 - IP: 192.168.174.114 - RequestID: rmn2uyk248c +2025-06-18T15:13:35.881Z [INFO] auth-service - POST /api/v1/users - Status: 502 - Response time: 21ms - IP: 192.168.189.103 - User: user_1087 - RequestID: z9nomcx2j2o +2025-06-18T15:13:35.981Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 172ms - Rows affected: 45 - RequestID: q4p31p10o2 +2025-06-18T15:13:36.081Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 589ms - RequestID: 696ve815ald +2025-06-18T15:13:36.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 976ms - RequestID: 68mkjzxs0z6 +2025-06-18T15:13:36.281Z [TRACE] payment-service - Database UPDATE on users - Execution time: 312ms - Rows affected: 85 - RequestID: p2t1jk8yxzp +2025-06-18T15:13:36.381Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.10.184 - RequestID: oksody0tni +2025-06-18T15:13:36.481Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 130ms - Rows affected: 20 - RequestID: i1rp378wqxk +2025-06-18T15:13:36.581Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 502 - Response time: 1557ms - IP: 192.168.167.32 - User: user_1093 - RequestID: zln25u6r13o +2025-06-18T15:13:36.681Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 403 - Response time: 926ms - IP: 192.168.53.133 - User: user_1019 - RequestID: rqr1alb8xc +2025-06-18T15:13:36.781Z [INFO] inventory-service - GET /api/v1/payments - Status: 201 - Response time: 217ms - IP: 192.168.10.184 - User: user_1074 - RequestID: 39pb8fpqpej +2025-06-18T15:13:36.881Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 96ms - RequestID: r6je6jv5oo +2025-06-18T15:13:36.981Z [INFO] notification-service - GET /api/v1/payments - Status: 400 - Response time: 1494ms - IP: 192.168.194.41 - User: user_1054 - RequestID: gf334p0rqig +2025-06-18T15:13:37.081Z [INFO] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 484ms - IP: 192.168.33.76 - User: user_1004 - RequestID: 432v3lwd8u +2025-06-18T15:13:37.181Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 446ms - RequestID: uu7i1pxzkno +2025-06-18T15:13:37.281Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 348ms - Rows affected: 96 - RequestID: uvvv6sup9j +2025-06-18T15:13:37.381Z [DEBUG] user-service - Auth event: login_success - User: user_1087 - IP: 192.168.10.184 - RequestID: sa04mpsnnc +2025-06-18T15:13:37.481Z [DEBUG] order-service - Database INSERT on users - Execution time: 142ms - Rows affected: 81 - RequestID: 3unwfysumid +2025-06-18T15:13:37.581Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 773ms - RequestID: 3011b7ldebc +2025-06-18T15:13:37.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.30.79 - RequestID: 7tl27krptky +2025-06-18T15:13:37.781Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 712ms - RequestID: 9dtg0ykhte7 +2025-06-18T15:13:37.881Z [INFO] order-service - Database DELETE on payments - Execution time: 209ms - Rows affected: 10 - RequestID: l3exwbsti5q +2025-06-18T15:13:37.981Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 396ms - Rows affected: 74 - RequestID: q9eiagcr0cr +2025-06-18T15:13:38.081Z [TRACE] payment-service - Auth event: password_change - User: user_1091 - IP: 192.168.159.94 - RequestID: eymqh6dc7la +2025-06-18T15:13:38.181Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1736ms - IP: 192.168.32.38 - User: user_1070 - RequestID: 2wn6wbnu8uo +2025-06-18T15:13:38.281Z [DEBUG] payment-service - Database DELETE on users - Execution time: 53ms - Rows affected: 69 - RequestID: nf7vwjv0zdh +2025-06-18T15:13:38.381Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 344ms - Rows affected: 22 - RequestID: flcb389vlfb +2025-06-18T15:13:38.481Z [TRACE] payment-service - DELETE /api/v1/users - Status: 503 - Response time: 1969ms - IP: 192.168.138.123 - User: user_1091 - RequestID: i9iey2rucel +2025-06-18T15:13:38.581Z [INFO] notification-service - Database UPDATE on orders - Execution time: 343ms - Rows affected: 62 - RequestID: r9pilpqw0xf +2025-06-18T15:13:38.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.242.165 - RequestID: zbpmggmi80j +2025-06-18T15:13:38.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 561ms - RequestID: dcoghftdpsc +2025-06-18T15:13:38.881Z [TRACE] order-service - Operation: webhook_sent - Processing time: 265ms - RequestID: xbvzn1jhj3 +2025-06-18T15:13:38.981Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 201 - Response time: 1426ms - IP: 192.168.36.218 - User: user_1019 - RequestID: jxlom1khcph +2025-06-18T15:13:39.081Z [INFO] order-service - Database UPDATE on payments - Execution time: 258ms - Rows affected: 90 - RequestID: pi08bkrbaw +2025-06-18T15:13:39.181Z [TRACE] payment-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.240.169 - RequestID: rgojnj2pw8k +2025-06-18T15:13:39.281Z [INFO] auth-service - Operation: webhook_sent - Processing time: 994ms - RequestID: xrqgm8h3pt +2025-06-18T15:13:39.381Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 502 - Response time: 1910ms - IP: 192.168.53.133 - User: user_1016 - RequestID: hw7vh8hrhpm +2025-06-18T15:13:39.481Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 258ms - Rows affected: 22 - RequestID: el8lquhpkcq +2025-06-18T15:13:39.581Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 369ms - IP: 192.168.170.215 - User: user_1005 - RequestID: ej6da8v4l7i +2025-06-18T15:13:39.681Z [DEBUG] order-service - Operation: cache_hit - Processing time: 460ms - RequestID: x9sk1l1d9l8 +2025-06-18T15:13:39.781Z [INFO] order-service - Operation: payment_processed - Processing time: 241ms - RequestID: sklct2cmlc +2025-06-18T15:13:39.881Z [DEBUG] notification-service - GET /api/v1/orders - Status: 201 - Response time: 707ms - IP: 192.168.174.114 - User: user_1098 - RequestID: zq97h5l57md +2025-06-18T15:13:39.981Z [DEBUG] auth-service - Auth event: login_failed - User: user_1096 - IP: 192.168.85.229 - RequestID: w3pqucl9b8o +2025-06-18T15:13:40.081Z [DEBUG] payment-service - Operation: email_sent - Processing time: 307ms - RequestID: v0snm6s57mp +2025-06-18T15:13:40.181Z [TRACE] payment-service - Auth event: logout - User: user_1063 - IP: 192.168.13.72 - RequestID: 3z19egs2xwf +2025-06-18T15:13:40.281Z [TRACE] user-service - Auth event: password_change - User: user_1054 - IP: 192.168.79.116 - RequestID: 26hqqepxt98 +2025-06-18T15:13:40.381Z [INFO] payment-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.227.233 - RequestID: qzsufhy8w3e +2025-06-18T15:13:40.481Z [DEBUG] order-service - Database INSERT on payments - Execution time: 123ms - Rows affected: 74 - RequestID: nzpv8xiyuz +2025-06-18T15:13:40.581Z [INFO] order-service - PATCH /api/v1/users - Status: 400 - Response time: 1889ms - IP: 192.168.167.32 - User: user_1052 - RequestID: 45bxf5a5wo9 +2025-06-18T15:13:40.681Z [INFO] order-service - Database DELETE on users - Execution time: 450ms - Rows affected: 48 - RequestID: 6gxie4zvheq +2025-06-18T15:13:40.781Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 862ms - RequestID: i6hhtu3f19 +2025-06-18T15:13:40.881Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 340ms - Rows affected: 67 - RequestID: aa5az7lrjyj +2025-06-18T15:13:40.981Z [DEBUG] order-service - Database INSERT on payments - Execution time: 119ms - Rows affected: 63 - RequestID: ixyaywiqdxg +2025-06-18T15:13:41.081Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 319ms - Rows affected: 22 - RequestID: vfxtz142wo +2025-06-18T15:13:41.181Z [DEBUG] user-service - Operation: notification_queued - Processing time: 409ms - RequestID: vctayl6f8n +2025-06-18T15:13:41.281Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 430ms - Rows affected: 63 - RequestID: ls93di8ah5e +2025-06-18T15:13:41.381Z [INFO] order-service - POST /api/v1/auth/logout - Status: 502 - Response time: 726ms - IP: 192.168.36.218 - User: user_1095 - RequestID: tw0e3abvcz +2025-06-18T15:13:41.481Z [TRACE] user-service - Operation: cache_hit - Processing time: 713ms - RequestID: 20g67slckh7 +2025-06-18T15:13:41.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.181.225 - RequestID: mnykgujf3dm +2025-06-18T15:13:41.681Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 393ms - RequestID: n1jqwh421fe +2025-06-18T15:13:41.781Z [INFO] order-service - Auth event: login_failed - User: user_1022 - IP: 192.168.81.206 - RequestID: y6nnb1mf0wp +2025-06-18T15:13:41.881Z [INFO] inventory-service - Auth event: login_success - User: user_1025 - IP: 192.168.196.226 - RequestID: zrsvgqzrkf +2025-06-18T15:13:41.981Z [TRACE] auth-service - POST /api/v1/orders - Status: 404 - Response time: 1097ms - IP: 192.168.141.100 - User: user_1075 - RequestID: qmfvfk9fn7 +2025-06-18T15:13:42.081Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 446ms - RequestID: dj6kt4q1nrp +2025-06-18T15:13:42.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.247.134 - RequestID: 2nnc5pfez91 +2025-06-18T15:13:42.281Z [TRACE] inventory-service - Auth event: password_change - User: user_1027 - IP: 192.168.85.229 - RequestID: 7x6mw6t9309 +2025-06-18T15:13:42.381Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 528ms - RequestID: sm0xdsed5zm +2025-06-18T15:13:42.481Z [INFO] order-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1034ms - IP: 192.168.36.218 - User: user_1010 - RequestID: 4nl5w637r88 +2025-06-18T15:13:42.581Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1922ms - IP: 192.168.79.141 - User: user_1085 - RequestID: 6mhbb41qfyr +2025-06-18T15:13:42.681Z [TRACE] order-service - PATCH /api/v1/payments - Status: 400 - Response time: 1236ms - IP: 192.168.189.103 - User: user_1021 - RequestID: ckl9nbnmwd +2025-06-18T15:13:42.781Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 413ms - Rows affected: 53 - RequestID: tmumu3brer +2025-06-18T15:13:42.881Z [INFO] order-service - POST /api/v1/orders - Status: 401 - Response time: 362ms - IP: 192.168.81.206 - User: user_1076 - RequestID: w234k9z4qqe +2025-06-18T15:13:42.981Z [INFO] order-service - Auth event: login_success - User: user_1023 - IP: 192.168.13.72 - RequestID: tnit9viqepc +2025-06-18T15:13:43.081Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 921ms - RequestID: 64wawes6s3 +2025-06-18T15:13:43.181Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 389ms - Rows affected: 52 - RequestID: s4rdg07ayvb +2025-06-18T15:13:43.281Z [INFO] payment-service - POST /api/v1/orders - Status: 404 - Response time: 416ms - IP: 192.168.174.114 - User: user_1068 - RequestID: k5kny7zxvze +2025-06-18T15:13:43.381Z [TRACE] order-service - Auth event: login_failed - User: user_1082 - IP: 192.168.141.100 - RequestID: rwig9zyx3fe +2025-06-18T15:13:43.481Z [TRACE] user-service - Database INSERT on products - Execution time: 20ms - Rows affected: 50 - RequestID: 3hk5pwjlx8d +2025-06-18T15:13:43.581Z [INFO] payment-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.133.7 - RequestID: 160fp1xd3jd +2025-06-18T15:13:43.681Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 400 - Response time: 116ms - IP: 192.168.97.87 - User: user_1057 - RequestID: hm7bwcthrsu +2025-06-18T15:13:43.781Z [INFO] order-service - Auth event: login_failed - User: user_1007 - IP: 192.168.81.206 - RequestID: vcxkex8qow +2025-06-18T15:13:43.881Z [TRACE] order-service - Database SELECT on products - Execution time: 132ms - Rows affected: 83 - RequestID: 5gzw1xdna1s +2025-06-18T15:13:43.981Z [DEBUG] order-service - Operation: order_created - Processing time: 622ms - RequestID: 6rrr3mjjget +2025-06-18T15:13:44.081Z [INFO] user-service - Auth event: logout - User: user_1051 - IP: 192.168.189.103 - RequestID: 09xj052kwbai +2025-06-18T15:13:44.181Z [TRACE] order-service - PATCH /api/v1/payments - Status: 503 - Response time: 1472ms - IP: 192.168.235.117 - User: user_1006 - RequestID: fap17dgiumo +2025-06-18T15:13:44.281Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 162ms - Rows affected: 52 - RequestID: noa448s5l5g +2025-06-18T15:13:44.381Z [DEBUG] order-service - PUT /api/v1/payments - Status: 400 - Response time: 596ms - IP: 192.168.32.38 - User: user_1081 - RequestID: f4tk3rk81bl +2025-06-18T15:13:44.481Z [TRACE] auth-service - Database DELETE on products - Execution time: 368ms - Rows affected: 49 - RequestID: nae6kvkts7 +2025-06-18T15:13:44.581Z [INFO] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1409ms - IP: 192.168.196.226 - User: user_1011 - RequestID: 5jfoscz38dc +2025-06-18T15:13:44.681Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1525ms - IP: 192.168.138.123 - User: user_1015 - RequestID: 8rw5o4oio7i +2025-06-18T15:13:44.781Z [DEBUG] order-service - POST /api/v1/users - Status: 503 - Response time: 27ms - IP: 192.168.28.146 - User: user_1032 - RequestID: 0hitevt8ut8u +2025-06-18T15:13:44.881Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 236ms - IP: 192.168.36.218 - User: user_1085 - RequestID: hh0gzhsxhaf +2025-06-18T15:13:44.981Z [TRACE] payment-service - Operation: order_created - Processing time: 1028ms - RequestID: t3cqu9337qi +2025-06-18T15:13:45.081Z [INFO] notification-service - Auth event: login_failed - User: user_1010 - IP: 192.168.235.117 - RequestID: 5dmfm9nq9tb +2025-06-18T15:13:45.181Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 231ms - RequestID: ne8m4gz8hel +2025-06-18T15:13:45.281Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 251ms - Rows affected: 15 - RequestID: q3ng2651qyq +2025-06-18T15:13:45.381Z [INFO] notification-service - Operation: cache_miss - Processing time: 196ms - RequestID: eq04gnkydj +2025-06-18T15:13:45.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1041 - IP: 192.168.36.218 - RequestID: t9eof6kc7f +2025-06-18T15:13:45.581Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1165ms - IP: 192.168.235.117 - User: user_1010 - RequestID: cgqsx0ynscm +2025-06-18T15:13:45.681Z [TRACE] auth-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.242.165 - RequestID: lb5t0uy78s +2025-06-18T15:13:45.781Z [INFO] auth-service - Operation: notification_queued - Processing time: 224ms - RequestID: wnz84itu0cl +2025-06-18T15:13:45.881Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 516ms - RequestID: jzsi4ny4ena +2025-06-18T15:13:45.981Z [DEBUG] user-service - Operation: cache_hit - Processing time: 76ms - RequestID: hgj4r2slrv +2025-06-18T15:13:46.081Z [DEBUG] payment-service - Auth event: login_success - User: user_1085 - IP: 192.168.181.225 - RequestID: 2omylykaf3a +2025-06-18T15:13:46.181Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 1046ms - RequestID: zzxcxv783re +2025-06-18T15:13:46.281Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 195ms - Rows affected: 43 - RequestID: rlywb9bsoik +2025-06-18T15:13:46.381Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 331ms - Rows affected: 25 - RequestID: bv7v2pqw6zf +2025-06-18T15:13:46.481Z [INFO] order-service - Database SELECT on users - Execution time: 267ms - Rows affected: 59 - RequestID: 7ikr95nw6uj +2025-06-18T15:13:46.581Z [TRACE] user-service - GET /api/v1/inventory - Status: 503 - Response time: 858ms - IP: 192.168.1.152 - User: user_1066 - RequestID: 61g8ui2vzft +2025-06-18T15:13:46.681Z [TRACE] payment-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.79.116 - RequestID: zv3winsczs +2025-06-18T15:13:46.781Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 670ms - RequestID: 469z34f1f62 +2025-06-18T15:13:46.881Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1314ms - IP: 192.168.211.72 - User: user_1068 - RequestID: ol4gg7ei56 +2025-06-18T15:13:46.981Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 467ms - RequestID: t5p8n1h7qo +2025-06-18T15:13:47.081Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 403 - Response time: 1067ms - IP: 192.168.79.141 - User: user_1007 - RequestID: 72fx9dmd9dc +2025-06-18T15:13:47.181Z [INFO] order-service - GET /api/v1/users - Status: 500 - Response time: 692ms - IP: 192.168.79.143 - User: user_1007 - RequestID: 4npda1biipc +2025-06-18T15:13:47.281Z [INFO] inventory-service - Auth event: login_failed - User: user_1042 - IP: 192.168.181.225 - RequestID: mm5jf5rij3i +2025-06-18T15:13:47.381Z [DEBUG] auth-service - Auth event: logout - User: user_1059 - IP: 192.168.1.152 - RequestID: rzgjqjsfyen +2025-06-18T15:13:47.481Z [INFO] notification-service - Auth event: login_success - User: user_1011 - IP: 192.168.141.100 - RequestID: zuawib4wjo +2025-06-18T15:13:47.581Z [TRACE] auth-service - Auth event: login_success - User: user_1039 - IP: 192.168.235.117 - RequestID: malk98hjm2b +2025-06-18T15:13:47.681Z [DEBUG] user-service - Operation: payment_processed - Processing time: 81ms - RequestID: h7f8pu7sayb +2025-06-18T15:13:47.781Z [TRACE] order-service - Auth event: logout - User: user_1064 - IP: 192.168.68.128 - RequestID: k2k5l1cf3ij +2025-06-18T15:13:47.881Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 340ms - Rows affected: 78 - RequestID: 33vxa4rty1k +2025-06-18T15:13:47.981Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 502 - Response time: 159ms - IP: 192.168.227.233 - User: user_1056 - RequestID: 6cuoukr94dl +2025-06-18T15:13:48.081Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 172ms - RequestID: hp476yrpzr +2025-06-18T15:13:48.181Z [TRACE] auth-service - Operation: email_sent - Processing time: 683ms - RequestID: rlz35b0c9xs +2025-06-18T15:13:48.281Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 486ms - Rows affected: 63 - RequestID: tg2sfgle8i +2025-06-18T15:13:48.381Z [TRACE] payment-service - Operation: order_created - Processing time: 372ms - RequestID: 5pmoq4j5ezj +2025-06-18T15:13:48.481Z [DEBUG] auth-service - GET /api/v1/users - Status: 400 - Response time: 1467ms - IP: 192.168.158.144 - User: user_1008 - RequestID: onz5tqv1k6q +2025-06-18T15:13:48.581Z [INFO] notification-service - Database SELECT on orders - Execution time: 143ms - Rows affected: 34 - RequestID: mccmzwe5s3 +2025-06-18T15:13:48.681Z [DEBUG] user-service - Database UPDATE on products - Execution time: 265ms - Rows affected: 29 - RequestID: h5lg1qfmajs +2025-06-18T15:13:48.781Z [INFO] auth-service - POST /api/v1/payments - Status: 502 - Response time: 471ms - IP: 192.168.141.100 - User: user_1097 - RequestID: 7syv3varjv7 +2025-06-18T15:13:48.881Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 642ms - RequestID: i0efer5xu8e +2025-06-18T15:13:48.981Z [INFO] order-service - POST /api/v1/inventory - Status: 401 - Response time: 290ms - IP: 192.168.79.141 - User: user_1036 - RequestID: hxohonw3opk +2025-06-18T15:13:49.081Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 200 - Response time: 147ms - IP: 192.168.211.72 - User: user_1025 - RequestID: vv5pf8ya5g +2025-06-18T15:13:49.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.11.60 - RequestID: 90mf0fs8tl +2025-06-18T15:13:49.281Z [DEBUG] order-service - Operation: payment_processed - Processing time: 367ms - RequestID: pp1itg8urad +2025-06-18T15:13:49.381Z [TRACE] auth-service - Operation: payment_processed - Processing time: 482ms - RequestID: i4z9cfesgc +2025-06-18T15:13:49.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.227.233 - RequestID: f9nhbskku4k +2025-06-18T15:13:49.581Z [INFO] notification-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.167.32 - RequestID: 7twpz2sfzhh +2025-06-18T15:13:49.681Z [TRACE] auth-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.85.229 - RequestID: n9g3l0yjpmq +2025-06-18T15:13:49.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 991ms - RequestID: qwymsva6x4h +2025-06-18T15:13:49.881Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 823ms - RequestID: 3al59hjc8bl +2025-06-18T15:13:49.981Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 302ms - Rows affected: 18 - RequestID: bdgx2cpgny +2025-06-18T15:13:50.081Z [INFO] inventory-service - Database DELETE on products - Execution time: 43ms - Rows affected: 62 - RequestID: hmdsm2arsbd +2025-06-18T15:13:50.181Z [TRACE] notification-service - Operation: notification_queued - Processing time: 233ms - RequestID: fdn4xu67edj +2025-06-18T15:13:50.281Z [TRACE] notification-service - Database SELECT on orders - Execution time: 326ms - Rows affected: 23 - RequestID: cjpkrts8u7 +2025-06-18T15:13:50.381Z [INFO] order-service - Auth event: password_change - User: user_1080 - IP: 192.168.170.215 - RequestID: bvctuc6dyp5 +2025-06-18T15:13:50.481Z [TRACE] inventory-service - Database SELECT on products - Execution time: 296ms - Rows affected: 13 - RequestID: nacum0va37 +2025-06-18T15:13:50.581Z [TRACE] order-service - Operation: cache_miss - Processing time: 726ms - RequestID: edugeaugag7 +2025-06-18T15:13:50.681Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 500 - Response time: 509ms - IP: 192.168.133.7 - User: user_1056 - RequestID: sw73vmajl5d +2025-06-18T15:13:50.781Z [INFO] notification-service - Auth event: logout - User: user_1090 - IP: 192.168.81.206 - RequestID: e285h4o9vc +2025-06-18T15:13:50.881Z [INFO] user-service - Auth event: login_failed - User: user_1010 - IP: 192.168.181.225 - RequestID: 9iqp7b23ls4 +2025-06-18T15:13:50.981Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1284ms - IP: 192.168.44.5 - User: user_1034 - RequestID: grxjrioiedl +2025-06-18T15:13:51.081Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.141.100 - RequestID: q4xkqnohfzc +2025-06-18T15:13:51.181Z [INFO] notification-service - Database UPDATE on users - Execution time: 402ms - Rows affected: 99 - RequestID: dhu5xshhmf7 +2025-06-18T15:13:51.281Z [INFO] user-service - Auth event: password_change - User: user_1054 - IP: 192.168.28.146 - RequestID: zhhawhwu0wh +2025-06-18T15:13:51.381Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 664ms - RequestID: whyyb7xwtaj +2025-06-18T15:13:51.481Z [TRACE] notification-service - Operation: notification_queued - Processing time: 383ms - RequestID: muwt6bf81r +2025-06-18T15:13:51.581Z [INFO] notification-service - Database INSERT on orders - Execution time: 274ms - Rows affected: 62 - RequestID: ne6tv1kbwq +2025-06-18T15:13:51.681Z [TRACE] notification-service - Operation: notification_queued - Processing time: 798ms - RequestID: 4js22vn2ofl +2025-06-18T15:13:51.781Z [TRACE] user-service - Database INSERT on users - Execution time: 383ms - Rows affected: 78 - RequestID: zh5ebfjjamn +2025-06-18T15:13:51.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.194.41 - RequestID: 8csjd4if9q +2025-06-18T15:13:51.981Z [TRACE] order-service - Operation: webhook_sent - Processing time: 313ms - RequestID: dudkceot94 +2025-06-18T15:13:52.081Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 1040ms - RequestID: 9ro791iy4c +2025-06-18T15:13:52.181Z [INFO] auth-service - Operation: notification_queued - Processing time: 545ms - RequestID: ag2m71xv9ql +2025-06-18T15:13:52.281Z [DEBUG] user-service - Auth event: logout - User: user_1047 - IP: 192.168.144.38 - RequestID: zn2zh9ksa39 +2025-06-18T15:13:52.381Z [TRACE] user-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.30.79 - RequestID: p71hhb2jzhi +2025-06-18T15:13:52.481Z [TRACE] order-service - Auth event: login_success - User: user_1043 - IP: 192.168.97.87 - RequestID: l56cesrs4bi +2025-06-18T15:13:52.581Z [INFO] user-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1647ms - IP: 192.168.235.117 - User: user_1073 - RequestID: pef2duqdju +2025-06-18T15:13:52.681Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 74ms - Rows affected: 5 - RequestID: 1sw4zcf6pqj +2025-06-18T15:13:52.781Z [INFO] auth-service - PUT /api/v1/orders - Status: 502 - Response time: 10ms - IP: 192.168.68.158 - User: user_1099 - RequestID: 069w7c88hk8u +2025-06-18T15:13:52.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 949ms - RequestID: opwr3r40t7h +2025-06-18T15:13:52.981Z [DEBUG] payment-service - Auth event: login_success - User: user_1036 - IP: 192.168.1.152 - RequestID: ofn6pjp10g +2025-06-18T15:13:53.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.85.229 - RequestID: 1me9cs04kxp +2025-06-18T15:13:53.181Z [TRACE] inventory-service - Auth event: login_success - User: user_1066 - IP: 192.168.81.206 - RequestID: gkax3xx8ep +2025-06-18T15:13:53.281Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 160ms - IP: 192.168.68.158 - User: user_1088 - RequestID: 2nu1uslc8a7 +2025-06-18T15:13:53.381Z [INFO] inventory-service - Operation: email_sent - Processing time: 615ms - RequestID: 1mfcqzbtxsu +2025-06-18T15:13:53.481Z [INFO] auth-service - Operation: notification_queued - Processing time: 352ms - RequestID: yw89mnzxa1n +2025-06-18T15:13:53.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.147.171 - RequestID: 2f68xzyhmvk +2025-06-18T15:13:53.681Z [INFO] notification-service - Operation: inventory_updated - Processing time: 860ms - RequestID: epgb8v3iu4t +2025-06-18T15:13:53.781Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 5ms - Rows affected: 67 - RequestID: ezufhqtc3c +2025-06-18T15:13:53.881Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 26ms - Rows affected: 97 - RequestID: 3de6bnfmh2q +2025-06-18T15:13:53.981Z [INFO] inventory-service - Database DELETE on orders - Execution time: 66ms - Rows affected: 18 - RequestID: 1tfs5yexwwg +2025-06-18T15:13:54.081Z [TRACE] order-service - DELETE /api/v1/orders - Status: 403 - Response time: 425ms - IP: 192.168.85.229 - User: user_1032 - RequestID: wmsuzpha8pa +2025-06-18T15:13:54.181Z [DEBUG] inventory-service - Auth event: password_change - User: user_1033 - IP: 192.168.194.41 - RequestID: erc7xnjpgk +2025-06-18T15:13:54.281Z [INFO] payment-service - Operation: cache_hit - Processing time: 76ms - RequestID: nzozu75ukhj +2025-06-18T15:13:54.381Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 500 - Response time: 1929ms - IP: 192.168.181.225 - User: user_1087 - RequestID: yfopshpkbsa +2025-06-18T15:13:54.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 75ms - RequestID: nw6jex43jw +2025-06-18T15:13:54.581Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 208ms - Rows affected: 98 - RequestID: oz00vtv537i +2025-06-18T15:13:54.681Z [TRACE] payment-service - POST /api/v1/users - Status: 500 - Response time: 1979ms - IP: 192.168.33.76 - User: user_1004 - RequestID: golrvs6lk7o +2025-06-18T15:13:54.781Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 247ms - Rows affected: 32 - RequestID: 1om3pmlbh38 +2025-06-18T15:13:54.881Z [TRACE] inventory-service - Operation: order_created - Processing time: 966ms - RequestID: 4wj1pq6vbe9 +2025-06-18T15:13:54.981Z [INFO] user-service - Auth event: logout - User: user_1061 - IP: 192.168.113.218 - RequestID: g5qmz0cv4pe +2025-06-18T15:13:55.081Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 913ms - IP: 192.168.227.233 - User: user_1004 - RequestID: cjalayne30h +2025-06-18T15:13:55.181Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 428ms - RequestID: 123kl0ulwjq +2025-06-18T15:13:55.281Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 502 - Response time: 1789ms - IP: 192.168.187.199 - User: user_1072 - RequestID: eayfrhwsgsn +2025-06-18T15:13:55.381Z [INFO] order-service - Database SELECT on payments - Execution time: 473ms - Rows affected: 52 - RequestID: 0u22ukfkusj +2025-06-18T15:13:55.481Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 211ms - Rows affected: 67 - RequestID: 93ap8dmniyf +2025-06-18T15:13:55.581Z [TRACE] notification-service - POST /api/v1/payments - Status: 200 - Response time: 996ms - IP: 192.168.147.171 - User: user_1087 - RequestID: 3zk9ioscefx +2025-06-18T15:13:55.681Z [TRACE] order-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.170.215 - RequestID: 7kimttl0eh +2025-06-18T15:13:55.781Z [TRACE] user-service - Auth event: login_success - User: user_1073 - IP: 192.168.158.144 - RequestID: 9o96cwce8mg +2025-06-18T15:13:55.881Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1279ms - IP: 192.168.240.169 - User: user_1062 - RequestID: zrntm11f6g +2025-06-18T15:13:55.981Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 321ms - RequestID: ksddd9ikai +2025-06-18T15:13:56.081Z [TRACE] inventory-service - Database DELETE on users - Execution time: 310ms - Rows affected: 73 - RequestID: daheadqptrh +2025-06-18T15:13:56.181Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 88ms - RequestID: fbfc315j565 +2025-06-18T15:13:56.281Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 281ms - Rows affected: 61 - RequestID: ly7d8nd1yn +2025-06-18T15:13:56.381Z [TRACE] notification-service - Auth event: logout - User: user_1005 - IP: 192.168.68.158 - RequestID: xe6wmbhqa0i +2025-06-18T15:13:56.481Z [TRACE] notification-service - POST /api/v1/orders - Status: 403 - Response time: 965ms - IP: 192.168.158.144 - User: user_1023 - RequestID: 27yyiu3xzf3 +2025-06-18T15:13:56.581Z [INFO] notification-service - Auth event: logout - User: user_1093 - IP: 192.168.196.226 - RequestID: ra3w7wswok +2025-06-18T15:13:56.681Z [INFO] order-service - PATCH /api/v1/payments - Status: 201 - Response time: 1177ms - IP: 192.168.167.32 - User: user_1023 - RequestID: ozrui2103lc +2025-06-18T15:13:56.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 892ms - RequestID: ix6u7gmd9ka +2025-06-18T15:13:56.881Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.227.77 - RequestID: 5nyuylqw1r +2025-06-18T15:13:56.981Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 401 - Response time: 381ms - IP: 192.168.144.38 - User: user_1015 - RequestID: 67ed894jflv +2025-06-18T15:13:57.081Z [INFO] order-service - Auth event: password_change - User: user_1019 - IP: 192.168.211.72 - RequestID: kz0lu6jn2th +2025-06-18T15:13:57.181Z [INFO] order-service - Auth event: login_success - User: user_1058 - IP: 192.168.81.206 - RequestID: l1chatldsb7 +2025-06-18T15:13:57.281Z [INFO] inventory-service - Database SELECT on payments - Execution time: 479ms - Rows affected: 20 - RequestID: a1a473lmms +2025-06-18T15:13:57.381Z [DEBUG] order-service - Database DELETE on orders - Execution time: 410ms - Rows affected: 11 - RequestID: 4mtaa4dxujm +2025-06-18T15:13:57.481Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 403 - Response time: 1950ms - IP: 192.168.138.123 - User: user_1045 - RequestID: zufwuefe53 +2025-06-18T15:13:57.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1019 - IP: 192.168.14.77 - RequestID: mzd0ugnpgns +2025-06-18T15:13:57.681Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.174.114 - RequestID: d4not4th5n9 +2025-06-18T15:13:57.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.232.72 - RequestID: hcymgoamxe6 +2025-06-18T15:13:57.881Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 500 - Response time: 819ms - IP: 192.168.227.233 - User: user_1013 - RequestID: 48p6e57mcpw +2025-06-18T15:13:57.981Z [INFO] notification-service - PUT /api/v1/inventory - Status: 200 - Response time: 785ms - IP: 192.168.30.79 - User: user_1062 - RequestID: k7k5j8ymxk +2025-06-18T15:13:58.081Z [INFO] auth-service - POST /api/v1/inventory - Status: 200 - Response time: 1048ms - IP: 192.168.68.158 - User: user_1012 - RequestID: ofxm629bcwh +2025-06-18T15:13:58.181Z [INFO] auth-service - Operation: order_created - Processing time: 531ms - RequestID: ygprd4uysn +2025-06-18T15:13:58.281Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 521ms - RequestID: q15xvpoo6ci +2025-06-18T15:13:58.381Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 65ms - RequestID: ebl4cygce27 +2025-06-18T15:13:58.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1013 - IP: 192.168.227.77 - RequestID: 5zankiy24wx +2025-06-18T15:13:58.581Z [TRACE] notification-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.170.215 - RequestID: kbf0p56aslh +2025-06-18T15:13:58.681Z [DEBUG] user-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.100.240 - RequestID: eir7nwds987 +2025-06-18T15:13:58.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 890ms - RequestID: ssjngpyrp6h +2025-06-18T15:13:58.881Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 146ms - Rows affected: 38 - RequestID: wsh8qujjpfh +2025-06-18T15:13:58.981Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 192ms - Rows affected: 59 - RequestID: gkr99evi3zf +2025-06-18T15:13:59.081Z [DEBUG] auth-service - PUT /api/v1/users - Status: 403 - Response time: 147ms - IP: 192.168.11.60 - User: user_1015 - RequestID: qw6as0sru9f +2025-06-18T15:13:59.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.97.87 - RequestID: q37xuynh7d +2025-06-18T15:13:59.281Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 765ms - RequestID: 1sroyycfczn +2025-06-18T15:13:59.381Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 201 - Response time: 1875ms - IP: 192.168.232.72 - User: user_1051 - RequestID: u6oz8gi9zph +2025-06-18T15:13:59.481Z [INFO] auth-service - Database INSERT on payments - Execution time: 15ms - Rows affected: 67 - RequestID: tvo5fxjqbl +2025-06-18T15:13:59.581Z [TRACE] order-service - Database INSERT on payments - Execution time: 174ms - Rows affected: 35 - RequestID: aeqz0werm2e +2025-06-18T15:13:59.681Z [DEBUG] user-service - Auth event: logout - User: user_1053 - IP: 192.168.229.123 - RequestID: n7lmi0lgofq +2025-06-18T15:13:59.781Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1483ms - IP: 192.168.79.141 - User: user_1065 - RequestID: 1if698r8esyj +2025-06-18T15:13:59.881Z [TRACE] payment-service - Database UPDATE on users - Execution time: 191ms - Rows affected: 87 - RequestID: y06fnker4wm +2025-06-18T15:13:59.981Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 610ms - RequestID: izmdy5wg34 +2025-06-18T15:14:00.081Z [DEBUG] order-service - Operation: order_created - Processing time: 89ms - RequestID: 4b6eu5wp9sd +2025-06-18T15:14:00.181Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 367ms - Rows affected: 3 - RequestID: 5auglx98kvo +2025-06-18T15:14:00.281Z [TRACE] payment-service - Auth event: password_change - User: user_1058 - IP: 192.168.232.72 - RequestID: getuyz7rwza +2025-06-18T15:14:00.381Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 585ms - RequestID: keza9v9n6bm +2025-06-18T15:14:00.481Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 201 - Response time: 1057ms - IP: 192.168.167.32 - User: user_1068 - RequestID: 3pxnyb01785 +2025-06-18T15:14:00.581Z [INFO] auth-service - Operation: payment_processed - Processing time: 72ms - RequestID: 0lqo7af8qsw +2025-06-18T15:14:00.681Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1141ms - IP: 192.168.1.152 - User: user_1023 - RequestID: 32292olybjv +2025-06-18T15:14:00.781Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 351ms - Rows affected: 35 - RequestID: qjbmi6ji5yp +2025-06-18T15:14:00.881Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 274ms - RequestID: 0voc7gd9q5gg +2025-06-18T15:14:00.981Z [TRACE] inventory-service - Auth event: logout - User: user_1030 - IP: 192.168.97.87 - RequestID: hgrbh4ym5r8 +2025-06-18T15:14:01.081Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 92ms - Rows affected: 65 - RequestID: 69qxkbz7zpd +2025-06-18T15:14:01.181Z [INFO] auth-service - Database DELETE on users - Execution time: 378ms - Rows affected: 64 - RequestID: vrnybk5oqv +2025-06-18T15:14:01.281Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.141.100 - RequestID: xjafw2zk1u +2025-06-18T15:14:01.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.79.116 - RequestID: uug9cr5jpmk +2025-06-18T15:14:01.481Z [INFO] payment-service - Operation: cache_miss - Processing time: 593ms - RequestID: ccfjicxj08k +2025-06-18T15:14:01.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1084 - IP: 192.168.229.123 - RequestID: 4cmf5ldlwko +2025-06-18T15:14:01.681Z [INFO] user-service - DELETE /api/v1/payments - Status: 403 - Response time: 1555ms - IP: 192.168.10.184 - User: user_1070 - RequestID: nt36nx6kixb +2025-06-18T15:14:01.781Z [INFO] payment-service - PUT /api/v1/orders - Status: 403 - Response time: 771ms - IP: 192.168.227.233 - User: user_1089 - RequestID: 1wksin2z71f +2025-06-18T15:14:01.881Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 451ms - Rows affected: 8 - RequestID: lrw4ns01dog +2025-06-18T15:14:01.981Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 248ms - Rows affected: 34 - RequestID: jd6ui3nbh59 +2025-06-18T15:14:02.081Z [INFO] notification-service - Database DELETE on users - Execution time: 400ms - Rows affected: 49 - RequestID: xxcxil84ww +2025-06-18T15:14:02.181Z [INFO] user-service - Operation: cache_hit - Processing time: 962ms - RequestID: id2murzbomi +2025-06-18T15:14:02.281Z [INFO] order-service - DELETE /api/v1/payments - Status: 200 - Response time: 1074ms - IP: 192.168.100.240 - User: user_1072 - RequestID: 2691k9stkmr +2025-06-18T15:14:02.381Z [INFO] notification-service - Database SELECT on products - Execution time: 141ms - Rows affected: 87 - RequestID: spxpcbuqr7 +2025-06-18T15:14:02.481Z [TRACE] user-service - Auth event: password_change - User: user_1087 - IP: 192.168.174.114 - RequestID: vu8sd7pi7hn +2025-06-18T15:14:02.581Z [INFO] user-service - Auth event: login_failed - User: user_1007 - IP: 192.168.81.206 - RequestID: krw6l4ciq4q +2025-06-18T15:14:02.681Z [TRACE] order-service - Database DELETE on payments - Execution time: 347ms - Rows affected: 50 - RequestID: 297vlijvi3p +2025-06-18T15:14:02.781Z [INFO] order-service - Operation: cache_hit - Processing time: 328ms - RequestID: k8icozig3nk +2025-06-18T15:14:02.881Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1088 - IP: 192.168.113.218 - RequestID: xawdffwsylm +2025-06-18T15:14:02.981Z [INFO] inventory-service - Auth event: password_change - User: user_1064 - IP: 192.168.196.226 - RequestID: frfsrvf82k +2025-06-18T15:14:03.081Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 589ms - RequestID: 8o56whajnhq +2025-06-18T15:14:03.181Z [INFO] auth-service - Database UPDATE on payments - Execution time: 169ms - Rows affected: 4 - RequestID: 8zuohajvovt +2025-06-18T15:14:03.281Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 401 - Response time: 1605ms - IP: 192.168.196.226 - User: user_1010 - RequestID: 8fcdiczby5a +2025-06-18T15:14:03.381Z [DEBUG] user-service - PUT /api/v1/payments - Status: 400 - Response time: 638ms - IP: 192.168.194.41 - User: user_1073 - RequestID: q786rbgqu99 +2025-06-18T15:14:03.481Z [INFO] auth-service - Auth event: login_success - User: user_1061 - IP: 192.168.81.206 - RequestID: tlot3pi4vca +2025-06-18T15:14:03.581Z [DEBUG] user-service - Database DELETE on products - Execution time: 443ms - Rows affected: 16 - RequestID: 64yovqeh2c +2025-06-18T15:14:03.681Z [TRACE] order-service - Database INSERT on products - Execution time: 276ms - Rows affected: 60 - RequestID: 9v43hq7int5 +2025-06-18T15:14:03.781Z [INFO] user-service - Operation: order_created - Processing time: 705ms - RequestID: te4l7kbzmd +2025-06-18T15:14:03.881Z [INFO] notification-service - Operation: order_created - Processing time: 256ms - RequestID: 9yqnd5tm0fk +2025-06-18T15:14:03.981Z [INFO] user-service - POST /api/v1/users - Status: 404 - Response time: 1866ms - IP: 192.168.227.233 - User: user_1052 - RequestID: cs9gnah0rpc +2025-06-18T15:14:04.081Z [INFO] payment-service - POST /api/v1/orders - Status: 201 - Response time: 452ms - IP: 192.168.144.38 - User: user_1087 - RequestID: dy5j236800a +2025-06-18T15:14:04.181Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 138ms - Rows affected: 28 - RequestID: 1npt9gt4jvd +2025-06-18T15:14:04.281Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 367ms - Rows affected: 66 - RequestID: 5ujl05cliey +2025-06-18T15:14:04.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.181.225 - RequestID: dho9q3o99g +2025-06-18T15:14:04.481Z [TRACE] notification-service - Operation: cache_miss - Processing time: 437ms - RequestID: qpb3p4nda8n +2025-06-18T15:14:04.581Z [DEBUG] user-service - Operation: cache_hit - Processing time: 157ms - RequestID: z5cef6ayeah +2025-06-18T15:14:04.681Z [INFO] order-service - Database DELETE on orders - Execution time: 85ms - Rows affected: 64 - RequestID: y19mguhlng +2025-06-18T15:14:04.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 287ms - RequestID: lbhxsy9mp37 +2025-06-18T15:14:04.881Z [TRACE] payment-service - DELETE /api/v1/users - Status: 401 - Response time: 861ms - IP: 192.168.31.117 - User: user_1057 - RequestID: m5kxhqnkxc +2025-06-18T15:14:04.981Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 339ms - Rows affected: 6 - RequestID: zb2vreig98n +2025-06-18T15:14:05.081Z [INFO] order-service - DELETE /api/v1/orders - Status: 200 - Response time: 1382ms - IP: 192.168.30.79 - User: user_1058 - RequestID: qxjofjw0pvh +2025-06-18T15:14:05.181Z [TRACE] order-service - PUT /api/v1/orders - Status: 500 - Response time: 1840ms - IP: 192.168.68.128 - User: user_1071 - RequestID: xfqinh7mo9k +2025-06-18T15:14:05.281Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 609ms - RequestID: z5k45w4cdy +2025-06-18T15:14:05.381Z [INFO] notification-service - PATCH /api/v1/payments - Status: 404 - Response time: 1377ms - IP: 192.168.68.128 - User: user_1096 - RequestID: redgnixmsb +2025-06-18T15:14:05.481Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 502 - Response time: 1736ms - IP: 192.168.133.7 - User: user_1078 - RequestID: wqb5pivqqeg +2025-06-18T15:14:05.581Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 70ms - Rows affected: 51 - RequestID: k44updm7xgh +2025-06-18T15:14:05.681Z [TRACE] order-service - Auth event: password_change - User: user_1024 - IP: 192.168.147.171 - RequestID: 2xi7i0denla +2025-06-18T15:14:05.781Z [INFO] payment-service - Auth event: login_failed - User: user_1068 - IP: 192.168.100.240 - RequestID: poud9al97n +2025-06-18T15:14:05.881Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 984ms - RequestID: 38ynfbh3rcn +2025-06-18T15:14:05.981Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1585ms - IP: 192.168.64.33 - User: user_1042 - RequestID: yy7cd0c3phb +2025-06-18T15:14:06.081Z [DEBUG] order-service - POST /api/v1/inventory - Status: 401 - Response time: 289ms - IP: 192.168.247.134 - User: user_1018 - RequestID: en30xtkv9t4 +2025-06-18T15:14:06.181Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 201 - Response time: 395ms - IP: 192.168.235.117 - User: user_1004 - RequestID: a77x4dfqn3o +2025-06-18T15:14:06.281Z [INFO] auth-service - Operation: cache_hit - Processing time: 794ms - RequestID: yu3siwhznn +2025-06-18T15:14:06.381Z [INFO] order-service - Database SELECT on products - Execution time: 500ms - Rows affected: 40 - RequestID: kawpgoct2h +2025-06-18T15:14:06.481Z [INFO] notification-service - Operation: inventory_updated - Processing time: 545ms - RequestID: uz9ng3mgebr +2025-06-18T15:14:06.581Z [INFO] notification-service - Database INSERT on orders - Execution time: 3ms - Rows affected: 25 - RequestID: wpfgisfxywc +2025-06-18T15:14:06.681Z [DEBUG] order-service - Auth event: password_change - User: user_1039 - IP: 192.168.194.41 - RequestID: 4pp3mlfcbqs +2025-06-18T15:14:06.781Z [INFO] auth-service - Database INSERT on orders - Execution time: 402ms - Rows affected: 16 - RequestID: yslk3jnu6u +2025-06-18T15:14:06.881Z [TRACE] auth-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.32.38 - RequestID: 4tuwiamfvcv +2025-06-18T15:14:06.981Z [TRACE] user-service - Auth event: login_failed - User: user_1052 - IP: 192.168.68.128 - RequestID: 8gltmogpnx +2025-06-18T15:14:07.081Z [TRACE] order-service - Auth event: login_failed - User: user_1016 - IP: 192.168.247.134 - RequestID: 2e4sbbrumr8 +2025-06-18T15:14:07.181Z [INFO] user-service - Auth event: logout - User: user_1007 - IP: 192.168.147.171 - RequestID: x44sw8xpdn +2025-06-18T15:14:07.281Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 1769ms - IP: 192.168.79.141 - User: user_1078 - RequestID: 74hull9y1of +2025-06-18T15:14:07.381Z [TRACE] payment-service - Operation: cache_miss - Processing time: 456ms - RequestID: m6w4ze4dej9 +2025-06-18T15:14:07.481Z [INFO] order-service - Operation: cache_hit - Processing time: 340ms - RequestID: vk9recxmy6 +2025-06-18T15:14:07.581Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 233ms - Rows affected: 92 - RequestID: gbqve28ios +2025-06-18T15:14:07.681Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 200 - Response time: 1110ms - IP: 192.168.247.134 - User: user_1017 - RequestID: jym9npvo0yj +2025-06-18T15:14:07.781Z [INFO] user-service - Database DELETE on users - Execution time: 233ms - Rows affected: 97 - RequestID: he2jdxjn1s6 +2025-06-18T15:14:07.881Z [INFO] user-service - Auth event: logout - User: user_1034 - IP: 192.168.1.152 - RequestID: 7w2l3nfn8el +2025-06-18T15:14:07.981Z [INFO] order-service - Operation: order_created - Processing time: 955ms - RequestID: cq4hud0tfu +2025-06-18T15:14:08.081Z [TRACE] order-service - Operation: payment_processed - Processing time: 539ms - RequestID: 4f2x5tw1xp2 +2025-06-18T15:14:08.181Z [TRACE] order-service - Auth event: login_attempt - User: user_1076 - IP: 192.168.28.146 - RequestID: 7zklzkr7qd2 +2025-06-18T15:14:08.281Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 883ms - IP: 192.168.138.123 - User: user_1010 - RequestID: qnocrg21e3 +2025-06-18T15:14:08.381Z [INFO] order-service - Auth event: login_success - User: user_1070 - IP: 192.168.242.165 - RequestID: a6ifqbbway5 +2025-06-18T15:14:08.481Z [TRACE] notification-service - Database DELETE on users - Execution time: 352ms - Rows affected: 14 - RequestID: e269bum8n5g +2025-06-18T15:14:08.581Z [TRACE] order-service - POST /api/v1/orders - Status: 503 - Response time: 1072ms - IP: 192.168.133.7 - User: user_1082 - RequestID: jucbyi9rb1 +2025-06-18T15:14:08.681Z [TRACE] payment-service - Auth event: password_change - User: user_1015 - IP: 192.168.242.165 - RequestID: lvepzxdf5n +2025-06-18T15:14:08.781Z [INFO] auth-service - Database DELETE on sessions - Execution time: 155ms - Rows affected: 20 - RequestID: 99qhwtb4wv +2025-06-18T15:14:08.881Z [DEBUG] user-service - Operation: notification_queued - Processing time: 661ms - RequestID: eiokb8lw4ts +2025-06-18T15:14:08.981Z [INFO] notification-service - Auth event: login_success - User: user_1023 - IP: 192.168.104.37 - RequestID: jy61szer6z +2025-06-18T15:14:09.081Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 206ms - Rows affected: 40 - RequestID: 2uysjeb3onf +2025-06-18T15:14:09.181Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 322ms - Rows affected: 52 - RequestID: yk9tfbkxcz +2025-06-18T15:14:09.281Z [INFO] notification-service - Database DELETE on sessions - Execution time: 16ms - Rows affected: 44 - RequestID: mstoah2niq9 +2025-06-18T15:14:09.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.147.171 - RequestID: e0kgch0houu +2025-06-18T15:14:09.481Z [TRACE] order-service - Auth event: logout - User: user_1051 - IP: 192.168.227.77 - RequestID: zjltyei6f19 +2025-06-18T15:14:09.581Z [TRACE] user-service - Operation: webhook_sent - Processing time: 937ms - RequestID: 6as271f950p +2025-06-18T15:14:09.681Z [INFO] order-service - Auth event: password_change - User: user_1014 - IP: 192.168.46.63 - RequestID: s62sz40a4hr +2025-06-18T15:14:09.781Z [INFO] payment-service - Operation: notification_queued - Processing time: 390ms - RequestID: q7dqpwmpqj +2025-06-18T15:14:09.881Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 37ms - Rows affected: 76 - RequestID: ajinuc3jhn +2025-06-18T15:14:09.981Z [INFO] notification-service - Operation: cache_miss - Processing time: 905ms - RequestID: r2jkyaam21 +2025-06-18T15:14:10.081Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 730ms - IP: 192.168.174.114 - User: user_1018 - RequestID: ry2dkqf162g +2025-06-18T15:14:10.181Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 231ms - Rows affected: 1 - RequestID: 8ncm79tv0nx +2025-06-18T15:14:10.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 895ms - RequestID: d2woz8vo2c +2025-06-18T15:14:10.381Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 371ms - Rows affected: 85 - RequestID: 6tmhdmpmyx +2025-06-18T15:14:10.481Z [DEBUG] payment-service - Auth event: logout - User: user_1099 - IP: 192.168.144.38 - RequestID: p2lvgcgx3ar +2025-06-18T15:14:10.581Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 543ms - RequestID: s238z2n7rm +2025-06-18T15:14:10.681Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 157ms - RequestID: 8nrmz6dfamn +2025-06-18T15:14:10.781Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 1692ms - IP: 192.168.232.72 - User: user_1091 - RequestID: g3bffwnasjn +2025-06-18T15:14:10.881Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 131ms - Rows affected: 68 - RequestID: fz1gv9trpl9 +2025-06-18T15:14:10.981Z [TRACE] payment-service - Database INSERT on orders - Execution time: 153ms - Rows affected: 0 - RequestID: mhz2nqszd2i +2025-06-18T15:14:11.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.187.199 - RequestID: 54ytwoev0co +2025-06-18T15:14:11.181Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 842ms - IP: 192.168.229.123 - User: user_1044 - RequestID: c8e3vghfdkt +2025-06-18T15:14:11.281Z [INFO] user-service - Auth event: token_refresh - User: user_1021 - IP: 192.168.68.128 - RequestID: 9ilqenw5rnb +2025-06-18T15:14:11.381Z [TRACE] user-service - Auth event: login_success - User: user_1037 - IP: 192.168.232.72 - RequestID: ozcoaifp4n +2025-06-18T15:14:11.481Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 1012ms - RequestID: c4vwogkha3p +2025-06-18T15:14:11.581Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 201 - Response time: 1404ms - IP: 192.168.28.146 - User: user_1089 - RequestID: cy2wnurkpk +2025-06-18T15:14:11.681Z [TRACE] user-service - GET /api/v1/orders - Status: 404 - Response time: 1733ms - IP: 192.168.104.37 - User: user_1009 - RequestID: nof1fjufkfa +2025-06-18T15:14:11.781Z [DEBUG] order-service - Database SELECT on users - Execution time: 203ms - Rows affected: 8 - RequestID: he05ynevpbn +2025-06-18T15:14:11.881Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 888ms - IP: 192.168.46.63 - User: user_1054 - RequestID: 0hr5bbsm1we +2025-06-18T15:14:11.981Z [TRACE] order-service - Auth event: login_success - User: user_1070 - IP: 192.168.10.184 - RequestID: 693avyb1u7n +2025-06-18T15:14:12.081Z [INFO] order-service - DELETE /api/v1/inventory - Status: 201 - Response time: 796ms - IP: 192.168.147.171 - User: user_1081 - RequestID: 5cq8tgvqvv3 +2025-06-18T15:14:12.181Z [DEBUG] inventory-service - Operation: order_created - Processing time: 851ms - RequestID: 1b66w1h4wep +2025-06-18T15:14:12.281Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 111ms - RequestID: gjgnenwd1l +2025-06-18T15:14:12.381Z [TRACE] user-service - Auth event: password_change - User: user_1047 - IP: 192.168.28.146 - RequestID: 07f68o9800kq +2025-06-18T15:14:12.481Z [INFO] order-service - Database UPDATE on products - Execution time: 484ms - Rows affected: 98 - RequestID: jgzrpr7ecg8 +2025-06-18T15:14:12.581Z [TRACE] user-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.229.123 - RequestID: qfk0ks44f7c +2025-06-18T15:14:12.681Z [TRACE] inventory-service - Auth event: login_success - User: user_1025 - IP: 192.168.53.133 - RequestID: env9f9ofzwi +2025-06-18T15:14:12.781Z [INFO] user-service - PATCH /api/v1/users - Status: 400 - Response time: 1413ms - IP: 192.168.194.41 - User: user_1003 - RequestID: 7wuf0cetr3j +2025-06-18T15:14:12.881Z [INFO] auth-service - Auth event: login_failed - User: user_1002 - IP: 192.168.1.152 - RequestID: ryd8fbfrhq +2025-06-18T15:14:12.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.36.218 - RequestID: bbnnzxo861s +2025-06-18T15:14:13.081Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1977ms - IP: 192.168.30.79 - User: user_1040 - RequestID: 2mj7k5pu6nu +2025-06-18T15:14:13.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.10.184 - RequestID: rit08oczegp +2025-06-18T15:14:13.281Z [TRACE] auth-service - Operation: payment_processed - Processing time: 363ms - RequestID: 1e7fyr8v6ee +2025-06-18T15:14:13.381Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 828ms - IP: 192.168.1.152 - User: user_1015 - RequestID: 3tvp0gabcbk +2025-06-18T15:14:13.481Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 401 - Response time: 568ms - IP: 192.168.235.117 - User: user_1019 - RequestID: fv5n9em4k7o +2025-06-18T15:14:13.581Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1769ms - IP: 192.168.240.169 - User: user_1027 - RequestID: 5khvn1twr7b +2025-06-18T15:14:13.681Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1276ms - IP: 192.168.242.165 - User: user_1097 - RequestID: x8fr2jf0ti +2025-06-18T15:14:13.781Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 825ms - RequestID: bn1nihmxfis +2025-06-18T15:14:13.881Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1262ms - IP: 192.168.159.94 - User: user_1035 - RequestID: jk6x1f5vqki +2025-06-18T15:14:13.981Z [DEBUG] user-service - PATCH /api/v1/users - Status: 500 - Response time: 1201ms - IP: 192.168.141.100 - User: user_1053 - RequestID: s5vw0ahezde +2025-06-18T15:14:14.081Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 403 - Response time: 138ms - IP: 192.168.196.226 - User: user_1049 - RequestID: s05h6cyc1ar +2025-06-18T15:14:14.181Z [INFO] auth-service - Operation: email_sent - Processing time: 618ms - RequestID: um6q32bbiq +2025-06-18T15:14:14.281Z [INFO] order-service - PATCH /api/v1/payments - Status: 404 - Response time: 224ms - IP: 192.168.97.87 - User: user_1038 - RequestID: vns9ivkt6e +2025-06-18T15:14:14.381Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1034 - IP: 192.168.79.116 - RequestID: ft2r959m6od +2025-06-18T15:14:14.481Z [INFO] payment-service - Auth event: login_success - User: user_1056 - IP: 192.168.194.41 - RequestID: htklum8vpga +2025-06-18T15:14:14.581Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 431ms - RequestID: xdowxgvl5n +2025-06-18T15:14:14.681Z [TRACE] payment-service - Auth event: password_change - User: user_1076 - IP: 192.168.187.199 - RequestID: 3ieiausyix2 +2025-06-18T15:14:14.781Z [INFO] order-service - Operation: inventory_updated - Processing time: 933ms - RequestID: r9xfbogi8vi +2025-06-18T15:14:14.881Z [TRACE] user-service - Auth event: login_failed - User: user_1064 - IP: 192.168.13.72 - RequestID: 4ilc6y5akv4 +2025-06-18T15:14:14.981Z [TRACE] auth-service - Operation: cache_miss - Processing time: 527ms - RequestID: cqm8hivko1 +2025-06-18T15:14:15.081Z [INFO] auth-service - Auth event: login_failed - User: user_1029 - IP: 192.168.158.144 - RequestID: n0fkaj3yr9 +2025-06-18T15:14:15.181Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 127ms - RequestID: u2n38ezfmsb +2025-06-18T15:14:15.281Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 88ms - RequestID: jd6vy3udn3 +2025-06-18T15:14:15.381Z [INFO] user-service - POST /api/v1/users - Status: 200 - Response time: 1754ms - IP: 192.168.167.32 - User: user_1085 - RequestID: bfuyabu58s +2025-06-18T15:14:15.481Z [TRACE] user-service - Auth event: password_change - User: user_1079 - IP: 192.168.247.134 - RequestID: mc9b8bpwgx +2025-06-18T15:14:15.581Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 472ms - Rows affected: 74 - RequestID: gsnn31l5sfg +2025-06-18T15:14:15.681Z [TRACE] payment-service - Operation: order_created - Processing time: 477ms - RequestID: a1d2n0zectl +2025-06-18T15:14:15.781Z [INFO] auth-service - Operation: notification_queued - Processing time: 196ms - RequestID: 9y6ngmjvkr +2025-06-18T15:14:15.881Z [INFO] user-service - GET /api/v1/orders - Status: 401 - Response time: 857ms - IP: 192.168.211.72 - User: user_1040 - RequestID: 0ebz9098yzun +2025-06-18T15:14:15.981Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 438ms - Rows affected: 25 - RequestID: to9tzxj7aql +2025-06-18T15:14:16.081Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 147ms - Rows affected: 14 - RequestID: i7qytas19qe +2025-06-18T15:14:16.181Z [TRACE] payment-service - Operation: cache_hit - Processing time: 848ms - RequestID: fm7hjx4qh6a +2025-06-18T15:14:16.281Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 503 - Response time: 228ms - IP: 192.168.242.165 - User: user_1066 - RequestID: gwre2md37ip +2025-06-18T15:14:16.381Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 502 - Response time: 972ms - IP: 192.168.138.123 - User: user_1081 - RequestID: 1o3zr3l597e +2025-06-18T15:14:16.481Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 67ms - Rows affected: 7 - RequestID: 8an4qxcs0ek +2025-06-18T15:14:16.581Z [TRACE] notification-service - Operation: order_created - Processing time: 226ms - RequestID: flmyzrcfd1e +2025-06-18T15:14:16.681Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 986ms - IP: 192.168.247.134 - User: user_1023 - RequestID: ch7lxcogkk9 +2025-06-18T15:14:16.781Z [DEBUG] user-service - Auth event: logout - User: user_1045 - IP: 192.168.189.103 - RequestID: eedcyuq7nj +2025-06-18T15:14:16.881Z [INFO] auth-service - Auth event: password_change - User: user_1068 - IP: 192.168.11.60 - RequestID: kfvye7p3vf +2025-06-18T15:14:16.981Z [INFO] payment-service - GET /api/v1/users - Status: 403 - Response time: 628ms - IP: 192.168.85.229 - User: user_1040 - RequestID: uym9kqn9ipo +2025-06-18T15:14:17.081Z [TRACE] notification-service - POST /api/v1/payments - Status: 400 - Response time: 1960ms - IP: 192.168.30.79 - User: user_1039 - RequestID: hmydmf72fam +2025-06-18T15:14:17.181Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1566ms - IP: 192.168.10.184 - User: user_1085 - RequestID: iek89dikma +2025-06-18T15:14:17.281Z [INFO] inventory-service - Operation: order_created - Processing time: 915ms - RequestID: noiktc5su2o +2025-06-18T15:14:17.381Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 200ms - RequestID: oget6z91gk +2025-06-18T15:14:17.481Z [INFO] notification-service - Operation: webhook_sent - Processing time: 237ms - RequestID: emigcjlqeia +2025-06-18T15:14:17.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1000 - IP: 192.168.79.141 - RequestID: szb6hx2w9u +2025-06-18T15:14:17.681Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 483ms - IP: 192.168.113.218 - User: user_1025 - RequestID: h8vbdu3nqh5 +2025-06-18T15:14:17.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 227ms - RequestID: 5jdcuvqrxf6 +2025-06-18T15:14:17.881Z [TRACE] auth-service - Operation: payment_processed - Processing time: 234ms - RequestID: hx3sovx0t4n +2025-06-18T15:14:17.981Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 503 - Response time: 493ms - IP: 192.168.159.94 - User: user_1029 - RequestID: 7a3ha6bh6si +2025-06-18T15:14:18.081Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 976ms - IP: 192.168.181.225 - User: user_1072 - RequestID: 1hdx6mffgsu +2025-06-18T15:14:18.181Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 403 - Response time: 1133ms - IP: 192.168.144.38 - User: user_1094 - RequestID: obzyw7cp3xs +2025-06-18T15:14:18.281Z [TRACE] auth-service - Auth event: logout - User: user_1054 - IP: 192.168.53.133 - RequestID: koae85j510i +2025-06-18T15:14:18.381Z [DEBUG] user-service - Operation: payment_processed - Processing time: 347ms - RequestID: b041sy6ie49 +2025-06-18T15:14:18.481Z [DEBUG] auth-service - Auth event: login_success - User: user_1044 - IP: 192.168.242.165 - RequestID: j1pr3eaork +2025-06-18T15:14:18.581Z [DEBUG] order-service - Database INSERT on products - Execution time: 236ms - Rows affected: 92 - RequestID: xrq0fn6mqhl +2025-06-18T15:14:18.681Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 353ms - Rows affected: 39 - RequestID: iam0tbsbbka +2025-06-18T15:14:18.781Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 50ms - Rows affected: 26 - RequestID: 025fkibtenze +2025-06-18T15:14:18.881Z [INFO] payment-service - Database INSERT on users - Execution time: 108ms - Rows affected: 25 - RequestID: 9o6cxw69175 +2025-06-18T15:14:18.981Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 230ms - RequestID: ijzainp8s2 +2025-06-18T15:14:19.081Z [INFO] inventory-service - PUT /api/v1/orders - Status: 201 - Response time: 1644ms - IP: 192.168.10.184 - User: user_1095 - RequestID: hkw4fle84zu +2025-06-18T15:14:19.181Z [INFO] user-service - Auth event: login_failed - User: user_1096 - IP: 192.168.104.37 - RequestID: n1rq3h6o45d +2025-06-18T15:14:19.281Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1633ms - IP: 192.168.141.100 - User: user_1072 - RequestID: pryb7dr7r2 +2025-06-18T15:14:19.381Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 503 - Response time: 794ms - IP: 192.168.138.123 - User: user_1061 - RequestID: 3n81056w17r +2025-06-18T15:14:19.481Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 1001ms - RequestID: n18qar26i6a +2025-06-18T15:14:19.581Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 500 - Response time: 610ms - IP: 192.168.227.77 - User: user_1074 - RequestID: qu9kovdi0ro +2025-06-18T15:14:19.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.227.77 - RequestID: s8j01q13huo +2025-06-18T15:14:19.781Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 374ms - Rows affected: 27 - RequestID: ilrn0hwdkx +2025-06-18T15:14:19.881Z [TRACE] order-service - PATCH /api/v1/orders - Status: 404 - Response time: 773ms - IP: 192.168.64.33 - User: user_1056 - RequestID: zq79sqtmnms +2025-06-18T15:14:19.981Z [TRACE] auth-service - Database DELETE on orders - Execution time: 467ms - Rows affected: 48 - RequestID: 3msi5faqln +2025-06-18T15:14:20.081Z [INFO] notification-service - Operation: webhook_sent - Processing time: 184ms - RequestID: tvbrj9tl6x +2025-06-18T15:14:20.181Z [DEBUG] order-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.79.116 - RequestID: lbb04r6c2x +2025-06-18T15:14:20.281Z [INFO] auth-service - Database UPDATE on orders - Execution time: 409ms - Rows affected: 34 - RequestID: ke66vu1ikvq +2025-06-18T15:14:20.381Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1575ms - IP: 192.168.13.72 - User: user_1068 - RequestID: hyuizpxl6me +2025-06-18T15:14:20.481Z [INFO] user-service - DELETE /api/v1/payments - Status: 500 - Response time: 1374ms - IP: 192.168.194.41 - User: user_1025 - RequestID: 1dw0vadpvbv +2025-06-18T15:14:20.581Z [INFO] order-service - Operation: email_sent - Processing time: 758ms - RequestID: jfhgvr8ioxo +2025-06-18T15:14:20.681Z [INFO] auth-service - PUT /api/v1/orders - Status: 503 - Response time: 1605ms - IP: 192.168.158.144 - User: user_1082 - RequestID: 6pbpletuk9c +2025-06-18T15:14:20.781Z [TRACE] order-service - Operation: payment_processed - Processing time: 455ms - RequestID: im5ok7htmu9 +2025-06-18T15:14:20.881Z [DEBUG] user-service - Auth event: login_success - User: user_1064 - IP: 192.168.44.5 - RequestID: 5i9zphh4p7 +2025-06-18T15:14:20.981Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 60ms - Rows affected: 99 - RequestID: gz7yikp1d7i +2025-06-18T15:14:21.081Z [TRACE] payment-service - Operation: notification_queued - Processing time: 711ms - RequestID: 3qpptlkk8pv +2025-06-18T15:14:21.181Z [DEBUG] user-service - Database SELECT on payments - Execution time: 318ms - Rows affected: 54 - RequestID: rdnpoaeokg +2025-06-18T15:14:21.281Z [TRACE] payment-service - Operation: notification_queued - Processing time: 193ms - RequestID: haa5704rnv9 +2025-06-18T15:14:21.381Z [TRACE] payment-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1412ms - IP: 192.168.36.218 - User: user_1000 - RequestID: rcn6kwyj99 +2025-06-18T15:14:21.481Z [INFO] user-service - Operation: cache_hit - Processing time: 823ms - RequestID: bv6lp0ezchg +2025-06-18T15:14:21.581Z [INFO] auth-service - Auth event: login_failed - User: user_1081 - IP: 192.168.79.141 - RequestID: bgwpes9krfd +2025-06-18T15:14:21.681Z [TRACE] notification-service - Auth event: login_success - User: user_1061 - IP: 192.168.14.77 - RequestID: 6k78r2v3bv3 +2025-06-18T15:14:21.781Z [INFO] order-service - GET /api/v1/auth/login - Status: 200 - Response time: 1140ms - IP: 192.168.240.169 - User: user_1032 - RequestID: mjw2s1zjl7l +2025-06-18T15:14:21.881Z [INFO] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 417ms - IP: 192.168.31.117 - User: user_1092 - RequestID: i45g7ywqbwd +2025-06-18T15:14:21.981Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 285ms - RequestID: a6sqhft9dc +2025-06-18T15:14:22.081Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1869ms - IP: 192.168.133.7 - User: user_1045 - RequestID: ppj1lhsfzhs +2025-06-18T15:14:22.181Z [TRACE] order-service - Operation: order_created - Processing time: 266ms - RequestID: qhyvjm73ls +2025-06-18T15:14:22.281Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 251ms - Rows affected: 23 - RequestID: hyvfnm5tpnp +2025-06-18T15:14:22.381Z [INFO] notification-service - Database UPDATE on users - Execution time: 62ms - Rows affected: 6 - RequestID: b5vklk9jzjd +2025-06-18T15:14:22.481Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 981ms - IP: 192.168.32.38 - User: user_1098 - RequestID: ki19fsyxrlo +2025-06-18T15:14:22.581Z [TRACE] user-service - Database SELECT on orders - Execution time: 121ms - Rows affected: 44 - RequestID: grps8nisnit +2025-06-18T15:14:22.681Z [TRACE] user-service - Database INSERT on orders - Execution time: 57ms - Rows affected: 49 - RequestID: enj9i2q072m +2025-06-18T15:14:22.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1051 - IP: 192.168.235.117 - RequestID: 2orcsgrqlnl +2025-06-18T15:14:22.881Z [TRACE] auth-service - Operation: cache_hit - Processing time: 1044ms - RequestID: yhbf2ofw6pq +2025-06-18T15:14:22.981Z [DEBUG] order-service - Operation: cache_hit - Processing time: 621ms - RequestID: zwhx3alu3b +2025-06-18T15:14:23.081Z [TRACE] payment-service - Auth event: logout - User: user_1052 - IP: 192.168.44.5 - RequestID: shpu73zo62 +2025-06-18T15:14:23.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.229.123 - RequestID: yld81cr7ajf +2025-06-18T15:14:23.281Z [TRACE] user-service - Auth event: logout - User: user_1027 - IP: 192.168.85.229 - RequestID: xtcofstgcg9 +2025-06-18T15:14:23.381Z [TRACE] notification-service - Operation: email_sent - Processing time: 234ms - RequestID: r2rdec8trtg +2025-06-18T15:14:23.481Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1815ms - IP: 192.168.167.32 - User: user_1072 - RequestID: yz0dhdsxn9q +2025-06-18T15:14:23.581Z [TRACE] user-service - PUT /api/v1/inventory - Status: 400 - Response time: 1008ms - IP: 192.168.174.114 - User: user_1094 - RequestID: sz9ckctpcq9 +2025-06-18T15:14:23.681Z [INFO] auth-service - Database SELECT on sessions - Execution time: 274ms - Rows affected: 20 - RequestID: pejjcbgj5n +2025-06-18T15:14:23.781Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 145ms - Rows affected: 94 - RequestID: l715uloq1pr +2025-06-18T15:14:23.881Z [TRACE] order-service - Database INSERT on products - Execution time: 242ms - Rows affected: 27 - RequestID: yxmttk0olb +2025-06-18T15:14:23.981Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 174ms - Rows affected: 62 - RequestID: e81afdw3ho8 +2025-06-18T15:14:24.081Z [TRACE] order-service - Operation: notification_queued - Processing time: 130ms - RequestID: 6dzs2vp5wp8 +2025-06-18T15:14:24.181Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 400 - Response time: 969ms - IP: 192.168.32.38 - User: user_1088 - RequestID: 9n7d0pfnqlo +2025-06-18T15:14:24.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.158.144 - RequestID: 1zxevqd00ql +2025-06-18T15:14:24.381Z [TRACE] notification-service - Database DELETE on payments - Execution time: 339ms - Rows affected: 61 - RequestID: exazv1c3me +2025-06-18T15:14:24.481Z [DEBUG] user-service - Auth event: logout - User: user_1038 - IP: 192.168.242.165 - RequestID: z6ga2nl3jxr +2025-06-18T15:14:24.581Z [INFO] auth-service - Database SELECT on products - Execution time: 177ms - Rows affected: 83 - RequestID: 2pm8i08s7vo +2025-06-18T15:14:24.681Z [DEBUG] order-service - Operation: cache_hit - Processing time: 898ms - RequestID: vhhy3i0019g +2025-06-18T15:14:24.781Z [DEBUG] user-service - Auth event: password_change - User: user_1062 - IP: 192.168.31.117 - RequestID: qvea8wmrvie +2025-06-18T15:14:24.881Z [TRACE] notification-service - Operation: order_created - Processing time: 875ms - RequestID: xlvqie5ybeh +2025-06-18T15:14:24.981Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 911ms - RequestID: ds9mhrdowa9 +2025-06-18T15:14:25.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 184ms - RequestID: b6r8lgpu8g8 +2025-06-18T15:14:25.181Z [DEBUG] auth-service - GET /api/v1/orders - Status: 400 - Response time: 38ms - IP: 192.168.229.123 - User: user_1045 - RequestID: 0fkhnoutgnn +2025-06-18T15:14:25.281Z [DEBUG] user-service - Auth event: password_change - User: user_1091 - IP: 192.168.144.38 - RequestID: yhvi5wbmh2d +2025-06-18T15:14:25.381Z [DEBUG] user-service - POST /api/v1/inventory - Status: 404 - Response time: 80ms - IP: 192.168.167.32 - User: user_1081 - RequestID: 62rwdx5kcw6 +2025-06-18T15:14:25.481Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 65ms - Rows affected: 27 - RequestID: dtwa8b2l5nr +2025-06-18T15:14:25.581Z [DEBUG] auth-service - Operation: email_sent - Processing time: 327ms - RequestID: ixxey7drgn +2025-06-18T15:14:25.681Z [TRACE] order-service - Operation: order_created - Processing time: 298ms - RequestID: z41at2v5p8r +2025-06-18T15:14:25.781Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 893ms - RequestID: z23wn9y9g78 +2025-06-18T15:14:25.881Z [INFO] user-service - GET /api/v1/users - Status: 404 - Response time: 400ms - IP: 192.168.1.152 - User: user_1043 - RequestID: y0nwfwpn4vi +2025-06-18T15:14:25.981Z [INFO] notification-service - Auth event: login_success - User: user_1020 - IP: 192.168.104.37 - RequestID: 7p7y0erjccq +2025-06-18T15:14:26.081Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 330ms - Rows affected: 29 - RequestID: aft6k0p6qx7 +2025-06-18T15:14:26.181Z [TRACE] order-service - Database INSERT on payments - Execution time: 216ms - Rows affected: 51 - RequestID: jrp73yh4c7 +2025-06-18T15:14:26.281Z [INFO] user-service - Database UPDATE on sessions - Execution time: 87ms - Rows affected: 45 - RequestID: 024px12g4wol +2025-06-18T15:14:26.381Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 404 - Response time: 1078ms - IP: 192.168.30.79 - User: user_1012 - RequestID: dnzajsdxs5d +2025-06-18T15:14:26.481Z [INFO] payment-service - Operation: cache_hit - Processing time: 956ms - RequestID: co23nnw1yi6 +2025-06-18T15:14:26.581Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 401 - Response time: 798ms - IP: 192.168.247.134 - User: user_1056 - RequestID: 3zrun7u4s0u +2025-06-18T15:14:26.681Z [TRACE] payment-service - Database SELECT on payments - Execution time: 466ms - Rows affected: 35 - RequestID: h2abuogw08k +2025-06-18T15:14:26.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 159ms - RequestID: y3cjr1xmqi +2025-06-18T15:14:26.881Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 503 - Response time: 552ms - IP: 192.168.33.76 - User: user_1086 - RequestID: ey9stg2l4as +2025-06-18T15:14:26.981Z [TRACE] order-service - Operation: email_sent - Processing time: 97ms - RequestID: gj6nmcnkrw +2025-06-18T15:14:27.081Z [TRACE] auth-service - Auth event: login_success - User: user_1069 - IP: 192.168.68.128 - RequestID: sl52qphg0b +2025-06-18T15:14:27.181Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1548ms - IP: 192.168.10.184 - User: user_1052 - RequestID: si10fqeqh0o +2025-06-18T15:14:27.281Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 119ms - Rows affected: 74 - RequestID: y1jzur97qq +2025-06-18T15:14:27.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.194.41 - RequestID: xnpmxjrcjca +2025-06-18T15:14:27.481Z [INFO] order-service - Auth event: login_failed - User: user_1067 - IP: 192.168.97.87 - RequestID: 1qs5hiawbvd +2025-06-18T15:14:27.581Z [TRACE] inventory-service - Auth event: logout - User: user_1008 - IP: 192.168.79.143 - RequestID: m2zl96yxjcb +2025-06-18T15:14:27.681Z [DEBUG] payment-service - POST /api/v1/orders - Status: 401 - Response time: 797ms - IP: 192.168.240.169 - User: user_1013 - RequestID: xlu7g5vg1do +2025-06-18T15:14:27.781Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 392ms - Rows affected: 58 - RequestID: x7bapxrvis +2025-06-18T15:14:27.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.242.165 - RequestID: e4t3a397yn4 +2025-06-18T15:14:27.981Z [TRACE] user-service - Database DELETE on products - Execution time: 331ms - Rows affected: 85 - RequestID: 9162asbpdip +2025-06-18T15:14:28.081Z [TRACE] auth-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.11.60 - RequestID: 28j2mou6c95 +2025-06-18T15:14:28.181Z [TRACE] user-service - Database SELECT on sessions - Execution time: 239ms - Rows affected: 85 - RequestID: dzc61z2u0k +2025-06-18T15:14:28.281Z [TRACE] auth-service - Database SELECT on users - Execution time: 25ms - Rows affected: 29 - RequestID: ds2iuiruja4 +2025-06-18T15:14:28.381Z [TRACE] auth-service - Operation: order_created - Processing time: 664ms - RequestID: 2nxosfrdb5r +2025-06-18T15:14:28.481Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 401 - Response time: 787ms - IP: 192.168.68.158 - User: user_1040 - RequestID: 29axclk9xwr +2025-06-18T15:14:28.581Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1290ms - IP: 192.168.232.72 - User: user_1016 - RequestID: 3tko3huhbe +2025-06-18T15:14:28.681Z [TRACE] notification-service - Database DELETE on users - Execution time: 239ms - Rows affected: 80 - RequestID: mtpo8l6hrq9 +2025-06-18T15:14:28.781Z [TRACE] inventory-service - GET /api/v1/orders - Status: 200 - Response time: 370ms - IP: 192.168.32.38 - User: user_1085 - RequestID: tr6rb8zqpop +2025-06-18T15:14:28.881Z [INFO] auth-service - Operation: cache_miss - Processing time: 617ms - RequestID: ydirwcoz4a +2025-06-18T15:14:28.981Z [TRACE] payment-service - Operation: cache_miss - Processing time: 555ms - RequestID: 3fqrzln1096 +2025-06-18T15:14:29.081Z [TRACE] auth-service - Auth event: logout - User: user_1093 - IP: 192.168.46.63 - RequestID: voshrfs8m0b +2025-06-18T15:14:29.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 376ms - RequestID: vpqwsy5oty9 +2025-06-18T15:14:29.281Z [TRACE] order-service - PUT /api/v1/orders - Status: 200 - Response time: 73ms - IP: 192.168.158.144 - User: user_1021 - RequestID: 2n9ojmfkppj +2025-06-18T15:14:29.381Z [INFO] order-service - Database INSERT on products - Execution time: 293ms - Rows affected: 73 - RequestID: qm3tctp5zoi +2025-06-18T15:14:29.481Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 200 - Response time: 1220ms - IP: 192.168.85.229 - User: user_1047 - RequestID: vmk0thop14r +2025-06-18T15:14:29.581Z [INFO] notification-service - Auth event: password_change - User: user_1089 - IP: 192.168.159.94 - RequestID: oagugvqjayb +2025-06-18T15:14:29.681Z [INFO] payment-service - Database UPDATE on products - Execution time: 240ms - Rows affected: 83 - RequestID: ole0ze82d0k +2025-06-18T15:14:29.781Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 73ms - Rows affected: 29 - RequestID: 2d6bifkisjd +2025-06-18T15:14:29.881Z [INFO] auth-service - GET /api/v1/inventory - Status: 403 - Response time: 480ms - IP: 192.168.196.226 - User: user_1066 - RequestID: b1b9fknwl8b +2025-06-18T15:14:29.981Z [TRACE] order-service - Database UPDATE on payments - Execution time: 57ms - Rows affected: 49 - RequestID: 5itm1abd51s +2025-06-18T15:14:30.081Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 502 - Response time: 548ms - IP: 192.168.235.117 - User: user_1066 - RequestID: 2j0xs8x6xl2 +2025-06-18T15:14:30.181Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 779ms - RequestID: sqyks26gxin +2025-06-18T15:14:30.281Z [INFO] user-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.79.116 - RequestID: jz2vglhgjrj +2025-06-18T15:14:30.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.133.7 - RequestID: s9a6k6epuk +2025-06-18T15:14:30.481Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1622ms - IP: 192.168.240.169 - User: user_1057 - RequestID: rk7doeb0d6p +2025-06-18T15:14:30.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.32.38 - RequestID: nauviamol7j +2025-06-18T15:14:30.681Z [INFO] payment-service - GET /api/v1/auth/login - Status: 404 - Response time: 1339ms - IP: 192.168.158.144 - User: user_1059 - RequestID: 8y64rd881jp +2025-06-18T15:14:30.781Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 755ms - RequestID: 6wx5i75a6qx +2025-06-18T15:14:30.881Z [INFO] user-service - Operation: inventory_updated - Processing time: 786ms - RequestID: ahejvjpw8ps +2025-06-18T15:14:30.981Z [TRACE] inventory-service - PUT /api/v1/users - Status: 400 - Response time: 628ms - IP: 192.168.13.72 - User: user_1081 - RequestID: g427qz822hg +2025-06-18T15:14:31.081Z [TRACE] user-service - Auth event: login_success - User: user_1029 - IP: 192.168.187.199 - RequestID: afiinrm0gtg +2025-06-18T15:14:31.181Z [TRACE] user-service - Auth event: login_success - User: user_1042 - IP: 192.168.44.5 - RequestID: aj0i6e4a7z +2025-06-18T15:14:31.281Z [DEBUG] order-service - Auth event: logout - User: user_1009 - IP: 192.168.227.233 - RequestID: au82okzpsgl +2025-06-18T15:14:31.381Z [DEBUG] user-service - Operation: cache_hit - Processing time: 879ms - RequestID: g7m1thbnvhu +2025-06-18T15:14:31.481Z [INFO] order-service - Operation: payment_processed - Processing time: 1026ms - RequestID: vns2iatzpvg +2025-06-18T15:14:31.581Z [DEBUG] order-service - Auth event: logout - User: user_1063 - IP: 192.168.31.117 - RequestID: hpfqha405kp +2025-06-18T15:14:31.681Z [DEBUG] user-service - Database INSERT on users - Execution time: 302ms - Rows affected: 46 - RequestID: hryxwqeqs6r +2025-06-18T15:14:31.781Z [INFO] notification-service - PATCH /api/v1/users - Status: 200 - Response time: 1806ms - IP: 192.168.196.226 - User: user_1081 - RequestID: x5s7f5hy7br +2025-06-18T15:14:31.881Z [TRACE] order-service - PUT /api/v1/orders - Status: 500 - Response time: 792ms - IP: 192.168.227.233 - User: user_1074 - RequestID: v5vnmb12ufj +2025-06-18T15:14:31.981Z [INFO] user-service - Operation: order_created - Processing time: 366ms - RequestID: 96svkgrju7b +2025-06-18T15:14:32.081Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 1037ms - RequestID: viuyur5ps7 +2025-06-18T15:14:32.181Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 997ms - RequestID: 566kq3lq7mn +2025-06-18T15:14:32.281Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 450ms - Rows affected: 14 - RequestID: rdyi36g4dto +2025-06-18T15:14:32.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.1.152 - RequestID: vyl27f62wwf +2025-06-18T15:14:32.481Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 493ms - RequestID: 9kq6vtpgo3c +2025-06-18T15:14:32.581Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 502 - Response time: 603ms - IP: 192.168.133.7 - User: user_1035 - RequestID: a5vkfk8tpye +2025-06-18T15:14:32.681Z [INFO] notification-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.32.38 - RequestID: da5bo3r7koq +2025-06-18T15:14:32.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.147.171 - RequestID: hbpbg3a3wj +2025-06-18T15:14:32.881Z [TRACE] user-service - Operation: webhook_sent - Processing time: 182ms - RequestID: y3fnlb79l5 +2025-06-18T15:14:32.981Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 548ms - RequestID: sk6cvzf0hb +2025-06-18T15:14:33.081Z [DEBUG] order-service - Auth event: logout - User: user_1065 - IP: 192.168.138.123 - RequestID: l6bsujsml8o +2025-06-18T15:14:33.181Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 503 - Response time: 559ms - IP: 192.168.144.38 - User: user_1020 - RequestID: cpot2urgy9v +2025-06-18T15:14:33.281Z [INFO] order-service - Auth event: logout - User: user_1098 - IP: 192.168.13.72 - RequestID: gudqiwfjfol +2025-06-18T15:14:33.381Z [INFO] inventory-service - PATCH /api/v1/orders - Status: 403 - Response time: 1920ms - IP: 192.168.64.33 - User: user_1034 - RequestID: 4d5x98v2gs6 +2025-06-18T15:14:33.481Z [DEBUG] user-service - Auth event: login_failed - User: user_1039 - IP: 192.168.44.5 - RequestID: guql65ful1f +2025-06-18T15:14:33.581Z [INFO] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 1093ms - IP: 192.168.113.218 - User: user_1025 - RequestID: 5rhb3wiel46 +2025-06-18T15:14:33.681Z [INFO] payment-service - Auth event: login_success - User: user_1036 - IP: 192.168.240.169 - RequestID: s3n3n9hxu9o +2025-06-18T15:14:33.781Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 56ms - Rows affected: 48 - RequestID: vgkepa94eq +2025-06-18T15:14:33.881Z [TRACE] order-service - Operation: inventory_updated - Processing time: 836ms - RequestID: dljnkzzdoc +2025-06-18T15:14:33.981Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 845ms - IP: 192.168.85.229 - User: user_1099 - RequestID: 6heb7xfn7te +2025-06-18T15:14:34.081Z [INFO] inventory-service - Operation: payment_processed - Processing time: 613ms - RequestID: avmk7twgzv +2025-06-18T15:14:34.181Z [INFO] inventory-service - Operation: cache_hit - Processing time: 55ms - RequestID: t7i8hepuy5n +2025-06-18T15:14:34.281Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.64.33 - RequestID: s8j7j4mll9r +2025-06-18T15:14:34.381Z [DEBUG] order-service - Database UPDATE on users - Execution time: 135ms - Rows affected: 10 - RequestID: e0reapf2qja +2025-06-18T15:14:34.481Z [TRACE] payment-service - Auth event: logout - User: user_1088 - IP: 192.168.11.60 - RequestID: kegwgg4mvb +2025-06-18T15:14:34.581Z [DEBUG] order-service - Auth event: login_success - User: user_1026 - IP: 192.168.46.63 - RequestID: rzpjdafh8n +2025-06-18T15:14:34.681Z [TRACE] user-service - Operation: order_created - Processing time: 447ms - RequestID: gpnjfvlr7vr +2025-06-18T15:14:34.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 706ms - RequestID: vrhdx9ets9l +2025-06-18T15:14:34.881Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 182ms - IP: 192.168.79.116 - User: user_1088 - RequestID: xueh35o9cqm +2025-06-18T15:14:34.981Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 682ms - RequestID: e3zrmulxgxh +2025-06-18T15:14:35.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 832ms - RequestID: 4alx2kwzhhx +2025-06-18T15:14:35.181Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1784ms - IP: 192.168.14.77 - User: user_1053 - RequestID: zlqxl2sb38r +2025-06-18T15:14:35.281Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 403ms - Rows affected: 54 - RequestID: jq6mmn9fqd +2025-06-18T15:14:35.381Z [INFO] user-service - Database SELECT on sessions - Execution time: 154ms - Rows affected: 19 - RequestID: pjb4b6xpsu +2025-06-18T15:14:35.481Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 503 - Response time: 916ms - IP: 192.168.181.225 - User: user_1092 - RequestID: 2u8a2jnkvvz +2025-06-18T15:14:35.581Z [INFO] user-service - Operation: order_created - Processing time: 252ms - RequestID: 4g853cxhmd6 +2025-06-18T15:14:35.681Z [INFO] payment-service - Auth event: password_change - User: user_1093 - IP: 192.168.211.72 - RequestID: hoih1bbr4p +2025-06-18T15:14:35.781Z [TRACE] auth-service - Operation: notification_queued - Processing time: 734ms - RequestID: xss4et09jcb +2025-06-18T15:14:35.881Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 105ms - Rows affected: 20 - RequestID: 4fdk8ra17c6 +2025-06-18T15:14:35.981Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 307ms - Rows affected: 67 - RequestID: b80lj7d2u17 +2025-06-18T15:14:36.081Z [INFO] order-service - GET /api/v1/orders - Status: 404 - Response time: 788ms - IP: 192.168.167.32 - User: user_1059 - RequestID: zwj7l1o7i0k +2025-06-18T15:14:36.181Z [INFO] user-service - Database DELETE on products - Execution time: 129ms - Rows affected: 39 - RequestID: hjfu7d46uu8 +2025-06-18T15:14:36.281Z [DEBUG] order-service - Auth event: logout - User: user_1016 - IP: 192.168.1.152 - RequestID: 9eqj9bkmv26 +2025-06-18T15:14:36.381Z [INFO] payment-service - Operation: cache_hit - Processing time: 765ms - RequestID: oim3g3qprm +2025-06-18T15:14:36.481Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 500 - Response time: 1605ms - IP: 192.168.79.116 - User: user_1083 - RequestID: m42zln0uo8b +2025-06-18T15:14:36.581Z [TRACE] notification-service - Auth event: password_change - User: user_1037 - IP: 192.168.68.128 - RequestID: blgy34lams +2025-06-18T15:14:36.681Z [INFO] order-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.33.76 - RequestID: r8v31zwxdt +2025-06-18T15:14:36.781Z [TRACE] notification-service - Operation: notification_queued - Processing time: 601ms - RequestID: v08zfq9n5ur +2025-06-18T15:14:36.881Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 500 - Response time: 978ms - IP: 192.168.28.146 - User: user_1063 - RequestID: h8ebxzm6utn +2025-06-18T15:14:36.981Z [INFO] inventory-service - Operation: order_created - Processing time: 793ms - RequestID: g6m8xi18wfl +2025-06-18T15:14:37.081Z [DEBUG] order-service - Database INSERT on payments - Execution time: 327ms - Rows affected: 51 - RequestID: 1swzj4p3lyv +2025-06-18T15:14:37.181Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 400 - Response time: 1213ms - IP: 192.168.227.77 - User: user_1041 - RequestID: o15svim18go +2025-06-18T15:14:37.281Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 298ms - RequestID: s3rgqtk0uqr +2025-06-18T15:14:37.381Z [INFO] payment-service - Operation: order_created - Processing time: 533ms - RequestID: 8h7req60tev +2025-06-18T15:14:37.481Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 468ms - RequestID: dbmzg5wr4r +2025-06-18T15:14:37.581Z [INFO] payment-service - Operation: email_sent - Processing time: 600ms - RequestID: b85c8os9pji +2025-06-18T15:14:37.681Z [TRACE] auth-service - Auth event: login_success - User: user_1041 - IP: 192.168.113.218 - RequestID: 9w7d6maomvp +2025-06-18T15:14:37.781Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 270ms - Rows affected: 52 - RequestID: g7vs7255mfb +2025-06-18T15:14:37.881Z [INFO] auth-service - Database DELETE on users - Execution time: 335ms - Rows affected: 4 - RequestID: qyq5q8ii9pg +2025-06-18T15:14:37.981Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 503 - Response time: 1285ms - IP: 192.168.159.94 - User: user_1038 - RequestID: z2f6roa8j2s +2025-06-18T15:14:38.081Z [DEBUG] auth-service - GET /api/v1/payments - Status: 403 - Response time: 72ms - IP: 192.168.141.100 - User: user_1019 - RequestID: i3mqpe2la2e +2025-06-18T15:14:38.181Z [DEBUG] order-service - Database SELECT on products - Execution time: 199ms - Rows affected: 49 - RequestID: ueq7l2pirf +2025-06-18T15:14:38.281Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 116ms - Rows affected: 8 - RequestID: azcopkqxccu +2025-06-18T15:14:38.381Z [INFO] notification-service - Operation: cache_miss - Processing time: 53ms - RequestID: t1jrltj2ylr +2025-06-18T15:14:38.481Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 399ms - RequestID: wkcxyg99r1q +2025-06-18T15:14:38.581Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 850ms - IP: 192.168.46.63 - User: user_1087 - RequestID: ibzo3ehc7z +2025-06-18T15:14:38.681Z [INFO] notification-service - Database UPDATE on orders - Execution time: 416ms - Rows affected: 31 - RequestID: 33jstk5gez4 +2025-06-18T15:14:38.781Z [INFO] notification-service - Operation: cache_hit - Processing time: 989ms - RequestID: khsocaa0mmq +2025-06-18T15:14:38.881Z [INFO] notification-service - Operation: webhook_sent - Processing time: 196ms - RequestID: 6ne41y4jftv +2025-06-18T15:14:38.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.138.123 - RequestID: y9ey4x0f7f +2025-06-18T15:14:39.081Z [DEBUG] auth-service - Database INSERT on products - Execution time: 15ms - Rows affected: 40 - RequestID: on24my21lch +2025-06-18T15:14:39.181Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 485ms - Rows affected: 66 - RequestID: 1f7tviragfk +2025-06-18T15:14:39.281Z [DEBUG] notification-service - Database DELETE on products - Execution time: 76ms - Rows affected: 32 - RequestID: sp7r50sv0m +2025-06-18T15:14:39.381Z [TRACE] user-service - Operation: notification_queued - Processing time: 629ms - RequestID: wyv4ao0ij2 +2025-06-18T15:14:39.481Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 335ms - Rows affected: 29 - RequestID: et00dt70zbn +2025-06-18T15:14:39.581Z [TRACE] notification-service - Database INSERT on payments - Execution time: 25ms - Rows affected: 12 - RequestID: qqwlltygfzn +2025-06-18T15:14:39.681Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 356ms - Rows affected: 9 - RequestID: mgczhtvbm5 +2025-06-18T15:14:39.781Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 395ms - RequestID: njqsj6vkokn +2025-06-18T15:14:39.881Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 76ms - Rows affected: 16 - RequestID: rmj8vwyfpns +2025-06-18T15:14:39.981Z [TRACE] order-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.97.87 - RequestID: dfiottpcai +2025-06-18T15:14:40.081Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 401 - Response time: 611ms - IP: 192.168.28.146 - User: user_1063 - RequestID: nc39eog6vak +2025-06-18T15:14:40.181Z [DEBUG] user-service - Auth event: password_change - User: user_1048 - IP: 192.168.240.169 - RequestID: n088fnl1brs +2025-06-18T15:14:40.281Z [INFO] user-service - Operation: cache_hit - Processing time: 636ms - RequestID: 34wdq5osey1 +2025-06-18T15:14:40.381Z [TRACE] notification-service - Operation: email_sent - Processing time: 238ms - RequestID: 9bui636t84 +2025-06-18T15:14:40.481Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 151ms - Rows affected: 21 - RequestID: 6044y3gdedy +2025-06-18T15:14:40.581Z [INFO] payment-service - Operation: webhook_sent - Processing time: 143ms - RequestID: 6tml9nkrco2 +2025-06-18T15:14:40.681Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 400 - Response time: 547ms - IP: 192.168.104.37 - User: user_1018 - RequestID: jsixahgroz +2025-06-18T15:14:40.781Z [INFO] notification-service - Database INSERT on payments - Execution time: 492ms - Rows affected: 71 - RequestID: sp950tcfng +2025-06-18T15:14:40.881Z [DEBUG] user-service - Database SELECT on users - Execution time: 353ms - Rows affected: 65 - RequestID: 5f1paz30pxp +2025-06-18T15:14:40.981Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 438ms - Rows affected: 0 - RequestID: m848fl6t6s +2025-06-18T15:14:41.081Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 272ms - Rows affected: 96 - RequestID: 9sjkmo62ppw +2025-06-18T15:14:41.181Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 481ms - Rows affected: 25 - RequestID: lahfyx870b +2025-06-18T15:14:41.281Z [TRACE] auth-service - Auth event: password_change - User: user_1056 - IP: 192.168.174.114 - RequestID: fq9d9cfvag6 +2025-06-18T15:14:41.381Z [INFO] auth-service - Operation: inventory_updated - Processing time: 487ms - RequestID: s0f95a1qgib +2025-06-18T15:14:41.481Z [TRACE] auth-service - Operation: notification_queued - Processing time: 156ms - RequestID: zc33pud15o +2025-06-18T15:14:41.581Z [TRACE] auth-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.28.146 - RequestID: l57pcfyhcij +2025-06-18T15:14:41.681Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 2003ms - IP: 192.168.79.141 - User: user_1000 - RequestID: v11ou3s6o1o +2025-06-18T15:14:41.781Z [INFO] auth-service - Operation: order_created - Processing time: 115ms - RequestID: j4kjf9sffoa +2025-06-18T15:14:41.881Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1628ms - IP: 192.168.44.5 - User: user_1046 - RequestID: kahlvv8qacr +2025-06-18T15:14:41.981Z [INFO] auth-service - Operation: order_created - Processing time: 572ms - RequestID: yhlzg97p8r8 +2025-06-18T15:14:42.081Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 63ms - Rows affected: 68 - RequestID: ydctwd4ipbq +2025-06-18T15:14:42.181Z [TRACE] auth-service - Operation: order_created - Processing time: 312ms - RequestID: khvz8r7ojdq +2025-06-18T15:14:42.281Z [DEBUG] order-service - Operation: payment_processed - Processing time: 740ms - RequestID: eg9z0zbmc8f +2025-06-18T15:14:42.381Z [DEBUG] payment-service - Database SELECT on products - Execution time: 470ms - Rows affected: 93 - RequestID: pocsvs2qgy +2025-06-18T15:14:42.481Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 401 - Response time: 450ms - IP: 192.168.170.215 - User: user_1057 - RequestID: 4rcqyqwypta +2025-06-18T15:14:42.581Z [TRACE] user-service - Database DELETE on products - Execution time: 398ms - Rows affected: 81 - RequestID: 6oeeph4cz3h +2025-06-18T15:14:42.681Z [DEBUG] order-service - Database INSERT on products - Execution time: 458ms - Rows affected: 89 - RequestID: c6yqy8glaz4 +2025-06-18T15:14:42.781Z [INFO] order-service - PUT /api/v1/users - Status: 400 - Response time: 427ms - IP: 192.168.68.158 - User: user_1073 - RequestID: quakccpjd6 +2025-06-18T15:14:42.881Z [TRACE] payment-service - Database INSERT on users - Execution time: 203ms - Rows affected: 74 - RequestID: nmf7yw4yuc +2025-06-18T15:14:42.981Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 500 - Response time: 53ms - IP: 192.168.113.218 - User: user_1013 - RequestID: nj5392f3ia +2025-06-18T15:14:43.081Z [INFO] notification-service - PATCH /api/v1/users - Status: 403 - Response time: 289ms - IP: 192.168.97.87 - User: user_1043 - RequestID: 4oals499hn +2025-06-18T15:14:43.181Z [DEBUG] order-service - Database INSERT on users - Execution time: 427ms - Rows affected: 38 - RequestID: vaonjfi4zsn +2025-06-18T15:14:43.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1005 - IP: 192.168.79.143 - RequestID: swhb66tndz8 +2025-06-18T15:14:43.381Z [TRACE] user-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.196.226 - RequestID: dm6i2hatbct +2025-06-18T15:14:43.481Z [INFO] order-service - Database INSERT on orders - Execution time: 12ms - Rows affected: 29 - RequestID: sjroj66z0fh +2025-06-18T15:14:43.581Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 400 - Response time: 857ms - IP: 192.168.211.72 - User: user_1096 - RequestID: o6r4s1v6yms +2025-06-18T15:14:43.681Z [INFO] auth-service - Database DELETE on orders - Execution time: 46ms - Rows affected: 65 - RequestID: ai7endqvc1r +2025-06-18T15:14:43.781Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 503 - Response time: 740ms - IP: 192.168.141.100 - User: user_1055 - RequestID: ty3heueo21 +2025-06-18T15:14:43.881Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 187ms - RequestID: v2lh02i4v89 +2025-06-18T15:14:43.981Z [INFO] order-service - POST /api/v1/orders - Status: 502 - Response time: 1584ms - IP: 192.168.170.215 - User: user_1004 - RequestID: v6cogk5eco +2025-06-18T15:14:44.081Z [DEBUG] notification-service - Database INSERT on products - Execution time: 479ms - Rows affected: 50 - RequestID: u53qeof2cr +2025-06-18T15:14:44.181Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 878ms - RequestID: b148yqc5dq8 +2025-06-18T15:14:44.281Z [TRACE] inventory-service - GET /api/v1/orders - Status: 503 - Response time: 914ms - IP: 192.168.235.117 - User: user_1037 - RequestID: dzzps3h15b +2025-06-18T15:14:44.381Z [TRACE] auth-service - Operation: cache_hit - Processing time: 286ms - RequestID: 4wty1f9fjyr +2025-06-18T15:14:44.481Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 212ms - RequestID: 78hi4iyce49 +2025-06-18T15:14:44.581Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 502 - Response time: 1333ms - IP: 192.168.28.146 - User: user_1065 - RequestID: lincmpn3mv +2025-06-18T15:14:44.681Z [DEBUG] auth-service - Database DELETE on users - Execution time: 274ms - Rows affected: 49 - RequestID: 8jqupob9iq9 +2025-06-18T15:14:44.781Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 1011ms - RequestID: z957z1oyn1 +2025-06-18T15:14:44.881Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 400 - Response time: 620ms - IP: 192.168.181.225 - User: user_1048 - RequestID: 7dektorf11d +2025-06-18T15:14:44.981Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1280ms - IP: 192.168.147.171 - User: user_1007 - RequestID: rbn2ueazm3 +2025-06-18T15:14:45.081Z [TRACE] notification-service - Database INSERT on orders - Execution time: 283ms - Rows affected: 20 - RequestID: mn6gd6mwnr +2025-06-18T15:14:45.181Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 18ms - Rows affected: 62 - RequestID: wzp1rj6kcz +2025-06-18T15:14:45.281Z [DEBUG] user-service - Auth event: logout - User: user_1043 - IP: 192.168.33.76 - RequestID: pfbwgkg51m +2025-06-18T15:14:45.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.10.184 - RequestID: 1pjb5kvenf9 +2025-06-18T15:14:45.481Z [INFO] notification-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.235.117 - RequestID: 6r9miizpgfu +2025-06-18T15:14:45.581Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1712ms - IP: 192.168.32.38 - User: user_1044 - RequestID: ypp23squujk +2025-06-18T15:14:45.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.1.152 - RequestID: pgkpx6e0md +2025-06-18T15:14:45.781Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 131ms - Rows affected: 52 - RequestID: ypkpee4yerh +2025-06-18T15:14:45.881Z [TRACE] auth-service - Operation: email_sent - Processing time: 953ms - RequestID: bhzjup988u +2025-06-18T15:14:45.981Z [INFO] auth-service - GET /api/v1/inventory - Status: 201 - Response time: 1437ms - IP: 192.168.79.116 - User: user_1072 - RequestID: 0tw0oxn1tak +2025-06-18T15:14:46.081Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 267ms - Rows affected: 8 - RequestID: y8eccxzzuun +2025-06-18T15:14:46.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.181.225 - RequestID: df0l3txispp +2025-06-18T15:14:46.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 894ms - RequestID: qndki2hcg9a +2025-06-18T15:14:46.381Z [TRACE] user-service - Database INSERT on products - Execution time: 73ms - Rows affected: 10 - RequestID: oeudof84v7g +2025-06-18T15:14:46.481Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 879ms - IP: 192.168.158.144 - User: user_1085 - RequestID: azcnco6lt6 +2025-06-18T15:14:46.581Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 496ms - IP: 192.168.97.87 - User: user_1072 - RequestID: 40kl2guk384 +2025-06-18T15:14:46.681Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 465ms - Rows affected: 87 - RequestID: uhc3wkg91k9 +2025-06-18T15:14:46.781Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 503 - Response time: 637ms - IP: 192.168.113.218 - User: user_1094 - RequestID: m469il178ir +2025-06-18T15:14:46.881Z [TRACE] order-service - Operation: email_sent - Processing time: 483ms - RequestID: xrbt7djxktq +2025-06-18T15:14:46.981Z [INFO] user-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.100.240 - RequestID: y36w5pfwk1 +2025-06-18T15:14:47.081Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 36ms - Rows affected: 2 - RequestID: 60b8lhva66b +2025-06-18T15:14:47.181Z [DEBUG] user-service - Auth event: password_change - User: user_1057 - IP: 192.168.53.133 - RequestID: ip0co6opzaa +2025-06-18T15:14:47.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1000 - IP: 192.168.79.116 - RequestID: sxf6s0xokxj +2025-06-18T15:14:47.381Z [DEBUG] order-service - Auth event: logout - User: user_1065 - IP: 192.168.85.229 - RequestID: 0zadm38sjhdp +2025-06-18T15:14:47.481Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 207ms - Rows affected: 81 - RequestID: 7st4vi0mhmc +2025-06-18T15:14:47.581Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 403 - Response time: 2007ms - IP: 192.168.85.229 - User: user_1073 - RequestID: x0hqv4boy4 +2025-06-18T15:14:47.681Z [TRACE] user-service - Database SELECT on users - Execution time: 368ms - Rows affected: 54 - RequestID: j1twj17r5c +2025-06-18T15:14:47.781Z [INFO] order-service - Auth event: login_failed - User: user_1044 - IP: 192.168.247.134 - RequestID: yz7ffljpbd +2025-06-18T15:14:47.881Z [TRACE] order-service - POST /api/v1/payments - Status: 200 - Response time: 276ms - IP: 192.168.167.32 - User: user_1021 - RequestID: rdfce32zk5 +2025-06-18T15:14:47.981Z [TRACE] order-service - Database DELETE on users - Execution time: 333ms - Rows affected: 54 - RequestID: kdli3y04agh +2025-06-18T15:14:48.081Z [INFO] notification-service - Auth event: login_success - User: user_1029 - IP: 192.168.247.134 - RequestID: jsgcnxdfqhr +2025-06-18T15:14:48.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1039 - IP: 192.168.68.128 - RequestID: 3qpdkn44fxd +2025-06-18T15:14:48.281Z [DEBUG] notification-service - Database DELETE on users - Execution time: 171ms - Rows affected: 43 - RequestID: tkq9w8eyzu +2025-06-18T15:14:48.381Z [INFO] auth-service - Database DELETE on orders - Execution time: 383ms - Rows affected: 23 - RequestID: n7poanta268 +2025-06-18T15:14:48.481Z [TRACE] inventory-service - Auth event: logout - User: user_1089 - IP: 192.168.46.63 - RequestID: ew14kn6ic2 +2025-06-18T15:14:48.581Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 324ms - Rows affected: 37 - RequestID: 2a6oms2xczt +2025-06-18T15:14:48.681Z [INFO] auth-service - Operation: inventory_updated - Processing time: 633ms - RequestID: 16vqy8uq2de +2025-06-18T15:14:48.781Z [TRACE] order-service - Operation: cache_hit - Processing time: 454ms - RequestID: korp0dwt70o +2025-06-18T15:14:48.881Z [DEBUG] notification-service - Database INSERT on products - Execution time: 208ms - Rows affected: 22 - RequestID: zusqiukv4mk +2025-06-18T15:14:48.981Z [DEBUG] notification-service - Auth event: login_success - User: user_1071 - IP: 192.168.85.229 - RequestID: hke7rcrbsf4 +2025-06-18T15:14:49.081Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 31ms - Rows affected: 83 - RequestID: 73iiri9brab +2025-06-18T15:14:49.181Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 197ms - Rows affected: 19 - RequestID: 366rk26ohw +2025-06-18T15:14:49.281Z [INFO] user-service - Database DELETE on sessions - Execution time: 87ms - Rows affected: 80 - RequestID: g1tffppevgm +2025-06-18T15:14:49.381Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 403 - Response time: 1560ms - IP: 192.168.14.77 - User: user_1054 - RequestID: a12s6ax2cmh +2025-06-18T15:14:49.481Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 1630ms - IP: 192.168.194.41 - User: user_1049 - RequestID: 8qt0631zeq9 +2025-06-18T15:14:49.581Z [TRACE] order-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.167.32 - RequestID: 2ttgq31wjvk +2025-06-18T15:14:49.681Z [INFO] payment-service - Auth event: password_change - User: user_1009 - IP: 192.168.158.144 - RequestID: fwlvmpclqei +2025-06-18T15:14:49.781Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 30ms - IP: 192.168.181.225 - User: user_1045 - RequestID: fap77y6uk1c +2025-06-18T15:14:49.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1084 - IP: 192.168.64.33 - RequestID: ylhhgepgbf +2025-06-18T15:14:49.981Z [INFO] auth-service - Auth event: login_failed - User: user_1088 - IP: 192.168.189.103 - RequestID: b4p8ks7xom9 +2025-06-18T15:14:50.081Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 522ms - IP: 192.168.68.158 - User: user_1038 - RequestID: mglo5l74t1 +2025-06-18T15:14:50.181Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 154ms - Rows affected: 22 - RequestID: 65io5edcsqj +2025-06-18T15:14:50.281Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 503 - Response time: 192ms - IP: 192.168.30.79 - User: user_1016 - RequestID: ctx9ei0gd8 +2025-06-18T15:14:50.381Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 327ms - Rows affected: 96 - RequestID: exd4e8qa2v6 +2025-06-18T15:14:50.481Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 500 - Response time: 613ms - IP: 192.168.13.72 - User: user_1059 - RequestID: ckcd9g8ts3u +2025-06-18T15:14:50.581Z [TRACE] order-service - Auth event: password_change - User: user_1069 - IP: 192.168.13.72 - RequestID: fque7ire1ao +2025-06-18T15:14:50.681Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 888ms - RequestID: lk8hbc9n2kd +2025-06-18T15:14:50.781Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1007ms - IP: 192.168.167.32 - User: user_1095 - RequestID: woecln69tzc +2025-06-18T15:14:50.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1012 - IP: 192.168.144.38 - RequestID: shiscqvmxqi +2025-06-18T15:14:50.981Z [INFO] user-service - GET /api/v1/users - Status: 201 - Response time: 870ms - IP: 192.168.167.32 - User: user_1068 - RequestID: 6b3kdixgaza +2025-06-18T15:14:51.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.64.33 - RequestID: nnxb438ze8 +2025-06-18T15:14:51.181Z [DEBUG] payment-service - GET /api/v1/payments - Status: 500 - Response time: 792ms - IP: 192.168.79.141 - User: user_1061 - RequestID: gnk5i79o24t +2025-06-18T15:14:51.281Z [TRACE] user-service - POST /api/v1/orders - Status: 200 - Response time: 315ms - IP: 192.168.79.116 - User: user_1027 - RequestID: qz9arfbmxc +2025-06-18T15:14:51.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 481ms - RequestID: 37ge4vwr3rb +2025-06-18T15:14:51.481Z [INFO] order-service - Database INSERT on products - Execution time: 208ms - Rows affected: 5 - RequestID: 5ac5k8oeu4n +2025-06-18T15:14:51.581Z [INFO] user-service - Database DELETE on products - Execution time: 20ms - Rows affected: 2 - RequestID: 71wo7uyln1o +2025-06-18T15:14:51.681Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1106ms - IP: 192.168.100.240 - User: user_1008 - RequestID: xwnz4henrwn +2025-06-18T15:14:51.781Z [INFO] order-service - Database SELECT on sessions - Execution time: 386ms - Rows affected: 51 - RequestID: y691vz666yr +2025-06-18T15:14:51.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1000 - IP: 192.168.247.134 - RequestID: i9yr3tztfy +2025-06-18T15:14:51.981Z [DEBUG] inventory-service - Operation: order_created - Processing time: 147ms - RequestID: gb8et7gnl7o +2025-06-18T15:14:52.081Z [INFO] inventory-service - Database UPDATE on users - Execution time: 280ms - Rows affected: 20 - RequestID: nw2guobdzzr +2025-06-18T15:14:52.181Z [INFO] user-service - Auth event: login_success - User: user_1048 - IP: 192.168.97.87 - RequestID: gj6z9pjzbqr +2025-06-18T15:14:52.281Z [INFO] auth-service - Database UPDATE on orders - Execution time: 57ms - Rows affected: 46 - RequestID: bknlwpihw5 +2025-06-18T15:14:52.381Z [INFO] auth-service - Operation: order_created - Processing time: 343ms - RequestID: wce8fdvyt9 +2025-06-18T15:14:52.481Z [TRACE] order-service - Database DELETE on orders - Execution time: 486ms - Rows affected: 77 - RequestID: 15p18bgx09w +2025-06-18T15:14:52.581Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 189ms - Rows affected: 82 - RequestID: geewubjvcmo +2025-06-18T15:14:52.681Z [TRACE] order-service - Operation: inventory_updated - Processing time: 656ms - RequestID: ug1b0s0zq4 +2025-06-18T15:14:52.781Z [INFO] user-service - GET /api/v1/orders - Status: 404 - Response time: 947ms - IP: 192.168.147.171 - User: user_1099 - RequestID: w1onvkw2jb +2025-06-18T15:14:52.881Z [INFO] payment-service - Database SELECT on users - Execution time: 308ms - Rows affected: 1 - RequestID: 9wiujnp2cmr +2025-06-18T15:14:52.981Z [DEBUG] notification-service - GET /api/v1/users - Status: 200 - Response time: 1078ms - IP: 192.168.247.134 - User: user_1038 - RequestID: ck8qeqy0i6 +2025-06-18T15:14:53.081Z [TRACE] user-service - DELETE /api/v1/users - Status: 401 - Response time: 406ms - IP: 192.168.181.225 - User: user_1095 - RequestID: lr2do6da5zo +2025-06-18T15:14:53.181Z [DEBUG] user-service - Database SELECT on orders - Execution time: 369ms - Rows affected: 47 - RequestID: s3bljhu4j4 +2025-06-18T15:14:53.281Z [INFO] notification-service - PUT /api/v1/inventory - Status: 500 - Response time: 1476ms - IP: 192.168.33.76 - User: user_1015 - RequestID: 14f4urcskc7f +2025-06-18T15:14:53.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1078 - IP: 192.168.159.94 - RequestID: 5fw6lxhu29 +2025-06-18T15:14:53.481Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 327ms - Rows affected: 52 - RequestID: bn32sbkzly5 +2025-06-18T15:14:53.581Z [DEBUG] user-service - Auth event: login_success - User: user_1024 - IP: 192.168.227.77 - RequestID: jg3505gerf +2025-06-18T15:14:53.681Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1335ms - IP: 192.168.227.77 - User: user_1043 - RequestID: ghx4jaycckq +2025-06-18T15:14:53.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 442ms - RequestID: grqj0eusr7f +2025-06-18T15:14:53.881Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 482ms - RequestID: xxz6ycudjsb +2025-06-18T15:14:53.981Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 12ms - IP: 192.168.36.218 - User: user_1064 - RequestID: ml480k2hxst +2025-06-18T15:14:54.081Z [INFO] inventory-service - Auth event: password_change - User: user_1067 - IP: 192.168.28.146 - RequestID: poqw6lzltje +2025-06-18T15:14:54.181Z [DEBUG] auth-service - Auth event: login_success - User: user_1081 - IP: 192.168.33.76 - RequestID: mlhyq6zdmm +2025-06-18T15:14:54.281Z [INFO] user-service - Operation: inventory_updated - Processing time: 344ms - RequestID: kou6i3yg9bq +2025-06-18T15:14:54.381Z [TRACE] auth-service - Database DELETE on products - Execution time: 469ms - Rows affected: 50 - RequestID: 1u81drw879e +2025-06-18T15:14:54.481Z [INFO] auth-service - Database INSERT on orders - Execution time: 16ms - Rows affected: 44 - RequestID: 9xvplptv4ep +2025-06-18T15:14:54.581Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 332ms - Rows affected: 4 - RequestID: n9scvx1t8hd +2025-06-18T15:14:54.681Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1152ms - IP: 192.168.10.184 - User: user_1053 - RequestID: gdf3i4qktr6 +2025-06-18T15:14:54.781Z [TRACE] payment-service - Database DELETE on users - Execution time: 356ms - Rows affected: 74 - RequestID: l03bh149co +2025-06-18T15:14:54.881Z [TRACE] user-service - DELETE /api/v1/payments - Status: 200 - Response time: 1986ms - IP: 192.168.181.225 - User: user_1023 - RequestID: 1iyefzyyosm +2025-06-18T15:14:54.981Z [DEBUG] order-service - Auth event: login_success - User: user_1083 - IP: 192.168.28.146 - RequestID: 8iu7yklfdcv +2025-06-18T15:14:55.081Z [TRACE] order-service - GET /api/v1/auth/login - Status: 403 - Response time: 1449ms - IP: 192.168.13.72 - User: user_1061 - RequestID: 1fyd7fgr3gpj +2025-06-18T15:14:55.181Z [INFO] order-service - Operation: cache_hit - Processing time: 253ms - RequestID: skh4mw539sd +2025-06-18T15:14:55.281Z [DEBUG] auth-service - Auth event: login_failed - User: user_1077 - IP: 192.168.227.233 - RequestID: byqeujs5rr7 +2025-06-18T15:14:55.381Z [INFO] auth-service - Database INSERT on users - Execution time: 324ms - Rows affected: 47 - RequestID: 9326oi1u3o +2025-06-18T15:14:55.481Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 238ms - RequestID: eltdoowhn2s +2025-06-18T15:14:55.581Z [DEBUG] auth-service - Operation: order_created - Processing time: 500ms - RequestID: ag4hmlca1s +2025-06-18T15:14:55.681Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 350ms - Rows affected: 6 - RequestID: 2q5qbqppgap +2025-06-18T15:14:55.781Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 242ms - Rows affected: 24 - RequestID: qpfdxyydi2j +2025-06-18T15:14:55.881Z [INFO] inventory-service - PUT /api/v1/orders - Status: 503 - Response time: 1100ms - IP: 192.168.159.94 - User: user_1037 - RequestID: tcya5qgkhhq +2025-06-18T15:14:55.981Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.133.7 - RequestID: fokpli0dbvk +2025-06-18T15:14:56.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.159.94 - RequestID: fdq0ih438hb +2025-06-18T15:14:56.181Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 112ms - Rows affected: 24 - RequestID: ap49e2olsb8 +2025-06-18T15:14:56.281Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1028ms - IP: 192.168.81.206 - User: user_1034 - RequestID: cx3ssnkdp6 +2025-06-18T15:14:56.381Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 117ms - Rows affected: 16 - RequestID: vj5wqbxwrsj +2025-06-18T15:14:56.481Z [INFO] user-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.46.63 - RequestID: eo2acs9kfoi +2025-06-18T15:14:56.581Z [TRACE] notification-service - Operation: cache_miss - Processing time: 472ms - RequestID: b5t9zpwpimv +2025-06-18T15:14:56.681Z [INFO] user-service - Operation: notification_queued - Processing time: 373ms - RequestID: 095h94wbteje +2025-06-18T15:14:56.781Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 401 - Response time: 926ms - IP: 192.168.211.72 - User: user_1093 - RequestID: f5a2e5tne4 +2025-06-18T15:14:56.881Z [TRACE] notification-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.113.218 - RequestID: iscvmo42zor +2025-06-18T15:14:56.981Z [INFO] auth-service - Auth event: login_success - User: user_1054 - IP: 192.168.46.63 - RequestID: j94ywamems +2025-06-18T15:14:57.081Z [TRACE] order-service - Operation: cache_hit - Processing time: 379ms - RequestID: 8rvsjcravox +2025-06-18T15:14:57.181Z [DEBUG] user-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.44.5 - RequestID: q5rqaxmkaq +2025-06-18T15:14:57.281Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1257ms - IP: 192.168.97.87 - User: user_1001 - RequestID: tvvhlcbbb4e +2025-06-18T15:14:57.381Z [INFO] notification-service - Auth event: login_failed - User: user_1039 - IP: 192.168.159.94 - RequestID: y6bntibxcx7 +2025-06-18T15:14:57.481Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1050ms - IP: 192.168.68.128 - User: user_1007 - RequestID: sc0gklqh3bp +2025-06-18T15:14:57.581Z [TRACE] auth-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.229.123 - RequestID: tc2sc23vint +2025-06-18T15:14:57.681Z [INFO] user-service - Operation: payment_processed - Processing time: 477ms - RequestID: nrhzo228c8p +2025-06-18T15:14:57.781Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 247ms - Rows affected: 86 - RequestID: x2afftofogq +2025-06-18T15:14:57.881Z [DEBUG] order-service - Operation: order_created - Processing time: 435ms - RequestID: dfebp2y7lem +2025-06-18T15:14:57.981Z [INFO] inventory-service - GET /api/v1/orders - Status: 404 - Response time: 1759ms - IP: 192.168.68.128 - User: user_1008 - RequestID: s6pfh7oiug9 +2025-06-18T15:14:58.081Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 371ms - Rows affected: 6 - RequestID: abm345ks3fu +2025-06-18T15:14:58.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 480ms - RequestID: vx4lwtzcdop +2025-06-18T15:14:58.281Z [DEBUG] order-service - Operation: cache_miss - Processing time: 935ms - RequestID: jab7l404oz +2025-06-18T15:14:58.381Z [TRACE] order-service - Auth event: logout - User: user_1000 - IP: 192.168.33.76 - RequestID: s9my7xov6l +2025-06-18T15:14:58.481Z [INFO] user-service - Operation: webhook_sent - Processing time: 938ms - RequestID: skd7czvj8br +2025-06-18T15:14:58.581Z [INFO] user-service - Database INSERT on payments - Execution time: 95ms - Rows affected: 31 - RequestID: xfyvny9p99m +2025-06-18T15:14:58.681Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 201 - Response time: 1745ms - IP: 192.168.227.233 - User: user_1033 - RequestID: 3mct75tw1d +2025-06-18T15:14:58.781Z [TRACE] order-service - GET /api/v1/orders - Status: 200 - Response time: 292ms - IP: 192.168.227.77 - User: user_1072 - RequestID: h7lfq7xjz3 +2025-06-18T15:14:58.881Z [INFO] notification-service - Operation: payment_processed - Processing time: 641ms - RequestID: cxdisr3ggfg +2025-06-18T15:14:58.981Z [INFO] user-service - POST /api/v1/users - Status: 503 - Response time: 1146ms - IP: 192.168.104.37 - User: user_1082 - RequestID: 714egts0p1h +2025-06-18T15:14:59.081Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 356ms - Rows affected: 53 - RequestID: erm19oo2nkj +2025-06-18T15:14:59.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 845ms - RequestID: lnkmjul6vkl +2025-06-18T15:14:59.281Z [INFO] order-service - Auth event: logout - User: user_1016 - IP: 192.168.31.117 - RequestID: gi9fflvtsvk +2025-06-18T15:14:59.381Z [INFO] inventory-service - Auth event: password_change - User: user_1069 - IP: 192.168.36.218 - RequestID: n89atgiwj8 +2025-06-18T15:14:59.481Z [DEBUG] user-service - Auth event: login_success - User: user_1017 - IP: 192.168.53.133 - RequestID: se4emwqlntg +2025-06-18T15:14:59.581Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.144.38 - RequestID: loa16germoi +2025-06-18T15:14:59.681Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 114ms - IP: 192.168.187.199 - User: user_1050 - RequestID: ob3ewycj1tr +2025-06-18T15:14:59.781Z [INFO] auth-service - Operation: inventory_updated - Processing time: 709ms - RequestID: 7mwtuv2kr0a +2025-06-18T15:14:59.881Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 228ms - Rows affected: 32 - RequestID: j48hsuabd0q +2025-06-18T15:14:59.981Z [INFO] notification-service - Operation: notification_queued - Processing time: 364ms - RequestID: vale99ke6y +2025-06-18T15:15:00.081Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 400ms - IP: 192.168.194.41 - User: user_1057 - RequestID: 5hwo384uq25 +2025-06-18T15:15:00.181Z [TRACE] payment-service - POST /api/v1/payments - Status: 200 - Response time: 1906ms - IP: 192.168.141.100 - User: user_1084 - RequestID: w4rndgsug8j +2025-06-18T15:15:00.281Z [TRACE] user-service - GET /api/v1/users - Status: 401 - Response time: 1096ms - IP: 192.168.227.77 - User: user_1013 - RequestID: yo17579dkrq +2025-06-18T15:15:00.381Z [INFO] notification-service - Operation: order_created - Processing time: 314ms - RequestID: ygoayebkt0m +2025-06-18T15:15:00.481Z [INFO] inventory-service - Database SELECT on orders - Execution time: 315ms - Rows affected: 15 - RequestID: p01itiwygl +2025-06-18T15:15:00.581Z [INFO] auth-service - Operation: notification_queued - Processing time: 271ms - RequestID: vrczmruqp7d +2025-06-18T15:15:00.681Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1066ms - IP: 192.168.196.226 - User: user_1040 - RequestID: rgr9lqfo2ah +2025-06-18T15:15:00.781Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 403 - Response time: 933ms - IP: 192.168.85.229 - User: user_1044 - RequestID: su6rmld8x6j +2025-06-18T15:15:00.881Z [INFO] order-service - Auth event: logout - User: user_1093 - IP: 192.168.79.116 - RequestID: spejsbr4uzg +2025-06-18T15:15:00.981Z [TRACE] payment-service - Database DELETE on products - Execution time: 115ms - Rows affected: 80 - RequestID: p2sritphva +2025-06-18T15:15:01.081Z [INFO] auth-service - Operation: order_created - Processing time: 260ms - RequestID: n5jiydvxd2 +2025-06-18T15:15:01.181Z [INFO] inventory-service - Database INSERT on orders - Execution time: 332ms - Rows affected: 76 - RequestID: a2yopk8fpro +2025-06-18T15:15:01.281Z [INFO] payment-service - Database DELETE on payments - Execution time: 109ms - Rows affected: 86 - RequestID: n9bnc00pr8f +2025-06-18T15:15:01.381Z [INFO] inventory-service - Auth event: login_success - User: user_1023 - IP: 192.168.240.169 - RequestID: ljtja40bize +2025-06-18T15:15:01.481Z [DEBUG] inventory-service - PUT /api/v1/inventory - Status: 401 - Response time: 157ms - IP: 192.168.141.100 - User: user_1095 - RequestID: m2uii82kq9 +2025-06-18T15:15:01.581Z [TRACE] user-service - Auth event: logout - User: user_1069 - IP: 192.168.194.41 - RequestID: 7o3wx1bdgk7 +2025-06-18T15:15:01.681Z [TRACE] user-service - Auth event: login_failed - User: user_1053 - IP: 192.168.196.226 - RequestID: hna2cv2oacp +2025-06-18T15:15:01.781Z [INFO] auth-service - Database SELECT on users - Execution time: 496ms - Rows affected: 17 - RequestID: m4mqs6dft2n +2025-06-18T15:15:01.881Z [TRACE] notification-service - Auth event: password_change - User: user_1025 - IP: 192.168.97.87 - RequestID: vkxw361mul +2025-06-18T15:15:01.981Z [INFO] user-service - Operation: order_created - Processing time: 706ms - RequestID: fza6dtsee6t +2025-06-18T15:15:02.081Z [INFO] notification-service - Auth event: logout - User: user_1081 - IP: 192.168.170.215 - RequestID: f2e8xpbybz7 +2025-06-18T15:15:02.181Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 400 - Response time: 1216ms - IP: 192.168.147.171 - User: user_1058 - RequestID: wz8qnc52xai +2025-06-18T15:15:02.281Z [TRACE] order-service - Operation: email_sent - Processing time: 657ms - RequestID: 9t9h8t7jlhe +2025-06-18T15:15:02.381Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 13ms - Rows affected: 7 - RequestID: 7fip44hvy4y +2025-06-18T15:15:02.481Z [TRACE] notification-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.235.117 - RequestID: bh1mdeq2215 +2025-06-18T15:15:02.581Z [TRACE] inventory-service - GET /api/v1/payments - Status: 200 - Response time: 72ms - IP: 192.168.68.128 - User: user_1005 - RequestID: jg8b2agcs5r +2025-06-18T15:15:02.681Z [INFO] notification-service - Auth event: logout - User: user_1061 - IP: 192.168.100.240 - RequestID: corc1cj44jo +2025-06-18T15:15:02.781Z [DEBUG] notification-service - Auth event: login_success - User: user_1013 - IP: 192.168.181.225 - RequestID: w4pkwbzp0rf +2025-06-18T15:15:02.881Z [DEBUG] user-service - Database SELECT on products - Execution time: 372ms - Rows affected: 47 - RequestID: 5u6gbp18vri +2025-06-18T15:15:02.981Z [TRACE] order-service - POST /api/v1/auth/login - Status: 500 - Response time: 1676ms - IP: 192.168.227.77 - User: user_1036 - RequestID: hzn2vq7z9yl +2025-06-18T15:15:03.081Z [TRACE] auth-service - PUT /api/v1/payments - Status: 401 - Response time: 228ms - IP: 192.168.85.229 - User: user_1043 - RequestID: 6wvtjvua7gd +2025-06-18T15:15:03.181Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1388ms - IP: 192.168.133.7 - User: user_1018 - RequestID: 9w16mxm0t6m +2025-06-18T15:15:03.281Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 200 - Response time: 859ms - IP: 192.168.138.123 - User: user_1005 - RequestID: 11n04zira3vr +2025-06-18T15:15:03.381Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 200 - Response time: 1958ms - IP: 192.168.211.72 - User: user_1078 - RequestID: uiaasgjpjv7 +2025-06-18T15:15:03.481Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 297ms - Rows affected: 52 - RequestID: jhfsmjirh9i +2025-06-18T15:15:03.581Z [INFO] user-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.242.165 - RequestID: u8vmcpo9jee +2025-06-18T15:15:03.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.247.134 - RequestID: x3vtlpzifdh +2025-06-18T15:15:03.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 336ms - RequestID: ekxvdkajk46 +2025-06-18T15:15:03.881Z [INFO] auth-service - PUT /api/v1/orders - Status: 503 - Response time: 1760ms - IP: 192.168.138.123 - User: user_1059 - RequestID: qbydlnjrj6 +2025-06-18T15:15:03.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1003 - IP: 192.168.32.38 - RequestID: yhttrzeswbp +2025-06-18T15:15:04.081Z [TRACE] payment-service - PATCH /api/v1/inventory - Status: 503 - Response time: 923ms - IP: 192.168.229.123 - User: user_1092 - RequestID: ykbfhfa57oq +2025-06-18T15:15:04.181Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 400 - Response time: 1818ms - IP: 192.168.68.128 - User: user_1011 - RequestID: diiya8mya +2025-06-18T15:15:04.281Z [INFO] user-service - PUT /api/v1/orders - Status: 502 - Response time: 700ms - IP: 192.168.28.146 - User: user_1091 - RequestID: 1ovh9oe518x +2025-06-18T15:15:04.381Z [INFO] payment-service - Auth event: login_success - User: user_1091 - IP: 192.168.181.225 - RequestID: 9f90wvr89wk +2025-06-18T15:15:04.481Z [TRACE] notification-service - Operation: notification_queued - Processing time: 466ms - RequestID: ki7brmtzv3 +2025-06-18T15:15:04.581Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 369ms - RequestID: k4cdpkstm3i +2025-06-18T15:15:04.681Z [INFO] notification-service - Database UPDATE on products - Execution time: 242ms - Rows affected: 29 - RequestID: 8d6ceyn03ke +2025-06-18T15:15:04.781Z [DEBUG] user-service - Auth event: login_failed - User: user_1022 - IP: 192.168.68.158 - RequestID: ah40xy0uf55 +2025-06-18T15:15:04.881Z [INFO] notification-service - Auth event: password_change - User: user_1036 - IP: 192.168.64.33 - RequestID: 965n4ebzgka +2025-06-18T15:15:04.981Z [INFO] auth-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.32.38 - RequestID: 293nyiswkyt +2025-06-18T15:15:05.081Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 75ms - Rows affected: 51 - RequestID: kv8izsoboqh +2025-06-18T15:15:05.181Z [TRACE] notification-service - Database UPDATE on products - Execution time: 133ms - Rows affected: 56 - RequestID: 96ajh7t6lsk +2025-06-18T15:15:05.281Z [INFO] user-service - GET /api/v1/auth/login - Status: 201 - Response time: 441ms - IP: 192.168.97.87 - User: user_1062 - RequestID: z535izl741 +2025-06-18T15:15:05.381Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1085 - IP: 192.168.79.116 - RequestID: yyrxb85ohvl +2025-06-18T15:15:05.481Z [INFO] inventory-service - DELETE /api/v1/users - Status: 403 - Response time: 326ms - IP: 192.168.227.233 - User: user_1055 - RequestID: as3r8ncsr9o +2025-06-18T15:15:05.581Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 342ms - Rows affected: 46 - RequestID: oftonb5pu99 +2025-06-18T15:15:05.681Z [TRACE] order-service - Operation: webhook_sent - Processing time: 493ms - RequestID: 7p39a4byuma +2025-06-18T15:15:05.781Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 234ms - RequestID: 5w50lgs2rjv +2025-06-18T15:15:05.881Z [INFO] order-service - Database INSERT on products - Execution time: 100ms - Rows affected: 9 - RequestID: dy271lnr1oo +2025-06-18T15:15:05.981Z [TRACE] payment-service - Auth event: login_success - User: user_1020 - IP: 192.168.10.184 - RequestID: f6c75702mtp +2025-06-18T15:15:06.081Z [DEBUG] inventory-service - Auth event: password_change - User: user_1095 - IP: 192.168.138.123 - RequestID: ijoeoopegm +2025-06-18T15:15:06.181Z [TRACE] payment-service - Operation: payment_processed - Processing time: 828ms - RequestID: g5hkxyy4t6s +2025-06-18T15:15:06.281Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 502 - Response time: 1210ms - IP: 192.168.196.226 - User: user_1041 - RequestID: tfr6nwlf8q +2025-06-18T15:15:06.381Z [INFO] payment-service - Auth event: logout - User: user_1045 - IP: 192.168.138.123 - RequestID: 2w5gxjpijut +2025-06-18T15:15:06.481Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 404 - Response time: 1637ms - IP: 192.168.227.77 - User: user_1034 - RequestID: e2vbgtmv2lv +2025-06-18T15:15:06.581Z [TRACE] notification-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.33.76 - RequestID: v8h8gzk133j +2025-06-18T15:15:06.681Z [DEBUG] auth-service - Operation: order_created - Processing time: 100ms - RequestID: yi3bj46b8a +2025-06-18T15:15:06.781Z [INFO] notification-service - Operation: webhook_sent - Processing time: 493ms - RequestID: hae1h26qg9f +2025-06-18T15:15:06.881Z [INFO] order-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.79.141 - RequestID: lf1lgu9je6n +2025-06-18T15:15:06.981Z [INFO] notification-service - Operation: notification_queued - Processing time: 71ms - RequestID: 53jwa2jty4 +2025-06-18T15:15:07.081Z [TRACE] payment-service - Operation: order_created - Processing time: 256ms - RequestID: rouwzslvm88 +2025-06-18T15:15:07.181Z [TRACE] notification-service - Auth event: login_success - User: user_1066 - IP: 192.168.141.100 - RequestID: txc4rjkvh18 +2025-06-18T15:15:07.281Z [DEBUG] order-service - Operation: order_created - Processing time: 939ms - RequestID: 4uo1pjrzpm4 +2025-06-18T15:15:07.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.158.144 - RequestID: mlzb1xg60km +2025-06-18T15:15:07.481Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 744ms - RequestID: qw1w2h1649i +2025-06-18T15:15:07.581Z [TRACE] auth-service - GET /api/v1/inventory - Status: 200 - Response time: 37ms - IP: 192.168.53.133 - User: user_1037 - RequestID: sxrp2ciblzk +2025-06-18T15:15:07.681Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 332ms - Rows affected: 31 - RequestID: e7vllkq5uge +2025-06-18T15:15:07.781Z [TRACE] user-service - Database DELETE on payments - Execution time: 279ms - Rows affected: 95 - RequestID: lebeo40bxm +2025-06-18T15:15:07.881Z [TRACE] payment-service - PUT /api/v1/payments - Status: 500 - Response time: 1237ms - IP: 192.168.68.128 - User: user_1032 - RequestID: 8zvcljeo16q +2025-06-18T15:15:07.981Z [TRACE] auth-service - Operation: cache_miss - Processing time: 693ms - RequestID: p4ltqgn75n +2025-06-18T15:15:08.081Z [TRACE] payment-service - Operation: order_created - Processing time: 952ms - RequestID: xzxej4s7ho +2025-06-18T15:15:08.181Z [DEBUG] user-service - Auth event: logout - User: user_1037 - IP: 192.168.181.225 - RequestID: w3z446c1nc +2025-06-18T15:15:08.281Z [DEBUG] auth-service - Auth event: password_change - User: user_1002 - IP: 192.168.158.144 - RequestID: lo7kvww1f8 +2025-06-18T15:15:08.381Z [TRACE] user-service - Database DELETE on products - Execution time: 15ms - Rows affected: 33 - RequestID: 6diwgnprgba +2025-06-18T15:15:08.481Z [INFO] inventory-service - Operation: order_created - Processing time: 312ms - RequestID: 53430opnl25 +2025-06-18T15:15:08.581Z [INFO] payment-service - Auth event: login_failed - User: user_1013 - IP: 192.168.68.158 - RequestID: mqs9emy27eg +2025-06-18T15:15:08.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.240.169 - RequestID: tbs11swnjbs +2025-06-18T15:15:08.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1044 - IP: 192.168.211.72 - RequestID: pc2850bpfrl +2025-06-18T15:15:08.881Z [INFO] auth-service - GET /api/v1/inventory - Status: 200 - Response time: 1088ms - IP: 192.168.147.171 - User: user_1042 - RequestID: ppy58a2opoa +2025-06-18T15:15:08.981Z [INFO] payment-service - Operation: payment_processed - Processing time: 528ms - RequestID: 31roq5iodhw +2025-06-18T15:15:09.081Z [INFO] payment-service - Database SELECT on sessions - Execution time: 52ms - Rows affected: 96 - RequestID: loofvuzrzcs +2025-06-18T15:15:09.181Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 742ms - RequestID: ab55e5wfwlp +2025-06-18T15:15:09.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.81.206 - RequestID: 9nf5feudlou +2025-06-18T15:15:09.381Z [DEBUG] auth-service - Auth event: login_failed - User: user_1011 - IP: 192.168.11.60 - RequestID: x2w2vqlpp2 +2025-06-18T15:15:09.481Z [DEBUG] auth-service - Operation: order_created - Processing time: 426ms - RequestID: mza6hqubxzc +2025-06-18T15:15:09.581Z [DEBUG] user-service - GET /api/v1/orders - Status: 404 - Response time: 1138ms - IP: 192.168.194.41 - User: user_1032 - RequestID: qw15p0qxo4b +2025-06-18T15:15:09.681Z [INFO] inventory-service - Operation: order_created - Processing time: 692ms - RequestID: xag9hdqk7l +2025-06-18T15:15:09.781Z [TRACE] user-service - GET /api/v1/payments - Status: 502 - Response time: 737ms - IP: 192.168.167.32 - User: user_1001 - RequestID: 5akr5na6vkk +2025-06-18T15:15:09.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 427ms - RequestID: fvtama1e1y +2025-06-18T15:15:09.981Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 121ms - IP: 192.168.141.100 - User: user_1070 - RequestID: at7aau2nf6s +2025-06-18T15:15:10.081Z [INFO] inventory-service - Auth event: password_change - User: user_1041 - IP: 192.168.133.7 - RequestID: qhv76815dyr +2025-06-18T15:15:10.181Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 404 - Response time: 1743ms - IP: 192.168.144.38 - User: user_1073 - RequestID: p2h5l3uwe6p +2025-06-18T15:15:10.281Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 299ms - RequestID: q9bzo4n3a5 +2025-06-18T15:15:10.381Z [INFO] user-service - PUT /api/v1/inventory - Status: 400 - Response time: 1700ms - IP: 192.168.36.218 - User: user_1089 - RequestID: 006xwp1u0c1sq +2025-06-18T15:15:10.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.30.79 - RequestID: y47wfd5rw7 +2025-06-18T15:15:10.581Z [INFO] order-service - Auth event: login_success - User: user_1046 - IP: 192.168.211.72 - RequestID: 3bucpqp7qdg +2025-06-18T15:15:10.681Z [DEBUG] order-service - Operation: cache_miss - Processing time: 890ms - RequestID: esapkc6o6h5 +2025-06-18T15:15:10.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.247.134 - RequestID: h7pn8av2no7 +2025-06-18T15:15:10.881Z [TRACE] auth-service - Auth event: password_change - User: user_1091 - IP: 192.168.104.37 - RequestID: fcnkmol1ahq +2025-06-18T15:15:10.981Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 401 - Response time: 994ms - IP: 192.168.159.94 - User: user_1052 - RequestID: vdt25sc8e8r +2025-06-18T15:15:11.081Z [TRACE] auth-service - Operation: order_created - Processing time: 690ms - RequestID: 90j9owtycd +2025-06-18T15:15:11.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 405ms - RequestID: rgo8gp4pql +2025-06-18T15:15:11.281Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 479ms - Rows affected: 44 - RequestID: pchmgr97c7n +2025-06-18T15:15:11.381Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 109ms - Rows affected: 30 - RequestID: f5jwf4vjzzr +2025-06-18T15:15:11.481Z [INFO] inventory-service - Auth event: password_change - User: user_1079 - IP: 192.168.174.114 - RequestID: o5ecvjzmy3k +2025-06-18T15:15:11.581Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 503 - Response time: 457ms - IP: 192.168.144.38 - User: user_1017 - RequestID: ae5j9zlj1c +2025-06-18T15:15:11.681Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 366ms - Rows affected: 50 - RequestID: ce0fv5t53ps +2025-06-18T15:15:11.781Z [INFO] payment-service - Database INSERT on payments - Execution time: 270ms - Rows affected: 51 - RequestID: sydarj6cyh +2025-06-18T15:15:11.881Z [INFO] auth-service - Operation: inventory_updated - Processing time: 761ms - RequestID: 9nochx8cw8 +2025-06-18T15:15:11.981Z [TRACE] auth-service - Auth event: login_success - User: user_1075 - IP: 192.168.53.133 - RequestID: n3yzltwyj3f +2025-06-18T15:15:12.081Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 70ms - Rows affected: 31 - RequestID: 995gv0zzpp +2025-06-18T15:15:12.181Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 348ms - Rows affected: 46 - RequestID: km15gepi4m +2025-06-18T15:15:12.281Z [INFO] order-service - Database INSERT on sessions - Execution time: 97ms - Rows affected: 71 - RequestID: 4oytb7gq8ia +2025-06-18T15:15:12.381Z [TRACE] order-service - Auth event: login_success - User: user_1084 - IP: 192.168.28.146 - RequestID: vv5ej8f40xn +2025-06-18T15:15:12.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1085 - IP: 192.168.81.206 - RequestID: gmgkztuvtxw +2025-06-18T15:15:12.581Z [INFO] order-service - Database UPDATE on payments - Execution time: 257ms - Rows affected: 41 - RequestID: qy9ljisp86 +2025-06-18T15:15:12.681Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 503 - Response time: 27ms - IP: 192.168.159.94 - User: user_1031 - RequestID: znkzszqv3qa +2025-06-18T15:15:12.781Z [INFO] payment-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.240.169 - RequestID: 6jfczz2ql9n +2025-06-18T15:15:12.881Z [TRACE] auth-service - Operation: cache_hit - Processing time: 100ms - RequestID: 2xye8j73psj +2025-06-18T15:15:12.981Z [INFO] notification-service - Database DELETE on sessions - Execution time: 221ms - Rows affected: 77 - RequestID: 0j6sehq137rt +2025-06-18T15:15:13.081Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.32.38 - RequestID: fvug21rgvi +2025-06-18T15:15:13.181Z [TRACE] user-service - GET /api/v1/payments - Status: 400 - Response time: 881ms - IP: 192.168.181.225 - User: user_1012 - RequestID: s54b4q4i2c +2025-06-18T15:15:13.281Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 1577ms - IP: 192.168.187.199 - User: user_1009 - RequestID: rt0ofrkku2 +2025-06-18T15:15:13.381Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 8ms - Rows affected: 46 - RequestID: 5hk2ez3tyzw +2025-06-18T15:15:13.481Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.97.87 - RequestID: m4280txvna +2025-06-18T15:15:13.581Z [DEBUG] auth-service - Auth event: login_success - User: user_1001 - IP: 192.168.181.225 - RequestID: cq3k9665wzp +2025-06-18T15:15:13.681Z [INFO] payment-service - PATCH /api/v1/orders - Status: 201 - Response time: 439ms - IP: 192.168.31.117 - User: user_1097 - RequestID: c0il9mbfi2 +2025-06-18T15:15:13.781Z [INFO] user-service - Database UPDATE on products - Execution time: 294ms - Rows affected: 79 - RequestID: teavhdxmfx +2025-06-18T15:15:13.881Z [TRACE] auth-service - Auth event: password_change - User: user_1014 - IP: 192.168.11.60 - RequestID: 9d0or5nivs +2025-06-18T15:15:13.981Z [TRACE] auth-service - Database SELECT on payments - Execution time: 355ms - Rows affected: 85 - RequestID: y6cfu3onkn +2025-06-18T15:15:14.081Z [DEBUG] auth-service - Operation: order_created - Processing time: 291ms - RequestID: 4ypv3i6f1lh +2025-06-18T15:15:14.181Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 302ms - Rows affected: 39 - RequestID: olg3mqi514 +2025-06-18T15:15:14.281Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 681ms - RequestID: c3mifyfcqst +2025-06-18T15:15:14.381Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 201 - Response time: 289ms - IP: 192.168.14.77 - User: user_1082 - RequestID: dtni11d98en +2025-06-18T15:15:14.481Z [TRACE] user-service - Operation: inventory_updated - Processing time: 800ms - RequestID: yjzcfe92llk +2025-06-18T15:15:14.581Z [INFO] user-service - DELETE /api/v1/users - Status: 500 - Response time: 1521ms - IP: 192.168.32.38 - User: user_1022 - RequestID: 9ccxx8g2a94 +2025-06-18T15:15:14.681Z [TRACE] auth-service - Auth event: login_failed - User: user_1088 - IP: 192.168.235.117 - RequestID: zl4mhynbn5 +2025-06-18T15:15:14.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1098 - IP: 192.168.13.72 - RequestID: aocutrt5ngi +2025-06-18T15:15:14.881Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 1013ms - RequestID: 5d3tnt3a24c +2025-06-18T15:15:14.981Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 174ms - Rows affected: 95 - RequestID: 3icncmhcgdh +2025-06-18T15:15:15.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 595ms - RequestID: zapqqvkob +2025-06-18T15:15:15.181Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 813ms - RequestID: j98rxq34zf +2025-06-18T15:15:15.281Z [INFO] payment-service - Database INSERT on sessions - Execution time: 308ms - Rows affected: 32 - RequestID: qooxsuyctr +2025-06-18T15:15:15.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1013 - IP: 192.168.181.225 - RequestID: em11icxja7u +2025-06-18T15:15:15.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.10.184 - RequestID: j05sg7hue8d +2025-06-18T15:15:15.581Z [TRACE] order-service - Auth event: login_failed - User: user_1070 - IP: 192.168.10.184 - RequestID: i7mpjmk8hj +2025-06-18T15:15:15.681Z [TRACE] notification-service - GET /api/v1/inventory - Status: 500 - Response time: 1698ms - IP: 192.168.85.229 - User: user_1072 - RequestID: zkc3ua0mfp +2025-06-18T15:15:15.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.227.77 - RequestID: 7u8ak2ipf38 +2025-06-18T15:15:15.881Z [TRACE] inventory-service - Auth event: password_change - User: user_1081 - IP: 192.168.227.77 - RequestID: uia4kgwd9x +2025-06-18T15:15:15.981Z [DEBUG] order-service - PUT /api/v1/users - Status: 403 - Response time: 31ms - IP: 192.168.100.240 - User: user_1052 - RequestID: tupvrr7zrn +2025-06-18T15:15:16.081Z [INFO] payment-service - GET /api/v1/payments - Status: 200 - Response time: 676ms - IP: 192.168.232.72 - User: user_1010 - RequestID: b485uf8zfgo +2025-06-18T15:15:16.181Z [INFO] payment-service - Database INSERT on sessions - Execution time: 366ms - Rows affected: 80 - RequestID: 9vmbh7ig4w +2025-06-18T15:15:16.281Z [INFO] order-service - Auth event: password_change - User: user_1010 - IP: 192.168.81.206 - RequestID: 6cf9u9ndots +2025-06-18T15:15:16.381Z [DEBUG] order-service - Operation: notification_queued - Processing time: 678ms - RequestID: nr1zxf0bdz +2025-06-18T15:15:16.481Z [TRACE] auth-service - GET /api/v1/users - Status: 502 - Response time: 1215ms - IP: 192.168.133.7 - User: user_1026 - RequestID: vy5po5oi6g +2025-06-18T15:15:16.581Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 404 - Response time: 173ms - IP: 192.168.13.72 - User: user_1089 - RequestID: lwsfzgig1o +2025-06-18T15:15:16.681Z [DEBUG] notification-service - Auth event: password_change - User: user_1073 - IP: 192.168.211.72 - RequestID: kfbt16ub5om +2025-06-18T15:15:16.781Z [INFO] order-service - PUT /api/v1/auth/login - Status: 502 - Response time: 817ms - IP: 192.168.211.72 - User: user_1036 - RequestID: bpinps9vilh +2025-06-18T15:15:16.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 914ms - RequestID: 0whna6l6puy +2025-06-18T15:15:16.981Z [DEBUG] user-service - Database SELECT on products - Execution time: 76ms - Rows affected: 21 - RequestID: ogmwghu0ts +2025-06-18T15:15:17.081Z [TRACE] payment-service - Auth event: login_success - User: user_1018 - IP: 192.168.133.7 - RequestID: i715c7zw2b8 +2025-06-18T15:15:17.181Z [TRACE] user-service - GET /api/v1/users - Status: 201 - Response time: 1781ms - IP: 192.168.53.133 - User: user_1090 - RequestID: ew0996ph9b +2025-06-18T15:15:17.281Z [INFO] auth-service - GET /api/v1/payments - Status: 404 - Response time: 368ms - IP: 192.168.187.199 - User: user_1095 - RequestID: k5ihmw0bd9 +2025-06-18T15:15:17.381Z [TRACE] payment-service - Operation: notification_queued - Processing time: 108ms - RequestID: qnsn6t82q99 +2025-06-18T15:15:17.481Z [DEBUG] user-service - Database DELETE on products - Execution time: 258ms - Rows affected: 56 - RequestID: o8rhkybk4s +2025-06-18T15:15:17.581Z [INFO] user-service - Operation: order_created - Processing time: 430ms - RequestID: l0ml5sdf3y +2025-06-18T15:15:17.681Z [INFO] notification-service - PUT /api/v1/orders - Status: 201 - Response time: 731ms - IP: 192.168.232.72 - User: user_1080 - RequestID: 6j2nxr829xq +2025-06-18T15:15:17.781Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 671ms - RequestID: wo6ajfdupxd +2025-06-18T15:15:17.881Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 464ms - Rows affected: 35 - RequestID: 2r6s97bqmnv +2025-06-18T15:15:17.981Z [DEBUG] user-service - Operation: notification_queued - Processing time: 284ms - RequestID: 30z2fd53dcb +2025-06-18T15:15:18.081Z [DEBUG] order-service - POST /api/v1/orders - Status: 502 - Response time: 1507ms - IP: 192.168.33.76 - User: user_1039 - RequestID: 0vl2qafezik +2025-06-18T15:15:18.181Z [TRACE] order-service - Operation: email_sent - Processing time: 302ms - RequestID: mw1nhm8sjf +2025-06-18T15:15:18.281Z [INFO] payment-service - Auth event: login_success - User: user_1005 - IP: 192.168.32.38 - RequestID: v94d59nbwcs +2025-06-18T15:15:18.381Z [INFO] auth-service - Database UPDATE on products - Execution time: 206ms - Rows affected: 90 - RequestID: di5cm9busi6 +2025-06-18T15:15:18.481Z [TRACE] order-service - Operation: cache_miss - Processing time: 100ms - RequestID: 7ysdwcz1lia +2025-06-18T15:15:18.581Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 349ms - Rows affected: 43 - RequestID: irw9n84t3u +2025-06-18T15:15:18.681Z [DEBUG] user-service - Auth event: logout - User: user_1080 - IP: 192.168.31.117 - RequestID: rue31tde1s +2025-06-18T15:15:18.781Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 108ms - Rows affected: 67 - RequestID: bazo0yjz2bq +2025-06-18T15:15:18.881Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 415ms - RequestID: hc4vlmltel8 +2025-06-18T15:15:18.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.85.229 - RequestID: yq10tnfpozi +2025-06-18T15:15:19.081Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 114ms - RequestID: v92yf0f8ft +2025-06-18T15:15:19.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.144.38 - RequestID: twlv5xnnp5m +2025-06-18T15:15:19.281Z [INFO] notification-service - Operation: payment_processed - Processing time: 508ms - RequestID: e4pchwnaf6j +2025-06-18T15:15:19.381Z [TRACE] user-service - Database DELETE on users - Execution time: 394ms - Rows affected: 23 - RequestID: xk5ih6ce6bn +2025-06-18T15:15:19.481Z [INFO] notification-service - Operation: inventory_updated - Processing time: 751ms - RequestID: z1ggk7xnmt +2025-06-18T15:15:19.581Z [TRACE] user-service - PUT /api/v1/users - Status: 502 - Response time: 367ms - IP: 192.168.144.38 - User: user_1001 - RequestID: iso0c08s2m +2025-06-18T15:15:19.681Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.144.38 - RequestID: dnygbo67jim +2025-06-18T15:15:19.781Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 858ms - RequestID: ascb1c4jzom +2025-06-18T15:15:19.881Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1659ms - IP: 192.168.181.225 - User: user_1011 - RequestID: 3ax1o7id3ab +2025-06-18T15:15:19.981Z [INFO] user-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.187.199 - RequestID: d08nfyd435a +2025-06-18T15:15:20.081Z [INFO] inventory-service - Database UPDATE on products - Execution time: 73ms - Rows affected: 9 - RequestID: ndqb9m3e2pl +2025-06-18T15:15:20.181Z [DEBUG] inventory-service - Operation: order_created - Processing time: 789ms - RequestID: 4bcltufk72i +2025-06-18T15:15:20.281Z [INFO] inventory-service - Auth event: login_failed - User: user_1089 - IP: 192.168.170.215 - RequestID: cp190vte0q +2025-06-18T15:15:20.381Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1921ms - IP: 192.168.144.38 - User: user_1021 - RequestID: frfetatp9ik +2025-06-18T15:15:20.481Z [TRACE] user-service - Operation: cache_hit - Processing time: 876ms - RequestID: d8z5r1xir1e +2025-06-18T15:15:20.581Z [TRACE] notification-service - Operation: email_sent - Processing time: 919ms - RequestID: tb8d8xaiunq +2025-06-18T15:15:20.681Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1894ms - IP: 192.168.100.240 - User: user_1063 - RequestID: 08p5g73woob3 +2025-06-18T15:15:20.781Z [INFO] notification-service - Operation: notification_queued - Processing time: 50ms - RequestID: smyx2xgtn5 +2025-06-18T15:15:20.881Z [INFO] inventory-service - Database UPDATE on users - Execution time: 175ms - Rows affected: 49 - RequestID: 8i6congi856 +2025-06-18T15:15:20.981Z [TRACE] auth-service - Auth event: password_change - User: user_1013 - IP: 192.168.159.94 - RequestID: ffxgrx8vqgc +2025-06-18T15:15:21.081Z [DEBUG] user-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.227.233 - RequestID: gsgmzno1bg4 +2025-06-18T15:15:21.181Z [INFO] notification-service - Auth event: login_failed - User: user_1040 - IP: 192.168.100.240 - RequestID: g3ipeijxzal +2025-06-18T15:15:21.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.97.87 - RequestID: 9ene4s5yn +2025-06-18T15:15:21.381Z [TRACE] order-service - Database UPDATE on products - Execution time: 476ms - Rows affected: 16 - RequestID: qtlfk90z339 +2025-06-18T15:15:21.481Z [DEBUG] auth-service - POST /api/v1/payments - Status: 201 - Response time: 1370ms - IP: 192.168.31.117 - User: user_1099 - RequestID: lonkj9r4zyj +2025-06-18T15:15:21.581Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 956ms - RequestID: rjsvrfuk95k +2025-06-18T15:15:21.681Z [INFO] user-service - Auth event: login_failed - User: user_1035 - IP: 192.168.46.63 - RequestID: sldbsulrtl +2025-06-18T15:15:21.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1080 - IP: 192.168.79.116 - RequestID: 3wabmhfpnm8 +2025-06-18T15:15:21.881Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 402ms - Rows affected: 26 - RequestID: de9mnskfram +2025-06-18T15:15:21.981Z [TRACE] order-service - Database DELETE on orders - Execution time: 270ms - Rows affected: 20 - RequestID: 5chhz6tp5sr +2025-06-18T15:15:22.081Z [DEBUG] notification-service - Operation: email_sent - Processing time: 816ms - RequestID: 9izawy6x6uu +2025-06-18T15:15:22.181Z [INFO] payment-service - Database UPDATE on users - Execution time: 235ms - Rows affected: 72 - RequestID: akrkob009 +2025-06-18T15:15:22.281Z [DEBUG] payment-service - Auth event: password_change - User: user_1047 - IP: 192.168.159.94 - RequestID: 7da9q97dmjx +2025-06-18T15:15:22.381Z [INFO] payment-service - Auth event: password_change - User: user_1082 - IP: 192.168.10.184 - RequestID: o86dufgeuhj +2025-06-18T15:15:22.481Z [TRACE] inventory-service - Database INSERT on users - Execution time: 251ms - Rows affected: 18 - RequestID: 28e3xtcvgg1 +2025-06-18T15:15:22.581Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1046 - IP: 192.168.104.37 - RequestID: yu4bkdscb9h +2025-06-18T15:15:22.681Z [DEBUG] order-service - Auth event: logout - User: user_1032 - IP: 192.168.64.33 - RequestID: 1itelx4jips +2025-06-18T15:15:22.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 889ms - RequestID: phspufc8yv9 +2025-06-18T15:15:22.881Z [DEBUG] inventory-service - Operation: order_created - Processing time: 391ms - RequestID: f7vqtei6pwt +2025-06-18T15:15:22.981Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 500 - Response time: 1993ms - IP: 192.168.227.233 - User: user_1061 - RequestID: 2eh69hls8ed +2025-06-18T15:15:23.081Z [INFO] user-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.144.38 - RequestID: 5z4ji56rcyc +2025-06-18T15:15:23.181Z [INFO] payment-service - Database INSERT on users - Execution time: 319ms - Rows affected: 39 - RequestID: oewybx8bm8 +2025-06-18T15:15:23.281Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 671ms - IP: 192.168.33.76 - User: user_1031 - RequestID: 165k6vrqxr3 +2025-06-18T15:15:23.381Z [INFO] order-service - POST /api/v1/auth/login - Status: 200 - Response time: 715ms - IP: 192.168.79.116 - User: user_1086 - RequestID: y4fihxna1nb +2025-06-18T15:15:23.481Z [DEBUG] payment-service - Auth event: login_failed - User: user_1048 - IP: 192.168.187.199 - RequestID: m74bqzeh1ta +2025-06-18T15:15:23.581Z [INFO] payment-service - Database INSERT on users - Execution time: 85ms - Rows affected: 70 - RequestID: dmq8ceisx1m +2025-06-18T15:15:23.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 879ms - RequestID: v5j7aqispn +2025-06-18T15:15:23.781Z [DEBUG] notification-service - Operation: order_created - Processing time: 610ms - RequestID: 5tz9lf2tb2v +2025-06-18T15:15:23.881Z [INFO] order-service - Auth event: password_change - User: user_1090 - IP: 192.168.68.128 - RequestID: 1z15cztbsjj +2025-06-18T15:15:23.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.232.72 - RequestID: m29cujtpd1a +2025-06-18T15:15:24.081Z [INFO] payment-service - Database DELETE on payments - Execution time: 425ms - Rows affected: 12 - RequestID: jkdrex02bui +2025-06-18T15:15:24.181Z [TRACE] order-service - DELETE /api/v1/users - Status: 400 - Response time: 549ms - IP: 192.168.170.215 - User: user_1084 - RequestID: fpv9dfvjbew +2025-06-18T15:15:24.281Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 263ms - Rows affected: 7 - RequestID: w9uv4xr0j +2025-06-18T15:15:24.381Z [TRACE] inventory-service - Auth event: logout - User: user_1027 - IP: 192.168.79.116 - RequestID: onb1idiyo8 +2025-06-18T15:15:24.481Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 1377ms - IP: 192.168.46.63 - User: user_1077 - RequestID: c2jc87wmjbu +2025-06-18T15:15:24.581Z [DEBUG] order-service - Database UPDATE on products - Execution time: 389ms - Rows affected: 95 - RequestID: vzxi0orh6i +2025-06-18T15:15:24.681Z [DEBUG] user-service - Database DELETE on orders - Execution time: 327ms - Rows affected: 91 - RequestID: 2qsi5d4eee8 +2025-06-18T15:15:24.781Z [INFO] notification-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.227.77 - RequestID: l35pjcc2eo +2025-06-18T15:15:24.881Z [INFO] notification-service - Operation: notification_queued - Processing time: 691ms - RequestID: 4d9l9k16nt1 +2025-06-18T15:15:24.981Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 888ms - RequestID: io6g9l45dko +2025-06-18T15:15:25.081Z [INFO] user-service - Operation: email_sent - Processing time: 203ms - RequestID: qduc5lyazs +2025-06-18T15:15:25.181Z [TRACE] notification-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.247.134 - RequestID: u9lc8nwgms +2025-06-18T15:15:25.281Z [DEBUG] order-service - Database INSERT on payments - Execution time: 353ms - Rows affected: 42 - RequestID: nl5v5ejhmwc +2025-06-18T15:15:25.381Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 102ms - IP: 192.168.68.158 - User: user_1027 - RequestID: glk15mbq8a +2025-06-18T15:15:25.481Z [INFO] inventory-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.159.94 - RequestID: yea02m9u80l +2025-06-18T15:15:25.581Z [DEBUG] order-service - Operation: cache_hit - Processing time: 1018ms - RequestID: ch8vmgnyukd +2025-06-18T15:15:25.681Z [INFO] user-service - Auth event: password_change - User: user_1034 - IP: 192.168.170.215 - RequestID: 80b7a0ojpn8 +2025-06-18T15:15:25.781Z [TRACE] user-service - Operation: inventory_updated - Processing time: 260ms - RequestID: 0794l2i4lr8i +2025-06-18T15:15:25.881Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 401 - Response time: 408ms - IP: 192.168.187.199 - User: user_1037 - RequestID: y78kp4dj2d +2025-06-18T15:15:25.981Z [TRACE] order-service - Database DELETE on sessions - Execution time: 494ms - Rows affected: 18 - RequestID: 3d7s29vhi8k +2025-06-18T15:15:26.081Z [TRACE] notification-service - Database INSERT on payments - Execution time: 382ms - Rows affected: 28 - RequestID: lda6s97xfn9 +2025-06-18T15:15:26.181Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 400 - Response time: 1389ms - IP: 192.168.144.38 - User: user_1019 - RequestID: 8it66ygn8vf +2025-06-18T15:15:26.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1030 - IP: 192.168.10.184 - RequestID: hji1po59j68 +2025-06-18T15:15:26.381Z [DEBUG] payment-service - Auth event: password_change - User: user_1022 - IP: 192.168.79.116 - RequestID: lv9i92584p +2025-06-18T15:15:26.481Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 73ms - Rows affected: 80 - RequestID: twntaf12i +2025-06-18T15:15:26.581Z [DEBUG] payment-service - Auth event: password_change - User: user_1066 - IP: 192.168.28.146 - RequestID: ft2ap6gk13c +2025-06-18T15:15:26.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 535ms - RequestID: kn0n7onifl +2025-06-18T15:15:26.781Z [INFO] user-service - Auth event: login_success - User: user_1086 - IP: 192.168.242.165 - RequestID: 3v00l52ua3n +2025-06-18T15:15:26.881Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 850ms - IP: 192.168.44.5 - User: user_1049 - RequestID: 4dcxqrggglk +2025-06-18T15:15:26.981Z [INFO] auth-service - Operation: cache_hit - Processing time: 856ms - RequestID: qf0iwi6szq +2025-06-18T15:15:27.081Z [DEBUG] order-service - Auth event: login_success - User: user_1087 - IP: 192.168.141.100 - RequestID: xdpys0owuv +2025-06-18T15:15:27.181Z [TRACE] auth-service - Operation: email_sent - Processing time: 491ms - RequestID: gnxgw51h0w7 +2025-06-18T15:15:27.281Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 845ms - RequestID: 8clzuxjf823 +2025-06-18T15:15:27.381Z [INFO] payment-service - PUT /api/v1/inventory - Status: 400 - Response time: 734ms - IP: 192.168.194.41 - User: user_1044 - RequestID: miwdw8cxo3t +2025-06-18T15:15:27.481Z [TRACE] auth-service - Database INSERT on products - Execution time: 138ms - Rows affected: 18 - RequestID: s09g0lf6sw +2025-06-18T15:15:27.581Z [TRACE] order-service - Database INSERT on products - Execution time: 245ms - Rows affected: 36 - RequestID: crkoz4am1o +2025-06-18T15:15:27.681Z [DEBUG] payment-service - GET /api/v1/payments - Status: 503 - Response time: 692ms - IP: 192.168.170.215 - User: user_1093 - RequestID: ce3xllihs5d +2025-06-18T15:15:27.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.187.199 - RequestID: 9x091o2s3d9 +2025-06-18T15:15:27.881Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 343ms - Rows affected: 57 - RequestID: 1bcooferk7h +2025-06-18T15:15:27.981Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 400 - Response time: 127ms - IP: 192.168.104.37 - User: user_1047 - RequestID: 8k11jag3gxx +2025-06-18T15:15:28.081Z [DEBUG] notification-service - Operation: order_created - Processing time: 993ms - RequestID: jfomytjv2s +2025-06-18T15:15:28.181Z [DEBUG] order-service - Operation: cache_miss - Processing time: 285ms - RequestID: w4l923bh3qo +2025-06-18T15:15:28.281Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 502 - Response time: 1583ms - IP: 192.168.181.225 - User: user_1001 - RequestID: v232fyay54g +2025-06-18T15:15:28.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 933ms - RequestID: 22xdxf83mtq +2025-06-18T15:15:28.481Z [INFO] inventory-service - Database DELETE on products - Execution time: 171ms - Rows affected: 88 - RequestID: iv1b8mb6tg +2025-06-18T15:15:28.581Z [TRACE] payment-service - Auth event: password_change - User: user_1027 - IP: 192.168.31.117 - RequestID: nhzet8ibklh +2025-06-18T15:15:28.681Z [DEBUG] user-service - Auth event: logout - User: user_1000 - IP: 192.168.81.206 - RequestID: ewg0oscvvzw +2025-06-18T15:15:28.781Z [INFO] payment-service - Database SELECT on orders - Execution time: 159ms - Rows affected: 60 - RequestID: qrdzzpgmmu +2025-06-18T15:15:28.881Z [DEBUG] user-service - Auth event: logout - User: user_1008 - IP: 192.168.211.72 - RequestID: ft49usf9f4r +2025-06-18T15:15:28.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.11.60 - RequestID: d7kq2v2us1p +2025-06-18T15:15:29.081Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1488ms - IP: 192.168.194.41 - User: user_1072 - RequestID: ucd8nwgez88 +2025-06-18T15:15:29.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 877ms - RequestID: rupfx4rvs8 +2025-06-18T15:15:29.281Z [DEBUG] order-service - Operation: payment_processed - Processing time: 711ms - RequestID: ps1gur37kzd +2025-06-18T15:15:29.381Z [TRACE] order-service - Database DELETE on orders - Execution time: 193ms - Rows affected: 33 - RequestID: 8i4q4xvzood +2025-06-18T15:15:29.481Z [INFO] notification-service - Database INSERT on sessions - Execution time: 156ms - Rows affected: 0 - RequestID: xgzt0q7y3d +2025-06-18T15:15:29.581Z [TRACE] inventory-service - Database INSERT on users - Execution time: 73ms - Rows affected: 38 - RequestID: v79xg6u3w1n +2025-06-18T15:15:29.681Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 404 - Response time: 290ms - IP: 192.168.181.225 - User: user_1069 - RequestID: nbqq4chy77f +2025-06-18T15:15:29.781Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 200 - Response time: 55ms - IP: 192.168.181.225 - User: user_1065 - RequestID: 3v0akjuvakr +2025-06-18T15:15:29.881Z [INFO] notification-service - PATCH /api/v1/users - Status: 401 - Response time: 872ms - IP: 192.168.46.63 - User: user_1055 - RequestID: 4lsqgv4qqzb +2025-06-18T15:15:29.981Z [INFO] notification-service - POST /api/v1/orders - Status: 500 - Response time: 1422ms - IP: 192.168.36.218 - User: user_1082 - RequestID: urloga7lpgk +2025-06-18T15:15:30.081Z [TRACE] user-service - GET /api/v1/orders - Status: 500 - Response time: 1314ms - IP: 192.168.133.7 - User: user_1046 - RequestID: rldxjwozs9 +2025-06-18T15:15:30.181Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1971ms - IP: 192.168.30.79 - User: user_1016 - RequestID: 58x15fa4c8m +2025-06-18T15:15:30.281Z [INFO] notification-service - Operation: webhook_sent - Processing time: 409ms - RequestID: 8qm27st5qah +2025-06-18T15:15:30.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 368ms - RequestID: gqt39l5891n +2025-06-18T15:15:30.481Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 503 - Response time: 1001ms - IP: 192.168.159.94 - User: user_1048 - RequestID: 63mlokj68r7 +2025-06-18T15:15:30.581Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 400 - Response time: 812ms - IP: 192.168.10.184 - User: user_1062 - RequestID: jzgswnk2sfg +2025-06-18T15:15:30.681Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 205ms - Rows affected: 50 - RequestID: hvyv1t2ihj5 +2025-06-18T15:15:30.781Z [INFO] user-service - Auth event: logout - User: user_1075 - IP: 192.168.53.133 - RequestID: ps25osyjfw +2025-06-18T15:15:30.881Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 952ms - IP: 192.168.158.144 - User: user_1033 - RequestID: ci1gj7rl9id +2025-06-18T15:15:30.981Z [DEBUG] inventory-service - POST /api/v1/users - Status: 401 - Response time: 1130ms - IP: 192.168.10.184 - User: user_1098 - RequestID: tt1xzukj1dl +2025-06-18T15:15:31.081Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.64.33 - RequestID: orngqt5w2m +2025-06-18T15:15:31.181Z [TRACE] user-service - Operation: email_sent - Processing time: 386ms - RequestID: 3g2vhzt4w4k +2025-06-18T15:15:31.281Z [INFO] notification-service - GET /api/v1/payments - Status: 200 - Response time: 646ms - IP: 192.168.32.38 - User: user_1041 - RequestID: 80b0skorvnf +2025-06-18T15:15:31.381Z [TRACE] payment-service - POST /api/v1/payments - Status: 500 - Response time: 1870ms - IP: 192.168.28.146 - User: user_1038 - RequestID: 09rhkyj72iwr +2025-06-18T15:15:31.481Z [TRACE] user-service - Database SELECT on orders - Execution time: 289ms - Rows affected: 81 - RequestID: mpuyjx1liuj +2025-06-18T15:15:31.581Z [INFO] payment-service - Auth event: login_success - User: user_1019 - IP: 192.168.141.100 - RequestID: ds9xfmqz2ue +2025-06-18T15:15:31.681Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 400 - Response time: 352ms - IP: 192.168.11.60 - User: user_1030 - RequestID: r1s9a2i70is +2025-06-18T15:15:31.781Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 41ms - Rows affected: 1 - RequestID: uugjlb251g +2025-06-18T15:15:31.881Z [TRACE] user-service - Operation: cache_miss - Processing time: 371ms - RequestID: akph0ld0jde +2025-06-18T15:15:31.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 717ms - RequestID: 8vxgyd7qvqu +2025-06-18T15:15:32.081Z [TRACE] payment-service - Auth event: password_change - User: user_1091 - IP: 192.168.240.169 - RequestID: hkc3p2ahu08 +2025-06-18T15:15:32.181Z [INFO] order-service - Operation: email_sent - Processing time: 903ms - RequestID: oe29kra8td +2025-06-18T15:15:32.281Z [TRACE] inventory-service - Operation: email_sent - Processing time: 528ms - RequestID: p3lsm0zh1o +2025-06-18T15:15:32.381Z [TRACE] auth-service - Database DELETE on users - Execution time: 333ms - Rows affected: 41 - RequestID: 36cswqnex8d +2025-06-18T15:15:32.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1019 - IP: 192.168.235.117 - RequestID: z8nd72qwmxo +2025-06-18T15:15:32.581Z [DEBUG] user-service - DELETE /api/v1/payments - Status: 500 - Response time: 1774ms - IP: 192.168.187.199 - User: user_1076 - RequestID: uv83o5k6q9 +2025-06-18T15:15:32.681Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 845ms - RequestID: sbwgel466r +2025-06-18T15:15:32.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.194.41 - RequestID: djs5c86ea7k +2025-06-18T15:15:32.881Z [INFO] user-service - Auth event: login_failed - User: user_1079 - IP: 192.168.158.144 - RequestID: 7lvclhd1h1j +2025-06-18T15:15:32.981Z [TRACE] user-service - GET /api/v1/inventory - Status: 403 - Response time: 1021ms - IP: 192.168.232.72 - User: user_1039 - RequestID: zyq0djes05 +2025-06-18T15:15:33.081Z [TRACE] order-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.31.117 - RequestID: xnq6zojcd3i +2025-06-18T15:15:33.181Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 502 - Response time: 1002ms - IP: 192.168.229.123 - User: user_1063 - RequestID: o64bmer5y3d +2025-06-18T15:15:33.281Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 269ms - Rows affected: 22 - RequestID: hc3b1r6b56n +2025-06-18T15:15:33.381Z [DEBUG] user-service - Operation: cache_hit - Processing time: 770ms - RequestID: 4z2ddbwndxk +2025-06-18T15:15:33.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.141.100 - RequestID: vwlc16gpj9q +2025-06-18T15:15:33.581Z [INFO] inventory-service - Auth event: login_success - User: user_1034 - IP: 192.168.53.133 - RequestID: 826wz11wpq +2025-06-18T15:15:33.681Z [INFO] inventory-service - Operation: cache_miss - Processing time: 1041ms - RequestID: zx9b177ic8h +2025-06-18T15:15:33.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 195ms - RequestID: d1kg59bqvbc +2025-06-18T15:15:33.881Z [INFO] auth-service - Auth event: logout - User: user_1012 - IP: 192.168.229.123 - RequestID: x2ore22nwom +2025-06-18T15:15:33.981Z [TRACE] notification-service - POST /api/v1/users - Status: 403 - Response time: 140ms - IP: 192.168.31.117 - User: user_1092 - RequestID: y664bui9yao +2025-06-18T15:15:34.081Z [INFO] payment-service - GET /api/v1/inventory - Status: 401 - Response time: 813ms - IP: 192.168.97.87 - User: user_1032 - RequestID: 977r5kws2qm +2025-06-18T15:15:34.181Z [TRACE] auth-service - Database UPDATE on users - Execution time: 191ms - Rows affected: 93 - RequestID: ljge4aiw19 +2025-06-18T15:15:34.281Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 224ms - Rows affected: 89 - RequestID: 8dpfv7yrpcg +2025-06-18T15:15:34.381Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 503 - Response time: 632ms - IP: 192.168.31.117 - User: user_1039 - RequestID: ghijwgrntng +2025-06-18T15:15:34.481Z [INFO] payment-service - GET /api/v1/payments - Status: 201 - Response time: 1792ms - IP: 192.168.242.165 - User: user_1025 - RequestID: kqmhbrsd9zl +2025-06-18T15:15:34.581Z [INFO] inventory-service - Operation: payment_processed - Processing time: 340ms - RequestID: ye183l4em6 +2025-06-18T15:15:34.681Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 302ms - Rows affected: 54 - RequestID: lo74r6hogmi +2025-06-18T15:15:34.781Z [TRACE] user-service - POST /api/v1/orders - Status: 401 - Response time: 2004ms - IP: 192.168.242.165 - User: user_1056 - RequestID: 6xdxhgw4lwg +2025-06-18T15:15:34.881Z [TRACE] order-service - Database SELECT on sessions - Execution time: 374ms - Rows affected: 51 - RequestID: r15c7er0ynr +2025-06-18T15:15:34.981Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 931ms - RequestID: o7o60bhlgpj +2025-06-18T15:15:35.081Z [DEBUG] payment-service - Operation: order_created - Processing time: 521ms - RequestID: pqfk3pldbrh +2025-06-18T15:15:35.181Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 825ms - RequestID: yv84glf84u +2025-06-18T15:15:35.281Z [TRACE] inventory-service - GET /api/v1/users - Status: 404 - Response time: 159ms - IP: 192.168.247.134 - User: user_1071 - RequestID: tpxpj22ht3m +2025-06-18T15:15:35.381Z [TRACE] order-service - Database UPDATE on users - Execution time: 134ms - Rows affected: 91 - RequestID: b3i6zd198fc +2025-06-18T15:15:35.481Z [INFO] user-service - Operation: inventory_updated - Processing time: 966ms - RequestID: ctvjep7grwi +2025-06-18T15:15:35.581Z [INFO] auth-service - Database INSERT on orders - Execution time: 353ms - Rows affected: 38 - RequestID: hckjmeu525i +2025-06-18T15:15:35.681Z [INFO] inventory-service - Auth event: login_failed - User: user_1033 - IP: 192.168.167.32 - RequestID: 8ylmomtmuye +2025-06-18T15:15:35.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1022 - IP: 192.168.104.37 - RequestID: h0id2n9knq5 +2025-06-18T15:15:35.881Z [TRACE] order-service - Database INSERT on users - Execution time: 346ms - Rows affected: 59 - RequestID: vskt0c3ap4 +2025-06-18T15:15:35.981Z [INFO] auth-service - GET /api/v1/orders - Status: 403 - Response time: 1476ms - IP: 192.168.196.226 - User: user_1040 - RequestID: wwiodexdp6l +2025-06-18T15:15:36.081Z [INFO] notification-service - POST /api/v1/inventory - Status: 201 - Response time: 1881ms - IP: 192.168.11.60 - User: user_1075 - RequestID: ob8a1ni4v2l +2025-06-18T15:15:36.181Z [INFO] payment-service - PATCH /api/v1/payments - Status: 200 - Response time: 926ms - IP: 192.168.79.141 - User: user_1096 - RequestID: 5jm0u8nuq6n +2025-06-18T15:15:36.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 905ms - RequestID: it79sqetf79 +2025-06-18T15:15:36.381Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 695ms - IP: 192.168.33.76 - User: user_1070 - RequestID: 2brnt0wwh5w +2025-06-18T15:15:36.481Z [TRACE] user-service - Auth event: logout - User: user_1076 - IP: 192.168.144.38 - RequestID: 1vvk6w0jdko +2025-06-18T15:15:36.581Z [INFO] auth-service - Auth event: password_change - User: user_1043 - IP: 192.168.240.169 - RequestID: 3cgoiyxs6oz +2025-06-18T15:15:36.681Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 502 - Response time: 248ms - IP: 192.168.68.128 - User: user_1062 - RequestID: h25wh9zze9 +2025-06-18T15:15:36.781Z [TRACE] notification-service - Auth event: password_change - User: user_1014 - IP: 192.168.104.37 - RequestID: h58cugi598 +2025-06-18T15:15:36.881Z [TRACE] order-service - Database INSERT on users - Execution time: 7ms - Rows affected: 55 - RequestID: z0cxtfycuh8 +2025-06-18T15:15:36.981Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 403 - Response time: 219ms - IP: 192.168.104.37 - User: user_1069 - RequestID: 3neabg5ftgg +2025-06-18T15:15:37.081Z [INFO] order-service - Operation: webhook_sent - Processing time: 885ms - RequestID: wm5mpft54k +2025-06-18T15:15:37.181Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 295ms - RequestID: gi83hj1qrev +2025-06-18T15:15:37.281Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 40ms - Rows affected: 31 - RequestID: nl4625s4f5q +2025-06-18T15:15:37.381Z [INFO] auth-service - Operation: webhook_sent - Processing time: 798ms - RequestID: 2g8m8tg7ujp +2025-06-18T15:15:37.481Z [INFO] notification-service - Operation: email_sent - Processing time: 294ms - RequestID: ad9e4mhyo7o +2025-06-18T15:15:37.581Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 1199ms - IP: 192.168.196.226 - User: user_1030 - RequestID: jz5snykbam +2025-06-18T15:15:37.681Z [TRACE] user-service - Auth event: login_success - User: user_1075 - IP: 192.168.64.33 - RequestID: z567ca5svne +2025-06-18T15:15:37.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 171ms - RequestID: q7xbfl2xpm +2025-06-18T15:15:37.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 307ms - RequestID: lgkp0mrbv1 +2025-06-18T15:15:37.981Z [INFO] auth-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.113.218 - RequestID: g13wg153rlm +2025-06-18T15:15:38.081Z [INFO] notification-service - DELETE /api/v1/orders - Status: 201 - Response time: 1426ms - IP: 192.168.240.169 - User: user_1010 - RequestID: 93fljnvpss +2025-06-18T15:15:38.181Z [INFO] auth-service - GET /api/v1/inventory - Status: 500 - Response time: 1481ms - IP: 192.168.11.60 - User: user_1044 - RequestID: 5ujnytqh3kp +2025-06-18T15:15:38.281Z [INFO] inventory-service - Auth event: logout - User: user_1056 - IP: 192.168.232.72 - RequestID: 9h23gzd7elr +2025-06-18T15:15:38.381Z [DEBUG] auth-service - PUT /api/v1/users - Status: 200 - Response time: 1253ms - IP: 192.168.36.218 - User: user_1019 - RequestID: zxdx22f9ego +2025-06-18T15:15:38.481Z [DEBUG] payment-service - Database SELECT on products - Execution time: 195ms - Rows affected: 61 - RequestID: 5wf9xnltz43 +2025-06-18T15:15:38.581Z [INFO] notification-service - Auth event: login_success - User: user_1037 - IP: 192.168.100.240 - RequestID: bmuln63pt79 +2025-06-18T15:15:38.681Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 239ms - Rows affected: 33 - RequestID: e3w2b2k6n4j +2025-06-18T15:15:38.781Z [DEBUG] auth-service - Database INSERT on products - Execution time: 357ms - Rows affected: 65 - RequestID: lzowgf5kdsi +2025-06-18T15:15:38.881Z [INFO] notification-service - Auth event: login_success - User: user_1039 - IP: 192.168.167.32 - RequestID: elgaz8xzl7g +2025-06-18T15:15:38.981Z [DEBUG] order-service - Auth event: password_change - User: user_1069 - IP: 192.168.53.133 - RequestID: lry8egc26p +2025-06-18T15:15:39.081Z [DEBUG] order-service - POST /api/v1/orders - Status: 403 - Response time: 219ms - IP: 192.168.232.72 - User: user_1064 - RequestID: 6pbnpngjck4 +2025-06-18T15:15:39.181Z [DEBUG] auth-service - GET /api/v1/orders - Status: 403 - Response time: 1427ms - IP: 192.168.113.218 - User: user_1052 - RequestID: ueqyymp4dcc +2025-06-18T15:15:39.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 963ms - RequestID: 0pwou5ovh3sl +2025-06-18T15:15:39.381Z [TRACE] payment-service - Auth event: password_change - User: user_1090 - IP: 192.168.10.184 - RequestID: vhw0pav262 +2025-06-18T15:15:39.481Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 400 - Response time: 659ms - IP: 192.168.14.77 - User: user_1031 - RequestID: 4xx94boekie +2025-06-18T15:15:39.581Z [DEBUG] user-service - Database DELETE on users - Execution time: 250ms - Rows affected: 96 - RequestID: 5tgara6yy3o +2025-06-18T15:15:39.681Z [TRACE] payment-service - Operation: order_created - Processing time: 975ms - RequestID: cmxdyqnph0p +2025-06-18T15:15:39.781Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 201ms - Rows affected: 55 - RequestID: a3fx56e3pz +2025-06-18T15:15:39.881Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 89ms - Rows affected: 56 - RequestID: 7rmwgqv9cur +2025-06-18T15:15:39.981Z [TRACE] notification-service - GET /api/v1/inventory - Status: 404 - Response time: 167ms - IP: 192.168.81.206 - User: user_1030 - RequestID: 8b89gh2iw59 +2025-06-18T15:15:40.081Z [DEBUG] order-service - Operation: payment_processed - Processing time: 631ms - RequestID: v65z2dgx7lm +2025-06-18T15:15:40.181Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 174ms - Rows affected: 3 - RequestID: fovnzkpjuu4 +2025-06-18T15:15:40.281Z [TRACE] inventory-service - Auth event: password_change - User: user_1013 - IP: 192.168.147.171 - RequestID: 8gnxers3l0y +2025-06-18T15:15:40.381Z [TRACE] notification-service - Auth event: password_change - User: user_1069 - IP: 192.168.235.117 - RequestID: e65fc6hmb8 +2025-06-18T15:15:40.481Z [TRACE] notification-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.181.225 - RequestID: y2u5p79w7qa +2025-06-18T15:15:40.581Z [TRACE] payment-service - POST /api/v1/inventory - Status: 404 - Response time: 644ms - IP: 192.168.79.116 - User: user_1037 - RequestID: ly6ovmdj14h +2025-06-18T15:15:40.681Z [DEBUG] inventory-service - Auth event: logout - User: user_1016 - IP: 192.168.196.226 - RequestID: 3dmqpmrto4k +2025-06-18T15:15:40.781Z [DEBUG] user-service - Operation: payment_processed - Processing time: 768ms - RequestID: v3r2sbzvb1e +2025-06-18T15:15:40.881Z [INFO] order-service - Operation: inventory_updated - Processing time: 931ms - RequestID: z5678gqwhl +2025-06-18T15:15:40.981Z [INFO] inventory-service - Database INSERT on products - Execution time: 114ms - Rows affected: 93 - RequestID: lfp0hsv5ktc +2025-06-18T15:15:41.081Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1050ms - IP: 192.168.68.128 - User: user_1037 - RequestID: zdv9otn0qv +2025-06-18T15:15:41.181Z [INFO] auth-service - Auth event: password_change - User: user_1098 - IP: 192.168.79.143 - RequestID: 84hzlm1q2rd +2025-06-18T15:15:41.281Z [INFO] user-service - Operation: inventory_updated - Processing time: 1004ms - RequestID: 32367vaw0nj +2025-06-18T15:15:41.381Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 315ms - RequestID: f86it7k9z6e +2025-06-18T15:15:41.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 389ms - RequestID: gysb178vsjm +2025-06-18T15:15:41.581Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1015 - IP: 192.168.13.72 - RequestID: 4f9r3ylomoo +2025-06-18T15:15:41.681Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1502ms - IP: 192.168.227.77 - User: user_1048 - RequestID: fzyenrsmy4l +2025-06-18T15:15:41.781Z [DEBUG] order-service - Database DELETE on users - Execution time: 296ms - Rows affected: 50 - RequestID: zyacxxb8f1i +2025-06-18T15:15:41.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.138.123 - RequestID: 85pxtunzu7d +2025-06-18T15:15:41.981Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 35ms - IP: 192.168.97.87 - User: user_1041 - RequestID: e084e5z99za +2025-06-18T15:15:42.081Z [INFO] inventory-service - PUT /api/v1/orders - Status: 500 - Response time: 702ms - IP: 192.168.97.87 - User: user_1077 - RequestID: n60d5vpho1 +2025-06-18T15:15:42.181Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 580ms - IP: 192.168.144.38 - User: user_1023 - RequestID: j3lc3hjwzd +2025-06-18T15:15:42.281Z [INFO] notification-service - Operation: payment_processed - Processing time: 741ms - RequestID: h071kit0z1j +2025-06-18T15:15:42.381Z [INFO] inventory-service - Auth event: logout - User: user_1056 - IP: 192.168.242.165 - RequestID: l10zt5ztvqg +2025-06-18T15:15:42.481Z [DEBUG] notification-service - Auth event: login_failed - User: user_1005 - IP: 192.168.104.37 - RequestID: vvlvft04uwm +2025-06-18T15:15:42.581Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.227.233 - RequestID: eteubzipgp +2025-06-18T15:15:42.681Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 200 - Response time: 1333ms - IP: 192.168.227.233 - User: user_1053 - RequestID: 21ylxt4km7e +2025-06-18T15:15:42.781Z [INFO] order-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1340ms - IP: 192.168.36.218 - User: user_1046 - RequestID: 72c4aap3xrs +2025-06-18T15:15:42.881Z [INFO] payment-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.79.116 - RequestID: n9kxud39pfn +2025-06-18T15:15:42.981Z [INFO] inventory-service - Operation: cache_hit - Processing time: 1035ms - RequestID: 4gzt1ay7pyy +2025-06-18T15:15:43.081Z [TRACE] auth-service - Operation: cache_miss - Processing time: 129ms - RequestID: ctggmkxz1c +2025-06-18T15:15:43.181Z [INFO] inventory-service - Auth event: login_failed - User: user_1048 - IP: 192.168.64.33 - RequestID: mag8mt58l9g +2025-06-18T15:15:43.281Z [DEBUG] order-service - PATCH /api/v1/users - Status: 404 - Response time: 1515ms - IP: 192.168.113.218 - User: user_1090 - RequestID: x417uhe9kw +2025-06-18T15:15:43.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.158.144 - RequestID: s5p3qje4x6n +2025-06-18T15:15:43.481Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 11ms - Rows affected: 24 - RequestID: wd1mpd9skfg +2025-06-18T15:15:43.581Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 201ms - RequestID: drtdfqsy2a4 +2025-06-18T15:15:43.681Z [TRACE] payment-service - Auth event: login_success - User: user_1090 - IP: 192.168.44.5 - RequestID: 8sp2hv0jhh7 +2025-06-18T15:15:43.781Z [INFO] user-service - Database DELETE on payments - Execution time: 178ms - Rows affected: 21 - RequestID: 8t4t0i9iqjd +2025-06-18T15:15:43.881Z [TRACE] order-service - Database DELETE on sessions - Execution time: 304ms - Rows affected: 64 - RequestID: 18gdoeegvx9 +2025-06-18T15:15:43.981Z [TRACE] auth-service - Database UPDATE on products - Execution time: 394ms - Rows affected: 22 - RequestID: jb7vvfotrpr +2025-06-18T15:15:44.081Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 430ms - Rows affected: 91 - RequestID: 904ponjr6nl +2025-06-18T15:15:44.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 373ms - RequestID: jegr8uvr1l +2025-06-18T15:15:44.281Z [INFO] auth-service - Database DELETE on products - Execution time: 495ms - Rows affected: 91 - RequestID: ohii1wf2p0s +2025-06-18T15:15:44.381Z [INFO] payment-service - Operation: email_sent - Processing time: 877ms - RequestID: 1b0bdyi8jtn +2025-06-18T15:15:44.481Z [DEBUG] payment-service - Auth event: login_failed - User: user_1047 - IP: 192.168.194.41 - RequestID: wea9zb9m1ai +2025-06-18T15:15:44.581Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 570ms - RequestID: svuqj2lvj6 +2025-06-18T15:15:44.681Z [DEBUG] user-service - Auth event: login_success - User: user_1040 - IP: 192.168.30.79 - RequestID: upry3l5imns +2025-06-18T15:15:44.781Z [INFO] user-service - GET /api/v1/inventory - Status: 400 - Response time: 1726ms - IP: 192.168.79.116 - User: user_1005 - RequestID: aoz4zl848cd +2025-06-18T15:15:44.881Z [INFO] user-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1826ms - IP: 192.168.158.144 - User: user_1033 - RequestID: yuq68zwwtdq +2025-06-18T15:15:44.981Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 332ms - RequestID: hev1cz6vwlr +2025-06-18T15:15:45.081Z [DEBUG] auth-service - Operation: order_created - Processing time: 1005ms - RequestID: d96oyh7v9d +2025-06-18T15:15:45.181Z [INFO] user-service - Database DELETE on users - Execution time: 5ms - Rows affected: 92 - RequestID: bkgtkig1zmt +2025-06-18T15:15:45.281Z [INFO] inventory-service - Auth event: password_change - User: user_1029 - IP: 192.168.240.169 - RequestID: do545dwghds +2025-06-18T15:15:45.381Z [INFO] auth-service - Database INSERT on products - Execution time: 368ms - Rows affected: 39 - RequestID: i1keob1dq3 +2025-06-18T15:15:45.481Z [INFO] order-service - Operation: notification_queued - Processing time: 691ms - RequestID: vv8uf7nv38 +2025-06-18T15:15:45.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1022 - IP: 192.168.133.7 - RequestID: vii65iqpik +2025-06-18T15:15:45.681Z [INFO] notification-service - Operation: notification_queued - Processing time: 265ms - RequestID: dg9n78wen5s +2025-06-18T15:15:45.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 615ms - RequestID: 8u8bh5otdp4 +2025-06-18T15:15:45.881Z [TRACE] user-service - Operation: payment_processed - Processing time: 224ms - RequestID: po8v0ulr2ba +2025-06-18T15:15:45.981Z [DEBUG] order-service - GET /api/v1/inventory - Status: 200 - Response time: 1967ms - IP: 192.168.141.100 - User: user_1075 - RequestID: z97j0rst6y +2025-06-18T15:15:46.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.33.76 - RequestID: tjoshn9f7oc +2025-06-18T15:15:46.181Z [INFO] user-service - PUT /api/v1/payments - Status: 200 - Response time: 1655ms - IP: 192.168.141.100 - User: user_1041 - RequestID: 7ge7iycs382 +2025-06-18T15:15:46.281Z [TRACE] order-service - GET /api/v1/payments - Status: 201 - Response time: 1919ms - IP: 192.168.133.7 - User: user_1095 - RequestID: icr2zy2d93e +2025-06-18T15:15:46.381Z [INFO] auth-service - Operation: inventory_updated - Processing time: 138ms - RequestID: d6mweh03nua +2025-06-18T15:15:46.481Z [TRACE] notification-service - POST /api/v1/inventory - Status: 200 - Response time: 429ms - IP: 192.168.133.7 - User: user_1058 - RequestID: 1z2gbwlq6s +2025-06-18T15:15:46.581Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 862ms - IP: 192.168.232.72 - User: user_1048 - RequestID: 7ibkf4wzdsv +2025-06-18T15:15:46.681Z [INFO] notification-service - Operation: webhook_sent - Processing time: 352ms - RequestID: 1ekiwltn0ni +2025-06-18T15:15:46.781Z [TRACE] payment-service - Database UPDATE on users - Execution time: 86ms - Rows affected: 13 - RequestID: ezt0ziebhm5 +2025-06-18T15:15:46.881Z [INFO] user-service - Database UPDATE on orders - Execution time: 253ms - Rows affected: 70 - RequestID: b54ilkdlqs9 +2025-06-18T15:15:46.981Z [TRACE] notification-service - Operation: cache_hit - Processing time: 169ms - RequestID: 5ru5u95ydbv +2025-06-18T15:15:47.081Z [DEBUG] notification-service - Database DELETE on products - Execution time: 355ms - Rows affected: 36 - RequestID: 6aauo6615aw +2025-06-18T15:15:47.181Z [INFO] user-service - Operation: cache_miss - Processing time: 771ms - RequestID: m2azrundrpr +2025-06-18T15:15:47.281Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 373ms - Rows affected: 23 - RequestID: i0wj0xo1kjn +2025-06-18T15:15:47.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.227.233 - RequestID: 3aeab28405 +2025-06-18T15:15:47.481Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 207ms - RequestID: a6tdjjrbd7 +2025-06-18T15:15:47.581Z [TRACE] payment-service - Auth event: logout - User: user_1010 - IP: 192.168.32.38 - RequestID: 7x0dxfhwqow +2025-06-18T15:15:47.681Z [INFO] auth-service - Operation: notification_queued - Processing time: 538ms - RequestID: mhgox72ainj +2025-06-18T15:15:47.781Z [INFO] inventory-service - GET /api/v1/users - Status: 404 - Response time: 1715ms - IP: 192.168.167.32 - User: user_1058 - RequestID: aoubhmj37kk +2025-06-18T15:15:47.881Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 739ms - RequestID: ulyryq548u +2025-06-18T15:15:47.981Z [TRACE] payment-service - Database DELETE on payments - Execution time: 254ms - Rows affected: 51 - RequestID: hme9vh66vf +2025-06-18T15:15:48.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 407ms - RequestID: lerw8o7hubf +2025-06-18T15:15:48.181Z [INFO] inventory-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.141.100 - RequestID: smw4rbhqrgf +2025-06-18T15:15:48.281Z [INFO] auth-service - Database DELETE on products - Execution time: 316ms - Rows affected: 14 - RequestID: ar635g7koqd +2025-06-18T15:15:48.381Z [TRACE] auth-service - Operation: email_sent - Processing time: 1031ms - RequestID: aen2y56lron +2025-06-18T15:15:48.481Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 30ms - Rows affected: 47 - RequestID: 017pygl83pclj +2025-06-18T15:15:48.581Z [DEBUG] user-service - POST /api/v1/users - Status: 400 - Response time: 1178ms - IP: 192.168.10.184 - User: user_1077 - RequestID: u45srlu1kvh +2025-06-18T15:15:48.681Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1539ms - IP: 192.168.30.79 - User: user_1019 - RequestID: o6go58gu21i +2025-06-18T15:15:48.781Z [DEBUG] order-service - GET /api/v1/inventory - Status: 201 - Response time: 511ms - IP: 192.168.141.100 - User: user_1035 - RequestID: p7w87yt8qn +2025-06-18T15:15:48.881Z [TRACE] auth-service - Database UPDATE on users - Execution time: 374ms - Rows affected: 31 - RequestID: 2c3a3k3zahv +2025-06-18T15:15:48.981Z [INFO] order-service - Operation: order_created - Processing time: 138ms - RequestID: zkictwm1zyr +2025-06-18T15:15:49.081Z [INFO] notification-service - Database INSERT on orders - Execution time: 459ms - Rows affected: 86 - RequestID: y67r9h7itx +2025-06-18T15:15:49.181Z [INFO] notification-service - Operation: cache_hit - Processing time: 215ms - RequestID: 2jei5t4j29e +2025-06-18T15:15:49.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.32.38 - RequestID: 0vrnp9l1epac +2025-06-18T15:15:49.381Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 502 - Response time: 195ms - IP: 192.168.159.94 - User: user_1062 - RequestID: onkhl81j6u +2025-06-18T15:15:49.481Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 201 - Response time: 1441ms - IP: 192.168.30.79 - User: user_1023 - RequestID: 459jkm5ca3w +2025-06-18T15:15:49.581Z [DEBUG] order-service - Auth event: logout - User: user_1062 - IP: 192.168.104.37 - RequestID: 8tmgbdynsse +2025-06-18T15:15:49.681Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 500 - Response time: 234ms - IP: 192.168.181.225 - User: user_1070 - RequestID: kgf9bwjeas +2025-06-18T15:15:49.781Z [INFO] inventory-service - GET /api/v1/inventory - Status: 502 - Response time: 991ms - IP: 192.168.104.37 - User: user_1037 - RequestID: uzd4dsklt3f +2025-06-18T15:15:49.881Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 582ms - IP: 192.168.14.77 - User: user_1070 - RequestID: 00aer2stxwp96 +2025-06-18T15:15:49.981Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 29ms - IP: 192.168.189.103 - User: user_1032 - RequestID: 3bnroi6z7na +2025-06-18T15:15:50.081Z [TRACE] user-service - PUT /api/v1/inventory - Status: 200 - Response time: 956ms - IP: 192.168.28.146 - User: user_1001 - RequestID: 8pm45ms6sf6 +2025-06-18T15:15:50.181Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 205ms - Rows affected: 5 - RequestID: xn39iwjw6b +2025-06-18T15:15:50.281Z [INFO] payment-service - Auth event: login_failed - User: user_1062 - IP: 192.168.227.233 - RequestID: puek5od65n8 +2025-06-18T15:15:50.381Z [TRACE] payment-service - Operation: notification_queued - Processing time: 873ms - RequestID: yblgz5hq2do +2025-06-18T15:15:50.481Z [INFO] user-service - Database SELECT on sessions - Execution time: 271ms - Rows affected: 8 - RequestID: vcs0jdiw6fg +2025-06-18T15:15:50.581Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 169ms - Rows affected: 10 - RequestID: bhhwpvowq1c +2025-06-18T15:15:50.681Z [TRACE] auth-service - Operation: order_created - Processing time: 273ms - RequestID: jcyseyr16li +2025-06-18T15:15:50.781Z [TRACE] payment-service - Operation: email_sent - Processing time: 235ms - RequestID: u2zu4ebwk0d +2025-06-18T15:15:50.881Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1322ms - IP: 192.168.133.7 - User: user_1061 - RequestID: ct66inqmseo +2025-06-18T15:15:50.981Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 661ms - RequestID: aqncerl9ags +2025-06-18T15:15:51.081Z [INFO] user-service - Operation: notification_queued - Processing time: 1010ms - RequestID: t22j03bpuf +2025-06-18T15:15:51.181Z [TRACE] user-service - Database DELETE on users - Execution time: 170ms - Rows affected: 28 - RequestID: 7l2wj0eri9r +2025-06-18T15:15:51.281Z [DEBUG] user-service - Database SELECT on products - Execution time: 226ms - Rows affected: 45 - RequestID: d5x20ydasq +2025-06-18T15:15:51.381Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 1639ms - IP: 192.168.242.165 - User: user_1048 - RequestID: xjkittcjki +2025-06-18T15:15:51.481Z [INFO] order-service - Database DELETE on products - Execution time: 165ms - Rows affected: 26 - RequestID: 07uo74d21l77 +2025-06-18T15:15:51.581Z [DEBUG] notification-service - GET /api/v1/payments - Status: 500 - Response time: 1366ms - IP: 192.168.141.100 - User: user_1070 - RequestID: alhjzr2xb89 +2025-06-18T15:15:51.681Z [INFO] notification-service - Auth event: login_success - User: user_1076 - IP: 192.168.32.38 - RequestID: d40rhed8g3p +2025-06-18T15:15:51.781Z [INFO] user-service - Operation: notification_queued - Processing time: 390ms - RequestID: rj3sul2ali +2025-06-18T15:15:51.881Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 442ms - RequestID: ynukzwldod +2025-06-18T15:15:51.981Z [INFO] user-service - POST /api/v1/auth/login - Status: 401 - Response time: 959ms - IP: 192.168.242.165 - User: user_1082 - RequestID: w4cjz2x0u98 +2025-06-18T15:15:52.081Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 103ms - Rows affected: 41 - RequestID: fo31hur81bp +2025-06-18T15:15:52.181Z [INFO] notification-service - Auth event: login_failed - User: user_1096 - IP: 192.168.31.117 - RequestID: wzij8870r4e +2025-06-18T15:15:52.281Z [DEBUG] order-service - Database DELETE on products - Execution time: 490ms - Rows affected: 79 - RequestID: q9jiezzkoy +2025-06-18T15:15:52.381Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 299ms - Rows affected: 87 - RequestID: sdzfg8px55p +2025-06-18T15:15:52.481Z [TRACE] order-service - Operation: webhook_sent - Processing time: 179ms - RequestID: fx7757ly6rw +2025-06-18T15:15:52.581Z [INFO] payment-service - Operation: webhook_sent - Processing time: 209ms - RequestID: 59m67zmykdt +2025-06-18T15:15:52.681Z [TRACE] order-service - Operation: payment_processed - Processing time: 664ms - RequestID: 3e8yb8pzfv +2025-06-18T15:15:52.781Z [TRACE] notification-service - Auth event: login_success - User: user_1069 - IP: 192.168.211.72 - RequestID: l4a4ni58nc +2025-06-18T15:15:52.881Z [TRACE] user-service - Database SELECT on sessions - Execution time: 31ms - Rows affected: 64 - RequestID: 8nuemgh0zzy +2025-06-18T15:15:52.981Z [DEBUG] payment-service - GET /api/v1/payments - Status: 403 - Response time: 658ms - IP: 192.168.242.165 - User: user_1028 - RequestID: kdm69nmqvu8 +2025-06-18T15:15:53.081Z [INFO] order-service - Database INSERT on users - Execution time: 385ms - Rows affected: 4 - RequestID: yeeon6civz +2025-06-18T15:15:53.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 648ms - RequestID: u53p4ke47qf +2025-06-18T15:15:53.281Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 503 - Response time: 906ms - IP: 192.168.113.218 - User: user_1026 - RequestID: sjwza6yc06s +2025-06-18T15:15:53.381Z [INFO] user-service - Operation: order_created - Processing time: 410ms - RequestID: 5iat556rb9g +2025-06-18T15:15:53.481Z [TRACE] auth-service - Auth event: logout - User: user_1032 - IP: 192.168.167.32 - RequestID: 42oocba9vot +2025-06-18T15:15:53.581Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 476ms - RequestID: cyapv31nd9e +2025-06-18T15:15:53.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.53.133 - RequestID: gizosnya6mh +2025-06-18T15:15:53.781Z [TRACE] order-service - Database INSERT on users - Execution time: 24ms - Rows affected: 80 - RequestID: 60e2d8xn58b +2025-06-18T15:15:53.881Z [INFO] inventory-service - Database INSERT on payments - Execution time: 471ms - Rows affected: 53 - RequestID: y2vrrry9xqa +2025-06-18T15:15:53.981Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 404 - Response time: 1372ms - IP: 192.168.13.72 - User: user_1089 - RequestID: 9xmgipe26hv +2025-06-18T15:15:54.081Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 201 - Response time: 184ms - IP: 192.168.14.77 - User: user_1017 - RequestID: 0gox2z63eww8 +2025-06-18T15:15:54.181Z [INFO] user-service - Database UPDATE on orders - Execution time: 376ms - Rows affected: 22 - RequestID: 3dr0ma8yj8f +2025-06-18T15:15:54.281Z [TRACE] inventory-service - Auth event: password_change - User: user_1024 - IP: 192.168.28.146 - RequestID: 552le75ao8k +2025-06-18T15:15:54.381Z [DEBUG] auth-service - Operation: email_sent - Processing time: 142ms - RequestID: mm5iwumnj3 +2025-06-18T15:15:54.481Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 401ms - RequestID: xptwcksfm1 +2025-06-18T15:15:54.581Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 61ms - Rows affected: 49 - RequestID: ynimoqmrmm +2025-06-18T15:15:54.681Z [INFO] auth-service - Operation: payment_processed - Processing time: 1047ms - RequestID: ymj5opc6q77 +2025-06-18T15:15:54.781Z [DEBUG] user-service - GET /api/v1/payments - Status: 200 - Response time: 65ms - IP: 192.168.32.38 - User: user_1041 - RequestID: bwxg5d2yyx +2025-06-18T15:15:54.881Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 189ms - IP: 192.168.159.94 - User: user_1062 - RequestID: w9ypnvn2k49 +2025-06-18T15:15:54.981Z [TRACE] user-service - POST /api/v1/orders - Status: 403 - Response time: 142ms - IP: 192.168.235.117 - User: user_1011 - RequestID: iwop78zr7qs +2025-06-18T15:15:55.081Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1288ms - IP: 192.168.144.38 - User: user_1022 - RequestID: 5ubnnriwy4p +2025-06-18T15:15:55.181Z [TRACE] user-service - Database INSERT on payments - Execution time: 8ms - Rows affected: 3 - RequestID: 03ijq9iaxbfr +2025-06-18T15:15:55.281Z [INFO] auth-service - Operation: payment_processed - Processing time: 187ms - RequestID: tj3f3wxmisp +2025-06-18T15:15:55.381Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 1040ms - RequestID: 66j5p0d0otf +2025-06-18T15:15:55.481Z [INFO] auth-service - Operation: webhook_sent - Processing time: 636ms - RequestID: yw0zd9pinoj +2025-06-18T15:15:55.581Z [INFO] order-service - Operation: cache_hit - Processing time: 723ms - RequestID: 3tn0j797yi7 +2025-06-18T15:15:55.681Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 272ms - Rows affected: 52 - RequestID: nk059l6zn88 +2025-06-18T15:15:55.781Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 481ms - Rows affected: 0 - RequestID: pm51mvmmh8 +2025-06-18T15:15:55.881Z [TRACE] order-service - Operation: cache_hit - Processing time: 482ms - RequestID: la3fyf2gvzo +2025-06-18T15:15:55.981Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 500 - Response time: 566ms - IP: 192.168.85.229 - User: user_1030 - RequestID: wc33t69e9z +2025-06-18T15:15:56.081Z [INFO] user-service - POST /api/v1/orders - Status: 500 - Response time: 883ms - IP: 192.168.187.199 - User: user_1052 - RequestID: o6urjm9xnkc +2025-06-18T15:15:56.181Z [DEBUG] user-service - Auth event: password_change - User: user_1011 - IP: 192.168.113.218 - RequestID: v404yktwcd +2025-06-18T15:15:56.281Z [INFO] user-service - Operation: cache_miss - Processing time: 52ms - RequestID: y0ls5gnz23 +2025-06-18T15:15:56.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1044 - IP: 192.168.30.79 - RequestID: s4igw0ifkw +2025-06-18T15:15:56.481Z [TRACE] order-service - Auth event: logout - User: user_1044 - IP: 192.168.113.218 - RequestID: ebls51lhhwo +2025-06-18T15:15:56.581Z [TRACE] auth-service - Database DELETE on products - Execution time: 32ms - Rows affected: 62 - RequestID: pewbt4cb32l +2025-06-18T15:15:56.681Z [TRACE] order-service - Operation: cache_hit - Processing time: 553ms - RequestID: qusgkwp7itj +2025-06-18T15:15:56.781Z [TRACE] user-service - Auth event: logout - User: user_1044 - IP: 192.168.81.206 - RequestID: 4miirn633ue +2025-06-18T15:15:56.881Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 48ms - Rows affected: 17 - RequestID: 19x1av72klo +2025-06-18T15:15:56.981Z [TRACE] order-service - Auth event: password_change - User: user_1062 - IP: 192.168.100.240 - RequestID: vg96zlru0c +2025-06-18T15:15:57.081Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 284ms - RequestID: 3ye1piekrzi +2025-06-18T15:15:57.181Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 82ms - Rows affected: 69 - RequestID: x3gn8ncwd3 +2025-06-18T15:15:57.281Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 913ms - RequestID: 6oqkkhjlpzv +2025-06-18T15:15:57.381Z [TRACE] auth-service - POST /api/v1/payments - Status: 403 - Response time: 553ms - IP: 192.168.232.72 - User: user_1073 - RequestID: 0j81n917n53l +2025-06-18T15:15:57.481Z [TRACE] order-service - Database SELECT on users - Execution time: 133ms - Rows affected: 65 - RequestID: aw2xy3e8seu +2025-06-18T15:15:57.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 963ms - RequestID: yqe33yir0fk +2025-06-18T15:15:57.681Z [INFO] auth-service - Operation: email_sent - Processing time: 58ms - RequestID: q0dfujaszj +2025-06-18T15:15:57.781Z [INFO] payment-service - Auth event: login_failed - User: user_1027 - IP: 192.168.31.117 - RequestID: qydetchnu78 +2025-06-18T15:15:57.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.79.116 - RequestID: odq7gqodl7 +2025-06-18T15:15:57.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1051 - IP: 192.168.181.225 - RequestID: 0x4i97o4j5u +2025-06-18T15:15:58.081Z [DEBUG] order-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.104.37 - RequestID: gjd45xnidxp +2025-06-18T15:15:58.181Z [TRACE] inventory-service - PUT /api/v1/users - Status: 401 - Response time: 604ms - IP: 192.168.167.32 - User: user_1029 - RequestID: zqnuvd4ux6 +2025-06-18T15:15:58.281Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 86ms - Rows affected: 26 - RequestID: ci2sqkxznzl +2025-06-18T15:15:58.381Z [INFO] inventory-service - Database INSERT on payments - Execution time: 379ms - Rows affected: 4 - RequestID: fi4wkpulcc +2025-06-18T15:15:58.481Z [INFO] order-service - Operation: email_sent - Processing time: 63ms - RequestID: fnd0vaw4zbq +2025-06-18T15:15:58.581Z [INFO] order-service - Database INSERT on payments - Execution time: 484ms - Rows affected: 62 - RequestID: qf606kvnvnr +2025-06-18T15:15:58.681Z [INFO] order-service - Database UPDATE on payments - Execution time: 497ms - Rows affected: 36 - RequestID: s9oezjrteo +2025-06-18T15:15:58.781Z [INFO] inventory-service - POST /api/v1/users - Status: 201 - Response time: 796ms - IP: 192.168.64.33 - User: user_1051 - RequestID: mhit4fb471b +2025-06-18T15:15:58.881Z [TRACE] user-service - Operation: cache_miss - Processing time: 270ms - RequestID: s85amb7lago +2025-06-18T15:15:58.981Z [TRACE] order-service - Operation: payment_processed - Processing time: 957ms - RequestID: e3xenuwaf59 +2025-06-18T15:15:59.081Z [INFO] inventory-service - PUT /api/v1/payments - Status: 403 - Response time: 275ms - IP: 192.168.187.199 - User: user_1051 - RequestID: nqq0t9afkp +2025-06-18T15:15:59.181Z [INFO] notification-service - PUT /api/v1/inventory - Status: 200 - Response time: 1101ms - IP: 192.168.10.184 - User: user_1026 - RequestID: g65txxrjnde +2025-06-18T15:15:59.281Z [INFO] notification-service - Operation: email_sent - Processing time: 450ms - RequestID: lcnhevkv5r9 +2025-06-18T15:15:59.381Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 599ms - RequestID: vy0ph7xvo8 +2025-06-18T15:15:59.481Z [INFO] user-service - Database DELETE on orders - Execution time: 479ms - Rows affected: 25 - RequestID: b0jqwlqkyy9 +2025-06-18T15:15:59.581Z [TRACE] user-service - Operation: inventory_updated - Processing time: 963ms - RequestID: h06i6jk71qv +2025-06-18T15:15:59.681Z [INFO] user-service - Auth event: login_failed - User: user_1013 - IP: 192.168.133.7 - RequestID: 0i4vefff3q6 +2025-06-18T15:15:59.781Z [INFO] payment-service - Database DELETE on sessions - Execution time: 80ms - Rows affected: 99 - RequestID: gqjs5ymm7mb +2025-06-18T15:15:59.881Z [INFO] auth-service - Database SELECT on sessions - Execution time: 154ms - Rows affected: 0 - RequestID: d75gydgepea +2025-06-18T15:15:59.981Z [DEBUG] user-service - Operation: cache_miss - Processing time: 1007ms - RequestID: 59pgy7a8gxy +2025-06-18T15:16:00.081Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 933ms - RequestID: fu4f137yqy6 +2025-06-18T15:16:00.181Z [TRACE] order-service - Operation: cache_miss - Processing time: 704ms - RequestID: bl26ugtbdu5 +2025-06-18T15:16:00.281Z [TRACE] notification-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.141.100 - RequestID: h6nej57qkx5 +2025-06-18T15:16:00.381Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 404 - Response time: 575ms - IP: 192.168.10.184 - User: user_1085 - RequestID: 5bwkcmr0oie +2025-06-18T15:16:00.481Z [DEBUG] order-service - Database INSERT on payments - Execution time: 324ms - Rows affected: 90 - RequestID: dxfho91agbd +2025-06-18T15:16:00.581Z [DEBUG] order-service - Operation: payment_processed - Processing time: 115ms - RequestID: 8y4aaqm7ogn +2025-06-18T15:16:00.681Z [TRACE] inventory-service - Auth event: logout - User: user_1047 - IP: 192.168.167.32 - RequestID: rsb8x3rxzrd +2025-06-18T15:16:00.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 477ms - RequestID: ehfa8b7c5lh +2025-06-18T15:16:00.881Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 387ms - IP: 192.168.227.77 - User: user_1060 - RequestID: 1tc891oyk1w +2025-06-18T15:16:00.981Z [INFO] user-service - Database INSERT on payments - Execution time: 17ms - Rows affected: 89 - RequestID: 5smb78nnqg6 +2025-06-18T15:16:01.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.211.72 - RequestID: hhvsilj7fld +2025-06-18T15:16:01.181Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 502 - Response time: 580ms - IP: 192.168.64.33 - User: user_1040 - RequestID: ge4l6a1ske4 +2025-06-18T15:16:01.281Z [INFO] inventory-service - Operation: cache_hit - Processing time: 526ms - RequestID: zm9g0eljpa +2025-06-18T15:16:01.381Z [TRACE] order-service - Operation: notification_queued - Processing time: 789ms - RequestID: 46f0d3ndmmd +2025-06-18T15:16:01.481Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 64ms - Rows affected: 61 - RequestID: fsl77d24587 +2025-06-18T15:16:01.581Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1960ms - IP: 192.168.211.72 - User: user_1042 - RequestID: uhqgmfnjvn +2025-06-18T15:16:01.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.141.100 - RequestID: vdjfaa4jhn +2025-06-18T15:16:01.781Z [TRACE] notification-service - Database DELETE on users - Execution time: 155ms - Rows affected: 84 - RequestID: yuy1rupmkr +2025-06-18T15:16:01.881Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 201 - Response time: 1496ms - IP: 192.168.36.218 - User: user_1005 - RequestID: l8xq7h6f3zk +2025-06-18T15:16:01.981Z [TRACE] user-service - Auth event: login_failed - User: user_1055 - IP: 192.168.240.169 - RequestID: lqmq8ft91fi +2025-06-18T15:16:02.081Z [DEBUG] order-service - Database UPDATE on products - Execution time: 358ms - Rows affected: 98 - RequestID: ocpa18f8fu +2025-06-18T15:16:02.181Z [TRACE] auth-service - Operation: order_created - Processing time: 474ms - RequestID: fbtwz7jjcnu +2025-06-18T15:16:02.281Z [INFO] inventory-service - Auth event: logout - User: user_1044 - IP: 192.168.187.199 - RequestID: j7q26g7r8s +2025-06-18T15:16:02.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.194.41 - RequestID: so2lq85y3vh +2025-06-18T15:16:02.481Z [INFO] user-service - Database INSERT on payments - Execution time: 39ms - Rows affected: 17 - RequestID: euzitmaws59 +2025-06-18T15:16:02.581Z [TRACE] payment-service - Database INSERT on sessions - Execution time: 352ms - Rows affected: 51 - RequestID: wngfwc17w5q +2025-06-18T15:16:02.681Z [TRACE] order-service - Auth event: logout - User: user_1015 - IP: 192.168.133.7 - RequestID: b6gq5y47rtp +2025-06-18T15:16:02.781Z [INFO] notification-service - GET /api/v1/users - Status: 400 - Response time: 114ms - IP: 192.168.46.63 - User: user_1010 - RequestID: 4d1gjpo7cgv +2025-06-18T15:16:02.881Z [DEBUG] notification-service - PUT /api/v1/users - Status: 200 - Response time: 1773ms - IP: 192.168.189.103 - User: user_1052 - RequestID: r7mt0bddc5i +2025-06-18T15:16:02.981Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 277ms - RequestID: czuptbtdzc +2025-06-18T15:16:03.081Z [TRACE] notification-service - Operation: cache_miss - Processing time: 750ms - RequestID: t6vc1c36se +2025-06-18T15:16:03.181Z [INFO] user-service - Operation: order_created - Processing time: 731ms - RequestID: lmj3side36p +2025-06-18T15:16:03.281Z [INFO] notification-service - Auth event: logout - User: user_1050 - IP: 192.168.28.146 - RequestID: qidxck2k9uq +2025-06-18T15:16:03.381Z [TRACE] payment-service - Operation: email_sent - Processing time: 349ms - RequestID: 2e27kglv9zy +2025-06-18T15:16:03.481Z [INFO] order-service - Operation: cache_hit - Processing time: 458ms - RequestID: edfkbkceges +2025-06-18T15:16:03.581Z [INFO] user-service - Database UPDATE on products - Execution time: 451ms - Rows affected: 41 - RequestID: s7a5l61j3q +2025-06-18T15:16:03.681Z [DEBUG] order-service - Database UPDATE on products - Execution time: 454ms - Rows affected: 97 - RequestID: au97av7gsu +2025-06-18T15:16:03.781Z [TRACE] auth-service - Database INSERT on payments - Execution time: 224ms - Rows affected: 94 - RequestID: 624nl5cpsue +2025-06-18T15:16:03.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 795ms - RequestID: xh28pbkd1mc +2025-06-18T15:16:03.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 229ms - RequestID: x4go0j7tt5 +2025-06-18T15:16:04.081Z [INFO] order-service - Auth event: logout - User: user_1027 - IP: 192.168.30.79 - RequestID: jkiqa0tppg +2025-06-18T15:16:04.181Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 154ms - Rows affected: 14 - RequestID: snux8r44lbf +2025-06-18T15:16:04.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.13.72 - RequestID: 77hup560p5 +2025-06-18T15:16:04.381Z [DEBUG] order-service - Operation: email_sent - Processing time: 212ms - RequestID: pmjysje7djc +2025-06-18T15:16:04.481Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 201 - Response time: 243ms - IP: 192.168.68.158 - User: user_1094 - RequestID: ewly0yxmx9f +2025-06-18T15:16:04.581Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1462ms - IP: 192.168.68.128 - User: user_1047 - RequestID: z1phgyrugom +2025-06-18T15:16:04.681Z [INFO] order-service - Database UPDATE on sessions - Execution time: 336ms - Rows affected: 51 - RequestID: oet51xk46g +2025-06-18T15:16:04.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1067 - IP: 192.168.133.7 - RequestID: 11ojsuq3b9v +2025-06-18T15:16:04.881Z [INFO] inventory-service - Operation: cache_hit - Processing time: 145ms - RequestID: qcyy6g1k0vh +2025-06-18T15:16:04.981Z [TRACE] inventory-service - Auth event: logout - User: user_1052 - IP: 192.168.232.72 - RequestID: gkcgpgyff2 +2025-06-18T15:16:05.081Z [TRACE] user-service - DELETE /api/v1/users - Status: 400 - Response time: 532ms - IP: 192.168.31.117 - User: user_1013 - RequestID: zyrmfxs6c6g +2025-06-18T15:16:05.181Z [INFO] order-service - Operation: order_created - Processing time: 250ms - RequestID: w3vf2cxbxg +2025-06-18T15:16:05.281Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 687ms - RequestID: lif04zvodgn +2025-06-18T15:16:05.381Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 43ms - Rows affected: 50 - RequestID: fow094slkfv +2025-06-18T15:16:05.481Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 7ms - Rows affected: 69 - RequestID: 8c95n540g7m +2025-06-18T15:16:05.581Z [DEBUG] order-service - DELETE /api/v1/users - Status: 502 - Response time: 376ms - IP: 192.168.138.123 - User: user_1040 - RequestID: fa1op2y91mm +2025-06-18T15:16:05.681Z [INFO] payment-service - Auth event: login_success - User: user_1045 - IP: 192.168.170.215 - RequestID: 1f5m2a4vjjo +2025-06-18T15:16:05.781Z [TRACE] auth-service - Operation: notification_queued - Processing time: 630ms - RequestID: idf58r3lauh +2025-06-18T15:16:05.881Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 557ms - RequestID: qqvuiyshd2 +2025-06-18T15:16:05.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1022 - IP: 192.168.30.79 - RequestID: 15hbyq6v6ht +2025-06-18T15:16:06.081Z [DEBUG] notification-service - Auth event: logout - User: user_1011 - IP: 192.168.141.100 - RequestID: jadxewgbrl +2025-06-18T15:16:06.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.147.171 - RequestID: 7ujuj13mgtq +2025-06-18T15:16:06.281Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 458ms - Rows affected: 40 - RequestID: o1p7z38njt +2025-06-18T15:16:06.381Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 641ms - RequestID: yoypemo6bbl +2025-06-18T15:16:06.481Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 88ms - Rows affected: 1 - RequestID: 6urtrb7inbx +2025-06-18T15:16:06.581Z [INFO] auth-service - GET /api/v1/inventory - Status: 400 - Response time: 1435ms - IP: 192.168.227.77 - User: user_1038 - RequestID: zv6k4pyx7jr +2025-06-18T15:16:06.681Z [INFO] payment-service - Database INSERT on payments - Execution time: 8ms - Rows affected: 22 - RequestID: 974k111did +2025-06-18T15:16:06.781Z [INFO] payment-service - PATCH /api/v1/orders - Status: 403 - Response time: 104ms - IP: 192.168.247.134 - User: user_1040 - RequestID: yj9c8n0u5wb +2025-06-18T15:16:06.881Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 228ms - RequestID: 3h3imvmi4qr +2025-06-18T15:16:06.981Z [TRACE] user-service - Operation: payment_processed - Processing time: 1019ms - RequestID: syo85x867el +2025-06-18T15:16:07.081Z [TRACE] inventory-service - Database INSERT on users - Execution time: 241ms - Rows affected: 47 - RequestID: czju3lmc2qo +2025-06-18T15:16:07.181Z [TRACE] payment-service - DELETE /api/v1/users - Status: 400 - Response time: 1924ms - IP: 192.168.79.116 - User: user_1063 - RequestID: rh59a73wp3m +2025-06-18T15:16:07.281Z [TRACE] inventory-service - Auth event: login_failed - User: user_1007 - IP: 192.168.170.215 - RequestID: gu51tws987r +2025-06-18T15:16:07.381Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 526ms - RequestID: 54lf4b93tbc +2025-06-18T15:16:07.481Z [INFO] auth-service - Auth event: password_change - User: user_1068 - IP: 192.168.133.7 - RequestID: 5acv20wsye +2025-06-18T15:16:07.581Z [DEBUG] order-service - Operation: cache_hit - Processing time: 465ms - RequestID: 5xqazbm6hdt +2025-06-18T15:16:07.681Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1505ms - IP: 192.168.1.152 - User: user_1031 - RequestID: mp6wvsufz5 +2025-06-18T15:16:07.781Z [INFO] user-service - Operation: email_sent - Processing time: 392ms - RequestID: ochjbcn78xb +2025-06-18T15:16:07.881Z [TRACE] notification-service - Operation: notification_queued - Processing time: 107ms - RequestID: x8i3jc0euy +2025-06-18T15:16:07.981Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1639ms - IP: 192.168.242.165 - User: user_1008 - RequestID: h1t0gsxh937 +2025-06-18T15:16:08.081Z [TRACE] notification-service - Database UPDATE on products - Execution time: 464ms - Rows affected: 84 - RequestID: qh899i64foh +2025-06-18T15:16:08.181Z [INFO] order-service - Database INSERT on products - Execution time: 167ms - Rows affected: 49 - RequestID: dpa58pot5qn +2025-06-18T15:16:08.281Z [INFO] auth-service - DELETE /api/v1/orders - Status: 404 - Response time: 858ms - IP: 192.168.104.37 - User: user_1076 - RequestID: dbjeg7t88si +2025-06-18T15:16:08.381Z [TRACE] order-service - Database SELECT on users - Execution time: 143ms - Rows affected: 11 - RequestID: uwv1trcocz9 +2025-06-18T15:16:08.481Z [INFO] order-service - Auth event: password_change - User: user_1000 - IP: 192.168.247.134 - RequestID: 4qs9u8roblg +2025-06-18T15:16:08.581Z [TRACE] payment-service - PATCH /api/v1/users - Status: 200 - Response time: 175ms - IP: 192.168.31.117 - User: user_1087 - RequestID: qllqrz1mm7q +2025-06-18T15:16:08.681Z [INFO] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 97ms - IP: 192.168.247.134 - User: user_1098 - RequestID: ngdqr31mcqh +2025-06-18T15:16:08.781Z [DEBUG] payment-service - Operation: order_created - Processing time: 636ms - RequestID: aw1k08aanh8 +2025-06-18T15:16:08.881Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 64ms - Rows affected: 88 - RequestID: dmb83vkrqz9 +2025-06-18T15:16:08.981Z [DEBUG] order-service - Auth event: login_success - User: user_1077 - IP: 192.168.242.165 - RequestID: wbjcd1kj5lr +2025-06-18T15:16:09.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 400ms - RequestID: oua73yaieqf +2025-06-18T15:16:09.181Z [INFO] payment-service - Auth event: login_success - User: user_1054 - IP: 192.168.147.171 - RequestID: vb4uh03zdcp +2025-06-18T15:16:09.281Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 404 - Response time: 772ms - IP: 192.168.79.143 - User: user_1024 - RequestID: i1789rih0q +2025-06-18T15:16:09.381Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 460ms - Rows affected: 1 - RequestID: idwmhr7mfx +2025-06-18T15:16:09.481Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 632ms - RequestID: 7efynldb4lw +2025-06-18T15:16:09.581Z [TRACE] inventory-service - Operation: email_sent - Processing time: 370ms - RequestID: jh4k8o39d2 +2025-06-18T15:16:09.681Z [INFO] order-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.33.76 - RequestID: ha34210bhak +2025-06-18T15:16:09.781Z [TRACE] order-service - Operation: cache_miss - Processing time: 196ms - RequestID: jtfezuvq25r +2025-06-18T15:16:09.881Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 987ms - IP: 192.168.64.33 - User: user_1061 - RequestID: zxzgkoit70j +2025-06-18T15:16:09.981Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 401 - Response time: 688ms - IP: 192.168.227.233 - User: user_1062 - RequestID: f14yrdfmsc6 +2025-06-18T15:16:10.081Z [INFO] payment-service - GET /api/v1/auth/login - Status: 503 - Response time: 1128ms - IP: 192.168.85.229 - User: user_1055 - RequestID: jg6hnkmavmm +2025-06-18T15:16:10.181Z [TRACE] auth-service - GET /api/v1/payments - Status: 502 - Response time: 1967ms - IP: 192.168.30.79 - User: user_1026 - RequestID: asivf83uo1j +2025-06-18T15:16:10.281Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 404 - Response time: 469ms - IP: 192.168.79.143 - User: user_1001 - RequestID: 5u7sy1xolzw +2025-06-18T15:16:10.381Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 817ms - RequestID: o5ccne1hkx +2025-06-18T15:16:10.481Z [INFO] auth-service - Database SELECT on sessions - Execution time: 436ms - Rows affected: 54 - RequestID: uvf7z4uitqm +2025-06-18T15:16:10.581Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 68ms - Rows affected: 67 - RequestID: m9c2akaxnd +2025-06-18T15:16:10.681Z [DEBUG] inventory-service - Auth event: logout - User: user_1098 - IP: 192.168.97.87 - RequestID: 22btbe5lt57 +2025-06-18T15:16:10.781Z [INFO] inventory-service - Database SELECT on products - Execution time: 466ms - Rows affected: 14 - RequestID: emmtjulwegp +2025-06-18T15:16:10.881Z [TRACE] notification-service - PUT /api/v1/orders - Status: 401 - Response time: 1900ms - IP: 192.168.14.77 - User: user_1090 - RequestID: p572i11rqr +2025-06-18T15:16:10.981Z [DEBUG] order-service - Database INSERT on products - Execution time: 205ms - Rows affected: 77 - RequestID: 7sh8r8c2xn5 +2025-06-18T15:16:11.081Z [DEBUG] payment-service - Auth event: password_change - User: user_1047 - IP: 192.168.170.215 - RequestID: i0rk8nhde2 +2025-06-18T15:16:11.181Z [TRACE] inventory-service - Operation: order_created - Processing time: 998ms - RequestID: c46emakf7q +2025-06-18T15:16:11.281Z [TRACE] user-service - Operation: notification_queued - Processing time: 965ms - RequestID: zrxrmie6w8 +2025-06-18T15:16:11.381Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 465ms - RequestID: 09d19bl00kow +2025-06-18T15:16:11.481Z [TRACE] order-service - Auth event: password_change - User: user_1084 - IP: 192.168.235.117 - RequestID: plxmxov4d77 +2025-06-18T15:16:11.581Z [INFO] order-service - Database DELETE on sessions - Execution time: 176ms - Rows affected: 67 - RequestID: 1h5c1olix1j +2025-06-18T15:16:11.681Z [DEBUG] user-service - Operation: cache_hit - Processing time: 623ms - RequestID: r6buv28hdmo +2025-06-18T15:16:11.781Z [INFO] user-service - Auth event: login_failed - User: user_1007 - IP: 192.168.32.38 - RequestID: krio1lnyps9 +2025-06-18T15:16:11.881Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 596ms - IP: 192.168.227.77 - User: user_1044 - RequestID: pmok2mkoarp +2025-06-18T15:16:11.981Z [TRACE] order-service - Auth event: login_success - User: user_1047 - IP: 192.168.79.141 - RequestID: 4s225t7qf1q +2025-06-18T15:16:12.081Z [INFO] user-service - Auth event: password_change - User: user_1055 - IP: 192.168.227.233 - RequestID: 5b4irv8w5fn +2025-06-18T15:16:12.181Z [INFO] notification-service - Operation: cache_miss - Processing time: 215ms - RequestID: c2tpbwrfwgc +2025-06-18T15:16:12.281Z [INFO] notification-service - Operation: notification_queued - Processing time: 897ms - RequestID: 3zrfb2ec8dq +2025-06-18T15:16:12.381Z [TRACE] inventory-service - Auth event: password_change - User: user_1004 - IP: 192.168.167.32 - RequestID: qzsrepdj80d +2025-06-18T15:16:12.481Z [INFO] order-service - Database DELETE on products - Execution time: 359ms - Rows affected: 44 - RequestID: mfcpjolffv +2025-06-18T15:16:12.581Z [TRACE] notification-service - Operation: payment_processed - Processing time: 652ms - RequestID: p6atj7u6osm +2025-06-18T15:16:12.681Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 158ms - RequestID: fdeo7hu0fh6 +2025-06-18T15:16:12.781Z [INFO] user-service - Database SELECT on payments - Execution time: 209ms - Rows affected: 90 - RequestID: ccqckhhvh3p +2025-06-18T15:16:12.881Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 16ms - IP: 192.168.79.143 - User: user_1099 - RequestID: jzhsnwad5r +2025-06-18T15:16:12.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1056 - IP: 192.168.30.79 - RequestID: 5ket3cqb196 +2025-06-18T15:16:13.081Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 315ms - Rows affected: 57 - RequestID: wh602kbeqdf +2025-06-18T15:16:13.181Z [DEBUG] payment-service - PUT /api/v1/users - Status: 404 - Response time: 1724ms - IP: 192.168.133.7 - User: user_1085 - RequestID: m5h6edkxjx +2025-06-18T15:16:13.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 638ms - RequestID: qyhgqg0ujk9 +2025-06-18T15:16:13.381Z [INFO] notification-service - POST /api/v1/payments - Status: 403 - Response time: 1206ms - IP: 192.168.159.94 - User: user_1019 - RequestID: 1gp1eoqi9ka +2025-06-18T15:16:13.481Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 279ms - Rows affected: 93 - RequestID: t5xbtxjfrqg +2025-06-18T15:16:13.581Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 354ms - Rows affected: 57 - RequestID: latbinpkddi +2025-06-18T15:16:13.681Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 238ms - Rows affected: 53 - RequestID: qvxgt695utc +2025-06-18T15:16:13.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.85.229 - RequestID: wvgdwt1kf5p +2025-06-18T15:16:13.881Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1057 - IP: 192.168.144.38 - RequestID: ionpz725b2q +2025-06-18T15:16:13.981Z [INFO] payment-service - Database UPDATE on products - Execution time: 428ms - Rows affected: 49 - RequestID: img36mnlk7n +2025-06-18T15:16:14.081Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 403 - Response time: 1853ms - IP: 192.168.64.33 - User: user_1091 - RequestID: c74yhix0ghl +2025-06-18T15:16:14.181Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 18ms - Rows affected: 26 - RequestID: et0k2d8gr37 +2025-06-18T15:16:14.281Z [DEBUG] user-service - PATCH /api/v1/users - Status: 502 - Response time: 149ms - IP: 192.168.97.87 - User: user_1047 - RequestID: q54yp8eb31q +2025-06-18T15:16:14.381Z [TRACE] notification-service - Database UPDATE on users - Execution time: 288ms - Rows affected: 52 - RequestID: kjdaqxkcw5c +2025-06-18T15:16:14.481Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1720ms - IP: 192.168.174.114 - User: user_1014 - RequestID: 7dgan6tpd8p +2025-06-18T15:16:14.581Z [TRACE] notification-service - Auth event: login_failed - User: user_1089 - IP: 192.168.133.7 - RequestID: 27h98b9wr5a +2025-06-18T15:16:14.681Z [INFO] notification-service - Auth event: logout - User: user_1078 - IP: 192.168.158.144 - RequestID: eswjv5slskt +2025-06-18T15:16:14.781Z [TRACE] order-service - Auth event: password_change - User: user_1075 - IP: 192.168.235.117 - RequestID: xsp1lpipn1c +2025-06-18T15:16:14.881Z [TRACE] payment-service - Operation: payment_processed - Processing time: 616ms - RequestID: 78it5av0hj9 +2025-06-18T15:16:14.981Z [TRACE] payment-service - Database INSERT on users - Execution time: 375ms - Rows affected: 24 - RequestID: ivityjfxu8 +2025-06-18T15:16:15.081Z [TRACE] user-service - Auth event: logout - User: user_1034 - IP: 192.168.235.117 - RequestID: 4x4b13bhagl +2025-06-18T15:16:15.181Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 417ms - RequestID: 0340a7hsjtzu +2025-06-18T15:16:15.281Z [DEBUG] auth-service - Auth event: login_failed - User: user_1015 - IP: 192.168.97.87 - RequestID: 91jig6ycu8f +2025-06-18T15:16:15.381Z [DEBUG] payment-service - Database SELECT on products - Execution time: 294ms - Rows affected: 55 - RequestID: k0osaz61zq +2025-06-18T15:16:15.481Z [INFO] payment-service - Operation: inventory_updated - Processing time: 396ms - RequestID: 1r3dbkrwnp5 +2025-06-18T15:16:15.581Z [TRACE] auth-service - PUT /api/v1/payments - Status: 201 - Response time: 1453ms - IP: 192.168.229.123 - User: user_1087 - RequestID: sn9s1uw7f4 +2025-06-18T15:16:15.681Z [DEBUG] auth-service - Auth event: login_failed - User: user_1026 - IP: 192.168.194.41 - RequestID: x50vxs9giv +2025-06-18T15:16:15.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1024 - IP: 192.168.97.87 - RequestID: 3x88juk28c +2025-06-18T15:16:15.881Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1799ms - IP: 192.168.196.226 - User: user_1023 - RequestID: kagnzhzc9xr +2025-06-18T15:16:15.981Z [TRACE] order-service - Operation: cache_hit - Processing time: 968ms - RequestID: o2tyfrvxykp +2025-06-18T15:16:16.081Z [INFO] user-service - GET /api/v1/auth/login - Status: 401 - Response time: 44ms - IP: 192.168.68.158 - User: user_1012 - RequestID: r698i2w3y6 +2025-06-18T15:16:16.181Z [TRACE] user-service - Auth event: login_failed - User: user_1097 - IP: 192.168.229.123 - RequestID: u7zjrwca5a +2025-06-18T15:16:16.281Z [TRACE] order-service - Database SELECT on orders - Execution time: 247ms - Rows affected: 9 - RequestID: g6jlrts2i1u +2025-06-18T15:16:16.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1044 - IP: 192.168.33.76 - RequestID: dk0lsax4vwc +2025-06-18T15:16:16.481Z [DEBUG] payment-service - Auth event: login_success - User: user_1090 - IP: 192.168.189.103 - RequestID: lfgoy880pm +2025-06-18T15:16:16.581Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 697ms - RequestID: svjx9k621c8 +2025-06-18T15:16:16.681Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 95ms - Rows affected: 96 - RequestID: d0o3h88mja +2025-06-18T15:16:16.781Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1012 - IP: 192.168.187.199 - RequestID: dujee45u9te +2025-06-18T15:16:16.881Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 847ms - RequestID: f862pyp0wsg +2025-06-18T15:16:16.981Z [DEBUG] payment-service - Auth event: login_success - User: user_1025 - IP: 192.168.113.218 - RequestID: el5giboorjs +2025-06-18T15:16:17.081Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 259ms - Rows affected: 57 - RequestID: 5otntuhw60f +2025-06-18T15:16:17.181Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 8ms - Rows affected: 37 - RequestID: 9y4ei6gisb +2025-06-18T15:16:17.281Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 460ms - RequestID: gpkda6ysnjs +2025-06-18T15:16:17.381Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 977ms - RequestID: khjwjl13cp +2025-06-18T15:16:17.481Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 209ms - RequestID: tui5usmvvfi +2025-06-18T15:16:17.581Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 216ms - Rows affected: 27 - RequestID: io8fthz9rhh +2025-06-18T15:16:17.681Z [TRACE] payment-service - Database UPDATE on products - Execution time: 237ms - Rows affected: 95 - RequestID: vxin4mdouzh +2025-06-18T15:16:17.781Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 503 - Response time: 384ms - IP: 192.168.13.72 - User: user_1005 - RequestID: 8k83kvzftde +2025-06-18T15:16:17.881Z [DEBUG] order-service - Operation: cache_hit - Processing time: 432ms - RequestID: u0tefg55vs +2025-06-18T15:16:17.981Z [INFO] order-service - Operation: email_sent - Processing time: 425ms - RequestID: iqehehtbr28 +2025-06-18T15:16:18.081Z [TRACE] notification-service - Operation: cache_miss - Processing time: 180ms - RequestID: rf8w6rfg4mp +2025-06-18T15:16:18.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.46.63 - RequestID: oiq2pwvvyei +2025-06-18T15:16:18.281Z [DEBUG] user-service - Auth event: login_success - User: user_1081 - IP: 192.168.97.87 - RequestID: phbfsg8g9bc +2025-06-18T15:16:18.381Z [TRACE] payment-service - Auth event: login_failed - User: user_1074 - IP: 192.168.46.63 - RequestID: ij0jtnubc9 +2025-06-18T15:16:18.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.46.63 - RequestID: s13an8dha6 +2025-06-18T15:16:18.581Z [INFO] order-service - PATCH /api/v1/orders - Status: 201 - Response time: 1495ms - IP: 192.168.138.123 - User: user_1001 - RequestID: 5ol5dphvooi +2025-06-18T15:16:18.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.31.117 - RequestID: 0gappdl0bqd +2025-06-18T15:16:18.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1058 - IP: 192.168.79.116 - RequestID: y1uckuinlhm +2025-06-18T15:16:18.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.141.100 - RequestID: 1buzi0afdbq +2025-06-18T15:16:18.981Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 374ms - Rows affected: 72 - RequestID: 2f9ka7t9wlk +2025-06-18T15:16:19.081Z [TRACE] payment-service - Auth event: login_success - User: user_1047 - IP: 192.168.46.63 - RequestID: 7lm4apzwofm +2025-06-18T15:16:19.181Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 404 - Response time: 517ms - IP: 192.168.167.32 - User: user_1072 - RequestID: 3m4wiaupx9 +2025-06-18T15:16:19.281Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 141ms - IP: 192.168.138.123 - User: user_1074 - RequestID: 00mfeh0amyfj7 +2025-06-18T15:16:19.381Z [TRACE] user-service - Database DELETE on products - Execution time: 113ms - Rows affected: 30 - RequestID: at8phr050lm +2025-06-18T15:16:19.481Z [DEBUG] payment-service - Auth event: login_failed - User: user_1001 - IP: 192.168.14.77 - RequestID: 696ye1fiomk +2025-06-18T15:16:19.581Z [DEBUG] order-service - Auth event: login_failed - User: user_1047 - IP: 192.168.53.133 - RequestID: t3p7mmb8gn +2025-06-18T15:16:19.681Z [INFO] payment-service - POST /api/v1/payments - Status: 500 - Response time: 1881ms - IP: 192.168.53.133 - User: user_1061 - RequestID: h7a99phkkuh +2025-06-18T15:16:19.781Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 161ms - Rows affected: 15 - RequestID: q6xvicm63bc +2025-06-18T15:16:19.881Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 499ms - Rows affected: 64 - RequestID: 2710n6dlb3j +2025-06-18T15:16:19.981Z [DEBUG] user-service - Operation: email_sent - Processing time: 720ms - RequestID: vc9uy6lesy +2025-06-18T15:16:20.081Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 860ms - RequestID: dhpg2twwvvr +2025-06-18T15:16:20.181Z [DEBUG] payment-service - Auth event: login_failed - User: user_1085 - IP: 192.168.147.171 - RequestID: pcvjod1yid +2025-06-18T15:16:20.281Z [DEBUG] user-service - Auth event: login_failed - User: user_1061 - IP: 192.168.187.199 - RequestID: wdbg1g6n0x +2025-06-18T15:16:20.381Z [DEBUG] user-service - Database UPDATE on payments - Execution time: 417ms - Rows affected: 20 - RequestID: fh7tuewqnjg +2025-06-18T15:16:20.481Z [INFO] auth-service - Database DELETE on orders - Execution time: 446ms - Rows affected: 50 - RequestID: mg928bwsnmn +2025-06-18T15:16:20.581Z [INFO] user-service - Database UPDATE on orders - Execution time: 391ms - Rows affected: 51 - RequestID: hxvuyjg2rwr +2025-06-18T15:16:20.681Z [INFO] payment-service - Operation: cache_hit - Processing time: 466ms - RequestID: vey19m3b5z +2025-06-18T15:16:20.781Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.227.233 - RequestID: 6vhtb085uj5 +2025-06-18T15:16:20.881Z [INFO] user-service - Database INSERT on sessions - Execution time: 435ms - Rows affected: 42 - RequestID: p2di64zn67n +2025-06-18T15:16:20.981Z [INFO] user-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1177ms - IP: 192.168.138.123 - User: user_1066 - RequestID: pfqz5a689f +2025-06-18T15:16:21.081Z [INFO] user-service - Operation: inventory_updated - Processing time: 895ms - RequestID: zhqgvll8l0n +2025-06-18T15:16:21.181Z [INFO] payment-service - Database DELETE on products - Execution time: 301ms - Rows affected: 33 - RequestID: 5zozcnx534i +2025-06-18T15:16:21.281Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 150ms - Rows affected: 77 - RequestID: ng3n2oas8x +2025-06-18T15:16:21.381Z [INFO] notification-service - Operation: order_created - Processing time: 761ms - RequestID: bbcojxulv4c +2025-06-18T15:16:21.481Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 743ms - RequestID: vkk9w4qv21s +2025-06-18T15:16:21.581Z [DEBUG] order-service - Auth event: login_success - User: user_1087 - IP: 192.168.68.128 - RequestID: mfb8j22k7rk +2025-06-18T15:16:21.681Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 500 - Response time: 79ms - IP: 192.168.68.158 - User: user_1051 - RequestID: 6gy360ptj56 +2025-06-18T15:16:21.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.79.143 - RequestID: 7izfad0baie +2025-06-18T15:16:21.881Z [DEBUG] user-service - Operation: email_sent - Processing time: 215ms - RequestID: 22tu0gwwmzs +2025-06-18T15:16:21.981Z [INFO] auth-service - Database INSERT on sessions - Execution time: 217ms - Rows affected: 44 - RequestID: zn8rwk4tm8 +2025-06-18T15:16:22.081Z [DEBUG] payment-service - GET /api/v1/orders - Status: 200 - Response time: 1462ms - IP: 192.168.181.225 - User: user_1063 - RequestID: 7tqvu4nmfvx +2025-06-18T15:16:22.181Z [INFO] notification-service - GET /api/v1/payments - Status: 401 - Response time: 228ms - IP: 192.168.1.152 - User: user_1075 - RequestID: d9z9llbmzb +2025-06-18T15:16:22.281Z [INFO] payment-service - DELETE /api/v1/payments - Status: 403 - Response time: 1602ms - IP: 192.168.181.225 - User: user_1056 - RequestID: b5jxkoyw279 +2025-06-18T15:16:22.381Z [INFO] notification-service - Operation: payment_processed - Processing time: 691ms - RequestID: acdy146vo8 +2025-06-18T15:16:22.481Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 340ms - RequestID: k4lysj5hxm +2025-06-18T15:16:22.581Z [INFO] payment-service - Auth event: login_failed - User: user_1031 - IP: 192.168.64.33 - RequestID: 3d2dmoj83b +2025-06-18T15:16:22.681Z [TRACE] auth-service - Auth event: login_success - User: user_1069 - IP: 192.168.235.117 - RequestID: v80woqbeu +2025-06-18T15:16:22.781Z [DEBUG] notification-service - Operation: order_created - Processing time: 91ms - RequestID: zvh39lhnjq +2025-06-18T15:16:22.881Z [TRACE] payment-service - Operation: notification_queued - Processing time: 821ms - RequestID: 9k7eikwyike +2025-06-18T15:16:22.981Z [TRACE] payment-service - Database INSERT on users - Execution time: 190ms - Rows affected: 64 - RequestID: kzxteij4fqh +2025-06-18T15:16:23.081Z [DEBUG] user-service - Auth event: login_success - User: user_1053 - IP: 192.168.10.184 - RequestID: kfxtgyl6ago +2025-06-18T15:16:23.181Z [TRACE] user-service - Operation: webhook_sent - Processing time: 299ms - RequestID: y8i5fnmrcs +2025-06-18T15:16:23.281Z [DEBUG] user-service - Database UPDATE on products - Execution time: 351ms - Rows affected: 62 - RequestID: wkbybpl4u3k +2025-06-18T15:16:23.381Z [INFO] notification-service - Database DELETE on users - Execution time: 342ms - Rows affected: 90 - RequestID: 8io3s7mbks6 +2025-06-18T15:16:23.481Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 201 - Response time: 718ms - IP: 192.168.113.218 - User: user_1019 - RequestID: mofzi7tvlyd +2025-06-18T15:16:23.581Z [TRACE] order-service - Operation: inventory_updated - Processing time: 370ms - RequestID: 15jylq2qekb +2025-06-18T15:16:23.681Z [INFO] auth-service - Auth event: password_change - User: user_1045 - IP: 192.168.85.229 - RequestID: jecxysp8f8 +2025-06-18T15:16:23.781Z [TRACE] auth-service - GET /api/v1/orders - Status: 400 - Response time: 1906ms - IP: 192.168.242.165 - User: user_1051 - RequestID: ccikcksfkzk +2025-06-18T15:16:23.881Z [TRACE] inventory-service - PUT /api/v1/users - Status: 503 - Response time: 2000ms - IP: 192.168.53.133 - User: user_1043 - RequestID: p506th2vom +2025-06-18T15:16:23.981Z [TRACE] order-service - Auth event: password_change - User: user_1017 - IP: 192.168.104.37 - RequestID: 5rctsl31y7o +2025-06-18T15:16:24.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 358ms - RequestID: juegqalqsx +2025-06-18T15:16:24.181Z [TRACE] notification-service - Operation: payment_processed - Processing time: 437ms - RequestID: rtdf1grcoj +2025-06-18T15:16:24.281Z [TRACE] order-service - Operation: email_sent - Processing time: 478ms - RequestID: 8fu852cwzq +2025-06-18T15:16:24.381Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 196ms - RequestID: vbkdpv9jy4g +2025-06-18T15:16:24.481Z [TRACE] auth-service - Database INSERT on payments - Execution time: 7ms - Rows affected: 44 - RequestID: s7j393acqz +2025-06-18T15:16:24.581Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 500 - Response time: 280ms - IP: 192.168.32.38 - User: user_1064 - RequestID: ivgix60lbib +2025-06-18T15:16:24.681Z [DEBUG] auth-service - Database INSERT on users - Execution time: 342ms - Rows affected: 26 - RequestID: smk7jsjg2y +2025-06-18T15:16:24.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 219ms - RequestID: ded9huhujhr +2025-06-18T15:16:24.881Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 177ms - Rows affected: 1 - RequestID: 4eka71oc5ey +2025-06-18T15:16:24.981Z [DEBUG] user-service - Operation: payment_processed - Processing time: 707ms - RequestID: z38qudzijx +2025-06-18T15:16:25.081Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 169ms - Rows affected: 97 - RequestID: bsme5oqvhnf +2025-06-18T15:16:25.181Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1487ms - IP: 192.168.138.123 - User: user_1061 - RequestID: i9dv053dq8i +2025-06-18T15:16:25.281Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 105ms - Rows affected: 47 - RequestID: ktml73yc6qg +2025-06-18T15:16:25.381Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 765ms - IP: 192.168.235.117 - User: user_1009 - RequestID: k81piej91g +2025-06-18T15:16:25.481Z [INFO] auth-service - Database DELETE on payments - Execution time: 205ms - Rows affected: 26 - RequestID: vq3o0m6mkx8 +2025-06-18T15:16:25.581Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 403 - Response time: 1860ms - IP: 192.168.158.144 - User: user_1016 - RequestID: mepqgtwt2q9 +2025-06-18T15:16:25.681Z [INFO] order-service - POST /api/v1/users - Status: 500 - Response time: 1790ms - IP: 192.168.196.226 - User: user_1026 - RequestID: cleriy0ebyc +2025-06-18T15:16:25.781Z [INFO] inventory-service - POST /api/v1/users - Status: 500 - Response time: 40ms - IP: 192.168.85.229 - User: user_1034 - RequestID: kjxthcn4g1 +2025-06-18T15:16:25.881Z [INFO] notification-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.28.146 - RequestID: tlhrw0hzi4r +2025-06-18T15:16:25.981Z [INFO] inventory-service - Auth event: logout - User: user_1096 - IP: 192.168.10.184 - RequestID: pus605vsapg +2025-06-18T15:16:26.081Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 500 - Response time: 1087ms - IP: 192.168.100.240 - User: user_1030 - RequestID: mytj07gdz5 +2025-06-18T15:16:26.181Z [TRACE] auth-service - GET /api/v1/inventory - Status: 401 - Response time: 839ms - IP: 192.168.28.146 - User: user_1029 - RequestID: ng8rhkmbz7t +2025-06-18T15:16:26.281Z [DEBUG] auth-service - Auth event: login_failed - User: user_1041 - IP: 192.168.32.38 - RequestID: ayb8te12va +2025-06-18T15:16:26.381Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 99ms - RequestID: chyezcw13bw +2025-06-18T15:16:26.481Z [INFO] user-service - Operation: cache_hit - Processing time: 322ms - RequestID: depw9ajda7 +2025-06-18T15:16:26.581Z [INFO] order-service - PATCH /api/v1/users - Status: 500 - Response time: 1453ms - IP: 192.168.141.100 - User: user_1048 - RequestID: pmkbrfytms7 +2025-06-18T15:16:26.681Z [INFO] order-service - Operation: cache_miss - Processing time: 662ms - RequestID: prgrs4bhbb +2025-06-18T15:16:26.781Z [TRACE] order-service - PATCH /api/v1/payments - Status: 500 - Response time: 1754ms - IP: 192.168.79.143 - User: user_1050 - RequestID: jeztabhta5m +2025-06-18T15:16:26.881Z [TRACE] order-service - Operation: email_sent - Processing time: 343ms - RequestID: 2c2n3wj2fqp +2025-06-18T15:16:26.981Z [TRACE] auth-service - Operation: email_sent - Processing time: 791ms - RequestID: dv587a42bi9 +2025-06-18T15:16:27.081Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 200 - Response time: 529ms - IP: 192.168.31.117 - User: user_1044 - RequestID: mmj3u4lrun +2025-06-18T15:16:27.181Z [INFO] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 1971ms - IP: 192.168.138.123 - User: user_1099 - RequestID: m3dxgfx4a6p +2025-06-18T15:16:27.281Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 247ms - Rows affected: 95 - RequestID: f5fjxtm8ddj +2025-06-18T15:16:27.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1004 - IP: 192.168.44.5 - RequestID: xibkpspfmcm +2025-06-18T15:16:27.481Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 403 - Response time: 983ms - IP: 192.168.240.169 - User: user_1090 - RequestID: kxrlwazetjc +2025-06-18T15:16:27.581Z [TRACE] payment-service - Database INSERT on orders - Execution time: 263ms - Rows affected: 23 - RequestID: 85zk19a2fw7 +2025-06-18T15:16:27.681Z [TRACE] notification-service - PATCH /api/v1/users - Status: 404 - Response time: 1549ms - IP: 192.168.227.233 - User: user_1009 - RequestID: 5i1aipxbvf +2025-06-18T15:16:27.781Z [INFO] user-service - Auth event: logout - User: user_1043 - IP: 192.168.10.184 - RequestID: nvadrnyfyl +2025-06-18T15:16:27.881Z [DEBUG] user-service - Operation: cache_miss - Processing time: 77ms - RequestID: 3wmd2y2q0oz +2025-06-18T15:16:27.981Z [DEBUG] user-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.158.144 - RequestID: y18833qvweh +2025-06-18T15:16:28.081Z [TRACE] order-service - Auth event: logout - User: user_1073 - IP: 192.168.211.72 - RequestID: t1osm2zshvp +2025-06-18T15:16:28.181Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 396ms - IP: 192.168.30.79 - User: user_1073 - RequestID: ionwjd9dhb9 +2025-06-18T15:16:28.281Z [INFO] payment-service - POST /api/v1/orders - Status: 200 - Response time: 1482ms - IP: 192.168.194.41 - User: user_1091 - RequestID: dvpqhgrq89 +2025-06-18T15:16:28.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1058 - IP: 192.168.64.33 - RequestID: i5mzfjmdphn +2025-06-18T15:16:28.481Z [DEBUG] notification-service - Database DELETE on sessions - Execution time: 109ms - Rows affected: 5 - RequestID: he2u4s9xrjn +2025-06-18T15:16:28.581Z [INFO] auth-service - Auth event: password_change - User: user_1003 - IP: 192.168.32.38 - RequestID: jbwse7mwxis +2025-06-18T15:16:28.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1007 - IP: 192.168.247.134 - RequestID: 2sksrle5s0i +2025-06-18T15:16:28.781Z [TRACE] order-service - Operation: cache_hit - Processing time: 668ms - RequestID: 516s4x4uefp +2025-06-18T15:16:28.881Z [TRACE] payment-service - Operation: payment_processed - Processing time: 929ms - RequestID: hwpg59v5yod +2025-06-18T15:16:28.981Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 327ms - Rows affected: 1 - RequestID: 0mc733gcbnsg +2025-06-18T15:16:29.081Z [INFO] auth-service - Database SELECT on orders - Execution time: 117ms - Rows affected: 40 - RequestID: iiftv9gjlbm +2025-06-18T15:16:29.181Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 307ms - IP: 192.168.167.32 - User: user_1042 - RequestID: rx12ov3tvj9 +2025-06-18T15:16:29.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.242.165 - RequestID: uwatsg66z4 +2025-06-18T15:16:29.381Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 516ms - RequestID: 70kkpu9e3p9 +2025-06-18T15:16:29.481Z [TRACE] order-service - Operation: notification_queued - Processing time: 704ms - RequestID: m36aid96c9e +2025-06-18T15:16:29.581Z [DEBUG] user-service - Operation: email_sent - Processing time: 771ms - RequestID: avdvu1jv0br +2025-06-18T15:16:29.681Z [DEBUG] notification-service - Database SELECT on products - Execution time: 240ms - Rows affected: 36 - RequestID: uhui0soab4 +2025-06-18T15:16:29.781Z [INFO] auth-service - Auth event: login_success - User: user_1075 - IP: 192.168.181.225 - RequestID: 4c8e753rkp +2025-06-18T15:16:29.881Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 281ms - Rows affected: 93 - RequestID: t055gafcy7 +2025-06-18T15:16:29.981Z [INFO] order-service - Auth event: login_success - User: user_1010 - IP: 192.168.36.218 - RequestID: n0va9xz4t7m +2025-06-18T15:16:30.081Z [INFO] inventory-service - Auth event: login_failed - User: user_1097 - IP: 192.168.174.114 - RequestID: ge9azrxg7q +2025-06-18T15:16:30.181Z [TRACE] order-service - Auth event: login_success - User: user_1065 - IP: 192.168.144.38 - RequestID: 459qvzuz8hl +2025-06-18T15:16:30.281Z [DEBUG] user-service - Database SELECT on payments - Execution time: 3ms - Rows affected: 94 - RequestID: sfwd8yhfl4 +2025-06-18T15:16:30.381Z [INFO] order-service - PUT /api/v1/users - Status: 404 - Response time: 1905ms - IP: 192.168.170.215 - User: user_1034 - RequestID: vbiklzf5zmb +2025-06-18T15:16:30.481Z [INFO] notification-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.227.233 - RequestID: rob2z99lpn +2025-06-18T15:16:30.581Z [DEBUG] auth-service - POST /api/v1/users - Status: 200 - Response time: 625ms - IP: 192.168.189.103 - User: user_1058 - RequestID: kry9h3npijr +2025-06-18T15:16:30.681Z [TRACE] order-service - Database UPDATE on orders - Execution time: 98ms - Rows affected: 76 - RequestID: 17s1vm9na8s +2025-06-18T15:16:30.781Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 201 - Response time: 1812ms - IP: 192.168.31.117 - User: user_1053 - RequestID: nfxpcl6qihh +2025-06-18T15:16:30.881Z [INFO] notification-service - POST /api/v1/payments - Status: 400 - Response time: 596ms - IP: 192.168.13.72 - User: user_1024 - RequestID: me66venrky +2025-06-18T15:16:30.981Z [TRACE] order-service - Database UPDATE on users - Execution time: 45ms - Rows affected: 57 - RequestID: td2w2i9u13d +2025-06-18T15:16:31.081Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 256ms - Rows affected: 78 - RequestID: 6fx0to03f3c +2025-06-18T15:16:31.181Z [INFO] payment-service - Operation: email_sent - Processing time: 727ms - RequestID: okcdu83o1r +2025-06-18T15:16:31.281Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 122ms - RequestID: 35vzp6c929i +2025-06-18T15:16:31.381Z [TRACE] notification-service - Operation: cache_hit - Processing time: 146ms - RequestID: reaoaoai9pj +2025-06-18T15:16:31.481Z [INFO] notification-service - Operation: inventory_updated - Processing time: 700ms - RequestID: 4nwdxptwvns +2025-06-18T15:16:31.581Z [DEBUG] user-service - Operation: cache_miss - Processing time: 737ms - RequestID: v8enuvzpa0c +2025-06-18T15:16:31.681Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 229ms - Rows affected: 40 - RequestID: verawomv7r8 +2025-06-18T15:16:31.781Z [DEBUG] payment-service - Auth event: logout - User: user_1090 - IP: 192.168.144.38 - RequestID: 5dsmu74sqe3 +2025-06-18T15:16:31.881Z [INFO] order-service - Operation: cache_miss - Processing time: 62ms - RequestID: e8k379wj9sa +2025-06-18T15:16:31.981Z [TRACE] auth-service - Operation: cache_hit - Processing time: 980ms - RequestID: kbbj1mxa0ms +2025-06-18T15:16:32.081Z [TRACE] order-service - Database INSERT on audit_logs - Execution time: 115ms - Rows affected: 16 - RequestID: x6xbrqvr41b +2025-06-18T15:16:32.181Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 165ms - Rows affected: 52 - RequestID: uf22tu86kfb +2025-06-18T15:16:32.281Z [INFO] notification-service - DELETE /api/v1/users - Status: 400 - Response time: 1857ms - IP: 192.168.85.229 - User: user_1027 - RequestID: dnf3wt2z5g +2025-06-18T15:16:32.381Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 500 - Response time: 1197ms - IP: 192.168.81.206 - User: user_1093 - RequestID: q0gmp73xrpg +2025-06-18T15:16:32.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.97.87 - RequestID: s83jkhq592 +2025-06-18T15:16:32.581Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 328ms - Rows affected: 24 - RequestID: axhd9pn6tzt +2025-06-18T15:16:32.681Z [INFO] order-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.64.33 - RequestID: bmoqz5kkyef +2025-06-18T15:16:32.781Z [DEBUG] notification-service - Auth event: login_success - User: user_1050 - IP: 192.168.1.152 - RequestID: zmrid7dc2ul +2025-06-18T15:16:32.881Z [DEBUG] auth-service - Auth event: login_failed - User: user_1050 - IP: 192.168.235.117 - RequestID: ijejy76mjrb +2025-06-18T15:16:32.981Z [INFO] order-service - Auth event: password_change - User: user_1028 - IP: 192.168.229.123 - RequestID: tpyd1psy9e +2025-06-18T15:16:33.081Z [INFO] user-service - Auth event: login_success - User: user_1064 - IP: 192.168.28.146 - RequestID: y4v3ea94q6k +2025-06-18T15:16:33.181Z [TRACE] payment-service - Operation: email_sent - Processing time: 457ms - RequestID: k1eaakkfm4 +2025-06-18T15:16:33.281Z [INFO] inventory-service - Database SELECT on payments - Execution time: 493ms - Rows affected: 80 - RequestID: ktfnhvtbp9 +2025-06-18T15:16:33.381Z [TRACE] order-service - POST /api/v1/payments - Status: 400 - Response time: 1318ms - IP: 192.168.97.87 - User: user_1021 - RequestID: kn1dg9fsvpm +2025-06-18T15:16:33.481Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 574ms - IP: 192.168.11.60 - User: user_1014 - RequestID: w369quxg9g +2025-06-18T15:16:33.581Z [INFO] notification-service - GET /api/v1/auth/login - Status: 400 - Response time: 884ms - IP: 192.168.113.218 - User: user_1027 - RequestID: 1x3rkmvj2d +2025-06-18T15:16:33.681Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 401 - Response time: 902ms - IP: 192.168.36.218 - User: user_1076 - RequestID: lzvmeushit +2025-06-18T15:16:33.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.227.77 - RequestID: s7abdaqxxf +2025-06-18T15:16:33.881Z [TRACE] payment-service - PUT /api/v1/payments - Status: 502 - Response time: 1336ms - IP: 192.168.64.33 - User: user_1015 - RequestID: wr239uh5olm +2025-06-18T15:16:33.981Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 500 - Response time: 1914ms - IP: 192.168.85.229 - User: user_1094 - RequestID: 3n7np4qpzcn +2025-06-18T15:16:34.081Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 323ms - Rows affected: 35 - RequestID: r8tg6xa9dp +2025-06-18T15:16:34.181Z [DEBUG] order-service - Operation: email_sent - Processing time: 717ms - RequestID: qyq87yvss2o +2025-06-18T15:16:34.281Z [INFO] notification-service - POST /api/v1/auth/login - Status: 502 - Response time: 1390ms - IP: 192.168.196.226 - User: user_1056 - RequestID: lpljk0539o +2025-06-18T15:16:34.381Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 421ms - Rows affected: 52 - RequestID: zva0x9ngqa +2025-06-18T15:16:34.481Z [TRACE] payment-service - Auth event: login_success - User: user_1006 - IP: 192.168.81.206 - RequestID: zimevq6cyg +2025-06-18T15:16:34.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.235.117 - RequestID: 3pnsl3unw4k +2025-06-18T15:16:34.681Z [TRACE] payment-service - Auth event: login_success - User: user_1054 - IP: 192.168.144.38 - RequestID: nje7y0ezqs +2025-06-18T15:16:34.781Z [INFO] payment-service - GET /api/v1/payments - Status: 400 - Response time: 963ms - IP: 192.168.235.117 - User: user_1073 - RequestID: 45qhri2iyn +2025-06-18T15:16:34.881Z [TRACE] notification-service - PUT /api/v1/users - Status: 502 - Response time: 490ms - IP: 192.168.100.240 - User: user_1039 - RequestID: ac29wsf5qgb +2025-06-18T15:16:34.981Z [INFO] payment-service - Operation: cache_hit - Processing time: 331ms - RequestID: okswpl7vxd +2025-06-18T15:16:35.081Z [INFO] user-service - Database INSERT on payments - Execution time: 94ms - Rows affected: 99 - RequestID: 7ayjhnofmwt +2025-06-18T15:16:35.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.46.63 - RequestID: 1qtnxp0mgeh +2025-06-18T15:16:35.281Z [TRACE] user-service - Auth event: logout - User: user_1055 - IP: 192.168.81.206 - RequestID: 9dxgwyydkd +2025-06-18T15:16:35.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1010 - IP: 192.168.232.72 - RequestID: 1ix9qh7bfia +2025-06-18T15:16:35.481Z [INFO] order-service - Auth event: login_success - User: user_1041 - IP: 192.168.28.146 - RequestID: n8e3847xmrh +2025-06-18T15:16:35.581Z [TRACE] notification-service - Auth event: logout - User: user_1040 - IP: 192.168.232.72 - RequestID: 2tu5w90non7 +2025-06-18T15:16:35.681Z [INFO] auth-service - Operation: order_created - Processing time: 307ms - RequestID: qq7necvkuas +2025-06-18T15:16:35.781Z [TRACE] order-service - Auth event: login_failed - User: user_1076 - IP: 192.168.181.225 - RequestID: pmbgxm8ds9 +2025-06-18T15:16:35.881Z [TRACE] payment-service - Auth event: logout - User: user_1040 - IP: 192.168.229.123 - RequestID: x7xzf68ztv +2025-06-18T15:16:35.981Z [TRACE] user-service - Database UPDATE on products - Execution time: 245ms - Rows affected: 48 - RequestID: vkz3rlmp21q +2025-06-18T15:16:36.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 89ms - RequestID: 26rx8skxfdb +2025-06-18T15:16:36.181Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 161ms - Rows affected: 76 - RequestID: vly8e56o3y8 +2025-06-18T15:16:36.281Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.14.77 - RequestID: h4t67v5tg8r +2025-06-18T15:16:36.381Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 514ms - RequestID: urysijagdq +2025-06-18T15:16:36.481Z [TRACE] order-service - Database DELETE on sessions - Execution time: 264ms - Rows affected: 14 - RequestID: nrh4mmnyax +2025-06-18T15:16:36.581Z [INFO] auth-service - Operation: email_sent - Processing time: 607ms - RequestID: wbroos5y7ba +2025-06-18T15:16:36.681Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 697ms - RequestID: vav1x1ivh8m +2025-06-18T15:16:36.781Z [INFO] user-service - Operation: notification_queued - Processing time: 277ms - RequestID: m1lm5tp090s +2025-06-18T15:16:36.881Z [INFO] user-service - PATCH /api/v1/orders - Status: 400 - Response time: 1930ms - IP: 192.168.240.169 - User: user_1085 - RequestID: cn9rhxne715 +2025-06-18T15:16:36.981Z [INFO] user-service - Auth event: login_failed - User: user_1044 - IP: 192.168.85.229 - RequestID: zaisjrnj7de +2025-06-18T15:16:37.081Z [DEBUG] order-service - Auth event: login_success - User: user_1004 - IP: 192.168.181.225 - RequestID: p5j5y5b5eoo +2025-06-18T15:16:37.181Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 735ms - IP: 192.168.196.226 - User: user_1049 - RequestID: wx1j21kycs +2025-06-18T15:16:37.281Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 5ms - Rows affected: 79 - RequestID: f97kc90x1sj +2025-06-18T15:16:37.381Z [DEBUG] notification-service - Operation: email_sent - Processing time: 671ms - RequestID: qgv6mfi2p7q +2025-06-18T15:16:37.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1098 - IP: 192.168.159.94 - RequestID: jmlwz4srp78 +2025-06-18T15:16:37.581Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 201 - Response time: 428ms - IP: 192.168.68.128 - User: user_1008 - RequestID: uhe7mif0ix +2025-06-18T15:16:37.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 411ms - RequestID: 0cdq1cqg1z14 +2025-06-18T15:16:37.781Z [TRACE] auth-service - Operation: cache_miss - Processing time: 83ms - RequestID: dr2bkw4qq3 +2025-06-18T15:16:37.881Z [TRACE] user-service - Database UPDATE on products - Execution time: 124ms - Rows affected: 14 - RequestID: po97a5no4o +2025-06-18T15:16:37.981Z [TRACE] payment-service - Auth event: logout - User: user_1085 - IP: 192.168.11.60 - RequestID: tmbd4qj5xyi +2025-06-18T15:16:38.081Z [INFO] payment-service - Database UPDATE on orders - Execution time: 257ms - Rows affected: 81 - RequestID: lyvlff1m8s +2025-06-18T15:16:38.181Z [TRACE] user-service - Operation: cache_hit - Processing time: 161ms - RequestID: cf9fofjo8wo +2025-06-18T15:16:38.281Z [INFO] order-service - Database SELECT on products - Execution time: 367ms - Rows affected: 57 - RequestID: 6uxcg4x0gok +2025-06-18T15:16:38.381Z [DEBUG] order-service - Operation: order_created - Processing time: 1048ms - RequestID: lw4avw8abzf +2025-06-18T15:16:38.481Z [INFO] payment-service - Database SELECT on orders - Execution time: 462ms - Rows affected: 85 - RequestID: j6424ooun09 +2025-06-18T15:16:38.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1031 - IP: 192.168.133.7 - RequestID: bcizjis65j8 +2025-06-18T15:16:38.681Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.79.143 - RequestID: dj1fszh7aci +2025-06-18T15:16:38.781Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 500 - Response time: 705ms - IP: 192.168.196.226 - User: user_1006 - RequestID: 8o3dehphcn +2025-06-18T15:16:38.881Z [INFO] payment-service - Operation: order_created - Processing time: 1042ms - RequestID: bhsywv1he7e +2025-06-18T15:16:38.981Z [TRACE] auth-service - Auth event: logout - User: user_1009 - IP: 192.168.81.206 - RequestID: gihp3s2j6d8 +2025-06-18T15:16:39.081Z [DEBUG] payment-service - Auth event: login_failed - User: user_1085 - IP: 192.168.167.32 - RequestID: nd5juqyghyn +2025-06-18T15:16:39.181Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 19ms - Rows affected: 38 - RequestID: 1hw99nuglwc +2025-06-18T15:16:39.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.11.60 - RequestID: 9bs2o3pucfr +2025-06-18T15:16:39.381Z [INFO] notification-service - Database INSERT on orders - Execution time: 194ms - Rows affected: 68 - RequestID: peq9yvsg7ic +2025-06-18T15:16:39.481Z [DEBUG] inventory-service - Auth event: password_change - User: user_1018 - IP: 192.168.167.32 - RequestID: sdcz5c2cua +2025-06-18T15:16:39.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 334ms - RequestID: f4vgio5iltu +2025-06-18T15:16:39.681Z [DEBUG] user-service - Auth event: logout - User: user_1072 - IP: 192.168.133.7 - RequestID: apriee86cir +2025-06-18T15:16:39.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.53.133 - RequestID: 468q7c7u6ye +2025-06-18T15:16:39.881Z [INFO] inventory-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.141.100 - RequestID: iekvy8s0f8s +2025-06-18T15:16:39.981Z [DEBUG] inventory-service - Auth event: password_change - User: user_1032 - IP: 192.168.1.152 - RequestID: 1fgkd9rl95o +2025-06-18T15:16:40.081Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 201 - Response time: 1856ms - IP: 192.168.1.152 - User: user_1015 - RequestID: j3cmjjguhcr +2025-06-18T15:16:40.181Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 253ms - Rows affected: 80 - RequestID: 368mt4ocefb +2025-06-18T15:16:40.281Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 348ms - Rows affected: 50 - RequestID: n9m7yhdnc5s +2025-06-18T15:16:40.381Z [DEBUG] order-service - Auth event: logout - User: user_1020 - IP: 192.168.189.103 - RequestID: jyw1bb4owhe +2025-06-18T15:16:40.481Z [INFO] payment-service - Database SELECT on users - Execution time: 24ms - Rows affected: 4 - RequestID: flukooqr8b +2025-06-18T15:16:40.581Z [TRACE] order-service - Auth event: logout - User: user_1032 - IP: 192.168.113.218 - RequestID: egwv2fykujo +2025-06-18T15:16:40.681Z [TRACE] order-service - Auth event: password_change - User: user_1062 - IP: 192.168.113.218 - RequestID: rzdzgv6ig9s +2025-06-18T15:16:40.781Z [TRACE] payment-service - Auth event: logout - User: user_1089 - IP: 192.168.14.77 - RequestID: 472akxqqubn +2025-06-18T15:16:40.881Z [TRACE] order-service - Auth event: password_change - User: user_1070 - IP: 192.168.158.144 - RequestID: qixkfj71ie +2025-06-18T15:16:40.981Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 325ms - Rows affected: 47 - RequestID: fbyzrhllmx +2025-06-18T15:16:41.081Z [INFO] user-service - Operation: webhook_sent - Processing time: 320ms - RequestID: fkfx3ysn9sk +2025-06-18T15:16:41.181Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 469ms - Rows affected: 82 - RequestID: 13sjygnenr4b +2025-06-18T15:16:41.281Z [INFO] payment-service - Operation: webhook_sent - Processing time: 804ms - RequestID: dpl9c9upoi +2025-06-18T15:16:41.381Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 380ms - Rows affected: 94 - RequestID: 1eaiqs5shcs +2025-06-18T15:16:41.481Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 334ms - RequestID: 0n0ja4k23fb +2025-06-18T15:16:41.581Z [TRACE] payment-service - Operation: order_created - Processing time: 784ms - RequestID: 4rq1qop0ule +2025-06-18T15:16:41.681Z [DEBUG] user-service - Auth event: logout - User: user_1067 - IP: 192.168.64.33 - RequestID: yo837ro8699 +2025-06-18T15:16:41.781Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 335ms - RequestID: dl1lqt93fe8 +2025-06-18T15:16:41.881Z [DEBUG] user-service - GET /api/v1/payments - Status: 503 - Response time: 313ms - IP: 192.168.229.123 - User: user_1057 - RequestID: 5zrkormr1ak +2025-06-18T15:16:41.981Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 294ms - Rows affected: 65 - RequestID: kxea0k7rkps +2025-06-18T15:16:42.081Z [TRACE] user-service - Auth event: login_failed - User: user_1030 - IP: 192.168.68.128 - RequestID: l30jyea2om +2025-06-18T15:16:42.181Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 401 - Response time: 133ms - IP: 192.168.174.114 - User: user_1045 - RequestID: yocg6pwgw3 +2025-06-18T15:16:42.281Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.79.116 - RequestID: fuxrc1vnxo9 +2025-06-18T15:16:42.381Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 243ms - Rows affected: 39 - RequestID: m08f6i5ekc +2025-06-18T15:16:42.481Z [INFO] auth-service - Auth event: login_success - User: user_1069 - IP: 192.168.247.134 - RequestID: g1lmk51bx4t +2025-06-18T15:16:42.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1029 - IP: 192.168.85.229 - RequestID: pq0s0xcobc +2025-06-18T15:16:42.681Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1069ms - IP: 192.168.141.100 - User: user_1044 - RequestID: a7dlvzlsk8m +2025-06-18T15:16:42.781Z [INFO] user-service - Auth event: password_change - User: user_1085 - IP: 192.168.147.171 - RequestID: v9h9q5kbans +2025-06-18T15:16:42.881Z [INFO] order-service - Database UPDATE on products - Execution time: 246ms - Rows affected: 6 - RequestID: v727gyeabds +2025-06-18T15:16:42.981Z [INFO] payment-service - Database UPDATE on products - Execution time: 443ms - Rows affected: 86 - RequestID: q1zbu5py53b +2025-06-18T15:16:43.081Z [INFO] order-service - Auth event: login_success - User: user_1077 - IP: 192.168.13.72 - RequestID: c1ia6kcktv +2025-06-18T15:16:43.181Z [DEBUG] order-service - Operation: notification_queued - Processing time: 427ms - RequestID: zcsxop6uau +2025-06-18T15:16:43.281Z [INFO] user-service - PATCH /api/v1/inventory - Status: 404 - Response time: 494ms - IP: 192.168.227.233 - User: user_1011 - RequestID: 351cpnuotlt +2025-06-18T15:16:43.381Z [INFO] user-service - Auth event: login_failed - User: user_1073 - IP: 192.168.113.218 - RequestID: m1bn4ypygak +2025-06-18T15:16:43.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.147.171 - RequestID: b33mutazhke +2025-06-18T15:16:43.581Z [TRACE] order-service - PATCH /api/v1/payments - Status: 404 - Response time: 604ms - IP: 192.168.104.37 - User: user_1015 - RequestID: 99z7e1ni1s +2025-06-18T15:16:43.681Z [TRACE] user-service - Operation: order_created - Processing time: 1034ms - RequestID: 0h6dhty50kt9 +2025-06-18T15:16:43.781Z [INFO] user-service - Database SELECT on users - Execution time: 237ms - Rows affected: 47 - RequestID: 4uu275ntj48 +2025-06-18T15:16:43.881Z [INFO] payment-service - POST /api/v1/orders - Status: 403 - Response time: 1241ms - IP: 192.168.240.169 - User: user_1008 - RequestID: olci40s5qx +2025-06-18T15:16:43.981Z [TRACE] order-service - Auth event: login_failed - User: user_1065 - IP: 192.168.10.184 - RequestID: 4cajpcqf17n +2025-06-18T15:16:44.081Z [TRACE] auth-service - Database SELECT on users - Execution time: 166ms - Rows affected: 47 - RequestID: 13wrqjklgya +2025-06-18T15:16:44.181Z [INFO] auth-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.211.72 - RequestID: va29d5r5ren +2025-06-18T15:16:44.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.79.143 - RequestID: wigsgkzdi7 +2025-06-18T15:16:44.381Z [INFO] payment-service - Operation: payment_processed - Processing time: 947ms - RequestID: 7emgeswqrrp +2025-06-18T15:16:44.481Z [DEBUG] user-service - Auth event: login_success - User: user_1005 - IP: 192.168.79.143 - RequestID: wgv9i41s3kt +2025-06-18T15:16:44.581Z [TRACE] inventory-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1358ms - IP: 192.168.227.233 - User: user_1033 - RequestID: hrsywznkc8w +2025-06-18T15:16:44.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.227.233 - RequestID: gclfut3030g +2025-06-18T15:16:44.781Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 500 - Response time: 515ms - IP: 192.168.147.171 - User: user_1093 - RequestID: icon2odd56 +2025-06-18T15:16:44.881Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 315ms - RequestID: 855x1aa00j7 +2025-06-18T15:16:44.981Z [INFO] payment-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.104.37 - RequestID: mx4dnr34iob +2025-06-18T15:16:45.081Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 8ms - Rows affected: 31 - RequestID: aoa9pyh60sj +2025-06-18T15:16:45.181Z [DEBUG] user-service - PUT /api/v1/orders - Status: 503 - Response time: 648ms - IP: 192.168.113.218 - User: user_1004 - RequestID: u146al043rl +2025-06-18T15:16:45.281Z [TRACE] order-service - Database DELETE on users - Execution time: 394ms - Rows affected: 67 - RequestID: 3d6ut5qguzh +2025-06-18T15:16:45.381Z [INFO] user-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1756ms - IP: 192.168.68.128 - User: user_1033 - RequestID: an35nscxnv +2025-06-18T15:16:45.481Z [INFO] user-service - POST /api/v1/auth/login - Status: 502 - Response time: 693ms - IP: 192.168.159.94 - User: user_1094 - RequestID: bhk9qyxdj1a +2025-06-18T15:16:45.581Z [INFO] auth-service - Database SELECT on payments - Execution time: 406ms - Rows affected: 21 - RequestID: ecz6pg1c1kj +2025-06-18T15:16:45.681Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 256ms - Rows affected: 14 - RequestID: 80d4a2zruo7 +2025-06-18T15:16:45.781Z [INFO] payment-service - Auth event: logout - User: user_1014 - IP: 192.168.64.33 - RequestID: qcznj6q78db +2025-06-18T15:16:45.881Z [INFO] notification-service - Operation: inventory_updated - Processing time: 908ms - RequestID: u9fwvmzasre +2025-06-18T15:16:45.981Z [INFO] auth-service - Auth event: login_success - User: user_1091 - IP: 192.168.133.7 - RequestID: bjcwrkwtr8 +2025-06-18T15:16:46.081Z [INFO] payment-service - Operation: cache_miss - Processing time: 911ms - RequestID: 9x9duj3wie5 +2025-06-18T15:16:46.181Z [INFO] order-service - POST /api/v1/orders - Status: 400 - Response time: 187ms - IP: 192.168.100.240 - User: user_1094 - RequestID: vjpy6i4wmv +2025-06-18T15:16:46.281Z [INFO] user-service - Database UPDATE on users - Execution time: 396ms - Rows affected: 68 - RequestID: 7t2zom2hilo +2025-06-18T15:16:46.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 762ms - RequestID: owoxsvfjnm +2025-06-18T15:16:46.481Z [INFO] user-service - Operation: cache_miss - Processing time: 1037ms - RequestID: megsyco6oxe +2025-06-18T15:16:46.581Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 728ms - RequestID: sfedtot9sv +2025-06-18T15:16:46.681Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 120ms - Rows affected: 38 - RequestID: 8z9nzxvl68q +2025-06-18T15:16:46.781Z [TRACE] auth-service - Database INSERT on orders - Execution time: 354ms - Rows affected: 64 - RequestID: dxpkap719u +2025-06-18T15:16:46.881Z [INFO] auth-service - Database DELETE on sessions - Execution time: 289ms - Rows affected: 76 - RequestID: ldopme06ak +2025-06-18T15:16:46.981Z [INFO] user-service - Database UPDATE on payments - Execution time: 160ms - Rows affected: 92 - RequestID: k314m4nczir +2025-06-18T15:16:47.081Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 159ms - Rows affected: 45 - RequestID: duj074qximj +2025-06-18T15:16:47.181Z [INFO] auth-service - GET /api/v1/inventory - Status: 201 - Response time: 760ms - IP: 192.168.97.87 - User: user_1048 - RequestID: buy7cm0jxsg +2025-06-18T15:16:47.281Z [DEBUG] order-service - Database DELETE on users - Execution time: 127ms - Rows affected: 70 - RequestID: 2a9agbgzmyn +2025-06-18T15:16:47.381Z [TRACE] payment-service - Auth event: password_change - User: user_1092 - IP: 192.168.10.184 - RequestID: b7z79usnten +2025-06-18T15:16:47.481Z [INFO] auth-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.64.33 - RequestID: ap3czk33yw8 +2025-06-18T15:16:47.581Z [INFO] user-service - Database SELECT on orders - Execution time: 47ms - Rows affected: 84 - RequestID: xxv1bxyoqt +2025-06-18T15:16:47.681Z [TRACE] user-service - Operation: payment_processed - Processing time: 368ms - RequestID: bvin1r29upb +2025-06-18T15:16:47.781Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 73ms - RequestID: taqznl8k8fg +2025-06-18T15:16:47.881Z [INFO] user-service - Auth event: login_success - User: user_1019 - IP: 192.168.138.123 - RequestID: dyqyjubes5 +2025-06-18T15:16:47.981Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 615ms - RequestID: qu5pttznuak +2025-06-18T15:16:48.081Z [INFO] order-service - Operation: cache_hit - Processing time: 408ms - RequestID: vgj9cv67prp +2025-06-18T15:16:48.181Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1378ms - IP: 192.168.113.218 - User: user_1071 - RequestID: edcixegwuga +2025-06-18T15:16:48.281Z [DEBUG] notification-service - POST /api/v1/payments - Status: 403 - Response time: 144ms - IP: 192.168.14.77 - User: user_1004 - RequestID: 7vrawezpu5l +2025-06-18T15:16:48.381Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 200 - Response time: 888ms - IP: 192.168.30.79 - User: user_1087 - RequestID: 8dpwk4ihxuv +2025-06-18T15:16:48.481Z [TRACE] notification-service - Database SELECT on products - Execution time: 280ms - Rows affected: 88 - RequestID: czoy2bgwtov +2025-06-18T15:16:48.581Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 335ms - Rows affected: 5 - RequestID: wvamgvih5kq +2025-06-18T15:16:48.681Z [TRACE] notification-service - Auth event: login_success - User: user_1068 - IP: 192.168.79.116 - RequestID: oqtjga2pl2 +2025-06-18T15:16:48.781Z [INFO] payment-service - Operation: webhook_sent - Processing time: 192ms - RequestID: 775v19vih7e +2025-06-18T15:16:48.881Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 251ms - Rows affected: 95 - RequestID: ujtpsikojw +2025-06-18T15:16:48.981Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1019ms - IP: 192.168.10.184 - User: user_1010 - RequestID: 9a3sr2nhz2 +2025-06-18T15:16:49.081Z [INFO] notification-service - Database SELECT on users - Execution time: 412ms - Rows affected: 65 - RequestID: a7bun8ca0lf +2025-06-18T15:16:49.181Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 380ms - Rows affected: 62 - RequestID: tug1kjishpc +2025-06-18T15:16:49.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 912ms - RequestID: z79isddh6vp +2025-06-18T15:16:49.381Z [DEBUG] payment-service - Database SELECT on products - Execution time: 299ms - Rows affected: 2 - RequestID: 86muu4qwde8 +2025-06-18T15:16:49.481Z [TRACE] payment-service - POST /api/v1/payments - Status: 201 - Response time: 1767ms - IP: 192.168.240.169 - User: user_1063 - RequestID: njzsknuptd +2025-06-18T15:16:49.581Z [INFO] order-service - Database SELECT on users - Execution time: 357ms - Rows affected: 45 - RequestID: m2plo7c26s +2025-06-18T15:16:49.681Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 187ms - RequestID: gd0hlqelj7 +2025-06-18T15:16:49.781Z [INFO] auth-service - Database SELECT on users - Execution time: 398ms - Rows affected: 6 - RequestID: szgnyovlna +2025-06-18T15:16:49.881Z [INFO] order-service - DELETE /api/v1/inventory - Status: 500 - Response time: 756ms - IP: 192.168.46.63 - User: user_1023 - RequestID: 9herty2y8j4 +2025-06-18T15:16:49.981Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 954ms - RequestID: 3n6m5j9t21i +2025-06-18T15:16:50.081Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 999ms - RequestID: bjd9coju6y4 +2025-06-18T15:16:50.181Z [TRACE] notification-service - PATCH /api/v1/users - Status: 404 - Response time: 110ms - IP: 192.168.232.72 - User: user_1028 - RequestID: ud2iy4o7eji +2025-06-18T15:16:50.281Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 468ms - Rows affected: 21 - RequestID: 6f7jf2dbac +2025-06-18T15:16:50.381Z [INFO] user-service - POST /api/v1/orders - Status: 404 - Response time: 512ms - IP: 192.168.159.94 - User: user_1023 - RequestID: 432j976uhaw +2025-06-18T15:16:50.481Z [INFO] notification-service - Auth event: login_success - User: user_1074 - IP: 192.168.33.76 - RequestID: 8cxgzo6fww8 +2025-06-18T15:16:50.581Z [TRACE] notification-service - Auth event: password_change - User: user_1004 - IP: 192.168.14.77 - RequestID: fdfzvp0g13d +2025-06-18T15:16:50.681Z [INFO] order-service - Database DELETE on users - Execution time: 97ms - Rows affected: 42 - RequestID: oi4mn3o190n +2025-06-18T15:16:50.781Z [INFO] user-service - Auth event: logout - User: user_1007 - IP: 192.168.14.77 - RequestID: c6o6w56808p +2025-06-18T15:16:50.881Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 503 - Response time: 966ms - IP: 192.168.79.116 - User: user_1039 - RequestID: yxuq0h7ixr9 +2025-06-18T15:16:50.981Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 69ms - Rows affected: 89 - RequestID: evhtqljzl9 +2025-06-18T15:16:51.081Z [INFO] payment-service - Database SELECT on sessions - Execution time: 94ms - Rows affected: 61 - RequestID: vys28eyqwj +2025-06-18T15:16:51.181Z [DEBUG] auth-service - Auth event: login_success - User: user_1034 - IP: 192.168.28.146 - RequestID: qss27prhcs +2025-06-18T15:16:51.281Z [INFO] auth-service - Auth event: password_change - User: user_1033 - IP: 192.168.141.100 - RequestID: wd60a6nvqc9 +2025-06-18T15:16:51.381Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 237ms - Rows affected: 4 - RequestID: 683pmo36k4r +2025-06-18T15:16:51.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.158.144 - RequestID: 0tiqjkvfbhwg +2025-06-18T15:16:51.581Z [DEBUG] notification-service - Operation: email_sent - Processing time: 69ms - RequestID: 5dcfx0clt6p +2025-06-18T15:16:51.681Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 403 - Response time: 706ms - IP: 192.168.174.114 - User: user_1017 - RequestID: 6dle6umsno7 +2025-06-18T15:16:51.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.53.133 - RequestID: ha40kvikybf +2025-06-18T15:16:51.881Z [INFO] user-service - Auth event: login_failed - User: user_1086 - IP: 192.168.68.158 - RequestID: 60h6wmlzqdv +2025-06-18T15:16:51.981Z [DEBUG] user-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.235.117 - RequestID: hfekwph6l3l +2025-06-18T15:16:52.081Z [INFO] notification-service - Database DELETE on users - Execution time: 35ms - Rows affected: 91 - RequestID: 0hvaaot8p4ye +2025-06-18T15:16:52.181Z [DEBUG] user-service - Database SELECT on products - Execution time: 391ms - Rows affected: 85 - RequestID: 2qkgjvc4055 +2025-06-18T15:16:52.281Z [INFO] inventory-service - Operation: payment_processed - Processing time: 211ms - RequestID: dkl25yerbxi +2025-06-18T15:16:52.381Z [TRACE] notification-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.53.133 - RequestID: fz0zfjwzv +2025-06-18T15:16:52.481Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 257ms - Rows affected: 25 - RequestID: hc3sqkihmpm +2025-06-18T15:16:52.581Z [DEBUG] user-service - POST /api/v1/payments - Status: 401 - Response time: 236ms - IP: 192.168.227.233 - User: user_1073 - RequestID: 8bgyj2jawp9 +2025-06-18T15:16:52.681Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 250ms - Rows affected: 56 - RequestID: mqowpmrgef +2025-06-18T15:16:52.781Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 201 - Response time: 76ms - IP: 192.168.36.218 - User: user_1094 - RequestID: nqhnyrdtt3s +2025-06-18T15:16:52.881Z [DEBUG] order-service - POST /api/v1/orders - Status: 500 - Response time: 469ms - IP: 192.168.10.184 - User: user_1032 - RequestID: v1bsfjhdchm +2025-06-18T15:16:52.981Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 472ms - Rows affected: 40 - RequestID: 1lgbao4g515 +2025-06-18T15:16:53.081Z [INFO] order-service - Database UPDATE on sessions - Execution time: 72ms - Rows affected: 27 - RequestID: 5ccx48hxicb +2025-06-18T15:16:53.181Z [TRACE] auth-service - Database SELECT on products - Execution time: 415ms - Rows affected: 86 - RequestID: nppoyhji6j8 +2025-06-18T15:16:53.281Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 138ms - RequestID: l1kzpmpiv4o +2025-06-18T15:16:53.381Z [TRACE] order-service - Database DELETE on payments - Execution time: 49ms - Rows affected: 13 - RequestID: 8l4ippob9iu +2025-06-18T15:16:53.481Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 95ms - Rows affected: 42 - RequestID: sfo8js8sroo +2025-06-18T15:16:53.581Z [DEBUG] user-service - Auth event: password_change - User: user_1064 - IP: 192.168.28.146 - RequestID: jcepvqvfv2d +2025-06-18T15:16:53.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 886ms - RequestID: p554swjm59 +2025-06-18T15:16:53.781Z [TRACE] notification-service - Operation: notification_queued - Processing time: 283ms - RequestID: dmjtnii2gqb +2025-06-18T15:16:53.881Z [TRACE] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 1069ms - IP: 192.168.189.103 - User: user_1082 - RequestID: fd30uz168bj +2025-06-18T15:16:53.981Z [DEBUG] order-service - Auth event: logout - User: user_1011 - IP: 192.168.33.76 - RequestID: xsx7rn1ehul +2025-06-18T15:16:54.081Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 500 - Response time: 163ms - IP: 192.168.232.72 - User: user_1089 - RequestID: oi3rs11mp6 +2025-06-18T15:16:54.181Z [INFO] auth-service - Database INSERT on payments - Execution time: 185ms - Rows affected: 39 - RequestID: vqehemrbhai +2025-06-18T15:16:54.281Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 203ms - Rows affected: 93 - RequestID: 4ym90eawb2d +2025-06-18T15:16:54.381Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 942ms - RequestID: e1kngsq51ff +2025-06-18T15:16:54.481Z [TRACE] payment-service - Operation: notification_queued - Processing time: 761ms - RequestID: kzhz5rv2vsj +2025-06-18T15:16:54.581Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 404 - Response time: 111ms - IP: 192.168.44.5 - User: user_1047 - RequestID: hazl16fkdun +2025-06-18T15:16:54.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1013 - IP: 192.168.53.133 - RequestID: mrxv5z1upv +2025-06-18T15:16:54.781Z [TRACE] auth-service - Operation: notification_queued - Processing time: 453ms - RequestID: s67n4ordg58 +2025-06-18T15:16:54.881Z [TRACE] payment-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.53.133 - RequestID: kd04vgqf6n9 +2025-06-18T15:16:54.981Z [DEBUG] user-service - Auth event: login_success - User: user_1091 - IP: 192.168.79.116 - RequestID: 5a3upnk9hm2 +2025-06-18T15:16:55.081Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 401 - Response time: 1301ms - IP: 192.168.227.233 - User: user_1050 - RequestID: g9j7aj98wmk +2025-06-18T15:16:55.181Z [DEBUG] notification-service - Database INSERT on products - Execution time: 317ms - Rows affected: 50 - RequestID: dumghsqt7zk +2025-06-18T15:16:55.281Z [TRACE] notification-service - Database SELECT on payments - Execution time: 64ms - Rows affected: 87 - RequestID: n1xftqanh1 +2025-06-18T15:16:55.381Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 502 - Response time: 1188ms - IP: 192.168.14.77 - User: user_1028 - RequestID: x7613sef5x +2025-06-18T15:16:55.481Z [INFO] order-service - Operation: order_created - Processing time: 509ms - RequestID: nmfbs974b +2025-06-18T15:16:55.581Z [TRACE] auth-service - PATCH /api/v1/users - Status: 201 - Response time: 1780ms - IP: 192.168.46.63 - User: user_1089 - RequestID: wyxw89bfdlc +2025-06-18T15:16:55.681Z [INFO] user-service - Database UPDATE on users - Execution time: 319ms - Rows affected: 13 - RequestID: kzduxi399x +2025-06-18T15:16:55.781Z [TRACE] order-service - PUT /api/v1/orders - Status: 201 - Response time: 506ms - IP: 192.168.232.72 - User: user_1043 - RequestID: 06yrg4pfewr6 +2025-06-18T15:16:55.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 1005ms - RequestID: gvhsqf1xmv +2025-06-18T15:16:55.981Z [INFO] user-service - Auth event: login_failed - User: user_1040 - IP: 192.168.46.63 - RequestID: ne54crpgnao +2025-06-18T15:16:56.081Z [TRACE] auth-service - Auth event: login_success - User: user_1079 - IP: 192.168.11.60 - RequestID: fwbqxxomvi6 +2025-06-18T15:16:56.181Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 259ms - Rows affected: 84 - RequestID: w86cgrwq6w +2025-06-18T15:16:56.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1020 - IP: 192.168.159.94 - RequestID: dhsxbts1fra +2025-06-18T15:16:56.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 1028ms - RequestID: thuzgpbqvaj +2025-06-18T15:16:56.481Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1529ms - IP: 192.168.44.5 - User: user_1071 - RequestID: yj7wyzuvydg +2025-06-18T15:16:56.581Z [INFO] payment-service - PUT /api/v1/inventory - Status: 400 - Response time: 1984ms - IP: 192.168.13.72 - User: user_1064 - RequestID: udenyqdi4m9 +2025-06-18T15:16:56.681Z [INFO] order-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.189.103 - RequestID: ayjlak1ldff +2025-06-18T15:16:56.781Z [INFO] user-service - Database UPDATE on products - Execution time: 233ms - Rows affected: 16 - RequestID: clncrbjputt +2025-06-18T15:16:56.881Z [INFO] inventory-service - Auth event: password_change - User: user_1080 - IP: 192.168.229.123 - RequestID: zgvwgv5th79 +2025-06-18T15:16:56.981Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 265ms - Rows affected: 46 - RequestID: xkha5945po9 +2025-06-18T15:16:57.081Z [TRACE] auth-service - PUT /api/v1/payments - Status: 503 - Response time: 1788ms - IP: 192.168.158.144 - User: user_1077 - RequestID: twxp7pe1hxi +2025-06-18T15:16:57.181Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 495ms - IP: 192.168.144.38 - User: user_1035 - RequestID: jb3c8gtrl5n +2025-06-18T15:16:57.281Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 55ms - Rows affected: 50 - RequestID: dmyjjqxw6o +2025-06-18T15:16:57.381Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 201 - Response time: 1399ms - IP: 192.168.138.123 - User: user_1051 - RequestID: inx962r16rc +2025-06-18T15:16:57.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 1017ms - RequestID: nvix8s0whj +2025-06-18T15:16:57.581Z [INFO] order-service - GET /api/v1/auth/logout - Status: 500 - Response time: 852ms - IP: 192.168.113.218 - User: user_1031 - RequestID: s2j8s2346si +2025-06-18T15:16:57.681Z [TRACE] order-service - Database DELETE on products - Execution time: 220ms - Rows affected: 94 - RequestID: rnq1g3u2o +2025-06-18T15:16:57.781Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 938ms - RequestID: orem3ur454 +2025-06-18T15:16:57.881Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 502 - Response time: 92ms - IP: 192.168.53.133 - User: user_1068 - RequestID: mq0pmtmn7ac +2025-06-18T15:16:57.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.167.32 - RequestID: xla9pmlsj4a +2025-06-18T15:16:58.081Z [INFO] auth-service - Operation: cache_miss - Processing time: 738ms - RequestID: uqhlrnzi7d9 +2025-06-18T15:16:58.181Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 400 - Response time: 646ms - IP: 192.168.79.116 - User: user_1091 - RequestID: o5tao01k1hi +2025-06-18T15:16:58.281Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 502 - Response time: 1709ms - IP: 192.168.104.37 - User: user_1061 - RequestID: bivbpfacviu +2025-06-18T15:16:58.381Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1723ms - IP: 192.168.44.5 - User: user_1006 - RequestID: r4c24b6o19f +2025-06-18T15:16:58.481Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 429ms - Rows affected: 97 - RequestID: 1uqjls7bfnn +2025-06-18T15:16:58.581Z [INFO] order-service - POST /api/v1/auth/logout - Status: 404 - Response time: 621ms - IP: 192.168.242.165 - User: user_1030 - RequestID: o4yj08gif1 +2025-06-18T15:16:58.681Z [DEBUG] inventory-service - PATCH /api/v1/users - Status: 503 - Response time: 266ms - IP: 192.168.68.128 - User: user_1058 - RequestID: s1igm95b4m +2025-06-18T15:16:58.781Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 441ms - Rows affected: 25 - RequestID: ms8w886oqi +2025-06-18T15:16:58.881Z [INFO] user-service - Auth event: password_change - User: user_1067 - IP: 192.168.211.72 - RequestID: cdwhgavcqma +2025-06-18T15:16:58.981Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 198ms - IP: 192.168.170.215 - User: user_1095 - RequestID: pdigubk6r8b +2025-06-18T15:16:59.081Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1903ms - IP: 192.168.240.169 - User: user_1009 - RequestID: xqktfkjqzhj +2025-06-18T15:16:59.181Z [TRACE] order-service - Auth event: password_change - User: user_1084 - IP: 192.168.170.215 - RequestID: bhge7qq546d +2025-06-18T15:16:59.281Z [INFO] notification-service - Database INSERT on users - Execution time: 317ms - Rows affected: 51 - RequestID: i8uxez7538b +2025-06-18T15:16:59.381Z [DEBUG] auth-service - Database INSERT on users - Execution time: 343ms - Rows affected: 40 - RequestID: gyx8dkbm7rk +2025-06-18T15:16:59.481Z [INFO] order-service - PUT /api/v1/payments - Status: 401 - Response time: 104ms - IP: 192.168.104.37 - User: user_1015 - RequestID: la993zulcqm +2025-06-18T15:16:59.581Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 386ms - Rows affected: 43 - RequestID: 56r3kn8hq54 +2025-06-18T15:16:59.681Z [INFO] order-service - Operation: notification_queued - Processing time: 51ms - RequestID: h91nqiet03d +2025-06-18T15:16:59.781Z [TRACE] inventory-service - Auth event: login_failed - User: user_1066 - IP: 192.168.32.38 - RequestID: ejekas1ewhv +2025-06-18T15:16:59.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.44.5 - RequestID: jhx668yh5qs +2025-06-18T15:16:59.981Z [INFO] payment-service - Auth event: logout - User: user_1081 - IP: 192.168.113.218 - RequestID: fxokrqrsri +2025-06-18T15:17:00.081Z [INFO] notification-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.247.134 - RequestID: m8uqx5zdmx +2025-06-18T15:17:00.181Z [INFO] inventory-service - Database INSERT on payments - Execution time: 50ms - Rows affected: 85 - RequestID: klgoapomkh +2025-06-18T15:17:00.281Z [INFO] payment-service - Operation: inventory_updated - Processing time: 748ms - RequestID: j2v8jl53b0e +2025-06-18T15:17:00.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 853ms - RequestID: nb8afwmg1k +2025-06-18T15:17:00.481Z [INFO] auth-service - Operation: webhook_sent - Processing time: 140ms - RequestID: qp49snbuh2 +2025-06-18T15:17:00.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.97.87 - RequestID: 8nimbhzapgf +2025-06-18T15:17:00.681Z [INFO] user-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1351ms - IP: 192.168.240.169 - User: user_1013 - RequestID: t3bm9tn8sl +2025-06-18T15:17:00.781Z [INFO] order-service - POST /api/v1/auth/logout - Status: 404 - Response time: 91ms - IP: 192.168.46.63 - User: user_1084 - RequestID: bvuolgdjl78 +2025-06-18T15:17:00.881Z [INFO] payment-service - Auth event: password_change - User: user_1018 - IP: 192.168.104.37 - RequestID: acsb77ajux5 +2025-06-18T15:17:00.981Z [INFO] inventory-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.44.5 - RequestID: m8967s35rbd +2025-06-18T15:17:01.081Z [INFO] order-service - Database DELETE on products - Execution time: 170ms - Rows affected: 36 - RequestID: ptuxudx6ato +2025-06-18T15:17:01.181Z [DEBUG] payment-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1565ms - IP: 192.168.104.37 - User: user_1033 - RequestID: vp7lc8nz32 +2025-06-18T15:17:01.281Z [TRACE] inventory-service - Auth event: logout - User: user_1045 - IP: 192.168.64.33 - RequestID: omnnymfqanr +2025-06-18T15:17:01.381Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 495ms - RequestID: x5ad2bghm8k +2025-06-18T15:17:01.481Z [TRACE] auth-service - Database DELETE on users - Execution time: 176ms - Rows affected: 14 - RequestID: rkktwd3pfz +2025-06-18T15:17:01.581Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 359ms - RequestID: 3ojtnmwwada +2025-06-18T15:17:01.681Z [INFO] order-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.68.158 - RequestID: ogifcl287wj +2025-06-18T15:17:01.781Z [DEBUG] order-service - PUT /api/v1/payments - Status: 403 - Response time: 1057ms - IP: 192.168.240.169 - User: user_1094 - RequestID: 87iaymx3s4v +2025-06-18T15:17:01.881Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 205ms - Rows affected: 76 - RequestID: 5wgdz7sn7v7 +2025-06-18T15:17:01.981Z [INFO] order-service - GET /api/v1/inventory - Status: 502 - Response time: 402ms - IP: 192.168.81.206 - User: user_1088 - RequestID: cigkuds0kyd +2025-06-18T15:17:02.081Z [DEBUG] order-service - Operation: order_created - Processing time: 169ms - RequestID: hma5ho7a4r4 +2025-06-18T15:17:02.181Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1895ms - IP: 192.168.113.218 - User: user_1034 - RequestID: ths7e2s076n +2025-06-18T15:17:02.281Z [INFO] order-service - Database UPDATE on products - Execution time: 318ms - Rows affected: 61 - RequestID: 9uyessfxqh4 +2025-06-18T15:17:02.381Z [TRACE] user-service - Operation: cache_hit - Processing time: 826ms - RequestID: m1qq9dw4h8o +2025-06-18T15:17:02.481Z [DEBUG] payment-service - Auth event: login_failed - User: user_1082 - IP: 192.168.232.72 - RequestID: a2u08i5qqnk +2025-06-18T15:17:02.581Z [DEBUG] auth-service - Operation: email_sent - Processing time: 432ms - RequestID: ekpe087k3ie +2025-06-18T15:17:02.681Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 294ms - RequestID: er64hd2se95 +2025-06-18T15:17:02.781Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 196ms - Rows affected: 49 - RequestID: d0fww5bwxgl +2025-06-18T15:17:02.881Z [TRACE] payment-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.104.37 - RequestID: wlgtizex0sn +2025-06-18T15:17:02.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.229.123 - RequestID: 7td5sd4ew0x +2025-06-18T15:17:03.081Z [DEBUG] user-service - Database INSERT on products - Execution time: 50ms - Rows affected: 55 - RequestID: kfj28jps6ei +2025-06-18T15:17:03.181Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 292ms - IP: 192.168.68.158 - User: user_1096 - RequestID: gmrhdu4hf69 +2025-06-18T15:17:03.281Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 260ms - RequestID: b7xytmp3at6 +2025-06-18T15:17:03.381Z [DEBUG] order-service - PUT /api/v1/orders - Status: 201 - Response time: 1860ms - IP: 192.168.181.225 - User: user_1008 - RequestID: jfi4qwqvnkn +2025-06-18T15:17:03.481Z [INFO] payment-service - Database INSERT on payments - Execution time: 486ms - Rows affected: 23 - RequestID: 69sfapecfrn +2025-06-18T15:17:03.581Z [INFO] notification-service - DELETE /api/v1/orders - Status: 502 - Response time: 1990ms - IP: 192.168.187.199 - User: user_1029 - RequestID: p77oxacudb +2025-06-18T15:17:03.681Z [INFO] auth-service - Database DELETE on products - Execution time: 145ms - Rows affected: 70 - RequestID: pbhvi2fpl08 +2025-06-18T15:17:03.781Z [TRACE] user-service - Operation: notification_queued - Processing time: 942ms - RequestID: l1v9mn9u4w +2025-06-18T15:17:03.881Z [INFO] auth-service - Database UPDATE on payments - Execution time: 430ms - Rows affected: 58 - RequestID: ugou0p1zwh8 +2025-06-18T15:17:03.981Z [TRACE] user-service - Operation: email_sent - Processing time: 496ms - RequestID: y4f5fpegpk +2025-06-18T15:17:04.081Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 241ms - RequestID: qxyflaguik +2025-06-18T15:17:04.181Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 500 - Response time: 853ms - IP: 192.168.170.215 - User: user_1088 - RequestID: di1oqxlggkw +2025-06-18T15:17:04.281Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 263ms - RequestID: esr7k8x8hed +2025-06-18T15:17:04.381Z [TRACE] inventory-service - Auth event: login_success - User: user_1092 - IP: 192.168.44.5 - RequestID: knaih2cinvs +2025-06-18T15:17:04.481Z [DEBUG] user-service - Operation: cache_hit - Processing time: 592ms - RequestID: f5pjxww5e2p +2025-06-18T15:17:04.581Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 201 - Response time: 262ms - IP: 192.168.189.103 - User: user_1079 - RequestID: jrytphxvw5 +2025-06-18T15:17:04.681Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 77ms - Rows affected: 77 - RequestID: 87zz5lg9e7a +2025-06-18T15:17:04.781Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 228ms - Rows affected: 95 - RequestID: 7zxq9wlfx1a +2025-06-18T15:17:04.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1024 - IP: 192.168.227.77 - RequestID: 0h31z4aknlt +2025-06-18T15:17:04.981Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 716ms - RequestID: 73smwdjr2hy +2025-06-18T15:17:05.081Z [TRACE] payment-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.68.158 - RequestID: prb76ahuqqn +2025-06-18T15:17:05.181Z [TRACE] notification-service - Operation: email_sent - Processing time: 119ms - RequestID: jgj1xgu4ax +2025-06-18T15:17:05.281Z [INFO] order-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.36.218 - RequestID: andukol41ea +2025-06-18T15:17:05.381Z [DEBUG] notification-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 914ms - IP: 192.168.240.169 - User: user_1078 - RequestID: u2ounvos8gc +2025-06-18T15:17:05.481Z [INFO] auth-service - Operation: notification_queued - Processing time: 704ms - RequestID: tvb7z7to6b +2025-06-18T15:17:05.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.85.229 - RequestID: 55f8zsd22pi +2025-06-18T15:17:05.681Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 256ms - RequestID: tjfmb0kdu7 +2025-06-18T15:17:05.781Z [INFO] user-service - Operation: notification_queued - Processing time: 725ms - RequestID: a55xfrkvga5 +2025-06-18T15:17:05.881Z [TRACE] user-service - Auth event: logout - User: user_1064 - IP: 192.168.187.199 - RequestID: 4fsnryzqtlb +2025-06-18T15:17:05.981Z [TRACE] auth-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.189.103 - RequestID: d026ym2asdl +2025-06-18T15:17:06.081Z [INFO] payment-service - Operation: cache_hit - Processing time: 647ms - RequestID: ukvzbf27zii +2025-06-18T15:17:06.181Z [TRACE] inventory-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1974ms - IP: 192.168.79.116 - User: user_1030 - RequestID: 35w3rs6ikes +2025-06-18T15:17:06.281Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 42ms - Rows affected: 15 - RequestID: x01xakbu6wo +2025-06-18T15:17:06.381Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 699ms - IP: 192.168.141.100 - User: user_1098 - RequestID: 9oqfft7cjwn +2025-06-18T15:17:06.481Z [DEBUG] auth-service - Auth event: logout - User: user_1013 - IP: 192.168.46.63 - RequestID: 3gfnf4jjn0q +2025-06-18T15:17:06.581Z [INFO] user-service - Operation: order_created - Processing time: 118ms - RequestID: 8pbo9n1irvr +2025-06-18T15:17:06.681Z [TRACE] auth-service - Auth event: password_change - User: user_1086 - IP: 192.168.79.143 - RequestID: b7kumgdv0xb +2025-06-18T15:17:06.781Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 261ms - Rows affected: 80 - RequestID: 6gbx4pp1ikn +2025-06-18T15:17:06.881Z [INFO] order-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.189.103 - RequestID: mfu7nfcn13d +2025-06-18T15:17:06.981Z [TRACE] user-service - Database DELETE on orders - Execution time: 199ms - Rows affected: 33 - RequestID: 5j0rh2jlxnl +2025-06-18T15:17:07.081Z [DEBUG] user-service - PATCH /api/v1/users - Status: 401 - Response time: 299ms - IP: 192.168.11.60 - User: user_1094 - RequestID: x6hx5rz6q4 +2025-06-18T15:17:07.181Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 879ms - RequestID: 8fh217jthw3 +2025-06-18T15:17:07.281Z [INFO] user-service - PATCH /api/v1/orders - Status: 200 - Response time: 136ms - IP: 192.168.196.226 - User: user_1037 - RequestID: 50l391nz3d9 +2025-06-18T15:17:07.381Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 490ms - Rows affected: 96 - RequestID: d5fqls79amf +2025-06-18T15:17:07.481Z [TRACE] order-service - DELETE /api/v1/users - Status: 400 - Response time: 328ms - IP: 192.168.85.229 - User: user_1098 - RequestID: wlqq80iqrti +2025-06-18T15:17:07.581Z [INFO] notification-service - Database INSERT on payments - Execution time: 433ms - Rows affected: 19 - RequestID: uuvdmtitbeg +2025-06-18T15:17:07.681Z [INFO] auth-service - PATCH /api/v1/payments - Status: 503 - Response time: 1379ms - IP: 192.168.158.144 - User: user_1002 - RequestID: a9229jsahuk +2025-06-18T15:17:07.781Z [INFO] notification-service - Operation: cache_miss - Processing time: 306ms - RequestID: te3hvplx3tm +2025-06-18T15:17:07.881Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 502 - Response time: 491ms - IP: 192.168.159.94 - User: user_1009 - RequestID: 5l1ehczx29s +2025-06-18T15:17:07.981Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 160ms - RequestID: wcn5gu3akf +2025-06-18T15:17:08.081Z [INFO] order-service - GET /api/v1/users - Status: 201 - Response time: 1873ms - IP: 192.168.97.87 - User: user_1021 - RequestID: m9g9017z7io +2025-06-18T15:17:08.181Z [INFO] order-service - DELETE /api/v1/payments - Status: 502 - Response time: 719ms - IP: 192.168.33.76 - User: user_1063 - RequestID: avoo8slgay8 +2025-06-18T15:17:08.281Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 590ms - RequestID: b119uufqyhr +2025-06-18T15:17:08.381Z [INFO] user-service - PATCH /api/v1/users - Status: 502 - Response time: 435ms - IP: 192.168.187.199 - User: user_1085 - RequestID: dwwdgy44j79 +2025-06-18T15:17:08.481Z [TRACE] order-service - Operation: inventory_updated - Processing time: 966ms - RequestID: v9d73ye3s +2025-06-18T15:17:08.581Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 323ms - Rows affected: 36 - RequestID: el1gb6ucvxp +2025-06-18T15:17:08.681Z [TRACE] user-service - POST /api/v1/payments - Status: 404 - Response time: 416ms - IP: 192.168.13.72 - User: user_1094 - RequestID: uq9twealw2o +2025-06-18T15:17:08.781Z [DEBUG] notification-service - Database INSERT on users - Execution time: 428ms - Rows affected: 38 - RequestID: p29d8jbx6cr +2025-06-18T15:17:08.881Z [INFO] auth-service - Database DELETE on sessions - Execution time: 69ms - Rows affected: 50 - RequestID: 5tlm1xhjjdr +2025-06-18T15:17:08.981Z [INFO] order-service - PUT /api/v1/inventory - Status: 401 - Response time: 1536ms - IP: 192.168.133.7 - User: user_1086 - RequestID: w7i260g8j0c +2025-06-18T15:17:09.081Z [TRACE] user-service - Operation: cache_miss - Processing time: 1039ms - RequestID: 6jmisdfe074 +2025-06-18T15:17:09.181Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1344ms - IP: 192.168.97.87 - User: user_1065 - RequestID: tt1cw94uh7h +2025-06-18T15:17:09.281Z [INFO] payment-service - Auth event: logout - User: user_1003 - IP: 192.168.64.33 - RequestID: bm62bwpb81o +2025-06-18T15:17:09.381Z [DEBUG] payment-service - Auth event: login_failed - User: user_1040 - IP: 192.168.11.60 - RequestID: qpqs9e8bqmj +2025-06-18T15:17:09.481Z [INFO] user-service - Operation: inventory_updated - Processing time: 713ms - RequestID: 56o2jsk144u +2025-06-18T15:17:09.581Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 1451ms - IP: 192.168.170.215 - User: user_1076 - RequestID: 6yc522vb8e4 +2025-06-18T15:17:09.681Z [TRACE] inventory-service - Auth event: logout - User: user_1064 - IP: 192.168.30.79 - RequestID: wl4mqmcmwz +2025-06-18T15:17:09.781Z [DEBUG] notification-service - Auth event: logout - User: user_1058 - IP: 192.168.104.37 - RequestID: qic0jwhxhaa +2025-06-18T15:17:09.881Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 71ms - RequestID: xy8hid75da +2025-06-18T15:17:09.981Z [TRACE] payment-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.240.169 - RequestID: xpgem9liyo +2025-06-18T15:17:10.081Z [INFO] payment-service - Database INSERT on orders - Execution time: 315ms - Rows affected: 47 - RequestID: vq44laxixo +2025-06-18T15:17:10.181Z [DEBUG] payment-service - Auth event: login_success - User: user_1082 - IP: 192.168.144.38 - RequestID: 29hv2tz63c4 +2025-06-18T15:17:10.281Z [DEBUG] user-service - Operation: email_sent - Processing time: 988ms - RequestID: 6w804k27o8c +2025-06-18T15:17:10.381Z [INFO] inventory-service - PUT /api/v1/orders - Status: 401 - Response time: 945ms - IP: 192.168.141.100 - User: user_1067 - RequestID: gejzm82n836 +2025-06-18T15:17:10.481Z [TRACE] order-service - Database DELETE on sessions - Execution time: 175ms - Rows affected: 23 - RequestID: pxtcynqj3p +2025-06-18T15:17:10.581Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 243ms - Rows affected: 75 - RequestID: nz8xy2kb4hg +2025-06-18T15:17:10.681Z [INFO] inventory-service - Operation: cache_miss - Processing time: 582ms - RequestID: 0luxjeo102f +2025-06-18T15:17:10.781Z [TRACE] order-service - Operation: webhook_sent - Processing time: 440ms - RequestID: e0eumj3az3k +2025-06-18T15:17:10.881Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 834ms - RequestID: s9inb3h0ds +2025-06-18T15:17:10.981Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 201 - Response time: 405ms - IP: 192.168.31.117 - User: user_1099 - RequestID: ykxg0dx2som +2025-06-18T15:17:11.081Z [DEBUG] notification-service - Database DELETE on products - Execution time: 350ms - Rows affected: 69 - RequestID: kt8exr4ops +2025-06-18T15:17:11.181Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 475ms - Rows affected: 62 - RequestID: pqb6xlcv2v +2025-06-18T15:17:11.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1033 - IP: 192.168.85.229 - RequestID: 28wk271xuqd +2025-06-18T15:17:11.381Z [INFO] inventory-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.100.240 - RequestID: d55kjsysmdf +2025-06-18T15:17:11.481Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 403 - Response time: 439ms - IP: 192.168.33.76 - User: user_1017 - RequestID: bv1ljl4pf7q +2025-06-18T15:17:11.581Z [INFO] payment-service - Database SELECT on sessions - Execution time: 272ms - Rows affected: 76 - RequestID: pareobsdxdi +2025-06-18T15:17:11.681Z [INFO] order-service - Database DELETE on payments - Execution time: 222ms - Rows affected: 44 - RequestID: 9ma6hfx9rlm +2025-06-18T15:17:11.781Z [TRACE] inventory-service - Operation: email_sent - Processing time: 950ms - RequestID: s9r51sfu4eb +2025-06-18T15:17:11.881Z [INFO] order-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.232.72 - RequestID: njtdw0qsp3d +2025-06-18T15:17:11.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.232.72 - RequestID: 493fofijqcz +2025-06-18T15:17:12.081Z [DEBUG] auth-service - Auth event: login_success - User: user_1030 - IP: 192.168.189.103 - RequestID: jgv9x34hxx9 +2025-06-18T15:17:12.181Z [DEBUG] auth-service - GET /api/v1/payments - Status: 201 - Response time: 1585ms - IP: 192.168.229.123 - User: user_1012 - RequestID: p2ab1qcwib +2025-06-18T15:17:12.281Z [INFO] payment-service - Auth event: login_failed - User: user_1024 - IP: 192.168.147.171 - RequestID: 090bmil9jisg +2025-06-18T15:17:12.381Z [DEBUG] order-service - Database INSERT on users - Execution time: 332ms - Rows affected: 27 - RequestID: mui3tiywon +2025-06-18T15:17:12.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1025 - IP: 192.168.28.146 - RequestID: 0jyb2ie10zzn +2025-06-18T15:17:12.581Z [INFO] notification-service - Database UPDATE on products - Execution time: 321ms - Rows affected: 61 - RequestID: p4ck62lo2 +2025-06-18T15:17:12.681Z [INFO] user-service - Operation: notification_queued - Processing time: 842ms - RequestID: gre1ul74y6d +2025-06-18T15:17:12.781Z [TRACE] order-service - GET /api/v1/payments - Status: 503 - Response time: 989ms - IP: 192.168.227.77 - User: user_1089 - RequestID: ojwil777ccq +2025-06-18T15:17:12.881Z [INFO] payment-service - Auth event: logout - User: user_1024 - IP: 192.168.113.218 - RequestID: 8ekwwb9h9hu +2025-06-18T15:17:12.981Z [INFO] user-service - Operation: cache_hit - Processing time: 697ms - RequestID: zzhcenc5lh +2025-06-18T15:17:13.081Z [INFO] inventory-service - PUT /api/v1/orders - Status: 400 - Response time: 1999ms - IP: 192.168.211.72 - User: user_1082 - RequestID: x6vzfslwf39 +2025-06-18T15:17:13.181Z [INFO] payment-service - DELETE /api/v1/payments - Status: 200 - Response time: 1338ms - IP: 192.168.229.123 - User: user_1007 - RequestID: lknq6vkmf8 +2025-06-18T15:17:13.281Z [DEBUG] user-service - Operation: cache_hit - Processing time: 628ms - RequestID: n9ho6u5axud +2025-06-18T15:17:13.381Z [INFO] notification-service - PUT /api/v1/users - Status: 200 - Response time: 1789ms - IP: 192.168.31.117 - User: user_1036 - RequestID: wz1ndiilt2 +2025-06-18T15:17:13.481Z [INFO] auth-service - GET /api/v1/payments - Status: 200 - Response time: 1797ms - IP: 192.168.44.5 - User: user_1003 - RequestID: ge7n0k66wmp +2025-06-18T15:17:13.581Z [TRACE] order-service - Auth event: login_success - User: user_1043 - IP: 192.168.33.76 - RequestID: 08yrzewje0gq +2025-06-18T15:17:13.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 889ms - RequestID: 9yvemkbod26 +2025-06-18T15:17:13.781Z [DEBUG] order-service - Database INSERT on orders - Execution time: 478ms - Rows affected: 45 - RequestID: dcglzyb2hxh +2025-06-18T15:17:13.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 796ms - RequestID: 2goqszn70hb +2025-06-18T15:17:13.981Z [DEBUG] order-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.14.77 - RequestID: cjc9myrfygj +2025-06-18T15:17:14.081Z [INFO] order-service - PUT /api/v1/payments - Status: 502 - Response time: 244ms - IP: 192.168.53.133 - User: user_1001 - RequestID: e3e2ghx503 +2025-06-18T15:17:14.181Z [DEBUG] notification-service - GET /api/v1/orders - Status: 502 - Response time: 264ms - IP: 192.168.232.72 - User: user_1044 - RequestID: 7ktzqbrjzid +2025-06-18T15:17:14.281Z [INFO] payment-service - PUT /api/v1/users - Status: 503 - Response time: 740ms - IP: 192.168.141.100 - User: user_1071 - RequestID: piifkk22jxh +2025-06-18T15:17:14.381Z [DEBUG] notification-service - Operation: email_sent - Processing time: 485ms - RequestID: v9jt53k0kn8 +2025-06-18T15:17:14.481Z [TRACE] payment-service - Database INSERT on users - Execution time: 280ms - Rows affected: 57 - RequestID: unbvsysg1ss +2025-06-18T15:17:14.581Z [TRACE] auth-service - Database SELECT on payments - Execution time: 229ms - Rows affected: 11 - RequestID: oyemnjupnyq +2025-06-18T15:17:14.681Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 401 - Response time: 1609ms - IP: 192.168.28.146 - User: user_1077 - RequestID: 89p79iamu9 +2025-06-18T15:17:14.781Z [TRACE] auth-service - Database SELECT on users - Execution time: 216ms - Rows affected: 80 - RequestID: gl1tfek7il +2025-06-18T15:17:14.881Z [INFO] order-service - Auth event: login_failed - User: user_1082 - IP: 192.168.10.184 - RequestID: awde4jr77i +2025-06-18T15:17:14.981Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1002ms - IP: 192.168.36.218 - User: user_1012 - RequestID: 29lfud0d6bu +2025-06-18T15:17:15.081Z [INFO] order-service - DELETE /api/v1/orders - Status: 201 - Response time: 484ms - IP: 192.168.46.63 - User: user_1003 - RequestID: 3zr3v908tpo +2025-06-18T15:17:15.181Z [TRACE] payment-service - Auth event: login_success - User: user_1044 - IP: 192.168.170.215 - RequestID: sz83jiknott +2025-06-18T15:17:15.281Z [TRACE] notification-service - Operation: notification_queued - Processing time: 781ms - RequestID: liuy7s73hba +2025-06-18T15:17:15.381Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 294ms - Rows affected: 36 - RequestID: 6h4p25chxnq +2025-06-18T15:17:15.481Z [TRACE] order-service - PUT /api/v1/payments - Status: 502 - Response time: 56ms - IP: 192.168.28.146 - User: user_1098 - RequestID: 7i33t6pkdyg +2025-06-18T15:17:15.581Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1909ms - IP: 192.168.97.87 - User: user_1009 - RequestID: f6n3u9oz8i6 +2025-06-18T15:17:15.681Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 155ms - Rows affected: 78 - RequestID: ftawlgrj0u +2025-06-18T15:17:15.781Z [TRACE] order-service - Operation: cache_hit - Processing time: 987ms - RequestID: 1sfm30urma3 +2025-06-18T15:17:15.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 788ms - RequestID: 3i0c65a4xii +2025-06-18T15:17:15.981Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 178ms - Rows affected: 88 - RequestID: 5dro0p7x442 +2025-06-18T15:17:16.081Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 401 - Response time: 1086ms - IP: 192.168.46.63 - User: user_1012 - RequestID: i5uqdi4yjce +2025-06-18T15:17:16.181Z [INFO] order-service - Operation: payment_processed - Processing time: 597ms - RequestID: zwt2zrkm4z +2025-06-18T15:17:16.281Z [TRACE] payment-service - Operation: notification_queued - Processing time: 382ms - RequestID: 8h7pj58tw7q +2025-06-18T15:17:16.381Z [DEBUG] order-service - POST /api/v1/payments - Status: 201 - Response time: 324ms - IP: 192.168.232.72 - User: user_1005 - RequestID: ozdmy3gleq9 +2025-06-18T15:17:16.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1093 - IP: 192.168.240.169 - RequestID: 6146sf75vd +2025-06-18T15:17:16.581Z [INFO] payment-service - Auth event: login_failed - User: user_1047 - IP: 192.168.44.5 - RequestID: 6qhwjddc4pq +2025-06-18T15:17:16.681Z [INFO] order-service - Operation: email_sent - Processing time: 211ms - RequestID: vfcm58q23qd +2025-06-18T15:17:16.781Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 404 - Response time: 1690ms - IP: 192.168.10.184 - User: user_1004 - RequestID: nmx7c02cmqm +2025-06-18T15:17:16.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1085 - IP: 192.168.196.226 - RequestID: gxjrobl7s0b +2025-06-18T15:17:16.981Z [INFO] payment-service - Operation: notification_queued - Processing time: 523ms - RequestID: uazgnsa2xj +2025-06-18T15:17:17.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 116ms - RequestID: xfu36pmso0r +2025-06-18T15:17:17.181Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.170.215 - RequestID: opmndt12zxm +2025-06-18T15:17:17.281Z [TRACE] order-service - PATCH /api/v1/payments - Status: 400 - Response time: 1523ms - IP: 192.168.13.72 - User: user_1081 - RequestID: gn77r3xix9b +2025-06-18T15:17:17.381Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 183ms - Rows affected: 92 - RequestID: eqo8lzh9ho9 +2025-06-18T15:17:17.481Z [INFO] notification-service - Database UPDATE on payments - Execution time: 179ms - Rows affected: 27 - RequestID: 7q74ne5ttfn +2025-06-18T15:17:17.581Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 139ms - Rows affected: 9 - RequestID: oro3rxduxp +2025-06-18T15:17:17.681Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 81ms - Rows affected: 55 - RequestID: 4x1njydwikj +2025-06-18T15:17:17.781Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.68.128 - RequestID: x7ss0q7zvrb +2025-06-18T15:17:17.881Z [TRACE] user-service - Operation: notification_queued - Processing time: 325ms - RequestID: 45o43atx06 +2025-06-18T15:17:17.981Z [DEBUG] user-service - Auth event: logout - User: user_1008 - IP: 192.168.133.7 - RequestID: iznrzilekzt +2025-06-18T15:17:18.081Z [TRACE] order-service - Operation: inventory_updated - Processing time: 441ms - RequestID: khsq0ovfv6f +2025-06-18T15:17:18.181Z [TRACE] order-service - Operation: cache_hit - Processing time: 542ms - RequestID: vj0fkqll6e +2025-06-18T15:17:18.281Z [INFO] auth-service - Database INSERT on products - Execution time: 266ms - Rows affected: 44 - RequestID: wqxqvd8r6qp +2025-06-18T15:17:18.381Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1842ms - IP: 192.168.141.100 - User: user_1093 - RequestID: 78by2iy2h94 +2025-06-18T15:17:18.481Z [INFO] user-service - Auth event: logout - User: user_1099 - IP: 192.168.133.7 - RequestID: 08kwqycg0um3 +2025-06-18T15:17:18.581Z [DEBUG] order-service - Database DELETE on products - Execution time: 380ms - Rows affected: 74 - RequestID: zju9jc7twkb +2025-06-18T15:17:18.681Z [DEBUG] auth-service - Operation: order_created - Processing time: 147ms - RequestID: 4tage9lheay +2025-06-18T15:17:18.781Z [INFO] auth-service - Operation: order_created - Processing time: 446ms - RequestID: ba7jmseze3s +2025-06-18T15:17:18.881Z [INFO] auth-service - Database INSERT on products - Execution time: 229ms - Rows affected: 33 - RequestID: ps6hw3nlcdn +2025-06-18T15:17:18.981Z [DEBUG] order-service - Operation: cache_hit - Processing time: 147ms - RequestID: 2vs3v0nu16n +2025-06-18T15:17:19.081Z [DEBUG] order-service - GET /api/v1/orders - Status: 200 - Response time: 1670ms - IP: 192.168.11.60 - User: user_1053 - RequestID: 5g86no5z948 +2025-06-18T15:17:19.181Z [INFO] order-service - Operation: cache_hit - Processing time: 819ms - RequestID: obs8rnzxzxs +2025-06-18T15:17:19.281Z [TRACE] order-service - Auth event: login_failed - User: user_1066 - IP: 192.168.53.133 - RequestID: xfb3guk78o +2025-06-18T15:17:19.381Z [TRACE] order-service - Operation: order_created - Processing time: 746ms - RequestID: 2bzbul63xn9 +2025-06-18T15:17:19.481Z [INFO] inventory-service - Auth event: logout - User: user_1046 - IP: 192.168.46.63 - RequestID: effm8byuws +2025-06-18T15:17:19.581Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 403 - Response time: 771ms - IP: 192.168.227.77 - User: user_1014 - RequestID: xkwresvosa +2025-06-18T15:17:19.681Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 19ms - Rows affected: 99 - RequestID: mb4rtqtmwt +2025-06-18T15:17:19.781Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 993ms - RequestID: 59b5k9mtj2 +2025-06-18T15:17:19.881Z [INFO] notification-service - Database DELETE on payments - Execution time: 416ms - Rows affected: 54 - RequestID: 3x058j31897 +2025-06-18T15:17:19.981Z [INFO] notification-service - Operation: order_created - Processing time: 960ms - RequestID: e7wxu2w943e +2025-06-18T15:17:20.081Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 786ms - RequestID: b3028uiobi5 +2025-06-18T15:17:20.181Z [DEBUG] auth-service - Auth event: login_failed - User: user_1017 - IP: 192.168.68.158 - RequestID: ml5e1lqsx6 +2025-06-18T15:17:20.281Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 201 - Response time: 1998ms - IP: 192.168.68.128 - User: user_1041 - RequestID: mh1y2zl5mll +2025-06-18T15:17:20.381Z [TRACE] payment-service - Operation: payment_processed - Processing time: 627ms - RequestID: fafypeaio1p +2025-06-18T15:17:20.481Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 440ms - Rows affected: 90 - RequestID: g114ehuxk5p +2025-06-18T15:17:20.581Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 188ms - Rows affected: 1 - RequestID: lb9gelwbmyf +2025-06-18T15:17:20.681Z [INFO] inventory-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.14.77 - RequestID: i51gmnj2a1j +2025-06-18T15:17:20.781Z [TRACE] auth-service - Operation: notification_queued - Processing time: 576ms - RequestID: i3s6eoo85pc +2025-06-18T15:17:20.881Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 5ms - Rows affected: 30 - RequestID: xluhups3b7s +2025-06-18T15:17:20.981Z [INFO] user-service - Auth event: password_change - User: user_1011 - IP: 192.168.167.32 - RequestID: kdsk6x9cbm +2025-06-18T15:17:21.081Z [INFO] payment-service - POST /api/v1/payments - Status: 401 - Response time: 1255ms - IP: 192.168.158.144 - User: user_1004 - RequestID: 3tf8k2gusvx +2025-06-18T15:17:21.181Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 502 - Response time: 923ms - IP: 192.168.104.37 - User: user_1065 - RequestID: 7hdrggbd7sl +2025-06-18T15:17:21.281Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 123ms - Rows affected: 68 - RequestID: wbinpo5pni8 +2025-06-18T15:17:21.381Z [INFO] user-service - Operation: email_sent - Processing time: 320ms - RequestID: 9fiociwnzso +2025-06-18T15:17:21.481Z [DEBUG] payment-service - Database DELETE on payments - Execution time: 299ms - Rows affected: 57 - RequestID: my2kn091trg +2025-06-18T15:17:21.581Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 200 - Response time: 636ms - IP: 192.168.147.171 - User: user_1087 - RequestID: 4t8eygsij2r +2025-06-18T15:17:21.681Z [INFO] notification-service - Auth event: login_success - User: user_1080 - IP: 192.168.240.169 - RequestID: 5n3yvqlxtbd +2025-06-18T15:17:21.781Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 503 - Response time: 439ms - IP: 192.168.229.123 - User: user_1088 - RequestID: x7yxa29x0j8 +2025-06-18T15:17:21.881Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 625ms - RequestID: r088jhpipqe +2025-06-18T15:17:21.981Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 467ms - RequestID: br5qslkz2kg +2025-06-18T15:17:22.081Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1284ms - IP: 192.168.44.5 - User: user_1053 - RequestID: eawqzj51ybv +2025-06-18T15:17:22.181Z [INFO] inventory-service - POST /api/v1/payments - Status: 400 - Response time: 85ms - IP: 192.168.33.76 - User: user_1031 - RequestID: 22z7z78scohh +2025-06-18T15:17:22.281Z [TRACE] user-service - POST /api/v1/orders - Status: 404 - Response time: 1508ms - IP: 192.168.227.77 - User: user_1037 - RequestID: xjrf3k74c5 +2025-06-18T15:17:22.381Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 562ms - RequestID: 9s7xss7j4lt +2025-06-18T15:17:22.481Z [INFO] auth-service - Auth event: logout - User: user_1047 - IP: 192.168.97.87 - RequestID: nvq88hkp1rs +2025-06-18T15:17:22.581Z [DEBUG] order-service - Operation: notification_queued - Processing time: 641ms - RequestID: 27nbndxfk73 +2025-06-18T15:17:22.681Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 404 - Response time: 380ms - IP: 192.168.13.72 - User: user_1042 - RequestID: ha0uxcf9tv8 +2025-06-18T15:17:22.781Z [INFO] notification-service - GET /api/v1/auth/login - Status: 400 - Response time: 1822ms - IP: 192.168.46.63 - User: user_1004 - RequestID: hsup4e0f1lf +2025-06-18T15:17:22.881Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 474ms - Rows affected: 34 - RequestID: oyew5hiqx0p +2025-06-18T15:17:22.981Z [INFO] user-service - Database SELECT on orders - Execution time: 315ms - Rows affected: 71 - RequestID: gjh6899bhoq +2025-06-18T15:17:23.081Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 200 - Response time: 508ms - IP: 192.168.147.171 - User: user_1042 - RequestID: i2my1focts +2025-06-18T15:17:23.181Z [DEBUG] notification-service - Auth event: logout - User: user_1055 - IP: 192.168.229.123 - RequestID: cqqvyzvop9w +2025-06-18T15:17:23.281Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 310ms - Rows affected: 50 - RequestID: l92o7546s3 +2025-06-18T15:17:23.381Z [TRACE] payment-service - Database DELETE on products - Execution time: 229ms - Rows affected: 55 - RequestID: 7wzc4qomnye +2025-06-18T15:17:23.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 448ms - RequestID: rb6q8z9e7jm +2025-06-18T15:17:23.581Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 404 - Response time: 791ms - IP: 192.168.30.79 - User: user_1053 - RequestID: ijugdg8o21 +2025-06-18T15:17:23.681Z [INFO] payment-service - Database SELECT on payments - Execution time: 16ms - Rows affected: 97 - RequestID: gr3fka3f5ra +2025-06-18T15:17:23.781Z [DEBUG] inventory-service - GET /api/v1/inventory - Status: 403 - Response time: 1037ms - IP: 192.168.133.7 - User: user_1021 - RequestID: am3w43uult6 +2025-06-18T15:17:23.881Z [DEBUG] inventory-service - Auth event: login_success - User: user_1029 - IP: 192.168.159.94 - RequestID: b67gtp9s9p7 +2025-06-18T15:17:23.981Z [INFO] order-service - Database DELETE on products - Execution time: 119ms - Rows affected: 50 - RequestID: jgmqz5bxlh8 +2025-06-18T15:17:24.081Z [DEBUG] payment-service - Auth event: logout - User: user_1070 - IP: 192.168.79.143 - RequestID: 5yf9e8ceehn +2025-06-18T15:17:24.181Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 195ms - Rows affected: 10 - RequestID: rlhdqu4qrzt +2025-06-18T15:17:24.281Z [TRACE] notification-service - Operation: order_created - Processing time: 519ms - RequestID: ekihyq447j +2025-06-18T15:17:24.381Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 331ms - Rows affected: 93 - RequestID: jpdpxgplt5s +2025-06-18T15:17:24.481Z [TRACE] auth-service - Database DELETE on orders - Execution time: 455ms - Rows affected: 7 - RequestID: 2sfyl97jn86 +2025-06-18T15:17:24.581Z [INFO] inventory-service - Operation: cache_miss - Processing time: 506ms - RequestID: t6n4ei2mhrh +2025-06-18T15:17:24.681Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 321ms - Rows affected: 23 - RequestID: zzcufp5zbxi +2025-06-18T15:17:24.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 749ms - RequestID: lmptm0kff9s +2025-06-18T15:17:24.881Z [INFO] auth-service - PUT /api/v1/users - Status: 200 - Response time: 255ms - IP: 192.168.133.7 - User: user_1053 - RequestID: b4fw0qym2dn +2025-06-18T15:17:24.981Z [INFO] order-service - Auth event: logout - User: user_1024 - IP: 192.168.97.87 - RequestID: 6a4zabo7ea +2025-06-18T15:17:25.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1077 - IP: 192.168.28.146 - RequestID: e8dbrmb7udd +2025-06-18T15:17:25.181Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 893ms - RequestID: d7q67159ll +2025-06-18T15:17:25.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.189.103 - RequestID: 3rkdjzys5n1 +2025-06-18T15:17:25.381Z [TRACE] user-service - Operation: webhook_sent - Processing time: 584ms - RequestID: ydkqoeq901 +2025-06-18T15:17:25.481Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1452ms - IP: 192.168.232.72 - User: user_1063 - RequestID: yrz98xteus +2025-06-18T15:17:25.581Z [INFO] notification-service - Operation: notification_queued - Processing time: 373ms - RequestID: rb4td47nfh +2025-06-18T15:17:25.681Z [TRACE] order-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.194.41 - RequestID: k9qtxfhv4sc +2025-06-18T15:17:25.781Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 843ms - RequestID: ui0ps82mjo8 +2025-06-18T15:17:25.881Z [INFO] payment-service - Auth event: password_change - User: user_1063 - IP: 192.168.232.72 - RequestID: zdjrhoyxdl +2025-06-18T15:17:25.981Z [DEBUG] auth-service - GET /api/v1/orders - Status: 500 - Response time: 668ms - IP: 192.168.13.72 - User: user_1014 - RequestID: z9aets84ytn +2025-06-18T15:17:26.081Z [TRACE] inventory-service - Operation: order_created - Processing time: 390ms - RequestID: 37vs02t5kav +2025-06-18T15:17:26.181Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 341ms - IP: 192.168.97.87 - User: user_1024 - RequestID: 70ykzichiof +2025-06-18T15:17:26.281Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 537ms - RequestID: 5qxflq7roa3 +2025-06-18T15:17:26.381Z [DEBUG] payment-service - Auth event: login_success - User: user_1091 - IP: 192.168.31.117 - RequestID: 1quaggcvuw2 +2025-06-18T15:17:26.481Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 142ms - Rows affected: 17 - RequestID: 77wnjxn9wfd +2025-06-18T15:17:26.581Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 401 - Response time: 1721ms - IP: 192.168.68.158 - User: user_1055 - RequestID: b7ze7ggm3eg +2025-06-18T15:17:26.681Z [TRACE] user-service - Database INSERT on payments - Execution time: 348ms - Rows affected: 59 - RequestID: xxkuvz7ejhb +2025-06-18T15:17:26.781Z [TRACE] order-service - GET /api/v1/inventory - Status: 503 - Response time: 476ms - IP: 192.168.133.7 - User: user_1025 - RequestID: c9gyqpd6r5k +2025-06-18T15:17:26.881Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1678ms - IP: 192.168.53.133 - User: user_1074 - RequestID: kulfxwc0r5 +2025-06-18T15:17:26.981Z [TRACE] notification-service - Auth event: logout - User: user_1001 - IP: 192.168.174.114 - RequestID: 1ywyhxo7tux +2025-06-18T15:17:27.081Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 48ms - Rows affected: 27 - RequestID: q5aa7ykir8m +2025-06-18T15:17:27.181Z [INFO] order-service - Operation: payment_processed - Processing time: 965ms - RequestID: asnr0lwwdb +2025-06-18T15:17:27.281Z [TRACE] notification-service - GET /api/v1/users - Status: 400 - Response time: 978ms - IP: 192.168.138.123 - User: user_1013 - RequestID: n6t866cp97 +2025-06-18T15:17:27.381Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.242.165 - RequestID: ph7wgoa12d +2025-06-18T15:17:27.481Z [INFO] user-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.181.225 - RequestID: xuqps361bba +2025-06-18T15:17:27.581Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 44ms - Rows affected: 13 - RequestID: axoimzkyb9 +2025-06-18T15:17:27.681Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 400 - Response time: 1141ms - IP: 192.168.196.226 - User: user_1087 - RequestID: 59jyldkokfb +2025-06-18T15:17:27.781Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1350ms - IP: 192.168.170.215 - User: user_1059 - RequestID: dwz5i5nuv3i +2025-06-18T15:17:27.881Z [TRACE] user-service - Operation: order_created - Processing time: 996ms - RequestID: 9o416cqbu8u +2025-06-18T15:17:27.981Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 502 - Response time: 1833ms - IP: 192.168.133.7 - User: user_1000 - RequestID: 720848ylvqo +2025-06-18T15:17:28.081Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.235.117 - RequestID: 7fq9df4h9x +2025-06-18T15:17:28.181Z [TRACE] user-service - GET /api/v1/inventory - Status: 500 - Response time: 274ms - IP: 192.168.174.114 - User: user_1092 - RequestID: 0dyscoy3ymmw +2025-06-18T15:17:28.281Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 504ms - IP: 192.168.194.41 - User: user_1025 - RequestID: cl4kodvfupe +2025-06-18T15:17:28.381Z [TRACE] notification-service - Database DELETE on products - Execution time: 93ms - Rows affected: 16 - RequestID: jg8qb1ctuh +2025-06-18T15:17:28.481Z [INFO] auth-service - Operation: inventory_updated - Processing time: 886ms - RequestID: omgqq4leyqd +2025-06-18T15:17:28.581Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 400 - Response time: 1226ms - IP: 192.168.158.144 - User: user_1055 - RequestID: ajwm1pnefst +2025-06-18T15:17:28.681Z [INFO] notification-service - Auth event: logout - User: user_1047 - IP: 192.168.189.103 - RequestID: 3s3sj651jl7 +2025-06-18T15:17:28.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 650ms - RequestID: ps4uxrxn6vl +2025-06-18T15:17:28.881Z [TRACE] payment-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.227.233 - RequestID: 5283nwfl9xg +2025-06-18T15:17:28.981Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1504ms - IP: 192.168.36.218 - User: user_1012 - RequestID: clx0h7947t +2025-06-18T15:17:29.081Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1417ms - IP: 192.168.158.144 - User: user_1016 - RequestID: rpxhvyfgr1 +2025-06-18T15:17:29.181Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 465ms - RequestID: 1ivvoqbs4e1 +2025-06-18T15:17:29.281Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 289ms - Rows affected: 40 - RequestID: xrqqt5mauzg +2025-06-18T15:17:29.381Z [DEBUG] payment-service - Operation: email_sent - Processing time: 401ms - RequestID: viqd2ets4o +2025-06-18T15:17:29.481Z [INFO] payment-service - Operation: cache_miss - Processing time: 205ms - RequestID: 4q64y9n3fxj +2025-06-18T15:17:29.581Z [DEBUG] notification-service - Auth event: logout - User: user_1005 - IP: 192.168.196.226 - RequestID: ara2y0ywx6c +2025-06-18T15:17:29.681Z [TRACE] auth-service - Database SELECT on users - Execution time: 295ms - Rows affected: 68 - RequestID: 4wnaeep26sk +2025-06-18T15:17:29.781Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 273ms - Rows affected: 11 - RequestID: hkhhhfol5zl +2025-06-18T15:17:29.881Z [TRACE] order-service - Auth event: login_success - User: user_1097 - IP: 192.168.64.33 - RequestID: t21q55y3e9r +2025-06-18T15:17:29.981Z [TRACE] order-service - GET /api/v1/users - Status: 404 - Response time: 1663ms - IP: 192.168.33.76 - User: user_1040 - RequestID: 9rjxw0279xa +2025-06-18T15:17:30.081Z [INFO] notification-service - DELETE /api/v1/orders - Status: 201 - Response time: 625ms - IP: 192.168.194.41 - User: user_1009 - RequestID: 2ntm17fm46f +2025-06-18T15:17:30.181Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 401 - Response time: 211ms - IP: 192.168.159.94 - User: user_1033 - RequestID: ufav2gp4p1l +2025-06-18T15:17:30.281Z [INFO] user-service - Database DELETE on payments - Execution time: 437ms - Rows affected: 13 - RequestID: p1eibxuw4qg +2025-06-18T15:17:30.381Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 445ms - Rows affected: 37 - RequestID: h83rj6osyph +2025-06-18T15:17:30.481Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 304ms - RequestID: 8hth89cpdu +2025-06-18T15:17:30.581Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 401 - Response time: 561ms - IP: 192.168.30.79 - User: user_1079 - RequestID: ajy2l02oxxi +2025-06-18T15:17:30.681Z [DEBUG] user-service - Operation: notification_queued - Processing time: 143ms - RequestID: 91vyy1p5th +2025-06-18T15:17:30.781Z [INFO] auth-service - Database INSERT on products - Execution time: 82ms - Rows affected: 13 - RequestID: 4uxkq8f9u8c +2025-06-18T15:17:30.881Z [DEBUG] user-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.79.143 - RequestID: tlxchu5qmhb +2025-06-18T15:17:30.981Z [INFO] order-service - Auth event: logout - User: user_1040 - IP: 192.168.31.117 - RequestID: qsqi7f0jh7j +2025-06-18T15:17:31.081Z [INFO] user-service - POST /api/v1/payments - Status: 401 - Response time: 1330ms - IP: 192.168.196.226 - User: user_1058 - RequestID: 0upi3lw3mtmo +2025-06-18T15:17:31.181Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 500 - Response time: 225ms - IP: 192.168.31.117 - User: user_1018 - RequestID: or3ljy5s5s +2025-06-18T15:17:31.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1023 - IP: 192.168.194.41 - RequestID: l854ll175c +2025-06-18T15:17:31.381Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 914ms - RequestID: 4ym5g20wgaf +2025-06-18T15:17:31.481Z [TRACE] notification-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.211.72 - RequestID: wk544gt64ee +2025-06-18T15:17:31.581Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 366ms - Rows affected: 8 - RequestID: f9w6vlqxkts +2025-06-18T15:17:31.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 463ms - RequestID: 5yl8nrerpso +2025-06-18T15:17:31.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.229.123 - RequestID: 1rdkv963knq +2025-06-18T15:17:31.881Z [INFO] notification-service - Auth event: logout - User: user_1082 - IP: 192.168.170.215 - RequestID: ufy4mgb8fr +2025-06-18T15:17:31.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.32.38 - RequestID: fmsr2ke3m8b +2025-06-18T15:17:32.081Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 925ms - RequestID: w2hn5m6lx1o +2025-06-18T15:17:32.181Z [INFO] user-service - Operation: webhook_sent - Processing time: 929ms - RequestID: xujsa07ex69 +2025-06-18T15:17:32.281Z [TRACE] payment-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.113.218 - RequestID: 627vyc5um8j +2025-06-18T15:17:32.381Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 148ms - RequestID: gk3t1bj96n +2025-06-18T15:17:32.481Z [TRACE] order-service - Database UPDATE on orders - Execution time: 457ms - Rows affected: 70 - RequestID: wy6vezv41xo +2025-06-18T15:17:32.581Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 148ms - IP: 192.168.138.123 - User: user_1096 - RequestID: ndjasfopbcg +2025-06-18T15:17:32.681Z [TRACE] order-service - Database DELETE on products - Execution time: 135ms - Rows affected: 76 - RequestID: acj1qizf6st +2025-06-18T15:17:32.781Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 502 - Response time: 279ms - IP: 192.168.227.233 - User: user_1047 - RequestID: oe3hvw1jp8 +2025-06-18T15:17:32.881Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 502 - Response time: 1153ms - IP: 192.168.79.143 - User: user_1028 - RequestID: 9000vl6o2bp +2025-06-18T15:17:32.981Z [INFO] inventory-service - Database SELECT on products - Execution time: 215ms - Rows affected: 26 - RequestID: 8y7ytbyct7b +2025-06-18T15:17:33.081Z [TRACE] order-service - Auth event: login_success - User: user_1011 - IP: 192.168.79.116 - RequestID: f8s87tgwibi +2025-06-18T15:17:33.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 113ms - RequestID: elavzlgndqs +2025-06-18T15:17:33.281Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 181ms - Rows affected: 84 - RequestID: cdnkakj5r35 +2025-06-18T15:17:33.381Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 476ms - Rows affected: 66 - RequestID: 5nnrjb7xfw +2025-06-18T15:17:33.481Z [INFO] order-service - Auth event: login_failed - User: user_1037 - IP: 192.168.104.37 - RequestID: c1xiosudewm +2025-06-18T15:17:33.581Z [TRACE] inventory-service - Auth event: login_failed - User: user_1045 - IP: 192.168.79.116 - RequestID: kpljz24rx2 +2025-06-18T15:17:33.681Z [DEBUG] order-service - Auth event: logout - User: user_1092 - IP: 192.168.211.72 - RequestID: 82uuwzd9dy +2025-06-18T15:17:33.781Z [TRACE] payment-service - Auth event: login_failed - User: user_1054 - IP: 192.168.133.7 - RequestID: 0bycs0ygx3h +2025-06-18T15:17:33.881Z [INFO] order-service - Operation: cache_miss - Processing time: 213ms - RequestID: aayhe8y17yd +2025-06-18T15:17:33.981Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 24ms - Rows affected: 20 - RequestID: kwqvqbg89uj +2025-06-18T15:17:34.081Z [INFO] inventory-service - Database DELETE on payments - Execution time: 242ms - Rows affected: 51 - RequestID: tzwn5rm946i +2025-06-18T15:17:34.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 342ms - RequestID: vh95k5yyzid +2025-06-18T15:17:34.281Z [TRACE] user-service - GET /api/v1/auth/logout - Status: 403 - Response time: 802ms - IP: 192.168.189.103 - User: user_1010 - RequestID: qwmjisstx3p +2025-06-18T15:17:34.381Z [INFO] order-service - Operation: order_created - Processing time: 139ms - RequestID: gqqccv9yl1u +2025-06-18T15:17:34.481Z [INFO] user-service - Database INSERT on products - Execution time: 425ms - Rows affected: 50 - RequestID: 69bnmmadjtl +2025-06-18T15:17:34.581Z [INFO] notification-service - DELETE /api/v1/orders - Status: 500 - Response time: 370ms - IP: 192.168.187.199 - User: user_1088 - RequestID: n1t3628evil +2025-06-18T15:17:34.681Z [TRACE] order-service - Operation: cache_miss - Processing time: 817ms - RequestID: 96tmch7ktte +2025-06-18T15:17:34.781Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 467ms - Rows affected: 83 - RequestID: x70cuo3ehm +2025-06-18T15:17:34.881Z [TRACE] user-service - Auth event: logout - User: user_1029 - IP: 192.168.79.141 - RequestID: n1n4jmw6u68 +2025-06-18T15:17:34.981Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 750ms - IP: 192.168.33.76 - User: user_1040 - RequestID: q0w8q6mg97 +2025-06-18T15:17:35.081Z [INFO] payment-service - Auth event: login_failed - User: user_1000 - IP: 192.168.158.144 - RequestID: 0xbokpxyurzm +2025-06-18T15:17:35.181Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 589ms - RequestID: hs1glwfap3c +2025-06-18T15:17:35.281Z [INFO] user-service - Operation: cache_miss - Processing time: 738ms - RequestID: 3hlrhqnhzyg +2025-06-18T15:17:35.381Z [TRACE] user-service - Auth event: login_failed - User: user_1010 - IP: 192.168.167.32 - RequestID: l1prlydasi +2025-06-18T15:17:35.481Z [DEBUG] order-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.46.63 - RequestID: tw0fo09vova +2025-06-18T15:17:35.581Z [INFO] auth-service - Auth event: login_success - User: user_1084 - IP: 192.168.44.5 - RequestID: de8git6kl0v +2025-06-18T15:17:35.681Z [INFO] order-service - Auth event: login_success - User: user_1075 - IP: 192.168.194.41 - RequestID: f6g3xl429qj +2025-06-18T15:17:35.781Z [DEBUG] auth-service - Auth event: login_failed - User: user_1083 - IP: 192.168.167.32 - RequestID: k1d1ti3xqm +2025-06-18T15:17:35.881Z [INFO] user-service - Database SELECT on products - Execution time: 119ms - Rows affected: 56 - RequestID: esv446ekbkl +2025-06-18T15:17:35.981Z [INFO] payment-service - Database DELETE on orders - Execution time: 403ms - Rows affected: 53 - RequestID: 4vt2a2117xn +2025-06-18T15:17:36.081Z [INFO] notification-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.31.117 - RequestID: 8mgoeirt8vr +2025-06-18T15:17:36.181Z [INFO] auth-service - Database DELETE on orders - Execution time: 345ms - Rows affected: 46 - RequestID: 6octsixygqc +2025-06-18T15:17:36.281Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 197ms - Rows affected: 4 - RequestID: x5fjt6z1lg +2025-06-18T15:17:36.381Z [TRACE] auth-service - PUT /api/v1/users - Status: 200 - Response time: 814ms - IP: 192.168.104.37 - User: user_1023 - RequestID: f4ptj5u6bzj +2025-06-18T15:17:36.481Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 463ms - Rows affected: 2 - RequestID: 5c4p5ber0z4 +2025-06-18T15:17:36.581Z [INFO] payment-service - Auth event: login_success - User: user_1067 - IP: 192.168.14.77 - RequestID: r0mzbkan9b +2025-06-18T15:17:36.681Z [TRACE] order-service - GET /api/v1/users - Status: 400 - Response time: 105ms - IP: 192.168.141.100 - User: user_1079 - RequestID: a0ygtx314zv +2025-06-18T15:17:36.781Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 404 - Response time: 1817ms - IP: 192.168.227.77 - User: user_1051 - RequestID: qcsyv9k81gc +2025-06-18T15:17:36.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 681ms - RequestID: yy3gb0dqmz +2025-06-18T15:17:36.981Z [TRACE] order-service - POST /api/v1/users - Status: 201 - Response time: 935ms - IP: 192.168.174.114 - User: user_1042 - RequestID: aqx4nfpp6t +2025-06-18T15:17:37.081Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 503 - Response time: 1584ms - IP: 192.168.147.171 - User: user_1007 - RequestID: tf9y2wrspth +2025-06-18T15:17:37.181Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 922ms - RequestID: os8b3jobijq +2025-06-18T15:17:37.281Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 400 - Response time: 1052ms - IP: 192.168.232.72 - User: user_1021 - RequestID: ueik52iicy +2025-06-18T15:17:37.381Z [DEBUG] payment-service - DELETE /api/v1/users - Status: 403 - Response time: 1796ms - IP: 192.168.53.133 - User: user_1046 - RequestID: su4aophzpk +2025-06-18T15:17:37.481Z [INFO] auth-service - GET /api/v1/users - Status: 400 - Response time: 1535ms - IP: 192.168.242.165 - User: user_1065 - RequestID: jlor25378h9 +2025-06-18T15:17:37.581Z [TRACE] auth-service - Database SELECT on payments - Execution time: 121ms - Rows affected: 33 - RequestID: ecqe8r0mnmm +2025-06-18T15:17:37.681Z [TRACE] order-service - Auth event: password_change - User: user_1065 - IP: 192.168.36.218 - RequestID: qw1g4n8z25i +2025-06-18T15:17:37.781Z [TRACE] order-service - Operation: webhook_sent - Processing time: 62ms - RequestID: qfr8rw7crm +2025-06-18T15:17:37.881Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 400 - Response time: 642ms - IP: 192.168.141.100 - User: user_1070 - RequestID: mprimcokqon +2025-06-18T15:17:37.981Z [INFO] inventory-service - Auth event: logout - User: user_1028 - IP: 192.168.100.240 - RequestID: ogtv8aqtkf +2025-06-18T15:17:38.081Z [INFO] user-service - PATCH /api/v1/payments - Status: 503 - Response time: 1024ms - IP: 192.168.81.206 - User: user_1009 - RequestID: 5vlx08n7okd +2025-06-18T15:17:38.181Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 45ms - IP: 192.168.113.218 - User: user_1012 - RequestID: 1m1nlcf43ja +2025-06-18T15:17:38.281Z [INFO] user-service - Operation: notification_queued - Processing time: 304ms - RequestID: jty8xlmi279 +2025-06-18T15:17:38.381Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 748ms - RequestID: jm1jwzna2m +2025-06-18T15:17:38.481Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 201 - Response time: 792ms - IP: 192.168.79.141 - User: user_1038 - RequestID: tzslxxxvv5 +2025-06-18T15:17:38.581Z [DEBUG] inventory-service - Auth event: logout - User: user_1015 - IP: 192.168.14.77 - RequestID: zwer032vsng +2025-06-18T15:17:38.681Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 401 - Response time: 806ms - IP: 192.168.104.37 - User: user_1012 - RequestID: 7ubdur8jms2 +2025-06-18T15:17:38.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.85.229 - RequestID: 1dv0vhqd6mn +2025-06-18T15:17:38.881Z [INFO] auth-service - POST /api/v1/users - Status: 401 - Response time: 1312ms - IP: 192.168.113.218 - User: user_1095 - RequestID: 50z6d37v1sn +2025-06-18T15:17:38.981Z [INFO] order-service - DELETE /api/v1/orders - Status: 201 - Response time: 1885ms - IP: 192.168.113.218 - User: user_1034 - RequestID: pps9nnk6vz9 +2025-06-18T15:17:39.081Z [DEBUG] payment-service - Auth event: login_success - User: user_1012 - IP: 192.168.46.63 - RequestID: ztfrfdpo6h +2025-06-18T15:17:39.181Z [INFO] user-service - GET /api/v1/auth/login - Status: 403 - Response time: 1403ms - IP: 192.168.30.79 - User: user_1021 - RequestID: pbm236dkakp +2025-06-18T15:17:39.281Z [DEBUG] payment-service - GET /api/v1/auth/login - Status: 201 - Response time: 1274ms - IP: 192.168.240.169 - User: user_1022 - RequestID: 39rgjk9kjah +2025-06-18T15:17:39.381Z [TRACE] order-service - Database SELECT on users - Execution time: 78ms - Rows affected: 57 - RequestID: 6dkm9fypxar +2025-06-18T15:17:39.481Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 762ms - RequestID: dyhvzrkfogg +2025-06-18T15:17:39.581Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 255ms - RequestID: 5krny3qk05e +2025-06-18T15:17:39.681Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 140ms - Rows affected: 12 - RequestID: ohgpfvxfrnp +2025-06-18T15:17:39.781Z [TRACE] user-service - Operation: cache_hit - Processing time: 686ms - RequestID: d3c5c6qcc0c +2025-06-18T15:17:39.881Z [DEBUG] notification-service - Auth event: logout - User: user_1000 - IP: 192.168.79.141 - RequestID: l16elj0k8es +2025-06-18T15:17:39.981Z [INFO] inventory-service - Operation: cache_hit - Processing time: 816ms - RequestID: x602qu3rp0a +2025-06-18T15:17:40.081Z [TRACE] order-service - POST /api/v1/payments - Status: 401 - Response time: 48ms - IP: 192.168.44.5 - User: user_1089 - RequestID: 8k7teb2wxq2 +2025-06-18T15:17:40.181Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.242.165 - RequestID: ajzwcqkzx4 +2025-06-18T15:17:40.281Z [TRACE] payment-service - Database SELECT on users - Execution time: 437ms - Rows affected: 26 - RequestID: 4bqtd4bddkr +2025-06-18T15:17:40.381Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 65ms - Rows affected: 77 - RequestID: 9umoe2zxtki +2025-06-18T15:17:40.481Z [INFO] user-service - Operation: cache_hit - Processing time: 519ms - RequestID: hmh9atvu88 +2025-06-18T15:17:40.581Z [INFO] payment-service - Operation: inventory_updated - Processing time: 225ms - RequestID: f98q3byjos +2025-06-18T15:17:40.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.232.72 - RequestID: xgfjdxm7ti +2025-06-18T15:17:40.781Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 500ms - Rows affected: 75 - RequestID: vy5oy23dh2 +2025-06-18T15:17:40.881Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 503 - Response time: 721ms - IP: 192.168.147.171 - User: user_1063 - RequestID: fr9oc6cqx6r +2025-06-18T15:17:40.981Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 124ms - RequestID: shmsp9algeh +2025-06-18T15:17:41.081Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 348ms - Rows affected: 69 - RequestID: lgy16hcwnu +2025-06-18T15:17:41.181Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 430ms - Rows affected: 30 - RequestID: yr78ruz16wf +2025-06-18T15:17:41.281Z [DEBUG] user-service - Auth event: login_failed - User: user_1018 - IP: 192.168.28.146 - RequestID: 67squ41mhtn +2025-06-18T15:17:41.381Z [INFO] user-service - Operation: notification_queued - Processing time: 470ms - RequestID: wiucdp8aca8 +2025-06-18T15:17:41.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.85.229 - RequestID: vgxaqidepr +2025-06-18T15:17:41.581Z [INFO] notification-service - Operation: cache_miss - Processing time: 993ms - RequestID: poa0woctgg +2025-06-18T15:17:41.681Z [TRACE] auth-service - Operation: notification_queued - Processing time: 911ms - RequestID: 86605zdazj +2025-06-18T15:17:41.781Z [INFO] auth-service - Operation: payment_processed - Processing time: 976ms - RequestID: rocrkobnrpi +2025-06-18T15:17:41.881Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 535ms - IP: 192.168.138.123 - User: user_1033 - RequestID: zdsnkayjntr +2025-06-18T15:17:41.981Z [TRACE] order-service - Operation: order_created - Processing time: 434ms - RequestID: f972thrxc34 +2025-06-18T15:17:42.081Z [TRACE] inventory-service - Auth event: login_success - User: user_1074 - IP: 192.168.31.117 - RequestID: xs84cf3mcn +2025-06-18T15:17:42.181Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1285ms - IP: 192.168.30.79 - User: user_1075 - RequestID: km11xrrvo0b +2025-06-18T15:17:42.281Z [INFO] auth-service - GET /api/v1/payments - Status: 400 - Response time: 1452ms - IP: 192.168.138.123 - User: user_1090 - RequestID: 1qrusz0nnne +2025-06-18T15:17:42.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 176ms - RequestID: qyglvsacn2 +2025-06-18T15:17:42.481Z [INFO] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 467ms - IP: 192.168.196.226 - User: user_1033 - RequestID: i9dtfy89f9g +2025-06-18T15:17:42.581Z [DEBUG] order-service - GET /api/v1/payments - Status: 502 - Response time: 1728ms - IP: 192.168.81.206 - User: user_1087 - RequestID: dx5e13pfg1d +2025-06-18T15:17:42.681Z [INFO] user-service - Operation: cache_miss - Processing time: 761ms - RequestID: qs3w1zyact +2025-06-18T15:17:42.781Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.194.41 - RequestID: q5vj0qvlqn +2025-06-18T15:17:42.881Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 1686ms - IP: 192.168.68.128 - User: user_1079 - RequestID: whkt9892aq +2025-06-18T15:17:42.981Z [TRACE] auth-service - Operation: payment_processed - Processing time: 962ms - RequestID: qb1wdk8rmap +2025-06-18T15:17:43.081Z [TRACE] notification-service - Operation: order_created - Processing time: 198ms - RequestID: 6fi00ifhq2v +2025-06-18T15:17:43.181Z [TRACE] inventory-service - Auth event: login_failed - User: user_1018 - IP: 192.168.235.117 - RequestID: xlt9xozxden +2025-06-18T15:17:43.281Z [INFO] notification-service - Auth event: logout - User: user_1053 - IP: 192.168.229.123 - RequestID: fqf3ixfudsv +2025-06-18T15:17:43.381Z [DEBUG] inventory-service - Operation: order_created - Processing time: 690ms - RequestID: iewrrp0hco +2025-06-18T15:17:43.481Z [TRACE] auth-service - Auth event: login_success - User: user_1082 - IP: 192.168.194.41 - RequestID: ruqwsapsse +2025-06-18T15:17:43.581Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 404 - Response time: 333ms - IP: 192.168.189.103 - User: user_1036 - RequestID: j6n3aagulu +2025-06-18T15:17:43.681Z [INFO] notification-service - Auth event: logout - User: user_1090 - IP: 192.168.13.72 - RequestID: ehhh0dg4auo +2025-06-18T15:17:43.781Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 374ms - Rows affected: 19 - RequestID: pybp02l2j7 +2025-06-18T15:17:43.881Z [TRACE] payment-service - Operation: cache_miss - Processing time: 587ms - RequestID: fawwuq4y0ig +2025-06-18T15:17:43.981Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1575ms - IP: 192.168.113.218 - User: user_1024 - RequestID: gifeyxywa2t +2025-06-18T15:17:44.081Z [INFO] notification-service - Auth event: password_change - User: user_1006 - IP: 192.168.79.143 - RequestID: 3meve7052v6 +2025-06-18T15:17:44.181Z [INFO] notification-service - Operation: inventory_updated - Processing time: 353ms - RequestID: 6r0fs3e8giq +2025-06-18T15:17:44.281Z [DEBUG] user-service - POST /api/v1/payments - Status: 404 - Response time: 1071ms - IP: 192.168.97.87 - User: user_1074 - RequestID: 14ffef7m31vq +2025-06-18T15:17:44.381Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.144.38 - RequestID: rr42766vdic +2025-06-18T15:17:44.481Z [DEBUG] notification-service - GET /api/v1/auth/login - Status: 500 - Response time: 147ms - IP: 192.168.46.63 - User: user_1001 - RequestID: qgy2atq3mdl +2025-06-18T15:17:44.581Z [INFO] payment-service - Database DELETE on products - Execution time: 340ms - Rows affected: 51 - RequestID: trgw4gt4kk +2025-06-18T15:17:44.681Z [TRACE] inventory-service - Operation: order_created - Processing time: 371ms - RequestID: ps0dnibem2c +2025-06-18T15:17:44.781Z [INFO] notification-service - POST /api/v1/inventory - Status: 502 - Response time: 614ms - IP: 192.168.97.87 - User: user_1011 - RequestID: 1igajzkbsve +2025-06-18T15:17:44.881Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 201 - Response time: 777ms - IP: 192.168.14.77 - User: user_1087 - RequestID: 1553gaqhca8 +2025-06-18T15:17:44.981Z [INFO] user-service - Operation: order_created - Processing time: 168ms - RequestID: zk4uq9h0idh +2025-06-18T15:17:45.081Z [TRACE] inventory-service - POST /api/v1/users - Status: 200 - Response time: 1315ms - IP: 192.168.240.169 - User: user_1080 - RequestID: f5w27jcbaqp +2025-06-18T15:17:45.181Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 241ms - RequestID: xv8l54ooql +2025-06-18T15:17:45.281Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 274ms - Rows affected: 89 - RequestID: l3h4p9pydj +2025-06-18T15:17:45.381Z [INFO] auth-service - Database INSERT on sessions - Execution time: 138ms - Rows affected: 22 - RequestID: cgh0ly5vgx6 +2025-06-18T15:17:45.481Z [DEBUG] order-service - POST /api/v1/orders - Status: 404 - Response time: 1491ms - IP: 192.168.10.184 - User: user_1087 - RequestID: wh2h1n1h4l +2025-06-18T15:17:45.581Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 415ms - Rows affected: 46 - RequestID: visugks622 +2025-06-18T15:17:45.681Z [DEBUG] order-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.11.60 - RequestID: vq0kc2xm4bc +2025-06-18T15:17:45.781Z [INFO] payment-service - Database SELECT on payments - Execution time: 219ms - Rows affected: 28 - RequestID: 8je36fthiba +2025-06-18T15:17:45.881Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1372ms - IP: 192.168.138.123 - User: user_1009 - RequestID: 86otrnnkor +2025-06-18T15:17:45.981Z [INFO] payment-service - Auth event: logout - User: user_1093 - IP: 192.168.53.133 - RequestID: mudzv9nm1c9 +2025-06-18T15:17:46.081Z [TRACE] payment-service - Operation: cache_hit - Processing time: 459ms - RequestID: 9k9ktfdq18w +2025-06-18T15:17:46.181Z [DEBUG] order-service - Operation: email_sent - Processing time: 684ms - RequestID: mug0c39yec +2025-06-18T15:17:46.281Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 465ms - RequestID: yb2hz65l8za +2025-06-18T15:17:46.381Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 795ms - RequestID: vxcubpmvjz +2025-06-18T15:17:46.481Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 41ms - Rows affected: 22 - RequestID: 4ulmtp30mj5 +2025-06-18T15:17:46.581Z [DEBUG] user-service - Database DELETE on users - Execution time: 129ms - Rows affected: 57 - RequestID: 57kq8a4azfe +2025-06-18T15:17:46.681Z [DEBUG] user-service - Operation: cache_hit - Processing time: 128ms - RequestID: gh4cc2foj8 +2025-06-18T15:17:46.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.30.79 - RequestID: wrjhweps5e +2025-06-18T15:17:46.881Z [INFO] order-service - DELETE /api/v1/users - Status: 403 - Response time: 687ms - IP: 192.168.141.100 - User: user_1015 - RequestID: kplehqw010d +2025-06-18T15:17:46.981Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 435ms - Rows affected: 40 - RequestID: mi0ujiz5h2 +2025-06-18T15:17:47.081Z [TRACE] notification-service - Operation: order_created - Processing time: 302ms - RequestID: 2m17jugtb3c +2025-06-18T15:17:47.181Z [DEBUG] order-service - Operation: order_created - Processing time: 365ms - RequestID: fkm7rnuah1k +2025-06-18T15:17:47.281Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 400 - Response time: 1040ms - IP: 192.168.36.218 - User: user_1097 - RequestID: 7i2i26oj5z +2025-06-18T15:17:47.381Z [TRACE] inventory-service - POST /api/v1/users - Status: 401 - Response time: 1169ms - IP: 192.168.138.123 - User: user_1028 - RequestID: jx9j6tx28xi +2025-06-18T15:17:47.481Z [TRACE] notification-service - Auth event: password_change - User: user_1004 - IP: 192.168.181.225 - RequestID: nbeaoc2p9gk +2025-06-18T15:17:47.581Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1918ms - IP: 192.168.11.60 - User: user_1088 - RequestID: 98ee5sz9j5a +2025-06-18T15:17:47.681Z [INFO] auth-service - Operation: order_created - Processing time: 55ms - RequestID: mt9t21n57n +2025-06-18T15:17:47.781Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 274ms - Rows affected: 14 - RequestID: ioif9gpzi4e +2025-06-18T15:17:47.881Z [DEBUG] user-service - Operation: payment_processed - Processing time: 213ms - RequestID: rk3olnj2m6f +2025-06-18T15:17:47.981Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 205ms - Rows affected: 98 - RequestID: qbxuey6lewp +2025-06-18T15:17:48.081Z [DEBUG] order-service - Database SELECT on orders - Execution time: 277ms - Rows affected: 11 - RequestID: pye8dbqcjr +2025-06-18T15:17:48.181Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1262ms - IP: 192.168.141.100 - User: user_1036 - RequestID: pog16l0n8m +2025-06-18T15:17:48.281Z [INFO] user-service - Auth event: password_change - User: user_1013 - IP: 192.168.79.116 - RequestID: 37da4wrrd79 +2025-06-18T15:17:48.381Z [TRACE] auth-service - Operation: notification_queued - Processing time: 163ms - RequestID: drzi6tzhg1e +2025-06-18T15:17:48.481Z [INFO] payment-service - Auth event: login_success - User: user_1061 - IP: 192.168.211.72 - RequestID: rp88gc079b +2025-06-18T15:17:48.581Z [TRACE] order-service - Auth event: password_change - User: user_1047 - IP: 192.168.189.103 - RequestID: 91vh6tv2gzo +2025-06-18T15:17:48.681Z [TRACE] notification-service - Auth event: password_change - User: user_1080 - IP: 192.168.159.94 - RequestID: 2qa3ochfg8q +2025-06-18T15:17:48.781Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 73ms - Rows affected: 52 - RequestID: jpuevlt9j8r +2025-06-18T15:17:48.881Z [TRACE] payment-service - Auth event: logout - User: user_1018 - IP: 192.168.33.76 - RequestID: 8rp41l9eka +2025-06-18T15:17:48.981Z [DEBUG] user-service - GET /api/v1/orders - Status: 201 - Response time: 572ms - IP: 192.168.32.38 - User: user_1083 - RequestID: 1qyeno3a9e +2025-06-18T15:17:49.081Z [INFO] order-service - PUT /api/v1/users - Status: 503 - Response time: 339ms - IP: 192.168.33.76 - User: user_1075 - RequestID: hoqppxich4p +2025-06-18T15:17:49.181Z [INFO] auth-service - PUT /api/v1/inventory - Status: 201 - Response time: 805ms - IP: 192.168.196.226 - User: user_1021 - RequestID: ev54ijtf5fn +2025-06-18T15:17:49.281Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 405ms - Rows affected: 90 - RequestID: yzdge00el0r +2025-06-18T15:17:49.381Z [INFO] inventory-service - Auth event: login_success - User: user_1098 - IP: 192.168.174.114 - RequestID: rkkbbqwri +2025-06-18T15:17:49.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.147.171 - RequestID: nuwu2yzyce +2025-06-18T15:17:49.581Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.229.123 - RequestID: wh8mck79gwp +2025-06-18T15:17:49.681Z [INFO] order-service - Operation: order_created - Processing time: 396ms - RequestID: foymswikgoo +2025-06-18T15:17:49.781Z [TRACE] user-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.30.79 - RequestID: lxidvhv84os +2025-06-18T15:17:49.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1028 - IP: 192.168.85.229 - RequestID: oc6cz590wsc +2025-06-18T15:17:49.981Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 159ms - IP: 192.168.229.123 - User: user_1015 - RequestID: uf4xaa659b9 +2025-06-18T15:17:50.081Z [TRACE] notification-service - Auth event: password_change - User: user_1044 - IP: 192.168.232.72 - RequestID: l3gy1wlbv7 +2025-06-18T15:17:50.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.227.77 - RequestID: ckgv7rjqyo +2025-06-18T15:17:50.281Z [DEBUG] auth-service - Operation: email_sent - Processing time: 208ms - RequestID: cu9lye4cpa7 +2025-06-18T15:17:50.381Z [TRACE] notification-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.240.169 - RequestID: z9n8xf62phd +2025-06-18T15:17:50.481Z [TRACE] order-service - Operation: cache_miss - Processing time: 832ms - RequestID: slt9p6iejip +2025-06-18T15:17:50.581Z [INFO] notification-service - Database UPDATE on users - Execution time: 226ms - Rows affected: 53 - RequestID: qarpzxmwfln +2025-06-18T15:17:50.681Z [TRACE] order-service - Operation: order_created - Processing time: 803ms - RequestID: icg4ykblctd +2025-06-18T15:17:50.781Z [TRACE] auth-service - POST /api/v1/orders - Status: 401 - Response time: 140ms - IP: 192.168.10.184 - User: user_1081 - RequestID: dqakvf35r1 +2025-06-18T15:17:50.881Z [INFO] user-service - Database INSERT on payments - Execution time: 219ms - Rows affected: 59 - RequestID: hkbjq53i018 +2025-06-18T15:17:50.981Z [INFO] user-service - PUT /api/v1/orders - Status: 403 - Response time: 1336ms - IP: 192.168.46.63 - User: user_1004 - RequestID: 8z2rwfjhh5w +2025-06-18T15:17:51.081Z [INFO] user-service - Database SELECT on products - Execution time: 32ms - Rows affected: 15 - RequestID: wm4ymexbut +2025-06-18T15:17:51.181Z [INFO] order-service - Database INSERT on orders - Execution time: 167ms - Rows affected: 83 - RequestID: s3is01e5obq +2025-06-18T15:17:51.281Z [INFO] auth-service - Database UPDATE on payments - Execution time: 224ms - Rows affected: 7 - RequestID: ybbsftd9o3 +2025-06-18T15:17:51.381Z [TRACE] user-service - POST /api/v1/payments - Status: 200 - Response time: 19ms - IP: 192.168.14.77 - User: user_1001 - RequestID: vtkwzia587 +2025-06-18T15:17:51.481Z [TRACE] user-service - Auth event: login_success - User: user_1021 - IP: 192.168.30.79 - RequestID: 3wec6idg64a +2025-06-18T15:17:51.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.79.116 - RequestID: k11i7t1jqz +2025-06-18T15:17:51.681Z [TRACE] auth-service - Auth event: password_change - User: user_1053 - IP: 192.168.28.146 - RequestID: sipddyvr87p +2025-06-18T15:17:51.781Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 116ms - RequestID: yo4st0bbkb9 +2025-06-18T15:17:51.881Z [TRACE] order-service - GET /api/v1/inventory - Status: 400 - Response time: 1584ms - IP: 192.168.97.87 - User: user_1029 - RequestID: 1fubfqvyol1 +2025-06-18T15:17:51.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.53.133 - RequestID: dxn9yf6k7iw +2025-06-18T15:17:52.081Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 149ms - IP: 192.168.194.41 - User: user_1039 - RequestID: 0e6ucpcmfy14 +2025-06-18T15:17:52.181Z [DEBUG] order-service - Auth event: password_change - User: user_1017 - IP: 192.168.113.218 - RequestID: vlwiptjdmv +2025-06-18T15:17:52.281Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 777ms - RequestID: j3ptbrnmh4 +2025-06-18T15:17:52.381Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1826ms - IP: 192.168.100.240 - User: user_1057 - RequestID: jidqucfzo7a +2025-06-18T15:17:52.481Z [TRACE] order-service - Database INSERT on users - Execution time: 33ms - Rows affected: 17 - RequestID: 5sjzupwivul +2025-06-18T15:17:52.581Z [INFO] payment-service - Database INSERT on orders - Execution time: 83ms - Rows affected: 16 - RequestID: 0kyt4g76lzn +2025-06-18T15:17:52.681Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 71ms - Rows affected: 2 - RequestID: mkhfhqpdoci +2025-06-18T15:17:52.781Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 294ms - Rows affected: 36 - RequestID: gatiqt5vy7k +2025-06-18T15:17:52.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 761ms - RequestID: lpnallleulb +2025-06-18T15:17:52.981Z [INFO] notification-service - Database INSERT on users - Execution time: 382ms - Rows affected: 61 - RequestID: u8gr8qcrnen +2025-06-18T15:17:53.081Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 701ms - RequestID: ipozp8flgv +2025-06-18T15:17:53.181Z [INFO] auth-service - Auth event: logout - User: user_1023 - IP: 192.168.14.77 - RequestID: cqwl096ry +2025-06-18T15:17:53.281Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 488ms - Rows affected: 3 - RequestID: ecu1qzv7q35 +2025-06-18T15:17:53.381Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 359ms - RequestID: k1hov7xfy1f +2025-06-18T15:17:53.481Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 500 - Response time: 1217ms - IP: 192.168.159.94 - User: user_1067 - RequestID: o47ns2g7il +2025-06-18T15:17:53.581Z [INFO] user-service - Database INSERT on users - Execution time: 6ms - Rows affected: 89 - RequestID: dym567qkmad +2025-06-18T15:17:53.681Z [INFO] payment-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1546ms - IP: 192.168.1.152 - User: user_1033 - RequestID: ixb0ubo58ac +2025-06-18T15:17:53.781Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 422ms - Rows affected: 46 - RequestID: mg5ig9vh4bj +2025-06-18T15:17:53.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1040 - IP: 192.168.167.32 - RequestID: i80nrockvt +2025-06-18T15:17:53.981Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 468ms - IP: 192.168.170.215 - User: user_1004 - RequestID: mqom2hmgrts +2025-06-18T15:17:54.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1046 - IP: 192.168.159.94 - RequestID: ogo6vdpu9x +2025-06-18T15:17:54.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.141.100 - RequestID: m4xfcss5bzc +2025-06-18T15:17:54.281Z [INFO] auth-service - PUT /api/v1/payments - Status: 503 - Response time: 891ms - IP: 192.168.79.116 - User: user_1057 - RequestID: jkz9zp5eiq +2025-06-18T15:17:54.381Z [INFO] user-service - Operation: cache_hit - Processing time: 216ms - RequestID: nra7jtuv72 +2025-06-18T15:17:54.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1000 - IP: 192.168.240.169 - RequestID: 3kbdil62u52 +2025-06-18T15:17:54.581Z [TRACE] payment-service - POST /api/v1/users - Status: 403 - Response time: 1873ms - IP: 192.168.10.184 - User: user_1065 - RequestID: b96po1kqb9a +2025-06-18T15:17:54.681Z [DEBUG] inventory-service - Auth event: logout - User: user_1068 - IP: 192.168.44.5 - RequestID: 75lwl0p9exw +2025-06-18T15:17:54.781Z [TRACE] payment-service - Operation: email_sent - Processing time: 747ms - RequestID: 1wcdt0sd8z6 +2025-06-18T15:17:54.881Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 500 - Response time: 983ms - IP: 192.168.33.76 - User: user_1068 - RequestID: xlo8u819m5 +2025-06-18T15:17:54.981Z [DEBUG] payment-service - Operation: email_sent - Processing time: 72ms - RequestID: 8pgb4wdhzed +2025-06-18T15:17:55.081Z [TRACE] user-service - Database SELECT on sessions - Execution time: 412ms - Rows affected: 15 - RequestID: wmgdtx8bf2k +2025-06-18T15:17:55.181Z [DEBUG] order-service - Database INSERT on products - Execution time: 435ms - Rows affected: 24 - RequestID: c2rtlsxfrz +2025-06-18T15:17:55.281Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 175ms - Rows affected: 44 - RequestID: 1t40lg2oftd +2025-06-18T15:17:55.381Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 290ms - Rows affected: 18 - RequestID: 9heiovjay3k +2025-06-18T15:17:55.481Z [TRACE] payment-service - Database UPDATE on users - Execution time: 366ms - Rows affected: 15 - RequestID: mm61pydsssq +2025-06-18T15:17:55.581Z [TRACE] payment-service - Auth event: logout - User: user_1043 - IP: 192.168.235.117 - RequestID: w74hd796rno +2025-06-18T15:17:55.681Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 152ms - Rows affected: 43 - RequestID: kpgbsauorn +2025-06-18T15:17:55.781Z [DEBUG] user-service - Operation: order_created - Processing time: 831ms - RequestID: d1ex8cm0oc7 +2025-06-18T15:17:55.881Z [DEBUG] order-service - Operation: payment_processed - Processing time: 929ms - RequestID: ooy2whlvis +2025-06-18T15:17:55.981Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1382ms - IP: 192.168.13.72 - User: user_1093 - RequestID: 2ofhcwl9ew6 +2025-06-18T15:17:56.081Z [TRACE] user-service - Operation: inventory_updated - Processing time: 815ms - RequestID: e52n15f77mi +2025-06-18T15:17:56.181Z [INFO] order-service - Database INSERT on payments - Execution time: 452ms - Rows affected: 14 - RequestID: oms2h2blla +2025-06-18T15:17:56.281Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 253ms - Rows affected: 61 - RequestID: ahsl6xor0wj +2025-06-18T15:17:56.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.141.100 - RequestID: 4yi9cc0d3kh +2025-06-18T15:17:56.481Z [INFO] order-service - Operation: inventory_updated - Processing time: 718ms - RequestID: f71xu2nzc0m +2025-06-18T15:17:56.581Z [TRACE] notification-service - Auth event: password_change - User: user_1018 - IP: 192.168.53.133 - RequestID: 1jgkw1vs7sx +2025-06-18T15:17:56.681Z [TRACE] notification-service - DELETE /api/v1/users - Status: 502 - Response time: 1490ms - IP: 192.168.79.116 - User: user_1013 - RequestID: 81yr24wqv55 +2025-06-18T15:17:56.781Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 244ms - Rows affected: 73 - RequestID: 2j035jtqwzf +2025-06-18T15:17:56.881Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1831ms - IP: 192.168.32.38 - User: user_1060 - RequestID: vpqv528zwut +2025-06-18T15:17:56.981Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 92ms - Rows affected: 24 - RequestID: 3o6vv5ppzrr +2025-06-18T15:17:57.081Z [INFO] user-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.167.32 - RequestID: ubf5vbqoo2 +2025-06-18T15:17:57.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 901ms - RequestID: 5gxbxmjpu23 +2025-06-18T15:17:57.281Z [DEBUG] inventory-service - Operation: order_created - Processing time: 106ms - RequestID: hmbozbaxs7f +2025-06-18T15:17:57.381Z [INFO] notification-service - Operation: email_sent - Processing time: 51ms - RequestID: 8beu1kt3cfc +2025-06-18T15:17:57.481Z [INFO] notification-service - Database UPDATE on products - Execution time: 70ms - Rows affected: 55 - RequestID: ywdsb2jn57 +2025-06-18T15:17:57.581Z [TRACE] payment-service - POST /api/v1/payments - Status: 503 - Response time: 661ms - IP: 192.168.194.41 - User: user_1071 - RequestID: oa56slu1y5o +2025-06-18T15:17:57.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.44.5 - RequestID: mkajaqkhmn9 +2025-06-18T15:17:57.781Z [TRACE] inventory-service - POST /api/v1/payments - Status: 503 - Response time: 2008ms - IP: 192.168.32.38 - User: user_1001 - RequestID: cwipn2yp9ea +2025-06-18T15:17:57.881Z [DEBUG] user-service - POST /api/v1/users - Status: 403 - Response time: 304ms - IP: 192.168.113.218 - User: user_1046 - RequestID: borcrefkw1v +2025-06-18T15:17:57.981Z [DEBUG] order-service - Auth event: logout - User: user_1032 - IP: 192.168.46.63 - RequestID: rrxagcvf5p +2025-06-18T15:17:58.081Z [DEBUG] user-service - Database UPDATE on users - Execution time: 414ms - Rows affected: 61 - RequestID: i8msgs9iu +2025-06-18T15:17:58.181Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 275ms - Rows affected: 13 - RequestID: a3clvcwse7a +2025-06-18T15:17:58.281Z [INFO] order-service - Operation: webhook_sent - Processing time: 767ms - RequestID: awxn2n9ylw9 +2025-06-18T15:17:58.381Z [INFO] notification-service - Database UPDATE on users - Execution time: 337ms - Rows affected: 98 - RequestID: doz9qljnjnj +2025-06-18T15:17:58.481Z [INFO] auth-service - Operation: cache_miss - Processing time: 597ms - RequestID: hluf0883gih +2025-06-18T15:17:58.581Z [DEBUG] order-service - Database INSERT on users - Execution time: 161ms - Rows affected: 74 - RequestID: 2loqqnr33o1 +2025-06-18T15:17:58.681Z [DEBUG] order-service - GET /api/v1/orders - Status: 503 - Response time: 153ms - IP: 192.168.235.117 - User: user_1045 - RequestID: 7e54nekgw2m +2025-06-18T15:17:58.781Z [INFO] auth-service - Database DELETE on payments - Execution time: 239ms - Rows affected: 27 - RequestID: a5gio4jbocp +2025-06-18T15:17:58.881Z [TRACE] order-service - Operation: order_created - Processing time: 490ms - RequestID: u6nydccu1hl +2025-06-18T15:17:58.981Z [TRACE] order-service - Operation: inventory_updated - Processing time: 180ms - RequestID: oiscczgbso +2025-06-18T15:17:59.081Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 768ms - RequestID: 8o6h0226u42 +2025-06-18T15:17:59.181Z [INFO] auth-service - Database INSERT on sessions - Execution time: 206ms - Rows affected: 28 - RequestID: d7ext5g54yo +2025-06-18T15:17:59.281Z [DEBUG] order-service - Database UPDATE on users - Execution time: 166ms - Rows affected: 35 - RequestID: 5l333trg8x3 +2025-06-18T15:17:59.381Z [INFO] user-service - PUT /api/v1/orders - Status: 500 - Response time: 247ms - IP: 192.168.187.199 - User: user_1009 - RequestID: l1cd84xi7gr +2025-06-18T15:17:59.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 202ms - RequestID: 4rvzjxwmq7 +2025-06-18T15:17:59.581Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1897ms - IP: 192.168.196.226 - User: user_1073 - RequestID: s9fnxogn3aa +2025-06-18T15:17:59.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 409ms - RequestID: 70x8ghr9nuf +2025-06-18T15:17:59.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 373ms - RequestID: 6elirnicsnh +2025-06-18T15:17:59.881Z [TRACE] user-service - Auth event: token_refresh - User: user_1033 - IP: 192.168.235.117 - RequestID: alqskn8yykc +2025-06-18T15:17:59.981Z [INFO] user-service - GET /api/v1/payments - Status: 502 - Response time: 540ms - IP: 192.168.158.144 - User: user_1013 - RequestID: ffbqlvpt7cu +2025-06-18T15:18:00.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.194.41 - RequestID: s4qq16vken9 +2025-06-18T15:18:00.181Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.227.233 - RequestID: qggkmc7i7kk +2025-06-18T15:18:00.281Z [TRACE] payment-service - Database UPDATE on products - Execution time: 120ms - Rows affected: 35 - RequestID: ak1lpe7omvd +2025-06-18T15:18:00.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 431ms - RequestID: 00vvvxpp8yk1 +2025-06-18T15:18:00.481Z [TRACE] notification-service - Auth event: logout - User: user_1012 - IP: 192.168.141.100 - RequestID: 6cbssjd89a +2025-06-18T15:18:00.581Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.189.103 - RequestID: fpigzxzt6cw +2025-06-18T15:18:00.681Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 444ms - RequestID: bensjhfhbjh +2025-06-18T15:18:00.781Z [TRACE] auth-service - Auth event: login_failed - User: user_1068 - IP: 192.168.10.184 - RequestID: 7vh656h36mg +2025-06-18T15:18:00.881Z [INFO] payment-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.11.60 - RequestID: avfw86rqovr +2025-06-18T15:18:00.981Z [INFO] user-service - Auth event: logout - User: user_1058 - IP: 192.168.81.206 - RequestID: f83vfc87x1 +2025-06-18T15:18:01.081Z [INFO] payment-service - Auth event: password_change - User: user_1009 - IP: 192.168.147.171 - RequestID: k5iuwp159dg +2025-06-18T15:18:01.181Z [TRACE] order-service - Database DELETE on users - Execution time: 184ms - Rows affected: 14 - RequestID: nxtxqgi5ni +2025-06-18T15:18:01.281Z [TRACE] user-service - Operation: order_created - Processing time: 852ms - RequestID: brijkyeexj +2025-06-18T15:18:01.381Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 544ms - RequestID: rcor8pc55vb +2025-06-18T15:18:01.481Z [TRACE] payment-service - Auth event: password_change - User: user_1006 - IP: 192.168.227.233 - RequestID: 0lv0inl0ri8i +2025-06-18T15:18:01.581Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 403 - Response time: 869ms - IP: 192.168.79.116 - User: user_1035 - RequestID: y7jfzdcjsg +2025-06-18T15:18:01.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1032 - IP: 192.168.211.72 - RequestID: tcj3darpw5m +2025-06-18T15:18:01.781Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 361ms - Rows affected: 11 - RequestID: 7xc9suxo1de +2025-06-18T15:18:01.881Z [TRACE] user-service - Auth event: login_success - User: user_1072 - IP: 192.168.158.144 - RequestID: 5zyrmu99shn +2025-06-18T15:18:01.981Z [INFO] notification-service - Auth event: login_failed - User: user_1094 - IP: 192.168.64.33 - RequestID: u4gtt23277e +2025-06-18T15:18:02.081Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 75ms - Rows affected: 55 - RequestID: yqqe4sewvmd +2025-06-18T15:18:02.181Z [INFO] order-service - PUT /api/v1/users - Status: 401 - Response time: 1048ms - IP: 192.168.196.226 - User: user_1075 - RequestID: tpwzepi9az +2025-06-18T15:18:02.281Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 242ms - Rows affected: 24 - RequestID: g53tleg8xsg +2025-06-18T15:18:02.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 1002ms - RequestID: 9fzzsd4c0ph +2025-06-18T15:18:02.481Z [TRACE] payment-service - Database DELETE on users - Execution time: 287ms - Rows affected: 32 - RequestID: nvrgse208xn +2025-06-18T15:18:02.581Z [INFO] user-service - Operation: inventory_updated - Processing time: 638ms - RequestID: 8yvy002wbod +2025-06-18T15:18:02.681Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 401 - Response time: 773ms - IP: 192.168.211.72 - User: user_1083 - RequestID: 7bhnzo7fg53 +2025-06-18T15:18:02.781Z [DEBUG] user-service - Operation: notification_queued - Processing time: 631ms - RequestID: vwwsrlmj8m +2025-06-18T15:18:02.881Z [INFO] payment-service - Operation: inventory_updated - Processing time: 442ms - RequestID: 5yv7r9h92ts +2025-06-18T15:18:02.981Z [DEBUG] payment-service - Auth event: login_failed - User: user_1051 - IP: 192.168.187.199 - RequestID: dwuethw9zv +2025-06-18T15:18:03.081Z [TRACE] notification-service - Operation: notification_queued - Processing time: 530ms - RequestID: tpixh8nmyza +2025-06-18T15:18:03.181Z [INFO] inventory-service - Database DELETE on payments - Execution time: 481ms - Rows affected: 70 - RequestID: jqx3zda5nim +2025-06-18T15:18:03.281Z [INFO] payment-service - Operation: cache_hit - Processing time: 923ms - RequestID: 1mdyeg8oyky +2025-06-18T15:18:03.381Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 1041ms - RequestID: nni3683dcr +2025-06-18T15:18:03.481Z [INFO] inventory-service - Operation: order_created - Processing time: 522ms - RequestID: xelqkjmmj3f +2025-06-18T15:18:03.581Z [INFO] payment-service - Operation: email_sent - Processing time: 108ms - RequestID: 0vyztwz1u9n +2025-06-18T15:18:03.681Z [DEBUG] auth-service - GET /api/v1/orders - Status: 502 - Response time: 254ms - IP: 192.168.113.218 - User: user_1064 - RequestID: ks39ahfqzdb +2025-06-18T15:18:03.781Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1004ms - RequestID: 09ez0duc5i7m +2025-06-18T15:18:03.881Z [TRACE] notification-service - Operation: order_created - Processing time: 407ms - RequestID: lq4v0691ex +2025-06-18T15:18:03.981Z [INFO] payment-service - Database INSERT on products - Execution time: 348ms - Rows affected: 42 - RequestID: mwe81hcd1d +2025-06-18T15:18:04.081Z [INFO] payment-service - GET /api/v1/orders - Status: 500 - Response time: 533ms - IP: 192.168.79.143 - User: user_1037 - RequestID: v0s4qqaxm9m +2025-06-18T15:18:04.181Z [TRACE] inventory-service - Operation: email_sent - Processing time: 62ms - RequestID: gylsln8569r +2025-06-18T15:18:04.281Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 291ms - RequestID: y0gmlcxl6ie +2025-06-18T15:18:04.381Z [INFO] inventory-service - Operation: cache_miss - Processing time: 66ms - RequestID: sb5ldzz336 +2025-06-18T15:18:04.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1096 - IP: 192.168.1.152 - RequestID: xpu3li975r +2025-06-18T15:18:04.581Z [INFO] auth-service - Database DELETE on payments - Execution time: 281ms - Rows affected: 47 - RequestID: 3qagwrhszlg +2025-06-18T15:18:04.681Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 484ms - Rows affected: 57 - RequestID: z6hl173balh +2025-06-18T15:18:04.781Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 403 - Response time: 1269ms - IP: 192.168.227.77 - User: user_1060 - RequestID: ri5v7w47nb8 +2025-06-18T15:18:04.881Z [TRACE] notification-service - Operation: email_sent - Processing time: 655ms - RequestID: 54zuagsrxys +2025-06-18T15:18:04.981Z [DEBUG] order-service - Auth event: password_change - User: user_1096 - IP: 192.168.68.128 - RequestID: k8er22cknf +2025-06-18T15:18:05.081Z [TRACE] payment-service - PUT /api/v1/users - Status: 502 - Response time: 1399ms - IP: 192.168.53.133 - User: user_1093 - RequestID: lua5lfhrqpf +2025-06-18T15:18:05.181Z [INFO] order-service - Operation: notification_queued - Processing time: 534ms - RequestID: io8loll3aig +2025-06-18T15:18:05.281Z [TRACE] order-service - Operation: cache_hit - Processing time: 376ms - RequestID: hdnw826j55 +2025-06-18T15:18:05.381Z [TRACE] inventory-service - PUT /api/v1/users - Status: 401 - Response time: 1528ms - IP: 192.168.100.240 - User: user_1032 - RequestID: csfq2hopdhn +2025-06-18T15:18:05.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 167ms - RequestID: rb9u6s3ap6a +2025-06-18T15:18:05.581Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 371ms - Rows affected: 73 - RequestID: foa7s3rm52i +2025-06-18T15:18:05.681Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 330ms - Rows affected: 84 - RequestID: ou9wxdg6r1 +2025-06-18T15:18:05.781Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1139ms - IP: 192.168.28.146 - User: user_1070 - RequestID: 0ql6iekx8v8i +2025-06-18T15:18:05.881Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 32ms - Rows affected: 26 - RequestID: xnkhxnr5w5f +2025-06-18T15:18:05.981Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 249ms - Rows affected: 74 - RequestID: qwlbef1k0to +2025-06-18T15:18:06.081Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1335ms - IP: 192.168.79.141 - User: user_1084 - RequestID: 7e9kmh6n4u5 +2025-06-18T15:18:06.181Z [INFO] payment-service - Database DELETE on sessions - Execution time: 63ms - Rows affected: 34 - RequestID: xjcmq2ak36 +2025-06-18T15:18:06.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.44.5 - RequestID: zox22h8608 +2025-06-18T15:18:06.381Z [DEBUG] user-service - Auth event: logout - User: user_1093 - IP: 192.168.64.33 - RequestID: ru4anf8ad0o +2025-06-18T15:18:06.481Z [INFO] notification-service - Operation: cache_hit - Processing time: 295ms - RequestID: ek1vd6q7xt +2025-06-18T15:18:06.581Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 201 - Response time: 718ms - IP: 192.168.11.60 - User: user_1088 - RequestID: b1wym7ja4t +2025-06-18T15:18:06.681Z [TRACE] user-service - Database UPDATE on payments - Execution time: 263ms - Rows affected: 90 - RequestID: ymaj79gvpws +2025-06-18T15:18:06.781Z [INFO] user-service - PUT /api/v1/payments - Status: 404 - Response time: 491ms - IP: 192.168.13.72 - User: user_1050 - RequestID: 66wfvjvuejp +2025-06-18T15:18:06.881Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 503 - Response time: 1424ms - IP: 192.168.11.60 - User: user_1079 - RequestID: dd9187l68is +2025-06-18T15:18:06.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 593ms - RequestID: ddacqo6fop +2025-06-18T15:18:07.081Z [TRACE] auth-service - Auth event: password_change - User: user_1023 - IP: 192.168.174.114 - RequestID: skwosgkfpp +2025-06-18T15:18:07.181Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 816ms - RequestID: q3g4mm0fk2c +2025-06-18T15:18:07.281Z [INFO] notification-service - Database INSERT on sessions - Execution time: 132ms - Rows affected: 5 - RequestID: zb267qb22k +2025-06-18T15:18:07.381Z [TRACE] auth-service - POST /api/v1/payments - Status: 200 - Response time: 1414ms - IP: 192.168.189.103 - User: user_1071 - RequestID: rpvyh46csk +2025-06-18T15:18:07.481Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 93ms - Rows affected: 17 - RequestID: 3kbdvtytgyk +2025-06-18T15:18:07.581Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1188ms - IP: 192.168.138.123 - User: user_1055 - RequestID: tgi416zyw +2025-06-18T15:18:07.681Z [TRACE] user-service - Database SELECT on orders - Execution time: 219ms - Rows affected: 45 - RequestID: 5311ws6yfeg +2025-06-18T15:18:07.781Z [TRACE] user-service - Database DELETE on orders - Execution time: 455ms - Rows affected: 91 - RequestID: v3615tamxkl +2025-06-18T15:18:07.881Z [INFO] payment-service - DELETE /api/v1/users - Status: 201 - Response time: 1921ms - IP: 192.168.187.199 - User: user_1045 - RequestID: nsubgn7ykns +2025-06-18T15:18:07.981Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 460ms - Rows affected: 43 - RequestID: n5tw9wia3 +2025-06-18T15:18:08.081Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 133ms - Rows affected: 68 - RequestID: 3s2ourakkl7 +2025-06-18T15:18:08.181Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 298ms - RequestID: a9fgzvdzqtq +2025-06-18T15:18:08.281Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 403 - Response time: 990ms - IP: 192.168.189.103 - User: user_1001 - RequestID: t0li4fwidbq +2025-06-18T15:18:08.381Z [INFO] auth-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.10.184 - RequestID: u6hrjp007q +2025-06-18T15:18:08.481Z [TRACE] auth-service - Database UPDATE on products - Execution time: 142ms - Rows affected: 16 - RequestID: jxkdxuh8h9 +2025-06-18T15:18:08.581Z [TRACE] user-service - GET /api/v1/auth/login - Status: 200 - Response time: 1320ms - IP: 192.168.138.123 - User: user_1079 - RequestID: 0df2iszumf17 +2025-06-18T15:18:08.681Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 390ms - Rows affected: 89 - RequestID: 38cctt9evhu +2025-06-18T15:18:08.781Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 689ms - IP: 192.168.138.123 - User: user_1048 - RequestID: rysl0mhskse +2025-06-18T15:18:08.881Z [TRACE] user-service - DELETE /api/v1/orders - Status: 401 - Response time: 1165ms - IP: 192.168.30.79 - User: user_1007 - RequestID: g30poux7wjo +2025-06-18T15:18:08.981Z [INFO] notification-service - Auth event: login_success - User: user_1004 - IP: 192.168.100.240 - RequestID: dlipp8kj9nb +2025-06-18T15:18:09.081Z [TRACE] payment-service - POST /api/v1/payments - Status: 500 - Response time: 1241ms - IP: 192.168.104.37 - User: user_1082 - RequestID: 6w5dnipj0ex +2025-06-18T15:18:09.181Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 403 - Response time: 477ms - IP: 192.168.240.169 - User: user_1025 - RequestID: mq6cvwvw1vb +2025-06-18T15:18:09.281Z [INFO] payment-service - PUT /api/v1/inventory - Status: 403 - Response time: 1474ms - IP: 192.168.138.123 - User: user_1063 - RequestID: mkjrx2jznms +2025-06-18T15:18:09.381Z [INFO] inventory-service - Database UPDATE on products - Execution time: 355ms - Rows affected: 98 - RequestID: wo1cbs6iktj +2025-06-18T15:18:09.481Z [INFO] auth-service - Database SELECT on payments - Execution time: 131ms - Rows affected: 47 - RequestID: qe660w7pdk +2025-06-18T15:18:09.581Z [INFO] user-service - Auth event: login_failed - User: user_1064 - IP: 192.168.189.103 - RequestID: c4ybyyyzafd +2025-06-18T15:18:09.681Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 502 - Response time: 406ms - IP: 192.168.33.76 - User: user_1006 - RequestID: eu64sjvknzr +2025-06-18T15:18:09.781Z [DEBUG] payment-service - Database DELETE on products - Execution time: 390ms - Rows affected: 80 - RequestID: baxvro9dr7 +2025-06-18T15:18:09.881Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 499ms - Rows affected: 50 - RequestID: w9fldpzevvq +2025-06-18T15:18:09.981Z [INFO] inventory-service - Auth event: login_success - User: user_1087 - IP: 192.168.232.72 - RequestID: a7i7cp3a0br +2025-06-18T15:18:10.081Z [INFO] auth-service - Database SELECT on payments - Execution time: 449ms - Rows affected: 15 - RequestID: 7sm3suvdq9i +2025-06-18T15:18:10.181Z [DEBUG] user-service - POST /api/v1/users - Status: 403 - Response time: 889ms - IP: 192.168.144.38 - User: user_1063 - RequestID: 4f8l2zhttgv +2025-06-18T15:18:10.281Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 302ms - Rows affected: 66 - RequestID: 0oox4yjtxtl +2025-06-18T15:18:10.381Z [TRACE] user-service - Database DELETE on users - Execution time: 333ms - Rows affected: 70 - RequestID: cw2wp7lp17o +2025-06-18T15:18:10.481Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 119ms - RequestID: v7iavtblgqi +2025-06-18T15:18:10.581Z [INFO] auth-service - Auth event: password_change - User: user_1021 - IP: 192.168.79.143 - RequestID: c834jowphxs +2025-06-18T15:18:10.681Z [INFO] payment-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.100.240 - RequestID: zajhq76fult +2025-06-18T15:18:10.781Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 1020ms - RequestID: he7wt1vs2ic +2025-06-18T15:18:10.881Z [INFO] auth-service - Auth event: token_refresh - User: user_1070 - IP: 192.168.30.79 - RequestID: s51udf14syb +2025-06-18T15:18:10.981Z [TRACE] inventory-service - POST /api/v1/payments - Status: 502 - Response time: 426ms - IP: 192.168.53.133 - User: user_1083 - RequestID: 5ygy6qvlzqd +2025-06-18T15:18:11.081Z [INFO] user-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.53.133 - RequestID: 9cb87ob173 +2025-06-18T15:18:11.181Z [INFO] notification-service - Operation: cache_miss - Processing time: 1002ms - RequestID: pzsmcnh590i +2025-06-18T15:18:11.281Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 22ms - Rows affected: 56 - RequestID: ipmqtgmk1ij +2025-06-18T15:18:11.381Z [INFO] order-service - Database UPDATE on payments - Execution time: 64ms - Rows affected: 10 - RequestID: grk06w8yek +2025-06-18T15:18:11.481Z [DEBUG] user-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.247.134 - RequestID: u1bq00d2j6p +2025-06-18T15:18:11.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.11.60 - RequestID: il4vjm632jd +2025-06-18T15:18:11.681Z [DEBUG] order-service - Auth event: logout - User: user_1025 - IP: 192.168.97.87 - RequestID: a136cvfusfo +2025-06-18T15:18:11.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.79.143 - RequestID: fjbdggo1mo +2025-06-18T15:18:11.881Z [INFO] order-service - Auth event: login_success - User: user_1081 - IP: 192.168.159.94 - RequestID: 2qu9em44nty +2025-06-18T15:18:11.981Z [INFO] user-service - Database UPDATE on orders - Execution time: 69ms - Rows affected: 25 - RequestID: 5htigbe9wrk +2025-06-18T15:18:12.081Z [INFO] order-service - Auth event: login_failed - User: user_1004 - IP: 192.168.113.218 - RequestID: cbdkt850sdb +2025-06-18T15:18:12.181Z [TRACE] order-service - Operation: payment_processed - Processing time: 698ms - RequestID: hrgs658npg5 +2025-06-18T15:18:12.281Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 326ms - RequestID: vi451jx104 +2025-06-18T15:18:12.381Z [INFO] payment-service - Database INSERT on orders - Execution time: 189ms - Rows affected: 29 - RequestID: b622wgmzqgt +2025-06-18T15:18:12.481Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.68.158 - RequestID: i6lfkq2xln +2025-06-18T15:18:12.581Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 40ms - Rows affected: 81 - RequestID: 95ixfal3vuh +2025-06-18T15:18:12.681Z [DEBUG] auth-service - Auth event: login_failed - User: user_1077 - IP: 192.168.85.229 - RequestID: myqe0ziyhd9 +2025-06-18T15:18:12.781Z [DEBUG] user-service - PUT /api/v1/orders - Status: 500 - Response time: 1458ms - IP: 192.168.1.152 - User: user_1002 - RequestID: 51rh8578bwf +2025-06-18T15:18:12.881Z [INFO] inventory-service - Operation: cache_hit - Processing time: 558ms - RequestID: 504fmzmxy3j +2025-06-18T15:18:12.981Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1445ms - IP: 192.168.11.60 - User: user_1041 - RequestID: p7irj7evci +2025-06-18T15:18:13.081Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 319ms - Rows affected: 34 - RequestID: 5wwluat05kj +2025-06-18T15:18:13.181Z [INFO] order-service - Operation: notification_queued - Processing time: 793ms - RequestID: 9ti3w8bprau +2025-06-18T15:18:13.281Z [INFO] auth-service - Auth event: password_change - User: user_1088 - IP: 192.168.97.87 - RequestID: 1v6h8cswgzs +2025-06-18T15:18:13.381Z [DEBUG] order-service - Operation: notification_queued - Processing time: 185ms - RequestID: hke19v0j6n7 +2025-06-18T15:18:13.481Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 847ms - RequestID: o586hifs3gd +2025-06-18T15:18:13.581Z [TRACE] auth-service - Database DELETE on orders - Execution time: 423ms - Rows affected: 35 - RequestID: 3suqmi4n25a +2025-06-18T15:18:13.681Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 56ms - Rows affected: 75 - RequestID: jm96kvzqq2p +2025-06-18T15:18:13.781Z [INFO] notification-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.46.63 - RequestID: jde5grjlo2j +2025-06-18T15:18:13.881Z [DEBUG] order-service - Database INSERT on payments - Execution time: 211ms - Rows affected: 34 - RequestID: ki6wi2xctua +2025-06-18T15:18:13.981Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 155ms - Rows affected: 55 - RequestID: wtaux3jihym +2025-06-18T15:18:14.081Z [INFO] auth-service - Auth event: login_attempt - User: user_1095 - IP: 192.168.32.38 - RequestID: 8mff96mou7r +2025-06-18T15:18:14.181Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 500 - Response time: 1743ms - IP: 192.168.133.7 - User: user_1003 - RequestID: 54ltdh0d8z8 +2025-06-18T15:18:14.281Z [INFO] payment-service - PATCH /api/v1/payments - Status: 404 - Response time: 1182ms - IP: 192.168.232.72 - User: user_1037 - RequestID: 97q8i40k92i +2025-06-18T15:18:14.381Z [DEBUG] user-service - Auth event: login_success - User: user_1054 - IP: 192.168.14.77 - RequestID: 3yy5vrn89p8 +2025-06-18T15:18:14.481Z [INFO] order-service - Database UPDATE on sessions - Execution time: 383ms - Rows affected: 96 - RequestID: 6mepgts6t5v +2025-06-18T15:18:14.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1081 - IP: 192.168.10.184 - RequestID: 8n9oxzhojvg +2025-06-18T15:18:14.681Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 470ms - Rows affected: 29 - RequestID: jphzalcksso +2025-06-18T15:18:14.781Z [TRACE] notification-service - Operation: email_sent - Processing time: 165ms - RequestID: bj2rsc4d0xd +2025-06-18T15:18:14.881Z [INFO] payment-service - DELETE /api/v1/users - Status: 201 - Response time: 597ms - IP: 192.168.79.141 - User: user_1041 - RequestID: exba1gg3eka +2025-06-18T15:18:14.981Z [TRACE] user-service - Auth event: login_failed - User: user_1003 - IP: 192.168.159.94 - RequestID: zfwi0xiixvl +2025-06-18T15:18:15.081Z [TRACE] payment-service - Auth event: logout - User: user_1033 - IP: 192.168.232.72 - RequestID: 4griwvxyhsj +2025-06-18T15:18:15.181Z [DEBUG] order-service - GET /api/v1/payments - Status: 200 - Response time: 697ms - IP: 192.168.28.146 - User: user_1094 - RequestID: ght9o9x2p49 +2025-06-18T15:18:15.281Z [INFO] inventory-service - Database INSERT on payments - Execution time: 365ms - Rows affected: 29 - RequestID: a1b89lwurb9 +2025-06-18T15:18:15.381Z [INFO] inventory-service - Auth event: logout - User: user_1029 - IP: 192.168.242.165 - RequestID: wi3q8z4hjdk +2025-06-18T15:18:15.481Z [TRACE] order-service - Auth event: password_change - User: user_1072 - IP: 192.168.240.169 - RequestID: v1qgy6gb4ds +2025-06-18T15:18:15.581Z [DEBUG] order-service - PUT /api/v1/users - Status: 500 - Response time: 1993ms - IP: 192.168.196.226 - User: user_1093 - RequestID: rxa5nh1u7t +2025-06-18T15:18:15.681Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 301ms - RequestID: ev2ckpfdsg +2025-06-18T15:18:15.781Z [DEBUG] payment-service - GET /api/v1/orders - Status: 500 - Response time: 443ms - IP: 192.168.227.233 - User: user_1036 - RequestID: rzeix44zzt +2025-06-18T15:18:15.881Z [TRACE] auth-service - GET /api/v1/inventory - Status: 500 - Response time: 1046ms - IP: 192.168.28.146 - User: user_1081 - RequestID: 5vu2tjw3tt +2025-06-18T15:18:15.981Z [INFO] notification-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.28.146 - RequestID: r0k5tsg7i +2025-06-18T15:18:16.081Z [TRACE] auth-service - Operation: email_sent - Processing time: 1001ms - RequestID: sh6xzxbhiu +2025-06-18T15:18:16.181Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 396ms - Rows affected: 38 - RequestID: b7ydmeqp8k9 +2025-06-18T15:18:16.281Z [TRACE] order-service - Auth event: logout - User: user_1011 - IP: 192.168.235.117 - RequestID: g3f1ej9i3nu +2025-06-18T15:18:16.381Z [TRACE] notification-service - GET /api/v1/inventory - Status: 404 - Response time: 1963ms - IP: 192.168.36.218 - User: user_1039 - RequestID: ep39hi2w0p +2025-06-18T15:18:16.481Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 401 - Response time: 628ms - IP: 192.168.232.72 - User: user_1043 - RequestID: qi9bx3h18pk +2025-06-18T15:18:16.581Z [INFO] order-service - DELETE /api/v1/users - Status: 403 - Response time: 1413ms - IP: 192.168.11.60 - User: user_1011 - RequestID: z14tixkpjl +2025-06-18T15:18:16.681Z [TRACE] payment-service - Database INSERT on orders - Execution time: 262ms - Rows affected: 77 - RequestID: oc0h4t0b7ac +2025-06-18T15:18:16.781Z [TRACE] notification-service - Database UPDATE on users - Execution time: 267ms - Rows affected: 9 - RequestID: eqtq6nvfuaj +2025-06-18T15:18:16.881Z [TRACE] order-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.235.117 - RequestID: m6q344diwnh +2025-06-18T15:18:16.981Z [DEBUG] user-service - PUT /api/v1/users - Status: 201 - Response time: 1384ms - IP: 192.168.240.169 - User: user_1063 - RequestID: ghnwjgbi6l6 +2025-06-18T15:18:17.081Z [INFO] notification-service - Database SELECT on payments - Execution time: 490ms - Rows affected: 62 - RequestID: ody90dc5ozr +2025-06-18T15:18:17.181Z [TRACE] user-service - Database INSERT on orders - Execution time: 54ms - Rows affected: 54 - RequestID: a5pgaijpdxm +2025-06-18T15:18:17.281Z [TRACE] auth-service - Database INSERT on products - Execution time: 370ms - Rows affected: 89 - RequestID: pbnn80c4xg +2025-06-18T15:18:17.381Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.194.41 - RequestID: hbulnzytqwf +2025-06-18T15:18:17.481Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 456ms - Rows affected: 28 - RequestID: b12iry4dbbg +2025-06-18T15:18:17.581Z [DEBUG] payment-service - Database DELETE on users - Execution time: 452ms - Rows affected: 69 - RequestID: 8wf3c1bvvjb +2025-06-18T15:18:17.681Z [TRACE] order-service - Auth event: logout - User: user_1098 - IP: 192.168.30.79 - RequestID: f7pilqu0of7 +2025-06-18T15:18:17.781Z [INFO] order-service - POST /api/v1/auth/login - Status: 201 - Response time: 1608ms - IP: 192.168.159.94 - User: user_1028 - RequestID: ajqzgrppdi5 +2025-06-18T15:18:17.881Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 92ms - RequestID: lrpr4tao22k +2025-06-18T15:18:17.981Z [TRACE] user-service - Auth event: token_refresh - User: user_1089 - IP: 192.168.85.229 - RequestID: x70a951putg +2025-06-18T15:18:18.081Z [INFO] inventory-service - Database SELECT on products - Execution time: 258ms - Rows affected: 11 - RequestID: 1jaixttw2zgi +2025-06-18T15:18:18.181Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 13ms - Rows affected: 48 - RequestID: 4q2lzf8gkf +2025-06-18T15:18:18.281Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 500ms - RequestID: 2tahk8fjtxt +2025-06-18T15:18:18.381Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 1047ms - RequestID: zdi4iwy320k +2025-06-18T15:18:18.481Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 26ms - Rows affected: 23 - RequestID: 3ziaf2juitv +2025-06-18T15:18:18.581Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 380ms - IP: 192.168.36.218 - User: user_1060 - RequestID: 00ovygt1tq55j +2025-06-18T15:18:18.681Z [INFO] user-service - Auth event: logout - User: user_1096 - IP: 192.168.68.128 - RequestID: u0vonofqfvc +2025-06-18T15:18:18.781Z [INFO] auth-service - Auth event: password_change - User: user_1067 - IP: 192.168.113.218 - RequestID: mmq9p2lnizb +2025-06-18T15:18:18.881Z [INFO] payment-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1060ms - IP: 192.168.97.87 - User: user_1020 - RequestID: cnhz1kuewbc +2025-06-18T15:18:18.981Z [INFO] user-service - Database INSERT on payments - Execution time: 229ms - Rows affected: 75 - RequestID: kevvio0syy +2025-06-18T15:18:19.081Z [TRACE] order-service - Operation: cache_hit - Processing time: 380ms - RequestID: of3a56ft43o +2025-06-18T15:18:19.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1043 - IP: 192.168.141.100 - RequestID: y79f7z8vqsj +2025-06-18T15:18:19.281Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 176ms - Rows affected: 47 - RequestID: tq3946xyd3a +2025-06-18T15:18:19.381Z [DEBUG] order-service - Database DELETE on payments - Execution time: 154ms - Rows affected: 76 - RequestID: xsb43v7xl2 +2025-06-18T15:18:19.481Z [INFO] inventory-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.138.123 - RequestID: iz0g7a0n7 +2025-06-18T15:18:19.581Z [TRACE] notification-service - Operation: cache_miss - Processing time: 654ms - RequestID: s5js8y3v2pi +2025-06-18T15:18:19.681Z [INFO] inventory-service - PUT /api/v1/users - Status: 400 - Response time: 785ms - IP: 192.168.211.72 - User: user_1022 - RequestID: u45zzqaiat8 +2025-06-18T15:18:19.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 426ms - RequestID: nf06ue2yv9g +2025-06-18T15:18:19.881Z [INFO] user-service - Operation: inventory_updated - Processing time: 629ms - RequestID: y1aw1sk57a +2025-06-18T15:18:19.981Z [TRACE] user-service - Operation: cache_hit - Processing time: 674ms - RequestID: n2r7mputeim +2025-06-18T15:18:20.081Z [INFO] user-service - Operation: webhook_sent - Processing time: 908ms - RequestID: eadl5zlkhld +2025-06-18T15:18:20.181Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 130ms - Rows affected: 52 - RequestID: 1vcxhbq7llh +2025-06-18T15:18:20.281Z [DEBUG] order-service - Operation: payment_processed - Processing time: 184ms - RequestID: 2eozaa9svl6 +2025-06-18T15:18:20.381Z [INFO] payment-service - Operation: cache_hit - Processing time: 174ms - RequestID: ioprwp5e52b +2025-06-18T15:18:20.481Z [INFO] notification-service - Database DELETE on products - Execution time: 299ms - Rows affected: 74 - RequestID: 7ts6f0ip7tu +2025-06-18T15:18:20.581Z [INFO] auth-service - Auth event: login_success - User: user_1021 - IP: 192.168.187.199 - RequestID: tmu96tuw9ph +2025-06-18T15:18:20.681Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1663ms - IP: 192.168.158.144 - User: user_1072 - RequestID: z23ppzh20md +2025-06-18T15:18:20.781Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 404 - Response time: 1705ms - IP: 192.168.174.114 - User: user_1004 - RequestID: okxq87zerh +2025-06-18T15:18:20.881Z [DEBUG] order-service - Database UPDATE on products - Execution time: 464ms - Rows affected: 30 - RequestID: ixq07tdab1f +2025-06-18T15:18:20.981Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 338ms - Rows affected: 77 - RequestID: huw5nwl23b9 +2025-06-18T15:18:21.081Z [INFO] notification-service - Operation: payment_processed - Processing time: 618ms - RequestID: it2q5jzvm08 +2025-06-18T15:18:21.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 447ms - RequestID: j1lvquwwv6k +2025-06-18T15:18:21.281Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 11ms - Rows affected: 8 - RequestID: i62hhynk7sf +2025-06-18T15:18:21.381Z [DEBUG] order-service - Operation: order_created - Processing time: 492ms - RequestID: 61dsxonaclq +2025-06-18T15:18:21.481Z [DEBUG] payment-service - Database DELETE on users - Execution time: 191ms - Rows affected: 25 - RequestID: t0inseafgta +2025-06-18T15:18:21.581Z [INFO] inventory-service - Database SELECT on products - Execution time: 284ms - Rows affected: 80 - RequestID: irvp0qxyo9 +2025-06-18T15:18:21.681Z [DEBUG] auth-service - Database INSERT on products - Execution time: 349ms - Rows affected: 42 - RequestID: p0o73colev +2025-06-18T15:18:21.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 811ms - RequestID: r3zporm71qd +2025-06-18T15:18:21.881Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 463ms - Rows affected: 87 - RequestID: naklzytkthq +2025-06-18T15:18:21.981Z [TRACE] payment-service - Operation: notification_queued - Processing time: 811ms - RequestID: lg1feh6ve1r +2025-06-18T15:18:22.081Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 404 - Response time: 448ms - IP: 192.168.235.117 - User: user_1081 - RequestID: criolw4v6x +2025-06-18T15:18:22.181Z [DEBUG] order-service - Database INSERT on audit_logs - Execution time: 439ms - Rows affected: 31 - RequestID: oqj99itvhqi +2025-06-18T15:18:22.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.227.77 - RequestID: 0f2pfgx13do +2025-06-18T15:18:22.381Z [TRACE] inventory-service - Operation: order_created - Processing time: 204ms - RequestID: odmg7vhqmic +2025-06-18T15:18:22.481Z [INFO] auth-service - Database UPDATE on users - Execution time: 220ms - Rows affected: 95 - RequestID: 8qp2hp1b51j +2025-06-18T15:18:22.581Z [INFO] order-service - Auth event: logout - User: user_1029 - IP: 192.168.97.87 - RequestID: 6oku95crop8 +2025-06-18T15:18:22.681Z [INFO] auth-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.227.77 - RequestID: 8kciqxcccp8 +2025-06-18T15:18:22.781Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 339ms - Rows affected: 7 - RequestID: l51zrlesskn +2025-06-18T15:18:22.881Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 500 - Response time: 1488ms - IP: 192.168.113.218 - User: user_1076 - RequestID: 5ur1dxhej3t +2025-06-18T15:18:22.981Z [INFO] user-service - Auth event: password_change - User: user_1090 - IP: 192.168.174.114 - RequestID: fra885pvua8 +2025-06-18T15:18:23.081Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 401 - Response time: 550ms - IP: 192.168.113.218 - User: user_1074 - RequestID: 15ssg6slhdy +2025-06-18T15:18:23.181Z [INFO] auth-service - PATCH /api/v1/payments - Status: 502 - Response time: 1914ms - IP: 192.168.159.94 - User: user_1007 - RequestID: w7z7x4bqfd +2025-06-18T15:18:23.281Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 401 - Response time: 555ms - IP: 192.168.240.169 - User: user_1018 - RequestID: 15ihck7cbrn +2025-06-18T15:18:23.381Z [DEBUG] payment-service - GET /api/v1/users - Status: 200 - Response time: 383ms - IP: 192.168.133.7 - User: user_1082 - RequestID: 0cafyz9es0j +2025-06-18T15:18:23.481Z [TRACE] payment-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.189.103 - RequestID: xcnynvhi3ok +2025-06-18T15:18:23.581Z [TRACE] order-service - Auth event: login_failed - User: user_1055 - IP: 192.168.159.94 - RequestID: btlexm0kcp +2025-06-18T15:18:23.681Z [DEBUG] order-service - Operation: payment_processed - Processing time: 669ms - RequestID: utbja3cbtzi +2025-06-18T15:18:23.781Z [INFO] order-service - DELETE /api/v1/users - Status: 502 - Response time: 170ms - IP: 192.168.36.218 - User: user_1043 - RequestID: gndgwnblusu +2025-06-18T15:18:23.881Z [INFO] order-service - DELETE /api/v1/payments - Status: 500 - Response time: 1009ms - IP: 192.168.240.169 - User: user_1075 - RequestID: fjl1cprfib5 +2025-06-18T15:18:23.981Z [DEBUG] user-service - Database UPDATE on products - Execution time: 339ms - Rows affected: 49 - RequestID: bsqdrh7dh04 +2025-06-18T15:18:24.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 307ms - RequestID: hcc3lmomy1 +2025-06-18T15:18:24.181Z [DEBUG] user-service - Database DELETE on payments - Execution time: 356ms - Rows affected: 87 - RequestID: 4ss0e9p5hbq +2025-06-18T15:18:24.281Z [INFO] inventory-service - POST /api/v1/users - Status: 404 - Response time: 158ms - IP: 192.168.170.215 - User: user_1080 - RequestID: zlj1o1ecqyr +2025-06-18T15:18:24.381Z [INFO] user-service - POST /api/v1/inventory - Status: 403 - Response time: 710ms - IP: 192.168.13.72 - User: user_1009 - RequestID: 2q6felgzbi2 +2025-06-18T15:18:24.481Z [INFO] inventory-service - Database DELETE on payments - Execution time: 109ms - Rows affected: 64 - RequestID: f57fw8n5ktc +2025-06-18T15:18:24.581Z [DEBUG] notification-service - GET /api/v1/orders - Status: 500 - Response time: 428ms - IP: 192.168.104.37 - User: user_1050 - RequestID: 1qwq2wgomhq +2025-06-18T15:18:24.681Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 467ms - Rows affected: 24 - RequestID: qpkxj5o0v2m +2025-06-18T15:18:24.781Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 200 - Response time: 1985ms - IP: 192.168.170.215 - User: user_1025 - RequestID: pdguzepji79 +2025-06-18T15:18:24.881Z [INFO] user-service - Operation: email_sent - Processing time: 168ms - RequestID: b4ec4t5h5yv +2025-06-18T15:18:24.981Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 308ms - Rows affected: 83 - RequestID: b17d6208q8i +2025-06-18T15:18:25.081Z [TRACE] notification-service - GET /api/v1/inventory - Status: 503 - Response time: 1224ms - IP: 192.168.170.215 - User: user_1086 - RequestID: rer2iq16xk +2025-06-18T15:18:25.181Z [TRACE] payment-service - Operation: cache_hit - Processing time: 133ms - RequestID: wecmbzl7thr +2025-06-18T15:18:25.281Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 480ms - Rows affected: 90 - RequestID: b5p5y3j65v6 +2025-06-18T15:18:25.381Z [INFO] order-service - Auth event: login_success - User: user_1031 - IP: 192.168.211.72 - RequestID: hra7ulw3p5 +2025-06-18T15:18:25.481Z [TRACE] order-service - Auth event: login_failed - User: user_1016 - IP: 192.168.141.100 - RequestID: cvvhw698q3 +2025-06-18T15:18:25.581Z [INFO] inventory-service - Database INSERT on products - Execution time: 420ms - Rows affected: 19 - RequestID: 30xgklacb45 +2025-06-18T15:18:25.681Z [DEBUG] order-service - Auth event: login_failed - User: user_1071 - IP: 192.168.174.114 - RequestID: d8sd7yhmhpn +2025-06-18T15:18:25.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 614ms - RequestID: e19gqbop38u +2025-06-18T15:18:25.881Z [TRACE] auth-service - Database DELETE on orders - Execution time: 27ms - Rows affected: 50 - RequestID: wwjxx0kb9wm +2025-06-18T15:18:25.981Z [INFO] inventory-service - Database INSERT on products - Execution time: 19ms - Rows affected: 79 - RequestID: 6au8z34nyse +2025-06-18T15:18:26.081Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 542ms - RequestID: kvz1wygkqdr +2025-06-18T15:18:26.181Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 400 - Response time: 573ms - IP: 192.168.64.33 - User: user_1065 - RequestID: 3wz0sgdznm9 +2025-06-18T15:18:26.281Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 900ms - RequestID: qz2ibm3rnqc +2025-06-18T15:18:26.381Z [INFO] notification-service - Database UPDATE on orders - Execution time: 159ms - Rows affected: 12 - RequestID: obsmdidn9gb +2025-06-18T15:18:26.481Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1310ms - IP: 192.168.211.72 - User: user_1017 - RequestID: y6g2xje6y4a +2025-06-18T15:18:26.581Z [TRACE] notification-service - PATCH /api/v1/users - Status: 404 - Response time: 380ms - IP: 192.168.211.72 - User: user_1008 - RequestID: m0u8v35zx7 +2025-06-18T15:18:26.681Z [DEBUG] order-service - Operation: payment_processed - Processing time: 862ms - RequestID: lank5m38n8 +2025-06-18T15:18:26.781Z [INFO] user-service - Operation: cache_miss - Processing time: 198ms - RequestID: qdwp2syweh +2025-06-18T15:18:26.881Z [TRACE] user-service - Auth event: login_success - User: user_1061 - IP: 192.168.97.87 - RequestID: ejr55rw8nbq +2025-06-18T15:18:26.981Z [INFO] payment-service - Auth event: logout - User: user_1050 - IP: 192.168.81.206 - RequestID: od6hsl8qfiq +2025-06-18T15:18:27.081Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 35ms - Rows affected: 89 - RequestID: hxz0szfhvcd +2025-06-18T15:18:27.181Z [INFO] order-service - Database INSERT on products - Execution time: 427ms - Rows affected: 88 - RequestID: 53zxnpnizca +2025-06-18T15:18:27.281Z [INFO] order-service - Database INSERT on sessions - Execution time: 192ms - Rows affected: 2 - RequestID: 7dnmmfec12h +2025-06-18T15:18:27.381Z [INFO] inventory-service - Operation: notification_queued - Processing time: 446ms - RequestID: 09ofpbngy3gk +2025-06-18T15:18:27.481Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 200 - Response time: 1533ms - IP: 192.168.194.41 - User: user_1071 - RequestID: 2bzehj6d1p8 +2025-06-18T15:18:27.581Z [DEBUG] auth-service - Database DELETE on products - Execution time: 132ms - Rows affected: 68 - RequestID: 0uzqb584ie2e +2025-06-18T15:18:27.681Z [TRACE] order-service - GET /api/v1/users - Status: 403 - Response time: 1509ms - IP: 192.168.147.171 - User: user_1038 - RequestID: ez1s1f1uvak +2025-06-18T15:18:27.781Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 500 - Response time: 627ms - IP: 192.168.44.5 - User: user_1077 - RequestID: 7bbgxwiv232 +2025-06-18T15:18:27.881Z [TRACE] notification-service - Operation: notification_queued - Processing time: 295ms - RequestID: m0nl6pc9igc +2025-06-18T15:18:27.981Z [DEBUG] user-service - Auth event: login_failed - User: user_1088 - IP: 192.168.85.229 - RequestID: 1hxqnu2pt82 +2025-06-18T15:18:28.081Z [DEBUG] payment-service - GET /api/v1/users - Status: 201 - Response time: 1273ms - IP: 192.168.85.229 - User: user_1097 - RequestID: 2kmgl5w7njc +2025-06-18T15:18:28.181Z [TRACE] user-service - Operation: email_sent - Processing time: 621ms - RequestID: t7ebbwunkj7 +2025-06-18T15:18:28.281Z [DEBUG] auth-service - Operation: order_created - Processing time: 866ms - RequestID: 4kezlaagexw +2025-06-18T15:18:28.381Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 125ms - Rows affected: 5 - RequestID: phjbwee58aa +2025-06-18T15:18:28.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1087 - IP: 192.168.79.143 - RequestID: 3asazrsxnfs +2025-06-18T15:18:28.581Z [INFO] user-service - Operation: webhook_sent - Processing time: 245ms - RequestID: ikukljxyoq +2025-06-18T15:18:28.681Z [INFO] user-service - Database SELECT on users - Execution time: 321ms - Rows affected: 7 - RequestID: vfvt2njxzub +2025-06-18T15:18:28.781Z [DEBUG] order-service - Database UPDATE on users - Execution time: 118ms - Rows affected: 31 - RequestID: ntzezs68e19 +2025-06-18T15:18:28.881Z [INFO] order-service - Database DELETE on payments - Execution time: 285ms - Rows affected: 96 - RequestID: ig3kjmhd7e +2025-06-18T15:18:28.981Z [TRACE] order-service - Operation: notification_queued - Processing time: 57ms - RequestID: ip8zw7ouj5l +2025-06-18T15:18:29.081Z [INFO] notification-service - POST /api/v1/auth/login - Status: 400 - Response time: 1801ms - IP: 192.168.68.158 - User: user_1033 - RequestID: w6bndgl99p9 +2025-06-18T15:18:29.181Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 111ms - Rows affected: 24 - RequestID: p97bkzb8e6o +2025-06-18T15:18:29.281Z [INFO] user-service - GET /api/v1/users - Status: 400 - Response time: 670ms - IP: 192.168.174.114 - User: user_1074 - RequestID: 45v7k8ildej +2025-06-18T15:18:29.381Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 675ms - RequestID: zm292rej5me +2025-06-18T15:18:29.481Z [TRACE] user-service - Auth event: login_success - User: user_1019 - IP: 192.168.31.117 - RequestID: 2zwjg18lxbi +2025-06-18T15:18:29.581Z [DEBUG] order-service - Database INSERT on payments - Execution time: 137ms - Rows affected: 70 - RequestID: 17te9jeoa99j +2025-06-18T15:18:29.681Z [INFO] notification-service - GET /api/v1/inventory - Status: 503 - Response time: 821ms - IP: 192.168.33.76 - User: user_1058 - RequestID: wjkdbhij4nj +2025-06-18T15:18:29.781Z [DEBUG] user-service - Auth event: logout - User: user_1005 - IP: 192.168.158.144 - RequestID: reiu0shak8 +2025-06-18T15:18:29.881Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 786ms - RequestID: c4tk7rk5ruu +2025-06-18T15:18:29.981Z [DEBUG] auth-service - GET /api/v1/users - Status: 201 - Response time: 1114ms - IP: 192.168.211.72 - User: user_1026 - RequestID: 5yms07h844 +2025-06-18T15:18:30.081Z [INFO] order-service - PUT /api/v1/payments - Status: 201 - Response time: 48ms - IP: 192.168.79.141 - User: user_1044 - RequestID: 36h1fwxj0u7 +2025-06-18T15:18:30.181Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 76ms - Rows affected: 43 - RequestID: tfbcyx1083 +2025-06-18T15:18:30.281Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 278ms - Rows affected: 4 - RequestID: pohl0ceeiws +2025-06-18T15:18:30.381Z [INFO] payment-service - POST /api/v1/auth/login - Status: 401 - Response time: 845ms - IP: 192.168.85.229 - User: user_1077 - RequestID: t9w08nzrax +2025-06-18T15:18:30.481Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 228ms - Rows affected: 83 - RequestID: 3mfhnoar5q6 +2025-06-18T15:18:30.581Z [INFO] notification-service - Auth event: logout - User: user_1018 - IP: 192.168.10.184 - RequestID: lzc7t45lda8 +2025-06-18T15:18:30.681Z [INFO] auth-service - Database DELETE on payments - Execution time: 364ms - Rows affected: 28 - RequestID: v6wqyfgd0id +2025-06-18T15:18:30.781Z [DEBUG] auth-service - Auth event: logout - User: user_1060 - IP: 192.168.227.233 - RequestID: d2voyn10gpb +2025-06-18T15:18:30.881Z [TRACE] auth-service - Operation: cache_miss - Processing time: 254ms - RequestID: un6sn7pyrac +2025-06-18T15:18:30.981Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 403 - Response time: 1873ms - IP: 192.168.81.206 - User: user_1097 - RequestID: mz7q7pltcbd +2025-06-18T15:18:31.081Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 200 - Response time: 389ms - IP: 192.168.100.240 - User: user_1053 - RequestID: mwg40fxxbmr +2025-06-18T15:18:31.181Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 217ms - Rows affected: 31 - RequestID: 8jv7ef8xqiy +2025-06-18T15:18:31.281Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 309ms - RequestID: wo54zcpqfyd +2025-06-18T15:18:31.381Z [INFO] order-service - Auth event: logout - User: user_1035 - IP: 192.168.64.33 - RequestID: hzhcu1upa5m +2025-06-18T15:18:31.481Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.68.158 - RequestID: ald53ydk8dd +2025-06-18T15:18:31.581Z [INFO] order-service - Auth event: password_change - User: user_1074 - IP: 192.168.32.38 - RequestID: sk0wx4uvexs +2025-06-18T15:18:31.681Z [INFO] auth-service - Database UPDATE on products - Execution time: 25ms - Rows affected: 58 - RequestID: mr633qxhyk8 +2025-06-18T15:18:31.781Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 174ms - RequestID: xm93ncx6yfg +2025-06-18T15:18:31.881Z [INFO] payment-service - Database DELETE on orders - Execution time: 463ms - Rows affected: 58 - RequestID: kqynsr2qh9 +2025-06-18T15:18:31.981Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.113.218 - RequestID: sf75y3pc2s +2025-06-18T15:18:32.081Z [TRACE] inventory-service - Database INSERT on sessions - Execution time: 235ms - Rows affected: 51 - RequestID: e2jt9mv38rs +2025-06-18T15:18:32.181Z [INFO] payment-service - Database SELECT on products - Execution time: 102ms - Rows affected: 2 - RequestID: j3wkhy9fwya +2025-06-18T15:18:32.281Z [INFO] order-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.11.60 - RequestID: d8so3qnwot +2025-06-18T15:18:32.381Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 7ms - Rows affected: 95 - RequestID: sq6u9jb1xy +2025-06-18T15:18:32.481Z [DEBUG] user-service - Operation: cache_hit - Processing time: 120ms - RequestID: mp4blmn5coe +2025-06-18T15:18:32.581Z [INFO] inventory-service - Operation: cache_hit - Processing time: 125ms - RequestID: ds8y4ylndib +2025-06-18T15:18:32.681Z [TRACE] auth-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.144.38 - RequestID: dj9z7oxnb6j +2025-06-18T15:18:32.781Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.170.215 - RequestID: miu3gym20vh +2025-06-18T15:18:32.881Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1515ms - IP: 192.168.104.37 - User: user_1019 - RequestID: 2prnpwc7tds +2025-06-18T15:18:32.981Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 63ms - RequestID: ljpbs8cn6b +2025-06-18T15:18:33.081Z [INFO] notification-service - Operation: payment_processed - Processing time: 832ms - RequestID: 1xx0puyjpcu +2025-06-18T15:18:33.181Z [DEBUG] user-service - Operation: order_created - Processing time: 442ms - RequestID: oy0ia076zh9 +2025-06-18T15:18:33.281Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 447ms - RequestID: 1v61vsafvq1 +2025-06-18T15:18:33.381Z [INFO] notification-service - Auth event: login_success - User: user_1071 - IP: 192.168.79.143 - RequestID: jf3yytzqtng +2025-06-18T15:18:33.481Z [INFO] auth-service - Auth event: logout - User: user_1085 - IP: 192.168.13.72 - RequestID: 2ozarjcfkhd +2025-06-18T15:18:33.581Z [DEBUG] user-service - Database INSERT on products - Execution time: 293ms - Rows affected: 87 - RequestID: sp5kx2bd1bp +2025-06-18T15:18:33.681Z [TRACE] inventory-service - Auth event: password_change - User: user_1047 - IP: 192.168.79.143 - RequestID: cuxcc5j9hwh +2025-06-18T15:18:33.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.235.117 - RequestID: kra94z3hxn +2025-06-18T15:18:33.881Z [INFO] order-service - Auth event: logout - User: user_1028 - IP: 192.168.81.206 - RequestID: e6fj9kz0s6u +2025-06-18T15:18:33.981Z [INFO] notification-service - Database UPDATE on products - Execution time: 283ms - Rows affected: 30 - RequestID: 0kinl5ovrqje +2025-06-18T15:18:34.081Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 195ms - Rows affected: 91 - RequestID: 1e8ru4uvczw +2025-06-18T15:18:34.181Z [TRACE] user-service - PUT /api/v1/inventory - Status: 502 - Response time: 975ms - IP: 192.168.229.123 - User: user_1023 - RequestID: p979tiyo8z +2025-06-18T15:18:34.281Z [DEBUG] notification-service - Operation: order_created - Processing time: 724ms - RequestID: 0bu1xhlb6pyo +2025-06-18T15:18:34.381Z [INFO] payment-service - Operation: cache_hit - Processing time: 926ms - RequestID: gyu9hi6gxp +2025-06-18T15:18:34.481Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.79.143 - RequestID: sa3pyh79urk +2025-06-18T15:18:34.581Z [INFO] notification-service - Operation: inventory_updated - Processing time: 267ms - RequestID: qkbfj25yxq +2025-06-18T15:18:34.681Z [DEBUG] user-service - Auth event: login_success - User: user_1002 - IP: 192.168.68.158 - RequestID: dej2t2lqr7t +2025-06-18T15:18:34.781Z [INFO] payment-service - Database DELETE on products - Execution time: 337ms - Rows affected: 66 - RequestID: 49zyeejvwag +2025-06-18T15:18:34.881Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 1032ms - RequestID: rg1sazjgk18 +2025-06-18T15:18:34.981Z [INFO] notification-service - Auth event: login_failed - User: user_1080 - IP: 192.168.229.123 - RequestID: 56wpqf6f0i2 +2025-06-18T15:18:35.081Z [INFO] notification-service - POST /api/v1/auth/login - Status: 201 - Response time: 454ms - IP: 192.168.13.72 - User: user_1013 - RequestID: pr9oaouef0d +2025-06-18T15:18:35.181Z [INFO] order-service - Database DELETE on users - Execution time: 242ms - Rows affected: 15 - RequestID: zfwksyfgpve +2025-06-18T15:18:35.281Z [INFO] notification-service - Database INSERT on products - Execution time: 389ms - Rows affected: 23 - RequestID: sgqv6mop3if +2025-06-18T15:18:35.381Z [TRACE] order-service - PUT /api/v1/payments - Status: 500 - Response time: 277ms - IP: 192.168.147.171 - User: user_1035 - RequestID: cnjdw6mv0me +2025-06-18T15:18:35.481Z [INFO] payment-service - PATCH /api/v1/orders - Status: 502 - Response time: 497ms - IP: 192.168.181.225 - User: user_1016 - RequestID: 75v1dl6hl6g +2025-06-18T15:18:35.581Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.11.60 - RequestID: p9sgiwzef7e +2025-06-18T15:18:35.681Z [TRACE] notification-service - Database INSERT on users - Execution time: 218ms - Rows affected: 35 - RequestID: 5lc2ycth71f +2025-06-18T15:18:35.781Z [TRACE] auth-service - Auth event: login_success - User: user_1056 - IP: 192.168.159.94 - RequestID: edb4wqkddtm +2025-06-18T15:18:35.881Z [TRACE] notification-service - PATCH /api/v1/payments - Status: 404 - Response time: 1909ms - IP: 192.168.133.7 - User: user_1058 - RequestID: 9ksjlew6dsv +2025-06-18T15:18:35.981Z [TRACE] notification-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.28.146 - RequestID: 3kyscz0sdn4 +2025-06-18T15:18:36.081Z [INFO] notification-service - Operation: webhook_sent - Processing time: 792ms - RequestID: vvz6gnakbes +2025-06-18T15:18:36.181Z [INFO] inventory-service - Database INSERT on users - Execution time: 410ms - Rows affected: 11 - RequestID: l3opcof7sd +2025-06-18T15:18:36.281Z [DEBUG] inventory-service - Operation: order_created - Processing time: 96ms - RequestID: yvvhv63ffrk +2025-06-18T15:18:36.381Z [INFO] payment-service - Operation: order_created - Processing time: 953ms - RequestID: 1tvnzku6inq +2025-06-18T15:18:36.481Z [TRACE] user-service - Auth event: login_success - User: user_1026 - IP: 192.168.44.5 - RequestID: ikr80kavub +2025-06-18T15:18:36.581Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1926ms - IP: 192.168.147.171 - User: user_1007 - RequestID: z62aiwxxpi +2025-06-18T15:18:36.681Z [TRACE] notification-service - Auth event: password_change - User: user_1053 - IP: 192.168.11.60 - RequestID: hyp6qrrdavj +2025-06-18T15:18:36.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.79.143 - RequestID: 5pgc3j76z8c +2025-06-18T15:18:36.881Z [TRACE] order-service - Operation: cache_hit - Processing time: 461ms - RequestID: r5dxtg4iou +2025-06-18T15:18:36.981Z [INFO] order-service - PATCH /api/v1/inventory - Status: 502 - Response time: 927ms - IP: 192.168.159.94 - User: user_1098 - RequestID: cf7dsmho0ak +2025-06-18T15:18:37.081Z [INFO] notification-service - Auth event: login_success - User: user_1041 - IP: 192.168.138.123 - RequestID: jl9utc86lep +2025-06-18T15:18:37.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.159.94 - RequestID: 02p4mziynhb2 +2025-06-18T15:18:37.281Z [INFO] inventory-service - Operation: order_created - Processing time: 618ms - RequestID: tkbrsbjtfrh +2025-06-18T15:18:37.381Z [TRACE] user-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.181.225 - RequestID: wkgb1zllg3k +2025-06-18T15:18:37.481Z [DEBUG] order-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.138.123 - RequestID: ciujovth3h6 +2025-06-18T15:18:37.581Z [TRACE] order-service - POST /api/v1/users - Status: 502 - Response time: 293ms - IP: 192.168.79.141 - User: user_1000 - RequestID: 0u46p39m1anl +2025-06-18T15:18:37.681Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 87ms - RequestID: 0tvmjmxr4z7o +2025-06-18T15:18:37.781Z [TRACE] order-service - Operation: notification_queued - Processing time: 607ms - RequestID: rngevk3b49r +2025-06-18T15:18:37.881Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 287ms - Rows affected: 65 - RequestID: f5huxuz94n +2025-06-18T15:18:37.981Z [INFO] user-service - Database UPDATE on payments - Execution time: 424ms - Rows affected: 5 - RequestID: molszcagzok +2025-06-18T15:18:38.081Z [TRACE] order-service - Operation: order_created - Processing time: 495ms - RequestID: k7xalki344 +2025-06-18T15:18:38.181Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 257ms - RequestID: 7ddzej71ab3 +2025-06-18T15:18:38.281Z [TRACE] user-service - Database SELECT on orders - Execution time: 356ms - Rows affected: 41 - RequestID: kirek0g5g3q +2025-06-18T15:18:38.381Z [INFO] payment-service - Auth event: login_failed - User: user_1096 - IP: 192.168.227.233 - RequestID: 1j0rg7gzksv +2025-06-18T15:18:38.481Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 502 - Response time: 532ms - IP: 192.168.240.169 - User: user_1073 - RequestID: l4cp0a8tss +2025-06-18T15:18:38.581Z [INFO] auth-service - Database SELECT on orders - Execution time: 410ms - Rows affected: 5 - RequestID: 052q6unvsrdq +2025-06-18T15:18:38.681Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 201 - Response time: 206ms - IP: 192.168.11.60 - User: user_1050 - RequestID: uhp1ljd3e3i +2025-06-18T15:18:38.781Z [INFO] payment-service - Auth event: password_change - User: user_1052 - IP: 192.168.138.123 - RequestID: v4ttbql5k9 +2025-06-18T15:18:38.881Z [TRACE] user-service - POST /api/v1/inventory - Status: 500 - Response time: 1757ms - IP: 192.168.144.38 - User: user_1020 - RequestID: p5hyhhio73 +2025-06-18T15:18:38.981Z [INFO] order-service - PUT /api/v1/payments - Status: 403 - Response time: 61ms - IP: 192.168.36.218 - User: user_1008 - RequestID: 4tik7l2eb2m +2025-06-18T15:18:39.081Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 202ms - Rows affected: 15 - RequestID: 53djywohr7w +2025-06-18T15:18:39.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 449ms - RequestID: kz9c3f511ef +2025-06-18T15:18:39.281Z [DEBUG] auth-service - GET /api/v1/orders - Status: 502 - Response time: 1361ms - IP: 192.168.235.117 - User: user_1031 - RequestID: bodobobf1r7 +2025-06-18T15:18:39.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.187.199 - RequestID: xf12y1tygq +2025-06-18T15:18:39.481Z [INFO] notification-service - Auth event: logout - User: user_1077 - IP: 192.168.64.33 - RequestID: 1kponf6ng65 +2025-06-18T15:18:39.581Z [TRACE] user-service - Auth event: password_change - User: user_1063 - IP: 192.168.33.76 - RequestID: c9shaf40fkk +2025-06-18T15:18:39.681Z [INFO] auth-service - Operation: cache_miss - Processing time: 604ms - RequestID: det3znshgv +2025-06-18T15:18:39.781Z [INFO] notification-service - POST /api/v1/inventory - Status: 500 - Response time: 458ms - IP: 192.168.64.33 - User: user_1048 - RequestID: 6wyntq1z2hs +2025-06-18T15:18:39.881Z [TRACE] user-service - Auth event: login_success - User: user_1014 - IP: 192.168.31.117 - RequestID: i5xeozfxft +2025-06-18T15:18:39.981Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 446ms - Rows affected: 97 - RequestID: 2bjj7v29og5 +2025-06-18T15:18:40.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 511ms - RequestID: 63chmmuvrgo +2025-06-18T15:18:40.181Z [TRACE] notification-service - Operation: order_created - Processing time: 62ms - RequestID: h8prl0brkbp +2025-06-18T15:18:40.281Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 404 - Response time: 1020ms - IP: 192.168.240.169 - User: user_1009 - RequestID: f7s140vi5ta +2025-06-18T15:18:40.381Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 889ms - RequestID: 3hxpli1xvxa +2025-06-18T15:18:40.481Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 455ms - RequestID: i82vaot5uei +2025-06-18T15:18:40.581Z [TRACE] user-service - POST /api/v1/auth/login - Status: 502 - Response time: 396ms - IP: 192.168.147.171 - User: user_1028 - RequestID: ty8jq1f8w3b +2025-06-18T15:18:40.681Z [INFO] inventory-service - Database INSERT on orders - Execution time: 201ms - Rows affected: 31 - RequestID: wp3dh81hsqd +2025-06-18T15:18:40.781Z [TRACE] auth-service - Operation: cache_miss - Processing time: 244ms - RequestID: 0oe2n2haglwc +2025-06-18T15:18:40.881Z [INFO] inventory-service - Database DELETE on orders - Execution time: 406ms - Rows affected: 1 - RequestID: vhsvdojhi +2025-06-18T15:18:40.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.181.225 - RequestID: ew6mop7vbxl +2025-06-18T15:18:41.081Z [DEBUG] order-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.31.117 - RequestID: rre2szveqjs +2025-06-18T15:18:41.181Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 500 - Response time: 233ms - IP: 192.168.211.72 - User: user_1000 - RequestID: fzbzlj6olud +2025-06-18T15:18:41.281Z [TRACE] user-service - Database INSERT on users - Execution time: 447ms - Rows affected: 82 - RequestID: j2o07qbap0q +2025-06-18T15:18:41.381Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 832ms - RequestID: h4ebeh1lzda +2025-06-18T15:18:41.481Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 438ms - IP: 192.168.36.218 - User: user_1028 - RequestID: gdb67bng8e +2025-06-18T15:18:41.581Z [TRACE] auth-service - Database UPDATE on products - Execution time: 244ms - Rows affected: 2 - RequestID: 8hmgavbmlfi +2025-06-18T15:18:41.681Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 404 - Response time: 638ms - IP: 192.168.196.226 - User: user_1048 - RequestID: keo649vwytf +2025-06-18T15:18:41.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1091 - IP: 192.168.53.133 - RequestID: kd8h8xr36gd +2025-06-18T15:18:41.881Z [TRACE] user-service - Operation: cache_hit - Processing time: 101ms - RequestID: 9o4wn0lgtb +2025-06-18T15:18:41.981Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 479ms - IP: 192.168.229.123 - User: user_1067 - RequestID: n14gipb6cm +2025-06-18T15:18:42.081Z [INFO] order-service - PATCH /api/v1/payments - Status: 401 - Response time: 797ms - IP: 192.168.64.33 - User: user_1026 - RequestID: 0ji521ax147q +2025-06-18T15:18:42.181Z [TRACE] user-service - Operation: order_created - Processing time: 366ms - RequestID: 7icdh678mmu +2025-06-18T15:18:42.281Z [INFO] auth-service - Database INSERT on orders - Execution time: 285ms - Rows affected: 22 - RequestID: 63i1nmsi3ex +2025-06-18T15:18:42.381Z [DEBUG] order-service - Database DELETE on users - Execution time: 336ms - Rows affected: 98 - RequestID: 1gxvecdehek +2025-06-18T15:18:42.481Z [INFO] user-service - Database DELETE on users - Execution time: 408ms - Rows affected: 84 - RequestID: dpnc017o5rr +2025-06-18T15:18:42.581Z [TRACE] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 422ms - IP: 192.168.242.165 - User: user_1083 - RequestID: 1jinxkxru79 +2025-06-18T15:18:42.681Z [DEBUG] notification-service - Database DELETE on users - Execution time: 179ms - Rows affected: 19 - RequestID: t2bi4mnzk2s +2025-06-18T15:18:42.781Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 694ms - RequestID: daqjvevazsj +2025-06-18T15:18:42.881Z [TRACE] payment-service - Auth event: login_failed - User: user_1084 - IP: 192.168.229.123 - RequestID: 1xfn98trhn5 +2025-06-18T15:18:42.981Z [TRACE] order-service - Auth event: login_failed - User: user_1032 - IP: 192.168.196.226 - RequestID: d6qmrxd991m +2025-06-18T15:18:43.081Z [INFO] user-service - Operation: cache_miss - Processing time: 105ms - RequestID: usds322m259 +2025-06-18T15:18:43.181Z [INFO] notification-service - Database DELETE on orders - Execution time: 16ms - Rows affected: 12 - RequestID: 81wb510iy2u +2025-06-18T15:18:43.281Z [INFO] auth-service - Operation: order_created - Processing time: 140ms - RequestID: x8flu1u586i +2025-06-18T15:18:43.381Z [DEBUG] auth-service - Database SELECT on users - Execution time: 279ms - Rows affected: 10 - RequestID: 7e8v9bcslgh +2025-06-18T15:18:43.481Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 305ms - Rows affected: 25 - RequestID: ywrjb8cea8 +2025-06-18T15:18:43.581Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 403 - Response time: 691ms - IP: 192.168.141.100 - User: user_1076 - RequestID: 9pu4h05pi6 +2025-06-18T15:18:43.681Z [INFO] user-service - Database DELETE on orders - Execution time: 457ms - Rows affected: 14 - RequestID: xi2gbrv5bm +2025-06-18T15:18:43.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1098 - IP: 192.168.227.233 - RequestID: sreifca191 +2025-06-18T15:18:43.881Z [TRACE] order-service - PATCH /api/v1/payments - Status: 201 - Response time: 630ms - IP: 192.168.113.218 - User: user_1071 - RequestID: o8jr0o1ccgo +2025-06-18T15:18:43.981Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 401 - Response time: 1215ms - IP: 192.168.32.38 - User: user_1017 - RequestID: yn4bu9sol48 +2025-06-18T15:18:44.081Z [DEBUG] auth-service - Operation: email_sent - Processing time: 271ms - RequestID: r37emqkm1og +2025-06-18T15:18:44.181Z [INFO] payment-service - PUT /api/v1/users - Status: 500 - Response time: 819ms - IP: 192.168.133.7 - User: user_1076 - RequestID: y9lnrni950g +2025-06-18T15:18:44.281Z [INFO] order-service - PUT /api/v1/users - Status: 404 - Response time: 1680ms - IP: 192.168.113.218 - User: user_1083 - RequestID: 8uzyzy2fct3 +2025-06-18T15:18:44.381Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1014ms - IP: 192.168.247.134 - User: user_1020 - RequestID: 5qsbaiijb36 +2025-06-18T15:18:44.481Z [TRACE] auth-service - Operation: cache_miss - Processing time: 962ms - RequestID: cucrc6jnuqg +2025-06-18T15:18:44.581Z [TRACE] payment-service - PUT /api/v1/payments - Status: 404 - Response time: 1610ms - IP: 192.168.229.123 - User: user_1086 - RequestID: ga9uq49qyyv +2025-06-18T15:18:44.681Z [INFO] auth-service - Auth event: password_change - User: user_1021 - IP: 192.168.227.233 - RequestID: abdk3hmrp1k +2025-06-18T15:18:44.781Z [DEBUG] notification-service - Auth event: logout - User: user_1094 - IP: 192.168.31.117 - RequestID: 44nxewmyljb +2025-06-18T15:18:44.881Z [DEBUG] auth-service - POST /api/v1/users - Status: 403 - Response time: 1118ms - IP: 192.168.194.41 - User: user_1024 - RequestID: 57cgkvgk6hd +2025-06-18T15:18:44.981Z [DEBUG] user-service - Auth event: login_success - User: user_1049 - IP: 192.168.53.133 - RequestID: e9f8jd23i56 +2025-06-18T15:18:45.081Z [DEBUG] order-service - PUT /api/v1/orders - Status: 401 - Response time: 280ms - IP: 192.168.141.100 - User: user_1089 - RequestID: c7ejcsgsbc +2025-06-18T15:18:45.181Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 201 - Response time: 918ms - IP: 192.168.159.94 - User: user_1023 - RequestID: o1myxijkf8 +2025-06-18T15:18:45.281Z [INFO] auth-service - Auth event: logout - User: user_1099 - IP: 192.168.10.184 - RequestID: xc603qx6gt +2025-06-18T15:18:45.381Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1372ms - IP: 192.168.141.100 - User: user_1083 - RequestID: 7ou4dtbc923 +2025-06-18T15:18:45.481Z [TRACE] notification-service - Operation: email_sent - Processing time: 407ms - RequestID: udcvkv8fnm +2025-06-18T15:18:45.581Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 401 - Response time: 1256ms - IP: 192.168.31.117 - User: user_1047 - RequestID: pclk9wc94ho +2025-06-18T15:18:45.681Z [TRACE] order-service - PUT /api/v1/payments - Status: 404 - Response time: 1408ms - IP: 192.168.159.94 - User: user_1076 - RequestID: c9s4751hrom +2025-06-18T15:18:45.781Z [TRACE] inventory-service - Auth event: logout - User: user_1046 - IP: 192.168.30.79 - RequestID: sggj1h4nlvm +2025-06-18T15:18:45.881Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 713ms - RequestID: derxcn4dejn +2025-06-18T15:18:45.981Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 655ms - RequestID: sfz9fdq369d +2025-06-18T15:18:46.081Z [INFO] order-service - Database SELECT on products - Execution time: 355ms - Rows affected: 32 - RequestID: 7i2upoyzwbt +2025-06-18T15:18:46.181Z [INFO] payment-service - Auth event: token_refresh - User: user_1056 - IP: 192.168.32.38 - RequestID: o3oybdttbl +2025-06-18T15:18:46.281Z [TRACE] order-service - POST /api/v1/inventory - Status: 404 - Response time: 519ms - IP: 192.168.138.123 - User: user_1004 - RequestID: 3v3hcrn0diq +2025-06-18T15:18:46.381Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 304ms - Rows affected: 83 - RequestID: n1ej4lxyzqk +2025-06-18T15:18:46.481Z [INFO] notification-service - Database INSERT on users - Execution time: 408ms - Rows affected: 96 - RequestID: 9pxwfgbvian +2025-06-18T15:18:46.581Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 201 - Response time: 757ms - IP: 192.168.170.215 - User: user_1040 - RequestID: irxdk8mf1e +2025-06-18T15:18:46.681Z [TRACE] user-service - Auth event: password_change - User: user_1027 - IP: 192.168.68.158 - RequestID: 5bosrojrum5 +2025-06-18T15:18:46.781Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 137ms - RequestID: 3ah17lz4zk5 +2025-06-18T15:18:46.881Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 500 - Response time: 462ms - IP: 192.168.144.38 - User: user_1032 - RequestID: 2ez7u72lm8q +2025-06-18T15:18:46.981Z [INFO] auth-service - Database DELETE on payments - Execution time: 122ms - Rows affected: 84 - RequestID: qov6gg45il9 +2025-06-18T15:18:47.081Z [DEBUG] order-service - Operation: cache_hit - Processing time: 737ms - RequestID: j3yppgxt5zq +2025-06-18T15:18:47.181Z [INFO] order-service - PUT /api/v1/payments - Status: 400 - Response time: 1865ms - IP: 192.168.11.60 - User: user_1014 - RequestID: 8zkod602xrw +2025-06-18T15:18:47.281Z [INFO] user-service - Database UPDATE on products - Execution time: 75ms - Rows affected: 14 - RequestID: 75l45c9fnhp +2025-06-18T15:18:47.381Z [INFO] user-service - Operation: email_sent - Processing time: 762ms - RequestID: 8v8yih97746 +2025-06-18T15:18:47.481Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 311ms - Rows affected: 21 - RequestID: 76ij6sdktz7 +2025-06-18T15:18:47.581Z [TRACE] inventory-service - POST /api/v1/users - Status: 502 - Response time: 1078ms - IP: 192.168.68.158 - User: user_1060 - RequestID: 98pjtuenej +2025-06-18T15:18:47.681Z [TRACE] order-service - Database DELETE on sessions - Execution time: 284ms - Rows affected: 73 - RequestID: bfckiijqn4o +2025-06-18T15:18:47.781Z [TRACE] notification-service - Operation: order_created - Processing time: 677ms - RequestID: q0qys7ls2tl +2025-06-18T15:18:47.881Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 503 - Response time: 1614ms - IP: 192.168.194.41 - User: user_1036 - RequestID: ha86fdkg1xo +2025-06-18T15:18:47.981Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 990ms - RequestID: 1csdgxneqtq +2025-06-18T15:18:48.081Z [DEBUG] auth-service - Database SELECT on users - Execution time: 232ms - Rows affected: 1 - RequestID: x5762gelgv +2025-06-18T15:18:48.181Z [TRACE] payment-service - Database SELECT on orders - Execution time: 239ms - Rows affected: 56 - RequestID: yckuts75vm +2025-06-18T15:18:48.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 935ms - RequestID: 8uym5vdagb6 +2025-06-18T15:18:48.381Z [INFO] inventory-service - DELETE /api/v1/users - Status: 404 - Response time: 656ms - IP: 192.168.170.215 - User: user_1069 - RequestID: cibnzg3khce +2025-06-18T15:18:48.481Z [DEBUG] user-service - Auth event: logout - User: user_1074 - IP: 192.168.113.218 - RequestID: 358kuujpmz +2025-06-18T15:18:48.581Z [DEBUG] order-service - Auth event: login_failed - User: user_1072 - IP: 192.168.46.63 - RequestID: hdjhow1h396 +2025-06-18T15:18:48.681Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 119ms - RequestID: rirz54qfxm +2025-06-18T15:18:48.781Z [INFO] notification-service - Auth event: login_failed - User: user_1090 - IP: 192.168.44.5 - RequestID: keguuu71c0e +2025-06-18T15:18:48.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 416ms - RequestID: 6ca2nkdbn2j +2025-06-18T15:18:48.981Z [TRACE] payment-service - Database SELECT on orders - Execution time: 109ms - Rows affected: 85 - RequestID: 3nm5x4vo7q1 +2025-06-18T15:18:49.081Z [TRACE] auth-service - Auth event: login_success - User: user_1000 - IP: 192.168.68.158 - RequestID: 959svhzjr26 +2025-06-18T15:18:49.181Z [INFO] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 811ms - IP: 192.168.187.199 - User: user_1065 - RequestID: l36i4h80od +2025-06-18T15:18:49.281Z [INFO] notification-service - Database INSERT on users - Execution time: 400ms - Rows affected: 97 - RequestID: vaaay0fwoi +2025-06-18T15:18:49.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 780ms - RequestID: 7oa6egkwmw +2025-06-18T15:18:49.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.187.199 - RequestID: nzbbps7ztt +2025-06-18T15:18:49.581Z [TRACE] inventory-service - Database INSERT on users - Execution time: 298ms - Rows affected: 48 - RequestID: 9ejmr4e8znv +2025-06-18T15:18:49.681Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 404 - Response time: 356ms - IP: 192.168.85.229 - User: user_1005 - RequestID: xh8kaur6w9b +2025-06-18T15:18:49.781Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 500 - Response time: 1991ms - IP: 192.168.13.72 - User: user_1022 - RequestID: awi7zbv9riu +2025-06-18T15:18:49.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1026 - IP: 192.168.189.103 - RequestID: rkhuon5p8k +2025-06-18T15:18:49.981Z [TRACE] notification-service - PUT /api/v1/payments - Status: 503 - Response time: 423ms - IP: 192.168.1.152 - User: user_1005 - RequestID: qvgjcn42hpd +2025-06-18T15:18:50.081Z [INFO] payment-service - Database DELETE on sessions - Execution time: 293ms - Rows affected: 92 - RequestID: 8z1feu2v3qv +2025-06-18T15:18:50.181Z [TRACE] notification-service - Operation: payment_processed - Processing time: 1001ms - RequestID: js18x4mrrw +2025-06-18T15:18:50.281Z [TRACE] notification-service - Operation: notification_queued - Processing time: 1036ms - RequestID: 0jtekt7oretl +2025-06-18T15:18:50.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.227.77 - RequestID: u2mkezfrrqo +2025-06-18T15:18:50.481Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 201 - Response time: 1512ms - IP: 192.168.30.79 - User: user_1012 - RequestID: z8gkz5h74z +2025-06-18T15:18:50.581Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 201 - Response time: 1385ms - IP: 192.168.158.144 - User: user_1076 - RequestID: g56rzu5atp +2025-06-18T15:18:50.681Z [TRACE] auth-service - Database UPDATE on users - Execution time: 74ms - Rows affected: 20 - RequestID: shybaq96p6g +2025-06-18T15:18:50.781Z [TRACE] payment-service - Operation: email_sent - Processing time: 676ms - RequestID: csykbhpzlsv +2025-06-18T15:18:50.881Z [INFO] notification-service - PATCH /api/v1/orders - Status: 403 - Response time: 1213ms - IP: 192.168.187.199 - User: user_1043 - RequestID: wd57xtsm2eg +2025-06-18T15:18:50.981Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 353ms - Rows affected: 0 - RequestID: 4w2749eofd6 +2025-06-18T15:18:51.081Z [TRACE] order-service - Operation: notification_queued - Processing time: 408ms - RequestID: o7bdt8p5s2 +2025-06-18T15:18:51.181Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1276ms - IP: 192.168.79.143 - User: user_1032 - RequestID: 2n8v4pgw56h +2025-06-18T15:18:51.281Z [INFO] auth-service - Auth event: password_change - User: user_1043 - IP: 192.168.100.240 - RequestID: u70j3ll2vte +2025-06-18T15:18:51.381Z [INFO] notification-service - Operation: payment_processed - Processing time: 769ms - RequestID: rm9lzproqbg +2025-06-18T15:18:51.481Z [INFO] user-service - Database UPDATE on orders - Execution time: 168ms - Rows affected: 13 - RequestID: ct19zwu1d6d +2025-06-18T15:18:51.581Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 200 - Response time: 896ms - IP: 192.168.227.233 - User: user_1036 - RequestID: oletu0gqyuh +2025-06-18T15:18:51.681Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 341ms - Rows affected: 91 - RequestID: 7zhz4skwg6t +2025-06-18T15:18:51.781Z [INFO] inventory-service - Database SELECT on users - Execution time: 146ms - Rows affected: 45 - RequestID: 46pcvduvzxb +2025-06-18T15:18:51.881Z [TRACE] inventory-service - GET /api/v1/users - Status: 404 - Response time: 1408ms - IP: 192.168.194.41 - User: user_1065 - RequestID: pyyrdk7mbb +2025-06-18T15:18:51.981Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 209ms - Rows affected: 67 - RequestID: 4zbfvo50t2r +2025-06-18T15:18:52.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.227.77 - RequestID: wnww790fku8 +2025-06-18T15:18:52.181Z [DEBUG] inventory-service - Auth event: logout - User: user_1012 - IP: 192.168.247.134 - RequestID: gs0omucoyxj +2025-06-18T15:18:52.281Z [INFO] order-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.232.72 - RequestID: a5v1kafcpe +2025-06-18T15:18:52.381Z [DEBUG] user-service - Operation: email_sent - Processing time: 334ms - RequestID: yyy6duhvsjn +2025-06-18T15:18:52.481Z [DEBUG] user-service - POST /api/v1/payments - Status: 401 - Response time: 303ms - IP: 192.168.159.94 - User: user_1078 - RequestID: utgupvv33ae +2025-06-18T15:18:52.581Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 408ms - Rows affected: 63 - RequestID: dx9yslza00d +2025-06-18T15:18:52.681Z [DEBUG] order-service - Operation: notification_queued - Processing time: 994ms - RequestID: vgftvg613rj +2025-06-18T15:18:52.781Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 500 - Response time: 1321ms - IP: 192.168.174.114 - User: user_1051 - RequestID: bsenw5hyg4b +2025-06-18T15:18:52.881Z [TRACE] user-service - GET /api/v1/users - Status: 502 - Response time: 1927ms - IP: 192.168.158.144 - User: user_1095 - RequestID: 77yy5dv1k4j +2025-06-18T15:18:52.981Z [TRACE] order-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.158.144 - RequestID: bbn02i19guc +2025-06-18T15:18:53.081Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 193ms - Rows affected: 62 - RequestID: 9bz1k69byhn +2025-06-18T15:18:53.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 326ms - RequestID: z4odrxpj7p9 +2025-06-18T15:18:53.281Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 1453ms - IP: 192.168.167.32 - User: user_1053 - RequestID: lmgtu8wmx2a +2025-06-18T15:18:53.381Z [DEBUG] auth-service - Database SELECT on products - Execution time: 416ms - Rows affected: 36 - RequestID: dez8e096qx +2025-06-18T15:18:53.481Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1453ms - IP: 192.168.46.63 - User: user_1002 - RequestID: hip6tejr4mq +2025-06-18T15:18:53.581Z [INFO] inventory-service - Operation: cache_miss - Processing time: 490ms - RequestID: kdi56qhmaxq +2025-06-18T15:18:53.681Z [INFO] notification-service - Operation: notification_queued - Processing time: 414ms - RequestID: h3ejw1w8h65 +2025-06-18T15:18:53.781Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 503 - Response time: 556ms - IP: 192.168.247.134 - User: user_1064 - RequestID: neni62daee +2025-06-18T15:18:53.881Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 412ms - Rows affected: 99 - RequestID: ea2jnv12qn +2025-06-18T15:18:53.981Z [TRACE] inventory-service - Database DELETE on products - Execution time: 170ms - Rows affected: 40 - RequestID: vdpf12ny5q +2025-06-18T15:18:54.081Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 694ms - RequestID: 3llfqgz2d4d +2025-06-18T15:18:54.181Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 45ms - IP: 192.168.229.123 - User: user_1096 - RequestID: yvt980fryos +2025-06-18T15:18:54.281Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 503 - Response time: 452ms - IP: 192.168.170.215 - User: user_1099 - RequestID: 6icsj925ooh +2025-06-18T15:18:54.381Z [INFO] order-service - Operation: email_sent - Processing time: 112ms - RequestID: fvlzj30yxre +2025-06-18T15:18:54.481Z [INFO] order-service - GET /api/v1/users - Status: 401 - Response time: 1573ms - IP: 192.168.227.77 - User: user_1012 - RequestID: fafxlcob48n +2025-06-18T15:18:54.581Z [INFO] notification-service - DELETE /api/v1/orders - Status: 200 - Response time: 263ms - IP: 192.168.235.117 - User: user_1067 - RequestID: 88aqwbijquk +2025-06-18T15:18:54.681Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1663ms - IP: 192.168.14.77 - User: user_1063 - RequestID: bn6xnttx6nn +2025-06-18T15:18:54.781Z [TRACE] notification-service - Auth event: password_change - User: user_1069 - IP: 192.168.159.94 - RequestID: nbp54vuk2jn +2025-06-18T15:18:54.881Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 131ms - Rows affected: 10 - RequestID: 46u1qq61y2o +2025-06-18T15:18:54.981Z [TRACE] user-service - Database INSERT on products - Execution time: 254ms - Rows affected: 54 - RequestID: n6rw328omf7 +2025-06-18T15:18:55.081Z [INFO] auth-service - DELETE /api/v1/users - Status: 200 - Response time: 477ms - IP: 192.168.227.77 - User: user_1031 - RequestID: aar1mml5xpr +2025-06-18T15:18:55.181Z [INFO] notification-service - Database INSERT on products - Execution time: 314ms - Rows affected: 74 - RequestID: 1lwfeha9nldh +2025-06-18T15:18:55.281Z [TRACE] inventory-service - Auth event: logout - User: user_1088 - IP: 192.168.100.240 - RequestID: 4gwmp4eu50w +2025-06-18T15:18:55.381Z [DEBUG] notification-service - Auth event: login_failed - User: user_1038 - IP: 192.168.85.229 - RequestID: xb7gohs3bfl +2025-06-18T15:18:55.481Z [TRACE] user-service - Operation: cache_miss - Processing time: 64ms - RequestID: qq8vcqykcm +2025-06-18T15:18:55.581Z [TRACE] notification-service - Operation: cache_hit - Processing time: 460ms - RequestID: qpbhw665w +2025-06-18T15:18:55.681Z [TRACE] auth-service - Auth event: login_success - User: user_1030 - IP: 192.168.36.218 - RequestID: ifx34tiznn +2025-06-18T15:18:55.781Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 503 - Response time: 212ms - IP: 192.168.247.134 - User: user_1090 - RequestID: rhy5qska4fq +2025-06-18T15:18:55.881Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 88ms - Rows affected: 43 - RequestID: 9iu377m3jc +2025-06-18T15:18:55.981Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1346ms - IP: 192.168.85.229 - User: user_1011 - RequestID: so81j4yjuj8 +2025-06-18T15:18:56.081Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.85.229 - RequestID: 2cbowv11ikj +2025-06-18T15:18:56.181Z [TRACE] auth-service - Database DELETE on payments - Execution time: 459ms - Rows affected: 12 - RequestID: 5s8ysvg2466 +2025-06-18T15:18:56.281Z [TRACE] inventory-service - Operation: order_created - Processing time: 513ms - RequestID: kf7h90anhd +2025-06-18T15:18:56.381Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 427ms - Rows affected: 82 - RequestID: olwq5nn1bmc +2025-06-18T15:18:56.481Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 757ms - RequestID: zadzvccys0k +2025-06-18T15:18:56.581Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 401 - Response time: 1893ms - IP: 192.168.85.229 - User: user_1052 - RequestID: pb3zar2d22 +2025-06-18T15:18:56.681Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 139ms - RequestID: 8351h2ztbqv +2025-06-18T15:18:56.781Z [INFO] notification-service - DELETE /api/v1/orders - Status: 201 - Response time: 275ms - IP: 192.168.227.77 - User: user_1062 - RequestID: p20uzeiupem +2025-06-18T15:18:56.881Z [INFO] inventory-service - Database SELECT on products - Execution time: 364ms - Rows affected: 14 - RequestID: xzzdledzfor +2025-06-18T15:18:56.981Z [INFO] payment-service - Auth event: logout - User: user_1086 - IP: 192.168.104.37 - RequestID: ti6m5t2cln +2025-06-18T15:18:57.081Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 401 - Response time: 236ms - IP: 192.168.31.117 - User: user_1035 - RequestID: lnfffevvljr +2025-06-18T15:18:57.181Z [TRACE] order-service - POST /api/v1/payments - Status: 500 - Response time: 422ms - IP: 192.168.14.77 - User: user_1082 - RequestID: r2gb60mqk6a +2025-06-18T15:18:57.281Z [INFO] user-service - GET /api/v1/auth/login - Status: 201 - Response time: 630ms - IP: 192.168.227.233 - User: user_1016 - RequestID: pbfy82aakv +2025-06-18T15:18:57.381Z [INFO] payment-service - Auth event: login_failed - User: user_1066 - IP: 192.168.79.116 - RequestID: upayz9ktxqd +2025-06-18T15:18:57.481Z [TRACE] inventory-service - Auth event: logout - User: user_1032 - IP: 192.168.189.103 - RequestID: 1c5bf142qzm +2025-06-18T15:18:57.581Z [INFO] notification-service - Database SELECT on users - Execution time: 259ms - Rows affected: 29 - RequestID: vcsrehlqd3 +2025-06-18T15:18:57.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.211.72 - RequestID: 5z6g7jrkkvb +2025-06-18T15:18:57.781Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1568ms - IP: 192.168.170.215 - User: user_1027 - RequestID: g7dom6v4c2c +2025-06-18T15:18:57.881Z [INFO] user-service - PUT /api/v1/payments - Status: 403 - Response time: 1328ms - IP: 192.168.211.72 - User: user_1068 - RequestID: mgqm9sv4n0c +2025-06-18T15:18:57.981Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 403 - Response time: 774ms - IP: 192.168.147.171 - User: user_1003 - RequestID: 2pmar4f0jw3 +2025-06-18T15:18:58.081Z [DEBUG] auth-service - Auth event: logout - User: user_1013 - IP: 192.168.97.87 - RequestID: ljpeag6q2mj +2025-06-18T15:18:58.181Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1107ms - IP: 192.168.211.72 - User: user_1000 - RequestID: xinlv8x75h +2025-06-18T15:18:58.281Z [DEBUG] order-service - Auth event: logout - User: user_1013 - IP: 192.168.167.32 - RequestID: 2dnpsc3sc5s +2025-06-18T15:18:58.381Z [TRACE] notification-service - Database DELETE on users - Execution time: 116ms - Rows affected: 25 - RequestID: l8tsizqefgm +2025-06-18T15:18:58.481Z [INFO] auth-service - Auth event: login_success - User: user_1091 - IP: 192.168.159.94 - RequestID: c793jvev2t8 +2025-06-18T15:18:58.581Z [TRACE] user-service - Database SELECT on payments - Execution time: 213ms - Rows affected: 69 - RequestID: o58d21ccokq +2025-06-18T15:18:58.681Z [INFO] notification-service - Database UPDATE on payments - Execution time: 40ms - Rows affected: 97 - RequestID: i4xkpgrej79 +2025-06-18T15:18:58.781Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 331ms - Rows affected: 11 - RequestID: wo3dvp8ykql +2025-06-18T15:18:58.881Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 332ms - Rows affected: 70 - RequestID: yawkopkg1fo +2025-06-18T15:18:58.981Z [TRACE] inventory-service - Operation: email_sent - Processing time: 436ms - RequestID: ydnu1k07h +2025-06-18T15:18:59.081Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 37ms - Rows affected: 54 - RequestID: j9bkm65hj09 +2025-06-18T15:18:59.181Z [INFO] notification-service - DELETE /api/v1/payments - Status: 201 - Response time: 1767ms - IP: 192.168.28.146 - User: user_1097 - RequestID: eyspau7sgt +2025-06-18T15:18:59.281Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 63ms - Rows affected: 7 - RequestID: pv4psmghv1a +2025-06-18T15:18:59.381Z [INFO] user-service - Database INSERT on sessions - Execution time: 313ms - Rows affected: 66 - RequestID: 1wdwfwdn1gf +2025-06-18T15:18:59.481Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 288ms - RequestID: qswtvaax7ur +2025-06-18T15:18:59.581Z [INFO] user-service - Auth event: login_success - User: user_1095 - IP: 192.168.181.225 - RequestID: og29el5p3s +2025-06-18T15:18:59.681Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 225ms - Rows affected: 95 - RequestID: 2w1eipwub1n +2025-06-18T15:18:59.781Z [INFO] user-service - Database INSERT on payments - Execution time: 143ms - Rows affected: 81 - RequestID: hmj7przdgms +2025-06-18T15:18:59.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1063 - IP: 192.168.79.143 - RequestID: akt9rm6wj5w +2025-06-18T15:18:59.981Z [INFO] auth-service - Database SELECT on sessions - Execution time: 362ms - Rows affected: 74 - RequestID: w6ol1aon79o +2025-06-18T15:19:00.081Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.32.38 - RequestID: d46sc2gfrpr +2025-06-18T15:19:00.181Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 66ms - Rows affected: 89 - RequestID: b7nmnwauuoi +2025-06-18T15:19:00.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1040 - IP: 192.168.36.218 - RequestID: ehsehkfoq55 +2025-06-18T15:19:00.381Z [DEBUG] order-service - Auth event: password_change - User: user_1053 - IP: 192.168.46.63 - RequestID: cb50t76u4cn +2025-06-18T15:19:00.481Z [TRACE] payment-service - Auth event: logout - User: user_1075 - IP: 192.168.211.72 - RequestID: jyr6fh5woz +2025-06-18T15:19:00.581Z [TRACE] inventory-service - Database INSERT on users - Execution time: 22ms - Rows affected: 79 - RequestID: 6nbk2jyawd7 +2025-06-18T15:19:00.681Z [TRACE] user-service - Database DELETE on products - Execution time: 293ms - Rows affected: 34 - RequestID: sea2z5rfso +2025-06-18T15:19:00.781Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 856ms - IP: 192.168.79.143 - User: user_1005 - RequestID: ki4tue3per +2025-06-18T15:19:00.881Z [DEBUG] auth-service - GET /api/v1/orders - Status: 200 - Response time: 352ms - IP: 192.168.14.77 - User: user_1097 - RequestID: u4kmu5y2pnk +2025-06-18T15:19:00.981Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 13ms - Rows affected: 81 - RequestID: z9tcit4tz7f +2025-06-18T15:19:01.081Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 400 - Response time: 261ms - IP: 192.168.174.114 - User: user_1051 - RequestID: emgvdwyp6s +2025-06-18T15:19:01.181Z [INFO] auth-service - Operation: inventory_updated - Processing time: 861ms - RequestID: qocuwbe4prh +2025-06-18T15:19:01.281Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 30ms - Rows affected: 8 - RequestID: 98rpwg3146 +2025-06-18T15:19:01.381Z [TRACE] user-service - Auth event: login_failed - User: user_1067 - IP: 192.168.46.63 - RequestID: jb610phwg9m +2025-06-18T15:19:01.481Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 802ms - RequestID: ofcxbaj1dia +2025-06-18T15:19:01.581Z [TRACE] order-service - Operation: inventory_updated - Processing time: 728ms - RequestID: 7s8eoux0xqb +2025-06-18T15:19:01.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 432ms - RequestID: vderxfdi4m +2025-06-18T15:19:01.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.31.117 - RequestID: 06z9ezpo7gb5 +2025-06-18T15:19:01.881Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 102ms - RequestID: 8x7vfy0a6z3 +2025-06-18T15:19:01.981Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 248ms - Rows affected: 41 - RequestID: nqdpc9vw65p +2025-06-18T15:19:02.081Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 446ms - IP: 192.168.211.72 - User: user_1037 - RequestID: b868edh4sc +2025-06-18T15:19:02.181Z [INFO] payment-service - Auth event: logout - User: user_1097 - IP: 192.168.79.116 - RequestID: vjvvhpsik1a +2025-06-18T15:19:02.281Z [INFO] auth-service - Operation: email_sent - Processing time: 641ms - RequestID: 0piaaq6dan3 +2025-06-18T15:19:02.381Z [TRACE] user-service - Operation: email_sent - Processing time: 404ms - RequestID: z6kvv0h9pg +2025-06-18T15:19:02.481Z [DEBUG] notification-service - Operation: order_created - Processing time: 705ms - RequestID: xjebygrrfxa +2025-06-18T15:19:02.581Z [DEBUG] payment-service - POST /api/v1/orders - Status: 200 - Response time: 720ms - IP: 192.168.79.143 - User: user_1071 - RequestID: 43lnznzgp9d +2025-06-18T15:19:02.681Z [TRACE] notification-service - Database INSERT on orders - Execution time: 10ms - Rows affected: 74 - RequestID: 55kr2hm383o +2025-06-18T15:19:02.781Z [INFO] inventory-service - Operation: payment_processed - Processing time: 647ms - RequestID: af2olhwzqh5 +2025-06-18T15:19:02.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1038 - IP: 192.168.144.38 - RequestID: if0ssrekd8n +2025-06-18T15:19:02.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1066 - IP: 192.168.81.206 - RequestID: 79otiznnee +2025-06-18T15:19:03.081Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 274ms - RequestID: j6sfyjlhrs +2025-06-18T15:19:03.181Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 506ms - RequestID: h57nrmvqmfq +2025-06-18T15:19:03.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 117ms - RequestID: 5xe6p1zu6fv +2025-06-18T15:19:03.381Z [INFO] inventory-service - Operation: email_sent - Processing time: 822ms - RequestID: p5aix1nydvl +2025-06-18T15:19:03.481Z [INFO] user-service - Operation: cache_hit - Processing time: 522ms - RequestID: xyvip7snmuj +2025-06-18T15:19:03.581Z [INFO] auth-service - Database SELECT on payments - Execution time: 441ms - Rows affected: 11 - RequestID: a976cnfiwst +2025-06-18T15:19:03.681Z [TRACE] auth-service - GET /api/v1/orders - Status: 403 - Response time: 180ms - IP: 192.168.232.72 - User: user_1007 - RequestID: ih1zjkc1rp +2025-06-18T15:19:03.781Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1821ms - IP: 192.168.44.5 - User: user_1095 - RequestID: 3v9yywo196k +2025-06-18T15:19:03.881Z [INFO] user-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.144.38 - RequestID: to34yvla43 +2025-06-18T15:19:03.981Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 500 - Response time: 779ms - IP: 192.168.242.165 - User: user_1042 - RequestID: i8mfyh8kk7 +2025-06-18T15:19:04.081Z [INFO] order-service - GET /api/v1/orders - Status: 201 - Response time: 1395ms - IP: 192.168.242.165 - User: user_1080 - RequestID: rav4i1q3x3 +2025-06-18T15:19:04.181Z [TRACE] order-service - Database UPDATE on products - Execution time: 290ms - Rows affected: 0 - RequestID: pt2gepsizdf +2025-06-18T15:19:04.281Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 287ms - RequestID: rjocz1lo9mq +2025-06-18T15:19:04.381Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 500 - Response time: 1010ms - IP: 192.168.53.133 - User: user_1003 - RequestID: v9m8vvi09f +2025-06-18T15:19:04.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 655ms - RequestID: msb0j8y974 +2025-06-18T15:19:04.581Z [DEBUG] auth-service - Database INSERT on users - Execution time: 246ms - Rows affected: 68 - RequestID: su6jnd1zru +2025-06-18T15:19:04.681Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 404 - Response time: 312ms - IP: 192.168.167.32 - User: user_1067 - RequestID: cdxzjj6eee +2025-06-18T15:19:04.781Z [INFO] user-service - DELETE /api/v1/orders - Status: 400 - Response time: 1217ms - IP: 192.168.247.134 - User: user_1034 - RequestID: h8n03kocnmp +2025-06-18T15:19:04.881Z [TRACE] inventory-service - Database SELECT on products - Execution time: 82ms - Rows affected: 3 - RequestID: x0s90ug8w8 +2025-06-18T15:19:04.981Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 400 - Response time: 17ms - IP: 192.168.181.225 - User: user_1001 - RequestID: 9yb7pin3zwf +2025-06-18T15:19:05.081Z [TRACE] payment-service - Database DELETE on products - Execution time: 279ms - Rows affected: 81 - RequestID: 37nok9lzdbj +2025-06-18T15:19:05.181Z [INFO] notification-service - POST /api/v1/auth/login - Status: 503 - Response time: 1298ms - IP: 192.168.232.72 - User: user_1045 - RequestID: be7lqh4pol4 +2025-06-18T15:19:05.281Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 458ms - Rows affected: 2 - RequestID: vg076cwgjx7 +2025-06-18T15:19:05.381Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.242.165 - RequestID: iyr1gjfkq8e +2025-06-18T15:19:05.481Z [TRACE] user-service - Operation: notification_queued - Processing time: 625ms - RequestID: 9hyw7uvr1nw +2025-06-18T15:19:05.581Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 403 - Response time: 99ms - IP: 192.168.81.206 - User: user_1054 - RequestID: y75dey1uutg +2025-06-18T15:19:05.681Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 448ms - Rows affected: 67 - RequestID: 6coxml2mldd +2025-06-18T15:19:05.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1077 - IP: 192.168.32.38 - RequestID: m6qb4tl3djd +2025-06-18T15:19:05.881Z [TRACE] order-service - GET /api/v1/orders - Status: 502 - Response time: 465ms - IP: 192.168.100.240 - User: user_1091 - RequestID: e40ue7lqhl5 +2025-06-18T15:19:05.981Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 201 - Response time: 315ms - IP: 192.168.81.206 - User: user_1045 - RequestID: vn30xocvce +2025-06-18T15:19:06.081Z [TRACE] auth-service - GET /api/v1/payments - Status: 502 - Response time: 953ms - IP: 192.168.227.233 - User: user_1026 - RequestID: h0f4s5p5ezq +2025-06-18T15:19:06.181Z [INFO] user-service - Auth event: login_failed - User: user_1091 - IP: 192.168.104.37 - RequestID: 9joolbdi0vj +2025-06-18T15:19:06.281Z [TRACE] auth-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.147.171 - RequestID: 5eps59v8yvf +2025-06-18T15:19:06.381Z [DEBUG] user-service - Operation: order_created - Processing time: 99ms - RequestID: rxposfrtvpr +2025-06-18T15:19:06.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1039 - IP: 192.168.133.7 - RequestID: 67q6olwvfnf +2025-06-18T15:19:06.581Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 31ms - Rows affected: 61 - RequestID: y58k2hnoxoc +2025-06-18T15:19:06.681Z [INFO] inventory-service - Operation: notification_queued - Processing time: 331ms - RequestID: p5o2wxxkd2l +2025-06-18T15:19:06.781Z [INFO] notification-service - Operation: notification_queued - Processing time: 139ms - RequestID: cqrpayu0rjw +2025-06-18T15:19:06.881Z [INFO] order-service - Auth event: password_change - User: user_1048 - IP: 192.168.227.77 - RequestID: zcybt0qjy7 +2025-06-18T15:19:06.981Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 87ms - RequestID: ifqae3d2mm +2025-06-18T15:19:07.081Z [TRACE] notification-service - Operation: payment_processed - Processing time: 71ms - RequestID: eznpnsbxxyg +2025-06-18T15:19:07.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 324ms - RequestID: 9485nr2ojwa +2025-06-18T15:19:07.281Z [TRACE] user-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.196.226 - RequestID: yul5vd2osz +2025-06-18T15:19:07.381Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 743ms - RequestID: f35w587wj8a +2025-06-18T15:19:07.481Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 588ms - IP: 192.168.68.128 - User: user_1023 - RequestID: hj3rugmdrsk +2025-06-18T15:19:07.581Z [DEBUG] order-service - Operation: email_sent - Processing time: 935ms - RequestID: p5pmf0dkc5h +2025-06-18T15:19:07.681Z [INFO] notification-service - POST /api/v1/auth/login - Status: 404 - Response time: 1642ms - IP: 192.168.28.146 - User: user_1025 - RequestID: xz08rivikwq +2025-06-18T15:19:07.781Z [DEBUG] notification-service - POST /api/v1/users - Status: 500 - Response time: 247ms - IP: 192.168.147.171 - User: user_1018 - RequestID: odorczzcmg +2025-06-18T15:19:07.881Z [TRACE] order-service - Auth event: login_failed - User: user_1022 - IP: 192.168.242.165 - RequestID: lu62b2tmmwl +2025-06-18T15:19:07.981Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 499ms - RequestID: odrfm3mnk3t +2025-06-18T15:19:08.081Z [INFO] auth-service - Database INSERT on sessions - Execution time: 170ms - Rows affected: 3 - RequestID: 81ksiyvetrf +2025-06-18T15:19:08.181Z [TRACE] auth-service - Auth event: logout - User: user_1040 - IP: 192.168.64.33 - RequestID: phd6sml7gei +2025-06-18T15:19:08.281Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 430ms - Rows affected: 23 - RequestID: ujvdmo9icdi +2025-06-18T15:19:08.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.30.79 - RequestID: swy751dh7vl +2025-06-18T15:19:08.481Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 381ms - RequestID: uv66hhis5pq +2025-06-18T15:19:08.581Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 503 - Response time: 1898ms - IP: 192.168.14.77 - User: user_1052 - RequestID: bh29l36nym9 +2025-06-18T15:19:08.681Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 177ms - Rows affected: 69 - RequestID: qjv79g2p2b +2025-06-18T15:19:08.781Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 155ms - IP: 192.168.79.143 - User: user_1081 - RequestID: 0dkqhh7fvcep +2025-06-18T15:19:08.881Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 400 - Response time: 1783ms - IP: 192.168.242.165 - User: user_1033 - RequestID: c2pjgu2bwkw +2025-06-18T15:19:08.981Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 329ms - Rows affected: 98 - RequestID: 85vp78pqby2 +2025-06-18T15:19:09.081Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 404 - Response time: 1799ms - IP: 192.168.1.152 - User: user_1052 - RequestID: jvex5c2xyzc +2025-06-18T15:19:09.181Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 820ms - IP: 192.168.247.134 - User: user_1037 - RequestID: 00xy8gb2mieo +2025-06-18T15:19:09.281Z [INFO] payment-service - Database DELETE on products - Execution time: 176ms - Rows affected: 80 - RequestID: gsmtj9005l8 +2025-06-18T15:19:09.381Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 53ms - Rows affected: 99 - RequestID: jyfkm3xnx1k +2025-06-18T15:19:09.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.1.152 - RequestID: r8iodi65e9n +2025-06-18T15:19:09.581Z [TRACE] order-service - Database INSERT on orders - Execution time: 328ms - Rows affected: 77 - RequestID: 4fy4mtu5o71 +2025-06-18T15:19:09.681Z [DEBUG] order-service - Database INSERT on users - Execution time: 415ms - Rows affected: 27 - RequestID: 85shljoq9h +2025-06-18T15:19:09.781Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 403 - Response time: 218ms - IP: 192.168.30.79 - User: user_1061 - RequestID: 7uf48k11jps +2025-06-18T15:19:09.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 604ms - RequestID: kccmrb9awrp +2025-06-18T15:19:09.981Z [DEBUG] order-service - Auth event: login_success - User: user_1014 - IP: 192.168.14.77 - RequestID: 8r2wkhvwlj +2025-06-18T15:19:10.081Z [INFO] auth-service - Auth event: login_success - User: user_1094 - IP: 192.168.64.33 - RequestID: 59obwsqqa4m +2025-06-18T15:19:10.181Z [DEBUG] user-service - Database INSERT on products - Execution time: 303ms - Rows affected: 16 - RequestID: k2slvfu3wt +2025-06-18T15:19:10.281Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 439ms - Rows affected: 55 - RequestID: 6w8knlc5s5e +2025-06-18T15:19:10.381Z [TRACE] auth-service - Database SELECT on products - Execution time: 421ms - Rows affected: 86 - RequestID: a3k6dflt2 +2025-06-18T15:19:10.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.196.226 - RequestID: 30wmvkowz5n +2025-06-18T15:19:10.581Z [INFO] inventory-service - Database SELECT on users - Execution time: 302ms - Rows affected: 94 - RequestID: f2uyaeiwgcw +2025-06-18T15:19:10.681Z [INFO] order-service - Operation: notification_queued - Processing time: 331ms - RequestID: 8qsf9619bc7 +2025-06-18T15:19:10.781Z [TRACE] notification-service - Auth event: logout - User: user_1082 - IP: 192.168.104.37 - RequestID: ojqqrfoddog +2025-06-18T15:19:10.881Z [INFO] order-service - Operation: cache_miss - Processing time: 719ms - RequestID: shgvmlfozlm +2025-06-18T15:19:10.981Z [INFO] order-service - Database DELETE on audit_logs - Execution time: 464ms - Rows affected: 76 - RequestID: 02e5fgvnl93o +2025-06-18T15:19:11.081Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 354ms - Rows affected: 91 - RequestID: jf6kiipohmp +2025-06-18T15:19:11.181Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 466ms - Rows affected: 23 - RequestID: r5w5b3y06u +2025-06-18T15:19:11.281Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 378ms - Rows affected: 19 - RequestID: a65d6tqo0tv +2025-06-18T15:19:11.381Z [DEBUG] user-service - PUT /api/v1/orders - Status: 500 - Response time: 1142ms - IP: 192.168.97.87 - User: user_1062 - RequestID: zmne5iqhfrn +2025-06-18T15:19:11.481Z [INFO] auth-service - Database UPDATE on payments - Execution time: 316ms - Rows affected: 47 - RequestID: nlwef9wkka +2025-06-18T15:19:11.581Z [TRACE] notification-service - Operation: email_sent - Processing time: 613ms - RequestID: hyaz046qgni +2025-06-18T15:19:11.681Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 203ms - IP: 192.168.30.79 - User: user_1060 - RequestID: i6poa6smv79 +2025-06-18T15:19:11.781Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 567ms - RequestID: hxi6381uu0u +2025-06-18T15:19:11.881Z [INFO] auth-service - Operation: webhook_sent - Processing time: 150ms - RequestID: nkhs7o7xdl +2025-06-18T15:19:11.981Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.36.218 - RequestID: cwkoz8rcrb +2025-06-18T15:19:12.081Z [DEBUG] order-service - Operation: cache_hit - Processing time: 751ms - RequestID: ld4zdyadkaj +2025-06-18T15:19:12.181Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 419ms - IP: 192.168.46.63 - User: user_1088 - RequestID: 4u59d6u0ybe +2025-06-18T15:19:12.281Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 202ms - Rows affected: 89 - RequestID: jaudln2jwc +2025-06-18T15:19:12.381Z [INFO] user-service - PUT /api/v1/orders - Status: 500 - Response time: 1501ms - IP: 192.168.194.41 - User: user_1074 - RequestID: jaye7jt1eil +2025-06-18T15:19:12.481Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 465ms - IP: 192.168.167.32 - User: user_1022 - RequestID: 82er2lxdxqg +2025-06-18T15:19:12.581Z [DEBUG] user-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.167.32 - RequestID: cv1pts8p816 +2025-06-18T15:19:12.681Z [INFO] inventory-service - Auth event: password_change - User: user_1010 - IP: 192.168.44.5 - RequestID: 66rxzcs2ihe +2025-06-18T15:19:12.781Z [DEBUG] order-service - Auth event: password_change - User: user_1007 - IP: 192.168.11.60 - RequestID: t8z4rsphw2 +2025-06-18T15:19:12.881Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 72ms - Rows affected: 72 - RequestID: wfjpfy9pnzf +2025-06-18T15:19:12.981Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 398ms - Rows affected: 15 - RequestID: 9xku646caf +2025-06-18T15:19:13.081Z [INFO] order-service - POST /api/v1/users - Status: 502 - Response time: 513ms - IP: 192.168.189.103 - User: user_1000 - RequestID: 8r8dpy3tckr +2025-06-18T15:19:13.181Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 271ms - RequestID: 0p5hxde5xk4m +2025-06-18T15:19:13.281Z [INFO] payment-service - GET /api/v1/payments - Status: 201 - Response time: 1923ms - IP: 192.168.227.233 - User: user_1078 - RequestID: vd80ju5nulr +2025-06-18T15:19:13.381Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 404 - Response time: 1806ms - IP: 192.168.31.117 - User: user_1015 - RequestID: w19hka1oz2p +2025-06-18T15:19:13.481Z [INFO] order-service - GET /api/v1/users - Status: 401 - Response time: 1812ms - IP: 192.168.31.117 - User: user_1035 - RequestID: g0xsouc1c0m +2025-06-18T15:19:13.581Z [INFO] inventory-service - PUT /api/v1/payments - Status: 503 - Response time: 1158ms - IP: 192.168.31.117 - User: user_1012 - RequestID: az31fkkvkp +2025-06-18T15:19:13.681Z [INFO] notification-service - Operation: inventory_updated - Processing time: 276ms - RequestID: x3tek8tvx6c +2025-06-18T15:19:13.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.44.5 - RequestID: 3i0jfthguw +2025-06-18T15:19:13.881Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 189ms - Rows affected: 45 - RequestID: z2rf1o0xil +2025-06-18T15:19:13.981Z [TRACE] user-service - Auth event: password_change - User: user_1029 - IP: 192.168.30.79 - RequestID: 37dbrl7ct3d +2025-06-18T15:19:14.081Z [TRACE] inventory-service - Database DELETE on products - Execution time: 99ms - Rows affected: 54 - RequestID: 0nfzrd3ez6s +2025-06-18T15:19:14.181Z [INFO] payment-service - Auth event: login_failed - User: user_1098 - IP: 192.168.68.158 - RequestID: ugm13ao2y2g +2025-06-18T15:19:14.281Z [DEBUG] order-service - Auth event: login_success - User: user_1014 - IP: 192.168.242.165 - RequestID: 2359208ghod +2025-06-18T15:19:14.381Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 403ms - Rows affected: 29 - RequestID: 7o7bhr2mwvf +2025-06-18T15:19:14.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 593ms - RequestID: bouhvpiahq5 +2025-06-18T15:19:14.581Z [INFO] user-service - POST /api/v1/payments - Status: 200 - Response time: 176ms - IP: 192.168.104.37 - User: user_1093 - RequestID: 9iki12zy9bt +2025-06-18T15:19:14.681Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 402ms - Rows affected: 5 - RequestID: ggctseqtblt +2025-06-18T15:19:14.781Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 645ms - RequestID: osea6jrh7k +2025-06-18T15:19:14.881Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 329ms - Rows affected: 24 - RequestID: gb2j9a80r98 +2025-06-18T15:19:14.981Z [TRACE] order-service - POST /api/v1/users - Status: 500 - Response time: 358ms - IP: 192.168.242.165 - User: user_1060 - RequestID: rjbwejz0cso +2025-06-18T15:19:15.081Z [DEBUG] auth-service - PATCH /api/v1/payments - Status: 400 - Response time: 311ms - IP: 192.168.229.123 - User: user_1068 - RequestID: i0rk4w6jgw +2025-06-18T15:19:15.181Z [INFO] user-service - Operation: cache_miss - Processing time: 532ms - RequestID: ftpcmg4tazv +2025-06-18T15:19:15.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.232.72 - RequestID: 4ygr47a0oqx +2025-06-18T15:19:15.381Z [DEBUG] order-service - Database UPDATE on products - Execution time: 94ms - Rows affected: 10 - RequestID: kjz7zj2hhii +2025-06-18T15:19:15.481Z [DEBUG] user-service - Database INSERT on users - Execution time: 336ms - Rows affected: 34 - RequestID: 709qh5xfnt5 +2025-06-18T15:19:15.581Z [INFO] payment-service - Database SELECT on users - Execution time: 216ms - Rows affected: 40 - RequestID: tt05655knhl +2025-06-18T15:19:15.681Z [DEBUG] notification-service - Database DELETE on users - Execution time: 447ms - Rows affected: 61 - RequestID: ccthfdq0w6l +2025-06-18T15:19:15.781Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 74ms - Rows affected: 85 - RequestID: aec2bnhft4d +2025-06-18T15:19:15.881Z [INFO] auth-service - DELETE /api/v1/orders - Status: 500 - Response time: 1914ms - IP: 192.168.113.218 - User: user_1056 - RequestID: zmjb8ps4hi +2025-06-18T15:19:15.981Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 398ms - RequestID: 5xm1ti3blco +2025-06-18T15:19:16.081Z [INFO] inventory-service - Operation: payment_processed - Processing time: 398ms - RequestID: o2wht35xu3 +2025-06-18T15:19:16.181Z [INFO] order-service - Database UPDATE on sessions - Execution time: 231ms - Rows affected: 32 - RequestID: nfg5r1iubw +2025-06-18T15:19:16.281Z [INFO] notification-service - Operation: order_created - Processing time: 339ms - RequestID: ikvc4bz5v3 +2025-06-18T15:19:16.381Z [INFO] auth-service - POST /api/v1/orders - Status: 201 - Response time: 382ms - IP: 192.168.81.206 - User: user_1011 - RequestID: mtn7juxk0n +2025-06-18T15:19:16.481Z [TRACE] auth-service - Operation: payment_processed - Processing time: 157ms - RequestID: rp9ycw529np +2025-06-18T15:19:16.581Z [TRACE] order-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.211.72 - RequestID: 78e7p3oq4h2 +2025-06-18T15:19:16.681Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 361ms - Rows affected: 61 - RequestID: g0ut27kzz87 +2025-06-18T15:19:16.781Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 44ms - IP: 192.168.133.7 - User: user_1096 - RequestID: pv0nmub8n39 +2025-06-18T15:19:16.881Z [INFO] user-service - Auth event: password_change - User: user_1077 - IP: 192.168.187.199 - RequestID: 6l8wv5lnepg +2025-06-18T15:19:16.981Z [INFO] payment-service - Auth event: password_change - User: user_1085 - IP: 192.168.81.206 - RequestID: 7p2i94z2xjb +2025-06-18T15:19:17.081Z [DEBUG] order-service - Operation: notification_queued - Processing time: 827ms - RequestID: a37rgjni0mb +2025-06-18T15:19:17.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 482ms - RequestID: v9v13xuo7c +2025-06-18T15:19:17.281Z [TRACE] auth-service - Operation: cache_hit - Processing time: 1017ms - RequestID: ga4nvlf7b57 +2025-06-18T15:19:17.381Z [DEBUG] order-service - Database DELETE on audit_logs - Execution time: 59ms - Rows affected: 61 - RequestID: n6u965x1tq +2025-06-18T15:19:17.481Z [INFO] order-service - Auth event: password_change - User: user_1084 - IP: 192.168.227.233 - RequestID: v3pt7zkbh08 +2025-06-18T15:19:17.581Z [DEBUG] payment-service - GET /api/v1/users - Status: 503 - Response time: 347ms - IP: 192.168.158.144 - User: user_1043 - RequestID: j5jfss67qk +2025-06-18T15:19:17.681Z [INFO] inventory-service - Auth event: login_failed - User: user_1013 - IP: 192.168.242.165 - RequestID: h1kqv4hfsz +2025-06-18T15:19:17.781Z [TRACE] user-service - Database DELETE on users - Execution time: 278ms - Rows affected: 9 - RequestID: 9ro1zxf2g6f +2025-06-18T15:19:17.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.31.117 - RequestID: vtrm27tywj +2025-06-18T15:19:17.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.46.63 - RequestID: pgizgimufhd +2025-06-18T15:19:18.081Z [TRACE] user-service - Operation: order_created - Processing time: 1009ms - RequestID: g393tcc1k3m +2025-06-18T15:19:18.181Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1932ms - IP: 192.168.13.72 - User: user_1078 - RequestID: izx5o3pqym +2025-06-18T15:19:18.281Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 88ms - RequestID: 5yclwuipaf7 +2025-06-18T15:19:18.381Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 337ms - Rows affected: 9 - RequestID: 8kq4t4pgzjr +2025-06-18T15:19:18.481Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 280ms - Rows affected: 26 - RequestID: 6nxmbrgpum +2025-06-18T15:19:18.581Z [TRACE] user-service - Database INSERT on orders - Execution time: 474ms - Rows affected: 75 - RequestID: enx8mf4gdr6 +2025-06-18T15:19:18.681Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 202ms - Rows affected: 54 - RequestID: ka7pyawsama +2025-06-18T15:19:18.781Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 352ms - RequestID: akup15mdyh +2025-06-18T15:19:18.881Z [DEBUG] auth-service - Operation: order_created - Processing time: 783ms - RequestID: iuuqh2q1g5m +2025-06-18T15:19:18.981Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 456ms - RequestID: 90ohml73cr +2025-06-18T15:19:19.081Z [TRACE] payment-service - Database SELECT on audit_logs - Execution time: 362ms - Rows affected: 14 - RequestID: zo7k95a1cmd +2025-06-18T15:19:19.181Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 47ms - Rows affected: 82 - RequestID: bax9ievyfoe +2025-06-18T15:19:19.281Z [INFO] auth-service - Auth event: logout - User: user_1054 - IP: 192.168.46.63 - RequestID: yzp8wqanc7 +2025-06-18T15:19:19.381Z [INFO] payment-service - Database UPDATE on orders - Execution time: 154ms - Rows affected: 79 - RequestID: dunbbd9erj4 +2025-06-18T15:19:19.481Z [INFO] payment-service - Database SELECT on orders - Execution time: 462ms - Rows affected: 51 - RequestID: e95tps6dr57 +2025-06-18T15:19:19.581Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 1019ms - RequestID: eesfiuv4pgk +2025-06-18T15:19:19.681Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 627ms - RequestID: ns08qxelk4 +2025-06-18T15:19:19.781Z [INFO] inventory-service - Database SELECT on payments - Execution time: 289ms - Rows affected: 88 - RequestID: n50voywanv +2025-06-18T15:19:19.881Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 201 - Response time: 1026ms - IP: 192.168.147.171 - User: user_1022 - RequestID: t85q2d58ms +2025-06-18T15:19:19.981Z [INFO] auth-service - Database INSERT on sessions - Execution time: 434ms - Rows affected: 92 - RequestID: jmfhqemh2c +2025-06-18T15:19:20.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1094 - IP: 192.168.227.77 - RequestID: lvhd1l56s8i +2025-06-18T15:19:20.181Z [TRACE] inventory-service - Auth event: password_change - User: user_1077 - IP: 192.168.235.117 - RequestID: w74s8lyvvx8 +2025-06-18T15:19:20.281Z [DEBUG] user-service - PUT /api/v1/orders - Status: 403 - Response time: 586ms - IP: 192.168.158.144 - User: user_1000 - RequestID: wjb5txonw5h +2025-06-18T15:19:20.381Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 502 - Response time: 1368ms - IP: 192.168.194.41 - User: user_1019 - RequestID: rjfqrx1rgms +2025-06-18T15:19:20.481Z [INFO] auth-service - Database SELECT on products - Execution time: 104ms - Rows affected: 18 - RequestID: i83n6rejvp +2025-06-18T15:19:20.581Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 747ms - IP: 192.168.196.226 - User: user_1088 - RequestID: cgl073nfu7o +2025-06-18T15:19:20.681Z [INFO] notification-service - Auth event: logout - User: user_1010 - IP: 192.168.36.218 - RequestID: jwso6a9ecbd +2025-06-18T15:19:20.781Z [INFO] auth-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.68.158 - RequestID: ka5blhlt9pi +2025-06-18T15:19:20.881Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 219ms - IP: 192.168.189.103 - User: user_1002 - RequestID: txmrb9ldjac +2025-06-18T15:19:20.981Z [DEBUG] order-service - Database UPDATE on users - Execution time: 217ms - Rows affected: 46 - RequestID: q0m6xq9am5 +2025-06-18T15:19:21.081Z [TRACE] payment-service - Database DELETE on products - Execution time: 322ms - Rows affected: 24 - RequestID: bee7no9hz6n +2025-06-18T15:19:21.181Z [DEBUG] user-service - Database INSERT on orders - Execution time: 406ms - Rows affected: 65 - RequestID: lsu39fu060d +2025-06-18T15:19:21.281Z [TRACE] order-service - Auth event: login_failed - User: user_1008 - IP: 192.168.33.76 - RequestID: hlrpen7ykjh +2025-06-18T15:19:21.381Z [TRACE] order-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.28.146 - RequestID: p0uescn1p2 +2025-06-18T15:19:21.481Z [TRACE] order-service - Operation: email_sent - Processing time: 916ms - RequestID: dxne32qtef4 +2025-06-18T15:19:21.581Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 503 - Response time: 451ms - IP: 192.168.53.133 - User: user_1025 - RequestID: 8yevo5ispyh +2025-06-18T15:19:21.681Z [DEBUG] auth-service - POST /api/v1/orders - Status: 400 - Response time: 1772ms - IP: 192.168.79.141 - User: user_1083 - RequestID: enzhxcve94d +2025-06-18T15:19:21.781Z [INFO] order-service - Database UPDATE on sessions - Execution time: 461ms - Rows affected: 11 - RequestID: kopgkhjrf5r +2025-06-18T15:19:21.881Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 122ms - Rows affected: 91 - RequestID: unnn1pubsrm +2025-06-18T15:19:21.981Z [INFO] user-service - Database UPDATE on products - Execution time: 219ms - Rows affected: 97 - RequestID: ncjqrlajlya +2025-06-18T15:19:22.081Z [TRACE] inventory-service - POST /api/v1/payments - Status: 403 - Response time: 1274ms - IP: 192.168.1.152 - User: user_1013 - RequestID: v14aigxcttg +2025-06-18T15:19:22.181Z [TRACE] user-service - Auth event: login_success - User: user_1034 - IP: 192.168.13.72 - RequestID: v4mgodbqp8 +2025-06-18T15:19:22.281Z [TRACE] notification-service - GET /api/v1/inventory - Status: 200 - Response time: 1926ms - IP: 192.168.133.7 - User: user_1046 - RequestID: 9p3brdvyx7q +2025-06-18T15:19:22.381Z [TRACE] inventory-service - Auth event: logout - User: user_1049 - IP: 192.168.159.94 - RequestID: 5tshxofyhl8 +2025-06-18T15:19:22.481Z [TRACE] order-service - Auth event: login_success - User: user_1028 - IP: 192.168.240.169 - RequestID: i4zfa24vcqf +2025-06-18T15:19:22.581Z [DEBUG] auth-service - DELETE /api/v1/inventory - Status: 200 - Response time: 318ms - IP: 192.168.240.169 - User: user_1011 - RequestID: 9obwq9pjaq +2025-06-18T15:19:22.681Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 477ms - Rows affected: 99 - RequestID: feyojmdhzei +2025-06-18T15:19:22.781Z [DEBUG] user-service - PUT /api/v1/orders - Status: 502 - Response time: 336ms - IP: 192.168.242.165 - User: user_1093 - RequestID: hj8cyic29q +2025-06-18T15:19:22.881Z [TRACE] auth-service - Database DELETE on orders - Execution time: 280ms - Rows affected: 12 - RequestID: rwrnx8j60mj +2025-06-18T15:19:22.981Z [INFO] auth-service - Operation: order_created - Processing time: 81ms - RequestID: ietel7nh2m +2025-06-18T15:19:23.081Z [TRACE] order-service - Database DELETE on users - Execution time: 238ms - Rows affected: 10 - RequestID: epybun27rbl +2025-06-18T15:19:23.181Z [DEBUG] auth-service - Auth event: login_success - User: user_1000 - IP: 192.168.211.72 - RequestID: laut410dqz +2025-06-18T15:19:23.281Z [DEBUG] auth-service - Operation: email_sent - Processing time: 810ms - RequestID: dq0mrgg28r5 +2025-06-18T15:19:23.381Z [INFO] notification-service - GET /api/v1/inventory - Status: 503 - Response time: 319ms - IP: 192.168.10.184 - User: user_1036 - RequestID: zi8ffv2a02e +2025-06-18T15:19:23.481Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 851ms - RequestID: 0rrg7nmjgde +2025-06-18T15:19:23.581Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 53ms - Rows affected: 40 - RequestID: fsigq8nmznj +2025-06-18T15:19:23.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1064 - IP: 192.168.13.72 - RequestID: i3qs15z5as +2025-06-18T15:19:23.781Z [DEBUG] order-service - Operation: notification_queued - Processing time: 136ms - RequestID: hogdzmahvwp +2025-06-18T15:19:23.881Z [TRACE] order-service - Auth event: login_success - User: user_1035 - IP: 192.168.174.114 - RequestID: 4revm4h0m9a +2025-06-18T15:19:23.981Z [INFO] notification-service - Database SELECT on products - Execution time: 470ms - Rows affected: 89 - RequestID: w3wpuvzoyy +2025-06-18T15:19:24.081Z [TRACE] auth-service - Database DELETE on products - Execution time: 371ms - Rows affected: 61 - RequestID: lcr3rhpvt1e +2025-06-18T15:19:24.181Z [DEBUG] user-service - PUT /api/v1/orders - Status: 502 - Response time: 777ms - IP: 192.168.79.116 - User: user_1076 - RequestID: qtzr7y8lg8e +2025-06-18T15:19:24.281Z [INFO] notification-service - Operation: payment_processed - Processing time: 778ms - RequestID: qvufmb07sga +2025-06-18T15:19:24.381Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 616ms - RequestID: rcnkdcc322 +2025-06-18T15:19:24.481Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 446ms - Rows affected: 62 - RequestID: d9rz38nojmr +2025-06-18T15:19:24.581Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 402ms - Rows affected: 54 - RequestID: mmm1hm9rdx +2025-06-18T15:19:24.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 933ms - RequestID: rdyoir0ttbi +2025-06-18T15:19:24.781Z [INFO] notification-service - Auth event: login_success - User: user_1011 - IP: 192.168.36.218 - RequestID: wc6cps0lsll +2025-06-18T15:19:24.881Z [TRACE] user-service - Auth event: login_failed - User: user_1073 - IP: 192.168.167.32 - RequestID: 4w94t3r96yg +2025-06-18T15:19:24.981Z [TRACE] inventory-service - GET /api/v1/users - Status: 200 - Response time: 323ms - IP: 192.168.113.218 - User: user_1085 - RequestID: hmpa6vnv0b +2025-06-18T15:19:25.081Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 514ms - RequestID: v97nslltig +2025-06-18T15:19:25.181Z [TRACE] notification-service - Database UPDATE on users - Execution time: 297ms - Rows affected: 91 - RequestID: lr3qezvkxoj +2025-06-18T15:19:25.281Z [TRACE] auth-service - Auth event: login_failed - User: user_1031 - IP: 192.168.196.226 - RequestID: ynfhmsfwod +2025-06-18T15:19:25.381Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 503 - Response time: 103ms - IP: 192.168.196.226 - User: user_1091 - RequestID: r7uqeod3g3g +2025-06-18T15:19:25.481Z [TRACE] user-service - Database DELETE on orders - Execution time: 288ms - Rows affected: 33 - RequestID: h4mau2awqbt +2025-06-18T15:19:25.581Z [INFO] user-service - Operation: email_sent - Processing time: 667ms - RequestID: lgd3cwq6qm +2025-06-18T15:19:25.681Z [INFO] order-service - Database INSERT on sessions - Execution time: 476ms - Rows affected: 76 - RequestID: rj20x0pwkce +2025-06-18T15:19:25.781Z [TRACE] auth-service - POST /api/v1/payments - Status: 200 - Response time: 908ms - IP: 192.168.159.94 - User: user_1023 - RequestID: vj8k3aic1ss +2025-06-18T15:19:25.881Z [TRACE] notification-service - Operation: email_sent - Processing time: 408ms - RequestID: d4n3r9ctyiw +2025-06-18T15:19:25.981Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 907ms - RequestID: clb9diw4kx +2025-06-18T15:19:26.081Z [INFO] auth-service - Operation: inventory_updated - Processing time: 825ms - RequestID: ycunoffydd +2025-06-18T15:19:26.181Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 318ms - RequestID: f4ihldfbydu +2025-06-18T15:19:26.281Z [DEBUG] order-service - Database UPDATE on sessions - Execution time: 179ms - Rows affected: 37 - RequestID: 43hzdo7ze3j +2025-06-18T15:19:26.381Z [INFO] auth-service - Auth event: password_change - User: user_1094 - IP: 192.168.10.184 - RequestID: 44h09vy8994 +2025-06-18T15:19:26.481Z [INFO] payment-service - Database UPDATE on products - Execution time: 13ms - Rows affected: 0 - RequestID: xq83zqx46hd +2025-06-18T15:19:26.581Z [INFO] user-service - Operation: cache_hit - Processing time: 631ms - RequestID: fs62442muge +2025-06-18T15:19:26.681Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 454ms - Rows affected: 85 - RequestID: jwp8ww645ml +2025-06-18T15:19:26.781Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 200 - Response time: 755ms - IP: 192.168.227.233 - User: user_1009 - RequestID: guwiqq015yt +2025-06-18T15:19:26.881Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 356ms - Rows affected: 69 - RequestID: cttpwn5ooz6 +2025-06-18T15:19:26.981Z [INFO] user-service - Auth event: login_failed - User: user_1081 - IP: 192.168.53.133 - RequestID: 0q8wtswsgeyl +2025-06-18T15:19:27.081Z [INFO] user-service - PATCH /api/v1/inventory - Status: 502 - Response time: 218ms - IP: 192.168.196.226 - User: user_1071 - RequestID: zn3b9d39r6d +2025-06-18T15:19:27.181Z [DEBUG] order-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.194.41 - RequestID: sc8xbqcfwf +2025-06-18T15:19:27.281Z [INFO] auth-service - Auth event: login_failed - User: user_1019 - IP: 192.168.229.123 - RequestID: 2sa8ggjqet9 +2025-06-18T15:19:27.381Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1044ms - IP: 192.168.159.94 - User: user_1095 - RequestID: y02irfkqkj8 +2025-06-18T15:19:27.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.46.63 - RequestID: 3x2n5at9g1r +2025-06-18T15:19:27.581Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 908ms - RequestID: xc5zjuadiva +2025-06-18T15:19:27.681Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1237ms - IP: 192.168.81.206 - User: user_1039 - RequestID: mzm8fohsulg +2025-06-18T15:19:27.781Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1722ms - IP: 192.168.13.72 - User: user_1035 - RequestID: fyhjacia5e +2025-06-18T15:19:27.881Z [TRACE] order-service - Database SELECT on products - Execution time: 202ms - Rows affected: 25 - RequestID: x2yp6rhx78p +2025-06-18T15:19:27.981Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1978ms - IP: 192.168.170.215 - User: user_1051 - RequestID: ld56pbir4yf +2025-06-18T15:19:28.081Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1620ms - IP: 192.168.170.215 - User: user_1093 - RequestID: 9a6kovjro2a +2025-06-18T15:19:28.181Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 243ms - RequestID: sjvwvn5spi +2025-06-18T15:19:28.281Z [INFO] notification-service - Operation: payment_processed - Processing time: 815ms - RequestID: adtbzovt7e +2025-06-18T15:19:28.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.232.72 - RequestID: nkg6bz2jxh +2025-06-18T15:19:28.481Z [TRACE] payment-service - Auth event: login_success - User: user_1072 - IP: 192.168.196.226 - RequestID: 3czu25j8pas +2025-06-18T15:19:28.581Z [TRACE] auth-service - Operation: email_sent - Processing time: 801ms - RequestID: 4ldb8mizoro +2025-06-18T15:19:28.681Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 503 - Response time: 1700ms - IP: 192.168.235.117 - User: user_1086 - RequestID: hdpkerhq0k7 +2025-06-18T15:19:28.781Z [DEBUG] user-service - Operation: cache_hit - Processing time: 407ms - RequestID: neyk6sef39 +2025-06-18T15:19:28.881Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 143ms - RequestID: yxqxlo0px8g +2025-06-18T15:19:28.981Z [INFO] payment-service - Database SELECT on users - Execution time: 274ms - Rows affected: 86 - RequestID: rh0jdncyrz +2025-06-18T15:19:29.081Z [TRACE] inventory-service - GET /api/v1/users - Status: 404 - Response time: 1980ms - IP: 192.168.28.146 - User: user_1079 - RequestID: k53c04fqwr +2025-06-18T15:19:29.181Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 368ms - Rows affected: 46 - RequestID: v2okoic1vq +2025-06-18T15:19:29.281Z [TRACE] inventory-service - Auth event: logout - User: user_1078 - IP: 192.168.68.128 - RequestID: uk4u7p2rd7e +2025-06-18T15:19:29.381Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1799ms - IP: 192.168.85.229 - User: user_1095 - RequestID: 9v9pqq2n5fd +2025-06-18T15:19:29.481Z [INFO] auth-service - GET /api/v1/payments - Status: 200 - Response time: 585ms - IP: 192.168.158.144 - User: user_1009 - RequestID: fum9qz70esv +2025-06-18T15:19:29.581Z [TRACE] payment-service - Database DELETE on users - Execution time: 111ms - Rows affected: 15 - RequestID: 0mb2iam7kwx +2025-06-18T15:19:29.681Z [DEBUG] inventory-service - Auth event: login_success - User: user_1098 - IP: 192.168.31.117 - RequestID: a12cyyi5wu +2025-06-18T15:19:29.781Z [INFO] user-service - Auth event: login_failed - User: user_1092 - IP: 192.168.235.117 - RequestID: a4hqn3gg5jo +2025-06-18T15:19:29.881Z [INFO] inventory-service - Auth event: logout - User: user_1053 - IP: 192.168.211.72 - RequestID: trirqkly3cn +2025-06-18T15:19:29.981Z [TRACE] inventory-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 50ms - IP: 192.168.11.60 - User: user_1041 - RequestID: kpunxqbpgn +2025-06-18T15:19:30.081Z [INFO] user-service - Database UPDATE on products - Execution time: 468ms - Rows affected: 6 - RequestID: enguw62ygrr +2025-06-18T15:19:30.181Z [INFO] auth-service - Auth event: logout - User: user_1072 - IP: 192.168.247.134 - RequestID: vfygyvxkqv +2025-06-18T15:19:30.281Z [INFO] payment-service - Operation: cache_hit - Processing time: 980ms - RequestID: bcim682ezhp +2025-06-18T15:19:30.381Z [TRACE] auth-service - Auth event: logout - User: user_1059 - IP: 192.168.227.233 - RequestID: 784l75oh7qc +2025-06-18T15:19:30.481Z [TRACE] order-service - Auth event: login_success - User: user_1072 - IP: 192.168.211.72 - RequestID: c9bxyu59ajr +2025-06-18T15:19:30.581Z [INFO] payment-service - Operation: notification_queued - Processing time: 323ms - RequestID: 58plqjl77ik +2025-06-18T15:19:30.681Z [INFO] auth-service - PUT /api/v1/payments - Status: 502 - Response time: 65ms - IP: 192.168.240.169 - User: user_1092 - RequestID: aahcm1swfi7 +2025-06-18T15:19:30.781Z [DEBUG] notification-service - GET /api/v1/payments - Status: 200 - Response time: 1713ms - IP: 192.168.229.123 - User: user_1010 - RequestID: q0v4vif1ha +2025-06-18T15:19:30.881Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 508ms - RequestID: nmsiath2jc +2025-06-18T15:19:30.981Z [INFO] order-service - GET /api/v1/inventory - Status: 500 - Response time: 389ms - IP: 192.168.33.76 - User: user_1051 - RequestID: amxvjbbiwz9 +2025-06-18T15:19:31.081Z [TRACE] notification-service - Database DELETE on payments - Execution time: 48ms - Rows affected: 69 - RequestID: wkrat3wcq2 +2025-06-18T15:19:31.181Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 185ms - RequestID: fwyv94jzjdm +2025-06-18T15:19:31.281Z [TRACE] inventory-service - Operation: email_sent - Processing time: 161ms - RequestID: 25mnkcqf9j2 +2025-06-18T15:19:31.381Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 397ms - Rows affected: 40 - RequestID: d2xewupyg98 +2025-06-18T15:19:31.481Z [TRACE] user-service - Operation: inventory_updated - Processing time: 224ms - RequestID: k8mtpkbvca +2025-06-18T15:19:31.581Z [DEBUG] notification-service - Database DELETE on users - Execution time: 471ms - Rows affected: 56 - RequestID: vqgjy23cha +2025-06-18T15:19:31.681Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 739ms - RequestID: u7typy5mq4 +2025-06-18T15:19:31.781Z [TRACE] order-service - Database UPDATE on products - Execution time: 36ms - Rows affected: 77 - RequestID: o0efpbdsw8 +2025-06-18T15:19:31.881Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 283ms - Rows affected: 39 - RequestID: 0wglx5lqb1je +2025-06-18T15:19:31.981Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.11.60 - RequestID: ixz7tvnr9oe +2025-06-18T15:19:32.081Z [TRACE] payment-service - Auth event: password_change - User: user_1013 - IP: 192.168.181.225 - RequestID: 7lhdo22dhw6 +2025-06-18T15:19:32.181Z [INFO] auth-service - POST /api/v1/inventory - Status: 401 - Response time: 994ms - IP: 192.168.181.225 - User: user_1061 - RequestID: dv2h6cnqw1d +2025-06-18T15:19:32.281Z [INFO] auth-service - POST /api/v1/users - Status: 503 - Response time: 772ms - IP: 192.168.227.77 - User: user_1047 - RequestID: q4ocqz45hjn +2025-06-18T15:19:32.381Z [DEBUG] inventory-service - GET /api/v1/users - Status: 401 - Response time: 1097ms - IP: 192.168.30.79 - User: user_1011 - RequestID: i3rahw8g1q +2025-06-18T15:19:32.481Z [DEBUG] inventory-service - GET /api/v1/users - Status: 502 - Response time: 1047ms - IP: 192.168.33.76 - User: user_1055 - RequestID: 6ftlra5clo3 +2025-06-18T15:19:32.581Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 137ms - Rows affected: 80 - RequestID: imv4qfyv5l +2025-06-18T15:19:32.681Z [TRACE] payment-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.104.37 - RequestID: sslr99ojd2q +2025-06-18T15:19:32.781Z [DEBUG] notification-service - Auth event: password_change - User: user_1059 - IP: 192.168.242.165 - RequestID: mrjezndjp3j +2025-06-18T15:19:32.881Z [TRACE] auth-service - Operation: email_sent - Processing time: 919ms - RequestID: 3xu4nl8b15v +2025-06-18T15:19:32.981Z [INFO] notification-service - Operation: webhook_sent - Processing time: 809ms - RequestID: kf2q2z5g5j +2025-06-18T15:19:33.081Z [INFO] auth-service - Database DELETE on orders - Execution time: 480ms - Rows affected: 96 - RequestID: g909zyrafet +2025-06-18T15:19:33.181Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 398ms - Rows affected: 32 - RequestID: fghcvb1mkjn +2025-06-18T15:19:33.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.100.240 - RequestID: yv3bkp5krqa +2025-06-18T15:19:33.381Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 422ms - Rows affected: 66 - RequestID: ik9zamaky58 +2025-06-18T15:19:33.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 104ms - RequestID: 7rqs9ylvn4d +2025-06-18T15:19:33.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1058 - IP: 192.168.235.117 - RequestID: duiyop3gjip +2025-06-18T15:19:33.681Z [TRACE] payment-service - Database SELECT on orders - Execution time: 451ms - Rows affected: 85 - RequestID: mrgw2cf1xgi +2025-06-18T15:19:33.781Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 518ms - RequestID: dnqey1mtaop +2025-06-18T15:19:33.881Z [TRACE] inventory-service - Auth event: logout - User: user_1058 - IP: 192.168.46.63 - RequestID: ctlstmsjoe7 +2025-06-18T15:19:33.981Z [INFO] payment-service - Database UPDATE on users - Execution time: 13ms - Rows affected: 85 - RequestID: 6jq5s5lfhyo +2025-06-18T15:19:34.081Z [TRACE] user-service - DELETE /api/v1/users - Status: 503 - Response time: 1994ms - IP: 192.168.158.144 - User: user_1087 - RequestID: s4x9gn1k3s +2025-06-18T15:19:34.181Z [INFO] inventory-service - Auth event: logout - User: user_1015 - IP: 192.168.68.128 - RequestID: jerbmhj8dqm +2025-06-18T15:19:34.281Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 183ms - RequestID: ixgtqcerifb +2025-06-18T15:19:34.381Z [TRACE] auth-service - Database INSERT on orders - Execution time: 280ms - Rows affected: 29 - RequestID: oxdx5cifrdi +2025-06-18T15:19:34.481Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 221ms - IP: 192.168.147.171 - User: user_1089 - RequestID: 0hqcl8reernr +2025-06-18T15:19:34.581Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1001ms - IP: 192.168.167.32 - User: user_1081 - RequestID: 56rrqxm0kq +2025-06-18T15:19:34.681Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 518ms - RequestID: 7dwm0oiaoxl +2025-06-18T15:19:34.781Z [INFO] payment-service - Auth event: logout - User: user_1098 - IP: 192.168.11.60 - RequestID: kz2m3b4a9si +2025-06-18T15:19:34.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 353ms - RequestID: iokztmv2ijr +2025-06-18T15:19:34.981Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 448ms - Rows affected: 12 - RequestID: 1jove6qe2l4 +2025-06-18T15:19:35.081Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1831ms - IP: 192.168.227.233 - User: user_1031 - RequestID: ltudwgmr199 +2025-06-18T15:19:35.181Z [INFO] inventory-service - Operation: cache_miss - Processing time: 770ms - RequestID: y54g43n7eed +2025-06-18T15:19:35.281Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 243ms - Rows affected: 45 - RequestID: kkxqx0sg4v +2025-06-18T15:19:35.381Z [TRACE] auth-service - GET /api/v1/inventory - Status: 404 - Response time: 1166ms - IP: 192.168.53.133 - User: user_1035 - RequestID: xcqhkd0py8p +2025-06-18T15:19:35.481Z [DEBUG] user-service - Operation: payment_processed - Processing time: 88ms - RequestID: 1cpuqm0xzqy +2025-06-18T15:19:35.581Z [TRACE] user-service - Operation: email_sent - Processing time: 719ms - RequestID: o3kv6sqw5g +2025-06-18T15:19:35.681Z [TRACE] order-service - Operation: cache_miss - Processing time: 686ms - RequestID: 1806rexdpdd +2025-06-18T15:19:35.781Z [DEBUG] order-service - Database INSERT on payments - Execution time: 34ms - Rows affected: 2 - RequestID: p2ooh1nduxg +2025-06-18T15:19:35.881Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 404 - Response time: 161ms - IP: 192.168.13.72 - User: user_1087 - RequestID: ygnq008tj0t +2025-06-18T15:19:35.981Z [TRACE] order-service - Auth event: password_change - User: user_1026 - IP: 192.168.79.116 - RequestID: 3lph2oxvq0c +2025-06-18T15:19:36.081Z [TRACE] inventory-service - GET /api/v1/orders - Status: 201 - Response time: 617ms - IP: 192.168.227.77 - User: user_1051 - RequestID: 2gp84bw4b1k +2025-06-18T15:19:36.181Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 141ms - Rows affected: 85 - RequestID: ahj3t75v515 +2025-06-18T15:19:36.281Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 404 - Response time: 656ms - IP: 192.168.113.218 - User: user_1051 - RequestID: 63mjm2azc85 +2025-06-18T15:19:36.381Z [INFO] auth-service - Operation: email_sent - Processing time: 591ms - RequestID: b9c4l4n5hwn +2025-06-18T15:19:36.481Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 424ms - Rows affected: 75 - RequestID: ndbfan53yzm +2025-06-18T15:19:36.581Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 450ms - RequestID: e0w83fcacaq +2025-06-18T15:19:36.681Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 193ms - Rows affected: 17 - RequestID: 01mo48mabwxd +2025-06-18T15:19:36.781Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 502 - Response time: 488ms - IP: 192.168.235.117 - User: user_1047 - RequestID: 5lqlpz186b +2025-06-18T15:19:36.881Z [INFO] payment-service - Auth event: login_failed - User: user_1078 - IP: 192.168.31.117 - RequestID: 2fpbgskwfvo +2025-06-18T15:19:36.981Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 329ms - Rows affected: 47 - RequestID: tmas6fe52nn +2025-06-18T15:19:37.081Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 907ms - RequestID: 8vtm5cq4vpb +2025-06-18T15:19:37.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 176ms - RequestID: 5gvtncjr5l6 +2025-06-18T15:19:37.281Z [INFO] order-service - Database DELETE on payments - Execution time: 155ms - Rows affected: 6 - RequestID: 9wwtnts3ttp +2025-06-18T15:19:37.381Z [TRACE] order-service - Auth event: password_change - User: user_1067 - IP: 192.168.147.171 - RequestID: w1u8ecwdu88 +2025-06-18T15:19:37.481Z [TRACE] payment-service - Operation: payment_processed - Processing time: 511ms - RequestID: 3oq1qqiakvg +2025-06-18T15:19:37.581Z [INFO] payment-service - GET /api/v1/users - Status: 502 - Response time: 371ms - IP: 192.168.240.169 - User: user_1040 - RequestID: bcol6x55v5d +2025-06-18T15:19:37.681Z [INFO] notification-service - Operation: cache_hit - Processing time: 232ms - RequestID: u2m7b6ttt5m +2025-06-18T15:19:37.781Z [INFO] notification-service - Database SELECT on users - Execution time: 459ms - Rows affected: 49 - RequestID: f7uhqg1o8pr +2025-06-18T15:19:37.881Z [INFO] auth-service - Auth event: login_success - User: user_1024 - IP: 192.168.32.38 - RequestID: 747eixa3n6 +2025-06-18T15:19:37.981Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 77ms - Rows affected: 1 - RequestID: f09kameeyyp +2025-06-18T15:19:38.081Z [TRACE] user-service - Operation: inventory_updated - Processing time: 950ms - RequestID: mtvmd848ioa +2025-06-18T15:19:38.181Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 156ms - Rows affected: 40 - RequestID: 7oobo2f823j +2025-06-18T15:19:38.281Z [INFO] order-service - Database INSERT on payments - Execution time: 400ms - Rows affected: 63 - RequestID: deznna1mxm7 +2025-06-18T15:19:38.381Z [INFO] payment-service - GET /api/v1/auth/login - Status: 503 - Response time: 599ms - IP: 192.168.147.171 - User: user_1099 - RequestID: 38t0tzg67ls +2025-06-18T15:19:38.481Z [INFO] auth-service - Operation: order_created - Processing time: 522ms - RequestID: t5lx193o5g +2025-06-18T15:19:38.581Z [INFO] user-service - Operation: inventory_updated - Processing time: 668ms - RequestID: nyuj01tjp9 +2025-06-18T15:19:38.681Z [TRACE] order-service - Database UPDATE on users - Execution time: 249ms - Rows affected: 91 - RequestID: kruijb1jpjl +2025-06-18T15:19:38.781Z [INFO] notification-service - Database INSERT on sessions - Execution time: 491ms - Rows affected: 84 - RequestID: h6yzwwa6mnr +2025-06-18T15:19:38.881Z [TRACE] notification-service - Database SELECT on products - Execution time: 253ms - Rows affected: 51 - RequestID: deeyestdlrs +2025-06-18T15:19:38.981Z [TRACE] notification-service - Auth event: logout - User: user_1030 - IP: 192.168.113.218 - RequestID: z9egwxnebm +2025-06-18T15:19:39.081Z [DEBUG] user-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.232.72 - RequestID: zv1qkstkrii +2025-06-18T15:19:39.181Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.46.63 - RequestID: zralue1sdr +2025-06-18T15:19:39.281Z [INFO] auth-service - Auth event: login_success - User: user_1031 - IP: 192.168.28.146 - RequestID: dqym6ubei1 +2025-06-18T15:19:39.381Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1211ms - IP: 192.168.211.72 - User: user_1007 - RequestID: bh2nmy8r139 +2025-06-18T15:19:39.481Z [TRACE] payment-service - Auth event: login_success - User: user_1089 - IP: 192.168.158.144 - RequestID: qii4viewv6 +2025-06-18T15:19:39.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.227.77 - RequestID: 95k1zee9fv7 +2025-06-18T15:19:39.681Z [TRACE] order-service - Operation: payment_processed - Processing time: 350ms - RequestID: 69wopl6ec1g +2025-06-18T15:19:39.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 429ms - RequestID: 37ef9c8ooy9 +2025-06-18T15:19:39.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 1036ms - RequestID: fys43y50jud +2025-06-18T15:19:39.981Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 516ms - RequestID: n4612c141w +2025-06-18T15:19:40.081Z [INFO] order-service - Operation: notification_queued - Processing time: 1019ms - RequestID: vqfy7vh6ahj +2025-06-18T15:19:40.181Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 297ms - Rows affected: 31 - RequestID: p96t1ipa9cn +2025-06-18T15:19:40.281Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 609ms - RequestID: vzyhc67te +2025-06-18T15:19:40.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.232.72 - RequestID: 7ecveg1zcxi +2025-06-18T15:19:40.481Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1759ms - IP: 192.168.133.7 - User: user_1071 - RequestID: koogya00w1 +2025-06-18T15:19:40.581Z [DEBUG] notification-service - GET /api/v1/payments - Status: 500 - Response time: 301ms - IP: 192.168.187.199 - User: user_1059 - RequestID: 3akku2t7mtd +2025-06-18T15:19:40.681Z [DEBUG] payment-service - Operation: email_sent - Processing time: 486ms - RequestID: 4nrl8s7dgxc +2025-06-18T15:19:40.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.14.77 - RequestID: luc9o9fai89 +2025-06-18T15:19:40.881Z [TRACE] order-service - POST /api/v1/orders - Status: 201 - Response time: 963ms - IP: 192.168.28.146 - User: user_1012 - RequestID: xa93go7gmyi +2025-06-18T15:19:40.981Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1491ms - IP: 192.168.79.116 - User: user_1001 - RequestID: 96cnhommsc4 +2025-06-18T15:19:41.081Z [DEBUG] payment-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1790ms - IP: 192.168.97.87 - User: user_1054 - RequestID: iai7hwxnxmo +2025-06-18T15:19:41.181Z [TRACE] order-service - Database UPDATE on payments - Execution time: 158ms - Rows affected: 26 - RequestID: xq91gjgwpt +2025-06-18T15:19:41.281Z [TRACE] order-service - Operation: order_created - Processing time: 1044ms - RequestID: 00skmbw5t55qe +2025-06-18T15:19:41.381Z [DEBUG] inventory-service - Database SELECT on users - Execution time: 186ms - Rows affected: 59 - RequestID: 0b17oe9witzk +2025-06-18T15:19:41.481Z [TRACE] order-service - Database SELECT on payments - Execution time: 346ms - Rows affected: 0 - RequestID: z011xqttux +2025-06-18T15:19:41.581Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 12ms - Rows affected: 3 - RequestID: sahvzmccza9 +2025-06-18T15:19:41.681Z [TRACE] user-service - Operation: order_created - Processing time: 144ms - RequestID: xq2obhdgs3 +2025-06-18T15:19:41.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.30.79 - RequestID: nac1yh4ipqa +2025-06-18T15:19:41.881Z [INFO] order-service - GET /api/v1/orders - Status: 502 - Response time: 549ms - IP: 192.168.227.77 - User: user_1028 - RequestID: a5frxzs04ru +2025-06-18T15:19:41.981Z [DEBUG] user-service - Database DELETE on orders - Execution time: 81ms - Rows affected: 78 - RequestID: 82472dgkfdc +2025-06-18T15:19:42.081Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 566ms - RequestID: uac2xtorn3 +2025-06-18T15:19:42.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.242.165 - RequestID: vcrobxz0c7p +2025-06-18T15:19:42.281Z [INFO] auth-service - Operation: email_sent - Processing time: 770ms - RequestID: mbehwj8cxq +2025-06-18T15:19:42.381Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 403 - Response time: 777ms - IP: 192.168.242.165 - User: user_1020 - RequestID: vmbifwlrl1e +2025-06-18T15:19:42.481Z [DEBUG] order-service - POST /api/v1/inventory - Status: 400 - Response time: 601ms - IP: 192.168.10.184 - User: user_1089 - RequestID: k66dcnqipd +2025-06-18T15:19:42.581Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1585ms - IP: 192.168.79.143 - User: user_1022 - RequestID: gjyurzgmkxu +2025-06-18T15:19:42.681Z [TRACE] notification-service - Database SELECT on orders - Execution time: 477ms - Rows affected: 12 - RequestID: gekbbk8dzp9 +2025-06-18T15:19:42.781Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 304ms - Rows affected: 71 - RequestID: dx9yo1ea2fr +2025-06-18T15:19:42.881Z [TRACE] order-service - POST /api/v1/auth/login - Status: 400 - Response time: 916ms - IP: 192.168.97.87 - User: user_1003 - RequestID: x0z5hf3yjcg +2025-06-18T15:19:42.981Z [INFO] order-service - Operation: cache_hit - Processing time: 868ms - RequestID: ufpqhn7qd89 +2025-06-18T15:19:43.081Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 376ms - Rows affected: 54 - RequestID: 7j25ez8w51c +2025-06-18T15:19:43.181Z [TRACE] notification-service - Database UPDATE on users - Execution time: 438ms - Rows affected: 54 - RequestID: 0y76lr2w0d9m +2025-06-18T15:19:43.281Z [INFO] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 749ms - IP: 192.168.211.72 - User: user_1096 - RequestID: 15tm44jeuvn +2025-06-18T15:19:43.381Z [TRACE] notification-service - GET /api/v1/users - Status: 201 - Response time: 1389ms - IP: 192.168.30.79 - User: user_1085 - RequestID: h1pdb6la039 +2025-06-18T15:19:43.481Z [DEBUG] order-service - Database SELECT on products - Execution time: 132ms - Rows affected: 55 - RequestID: bimoziahqko +2025-06-18T15:19:43.581Z [TRACE] notification-service - POST /api/v1/users - Status: 503 - Response time: 1318ms - IP: 192.168.68.128 - User: user_1009 - RequestID: 0fzplyqfkkyb +2025-06-18T15:19:43.681Z [DEBUG] order-service - POST /api/v1/users - Status: 403 - Response time: 222ms - IP: 192.168.32.38 - User: user_1074 - RequestID: ux0vqxf9cg +2025-06-18T15:19:43.781Z [INFO] inventory-service - Auth event: logout - User: user_1076 - IP: 192.168.141.100 - RequestID: 37dallqw7z8 +2025-06-18T15:19:43.881Z [TRACE] order-service - Operation: notification_queued - Processing time: 165ms - RequestID: aaaejf4oueu +2025-06-18T15:19:43.981Z [TRACE] user-service - GET /api/v1/payments - Status: 400 - Response time: 472ms - IP: 192.168.187.199 - User: user_1022 - RequestID: yprn8rxobj8 +2025-06-18T15:19:44.081Z [INFO] payment-service - Auth event: password_change - User: user_1017 - IP: 192.168.36.218 - RequestID: p2gibcntxok +2025-06-18T15:19:44.181Z [DEBUG] user-service - DELETE /api/v1/inventory - Status: 401 - Response time: 311ms - IP: 192.168.81.206 - User: user_1067 - RequestID: 1p12u8xxbiq +2025-06-18T15:19:44.281Z [TRACE] payment-service - Database UPDATE on users - Execution time: 384ms - Rows affected: 98 - RequestID: xyyrbw729uj +2025-06-18T15:19:44.381Z [INFO] auth-service - Database INSERT on orders - Execution time: 105ms - Rows affected: 66 - RequestID: ahgkcfsh6tc +2025-06-18T15:19:44.481Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 322ms - Rows affected: 3 - RequestID: en59xdbw83p +2025-06-18T15:19:44.581Z [INFO] notification-service - Operation: payment_processed - Processing time: 352ms - RequestID: lu5w1wcqul +2025-06-18T15:19:44.681Z [INFO] auth-service - Database SELECT on sessions - Execution time: 26ms - Rows affected: 10 - RequestID: vcqhgx39b4h +2025-06-18T15:19:44.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.181.225 - RequestID: j6lvc2po4cb +2025-06-18T15:19:44.881Z [DEBUG] notification-service - POST /api/v1/orders - Status: 401 - Response time: 1680ms - IP: 192.168.31.117 - User: user_1018 - RequestID: odbmm0pf7al +2025-06-18T15:19:44.981Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 54ms - Rows affected: 5 - RequestID: nwqxjz2llh +2025-06-18T15:19:45.081Z [INFO] user-service - Operation: notification_queued - Processing time: 479ms - RequestID: 5kd2inatsr9 +2025-06-18T15:19:45.181Z [TRACE] user-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.33.76 - RequestID: fxwj9m0604 +2025-06-18T15:19:45.281Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.229.123 - RequestID: rgdqhynsiwf +2025-06-18T15:19:45.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1073 - IP: 192.168.232.72 - RequestID: iocu0r1meb +2025-06-18T15:19:45.481Z [TRACE] payment-service - Auth event: password_change - User: user_1068 - IP: 192.168.33.76 - RequestID: so61t6jzdbs +2025-06-18T15:19:45.581Z [TRACE] user-service - Auth event: login_failed - User: user_1060 - IP: 192.168.144.38 - RequestID: 77p7kqt6q9 +2025-06-18T15:19:45.681Z [INFO] payment-service - Operation: cache_miss - Processing time: 866ms - RequestID: zbt0ce73l9 +2025-06-18T15:19:45.781Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.32.38 - RequestID: fvxot2fxj3n +2025-06-18T15:19:45.881Z [DEBUG] user-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.133.7 - RequestID: xqlkkxzkuod +2025-06-18T15:19:45.981Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 503 - Response time: 822ms - IP: 192.168.14.77 - User: user_1042 - RequestID: hhnr2avflzg +2025-06-18T15:19:46.081Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 573ms - RequestID: uvcbla7isk +2025-06-18T15:19:46.181Z [INFO] payment-service - Operation: cache_miss - Processing time: 602ms - RequestID: hugg3yv74hc +2025-06-18T15:19:46.281Z [INFO] auth-service - Operation: email_sent - Processing time: 503ms - RequestID: zuhgihmr99 +2025-06-18T15:19:46.381Z [DEBUG] user-service - Auth event: login_success - User: user_1099 - IP: 192.168.30.79 - RequestID: 6vf7j5jz6r4 +2025-06-18T15:19:46.481Z [INFO] notification-service - Operation: payment_processed - Processing time: 882ms - RequestID: tvg0t8fr5f +2025-06-18T15:19:46.581Z [INFO] notification-service - Database UPDATE on products - Execution time: 446ms - Rows affected: 1 - RequestID: gctlsqu3wr +2025-06-18T15:19:46.681Z [TRACE] auth-service - Database SELECT on orders - Execution time: 151ms - Rows affected: 94 - RequestID: nz6z8xailc +2025-06-18T15:19:46.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1021 - IP: 192.168.46.63 - RequestID: rn9n9lusva9 +2025-06-18T15:19:46.881Z [TRACE] payment-service - Operation: notification_queued - Processing time: 670ms - RequestID: albidnwnsb +2025-06-18T15:19:46.981Z [INFO] notification-service - POST /api/v1/auth/login - Status: 503 - Response time: 394ms - IP: 192.168.232.72 - User: user_1097 - RequestID: 191j75swvfv +2025-06-18T15:19:47.081Z [TRACE] auth-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.14.77 - RequestID: ntcuisle1hf +2025-06-18T15:19:47.181Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 388ms - IP: 192.168.189.103 - User: user_1041 - RequestID: ur5e8ynfts +2025-06-18T15:19:47.281Z [DEBUG] payment-service - POST /api/v1/users - Status: 503 - Response time: 437ms - IP: 192.168.68.128 - User: user_1038 - RequestID: q5wfxvwnmpk +2025-06-18T15:19:47.381Z [TRACE] inventory-service - Auth event: login_success - User: user_1018 - IP: 192.168.100.240 - RequestID: 3hrsn81zgvo +2025-06-18T15:19:47.481Z [INFO] user-service - Operation: cache_miss - Processing time: 467ms - RequestID: 2wxxecxjlgv +2025-06-18T15:19:47.581Z [INFO] user-service - GET /api/v1/inventory - Status: 503 - Response time: 828ms - IP: 192.168.242.165 - User: user_1003 - RequestID: duih6mpkx0h +2025-06-18T15:19:47.681Z [DEBUG] user-service - Auth event: login_success - User: user_1011 - IP: 192.168.181.225 - RequestID: 5nzcqz03lqj +2025-06-18T15:19:47.781Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1927ms - IP: 192.168.97.87 - User: user_1000 - RequestID: ebb0xi83ldk +2025-06-18T15:19:47.881Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 583ms - IP: 192.168.68.128 - User: user_1063 - RequestID: nxhh8o799zk +2025-06-18T15:19:47.981Z [INFO] notification-service - Database UPDATE on payments - Execution time: 147ms - Rows affected: 57 - RequestID: gcq1p9buzbr +2025-06-18T15:19:48.081Z [DEBUG] order-service - Auth event: logout - User: user_1032 - IP: 192.168.68.128 - RequestID: 1xirlg39id5 +2025-06-18T15:19:48.181Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 1039ms - RequestID: et03edy7q2m +2025-06-18T15:19:48.281Z [TRACE] auth-service - Auth event: login_success - User: user_1016 - IP: 192.168.13.72 - RequestID: cvurxsspm6o +2025-06-18T15:19:48.381Z [TRACE] payment-service - Database SELECT on payments - Execution time: 498ms - Rows affected: 43 - RequestID: 4pkyf6vgkm8 +2025-06-18T15:19:48.481Z [TRACE] user-service - Database DELETE on sessions - Execution time: 131ms - Rows affected: 93 - RequestID: jjfp9lnlfqc +2025-06-18T15:19:48.581Z [TRACE] order-service - Operation: email_sent - Processing time: 229ms - RequestID: 3jh6u49kz7u +2025-06-18T15:19:48.681Z [DEBUG] user-service - Auth event: password_change - User: user_1053 - IP: 192.168.100.240 - RequestID: sbjzakfavkb +2025-06-18T15:19:48.781Z [DEBUG] order-service - Database INSERT on payments - Execution time: 36ms - Rows affected: 0 - RequestID: gb9r5pdevah +2025-06-18T15:19:48.881Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 184ms - Rows affected: 80 - RequestID: zp4alnrqj7 +2025-06-18T15:19:48.981Z [INFO] inventory-service - Auth event: password_change - User: user_1063 - IP: 192.168.30.79 - RequestID: ts00finznoh +2025-06-18T15:19:49.081Z [TRACE] notification-service - Auth event: password_change - User: user_1013 - IP: 192.168.138.123 - RequestID: lt85wdcnumr +2025-06-18T15:19:49.181Z [INFO] inventory-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.46.63 - RequestID: vraqsiegjw +2025-06-18T15:19:49.281Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 194ms - RequestID: l86roklz2tl +2025-06-18T15:19:49.381Z [DEBUG] order-service - Operation: notification_queued - Processing time: 694ms - RequestID: l7wg3c6giei +2025-06-18T15:19:49.481Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 252ms - Rows affected: 26 - RequestID: xa2rahwlf8l +2025-06-18T15:19:49.581Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 201 - Response time: 278ms - IP: 192.168.85.229 - User: user_1017 - RequestID: 1pylcpqtr3i +2025-06-18T15:19:49.681Z [TRACE] notification-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.159.94 - RequestID: tlof4djwfl +2025-06-18T15:19:49.781Z [INFO] user-service - Auth event: login_success - User: user_1068 - IP: 192.168.100.240 - RequestID: ngkcwo5qu0i +2025-06-18T15:19:49.881Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 500 - Response time: 122ms - IP: 192.168.13.72 - User: user_1020 - RequestID: olzdwhb79h8 +2025-06-18T15:19:49.981Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 484ms - IP: 192.168.235.117 - User: user_1032 - RequestID: h2h2tmd6p9s +2025-06-18T15:19:50.081Z [DEBUG] notification-service - Auth event: password_change - User: user_1060 - IP: 192.168.240.169 - RequestID: 0w7ed6k1fi0c +2025-06-18T15:19:50.181Z [TRACE] auth-service - Operation: email_sent - Processing time: 693ms - RequestID: eimfo3cpvu9 +2025-06-18T15:19:50.281Z [DEBUG] notification-service - Operation: order_created - Processing time: 1017ms - RequestID: f7vv3voo7f9 +2025-06-18T15:19:50.381Z [INFO] auth-service - Database INSERT on payments - Execution time: 107ms - Rows affected: 73 - RequestID: y39s9o1pkc +2025-06-18T15:19:50.481Z [TRACE] inventory-service - POST /api/v1/auth/login - Status: 503 - Response time: 726ms - IP: 192.168.229.123 - User: user_1023 - RequestID: 1unc3o1xi2k +2025-06-18T15:19:50.581Z [DEBUG] user-service - Auth event: logout - User: user_1017 - IP: 192.168.36.218 - RequestID: t9hpkcx1qyd +2025-06-18T15:19:50.681Z [INFO] auth-service - Operation: webhook_sent - Processing time: 136ms - RequestID: lhiwzoxqkd +2025-06-18T15:19:50.781Z [INFO] payment-service - Operation: cache_hit - Processing time: 488ms - RequestID: ayamzx44uu +2025-06-18T15:19:50.881Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 306ms - RequestID: qtrz7y2yjop +2025-06-18T15:19:50.981Z [INFO] user-service - Operation: webhook_sent - Processing time: 568ms - RequestID: qdjnjamcd3d +2025-06-18T15:19:51.081Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 152ms - Rows affected: 3 - RequestID: l23no5lw42 +2025-06-18T15:19:51.181Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 763ms - IP: 192.168.28.146 - User: user_1003 - RequestID: svuf6b0wj98 +2025-06-18T15:19:51.281Z [INFO] user-service - Database UPDATE on orders - Execution time: 439ms - Rows affected: 7 - RequestID: jvx106h59l +2025-06-18T15:19:51.381Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 401 - Response time: 1575ms - IP: 192.168.232.72 - User: user_1062 - RequestID: 2ltehx377is +2025-06-18T15:19:51.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1021 - IP: 192.168.211.72 - RequestID: i71axp8fgat +2025-06-18T15:19:51.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 83ms - RequestID: 7w16kb62eb9 +2025-06-18T15:19:51.681Z [INFO] payment-service - Operation: cache_hit - Processing time: 499ms - RequestID: uj33wwhhyl +2025-06-18T15:19:51.781Z [INFO] notification-service - Auth event: password_change - User: user_1045 - IP: 192.168.196.226 - RequestID: xj13lbblwe +2025-06-18T15:19:51.881Z [DEBUG] user-service - POST /api/v1/payments - Status: 404 - Response time: 941ms - IP: 192.168.227.77 - User: user_1093 - RequestID: 74vydzieg5 +2025-06-18T15:19:51.981Z [INFO] payment-service - POST /api/v1/users - Status: 404 - Response time: 1948ms - IP: 192.168.194.41 - User: user_1081 - RequestID: eb8cz2c9n9 +2025-06-18T15:19:52.081Z [TRACE] order-service - PATCH /api/v1/users - Status: 502 - Response time: 1618ms - IP: 192.168.144.38 - User: user_1076 - RequestID: utgz57kyo9 +2025-06-18T15:19:52.181Z [TRACE] order-service - Database INSERT on products - Execution time: 120ms - Rows affected: 70 - RequestID: 1j3eqyw3tqg +2025-06-18T15:19:52.281Z [INFO] order-service - Auth event: password_change - User: user_1020 - IP: 192.168.32.38 - RequestID: d6xmdtfmubq +2025-06-18T15:19:52.381Z [INFO] notification-service - GET /api/v1/auth/login - Status: 502 - Response time: 423ms - IP: 192.168.189.103 - User: user_1008 - RequestID: tov2vzj12if +2025-06-18T15:19:52.481Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 400 - Response time: 273ms - IP: 192.168.79.141 - User: user_1065 - RequestID: az60s2acesj +2025-06-18T15:19:52.581Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.232.72 - RequestID: 2stwko7zacf +2025-06-18T15:19:52.681Z [TRACE] inventory-service - Operation: email_sent - Processing time: 127ms - RequestID: gyjov2tiuss +2025-06-18T15:19:52.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1043 - IP: 192.168.64.33 - RequestID: hov9z7381lq +2025-06-18T15:19:52.881Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 921ms - RequestID: j6cwzpu0lqc +2025-06-18T15:19:52.981Z [INFO] auth-service - GET /api/v1/users - Status: 404 - Response time: 1169ms - IP: 192.168.64.33 - User: user_1041 - RequestID: qmai2p5m74e +2025-06-18T15:19:53.081Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1897ms - IP: 192.168.240.169 - User: user_1073 - RequestID: hnbaw8n86fh +2025-06-18T15:19:53.181Z [INFO] payment-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.44.5 - RequestID: tdh41pko1r +2025-06-18T15:19:53.281Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 403 - Response time: 1142ms - IP: 192.168.229.123 - User: user_1012 - RequestID: jba99lnpnp +2025-06-18T15:19:53.381Z [DEBUG] order-service - Database DELETE on orders - Execution time: 247ms - Rows affected: 12 - RequestID: avgtpdou4s +2025-06-18T15:19:53.481Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 511ms - RequestID: 1179cm0xtycj +2025-06-18T15:19:53.581Z [DEBUG] user-service - Database DELETE on orders - Execution time: 199ms - Rows affected: 52 - RequestID: r2zqqj6vfbd +2025-06-18T15:19:53.681Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 340ms - Rows affected: 0 - RequestID: rw3bgdozefg +2025-06-18T15:19:53.781Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1557ms - IP: 192.168.79.141 - User: user_1099 - RequestID: 7wkxxshyjb3 +2025-06-18T15:19:53.881Z [INFO] auth-service - Operation: cache_hit - Processing time: 677ms - RequestID: cvcgdchqxtk +2025-06-18T15:19:53.981Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 216ms - Rows affected: 71 - RequestID: z0tj438q6cl +2025-06-18T15:19:54.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1013 - IP: 192.168.181.225 - RequestID: bgmlze06a19 +2025-06-18T15:19:54.181Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 361ms - Rows affected: 83 - RequestID: lm1yr8icpz +2025-06-18T15:19:54.281Z [DEBUG] user-service - Auth event: login_failed - User: user_1017 - IP: 192.168.113.218 - RequestID: lng3jeh8oyn +2025-06-18T15:19:54.381Z [INFO] payment-service - Auth event: login_failed - User: user_1090 - IP: 192.168.104.37 - RequestID: xlfktesswki +2025-06-18T15:19:54.481Z [TRACE] order-service - Operation: email_sent - Processing time: 964ms - RequestID: dxd0hfjg7h +2025-06-18T15:19:54.581Z [TRACE] notification-service - Database INSERT on payments - Execution time: 273ms - Rows affected: 41 - RequestID: ulai6eddc7n +2025-06-18T15:19:54.681Z [INFO] order-service - Database INSERT on payments - Execution time: 500ms - Rows affected: 57 - RequestID: 9x4o4kiw8hs +2025-06-18T15:19:54.781Z [INFO] order-service - Database DELETE on sessions - Execution time: 146ms - Rows affected: 35 - RequestID: zo8no162pp +2025-06-18T15:19:54.881Z [TRACE] auth-service - Operation: cache_miss - Processing time: 242ms - RequestID: xqtps1s5ay +2025-06-18T15:19:54.981Z [DEBUG] order-service - Auth event: password_change - User: user_1095 - IP: 192.168.79.116 - RequestID: u5ud7a43oj +2025-06-18T15:19:55.081Z [INFO] order-service - Database DELETE on payments - Execution time: 45ms - Rows affected: 65 - RequestID: tn4kxomsox +2025-06-18T15:19:55.181Z [INFO] auth-service - Database INSERT on sessions - Execution time: 190ms - Rows affected: 81 - RequestID: k74cdk1qf0e +2025-06-18T15:19:55.281Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 404 - Response time: 565ms - IP: 192.168.33.76 - User: user_1043 - RequestID: ourwje8b5hj +2025-06-18T15:19:55.381Z [INFO] notification-service - Operation: cache_hit - Processing time: 543ms - RequestID: y292hhj0b9j +2025-06-18T15:19:55.481Z [DEBUG] order-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.30.79 - RequestID: 9vn9j4uri1m +2025-06-18T15:19:55.581Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 200 - Response time: 168ms - IP: 192.168.46.63 - User: user_1000 - RequestID: fb0eno2e4bs +2025-06-18T15:19:55.681Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 309ms - RequestID: x1c25itcyx +2025-06-18T15:19:55.781Z [DEBUG] user-service - PUT /api/v1/payments - Status: 200 - Response time: 1610ms - IP: 192.168.227.77 - User: user_1067 - RequestID: a78hi8ncv6d +2025-06-18T15:19:55.881Z [DEBUG] notification-service - Auth event: login_success - User: user_1061 - IP: 192.168.64.33 - RequestID: k85x0gagj7h +2025-06-18T15:19:55.981Z [TRACE] user-service - Database INSERT on orders - Execution time: 121ms - Rows affected: 35 - RequestID: j6yl324wjdg +2025-06-18T15:19:56.081Z [INFO] auth-service - Auth event: password_change - User: user_1003 - IP: 192.168.196.226 - RequestID: rvxittz82u9 +2025-06-18T15:19:56.181Z [INFO] payment-service - Database INSERT on sessions - Execution time: 381ms - Rows affected: 16 - RequestID: fuzwneag9d8 +2025-06-18T15:19:56.281Z [TRACE] user-service - Operation: cache_miss - Processing time: 647ms - RequestID: xxg7xcnt2xt +2025-06-18T15:19:56.381Z [INFO] notification-service - Operation: payment_processed - Processing time: 170ms - RequestID: 422mh1z31lk +2025-06-18T15:19:56.481Z [TRACE] user-service - POST /api/v1/inventory - Status: 400 - Response time: 596ms - IP: 192.168.46.63 - User: user_1061 - RequestID: pj12g1hzhys +2025-06-18T15:19:56.581Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 833ms - RequestID: nf4r74q28u8 +2025-06-18T15:19:56.681Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 939ms - RequestID: nwpkqvjj55e +2025-06-18T15:19:56.781Z [INFO] user-service - Auth event: password_change - User: user_1065 - IP: 192.168.10.184 - RequestID: 5j87nmhgg0d +2025-06-18T15:19:56.881Z [INFO] auth-service - Database INSERT on payments - Execution time: 40ms - Rows affected: 40 - RequestID: te9ra6li88g +2025-06-18T15:19:56.981Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 368ms - RequestID: 5nk2ddjmq0k +2025-06-18T15:19:57.081Z [DEBUG] order-service - Database DELETE on products - Execution time: 450ms - Rows affected: 85 - RequestID: e02x4f5s7x8 +2025-06-18T15:19:57.181Z [INFO] auth-service - Auth event: login_success - User: user_1092 - IP: 192.168.30.79 - RequestID: 84ab9788m1w +2025-06-18T15:19:57.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.46.63 - RequestID: 7kdbl7saz2k +2025-06-18T15:19:57.381Z [DEBUG] user-service - Auth event: logout - User: user_1045 - IP: 192.168.68.158 - RequestID: dze9d3xyitg +2025-06-18T15:19:57.481Z [TRACE] user-service - PATCH /api/v1/users - Status: 201 - Response time: 604ms - IP: 192.168.189.103 - User: user_1024 - RequestID: pb4fu7rjfk +2025-06-18T15:19:57.581Z [DEBUG] user-service - Auth event: login_success - User: user_1014 - IP: 192.168.64.33 - RequestID: l00aazz8gm9 +2025-06-18T15:19:57.681Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.79.116 - RequestID: 6hlhhxfqe5d +2025-06-18T15:19:57.781Z [INFO] user-service - Operation: cache_hit - Processing time: 940ms - RequestID: dfv23527w88 +2025-06-18T15:19:57.881Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 1295ms - IP: 192.168.85.229 - User: user_1023 - RequestID: kdx821o7rz +2025-06-18T15:19:57.981Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 68ms - RequestID: gqi2nd6g6f +2025-06-18T15:19:58.081Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 890ms - RequestID: wrtjdcplkuc +2025-06-18T15:19:58.181Z [TRACE] notification-service - POST /api/v1/users - Status: 500 - Response time: 1849ms - IP: 192.168.227.77 - User: user_1088 - RequestID: wl0cra2nob +2025-06-18T15:19:58.281Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1445ms - IP: 192.168.79.143 - User: user_1083 - RequestID: jfrjk7yo2g +2025-06-18T15:19:58.381Z [TRACE] auth-service - Operation: email_sent - Processing time: 364ms - RequestID: hh3piojp1gh +2025-06-18T15:19:58.481Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 78ms - RequestID: dslo7ptf3wi +2025-06-18T15:19:58.581Z [INFO] auth-service - Operation: inventory_updated - Processing time: 274ms - RequestID: 2pxikrqf20c +2025-06-18T15:19:58.681Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 503 - Response time: 512ms - IP: 192.168.53.133 - User: user_1082 - RequestID: q3oniu71jf8 +2025-06-18T15:19:58.781Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 433ms - Rows affected: 73 - RequestID: v61p8nk2ee +2025-06-18T15:19:58.881Z [DEBUG] user-service - Database INSERT on users - Execution time: 344ms - Rows affected: 73 - RequestID: zkv5d8xr7z +2025-06-18T15:19:58.981Z [INFO] user-service - POST /api/v1/payments - Status: 401 - Response time: 648ms - IP: 192.168.138.123 - User: user_1066 - RequestID: pvxdxd0sc5s +2025-06-18T15:19:59.081Z [INFO] auth-service - GET /api/v1/auth/login - Status: 500 - Response time: 495ms - IP: 192.168.46.63 - User: user_1043 - RequestID: 2scqpadwl2g +2025-06-18T15:19:59.181Z [DEBUG] payment-service - Database DELETE on users - Execution time: 95ms - Rows affected: 81 - RequestID: a551utxy7r7 +2025-06-18T15:19:59.281Z [DEBUG] user-service - POST /api/v1/users - Status: 400 - Response time: 172ms - IP: 192.168.196.226 - User: user_1092 - RequestID: qwcofr6kxlr +2025-06-18T15:19:59.381Z [DEBUG] user-service - Auth event: login_success - User: user_1088 - IP: 192.168.14.77 - RequestID: rps8w33j4i +2025-06-18T15:19:59.481Z [INFO] payment-service - Auth event: login_success - User: user_1034 - IP: 192.168.247.134 - RequestID: hha2o39rlsr +2025-06-18T15:19:59.581Z [INFO] user-service - Operation: webhook_sent - Processing time: 839ms - RequestID: rcv1jmvften +2025-06-18T15:19:59.681Z [TRACE] payment-service - PUT /api/v1/payments - Status: 503 - Response time: 1453ms - IP: 192.168.181.225 - User: user_1034 - RequestID: ko2f28qfahp +2025-06-18T15:19:59.781Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 946ms - RequestID: 08ikq0pdm7le +2025-06-18T15:19:59.881Z [DEBUG] auth-service - PUT /api/v1/users - Status: 500 - Response time: 597ms - IP: 192.168.100.240 - User: user_1091 - RequestID: ukieqywajdl +2025-06-18T15:19:59.981Z [INFO] auth-service - Auth event: password_change - User: user_1021 - IP: 192.168.227.233 - RequestID: mylosc11l2l +2025-06-18T15:20:00.081Z [TRACE] auth-service - Auth event: login_success - User: user_1057 - IP: 192.168.33.76 - RequestID: jisvb97ntn +2025-06-18T15:20:00.181Z [INFO] auth-service - Database SELECT on orders - Execution time: 380ms - Rows affected: 42 - RequestID: 3a50xmb6qhq +2025-06-18T15:20:00.281Z [TRACE] user-service - POST /api/v1/auth/login - Status: 200 - Response time: 1420ms - IP: 192.168.167.32 - User: user_1021 - RequestID: b6io38ntt3t +2025-06-18T15:20:00.381Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 95ms - Rows affected: 94 - RequestID: 0esmmlqbzrq +2025-06-18T15:20:00.481Z [INFO] order-service - Auth event: password_change - User: user_1096 - IP: 192.168.194.41 - RequestID: cdo3rbkeqil +2025-06-18T15:20:00.581Z [TRACE] auth-service - Operation: notification_queued - Processing time: 579ms - RequestID: ryewphieaze +2025-06-18T15:20:00.681Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 1025ms - RequestID: ho23pup9job +2025-06-18T15:20:00.781Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 840ms - RequestID: kjuaf6032vq +2025-06-18T15:20:00.881Z [TRACE] order-service - Database INSERT on products - Execution time: 274ms - Rows affected: 29 - RequestID: 8hpoomcwfis +2025-06-18T15:20:00.981Z [INFO] payment-service - Operation: webhook_sent - Processing time: 835ms - RequestID: r5qebmg7sa +2025-06-18T15:20:01.081Z [DEBUG] notification-service - Auth event: password_change - User: user_1017 - IP: 192.168.158.144 - RequestID: zq1ue25lptr +2025-06-18T15:20:01.181Z [TRACE] notification-service - GET /api/v1/orders - Status: 403 - Response time: 468ms - IP: 192.168.144.38 - User: user_1061 - RequestID: bxuddyj6jkj +2025-06-18T15:20:01.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.97.87 - RequestID: 7bu11h6gbrn +2025-06-18T15:20:01.381Z [TRACE] auth-service - POST /api/v1/orders - Status: 503 - Response time: 649ms - IP: 192.168.33.76 - User: user_1058 - RequestID: 67jtd44p7tu +2025-06-18T15:20:01.481Z [DEBUG] order-service - Operation: order_created - Processing time: 974ms - RequestID: ba3y2xo9b4 +2025-06-18T15:20:01.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.242.165 - RequestID: bwtujzojthl +2025-06-18T15:20:01.681Z [TRACE] order-service - Database INSERT on payments - Execution time: 261ms - Rows affected: 9 - RequestID: 8lns3tpqak6 +2025-06-18T15:20:01.781Z [INFO] payment-service - Auth event: login_success - User: user_1090 - IP: 192.168.159.94 - RequestID: z7gqeaysk3g +2025-06-18T15:20:01.881Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 667ms - IP: 192.168.1.152 - User: user_1093 - RequestID: hk3sxgouswh +2025-06-18T15:20:01.981Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 404 - Response time: 537ms - IP: 192.168.53.133 - User: user_1009 - RequestID: 056qd4qqle3f +2025-06-18T15:20:02.081Z [DEBUG] order-service - Operation: order_created - Processing time: 868ms - RequestID: mt709o2lhgs +2025-06-18T15:20:02.181Z [INFO] user-service - Auth event: password_change - User: user_1087 - IP: 192.168.44.5 - RequestID: swtujrenos +2025-06-18T15:20:02.281Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 251ms - Rows affected: 54 - RequestID: xjqlugukfa +2025-06-18T15:20:02.381Z [DEBUG] auth-service - POST /api/v1/orders - Status: 401 - Response time: 1597ms - IP: 192.168.79.141 - User: user_1067 - RequestID: kqx5y4krm7 +2025-06-18T15:20:02.481Z [TRACE] order-service - PUT /api/v1/orders - Status: 200 - Response time: 140ms - IP: 192.168.30.79 - User: user_1047 - RequestID: 96b5bby0wd +2025-06-18T15:20:02.581Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 228ms - Rows affected: 51 - RequestID: jvo73d8h77m +2025-06-18T15:20:02.681Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 417ms - Rows affected: 39 - RequestID: bkat6as4ddp +2025-06-18T15:20:02.781Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 189ms - Rows affected: 32 - RequestID: x0ey7uanmz +2025-06-18T15:20:02.881Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 330ms - Rows affected: 88 - RequestID: chnqk032t24 +2025-06-18T15:20:02.981Z [INFO] auth-service - Auth event: password_change - User: user_1003 - IP: 192.168.159.94 - RequestID: 31qanz75vla +2025-06-18T15:20:03.081Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 189ms - Rows affected: 57 - RequestID: e1okzf1k3po +2025-06-18T15:20:03.181Z [DEBUG] user-service - Auth event: login_failed - User: user_1086 - IP: 192.168.147.171 - RequestID: klzj4vkxq1 +2025-06-18T15:20:03.281Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 200 - Response time: 1115ms - IP: 192.168.144.38 - User: user_1008 - RequestID: qtapus97peg +2025-06-18T15:20:03.381Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 502 - Response time: 902ms - IP: 192.168.181.225 - User: user_1004 - RequestID: nyxc7jj2vnc +2025-06-18T15:20:03.481Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 253ms - RequestID: qka4f5zvyxs +2025-06-18T15:20:03.581Z [TRACE] notification-service - Auth event: logout - User: user_1079 - IP: 192.168.97.87 - RequestID: atgwkuaz57 +2025-06-18T15:20:03.681Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.32.38 - RequestID: 3caf47loiit +2025-06-18T15:20:03.781Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 513ms - RequestID: 0ih9gcztswi +2025-06-18T15:20:03.881Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 117ms - RequestID: ge58bnptw5e +2025-06-18T15:20:03.981Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 427ms - RequestID: w7wamqtssw +2025-06-18T15:20:04.081Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 247ms - RequestID: pbap00m9vlj +2025-06-18T15:20:04.181Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1770ms - IP: 192.168.13.72 - User: user_1029 - RequestID: cwdztxkg8vv +2025-06-18T15:20:04.281Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 423ms - RequestID: qrtxxt0026 +2025-06-18T15:20:04.381Z [DEBUG] payment-service - Database DELETE on users - Execution time: 419ms - Rows affected: 30 - RequestID: g64w0anshp +2025-06-18T15:20:04.481Z [TRACE] inventory-service - Auth event: login_failed - User: user_1055 - IP: 192.168.44.5 - RequestID: qo0d0phscl9 +2025-06-18T15:20:04.581Z [INFO] order-service - Operation: cache_miss - Processing time: 625ms - RequestID: zhaciu112lr +2025-06-18T15:20:04.681Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 59ms - Rows affected: 78 - RequestID: tzpbj0h6o6m +2025-06-18T15:20:04.781Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 385ms - Rows affected: 54 - RequestID: 1tq2hxu8pgp +2025-06-18T15:20:04.881Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 401 - Response time: 621ms - IP: 192.168.167.32 - User: user_1067 - RequestID: chgd9vioj4 +2025-06-18T15:20:04.981Z [TRACE] auth-service - Auth event: login_success - User: user_1049 - IP: 192.168.211.72 - RequestID: arbjxnpv5eg +2025-06-18T15:20:05.081Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 334ms - IP: 192.168.68.128 - User: user_1083 - RequestID: 8dh2hc686vg +2025-06-18T15:20:05.181Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 138ms - Rows affected: 43 - RequestID: zh8p4pdnv6 +2025-06-18T15:20:05.281Z [INFO] user-service - Auth event: password_change - User: user_1081 - IP: 192.168.174.114 - RequestID: u1nofnbpxl +2025-06-18T15:20:05.381Z [TRACE] auth-service - POST /api/v1/users - Status: 503 - Response time: 547ms - IP: 192.168.36.218 - User: user_1003 - RequestID: qc59txi7y8 +2025-06-18T15:20:05.481Z [INFO] notification-service - Operation: order_created - Processing time: 812ms - RequestID: 7fhuwrlv4px +2025-06-18T15:20:05.581Z [INFO] order-service - DELETE /api/v1/inventory - Status: 404 - Response time: 1776ms - IP: 192.168.100.240 - User: user_1015 - RequestID: l16eluhykua +2025-06-18T15:20:05.681Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.46.63 - RequestID: y3pp2jf51gq +2025-06-18T15:20:05.781Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 134ms - Rows affected: 67 - RequestID: ds13ww3ztv4 +2025-06-18T15:20:05.881Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1612ms - IP: 192.168.33.76 - User: user_1070 - RequestID: lqjct9p15e +2025-06-18T15:20:05.981Z [TRACE] auth-service - Operation: email_sent - Processing time: 624ms - RequestID: tq3wtcbvlo +2025-06-18T15:20:06.081Z [TRACE] auth-service - Database DELETE on products - Execution time: 476ms - Rows affected: 15 - RequestID: 05ee8ztg1qv6 +2025-06-18T15:20:06.181Z [DEBUG] inventory-service - Auth event: login_success - User: user_1023 - IP: 192.168.242.165 - RequestID: 3txjkmdbi9m +2025-06-18T15:20:06.281Z [INFO] inventory-service - Auth event: logout - User: user_1012 - IP: 192.168.100.240 - RequestID: lcpyy5buzij +2025-06-18T15:20:06.381Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 404 - Response time: 583ms - IP: 192.168.170.215 - User: user_1015 - RequestID: ymqux528cck +2025-06-18T15:20:06.481Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 806ms - RequestID: vfw4nslp31m +2025-06-18T15:20:06.581Z [TRACE] payment-service - Auth event: login_success - User: user_1015 - IP: 192.168.235.117 - RequestID: rugpd1nucud +2025-06-18T15:20:06.681Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1797ms - IP: 192.168.64.33 - User: user_1051 - RequestID: 7zvmoohc4 +2025-06-18T15:20:06.781Z [INFO] inventory-service - Database DELETE on products - Execution time: 227ms - Rows affected: 61 - RequestID: ec709ad5l4 +2025-06-18T15:20:06.881Z [TRACE] inventory-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1449ms - IP: 192.168.31.117 - User: user_1066 - RequestID: 6ryuao7tih +2025-06-18T15:20:06.981Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 153ms - Rows affected: 40 - RequestID: nd8t9rf4pen +2025-06-18T15:20:07.081Z [TRACE] notification-service - Operation: cache_hit - Processing time: 570ms - RequestID: kbevvyxdxk +2025-06-18T15:20:07.181Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 508ms - RequestID: fozntz6gy38 +2025-06-18T15:20:07.281Z [INFO] auth-service - PUT /api/v1/orders - Status: 503 - Response time: 901ms - IP: 192.168.194.41 - User: user_1039 - RequestID: 8mtu6ch1wy +2025-06-18T15:20:07.381Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 301ms - IP: 192.168.81.206 - User: user_1033 - RequestID: bxsvl36n4s +2025-06-18T15:20:07.481Z [INFO] user-service - Operation: email_sent - Processing time: 540ms - RequestID: sl19xxrx9o +2025-06-18T15:20:07.581Z [INFO] inventory-service - Operation: payment_processed - Processing time: 245ms - RequestID: sr8q2410ox +2025-06-18T15:20:07.681Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 422ms - Rows affected: 80 - RequestID: 03p90iye8w7m +2025-06-18T15:20:07.781Z [INFO] notification-service - POST /api/v1/users - Status: 201 - Response time: 1837ms - IP: 192.168.170.215 - User: user_1041 - RequestID: uoyay0isn38 +2025-06-18T15:20:07.881Z [INFO] payment-service - Operation: webhook_sent - Processing time: 997ms - RequestID: aeorbyr5gu +2025-06-18T15:20:07.981Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 87ms - Rows affected: 18 - RequestID: ev7do50y4ar +2025-06-18T15:20:08.081Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 464ms - RequestID: ytuik8cwu3 +2025-06-18T15:20:08.181Z [INFO] auth-service - Operation: inventory_updated - Processing time: 746ms - RequestID: 84ptowbqpix +2025-06-18T15:20:08.281Z [TRACE] auth-service - GET /api/v1/users - Status: 403 - Response time: 704ms - IP: 192.168.46.63 - User: user_1044 - RequestID: d3x0swyfx1l +2025-06-18T15:20:08.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.247.134 - RequestID: j6kdla2lagi +2025-06-18T15:20:08.481Z [TRACE] auth-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.81.206 - RequestID: qs9xdbiwzh +2025-06-18T15:20:08.581Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 502 - Response time: 1664ms - IP: 192.168.170.215 - User: user_1020 - RequestID: pnqo5579os +2025-06-18T15:20:08.681Z [TRACE] auth-service - POST /api/v1/inventory - Status: 400 - Response time: 887ms - IP: 192.168.79.116 - User: user_1048 - RequestID: md8mq0fbh8p +2025-06-18T15:20:08.781Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 403 - Response time: 1426ms - IP: 192.168.196.226 - User: user_1034 - RequestID: wqhkd3wyg3b +2025-06-18T15:20:08.881Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 1016ms - RequestID: 6441baacqow +2025-06-18T15:20:08.981Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 346ms - RequestID: wtpx45sgexg +2025-06-18T15:20:09.081Z [TRACE] user-service - Auth event: login_success - User: user_1084 - IP: 192.168.189.103 - RequestID: msj8tmwnie +2025-06-18T15:20:09.181Z [TRACE] auth-service - Database SELECT on orders - Execution time: 305ms - Rows affected: 35 - RequestID: ang9mw32d7c +2025-06-18T15:20:09.281Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 496ms - Rows affected: 85 - RequestID: zftnzecseld +2025-06-18T15:20:09.381Z [DEBUG] order-service - Auth event: logout - User: user_1085 - IP: 192.168.141.100 - RequestID: 8vvnz9s6om2 +2025-06-18T15:20:09.481Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 494ms - Rows affected: 50 - RequestID: yorm4l9nv2e +2025-06-18T15:20:09.581Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 401 - Response time: 1578ms - IP: 192.168.227.77 - User: user_1092 - RequestID: lrdrdtorldf +2025-06-18T15:20:09.681Z [INFO] payment-service - Operation: cache_miss - Processing time: 641ms - RequestID: jmxt6a2zj4e +2025-06-18T15:20:09.781Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 134ms - RequestID: ckrjbwqu4wl +2025-06-18T15:20:09.881Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 477ms - Rows affected: 20 - RequestID: 3io9fok0le6 +2025-06-18T15:20:09.981Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 296ms - Rows affected: 74 - RequestID: sfzftaabcl +2025-06-18T15:20:10.081Z [DEBUG] user-service - Operation: notification_queued - Processing time: 582ms - RequestID: e5a0k77nt9s +2025-06-18T15:20:10.181Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 342ms - Rows affected: 91 - RequestID: 9ysqyjrazan +2025-06-18T15:20:10.281Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1821ms - IP: 192.168.113.218 - User: user_1050 - RequestID: cdyhwgdrnx5 +2025-06-18T15:20:10.381Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 161ms - Rows affected: 56 - RequestID: vwj3qlfto5l +2025-06-18T15:20:10.481Z [DEBUG] order-service - Operation: cache_hit - Processing time: 606ms - RequestID: 1vxwi8o5wf4 +2025-06-18T15:20:10.581Z [TRACE] order-service - PATCH /api/v1/orders - Status: 401 - Response time: 1508ms - IP: 192.168.113.218 - User: user_1005 - RequestID: cnnba4k4oyc +2025-06-18T15:20:10.681Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 151ms - Rows affected: 1 - RequestID: ddnpyyy6bik +2025-06-18T15:20:10.781Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 610ms - RequestID: hxtgh0lycf +2025-06-18T15:20:10.881Z [DEBUG] notification-service - Database SELECT on products - Execution time: 298ms - Rows affected: 9 - RequestID: 4gf98kj16qi +2025-06-18T15:20:10.981Z [TRACE] auth-service - Auth event: logout - User: user_1019 - IP: 192.168.187.199 - RequestID: da3iks1m2ln +2025-06-18T15:20:11.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.138.123 - RequestID: g6s7pxx93w +2025-06-18T15:20:11.181Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 273ms - RequestID: g1cuh65l2e +2025-06-18T15:20:11.281Z [TRACE] payment-service - Database DELETE on payments - Execution time: 51ms - Rows affected: 96 - RequestID: ypnpjnxbc6 +2025-06-18T15:20:11.381Z [TRACE] order-service - Operation: email_sent - Processing time: 357ms - RequestID: anbf59hukr5 +2025-06-18T15:20:11.481Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 697ms - RequestID: nkthvekat0h +2025-06-18T15:20:11.581Z [INFO] user-service - GET /api/v1/inventory - Status: 401 - Response time: 1566ms - IP: 192.168.242.165 - User: user_1029 - RequestID: u0v8w1awjs +2025-06-18T15:20:11.681Z [DEBUG] order-service - Auth event: login_success - User: user_1028 - IP: 192.168.170.215 - RequestID: 4i1mn47r0cv +2025-06-18T15:20:11.781Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 404 - Response time: 250ms - IP: 192.168.147.171 - User: user_1047 - RequestID: kunpsc5tdfh +2025-06-18T15:20:11.881Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 1031ms - RequestID: 6ngibwnlp83 +2025-06-18T15:20:11.981Z [INFO] auth-service - Operation: webhook_sent - Processing time: 399ms - RequestID: q9cw1qu5znn +2025-06-18T15:20:12.081Z [TRACE] order-service - Database UPDATE on products - Execution time: 142ms - Rows affected: 87 - RequestID: ll6edfd0qnd +2025-06-18T15:20:12.181Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 778ms - IP: 192.168.10.184 - User: user_1065 - RequestID: 42zshbqw7ng +2025-06-18T15:20:12.281Z [INFO] order-service - GET /api/v1/users - Status: 502 - Response time: 198ms - IP: 192.168.46.63 - User: user_1046 - RequestID: sgmues7kg3d +2025-06-18T15:20:12.381Z [INFO] user-service - Database INSERT on products - Execution time: 25ms - Rows affected: 43 - RequestID: vvoai2fodtn +2025-06-18T15:20:12.481Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 433ms - IP: 192.168.97.87 - User: user_1077 - RequestID: kmcsisot29 +2025-06-18T15:20:12.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 368ms - RequestID: qrl1ioi0mq +2025-06-18T15:20:12.681Z [DEBUG] order-service - Auth event: logout - User: user_1020 - IP: 192.168.159.94 - RequestID: qu4f2ibl49j +2025-06-18T15:20:12.781Z [DEBUG] notification-service - PUT /api/v1/users - Status: 200 - Response time: 455ms - IP: 192.168.196.226 - User: user_1040 - RequestID: wb2o676biy +2025-06-18T15:20:12.881Z [INFO] user-service - Database DELETE on products - Execution time: 305ms - Rows affected: 99 - RequestID: gksulufneow +2025-06-18T15:20:12.981Z [INFO] auth-service - Operation: notification_queued - Processing time: 926ms - RequestID: 4bd23zywmv +2025-06-18T15:20:13.081Z [INFO] auth-service - Auth event: logout - User: user_1017 - IP: 192.168.79.116 - RequestID: yb29futfnrd +2025-06-18T15:20:13.181Z [TRACE] auth-service - Operation: order_created - Processing time: 646ms - RequestID: uzc4kfzqaj +2025-06-18T15:20:13.281Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 241ms - Rows affected: 97 - RequestID: 8rtd2lgjixb +2025-06-18T15:20:13.381Z [TRACE] payment-service - Database DELETE on payments - Execution time: 461ms - Rows affected: 72 - RequestID: gglikocsb5g +2025-06-18T15:20:13.481Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 400 - Response time: 459ms - IP: 192.168.44.5 - User: user_1012 - RequestID: d95ggwxo7mu +2025-06-18T15:20:13.581Z [DEBUG] user-service - Database INSERT on orders - Execution time: 460ms - Rows affected: 54 - RequestID: vwte3hjulcq +2025-06-18T15:20:13.681Z [INFO] notification-service - Database UPDATE on products - Execution time: 123ms - Rows affected: 89 - RequestID: zfulctqxt0l +2025-06-18T15:20:13.781Z [DEBUG] notification-service - GET /api/v1/orders - Status: 404 - Response time: 1217ms - IP: 192.168.113.218 - User: user_1081 - RequestID: xtw83opl4p +2025-06-18T15:20:13.881Z [DEBUG] auth-service - Auth event: login_success - User: user_1041 - IP: 192.168.174.114 - RequestID: 5qw131279dx +2025-06-18T15:20:13.981Z [TRACE] order-service - Database SELECT on orders - Execution time: 448ms - Rows affected: 89 - RequestID: j2x12gs5v7 +2025-06-18T15:20:14.081Z [INFO] order-service - Operation: cache_miss - Processing time: 698ms - RequestID: pd1b3xawix9 +2025-06-18T15:20:14.181Z [INFO] payment-service - Auth event: password_change - User: user_1064 - IP: 192.168.79.141 - RequestID: l4l4re0ay4m +2025-06-18T15:20:14.281Z [DEBUG] order-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.14.77 - RequestID: hox2prjg1ip +2025-06-18T15:20:14.381Z [TRACE] notification-service - POST /api/v1/inventory - Status: 401 - Response time: 1784ms - IP: 192.168.174.114 - User: user_1070 - RequestID: 1ed42ikj31v +2025-06-18T15:20:14.481Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 147ms - Rows affected: 82 - RequestID: bhwstos1pj +2025-06-18T15:20:14.581Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 267ms - Rows affected: 59 - RequestID: mg3945cd85 +2025-06-18T15:20:14.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 513ms - RequestID: h5bpekxyy +2025-06-18T15:20:14.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.13.72 - RequestID: enavnp9jghj +2025-06-18T15:20:14.881Z [TRACE] payment-service - PUT /api/v1/auth/login - Status: 503 - Response time: 382ms - IP: 192.168.141.100 - User: user_1063 - RequestID: k79a9j039ki +2025-06-18T15:20:14.981Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 1022ms - RequestID: 72ii9ezjuqq +2025-06-18T15:20:15.081Z [TRACE] inventory-service - DELETE /api/v1/users - Status: 500 - Response time: 414ms - IP: 192.168.229.123 - User: user_1059 - RequestID: s5nq3bqqqpk +2025-06-18T15:20:15.181Z [DEBUG] order-service - Database DELETE on payments - Execution time: 268ms - Rows affected: 58 - RequestID: hw1vcd01kwa +2025-06-18T15:20:15.281Z [INFO] auth-service - Database UPDATE on users - Execution time: 115ms - Rows affected: 65 - RequestID: ehkj1saw67p +2025-06-18T15:20:15.381Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.33.76 - RequestID: 5nyis83bv9f +2025-06-18T15:20:15.481Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 400 - Response time: 841ms - IP: 192.168.68.158 - User: user_1066 - RequestID: owj1185ncx9 +2025-06-18T15:20:15.581Z [TRACE] payment-service - Database SELECT on users - Execution time: 112ms - Rows affected: 19 - RequestID: aff7kcrayjt +2025-06-18T15:20:15.681Z [DEBUG] user-service - Operation: email_sent - Processing time: 669ms - RequestID: 7jvgequgitt +2025-06-18T15:20:15.781Z [INFO] order-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.13.72 - RequestID: mqim29l7zx +2025-06-18T15:20:15.881Z [INFO] notification-service - Database SELECT on products - Execution time: 74ms - Rows affected: 23 - RequestID: folftdt8cvm +2025-06-18T15:20:15.981Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 403 - Response time: 1776ms - IP: 192.168.181.225 - User: user_1041 - RequestID: s3v8hm18e0m +2025-06-18T15:20:16.081Z [INFO] auth-service - Database DELETE on products - Execution time: 128ms - Rows affected: 24 - RequestID: qsjdm8rjeir +2025-06-18T15:20:16.181Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 201 - Response time: 170ms - IP: 192.168.181.225 - User: user_1006 - RequestID: sce85baaxba +2025-06-18T15:20:16.281Z [TRACE] order-service - Auth event: logout - User: user_1053 - IP: 192.168.174.114 - RequestID: y5lh99jb2xe +2025-06-18T15:20:16.381Z [TRACE] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 428ms - IP: 192.168.158.144 - User: user_1031 - RequestID: ug4lmzmyexh +2025-06-18T15:20:16.481Z [TRACE] user-service - Operation: webhook_sent - Processing time: 165ms - RequestID: zwt2qn9pjqi +2025-06-18T15:20:16.581Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 404 - Response time: 1597ms - IP: 192.168.33.76 - User: user_1014 - RequestID: 1fd1rar4t4w +2025-06-18T15:20:16.681Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 502 - Response time: 837ms - IP: 192.168.81.206 - User: user_1041 - RequestID: 3qu0stn0nju +2025-06-18T15:20:16.781Z [INFO] user-service - Database SELECT on products - Execution time: 214ms - Rows affected: 95 - RequestID: 1olfo7spjwy +2025-06-18T15:20:16.881Z [DEBUG] user-service - Operation: notification_queued - Processing time: 580ms - RequestID: zdqyyus4crk +2025-06-18T15:20:16.981Z [DEBUG] inventory-service - Auth event: logout - User: user_1093 - IP: 192.168.46.63 - RequestID: drqgny6odgj +2025-06-18T15:20:17.081Z [TRACE] user-service - Operation: order_created - Processing time: 455ms - RequestID: 6gtjhmle5j +2025-06-18T15:20:17.181Z [INFO] user-service - Auth event: password_change - User: user_1081 - IP: 192.168.181.225 - RequestID: fvk7cv20qkv +2025-06-18T15:20:17.281Z [DEBUG] order-service - GET /api/v1/payments - Status: 200 - Response time: 1649ms - IP: 192.168.133.7 - User: user_1080 - RequestID: 0lnv2mkrowmr +2025-06-18T15:20:17.381Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 435ms - Rows affected: 67 - RequestID: sgkyofioi3 +2025-06-18T15:20:17.481Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 388ms - Rows affected: 95 - RequestID: am4i14ys6kb +2025-06-18T15:20:17.581Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1816ms - IP: 192.168.11.60 - User: user_1093 - RequestID: mq51sfoi71p +2025-06-18T15:20:17.681Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 11ms - Rows affected: 60 - RequestID: iugfkm2w0al +2025-06-18T15:20:17.781Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 183ms - Rows affected: 82 - RequestID: ddcrpb27sa4 +2025-06-18T15:20:17.881Z [DEBUG] notification-service - Database DELETE on users - Execution time: 477ms - Rows affected: 69 - RequestID: 4ocll2a6n38 +2025-06-18T15:20:17.981Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 348ms - Rows affected: 19 - RequestID: cpg0ke7g4va +2025-06-18T15:20:18.081Z [DEBUG] user-service - Operation: email_sent - Processing time: 465ms - RequestID: d06qrxhm6c +2025-06-18T15:20:18.181Z [INFO] order-service - Operation: notification_queued - Processing time: 448ms - RequestID: 5eg6rwfsu3w +2025-06-18T15:20:18.281Z [INFO] user-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.242.165 - RequestID: hp7sq8pwqy +2025-06-18T15:20:18.381Z [INFO] user-service - Database INSERT on products - Execution time: 65ms - Rows affected: 26 - RequestID: dwufrz0zm5 +2025-06-18T15:20:18.481Z [DEBUG] user-service - Auth event: login_failed - User: user_1063 - IP: 192.168.229.123 - RequestID: 7mtmw5x52xq +2025-06-18T15:20:18.581Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1006 - IP: 192.168.133.7 - RequestID: i7hen30umz +2025-06-18T15:20:18.681Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 374ms - Rows affected: 50 - RequestID: yc4igtt5vnl +2025-06-18T15:20:18.781Z [INFO] inventory-service - Auth event: login_success - User: user_1044 - IP: 192.168.31.117 - RequestID: xj0dx7kbiz +2025-06-18T15:20:18.881Z [TRACE] user-service - Operation: payment_processed - Processing time: 565ms - RequestID: 9fmysdlvo4 +2025-06-18T15:20:18.981Z [TRACE] payment-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.187.199 - RequestID: qwis08q03i +2025-06-18T15:20:19.081Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1164ms - IP: 192.168.144.38 - User: user_1040 - RequestID: 8b7ci99uhy9 +2025-06-18T15:20:19.181Z [INFO] payment-service - Database DELETE on users - Execution time: 156ms - Rows affected: 7 - RequestID: iu2ehhynoa9 +2025-06-18T15:20:19.281Z [TRACE] inventory-service - POST /api/v1/users - Status: 200 - Response time: 1317ms - IP: 192.168.159.94 - User: user_1004 - RequestID: 1mnu6prnuue +2025-06-18T15:20:19.381Z [INFO] auth-service - Operation: order_created - Processing time: 803ms - RequestID: z8dh7a08e1n +2025-06-18T15:20:19.481Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 334ms - Rows affected: 64 - RequestID: ocisolsg57b +2025-06-18T15:20:19.581Z [TRACE] order-service - Operation: email_sent - Processing time: 382ms - RequestID: vx5kgx3rl0q +2025-06-18T15:20:19.681Z [INFO] user-service - Operation: cache_hit - Processing time: 780ms - RequestID: hopab1bfpc7 +2025-06-18T15:20:19.781Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.242.165 - RequestID: 178i0tdzzvz +2025-06-18T15:20:19.881Z [INFO] payment-service - Database INSERT on sessions - Execution time: 388ms - Rows affected: 54 - RequestID: 5x3prlhh748 +2025-06-18T15:20:19.981Z [DEBUG] user-service - POST /api/v1/payments - Status: 500 - Response time: 853ms - IP: 192.168.138.123 - User: user_1018 - RequestID: 4tsdqnr986 +2025-06-18T15:20:20.081Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 929ms - IP: 192.168.147.171 - User: user_1001 - RequestID: y210iiqkyna +2025-06-18T15:20:20.181Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 375ms - Rows affected: 47 - RequestID: sgbq33x3do +2025-06-18T15:20:20.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.141.100 - RequestID: 51on1j6cu1t +2025-06-18T15:20:20.381Z [DEBUG] notification-service - Operation: email_sent - Processing time: 256ms - RequestID: hotu9y5bsmd +2025-06-18T15:20:20.481Z [TRACE] payment-service - Auth event: password_change - User: user_1023 - IP: 192.168.1.152 - RequestID: wqlyi7s8kf +2025-06-18T15:20:20.581Z [INFO] inventory-service - Database UPDATE on products - Execution time: 36ms - Rows affected: 53 - RequestID: snexult341 +2025-06-18T15:20:20.681Z [INFO] user-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.227.77 - RequestID: awogfijb3nr +2025-06-18T15:20:20.781Z [INFO] payment-service - Database DELETE on orders - Execution time: 220ms - Rows affected: 58 - RequestID: g1hus0qwo7n +2025-06-18T15:20:20.881Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.64.33 - RequestID: e8o3m20957n +2025-06-18T15:20:20.981Z [TRACE] auth-service - Database SELECT on users - Execution time: 191ms - Rows affected: 98 - RequestID: ixukpdcdqdg +2025-06-18T15:20:21.081Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 240ms - Rows affected: 61 - RequestID: yrof3hyfo5 +2025-06-18T15:20:21.181Z [TRACE] payment-service - POST /api/v1/inventory - Status: 401 - Response time: 994ms - IP: 192.168.10.184 - User: user_1048 - RequestID: emsnfczq9v9 +2025-06-18T15:20:21.281Z [DEBUG] order-service - Database INSERT on products - Execution time: 464ms - Rows affected: 47 - RequestID: rnvlc0j1bll +2025-06-18T15:20:21.381Z [INFO] user-service - Operation: payment_processed - Processing time: 668ms - RequestID: j6r1vfn2lei +2025-06-18T15:20:21.481Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 431ms - Rows affected: 44 - RequestID: ipz37o8rjs +2025-06-18T15:20:21.581Z [TRACE] inventory-service - Operation: order_created - Processing time: 292ms - RequestID: y799jxx6cl +2025-06-18T15:20:21.681Z [INFO] payment-service - Auth event: password_change - User: user_1051 - IP: 192.168.247.134 - RequestID: a5zwt37xtcg +2025-06-18T15:20:21.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.31.117 - RequestID: 9q42b294g4v +2025-06-18T15:20:21.881Z [INFO] user-service - Database DELETE on orders - Execution time: 92ms - Rows affected: 22 - RequestID: cdkwsw1ebpp +2025-06-18T15:20:21.981Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 66ms - RequestID: k0qglvixqdt +2025-06-18T15:20:22.081Z [DEBUG] payment-service - Auth event: logout - User: user_1074 - IP: 192.168.79.116 - RequestID: 7bpivv2mcvt +2025-06-18T15:20:22.181Z [INFO] user-service - Database INSERT on users - Execution time: 484ms - Rows affected: 84 - RequestID: zu43dmrlyhd +2025-06-18T15:20:22.281Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 140ms - Rows affected: 96 - RequestID: kj9nlqn391 +2025-06-18T15:20:22.381Z [TRACE] order-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.81.206 - RequestID: gd4jtumu33k +2025-06-18T15:20:22.481Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 500 - Response time: 420ms - IP: 192.168.194.41 - User: user_1042 - RequestID: 6egksxlzs64 +2025-06-18T15:20:22.581Z [INFO] auth-service - Auth event: login_failed - User: user_1010 - IP: 192.168.242.165 - RequestID: 8vvu71hxws +2025-06-18T15:20:22.681Z [INFO] payment-service - Auth event: logout - User: user_1095 - IP: 192.168.227.233 - RequestID: xt09nzo78lh +2025-06-18T15:20:22.781Z [INFO] order-service - Database DELETE on users - Execution time: 353ms - Rows affected: 1 - RequestID: 8trb7a8xz2h +2025-06-18T15:20:22.881Z [INFO] inventory-service - PUT /api/v1/payments - Status: 502 - Response time: 953ms - IP: 192.168.113.218 - User: user_1021 - RequestID: vwk8dfv4epd +2025-06-18T15:20:22.981Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 431ms - Rows affected: 48 - RequestID: wbrjn5oypr +2025-06-18T15:20:23.081Z [TRACE] order-service - Auth event: logout - User: user_1006 - IP: 192.168.242.165 - RequestID: 01d3fnjaan82 +2025-06-18T15:20:23.181Z [TRACE] notification-service - Operation: notification_queued - Processing time: 818ms - RequestID: j0iqpfdeth +2025-06-18T15:20:23.281Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 63ms - Rows affected: 5 - RequestID: bagsi61omnc +2025-06-18T15:20:23.381Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 414ms - RequestID: 43tqz9n97pk +2025-06-18T15:20:23.481Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 438ms - Rows affected: 34 - RequestID: uwykofegbw +2025-06-18T15:20:23.581Z [INFO] notification-service - GET /api/v1/users - Status: 400 - Response time: 1740ms - IP: 192.168.81.206 - User: user_1033 - RequestID: 6fsvqm8zfxc +2025-06-18T15:20:23.681Z [TRACE] notification-service - Auth event: password_change - User: user_1028 - IP: 192.168.68.158 - RequestID: h7g4cajwnhc +2025-06-18T15:20:23.781Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 865ms - RequestID: g8kk3zd67ha +2025-06-18T15:20:23.881Z [DEBUG] inventory-service - Auth event: logout - User: user_1046 - IP: 192.168.46.63 - RequestID: wfzgl4yqd0k +2025-06-18T15:20:23.981Z [DEBUG] order-service - Operation: cache_hit - Processing time: 140ms - RequestID: u8ykcuqqs6 +2025-06-18T15:20:24.081Z [INFO] auth-service - Auth event: login_failed - User: user_1079 - IP: 192.168.31.117 - RequestID: 88asprp0mw +2025-06-18T15:20:24.181Z [DEBUG] inventory-service - Operation: order_created - Processing time: 221ms - RequestID: 8hdjvy4hb5f +2025-06-18T15:20:24.281Z [TRACE] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 246ms - IP: 192.168.242.165 - User: user_1061 - RequestID: 8ttsh6ztbl5 +2025-06-18T15:20:24.381Z [TRACE] auth-service - Operation: cache_miss - Processing time: 314ms - RequestID: 6y71vge4qma +2025-06-18T15:20:24.481Z [TRACE] auth-service - GET /api/v1/inventory - Status: 403 - Response time: 1779ms - IP: 192.168.64.33 - User: user_1052 - RequestID: 15qnck1og6d +2025-06-18T15:20:24.581Z [INFO] inventory-service - Operation: cache_hit - Processing time: 567ms - RequestID: 0kec6jo3ud2k +2025-06-18T15:20:24.681Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 451ms - RequestID: zfjjah7pt7e +2025-06-18T15:20:24.781Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1256ms - IP: 192.168.68.128 - User: user_1095 - RequestID: 3lqqxylu48t +2025-06-18T15:20:24.881Z [DEBUG] order-service - Auth event: login_failed - User: user_1028 - IP: 192.168.46.63 - RequestID: m4m7l4vgc4g +2025-06-18T15:20:24.981Z [INFO] payment-service - Database UPDATE on products - Execution time: 333ms - Rows affected: 86 - RequestID: f26rjenqf3o +2025-06-18T15:20:25.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 525ms - RequestID: ar3d89quqac +2025-06-18T15:20:25.181Z [TRACE] auth-service - Auth event: logout - User: user_1022 - IP: 192.168.187.199 - RequestID: bxx8z2gbdek +2025-06-18T15:20:25.281Z [TRACE] order-service - POST /api/v1/orders - Status: 500 - Response time: 302ms - IP: 192.168.113.218 - User: user_1074 - RequestID: adna7uhts04 +2025-06-18T15:20:25.381Z [INFO] auth-service - Auth event: login_failed - User: user_1060 - IP: 192.168.141.100 - RequestID: gbv9r0zmvj8 +2025-06-18T15:20:25.481Z [TRACE] order-service - Operation: payment_processed - Processing time: 562ms - RequestID: e4tusz8svwc +2025-06-18T15:20:25.581Z [INFO] notification-service - PUT /api/v1/orders - Status: 500 - Response time: 1185ms - IP: 192.168.14.77 - User: user_1094 - RequestID: z4ftpqgxwj +2025-06-18T15:20:25.681Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 601ms - RequestID: 8xg4j56nbxd +2025-06-18T15:20:25.781Z [DEBUG] order-service - POST /api/v1/orders - Status: 200 - Response time: 901ms - IP: 192.168.147.171 - User: user_1064 - RequestID: mii4enwht2 +2025-06-18T15:20:25.881Z [INFO] notification-service - Database DELETE on payments - Execution time: 400ms - Rows affected: 0 - RequestID: eay8g4d8hsj +2025-06-18T15:20:25.981Z [TRACE] auth-service - POST /api/v1/inventory - Status: 404 - Response time: 1345ms - IP: 192.168.81.206 - User: user_1092 - RequestID: jaxb8vplpuk +2025-06-18T15:20:26.081Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 1157ms - IP: 192.168.79.116 - User: user_1011 - RequestID: vlr8umhg5a +2025-06-18T15:20:26.181Z [TRACE] payment-service - Operation: order_created - Processing time: 122ms - RequestID: gf57uhq9ub5 +2025-06-18T15:20:26.281Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1034ms - IP: 192.168.79.143 - User: user_1015 - RequestID: n1a0rv8eah +2025-06-18T15:20:26.381Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 16ms - Rows affected: 83 - RequestID: 1qao61szxx9 +2025-06-18T15:20:26.481Z [DEBUG] order-service - Operation: cache_miss - Processing time: 82ms - RequestID: i5wbycq7tjg +2025-06-18T15:20:26.581Z [INFO] auth-service - DELETE /api/v1/payments - Status: 201 - Response time: 221ms - IP: 192.168.138.123 - User: user_1025 - RequestID: ibbs3lkj1jf +2025-06-18T15:20:26.681Z [TRACE] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 1131ms - IP: 192.168.170.215 - User: user_1075 - RequestID: vcslp1bxac +2025-06-18T15:20:26.781Z [TRACE] auth-service - GET /api/v1/orders - Status: 200 - Response time: 1595ms - IP: 192.168.189.103 - User: user_1073 - RequestID: 3f93495tt38 +2025-06-18T15:20:26.881Z [INFO] auth-service - Operation: webhook_sent - Processing time: 250ms - RequestID: keiwlrmj50g +2025-06-18T15:20:26.981Z [INFO] auth-service - Auth event: logout - User: user_1033 - IP: 192.168.11.60 - RequestID: b37w85dvw4r +2025-06-18T15:20:27.081Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 625ms - IP: 192.168.147.171 - User: user_1078 - RequestID: j21qdhm6kt +2025-06-18T15:20:27.181Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 355ms - Rows affected: 66 - RequestID: qqydmpc9kd +2025-06-18T15:20:27.281Z [DEBUG] user-service - Database DELETE on orders - Execution time: 139ms - Rows affected: 7 - RequestID: cosbgygwkap +2025-06-18T15:20:27.381Z [DEBUG] order-service - Database DELETE on orders - Execution time: 259ms - Rows affected: 23 - RequestID: vdvict7zxhn +2025-06-18T15:20:27.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 573ms - RequestID: 3loeb5jlrrh +2025-06-18T15:20:27.581Z [DEBUG] order-service - Database INSERT on orders - Execution time: 232ms - Rows affected: 7 - RequestID: tcaz2a3o6la +2025-06-18T15:20:27.681Z [TRACE] user-service - Operation: cache_miss - Processing time: 147ms - RequestID: xumr7cqlczi +2025-06-18T15:20:27.781Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 335ms - Rows affected: 95 - RequestID: rfca1xkylik +2025-06-18T15:20:27.881Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 355ms - Rows affected: 59 - RequestID: 0s9fof3fvyi9 +2025-06-18T15:20:27.981Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1169ms - IP: 192.168.97.87 - User: user_1069 - RequestID: p4ceyo9sofs +2025-06-18T15:20:28.081Z [TRACE] notification-service - Auth event: password_change - User: user_1009 - IP: 192.168.46.63 - RequestID: 7p5kcsezerh +2025-06-18T15:20:28.181Z [DEBUG] notification-service - Database UPDATE on users - Execution time: 124ms - Rows affected: 16 - RequestID: af7zapm4o8p +2025-06-18T15:20:28.281Z [INFO] order-service - Auth event: password_change - User: user_1065 - IP: 192.168.194.41 - RequestID: jyg1gx4j6ae +2025-06-18T15:20:28.381Z [DEBUG] order-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.11.60 - RequestID: 51wgb269kvl +2025-06-18T15:20:28.481Z [INFO] notification-service - GET /api/v1/orders - Status: 401 - Response time: 1917ms - IP: 192.168.31.117 - User: user_1020 - RequestID: gu8f26hgm1n +2025-06-18T15:20:28.581Z [INFO] user-service - Database SELECT on orders - Execution time: 254ms - Rows affected: 73 - RequestID: h5c18jkn6gp +2025-06-18T15:20:28.681Z [INFO] user-service - Database DELETE on products - Execution time: 267ms - Rows affected: 83 - RequestID: hkpevvm61x +2025-06-18T15:20:28.781Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 200 - Response time: 129ms - IP: 192.168.11.60 - User: user_1008 - RequestID: h3jr58hu0iq +2025-06-18T15:20:28.881Z [DEBUG] user-service - Database SELECT on users - Execution time: 207ms - Rows affected: 82 - RequestID: f6g5tv6b8d7 +2025-06-18T15:20:28.981Z [INFO] notification-service - Operation: email_sent - Processing time: 750ms - RequestID: kok3z04ht3l +2025-06-18T15:20:29.081Z [TRACE] order-service - Auth event: login_success - User: user_1007 - IP: 192.168.158.144 - RequestID: l04tnrkufw +2025-06-18T15:20:29.181Z [DEBUG] notification-service - PUT /api/v1/users - Status: 200 - Response time: 1554ms - IP: 192.168.36.218 - User: user_1060 - RequestID: 8ftiza9inx3 +2025-06-18T15:20:29.281Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 264ms - Rows affected: 0 - RequestID: v2ahepny3bc +2025-06-18T15:20:29.381Z [INFO] payment-service - Operation: cache_hit - Processing time: 136ms - RequestID: zza9aswry3p +2025-06-18T15:20:29.481Z [TRACE] inventory-service - Database DELETE on products - Execution time: 381ms - Rows affected: 91 - RequestID: 62k9qrwotod +2025-06-18T15:20:29.581Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 909ms - RequestID: h7fsz8uf7hg +2025-06-18T15:20:29.681Z [TRACE] order-service - Operation: cache_hit - Processing time: 613ms - RequestID: qh790sik1ao +2025-06-18T15:20:29.781Z [TRACE] payment-service - Operation: payment_processed - Processing time: 575ms - RequestID: d3ctryvxtmb +2025-06-18T15:20:29.881Z [INFO] user-service - Operation: order_created - Processing time: 693ms - RequestID: rdvk1z8eejf +2025-06-18T15:20:29.981Z [TRACE] auth-service - Operation: payment_processed - Processing time: 514ms - RequestID: 086dqs1pcboc +2025-06-18T15:20:30.081Z [INFO] payment-service - Operation: cache_miss - Processing time: 395ms - RequestID: kxtt0qg6rve +2025-06-18T15:20:30.181Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 164ms - Rows affected: 94 - RequestID: 5sae89i15h +2025-06-18T15:20:30.281Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 413ms - Rows affected: 79 - RequestID: rj0gkdv06r +2025-06-18T15:20:30.381Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 612ms - RequestID: 29dhu5h3gqt +2025-06-18T15:20:30.481Z [INFO] auth-service - Auth event: password_change - User: user_1039 - IP: 192.168.13.72 - RequestID: f8kkbw8du7 +2025-06-18T15:20:30.581Z [TRACE] notification-service - Auth event: login_attempt - User: user_1094 - IP: 192.168.167.32 - RequestID: rris728seg +2025-06-18T15:20:30.681Z [DEBUG] notification-service - Database SELECT on products - Execution time: 375ms - Rows affected: 16 - RequestID: ktpjfji6c2 +2025-06-18T15:20:30.781Z [DEBUG] inventory-service - Operation: order_created - Processing time: 738ms - RequestID: 9c0k9q10uhc +2025-06-18T15:20:30.881Z [INFO] order-service - Operation: inventory_updated - Processing time: 186ms - RequestID: qzdcaydvndk +2025-06-18T15:20:30.981Z [TRACE] user-service - Operation: order_created - Processing time: 601ms - RequestID: l4p8800zh8e +2025-06-18T15:20:31.081Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 503 - Response time: 1606ms - IP: 192.168.159.94 - User: user_1083 - RequestID: ai3qorj2g15 +2025-06-18T15:20:31.181Z [TRACE] auth-service - Operation: payment_processed - Processing time: 832ms - RequestID: 28f2j2smmn1 +2025-06-18T15:20:31.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1066 - IP: 192.168.189.103 - RequestID: 9yluzwi2md +2025-06-18T15:20:31.381Z [INFO] inventory-service - Database INSERT on orders - Execution time: 138ms - Rows affected: 22 - RequestID: pfbtdlierve +2025-06-18T15:20:31.481Z [TRACE] auth-service - Database SELECT on products - Execution time: 263ms - Rows affected: 56 - RequestID: yfra0zw96ac +2025-06-18T15:20:31.581Z [INFO] auth-service - Operation: email_sent - Processing time: 467ms - RequestID: slftilj5s9f +2025-06-18T15:20:31.681Z [TRACE] order-service - DELETE /api/v1/payments - Status: 500 - Response time: 1552ms - IP: 192.168.11.60 - User: user_1069 - RequestID: p5fr2h8k4r +2025-06-18T15:20:31.781Z [TRACE] user-service - Database UPDATE on payments - Execution time: 43ms - Rows affected: 15 - RequestID: lwl8kmuags +2025-06-18T15:20:31.881Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 472ms - RequestID: eynyyqow8s6 +2025-06-18T15:20:31.981Z [DEBUG] inventory-service - GET /api/v1/users - Status: 401 - Response time: 1769ms - IP: 192.168.174.114 - User: user_1078 - RequestID: u7bwnvdkhbc +2025-06-18T15:20:32.081Z [INFO] payment-service - Operation: cache_hit - Processing time: 855ms - RequestID: pr10z4f9oai +2025-06-18T15:20:32.181Z [INFO] notification-service - Database UPDATE on payments - Execution time: 262ms - Rows affected: 25 - RequestID: tjo7zcubrv +2025-06-18T15:20:32.281Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 212ms - RequestID: xul2a9d1fto +2025-06-18T15:20:32.381Z [DEBUG] order-service - GET /api/v1/inventory - Status: 401 - Response time: 516ms - IP: 192.168.147.171 - User: user_1092 - RequestID: w0u9rir6uon +2025-06-18T15:20:32.481Z [TRACE] order-service - Database DELETE on sessions - Execution time: 416ms - Rows affected: 26 - RequestID: fv5k9u4yom +2025-06-18T15:20:32.581Z [TRACE] user-service - Auth event: password_change - User: user_1062 - IP: 192.168.247.134 - RequestID: ewutgby1ehb +2025-06-18T15:20:32.681Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 502 - Response time: 153ms - IP: 192.168.79.141 - User: user_1009 - RequestID: iki4e9spzua +2025-06-18T15:20:32.781Z [DEBUG] order-service - Operation: cache_miss - Processing time: 1032ms - RequestID: cndux171m1n +2025-06-18T15:20:32.881Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 502 - Response time: 914ms - IP: 192.168.147.171 - User: user_1009 - RequestID: i0wbinzrk8 +2025-06-18T15:20:32.981Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 130ms - Rows affected: 83 - RequestID: 3bacca2ytj7 +2025-06-18T15:20:33.081Z [TRACE] payment-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.1.152 - RequestID: artfgfxxmfl +2025-06-18T15:20:33.181Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 1044ms - RequestID: fnb5s9t43w +2025-06-18T15:20:33.281Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 1059ms - IP: 192.168.100.240 - User: user_1017 - RequestID: fg1b8wvof4e +2025-06-18T15:20:33.381Z [TRACE] notification-service - Database DELETE on payments - Execution time: 464ms - Rows affected: 82 - RequestID: o5v6eowmcjf +2025-06-18T15:20:33.481Z [INFO] payment-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.196.226 - RequestID: qi2jznj44rp +2025-06-18T15:20:33.581Z [INFO] auth-service - Database INSERT on sessions - Execution time: 161ms - Rows affected: 10 - RequestID: ky09pnb91o +2025-06-18T15:20:33.681Z [TRACE] notification-service - Database DELETE on users - Execution time: 231ms - Rows affected: 89 - RequestID: cpwh4pko6yt +2025-06-18T15:20:33.781Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 279ms - RequestID: qh3544qp5pi +2025-06-18T15:20:33.881Z [DEBUG] user-service - Database INSERT on products - Execution time: 445ms - Rows affected: 48 - RequestID: jbyoslvkzac +2025-06-18T15:20:33.981Z [INFO] user-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1278ms - IP: 192.168.46.63 - User: user_1083 - RequestID: mvk1cvx2ml +2025-06-18T15:20:34.081Z [INFO] auth-service - Auth event: logout - User: user_1012 - IP: 192.168.159.94 - RequestID: 1nnynif47em +2025-06-18T15:20:34.181Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 389ms - IP: 192.168.97.87 - User: user_1070 - RequestID: v81yhq63g +2025-06-18T15:20:34.281Z [TRACE] payment-service - Database DELETE on payments - Execution time: 463ms - Rows affected: 47 - RequestID: 0exjl6aaq9u +2025-06-18T15:20:34.381Z [INFO] payment-service - Auth event: logout - User: user_1093 - IP: 192.168.133.7 - RequestID: hhtyvec1bru +2025-06-18T15:20:34.481Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.194.41 - RequestID: n33q9aw3n8d +2025-06-18T15:20:34.581Z [INFO] payment-service - Database DELETE on users - Execution time: 112ms - Rows affected: 88 - RequestID: jzmri2fgtbo +2025-06-18T15:20:34.681Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 595ms - RequestID: 4y204fyav7x +2025-06-18T15:20:34.781Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 503 - Response time: 23ms - IP: 192.168.167.32 - User: user_1031 - RequestID: 3etabk8ywft +2025-06-18T15:20:34.881Z [DEBUG] user-service - PATCH /api/v1/inventory - Status: 200 - Response time: 1677ms - IP: 192.168.232.72 - User: user_1044 - RequestID: dua9a5km05f +2025-06-18T15:20:34.981Z [DEBUG] user-service - Database UPDATE on products - Execution time: 321ms - Rows affected: 45 - RequestID: dvngb529eeh +2025-06-18T15:20:35.081Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 329ms - Rows affected: 98 - RequestID: vth9qbjyqqj +2025-06-18T15:20:35.181Z [DEBUG] inventory-service - Auth event: login_success - User: user_1021 - IP: 192.168.113.218 - RequestID: m27ykchee1 +2025-06-18T15:20:35.281Z [TRACE] user-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.133.7 - RequestID: 55x03ajk6ok +2025-06-18T15:20:35.381Z [INFO] notification-service - DELETE /api/v1/users - Status: 404 - Response time: 393ms - IP: 192.168.242.165 - User: user_1093 - RequestID: j34hvua7k6k +2025-06-18T15:20:35.481Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 411ms - Rows affected: 91 - RequestID: ula05d6mpfi +2025-06-18T15:20:35.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1094 - IP: 192.168.181.225 - RequestID: fkwfcipeels +2025-06-18T15:20:35.681Z [INFO] order-service - Operation: payment_processed - Processing time: 134ms - RequestID: ljasvmerlj +2025-06-18T15:20:35.781Z [INFO] payment-service - Database INSERT on orders - Execution time: 228ms - Rows affected: 33 - RequestID: d0ke4x53607 +2025-06-18T15:20:35.881Z [TRACE] order-service - Operation: notification_queued - Processing time: 92ms - RequestID: ogtiw1s4st +2025-06-18T15:20:35.981Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 241ms - Rows affected: 67 - RequestID: keq2aje4zm9 +2025-06-18T15:20:36.081Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1482ms - IP: 192.168.31.117 - User: user_1053 - RequestID: y6p8966aqo +2025-06-18T15:20:36.181Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 146ms - RequestID: bzws3maye9m +2025-06-18T15:20:36.281Z [TRACE] notification-service - Database DELETE on orders - Execution time: 126ms - Rows affected: 12 - RequestID: c7gtl0raorm +2025-06-18T15:20:36.381Z [TRACE] auth-service - Operation: cache_hit - Processing time: 711ms - RequestID: 5hjfjm4vtzi +2025-06-18T15:20:36.481Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 199ms - Rows affected: 87 - RequestID: j2q3htbwwd +2025-06-18T15:20:36.581Z [INFO] user-service - Operation: order_created - Processing time: 157ms - RequestID: jmssvvotu5 +2025-06-18T15:20:36.681Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 403 - Response time: 465ms - IP: 192.168.229.123 - User: user_1025 - RequestID: 4pg91iz38sa +2025-06-18T15:20:36.781Z [INFO] user-service - Operation: email_sent - Processing time: 108ms - RequestID: 47wv2tpg3se +2025-06-18T15:20:36.881Z [INFO] auth-service - Database SELECT on orders - Execution time: 52ms - Rows affected: 2 - RequestID: qatiqjwdyeb +2025-06-18T15:20:36.981Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 287ms - IP: 192.168.144.38 - User: user_1005 - RequestID: ehfdmfovzyg +2025-06-18T15:20:37.081Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 447ms - Rows affected: 78 - RequestID: r5vefyhd6xs +2025-06-18T15:20:37.181Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.97.87 - RequestID: orxjehfuma8 +2025-06-18T15:20:37.281Z [TRACE] notification-service - Operation: cache_hit - Processing time: 211ms - RequestID: f1f238rjryc +2025-06-18T15:20:37.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.31.117 - RequestID: 8n64cwma6j7 +2025-06-18T15:20:37.481Z [TRACE] auth-service - Auth event: password_change - User: user_1055 - IP: 192.168.232.72 - RequestID: s3p8h2fn79g +2025-06-18T15:20:37.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 169ms - RequestID: ily60wb1ti +2025-06-18T15:20:37.681Z [DEBUG] notification-service - POST /api/v1/users - Status: 401 - Response time: 1848ms - IP: 192.168.232.72 - User: user_1087 - RequestID: yvo6z7bnj5 +2025-06-18T15:20:37.781Z [DEBUG] notification-service - Operation: order_created - Processing time: 671ms - RequestID: d3zvkekbad7 +2025-06-18T15:20:37.881Z [INFO] user-service - Database SELECT on sessions - Execution time: 56ms - Rows affected: 13 - RequestID: mud9so1r6p +2025-06-18T15:20:37.981Z [INFO] auth-service - Auth event: logout - User: user_1047 - IP: 192.168.187.199 - RequestID: ru65ae7gv9 +2025-06-18T15:20:38.081Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 351ms - Rows affected: 81 - RequestID: 4ft1iawz72v +2025-06-18T15:20:38.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1098 - IP: 192.168.113.218 - RequestID: s8dqcz4m9sf +2025-06-18T15:20:38.281Z [TRACE] user-service - GET /api/v1/auth/login - Status: 404 - Response time: 1842ms - IP: 192.168.235.117 - User: user_1089 - RequestID: 7b9g6emnju +2025-06-18T15:20:38.381Z [INFO] auth-service - Database UPDATE on products - Execution time: 412ms - Rows affected: 17 - RequestID: vx0vwwwbwq +2025-06-18T15:20:38.481Z [TRACE] user-service - Auth event: login_attempt - User: user_1017 - IP: 192.168.79.116 - RequestID: zzsfhs9i1am +2025-06-18T15:20:38.581Z [TRACE] order-service - Auth event: password_change - User: user_1046 - IP: 192.168.227.233 - RequestID: 481d4yxlhdl +2025-06-18T15:20:38.681Z [INFO] payment-service - Operation: payment_processed - Processing time: 884ms - RequestID: juol1c3yb9 +2025-06-18T15:20:38.781Z [TRACE] payment-service - Operation: payment_processed - Processing time: 987ms - RequestID: tss6lic073 +2025-06-18T15:20:38.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 897ms - RequestID: 3jk5tba276d +2025-06-18T15:20:38.981Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.85.229 - RequestID: z4iydnvcho +2025-06-18T15:20:39.081Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 735ms - RequestID: mejuhm7w3b +2025-06-18T15:20:39.181Z [DEBUG] notification-service - Operation: order_created - Processing time: 896ms - RequestID: y0p62q8zt6q +2025-06-18T15:20:39.281Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 109ms - IP: 192.168.235.117 - User: user_1051 - RequestID: yhh9kofms1d +2025-06-18T15:20:39.381Z [TRACE] notification-service - Operation: cache_miss - Processing time: 647ms - RequestID: 3lin4plcau7 +2025-06-18T15:20:39.481Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 283ms - Rows affected: 71 - RequestID: murkdz7d7d +2025-06-18T15:20:39.581Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1959ms - IP: 192.168.144.38 - User: user_1095 - RequestID: s1nbyua9dk +2025-06-18T15:20:39.681Z [INFO] auth-service - POST /api/v1/inventory - Status: 201 - Response time: 1162ms - IP: 192.168.1.152 - User: user_1062 - RequestID: lpt0xovfrk +2025-06-18T15:20:39.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 123ms - RequestID: yq2xps1njq +2025-06-18T15:20:39.881Z [TRACE] user-service - Auth event: login_failed - User: user_1087 - IP: 192.168.33.76 - RequestID: cf7neo2e25j +2025-06-18T15:20:39.981Z [TRACE] auth-service - Operation: payment_processed - Processing time: 813ms - RequestID: jue5ob9d9b +2025-06-18T15:20:40.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1068 - IP: 192.168.232.72 - RequestID: 9m9fj5qmrg +2025-06-18T15:20:40.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 428ms - RequestID: 8kugfqzr40g +2025-06-18T15:20:40.281Z [INFO] user-service - Operation: order_created - Processing time: 1020ms - RequestID: pjlq5qu2bke +2025-06-18T15:20:40.381Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 91ms - Rows affected: 37 - RequestID: i744dte0ihr +2025-06-18T15:20:40.481Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 884ms - IP: 192.168.167.32 - User: user_1099 - RequestID: t2ojjxe1ny +2025-06-18T15:20:40.581Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 250ms - Rows affected: 79 - RequestID: 7vgsttwiq6p +2025-06-18T15:20:40.681Z [DEBUG] payment-service - Operation: order_created - Processing time: 507ms - RequestID: h66g55cs2vk +2025-06-18T15:20:40.781Z [INFO] user-service - GET /api/v1/auth/login - Status: 401 - Response time: 347ms - IP: 192.168.229.123 - User: user_1022 - RequestID: r3ftkcphwc +2025-06-18T15:20:40.881Z [INFO] notification-service - Database DELETE on orders - Execution time: 100ms - Rows affected: 82 - RequestID: p72zl47rrab +2025-06-18T15:20:40.981Z [INFO] inventory-service - Database INSERT on products - Execution time: 368ms - Rows affected: 61 - RequestID: 4i1xt3odj8 +2025-06-18T15:20:41.081Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 464ms - IP: 192.168.13.72 - User: user_1016 - RequestID: w0oowd4yub +2025-06-18T15:20:41.181Z [TRACE] order-service - PUT /api/v1/payments - Status: 403 - Response time: 687ms - IP: 192.168.170.215 - User: user_1062 - RequestID: v5t4ifrlgho +2025-06-18T15:20:41.281Z [TRACE] payment-service - POST /api/v1/payments - Status: 502 - Response time: 530ms - IP: 192.168.10.184 - User: user_1070 - RequestID: 10c9npgp9bbm +2025-06-18T15:20:41.381Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 982ms - RequestID: ewvggzrsfd +2025-06-18T15:20:41.481Z [INFO] notification-service - Database INSERT on users - Execution time: 367ms - Rows affected: 17 - RequestID: efiabycydhq +2025-06-18T15:20:41.581Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 27ms - Rows affected: 71 - RequestID: qe3fdck27gr +2025-06-18T15:20:41.681Z [INFO] notification-service - PUT /api/v1/inventory - Status: 502 - Response time: 402ms - IP: 192.168.79.116 - User: user_1050 - RequestID: zxpdg1z48mp +2025-06-18T15:20:41.781Z [TRACE] notification-service - PUT /api/v1/users - Status: 401 - Response time: 1200ms - IP: 192.168.10.184 - User: user_1063 - RequestID: my7wtyqpikc +2025-06-18T15:20:41.881Z [TRACE] user-service - Database DELETE on sessions - Execution time: 326ms - Rows affected: 12 - RequestID: 0kt1snc6jjb +2025-06-18T15:20:41.981Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 488ms - Rows affected: 92 - RequestID: plj1gl8a3e +2025-06-18T15:20:42.081Z [DEBUG] order-service - Database INSERT on payments - Execution time: 395ms - Rows affected: 65 - RequestID: y3bvm4yfzf +2025-06-18T15:20:42.181Z [DEBUG] auth-service - Database INSERT on products - Execution time: 48ms - Rows affected: 17 - RequestID: qh5bfjw94v +2025-06-18T15:20:42.281Z [DEBUG] inventory-service - Auth event: login_success - User: user_1097 - IP: 192.168.81.206 - RequestID: mh8kvqqnv4g +2025-06-18T15:20:42.381Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 99ms - Rows affected: 5 - RequestID: jgrmkwhdmd +2025-06-18T15:20:42.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1063 - IP: 192.168.232.72 - RequestID: 5tft7dkahbo +2025-06-18T15:20:42.581Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 201 - Response time: 799ms - IP: 192.168.141.100 - User: user_1039 - RequestID: 5yrz9erxgdh +2025-06-18T15:20:42.681Z [INFO] notification-service - Auth event: login_failed - User: user_1011 - IP: 192.168.28.146 - RequestID: nj2c9y31hz +2025-06-18T15:20:42.781Z [INFO] notification-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.158.144 - RequestID: vnxihwnxtxd +2025-06-18T15:20:42.881Z [TRACE] order-service - DELETE /api/v1/payments - Status: 500 - Response time: 1859ms - IP: 192.168.113.218 - User: user_1091 - RequestID: si9i9t87f8 +2025-06-18T15:20:42.981Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 410ms - Rows affected: 55 - RequestID: nuh7knty5 +2025-06-18T15:20:43.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.79.141 - RequestID: w6miezpidmh +2025-06-18T15:20:43.181Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 314ms - Rows affected: 62 - RequestID: nv5p5dvz7vp +2025-06-18T15:20:43.281Z [DEBUG] auth-service - Auth event: logout - User: user_1020 - IP: 192.168.240.169 - RequestID: it01czf8zdb +2025-06-18T15:20:43.381Z [INFO] notification-service - GET /api/v1/users - Status: 403 - Response time: 1444ms - IP: 192.168.68.158 - User: user_1064 - RequestID: yd33vz3zuta +2025-06-18T15:20:43.481Z [INFO] user-service - Auth event: login_failed - User: user_1045 - IP: 192.168.32.38 - RequestID: 6vatrrvgzvr +2025-06-18T15:20:43.581Z [INFO] notification-service - Operation: webhook_sent - Processing time: 430ms - RequestID: wo5unyuhua +2025-06-18T15:20:43.681Z [INFO] payment-service - Operation: inventory_updated - Processing time: 271ms - RequestID: ts2l96bp6f8 +2025-06-18T15:20:43.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1022 - IP: 192.168.33.76 - RequestID: 5ujguq1ib9d +2025-06-18T15:20:43.881Z [INFO] order-service - Auth event: login_success - User: user_1022 - IP: 192.168.235.117 - RequestID: ob089e3ym3t +2025-06-18T15:20:43.981Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 6ms - Rows affected: 93 - RequestID: mrdytuanch +2025-06-18T15:20:44.081Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 404 - Response time: 1114ms - IP: 192.168.167.32 - User: user_1015 - RequestID: fckt8f1fwmi +2025-06-18T15:20:44.181Z [INFO] payment-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.85.229 - RequestID: pepxg863y9 +2025-06-18T15:20:44.281Z [TRACE] order-service - Database INSERT on products - Execution time: 399ms - Rows affected: 99 - RequestID: cdqg5m439ip +2025-06-18T15:20:44.381Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 503 - Response time: 33ms - IP: 192.168.240.169 - User: user_1083 - RequestID: t7nomktcodk +2025-06-18T15:20:44.481Z [INFO] notification-service - Auth event: login_failed - User: user_1032 - IP: 192.168.79.143 - RequestID: p5qv8l03jjo +2025-06-18T15:20:44.581Z [TRACE] user-service - PATCH /api/v1/payments - Status: 403 - Response time: 1627ms - IP: 192.168.196.226 - User: user_1097 - RequestID: irw7tz16zgp +2025-06-18T15:20:44.681Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 519ms - RequestID: b5zsh4901kk +2025-06-18T15:20:44.781Z [DEBUG] order-service - POST /api/v1/users - Status: 403 - Response time: 1311ms - IP: 192.168.53.133 - User: user_1012 - RequestID: fnxh1gycjnv +2025-06-18T15:20:44.881Z [TRACE] inventory-service - Auth event: logout - User: user_1059 - IP: 192.168.181.225 - RequestID: 359n9azmqo3 +2025-06-18T15:20:44.981Z [INFO] inventory-service - POST /api/v1/payments - Status: 401 - Response time: 1107ms - IP: 192.168.240.169 - User: user_1038 - RequestID: d5lw99fzoaa +2025-06-18T15:20:45.081Z [TRACE] inventory-service - Auth event: login_success - User: user_1042 - IP: 192.168.85.229 - RequestID: l4v33f8b5id +2025-06-18T15:20:45.181Z [INFO] payment-service - Operation: email_sent - Processing time: 834ms - RequestID: pdbx7gkvft +2025-06-18T15:20:45.281Z [DEBUG] notification-service - Operation: order_created - Processing time: 318ms - RequestID: 3m655fbvtuh +2025-06-18T15:20:45.381Z [INFO] order-service - Operation: inventory_updated - Processing time: 368ms - RequestID: 4cf2s8b9b1o +2025-06-18T15:20:45.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 188ms - RequestID: 4g0ynqgpzcd +2025-06-18T15:20:45.581Z [DEBUG] notification-service - Auth event: login_failed - User: user_1051 - IP: 192.168.147.171 - RequestID: rkp46x055gs +2025-06-18T15:20:45.681Z [INFO] notification-service - Database UPDATE on users - Execution time: 163ms - Rows affected: 84 - RequestID: 4xhe0afx1wu +2025-06-18T15:20:45.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1005 - IP: 192.168.81.206 - RequestID: nwplrjep179 +2025-06-18T15:20:45.881Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 484ms - Rows affected: 74 - RequestID: h5a2sujm5io +2025-06-18T15:20:45.981Z [DEBUG] auth-service - Database INSERT on products - Execution time: 204ms - Rows affected: 91 - RequestID: 7sojco44d0s +2025-06-18T15:20:46.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.167.32 - RequestID: vapbn5wgy7 +2025-06-18T15:20:46.181Z [DEBUG] order-service - Auth event: login_failed - User: user_1083 - IP: 192.168.232.72 - RequestID: 52hfyvpdijv +2025-06-18T15:20:46.281Z [TRACE] order-service - PUT /api/v1/users - Status: 400 - Response time: 381ms - IP: 192.168.10.184 - User: user_1043 - RequestID: 6s0jc2pyi9 +2025-06-18T15:20:46.381Z [DEBUG] user-service - Database SELECT on payments - Execution time: 28ms - Rows affected: 56 - RequestID: pgqseum5i9i +2025-06-18T15:20:46.481Z [INFO] inventory-service - GET /api/v1/orders - Status: 502 - Response time: 397ms - IP: 192.168.113.218 - User: user_1074 - RequestID: sp81cp075i +2025-06-18T15:20:46.581Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 502 - Response time: 365ms - IP: 192.168.68.128 - User: user_1057 - RequestID: 7wjnqknb40n +2025-06-18T15:20:46.681Z [INFO] notification-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.64.33 - RequestID: t03fdumm1vc +2025-06-18T15:20:46.781Z [TRACE] order-service - Operation: payment_processed - Processing time: 345ms - RequestID: 6a8fdxxzm7q +2025-06-18T15:20:46.881Z [INFO] auth-service - Auth event: token_refresh - User: user_1082 - IP: 192.168.100.240 - RequestID: hz3apdug9sl +2025-06-18T15:20:46.981Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 188ms - RequestID: c9q1jq8ipj9 +2025-06-18T15:20:47.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.36.218 - RequestID: g6e8qnhmqsk +2025-06-18T15:20:47.181Z [TRACE] auth-service - POST /api/v1/payments - Status: 200 - Response time: 1409ms - IP: 192.168.232.72 - User: user_1050 - RequestID: 5xb4wxc9nja +2025-06-18T15:20:47.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1077 - IP: 192.168.30.79 - RequestID: w6hmy01irsn +2025-06-18T15:20:47.381Z [INFO] notification-service - DELETE /api/v1/orders - Status: 403 - Response time: 1124ms - IP: 192.168.104.37 - User: user_1027 - RequestID: bvpldj7lfra +2025-06-18T15:20:47.481Z [INFO] inventory-service - PUT /api/v1/orders - Status: 500 - Response time: 1749ms - IP: 192.168.141.100 - User: user_1045 - RequestID: dq9l9fqgaz +2025-06-18T15:20:47.581Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 404 - Response time: 598ms - IP: 192.168.10.184 - User: user_1095 - RequestID: fdbuukmimn +2025-06-18T15:20:47.681Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 500 - Response time: 106ms - IP: 192.168.144.38 - User: user_1017 - RequestID: fqcxfou4dmc +2025-06-18T15:20:47.781Z [INFO] notification-service - Operation: cache_miss - Processing time: 970ms - RequestID: lnny46bgxne +2025-06-18T15:20:47.881Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 754ms - RequestID: 91dg3veeah7 +2025-06-18T15:20:47.981Z [INFO] inventory-service - Database SELECT on payments - Execution time: 143ms - Rows affected: 87 - RequestID: rytnzncdc49 +2025-06-18T15:20:48.081Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 401 - Response time: 1622ms - IP: 192.168.1.152 - User: user_1009 - RequestID: lqaau6mvbgc +2025-06-18T15:20:48.181Z [TRACE] user-service - DELETE /api/v1/orders - Status: 201 - Response time: 1642ms - IP: 192.168.64.33 - User: user_1060 - RequestID: tu9fqzwicba +2025-06-18T15:20:48.281Z [INFO] user-service - Auth event: logout - User: user_1073 - IP: 192.168.11.60 - RequestID: stufm0fo6ec +2025-06-18T15:20:48.381Z [TRACE] notification-service - Auth event: login_success - User: user_1025 - IP: 192.168.232.72 - RequestID: ax2z2o34r7v +2025-06-18T15:20:48.481Z [INFO] payment-service - Database SELECT on orders - Execution time: 479ms - Rows affected: 33 - RequestID: k98qavpbd88 +2025-06-18T15:20:48.581Z [INFO] user-service - Auth event: logout - User: user_1011 - IP: 192.168.138.123 - RequestID: bxtlammoa2 +2025-06-18T15:20:48.681Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 56ms - Rows affected: 45 - RequestID: qolmvxyz5dn +2025-06-18T15:20:48.781Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 502 - Response time: 857ms - IP: 192.168.189.103 - User: user_1079 - RequestID: aqko4hwfaub +2025-06-18T15:20:48.881Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 404 - Response time: 1599ms - IP: 192.168.68.128 - User: user_1091 - RequestID: mu6tyieztaj +2025-06-18T15:20:48.981Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 124ms - RequestID: zwq5d4lqiih +2025-06-18T15:20:49.081Z [INFO] payment-service - Auth event: password_change - User: user_1012 - IP: 192.168.13.72 - RequestID: 61g6y7zgnik +2025-06-18T15:20:49.181Z [TRACE] inventory-service - DELETE /api/v1/orders - Status: 403 - Response time: 1296ms - IP: 192.168.144.38 - User: user_1077 - RequestID: vw58uzfsk3 +2025-06-18T15:20:49.281Z [INFO] inventory-service - POST /api/v1/users - Status: 403 - Response time: 602ms - IP: 192.168.141.100 - User: user_1010 - RequestID: soxgbeit78o +2025-06-18T15:20:49.381Z [DEBUG] order-service - Auth event: login_failed - User: user_1079 - IP: 192.168.10.184 - RequestID: 0xyf8aysotnp +2025-06-18T15:20:49.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.100.240 - RequestID: 1eif7ipgqhd +2025-06-18T15:20:49.581Z [INFO] order-service - POST /api/v1/users - Status: 503 - Response time: 487ms - IP: 192.168.64.33 - User: user_1086 - RequestID: xfm2k02zz1k +2025-06-18T15:20:49.681Z [TRACE] payment-service - POST /api/v1/payments - Status: 201 - Response time: 1279ms - IP: 192.168.229.123 - User: user_1086 - RequestID: ufneeeldq0s +2025-06-18T15:20:49.781Z [INFO] user-service - Database INSERT on products - Execution time: 422ms - Rows affected: 87 - RequestID: wth9iue914 +2025-06-18T15:20:49.881Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1695ms - IP: 192.168.229.123 - User: user_1040 - RequestID: m0xwh2bgt8 +2025-06-18T15:20:49.981Z [DEBUG] user-service - Database DELETE on payments - Execution time: 51ms - Rows affected: 79 - RequestID: dazsprvn5mq +2025-06-18T15:20:50.081Z [DEBUG] user-service - Auth event: login_failed - User: user_1021 - IP: 192.168.28.146 - RequestID: m6gxtfciq07 +2025-06-18T15:20:50.181Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 167ms - IP: 192.168.68.158 - User: user_1028 - RequestID: a5d2cjmemo +2025-06-18T15:20:50.281Z [INFO] auth-service - Auth event: logout - User: user_1047 - IP: 192.168.138.123 - RequestID: 5tkp6u37piu +2025-06-18T15:20:50.381Z [INFO] user-service - Operation: email_sent - Processing time: 67ms - RequestID: zkizaj5xian +2025-06-18T15:20:50.481Z [INFO] user-service - Auth event: login_success - User: user_1048 - IP: 192.168.30.79 - RequestID: axmj11orb +2025-06-18T15:20:50.581Z [INFO] payment-service - Operation: payment_processed - Processing time: 628ms - RequestID: 5pzulwi8h88 +2025-06-18T15:20:50.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1079 - IP: 192.168.194.41 - RequestID: fhd2k0rm0dt +2025-06-18T15:20:50.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 632ms - RequestID: sosswxsezhb +2025-06-18T15:20:50.881Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 293ms - Rows affected: 29 - RequestID: j9yo663h5g9 +2025-06-18T15:20:50.981Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 442ms - Rows affected: 61 - RequestID: 9a2vr1rlowq +2025-06-18T15:20:51.081Z [INFO] auth-service - Auth event: password_change - User: user_1086 - IP: 192.168.79.143 - RequestID: mfpiy90649 +2025-06-18T15:20:51.181Z [DEBUG] order-service - POST /api/v1/payments - Status: 503 - Response time: 1290ms - IP: 192.168.227.233 - User: user_1024 - RequestID: ox49uel8y5h +2025-06-18T15:20:51.281Z [DEBUG] order-service - GET /api/v1/orders - Status: 200 - Response time: 1296ms - IP: 192.168.147.171 - User: user_1083 - RequestID: 014tabfjperje +2025-06-18T15:20:51.381Z [INFO] notification-service - GET /api/v1/payments - Status: 503 - Response time: 771ms - IP: 192.168.144.38 - User: user_1076 - RequestID: sfb9ot3t92d +2025-06-18T15:20:51.481Z [INFO] notification-service - Operation: webhook_sent - Processing time: 554ms - RequestID: vz1xdlalf2e +2025-06-18T15:20:51.581Z [TRACE] auth-service - Database SELECT on payments - Execution time: 397ms - Rows affected: 10 - RequestID: dg4a6vbb4rd +2025-06-18T15:20:51.681Z [INFO] inventory-service - POST /api/v1/inventory - Status: 400 - Response time: 541ms - IP: 192.168.211.72 - User: user_1015 - RequestID: 25zi5gcy7f9 +2025-06-18T15:20:51.781Z [TRACE] order-service - Auth event: login_failed - User: user_1015 - IP: 192.168.229.123 - RequestID: c7dfh092ob +2025-06-18T15:20:51.881Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 674ms - IP: 192.168.227.233 - User: user_1034 - RequestID: g8yxikvhmhh +2025-06-18T15:20:51.981Z [DEBUG] order-service - Auth event: password_change - User: user_1014 - IP: 192.168.232.72 - RequestID: c8xwmyl86a6 +2025-06-18T15:20:52.081Z [DEBUG] order-service - Operation: cache_hit - Processing time: 897ms - RequestID: hmqkj40m5zm +2025-06-18T15:20:52.181Z [TRACE] user-service - PATCH /api/v1/orders - Status: 201 - Response time: 826ms - IP: 192.168.167.32 - User: user_1045 - RequestID: r7omfugfxqi +2025-06-18T15:20:52.281Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1588ms - IP: 192.168.13.72 - User: user_1045 - RequestID: nua7dqw4rff +2025-06-18T15:20:52.381Z [INFO] user-service - Operation: payment_processed - Processing time: 249ms - RequestID: uhipnrdywhg +2025-06-18T15:20:52.481Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1062ms - IP: 192.168.32.38 - User: user_1011 - RequestID: zl7x2bljyx +2025-06-18T15:20:52.581Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 507ms - IP: 192.168.144.38 - User: user_1025 - RequestID: hgjezalcqao +2025-06-18T15:20:52.681Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 689ms - RequestID: ivnw3k3h0t +2025-06-18T15:20:52.781Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 773ms - RequestID: xvfdjiotut +2025-06-18T15:20:52.881Z [TRACE] inventory-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1294ms - IP: 192.168.97.87 - User: user_1058 - RequestID: l42hdi8hbva +2025-06-18T15:20:52.981Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1488ms - IP: 192.168.174.114 - User: user_1085 - RequestID: ta71pydkrjh +2025-06-18T15:20:53.081Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 655ms - RequestID: 4f268d2vre1 +2025-06-18T15:20:53.181Z [INFO] auth-service - Auth event: login_success - User: user_1025 - IP: 192.168.79.116 - RequestID: 5rmdioph38b +2025-06-18T15:20:53.281Z [INFO] notification-service - PUT /api/v1/payments - Status: 502 - Response time: 1677ms - IP: 192.168.85.229 - User: user_1070 - RequestID: wejo1ldaluq +2025-06-18T15:20:53.381Z [TRACE] auth-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.242.165 - RequestID: 75tz9wqopcm +2025-06-18T15:20:53.481Z [DEBUG] user-service - Database INSERT on products - Execution time: 21ms - Rows affected: 96 - RequestID: 92i9w1amsd +2025-06-18T15:20:53.581Z [TRACE] order-service - Operation: inventory_updated - Processing time: 52ms - RequestID: maumhobiy7d +2025-06-18T15:20:53.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.53.133 - RequestID: mn5bkr59ol +2025-06-18T15:20:53.781Z [TRACE] notification-service - POST /api/v1/inventory - Status: 404 - Response time: 769ms - IP: 192.168.242.165 - User: user_1016 - RequestID: zrwuyhcnxf +2025-06-18T15:20:53.881Z [INFO] order-service - Operation: cache_hit - Processing time: 367ms - RequestID: iglc3zsnww +2025-06-18T15:20:53.981Z [INFO] payment-service - Database UPDATE on orders - Execution time: 97ms - Rows affected: 66 - RequestID: bcdgc0em3x +2025-06-18T15:20:54.081Z [INFO] payment-service - Operation: cache_hit - Processing time: 81ms - RequestID: z80a6zku8qe +2025-06-18T15:20:54.181Z [DEBUG] order-service - PUT /api/v1/users - Status: 400 - Response time: 78ms - IP: 192.168.79.143 - User: user_1025 - RequestID: zqj5082yggd +2025-06-18T15:20:54.281Z [INFO] notification-service - Auth event: login_attempt - User: user_1038 - IP: 192.168.31.117 - RequestID: 006w1hpc5j7pt +2025-06-18T15:20:54.381Z [DEBUG] user-service - Database SELECT on payments - Execution time: 222ms - Rows affected: 79 - RequestID: vw0tv8leo7a +2025-06-18T15:20:54.481Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1654ms - IP: 192.168.158.144 - User: user_1025 - RequestID: ptrw24kxc9c +2025-06-18T15:20:54.581Z [INFO] user-service - Database UPDATE on users - Execution time: 389ms - Rows affected: 78 - RequestID: 1ukgjs7kdz +2025-06-18T15:20:54.681Z [TRACE] auth-service - GET /api/v1/inventory - Status: 403 - Response time: 1963ms - IP: 192.168.14.77 - User: user_1053 - RequestID: 6gxie4e2er9 +2025-06-18T15:20:54.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 427ms - RequestID: 0349983fc15z +2025-06-18T15:20:54.881Z [DEBUG] user-service - Auth event: login_success - User: user_1056 - IP: 192.168.240.169 - RequestID: hywe4bdolwe +2025-06-18T15:20:54.981Z [INFO] auth-service - POST /api/v1/inventory - Status: 502 - Response time: 594ms - IP: 192.168.189.103 - User: user_1093 - RequestID: mwu7ognuk1 +2025-06-18T15:20:55.081Z [TRACE] notification-service - Auth event: password_change - User: user_1035 - IP: 192.168.100.240 - RequestID: aljbe1cyqy +2025-06-18T15:20:55.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.227.77 - RequestID: 0v21ufs8jx2g +2025-06-18T15:20:55.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.46.63 - RequestID: 4tuw7np5rmh +2025-06-18T15:20:55.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.211.72 - RequestID: bnnwy9n2plu +2025-06-18T15:20:55.481Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1008ms - IP: 192.168.14.77 - User: user_1038 - RequestID: vt2uysnz7lb +2025-06-18T15:20:55.581Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 266ms - Rows affected: 78 - RequestID: 8h9vo2hr22i +2025-06-18T15:20:55.681Z [INFO] auth-service - Operation: cache_hit - Processing time: 321ms - RequestID: sggcuinv8ip +2025-06-18T15:20:55.781Z [INFO] user-service - Database DELETE on orders - Execution time: 340ms - Rows affected: 29 - RequestID: j91sg2ngadj +2025-06-18T15:20:55.881Z [TRACE] user-service - Operation: order_created - Processing time: 121ms - RequestID: z29jd3rwayl +2025-06-18T15:20:55.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1032 - IP: 192.168.229.123 - RequestID: 7uc81gpe7ps +2025-06-18T15:20:56.081Z [INFO] auth-service - DELETE /api/v1/users - Status: 503 - Response time: 1250ms - IP: 192.168.10.184 - User: user_1017 - RequestID: kahhwx7xl8 +2025-06-18T15:20:56.181Z [TRACE] order-service - Database UPDATE on users - Execution time: 485ms - Rows affected: 77 - RequestID: qg6l839rj4d +2025-06-18T15:20:56.281Z [INFO] order-service - Operation: cache_hit - Processing time: 742ms - RequestID: k3qkye611j9 +2025-06-18T15:20:56.381Z [DEBUG] user-service - Auth event: login_success - User: user_1050 - IP: 192.168.229.123 - RequestID: l0p4g2da7ve +2025-06-18T15:20:56.481Z [DEBUG] order-service - Auth event: password_change - User: user_1070 - IP: 192.168.187.199 - RequestID: cyao9dv925l +2025-06-18T15:20:56.581Z [DEBUG] inventory-service - GET /api/v1/users - Status: 200 - Response time: 1036ms - IP: 192.168.147.171 - User: user_1019 - RequestID: 8q6vqnizvx +2025-06-18T15:20:56.681Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 845ms - RequestID: 4ln33ppnl5b +2025-06-18T15:20:56.781Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 403 - Response time: 1509ms - IP: 192.168.68.128 - User: user_1088 - RequestID: jt7dl4twwmm +2025-06-18T15:20:56.881Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 407ms - Rows affected: 75 - RequestID: fesnv8h3bm +2025-06-18T15:20:56.981Z [INFO] payment-service - Auth event: password_change - User: user_1029 - IP: 192.168.11.60 - RequestID: m8wfou7osmp +2025-06-18T15:20:57.081Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 135ms - Rows affected: 2 - RequestID: rl5a4golpwi +2025-06-18T15:20:57.181Z [DEBUG] user-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.170.215 - RequestID: ixftfjnx12 +2025-06-18T15:20:57.281Z [INFO] order-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.1.152 - RequestID: ph3mcq918yt +2025-06-18T15:20:57.381Z [INFO] notification-service - Auth event: password_change - User: user_1078 - IP: 192.168.187.199 - RequestID: mvv4r6el0fd +2025-06-18T15:20:57.481Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 224ms - Rows affected: 43 - RequestID: 6hz1n1umjg7 +2025-06-18T15:20:57.581Z [DEBUG] user-service - Database SELECT on payments - Execution time: 37ms - Rows affected: 60 - RequestID: uydts6kcddp +2025-06-18T15:20:57.681Z [INFO] user-service - Database INSERT on orders - Execution time: 239ms - Rows affected: 80 - RequestID: 3q3f3fgtovw +2025-06-18T15:20:57.781Z [INFO] payment-service - Auth event: password_change - User: user_1082 - IP: 192.168.64.33 - RequestID: 8ewvmzsxt4e +2025-06-18T15:20:57.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.13.72 - RequestID: 6sg4b6u4hfs +2025-06-18T15:20:57.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1035 - IP: 192.168.79.116 - RequestID: 0jn0lwcf7vma +2025-06-18T15:20:58.081Z [TRACE] user-service - GET /api/v1/inventory - Status: 401 - Response time: 45ms - IP: 192.168.44.5 - User: user_1099 - RequestID: e9cc60tx3vl +2025-06-18T15:20:58.181Z [INFO] order-service - Auth event: token_refresh - User: user_1049 - IP: 192.168.170.215 - RequestID: 2niwk9270wk +2025-06-18T15:20:58.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 288ms - RequestID: s2tcjwlbpfq +2025-06-18T15:20:58.381Z [INFO] auth-service - Auth event: login_failed - User: user_1051 - IP: 192.168.79.141 - RequestID: l4egfz5rb4 +2025-06-18T15:20:58.481Z [DEBUG] order-service - Operation: cache_hit - Processing time: 448ms - RequestID: 7tmjm8lg184 +2025-06-18T15:20:58.581Z [INFO] notification-service - Operation: notification_queued - Processing time: 777ms - RequestID: 1xiee79h5yf +2025-06-18T15:20:58.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1010 - IP: 192.168.79.141 - RequestID: 3h96kirelip +2025-06-18T15:20:58.781Z [DEBUG] user-service - POST /api/v1/users - Status: 500 - Response time: 1167ms - IP: 192.168.196.226 - User: user_1074 - RequestID: 6xfa44vjqfg +2025-06-18T15:20:58.881Z [INFO] notification-service - POST /api/v1/auth/login - Status: 401 - Response time: 1124ms - IP: 192.168.144.38 - User: user_1011 - RequestID: lrd6qeorekl +2025-06-18T15:20:58.981Z [INFO] notification-service - Operation: cache_hit - Processing time: 554ms - RequestID: qwddkhg3hqk +2025-06-18T15:20:59.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1006 - IP: 192.168.189.103 - RequestID: phyv1ppy88m +2025-06-18T15:20:59.181Z [DEBUG] notification-service - POST /api/v1/inventory - Status: 401 - Response time: 1818ms - IP: 192.168.240.169 - User: user_1082 - RequestID: 4ks4qbufvy +2025-06-18T15:20:59.281Z [INFO] auth-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1898ms - IP: 192.168.240.169 - User: user_1051 - RequestID: b45mr20drf9 +2025-06-18T15:20:59.381Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 80ms - RequestID: jss9pwydrif +2025-06-18T15:20:59.481Z [TRACE] order-service - Database UPDATE on payments - Execution time: 261ms - Rows affected: 43 - RequestID: zlhhae5kmm +2025-06-18T15:20:59.581Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 401 - Response time: 580ms - IP: 192.168.196.226 - User: user_1077 - RequestID: qxrnx09ocgg +2025-06-18T15:20:59.681Z [TRACE] auth-service - Operation: order_created - Processing time: 1013ms - RequestID: 6per217hue6 +2025-06-18T15:20:59.781Z [INFO] user-service - Database UPDATE on orders - Execution time: 338ms - Rows affected: 3 - RequestID: nlqjvgjixvp +2025-06-18T15:20:59.881Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 153ms - Rows affected: 93 - RequestID: pflf72bkvzk +2025-06-18T15:20:59.981Z [INFO] user-service - Operation: order_created - Processing time: 976ms - RequestID: 8ybgdw38op9 +2025-06-18T15:21:00.081Z [INFO] auth-service - POST /api/v1/users - Status: 502 - Response time: 1105ms - IP: 192.168.104.37 - User: user_1024 - RequestID: 5vr7ci7ij36 +2025-06-18T15:21:00.181Z [INFO] auth-service - Database DELETE on products - Execution time: 166ms - Rows affected: 70 - RequestID: cd8o2ysodrs +2025-06-18T15:21:00.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 202ms - RequestID: s9p276xqek +2025-06-18T15:21:00.381Z [INFO] user-service - Auth event: token_refresh - User: user_1023 - IP: 192.168.28.146 - RequestID: x2kee1unw7 +2025-06-18T15:21:00.481Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.147.171 - RequestID: jaw59gfn24d +2025-06-18T15:21:00.581Z [INFO] order-service - Database DELETE on payments - Execution time: 316ms - Rows affected: 68 - RequestID: viqjctg0do +2025-06-18T15:21:00.681Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 436ms - Rows affected: 23 - RequestID: 0qh5yhp8w1r +2025-06-18T15:21:00.781Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1005 - IP: 192.168.53.133 - RequestID: ng2adivh28 +2025-06-18T15:21:00.881Z [DEBUG] order-service - Database INSERT on payments - Execution time: 359ms - Rows affected: 61 - RequestID: snsskuu5ozd +2025-06-18T15:21:00.981Z [INFO] auth-service - Auth event: login_failed - User: user_1069 - IP: 192.168.79.141 - RequestID: crvk0xb3bl +2025-06-18T15:21:01.081Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 279ms - RequestID: ejpwt7znlh +2025-06-18T15:21:01.181Z [DEBUG] notification-service - GET /api/v1/payments - Status: 200 - Response time: 279ms - IP: 192.168.30.79 - User: user_1052 - RequestID: i9o54q5ao2d +2025-06-18T15:21:01.281Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 400 - Response time: 1109ms - IP: 192.168.13.72 - User: user_1045 - RequestID: 9s7yssttdkg +2025-06-18T15:21:01.381Z [DEBUG] notification-service - Auth event: password_change - User: user_1031 - IP: 192.168.68.128 - RequestID: 9e5jaawvjio +2025-06-18T15:21:01.481Z [INFO] payment-service - Operation: inventory_updated - Processing time: 186ms - RequestID: ia07y5ubulo +2025-06-18T15:21:01.581Z [DEBUG] user-service - Operation: payment_processed - Processing time: 323ms - RequestID: t7nstv8iorb +2025-06-18T15:21:01.681Z [TRACE] order-service - Database SELECT on products - Execution time: 345ms - Rows affected: 83 - RequestID: aqj81okkyl +2025-06-18T15:21:01.781Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 158ms - Rows affected: 55 - RequestID: yg4jvyh4k6 +2025-06-18T15:21:01.881Z [INFO] user-service - GET /api/v1/auth/login - Status: 500 - Response time: 640ms - IP: 192.168.227.77 - User: user_1083 - RequestID: yslnijkviy +2025-06-18T15:21:01.981Z [INFO] order-service - Operation: webhook_sent - Processing time: 489ms - RequestID: 3s9wk6m40j2 +2025-06-18T15:21:02.081Z [INFO] inventory-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.240.169 - RequestID: t8b20jqm5i +2025-06-18T15:21:02.181Z [INFO] payment-service - GET /api/v1/auth/login - Status: 503 - Response time: 1679ms - IP: 192.168.170.215 - User: user_1098 - RequestID: hdrzlk2bbla +2025-06-18T15:21:02.281Z [DEBUG] user-service - Auth event: password_change - User: user_1096 - IP: 192.168.68.128 - RequestID: axjjv29ps2w +2025-06-18T15:21:02.381Z [TRACE] payment-service - POST /api/v1/inventory - Status: 503 - Response time: 1677ms - IP: 192.168.141.100 - User: user_1056 - RequestID: qx538089ohb +2025-06-18T15:21:02.481Z [TRACE] order-service - Operation: payment_processed - Processing time: 305ms - RequestID: 8i1us1i1axd +2025-06-18T15:21:02.581Z [INFO] payment-service - Operation: payment_processed - Processing time: 433ms - RequestID: rx3u3dtxmus +2025-06-18T15:21:02.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.227.77 - RequestID: 551pnqa90o7 +2025-06-18T15:21:02.781Z [TRACE] auth-service - Auth event: logout - User: user_1097 - IP: 192.168.10.184 - RequestID: qtytgl5d9m +2025-06-18T15:21:02.881Z [DEBUG] payment-service - Database DELETE on users - Execution time: 403ms - Rows affected: 53 - RequestID: kda2rtx3q6r +2025-06-18T15:21:02.981Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1386ms - IP: 192.168.79.141 - User: user_1094 - RequestID: p631631oc4q +2025-06-18T15:21:03.081Z [INFO] order-service - Operation: cache_hit - Processing time: 448ms - RequestID: yi8oouy6y1 +2025-06-18T15:21:03.181Z [INFO] payment-service - Database SELECT on products - Execution time: 204ms - Rows affected: 82 - RequestID: 5g91c1aw6sj +2025-06-18T15:21:03.281Z [TRACE] notification-service - Database INSERT on users - Execution time: 107ms - Rows affected: 62 - RequestID: zs8a95mps9 +2025-06-18T15:21:03.381Z [TRACE] notification-service - Operation: email_sent - Processing time: 692ms - RequestID: 4p1zsnoatn +2025-06-18T15:21:03.481Z [TRACE] user-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.1.152 - RequestID: 8iu5uiv6zov +2025-06-18T15:21:03.581Z [INFO] auth-service - Operation: notification_queued - Processing time: 750ms - RequestID: 5j7v0t4ylio +2025-06-18T15:21:03.681Z [TRACE] notification-service - Database DELETE on payments - Execution time: 490ms - Rows affected: 25 - RequestID: mfwqa0ol26 +2025-06-18T15:21:03.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.79.116 - RequestID: fkv14hmovl5 +2025-06-18T15:21:03.881Z [TRACE] payment-service - Operation: order_created - Processing time: 557ms - RequestID: zreih1qh5 +2025-06-18T15:21:03.981Z [INFO] user-service - Auth event: login_failed - User: user_1017 - IP: 192.168.44.5 - RequestID: tg0h64ivewc +2025-06-18T15:21:04.081Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 727ms - RequestID: gvrs869e6hj +2025-06-18T15:21:04.181Z [TRACE] user-service - Operation: order_created - Processing time: 611ms - RequestID: 6ligk74wiem +2025-06-18T15:21:04.281Z [DEBUG] order-service - PUT /api/v1/orders - Status: 404 - Response time: 60ms - IP: 192.168.147.171 - User: user_1016 - RequestID: uc8sd9wp3b +2025-06-18T15:21:04.381Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 411ms - Rows affected: 35 - RequestID: kchpw2ueu09 +2025-06-18T15:21:04.481Z [INFO] payment-service - Auth event: login_failed - User: user_1053 - IP: 192.168.144.38 - RequestID: 78evq56bu4v +2025-06-18T15:21:04.581Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1127ms - IP: 192.168.170.215 - User: user_1067 - RequestID: rrd8179kks +2025-06-18T15:21:04.681Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1849ms - IP: 192.168.13.72 - User: user_1015 - RequestID: rnoidk56vq +2025-06-18T15:21:04.781Z [DEBUG] notification-service - POST /api/v1/payments - Status: 500 - Response time: 1425ms - IP: 192.168.79.143 - User: user_1001 - RequestID: 42176pz7qii +2025-06-18T15:21:04.881Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 107ms - Rows affected: 78 - RequestID: xmm9l7b7cs +2025-06-18T15:21:04.981Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1972ms - IP: 192.168.196.226 - User: user_1062 - RequestID: 46tx1s1gr72 +2025-06-18T15:21:05.081Z [DEBUG] user-service - Database DELETE on orders - Execution time: 41ms - Rows affected: 86 - RequestID: mv4y8szw5l +2025-06-18T15:21:05.181Z [TRACE] user-service - Auth event: password_change - User: user_1056 - IP: 192.168.68.158 - RequestID: 4yazqshku2a +2025-06-18T15:21:05.281Z [DEBUG] notification-service - Operation: email_sent - Processing time: 880ms - RequestID: q6haapkxpg9 +2025-06-18T15:21:05.381Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 61ms - RequestID: zthscvvib2 +2025-06-18T15:21:05.481Z [TRACE] auth-service - Auth event: login_failed - User: user_1047 - IP: 192.168.53.133 - RequestID: iwfbnjopfqh +2025-06-18T15:21:05.581Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1000ms - IP: 192.168.79.116 - User: user_1008 - RequestID: 1riya7ter1d +2025-06-18T15:21:05.681Z [INFO] payment-service - Operation: payment_processed - Processing time: 561ms - RequestID: 1ilyw8neok3 +2025-06-18T15:21:05.781Z [DEBUG] auth-service - Auth event: login_success - User: user_1097 - IP: 192.168.53.133 - RequestID: 9gf8n9wi229 +2025-06-18T15:21:05.881Z [DEBUG] user-service - Operation: cache_miss - Processing time: 319ms - RequestID: fi34p76ybnw +2025-06-18T15:21:05.981Z [INFO] order-service - Auth event: login_attempt - User: user_1081 - IP: 192.168.227.233 - RequestID: vbax3j38lif +2025-06-18T15:21:06.081Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 403 - Response time: 742ms - IP: 192.168.85.229 - User: user_1098 - RequestID: ucfltdqrvxg +2025-06-18T15:21:06.181Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 698ms - IP: 192.168.85.229 - User: user_1089 - RequestID: mxsaxobv9z9 +2025-06-18T15:21:06.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1037 - IP: 192.168.81.206 - RequestID: i3wcj9p8ks +2025-06-18T15:21:06.381Z [DEBUG] order-service - Auth event: logout - User: user_1043 - IP: 192.168.133.7 - RequestID: ktz0456rt9 +2025-06-18T15:21:06.481Z [INFO] notification-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.30.79 - RequestID: o1pdmrh8bun +2025-06-18T15:21:06.581Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.36.218 - RequestID: ked010xuxao +2025-06-18T15:21:06.681Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 401 - Response time: 1884ms - IP: 192.168.196.226 - User: user_1023 - RequestID: qg8gblv2kap +2025-06-18T15:21:06.781Z [TRACE] user-service - Database UPDATE on orders - Execution time: 76ms - Rows affected: 38 - RequestID: vsfkaqt9ukg +2025-06-18T15:21:06.881Z [TRACE] payment-service - GET /api/v1/users - Status: 200 - Response time: 225ms - IP: 192.168.196.226 - User: user_1027 - RequestID: ovvwjz6yupb +2025-06-18T15:21:06.981Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 77ms - RequestID: 9dxyts6i1x +2025-06-18T15:21:07.081Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 636ms - IP: 192.168.147.171 - User: user_1010 - RequestID: yjb1t4x0kl +2025-06-18T15:21:07.181Z [TRACE] auth-service - PATCH /api/v1/payments - Status: 500 - Response time: 169ms - IP: 192.168.30.79 - User: user_1056 - RequestID: p52u1n6b2q +2025-06-18T15:21:07.281Z [TRACE] notification-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.235.117 - RequestID: sczhdso3c5p +2025-06-18T15:21:07.381Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 550ms - RequestID: t6xrlyka6wj +2025-06-18T15:21:07.481Z [INFO] payment-service - Auth event: login_success - User: user_1034 - IP: 192.168.240.169 - RequestID: j3p6lpcdm4 +2025-06-18T15:21:07.581Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1839ms - IP: 192.168.79.143 - User: user_1083 - RequestID: 6zndu6tguyn +2025-06-18T15:21:07.681Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 421ms - Rows affected: 35 - RequestID: aaohs0evrxk +2025-06-18T15:21:07.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 288ms - RequestID: lhgcvljoue +2025-06-18T15:21:07.881Z [INFO] auth-service - Operation: email_sent - Processing time: 233ms - RequestID: uel2wxcggo +2025-06-18T15:21:07.981Z [TRACE] auth-service - Database DELETE on orders - Execution time: 114ms - Rows affected: 79 - RequestID: d21ql6b8t2f +2025-06-18T15:21:08.081Z [INFO] payment-service - PUT /api/v1/users - Status: 500 - Response time: 1302ms - IP: 192.168.46.63 - User: user_1087 - RequestID: bs5d2fietlc +2025-06-18T15:21:08.181Z [INFO] notification-service - POST /api/v1/orders - Status: 500 - Response time: 723ms - IP: 192.168.147.171 - User: user_1022 - RequestID: yngvotxlkqi +2025-06-18T15:21:08.281Z [INFO] inventory-service - Database INSERT on users - Execution time: 203ms - Rows affected: 78 - RequestID: 4nl6xokcupb +2025-06-18T15:21:08.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.11.60 - RequestID: i9vgrzoq1c +2025-06-18T15:21:08.481Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 479ms - Rows affected: 76 - RequestID: zwt3b2t0v8e +2025-06-18T15:21:08.581Z [INFO] payment-service - PATCH /api/v1/orders - Status: 201 - Response time: 1360ms - IP: 192.168.46.63 - User: user_1028 - RequestID: 4vcz58punya +2025-06-18T15:21:08.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 359ms - RequestID: o9jxtx6ek4p +2025-06-18T15:21:08.781Z [TRACE] order-service - PUT /api/v1/users - Status: 400 - Response time: 734ms - IP: 192.168.79.116 - User: user_1062 - RequestID: 8r8e1pg8ye +2025-06-18T15:21:08.881Z [INFO] notification-service - Database INSERT on orders - Execution time: 488ms - Rows affected: 63 - RequestID: gm4ku6e1a49 +2025-06-18T15:21:08.981Z [TRACE] notification-service - Auth event: login_success - User: user_1020 - IP: 192.168.133.7 - RequestID: rb51n33eg0i +2025-06-18T15:21:09.081Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 1029ms - RequestID: mbld0grz9v +2025-06-18T15:21:09.181Z [TRACE] auth-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.13.72 - RequestID: 63hmen0q8kt +2025-06-18T15:21:09.281Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 406ms - Rows affected: 2 - RequestID: 8flkgt7wdjk +2025-06-18T15:21:09.381Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 349ms - Rows affected: 99 - RequestID: 6j5z601usk +2025-06-18T15:21:09.481Z [TRACE] user-service - PUT /api/v1/orders - Status: 401 - Response time: 831ms - IP: 192.168.36.218 - User: user_1014 - RequestID: 2pr56zl8hne +2025-06-18T15:21:09.581Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 400 - Response time: 1977ms - IP: 192.168.31.117 - User: user_1087 - RequestID: 36le08ko8gt +2025-06-18T15:21:09.681Z [TRACE] order-service - Database DELETE on sessions - Execution time: 323ms - Rows affected: 43 - RequestID: 0gcz725ctwd +2025-06-18T15:21:09.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.81.206 - RequestID: yq5ugfd91o +2025-06-18T15:21:09.881Z [INFO] notification-service - Operation: notification_queued - Processing time: 814ms - RequestID: 9fiafr0btv +2025-06-18T15:21:09.981Z [DEBUG] order-service - POST /api/v1/payments - Status: 200 - Response time: 936ms - IP: 192.168.144.38 - User: user_1051 - RequestID: o54sp38d16p +2025-06-18T15:21:10.081Z [DEBUG] auth-service - Database DELETE on products - Execution time: 276ms - Rows affected: 52 - RequestID: tc7ydfhwk +2025-06-18T15:21:10.181Z [INFO] order-service - Operation: email_sent - Processing time: 931ms - RequestID: mpuj3qtol3 +2025-06-18T15:21:10.281Z [DEBUG] order-service - Database DELETE on products - Execution time: 432ms - Rows affected: 71 - RequestID: y9opyqbexe +2025-06-18T15:21:10.381Z [TRACE] auth-service - Operation: notification_queued - Processing time: 503ms - RequestID: k0u5co44a7a +2025-06-18T15:21:10.481Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1046ms - IP: 192.168.229.123 - User: user_1040 - RequestID: q7i3wzl5h1b +2025-06-18T15:21:10.581Z [INFO] order-service - Auth event: logout - User: user_1022 - IP: 192.168.36.218 - RequestID: qkzshmq41kr +2025-06-18T15:21:10.681Z [DEBUG] notification-service - Operation: order_created - Processing time: 451ms - RequestID: yrqnupeq62 +2025-06-18T15:21:10.781Z [INFO] user-service - Database UPDATE on orders - Execution time: 179ms - Rows affected: 33 - RequestID: vau1454eg1 +2025-06-18T15:21:10.881Z [INFO] inventory-service - Auth event: login_failed - User: user_1002 - IP: 192.168.33.76 - RequestID: zuqbpq3fqi +2025-06-18T15:21:10.981Z [TRACE] order-service - Database DELETE on products - Execution time: 20ms - Rows affected: 91 - RequestID: q19zyxfsq6 +2025-06-18T15:21:11.081Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 503 - Response time: 56ms - IP: 192.168.79.141 - User: user_1093 - RequestID: okq4rmdw49 +2025-06-18T15:21:11.181Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 301ms - Rows affected: 71 - RequestID: j524n53ihsb +2025-06-18T15:21:11.281Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1046ms - IP: 192.168.196.226 - User: user_1016 - RequestID: ieutspy9h7 +2025-06-18T15:21:11.381Z [TRACE] order-service - GET /api/v1/orders - Status: 502 - Response time: 237ms - IP: 192.168.232.72 - User: user_1068 - RequestID: yf8h6qjmapp +2025-06-18T15:21:11.481Z [INFO] auth-service - Operation: webhook_sent - Processing time: 550ms - RequestID: le3utqx4kcr +2025-06-18T15:21:11.581Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 272ms - Rows affected: 41 - RequestID: ttczi0s8zsc +2025-06-18T15:21:11.681Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 200 - Response time: 305ms - IP: 192.168.100.240 - User: user_1005 - RequestID: yf15mhgbnu +2025-06-18T15:21:11.781Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 973ms - RequestID: njy0dwtmixs +2025-06-18T15:21:11.881Z [DEBUG] notification-service - Operation: order_created - Processing time: 184ms - RequestID: b2w9fi46et5 +2025-06-18T15:21:11.981Z [INFO] inventory-service - Operation: email_sent - Processing time: 200ms - RequestID: t18q3l83sya +2025-06-18T15:21:12.081Z [INFO] order-service - Database INSERT on payments - Execution time: 234ms - Rows affected: 42 - RequestID: dnmrtx9f2mi +2025-06-18T15:21:12.181Z [INFO] auth-service - DELETE /api/v1/payments - Status: 401 - Response time: 1162ms - IP: 192.168.147.171 - User: user_1095 - RequestID: s6pfl7vign9 +2025-06-18T15:21:12.281Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 963ms - RequestID: gzafgerw7jv +2025-06-18T15:21:12.381Z [DEBUG] user-service - Auth event: login_success - User: user_1099 - IP: 192.168.167.32 - RequestID: zicre2wdfo +2025-06-18T15:21:12.481Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 50ms - IP: 192.168.211.72 - User: user_1012 - RequestID: uzm6pyz9jhs +2025-06-18T15:21:12.581Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 301ms - Rows affected: 50 - RequestID: 5m0tjmnlu69 +2025-06-18T15:21:12.681Z [INFO] payment-service - Auth event: password_change - User: user_1049 - IP: 192.168.170.215 - RequestID: 0xylpg6qv2do +2025-06-18T15:21:12.781Z [TRACE] auth-service - Auth event: token_refresh - User: user_1054 - IP: 192.168.64.33 - RequestID: tklvdt3iay9 +2025-06-18T15:21:12.881Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 234ms - Rows affected: 93 - RequestID: 2cztv8p6tp3 +2025-06-18T15:21:12.981Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 401 - Response time: 1650ms - IP: 192.168.81.206 - User: user_1034 - RequestID: kjz197l6pj +2025-06-18T15:21:13.081Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1285ms - IP: 192.168.174.114 - User: user_1088 - RequestID: xndpmg7kuad +2025-06-18T15:21:13.181Z [INFO] payment-service - Database INSERT on orders - Execution time: 57ms - Rows affected: 43 - RequestID: 94pc5yj897 +2025-06-18T15:21:13.281Z [TRACE] order-service - Auth event: login_failed - User: user_1093 - IP: 192.168.187.199 - RequestID: ip2nz69w3nh +2025-06-18T15:21:13.381Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 201 - Response time: 213ms - IP: 192.168.247.134 - User: user_1017 - RequestID: 5bdf40y6upd +2025-06-18T15:21:13.481Z [DEBUG] inventory-service - Operation: order_created - Processing time: 269ms - RequestID: 7fu9smf9lvm +2025-06-18T15:21:13.581Z [TRACE] payment-service - Database DELETE on payments - Execution time: 124ms - Rows affected: 35 - RequestID: 5ehwa71ui1o +2025-06-18T15:21:13.681Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 944ms - RequestID: ul420mdvtds +2025-06-18T15:21:13.781Z [INFO] payment-service - POST /api/v1/payments - Status: 500 - Response time: 166ms - IP: 192.168.138.123 - User: user_1009 - RequestID: uzt0qleziqa +2025-06-18T15:21:13.881Z [TRACE] auth-service - Auth event: login_success - User: user_1085 - IP: 192.168.79.116 - RequestID: u8l3gkkj1y +2025-06-18T15:21:13.981Z [TRACE] inventory-service - POST /api/v1/orders - Status: 503 - Response time: 1048ms - IP: 192.168.240.169 - User: user_1061 - RequestID: vphyhtvkc2 +2025-06-18T15:21:14.081Z [DEBUG] payment-service - Auth event: login_failed - User: user_1037 - IP: 192.168.133.7 - RequestID: wg1v59p2hb +2025-06-18T15:21:14.181Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 234ms - Rows affected: 12 - RequestID: fvprcr0yojo +2025-06-18T15:21:14.281Z [TRACE] payment-service - Auth event: logout - User: user_1092 - IP: 192.168.247.134 - RequestID: 58hsnlovv74 +2025-06-18T15:21:14.381Z [INFO] payment-service - Auth event: login_success - User: user_1044 - IP: 192.168.14.77 - RequestID: h9gb87fspon +2025-06-18T15:21:14.481Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 61ms - Rows affected: 17 - RequestID: s14bchoxoi +2025-06-18T15:21:14.581Z [INFO] order-service - Operation: webhook_sent - Processing time: 245ms - RequestID: s9on8rdga7 +2025-06-18T15:21:14.681Z [INFO] auth-service - Operation: payment_processed - Processing time: 757ms - RequestID: a6uwiownk3v +2025-06-18T15:21:14.781Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 401 - Response time: 1578ms - IP: 192.168.79.143 - User: user_1045 - RequestID: e18r94podsc +2025-06-18T15:21:14.881Z [DEBUG] auth-service - Auth event: login_failed - User: user_1009 - IP: 192.168.79.141 - RequestID: m9xpemcl6y +2025-06-18T15:21:14.981Z [INFO] inventory-service - Operation: payment_processed - Processing time: 342ms - RequestID: 59wtc8jxlga +2025-06-18T15:21:15.081Z [INFO] user-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1650ms - IP: 192.168.68.128 - User: user_1053 - RequestID: xa4j4i7hwmr +2025-06-18T15:21:15.181Z [DEBUG] payment-service - Database SELECT on products - Execution time: 57ms - Rows affected: 68 - RequestID: e1902644m28 +2025-06-18T15:21:15.281Z [DEBUG] order-service - Operation: notification_queued - Processing time: 692ms - RequestID: ng701v6bjpg +2025-06-18T15:21:15.381Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 400 - Response time: 657ms - IP: 192.168.189.103 - User: user_1083 - RequestID: 7prtlmdxyw +2025-06-18T15:21:15.481Z [INFO] auth-service - Auth event: login_failed - User: user_1015 - IP: 192.168.113.218 - RequestID: y0ldl0z2e3b +2025-06-18T15:21:15.581Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 503 - Response time: 294ms - IP: 192.168.211.72 - User: user_1087 - RequestID: rrhklxzzzwl +2025-06-18T15:21:15.681Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 201 - Response time: 499ms - IP: 192.168.79.116 - User: user_1074 - RequestID: cgqvmk5mf2a +2025-06-18T15:21:15.781Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 226ms - Rows affected: 64 - RequestID: 7l8wpjbst98 +2025-06-18T15:21:15.881Z [INFO] payment-service - Operation: webhook_sent - Processing time: 487ms - RequestID: ytydgoa09ts +2025-06-18T15:21:15.981Z [TRACE] inventory-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 1734ms - IP: 192.168.174.114 - User: user_1061 - RequestID: s5ao2dlpds +2025-06-18T15:21:16.081Z [DEBUG] order-service - Database DELETE on users - Execution time: 324ms - Rows affected: 74 - RequestID: bqjvbjrt5iu +2025-06-18T15:21:16.181Z [INFO] order-service - DELETE /api/v1/users - Status: 403 - Response time: 680ms - IP: 192.168.196.226 - User: user_1096 - RequestID: qs49j0z5nlm +2025-06-18T15:21:16.281Z [INFO] notification-service - PATCH /api/v1/orders - Status: 503 - Response time: 1250ms - IP: 192.168.196.226 - User: user_1091 - RequestID: 2rmv79o6myg +2025-06-18T15:21:16.381Z [INFO] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 1633ms - IP: 192.168.247.134 - User: user_1014 - RequestID: 0kizsu0ahjgk +2025-06-18T15:21:16.481Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1996ms - IP: 192.168.64.33 - User: user_1021 - RequestID: fqyqvygxpic +2025-06-18T15:21:16.581Z [INFO] user-service - Auth event: login_failed - User: user_1070 - IP: 192.168.79.141 - RequestID: ih17ssmmcyd +2025-06-18T15:21:16.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 661ms - RequestID: eup0cp5qp36 +2025-06-18T15:21:16.781Z [TRACE] payment-service - Database SELECT on payments - Execution time: 361ms - Rows affected: 40 - RequestID: gt4j3aqs9nl +2025-06-18T15:21:16.881Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 423ms - RequestID: uw4p7fxdhwp +2025-06-18T15:21:16.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.138.123 - RequestID: jaec092u4p +2025-06-18T15:21:17.081Z [DEBUG] order-service - Database DELETE on users - Execution time: 378ms - Rows affected: 32 - RequestID: inwft7qjbb +2025-06-18T15:21:17.181Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1100ms - IP: 192.168.97.87 - User: user_1060 - RequestID: aurjgtl6x7s +2025-06-18T15:21:17.281Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 439ms - Rows affected: 17 - RequestID: l3xm46nm4fs +2025-06-18T15:21:17.381Z [DEBUG] inventory-service - Auth event: logout - User: user_1074 - IP: 192.168.36.218 - RequestID: etad1h39o7k +2025-06-18T15:21:17.481Z [INFO] notification-service - Operation: inventory_updated - Processing time: 262ms - RequestID: un9ts2zrzb9 +2025-06-18T15:21:17.581Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 71ms - Rows affected: 81 - RequestID: kxwwx4ogz +2025-06-18T15:21:17.681Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 483ms - IP: 192.168.194.41 - User: user_1001 - RequestID: tldg2goph0n +2025-06-18T15:21:17.781Z [TRACE] notification-service - Operation: email_sent - Processing time: 951ms - RequestID: k1ggqqsh8u8 +2025-06-18T15:21:17.881Z [TRACE] notification-service - Operation: payment_processed - Processing time: 459ms - RequestID: rccy4b1zrb8 +2025-06-18T15:21:17.981Z [INFO] notification-service - Database UPDATE on products - Execution time: 197ms - Rows affected: 39 - RequestID: p7mn624ni68 +2025-06-18T15:21:18.081Z [INFO] inventory-service - Database INSERT on orders - Execution time: 223ms - Rows affected: 40 - RequestID: izam0iqgp8 +2025-06-18T15:21:18.181Z [INFO] order-service - DELETE /api/v1/orders - Status: 200 - Response time: 277ms - IP: 192.168.181.225 - User: user_1026 - RequestID: bwf2smgcv7n +2025-06-18T15:21:18.281Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 100ms - Rows affected: 1 - RequestID: 1ez2hevbczb +2025-06-18T15:21:18.381Z [INFO] auth-service - Operation: inventory_updated - Processing time: 571ms - RequestID: k7c3p42g3x9 +2025-06-18T15:21:18.481Z [INFO] notification-service - Database SELECT on sessions - Execution time: 446ms - Rows affected: 72 - RequestID: n9ghe6508hf +2025-06-18T15:21:18.581Z [INFO] user-service - Database UPDATE on payments - Execution time: 418ms - Rows affected: 27 - RequestID: vyqvuga053n +2025-06-18T15:21:18.681Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1001 - IP: 192.168.194.41 - RequestID: 5xo07q4x66u +2025-06-18T15:21:18.781Z [INFO] payment-service - Database INSERT on payments - Execution time: 472ms - Rows affected: 44 - RequestID: tjoskhrxko +2025-06-18T15:21:18.881Z [INFO] notification-service - DELETE /api/v1/orders - Status: 400 - Response time: 1953ms - IP: 192.168.46.63 - User: user_1006 - RequestID: ybmt7j3xr3 +2025-06-18T15:21:18.981Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 492ms - Rows affected: 78 - RequestID: dxj0d4sr3rr +2025-06-18T15:21:19.081Z [TRACE] notification-service - Operation: order_created - Processing time: 744ms - RequestID: b3ulyyaxrks +2025-06-18T15:21:19.181Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 361ms - RequestID: v0nfztbbx6 +2025-06-18T15:21:19.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1030 - IP: 192.168.1.152 - RequestID: j9n7d8i7lhk +2025-06-18T15:21:19.381Z [INFO] order-service - Database DELETE on products - Execution time: 44ms - Rows affected: 35 - RequestID: f1e6ylxhm1 +2025-06-18T15:21:19.481Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 158ms - Rows affected: 79 - RequestID: 8i099qg1qwq +2025-06-18T15:21:19.581Z [INFO] notification-service - Database INSERT on products - Execution time: 106ms - Rows affected: 37 - RequestID: abnv7bgjxs +2025-06-18T15:21:19.681Z [TRACE] payment-service - Database INSERT on products - Execution time: 156ms - Rows affected: 3 - RequestID: qa4vtjs7wh +2025-06-18T15:21:19.781Z [TRACE] payment-service - Operation: cache_miss - Processing time: 392ms - RequestID: 8injsjl4sqm +2025-06-18T15:21:19.881Z [TRACE] order-service - Auth event: login_failed - User: user_1034 - IP: 192.168.68.128 - RequestID: 3pbz6tpf28p +2025-06-18T15:21:19.981Z [INFO] payment-service - POST /api/v1/orders - Status: 500 - Response time: 1422ms - IP: 192.168.79.143 - User: user_1030 - RequestID: efrrlhcb5kd +2025-06-18T15:21:20.081Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 390ms - RequestID: 6dn17b0eujr +2025-06-18T15:21:20.181Z [INFO] order-service - Operation: inventory_updated - Processing time: 609ms - RequestID: nlkq27pr7uq +2025-06-18T15:21:20.281Z [TRACE] inventory-service - Operation: email_sent - Processing time: 271ms - RequestID: ljqpvn7dasa +2025-06-18T15:21:20.381Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 896ms - RequestID: 634mgvp9uqe +2025-06-18T15:21:20.481Z [TRACE] inventory-service - POST /api/v1/payments - Status: 403 - Response time: 184ms - IP: 192.168.13.72 - User: user_1045 - RequestID: 37xbwqruraw +2025-06-18T15:21:20.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 949ms - RequestID: trq3s3e5qm8 +2025-06-18T15:21:20.681Z [INFO] user-service - Auth event: token_refresh - User: user_1017 - IP: 192.168.240.169 - RequestID: 5vinnj00n67 +2025-06-18T15:21:20.781Z [DEBUG] order-service - Operation: payment_processed - Processing time: 631ms - RequestID: 7fvtbyg9qlx +2025-06-18T15:21:20.881Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 485ms - RequestID: zfewf9elxx +2025-06-18T15:21:20.981Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 142ms - Rows affected: 88 - RequestID: q69pekwmdpg +2025-06-18T15:21:21.081Z [INFO] order-service - GET /api/v1/inventory - Status: 201 - Response time: 1930ms - IP: 192.168.189.103 - User: user_1068 - RequestID: rkg7kle1d6 +2025-06-18T15:21:21.181Z [TRACE] order-service - Operation: notification_queued - Processing time: 891ms - RequestID: 4okv2j16ak9 +2025-06-18T15:21:21.281Z [INFO] order-service - Operation: cache_miss - Processing time: 88ms - RequestID: 8w2l6o3z9oe +2025-06-18T15:21:21.381Z [INFO] auth-service - Auth event: password_change - User: user_1091 - IP: 192.168.227.233 - RequestID: r2e4ekts45 +2025-06-18T15:21:21.481Z [TRACE] user-service - Operation: inventory_updated - Processing time: 451ms - RequestID: c38bijiolpp +2025-06-18T15:21:21.581Z [INFO] user-service - Operation: order_created - Processing time: 774ms - RequestID: b9tluax7mw +2025-06-18T15:21:21.681Z [INFO] notification-service - Database DELETE on orders - Execution time: 360ms - Rows affected: 59 - RequestID: rdja1vz7rdr +2025-06-18T15:21:21.781Z [INFO] user-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 92ms - IP: 192.168.227.77 - User: user_1005 - RequestID: 8500owbs08d +2025-06-18T15:21:21.881Z [TRACE] order-service - POST /api/v1/users - Status: 404 - Response time: 1558ms - IP: 192.168.187.199 - User: user_1056 - RequestID: lg95e1o7it +2025-06-18T15:21:21.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.144.38 - RequestID: asvi5bfkg7s +2025-06-18T15:21:22.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.227.233 - RequestID: 7w6nkh31iks +2025-06-18T15:21:22.181Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 212ms - Rows affected: 6 - RequestID: 5hsoaryu0gm +2025-06-18T15:21:22.281Z [TRACE] inventory-service - PUT /api/v1/users - Status: 503 - Response time: 1224ms - IP: 192.168.44.5 - User: user_1043 - RequestID: kv4m9ce6t2 +2025-06-18T15:21:22.381Z [TRACE] payment-service - Operation: email_sent - Processing time: 185ms - RequestID: fj63cm3kdg8 +2025-06-18T15:21:22.481Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 357ms - Rows affected: 53 - RequestID: vsr14jn4ob +2025-06-18T15:21:22.581Z [DEBUG] user-service - Operation: cache_hit - Processing time: 869ms - RequestID: pvv11xngefe +2025-06-18T15:21:22.681Z [INFO] inventory-service - POST /api/v1/payments - Status: 400 - Response time: 1740ms - IP: 192.168.31.117 - User: user_1015 - RequestID: 9qmka4fp1t8 +2025-06-18T15:21:22.781Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 500 - Response time: 675ms - IP: 192.168.167.32 - User: user_1038 - RequestID: rzgw7xkxly8 +2025-06-18T15:21:22.881Z [TRACE] order-service - Database DELETE on sessions - Execution time: 38ms - Rows affected: 14 - RequestID: zj32n0k3gs +2025-06-18T15:21:22.981Z [TRACE] payment-service - Operation: order_created - Processing time: 788ms - RequestID: wf96gtv77r +2025-06-18T15:21:23.081Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 27ms - Rows affected: 22 - RequestID: t13mz7rv98 +2025-06-18T15:21:23.181Z [INFO] inventory-service - Auth event: login_success - User: user_1078 - IP: 192.168.113.218 - RequestID: vq66ygo7cbr +2025-06-18T15:21:23.281Z [INFO] order-service - Operation: webhook_sent - Processing time: 466ms - RequestID: ur8iy2ujt2 +2025-06-18T15:21:23.381Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 114ms - RequestID: 9gzxndeby2v +2025-06-18T15:21:23.481Z [DEBUG] auth-service - POST /api/v1/users - Status: 403 - Response time: 665ms - IP: 192.168.170.215 - User: user_1025 - RequestID: 4f7gso50ktf +2025-06-18T15:21:23.581Z [INFO] notification-service - PATCH /api/v1/users - Status: 400 - Response time: 839ms - IP: 192.168.138.123 - User: user_1036 - RequestID: pyyx35000p +2025-06-18T15:21:23.681Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 475ms - Rows affected: 47 - RequestID: znhcet0l58 +2025-06-18T15:21:23.781Z [DEBUG] notification-service - Auth event: logout - User: user_1072 - IP: 192.168.141.100 - RequestID: 1tlu86po4en +2025-06-18T15:21:23.881Z [INFO] notification-service - POST /api/v1/users - Status: 200 - Response time: 536ms - IP: 192.168.36.218 - User: user_1047 - RequestID: 64sw54txm9 +2025-06-18T15:21:23.981Z [TRACE] notification-service - Auth event: token_refresh - User: user_1091 - IP: 192.168.28.146 - RequestID: irgg1abree +2025-06-18T15:21:24.081Z [TRACE] order-service - Auth event: password_change - User: user_1059 - IP: 192.168.100.240 - RequestID: lmyn0l1yj4f +2025-06-18T15:21:24.181Z [TRACE] auth-service - Operation: cache_miss - Processing time: 728ms - RequestID: 3mouzqlkxpd +2025-06-18T15:21:24.281Z [DEBUG] user-service - GET /api/v1/inventory - Status: 502 - Response time: 219ms - IP: 192.168.196.226 - User: user_1005 - RequestID: esarbmmtlxe +2025-06-18T15:21:24.381Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 201 - Response time: 1827ms - IP: 192.168.170.215 - User: user_1018 - RequestID: m5xuag8ke7l +2025-06-18T15:21:24.481Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 393ms - Rows affected: 93 - RequestID: 4awwp2j1mk2 +2025-06-18T15:21:24.581Z [TRACE] user-service - PATCH /api/v1/users - Status: 401 - Response time: 1580ms - IP: 192.168.141.100 - User: user_1032 - RequestID: 8js3822j33i +2025-06-18T15:21:24.681Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 129ms - RequestID: jf8z0bg09a +2025-06-18T15:21:24.781Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 143ms - Rows affected: 60 - RequestID: 9u306xf8sju +2025-06-18T15:21:24.881Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 201 - Response time: 537ms - IP: 192.168.81.206 - User: user_1003 - RequestID: nfo309y47c +2025-06-18T15:21:24.981Z [INFO] user-service - Operation: notification_queued - Processing time: 858ms - RequestID: xxb17u7f5g9 +2025-06-18T15:21:25.081Z [TRACE] auth-service - Operation: payment_processed - Processing time: 634ms - RequestID: h09vxbu6joq +2025-06-18T15:21:25.181Z [INFO] order-service - Auth event: password_change - User: user_1030 - IP: 192.168.141.100 - RequestID: d2kltaper8k +2025-06-18T15:21:25.281Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 248ms - Rows affected: 91 - RequestID: 2fr4ee1f0dy +2025-06-18T15:21:25.381Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 1035ms - RequestID: ikt3eyuzfsp +2025-06-18T15:21:25.481Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1695ms - IP: 192.168.235.117 - User: user_1016 - RequestID: gu5gn0pynvc +2025-06-18T15:21:25.581Z [INFO] auth-service - PUT /api/v1/users - Status: 502 - Response time: 129ms - IP: 192.168.144.38 - User: user_1005 - RequestID: 2gnolkpbfzg +2025-06-18T15:21:25.681Z [TRACE] order-service - Auth event: logout - User: user_1040 - IP: 192.168.158.144 - RequestID: tbhzew0rj8m +2025-06-18T15:21:25.781Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 797ms - RequestID: j9uf8g90hpr +2025-06-18T15:21:25.881Z [TRACE] payment-service - Operation: payment_processed - Processing time: 711ms - RequestID: yrxx38zzrle +2025-06-18T15:21:25.981Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 902ms - IP: 192.168.68.158 - User: user_1041 - RequestID: 1wrfmgacn6j +2025-06-18T15:21:26.081Z [DEBUG] order-service - Operation: order_created - Processing time: 445ms - RequestID: q66j5ke37y +2025-06-18T15:21:26.181Z [TRACE] notification-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.141.100 - RequestID: vzqbhy1u38r +2025-06-18T15:21:26.281Z [INFO] notification-service - Database INSERT on users - Execution time: 330ms - Rows affected: 95 - RequestID: kpfnzi0wc9c +2025-06-18T15:21:26.381Z [INFO] user-service - Auth event: token_refresh - User: user_1042 - IP: 192.168.14.77 - RequestID: nm8rsgtgye +2025-06-18T15:21:26.481Z [DEBUG] notification-service - Auth event: logout - User: user_1055 - IP: 192.168.227.233 - RequestID: n404y7wec29 +2025-06-18T15:21:26.581Z [DEBUG] payment-service - Auth event: login_failed - User: user_1088 - IP: 192.168.31.117 - RequestID: rfl3e18gdnb +2025-06-18T15:21:26.681Z [INFO] order-service - Database DELETE on users - Execution time: 265ms - Rows affected: 9 - RequestID: 84fbke97ctg +2025-06-18T15:21:26.781Z [INFO] auth-service - Database DELETE on orders - Execution time: 20ms - Rows affected: 4 - RequestID: htt61b3onle +2025-06-18T15:21:26.881Z [DEBUG] payment-service - GET /api/v1/orders - Status: 400 - Response time: 933ms - IP: 192.168.141.100 - User: user_1067 - RequestID: 2smwwy4l3rp +2025-06-18T15:21:26.981Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 333ms - IP: 192.168.85.229 - User: user_1021 - RequestID: m2w451t6p8n +2025-06-18T15:21:27.081Z [INFO] order-service - GET /api/v1/orders - Status: 400 - Response time: 1568ms - IP: 192.168.159.94 - User: user_1047 - RequestID: pxiicgghxv +2025-06-18T15:21:27.181Z [INFO] user-service - Database SELECT on users - Execution time: 206ms - Rows affected: 95 - RequestID: a7uxy4u73p4 +2025-06-18T15:21:27.281Z [INFO] user-service - DELETE /api/v1/payments - Status: 403 - Response time: 1496ms - IP: 192.168.133.7 - User: user_1056 - RequestID: cujfr22zzv +2025-06-18T15:21:27.381Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 400 - Response time: 974ms - IP: 192.168.232.72 - User: user_1021 - RequestID: ga555o0yjdj +2025-06-18T15:21:27.481Z [DEBUG] payment-service - Database INSERT on products - Execution time: 457ms - Rows affected: 76 - RequestID: ephavol0glv +2025-06-18T15:21:27.581Z [DEBUG] payment-service - GET /api/v1/orders - Status: 500 - Response time: 1143ms - IP: 192.168.187.199 - User: user_1002 - RequestID: zpz4kk6mhyq +2025-06-18T15:21:27.681Z [INFO] notification-service - Auth event: login_failed - User: user_1054 - IP: 192.168.68.158 - RequestID: 0w7l0lqtpgk +2025-06-18T15:21:27.781Z [DEBUG] notification-service - Operation: order_created - Processing time: 1035ms - RequestID: m39mpyk0im +2025-06-18T15:21:27.881Z [INFO] user-service - Database INSERT on payments - Execution time: 19ms - Rows affected: 52 - RequestID: 3q08x2w81lm +2025-06-18T15:21:27.981Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 201 - Response time: 307ms - IP: 192.168.170.215 - User: user_1050 - RequestID: vmvre3ihgvd +2025-06-18T15:21:28.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1068 - IP: 192.168.44.5 - RequestID: xl5axb088kr +2025-06-18T15:21:28.181Z [TRACE] auth-service - Operation: order_created - Processing time: 589ms - RequestID: hyzx2dkn55j +2025-06-18T15:21:28.281Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 296ms - RequestID: 43kqhx77qga +2025-06-18T15:21:28.381Z [DEBUG] user-service - Database SELECT on products - Execution time: 259ms - Rows affected: 3 - RequestID: eva91r2lol +2025-06-18T15:21:28.481Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 607ms - IP: 192.168.10.184 - User: user_1011 - RequestID: wd0kmfkoqqh +2025-06-18T15:21:28.581Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 155ms - IP: 192.168.187.199 - User: user_1083 - RequestID: 27k362owlwr +2025-06-18T15:21:28.681Z [DEBUG] notification-service - Database INSERT on users - Execution time: 314ms - Rows affected: 92 - RequestID: 2dbcdnuna5w +2025-06-18T15:21:28.781Z [INFO] order-service - Database DELETE on products - Execution time: 232ms - Rows affected: 47 - RequestID: wk2wqy3y9p +2025-06-18T15:21:28.881Z [INFO] notification-service - Auth event: logout - User: user_1010 - IP: 192.168.100.240 - RequestID: d40l9yjv65d +2025-06-18T15:21:28.981Z [TRACE] payment-service - Operation: payment_processed - Processing time: 664ms - RequestID: pvjk3ehxbha +2025-06-18T15:21:29.081Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 102ms - Rows affected: 54 - RequestID: gfwnvs6txt5 +2025-06-18T15:21:29.181Z [INFO] auth-service - Operation: webhook_sent - Processing time: 622ms - RequestID: a1c3uvyxhai +2025-06-18T15:21:29.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 944ms - RequestID: i58u5edsyr +2025-06-18T15:21:29.381Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 401 - Response time: 821ms - IP: 192.168.79.141 - User: user_1068 - RequestID: sxvxkbomv7 +2025-06-18T15:21:29.481Z [INFO] user-service - Operation: notification_queued - Processing time: 333ms - RequestID: aiup1oo65ys +2025-06-18T15:21:29.581Z [INFO] auth-service - POST /api/v1/users - Status: 200 - Response time: 1304ms - IP: 192.168.79.143 - User: user_1058 - RequestID: ea7pjc3pm2 +2025-06-18T15:21:29.681Z [TRACE] auth-service - Database DELETE on users - Execution time: 438ms - Rows affected: 17 - RequestID: 22ferrt7ovt +2025-06-18T15:21:29.781Z [TRACE] payment-service - Database DELETE on payments - Execution time: 289ms - Rows affected: 49 - RequestID: bwo4q9iumrf +2025-06-18T15:21:29.881Z [DEBUG] order-service - Operation: payment_processed - Processing time: 67ms - RequestID: hraelf3loz8 +2025-06-18T15:21:29.981Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 404 - Response time: 652ms - IP: 192.168.85.229 - User: user_1028 - RequestID: 1d4v5ow5mzu +2025-06-18T15:21:30.081Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 200 - Response time: 147ms - IP: 192.168.14.77 - User: user_1080 - RequestID: h7j8onb2cw4 +2025-06-18T15:21:30.181Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 283ms - Rows affected: 80 - RequestID: r7446tiukx +2025-06-18T15:21:30.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1094 - IP: 192.168.167.32 - RequestID: 8tdwisdccas +2025-06-18T15:21:30.381Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1905ms - IP: 192.168.181.225 - User: user_1043 - RequestID: 7n54a4243g7 +2025-06-18T15:21:30.481Z [INFO] order-service - Database INSERT on products - Execution time: 157ms - Rows affected: 38 - RequestID: ltudpwufmo9 +2025-06-18T15:21:30.581Z [INFO] order-service - Auth event: password_change - User: user_1011 - IP: 192.168.28.146 - RequestID: 4m1w87rx4do +2025-06-18T15:21:30.681Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 635ms - RequestID: s5nlw8xs7zp +2025-06-18T15:21:30.781Z [INFO] auth-service - Operation: cache_hit - Processing time: 823ms - RequestID: q477gomrsm +2025-06-18T15:21:30.881Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 500 - Response time: 910ms - IP: 192.168.181.225 - User: user_1030 - RequestID: noy1nwg6oii +2025-06-18T15:21:30.981Z [INFO] inventory-service - Database INSERT on audit_logs - Execution time: 346ms - Rows affected: 1 - RequestID: d3q9xrhcq2 +2025-06-18T15:21:31.081Z [TRACE] user-service - Operation: notification_queued - Processing time: 258ms - RequestID: p9ztsqisa5 +2025-06-18T15:21:31.181Z [INFO] inventory-service - Database SELECT on orders - Execution time: 83ms - Rows affected: 93 - RequestID: ozjuzxcrpx +2025-06-18T15:21:31.281Z [DEBUG] payment-service - PUT /api/v1/orders - Status: 404 - Response time: 1792ms - IP: 192.168.235.117 - User: user_1065 - RequestID: wz2kxerm96 +2025-06-18T15:21:31.381Z [INFO] payment-service - Database DELETE on users - Execution time: 500ms - Rows affected: 91 - RequestID: w2vsmn0jsb8 +2025-06-18T15:21:31.481Z [TRACE] auth-service - Auth event: logout - User: user_1028 - IP: 192.168.68.128 - RequestID: 6j5gi7jnhb8 +2025-06-18T15:21:31.581Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 99ms - IP: 192.168.133.7 - User: user_1005 - RequestID: c6m522a7xcw +2025-06-18T15:21:31.681Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.68.158 - RequestID: lbwmqb5j64q +2025-06-18T15:21:31.781Z [INFO] notification-service - Operation: inventory_updated - Processing time: 397ms - RequestID: 40pjuneelp4 +2025-06-18T15:21:31.881Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1050 - IP: 192.168.53.133 - RequestID: hpy9bae4dxg +2025-06-18T15:21:31.981Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 26ms - Rows affected: 97 - RequestID: yo8q6zrktf +2025-06-18T15:21:32.081Z [DEBUG] order-service - Auth event: login_success - User: user_1036 - IP: 192.168.100.240 - RequestID: tp3o5mb9ke +2025-06-18T15:21:32.181Z [INFO] user-service - Auth event: login_failed - User: user_1060 - IP: 192.168.196.226 - RequestID: 54ajh10f0n +2025-06-18T15:21:32.281Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 142ms - Rows affected: 87 - RequestID: swna3kyndbs +2025-06-18T15:21:32.381Z [TRACE] user-service - Operation: order_created - Processing time: 243ms - RequestID: g9yj0jm5zyp +2025-06-18T15:21:32.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1008 - IP: 192.168.46.63 - RequestID: wasstnreep +2025-06-18T15:21:32.581Z [INFO] notification-service - Auth event: login_success - User: user_1065 - IP: 192.168.81.206 - RequestID: jp6v4p8gyy +2025-06-18T15:21:32.681Z [INFO] user-service - Operation: cache_miss - Processing time: 142ms - RequestID: s1zwp01g3ba +2025-06-18T15:21:32.781Z [INFO] user-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.10.184 - RequestID: 3haa0ycxasl +2025-06-18T15:21:32.881Z [TRACE] order-service - Auth event: login_success - User: user_1013 - IP: 192.168.68.158 - RequestID: pd7we0leja +2025-06-18T15:21:32.981Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 442ms - IP: 192.168.144.38 - User: user_1006 - RequestID: f5wjo5o8xv9 +2025-06-18T15:21:33.081Z [TRACE] auth-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.167.32 - RequestID: wuprt5bway8 +2025-06-18T15:21:33.181Z [TRACE] user-service - Database SELECT on payments - Execution time: 90ms - Rows affected: 38 - RequestID: z2ffedga5rl +2025-06-18T15:21:33.281Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 453ms - Rows affected: 27 - RequestID: tdx3ztfabfe +2025-06-18T15:21:33.381Z [INFO] user-service - Operation: payment_processed - Processing time: 888ms - RequestID: nuvddcfr29 +2025-06-18T15:21:33.481Z [TRACE] payment-service - Operation: payment_processed - Processing time: 292ms - RequestID: j92ba5kzrlj +2025-06-18T15:21:33.581Z [TRACE] user-service - PUT /api/v1/payments - Status: 200 - Response time: 1414ms - IP: 192.168.141.100 - User: user_1003 - RequestID: okdwe5kc8fe +2025-06-18T15:21:33.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.79.116 - RequestID: ihy77dwmbg +2025-06-18T15:21:33.781Z [INFO] inventory-service - Operation: cache_miss - Processing time: 869ms - RequestID: 1pgzywkgpfk +2025-06-18T15:21:33.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1037 - IP: 192.168.170.215 - RequestID: y2bhfsk28lr +2025-06-18T15:21:33.981Z [INFO] payment-service - Database DELETE on users - Execution time: 323ms - Rows affected: 93 - RequestID: 3upr0mlatzx +2025-06-18T15:21:34.081Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 403 - Response time: 1914ms - IP: 192.168.170.215 - User: user_1001 - RequestID: zm48a02uvbn +2025-06-18T15:21:34.181Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1018ms - IP: 192.168.46.63 - User: user_1021 - RequestID: fd0fqhemyrl +2025-06-18T15:21:34.281Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 400ms - RequestID: fvfu081z8gk +2025-06-18T15:21:34.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1054 - IP: 192.168.68.128 - RequestID: 1w6ex8yo3sy +2025-06-18T15:21:34.481Z [INFO] auth-service - Operation: notification_queued - Processing time: 233ms - RequestID: g8ti3wwukwt +2025-06-18T15:21:34.581Z [DEBUG] order-service - Database INSERT on orders - Execution time: 463ms - Rows affected: 77 - RequestID: a400coqsn3c +2025-06-18T15:21:34.681Z [INFO] notification-service - Auth event: login_failed - User: user_1011 - IP: 192.168.79.116 - RequestID: o3z40tbyg1 +2025-06-18T15:21:34.781Z [TRACE] auth-service - Auth event: logout - User: user_1071 - IP: 192.168.100.240 - RequestID: 6mp4hrdhovd +2025-06-18T15:21:34.881Z [DEBUG] notification-service - Auth event: login_failed - User: user_1043 - IP: 192.168.113.218 - RequestID: jlkt5quvzw +2025-06-18T15:21:34.981Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 503 - Response time: 821ms - IP: 192.168.232.72 - User: user_1065 - RequestID: n6rqizw64hm +2025-06-18T15:21:35.081Z [INFO] inventory-service - Operation: order_created - Processing time: 973ms - RequestID: u1dqrbqsexh +2025-06-18T15:21:35.181Z [INFO] payment-service - Operation: inventory_updated - Processing time: 1029ms - RequestID: p9gpjzdixg +2025-06-18T15:21:35.281Z [TRACE] notification-service - Database SELECT on payments - Execution time: 69ms - Rows affected: 24 - RequestID: 7ez3b9j21b7 +2025-06-18T15:21:35.381Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 1197ms - IP: 192.168.13.72 - User: user_1040 - RequestID: dbgu2jm3qj +2025-06-18T15:21:35.481Z [INFO] inventory-service - Operation: email_sent - Processing time: 945ms - RequestID: j69izi4fxwr +2025-06-18T15:21:35.581Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 299ms - Rows affected: 61 - RequestID: wsc3ccbzq9l +2025-06-18T15:21:35.681Z [TRACE] user-service - Operation: order_created - Processing time: 193ms - RequestID: j9vjv5a9kvo +2025-06-18T15:21:35.781Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 401 - Response time: 423ms - IP: 192.168.44.5 - User: user_1019 - RequestID: z592ahyqk +2025-06-18T15:21:35.881Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 401 - Response time: 1737ms - IP: 192.168.28.146 - User: user_1012 - RequestID: 5694rrd9xe6 +2025-06-18T15:21:35.981Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 393ms - RequestID: x2nrtnqyp1d +2025-06-18T15:21:36.081Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 400ms - Rows affected: 35 - RequestID: 8q5tbiyiaog +2025-06-18T15:21:36.181Z [INFO] payment-service - Operation: email_sent - Processing time: 800ms - RequestID: dbhg3nitjx7 +2025-06-18T15:21:36.281Z [INFO] auth-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.247.134 - RequestID: suj8fcuiffc +2025-06-18T15:21:36.381Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 247ms - Rows affected: 72 - RequestID: l0n09anfpac +2025-06-18T15:21:36.481Z [TRACE] payment-service - Auth event: login_success - User: user_1065 - IP: 192.168.31.117 - RequestID: dxsjgelnmwk +2025-06-18T15:21:36.581Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 502 - Response time: 412ms - IP: 192.168.85.229 - User: user_1006 - RequestID: 6tlb9u7qbah +2025-06-18T15:21:36.681Z [INFO] auth-service - Auth event: password_change - User: user_1077 - IP: 192.168.79.116 - RequestID: jf3y95805n +2025-06-18T15:21:36.781Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 403 - Response time: 994ms - IP: 192.168.10.184 - User: user_1026 - RequestID: 666zqu3tizc +2025-06-18T15:21:36.881Z [INFO] payment-service - Database UPDATE on orders - Execution time: 387ms - Rows affected: 7 - RequestID: d3j09rvvgnn +2025-06-18T15:21:36.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 763ms - RequestID: ue25anxyz0l +2025-06-18T15:21:37.081Z [INFO] order-service - Auth event: login_success - User: user_1074 - IP: 192.168.227.233 - RequestID: 4f5lzvj9v6k +2025-06-18T15:21:37.181Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 118ms - Rows affected: 79 - RequestID: 2reybao2vlb +2025-06-18T15:21:37.281Z [DEBUG] auth-service - Auth event: password_change - User: user_1065 - IP: 192.168.68.158 - RequestID: 9i55qcw7qat +2025-06-18T15:21:37.381Z [INFO] order-service - Operation: order_created - Processing time: 359ms - RequestID: 3yueaslg53u +2025-06-18T15:21:37.481Z [INFO] auth-service - Database INSERT on payments - Execution time: 271ms - Rows affected: 2 - RequestID: 5xfe9cisv99 +2025-06-18T15:21:37.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1057 - IP: 192.168.32.38 - RequestID: ci9bmh421ua +2025-06-18T15:21:37.681Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 454ms - Rows affected: 47 - RequestID: nh24gpewt2 +2025-06-18T15:21:37.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 91ms - RequestID: cvhs2d4gwr +2025-06-18T15:21:37.881Z [INFO] notification-service - Auth event: password_change - User: user_1013 - IP: 192.168.141.100 - RequestID: 4o07dsz4cws +2025-06-18T15:21:37.981Z [INFO] auth-service - Auth event: login_success - User: user_1032 - IP: 192.168.10.184 - RequestID: eicjmb0wjmt +2025-06-18T15:21:38.081Z [DEBUG] order-service - DELETE /api/v1/orders - Status: 401 - Response time: 71ms - IP: 192.168.36.218 - User: user_1008 - RequestID: 0pskpl8429b +2025-06-18T15:21:38.181Z [DEBUG] user-service - Operation: payment_processed - Processing time: 870ms - RequestID: s9x50pbwy27 +2025-06-18T15:21:38.281Z [DEBUG] notification-service - Operation: order_created - Processing time: 293ms - RequestID: olyvvb0obz +2025-06-18T15:21:38.381Z [TRACE] user-service - Operation: order_created - Processing time: 282ms - RequestID: 6gml0q5pj2v +2025-06-18T15:21:38.481Z [INFO] auth-service - GET /api/v1/inventory - Status: 404 - Response time: 153ms - IP: 192.168.28.146 - User: user_1008 - RequestID: nrbkjx1cido +2025-06-18T15:21:38.581Z [INFO] user-service - Operation: notification_queued - Processing time: 92ms - RequestID: rz3420bt0ui +2025-06-18T15:21:38.681Z [DEBUG] notification-service - Auth event: login_failed - User: user_1039 - IP: 192.168.32.38 - RequestID: rsi36u1t3is +2025-06-18T15:21:38.781Z [INFO] order-service - Operation: order_created - Processing time: 862ms - RequestID: 1j39tw604sr +2025-06-18T15:21:38.881Z [INFO] user-service - Auth event: login_failed - User: user_1097 - IP: 192.168.194.41 - RequestID: n7crs9rel +2025-06-18T15:21:38.981Z [INFO] auth-service - PUT /api/v1/inventory - Status: 500 - Response time: 1315ms - IP: 192.168.36.218 - User: user_1059 - RequestID: 49y8aqm1dzd +2025-06-18T15:21:39.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 1029ms - RequestID: malv45yu5w9 +2025-06-18T15:21:39.181Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 831ms - RequestID: ugprn7bqxe +2025-06-18T15:21:39.281Z [TRACE] auth-service - Database INSERT on orders - Execution time: 380ms - Rows affected: 0 - RequestID: a96h0b5bze +2025-06-18T15:21:39.381Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 120ms - Rows affected: 89 - RequestID: 1yfm37tu9w8 +2025-06-18T15:21:39.481Z [INFO] inventory-service - PATCH /api/v1/users - Status: 401 - Response time: 404ms - IP: 192.168.13.72 - User: user_1027 - RequestID: uolr8ijp9fg +2025-06-18T15:21:39.581Z [TRACE] notification-service - Auth event: password_change - User: user_1068 - IP: 192.168.247.134 - RequestID: tm464ybxz3 +2025-06-18T15:21:39.681Z [TRACE] order-service - Database DELETE on payments - Execution time: 380ms - Rows affected: 28 - RequestID: dmot9gv0nvo +2025-06-18T15:21:39.781Z [INFO] order-service - Auth event: login_success - User: user_1096 - IP: 192.168.46.63 - RequestID: 1aqshrlwok3 +2025-06-18T15:21:39.881Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 403 - Response time: 951ms - IP: 192.168.10.184 - User: user_1012 - RequestID: vwlzc3c6lf +2025-06-18T15:21:39.981Z [INFO] inventory-service - Auth event: login_success - User: user_1032 - IP: 192.168.32.38 - RequestID: vb1n8nzbgvm +2025-06-18T15:21:40.081Z [INFO] auth-service - Operation: cache_hit - Processing time: 151ms - RequestID: vax0r8pn6wc +2025-06-18T15:21:40.181Z [INFO] notification-service - GET /api/v1/payments - Status: 404 - Response time: 39ms - IP: 192.168.189.103 - User: user_1036 - RequestID: lrrvimkpj98 +2025-06-18T15:21:40.281Z [INFO] notification-service - GET /api/v1/orders - Status: 200 - Response time: 1700ms - IP: 192.168.68.128 - User: user_1044 - RequestID: ufgtb3f09ck +2025-06-18T15:21:40.381Z [INFO] notification-service - Operation: cache_hit - Processing time: 941ms - RequestID: s7tbylw1sr9 +2025-06-18T15:21:40.481Z [INFO] user-service - Database INSERT on orders - Execution time: 313ms - Rows affected: 28 - RequestID: akp4av49ik7 +2025-06-18T15:21:40.581Z [DEBUG] order-service - Database DELETE on payments - Execution time: 180ms - Rows affected: 50 - RequestID: 71j3fh2i5v7 +2025-06-18T15:21:40.681Z [INFO] inventory-service - Database SELECT on users - Execution time: 424ms - Rows affected: 42 - RequestID: o69e32c398f +2025-06-18T15:21:40.781Z [INFO] payment-service - Operation: order_created - Processing time: 110ms - RequestID: o28d66in3x +2025-06-18T15:21:40.881Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 502 - Response time: 493ms - IP: 192.168.196.226 - User: user_1024 - RequestID: wrfs53mbgr +2025-06-18T15:21:40.981Z [TRACE] user-service - Operation: cache_miss - Processing time: 85ms - RequestID: 0faz52pvcnvt +2025-06-18T15:21:41.081Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 147ms - RequestID: zfprgyvyztd +2025-06-18T15:21:41.181Z [INFO] auth-service - Auth event: logout - User: user_1055 - IP: 192.168.113.218 - RequestID: jiuh3f6ij +2025-06-18T15:21:41.281Z [TRACE] order-service - Database DELETE on orders - Execution time: 488ms - Rows affected: 80 - RequestID: xhwix9bbqdf +2025-06-18T15:21:41.381Z [DEBUG] order-service - Database DELETE on products - Execution time: 10ms - Rows affected: 61 - RequestID: 2vlq98a621n +2025-06-18T15:21:41.481Z [INFO] notification-service - Operation: inventory_updated - Processing time: 473ms - RequestID: acye53zj37 +2025-06-18T15:21:41.581Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 201 - Response time: 506ms - IP: 192.168.14.77 - User: user_1093 - RequestID: dy294g2z12 +2025-06-18T15:21:41.681Z [INFO] auth-service - Operation: webhook_sent - Processing time: 519ms - RequestID: lsfaqw98hmo +2025-06-18T15:21:41.781Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 759ms - RequestID: p5tpl67tny +2025-06-18T15:21:41.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 375ms - RequestID: j4bs4tw44ss +2025-06-18T15:21:41.981Z [TRACE] auth-service - Operation: cache_hit - Processing time: 816ms - RequestID: tnpijfcfut +2025-06-18T15:21:42.081Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 77ms - Rows affected: 40 - RequestID: j1cvp8asblc +2025-06-18T15:21:42.181Z [INFO] user-service - Operation: cache_hit - Processing time: 253ms - RequestID: 52q92tlv5rl +2025-06-18T15:21:42.281Z [TRACE] order-service - Auth event: login_failed - User: user_1021 - IP: 192.168.144.38 - RequestID: cxycqn29kn +2025-06-18T15:21:42.381Z [TRACE] order-service - Database INSERT on payments - Execution time: 3ms - Rows affected: 35 - RequestID: 2ax69lvg62k +2025-06-18T15:21:42.481Z [TRACE] payment-service - PATCH /api/v1/users - Status: 200 - Response time: 156ms - IP: 192.168.33.76 - User: user_1057 - RequestID: 8x8zwrab16 +2025-06-18T15:21:42.581Z [TRACE] order-service - Operation: cache_miss - Processing time: 663ms - RequestID: cjcpeausv3j +2025-06-18T15:21:42.681Z [DEBUG] auth-service - Auth event: login_failed - User: user_1095 - IP: 192.168.36.218 - RequestID: sadnxszy29 +2025-06-18T15:21:42.781Z [TRACE] user-service - Operation: order_created - Processing time: 430ms - RequestID: z3muksyokia +2025-06-18T15:21:42.881Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 58ms - Rows affected: 31 - RequestID: syat2i6yz5 +2025-06-18T15:21:42.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1043 - IP: 192.168.97.87 - RequestID: 4787qnghzar +2025-06-18T15:21:43.081Z [DEBUG] user-service - Auth event: login_failed - User: user_1043 - IP: 192.168.159.94 - RequestID: 0brz67z26ahu +2025-06-18T15:21:43.181Z [TRACE] inventory-service - PUT /api/v1/auth/login - Status: 404 - Response time: 295ms - IP: 192.168.144.38 - User: user_1095 - RequestID: 9l91iv0pso +2025-06-18T15:21:43.281Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 400 - Response time: 453ms - IP: 192.168.144.38 - User: user_1043 - RequestID: mls8vkz0di +2025-06-18T15:21:43.381Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 270ms - Rows affected: 37 - RequestID: kwfgsslynsl +2025-06-18T15:21:43.481Z [TRACE] auth-service - PUT /api/v1/payments - Status: 502 - Response time: 849ms - IP: 192.168.170.215 - User: user_1009 - RequestID: r3hv6sutaic +2025-06-18T15:21:43.581Z [TRACE] payment-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.44.5 - RequestID: m52dp1si5ja +2025-06-18T15:21:43.681Z [INFO] order-service - Operation: payment_processed - Processing time: 994ms - RequestID: ds6afm34fe +2025-06-18T15:21:43.781Z [INFO] notification-service - Operation: notification_queued - Processing time: 630ms - RequestID: xj5zjsqcuo +2025-06-18T15:21:43.881Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 379ms - Rows affected: 19 - RequestID: i5n847rwexa +2025-06-18T15:21:43.981Z [INFO] payment-service - DELETE /api/v1/orders - Status: 500 - Response time: 601ms - IP: 192.168.79.141 - User: user_1006 - RequestID: 49ov4jtvsnm +2025-06-18T15:21:44.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 620ms - RequestID: l2zr13fhuwa +2025-06-18T15:21:44.181Z [TRACE] auth-service - Auth event: logout - User: user_1078 - IP: 192.168.170.215 - RequestID: t7hz1xq91kh +2025-06-18T15:21:44.281Z [DEBUG] payment-service - Auth event: password_change - User: user_1049 - IP: 192.168.10.184 - RequestID: 1i8xnun80u9 +2025-06-18T15:21:44.381Z [TRACE] inventory-service - Auth event: logout - User: user_1011 - IP: 192.168.79.141 - RequestID: 00ivnzgonqvr +2025-06-18T15:21:44.481Z [TRACE] user-service - Operation: order_created - Processing time: 600ms - RequestID: 20x0q0enhinj +2025-06-18T15:21:44.581Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 251ms - Rows affected: 46 - RequestID: 0etkiocetm7e +2025-06-18T15:21:44.681Z [DEBUG] auth-service - Operation: email_sent - Processing time: 177ms - RequestID: s9k3bu3zhkl +2025-06-18T15:21:44.781Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 386ms - Rows affected: 18 - RequestID: qkpboqfxxnp +2025-06-18T15:21:44.881Z [TRACE] payment-service - POST /api/v1/users - Status: 404 - Response time: 1038ms - IP: 192.168.100.240 - User: user_1051 - RequestID: h4l8gx0sc15 +2025-06-18T15:21:44.981Z [INFO] payment-service - POST /api/v1/inventory - Status: 401 - Response time: 620ms - IP: 192.168.144.38 - User: user_1083 - RequestID: tyu5vqcx0va +2025-06-18T15:21:45.081Z [INFO] auth-service - Auth event: login_failed - User: user_1090 - IP: 192.168.1.152 - RequestID: 65ieeozu6d8 +2025-06-18T15:21:45.181Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 130ms - RequestID: bnljuq5zw05 +2025-06-18T15:21:45.281Z [TRACE] user-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.170.215 - RequestID: tkxhvsb30km +2025-06-18T15:21:45.381Z [INFO] user-service - Operation: inventory_updated - Processing time: 987ms - RequestID: ll3h2ee87kl +2025-06-18T15:21:45.481Z [TRACE] inventory-service - POST /api/v1/payments - Status: 200 - Response time: 975ms - IP: 192.168.32.38 - User: user_1079 - RequestID: 4njkcrvqr98 +2025-06-18T15:21:45.581Z [INFO] user-service - Database DELETE on users - Execution time: 228ms - Rows affected: 15 - RequestID: 5bvihvdkmb +2025-06-18T15:21:45.681Z [INFO] user-service - Database UPDATE on users - Execution time: 458ms - Rows affected: 44 - RequestID: f7fy3i9ixxe +2025-06-18T15:21:45.781Z [INFO] payment-service - Operation: email_sent - Processing time: 542ms - RequestID: o163mm3znc +2025-06-18T15:21:45.881Z [INFO] payment-service - Auth event: login_success - User: user_1088 - IP: 192.168.211.72 - RequestID: ww8rddd8up +2025-06-18T15:21:45.981Z [DEBUG] user-service - Database INSERT on payments - Execution time: 367ms - Rows affected: 53 - RequestID: bk2ovl026qu +2025-06-18T15:21:46.081Z [DEBUG] payment-service - Database INSERT on users - Execution time: 308ms - Rows affected: 23 - RequestID: 2ux425gbts2 +2025-06-18T15:21:46.181Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 813ms - RequestID: l6r4jmafg7k +2025-06-18T15:21:46.281Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 687ms - RequestID: u2woz485mb +2025-06-18T15:21:46.381Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 8ms - Rows affected: 37 - RequestID: 1unc468je1a +2025-06-18T15:21:46.481Z [TRACE] notification-service - DELETE /api/v1/inventory - Status: 401 - Response time: 669ms - IP: 192.168.104.37 - User: user_1091 - RequestID: z94l316as6i +2025-06-18T15:21:46.581Z [INFO] order-service - Auth event: login_attempt - User: user_1048 - IP: 192.168.79.116 - RequestID: k6yg9h6aggi +2025-06-18T15:21:46.681Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 488ms - Rows affected: 17 - RequestID: bcccigq2zdw +2025-06-18T15:21:46.781Z [INFO] inventory-service - Auth event: password_change - User: user_1063 - IP: 192.168.227.77 - RequestID: ycjhcvka67 +2025-06-18T15:21:46.881Z [INFO] auth-service - Operation: payment_processed - Processing time: 592ms - RequestID: 60czaay3lxv +2025-06-18T15:21:46.981Z [TRACE] payment-service - POST /api/v1/inventory - Status: 502 - Response time: 1152ms - IP: 192.168.242.165 - User: user_1064 - RequestID: x0r9up6lm58 +2025-06-18T15:21:47.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1035 - IP: 192.168.53.133 - RequestID: yuiu2ubv35 +2025-06-18T15:21:47.181Z [TRACE] order-service - Operation: inventory_updated - Processing time: 893ms - RequestID: cva0si4vuul +2025-06-18T15:21:47.281Z [DEBUG] order-service - Operation: notification_queued - Processing time: 749ms - RequestID: fg4m5k6scbd +2025-06-18T15:21:47.381Z [INFO] order-service - PATCH /api/v1/users - Status: 401 - Response time: 739ms - IP: 192.168.240.169 - User: user_1004 - RequestID: vbxff25k6of +2025-06-18T15:21:47.481Z [INFO] user-service - Operation: cache_miss - Processing time: 910ms - RequestID: yi5c9847qji +2025-06-18T15:21:47.581Z [INFO] notification-service - POST /api/v1/orders - Status: 401 - Response time: 1001ms - IP: 192.168.187.199 - User: user_1005 - RequestID: ned3zmoi5hc +2025-06-18T15:21:47.681Z [TRACE] notification-service - Operation: payment_processed - Processing time: 682ms - RequestID: 8zdkqg302v9 +2025-06-18T15:21:47.781Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 200 - Response time: 1953ms - IP: 192.168.211.72 - User: user_1033 - RequestID: cd4n8cnd1se +2025-06-18T15:21:47.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.79.116 - RequestID: q7zabmouctg +2025-06-18T15:21:47.981Z [DEBUG] user-service - Database INSERT on orders - Execution time: 354ms - Rows affected: 29 - RequestID: 075yneqszn8j +2025-06-18T15:21:48.081Z [INFO] notification-service - Operation: notification_queued - Processing time: 772ms - RequestID: i7ju35csgd +2025-06-18T15:21:48.181Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 691ms - RequestID: mpgz8w0nay +2025-06-18T15:21:48.281Z [INFO] notification-service - Database SELECT on products - Execution time: 233ms - Rows affected: 82 - RequestID: jln6ra3iazq +2025-06-18T15:21:48.381Z [INFO] payment-service - Database UPDATE on users - Execution time: 251ms - Rows affected: 74 - RequestID: j20jyc39ff +2025-06-18T15:21:48.481Z [DEBUG] auth-service - Database INSERT on users - Execution time: 464ms - Rows affected: 60 - RequestID: prpelwu2r2m +2025-06-18T15:21:48.581Z [INFO] order-service - Operation: email_sent - Processing time: 703ms - RequestID: u57syokvlr +2025-06-18T15:21:48.681Z [INFO] notification-service - Operation: cache_miss - Processing time: 834ms - RequestID: il9r6wdpw9 +2025-06-18T15:21:48.781Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 152ms - RequestID: w0lkecb23pg +2025-06-18T15:21:48.881Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 82ms - RequestID: 88mm7xjkn6o +2025-06-18T15:21:48.981Z [TRACE] notification-service - Auth event: password_change - User: user_1099 - IP: 192.168.211.72 - RequestID: x0jjwdrtw2 +2025-06-18T15:21:49.081Z [INFO] order-service - Database INSERT on products - Execution time: 77ms - Rows affected: 40 - RequestID: deeebm5qumq +2025-06-18T15:21:49.181Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 85ms - Rows affected: 8 - RequestID: msoa018bzxl +2025-06-18T15:21:49.281Z [DEBUG] payment-service - GET /api/v1/orders - Status: 403 - Response time: 1501ms - IP: 192.168.187.199 - User: user_1039 - RequestID: o050nhtk7cr +2025-06-18T15:21:49.381Z [DEBUG] inventory-service - Auth event: login_success - User: user_1087 - IP: 192.168.211.72 - RequestID: vavzavv9hus +2025-06-18T15:21:49.481Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 648ms - RequestID: 66y8rgtyyc +2025-06-18T15:21:49.581Z [INFO] notification-service - PUT /api/v1/payments - Status: 404 - Response time: 266ms - IP: 192.168.133.7 - User: user_1024 - RequestID: kkdw9p3lbp +2025-06-18T15:21:49.681Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 459ms - Rows affected: 38 - RequestID: vtic1esn6js +2025-06-18T15:21:49.781Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 404 - Response time: 426ms - IP: 192.168.181.225 - User: user_1046 - RequestID: ugvfqys6vh +2025-06-18T15:21:49.881Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 284ms - RequestID: 9fiuw6w3id9 +2025-06-18T15:21:49.981Z [TRACE] user-service - PATCH /api/v1/payments - Status: 500 - Response time: 10ms - IP: 192.168.1.152 - User: user_1052 - RequestID: 07qpay6oojpn +2025-06-18T15:21:50.081Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 77ms - Rows affected: 10 - RequestID: m7w5rw2yqqb +2025-06-18T15:21:50.181Z [INFO] user-service - Auth event: password_change - User: user_1054 - IP: 192.168.85.229 - RequestID: xkahdvbj5ci +2025-06-18T15:21:50.281Z [INFO] payment-service - Database INSERT on orders - Execution time: 153ms - Rows affected: 69 - RequestID: qu79bb22o5 +2025-06-18T15:21:50.381Z [DEBUG] user-service - Operation: payment_processed - Processing time: 449ms - RequestID: egc75lcyfa +2025-06-18T15:21:50.481Z [INFO] order-service - Operation: cache_miss - Processing time: 321ms - RequestID: fd15bi6mfzt +2025-06-18T15:21:50.581Z [INFO] order-service - Auth event: login_success - User: user_1057 - IP: 192.168.79.141 - RequestID: z4k14fwcjo +2025-06-18T15:21:50.681Z [INFO] auth-service - Auth event: password_change - User: user_1058 - IP: 192.168.187.199 - RequestID: 7ifzhr06dvo +2025-06-18T15:21:50.781Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 303ms - RequestID: sc2jhrcfhzh +2025-06-18T15:21:50.881Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1071 - IP: 192.168.194.41 - RequestID: tvrzga4mpzq +2025-06-18T15:21:50.981Z [DEBUG] notification-service - Auth event: logout - User: user_1024 - IP: 192.168.133.7 - RequestID: 1oh74dg0mf7 +2025-06-18T15:21:51.081Z [TRACE] order-service - GET /api/v1/orders - Status: 403 - Response time: 1664ms - IP: 192.168.113.218 - User: user_1099 - RequestID: mdnxek0iuh +2025-06-18T15:21:51.181Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 200 - Response time: 1197ms - IP: 192.168.232.72 - User: user_1038 - RequestID: kcvef9b22lc +2025-06-18T15:21:51.281Z [INFO] payment-service - Auth event: login_failed - User: user_1086 - IP: 192.168.141.100 - RequestID: jv05bl53tkc +2025-06-18T15:21:51.381Z [TRACE] user-service - Database INSERT on payments - Execution time: 384ms - Rows affected: 26 - RequestID: m66vkh6kib8 +2025-06-18T15:21:51.481Z [INFO] order-service - Operation: webhook_sent - Processing time: 292ms - RequestID: r1mb8dylyn +2025-06-18T15:21:51.581Z [DEBUG] user-service - Auth event: login_success - User: user_1072 - IP: 192.168.194.41 - RequestID: 9nltayxvbu +2025-06-18T15:21:51.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.68.128 - RequestID: ms4db7mbyl +2025-06-18T15:21:51.781Z [TRACE] order-service - Operation: email_sent - Processing time: 713ms - RequestID: 0kqv7xua7a5c +2025-06-18T15:21:51.881Z [TRACE] payment-service - Auth event: logout - User: user_1021 - IP: 192.168.247.134 - RequestID: z08ke5d1wm +2025-06-18T15:21:51.981Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 501ms - RequestID: ydx4lsk0dw +2025-06-18T15:21:52.081Z [TRACE] payment-service - Database INSERT on users - Execution time: 309ms - Rows affected: 63 - RequestID: wscmmaunay +2025-06-18T15:21:52.181Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 53ms - Rows affected: 85 - RequestID: 3oj7cxf5jt9 +2025-06-18T15:21:52.281Z [TRACE] user-service - Database SELECT on products - Execution time: 130ms - Rows affected: 95 - RequestID: vsodmcmjeve +2025-06-18T15:21:52.381Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 500 - Response time: 1149ms - IP: 192.168.232.72 - User: user_1030 - RequestID: 43zde09u67n +2025-06-18T15:21:52.481Z [INFO] payment-service - Database INSERT on payments - Execution time: 185ms - Rows affected: 51 - RequestID: lqeig06fbo +2025-06-18T15:21:52.581Z [INFO] order-service - Database UPDATE on sessions - Execution time: 198ms - Rows affected: 39 - RequestID: voclqmp6b1 +2025-06-18T15:21:52.681Z [INFO] notification-service - Auth event: login_success - User: user_1086 - IP: 192.168.68.128 - RequestID: ggfovy7wydp +2025-06-18T15:21:52.781Z [TRACE] user-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.138.123 - RequestID: ydu0sjyki +2025-06-18T15:21:52.881Z [TRACE] auth-service - DELETE /api/v1/orders - Status: 200 - Response time: 1886ms - IP: 192.168.141.100 - User: user_1003 - RequestID: 8i3fl5nkb4b +2025-06-18T15:21:52.981Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 75ms - Rows affected: 97 - RequestID: sgk1zak1m98 +2025-06-18T15:21:53.081Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 766ms - IP: 192.168.170.215 - User: user_1049 - RequestID: xp4wpj4b2o +2025-06-18T15:21:53.181Z [TRACE] notification-service - Operation: cache_miss - Processing time: 361ms - RequestID: 5p3hi67d4or +2025-06-18T15:21:53.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1029 - IP: 192.168.170.215 - RequestID: g033dpgg6qo +2025-06-18T15:21:53.381Z [INFO] auth-service - Auth event: login_failed - User: user_1090 - IP: 192.168.68.158 - RequestID: 976xx60srdd +2025-06-18T15:21:53.481Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 586ms - RequestID: csu9wba8z4b +2025-06-18T15:21:53.581Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1477ms - IP: 192.168.10.184 - User: user_1077 - RequestID: 1nii5wvvgki +2025-06-18T15:21:53.681Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 201 - Response time: 506ms - IP: 192.168.11.60 - User: user_1015 - RequestID: lad2axgidfr +2025-06-18T15:21:53.781Z [DEBUG] payment-service - Auth event: password_change - User: user_1031 - IP: 192.168.36.218 - RequestID: x7i4wt0fhy +2025-06-18T15:21:53.881Z [TRACE] payment-service - Database UPDATE on products - Execution time: 98ms - Rows affected: 76 - RequestID: s2lf1clrye +2025-06-18T15:21:53.981Z [INFO] user-service - Database SELECT on users - Execution time: 278ms - Rows affected: 31 - RequestID: snois5i065d +2025-06-18T15:21:54.081Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 499ms - Rows affected: 63 - RequestID: 7uhuu697vn9 +2025-06-18T15:21:54.181Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 598ms - RequestID: 0i3lehitsj0a +2025-06-18T15:21:54.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.196.226 - RequestID: k7ucu4i98jq +2025-06-18T15:21:54.381Z [INFO] auth-service - Auth event: logout - User: user_1051 - IP: 192.168.167.32 - RequestID: 0e6wctclo4h +2025-06-18T15:21:54.481Z [DEBUG] auth-service - Auth event: logout - User: user_1064 - IP: 192.168.227.77 - RequestID: iz8moz41t +2025-06-18T15:21:54.581Z [INFO] notification-service - Auth event: login_success - User: user_1030 - IP: 192.168.159.94 - RequestID: b0y96khgz3s +2025-06-18T15:21:54.681Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1641ms - IP: 192.168.196.226 - User: user_1029 - RequestID: 0vlinnadz9n9 +2025-06-18T15:21:54.781Z [TRACE] inventory-service - Auth event: password_change - User: user_1096 - IP: 192.168.30.79 - RequestID: 1lo6i6ot7x4 +2025-06-18T15:21:54.881Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 385ms - Rows affected: 24 - RequestID: ebry2quemd7 +2025-06-18T15:21:54.981Z [INFO] auth-service - Auth event: login_success - User: user_1029 - IP: 192.168.11.60 - RequestID: 94f3cupfdei +2025-06-18T15:21:55.081Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 404 - Response time: 379ms - IP: 192.168.53.133 - User: user_1066 - RequestID: m11a0w3d8ud +2025-06-18T15:21:55.181Z [INFO] notification-service - Operation: webhook_sent - Processing time: 471ms - RequestID: 5mnml1dbk8p +2025-06-18T15:21:55.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1045 - IP: 192.168.32.38 - RequestID: 8gmo9bgkwo4 +2025-06-18T15:21:55.381Z [DEBUG] auth-service - Auth event: login_failed - User: user_1036 - IP: 192.168.147.171 - RequestID: zemea9vxoe +2025-06-18T15:21:55.481Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 652ms - RequestID: 9207rptp1si +2025-06-18T15:21:55.581Z [TRACE] user-service - Auth event: password_change - User: user_1063 - IP: 192.168.79.143 - RequestID: osg0iqkyfom +2025-06-18T15:21:55.681Z [DEBUG] order-service - Operation: notification_queued - Processing time: 664ms - RequestID: 6p491w9096w +2025-06-18T15:21:55.781Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 443ms - Rows affected: 87 - RequestID: zg9p5fpv22d +2025-06-18T15:21:55.881Z [INFO] payment-service - PATCH /api/v1/orders - Status: 500 - Response time: 1119ms - IP: 192.168.235.117 - User: user_1039 - RequestID: wsj3bugr1id +2025-06-18T15:21:55.981Z [INFO] payment-service - Auth event: logout - User: user_1095 - IP: 192.168.194.41 - RequestID: ahrmsltwjf7 +2025-06-18T15:21:56.081Z [TRACE] user-service - Operation: email_sent - Processing time: 86ms - RequestID: oddjj298ncf +2025-06-18T15:21:56.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1086 - IP: 192.168.227.233 - RequestID: jq9ug9xeeqn +2025-06-18T15:21:56.281Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 576ms - IP: 192.168.68.158 - User: user_1010 - RequestID: r976q70ldyq +2025-06-18T15:21:56.381Z [INFO] payment-service - POST /api/v1/payments - Status: 503 - Response time: 1892ms - IP: 192.168.30.79 - User: user_1051 - RequestID: zaqzzttg97e +2025-06-18T15:21:56.481Z [INFO] auth-service - Auth event: login_failed - User: user_1016 - IP: 192.168.167.32 - RequestID: ya4cxzggqxm +2025-06-18T15:21:56.581Z [INFO] inventory-service - Database SELECT on products - Execution time: 125ms - Rows affected: 98 - RequestID: xxo4cyfpvp +2025-06-18T15:21:56.681Z [INFO] auth-service - Database INSERT on orders - Execution time: 194ms - Rows affected: 42 - RequestID: xs3yzefyvx +2025-06-18T15:21:56.781Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 593ms - RequestID: z63n0sjpjf +2025-06-18T15:21:56.881Z [INFO] user-service - DELETE /api/v1/inventory - Status: 500 - Response time: 20ms - IP: 192.168.113.218 - User: user_1045 - RequestID: kxd104415th +2025-06-18T15:21:56.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.158.144 - RequestID: 5mg57z85zsf +2025-06-18T15:21:57.081Z [INFO] inventory-service - Operation: payment_processed - Processing time: 530ms - RequestID: xiucr7igu3 +2025-06-18T15:21:57.181Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 482ms - Rows affected: 83 - RequestID: ddcexakyw7b +2025-06-18T15:21:57.281Z [TRACE] auth-service - Database INSERT on products - Execution time: 307ms - Rows affected: 91 - RequestID: p6m5g8ot56e +2025-06-18T15:21:57.381Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 888ms - IP: 192.168.133.7 - User: user_1076 - RequestID: kg66l0irl4q +2025-06-18T15:21:57.481Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 502 - Response time: 666ms - IP: 192.168.174.114 - User: user_1055 - RequestID: tev6yekvep +2025-06-18T15:21:57.581Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 165ms - Rows affected: 49 - RequestID: 26h1po12odd +2025-06-18T15:21:57.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.232.72 - RequestID: 8n8puhr7jhr +2025-06-18T15:21:57.781Z [INFO] inventory-service - Auth event: login_failed - User: user_1097 - IP: 192.168.211.72 - RequestID: d5ica25gqkq +2025-06-18T15:21:57.881Z [TRACE] auth-service - Auth event: logout - User: user_1038 - IP: 192.168.10.184 - RequestID: bu078st5ggr +2025-06-18T15:21:57.981Z [DEBUG] notification-service - Auth event: logout - User: user_1074 - IP: 192.168.68.158 - RequestID: e859u1bx9nb +2025-06-18T15:21:58.081Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 500 - Response time: 1346ms - IP: 192.168.235.117 - User: user_1064 - RequestID: 6b8p2hv92f9 +2025-06-18T15:21:58.181Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 57ms - Rows affected: 40 - RequestID: 5txgqix3a3g +2025-06-18T15:21:58.281Z [DEBUG] inventory-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 134ms - IP: 192.168.53.133 - User: user_1097 - RequestID: o4sxklaaijj +2025-06-18T15:21:58.381Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 400ms - Rows affected: 30 - RequestID: oi8s8y84q +2025-06-18T15:21:58.481Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 403 - Response time: 224ms - IP: 192.168.196.226 - User: user_1025 - RequestID: 9wek9p24u07 +2025-06-18T15:21:58.581Z [INFO] auth-service - Operation: inventory_updated - Processing time: 894ms - RequestID: i5rg5jc3hnm +2025-06-18T15:21:58.681Z [INFO] order-service - Operation: order_created - Processing time: 1015ms - RequestID: f69k38xgt6v +2025-06-18T15:21:58.781Z [INFO] notification-service - Database DELETE on orders - Execution time: 299ms - Rows affected: 44 - RequestID: qbxg7rzud0c +2025-06-18T15:21:58.881Z [DEBUG] user-service - Operation: cache_hit - Processing time: 975ms - RequestID: 1ixydiwziay +2025-06-18T15:21:58.981Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 434ms - Rows affected: 28 - RequestID: wl08lvifmef +2025-06-18T15:21:59.081Z [DEBUG] user-service - GET /api/v1/users - Status: 201 - Response time: 883ms - IP: 192.168.189.103 - User: user_1090 - RequestID: pgswd5vfeib +2025-06-18T15:21:59.181Z [DEBUG] user-service - POST /api/v1/inventory - Status: 500 - Response time: 1382ms - IP: 192.168.194.41 - User: user_1009 - RequestID: jjsfeloop1h +2025-06-18T15:21:59.281Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 670ms - RequestID: xn2r9psereb +2025-06-18T15:21:59.381Z [INFO] inventory-service - Auth event: login_success - User: user_1076 - IP: 192.168.13.72 - RequestID: 5yezkz7kn5k +2025-06-18T15:21:59.481Z [DEBUG] auth-service - Auth event: logout - User: user_1053 - IP: 192.168.242.165 - RequestID: tq3up4bdlaq +2025-06-18T15:21:59.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 72ms - RequestID: wjs1yk1rx3f +2025-06-18T15:21:59.681Z [DEBUG] user-service - Database UPDATE on products - Execution time: 92ms - Rows affected: 35 - RequestID: opiyuvowjc8 +2025-06-18T15:21:59.781Z [INFO] user-service - Operation: notification_queued - Processing time: 568ms - RequestID: dk4ye0km265 +2025-06-18T15:21:59.881Z [INFO] user-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1186ms - IP: 192.168.28.146 - User: user_1028 - RequestID: 2t1rrin6d1m +2025-06-18T15:21:59.981Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 400 - Response time: 1375ms - IP: 192.168.79.143 - User: user_1062 - RequestID: 2bzquev9v86 +2025-06-18T15:22:00.081Z [TRACE] order-service - Auth event: login_failed - User: user_1071 - IP: 192.168.11.60 - RequestID: jev5xlh7rnn +2025-06-18T15:22:00.181Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 229ms - Rows affected: 53 - RequestID: 5xo84u4rjaq +2025-06-18T15:22:00.281Z [TRACE] notification-service - Auth event: logout - User: user_1085 - IP: 192.168.68.128 - RequestID: mnj0mp4a4le +2025-06-18T15:22:00.381Z [DEBUG] order-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.187.199 - RequestID: 0svh6emtc499 +2025-06-18T15:22:00.481Z [TRACE] notification-service - Database DELETE on products - Execution time: 302ms - Rows affected: 77 - RequestID: 2txfnxysq3f +2025-06-18T15:22:00.581Z [TRACE] order-service - Auth event: logout - User: user_1046 - IP: 192.168.187.199 - RequestID: 61whkwvsjmj +2025-06-18T15:22:00.681Z [TRACE] inventory-service - Auth event: login_failed - User: user_1070 - IP: 192.168.194.41 - RequestID: 6f1djm5wzvp +2025-06-18T15:22:00.781Z [TRACE] payment-service - Operation: email_sent - Processing time: 145ms - RequestID: oia5wju6vh +2025-06-18T15:22:00.881Z [INFO] user-service - Operation: notification_queued - Processing time: 837ms - RequestID: t7n3ypwrzm +2025-06-18T15:22:00.981Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 903ms - IP: 192.168.28.146 - User: user_1023 - RequestID: qj03shztx1n +2025-06-18T15:22:01.081Z [TRACE] payment-service - Auth event: password_change - User: user_1007 - IP: 192.168.68.128 - RequestID: zrafxjdgepj +2025-06-18T15:22:01.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1039 - IP: 192.168.227.233 - RequestID: tvryz9jgrtc +2025-06-18T15:22:01.281Z [INFO] inventory-service - Operation: payment_processed - Processing time: 912ms - RequestID: o48ecrhf3td +2025-06-18T15:22:01.381Z [TRACE] order-service - Operation: email_sent - Processing time: 868ms - RequestID: 34s0pf1qk2z +2025-06-18T15:22:01.481Z [INFO] payment-service - Operation: notification_queued - Processing time: 831ms - RequestID: rcay6fqau2f +2025-06-18T15:22:01.581Z [INFO] inventory-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.79.141 - RequestID: 8tlz4fl3m5v +2025-06-18T15:22:01.681Z [DEBUG] order-service - Operation: notification_queued - Processing time: 924ms - RequestID: 0cfhxj3j2mej +2025-06-18T15:22:01.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.30.79 - RequestID: 101cnw0h9e9g +2025-06-18T15:22:01.881Z [INFO] notification-service - Operation: email_sent - Processing time: 840ms - RequestID: 5z1nhzo1rzc +2025-06-18T15:22:01.981Z [TRACE] auth-service - Operation: cache_miss - Processing time: 1049ms - RequestID: 9ezbt1dxfru +2025-06-18T15:22:02.081Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 439ms - Rows affected: 57 - RequestID: jl30bvuw52 +2025-06-18T15:22:02.181Z [DEBUG] payment-service - Auth event: logout - User: user_1020 - IP: 192.168.194.41 - RequestID: p5mpuo7s9u +2025-06-18T15:22:02.281Z [INFO] auth-service - Auth event: login_success - User: user_1088 - IP: 192.168.229.123 - RequestID: nuba4kvicf +2025-06-18T15:22:02.381Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 316ms - Rows affected: 84 - RequestID: bk3m4zddfaj +2025-06-18T15:22:02.481Z [INFO] inventory-service - Auth event: logout - User: user_1011 - IP: 192.168.113.218 - RequestID: 4n5yax4tkfg +2025-06-18T15:22:02.581Z [INFO] user-service - Auth event: logout - User: user_1083 - IP: 192.168.44.5 - RequestID: omoelyxjnfq +2025-06-18T15:22:02.681Z [TRACE] user-service - Database DELETE on orders - Execution time: 243ms - Rows affected: 80 - RequestID: v7jqkpdkffh +2025-06-18T15:22:02.781Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 477ms - Rows affected: 84 - RequestID: 8lbtal5gtmm +2025-06-18T15:22:02.881Z [TRACE] auth-service - Operation: payment_processed - Processing time: 264ms - RequestID: n1p5acuxpf +2025-06-18T15:22:02.981Z [INFO] notification-service - Operation: email_sent - Processing time: 267ms - RequestID: mxv2o24nxbg +2025-06-18T15:22:03.081Z [INFO] user-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.170.215 - RequestID: ikp01m6xqw +2025-06-18T15:22:03.181Z [DEBUG] order-service - Operation: notification_queued - Processing time: 813ms - RequestID: 9e9cil0zoo +2025-06-18T15:22:03.281Z [INFO] payment-service - Database SELECT on products - Execution time: 418ms - Rows affected: 55 - RequestID: b8855mzxc9t +2025-06-18T15:22:03.381Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 249ms - Rows affected: 50 - RequestID: labiqxvtlc +2025-06-18T15:22:03.481Z [INFO] order-service - Operation: cache_hit - Processing time: 562ms - RequestID: 1b9jsv1fvfyh +2025-06-18T15:22:03.581Z [INFO] user-service - Operation: notification_queued - Processing time: 411ms - RequestID: gkiql8r605 +2025-06-18T15:22:03.681Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 632ms - RequestID: 8f3mb5bj7qs +2025-06-18T15:22:03.781Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 436ms - Rows affected: 3 - RequestID: s96o0era4j +2025-06-18T15:22:03.881Z [TRACE] user-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.100.240 - RequestID: 1vnz0pm8i4g +2025-06-18T15:22:03.981Z [TRACE] auth-service - Database INSERT on sessions - Execution time: 33ms - Rows affected: 15 - RequestID: e7khdcqqvec +2025-06-18T15:22:04.081Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 834ms - RequestID: xc9nbocq75 +2025-06-18T15:22:04.181Z [TRACE] auth-service - Operation: email_sent - Processing time: 940ms - RequestID: iqqtl97ptbo +2025-06-18T15:22:04.281Z [TRACE] payment-service - Auth event: login_success - User: user_1069 - IP: 192.168.46.63 - RequestID: 9nhvj4l550b +2025-06-18T15:22:04.381Z [INFO] order-service - GET /api/v1/payments - Status: 503 - Response time: 1727ms - IP: 192.168.247.134 - User: user_1003 - RequestID: w81dwr6179e +2025-06-18T15:22:04.481Z [DEBUG] payment-service - Database DELETE on users - Execution time: 482ms - Rows affected: 36 - RequestID: yd78ul0yger +2025-06-18T15:22:04.581Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 326ms - RequestID: s7hqu3o9uc +2025-06-18T15:22:04.681Z [DEBUG] order-service - Operation: order_created - Processing time: 527ms - RequestID: 985bsjie3cm +2025-06-18T15:22:04.781Z [INFO] notification-service - GET /api/v1/users - Status: 401 - Response time: 350ms - IP: 192.168.79.143 - User: user_1013 - RequestID: pkxhs8dzct +2025-06-18T15:22:04.881Z [TRACE] auth-service - Operation: cache_miss - Processing time: 454ms - RequestID: evn0pqjphq8 +2025-06-18T15:22:04.981Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 723ms - RequestID: xu800ek9ydj +2025-06-18T15:22:05.081Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 303ms - Rows affected: 58 - RequestID: 0ssp7lkavwr +2025-06-18T15:22:05.181Z [INFO] inventory-service - Operation: order_created - Processing time: 581ms - RequestID: 4gy1uelc41q +2025-06-18T15:22:05.281Z [DEBUG] user-service - POST /api/v1/users - Status: 400 - Response time: 1600ms - IP: 192.168.1.152 - User: user_1017 - RequestID: fo3mv0ioopg +2025-06-18T15:22:05.381Z [INFO] notification-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.240.169 - RequestID: 0q2t287rv3m +2025-06-18T15:22:05.481Z [INFO] order-service - Auth event: password_change - User: user_1058 - IP: 192.168.187.199 - RequestID: 0b6cangkku3 +2025-06-18T15:22:05.581Z [TRACE] order-service - POST /api/v1/payments - Status: 401 - Response time: 1167ms - IP: 192.168.100.240 - User: user_1082 - RequestID: jiag34dl5i +2025-06-18T15:22:05.681Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 498ms - Rows affected: 92 - RequestID: w9jtgbhku5 +2025-06-18T15:22:05.781Z [INFO] auth-service - Operation: email_sent - Processing time: 87ms - RequestID: w3fonyoncp +2025-06-18T15:22:05.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.147.171 - RequestID: l6wet0noai +2025-06-18T15:22:05.981Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 244ms - Rows affected: 30 - RequestID: b2qpjctuzcu +2025-06-18T15:22:06.081Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 201 - Response time: 656ms - IP: 192.168.64.33 - User: user_1051 - RequestID: lo2d3u455x +2025-06-18T15:22:06.181Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 32ms - Rows affected: 73 - RequestID: rfsblczc95 +2025-06-18T15:22:06.281Z [INFO] user-service - Auth event: logout - User: user_1021 - IP: 192.168.97.87 - RequestID: 0ymnwwzanp8h +2025-06-18T15:22:06.381Z [TRACE] notification-service - Operation: cache_hit - Processing time: 870ms - RequestID: 2gtih2daob3 +2025-06-18T15:22:06.481Z [INFO] notification-service - DELETE /api/v1/orders - Status: 404 - Response time: 89ms - IP: 192.168.211.72 - User: user_1007 - RequestID: tka0kplx6be +2025-06-18T15:22:06.581Z [TRACE] payment-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.174.114 - RequestID: ei0t0hj0f2m +2025-06-18T15:22:06.681Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 73ms - RequestID: 7xwy7ahijvi +2025-06-18T15:22:06.781Z [TRACE] inventory-service - Database SELECT on orders - Execution time: 154ms - Rows affected: 85 - RequestID: woyaaxgdhmg +2025-06-18T15:22:06.881Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 403 - Response time: 1022ms - IP: 192.168.227.77 - User: user_1041 - RequestID: i6ew6l22oe +2025-06-18T15:22:06.981Z [TRACE] inventory-service - Operation: email_sent - Processing time: 413ms - RequestID: ljg4w4idkej +2025-06-18T15:22:07.081Z [TRACE] order-service - Operation: webhook_sent - Processing time: 481ms - RequestID: c0cwm2yntpw +2025-06-18T15:22:07.181Z [TRACE] order-service - Auth event: login_success - User: user_1023 - IP: 192.168.31.117 - RequestID: fykwj1v8nr9 +2025-06-18T15:22:07.281Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.242.165 - RequestID: 1vribwapjce +2025-06-18T15:22:07.381Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1066 - IP: 192.168.53.133 - RequestID: 2iujoun1xsv +2025-06-18T15:22:07.481Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 425ms - Rows affected: 4 - RequestID: oygiv6tjbf +2025-06-18T15:22:07.581Z [TRACE] payment-service - Operation: cache_miss - Processing time: 909ms - RequestID: ibxsaetgl8q +2025-06-18T15:22:07.681Z [TRACE] order-service - Database UPDATE on sessions - Execution time: 425ms - Rows affected: 41 - RequestID: 46fcd9tprrj +2025-06-18T15:22:07.781Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1026 - IP: 192.168.53.133 - RequestID: s7xa3br2jas +2025-06-18T15:22:07.881Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 862ms - IP: 192.168.232.72 - User: user_1057 - RequestID: c8f8tdc6vy +2025-06-18T15:22:07.981Z [TRACE] inventory-service - Auth event: logout - User: user_1066 - IP: 192.168.10.184 - RequestID: de63uwejtxj +2025-06-18T15:22:08.081Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 201 - Response time: 240ms - IP: 192.168.196.226 - User: user_1096 - RequestID: q2spyhzzqzr +2025-06-18T15:22:08.181Z [INFO] payment-service - Database SELECT on orders - Execution time: 221ms - Rows affected: 56 - RequestID: 3zadh3dvr51 +2025-06-18T15:22:08.281Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 392ms - Rows affected: 75 - RequestID: xna69kelbzb +2025-06-18T15:22:08.381Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 282ms - Rows affected: 3 - RequestID: zgypv2bv6f +2025-06-18T15:22:08.481Z [TRACE] notification-service - Auth event: token_refresh - User: user_1092 - IP: 192.168.97.87 - RequestID: x68q6uwg4i +2025-06-18T15:22:08.581Z [INFO] auth-service - PUT /api/v1/users - Status: 201 - Response time: 1188ms - IP: 192.168.53.133 - User: user_1008 - RequestID: qf7v5ln0o3q +2025-06-18T15:22:08.681Z [TRACE] user-service - PATCH /api/v1/users - Status: 200 - Response time: 755ms - IP: 192.168.133.7 - User: user_1052 - RequestID: jd8920p51b +2025-06-18T15:22:08.781Z [TRACE] order-service - POST /api/v1/auth/login - Status: 400 - Response time: 176ms - IP: 192.168.31.117 - User: user_1037 - RequestID: wzk9uzqmf8 +2025-06-18T15:22:08.881Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 201 - Response time: 541ms - IP: 192.168.138.123 - User: user_1054 - RequestID: rcqv2zao2li +2025-06-18T15:22:08.981Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 500 - Response time: 1701ms - IP: 192.168.159.94 - User: user_1002 - RequestID: nqetwosfak +2025-06-18T15:22:09.081Z [DEBUG] user-service - Auth event: password_change - User: user_1089 - IP: 192.168.159.94 - RequestID: 8gj0y0j196s +2025-06-18T15:22:09.181Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.167.32 - RequestID: c8f591n27v +2025-06-18T15:22:09.281Z [TRACE] order-service - Operation: cache_hit - Processing time: 496ms - RequestID: 19mp52t42z7 +2025-06-18T15:22:09.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1012 - IP: 192.168.141.100 - RequestID: 04cptapwbem +2025-06-18T15:22:09.481Z [DEBUG] auth-service - Operation: order_created - Processing time: 157ms - RequestID: 2uuu8aa23rt +2025-06-18T15:22:09.581Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 236ms - RequestID: 1o3alm1adyn +2025-06-18T15:22:09.681Z [TRACE] order-service - Operation: cache_hit - Processing time: 194ms - RequestID: blyy02944gt +2025-06-18T15:22:09.781Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 204ms - RequestID: 6tpobgx38cp +2025-06-18T15:22:09.881Z [TRACE] auth-service - PATCH /api/v1/users - Status: 201 - Response time: 32ms - IP: 192.168.79.143 - User: user_1066 - RequestID: om89pb78vt8 +2025-06-18T15:22:09.981Z [DEBUG] notification-service - POST /api/v1/users - Status: 503 - Response time: 392ms - IP: 192.168.97.87 - User: user_1063 - RequestID: ouv7uowszm +2025-06-18T15:22:10.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 93ms - RequestID: 6loi8sagg3a +2025-06-18T15:22:10.181Z [TRACE] auth-service - Operation: cache_miss - Processing time: 150ms - RequestID: xpotyki5erf +2025-06-18T15:22:10.281Z [DEBUG] order-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.30.79 - RequestID: 2k2978dnvgf +2025-06-18T15:22:10.381Z [TRACE] notification-service - Operation: email_sent - Processing time: 83ms - RequestID: vwwkqpsgnjn +2025-06-18T15:22:10.481Z [INFO] inventory-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.81.206 - RequestID: uw37txq46n +2025-06-18T15:22:10.581Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 258ms - Rows affected: 25 - RequestID: kx4fwgjotz +2025-06-18T15:22:10.681Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 403 - Response time: 1533ms - IP: 192.168.147.171 - User: user_1007 - RequestID: yywl1cby4wc +2025-06-18T15:22:10.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1061 - IP: 192.168.81.206 - RequestID: 6d9kp1imvmo +2025-06-18T15:22:10.881Z [TRACE] payment-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.104.37 - RequestID: qf9y4rvq0rb +2025-06-18T15:22:10.981Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 192ms - Rows affected: 7 - RequestID: wq6chbnx5n +2025-06-18T15:22:11.081Z [INFO] order-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.1.152 - RequestID: rjhnpchrhpa +2025-06-18T15:22:11.181Z [DEBUG] auth-service - POST /api/v1/auth/login - Status: 401 - Response time: 218ms - IP: 192.168.97.87 - User: user_1006 - RequestID: fvrtsq8e67j +2025-06-18T15:22:11.281Z [TRACE] notification-service - Database SELECT on products - Execution time: 135ms - Rows affected: 15 - RequestID: quqxikqdaws +2025-06-18T15:22:11.381Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 357ms - Rows affected: 51 - RequestID: mc6fy436fro +2025-06-18T15:22:11.481Z [INFO] payment-service - Operation: payment_processed - Processing time: 853ms - RequestID: ufca9qg054t +2025-06-18T15:22:11.581Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 157ms - Rows affected: 22 - RequestID: s0nzhg1qgd +2025-06-18T15:22:11.681Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 279ms - Rows affected: 15 - RequestID: hjtiy9u2tj +2025-06-18T15:22:11.781Z [INFO] notification-service - Operation: inventory_updated - Processing time: 376ms - RequestID: 5x6vmcuskvw +2025-06-18T15:22:11.881Z [TRACE] order-service - Database SELECT on users - Execution time: 385ms - Rows affected: 47 - RequestID: 63e9z4c4yr +2025-06-18T15:22:11.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1099 - IP: 192.168.104.37 - RequestID: bbdn1n9ep07 +2025-06-18T15:22:12.081Z [INFO] notification-service - DELETE /api/v1/orders - Status: 503 - Response time: 1133ms - IP: 192.168.159.94 - User: user_1029 - RequestID: 4x1kr6z55p +2025-06-18T15:22:12.181Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1216ms - IP: 192.168.13.72 - User: user_1012 - RequestID: as4gl7zdotb +2025-06-18T15:22:12.281Z [INFO] order-service - POST /api/v1/users - Status: 400 - Response time: 1220ms - IP: 192.168.232.72 - User: user_1056 - RequestID: 7gaewrlo5rq +2025-06-18T15:22:12.381Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 210ms - RequestID: 2quxl6axvhp +2025-06-18T15:22:12.481Z [INFO] notification-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.68.128 - RequestID: 0b8tlop80lw +2025-06-18T15:22:12.581Z [INFO] auth-service - Auth event: logout - User: user_1073 - IP: 192.168.144.38 - RequestID: 562itthnfut +2025-06-18T15:22:12.681Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 862ms - IP: 192.168.170.215 - User: user_1011 - RequestID: h81ji5t6mf +2025-06-18T15:22:12.781Z [DEBUG] order-service - DELETE /api/v1/users - Status: 401 - Response time: 1397ms - IP: 192.168.85.229 - User: user_1013 - RequestID: mzh8m9mugxa +2025-06-18T15:22:12.881Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 335ms - Rows affected: 72 - RequestID: u38q27el5ln +2025-06-18T15:22:12.981Z [DEBUG] payment-service - Auth event: logout - User: user_1094 - IP: 192.168.100.240 - RequestID: 5la6zplvmmr +2025-06-18T15:22:13.081Z [TRACE] notification-service - Auth event: login_failed - User: user_1059 - IP: 192.168.28.146 - RequestID: esnsp3l8bcn +2025-06-18T15:22:13.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1053 - IP: 192.168.79.141 - RequestID: p65tztm1sid +2025-06-18T15:22:13.281Z [TRACE] notification-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.13.72 - RequestID: x6i3sn6w6l +2025-06-18T15:22:13.381Z [TRACE] payment-service - Operation: notification_queued - Processing time: 192ms - RequestID: chvkk5z32nj +2025-06-18T15:22:13.481Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 2ms - Rows affected: 29 - RequestID: pg6qjxg0x6q +2025-06-18T15:22:13.581Z [TRACE] payment-service - Auth event: login_failed - User: user_1091 - IP: 192.168.235.117 - RequestID: n13oqim0xa +2025-06-18T15:22:13.681Z [DEBUG] payment-service - Operation: order_created - Processing time: 101ms - RequestID: fio8ifk3r5j +2025-06-18T15:22:13.781Z [DEBUG] user-service - GET /api/v1/payments - Status: 404 - Response time: 189ms - IP: 192.168.247.134 - User: user_1044 - RequestID: 0524roxfyn19 +2025-06-18T15:22:13.881Z [TRACE] order-service - Operation: inventory_updated - Processing time: 659ms - RequestID: 3c1prwgrxmh +2025-06-18T15:22:13.981Z [INFO] payment-service - GET /api/v1/inventory - Status: 401 - Response time: 193ms - IP: 192.168.1.152 - User: user_1033 - RequestID: sioamf2yveg +2025-06-18T15:22:14.081Z [INFO] order-service - GET /api/v1/auth/login - Status: 502 - Response time: 849ms - IP: 192.168.10.184 - User: user_1010 - RequestID: iopod2e3klm +2025-06-18T15:22:14.181Z [INFO] inventory-service - GET /api/v1/inventory - Status: 400 - Response time: 1109ms - IP: 192.168.44.5 - User: user_1092 - RequestID: kel3tjqjhup +2025-06-18T15:22:14.281Z [DEBUG] user-service - PUT /api/v1/orders - Status: 403 - Response time: 1157ms - IP: 192.168.227.233 - User: user_1090 - RequestID: n4y9d808at +2025-06-18T15:22:14.381Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 503 - Response time: 1994ms - IP: 192.168.247.134 - User: user_1083 - RequestID: hlzqnhfj0d7 +2025-06-18T15:22:14.481Z [INFO] auth-service - GET /api/v1/auth/login - Status: 503 - Response time: 1987ms - IP: 192.168.1.152 - User: user_1002 - RequestID: 1c3r50kjm31 +2025-06-18T15:22:14.581Z [TRACE] payment-service - Operation: cache_hit - Processing time: 278ms - RequestID: 6tkaqj2upuj +2025-06-18T15:22:14.681Z [TRACE] payment-service - Operation: email_sent - Processing time: 968ms - RequestID: 8ezyu3ek4dk +2025-06-18T15:22:14.781Z [TRACE] auth-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.81.206 - RequestID: ciptjv1ywim +2025-06-18T15:22:14.881Z [TRACE] user-service - Auth event: login_failed - User: user_1072 - IP: 192.168.104.37 - RequestID: gn3b1ujg66c +2025-06-18T15:22:14.981Z [INFO] order-service - POST /api/v1/payments - Status: 403 - Response time: 718ms - IP: 192.168.33.76 - User: user_1072 - RequestID: 28ulbh38tmd +2025-06-18T15:22:15.081Z [INFO] order-service - Auth event: password_change - User: user_1089 - IP: 192.168.13.72 - RequestID: cjvanwbyvm +2025-06-18T15:22:15.181Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 264ms - Rows affected: 31 - RequestID: 31a3cx5rjvb +2025-06-18T15:22:15.281Z [INFO] auth-service - Database UPDATE on audit_logs - Execution time: 67ms - Rows affected: 64 - RequestID: aw7zl1v2eu +2025-06-18T15:22:15.381Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1418ms - IP: 192.168.85.229 - User: user_1013 - RequestID: td1c8ychlap +2025-06-18T15:22:15.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 123ms - RequestID: xk0omdb8rwt +2025-06-18T15:22:15.581Z [INFO] auth-service - Operation: email_sent - Processing time: 974ms - RequestID: eyltjo5oeu +2025-06-18T15:22:15.681Z [DEBUG] inventory-service - Database SELECT on sessions - Execution time: 286ms - Rows affected: 97 - RequestID: 4upw2xg97jg +2025-06-18T15:22:15.781Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 231ms - Rows affected: 7 - RequestID: oilxcrcgj48 +2025-06-18T15:22:15.881Z [INFO] order-service - Database INSERT on sessions - Execution time: 323ms - Rows affected: 5 - RequestID: hi74h0ppmy4 +2025-06-18T15:22:15.981Z [DEBUG] inventory-service - GET /api/v1/auth/login - Status: 400 - Response time: 1032ms - IP: 192.168.144.38 - User: user_1097 - RequestID: 45k2gkcqes3 +2025-06-18T15:22:16.081Z [INFO] user-service - PUT /api/v1/payments - Status: 201 - Response time: 120ms - IP: 192.168.227.233 - User: user_1066 - RequestID: uodjlrnupc +2025-06-18T15:22:16.181Z [INFO] auth-service - PUT /api/v1/payments - Status: 404 - Response time: 959ms - IP: 192.168.68.158 - User: user_1063 - RequestID: 7en1rgv5gtq +2025-06-18T15:22:16.281Z [DEBUG] user-service - GET /api/v1/users - Status: 400 - Response time: 1496ms - IP: 192.168.10.184 - User: user_1039 - RequestID: f92njhu7yf8 +2025-06-18T15:22:16.381Z [INFO] user-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1454ms - IP: 192.168.79.143 - User: user_1048 - RequestID: q7b8f2ug83 +2025-06-18T15:22:16.481Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 223ms - Rows affected: 29 - RequestID: 46afjmlkir2 +2025-06-18T15:22:16.581Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 418ms - RequestID: j42ugsfulk +2025-06-18T15:22:16.681Z [INFO] notification-service - Operation: inventory_updated - Processing time: 220ms - RequestID: 0hpz294u0byw +2025-06-18T15:22:16.781Z [INFO] order-service - Auth event: logout - User: user_1048 - IP: 192.168.79.141 - RequestID: udviyzico6d +2025-06-18T15:22:16.881Z [INFO] inventory-service - Auth event: password_change - User: user_1042 - IP: 192.168.85.229 - RequestID: dbnx4ae5hzn +2025-06-18T15:22:16.981Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1074 - IP: 192.168.11.60 - RequestID: dvqybl3m1vt +2025-06-18T15:22:17.081Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 570ms - RequestID: w9q9y68asys +2025-06-18T15:22:17.181Z [TRACE] user-service - Operation: inventory_updated - Processing time: 881ms - RequestID: qr2b0ej35g9 +2025-06-18T15:22:17.281Z [INFO] auth-service - Operation: order_created - Processing time: 369ms - RequestID: 1yocqtti1q8 +2025-06-18T15:22:17.381Z [TRACE] order-service - Auth event: login_failed - User: user_1038 - IP: 192.168.100.240 - RequestID: l29can3z9di +2025-06-18T15:22:17.481Z [DEBUG] notification-service - Auth event: logout - User: user_1041 - IP: 192.168.33.76 - RequestID: t3dewnadbsi +2025-06-18T15:22:17.581Z [INFO] order-service - Operation: cache_miss - Processing time: 549ms - RequestID: 1ey18yy6i2k +2025-06-18T15:22:17.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 753ms - RequestID: 6qb00aspwry +2025-06-18T15:22:17.781Z [INFO] inventory-service - Operation: notification_queued - Processing time: 640ms - RequestID: e57q1wbiidl +2025-06-18T15:22:17.881Z [INFO] notification-service - Operation: payment_processed - Processing time: 443ms - RequestID: 6r3haqrmynj +2025-06-18T15:22:17.981Z [TRACE] payment-service - PUT /api/v1/inventory - Status: 502 - Response time: 1543ms - IP: 192.168.33.76 - User: user_1023 - RequestID: yyrm9un84n +2025-06-18T15:22:18.081Z [INFO] user-service - Database UPDATE on sessions - Execution time: 43ms - Rows affected: 6 - RequestID: bne3x80syzg +2025-06-18T15:22:18.181Z [DEBUG] user-service - Operation: cache_miss - Processing time: 297ms - RequestID: py1t4wakwan +2025-06-18T15:22:18.281Z [DEBUG] order-service - Operation: cache_hit - Processing time: 65ms - RequestID: 7ygw3fs3bon +2025-06-18T15:22:18.381Z [TRACE] notification-service - Operation: order_created - Processing time: 514ms - RequestID: qk5ydbxc66 +2025-06-18T15:22:18.481Z [TRACE] auth-service - Operation: cache_miss - Processing time: 404ms - RequestID: x5hxmyprr6 +2025-06-18T15:22:18.581Z [DEBUG] order-service - Database UPDATE on users - Execution time: 16ms - Rows affected: 47 - RequestID: 6nrn9o3zoxc +2025-06-18T15:22:18.681Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.240.169 - RequestID: y5zh5ogrxqj +2025-06-18T15:22:18.781Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 503 - Response time: 1773ms - IP: 192.168.159.94 - User: user_1084 - RequestID: hq1a16icdxr +2025-06-18T15:22:18.881Z [TRACE] order-service - PUT /api/v1/users - Status: 200 - Response time: 832ms - IP: 192.168.211.72 - User: user_1031 - RequestID: zm7id8ntmbl +2025-06-18T15:22:18.981Z [TRACE] order-service - Operation: notification_queued - Processing time: 390ms - RequestID: dcqeyoz88cc +2025-06-18T15:22:19.081Z [INFO] order-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.32.38 - RequestID: fgm2ru93jdq +2025-06-18T15:22:19.181Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1813ms - IP: 192.168.147.171 - User: user_1004 - RequestID: mmgqpdqavdr +2025-06-18T15:22:19.281Z [INFO] auth-service - GET /api/v1/inventory - Status: 500 - Response time: 1681ms - IP: 192.168.81.206 - User: user_1021 - RequestID: xhv7j362rl8 +2025-06-18T15:22:19.381Z [TRACE] user-service - Database SELECT on products - Execution time: 231ms - Rows affected: 1 - RequestID: 0vgxlmrgl38j +2025-06-18T15:22:19.481Z [DEBUG] auth-service - Auth event: login_failed - User: user_1067 - IP: 192.168.64.33 - RequestID: tdvhg35r6k +2025-06-18T15:22:19.581Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 767ms - RequestID: ypy7qgjia9k +2025-06-18T15:22:19.681Z [TRACE] payment-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.133.7 - RequestID: oadxbf5vkxh +2025-06-18T15:22:19.781Z [INFO] inventory-service - Database UPDATE on products - Execution time: 22ms - Rows affected: 40 - RequestID: cy59bd2ef0f +2025-06-18T15:22:19.881Z [TRACE] notification-service - Database SELECT on users - Execution time: 38ms - Rows affected: 71 - RequestID: zi1c29oshu +2025-06-18T15:22:19.981Z [INFO] inventory-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.30.79 - RequestID: 7tlmkitnb1i +2025-06-18T15:22:20.081Z [INFO] inventory-service - Operation: email_sent - Processing time: 744ms - RequestID: 00a3rlcoylnnb +2025-06-18T15:22:20.181Z [INFO] user-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.138.123 - RequestID: ih0m6so12xo +2025-06-18T15:22:20.281Z [INFO] inventory-service - Database DELETE on users - Execution time: 41ms - Rows affected: 75 - RequestID: t0gz5i7jjyg +2025-06-18T15:22:20.381Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 503 - Response time: 789ms - IP: 192.168.189.103 - User: user_1051 - RequestID: cj0dhv1gdm6 +2025-06-18T15:22:20.481Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 403 - Response time: 754ms - IP: 192.168.247.134 - User: user_1018 - RequestID: lpoxr53gaxj +2025-06-18T15:22:20.581Z [TRACE] order-service - PUT /api/v1/orders - Status: 400 - Response time: 1673ms - IP: 192.168.144.38 - User: user_1087 - RequestID: 5qxep1o5a37 +2025-06-18T15:22:20.681Z [INFO] auth-service - Database DELETE on orders - Execution time: 364ms - Rows affected: 95 - RequestID: v0hdcughmsg +2025-06-18T15:22:20.781Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 403 - Response time: 120ms - IP: 192.168.79.143 - User: user_1047 - RequestID: 8t3g1rk3eb8 +2025-06-18T15:22:20.881Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 404 - Response time: 415ms - IP: 192.168.235.117 - User: user_1076 - RequestID: 8h9i0du1t +2025-06-18T15:22:20.981Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 1647ms - IP: 192.168.36.218 - User: user_1027 - RequestID: 1ihsg76ml9y +2025-06-18T15:22:21.081Z [INFO] auth-service - Database DELETE on products - Execution time: 133ms - Rows affected: 78 - RequestID: 32jzmqb2glc +2025-06-18T15:22:21.181Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 1040ms - RequestID: rygegyz7wcc +2025-06-18T15:22:21.281Z [INFO] notification-service - PUT /api/v1/inventory - Status: 400 - Response time: 1792ms - IP: 192.168.81.206 - User: user_1067 - RequestID: b4u0nmnlxk8 +2025-06-18T15:22:21.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 1028ms - RequestID: 9xegj2xfbqm +2025-06-18T15:22:21.481Z [INFO] notification-service - GET /api/v1/payments - Status: 403 - Response time: 485ms - IP: 192.168.30.79 - User: user_1045 - RequestID: xipboe0uh6b +2025-06-18T15:22:21.581Z [DEBUG] user-service - Operation: notification_queued - Processing time: 265ms - RequestID: 2sktr56h0ps +2025-06-18T15:22:21.681Z [INFO] inventory-service - GET /api/v1/orders - Status: 502 - Response time: 1206ms - IP: 192.168.85.229 - User: user_1000 - RequestID: 7i27gn5aeh6 +2025-06-18T15:22:21.781Z [TRACE] user-service - Operation: inventory_updated - Processing time: 428ms - RequestID: 96klzx15n85 +2025-06-18T15:22:21.881Z [DEBUG] notification-service - Operation: email_sent - Processing time: 558ms - RequestID: zmlz66mjzi +2025-06-18T15:22:21.981Z [INFO] user-service - Auth event: token_refresh - User: user_1008 - IP: 192.168.100.240 - RequestID: sp1xu8hjm5g +2025-06-18T15:22:22.081Z [INFO] inventory-service - Database INSERT on payments - Execution time: 246ms - Rows affected: 71 - RequestID: cipy6oseg89 +2025-06-18T15:22:22.181Z [INFO] auth-service - Database SELECT on orders - Execution time: 77ms - Rows affected: 83 - RequestID: t26am000vwn +2025-06-18T15:22:22.281Z [TRACE] inventory-service - Operation: order_created - Processing time: 924ms - RequestID: 1edpg2b67pb +2025-06-18T15:22:22.381Z [TRACE] inventory-service - PUT /api/v1/inventory - Status: 401 - Response time: 1572ms - IP: 192.168.133.7 - User: user_1096 - RequestID: ab6p76bsqya +2025-06-18T15:22:22.481Z [INFO] payment-service - Database UPDATE on products - Execution time: 191ms - Rows affected: 46 - RequestID: 0wpda8qb6cwd +2025-06-18T15:22:22.581Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 320ms - IP: 192.168.158.144 - User: user_1035 - RequestID: whgr4h3itkp +2025-06-18T15:22:22.681Z [INFO] user-service - Database SELECT on products - Execution time: 280ms - Rows affected: 48 - RequestID: 2lcep3m6z1s +2025-06-18T15:22:22.781Z [INFO] user-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.33.76 - RequestID: 241i5ifubsm +2025-06-18T15:22:22.881Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 201 - Response time: 584ms - IP: 192.168.240.169 - User: user_1031 - RequestID: f93r45bwlb +2025-06-18T15:22:22.981Z [TRACE] payment-service - PUT /api/v1/users - Status: 404 - Response time: 1283ms - IP: 192.168.147.171 - User: user_1089 - RequestID: egkkwi5eoyu +2025-06-18T15:22:23.081Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 212ms - RequestID: dtvb94w7uf4 +2025-06-18T15:22:23.181Z [INFO] payment-service - PATCH /api/v1/orders - Status: 502 - Response time: 1226ms - IP: 192.168.36.218 - User: user_1035 - RequestID: nn9mnqxbom8 +2025-06-18T15:22:23.281Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1422ms - IP: 192.168.247.134 - User: user_1017 - RequestID: vqi15g5jaai +2025-06-18T15:22:23.381Z [INFO] order-service - Database UPDATE on payments - Execution time: 488ms - Rows affected: 31 - RequestID: k2sjk2uhtx +2025-06-18T15:22:23.481Z [TRACE] notification-service - Auth event: logout - User: user_1068 - IP: 192.168.30.79 - RequestID: 2u73tns6hjk +2025-06-18T15:22:23.581Z [DEBUG] user-service - Operation: cache_hit - Processing time: 938ms - RequestID: mtr8h2b8ekp +2025-06-18T15:22:23.681Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 261ms - RequestID: 66a80i7u2hx +2025-06-18T15:22:23.781Z [INFO] inventory-service - PUT /api/v1/payments - Status: 201 - Response time: 60ms - IP: 192.168.53.133 - User: user_1031 - RequestID: p4stfak7hxi +2025-06-18T15:22:23.881Z [INFO] order-service - Database SELECT on products - Execution time: 137ms - Rows affected: 46 - RequestID: waqoa9qo7yc +2025-06-18T15:22:23.981Z [INFO] order-service - Database SELECT on payments - Execution time: 434ms - Rows affected: 4 - RequestID: ydjmfghwcrh +2025-06-18T15:22:24.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1086 - IP: 192.168.81.206 - RequestID: 3orj5hre7n9 +2025-06-18T15:22:24.181Z [TRACE] auth-service - GET /api/v1/payments - Status: 201 - Response time: 925ms - IP: 192.168.138.123 - User: user_1053 - RequestID: 7nutjt4qmvj +2025-06-18T15:22:24.281Z [TRACE] order-service - Operation: notification_queued - Processing time: 427ms - RequestID: sxfwf6zb71 +2025-06-18T15:22:24.381Z [INFO] notification-service - Operation: cache_hit - Processing time: 597ms - RequestID: zk47lob4ey +2025-06-18T15:22:24.481Z [INFO] order-service - Operation: webhook_sent - Processing time: 65ms - RequestID: gztup2x1439 +2025-06-18T15:22:24.581Z [TRACE] order-service - GET /api/v1/inventory - Status: 201 - Response time: 1428ms - IP: 192.168.79.116 - User: user_1065 - RequestID: r81fqjd3sh +2025-06-18T15:22:24.681Z [INFO] auth-service - DELETE /api/v1/users - Status: 502 - Response time: 1426ms - IP: 192.168.32.38 - User: user_1006 - RequestID: a2r3gl3giko +2025-06-18T15:22:24.781Z [TRACE] payment-service - Auth event: login_attempt - User: user_1055 - IP: 192.168.227.233 - RequestID: zhh1kjrtt3 +2025-06-18T15:22:24.881Z [INFO] notification-service - Database SELECT on users - Execution time: 273ms - Rows affected: 60 - RequestID: ikpukj740th +2025-06-18T15:22:24.981Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 401 - Response time: 348ms - IP: 192.168.28.146 - User: user_1014 - RequestID: 7gir6nxl5ji +2025-06-18T15:22:25.081Z [TRACE] user-service - Auth event: login_success - User: user_1082 - IP: 192.168.113.218 - RequestID: rk5dgg8ds7 +2025-06-18T15:22:25.181Z [TRACE] notification-service - Auth event: password_change - User: user_1031 - IP: 192.168.144.38 - RequestID: 2nzpd6rc87b +2025-06-18T15:22:25.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.85.229 - RequestID: 7cdw1lj8bzm +2025-06-18T15:22:25.381Z [DEBUG] order-service - Operation: cache_hit - Processing time: 438ms - RequestID: 45ek0jyaz99 +2025-06-18T15:22:25.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1009 - IP: 192.168.159.94 - RequestID: pmfid3v9ck +2025-06-18T15:22:25.581Z [INFO] order-service - Auth event: login_success - User: user_1018 - IP: 192.168.36.218 - RequestID: 7lba3tkvqui +2025-06-18T15:22:25.681Z [INFO] auth-service - Auth event: logout - User: user_1038 - IP: 192.168.170.215 - RequestID: 3t23snn6j8v +2025-06-18T15:22:25.781Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 200 - Response time: 1382ms - IP: 192.168.31.117 - User: user_1099 - RequestID: si3n867szkl +2025-06-18T15:22:25.881Z [INFO] order-service - Auth event: login_failed - User: user_1017 - IP: 192.168.235.117 - RequestID: utrrh0c6yxk +2025-06-18T15:22:25.981Z [INFO] auth-service - Operation: inventory_updated - Processing time: 544ms - RequestID: 6loruk929q +2025-06-18T15:22:26.081Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 497ms - Rows affected: 84 - RequestID: p8y6cm3yspa +2025-06-18T15:22:26.181Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 404 - Response time: 1480ms - IP: 192.168.232.72 - User: user_1006 - RequestID: gwpo84x6ojd +2025-06-18T15:22:26.281Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1929ms - IP: 192.168.144.38 - User: user_1071 - RequestID: brmddngjufw +2025-06-18T15:22:26.381Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 502 - Response time: 171ms - IP: 192.168.240.169 - User: user_1089 - RequestID: eir1zwu2vtd +2025-06-18T15:22:26.481Z [INFO] auth-service - Operation: email_sent - Processing time: 501ms - RequestID: tev2vxowc +2025-06-18T15:22:26.581Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1019 - IP: 192.168.247.134 - RequestID: 7zmmmh655f9 +2025-06-18T15:22:26.681Z [TRACE] order-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.141.100 - RequestID: 7lvrtn0ex2l +2025-06-18T15:22:26.781Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 581ms - RequestID: zlhgaz5zk9 +2025-06-18T15:22:26.881Z [INFO] auth-service - Database DELETE on sessions - Execution time: 195ms - Rows affected: 96 - RequestID: 4g0zdetv36n +2025-06-18T15:22:26.981Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 377ms - Rows affected: 97 - RequestID: 8e9143od87u +2025-06-18T15:22:27.081Z [TRACE] notification-service - Auth event: login_attempt - User: user_1024 - IP: 192.168.189.103 - RequestID: qdflptvj97 +2025-06-18T15:22:27.181Z [TRACE] inventory-service - Auth event: login_success - User: user_1042 - IP: 192.168.227.77 - RequestID: km0e0f6f5y +2025-06-18T15:22:27.281Z [DEBUG] user-service - Auth event: login_failed - User: user_1075 - IP: 192.168.229.123 - RequestID: dq7j5yuv0ud +2025-06-18T15:22:27.381Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 924ms - RequestID: r1orj4pbky +2025-06-18T15:22:27.481Z [INFO] order-service - Auth event: logout - User: user_1090 - IP: 192.168.170.215 - RequestID: iqg0wx7cutf +2025-06-18T15:22:27.581Z [INFO] notification-service - Operation: payment_processed - Processing time: 272ms - RequestID: ikajy94e9v +2025-06-18T15:22:27.681Z [TRACE] notification-service - Operation: cache_hit - Processing time: 824ms - RequestID: nckbu4riat9 +2025-06-18T15:22:27.781Z [DEBUG] notification-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1857ms - IP: 192.168.187.199 - User: user_1034 - RequestID: xa3ff7x7uft +2025-06-18T15:22:27.881Z [INFO] auth-service - GET /api/v1/users - Status: 403 - Response time: 1713ms - IP: 192.168.81.206 - User: user_1049 - RequestID: 9kyv4f5zbyi +2025-06-18T15:22:27.981Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 34ms - Rows affected: 97 - RequestID: ysmx37wvz7 +2025-06-18T15:22:28.081Z [TRACE] order-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.64.33 - RequestID: v5s2xhkasiq +2025-06-18T15:22:28.181Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1817ms - IP: 192.168.81.206 - User: user_1056 - RequestID: rbngtxgf2oj +2025-06-18T15:22:28.281Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 480ms - RequestID: 1d5ewiwro75 +2025-06-18T15:22:28.381Z [INFO] payment-service - PATCH /api/v1/users - Status: 403 - Response time: 525ms - IP: 192.168.144.38 - User: user_1030 - RequestID: 3d2g0d1buf4 +2025-06-18T15:22:28.481Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 200 - Response time: 10ms - IP: 192.168.1.152 - User: user_1031 - RequestID: btzo2w3grs4 +2025-06-18T15:22:28.581Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1233ms - IP: 192.168.14.77 - User: user_1053 - RequestID: 9cwtaekq677 +2025-06-18T15:22:28.681Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 400 - Response time: 972ms - IP: 192.168.68.128 - User: user_1054 - RequestID: 7l0hmhgsrel +2025-06-18T15:22:28.781Z [TRACE] notification-service - Operation: order_created - Processing time: 176ms - RequestID: 9b4vcozg98u +2025-06-18T15:22:28.881Z [TRACE] notification-service - Auth event: login_failed - User: user_1074 - IP: 192.168.232.72 - RequestID: thvty6anm7i +2025-06-18T15:22:28.981Z [INFO] user-service - Database SELECT on orders - Execution time: 471ms - Rows affected: 17 - RequestID: am66a9fjjgr +2025-06-18T15:22:29.081Z [INFO] notification-service - Operation: inventory_updated - Processing time: 560ms - RequestID: br3u6lypy55 +2025-06-18T15:22:29.181Z [DEBUG] inventory-service - Auth event: login_success - User: user_1045 - IP: 192.168.104.37 - RequestID: eokdjrn6ed +2025-06-18T15:22:29.281Z [INFO] order-service - Auth event: logout - User: user_1036 - IP: 192.168.144.38 - RequestID: cq8xzgturll +2025-06-18T15:22:29.381Z [INFO] inventory-service - Auth event: logout - User: user_1026 - IP: 192.168.79.116 - RequestID: 850tglum3rn +2025-06-18T15:22:29.481Z [TRACE] user-service - Operation: email_sent - Processing time: 147ms - RequestID: zofpbod7vpt +2025-06-18T15:22:29.581Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 131ms - RequestID: 5a109o4boh2 +2025-06-18T15:22:29.681Z [TRACE] notification-service - Operation: email_sent - Processing time: 671ms - RequestID: nb6od2b6ab +2025-06-18T15:22:29.781Z [INFO] auth-service - DELETE /api/v1/orders - Status: 201 - Response time: 1849ms - IP: 192.168.97.87 - User: user_1010 - RequestID: 8cjubu2ymrm +2025-06-18T15:22:29.881Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 44ms - Rows affected: 73 - RequestID: ismdgshy5nb +2025-06-18T15:22:29.981Z [TRACE] payment-service - Auth event: login_success - User: user_1013 - IP: 192.168.104.37 - RequestID: gp3cf694v5 +2025-06-18T15:22:30.081Z [TRACE] order-service - Auth event: login_success - User: user_1039 - IP: 192.168.242.165 - RequestID: e97gu6orfhd +2025-06-18T15:22:30.181Z [INFO] user-service - Auth event: password_change - User: user_1038 - IP: 192.168.211.72 - RequestID: r5lpsa9uw +2025-06-18T15:22:30.281Z [INFO] payment-service - Auth event: logout - User: user_1099 - IP: 192.168.247.134 - RequestID: 7xekzp8399a +2025-06-18T15:22:30.381Z [INFO] inventory-service - GET /api/v1/users - Status: 401 - Response time: 812ms - IP: 192.168.100.240 - User: user_1069 - RequestID: gqbhzr48x94 +2025-06-18T15:22:30.481Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 473ms - Rows affected: 67 - RequestID: 9blbtsmgdm +2025-06-18T15:22:30.581Z [TRACE] notification-service - Database UPDATE on users - Execution time: 343ms - Rows affected: 41 - RequestID: zb1vgbzshz +2025-06-18T15:22:30.681Z [INFO] order-service - Auth event: password_change - User: user_1081 - IP: 192.168.33.76 - RequestID: mqv9esv5utg +2025-06-18T15:22:30.781Z [DEBUG] user-service - Operation: order_created - Processing time: 104ms - RequestID: jh8alai56c +2025-06-18T15:22:30.881Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 354ms - Rows affected: 9 - RequestID: knckk75sq3 +2025-06-18T15:22:30.981Z [TRACE] notification-service - GET /api/v1/auth/login - Status: 201 - Response time: 810ms - IP: 192.168.211.72 - User: user_1048 - RequestID: 9ygu8sl4cgg +2025-06-18T15:22:31.081Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 1014ms - IP: 192.168.53.133 - User: user_1006 - RequestID: s0qvz0auajd +2025-06-18T15:22:31.181Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 148ms - Rows affected: 82 - RequestID: h17oo4l9v5 +2025-06-18T15:22:31.281Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 201 - Response time: 1373ms - IP: 192.168.240.169 - User: user_1055 - RequestID: 68x8out7ncg +2025-06-18T15:22:31.381Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 565ms - RequestID: cgqna8yehqi +2025-06-18T15:22:31.481Z [TRACE] auth-service - PUT /api/v1/inventory - Status: 503 - Response time: 1599ms - IP: 192.168.227.233 - User: user_1074 - RequestID: gngub1ikg1u +2025-06-18T15:22:31.581Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 138ms - Rows affected: 18 - RequestID: za9pz1pfnag +2025-06-18T15:22:31.681Z [DEBUG] payment-service - PATCH /api/v1/inventory - Status: 404 - Response time: 29ms - IP: 192.168.196.226 - User: user_1026 - RequestID: b6vt8nouzpa +2025-06-18T15:22:31.781Z [INFO] user-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1436ms - IP: 192.168.181.225 - User: user_1065 - RequestID: 1aafxwk0lm3 +2025-06-18T15:22:31.881Z [INFO] payment-service - Operation: webhook_sent - Processing time: 374ms - RequestID: a4intzptqfr +2025-06-18T15:22:31.981Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 189ms - Rows affected: 60 - RequestID: g0hqlf2o2gw +2025-06-18T15:22:32.081Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 365ms - Rows affected: 9 - RequestID: gaym6gzysb9 +2025-06-18T15:22:32.181Z [INFO] inventory-service - Database INSERT on payments - Execution time: 298ms - Rows affected: 10 - RequestID: qle2ui1pman +2025-06-18T15:22:32.281Z [TRACE] auth-service - Operation: email_sent - Processing time: 350ms - RequestID: o5z84fi1as +2025-06-18T15:22:32.381Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 277ms - RequestID: poaoei0vp4k +2025-06-18T15:22:32.481Z [TRACE] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 163ms - IP: 192.168.138.123 - User: user_1057 - RequestID: ttkue589ec +2025-06-18T15:22:32.581Z [TRACE] inventory-service - Database DELETE on products - Execution time: 404ms - Rows affected: 68 - RequestID: hdoovmhj24 +2025-06-18T15:22:32.681Z [DEBUG] user-service - Auth event: logout - User: user_1045 - IP: 192.168.13.72 - RequestID: va59arq54db +2025-06-18T15:22:32.781Z [INFO] payment-service - DELETE /api/v1/users - Status: 404 - Response time: 830ms - IP: 192.168.196.226 - User: user_1042 - RequestID: 4vr3d4pitc7 +2025-06-18T15:22:32.881Z [DEBUG] auth-service - Database DELETE on payments - Execution time: 435ms - Rows affected: 83 - RequestID: d0t4nlmvowc +2025-06-18T15:22:32.981Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 346ms - Rows affected: 17 - RequestID: rgfdlb1cnu +2025-06-18T15:22:33.081Z [INFO] notification-service - Database DELETE on products - Execution time: 53ms - Rows affected: 18 - RequestID: ayrjjr1j6iu +2025-06-18T15:22:33.181Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 404 - Response time: 87ms - IP: 192.168.170.215 - User: user_1048 - RequestID: tf73omr6mm +2025-06-18T15:22:33.281Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1251ms - IP: 192.168.33.76 - User: user_1076 - RequestID: f19ovhe0u2q +2025-06-18T15:22:33.381Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 260ms - Rows affected: 37 - RequestID: edersyn9ip8 +2025-06-18T15:22:33.481Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 500 - Response time: 690ms - IP: 192.168.227.77 - User: user_1039 - RequestID: f2ltr6egjit +2025-06-18T15:22:33.581Z [INFO] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 840ms - IP: 192.168.36.218 - User: user_1063 - RequestID: j59oojdcq +2025-06-18T15:22:33.681Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 229ms - Rows affected: 18 - RequestID: gql4cn3akks +2025-06-18T15:22:33.781Z [INFO] user-service - Operation: cache_miss - Processing time: 800ms - RequestID: taqfhth3n8k +2025-06-18T15:22:33.881Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 298ms - RequestID: yq15icxrocl +2025-06-18T15:22:33.981Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1047 - IP: 192.168.167.32 - RequestID: qxacm2vkr +2025-06-18T15:22:34.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 992ms - RequestID: a65gazatkcg +2025-06-18T15:22:34.181Z [INFO] payment-service - Auth event: login_success - User: user_1096 - IP: 192.168.170.215 - RequestID: zm512nlyp7 +2025-06-18T15:22:34.281Z [INFO] notification-service - Database DELETE on products - Execution time: 273ms - Rows affected: 75 - RequestID: r4qsks7s1nq +2025-06-18T15:22:34.381Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 295ms - Rows affected: 3 - RequestID: jwpj5aj3mqq +2025-06-18T15:22:34.481Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 741ms - RequestID: 0dl8awfftsk +2025-06-18T15:22:34.581Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 570ms - RequestID: w23hf7pwzu +2025-06-18T15:22:34.681Z [INFO] auth-service - Database DELETE on users - Execution time: 457ms - Rows affected: 92 - RequestID: 555ea4j4xnh +2025-06-18T15:22:34.781Z [TRACE] auth-service - Database SELECT on products - Execution time: 32ms - Rows affected: 53 - RequestID: akuuhowsj2f +2025-06-18T15:22:34.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.167.32 - RequestID: 4yl60azao2 +2025-06-18T15:22:34.981Z [TRACE] auth-service - Operation: email_sent - Processing time: 522ms - RequestID: kmzuqw6omwc +2025-06-18T15:22:35.081Z [TRACE] notification-service - Database DELETE on orders - Execution time: 404ms - Rows affected: 93 - RequestID: 4v79j7wktgs +2025-06-18T15:22:35.181Z [INFO] payment-service - DELETE /api/v1/payments - Status: 201 - Response time: 1915ms - IP: 192.168.211.72 - User: user_1075 - RequestID: zcu4b27waq +2025-06-18T15:22:35.281Z [DEBUG] inventory-service - Database UPDATE on payments - Execution time: 301ms - Rows affected: 59 - RequestID: i12t5lfbr8l +2025-06-18T15:22:35.381Z [INFO] payment-service - Operation: cache_miss - Processing time: 853ms - RequestID: d13ai4vw9qm +2025-06-18T15:22:35.481Z [TRACE] user-service - PUT /api/v1/users - Status: 201 - Response time: 566ms - IP: 192.168.36.218 - User: user_1006 - RequestID: 6a3hab09rvp +2025-06-18T15:22:35.581Z [DEBUG] payment-service - Auth event: password_change - User: user_1033 - IP: 192.168.170.215 - RequestID: 7fvy0xb0n0t +2025-06-18T15:22:35.681Z [DEBUG] payment-service - Auth event: login_success - User: user_1016 - IP: 192.168.44.5 - RequestID: 0xs9s3dliicn +2025-06-18T15:22:35.781Z [TRACE] payment-service - Database SELECT on sessions - Execution time: 341ms - Rows affected: 94 - RequestID: 40m6p8xedd8 +2025-06-18T15:22:35.881Z [DEBUG] order-service - Operation: notification_queued - Processing time: 718ms - RequestID: yu08v2jkaor +2025-06-18T15:22:35.981Z [TRACE] inventory-service - Auth event: login_success - User: user_1095 - IP: 192.168.235.117 - RequestID: dhnykjjbumm +2025-06-18T15:22:36.081Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 965ms - IP: 192.168.1.152 - User: user_1020 - RequestID: d57267crgdc +2025-06-18T15:22:36.181Z [TRACE] auth-service - Operation: notification_queued - Processing time: 566ms - RequestID: olyvjaz36kj +2025-06-18T15:22:36.281Z [TRACE] inventory-service - DELETE /api/v1/payments - Status: 401 - Response time: 245ms - IP: 192.168.133.7 - User: user_1063 - RequestID: cd4lpg13gc +2025-06-18T15:22:36.381Z [TRACE] auth-service - Database SELECT on payments - Execution time: 1ms - Rows affected: 85 - RequestID: 0f665ls8b7qm +2025-06-18T15:22:36.481Z [INFO] user-service - Auth event: logout - User: user_1069 - IP: 192.168.158.144 - RequestID: 8t31i3rpchc +2025-06-18T15:22:36.581Z [TRACE] payment-service - PATCH /api/v1/users - Status: 502 - Response time: 405ms - IP: 192.168.64.33 - User: user_1013 - RequestID: nwxngtjoufn +2025-06-18T15:22:36.681Z [TRACE] order-service - PUT /api/v1/inventory - Status: 503 - Response time: 944ms - IP: 192.168.211.72 - User: user_1006 - RequestID: wthnxgifvbj +2025-06-18T15:22:36.781Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1083 - IP: 192.168.147.171 - RequestID: r6d9jc2lh7 +2025-06-18T15:22:36.881Z [TRACE] payment-service - Operation: payment_processed - Processing time: 87ms - RequestID: f52fordmcj +2025-06-18T15:22:36.981Z [INFO] auth-service - Database DELETE on orders - Execution time: 323ms - Rows affected: 70 - RequestID: 6hk5napq7c9 +2025-06-18T15:22:37.081Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 885ms - IP: 192.168.141.100 - User: user_1067 - RequestID: fizze9stdjf +2025-06-18T15:22:37.181Z [INFO] order-service - Operation: webhook_sent - Processing time: 1025ms - RequestID: a9bbzpkmjmq +2025-06-18T15:22:37.281Z [DEBUG] order-service - Auth event: logout - User: user_1017 - IP: 192.168.81.206 - RequestID: 1rgkrej0qun +2025-06-18T15:22:37.381Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 201ms - Rows affected: 45 - RequestID: xfed2liqu0c +2025-06-18T15:22:37.481Z [DEBUG] order-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.85.229 - RequestID: geg0eg7n06 +2025-06-18T15:22:37.581Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 52ms - RequestID: v4d0otmgln +2025-06-18T15:22:37.681Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 194ms - RequestID: 1yov5qnspmr +2025-06-18T15:22:37.781Z [INFO] user-service - PATCH /api/v1/orders - Status: 500 - Response time: 52ms - IP: 192.168.68.128 - User: user_1057 - RequestID: dpprwdrpd6 +2025-06-18T15:22:37.881Z [INFO] user-service - Auth event: login_failed - User: user_1085 - IP: 192.168.174.114 - RequestID: tdq3hls63pe +2025-06-18T15:22:37.981Z [TRACE] inventory-service - Auth event: login_success - User: user_1047 - IP: 192.168.44.5 - RequestID: 3s5uwgsalwl +2025-06-18T15:22:38.081Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 500 - Response time: 1324ms - IP: 192.168.97.87 - User: user_1041 - RequestID: lnipd7pwpc +2025-06-18T15:22:38.181Z [TRACE] auth-service - Operation: payment_processed - Processing time: 674ms - RequestID: zwihk692ixj +2025-06-18T15:22:38.281Z [INFO] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 1232ms - IP: 192.168.68.158 - User: user_1002 - RequestID: tz3dubd0cll +2025-06-18T15:22:38.381Z [TRACE] auth-service - Database DELETE on users - Execution time: 60ms - Rows affected: 13 - RequestID: lsmzs81njpj +2025-06-18T15:22:38.481Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 430ms - Rows affected: 83 - RequestID: pcu8i2bcidn +2025-06-18T15:22:38.581Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 22ms - Rows affected: 10 - RequestID: zmpt5sfmad +2025-06-18T15:22:38.681Z [TRACE] order-service - Auth event: login_success - User: user_1085 - IP: 192.168.174.114 - RequestID: 1lwrocezx62 +2025-06-18T15:22:38.781Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 87ms - RequestID: 2wc6bvfuw0l +2025-06-18T15:22:38.881Z [TRACE] inventory-service - Database DELETE on products - Execution time: 383ms - Rows affected: 94 - RequestID: ndliydp9gq +2025-06-18T15:22:38.981Z [INFO] inventory-service - Database DELETE on orders - Execution time: 34ms - Rows affected: 50 - RequestID: hh7kpg86w +2025-06-18T15:22:39.081Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.79.141 - RequestID: kc233xq7di +2025-06-18T15:22:39.181Z [TRACE] auth-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.138.123 - RequestID: pbsp9v05g9 +2025-06-18T15:22:39.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.68.128 - RequestID: cctrgxzz3z +2025-06-18T15:22:39.381Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 200 - Response time: 583ms - IP: 192.168.53.133 - User: user_1011 - RequestID: whirhg3kqu +2025-06-18T15:22:39.481Z [TRACE] order-service - Auth event: login_failed - User: user_1010 - IP: 192.168.1.152 - RequestID: rju4rhn2le9 +2025-06-18T15:22:39.581Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 779ms - RequestID: bu8qw4ou7n +2025-06-18T15:22:39.681Z [DEBUG] order-service - Auth event: password_change - User: user_1090 - IP: 192.168.181.225 - RequestID: 4pcmwizs0tu +2025-06-18T15:22:39.781Z [TRACE] user-service - Database SELECT on payments - Execution time: 276ms - Rows affected: 72 - RequestID: xus9mp1mtc +2025-06-18T15:22:39.881Z [INFO] notification-service - PATCH /api/v1/users - Status: 400 - Response time: 1013ms - IP: 192.168.79.116 - User: user_1052 - RequestID: i7v2xaom9dr +2025-06-18T15:22:39.981Z [DEBUG] user-service - Database INSERT on users - Execution time: 213ms - Rows affected: 31 - RequestID: rmylkl7lwek +2025-06-18T15:22:40.081Z [INFO] inventory-service - Auth event: login_failed - User: user_1038 - IP: 192.168.235.117 - RequestID: avxot2es7w6 +2025-06-18T15:22:40.181Z [DEBUG] order-service - Database DELETE on users - Execution time: 369ms - Rows affected: 49 - RequestID: qsw3q7njm9l +2025-06-18T15:22:40.281Z [INFO] user-service - Database SELECT on users - Execution time: 1ms - Rows affected: 8 - RequestID: oza5us40wbk +2025-06-18T15:22:40.381Z [TRACE] order-service - Operation: webhook_sent - Processing time: 351ms - RequestID: ib46u73ngc +2025-06-18T15:22:40.481Z [DEBUG] order-service - PUT /api/v1/inventory - Status: 404 - Response time: 250ms - IP: 192.168.11.60 - User: user_1088 - RequestID: w1z21app4qr +2025-06-18T15:22:40.581Z [TRACE] inventory-service - GET /api/v1/users - Status: 500 - Response time: 1988ms - IP: 192.168.14.77 - User: user_1063 - RequestID: pkuk6628rxb +2025-06-18T15:22:40.681Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 176ms - RequestID: 9e6xu6euqh +2025-06-18T15:22:40.781Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 926ms - RequestID: xp2qqlda3z +2025-06-18T15:22:40.881Z [INFO] inventory-service - Database INSERT on payments - Execution time: 230ms - Rows affected: 7 - RequestID: sr42agk7a0q +2025-06-18T15:22:40.981Z [TRACE] user-service - Auth event: login_failed - User: user_1019 - IP: 192.168.14.77 - RequestID: ggv8qfgq0in +2025-06-18T15:22:41.081Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 626ms - RequestID: 5robh2c2nst +2025-06-18T15:22:41.181Z [INFO] order-service - Database UPDATE on users - Execution time: 198ms - Rows affected: 79 - RequestID: jnxr1j6397k +2025-06-18T15:22:41.281Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.79.143 - RequestID: 4r44a1p50cl +2025-06-18T15:22:41.381Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 401 - Response time: 1424ms - IP: 192.168.158.144 - User: user_1096 - RequestID: b2vv5gkdvh6 +2025-06-18T15:22:41.481Z [DEBUG] payment-service - Auth event: login_failed - User: user_1024 - IP: 192.168.181.225 - RequestID: 3uhm786skbp +2025-06-18T15:22:41.581Z [DEBUG] auth-service - Auth event: login_success - User: user_1028 - IP: 192.168.64.33 - RequestID: cn1549aoji7 +2025-06-18T15:22:41.681Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 330ms - Rows affected: 87 - RequestID: nwl17dssd0d +2025-06-18T15:22:41.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 336ms - RequestID: j2f6khybgvo +2025-06-18T15:22:41.881Z [INFO] payment-service - Operation: inventory_updated - Processing time: 545ms - RequestID: wgveam1ku1b +2025-06-18T15:22:41.981Z [DEBUG] notification-service - GET /api/v1/auth/logout - Status: 403 - Response time: 926ms - IP: 192.168.79.143 - User: user_1059 - RequestID: ln0zwgoikc +2025-06-18T15:22:42.081Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 75ms - Rows affected: 11 - RequestID: w902m23rto +2025-06-18T15:22:42.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 782ms - RequestID: qm9dvwjpztn +2025-06-18T15:22:42.281Z [TRACE] inventory-service - Database SELECT on sessions - Execution time: 97ms - Rows affected: 48 - RequestID: azozuc1f1p +2025-06-18T15:22:42.381Z [DEBUG] user-service - GET /api/v1/users - Status: 400 - Response time: 768ms - IP: 192.168.133.7 - User: user_1058 - RequestID: b0yhd5k7tz +2025-06-18T15:22:42.481Z [INFO] user-service - Auth event: login_failed - User: user_1097 - IP: 192.168.13.72 - RequestID: oynajhyq4h +2025-06-18T15:22:42.581Z [DEBUG] payment-service - POST /api/v1/orders - Status: 401 - Response time: 823ms - IP: 192.168.81.206 - User: user_1099 - RequestID: 4wafqkahbdi +2025-06-18T15:22:42.681Z [INFO] notification-service - Auth event: login_success - User: user_1062 - IP: 192.168.104.37 - RequestID: oat0suk732 +2025-06-18T15:22:42.781Z [TRACE] payment-service - Operation: email_sent - Processing time: 116ms - RequestID: qnejeihlleq +2025-06-18T15:22:42.881Z [DEBUG] notification-service - Operation: order_created - Processing time: 719ms - RequestID: ldy4op8wq88 +2025-06-18T15:22:42.981Z [TRACE] order-service - Operation: inventory_updated - Processing time: 709ms - RequestID: gpficpc5rzb +2025-06-18T15:22:43.081Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 326ms - RequestID: huz2g8aymow +2025-06-18T15:22:43.181Z [INFO] notification-service - Operation: order_created - Processing time: 595ms - RequestID: hwcbzklq8y +2025-06-18T15:22:43.281Z [TRACE] user-service - Database INSERT on users - Execution time: 253ms - Rows affected: 15 - RequestID: k1vuvz8yky +2025-06-18T15:22:43.381Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 11ms - Rows affected: 62 - RequestID: 3magryupcog +2025-06-18T15:22:43.481Z [DEBUG] order-service - Database SELECT on users - Execution time: 416ms - Rows affected: 43 - RequestID: llto2htrcsp +2025-06-18T15:22:43.581Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 828ms - RequestID: lydkddh918f +2025-06-18T15:22:43.681Z [TRACE] payment-service - Auth event: logout - User: user_1084 - IP: 192.168.242.165 - RequestID: zts7j782n7e +2025-06-18T15:22:43.781Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 396ms - RequestID: ch6qt78fxq +2025-06-18T15:22:43.881Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 255ms - Rows affected: 27 - RequestID: al85jgz4mqk +2025-06-18T15:22:43.981Z [INFO] notification-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1749ms - IP: 192.168.11.60 - User: user_1041 - RequestID: 6eh957vwmap +2025-06-18T15:22:44.081Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1085ms - IP: 192.168.68.158 - User: user_1022 - RequestID: 248wsvao28b +2025-06-18T15:22:44.181Z [TRACE] user-service - PATCH /api/v1/orders - Status: 404 - Response time: 1857ms - IP: 192.168.158.144 - User: user_1016 - RequestID: 7pgqykq248f +2025-06-18T15:22:44.281Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1043 - IP: 192.168.167.32 - RequestID: trlqslmdpwm +2025-06-18T15:22:44.381Z [INFO] inventory-service - Auth event: login_failed - User: user_1017 - IP: 192.168.229.123 - RequestID: 86a9piqge37 +2025-06-18T15:22:44.481Z [TRACE] inventory-service - Database INSERT on users - Execution time: 94ms - Rows affected: 12 - RequestID: qvdzkalcrij +2025-06-18T15:22:44.581Z [INFO] notification-service - Operation: notification_queued - Processing time: 302ms - RequestID: o16yayloz9k +2025-06-18T15:22:44.681Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 310ms - Rows affected: 51 - RequestID: bp9z1ywkr98 +2025-06-18T15:22:44.781Z [INFO] auth-service - Auth event: logout - User: user_1007 - IP: 192.168.28.146 - RequestID: lsfncwejik +2025-06-18T15:22:44.881Z [DEBUG] order-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.30.79 - RequestID: e6pjzuhj11q +2025-06-18T15:22:44.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.36.218 - RequestID: 69cb2zp4i +2025-06-18T15:22:45.081Z [INFO] user-service - Database SELECT on products - Execution time: 328ms - Rows affected: 2 - RequestID: ju27xpczt5 +2025-06-18T15:22:45.181Z [TRACE] payment-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.30.79 - RequestID: kypcfmf5dsj +2025-06-18T15:22:45.281Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 200 - Response time: 1165ms - IP: 192.168.32.38 - User: user_1017 - RequestID: psn4vp34utc +2025-06-18T15:22:45.381Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1537ms - IP: 192.168.174.114 - User: user_1081 - RequestID: 1hzxdu0h07k +2025-06-18T15:22:45.481Z [TRACE] auth-service - Operation: cache_miss - Processing time: 280ms - RequestID: n6lof6r62ke +2025-06-18T15:22:45.581Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 439ms - Rows affected: 1 - RequestID: ft3vm284gm +2025-06-18T15:22:45.681Z [TRACE] order-service - Database DELETE on users - Execution time: 288ms - Rows affected: 48 - RequestID: vb4kv5lt14 +2025-06-18T15:22:45.781Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 355ms - RequestID: 1xu4bvvoj0z +2025-06-18T15:22:45.881Z [TRACE] payment-service - Auth event: logout - User: user_1017 - IP: 192.168.31.117 - RequestID: ulnb0a9vy3 +2025-06-18T15:22:45.981Z [DEBUG] user-service - GET /api/v1/payments - Status: 200 - Response time: 1029ms - IP: 192.168.194.41 - User: user_1085 - RequestID: hilr4458d9j +2025-06-18T15:22:46.081Z [INFO] payment-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.181.225 - RequestID: tvqlu5yril +2025-06-18T15:22:46.181Z [TRACE] notification-service - Auth event: token_refresh - User: user_1001 - IP: 192.168.64.33 - RequestID: ea0xksm0str +2025-06-18T15:22:46.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.46.63 - RequestID: 5l6lizr5v49 +2025-06-18T15:22:46.381Z [TRACE] payment-service - Operation: order_created - Processing time: 1035ms - RequestID: sthkcx4smr +2025-06-18T15:22:46.481Z [INFO] user-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.104.37 - RequestID: ti7j0y77xg +2025-06-18T15:22:46.581Z [DEBUG] auth-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 88ms - IP: 192.168.46.63 - User: user_1086 - RequestID: nozeg8e8nwl +2025-06-18T15:22:46.681Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1726ms - IP: 192.168.97.87 - User: user_1034 - RequestID: xl1cewqzxy +2025-06-18T15:22:46.781Z [INFO] payment-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1176ms - IP: 192.168.227.77 - User: user_1010 - RequestID: qykcvsu2jk +2025-06-18T15:22:46.881Z [INFO] auth-service - Database DELETE on users - Execution time: 326ms - Rows affected: 46 - RequestID: t94hxskde2a +2025-06-18T15:22:46.981Z [INFO] order-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 432ms - IP: 192.168.14.77 - User: user_1060 - RequestID: qlwwm6jhxc +2025-06-18T15:22:47.081Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 399ms - RequestID: 8gr8tgiuyxk +2025-06-18T15:22:47.181Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 492ms - Rows affected: 8 - RequestID: 8k8rowinw5e +2025-06-18T15:22:47.281Z [INFO] user-service - Database UPDATE on orders - Execution time: 174ms - Rows affected: 69 - RequestID: 52l9jefrnug +2025-06-18T15:22:47.381Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 789ms - RequestID: wq5pzl619gj +2025-06-18T15:22:47.481Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 201 - Response time: 503ms - IP: 192.168.104.37 - User: user_1096 - RequestID: nq8bvooqi5d +2025-06-18T15:22:47.581Z [TRACE] order-service - Database DELETE on payments - Execution time: 260ms - Rows affected: 1 - RequestID: ixj9lypf4fr +2025-06-18T15:22:47.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 139ms - RequestID: tb1idiovzif +2025-06-18T15:22:47.781Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 275ms - RequestID: zorimmcqb2n +2025-06-18T15:22:47.881Z [DEBUG] order-service - Auth event: login_failed - User: user_1002 - IP: 192.168.31.117 - RequestID: wygmoivn5yq +2025-06-18T15:22:47.981Z [INFO] inventory-service - Database UPDATE on audit_logs - Execution time: 394ms - Rows affected: 24 - RequestID: xhcuk7vldmp +2025-06-18T15:22:48.081Z [INFO] order-service - Database DELETE on products - Execution time: 11ms - Rows affected: 97 - RequestID: ey49bbvwemr +2025-06-18T15:22:48.181Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 143ms - Rows affected: 71 - RequestID: n9jumfyt7fl +2025-06-18T15:22:48.281Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 502 - Response time: 582ms - IP: 192.168.211.72 - User: user_1004 - RequestID: 337vc9beujr +2025-06-18T15:22:48.381Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.11.60 - RequestID: 8iya4905vaa +2025-06-18T15:22:48.481Z [TRACE] notification-service - POST /api/v1/payments - Status: 502 - Response time: 1243ms - IP: 192.168.44.5 - User: user_1010 - RequestID: j9irh809hjm +2025-06-18T15:22:48.581Z [DEBUG] user-service - Database SELECT on users - Execution time: 330ms - Rows affected: 46 - RequestID: 6zaxqca0t1i +2025-06-18T15:22:48.681Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 56ms - IP: 192.168.235.117 - User: user_1082 - RequestID: sc0bm5okwj +2025-06-18T15:22:48.781Z [INFO] notification-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.11.60 - RequestID: jvutqwv7uqp +2025-06-18T15:22:48.881Z [INFO] order-service - Database DELETE on sessions - Execution time: 94ms - Rows affected: 0 - RequestID: 52vberjhuis +2025-06-18T15:22:48.981Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 340ms - Rows affected: 7 - RequestID: 0cyntb1cyk79 +2025-06-18T15:22:49.081Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 512ms - IP: 192.168.159.94 - User: user_1093 - RequestID: kg0e1k31509 +2025-06-18T15:22:49.181Z [INFO] order-service - Auth event: password_change - User: user_1020 - IP: 192.168.196.226 - RequestID: 0ph66g2rphs +2025-06-18T15:22:49.281Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 502 - Response time: 1143ms - IP: 192.168.44.5 - User: user_1026 - RequestID: krbshy0zlv +2025-06-18T15:22:49.381Z [INFO] order-service - PATCH /api/v1/payments - Status: 201 - Response time: 1765ms - IP: 192.168.53.133 - User: user_1074 - RequestID: nq8ewjuoe9b +2025-06-18T15:22:49.481Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 936ms - RequestID: pkuurkm1w6i +2025-06-18T15:22:49.581Z [TRACE] order-service - Auth event: password_change - User: user_1045 - IP: 192.168.133.7 - RequestID: s7c9nx2miwd +2025-06-18T15:22:49.681Z [TRACE] user-service - Operation: cache_miss - Processing time: 725ms - RequestID: 9w6y6pyjv8 +2025-06-18T15:22:49.781Z [INFO] order-service - Database INSERT on users - Execution time: 8ms - Rows affected: 81 - RequestID: mqcwfjvf8y +2025-06-18T15:22:49.881Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 20ms - Rows affected: 5 - RequestID: nslkvw1c5g +2025-06-18T15:22:49.981Z [INFO] payment-service - Operation: payment_processed - Processing time: 757ms - RequestID: 2cr0khq15ya +2025-06-18T15:22:50.081Z [DEBUG] payment-service - Database INSERT on users - Execution time: 235ms - Rows affected: 59 - RequestID: av8m6uchzp8 +2025-06-18T15:22:50.181Z [TRACE] user-service - PATCH /api/v1/orders - Status: 401 - Response time: 1936ms - IP: 192.168.30.79 - User: user_1008 - RequestID: h10szchci4s +2025-06-18T15:22:50.281Z [DEBUG] notification-service - Auth event: logout - User: user_1002 - IP: 192.168.229.123 - RequestID: dgcp5z6m3ym +2025-06-18T15:22:50.381Z [DEBUG] notification-service - Auth event: logout - User: user_1076 - IP: 192.168.144.38 - RequestID: wh5shmq8f7b +2025-06-18T15:22:50.481Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 201 - Response time: 23ms - IP: 192.168.81.206 - User: user_1067 - RequestID: ym3fwh8rt3 +2025-06-18T15:22:50.581Z [DEBUG] order-service - Operation: cache_hit - Processing time: 820ms - RequestID: 62cyqyg3mmo +2025-06-18T15:22:50.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.85.229 - RequestID: fqkmpvzr9o +2025-06-18T15:22:50.781Z [TRACE] payment-service - Auth event: login_success - User: user_1057 - IP: 192.168.235.117 - RequestID: zn5u3knhim +2025-06-18T15:22:50.881Z [TRACE] payment-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.159.94 - RequestID: o4zqxf2g07 +2025-06-18T15:22:50.981Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 225ms - RequestID: 01x0d3kezv57 +2025-06-18T15:22:51.081Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.28.146 - RequestID: pci2mlmel9i +2025-06-18T15:22:51.181Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 200 - Response time: 824ms - IP: 192.168.13.72 - User: user_1084 - RequestID: ca4mh1gujuc +2025-06-18T15:22:51.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1037 - IP: 192.168.181.225 - RequestID: or15uk8g4fh +2025-06-18T15:22:51.381Z [INFO] notification-service - Operation: inventory_updated - Processing time: 882ms - RequestID: 0c504z5s4wp8 +2025-06-18T15:22:51.481Z [TRACE] order-service - Auth event: login_failed - User: user_1006 - IP: 192.168.159.94 - RequestID: fplqlh72qx5 +2025-06-18T15:22:51.581Z [INFO] user-service - Operation: cache_hit - Processing time: 831ms - RequestID: fmn515n178 +2025-06-18T15:22:51.681Z [INFO] auth-service - Auth event: logout - User: user_1086 - IP: 192.168.187.199 - RequestID: xlv5urr8ro +2025-06-18T15:22:51.781Z [TRACE] auth-service - Operation: email_sent - Processing time: 559ms - RequestID: rv7xhfiu87k +2025-06-18T15:22:51.881Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 978ms - RequestID: qffanrqlko +2025-06-18T15:22:51.981Z [INFO] payment-service - Database DELETE on products - Execution time: 124ms - Rows affected: 13 - RequestID: bnfawkylhk9 +2025-06-18T15:22:52.081Z [TRACE] user-service - Database UPDATE on products - Execution time: 495ms - Rows affected: 78 - RequestID: tzzy4z014k8 +2025-06-18T15:22:52.181Z [TRACE] order-service - PATCH /api/v1/payments - Status: 503 - Response time: 1903ms - IP: 192.168.194.41 - User: user_1034 - RequestID: udgt99nd4rn +2025-06-18T15:22:52.281Z [INFO] user-service - Operation: email_sent - Processing time: 629ms - RequestID: 26k0gptu7ek +2025-06-18T15:22:52.381Z [TRACE] order-service - Database SELECT on payments - Execution time: 214ms - Rows affected: 88 - RequestID: njk98u95pok +2025-06-18T15:22:52.481Z [INFO] inventory-service - Auth event: login_failed - User: user_1025 - IP: 192.168.232.72 - RequestID: 7ploc7kxei6 +2025-06-18T15:22:52.581Z [TRACE] notification-service - Database SELECT on payments - Execution time: 222ms - Rows affected: 32 - RequestID: l16pzyndsrc +2025-06-18T15:22:52.681Z [INFO] inventory-service - Operation: cache_miss - Processing time: 933ms - RequestID: ky7dxdvbv4d +2025-06-18T15:22:52.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.158.144 - RequestID: t1x7obod37 +2025-06-18T15:22:52.881Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 200 - Response time: 685ms - IP: 192.168.32.38 - User: user_1031 - RequestID: i3os21dmjqo +2025-06-18T15:22:52.981Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 503 - Response time: 503ms - IP: 192.168.147.171 - User: user_1022 - RequestID: 6j6z9ctu1gr +2025-06-18T15:22:53.081Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1925ms - IP: 192.168.53.133 - User: user_1055 - RequestID: dd5op8spmif +2025-06-18T15:22:53.181Z [INFO] user-service - Operation: notification_queued - Processing time: 436ms - RequestID: puhi3uhum9 +2025-06-18T15:22:53.281Z [INFO] user-service - POST /api/v1/orders - Status: 201 - Response time: 1051ms - IP: 192.168.36.218 - User: user_1035 - RequestID: m1o3uss0ld +2025-06-18T15:22:53.381Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 262ms - Rows affected: 78 - RequestID: fmftbea6nw +2025-06-18T15:22:53.481Z [TRACE] user-service - Auth event: login_success - User: user_1035 - IP: 192.168.28.146 - RequestID: 3d78il8q2xt +2025-06-18T15:22:53.581Z [TRACE] auth-service - Database DELETE on payments - Execution time: 381ms - Rows affected: 87 - RequestID: fy4w6c46q3a +2025-06-18T15:22:53.681Z [INFO] payment-service - Operation: cache_miss - Processing time: 779ms - RequestID: i7rzd23jg3n +2025-06-18T15:22:53.781Z [DEBUG] user-service - Operation: cache_miss - Processing time: 880ms - RequestID: ih9kv944lp +2025-06-18T15:22:53.881Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 467ms - Rows affected: 92 - RequestID: 8wza1m8hqeh +2025-06-18T15:22:53.981Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.242.165 - RequestID: 0pwlwskfoxld +2025-06-18T15:22:54.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1005 - IP: 192.168.10.184 - RequestID: txzz0h04jr +2025-06-18T15:22:54.181Z [INFO] user-service - Database SELECT on payments - Execution time: 225ms - Rows affected: 38 - RequestID: c6zt5ptxdnn +2025-06-18T15:22:54.281Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 397ms - Rows affected: 89 - RequestID: evfb52ukap7 +2025-06-18T15:22:54.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.33.76 - RequestID: rs1wv347xw +2025-06-18T15:22:54.481Z [TRACE] notification-service - Database DELETE on payments - Execution time: 487ms - Rows affected: 73 - RequestID: 261j392ijuxj +2025-06-18T15:22:54.581Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 3ms - Rows affected: 39 - RequestID: ydxcp0kr5 +2025-06-18T15:22:54.681Z [INFO] user-service - Auth event: login_failed - User: user_1088 - IP: 192.168.14.77 - RequestID: bgrnkc644b5 +2025-06-18T15:22:54.781Z [TRACE] user-service - Operation: notification_queued - Processing time: 849ms - RequestID: c5u3e579wp6 +2025-06-18T15:22:54.881Z [TRACE] order-service - Operation: cache_hit - Processing time: 359ms - RequestID: n13oanzsimc +2025-06-18T15:22:54.981Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 223ms - Rows affected: 30 - RequestID: k0klh7bytw +2025-06-18T15:22:55.081Z [INFO] order-service - Auth event: password_change - User: user_1031 - IP: 192.168.46.63 - RequestID: 36dchwdnk8i +2025-06-18T15:22:55.181Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 179ms - Rows affected: 87 - RequestID: jnxrg0xmpdp +2025-06-18T15:22:55.281Z [TRACE] order-service - POST /api/v1/orders - Status: 500 - Response time: 58ms - IP: 192.168.97.87 - User: user_1064 - RequestID: mtzn172yhwg +2025-06-18T15:22:55.381Z [INFO] order-service - Operation: cache_miss - Processing time: 491ms - RequestID: bh1ty6e4hdw +2025-06-18T15:22:55.481Z [DEBUG] inventory-service - Database UPDATE on orders - Execution time: 286ms - Rows affected: 82 - RequestID: k9sijs8h1vh +2025-06-18T15:22:55.581Z [DEBUG] payment-service - Auth event: logout - User: user_1025 - IP: 192.168.68.128 - RequestID: jld0atwid +2025-06-18T15:22:55.681Z [TRACE] payment-service - Database INSERT on payments - Execution time: 453ms - Rows affected: 24 - RequestID: gd1wf40cfic +2025-06-18T15:22:55.781Z [TRACE] payment-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.100.240 - RequestID: gm70k9ru6rh +2025-06-18T15:22:55.881Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 303ms - Rows affected: 5 - RequestID: 9v73qgf15jj +2025-06-18T15:22:55.981Z [TRACE] order-service - GET /api/v1/inventory - Status: 404 - Response time: 1459ms - IP: 192.168.79.143 - User: user_1029 - RequestID: ddj4an3c4bb +2025-06-18T15:22:56.081Z [INFO] notification-service - DELETE /api/v1/payments - Status: 400 - Response time: 1989ms - IP: 192.168.32.38 - User: user_1036 - RequestID: xpapc6k2dro +2025-06-18T15:22:56.181Z [TRACE] order-service - Database INSERT on orders - Execution time: 282ms - Rows affected: 84 - RequestID: p1jjsem12y +2025-06-18T15:22:56.281Z [DEBUG] auth-service - Auth event: logout - User: user_1097 - IP: 192.168.196.226 - RequestID: ejviz4ulvk5 +2025-06-18T15:22:56.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1040 - IP: 192.168.79.141 - RequestID: imfalk6ig8p +2025-06-18T15:22:56.481Z [DEBUG] inventory-service - Database UPDATE on sessions - Execution time: 76ms - Rows affected: 90 - RequestID: z14a52n7qzr +2025-06-18T15:22:56.581Z [INFO] payment-service - PUT /api/v1/users - Status: 400 - Response time: 503ms - IP: 192.168.97.87 - User: user_1091 - RequestID: 9ukx436o1r +2025-06-18T15:22:56.681Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 596ms - RequestID: x5hq94e2v +2025-06-18T15:22:56.781Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 305ms - RequestID: unapx94taxb +2025-06-18T15:22:56.881Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 121ms - Rows affected: 3 - RequestID: ivkmzzdq6ua +2025-06-18T15:22:56.981Z [INFO] user-service - DELETE /api/v1/payments - Status: 401 - Response time: 419ms - IP: 192.168.32.38 - User: user_1032 - RequestID: 0jnazpxw4bzo +2025-06-18T15:22:57.081Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.13.72 - RequestID: fl1lhidt34a +2025-06-18T15:22:57.181Z [INFO] auth-service - Database SELECT on orders - Execution time: 498ms - Rows affected: 87 - RequestID: yf7a9y0ilf9 +2025-06-18T15:22:57.281Z [TRACE] notification-service - Auth event: logout - User: user_1001 - IP: 192.168.46.63 - RequestID: 1gcajl48khu +2025-06-18T15:22:57.381Z [INFO] user-service - Database INSERT on users - Execution time: 77ms - Rows affected: 18 - RequestID: m6hzjrhckxd +2025-06-18T15:22:57.481Z [DEBUG] order-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.194.41 - RequestID: vplyqkbd8gr +2025-06-18T15:22:57.581Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 1047ms - RequestID: gkoe7270esl +2025-06-18T15:22:57.681Z [TRACE] payment-service - Auth event: login_success - User: user_1072 - IP: 192.168.167.32 - RequestID: xw84big0jeq +2025-06-18T15:22:57.781Z [TRACE] user-service - Database UPDATE on payments - Execution time: 226ms - Rows affected: 61 - RequestID: j44dwji047k +2025-06-18T15:22:57.881Z [TRACE] notification-service - Database SELECT on products - Execution time: 302ms - Rows affected: 66 - RequestID: lghvb49nv8g +2025-06-18T15:22:57.981Z [TRACE] auth-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1785ms - IP: 192.168.174.114 - User: user_1006 - RequestID: 1lbu5zk8dgc +2025-06-18T15:22:58.081Z [TRACE] payment-service - Operation: cache_miss - Processing time: 270ms - RequestID: 8u4yd91c8ld +2025-06-18T15:22:58.181Z [TRACE] inventory-service - Auth event: logout - User: user_1097 - IP: 192.168.158.144 - RequestID: ajq3bntsm49 +2025-06-18T15:22:58.281Z [DEBUG] auth-service - GET /api/v1/orders - Status: 200 - Response time: 1938ms - IP: 192.168.85.229 - User: user_1047 - RequestID: jihrv9xp88q +2025-06-18T15:22:58.381Z [TRACE] payment-service - PUT /api/v1/orders - Status: 502 - Response time: 1079ms - IP: 192.168.229.123 - User: user_1073 - RequestID: ka3s16sfn1e +2025-06-18T15:22:58.481Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 480ms - Rows affected: 23 - RequestID: ua9ps233nwr +2025-06-18T15:22:58.581Z [TRACE] inventory-service - Database UPDATE on orders - Execution time: 273ms - Rows affected: 32 - RequestID: rcznd6lf1bn +2025-06-18T15:22:58.681Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 100ms - IP: 192.168.227.77 - User: user_1047 - RequestID: pip0ixtfsbd +2025-06-18T15:22:58.781Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 463ms - IP: 192.168.10.184 - User: user_1089 - RequestID: vurzn9s4oos +2025-06-18T15:22:58.881Z [TRACE] user-service - GET /api/v1/users - Status: 201 - Response time: 1172ms - IP: 192.168.240.169 - User: user_1071 - RequestID: e094a1sdk3v +2025-06-18T15:22:58.981Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 796ms - RequestID: yhcegjm5h3 +2025-06-18T15:22:59.081Z [INFO] payment-service - POST /api/v1/users - Status: 500 - Response time: 1950ms - IP: 192.168.68.158 - User: user_1080 - RequestID: vcz66keun5l +2025-06-18T15:22:59.181Z [DEBUG] auth-service - PUT /api/v1/users - Status: 500 - Response time: 1871ms - IP: 192.168.64.33 - User: user_1076 - RequestID: coglefpgwxh +2025-06-18T15:22:59.281Z [DEBUG] order-service - Auth event: login_attempt - User: user_1089 - IP: 192.168.85.229 - RequestID: vwue9xcx0hb +2025-06-18T15:22:59.381Z [INFO] order-service - Operation: email_sent - Processing time: 600ms - RequestID: 7410kk0lmcl +2025-06-18T15:22:59.481Z [INFO] order-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1633ms - IP: 192.168.227.233 - User: user_1098 - RequestID: cqc3cryl3ui +2025-06-18T15:22:59.581Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 503 - Response time: 247ms - IP: 192.168.64.33 - User: user_1022 - RequestID: k2tzwcnjpp +2025-06-18T15:22:59.681Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 737ms - RequestID: cmoyjxqxitw +2025-06-18T15:22:59.781Z [TRACE] order-service - Operation: email_sent - Processing time: 574ms - RequestID: z4q6t0mwxbr +2025-06-18T15:22:59.881Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.30.79 - RequestID: u3mqiip9hbs +2025-06-18T15:22:59.981Z [DEBUG] notification-service - Operation: order_created - Processing time: 76ms - RequestID: 0pp3uat7u9sf +2025-06-18T15:23:00.081Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 162ms - Rows affected: 0 - RequestID: tfk10chuql +2025-06-18T15:23:00.181Z [TRACE] user-service - PATCH /api/v1/payments - Status: 201 - Response time: 1060ms - IP: 192.168.138.123 - User: user_1047 - RequestID: zogtmrmnc8 +2025-06-18T15:23:00.281Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 1779ms - IP: 192.168.100.240 - User: user_1070 - RequestID: 5xfpzzomqt8 +2025-06-18T15:23:00.381Z [DEBUG] user-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.170.215 - RequestID: 5c0lmn3h7zl +2025-06-18T15:23:00.481Z [INFO] order-service - Database SELECT on users - Execution time: 242ms - Rows affected: 51 - RequestID: 1ffsif09hha +2025-06-18T15:23:00.581Z [INFO] order-service - Database INSERT on sessions - Execution time: 485ms - Rows affected: 31 - RequestID: 1dwcnmg7vxs +2025-06-18T15:23:00.681Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 225ms - IP: 192.168.194.41 - User: user_1057 - RequestID: 4v1hc869fpi +2025-06-18T15:23:00.781Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 451ms - Rows affected: 36 - RequestID: 4xyq1lkcv0n +2025-06-18T15:23:00.881Z [DEBUG] user-service - Operation: payment_processed - Processing time: 844ms - RequestID: uhfzf2dc43o +2025-06-18T15:23:00.981Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 218ms - Rows affected: 91 - RequestID: 6deb7tkm41v +2025-06-18T15:23:01.081Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 838ms - IP: 192.168.10.184 - User: user_1097 - RequestID: 6idlw9i0o6o +2025-06-18T15:23:01.181Z [DEBUG] notification-service - Auth event: password_change - User: user_1095 - IP: 192.168.174.114 - RequestID: soks0jr0pzm +2025-06-18T15:23:01.281Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 88ms - Rows affected: 94 - RequestID: k4uprvu4n1m +2025-06-18T15:23:01.381Z [INFO] auth-service - POST /api/v1/users - Status: 200 - Response time: 1300ms - IP: 192.168.227.77 - User: user_1048 - RequestID: agqkc90l2ot +2025-06-18T15:23:01.481Z [TRACE] auth-service - Database DELETE on products - Execution time: 304ms - Rows affected: 12 - RequestID: icr6bsrpsq9 +2025-06-18T15:23:01.581Z [TRACE] user-service - Database SELECT on payments - Execution time: 228ms - Rows affected: 4 - RequestID: muw1ui343ei +2025-06-18T15:23:01.681Z [TRACE] auth-service - Database INSERT on users - Execution time: 93ms - Rows affected: 12 - RequestID: cexo042tx4i +2025-06-18T15:23:01.781Z [DEBUG] auth-service - Operation: email_sent - Processing time: 521ms - RequestID: 1fr8bmlhyz9 +2025-06-18T15:23:01.881Z [INFO] payment-service - Auth event: login_failed - User: user_1010 - IP: 192.168.159.94 - RequestID: orhb0gyj388 +2025-06-18T15:23:01.981Z [DEBUG] user-service - Auth event: password_change - User: user_1075 - IP: 192.168.181.225 - RequestID: hn2toh8kix +2025-06-18T15:23:02.081Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1004 - IP: 192.168.14.77 - RequestID: irnp6wxikvj +2025-06-18T15:23:02.181Z [TRACE] payment-service - POST /api/v1/auth/logout - Status: 404 - Response time: 900ms - IP: 192.168.133.7 - User: user_1010 - RequestID: gwbpsidw27 +2025-06-18T15:23:02.281Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 210ms - Rows affected: 29 - RequestID: bdyqeq3icbf +2025-06-18T15:23:02.381Z [TRACE] payment-service - Auth event: password_change - User: user_1004 - IP: 192.168.229.123 - RequestID: pzonq5rl94b +2025-06-18T15:23:02.481Z [INFO] auth-service - PATCH /api/v1/orders - Status: 401 - Response time: 1315ms - IP: 192.168.32.38 - User: user_1046 - RequestID: 8z9yeoe5qfm +2025-06-18T15:23:02.581Z [TRACE] notification-service - Database DELETE on products - Execution time: 331ms - Rows affected: 13 - RequestID: 9fs1q5l8dt +2025-06-18T15:23:02.681Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 3ms - Rows affected: 46 - RequestID: jkubviv1ema +2025-06-18T15:23:02.781Z [TRACE] auth-service - GET /api/v1/payments - Status: 401 - Response time: 1216ms - IP: 192.168.11.60 - User: user_1026 - RequestID: 08f8ie02n7a5 +2025-06-18T15:23:02.881Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 84ms - Rows affected: 69 - RequestID: jw8rd1ww4k +2025-06-18T15:23:02.981Z [INFO] payment-service - Operation: order_created - Processing time: 358ms - RequestID: ny6plni25te +2025-06-18T15:23:03.081Z [TRACE] inventory-service - Auth event: logout - User: user_1054 - IP: 192.168.174.114 - RequestID: 6emxrn8kmv +2025-06-18T15:23:03.181Z [TRACE] auth-service - Auth event: password_change - User: user_1022 - IP: 192.168.32.38 - RequestID: moy00ddx5y +2025-06-18T15:23:03.281Z [TRACE] order-service - PATCH /api/v1/orders - Status: 403 - Response time: 1550ms - IP: 192.168.30.79 - User: user_1058 - RequestID: 71563y98wb +2025-06-18T15:23:03.381Z [INFO] notification-service - Operation: notification_queued - Processing time: 88ms - RequestID: 9dx4xlz8c3g +2025-06-18T15:23:03.481Z [INFO] order-service - Operation: webhook_sent - Processing time: 846ms - RequestID: 8rz7o4xv25m +2025-06-18T15:23:03.581Z [DEBUG] auth-service - Auth event: logout - User: user_1010 - IP: 192.168.133.7 - RequestID: wufm5rzajqm +2025-06-18T15:23:03.681Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 201 - Response time: 1787ms - IP: 192.168.1.152 - User: user_1065 - RequestID: yck3zkwr5w +2025-06-18T15:23:03.781Z [DEBUG] user-service - Auth event: login_failed - User: user_1059 - IP: 192.168.170.215 - RequestID: g9g20p5i9gu +2025-06-18T15:23:03.881Z [INFO] notification-service - Operation: webhook_sent - Processing time: 98ms - RequestID: kzo62w8su9 +2025-06-18T15:23:03.981Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 509ms - RequestID: juohl9hkgy +2025-06-18T15:23:04.081Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 222ms - Rows affected: 33 - RequestID: f8kqsnkjf1h +2025-06-18T15:23:04.181Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 266ms - Rows affected: 25 - RequestID: jpcc38lf8l +2025-06-18T15:23:04.281Z [INFO] inventory-service - Auth event: logout - User: user_1083 - IP: 192.168.174.114 - RequestID: 6mx10em64ou +2025-06-18T15:23:04.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 886ms - RequestID: j7ofsnb7n5b +2025-06-18T15:23:04.481Z [DEBUG] auth-service - GET /api/v1/orders - Status: 401 - Response time: 1624ms - IP: 192.168.227.233 - User: user_1061 - RequestID: qrorojcs90p +2025-06-18T15:23:04.581Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 113ms - Rows affected: 65 - RequestID: uneqkq6zmcc +2025-06-18T15:23:04.681Z [TRACE] auth-service - Auth event: password_change - User: user_1038 - IP: 192.168.196.226 - RequestID: 5c4lts2u5hc +2025-06-18T15:23:04.781Z [INFO] inventory-service - Database INSERT on users - Execution time: 114ms - Rows affected: 38 - RequestID: 4vjmd3uieyo +2025-06-18T15:23:04.881Z [INFO] user-service - Database INSERT on users - Execution time: 184ms - Rows affected: 42 - RequestID: kdyq19xdi3 +2025-06-18T15:23:04.981Z [DEBUG] user-service - Auth event: login_success - User: user_1035 - IP: 192.168.235.117 - RequestID: sr6ykc1zhqp +2025-06-18T15:23:05.081Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 328ms - IP: 192.168.227.77 - User: user_1097 - RequestID: mvfe34u3h77 +2025-06-18T15:23:05.181Z [TRACE] auth-service - Database DELETE on users - Execution time: 308ms - Rows affected: 10 - RequestID: yr981g6oque +2025-06-18T15:23:05.281Z [TRACE] notification-service - POST /api/v1/auth/logout - Status: 404 - Response time: 271ms - IP: 192.168.30.79 - User: user_1010 - RequestID: sr8hqkn6a7d +2025-06-18T15:23:05.381Z [TRACE] payment-service - POST /api/v1/users - Status: 200 - Response time: 1735ms - IP: 192.168.33.76 - User: user_1022 - RequestID: o2h4kp3ppf +2025-06-18T15:23:05.481Z [TRACE] order-service - POST /api/v1/payments - Status: 404 - Response time: 1018ms - IP: 192.168.194.41 - User: user_1022 - RequestID: 19cpjzm1df5 +2025-06-18T15:23:05.581Z [TRACE] auth-service - POST /api/v1/auth/logout - Status: 404 - Response time: 380ms - IP: 192.168.32.38 - User: user_1009 - RequestID: zno3tu441gk +2025-06-18T15:23:05.681Z [TRACE] user-service - PATCH /api/v1/users - Status: 500 - Response time: 1113ms - IP: 192.168.181.225 - User: user_1061 - RequestID: pe3aczz4np +2025-06-18T15:23:05.781Z [TRACE] user-service - PUT /api/v1/inventory - Status: 200 - Response time: 511ms - IP: 192.168.97.87 - User: user_1055 - RequestID: 5qw9re763l3 +2025-06-18T15:23:05.881Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 201 - Response time: 1588ms - IP: 192.168.141.100 - User: user_1003 - RequestID: 1d0gawyiitf +2025-06-18T15:23:05.981Z [INFO] auth-service - Operation: order_created - Processing time: 638ms - RequestID: 4opuujdwyso +2025-06-18T15:23:06.081Z [INFO] inventory-service - Operation: notification_queued - Processing time: 433ms - RequestID: r0ryt1acldb +2025-06-18T15:23:06.181Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 25ms - Rows affected: 22 - RequestID: 55smwc8bb5w +2025-06-18T15:23:06.281Z [TRACE] user-service - POST /api/v1/payments - Status: 502 - Response time: 1632ms - IP: 192.168.170.215 - User: user_1068 - RequestID: oxmdcuocat +2025-06-18T15:23:06.381Z [INFO] inventory-service - Operation: notification_queued - Processing time: 419ms - RequestID: v7i4wccfrcj +2025-06-18T15:23:06.481Z [INFO] user-service - Operation: cache_miss - Processing time: 484ms - RequestID: 4rmialnanb6 +2025-06-18T15:23:06.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 977ms - RequestID: y3y786thmg +2025-06-18T15:23:06.681Z [DEBUG] order-service - PUT /api/v1/orders - Status: 401 - Response time: 1763ms - IP: 192.168.79.143 - User: user_1089 - RequestID: 4uqpn57molp +2025-06-18T15:23:06.781Z [DEBUG] inventory-service - Auth event: password_change - User: user_1021 - IP: 192.168.189.103 - RequestID: pvsp73ilbd +2025-06-18T15:23:06.881Z [INFO] payment-service - GET /api/v1/auth/login - Status: 401 - Response time: 1900ms - IP: 192.168.68.128 - User: user_1055 - RequestID: zmcxs2m6io +2025-06-18T15:23:06.981Z [TRACE] payment-service - GET /api/v1/users - Status: 400 - Response time: 1042ms - IP: 192.168.187.199 - User: user_1061 - RequestID: xbrmepgh5s +2025-06-18T15:23:07.081Z [DEBUG] user-service - Auth event: password_change - User: user_1010 - IP: 192.168.64.33 - RequestID: ldd1k7asutc +2025-06-18T15:23:07.181Z [INFO] inventory-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1585ms - IP: 192.168.1.152 - User: user_1096 - RequestID: 6aps3owpz9y +2025-06-18T15:23:07.281Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 175ms - Rows affected: 47 - RequestID: v15lu3zc0bs +2025-06-18T15:23:07.381Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 310ms - RequestID: q7n0f1bg78 +2025-06-18T15:23:07.481Z [TRACE] inventory-service - Auth event: login_success - User: user_1019 - IP: 192.168.64.33 - RequestID: sde4xg5nfz9 +2025-06-18T15:23:07.581Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 162ms - Rows affected: 22 - RequestID: 6i7gehi6l7x +2025-06-18T15:23:07.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1011 - IP: 192.168.144.38 - RequestID: k1nfbf32s4 +2025-06-18T15:23:07.781Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 110ms - Rows affected: 48 - RequestID: gaq1dp3me5g +2025-06-18T15:23:07.881Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 400 - Response time: 413ms - IP: 192.168.33.76 - User: user_1015 - RequestID: pakvwex3p5 +2025-06-18T15:23:07.981Z [TRACE] payment-service - Auth event: login_success - User: user_1074 - IP: 192.168.227.77 - RequestID: f2uz2x5tqmv +2025-06-18T15:23:08.081Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 200 - Response time: 960ms - IP: 192.168.189.103 - User: user_1085 - RequestID: 1by4v0j494h +2025-06-18T15:23:08.181Z [INFO] inventory-service - Operation: cache_miss - Processing time: 438ms - RequestID: mw79ecwdo5 +2025-06-18T15:23:08.281Z [INFO] auth-service - Auth event: password_change - User: user_1056 - IP: 192.168.30.79 - RequestID: 3gbaxpeq2ug +2025-06-18T15:23:08.381Z [TRACE] auth-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.170.215 - RequestID: yspxk4wzcgj +2025-06-18T15:23:08.481Z [TRACE] order-service - Database SELECT on orders - Execution time: 330ms - Rows affected: 33 - RequestID: 3e4b6puxlse +2025-06-18T15:23:08.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1099 - IP: 192.168.28.146 - RequestID: b7s6few4vhk +2025-06-18T15:23:08.681Z [TRACE] inventory-service - Operation: order_created - Processing time: 98ms - RequestID: l7ew0hvwn7m +2025-06-18T15:23:08.781Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 642ms - IP: 192.168.147.171 - User: user_1067 - RequestID: fw8hqi5834o +2025-06-18T15:23:08.881Z [TRACE] user-service - Database UPDATE on users - Execution time: 2ms - Rows affected: 53 - RequestID: bucy6j2w9ok +2025-06-18T15:23:08.981Z [TRACE] payment-service - Database DELETE on users - Execution time: 200ms - Rows affected: 91 - RequestID: flbk06n6eum +2025-06-18T15:23:09.081Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 268ms - Rows affected: 21 - RequestID: de17t88zvrf +2025-06-18T15:23:09.181Z [TRACE] order-service - Auth event: login_success - User: user_1089 - IP: 192.168.159.94 - RequestID: ympzxm5xko +2025-06-18T15:23:09.281Z [DEBUG] order-service - POST /api/v1/payments - Status: 502 - Response time: 1052ms - IP: 192.168.138.123 - User: user_1010 - RequestID: cogzpmmuzeo +2025-06-18T15:23:09.381Z [DEBUG] payment-service - Database SELECT on orders - Execution time: 340ms - Rows affected: 98 - RequestID: n12osfk2v3k +2025-06-18T15:23:09.481Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 249ms - Rows affected: 73 - RequestID: ybi66dmcb9j +2025-06-18T15:23:09.581Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 697ms - RequestID: 2i6rbqet1wx +2025-06-18T15:23:09.681Z [TRACE] auth-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.167.32 - RequestID: o90yqjqvqrn +2025-06-18T15:23:09.781Z [INFO] notification-service - Database INSERT on audit_logs - Execution time: 195ms - Rows affected: 30 - RequestID: ex3tgj3ex7b +2025-06-18T15:23:09.881Z [INFO] order-service - Database INSERT on sessions - Execution time: 52ms - Rows affected: 8 - RequestID: zyulsctayea +2025-06-18T15:23:09.981Z [DEBUG] auth-service - Operation: email_sent - Processing time: 781ms - RequestID: 7df0e9d3q4g +2025-06-18T15:23:10.081Z [INFO] order-service - Database UPDATE on users - Execution time: 166ms - Rows affected: 49 - RequestID: n1k9on037r +2025-06-18T15:23:10.181Z [DEBUG] order-service - Operation: payment_processed - Processing time: 308ms - RequestID: hqkr4qaijno +2025-06-18T15:23:10.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.113.218 - RequestID: 8jjipsjtocs +2025-06-18T15:23:10.381Z [DEBUG] order-service - GET /api/v1/inventory - Status: 403 - Response time: 1002ms - IP: 192.168.174.114 - User: user_1082 - RequestID: yit2hrnm82 +2025-06-18T15:23:10.481Z [INFO] user-service - Operation: cache_miss - Processing time: 362ms - RequestID: fei6efzvox +2025-06-18T15:23:10.581Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 503 - Response time: 1034ms - IP: 192.168.28.146 - User: user_1050 - RequestID: rwmzwcr6i9 +2025-06-18T15:23:10.681Z [TRACE] payment-service - Auth event: login_success - User: user_1068 - IP: 192.168.240.169 - RequestID: dlwco3l1wyi +2025-06-18T15:23:10.781Z [INFO] user-service - Database UPDATE on payments - Execution time: 149ms - Rows affected: 25 - RequestID: ke9hoqwm8de +2025-06-18T15:23:10.881Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1737ms - IP: 192.168.167.32 - User: user_1077 - RequestID: fys59et421g +2025-06-18T15:23:10.981Z [DEBUG] order-service - GET /api/v1/users - Status: 502 - Response time: 1594ms - IP: 192.168.33.76 - User: user_1051 - RequestID: 5mlu6crco6x +2025-06-18T15:23:11.081Z [INFO] payment-service - Operation: notification_queued - Processing time: 169ms - RequestID: u7e87lm8y9f +2025-06-18T15:23:11.181Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 94ms - Rows affected: 37 - RequestID: p8alddx4cy +2025-06-18T15:23:11.281Z [TRACE] payment-service - Auth event: login_failed - User: user_1048 - IP: 192.168.138.123 - RequestID: 4t0oi67dgyi +2025-06-18T15:23:11.381Z [TRACE] notification-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.138.123 - RequestID: 1md0qeouwk +2025-06-18T15:23:11.481Z [INFO] payment-service - GET /api/v1/payments - Status: 500 - Response time: 1706ms - IP: 192.168.14.77 - User: user_1095 - RequestID: 25igjdoanho +2025-06-18T15:23:11.581Z [TRACE] auth-service - Auth event: login_success - User: user_1032 - IP: 192.168.144.38 - RequestID: i8z8jbp8mo +2025-06-18T15:23:11.681Z [TRACE] notification-service - Operation: cache_hit - Processing time: 741ms - RequestID: 88k4pxt9785 +2025-06-18T15:23:11.781Z [INFO] inventory-service - Operation: order_created - Processing time: 140ms - RequestID: quw0ff9ycde +2025-06-18T15:23:11.881Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 451ms - RequestID: 7t0lhlv1zqv +2025-06-18T15:23:11.981Z [DEBUG] notification-service - Auth event: password_change - User: user_1088 - IP: 192.168.97.87 - RequestID: 6obk7xzg5qi +2025-06-18T15:23:12.081Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 895ms - RequestID: q5lexs74eul +2025-06-18T15:23:12.181Z [TRACE] user-service - Database INSERT on users - Execution time: 192ms - Rows affected: 18 - RequestID: jnbhdp3q89 +2025-06-18T15:23:12.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 382ms - RequestID: 5cctemghd0m +2025-06-18T15:23:12.381Z [TRACE] inventory-service - PATCH /api/v1/orders - Status: 502 - Response time: 697ms - IP: 192.168.46.63 - User: user_1062 - RequestID: k6cex1icvq +2025-06-18T15:23:12.481Z [INFO] notification-service - POST /api/v1/orders - Status: 401 - Response time: 1797ms - IP: 192.168.232.72 - User: user_1052 - RequestID: zrzlxepbleg +2025-06-18T15:23:12.581Z [TRACE] payment-service - Operation: cache_miss - Processing time: 333ms - RequestID: qpbjla1lm2n +2025-06-18T15:23:12.681Z [INFO] payment-service - Operation: inventory_updated - Processing time: 769ms - RequestID: wm8hq8prlpf +2025-06-18T15:23:12.781Z [DEBUG] payment-service - POST /api/v1/payments - Status: 404 - Response time: 595ms - IP: 192.168.247.134 - User: user_1012 - RequestID: 2d5mg3m87f7 +2025-06-18T15:23:12.881Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 834ms - RequestID: oi0otdnejg +2025-06-18T15:23:12.981Z [DEBUG] order-service - Operation: order_created - Processing time: 810ms - RequestID: qjti2we4k3j +2025-06-18T15:23:13.081Z [INFO] payment-service - Operation: webhook_sent - Processing time: 357ms - RequestID: nveiznzbjmn +2025-06-18T15:23:13.181Z [DEBUG] order-service - Operation: payment_processed - Processing time: 811ms - RequestID: wohx4dx8tql +2025-06-18T15:23:13.281Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 502 - Response time: 1519ms - IP: 192.168.14.77 - User: user_1034 - RequestID: 57xa1fa4g5 +2025-06-18T15:23:13.381Z [DEBUG] user-service - Database UPDATE on products - Execution time: 171ms - Rows affected: 85 - RequestID: isvqzi0zcvc +2025-06-18T15:23:13.481Z [DEBUG] order-service - Database DELETE on payments - Execution time: 395ms - Rows affected: 92 - RequestID: g374p2zxu58 +2025-06-18T15:23:13.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1084 - IP: 192.168.104.37 - RequestID: v1ifnpfb1ym +2025-06-18T15:23:13.681Z [DEBUG] notification-service - Auth event: login_success - User: user_1070 - IP: 192.168.13.72 - RequestID: 8dew1uxnnvt +2025-06-18T15:23:13.781Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 822ms - RequestID: ioydlweqcjc +2025-06-18T15:23:13.881Z [INFO] order-service - Database DELETE on users - Execution time: 13ms - Rows affected: 50 - RequestID: glcnpgp4n9o +2025-06-18T15:23:13.981Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 568ms - RequestID: w0kqpfg72h +2025-06-18T15:23:14.081Z [INFO] payment-service - PUT /api/v1/payments - Status: 201 - Response time: 129ms - IP: 192.168.32.38 - User: user_1078 - RequestID: c98fz8l102w +2025-06-18T15:23:14.181Z [TRACE] order-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.235.117 - RequestID: ld5on8174cl +2025-06-18T15:23:14.281Z [TRACE] user-service - Operation: email_sent - Processing time: 1020ms - RequestID: 4ibdrupfmbt +2025-06-18T15:23:14.381Z [DEBUG] order-service - GET /api/v1/payments - Status: 503 - Response time: 1542ms - IP: 192.168.11.60 - User: user_1008 - RequestID: 3swni1q1w53 +2025-06-18T15:23:14.481Z [INFO] order-service - Database SELECT on payments - Execution time: 138ms - Rows affected: 15 - RequestID: vbf87hx4l1 +2025-06-18T15:23:14.581Z [TRACE] notification-service - Operation: payment_processed - Processing time: 407ms - RequestID: 983sx4jio7e +2025-06-18T15:23:14.681Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 46ms - Rows affected: 68 - RequestID: 4g9m67svckp +2025-06-18T15:23:14.781Z [INFO] notification-service - PATCH /api/v1/users - Status: 404 - Response time: 223ms - IP: 192.168.1.152 - User: user_1064 - RequestID: exwjmycj6id +2025-06-18T15:23:14.881Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 700ms - RequestID: dszahfx0jd6 +2025-06-18T15:23:14.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.81.206 - RequestID: etwfk6pw0xc +2025-06-18T15:23:15.081Z [INFO] payment-service - Database DELETE on orders - Execution time: 360ms - Rows affected: 2 - RequestID: d0ocag0l4ff +2025-06-18T15:23:15.181Z [INFO] inventory-service - Auth event: login_failed - User: user_1079 - IP: 192.168.81.206 - RequestID: wpo0x5vkifm +2025-06-18T15:23:15.281Z [TRACE] order-service - POST /api/v1/users - Status: 500 - Response time: 1263ms - IP: 192.168.44.5 - User: user_1033 - RequestID: 3mhtfsnnrkb +2025-06-18T15:23:15.381Z [INFO] order-service - Operation: order_created - Processing time: 762ms - RequestID: wa8apzsl2rk +2025-06-18T15:23:15.481Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 302ms - Rows affected: 74 - RequestID: 1g1387qlq78 +2025-06-18T15:23:15.581Z [DEBUG] payment-service - Auth event: logout - User: user_1077 - IP: 192.168.174.114 - RequestID: gg427tfbadm +2025-06-18T15:23:15.681Z [INFO] user-service - Auth event: login_success - User: user_1017 - IP: 192.168.44.5 - RequestID: 77dcy7q98r6 +2025-06-18T15:23:15.781Z [TRACE] order-service - Auth event: logout - User: user_1042 - IP: 192.168.46.63 - RequestID: 86x2duoisnn +2025-06-18T15:23:15.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1071 - IP: 192.168.170.215 - RequestID: 50c3roar868 +2025-06-18T15:23:15.981Z [TRACE] order-service - Database UPDATE on orders - Execution time: 316ms - Rows affected: 14 - RequestID: bdb7kdmogua +2025-06-18T15:23:16.081Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 315ms - IP: 192.168.28.146 - User: user_1066 - RequestID: lid1unanljl +2025-06-18T15:23:16.181Z [INFO] user-service - Auth event: login_success - User: user_1015 - IP: 192.168.79.141 - RequestID: bpwax16280i +2025-06-18T15:23:16.281Z [INFO] inventory-service - Database INSERT on payments - Execution time: 88ms - Rows affected: 68 - RequestID: qnsymru0uo +2025-06-18T15:23:16.381Z [INFO] auth-service - Database SELECT on sessions - Execution time: 171ms - Rows affected: 13 - RequestID: s8x3mh156ae +2025-06-18T15:23:16.481Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 189ms - RequestID: kd01w8r5dzf +2025-06-18T15:23:16.581Z [TRACE] user-service - PATCH /api/v1/users - Status: 403 - Response time: 1026ms - IP: 192.168.227.77 - User: user_1098 - RequestID: z6b83qdi0b +2025-06-18T15:23:16.681Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 51ms - Rows affected: 38 - RequestID: l67ilxgkd99 +2025-06-18T15:23:16.781Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 860ms - RequestID: 5alnv16905s +2025-06-18T15:23:16.881Z [DEBUG] notification-service - Database DELETE on users - Execution time: 278ms - Rows affected: 18 - RequestID: n09tpmll6uh +2025-06-18T15:23:16.981Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.187.199 - RequestID: pqqcd1ef5n +2025-06-18T15:23:17.081Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 444ms - Rows affected: 37 - RequestID: 8d8gi4o1hde +2025-06-18T15:23:17.181Z [TRACE] payment-service - Auth event: login_attempt - User: user_1032 - IP: 192.168.79.143 - RequestID: 28psan5hg9th +2025-06-18T15:23:17.281Z [INFO] notification-service - Database DELETE on orders - Execution time: 295ms - Rows affected: 43 - RequestID: 3c57m23vf0t +2025-06-18T15:23:17.381Z [DEBUG] notification-service - PATCH /api/v1/inventory - Status: 400 - Response time: 1971ms - IP: 192.168.187.199 - User: user_1071 - RequestID: 0wlhjze1h0lk +2025-06-18T15:23:17.481Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 401 - Response time: 1110ms - IP: 192.168.68.158 - User: user_1061 - RequestID: 3x5sbkorjyc +2025-06-18T15:23:17.581Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 815ms - RequestID: eqda6wscnzk +2025-06-18T15:23:17.681Z [TRACE] order-service - GET /api/v1/users - Status: 502 - Response time: 1654ms - IP: 192.168.235.117 - User: user_1045 - RequestID: 2hcthcchnm +2025-06-18T15:23:17.781Z [INFO] user-service - Database UPDATE on users - Execution time: 114ms - Rows affected: 99 - RequestID: azk2gqs41o +2025-06-18T15:23:17.881Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 633ms - RequestID: 72acnhnhk5e +2025-06-18T15:23:17.981Z [TRACE] order-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.30.79 - RequestID: fmwctzz4om +2025-06-18T15:23:18.081Z [TRACE] order-service - Database INSERT on sessions - Execution time: 176ms - Rows affected: 4 - RequestID: 6tei45sdtsu +2025-06-18T15:23:18.181Z [INFO] payment-service - Auth event: login_failed - User: user_1054 - IP: 192.168.113.218 - RequestID: spt94hhu7p +2025-06-18T15:23:18.281Z [INFO] auth-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.181.225 - RequestID: cg1wzal22tr +2025-06-18T15:23:18.381Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 384ms - Rows affected: 98 - RequestID: w98z21tsyu +2025-06-18T15:23:18.481Z [INFO] user-service - Auth event: password_change - User: user_1056 - IP: 192.168.240.169 - RequestID: xpp2tu6r9x +2025-06-18T15:23:18.581Z [INFO] auth-service - Database DELETE on payments - Execution time: 274ms - Rows affected: 79 - RequestID: 6gfk6kfitvw +2025-06-18T15:23:18.681Z [DEBUG] auth-service - Operation: order_created - Processing time: 680ms - RequestID: 18zdh5jecnf +2025-06-18T15:23:18.781Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.227.233 - RequestID: sa35bqiq9hs +2025-06-18T15:23:18.881Z [TRACE] notification-service - Auth event: logout - User: user_1096 - IP: 192.168.189.103 - RequestID: qhyqy16i44r +2025-06-18T15:23:18.981Z [INFO] order-service - POST /api/v1/auth/login - Status: 502 - Response time: 1295ms - IP: 192.168.240.169 - User: user_1085 - RequestID: n5wwmsyv0ln +2025-06-18T15:23:19.081Z [INFO] order-service - Operation: email_sent - Processing time: 141ms - RequestID: zgsq78to6s +2025-06-18T15:23:19.181Z [INFO] auth-service - Database UPDATE on sessions - Execution time: 81ms - Rows affected: 79 - RequestID: 0fuxs8y5rxca +2025-06-18T15:23:19.281Z [INFO] auth-service - GET /api/v1/inventory - Status: 500 - Response time: 219ms - IP: 192.168.46.63 - User: user_1098 - RequestID: 3opv1j1s9ee +2025-06-18T15:23:19.381Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 296ms - Rows affected: 46 - RequestID: qleoujmaxne +2025-06-18T15:23:19.481Z [TRACE] user-service - Operation: cache_hit - Processing time: 105ms - RequestID: ev2e1s49rhp +2025-06-18T15:23:19.581Z [TRACE] notification-service - Database INSERT on payments - Execution time: 416ms - Rows affected: 27 - RequestID: 9b4q5ez4omg +2025-06-18T15:23:19.681Z [INFO] user-service - Operation: cache_hit - Processing time: 956ms - RequestID: h2mvi5km0n +2025-06-18T15:23:19.781Z [DEBUG] user-service - Operation: payment_processed - Processing time: 743ms - RequestID: esmrlp6wvn6 +2025-06-18T15:23:19.881Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 403 - Response time: 510ms - IP: 192.168.11.60 - User: user_1077 - RequestID: geggha1ubqm +2025-06-18T15:23:19.981Z [INFO] auth-service - Auth event: login_failed - User: user_1082 - IP: 192.168.79.143 - RequestID: o0t8pba107 +2025-06-18T15:23:20.081Z [INFO] payment-service - Operation: payment_processed - Processing time: 963ms - RequestID: kdb6et6ll4n +2025-06-18T15:23:20.181Z [TRACE] payment-service - POST /api/v1/orders - Status: 503 - Response time: 988ms - IP: 192.168.196.226 - User: user_1000 - RequestID: 49f1zdrvgok +2025-06-18T15:23:20.281Z [INFO] payment-service - Auth event: token_refresh - User: user_1086 - IP: 192.168.194.41 - RequestID: 37r4hpbty31 +2025-06-18T15:23:20.381Z [DEBUG] user-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1552ms - IP: 192.168.196.226 - User: user_1097 - RequestID: 6m1kh03t809 +2025-06-18T15:23:20.481Z [DEBUG] notification-service - Database DELETE on audit_logs - Execution time: 28ms - Rows affected: 44 - RequestID: kxvvcwqekc +2025-06-18T15:23:20.581Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 777ms - IP: 192.168.187.199 - User: user_1047 - RequestID: jbieiidf3zi +2025-06-18T15:23:20.681Z [TRACE] order-service - Operation: order_created - Processing time: 547ms - RequestID: rxbdtlsj6zr +2025-06-18T15:23:20.781Z [INFO] order-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.44.5 - RequestID: zs3bc50vhu +2025-06-18T15:23:20.881Z [TRACE] auth-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.79.116 - RequestID: ob6752psl6 +2025-06-18T15:23:20.981Z [INFO] inventory-service - GET /api/v1/payments - Status: 401 - Response time: 1460ms - IP: 192.168.235.117 - User: user_1041 - RequestID: f5f96g382oo +2025-06-18T15:23:21.081Z [DEBUG] user-service - Operation: notification_queued - Processing time: 551ms - RequestID: pm9uc2x3wjf +2025-06-18T15:23:21.181Z [INFO] payment-service - Operation: email_sent - Processing time: 776ms - RequestID: gbygnbljz3 +2025-06-18T15:23:21.281Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1318ms - IP: 192.168.13.72 - User: user_1089 - RequestID: ctvalxv75cq +2025-06-18T15:23:21.381Z [DEBUG] payment-service - Database DELETE on audit_logs - Execution time: 138ms - Rows affected: 77 - RequestID: nvx7pyuxz4a +2025-06-18T15:23:21.481Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 96ms - IP: 192.168.14.77 - User: user_1011 - RequestID: sxmyk6aacw +2025-06-18T15:23:21.581Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 500 - Response time: 1410ms - IP: 192.168.14.77 - User: user_1008 - RequestID: 0q98cxvjbd2 +2025-06-18T15:23:21.681Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 670ms - RequestID: cxuthk23uhd +2025-06-18T15:23:21.781Z [INFO] payment-service - DELETE /api/v1/users - Status: 403 - Response time: 459ms - IP: 192.168.81.206 - User: user_1083 - RequestID: eryfebcrryg +2025-06-18T15:23:21.881Z [TRACE] payment-service - Auth event: password_change - User: user_1007 - IP: 192.168.79.141 - RequestID: aw5x53t8ejo +2025-06-18T15:23:21.981Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1457ms - IP: 192.168.46.63 - User: user_1003 - RequestID: xnotwxkjoyk +2025-06-18T15:23:22.081Z [DEBUG] auth-service - PATCH /api/v1/users - Status: 201 - Response time: 844ms - IP: 192.168.229.123 - User: user_1051 - RequestID: pn372aworkr +2025-06-18T15:23:22.181Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 494ms - RequestID: dzpz6ni3gin +2025-06-18T15:23:22.281Z [INFO] notification-service - Operation: cache_hit - Processing time: 845ms - RequestID: gistyee9p95 +2025-06-18T15:23:22.381Z [DEBUG] order-service - Operation: notification_queued - Processing time: 1044ms - RequestID: ry462myndy +2025-06-18T15:23:22.481Z [INFO] user-service - DELETE /api/v1/inventory - Status: 200 - Response time: 1485ms - IP: 192.168.13.72 - User: user_1040 - RequestID: jrun4m1bz3s +2025-06-18T15:23:22.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1072 - IP: 192.168.31.117 - RequestID: m82qolu0vb +2025-06-18T15:23:22.681Z [INFO] user-service - Operation: cache_miss - Processing time: 420ms - RequestID: tx2x58o3duc +2025-06-18T15:23:22.781Z [TRACE] order-service - GET /api/v1/inventory - Status: 500 - Response time: 356ms - IP: 192.168.79.116 - User: user_1050 - RequestID: cdjjpas5w3o +2025-06-18T15:23:22.881Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 245ms - Rows affected: 55 - RequestID: denrhjsj0kc +2025-06-18T15:23:22.981Z [INFO] payment-service - Operation: notification_queued - Processing time: 987ms - RequestID: e3pu5d4ulkl +2025-06-18T15:23:23.081Z [TRACE] notification-service - Database SELECT on users - Execution time: 13ms - Rows affected: 45 - RequestID: 8w4gevkmw08 +2025-06-18T15:23:23.181Z [INFO] order-service - Operation: email_sent - Processing time: 163ms - RequestID: qlypwunv2e +2025-06-18T15:23:23.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.81.206 - RequestID: m9kwbqtthi +2025-06-18T15:23:23.381Z [INFO] auth-service - Database UPDATE on orders - Execution time: 455ms - Rows affected: 45 - RequestID: q5avgqwepob +2025-06-18T15:23:23.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 866ms - RequestID: f67a24acygi +2025-06-18T15:23:23.581Z [TRACE] notification-service - Auth event: password_change - User: user_1084 - IP: 192.168.32.38 - RequestID: 93he6ozxkys +2025-06-18T15:23:23.681Z [DEBUG] order-service - DELETE /api/v1/payments - Status: 502 - Response time: 206ms - IP: 192.168.144.38 - User: user_1042 - RequestID: k3e43ymtojn +2025-06-18T15:23:23.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 740ms - RequestID: 1f9l8kq2dzn +2025-06-18T15:23:23.881Z [INFO] order-service - Operation: notification_queued - Processing time: 744ms - RequestID: dqcpkn5nu1b +2025-06-18T15:23:23.981Z [INFO] order-service - Operation: email_sent - Processing time: 232ms - RequestID: 14izdw7cqi8 +2025-06-18T15:23:24.081Z [TRACE] payment-service - Database DELETE on users - Execution time: 2ms - Rows affected: 70 - RequestID: 3l4ui9lz5lo +2025-06-18T15:23:24.181Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 1779ms - IP: 192.168.133.7 - User: user_1009 - RequestID: 7zlv3j6inxi +2025-06-18T15:23:24.281Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.181.225 - RequestID: klmxsihkv7q +2025-06-18T15:23:24.381Z [INFO] user-service - GET /api/v1/auth/logout - Status: 201 - Response time: 487ms - IP: 192.168.11.60 - User: user_1007 - RequestID: 7xthha9hpun +2025-06-18T15:23:24.481Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 53ms - Rows affected: 50 - RequestID: pm3nm9cakab +2025-06-18T15:23:24.581Z [TRACE] auth-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.159.94 - RequestID: utc5r8zrw6q +2025-06-18T15:23:24.681Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 67ms - Rows affected: 94 - RequestID: qxaep0ybq7 +2025-06-18T15:23:24.781Z [TRACE] notification-service - POST /api/v1/users - Status: 503 - Response time: 1541ms - IP: 192.168.144.38 - User: user_1045 - RequestID: eaoqswt3uuh +2025-06-18T15:23:24.881Z [TRACE] payment-service - Auth event: login_failed - User: user_1007 - IP: 192.168.53.133 - RequestID: eebfles8hzv +2025-06-18T15:23:24.981Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 298ms - Rows affected: 97 - RequestID: dh2mizg9b8 +2025-06-18T15:23:25.081Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 403ms - Rows affected: 26 - RequestID: 929wz17p0ob +2025-06-18T15:23:25.181Z [INFO] notification-service - Database DELETE on audit_logs - Execution time: 317ms - Rows affected: 27 - RequestID: fw0j9y6ozhg +2025-06-18T15:23:25.281Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 480ms - Rows affected: 46 - RequestID: 7g34xxdfj85 +2025-06-18T15:23:25.381Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 406ms - Rows affected: 54 - RequestID: apsb9leq4jk +2025-06-18T15:23:25.481Z [TRACE] user-service - Auth event: login_success - User: user_1099 - IP: 192.168.159.94 - RequestID: ojf2yux039 +2025-06-18T15:23:25.581Z [INFO] auth-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.247.134 - RequestID: 2gl7pyhnat4 +2025-06-18T15:23:25.681Z [INFO] payment-service - PATCH /api/v1/orders - Status: 401 - Response time: 1785ms - IP: 192.168.232.72 - User: user_1083 - RequestID: 472h3m6vln4 +2025-06-18T15:23:25.781Z [INFO] payment-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.133.7 - RequestID: hhyfvb821zj +2025-06-18T15:23:25.881Z [DEBUG] order-service - Operation: email_sent - Processing time: 670ms - RequestID: w3l76u4duhp +2025-06-18T15:23:25.981Z [INFO] payment-service - Database UPDATE on products - Execution time: 34ms - Rows affected: 98 - RequestID: e0wcfevibi9 +2025-06-18T15:23:26.081Z [INFO] inventory-service - Operation: order_created - Processing time: 570ms - RequestID: 6xbul7abhcu +2025-06-18T15:23:26.181Z [DEBUG] order-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1067ms - IP: 192.168.232.72 - User: user_1039 - RequestID: htaj3hbw1j +2025-06-18T15:23:26.281Z [DEBUG] order-service - Database INSERT on users - Execution time: 345ms - Rows affected: 47 - RequestID: 0ghlp46pkjge +2025-06-18T15:23:26.381Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 1033ms - RequestID: vcn0143762s +2025-06-18T15:23:26.481Z [INFO] auth-service - Auth event: logout - User: user_1059 - IP: 192.168.187.199 - RequestID: 5i28q70bw9v +2025-06-18T15:23:26.581Z [INFO] user-service - PUT /api/v1/users - Status: 400 - Response time: 1165ms - IP: 192.168.113.218 - User: user_1002 - RequestID: 7tra3mubuyv +2025-06-18T15:23:26.681Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 68ms - RequestID: 5h58dmpiqbs +2025-06-18T15:23:26.781Z [DEBUG] order-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.235.117 - RequestID: w9i8ywmxbq +2025-06-18T15:23:26.881Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 353ms - IP: 192.168.167.32 - User: user_1066 - RequestID: 7yd831zgcth +2025-06-18T15:23:26.981Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 218ms - Rows affected: 37 - RequestID: 7vg4ayllm42 +2025-06-18T15:23:27.081Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1021 - IP: 192.168.194.41 - RequestID: ll574y0nlgm +2025-06-18T15:23:27.181Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.158.144 - RequestID: h7fmak950w7 +2025-06-18T15:23:27.281Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 376ms - Rows affected: 72 - RequestID: ibg7yf7qo6m +2025-06-18T15:23:27.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1035 - IP: 192.168.174.114 - RequestID: l3ruqdlsdv +2025-06-18T15:23:27.481Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 97ms - Rows affected: 75 - RequestID: 0qxpvx6oljd9 +2025-06-18T15:23:27.581Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 510ms - IP: 192.168.1.152 - User: user_1016 - RequestID: jxt2k2j1j5s +2025-06-18T15:23:27.681Z [DEBUG] order-service - GET /api/v1/auth/login - Status: 404 - Response time: 243ms - IP: 192.168.31.117 - User: user_1075 - RequestID: x0u8y923qjk +2025-06-18T15:23:27.781Z [DEBUG] inventory-service - Operation: order_created - Processing time: 424ms - RequestID: zjgro17z32l +2025-06-18T15:23:27.881Z [DEBUG] notification-service - Database INSERT on products - Execution time: 417ms - Rows affected: 1 - RequestID: mtfmjhxi91 +2025-06-18T15:23:27.981Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.187.199 - RequestID: kvqkib1370h +2025-06-18T15:23:28.081Z [DEBUG] order-service - PATCH /api/v1/users - Status: 400 - Response time: 1634ms - IP: 192.168.36.218 - User: user_1078 - RequestID: o14kw0kg6rb +2025-06-18T15:23:28.181Z [DEBUG] order-service - Operation: cache_hit - Processing time: 150ms - RequestID: csyo9g2ozvo +2025-06-18T15:23:28.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1035 - IP: 192.168.11.60 - RequestID: fjzg9rbsg37 +2025-06-18T15:23:28.381Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 424ms - IP: 192.168.31.117 - User: user_1068 - RequestID: j3rw97s3kti +2025-06-18T15:23:28.481Z [TRACE] notification-service - GET /api/v1/payments - Status: 401 - Response time: 1177ms - IP: 192.168.138.123 - User: user_1069 - RequestID: xl8s61m8b5n +2025-06-18T15:23:28.581Z [INFO] payment-service - Auth event: logout - User: user_1011 - IP: 192.168.81.206 - RequestID: ydkn45nonf +2025-06-18T15:23:28.681Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 931ms - RequestID: 20tq71yk4xz +2025-06-18T15:23:28.781Z [DEBUG] auth-service - Database DELETE on products - Execution time: 244ms - Rows affected: 33 - RequestID: hsh8f7drnj +2025-06-18T15:23:28.881Z [TRACE] user-service - Operation: payment_processed - Processing time: 651ms - RequestID: 1uhl5lu5r7p +2025-06-18T15:23:28.981Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 141ms - Rows affected: 39 - RequestID: rrj1mb9ejxi +2025-06-18T15:23:29.081Z [INFO] notification-service - Auth event: logout - User: user_1068 - IP: 192.168.235.117 - RequestID: 7qbj72wu6u9 +2025-06-18T15:23:29.181Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1046ms - IP: 192.168.14.77 - User: user_1093 - RequestID: 4d77ftg5caa +2025-06-18T15:23:29.281Z [DEBUG] notification-service - Database SELECT on products - Execution time: 25ms - Rows affected: 75 - RequestID: 22j8n6k9qcg +2025-06-18T15:23:29.381Z [TRACE] inventory-service - Auth event: logout - User: user_1038 - IP: 192.168.159.94 - RequestID: 5pxvnycxn6m +2025-06-18T15:23:29.481Z [DEBUG] user-service - Database SELECT on products - Execution time: 44ms - Rows affected: 68 - RequestID: xhm97trd768 +2025-06-18T15:23:29.581Z [INFO] order-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.144.38 - RequestID: oozgppyajs +2025-06-18T15:23:29.681Z [INFO] payment-service - Database INSERT on sessions - Execution time: 168ms - Rows affected: 6 - RequestID: 4zb8l5orzu2 +2025-06-18T15:23:29.781Z [INFO] auth-service - Operation: order_created - Processing time: 455ms - RequestID: 9nnj8l2rpkh +2025-06-18T15:23:29.881Z [TRACE] notification-service - Auth event: logout - User: user_1062 - IP: 192.168.97.87 - RequestID: 7znpaw8tlcd +2025-06-18T15:23:29.981Z [INFO] inventory-service - POST /api/v1/inventory - Status: 201 - Response time: 2009ms - IP: 192.168.85.229 - User: user_1087 - RequestID: 4p0b01vicf4 +2025-06-18T15:23:30.081Z [DEBUG] notification-service - Auth event: logout - User: user_1046 - IP: 192.168.14.77 - RequestID: p275pxp7c28 +2025-06-18T15:23:30.181Z [DEBUG] notification-service - Database SELECT on payments - Execution time: 144ms - Rows affected: 91 - RequestID: hwxdxa0t75b +2025-06-18T15:23:30.281Z [TRACE] notification-service - Database UPDATE on orders - Execution time: 416ms - Rows affected: 89 - RequestID: al0l0ns2jk +2025-06-18T15:23:30.381Z [INFO] user-service - POST /api/v1/inventory - Status: 502 - Response time: 876ms - IP: 192.168.170.215 - User: user_1096 - RequestID: 2rqwm8ogrq9 +2025-06-18T15:23:30.481Z [INFO] user-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.32.38 - RequestID: k6gw82ovgj +2025-06-18T15:23:30.581Z [TRACE] user-service - Operation: payment_processed - Processing time: 336ms - RequestID: ggebpzr5on +2025-06-18T15:23:30.681Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 201 - Response time: 944ms - IP: 192.168.97.87 - User: user_1064 - RequestID: 4i9ujw9pnr5 +2025-06-18T15:23:30.781Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 465ms - Rows affected: 52 - RequestID: qd855zfe1y +2025-06-18T15:23:30.881Z [INFO] payment-service - Database DELETE on products - Execution time: 20ms - Rows affected: 79 - RequestID: ucumjz70o5f +2025-06-18T15:23:30.981Z [INFO] payment-service - Database UPDATE on orders - Execution time: 488ms - Rows affected: 50 - RequestID: 469oj37uxg7 +2025-06-18T15:23:31.081Z [INFO] user-service - Operation: cache_hit - Processing time: 626ms - RequestID: vnui1zpf0g +2025-06-18T15:23:31.181Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 170ms - Rows affected: 46 - RequestID: 8vuz7t40c22 +2025-06-18T15:23:31.281Z [TRACE] notification-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 42ms - IP: 192.168.13.72 - User: user_1060 - RequestID: 5o6l47p81mn +2025-06-18T15:23:31.381Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 201 - Response time: 273ms - IP: 192.168.167.32 - User: user_1059 - RequestID: r359gm728ho +2025-06-18T15:23:31.481Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 343ms - Rows affected: 48 - RequestID: 43vo3lg43aj +2025-06-18T15:23:31.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1031 - IP: 192.168.97.87 - RequestID: y9r8n25wx9d +2025-06-18T15:23:31.681Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 271ms - Rows affected: 2 - RequestID: exrr6bx861 +2025-06-18T15:23:31.781Z [DEBUG] auth-service - Operation: email_sent - Processing time: 268ms - RequestID: whybnl11sw8 +2025-06-18T15:23:31.881Z [DEBUG] order-service - Operation: cache_miss - Processing time: 950ms - RequestID: lvor38z51r +2025-06-18T15:23:31.981Z [INFO] order-service - GET /api/v1/orders - Status: 404 - Response time: 558ms - IP: 192.168.227.77 - User: user_1066 - RequestID: ojyibymcmpg +2025-06-18T15:23:32.081Z [INFO] user-service - Database UPDATE on users - Execution time: 230ms - Rows affected: 59 - RequestID: 949yo6glxvp +2025-06-18T15:23:32.181Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 403 - Response time: 822ms - IP: 192.168.36.218 - User: user_1038 - RequestID: 5tpxrg4jou2 +2025-06-18T15:23:32.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 739ms - RequestID: wdttambvmy +2025-06-18T15:23:32.381Z [DEBUG] auth-service - Database DELETE on orders - Execution time: 32ms - Rows affected: 84 - RequestID: n4h02jr7z1 +2025-06-18T15:23:32.481Z [INFO] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1818ms - IP: 192.168.68.158 - User: user_1053 - RequestID: j62w8zb78xg +2025-06-18T15:23:32.581Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 372ms - RequestID: 0opju9enqqp +2025-06-18T15:23:32.681Z [INFO] inventory-service - Auth event: login_attempt - User: user_1091 - IP: 192.168.64.33 - RequestID: soscq4td56c +2025-06-18T15:23:32.781Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 766ms - RequestID: o3e1ipjmn4d +2025-06-18T15:23:32.881Z [INFO] user-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 38ms - IP: 192.168.30.79 - User: user_1015 - RequestID: zk148hd0a6s +2025-06-18T15:23:32.981Z [DEBUG] user-service - Auth event: password_change - User: user_1043 - IP: 192.168.31.117 - RequestID: 2tegkzo58w8 +2025-06-18T15:23:33.081Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 742ms - RequestID: kkj46x4u7x +2025-06-18T15:23:33.181Z [TRACE] notification-service - Operation: email_sent - Processing time: 917ms - RequestID: lj38b92bhb +2025-06-18T15:23:33.281Z [TRACE] order-service - Auth event: logout - User: user_1046 - IP: 192.168.232.72 - RequestID: ujfzf27msxl +2025-06-18T15:23:33.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1013 - IP: 192.168.227.77 - RequestID: azyak0mhhec +2025-06-18T15:23:33.481Z [INFO] order-service - Auth event: login_failed - User: user_1075 - IP: 192.168.211.72 - RequestID: 3lkic3dqg0s +2025-06-18T15:23:33.581Z [INFO] payment-service - Auth event: password_change - User: user_1051 - IP: 192.168.14.77 - RequestID: 38zb1qtnxrj +2025-06-18T15:23:33.681Z [INFO] user-service - GET /api/v1/users - Status: 503 - Response time: 1808ms - IP: 192.168.194.41 - User: user_1076 - RequestID: ok13puoqdh8 +2025-06-18T15:23:33.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.181.225 - RequestID: 4aza5tmt613 +2025-06-18T15:23:33.881Z [TRACE] notification-service - Operation: order_created - Processing time: 286ms - RequestID: m5g7ek3d1wn +2025-06-18T15:23:33.981Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 584ms - RequestID: mf5u6ht8h7h +2025-06-18T15:23:34.081Z [INFO] payment-service - Operation: webhook_sent - Processing time: 727ms - RequestID: b9k0foiwbv +2025-06-18T15:23:34.181Z [INFO] user-service - Auth event: logout - User: user_1098 - IP: 192.168.187.199 - RequestID: 7j0cz089z95 +2025-06-18T15:23:34.281Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 403 - Response time: 884ms - IP: 192.168.144.38 - User: user_1081 - RequestID: 9o7l29riau8 +2025-06-18T15:23:34.381Z [INFO] user-service - Database DELETE on sessions - Execution time: 28ms - Rows affected: 23 - RequestID: kpdiq7tooe +2025-06-18T15:23:34.481Z [TRACE] auth-service - Auth event: login_failed - User: user_1000 - IP: 192.168.247.134 - RequestID: nc4hah99wi +2025-06-18T15:23:34.581Z [INFO] order-service - Database SELECT on audit_logs - Execution time: 414ms - Rows affected: 42 - RequestID: 0jn28djxngt +2025-06-18T15:23:34.681Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 314ms - Rows affected: 60 - RequestID: x07y691ar7 +2025-06-18T15:23:34.781Z [TRACE] inventory-service - Auth event: logout - User: user_1053 - IP: 192.168.167.32 - RequestID: dxeqxvx68eo +2025-06-18T15:23:34.881Z [DEBUG] auth-service - Database INSERT on users - Execution time: 104ms - Rows affected: 20 - RequestID: h84ywps14fw +2025-06-18T15:23:34.981Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 220ms - Rows affected: 81 - RequestID: ozqh7yipl1e +2025-06-18T15:23:35.081Z [INFO] inventory-service - GET /api/v1/auth/login - Status: 500 - Response time: 1088ms - IP: 192.168.97.87 - User: user_1011 - RequestID: rxvrjiq2iaf +2025-06-18T15:23:35.181Z [INFO] order-service - Auth event: password_change - User: user_1066 - IP: 192.168.167.32 - RequestID: rhg4ryckswg +2025-06-18T15:23:35.281Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 73ms - RequestID: evcxpccts3q +2025-06-18T15:23:35.381Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 404 - Response time: 633ms - IP: 192.168.187.199 - User: user_1067 - RequestID: 0wlsqjm5wux +2025-06-18T15:23:35.481Z [INFO] notification-service - Auth event: login_failed - User: user_1097 - IP: 192.168.33.76 - RequestID: 4d1vxq5ijhi +2025-06-18T15:23:35.581Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 420ms - RequestID: x1lyg0xkjdn +2025-06-18T15:23:35.681Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 177ms - Rows affected: 79 - RequestID: msp4t51oj3 +2025-06-18T15:23:35.781Z [TRACE] order-service - Database SELECT on payments - Execution time: 266ms - Rows affected: 84 - RequestID: l5inw08p1rr +2025-06-18T15:23:35.881Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 412ms - Rows affected: 56 - RequestID: w5g3j9yuskk +2025-06-18T15:23:35.981Z [TRACE] user-service - DELETE /api/v1/users - Status: 403 - Response time: 909ms - IP: 192.168.32.38 - User: user_1080 - RequestID: fdqu803a9km +2025-06-18T15:23:36.081Z [INFO] notification-service - Auth event: password_change - User: user_1013 - IP: 192.168.10.184 - RequestID: w5kngx3qnpl +2025-06-18T15:23:36.181Z [DEBUG] notification-service - Database SELECT on users - Execution time: 206ms - Rows affected: 23 - RequestID: 8ouifxslcfx +2025-06-18T15:23:36.281Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 421ms - Rows affected: 16 - RequestID: 0jgihwwvkx9s +2025-06-18T15:23:36.381Z [INFO] inventory-service - Operation: email_sent - Processing time: 581ms - RequestID: rrkz61cj1y +2025-06-18T15:23:36.481Z [INFO] order-service - Auth event: login_success - User: user_1019 - IP: 192.168.68.158 - RequestID: s4s2w6du67i +2025-06-18T15:23:36.581Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 404 - Response time: 1225ms - IP: 192.168.138.123 - User: user_1017 - RequestID: mbadgxq821j +2025-06-18T15:23:36.681Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 510ms - RequestID: zvrh8jyzsm +2025-06-18T15:23:36.781Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1001 - IP: 192.168.138.123 - RequestID: ibb2oxj29ub +2025-06-18T15:23:36.881Z [DEBUG] notification-service - Database DELETE on orders - Execution time: 140ms - Rows affected: 68 - RequestID: ryvhv7aii0o +2025-06-18T15:23:36.981Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 475ms - RequestID: hz7c6py5rvi +2025-06-18T15:23:37.081Z [DEBUG] user-service - PUT /api/v1/users - Status: 500 - Response time: 1119ms - IP: 192.168.159.94 - User: user_1066 - RequestID: kr7bgffzw6 +2025-06-18T15:23:37.181Z [DEBUG] user-service - Database DELETE on orders - Execution time: 450ms - Rows affected: 70 - RequestID: rz3hsasqqss +2025-06-18T15:23:37.281Z [INFO] order-service - Auth event: password_change - User: user_1051 - IP: 192.168.235.117 - RequestID: ln7lfwzxkli +2025-06-18T15:23:37.381Z [INFO] order-service - DELETE /api/v1/orders - Status: 403 - Response time: 1707ms - IP: 192.168.33.76 - User: user_1058 - RequestID: v46dgut7qfm +2025-06-18T15:23:37.481Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1051 - IP: 192.168.44.5 - RequestID: 2u1rq3c2vx +2025-06-18T15:23:37.581Z [TRACE] notification-service - Auth event: login_attempt - User: user_1006 - IP: 192.168.147.171 - RequestID: foxogbq8o2 +2025-06-18T15:23:37.681Z [TRACE] order-service - Database SELECT on products - Execution time: 334ms - Rows affected: 36 - RequestID: ucfcr8t8wt +2025-06-18T15:23:37.781Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1476ms - IP: 192.168.53.133 - User: user_1049 - RequestID: wc5rxlf1i0n +2025-06-18T15:23:37.881Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 113ms - RequestID: i5jpf3h6pv +2025-06-18T15:23:37.981Z [TRACE] auth-service - Auth event: password_change - User: user_1081 - IP: 192.168.79.116 - RequestID: 4bq15ez7gk2 +2025-06-18T15:23:38.081Z [INFO] auth-service - Auth event: login_failed - User: user_1002 - IP: 192.168.14.77 - RequestID: bhvkv7mv2b4 +2025-06-18T15:23:38.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 301ms - RequestID: 0ciqixmei0md +2025-06-18T15:23:38.281Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 28ms - Rows affected: 48 - RequestID: 4ohfemsdbrh +2025-06-18T15:23:38.381Z [DEBUG] order-service - Operation: payment_processed - Processing time: 295ms - RequestID: xn50682mqki +2025-06-18T15:23:38.481Z [INFO] user-service - POST /api/v1/auth/login - Status: 400 - Response time: 129ms - IP: 192.168.174.114 - User: user_1028 - RequestID: 7wjuz4ree8p +2025-06-18T15:23:38.581Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 239ms - Rows affected: 71 - RequestID: auauawkg19 +2025-06-18T15:23:38.681Z [INFO] payment-service - GET /api/v1/orders - Status: 200 - Response time: 1719ms - IP: 192.168.44.5 - User: user_1092 - RequestID: uq8mqfmbzub +2025-06-18T15:23:38.781Z [INFO] user-service - POST /api/v1/auth/login - Status: 500 - Response time: 1651ms - IP: 192.168.144.38 - User: user_1064 - RequestID: 4ooe1gbtvrb +2025-06-18T15:23:38.881Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 502 - Response time: 1114ms - IP: 192.168.31.117 - User: user_1005 - RequestID: bgnpi3le39 +2025-06-18T15:23:38.981Z [INFO] user-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.97.87 - RequestID: qv5t9wy15b +2025-06-18T15:23:39.081Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 914ms - RequestID: yg1is3c9rfj +2025-06-18T15:23:39.181Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 503 - Response time: 1017ms - IP: 192.168.79.116 - User: user_1088 - RequestID: 84ywb19egku +2025-06-18T15:23:39.281Z [TRACE] auth-service - Operation: cache_miss - Processing time: 974ms - RequestID: y4rve2ep2si +2025-06-18T15:23:39.381Z [INFO] order-service - GET /api/v1/auth/login - Status: 401 - Response time: 1464ms - IP: 192.168.227.77 - User: user_1043 - RequestID: mnfqrsvt6n +2025-06-18T15:23:39.481Z [INFO] notification-service - PUT /api/v1/inventory - Status: 404 - Response time: 1421ms - IP: 192.168.32.38 - User: user_1037 - RequestID: xktpu7vrgag +2025-06-18T15:23:39.581Z [INFO] auth-service - Operation: notification_queued - Processing time: 588ms - RequestID: r2qtbmgf389 +2025-06-18T15:23:39.681Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1028 - IP: 192.168.1.152 - RequestID: ejj087ryxuv +2025-06-18T15:23:39.781Z [INFO] user-service - Operation: notification_queued - Processing time: 931ms - RequestID: 61gei0z3yp5 +2025-06-18T15:23:39.881Z [INFO] order-service - Operation: cache_hit - Processing time: 1033ms - RequestID: 1kjqb3ncclc +2025-06-18T15:23:39.981Z [INFO] order-service - Operation: cache_hit - Processing time: 1026ms - RequestID: 103yqdvsp9w +2025-06-18T15:23:40.081Z [TRACE] order-service - PUT /api/v1/auth/login - Status: 401 - Response time: 1984ms - IP: 192.168.10.184 - User: user_1079 - RequestID: 5a609dg2ujb +2025-06-18T15:23:40.181Z [TRACE] auth-service - Operation: cache_hit - Processing time: 604ms - RequestID: pflo0sikg +2025-06-18T15:23:40.281Z [INFO] auth-service - Operation: inventory_updated - Processing time: 157ms - RequestID: q5o8f2slpg +2025-06-18T15:23:40.381Z [DEBUG] user-service - Auth event: login_success - User: user_1076 - IP: 192.168.235.117 - RequestID: ozqw9xl47l +2025-06-18T15:23:40.481Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 261ms - Rows affected: 64 - RequestID: 9dnxifacz99 +2025-06-18T15:23:40.581Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1332ms - IP: 192.168.28.146 - User: user_1030 - RequestID: ezo025bwhy6 +2025-06-18T15:23:40.681Z [DEBUG] auth-service - Database DELETE on users - Execution time: 288ms - Rows affected: 89 - RequestID: d627zwj1uxd +2025-06-18T15:23:40.781Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 359ms - Rows affected: 53 - RequestID: mr9vj8jp0j +2025-06-18T15:23:40.881Z [DEBUG] payment-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1825ms - IP: 192.168.32.38 - User: user_1073 - RequestID: viqh3q9fnkp +2025-06-18T15:23:40.981Z [TRACE] order-service - Auth event: login_attempt - User: user_1080 - IP: 192.168.138.123 - RequestID: x2h19bmfseh +2025-06-18T15:23:41.081Z [INFO] user-service - Auth event: login_success - User: user_1087 - IP: 192.168.174.114 - RequestID: o9yvnycyz4m +2025-06-18T15:23:41.181Z [TRACE] inventory-service - Auth event: login_success - User: user_1039 - IP: 192.168.147.171 - RequestID: 6k61g691fjp +2025-06-18T15:23:41.281Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 507ms - RequestID: pvg9q64ib8r +2025-06-18T15:23:41.381Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1517ms - IP: 192.168.159.94 - User: user_1007 - RequestID: v9wsdsjpq4c +2025-06-18T15:23:41.481Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 503 - Response time: 1025ms - IP: 192.168.97.87 - User: user_1056 - RequestID: lia62q6i4j +2025-06-18T15:23:41.581Z [INFO] order-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.28.146 - RequestID: z8u1ytx32g +2025-06-18T15:23:41.681Z [INFO] inventory-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1799ms - IP: 192.168.141.100 - User: user_1039 - RequestID: 8x6a6c4vsl +2025-06-18T15:23:41.781Z [TRACE] user-service - Operation: payment_processed - Processing time: 516ms - RequestID: sczhncnkbl +2025-06-18T15:23:41.881Z [DEBUG] user-service - Auth event: password_change - User: user_1066 - IP: 192.168.68.128 - RequestID: 4z2nv9tdebp +2025-06-18T15:23:41.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.104.37 - RequestID: ktm0gvbz8tb +2025-06-18T15:23:42.081Z [INFO] auth-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.97.87 - RequestID: wawrgdghyqo +2025-06-18T15:23:42.181Z [TRACE] order-service - PUT /api/v1/orders - Status: 400 - Response time: 438ms - IP: 192.168.242.165 - User: user_1098 - RequestID: ngquy5i6177 +2025-06-18T15:23:42.281Z [INFO] order-service - Operation: email_sent - Processing time: 833ms - RequestID: 3tuy8han49g +2025-06-18T15:23:42.381Z [TRACE] auth-service - Operation: cache_hit - Processing time: 1009ms - RequestID: tpiihcqk1ic +2025-06-18T15:23:42.481Z [TRACE] user-service - Auth event: password_change - User: user_1049 - IP: 192.168.232.72 - RequestID: 1m07phgqfap +2025-06-18T15:23:42.581Z [TRACE] user-service - PUT /api/v1/orders - Status: 401 - Response time: 1760ms - IP: 192.168.79.116 - User: user_1021 - RequestID: 679bh3p18wd +2025-06-18T15:23:42.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.235.117 - RequestID: wag4y7l1x6c +2025-06-18T15:23:42.781Z [TRACE] user-service - GET /api/v1/inventory - Status: 404 - Response time: 1871ms - IP: 192.168.240.169 - User: user_1042 - RequestID: jz3xsm0n3go +2025-06-18T15:23:42.881Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 512ms - RequestID: ct95k7iuc9r +2025-06-18T15:23:42.981Z [INFO] order-service - Database SELECT on products - Execution time: 256ms - Rows affected: 29 - RequestID: kongx311lvq +2025-06-18T15:23:43.081Z [INFO] inventory-service - Operation: email_sent - Processing time: 574ms - RequestID: f95g8hovcm +2025-06-18T15:23:43.181Z [DEBUG] order-service - Database SELECT on payments - Execution time: 425ms - Rows affected: 45 - RequestID: wqqjeb6od3 +2025-06-18T15:23:43.281Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 56ms - Rows affected: 89 - RequestID: fzr4ydev5p +2025-06-18T15:23:43.381Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 119ms - Rows affected: 64 - RequestID: 0gw6s6qottf +2025-06-18T15:23:43.481Z [INFO] inventory-service - Database SELECT on products - Execution time: 396ms - Rows affected: 49 - RequestID: z73acnni8xd +2025-06-18T15:23:43.581Z [DEBUG] notification-service - PUT /api/v1/payments - Status: 400 - Response time: 1492ms - IP: 192.168.79.141 - User: user_1058 - RequestID: fmox9u5re7 +2025-06-18T15:23:43.681Z [TRACE] notification-service - POST /api/v1/inventory - Status: 400 - Response time: 929ms - IP: 192.168.196.226 - User: user_1086 - RequestID: z9jt4rvuno +2025-06-18T15:23:43.781Z [TRACE] order-service - Database DELETE on sessions - Execution time: 410ms - Rows affected: 17 - RequestID: 1uxyayjyzph +2025-06-18T15:23:43.881Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 287ms - Rows affected: 14 - RequestID: z9ho4qnh838 +2025-06-18T15:23:43.981Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 877ms - IP: 192.168.31.117 - User: user_1024 - RequestID: mu71u36jk9i +2025-06-18T15:23:44.081Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 234ms - Rows affected: 44 - RequestID: q46xyxfdh9g +2025-06-18T15:23:44.181Z [INFO] auth-service - DELETE /api/v1/orders - Status: 503 - Response time: 214ms - IP: 192.168.227.77 - User: user_1039 - RequestID: ob61kea7rk +2025-06-18T15:23:44.281Z [DEBUG] notification-service - Auth event: logout - User: user_1086 - IP: 192.168.79.141 - RequestID: 4zhzfrbdnjb +2025-06-18T15:23:44.381Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 123ms - Rows affected: 27 - RequestID: 3a7qh71lv3s +2025-06-18T15:23:44.481Z [DEBUG] order-service - PATCH /api/v1/payments - Status: 502 - Response time: 713ms - IP: 192.168.113.218 - User: user_1098 - RequestID: kx0hti47q5a +2025-06-18T15:23:44.581Z [INFO] inventory-service - Auth event: login_success - User: user_1020 - IP: 192.168.81.206 - RequestID: fviyt4pe6ye +2025-06-18T15:23:44.681Z [TRACE] inventory-service - Auth event: login_success - User: user_1017 - IP: 192.168.159.94 - RequestID: oammt6tfz7 +2025-06-18T15:23:44.781Z [DEBUG] inventory-service - Database DELETE on orders - Execution time: 5ms - Rows affected: 77 - RequestID: vv4qa8q1cig +2025-06-18T15:23:44.881Z [DEBUG] order-service - GET /api/v1/users - Status: 400 - Response time: 214ms - IP: 192.168.158.144 - User: user_1049 - RequestID: xtcblouzxal +2025-06-18T15:23:44.981Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 200 - Response time: 553ms - IP: 192.168.235.117 - User: user_1075 - RequestID: powh3zmuoc +2025-06-18T15:23:45.081Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 358ms - RequestID: 028vru9dcaqb +2025-06-18T15:23:45.181Z [INFO] order-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.100.240 - RequestID: 4v1rzv7qisw +2025-06-18T15:23:45.281Z [INFO] order-service - Database DELETE on orders - Execution time: 75ms - Rows affected: 6 - RequestID: na55qruca4o +2025-06-18T15:23:45.381Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 285ms - Rows affected: 53 - RequestID: aumcahg0ngc +2025-06-18T15:23:45.481Z [INFO] auth-service - Database UPDATE on orders - Execution time: 321ms - Rows affected: 55 - RequestID: z3r0unp8mq +2025-06-18T15:23:45.581Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 310ms - Rows affected: 32 - RequestID: 3lhii4fyi3 +2025-06-18T15:23:45.681Z [INFO] auth-service - Auth event: login_success - User: user_1091 - IP: 192.168.30.79 - RequestID: e8tig8su578 +2025-06-18T15:23:45.781Z [TRACE] user-service - Auth event: login_success - User: user_1040 - IP: 192.168.247.134 - RequestID: g93tg9yafzp +2025-06-18T15:23:45.881Z [INFO] payment-service - Auth event: login_attempt - User: user_1071 - IP: 192.168.100.240 - RequestID: me3sgi712i +2025-06-18T15:23:45.981Z [INFO] user-service - Auth event: password_change - User: user_1088 - IP: 192.168.232.72 - RequestID: cy7p4q6vrpu +2025-06-18T15:23:46.081Z [DEBUG] order-service - Operation: inventory_updated - Processing time: 380ms - RequestID: 678hvzzranv +2025-06-18T15:23:46.181Z [DEBUG] user-service - PATCH /api/v1/users - Status: 200 - Response time: 1830ms - IP: 192.168.14.77 - User: user_1012 - RequestID: w2xmsl5w9jk +2025-06-18T15:23:46.281Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 200 - Response time: 1711ms - IP: 192.168.79.143 - User: user_1048 - RequestID: k3qoc7ev4w +2025-06-18T15:23:46.381Z [DEBUG] order-service - Operation: email_sent - Processing time: 325ms - RequestID: 80fwldow0ku +2025-06-18T15:23:46.481Z [TRACE] auth-service - Auth event: login_success - User: user_1088 - IP: 192.168.44.5 - RequestID: v6bc4bwgich +2025-06-18T15:23:46.581Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 103ms - Rows affected: 59 - RequestID: lhspesiszz +2025-06-18T15:23:46.681Z [TRACE] notification-service - Auth event: login_success - User: user_1022 - IP: 192.168.174.114 - RequestID: mx86m71t2q +2025-06-18T15:23:46.781Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 403 - Response time: 288ms - IP: 192.168.229.123 - User: user_1087 - RequestID: sw847mh4qdm +2025-06-18T15:23:46.881Z [TRACE] order-service - Database INSERT on products - Execution time: 140ms - Rows affected: 44 - RequestID: 66lh1x181vx +2025-06-18T15:23:46.981Z [TRACE] notification-service - Operation: cache_hit - Processing time: 1042ms - RequestID: xz9nnscipt +2025-06-18T15:23:47.081Z [INFO] payment-service - POST /api/v1/users - Status: 401 - Response time: 1791ms - IP: 192.168.229.123 - User: user_1033 - RequestID: ys8olixv0ki +2025-06-18T15:23:47.181Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 92ms - RequestID: wu8pqhduz9m +2025-06-18T15:23:47.281Z [DEBUG] auth-service - Operation: email_sent - Processing time: 599ms - RequestID: 6dsd0rdtmps +2025-06-18T15:23:47.381Z [DEBUG] notification-service - DELETE /api/v1/users - Status: 500 - Response time: 237ms - IP: 192.168.232.72 - User: user_1023 - RequestID: dwwps5rhy6w +2025-06-18T15:23:47.481Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 407ms - RequestID: wwhwzdh0kua +2025-06-18T15:23:47.581Z [TRACE] inventory-service - Auth event: login_failed - User: user_1004 - IP: 192.168.159.94 - RequestID: 7ns36c8udxl +2025-06-18T15:23:47.681Z [INFO] order-service - Auth event: password_change - User: user_1029 - IP: 192.168.194.41 - RequestID: 85woxx5iv8n +2025-06-18T15:23:47.781Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 754ms - IP: 192.168.141.100 - User: user_1051 - RequestID: lijtcjmqw1 +2025-06-18T15:23:47.881Z [INFO] payment-service - Operation: webhook_sent - Processing time: 496ms - RequestID: s3l6nedtvcc +2025-06-18T15:23:47.981Z [DEBUG] payment-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1737ms - IP: 192.168.1.152 - User: user_1080 - RequestID: t8p3ic4l2tm +2025-06-18T15:23:48.081Z [TRACE] notification-service - Auth event: token_refresh - User: user_1037 - IP: 192.168.79.116 - RequestID: rj9ibllrox +2025-06-18T15:23:48.181Z [TRACE] payment-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.181.225 - RequestID: lnlcecf08za +2025-06-18T15:23:48.281Z [TRACE] order-service - Auth event: password_change - User: user_1077 - IP: 192.168.196.226 - RequestID: 8d70iv3tl4j +2025-06-18T15:23:48.381Z [DEBUG] auth-service - Auth event: password_change - User: user_1064 - IP: 192.168.36.218 - RequestID: mot85i6bik9 +2025-06-18T15:23:48.481Z [TRACE] order-service - Operation: email_sent - Processing time: 191ms - RequestID: 3s4b0shlo42 +2025-06-18T15:23:48.581Z [INFO] payment-service - Auth event: login_success - User: user_1009 - IP: 192.168.147.171 - RequestID: 4950ix5ykhj +2025-06-18T15:23:48.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 188ms - RequestID: ygj66whmp1 +2025-06-18T15:23:48.781Z [DEBUG] user-service - Auth event: token_refresh - User: user_1048 - IP: 192.168.64.33 - RequestID: duxqnvpauy8 +2025-06-18T15:23:48.881Z [TRACE] user-service - Auth event: login_failed - User: user_1086 - IP: 192.168.79.141 - RequestID: eio4rftm5qw +2025-06-18T15:23:48.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.147.171 - RequestID: 8hfpelgdoi2 +2025-06-18T15:23:49.081Z [TRACE] auth-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.242.165 - RequestID: tzu731aa9gk +2025-06-18T15:23:49.181Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1575ms - IP: 192.168.31.117 - User: user_1081 - RequestID: r9cmszax65a +2025-06-18T15:23:49.281Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 959ms - RequestID: nd3vlji7wjl +2025-06-18T15:23:49.381Z [TRACE] order-service - Auth event: password_change - User: user_1011 - IP: 192.168.227.233 - RequestID: ivrcs4y3ddr +2025-06-18T15:23:49.481Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 536ms - RequestID: 4c0gevuvrq5 +2025-06-18T15:23:49.581Z [DEBUG] user-service - Database UPDATE on sessions - Execution time: 191ms - Rows affected: 64 - RequestID: d0rdwhcl20p +2025-06-18T15:23:49.681Z [DEBUG] notification-service - POST /api/v1/users - Status: 201 - Response time: 15ms - IP: 192.168.227.77 - User: user_1064 - RequestID: ykppjb9eh3d +2025-06-18T15:23:49.781Z [INFO] notification-service - Operation: cache_hit - Processing time: 1049ms - RequestID: srque3h137d +2025-06-18T15:23:49.881Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1912ms - IP: 192.168.28.146 - User: user_1058 - RequestID: 388ku4v5kl4 +2025-06-18T15:23:49.981Z [INFO] user-service - Auth event: logout - User: user_1059 - IP: 192.168.81.206 - RequestID: o22q4seux4h +2025-06-18T15:23:50.081Z [TRACE] notification-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.11.60 - RequestID: yjw0bw0xljl +2025-06-18T15:23:50.181Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 502 - Response time: 1586ms - IP: 192.168.211.72 - User: user_1085 - RequestID: av195lnsjs7 +2025-06-18T15:23:50.281Z [DEBUG] inventory-service - Auth event: password_change - User: user_1091 - IP: 192.168.10.184 - RequestID: cd588fk8dyh +2025-06-18T15:23:50.381Z [INFO] payment-service - Database UPDATE on payments - Execution time: 376ms - Rows affected: 98 - RequestID: pcezvbsjhyr +2025-06-18T15:23:50.481Z [TRACE] order-service - Database UPDATE on products - Execution time: 456ms - Rows affected: 64 - RequestID: 9n1c9vkl15 +2025-06-18T15:23:50.581Z [INFO] user-service - Database SELECT on orders - Execution time: 242ms - Rows affected: 89 - RequestID: rn5gjoq2f6g +2025-06-18T15:23:50.681Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 340ms - RequestID: h0kgq41ny3v +2025-06-18T15:23:50.781Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 633ms - RequestID: amstrjpcf5l +2025-06-18T15:23:50.881Z [TRACE] auth-service - Operation: notification_queued - Processing time: 742ms - RequestID: po3eglppn9i +2025-06-18T15:23:50.981Z [DEBUG] order-service - Operation: payment_processed - Processing time: 311ms - RequestID: tz07n0ijc8c +2025-06-18T15:23:51.081Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 200 - Response time: 1360ms - IP: 192.168.13.72 - User: user_1026 - RequestID: w7uyaf3299 +2025-06-18T15:23:51.181Z [DEBUG] user-service - Database SELECT on audit_logs - Execution time: 245ms - Rows affected: 49 - RequestID: 4yxf0sc5205 +2025-06-18T15:23:51.281Z [TRACE] user-service - Auth event: logout - User: user_1052 - IP: 192.168.159.94 - RequestID: jvg6obpxur +2025-06-18T15:23:51.381Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 201 - Response time: 1501ms - IP: 192.168.194.41 - User: user_1085 - RequestID: wms0yjaj1ya +2025-06-18T15:23:51.481Z [DEBUG] notification-service - Auth event: password_change - User: user_1023 - IP: 192.168.227.77 - RequestID: nk6qaggvh3k +2025-06-18T15:23:51.581Z [TRACE] payment-service - Auth event: password_change - User: user_1038 - IP: 192.168.211.72 - RequestID: nd631pijuw9 +2025-06-18T15:23:51.681Z [DEBUG] payment-service - Database INSERT on audit_logs - Execution time: 316ms - Rows affected: 42 - RequestID: o8hnhqxhyth +2025-06-18T15:23:51.781Z [DEBUG] order-service - Database UPDATE on users - Execution time: 227ms - Rows affected: 96 - RequestID: awnmt2i697 +2025-06-18T15:23:51.881Z [TRACE] payment-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.68.128 - RequestID: zpgh8s9vzvj +2025-06-18T15:23:51.981Z [INFO] auth-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 1420ms - IP: 192.168.240.169 - User: user_1027 - RequestID: kkjhdzongna +2025-06-18T15:23:52.081Z [INFO] auth-service - Operation: cache_miss - Processing time: 478ms - RequestID: mkph376643 +2025-06-18T15:23:52.181Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1627ms - IP: 192.168.1.152 - User: user_1080 - RequestID: rwm7p6thtu +2025-06-18T15:23:52.281Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 434ms - RequestID: ik80jtok89 +2025-06-18T15:23:52.381Z [DEBUG] user-service - GET /api/v1/orders - Status: 400 - Response time: 284ms - IP: 192.168.242.165 - User: user_1090 - RequestID: vp6h3snsedi +2025-06-18T15:23:52.481Z [INFO] payment-service - GET /api/v1/auth/login - Status: 200 - Response time: 1850ms - IP: 192.168.170.215 - User: user_1000 - RequestID: to4v9hcrte8 +2025-06-18T15:23:52.581Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 622ms - RequestID: spp4d2wbi8 +2025-06-18T15:23:52.681Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 401 - Response time: 641ms - IP: 192.168.68.158 - User: user_1086 - RequestID: 6ujn1etqvwy +2025-06-18T15:23:52.781Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 194ms - Rows affected: 7 - RequestID: 4fm150d1bgq +2025-06-18T15:23:52.881Z [TRACE] inventory-service - Auth event: login_failed - User: user_1004 - IP: 192.168.147.171 - RequestID: y0904aydxxl +2025-06-18T15:23:52.981Z [INFO] auth-service - Auth event: password_change - User: user_1029 - IP: 192.168.242.165 - RequestID: 975xjgbg6km +2025-06-18T15:23:53.081Z [TRACE] auth-service - Operation: order_created - Processing time: 360ms - RequestID: eekelz2or1t +2025-06-18T15:23:53.181Z [INFO] payment-service - Auth event: logout - User: user_1024 - IP: 192.168.32.38 - RequestID: nqu9jk8wayg +2025-06-18T15:23:53.281Z [DEBUG] inventory-service - Operation: order_created - Processing time: 77ms - RequestID: 1xxzi8t43k8 +2025-06-18T15:23:53.381Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 42ms - Rows affected: 82 - RequestID: nm659uexa9g +2025-06-18T15:23:53.481Z [INFO] order-service - Database INSERT on sessions - Execution time: 151ms - Rows affected: 0 - RequestID: us99fg9zmjj +2025-06-18T15:23:53.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1064 - IP: 192.168.14.77 - RequestID: lwznkcnry1 +2025-06-18T15:23:53.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.46.63 - RequestID: 3psycijo503 +2025-06-18T15:23:53.781Z [TRACE] auth-service - Operation: email_sent - Processing time: 144ms - RequestID: 16dcqbbhw83 +2025-06-18T15:23:53.881Z [INFO] user-service - Operation: webhook_sent - Processing time: 351ms - RequestID: ok4tgqh8wf +2025-06-18T15:23:53.981Z [TRACE] user-service - Auth event: password_change - User: user_1081 - IP: 192.168.81.206 - RequestID: c67x4myhdh7 +2025-06-18T15:23:54.081Z [INFO] notification-service - Operation: cache_hit - Processing time: 364ms - RequestID: gsr95xn5rq9 +2025-06-18T15:23:54.181Z [INFO] inventory-service - Operation: email_sent - Processing time: 579ms - RequestID: 7pkwuoun5jn +2025-06-18T15:23:54.281Z [TRACE] notification-service - Auth event: login_attempt - User: user_1016 - IP: 192.168.138.123 - RequestID: jeqanwpv38b +2025-06-18T15:23:54.381Z [TRACE] auth-service - Operation: order_created - Processing time: 626ms - RequestID: eij1b3cl3dh +2025-06-18T15:23:54.481Z [TRACE] order-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.32.38 - RequestID: k8v0scbkl0m +2025-06-18T15:23:54.581Z [TRACE] order-service - Database UPDATE on orders - Execution time: 298ms - Rows affected: 70 - RequestID: gpz8dj4kho6 +2025-06-18T15:23:54.681Z [TRACE] auth-service - Database DELETE on orders - Execution time: 260ms - Rows affected: 17 - RequestID: 41fuzsrmjek +2025-06-18T15:23:54.781Z [TRACE] order-service - Operation: payment_processed - Processing time: 849ms - RequestID: wetxx90vkjg +2025-06-18T15:23:54.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1047 - IP: 192.168.1.152 - RequestID: ha3jzbnyndj +2025-06-18T15:23:54.981Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.79.116 - RequestID: gel43bw40oh +2025-06-18T15:23:55.081Z [DEBUG] user-service - Operation: cache_miss - Processing time: 249ms - RequestID: 6ir84kp4cqn +2025-06-18T15:23:55.181Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 870ms - RequestID: gwggw92bpwa +2025-06-18T15:23:55.281Z [INFO] notification-service - Auth event: login_failed - User: user_1058 - IP: 192.168.211.72 - RequestID: 4ms94rh52sv +2025-06-18T15:23:55.381Z [INFO] payment-service - Database INSERT on sessions - Execution time: 94ms - Rows affected: 6 - RequestID: vzp878smf9 +2025-06-18T15:23:55.481Z [DEBUG] order-service - Auth event: token_refresh - User: user_1075 - IP: 192.168.100.240 - RequestID: v4mpo40b7m +2025-06-18T15:23:55.581Z [TRACE] payment-service - Auth event: login_success - User: user_1029 - IP: 192.168.79.141 - RequestID: tmotp3duq5k +2025-06-18T15:23:55.681Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 431ms - Rows affected: 23 - RequestID: 82v2ywjyexm +2025-06-18T15:23:55.781Z [DEBUG] order-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 290ms - IP: 192.168.181.225 - User: user_1046 - RequestID: aoi15n10klv +2025-06-18T15:23:55.881Z [TRACE] notification-service - Auth event: login_success - User: user_1008 - IP: 192.168.79.141 - RequestID: isbepk06j6 +2025-06-18T15:23:55.981Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 400 - Response time: 255ms - IP: 192.168.79.116 - User: user_1071 - RequestID: qq8hj7e6p0d +2025-06-18T15:23:56.081Z [TRACE] order-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.79.116 - RequestID: noh832k6f9 +2025-06-18T15:23:56.181Z [INFO] auth-service - Operation: order_created - Processing time: 205ms - RequestID: 5secng29ftv +2025-06-18T15:23:56.281Z [DEBUG] notification-service - Database INSERT on sessions - Execution time: 136ms - Rows affected: 0 - RequestID: e40g61sf2yv +2025-06-18T15:23:56.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.14.77 - RequestID: p9rjled7w8f +2025-06-18T15:23:56.481Z [TRACE] notification-service - Database DELETE on products - Execution time: 487ms - Rows affected: 75 - RequestID: 5zieg05e2s +2025-06-18T15:23:56.581Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 44ms - Rows affected: 99 - RequestID: u1pnk0mmty +2025-06-18T15:23:56.681Z [INFO] order-service - Database UPDATE on orders - Execution time: 350ms - Rows affected: 24 - RequestID: 8rylxdrvinr +2025-06-18T15:23:56.781Z [INFO] user-service - Database SELECT on users - Execution time: 325ms - Rows affected: 2 - RequestID: 3ht1s5sdgf4 +2025-06-18T15:23:56.881Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 502 - Response time: 678ms - IP: 192.168.85.229 - User: user_1034 - RequestID: 5bp9slzul5b +2025-06-18T15:23:56.981Z [INFO] auth-service - Operation: notification_queued - Processing time: 848ms - RequestID: 52zkpal0x67 +2025-06-18T15:23:57.081Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 503 - Response time: 127ms - IP: 192.168.104.37 - User: user_1029 - RequestID: eth6cv8yh7i +2025-06-18T15:23:57.181Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1500ms - IP: 192.168.10.184 - User: user_1039 - RequestID: hhzhuajk7ht +2025-06-18T15:23:57.281Z [TRACE] user-service - Database UPDATE on payments - Execution time: 243ms - Rows affected: 82 - RequestID: 3ipqqvh9tnm +2025-06-18T15:23:57.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 155ms - RequestID: qziuqq27o6l +2025-06-18T15:23:57.481Z [TRACE] order-service - Auth event: login_success - User: user_1030 - IP: 192.168.170.215 - RequestID: fbrtd92l8dv +2025-06-18T15:23:57.581Z [INFO] auth-service - Operation: webhook_sent - Processing time: 502ms - RequestID: 89m82o8bxbo +2025-06-18T15:23:57.681Z [INFO] order-service - Operation: payment_processed - Processing time: 780ms - RequestID: 3mrw2zsm69q +2025-06-18T15:23:57.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 233ms - RequestID: vkz477y4d8d +2025-06-18T15:23:57.881Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 91ms - Rows affected: 65 - RequestID: tqw8wrce9c +2025-06-18T15:23:57.981Z [INFO] auth-service - POST /api/v1/payments - Status: 201 - Response time: 489ms - IP: 192.168.79.116 - User: user_1095 - RequestID: pt5khsv6sb +2025-06-18T15:23:58.081Z [TRACE] user-service - Auth event: login_success - User: user_1011 - IP: 192.168.97.87 - RequestID: tays3paq558 +2025-06-18T15:23:58.181Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1408ms - IP: 192.168.227.233 - User: user_1073 - RequestID: uhrak0gigg +2025-06-18T15:23:58.281Z [DEBUG] user-service - Auth event: logout - User: user_1012 - IP: 192.168.68.128 - RequestID: uoogtvl0hjc +2025-06-18T15:23:58.381Z [INFO] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 1219ms - IP: 192.168.79.143 - User: user_1094 - RequestID: kqb5ck48h5b +2025-06-18T15:23:58.481Z [INFO] payment-service - Auth event: login_failed - User: user_1089 - IP: 192.168.68.128 - RequestID: ms9hdmy17i +2025-06-18T15:23:58.581Z [TRACE] payment-service - PUT /api/v1/payments - Status: 200 - Response time: 1138ms - IP: 192.168.159.94 - User: user_1023 - RequestID: 5dxfeoeel0n +2025-06-18T15:23:58.681Z [TRACE] auth-service - Auth event: login_attempt - User: user_1005 - IP: 192.168.32.38 - RequestID: yw87xqvod4j +2025-06-18T15:23:58.781Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 1017ms - RequestID: tgs5tpejsih +2025-06-18T15:23:58.881Z [DEBUG] auth-service - POST /api/v1/payments - Status: 404 - Response time: 1540ms - IP: 192.168.32.38 - User: user_1008 - RequestID: y5cnv3zfsxi +2025-06-18T15:23:58.981Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 475ms - IP: 192.168.232.72 - User: user_1063 - RequestID: 1ykcy4grjrk +2025-06-18T15:23:59.081Z [TRACE] order-service - Auth event: logout - User: user_1005 - IP: 192.168.13.72 - RequestID: al7q6obqg6s +2025-06-18T15:23:59.181Z [INFO] payment-service - PATCH /api/v1/orders - Status: 400 - Response time: 1583ms - IP: 192.168.13.72 - User: user_1055 - RequestID: 6m3kp2q4au4 +2025-06-18T15:23:59.281Z [DEBUG] order-service - Database UPDATE on users - Execution time: 317ms - Rows affected: 49 - RequestID: rxiw129sew +2025-06-18T15:23:59.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1028 - IP: 192.168.1.152 - RequestID: ptul0z2p9i +2025-06-18T15:23:59.481Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 304ms - RequestID: tr81qhhbesm +2025-06-18T15:23:59.581Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 316ms - Rows affected: 7 - RequestID: 66lexf97gen +2025-06-18T15:23:59.681Z [TRACE] order-service - PATCH /api/v1/users - Status: 404 - Response time: 208ms - IP: 192.168.174.114 - User: user_1009 - RequestID: ipwz9ipj0tn +2025-06-18T15:23:59.781Z [TRACE] inventory-service - Database DELETE on products - Execution time: 322ms - Rows affected: 86 - RequestID: xr1k9fungq +2025-06-18T15:23:59.881Z [INFO] auth-service - Operation: webhook_sent - Processing time: 245ms - RequestID: jooma06zbw +2025-06-18T15:23:59.981Z [INFO] inventory-service - Auth event: password_change - User: user_1091 - IP: 192.168.28.146 - RequestID: l03fmexmop +2025-06-18T15:24:00.081Z [TRACE] user-service - Auth event: password_change - User: user_1066 - IP: 192.168.104.37 - RequestID: bdc6pib2n94 +2025-06-18T15:24:00.181Z [INFO] user-service - GET /api/v1/orders - Status: 201 - Response time: 151ms - IP: 192.168.81.206 - User: user_1032 - RequestID: 3jfj326psob +2025-06-18T15:24:00.281Z [DEBUG] order-service - PUT /api/v1/payments - Status: 401 - Response time: 1759ms - IP: 192.168.227.233 - User: user_1002 - RequestID: bj6dqbrebdh +2025-06-18T15:24:00.381Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 1049ms - IP: 192.168.46.63 - User: user_1018 - RequestID: aniehg11imh +2025-06-18T15:24:00.481Z [INFO] user-service - Database UPDATE on users - Execution time: 158ms - Rows affected: 63 - RequestID: t3qoafg2kz +2025-06-18T15:24:00.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.227.233 - RequestID: u11k05m5vyj +2025-06-18T15:24:00.681Z [TRACE] order-service - PUT /api/v1/users - Status: 403 - Response time: 1834ms - IP: 192.168.64.33 - User: user_1069 - RequestID: 84ta1baod6o +2025-06-18T15:24:00.781Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 453ms - RequestID: rf4ynqr8ahd +2025-06-18T15:24:00.881Z [TRACE] payment-service - Auth event: password_change - User: user_1001 - IP: 192.168.187.199 - RequestID: qun6g6jhjni +2025-06-18T15:24:00.981Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 269ms - Rows affected: 51 - RequestID: lkzehaimaa +2025-06-18T15:24:01.081Z [INFO] payment-service - GET /api/v1/payments - Status: 500 - Response time: 434ms - IP: 192.168.13.72 - User: user_1094 - RequestID: 43s512pk51r +2025-06-18T15:24:01.181Z [INFO] notification-service - Database INSERT on users - Execution time: 223ms - Rows affected: 78 - RequestID: oyurwwnzet +2025-06-18T15:24:01.281Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 142ms - RequestID: aty57mk1b2h +2025-06-18T15:24:01.381Z [INFO] payment-service - Auth event: password_change - User: user_1099 - IP: 192.168.44.5 - RequestID: vse2pighl4 +2025-06-18T15:24:01.481Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1345ms - IP: 192.168.64.33 - User: user_1033 - RequestID: 4ffa5kzcr2f +2025-06-18T15:24:01.581Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 401 - Response time: 1675ms - IP: 192.168.64.33 - User: user_1033 - RequestID: 90zfe1bl3l +2025-06-18T15:24:01.681Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 129ms - Rows affected: 42 - RequestID: frb2n8pz3ks +2025-06-18T15:24:01.781Z [INFO] user-service - Database INSERT on products - Execution time: 402ms - Rows affected: 24 - RequestID: kbei94wozwa +2025-06-18T15:24:01.881Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 446ms - RequestID: 5i15quh0979 +2025-06-18T15:24:01.981Z [INFO] user-service - Operation: email_sent - Processing time: 105ms - RequestID: si6xxzgihio +2025-06-18T15:24:02.081Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 325ms - RequestID: ua5q8z1f7nc +2025-06-18T15:24:02.181Z [INFO] user-service - Operation: cache_hit - Processing time: 135ms - RequestID: kvh0djby7ug +2025-06-18T15:24:02.281Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 499ms - RequestID: mgpi218u4g8 +2025-06-18T15:24:02.381Z [DEBUG] order-service - Auth event: login_success - User: user_1049 - IP: 192.168.189.103 - RequestID: xcg2igxzn2i +2025-06-18T15:24:02.481Z [TRACE] auth-service - Database UPDATE on users - Execution time: 408ms - Rows affected: 12 - RequestID: 9hqku93p43 +2025-06-18T15:24:02.581Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 132ms - Rows affected: 50 - RequestID: zy9o76cor39 +2025-06-18T15:24:02.681Z [TRACE] auth-service - Operation: cache_miss - Processing time: 830ms - RequestID: sjllk46wz98 +2025-06-18T15:24:02.781Z [TRACE] order-service - POST /api/v1/inventory - Status: 503 - Response time: 713ms - IP: 192.168.30.79 - User: user_1032 - RequestID: a1brl2o5cdi +2025-06-18T15:24:02.881Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 209ms - Rows affected: 19 - RequestID: mj02vjy594r +2025-06-18T15:24:02.981Z [DEBUG] notification-service - Operation: order_created - Processing time: 1016ms - RequestID: jpyp6m6qrsn +2025-06-18T15:24:03.081Z [TRACE] inventory-service - Operation: order_created - Processing time: 259ms - RequestID: i84qh8yg7bp +2025-06-18T15:24:03.181Z [DEBUG] inventory-service - Auth event: login_success - User: user_1005 - IP: 192.168.79.143 - RequestID: 36zh36s692w +2025-06-18T15:24:03.281Z [INFO] user-service - Operation: email_sent - Processing time: 1006ms - RequestID: rh29w950pdj +2025-06-18T15:24:03.381Z [INFO] inventory-service - POST /api/v1/auth/login - Status: 200 - Response time: 1978ms - IP: 192.168.36.218 - User: user_1089 - RequestID: m9sq8to2qhs +2025-06-18T15:24:03.481Z [INFO] order-service - GET /api/v1/users - Status: 502 - Response time: 391ms - IP: 192.168.141.100 - User: user_1091 - RequestID: 4bz4du7mcm5 +2025-06-18T15:24:03.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1063 - IP: 192.168.170.215 - RequestID: dybjvc9y7ib +2025-06-18T15:24:03.681Z [TRACE] auth-service - Auth event: login_success - User: user_1034 - IP: 192.168.232.72 - RequestID: ydyheoigbhf +2025-06-18T15:24:03.781Z [INFO] order-service - Database UPDATE on audit_logs - Execution time: 85ms - Rows affected: 31 - RequestID: 6aivf9vkrm5 +2025-06-18T15:24:03.881Z [INFO] payment-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.79.116 - RequestID: 76i65doujog +2025-06-18T15:24:03.981Z [INFO] order-service - POST /api/v1/payments - Status: 404 - Response time: 1748ms - IP: 192.168.229.123 - User: user_1001 - RequestID: getyzbkvsl +2025-06-18T15:24:04.081Z [DEBUG] order-service - Auth event: login_failed - User: user_1036 - IP: 192.168.10.184 - RequestID: dvftyrty6uu +2025-06-18T15:24:04.181Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 399ms - Rows affected: 61 - RequestID: zjh860hvhf8 +2025-06-18T15:24:04.281Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 792ms - RequestID: 4ss52zvy6u8 +2025-06-18T15:24:04.381Z [DEBUG] user-service - Operation: email_sent - Processing time: 475ms - RequestID: 6x2rlig6sl9 +2025-06-18T15:24:04.481Z [INFO] order-service - GET /api/v1/inventory - Status: 401 - Response time: 1117ms - IP: 192.168.81.206 - User: user_1018 - RequestID: 5b8lx3aa2o +2025-06-18T15:24:04.581Z [INFO] auth-service - Operation: email_sent - Processing time: 513ms - RequestID: f0yhdy0vqnh +2025-06-18T15:24:04.681Z [INFO] notification-service - PUT /api/v1/users - Status: 404 - Response time: 71ms - IP: 192.168.196.226 - User: user_1050 - RequestID: 4kag3em32uc +2025-06-18T15:24:04.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1001 - IP: 192.168.64.33 - RequestID: 52hq83ii0vl +2025-06-18T15:24:04.881Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.138.123 - RequestID: xszshn3urfp +2025-06-18T15:24:04.981Z [INFO] payment-service - Operation: cache_hit - Processing time: 991ms - RequestID: 79md91o9faf +2025-06-18T15:24:05.081Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 494ms - IP: 192.168.85.229 - User: user_1074 - RequestID: xz5hwlec1xn +2025-06-18T15:24:05.181Z [TRACE] user-service - Database DELETE on users - Execution time: 237ms - Rows affected: 50 - RequestID: 8v4q1dvcxui +2025-06-18T15:24:05.281Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 1721ms - IP: 192.168.79.116 - User: user_1072 - RequestID: 02f9nko3ruzf +2025-06-18T15:24:05.381Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 732ms - RequestID: yqj6fdexph +2025-06-18T15:24:05.481Z [TRACE] auth-service - Database UPDATE on products - Execution time: 312ms - Rows affected: 83 - RequestID: 82zm1zhmbeu +2025-06-18T15:24:05.581Z [TRACE] order-service - DELETE /api/v1/users - Status: 502 - Response time: 604ms - IP: 192.168.138.123 - User: user_1060 - RequestID: ki5gb7dd5ji +2025-06-18T15:24:05.681Z [TRACE] order-service - Operation: notification_queued - Processing time: 142ms - RequestID: hete235pfug +2025-06-18T15:24:05.781Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 300ms - Rows affected: 88 - RequestID: iiomyuezyn +2025-06-18T15:24:05.881Z [TRACE] notification-service - GET /api/v1/inventory - Status: 400 - Response time: 333ms - IP: 192.168.81.206 - User: user_1057 - RequestID: 55h8clwcyuw +2025-06-18T15:24:05.981Z [TRACE] payment-service - Database INSERT on users - Execution time: 303ms - Rows affected: 23 - RequestID: jy3jvcfdtwn +2025-06-18T15:24:06.081Z [TRACE] auth-service - Operation: cache_hit - Processing time: 325ms - RequestID: bbtcg6hizap +2025-06-18T15:24:06.181Z [INFO] notification-service - Operation: email_sent - Processing time: 173ms - RequestID: 06bezl8mz4dq +2025-06-18T15:24:06.281Z [INFO] user-service - Database UPDATE on sessions - Execution time: 45ms - Rows affected: 64 - RequestID: 9r5vcr6ic0v +2025-06-18T15:24:06.381Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 403 - Response time: 1046ms - IP: 192.168.85.229 - User: user_1051 - RequestID: npkkm20ncqc +2025-06-18T15:24:06.481Z [TRACE] payment-service - Operation: cache_hit - Processing time: 406ms - RequestID: 5my9az26k6v +2025-06-18T15:24:06.581Z [DEBUG] order-service - Operation: email_sent - Processing time: 739ms - RequestID: 1llptw6w9tv +2025-06-18T15:24:06.681Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 679ms - RequestID: pwicsdhpeze +2025-06-18T15:24:06.781Z [TRACE] notification-service - Database INSERT on payments - Execution time: 161ms - Rows affected: 46 - RequestID: ha5onpzzotv +2025-06-18T15:24:06.881Z [INFO] auth-service - Operation: email_sent - Processing time: 831ms - RequestID: 8wz49cx4hic +2025-06-18T15:24:06.981Z [DEBUG] order-service - Auth event: token_refresh - User: user_1071 - IP: 192.168.189.103 - RequestID: 6ozufaua2zu +2025-06-18T15:24:07.081Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 400 - Response time: 1507ms - IP: 192.168.1.152 - User: user_1037 - RequestID: ns43i4m7s1j +2025-06-18T15:24:07.181Z [TRACE] notification-service - Operation: email_sent - Processing time: 530ms - RequestID: 6xpo9e29b1b +2025-06-18T15:24:07.281Z [TRACE] order-service - Operation: order_created - Processing time: 746ms - RequestID: rkfs2etn5im +2025-06-18T15:24:07.381Z [TRACE] notification-service - Database DELETE on payments - Execution time: 32ms - Rows affected: 99 - RequestID: eyh374wtgq +2025-06-18T15:24:07.481Z [TRACE] order-service - Auth event: login_failed - User: user_1012 - IP: 192.168.13.72 - RequestID: yav5yjozld +2025-06-18T15:24:07.581Z [TRACE] payment-service - Auth event: login_failed - User: user_1036 - IP: 192.168.44.5 - RequestID: i362nulwr1 +2025-06-18T15:24:07.681Z [TRACE] order-service - Auth event: logout - User: user_1022 - IP: 192.168.194.41 - RequestID: 1w0tbcjxqw9 +2025-06-18T15:24:07.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 509ms - RequestID: ly8tzviz7ze +2025-06-18T15:24:07.881Z [INFO] notification-service - Database UPDATE on payments - Execution time: 27ms - Rows affected: 74 - RequestID: 30rhrk0eost +2025-06-18T15:24:07.981Z [DEBUG] payment-service - Operation: order_created - Processing time: 161ms - RequestID: xtbn0f0y6xg +2025-06-18T15:24:08.081Z [INFO] inventory-service - Database DELETE on sessions - Execution time: 246ms - Rows affected: 92 - RequestID: wpwn0oj0otf +2025-06-18T15:24:08.181Z [TRACE] payment-service - PUT /api/v1/users - Status: 403 - Response time: 1594ms - IP: 192.168.36.218 - User: user_1036 - RequestID: oll3xogzoqr +2025-06-18T15:24:08.281Z [TRACE] notification-service - Database UPDATE on products - Execution time: 330ms - Rows affected: 88 - RequestID: ljavwzi9fr +2025-06-18T15:24:08.381Z [INFO] user-service - Database SELECT on products - Execution time: 157ms - Rows affected: 12 - RequestID: vwgiunkifh9 +2025-06-18T15:24:08.481Z [TRACE] payment-service - Operation: notification_queued - Processing time: 391ms - RequestID: pzp0c577nvq +2025-06-18T15:24:08.581Z [TRACE] notification-service - Operation: payment_processed - Processing time: 195ms - RequestID: eivvr6ozi8l +2025-06-18T15:24:08.681Z [INFO] notification-service - Operation: email_sent - Processing time: 54ms - RequestID: d5emzn5swz9 +2025-06-18T15:24:08.781Z [TRACE] order-service - Database SELECT on sessions - Execution time: 315ms - Rows affected: 27 - RequestID: drcvikix7h9 +2025-06-18T15:24:08.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1030 - IP: 192.168.227.77 - RequestID: kcqyma6u5v +2025-06-18T15:24:08.981Z [DEBUG] inventory-service - Auth event: login_success - User: user_1016 - IP: 192.168.196.226 - RequestID: dyl0oup97rh +2025-06-18T15:24:09.081Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 404 - Response time: 679ms - IP: 192.168.104.37 - User: user_1092 - RequestID: uh7oj4pqzej +2025-06-18T15:24:09.181Z [TRACE] user-service - Auth event: password_change - User: user_1023 - IP: 192.168.240.169 - RequestID: 9seiu5jrkrr +2025-06-18T15:24:09.281Z [INFO] order-service - POST /api/v1/orders - Status: 403 - Response time: 931ms - IP: 192.168.158.144 - User: user_1079 - RequestID: 0la1uapz03tc +2025-06-18T15:24:09.381Z [INFO] payment-service - Operation: email_sent - Processing time: 393ms - RequestID: ppzpqx25ui +2025-06-18T15:24:09.481Z [TRACE] user-service - Operation: webhook_sent - Processing time: 1036ms - RequestID: zrsxmkk3ekr +2025-06-18T15:24:09.581Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 201 - Response time: 1043ms - IP: 192.168.170.215 - User: user_1032 - RequestID: b11s9qgvlwo +2025-06-18T15:24:09.681Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 94ms - Rows affected: 31 - RequestID: v0e7qaft7r +2025-06-18T15:24:09.781Z [DEBUG] inventory-service - Auth event: logout - User: user_1022 - IP: 192.168.32.38 - RequestID: zfpinevqdz +2025-06-18T15:24:09.881Z [INFO] user-service - Auth event: login_failed - User: user_1088 - IP: 192.168.81.206 - RequestID: uzizcm79y7 +2025-06-18T15:24:09.981Z [INFO] order-service - Operation: payment_processed - Processing time: 447ms - RequestID: 6przlbkbb7 +2025-06-18T15:24:10.081Z [TRACE] notification-service - Auth event: password_change - User: user_1083 - IP: 192.168.85.229 - RequestID: fn6ephkbpwb +2025-06-18T15:24:10.181Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 98ms - Rows affected: 5 - RequestID: 0k2532vz2p4e +2025-06-18T15:24:10.281Z [TRACE] user-service - Database UPDATE on users - Execution time: 428ms - Rows affected: 97 - RequestID: y6oydcijgsj +2025-06-18T15:24:10.381Z [TRACE] auth-service - Database UPDATE on orders - Execution time: 388ms - Rows affected: 0 - RequestID: uko0vqrf8vm +2025-06-18T15:24:10.481Z [TRACE] notification-service - Database INSERT on payments - Execution time: 257ms - Rows affected: 73 - RequestID: rdm3g6v3vmg +2025-06-18T15:24:10.581Z [TRACE] payment-service - Database INSERT on payments - Execution time: 277ms - Rows affected: 84 - RequestID: a0tue4irpok +2025-06-18T15:24:10.681Z [INFO] order-service - Auth event: password_change - User: user_1031 - IP: 192.168.138.123 - RequestID: k1hznf749ob +2025-06-18T15:24:10.781Z [INFO] user-service - Auth event: logout - User: user_1065 - IP: 192.168.79.116 - RequestID: xyf9egjjdlp +2025-06-18T15:24:10.881Z [INFO] user-service - Auth event: password_change - User: user_1032 - IP: 192.168.79.116 - RequestID: 06sf5t8g0d74 +2025-06-18T15:24:10.981Z [INFO] notification-service - Operation: cache_hit - Processing time: 390ms - RequestID: qg3qtf8rq5 +2025-06-18T15:24:11.081Z [TRACE] user-service - Database INSERT on sessions - Execution time: 455ms - Rows affected: 83 - RequestID: lmc9rbnawz +2025-06-18T15:24:11.181Z [DEBUG] notification-service - Operation: order_created - Processing time: 762ms - RequestID: 8z22r5ojyok +2025-06-18T15:24:11.281Z [TRACE] user-service - Operation: order_created - Processing time: 729ms - RequestID: x5mtutqrehi +2025-06-18T15:24:11.381Z [TRACE] user-service - Operation: payment_processed - Processing time: 463ms - RequestID: o1sd7nlpa7 +2025-06-18T15:24:11.481Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 403 - Response time: 1392ms - IP: 192.168.147.171 - User: user_1018 - RequestID: 4gvqgwy967k +2025-06-18T15:24:11.581Z [TRACE] notification-service - Auth event: logout - User: user_1033 - IP: 192.168.79.143 - RequestID: cwbz7km36r7 +2025-06-18T15:24:11.681Z [INFO] inventory-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 185ms - IP: 192.168.79.116 - User: user_1040 - RequestID: 361ygil15do +2025-06-18T15:24:11.781Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 262ms - Rows affected: 70 - RequestID: 3r3w4ogg6h7 +2025-06-18T15:24:11.881Z [TRACE] inventory-service - Operation: order_created - Processing time: 444ms - RequestID: kakcv43koz +2025-06-18T15:24:11.981Z [INFO] order-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1814ms - IP: 192.168.10.184 - User: user_1019 - RequestID: l31mrnjq43q +2025-06-18T15:24:12.081Z [TRACE] notification-service - Auth event: logout - User: user_1046 - IP: 192.168.242.165 - RequestID: zia3w4927f +2025-06-18T15:24:12.181Z [TRACE] notification-service - Auth event: logout - User: user_1049 - IP: 192.168.227.77 - RequestID: m48vnxfp7h +2025-06-18T15:24:12.281Z [INFO] user-service - PATCH /api/v1/users - Status: 403 - Response time: 111ms - IP: 192.168.30.79 - User: user_1041 - RequestID: xvbegd4mz7i +2025-06-18T15:24:12.381Z [INFO] inventory-service - POST /api/v1/users - Status: 400 - Response time: 1757ms - IP: 192.168.30.79 - User: user_1099 - RequestID: r8dan06jtr +2025-06-18T15:24:12.481Z [INFO] payment-service - DELETE /api/v1/payments - Status: 404 - Response time: 1465ms - IP: 192.168.158.144 - User: user_1040 - RequestID: pgcd74ppgq +2025-06-18T15:24:12.581Z [INFO] order-service - PUT /api/v1/orders - Status: 200 - Response time: 1297ms - IP: 192.168.44.5 - User: user_1093 - RequestID: eftt001adk +2025-06-18T15:24:12.681Z [INFO] user-service - Auth event: token_refresh - User: user_1090 - IP: 192.168.32.38 - RequestID: 8wx2dphn2ih +2025-06-18T15:24:12.781Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 103ms - Rows affected: 95 - RequestID: zgkht1xn91 +2025-06-18T15:24:12.881Z [DEBUG] order-service - Auth event: login_success - User: user_1099 - IP: 192.168.232.72 - RequestID: 5jcrmul531v +2025-06-18T15:24:12.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1051 - IP: 192.168.85.229 - RequestID: fiafsu4u7t +2025-06-18T15:24:13.081Z [TRACE] notification-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.64.33 - RequestID: 4gbh5i0b0m2 +2025-06-18T15:24:13.181Z [DEBUG] notification-service - POST /api/v1/auth/logout - Status: 401 - Response time: 752ms - IP: 192.168.174.114 - User: user_1033 - RequestID: dyckvmgdlm +2025-06-18T15:24:13.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1005 - IP: 192.168.104.37 - RequestID: eqp8bzmeyh +2025-06-18T15:24:13.381Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 201 - Response time: 47ms - IP: 192.168.232.72 - User: user_1011 - RequestID: mrb8ur28fx +2025-06-18T15:24:13.481Z [TRACE] order-service - Database DELETE on payments - Execution time: 314ms - Rows affected: 3 - RequestID: en9rth78s5 +2025-06-18T15:24:13.581Z [DEBUG] auth-service - Auth event: logout - User: user_1059 - IP: 192.168.133.7 - RequestID: tfd7fzckb4a +2025-06-18T15:24:13.681Z [INFO] user-service - Database DELETE on payments - Execution time: 134ms - Rows affected: 21 - RequestID: vd4lzeab8n +2025-06-18T15:24:13.781Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 152ms - Rows affected: 81 - RequestID: gn89hmx7tdg +2025-06-18T15:24:13.881Z [TRACE] auth-service - POST /api/v1/users - Status: 401 - Response time: 503ms - IP: 192.168.100.240 - User: user_1099 - RequestID: i7zxd9vqda +2025-06-18T15:24:13.981Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 797ms - RequestID: fpf13ge5lei +2025-06-18T15:24:14.081Z [TRACE] notification-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 839ms - IP: 192.168.138.123 - User: user_1053 - RequestID: zdzb345riep +2025-06-18T15:24:14.181Z [TRACE] notification-service - Auth event: login_failed - User: user_1025 - IP: 192.168.170.215 - RequestID: 4l3pcsi2hxy +2025-06-18T15:24:14.281Z [TRACE] user-service - Auth event: login_failed - User: user_1069 - IP: 192.168.10.184 - RequestID: 76sp0m26e1e +2025-06-18T15:24:14.381Z [INFO] payment-service - Auth event: login_attempt - User: user_1099 - IP: 192.168.30.79 - RequestID: vteog2j33hd +2025-06-18T15:24:14.481Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 301ms - RequestID: ehzqf1uwmv +2025-06-18T15:24:14.581Z [INFO] auth-service - Database SELECT on payments - Execution time: 63ms - Rows affected: 74 - RequestID: 2w2mz2vzph8 +2025-06-18T15:24:14.681Z [DEBUG] auth-service - Database SELECT on users - Execution time: 285ms - Rows affected: 52 - RequestID: t4sv6lw8k59 +2025-06-18T15:24:14.781Z [TRACE] auth-service - PATCH /api/v1/users - Status: 403 - Response time: 598ms - IP: 192.168.141.100 - User: user_1010 - RequestID: w4m39coq6c +2025-06-18T15:24:14.881Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 214ms - Rows affected: 66 - RequestID: at9er15x1vj +2025-06-18T15:24:14.981Z [INFO] auth-service - Database INSERT on orders - Execution time: 497ms - Rows affected: 70 - RequestID: n1m9fc1g0je +2025-06-18T15:24:15.081Z [INFO] order-service - Auth event: login_failed - User: user_1092 - IP: 192.168.68.128 - RequestID: jdg9i4z0dxe +2025-06-18T15:24:15.181Z [INFO] payment-service - Operation: email_sent - Processing time: 582ms - RequestID: ghhizvz98o +2025-06-18T15:24:15.281Z [TRACE] auth-service - Database SELECT on payments - Execution time: 200ms - Rows affected: 85 - RequestID: uzwkkgiplbn +2025-06-18T15:24:15.381Z [INFO] inventory-service - PATCH /api/v1/payments - Status: 200 - Response time: 1091ms - IP: 192.168.97.87 - User: user_1036 - RequestID: udbfl5d6iq +2025-06-18T15:24:15.481Z [TRACE] auth-service - Operation: email_sent - Processing time: 89ms - RequestID: z5h7tld0y1 +2025-06-18T15:24:15.581Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 746ms - RequestID: 4fdbexcdg4f +2025-06-18T15:24:15.681Z [DEBUG] payment-service - Database UPDATE on sessions - Execution time: 141ms - Rows affected: 87 - RequestID: u7muea7rgpm +2025-06-18T15:24:15.781Z [INFO] notification-service - Operation: notification_queued - Processing time: 372ms - RequestID: ispntwucra +2025-06-18T15:24:15.881Z [TRACE] auth-service - Database UPDATE on products - Execution time: 153ms - Rows affected: 54 - RequestID: l4ot6b6662q +2025-06-18T15:24:15.981Z [INFO] user-service - Operation: notification_queued - Processing time: 687ms - RequestID: cmpno6i6tgo +2025-06-18T15:24:16.081Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 184ms - Rows affected: 95 - RequestID: 1k8xy2fev85 +2025-06-18T15:24:16.181Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 385ms - RequestID: 2f82itzm9yf +2025-06-18T15:24:16.281Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 223ms - Rows affected: 72 - RequestID: 0bl1q0siyzvb +2025-06-18T15:24:16.381Z [TRACE] order-service - Auth event: login_success - User: user_1027 - IP: 192.168.68.158 - RequestID: 2oq330a7sg3 +2025-06-18T15:24:16.481Z [TRACE] notification-service - Database INSERT on payments - Execution time: 188ms - Rows affected: 92 - RequestID: zyzuwe5moqr +2025-06-18T15:24:16.581Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 131ms - RequestID: 7l7rt3d0b5j +2025-06-18T15:24:16.681Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 926ms - RequestID: mqybng47f5 +2025-06-18T15:24:16.781Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 327ms - Rows affected: 96 - RequestID: 4vb0uhe3a24 +2025-06-18T15:24:16.881Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 30ms - Rows affected: 2 - RequestID: ohegmcez38a +2025-06-18T15:24:16.981Z [TRACE] order-service - Database SELECT on payments - Execution time: 85ms - Rows affected: 73 - RequestID: fczv5lgzecb +2025-06-18T15:24:17.081Z [TRACE] user-service - Database DELETE on payments - Execution time: 119ms - Rows affected: 18 - RequestID: 2knlrwacnya +2025-06-18T15:24:17.181Z [INFO] inventory-service - Auth event: login_failed - User: user_1098 - IP: 192.168.28.146 - RequestID: wthxwlnt3b +2025-06-18T15:24:17.281Z [DEBUG] auth-service - GET /api/v1/users - Status: 400 - Response time: 429ms - IP: 192.168.133.7 - User: user_1076 - RequestID: v8gbig2vqih +2025-06-18T15:24:17.381Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 110ms - Rows affected: 28 - RequestID: okcixkjjx5r +2025-06-18T15:24:17.481Z [INFO] payment-service - Operation: webhook_sent - Processing time: 504ms - RequestID: iwz8atrllrd +2025-06-18T15:24:17.581Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 293ms - Rows affected: 30 - RequestID: koibogg423 +2025-06-18T15:24:17.681Z [TRACE] order-service - Database DELETE on orders - Execution time: 3ms - Rows affected: 91 - RequestID: zp693pkjvlj +2025-06-18T15:24:17.781Z [TRACE] user-service - Auth event: logout - User: user_1025 - IP: 192.168.81.206 - RequestID: bgg8na0uw9i +2025-06-18T15:24:17.881Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 144ms - RequestID: 4eoonaxgxwb +2025-06-18T15:24:17.981Z [INFO] auth-service - PATCH /api/v1/orders - Status: 200 - Response time: 273ms - IP: 192.168.13.72 - User: user_1010 - RequestID: rtf9svvhvxb +2025-06-18T15:24:18.081Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 244ms - Rows affected: 76 - RequestID: 57jzk01w142 +2025-06-18T15:24:18.181Z [INFO] auth-service - Auth event: login_failed - User: user_1074 - IP: 192.168.1.152 - RequestID: cmvbr58o4tn +2025-06-18T15:24:18.281Z [INFO] payment-service - Operation: payment_processed - Processing time: 913ms - RequestID: 4t31gcdv8a7 +2025-06-18T15:24:18.381Z [TRACE] notification-service - Operation: email_sent - Processing time: 466ms - RequestID: ifxo09j30y8 +2025-06-18T15:24:18.481Z [DEBUG] user-service - Operation: order_created - Processing time: 904ms - RequestID: lh88iwdofj +2025-06-18T15:24:18.581Z [DEBUG] payment-service - Database SELECT on audit_logs - Execution time: 325ms - Rows affected: 14 - RequestID: ctf7jfupzcj +2025-06-18T15:24:18.681Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 269ms - Rows affected: 15 - RequestID: mqvwl9cryd8 +2025-06-18T15:24:18.781Z [INFO] auth-service - Database SELECT on orders - Execution time: 294ms - Rows affected: 95 - RequestID: 7nin63bhqbd +2025-06-18T15:24:18.881Z [TRACE] payment-service - Operation: payment_processed - Processing time: 173ms - RequestID: 2yaah5djpc6 +2025-06-18T15:24:18.981Z [INFO] user-service - Operation: cache_hit - Processing time: 171ms - RequestID: bc9xf42ee8n +2025-06-18T15:24:19.081Z [DEBUG] notification-service - Auth event: login_failed - User: user_1069 - IP: 192.168.31.117 - RequestID: dcuw4j4l8yd +2025-06-18T15:24:19.181Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 758ms - RequestID: 67phox8dan +2025-06-18T15:24:19.281Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.13.72 - RequestID: vqwa4k9o95 +2025-06-18T15:24:19.381Z [TRACE] notification-service - Database INSERT on sessions - Execution time: 168ms - Rows affected: 26 - RequestID: 6aoq90euhi2 +2025-06-18T15:24:19.481Z [INFO] auth-service - Auth event: login_failed - User: user_1000 - IP: 192.168.147.171 - RequestID: 2piiqztx1b8 +2025-06-18T15:24:19.581Z [INFO] inventory-service - Operation: payment_processed - Processing time: 958ms - RequestID: llw0x0sv26a +2025-06-18T15:24:19.681Z [TRACE] user-service - Operation: webhook_sent - Processing time: 564ms - RequestID: sw920dm7u6h +2025-06-18T15:24:19.781Z [INFO] payment-service - Auth event: password_change - User: user_1079 - IP: 192.168.30.79 - RequestID: 5qh63jk5oid +2025-06-18T15:24:19.881Z [INFO] inventory-service - Operation: payment_processed - Processing time: 795ms - RequestID: 0yxaewspxoci +2025-06-18T15:24:19.981Z [INFO] notification-service - Auth event: logout - User: user_1029 - IP: 192.168.10.184 - RequestID: 20zl9h8nk2t +2025-06-18T15:24:20.081Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 998ms - RequestID: mm42f41c0us +2025-06-18T15:24:20.181Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 272ms - Rows affected: 13 - RequestID: iovgxvmu2q +2025-06-18T15:24:20.281Z [DEBUG] user-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.242.165 - RequestID: k66sb01qznr +2025-06-18T15:24:20.381Z [INFO] auth-service - Database DELETE on users - Execution time: 295ms - Rows affected: 24 - RequestID: gl0hwujtmi7 +2025-06-18T15:24:20.481Z [TRACE] user-service - Database UPDATE on orders - Execution time: 322ms - Rows affected: 28 - RequestID: fwnrknhk33p +2025-06-18T15:24:20.581Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 386ms - Rows affected: 18 - RequestID: zwc53dujcn +2025-06-18T15:24:20.681Z [INFO] order-service - Auth event: logout - User: user_1001 - IP: 192.168.211.72 - RequestID: fh393uyile +2025-06-18T15:24:20.781Z [TRACE] user-service - GET /api/v1/users - Status: 201 - Response time: 1977ms - IP: 192.168.79.116 - User: user_1044 - RequestID: 2vsjwzue4hy +2025-06-18T15:24:20.881Z [TRACE] user-service - DELETE /api/v1/users - Status: 200 - Response time: 294ms - IP: 192.168.211.72 - User: user_1091 - RequestID: im57s7rp56 +2025-06-18T15:24:20.981Z [INFO] payment-service - Operation: cache_miss - Processing time: 414ms - RequestID: wmu4gkk31s +2025-06-18T15:24:21.081Z [INFO] inventory-service - Auth event: login_failed - User: user_1073 - IP: 192.168.229.123 - RequestID: ye0f3fo6rog +2025-06-18T15:24:21.181Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 170ms - RequestID: wl9zp1uv9uf +2025-06-18T15:24:21.281Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 431ms - Rows affected: 36 - RequestID: a5nlnip351 +2025-06-18T15:24:21.381Z [TRACE] inventory-service - Operation: email_sent - Processing time: 585ms - RequestID: mx5b432dt28 +2025-06-18T15:24:21.481Z [DEBUG] notification-service - Auth event: login_success - User: user_1043 - IP: 192.168.13.72 - RequestID: dzj1sq96a4t +2025-06-18T15:24:21.581Z [DEBUG] auth-service - Database SELECT on sessions - Execution time: 28ms - Rows affected: 60 - RequestID: i9vt9r8g6z +2025-06-18T15:24:21.681Z [TRACE] user-service - GET /api/v1/inventory - Status: 403 - Response time: 1356ms - IP: 192.168.53.133 - User: user_1054 - RequestID: kqsjhez2zq +2025-06-18T15:24:21.781Z [INFO] notification-service - Operation: cache_hit - Processing time: 228ms - RequestID: pjrvk3ieeve +2025-06-18T15:24:21.881Z [INFO] auth-service - Auth event: logout - User: user_1046 - IP: 192.168.240.169 - RequestID: 6b7dxpmh56f +2025-06-18T15:24:21.981Z [INFO] inventory-service - POST /api/v1/inventory - Status: 201 - Response time: 426ms - IP: 192.168.158.144 - User: user_1051 - RequestID: byflqscpvxj +2025-06-18T15:24:22.081Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 584ms - RequestID: j16wm65s3t +2025-06-18T15:24:22.181Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 1044ms - RequestID: ho5eostm5z +2025-06-18T15:24:22.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1033 - IP: 192.168.232.72 - RequestID: m2t1aqyfsii +2025-06-18T15:24:22.381Z [DEBUG] order-service - Operation: payment_processed - Processing time: 744ms - RequestID: 96ybuswde1i +2025-06-18T15:24:22.481Z [INFO] inventory-service - GET /api/v1/payments - Status: 500 - Response time: 875ms - IP: 192.168.159.94 - User: user_1095 - RequestID: uafocnv10ep +2025-06-18T15:24:22.581Z [INFO] payment-service - Auth event: logout - User: user_1002 - IP: 192.168.79.141 - RequestID: a25e990f3w +2025-06-18T15:24:22.681Z [INFO] order-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.68.158 - RequestID: 6nk04uj60ll +2025-06-18T15:24:22.781Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 319ms - Rows affected: 85 - RequestID: 9accqlg15a +2025-06-18T15:24:22.881Z [INFO] auth-service - Auth event: logout - User: user_1023 - IP: 192.168.159.94 - RequestID: qphb56w7c1 +2025-06-18T15:24:22.981Z [INFO] inventory-service - Operation: payment_processed - Processing time: 838ms - RequestID: 58awl2i166h +2025-06-18T15:24:23.081Z [INFO] user-service - Operation: inventory_updated - Processing time: 405ms - RequestID: cc340qpoopr +2025-06-18T15:24:23.181Z [TRACE] order-service - POST /api/v1/payments - Status: 201 - Response time: 1782ms - IP: 192.168.30.79 - User: user_1024 - RequestID: jdnd4t76fv +2025-06-18T15:24:23.281Z [DEBUG] order-service - Auth event: login_success - User: user_1026 - IP: 192.168.181.225 - RequestID: i0gyyywrs6s +2025-06-18T15:24:23.381Z [TRACE] user-service - Operation: webhook_sent - Processing time: 119ms - RequestID: 6mufi0ith4v +2025-06-18T15:24:23.481Z [INFO] auth-service - POST /api/v1/auth/login - Status: 404 - Response time: 934ms - IP: 192.168.240.169 - User: user_1036 - RequestID: qiwg44s84 +2025-06-18T15:24:23.581Z [INFO] user-service - DELETE /api/v1/orders - Status: 201 - Response time: 624ms - IP: 192.168.158.144 - User: user_1069 - RequestID: ucdshiok2nb +2025-06-18T15:24:23.681Z [TRACE] notification-service - Operation: cache_miss - Processing time: 376ms - RequestID: ph2j1rjp2a +2025-06-18T15:24:23.781Z [INFO] order-service - Auth event: login_success - User: user_1000 - IP: 192.168.53.133 - RequestID: ps226q8vabn +2025-06-18T15:24:23.881Z [TRACE] inventory-service - Auth event: login_success - User: user_1040 - IP: 192.168.138.123 - RequestID: ek21u0d9d8k +2025-06-18T15:24:23.981Z [TRACE] order-service - Database SELECT on orders - Execution time: 342ms - Rows affected: 19 - RequestID: f1tpm2t5ct4 +2025-06-18T15:24:24.081Z [INFO] auth-service - Operation: notification_queued - Processing time: 233ms - RequestID: jmjzrv1ufv +2025-06-18T15:24:24.181Z [INFO] order-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1173ms - IP: 192.168.97.87 - User: user_1043 - RequestID: z06p9pe8k3 +2025-06-18T15:24:24.281Z [TRACE] inventory-service - Operation: notification_queued - Processing time: 783ms - RequestID: t10xwrnr8nq +2025-06-18T15:24:24.381Z [TRACE] inventory-service - Database DELETE on products - Execution time: 244ms - Rows affected: 56 - RequestID: m8m5us48mjf +2025-06-18T15:24:24.481Z [TRACE] order-service - Database INSERT on products - Execution time: 65ms - Rows affected: 84 - RequestID: u9h4244aytr +2025-06-18T15:24:24.581Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 717ms - RequestID: 43wr50nvete +2025-06-18T15:24:24.681Z [INFO] inventory-service - Database DELETE on users - Execution time: 41ms - Rows affected: 77 - RequestID: 5qo3gjji6t8 +2025-06-18T15:24:24.781Z [TRACE] auth-service - PATCH /api/v1/inventory - Status: 500 - Response time: 1440ms - IP: 192.168.28.146 - User: user_1046 - RequestID: 0asdyfs9meeu +2025-06-18T15:24:24.881Z [DEBUG] payment-service - Database SELECT on sessions - Execution time: 428ms - Rows affected: 62 - RequestID: 5d3433jzdns +2025-06-18T15:24:24.981Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 335ms - Rows affected: 46 - RequestID: rfijjrv9pp +2025-06-18T15:24:25.081Z [TRACE] user-service - Operation: webhook_sent - Processing time: 267ms - RequestID: fht05a9rchv +2025-06-18T15:24:25.181Z [DEBUG] inventory-service - Database INSERT on users - Execution time: 368ms - Rows affected: 88 - RequestID: q5p1o0tpb1i +2025-06-18T15:24:25.281Z [INFO] user-service - Operation: cache_miss - Processing time: 1040ms - RequestID: 835g0z8soge +2025-06-18T15:24:25.381Z [TRACE] notification-service - Operation: cache_miss - Processing time: 124ms - RequestID: awvq6mqfb9 +2025-06-18T15:24:25.481Z [TRACE] payment-service - Auth event: password_change - User: user_1030 - IP: 192.168.133.7 - RequestID: osh4dhb0wr +2025-06-18T15:24:25.581Z [TRACE] order-service - Operation: inventory_updated - Processing time: 278ms - RequestID: qmqns7a8kuo +2025-06-18T15:24:25.681Z [TRACE] payment-service - Auth event: login_success - User: user_1034 - IP: 192.168.53.133 - RequestID: s35z4ydwsci +2025-06-18T15:24:25.781Z [INFO] inventory-service - PUT /api/v1/payments - Status: 502 - Response time: 930ms - IP: 192.168.227.77 - User: user_1085 - RequestID: cvgad7x6hs7 +2025-06-18T15:24:25.881Z [TRACE] order-service - Database SELECT on payments - Execution time: 396ms - Rows affected: 0 - RequestID: 7vkczthcav5 +2025-06-18T15:24:25.981Z [INFO] order-service - PUT /api/v1/users - Status: 503 - Response time: 1162ms - IP: 192.168.211.72 - User: user_1036 - RequestID: zorn8jefxr8 +2025-06-18T15:24:26.081Z [DEBUG] payment-service - Auth event: login_success - User: user_1018 - IP: 192.168.187.199 - RequestID: s71uk313ikc +2025-06-18T15:24:26.181Z [DEBUG] auth-service - GET /api/v1/payments - Status: 503 - Response time: 1662ms - IP: 192.168.133.7 - User: user_1071 - RequestID: rkzrtcxsqo +2025-06-18T15:24:26.281Z [INFO] user-service - Operation: inventory_updated - Processing time: 963ms - RequestID: cd3qv23flqh +2025-06-18T15:24:26.381Z [INFO] notification-service - Auth event: login_success - User: user_1064 - IP: 192.168.53.133 - RequestID: 4dltikp105a +2025-06-18T15:24:26.481Z [INFO] user-service - Auth event: login_success - User: user_1037 - IP: 192.168.53.133 - RequestID: 0ej72nva3gp +2025-06-18T15:24:26.581Z [INFO] user-service - DELETE /api/v1/inventory - Status: 201 - Response time: 1212ms - IP: 192.168.158.144 - User: user_1046 - RequestID: v32mpm5nyfl +2025-06-18T15:24:26.681Z [DEBUG] order-service - Database UPDATE on products - Execution time: 381ms - Rows affected: 31 - RequestID: cqf271snug6 +2025-06-18T15:24:26.781Z [INFO] user-service - Auth event: login_attempt - User: user_1010 - IP: 192.168.242.165 - RequestID: 6e5mu6e0obb +2025-06-18T15:24:26.881Z [DEBUG] notification-service - Operation: order_created - Processing time: 566ms - RequestID: m19y7cpbq8n +2025-06-18T15:24:26.981Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 161ms - RequestID: ek48p0ez0yb +2025-06-18T15:24:27.081Z [INFO] payment-service - Operation: notification_queued - Processing time: 63ms - RequestID: we44b12auo +2025-06-18T15:24:27.181Z [TRACE] inventory-service - Auth event: login_failed - User: user_1009 - IP: 192.168.64.33 - RequestID: hbux45kvco +2025-06-18T15:24:27.281Z [INFO] payment-service - Operation: webhook_sent - Processing time: 626ms - RequestID: xx4ixqex4uk +2025-06-18T15:24:27.381Z [INFO] inventory-service - GET /api/v1/auth/logout - Status: 201 - Response time: 246ms - IP: 192.168.46.63 - User: user_1031 - RequestID: lae1ojnnyp +2025-06-18T15:24:27.481Z [TRACE] notification-service - Database UPDATE on products - Execution time: 121ms - Rows affected: 54 - RequestID: h7if6jc237c +2025-06-18T15:24:27.581Z [TRACE] payment-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 791ms - IP: 192.168.167.32 - User: user_1098 - RequestID: yqomudowgn +2025-06-18T15:24:27.681Z [TRACE] inventory-service - Database INSERT on users - Execution time: 131ms - Rows affected: 70 - RequestID: b2bdaej6q34 +2025-06-18T15:24:27.781Z [TRACE] user-service - Operation: cache_hit - Processing time: 1023ms - RequestID: z5oqbg3px2 +2025-06-18T15:24:27.881Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 88ms - Rows affected: 26 - RequestID: jqcuptxuqs +2025-06-18T15:24:27.981Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 438ms - Rows affected: 76 - RequestID: noy27m02khk +2025-06-18T15:24:28.081Z [DEBUG] order-service - Database DELETE on sessions - Execution time: 454ms - Rows affected: 47 - RequestID: 628v00e3vmo +2025-06-18T15:24:28.181Z [DEBUG] inventory-service - POST /api/v1/payments - Status: 200 - Response time: 896ms - IP: 192.168.11.60 - User: user_1003 - RequestID: xdhun0a97rc +2025-06-18T15:24:28.281Z [DEBUG] order-service - Auth event: password_change - User: user_1053 - IP: 192.168.33.76 - RequestID: o5d72ikiuyb +2025-06-18T15:24:28.381Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 199ms - RequestID: 3rvzpxh1pln +2025-06-18T15:24:28.481Z [DEBUG] order-service - PATCH /api/v1/orders - Status: 500 - Response time: 1103ms - IP: 192.168.30.79 - User: user_1066 - RequestID: 8skp6edod83 +2025-06-18T15:24:28.581Z [TRACE] user-service - Operation: payment_processed - Processing time: 358ms - RequestID: 37qcci12d1k +2025-06-18T15:24:28.681Z [DEBUG] order-service - Auth event: logout - User: user_1070 - IP: 192.168.235.117 - RequestID: oj6m89hxf3o +2025-06-18T15:24:28.781Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 214ms - Rows affected: 69 - RequestID: 6tjppc5727w +2025-06-18T15:24:28.881Z [INFO] notification-service - POST /api/v1/users - Status: 400 - Response time: 486ms - IP: 192.168.227.77 - User: user_1005 - RequestID: atryiucsg2p +2025-06-18T15:24:28.981Z [TRACE] user-service - Auth event: token_refresh - User: user_1010 - IP: 192.168.194.41 - RequestID: t2wyydh64m +2025-06-18T15:24:29.081Z [DEBUG] inventory-service - Operation: order_created - Processing time: 164ms - RequestID: cqwxtr0isro +2025-06-18T15:24:29.181Z [INFO] auth-service - Operation: cache_hit - Processing time: 937ms - RequestID: i82j4h5iiu +2025-06-18T15:24:29.281Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 403ms - Rows affected: 83 - RequestID: ens7qvjrj5b +2025-06-18T15:24:29.381Z [INFO] auth-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.85.229 - RequestID: 5seb10oe8er +2025-06-18T15:24:29.481Z [INFO] user-service - Database DELETE on users - Execution time: 76ms - Rows affected: 48 - RequestID: ouavdfuh5nr +2025-06-18T15:24:29.581Z [INFO] notification-service - Operation: email_sent - Processing time: 170ms - RequestID: dqqtw9ioxvp +2025-06-18T15:24:29.681Z [INFO] user-service - GET /api/v1/orders - Status: 401 - Response time: 1348ms - IP: 192.168.247.134 - User: user_1027 - RequestID: feiu85dgetn +2025-06-18T15:24:29.781Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 887ms - RequestID: 5wg864yz91i +2025-06-18T15:24:29.881Z [TRACE] notification-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.104.37 - RequestID: ncyv0gzy08m +2025-06-18T15:24:29.981Z [DEBUG] auth-service - Auth event: login_success - User: user_1067 - IP: 192.168.28.146 - RequestID: nuiqvj92zjj +2025-06-18T15:24:30.081Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 503 - Response time: 210ms - IP: 192.168.147.171 - User: user_1067 - RequestID: 3xgxzw97l3w +2025-06-18T15:24:30.181Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 428ms - Rows affected: 75 - RequestID: vu5zeb8ebv +2025-06-18T15:24:30.281Z [INFO] user-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.240.169 - RequestID: fvclm9o6wik +2025-06-18T15:24:30.381Z [TRACE] user-service - Operation: inventory_updated - Processing time: 998ms - RequestID: oih678wnb7g +2025-06-18T15:24:30.481Z [INFO] payment-service - DELETE /api/v1/users - Status: 502 - Response time: 1577ms - IP: 192.168.141.100 - User: user_1056 - RequestID: zhlrne4pp0f +2025-06-18T15:24:30.581Z [INFO] inventory-service - Database INSERT on users - Execution time: 159ms - Rows affected: 75 - RequestID: 00ir4gxmlqc19 +2025-06-18T15:24:30.681Z [TRACE] auth-service - Operation: notification_queued - Processing time: 562ms - RequestID: 3gucnzlj21 +2025-06-18T15:24:30.781Z [TRACE] user-service - PUT /api/v1/orders - Status: 403 - Response time: 1457ms - IP: 192.168.79.143 - User: user_1061 - RequestID: bhsf00z9jka +2025-06-18T15:24:30.881Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 235ms - RequestID: 6kev26sznii +2025-06-18T15:24:30.981Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 290ms - Rows affected: 60 - RequestID: 256as08nyfj +2025-06-18T15:24:31.081Z [INFO] auth-service - Operation: cache_hit - Processing time: 600ms - RequestID: 1hgod48pncf +2025-06-18T15:24:31.181Z [TRACE] user-service - Database UPDATE on orders - Execution time: 14ms - Rows affected: 0 - RequestID: 597mwl06kvt +2025-06-18T15:24:31.281Z [INFO] auth-service - PATCH /api/v1/users - Status: 502 - Response time: 1172ms - IP: 192.168.11.60 - User: user_1033 - RequestID: 5i427sqpyzp +2025-06-18T15:24:31.381Z [DEBUG] auth-service - Operation: email_sent - Processing time: 957ms - RequestID: vaevssl12gs +2025-06-18T15:24:31.481Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 400 - Response time: 1043ms - IP: 192.168.187.199 - User: user_1042 - RequestID: 2jrxn70ic4y +2025-06-18T15:24:31.581Z [INFO] inventory-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 1341ms - IP: 192.168.159.94 - User: user_1014 - RequestID: jajvohaojd +2025-06-18T15:24:31.681Z [INFO] auth-service - Database INSERT on sessions - Execution time: 346ms - Rows affected: 63 - RequestID: gnctjbzklp +2025-06-18T15:24:31.781Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 400 - Response time: 1047ms - IP: 192.168.235.117 - User: user_1065 - RequestID: cxv50zgn76b +2025-06-18T15:24:31.881Z [DEBUG] notification-service - PUT /api/v1/inventory - Status: 400 - Response time: 2006ms - IP: 192.168.194.41 - User: user_1093 - RequestID: 804n803nob +2025-06-18T15:24:31.981Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 139ms - Rows affected: 29 - RequestID: ciz8jbjy8s +2025-06-18T15:24:32.081Z [INFO] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 1537ms - IP: 192.168.79.141 - User: user_1033 - RequestID: iqfia2fifd +2025-06-18T15:24:32.181Z [INFO] order-service - Database UPDATE on orders - Execution time: 281ms - Rows affected: 2 - RequestID: 6tqdbtt40a9 +2025-06-18T15:24:32.281Z [DEBUG] user-service - Operation: cache_hit - Processing time: 912ms - RequestID: eixbj91oh4 +2025-06-18T15:24:32.381Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 705ms - RequestID: at6r4z54l6a +2025-06-18T15:24:32.481Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1941ms - IP: 192.168.11.60 - User: user_1059 - RequestID: r2lval6hzo +2025-06-18T15:24:32.581Z [INFO] payment-service - Operation: payment_processed - Processing time: 271ms - RequestID: y1jb62cst6 +2025-06-18T15:24:32.681Z [DEBUG] user-service - Operation: email_sent - Processing time: 925ms - RequestID: onums3arne +2025-06-18T15:24:32.781Z [INFO] user-service - Auth event: token_refresh - User: user_1087 - IP: 192.168.36.218 - RequestID: 8wybzype78g +2025-06-18T15:24:32.881Z [TRACE] user-service - Database UPDATE on products - Execution time: 340ms - Rows affected: 78 - RequestID: f4w5o5279jv +2025-06-18T15:24:32.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1053 - IP: 192.168.141.100 - RequestID: 3zmlfoqx9lo +2025-06-18T15:24:33.081Z [DEBUG] order-service - PUT /api/v1/payments - Status: 404 - Response time: 1059ms - IP: 192.168.30.79 - User: user_1082 - RequestID: vfln9o7gpkc +2025-06-18T15:24:33.181Z [TRACE] notification-service - Database INSERT on payments - Execution time: 33ms - Rows affected: 1 - RequestID: mw4u01t11zm +2025-06-18T15:24:33.281Z [DEBUG] order-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.159.94 - RequestID: ppz40gui1d +2025-06-18T15:24:33.381Z [INFO] inventory-service - Database DELETE on audit_logs - Execution time: 421ms - Rows affected: 94 - RequestID: 4dyz0vdjere +2025-06-18T15:24:33.481Z [TRACE] order-service - Database SELECT on orders - Execution time: 246ms - Rows affected: 74 - RequestID: y9yqw243qq +2025-06-18T15:24:33.581Z [INFO] notification-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.31.117 - RequestID: 0x5ytp2qzn3 +2025-06-18T15:24:33.681Z [DEBUG] notification-service - GET /api/v1/users - Status: 502 - Response time: 733ms - IP: 192.168.158.144 - User: user_1059 - RequestID: m9yntsurclh +2025-06-18T15:24:33.781Z [TRACE] user-service - Database UPDATE on audit_logs - Execution time: 171ms - Rows affected: 44 - RequestID: pked6uhd3o9 +2025-06-18T15:24:33.881Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 728ms - RequestID: hgfooev2og9 +2025-06-18T15:24:33.981Z [DEBUG] payment-service - Database DELETE on products - Execution time: 289ms - Rows affected: 50 - RequestID: 7btt2wq44y3 +2025-06-18T15:24:34.081Z [DEBUG] order-service - Database DELETE on users - Execution time: 406ms - Rows affected: 50 - RequestID: 0slk6racz8b +2025-06-18T15:24:34.181Z [TRACE] notification-service - DELETE /api/v1/users - Status: 201 - Response time: 1612ms - IP: 192.168.167.32 - User: user_1008 - RequestID: t1t6h1f6eug +2025-06-18T15:24:34.281Z [INFO] inventory-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.46.63 - RequestID: nm64cp34xn8 +2025-06-18T15:24:34.381Z [INFO] user-service - Auth event: logout - User: user_1036 - IP: 192.168.144.38 - RequestID: i2y6fw1xec +2025-06-18T15:24:34.481Z [INFO] auth-service - Operation: cache_miss - Processing time: 153ms - RequestID: gsgwsufbhz5 +2025-06-18T15:24:34.581Z [INFO] order-service - Database SELECT on sessions - Execution time: 394ms - Rows affected: 7 - RequestID: dqndrdyyfy +2025-06-18T15:24:34.681Z [TRACE] notification-service - PATCH /api/v1/users - Status: 404 - Response time: 1985ms - IP: 192.168.64.33 - User: user_1065 - RequestID: 2ge2fpnov3i +2025-06-18T15:24:34.781Z [TRACE] notification-service - Database UPDATE on products - Execution time: 452ms - Rows affected: 57 - RequestID: vimoh1dl4cp +2025-06-18T15:24:34.881Z [DEBUG] payment-service - Auth event: login_success - User: user_1095 - IP: 192.168.85.229 - RequestID: kqx6ohqiv4 +2025-06-18T15:24:34.981Z [TRACE] order-service - Operation: cache_miss - Processing time: 922ms - RequestID: phs7jpfzbi +2025-06-18T15:24:35.081Z [INFO] inventory-service - Auth event: logout - User: user_1042 - IP: 192.168.187.199 - RequestID: eihaft7x33u +2025-06-18T15:24:35.181Z [TRACE] payment-service - POST /api/v1/auth/login - Status: 403 - Response time: 139ms - IP: 192.168.242.165 - User: user_1024 - RequestID: m7stisljxns +2025-06-18T15:24:35.281Z [TRACE] user-service - PUT /api/v1/payments - Status: 200 - Response time: 742ms - IP: 192.168.158.144 - User: user_1043 - RequestID: 0l5n2ogd15ub +2025-06-18T15:24:35.381Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 231ms - Rows affected: 58 - RequestID: 5i8u5lbk7zj +2025-06-18T15:24:35.481Z [INFO] inventory-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 487ms - IP: 192.168.97.87 - User: user_1014 - RequestID: n3vdnpjxgcb +2025-06-18T15:24:35.581Z [DEBUG] user-service - Database UPDATE on audit_logs - Execution time: 129ms - Rows affected: 28 - RequestID: nnfbzsi9dv +2025-06-18T15:24:35.681Z [INFO] order-service - GET /api/v1/inventory - Status: 403 - Response time: 671ms - IP: 192.168.14.77 - User: user_1031 - RequestID: k0il8cl32vo +2025-06-18T15:24:35.781Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 67ms - RequestID: jn9cairq6ka +2025-06-18T15:24:35.881Z [DEBUG] inventory-service - Operation: payment_processed - Processing time: 737ms - RequestID: h44x5gzw0ps +2025-06-18T15:24:35.981Z [INFO] inventory-service - Operation: notification_queued - Processing time: 508ms - RequestID: rkoi1uvpx5 +2025-06-18T15:24:36.081Z [INFO] auth-service - Operation: payment_processed - Processing time: 616ms - RequestID: ea64f4d3fe +2025-06-18T15:24:36.181Z [TRACE] payment-service - Auth event: login_failed - User: user_1004 - IP: 192.168.158.144 - RequestID: uk2k7ponqx +2025-06-18T15:24:36.281Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 1626ms - IP: 192.168.79.116 - User: user_1088 - RequestID: 4jtpmagtjyd +2025-06-18T15:24:36.381Z [TRACE] user-service - Auth event: login_success - User: user_1082 - IP: 192.168.1.152 - RequestID: yjc1w5rn81 +2025-06-18T15:24:36.481Z [TRACE] order-service - Auth event: password_change - User: user_1003 - IP: 192.168.100.240 - RequestID: li2e2mhmb +2025-06-18T15:24:36.581Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 259ms - Rows affected: 16 - RequestID: 0s1dhb62353 +2025-06-18T15:24:36.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1094 - IP: 192.168.187.199 - RequestID: ncm0hbk3rk +2025-06-18T15:24:36.781Z [INFO] user-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.85.229 - RequestID: d02ho6q6kd4 +2025-06-18T15:24:36.881Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 400 - Response time: 1027ms - IP: 192.168.170.215 - User: user_1034 - RequestID: uf9pm06dsro +2025-06-18T15:24:36.981Z [INFO] order-service - Operation: notification_queued - Processing time: 256ms - RequestID: hi9lgq2vdw8 +2025-06-18T15:24:37.081Z [INFO] payment-service - Operation: cache_hit - Processing time: 447ms - RequestID: lojf3kncmmg +2025-06-18T15:24:37.181Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 542ms - IP: 192.168.100.240 - User: user_1074 - RequestID: vo7nd0uhd3 +2025-06-18T15:24:37.281Z [TRACE] payment-service - Auth event: password_change - User: user_1045 - IP: 192.168.147.171 - RequestID: aq6e7tgfams +2025-06-18T15:24:37.381Z [INFO] user-service - PATCH /api/v1/payments - Status: 201 - Response time: 1329ms - IP: 192.168.170.215 - User: user_1016 - RequestID: weyurppjxmn +2025-06-18T15:24:37.481Z [INFO] order-service - Operation: email_sent - Processing time: 346ms - RequestID: te6h8i4x3u +2025-06-18T15:24:37.581Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 396ms - IP: 192.168.196.226 - User: user_1088 - RequestID: 3su87jo67m6 +2025-06-18T15:24:37.681Z [TRACE] user-service - Auth event: logout - User: user_1047 - IP: 192.168.141.100 - RequestID: eg6pp1j73h +2025-06-18T15:24:37.781Z [INFO] auth-service - PATCH /api/v1/inventory - Status: 401 - Response time: 1696ms - IP: 192.168.104.37 - User: user_1022 - RequestID: g40wqfauwf +2025-06-18T15:24:37.881Z [DEBUG] notification-service - GET /api/v1/payments - Status: 201 - Response time: 1172ms - IP: 192.168.1.152 - User: user_1002 - RequestID: hex9zqfmysm +2025-06-18T15:24:37.981Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 640ms - RequestID: ygs8ftrcvoi +2025-06-18T15:24:38.081Z [DEBUG] inventory-service - DELETE /api/v1/auth/logout - Status: 503 - Response time: 1011ms - IP: 192.168.33.76 - User: user_1080 - RequestID: 3lnlf2q6n8l +2025-06-18T15:24:38.181Z [INFO] order-service - Operation: webhook_sent - Processing time: 249ms - RequestID: xb8tmuz29fg +2025-06-18T15:24:38.281Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 403 - Response time: 550ms - IP: 192.168.53.133 - User: user_1003 - RequestID: z95cttczhw +2025-06-18T15:24:38.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1088 - IP: 192.168.79.141 - RequestID: ofxp8lldlc +2025-06-18T15:24:38.481Z [DEBUG] inventory-service - Auth event: logout - User: user_1036 - IP: 192.168.64.33 - RequestID: dlmdsfgd7sf +2025-06-18T15:24:38.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1079 - IP: 192.168.14.77 - RequestID: 5pdoe8ndjhv +2025-06-18T15:24:38.681Z [DEBUG] auth-service - GET /api/v1/inventory - Status: 400 - Response time: 614ms - IP: 192.168.227.233 - User: user_1085 - RequestID: qigh6yhg5cc +2025-06-18T15:24:38.781Z [TRACE] user-service - Auth event: login_success - User: user_1021 - IP: 192.168.100.240 - RequestID: bbo5ocrnr2 +2025-06-18T15:24:38.881Z [DEBUG] user-service - GET /api/v1/orders - Status: 404 - Response time: 42ms - IP: 192.168.170.215 - User: user_1087 - RequestID: zsgexcowk98 +2025-06-18T15:24:38.981Z [INFO] auth-service - GET /api/v1/auth/login - Status: 400 - Response time: 1727ms - IP: 192.168.159.94 - User: user_1083 - RequestID: 0i3chub5vo2 +2025-06-18T15:24:39.081Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 575ms - RequestID: ujrgj7uin1m +2025-06-18T15:24:39.181Z [TRACE] auth-service - Auth event: logout - User: user_1081 - IP: 192.168.194.41 - RequestID: orp8369q17 +2025-06-18T15:24:39.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.229.123 - RequestID: m4w5hcv8bui +2025-06-18T15:24:39.381Z [TRACE] inventory-service - POST /api/v1/inventory - Status: 503 - Response time: 1941ms - IP: 192.168.247.134 - User: user_1052 - RequestID: r3i88sghs7 +2025-06-18T15:24:39.481Z [INFO] inventory-service - Database INSERT on products - Execution time: 79ms - Rows affected: 95 - RequestID: de0fynf3um6 +2025-06-18T15:24:39.581Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 403 - Response time: 1933ms - IP: 192.168.11.60 - User: user_1081 - RequestID: 1cscc0u3gk9 +2025-06-18T15:24:39.681Z [TRACE] auth-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 117ms - IP: 192.168.227.77 - User: user_1013 - RequestID: mo74h77hth +2025-06-18T15:24:39.781Z [TRACE] auth-service - Database INSERT on payments - Execution time: 244ms - Rows affected: 37 - RequestID: p3rhit8bx3 +2025-06-18T15:24:39.881Z [INFO] inventory-service - Database SELECT on products - Execution time: 263ms - Rows affected: 58 - RequestID: 4mvwqg8cq6e +2025-06-18T15:24:39.981Z [TRACE] auth-service - Auth event: login_failed - User: user_1052 - IP: 192.168.181.225 - RequestID: btu96flzsdq +2025-06-18T15:24:40.081Z [TRACE] notification-service - Database DELETE on orders - Execution time: 153ms - Rows affected: 81 - RequestID: l5ifvbipg5 +2025-06-18T15:24:40.181Z [DEBUG] payment-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 2003ms - IP: 192.168.170.215 - User: user_1087 - RequestID: v8pc85yu1t +2025-06-18T15:24:40.281Z [DEBUG] notification-service - Database UPDATE on orders - Execution time: 31ms - Rows affected: 33 - RequestID: 8tdrgqd3e5v +2025-06-18T15:24:40.381Z [TRACE] order-service - POST /api/v1/orders - Status: 401 - Response time: 89ms - IP: 192.168.28.146 - User: user_1095 - RequestID: t0u00f22wd8 +2025-06-18T15:24:40.481Z [INFO] notification-service - DELETE /api/v1/payments - Status: 201 - Response time: 1201ms - IP: 192.168.167.32 - User: user_1037 - RequestID: b1d96fumjt7 +2025-06-18T15:24:40.581Z [INFO] order-service - Operation: notification_queued - Processing time: 736ms - RequestID: 1bedf2xqt6r +2025-06-18T15:24:40.681Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 503 - Response time: 477ms - IP: 192.168.44.5 - User: user_1062 - RequestID: pmq23fn5ib +2025-06-18T15:24:40.781Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1093 - IP: 192.168.194.41 - RequestID: aj4srn9v9sd +2025-06-18T15:24:40.881Z [DEBUG] user-service - Database SELECT on orders - Execution time: 331ms - Rows affected: 87 - RequestID: oz93tgnqyw +2025-06-18T15:24:40.981Z [INFO] auth-service - Database DELETE on orders - Execution time: 145ms - Rows affected: 28 - RequestID: 5zhm022df88 +2025-06-18T15:24:41.081Z [TRACE] order-service - POST /api/v1/auth/logout - Status: 201 - Response time: 696ms - IP: 192.168.81.206 - User: user_1051 - RequestID: elzdbpn3p5 +2025-06-18T15:24:41.181Z [INFO] order-service - DELETE /api/v1/orders - Status: 503 - Response time: 543ms - IP: 192.168.174.114 - User: user_1088 - RequestID: q9gvprzvot9 +2025-06-18T15:24:41.281Z [INFO] user-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1939ms - IP: 192.168.64.33 - User: user_1054 - RequestID: 8pn6apza6lr +2025-06-18T15:24:41.381Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 227ms - RequestID: mhj0x074khg +2025-06-18T15:24:41.481Z [INFO] payment-service - POST /api/v1/payments - Status: 500 - Response time: 1773ms - IP: 192.168.79.143 - User: user_1078 - RequestID: 0aszebx6blf +2025-06-18T15:24:41.581Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 401ms - RequestID: 110pu0xo2mq +2025-06-18T15:24:41.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1026 - IP: 192.168.14.77 - RequestID: ay3wd2021ft +2025-06-18T15:24:41.781Z [TRACE] notification-service - Auth event: login_success - User: user_1097 - IP: 192.168.194.41 - RequestID: pl0t2bjsidi +2025-06-18T15:24:41.881Z [TRACE] user-service - POST /api/v1/users - Status: 200 - Response time: 101ms - IP: 192.168.68.158 - User: user_1067 - RequestID: 8dn7ome6fig +2025-06-18T15:24:41.981Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 395ms - Rows affected: 78 - RequestID: h89v12oklkk +2025-06-18T15:24:42.081Z [INFO] notification-service - Auth event: login_success - User: user_1077 - IP: 192.168.68.158 - RequestID: cq2ywhqvzc +2025-06-18T15:24:42.181Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 62ms - RequestID: x5iikqwzh2i +2025-06-18T15:24:42.281Z [INFO] payment-service - Database UPDATE on products - Execution time: 476ms - Rows affected: 73 - RequestID: aitkcr2av5s +2025-06-18T15:24:42.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 568ms - RequestID: iaioxgtxxbq +2025-06-18T15:24:42.481Z [INFO] payment-service - Auth event: login_failed - User: user_1031 - IP: 192.168.138.123 - RequestID: 0qr7sx8anuz +2025-06-18T15:24:42.581Z [DEBUG] payment-service - Auth event: login_failed - User: user_1098 - IP: 192.168.227.233 - RequestID: bdn19waxt8 +2025-06-18T15:24:42.681Z [TRACE] auth-service - Database INSERT on users - Execution time: 209ms - Rows affected: 7 - RequestID: ib3qi0h4i6 +2025-06-18T15:24:42.781Z [TRACE] order-service - Auth event: logout - User: user_1025 - IP: 192.168.211.72 - RequestID: em9lhffk34m +2025-06-18T15:24:42.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.187.199 - RequestID: hc46y4eawyb +2025-06-18T15:24:42.981Z [TRACE] order-service - Auth event: logout - User: user_1067 - IP: 192.168.158.144 - RequestID: wxd6tf9nq7r +2025-06-18T15:24:43.081Z [DEBUG] order-service - POST /api/v1/inventory - Status: 404 - Response time: 554ms - IP: 192.168.64.33 - User: user_1057 - RequestID: 9ett4tkliai +2025-06-18T15:24:43.181Z [INFO] auth-service - Auth event: logout - User: user_1031 - IP: 192.168.36.218 - RequestID: qhpxzcpjvmm +2025-06-18T15:24:43.281Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 180ms - Rows affected: 79 - RequestID: hoi7d1cwiw +2025-06-18T15:24:43.381Z [TRACE] auth-service - Operation: notification_queued - Processing time: 548ms - RequestID: 223iwbvj4i6 +2025-06-18T15:24:43.481Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 481ms - Rows affected: 40 - RequestID: rb2i66a4rv +2025-06-18T15:24:43.581Z [TRACE] user-service - DELETE /api/v1/users - Status: 403 - Response time: 1197ms - IP: 192.168.44.5 - User: user_1051 - RequestID: o57jtt9u1ak +2025-06-18T15:24:43.681Z [TRACE] payment-service - Operation: notification_queued - Processing time: 431ms - RequestID: q0w1afi47y8 +2025-06-18T15:24:43.781Z [DEBUG] notification-service - Auth event: login_failed - User: user_1015 - IP: 192.168.97.87 - RequestID: ewsq0u8ricm +2025-06-18T15:24:43.881Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 143ms - Rows affected: 35 - RequestID: yqqfekfxpo +2025-06-18T15:24:43.981Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 285ms - Rows affected: 52 - RequestID: oj85mvcx21n +2025-06-18T15:24:44.081Z [DEBUG] notification-service - GET /api/v1/orders - Status: 502 - Response time: 1569ms - IP: 192.168.227.233 - User: user_1056 - RequestID: vbfjqjtge7j +2025-06-18T15:24:44.181Z [DEBUG] inventory-service - Database SELECT on orders - Execution time: 438ms - Rows affected: 0 - RequestID: 4b0v9p10g5w +2025-06-18T15:24:44.281Z [INFO] inventory-service - Database UPDATE on products - Execution time: 226ms - Rows affected: 25 - RequestID: 4ydwa5bwip4 +2025-06-18T15:24:44.381Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 447ms - Rows affected: 58 - RequestID: qgjrhsjw2p +2025-06-18T15:24:44.481Z [INFO] order-service - Operation: payment_processed - Processing time: 715ms - RequestID: ariazf7z0am +2025-06-18T15:24:44.581Z [INFO] notification-service - Auth event: token_refresh - User: user_1016 - IP: 192.168.240.169 - RequestID: ixoi3ztwt7 +2025-06-18T15:24:44.681Z [INFO] user-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.11.60 - RequestID: k1oi17atfg +2025-06-18T15:24:44.781Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 403 - Response time: 83ms - IP: 192.168.242.165 - User: user_1049 - RequestID: flb7m45b93u +2025-06-18T15:24:44.881Z [INFO] notification-service - Auth event: password_change - User: user_1021 - IP: 192.168.10.184 - RequestID: cgaeeiv27re +2025-06-18T15:24:44.981Z [TRACE] user-service - Auth event: login_failed - User: user_1032 - IP: 192.168.147.171 - RequestID: h2u8akdfhtt +2025-06-18T15:24:45.081Z [TRACE] payment-service - Operation: cache_miss - Processing time: 333ms - RequestID: a7vyx6nip +2025-06-18T15:24:45.181Z [TRACE] auth-service - Auth event: logout - User: user_1074 - IP: 192.168.13.72 - RequestID: ak69mzw7sf +2025-06-18T15:24:45.281Z [DEBUG] user-service - Auth event: login_success - User: user_1008 - IP: 192.168.196.226 - RequestID: ocmjvhhqnnf +2025-06-18T15:24:45.381Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 375ms - RequestID: zvra9eyp8fl +2025-06-18T15:24:45.481Z [TRACE] inventory-service - Auth event: login_success - User: user_1044 - IP: 192.168.144.38 - RequestID: cmj7nmohjqr +2025-06-18T15:24:45.581Z [INFO] notification-service - Auth event: token_refresh - User: user_1041 - IP: 192.168.194.41 - RequestID: sgklhoer75 +2025-06-18T15:24:45.681Z [DEBUG] auth-service - Auth event: login_success - User: user_1040 - IP: 192.168.189.103 - RequestID: rscuz44z9e +2025-06-18T15:24:45.781Z [INFO] notification-service - POST /api/v1/users - Status: 201 - Response time: 496ms - IP: 192.168.100.240 - User: user_1052 - RequestID: os6u1bpruw +2025-06-18T15:24:45.881Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 110ms - RequestID: ng6q86bqso +2025-06-18T15:24:45.981Z [INFO] user-service - POST /api/v1/payments - Status: 401 - Response time: 1266ms - IP: 192.168.227.77 - User: user_1005 - RequestID: whg1skbgzt +2025-06-18T15:24:46.081Z [TRACE] auth-service - Auth event: token_refresh - User: user_1065 - IP: 192.168.46.63 - RequestID: frr07zfn01 +2025-06-18T15:24:46.181Z [TRACE] payment-service - Database DELETE on payments - Execution time: 255ms - Rows affected: 67 - RequestID: o5gpyultij +2025-06-18T15:24:46.281Z [DEBUG] auth-service - Database INSERT on payments - Execution time: 9ms - Rows affected: 84 - RequestID: tcz5j5zgp9b +2025-06-18T15:24:46.381Z [DEBUG] user-service - Database UPDATE on users - Execution time: 194ms - Rows affected: 80 - RequestID: 1hffq53y512 +2025-06-18T15:24:46.481Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 385ms - Rows affected: 97 - RequestID: v8svggkusoc +2025-06-18T15:24:46.581Z [TRACE] auth-service - Database UPDATE on products - Execution time: 129ms - Rows affected: 0 - RequestID: tg6pfof924j +2025-06-18T15:24:46.681Z [TRACE] user-service - GET /api/v1/inventory - Status: 401 - Response time: 753ms - IP: 192.168.79.143 - User: user_1099 - RequestID: ndoo5lp2tl +2025-06-18T15:24:46.781Z [TRACE] inventory-service - Database UPDATE on users - Execution time: 385ms - Rows affected: 61 - RequestID: kfmbs0g9hie +2025-06-18T15:24:46.881Z [INFO] inventory-service - Database SELECT on sessions - Execution time: 481ms - Rows affected: 39 - RequestID: 5npcp2k3xzc +2025-06-18T15:24:46.981Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 269ms - Rows affected: 44 - RequestID: wxmmur7af3n +2025-06-18T15:24:47.081Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 369ms - Rows affected: 88 - RequestID: 1wshp52x1fo +2025-06-18T15:24:47.181Z [TRACE] inventory-service - GET /api/v1/inventory - Status: 502 - Response time: 1153ms - IP: 192.168.81.206 - User: user_1083 - RequestID: quhjisv0wgk +2025-06-18T15:24:47.281Z [INFO] inventory-service - Auth event: login_failed - User: user_1093 - IP: 192.168.79.141 - RequestID: 48qen38t36j +2025-06-18T15:24:47.381Z [TRACE] inventory-service - GET /api/v1/orders - Status: 200 - Response time: 877ms - IP: 192.168.31.117 - User: user_1035 - RequestID: hzi6jh118ys +2025-06-18T15:24:47.481Z [INFO] user-service - GET /api/v1/orders - Status: 201 - Response time: 1414ms - IP: 192.168.113.218 - User: user_1071 - RequestID: zdr3s8c3av +2025-06-18T15:24:47.581Z [INFO] inventory-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.227.233 - RequestID: 1roa1o7xdao +2025-06-18T15:24:47.681Z [TRACE] user-service - Auth event: password_change - User: user_1031 - IP: 192.168.181.225 - RequestID: r07uxnqbmmn +2025-06-18T15:24:47.781Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 639ms - RequestID: gds3jm6br +2025-06-18T15:24:47.881Z [INFO] payment-service - Auth event: login_failed - User: user_1021 - IP: 192.168.79.143 - RequestID: u4xj08046v9 +2025-06-18T15:24:47.981Z [TRACE] auth-service - Operation: notification_queued - Processing time: 302ms - RequestID: 5pm957dtb6 +2025-06-18T15:24:48.081Z [INFO] payment-service - Auth event: password_change - User: user_1046 - IP: 192.168.14.77 - RequestID: 3ggbeh5kgfu +2025-06-18T15:24:48.181Z [TRACE] inventory-service - POST /api/v1/payments - Status: 500 - Response time: 603ms - IP: 192.168.196.226 - User: user_1026 - RequestID: phpmdq642s +2025-06-18T15:24:48.281Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 879ms - RequestID: 34h2hdni7ct +2025-06-18T15:24:48.381Z [TRACE] auth-service - Database SELECT on payments - Execution time: 354ms - Rows affected: 53 - RequestID: a05z01hk8jd +2025-06-18T15:24:48.481Z [DEBUG] inventory-service - PATCH /api/v1/orders - Status: 404 - Response time: 1357ms - IP: 192.168.32.38 - User: user_1051 - RequestID: 9pldnfpyllu +2025-06-18T15:24:48.581Z [TRACE] notification-service - Operation: order_created - Processing time: 351ms - RequestID: dosfei3od7n +2025-06-18T15:24:48.681Z [INFO] payment-service - Database DELETE on orders - Execution time: 487ms - Rows affected: 69 - RequestID: v3alg006ivo +2025-06-18T15:24:48.781Z [TRACE] payment-service - Operation: cache_hit - Processing time: 442ms - RequestID: n7xfcag0w4h +2025-06-18T15:24:48.881Z [INFO] order-service - Auth event: password_change - User: user_1053 - IP: 192.168.167.32 - RequestID: frnsk2r29r +2025-06-18T15:24:48.981Z [INFO] auth-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1641ms - IP: 192.168.1.152 - User: user_1065 - RequestID: ljbx1o24z9 +2025-06-18T15:24:49.081Z [INFO] order-service - Operation: cache_hit - Processing time: 494ms - RequestID: kc6sb8n7so +2025-06-18T15:24:49.181Z [INFO] user-service - Operation: inventory_updated - Processing time: 486ms - RequestID: 44nlzk8xop +2025-06-18T15:24:49.281Z [TRACE] inventory-service - Operation: email_sent - Processing time: 899ms - RequestID: x1uitiyf4s7 +2025-06-18T15:24:49.381Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 743ms - RequestID: pko1gbn8gon +2025-06-18T15:24:49.481Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 78ms - Rows affected: 29 - RequestID: ww7az4d4hye +2025-06-18T15:24:49.581Z [DEBUG] notification-service - Auth event: password_change - User: user_1066 - IP: 192.168.104.37 - RequestID: b2xo3q33ajo +2025-06-18T15:24:49.681Z [TRACE] order-service - Operation: email_sent - Processing time: 101ms - RequestID: z82rin01b8p +2025-06-18T15:24:49.781Z [TRACE] auth-service - Database SELECT on users - Execution time: 283ms - Rows affected: 37 - RequestID: anoqdq0kun +2025-06-18T15:24:49.881Z [INFO] auth-service - Database INSERT on sessions - Execution time: 284ms - Rows affected: 33 - RequestID: gmspxi3oh47 +2025-06-18T15:24:49.981Z [INFO] inventory-service - GET /api/v1/inventory - Status: 502 - Response time: 1065ms - IP: 192.168.85.229 - User: user_1029 - RequestID: c9jnrmfbmr +2025-06-18T15:24:50.081Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 401 - Response time: 713ms - IP: 192.168.232.72 - User: user_1066 - RequestID: fb3q616io7t +2025-06-18T15:24:50.181Z [DEBUG] auth-service - Auth event: password_change - User: user_1044 - IP: 192.168.32.38 - RequestID: vynxmwb8zsi +2025-06-18T15:24:50.281Z [TRACE] notification-service - Database UPDATE on audit_logs - Execution time: 421ms - Rows affected: 8 - RequestID: 1eehi10gun1 +2025-06-18T15:24:50.381Z [INFO] auth-service - Database DELETE on payments - Execution time: 99ms - Rows affected: 63 - RequestID: 42fspa61v6k +2025-06-18T15:24:50.481Z [INFO] order-service - Auth event: login_attempt - User: user_1035 - IP: 192.168.174.114 - RequestID: hon7ktk3yum +2025-06-18T15:24:50.581Z [DEBUG] order-service - Database SELECT on orders - Execution time: 246ms - Rows affected: 96 - RequestID: a1qsg6wy7z8 +2025-06-18T15:24:50.681Z [TRACE] notification-service - Operation: order_created - Processing time: 976ms - RequestID: nqo6361nion +2025-06-18T15:24:50.781Z [TRACE] user-service - Operation: notification_queued - Processing time: 1020ms - RequestID: 6qbrjrrccdo +2025-06-18T15:24:50.881Z [TRACE] payment-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.194.41 - RequestID: bh7qsjqt0n +2025-06-18T15:24:50.981Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 200 - Response time: 1310ms - IP: 192.168.10.184 - User: user_1056 - RequestID: b83glyucffn +2025-06-18T15:24:51.081Z [INFO] order-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 1839ms - IP: 192.168.211.72 - User: user_1078 - RequestID: o6avkpsldy +2025-06-18T15:24:51.181Z [DEBUG] notification-service - Auth event: login_failed - User: user_1051 - IP: 192.168.170.215 - RequestID: st8n9aht16i +2025-06-18T15:24:51.281Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 201 - Response time: 1978ms - IP: 192.168.113.218 - User: user_1041 - RequestID: hi9ztvpwlj6 +2025-06-18T15:24:51.381Z [TRACE] inventory-service - Database UPDATE on audit_logs - Execution time: 471ms - Rows affected: 76 - RequestID: u2emcubohrg +2025-06-18T15:24:51.481Z [DEBUG] order-service - Auth event: logout - User: user_1089 - IP: 192.168.159.94 - RequestID: ck01t2z2m2 +2025-06-18T15:24:51.581Z [INFO] inventory-service - Database SELECT on orders - Execution time: 151ms - Rows affected: 15 - RequestID: 9yr75w15cvf +2025-06-18T15:24:51.681Z [INFO] notification-service - Auth event: login_failed - User: user_1030 - IP: 192.168.30.79 - RequestID: 8h2sxlgyvmi +2025-06-18T15:24:51.781Z [TRACE] order-service - Auth event: login_attempt - User: user_1007 - IP: 192.168.13.72 - RequestID: 5byjhe2ahr4 +2025-06-18T15:24:51.881Z [TRACE] payment-service - Auth event: login_success - User: user_1036 - IP: 192.168.64.33 - RequestID: o3fs6ry0m +2025-06-18T15:24:51.981Z [INFO] auth-service - POST /api/v1/users - Status: 201 - Response time: 970ms - IP: 192.168.11.60 - User: user_1097 - RequestID: n4da0ne5d5 +2025-06-18T15:24:52.081Z [DEBUG] auth-service - Auth event: password_change - User: user_1068 - IP: 192.168.85.229 - RequestID: ivktq05gztr +2025-06-18T15:24:52.181Z [TRACE] order-service - Auth event: logout - User: user_1045 - IP: 192.168.194.41 - RequestID: o83gbv5r07 +2025-06-18T15:24:52.281Z [INFO] notification-service - Database DELETE on payments - Execution time: 88ms - Rows affected: 43 - RequestID: iqmttus7scg +2025-06-18T15:24:52.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1060 - IP: 192.168.1.152 - RequestID: vrrhc0yiofn +2025-06-18T15:24:52.481Z [INFO] auth-service - Database INSERT on users - Execution time: 402ms - Rows affected: 42 - RequestID: kvk6hm62qrp +2025-06-18T15:24:52.581Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.68.128 - RequestID: molc1nqio5 +2025-06-18T15:24:52.681Z [DEBUG] notification-service - DELETE /api/v1/orders - Status: 502 - Response time: 109ms - IP: 192.168.113.218 - User: user_1043 - RequestID: i2s7vbx07f +2025-06-18T15:24:52.781Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 109ms - Rows affected: 42 - RequestID: 2wwyxwss968 +2025-06-18T15:24:52.881Z [DEBUG] inventory-service - Database UPDATE on products - Execution time: 271ms - Rows affected: 57 - RequestID: qg908jj5sp +2025-06-18T15:24:52.981Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 201 - Response time: 220ms - IP: 192.168.170.215 - User: user_1084 - RequestID: r4xrew0fig +2025-06-18T15:24:53.081Z [INFO] auth-service - Database UPDATE on orders - Execution time: 307ms - Rows affected: 85 - RequestID: pffavjc85g +2025-06-18T15:24:53.181Z [TRACE] auth-service - Auth event: logout - User: user_1008 - IP: 192.168.32.38 - RequestID: 8o1nifqferh +2025-06-18T15:24:53.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.1.152 - RequestID: rhqmxtqbis +2025-06-18T15:24:53.381Z [INFO] order-service - Auth event: logout - User: user_1087 - IP: 192.168.144.38 - RequestID: x1aaibss37 +2025-06-18T15:24:53.481Z [DEBUG] order-service - Database INSERT on sessions - Execution time: 56ms - Rows affected: 84 - RequestID: qkwe73ia8mp +2025-06-18T15:24:53.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1080 - IP: 192.168.247.134 - RequestID: d68njbjctbw +2025-06-18T15:24:53.681Z [DEBUG] auth-service - PATCH /api/v1/orders - Status: 201 - Response time: 261ms - IP: 192.168.113.218 - User: user_1046 - RequestID: r7burxrpk +2025-06-18T15:24:53.781Z [TRACE] notification-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.227.77 - RequestID: zxj3kup4ttp +2025-06-18T15:24:53.881Z [INFO] inventory-service - Auth event: login_success - User: user_1099 - IP: 192.168.79.116 - RequestID: xvsq1350dg8 +2025-06-18T15:24:53.981Z [INFO] auth-service - PUT /api/v1/orders - Status: 200 - Response time: 1849ms - IP: 192.168.68.128 - User: user_1098 - RequestID: nvvn8gwjt9e +2025-06-18T15:24:54.081Z [INFO] user-service - Database INSERT on audit_logs - Execution time: 432ms - Rows affected: 17 - RequestID: nb6klfef8b +2025-06-18T15:24:54.181Z [INFO] auth-service - Database UPDATE on products - Execution time: 303ms - Rows affected: 2 - RequestID: iz2e749t3xk +2025-06-18T15:24:54.281Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 980ms - RequestID: 7xvyazui0vx +2025-06-18T15:24:54.381Z [TRACE] inventory-service - Database UPDATE on sessions - Execution time: 477ms - Rows affected: 38 - RequestID: g6ckwdck1i +2025-06-18T15:24:54.481Z [INFO] order-service - Auth event: login_success - User: user_1010 - IP: 192.168.187.199 - RequestID: hhsydexxf4t +2025-06-18T15:24:54.581Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 168ms - Rows affected: 23 - RequestID: abg8t5pn85 +2025-06-18T15:24:54.681Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 503 - Response time: 1564ms - IP: 192.168.235.117 - User: user_1017 - RequestID: l6521suksv +2025-06-18T15:24:54.781Z [DEBUG] payment-service - Database SELECT on products - Execution time: 260ms - Rows affected: 1 - RequestID: dhbr30ln5re +2025-06-18T15:24:54.881Z [DEBUG] notification-service - Database INSERT on payments - Execution time: 161ms - Rows affected: 8 - RequestID: j8ttclvak5m +2025-06-18T15:24:54.981Z [INFO] inventory-service - Operation: payment_processed - Processing time: 292ms - RequestID: ctdilm9o0pl +2025-06-18T15:24:55.081Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 403 - Response time: 296ms - IP: 192.168.158.144 - User: user_1003 - RequestID: d5k4f0ma6bo +2025-06-18T15:24:55.181Z [DEBUG] order-service - Operation: cache_miss - Processing time: 579ms - RequestID: iuq473qghl +2025-06-18T15:24:55.281Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 58ms - RequestID: g4nm8jwulpt +2025-06-18T15:24:55.381Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 404 - Response time: 1123ms - IP: 192.168.44.5 - User: user_1085 - RequestID: eazajwwohv7 +2025-06-18T15:24:55.481Z [INFO] inventory-service - Operation: email_sent - Processing time: 1039ms - RequestID: ndsax9pmtk +2025-06-18T15:24:55.581Z [INFO] order-service - Operation: order_created - Processing time: 469ms - RequestID: thmrgehjz1 +2025-06-18T15:24:55.681Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 293ms - RequestID: j7uk46mg7xh +2025-06-18T15:24:55.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1039 - IP: 192.168.79.141 - RequestID: flntske2kv4 +2025-06-18T15:24:55.881Z [INFO] auth-service - Database UPDATE on users - Execution time: 385ms - Rows affected: 46 - RequestID: tb19jgpiz8q +2025-06-18T15:24:55.981Z [TRACE] payment-service - Database SELECT on orders - Execution time: 271ms - Rows affected: 36 - RequestID: zk98ofxhv9 +2025-06-18T15:24:56.081Z [DEBUG] user-service - Database INSERT on products - Execution time: 193ms - Rows affected: 17 - RequestID: jqrxe0ro448 +2025-06-18T15:24:56.181Z [TRACE] user-service - Operation: notification_queued - Processing time: 425ms - RequestID: pm5wryb75g +2025-06-18T15:24:56.281Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 201 - Response time: 1272ms - IP: 192.168.14.77 - User: user_1075 - RequestID: rd0qbee6r6p +2025-06-18T15:24:56.381Z [TRACE] notification-service - Operation: payment_processed - Processing time: 152ms - RequestID: hqh9hztz3k4 +2025-06-18T15:24:56.481Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 2ms - Rows affected: 15 - RequestID: gnxmk3m6nka +2025-06-18T15:24:56.581Z [INFO] inventory-service - Operation: payment_processed - Processing time: 475ms - RequestID: dafyaj1z6fi +2025-06-18T15:24:56.681Z [INFO] inventory-service - Database SELECT on users - Execution time: 336ms - Rows affected: 99 - RequestID: x2oaau1qw6 +2025-06-18T15:24:56.781Z [INFO] payment-service - POST /api/v1/orders - Status: 500 - Response time: 1893ms - IP: 192.168.79.116 - User: user_1068 - RequestID: 9cy3xtwbaqh +2025-06-18T15:24:56.881Z [TRACE] payment-service - Operation: payment_processed - Processing time: 456ms - RequestID: dohazy21k4o +2025-06-18T15:24:56.981Z [INFO] notification-service - Operation: email_sent - Processing time: 756ms - RequestID: o3a6smerkq +2025-06-18T15:24:57.081Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 865ms - RequestID: e2flnl3sqs +2025-06-18T15:24:57.181Z [INFO] user-service - Operation: payment_processed - Processing time: 178ms - RequestID: crs33zyl56c +2025-06-18T15:24:57.281Z [TRACE] order-service - Auth event: login_attempt - User: user_1060 - IP: 192.168.167.32 - RequestID: 1e5arqio5ac +2025-06-18T15:24:57.381Z [TRACE] inventory-service - POST /api/v1/users - Status: 201 - Response time: 247ms - IP: 192.168.97.87 - User: user_1045 - RequestID: 7molzpqr97t +2025-06-18T15:24:57.481Z [INFO] order-service - Auth event: login_success - User: user_1033 - IP: 192.168.227.77 - RequestID: 55da2nj1ho3 +2025-06-18T15:24:57.581Z [TRACE] notification-service - Operation: cache_miss - Processing time: 270ms - RequestID: eoimzz86wyj +2025-06-18T15:24:57.681Z [DEBUG] payment-service - GET /api/v1/orders - Status: 502 - Response time: 1089ms - IP: 192.168.97.87 - User: user_1031 - RequestID: 7qz2rbosgnr +2025-06-18T15:24:57.781Z [TRACE] order-service - PATCH /api/v1/payments - Status: 400 - Response time: 1352ms - IP: 192.168.141.100 - User: user_1076 - RequestID: uarvjuls1dl +2025-06-18T15:24:57.881Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 98ms - Rows affected: 91 - RequestID: grt3b7bnyog +2025-06-18T15:24:57.981Z [INFO] order-service - Operation: payment_processed - Processing time: 805ms - RequestID: 9v6ve1zs8mc +2025-06-18T15:24:58.081Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 247ms - Rows affected: 51 - RequestID: 2ec5kun4ocw +2025-06-18T15:24:58.181Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 404 - Response time: 451ms - IP: 192.168.159.94 - User: user_1093 - RequestID: 2fedy1p33mq +2025-06-18T15:24:58.281Z [INFO] order-service - Auth event: login_failed - User: user_1090 - IP: 192.168.159.94 - RequestID: 4noo1swrq8c +2025-06-18T15:24:58.381Z [TRACE] user-service - Database SELECT on sessions - Execution time: 245ms - Rows affected: 84 - RequestID: bkglpf2lro5 +2025-06-18T15:24:58.481Z [INFO] payment-service - Operation: payment_processed - Processing time: 413ms - RequestID: l1yxxeqec0h +2025-06-18T15:24:58.581Z [INFO] notification-service - POST /api/v1/users - Status: 400 - Response time: 1666ms - IP: 192.168.194.41 - User: user_1045 - RequestID: zjrm2llsulf +2025-06-18T15:24:58.681Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 1106ms - IP: 192.168.81.206 - User: user_1005 - RequestID: eyfpl4l34oa +2025-06-18T15:24:58.781Z [INFO] auth-service - Auth event: logout - User: user_1084 - IP: 192.168.232.72 - RequestID: so64jcbn6s +2025-06-18T15:24:58.881Z [INFO] auth-service - GET /api/v1/payments - Status: 400 - Response time: 386ms - IP: 192.168.46.63 - User: user_1000 - RequestID: hy4p3v0v4uc +2025-06-18T15:24:58.981Z [TRACE] notification-service - Operation: cache_hit - Processing time: 486ms - RequestID: eyqrpog182r +2025-06-18T15:24:59.081Z [INFO] auth-service - Database DELETE on payments - Execution time: 30ms - Rows affected: 99 - RequestID: ae60s4r6b8 +2025-06-18T15:24:59.181Z [INFO] user-service - Operation: webhook_sent - Processing time: 876ms - RequestID: 2gh56ziwllt +2025-06-18T15:24:59.281Z [TRACE] order-service - Operation: webhook_sent - Processing time: 353ms - RequestID: jb448neuj8 +2025-06-18T15:24:59.381Z [INFO] payment-service - PUT /api/v1/inventory - Status: 503 - Response time: 991ms - IP: 192.168.147.171 - User: user_1092 - RequestID: t906ie0tbv +2025-06-18T15:24:59.481Z [TRACE] user-service - Auth event: login_success - User: user_1021 - IP: 192.168.235.117 - RequestID: 468gcx2x7e6 +2025-06-18T15:24:59.581Z [INFO] auth-service - Auth event: login_failed - User: user_1072 - IP: 192.168.211.72 - RequestID: esevwl3rjk6 +2025-06-18T15:24:59.681Z [TRACE] notification-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.13.72 - RequestID: ruarv5948id +2025-06-18T15:24:59.781Z [INFO] user-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.133.7 - RequestID: picsjfe9a5n +2025-06-18T15:24:59.881Z [TRACE] notification-service - Auth event: password_change - User: user_1042 - IP: 192.168.79.141 - RequestID: fxerrl09oph +2025-06-18T15:24:59.981Z [TRACE] order-service - Auth event: login_attempt - User: user_1085 - IP: 192.168.81.206 - RequestID: bmhusn5ygkn +2025-06-18T15:25:00.081Z [TRACE] payment-service - Database DELETE on users - Execution time: 462ms - Rows affected: 51 - RequestID: 6qr1d1ta3qc +2025-06-18T15:25:00.181Z [DEBUG] inventory-service - Database INSERT on products - Execution time: 84ms - Rows affected: 69 - RequestID: 945sryu6c86 +2025-06-18T15:25:00.281Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 442ms - Rows affected: 26 - RequestID: zeyqgtokeui +2025-06-18T15:25:00.381Z [TRACE] auth-service - PUT /api/v1/orders - Status: 403 - Response time: 699ms - IP: 192.168.33.76 - User: user_1058 - RequestID: 66vkhhbeve7 +2025-06-18T15:25:00.481Z [INFO] inventory-service - Auth event: password_change - User: user_1053 - IP: 192.168.33.76 - RequestID: rchoali4iid +2025-06-18T15:25:00.581Z [DEBUG] auth-service - PUT /api/v1/inventory - Status: 503 - Response time: 1620ms - IP: 192.168.33.76 - User: user_1055 - RequestID: 4avqwbk4yu7 +2025-06-18T15:25:00.681Z [INFO] notification-service - Operation: payment_processed - Processing time: 714ms - RequestID: c05rvo7vnrb +2025-06-18T15:25:00.781Z [DEBUG] payment-service - PUT /api/v1/users - Status: 201 - Response time: 1113ms - IP: 192.168.189.103 - User: user_1075 - RequestID: weo1kzwjbyr +2025-06-18T15:25:00.881Z [DEBUG] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 140ms - IP: 192.168.141.100 - User: user_1067 - RequestID: qu6px87322b +2025-06-18T15:25:00.981Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 78ms - RequestID: ui9mi3anwkm +2025-06-18T15:25:01.081Z [INFO] payment-service - Operation: payment_processed - Processing time: 799ms - RequestID: hf7e8kjkykg +2025-06-18T15:25:01.181Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 91ms - RequestID: gqo7g6idrc5 +2025-06-18T15:25:01.281Z [TRACE] auth-service - Operation: cache_hit - Processing time: 316ms - RequestID: rcn0xa8wtgs +2025-06-18T15:25:01.381Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 401 - Response time: 546ms - IP: 192.168.13.72 - User: user_1094 - RequestID: h9vza3nvwek +2025-06-18T15:25:01.481Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 477ms - Rows affected: 91 - RequestID: vlfqe43f7te +2025-06-18T15:25:01.581Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 249ms - Rows affected: 43 - RequestID: a22ptjflz9 +2025-06-18T15:25:01.681Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 503 - Response time: 1100ms - IP: 192.168.235.117 - User: user_1054 - RequestID: 7kv54l7iny +2025-06-18T15:25:01.781Z [INFO] order-service - Database INSERT on users - Execution time: 53ms - Rows affected: 23 - RequestID: d20ymhi70mf +2025-06-18T15:25:01.881Z [INFO] auth-service - PATCH /api/v1/users - Status: 200 - Response time: 872ms - IP: 192.168.181.225 - User: user_1098 - RequestID: cy8j6vk8f9v +2025-06-18T15:25:01.981Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 79ms - Rows affected: 27 - RequestID: 7p2dkjh2ehi +2025-06-18T15:25:02.081Z [INFO] user-service - Database SELECT on users - Execution time: 111ms - Rows affected: 21 - RequestID: vucs8dl7zm +2025-06-18T15:25:02.181Z [INFO] order-service - Auth event: login_success - User: user_1009 - IP: 192.168.133.7 - RequestID: 9hhpqj902sr +2025-06-18T15:25:02.281Z [DEBUG] order-service - Auth event: login_failed - User: user_1077 - IP: 192.168.85.229 - RequestID: 9s2vnkkxih9 +2025-06-18T15:25:02.381Z [INFO] user-service - Operation: inventory_updated - Processing time: 639ms - RequestID: c7d1v9skjyn +2025-06-18T15:25:02.481Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 257ms - Rows affected: 52 - RequestID: 0oe4n62wyw4 +2025-06-18T15:25:02.581Z [TRACE] notification-service - Auth event: login_failed - User: user_1009 - IP: 192.168.68.158 - RequestID: 2ov29y9y9ir +2025-06-18T15:25:02.681Z [DEBUG] order-service - Database SELECT on sessions - Execution time: 311ms - Rows affected: 54 - RequestID: grdc9q66foo +2025-06-18T15:25:02.781Z [INFO] auth-service - Database DELETE on orders - Execution time: 236ms - Rows affected: 89 - RequestID: 8xt28al6zeb +2025-06-18T15:25:02.881Z [TRACE] notification-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1349ms - IP: 192.168.97.87 - User: user_1065 - RequestID: n53mvi1ts8t +2025-06-18T15:25:02.981Z [TRACE] order-service - Auth event: login_success - User: user_1072 - IP: 192.168.100.240 - RequestID: u2njcc0onac +2025-06-18T15:25:03.081Z [INFO] payment-service - PUT /api/v1/inventory - Status: 502 - Response time: 305ms - IP: 192.168.13.72 - User: user_1070 - RequestID: ps1d8r29ull +2025-06-18T15:25:03.181Z [INFO] payment-service - Operation: webhook_sent - Processing time: 226ms - RequestID: ljqcot71f39 +2025-06-18T15:25:03.281Z [INFO] user-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 382ms - IP: 192.168.14.77 - User: user_1065 - RequestID: j8q5cumv8 +2025-06-18T15:25:03.381Z [TRACE] auth-service - Auth event: login_failed - User: user_1006 - IP: 192.168.144.38 - RequestID: oe840nj8v88 +2025-06-18T15:25:03.481Z [DEBUG] order-service - Database DELETE on products - Execution time: 183ms - Rows affected: 85 - RequestID: k2pf26ffeo +2025-06-18T15:25:03.581Z [TRACE] notification-service - Database SELECT on users - Execution time: 379ms - Rows affected: 60 - RequestID: jvrkdw4d6ie +2025-06-18T15:25:03.681Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 309ms - RequestID: qtpfczq3bsj +2025-06-18T15:25:03.781Z [DEBUG] inventory-service - POST /api/v1/auth/logout - Status: 201 - Response time: 57ms - IP: 192.168.36.218 - User: user_1055 - RequestID: getv3in1vkd +2025-06-18T15:25:03.881Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 145ms - Rows affected: 21 - RequestID: wvpozqt7q2q +2025-06-18T15:25:03.981Z [INFO] user-service - Auth event: login_failed - User: user_1080 - IP: 192.168.147.171 - RequestID: 34exkyqls8u +2025-06-18T15:25:04.081Z [TRACE] auth-service - POST /api/v1/orders - Status: 503 - Response time: 883ms - IP: 192.168.14.77 - User: user_1096 - RequestID: budb68a2gn +2025-06-18T15:25:04.181Z [DEBUG] user-service - Auth event: logout - User: user_1057 - IP: 192.168.144.38 - RequestID: ev2qkfvq6ww +2025-06-18T15:25:04.281Z [DEBUG] auth-service - Auth event: login_failed - User: user_1095 - IP: 192.168.104.37 - RequestID: we25ivfy8v +2025-06-18T15:25:04.381Z [TRACE] notification-service - PUT /api/v1/users - Status: 503 - Response time: 1221ms - IP: 192.168.46.63 - User: user_1004 - RequestID: bxsfiyf6xck +2025-06-18T15:25:04.481Z [INFO] payment-service - Database DELETE on orders - Execution time: 368ms - Rows affected: 93 - RequestID: broewv122ha +2025-06-18T15:25:04.581Z [TRACE] order-service - Operation: cache_hit - Processing time: 910ms - RequestID: rccudluige +2025-06-18T15:25:04.681Z [TRACE] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 458ms - IP: 192.168.79.141 - User: user_1019 - RequestID: sf4xezoitsp +2025-06-18T15:25:04.781Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 956ms - RequestID: tlzvg6yv1dp +2025-06-18T15:25:04.881Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1093 - IP: 192.168.189.103 - RequestID: 26iy8t35kfk +2025-06-18T15:25:04.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1001 - IP: 192.168.33.76 - RequestID: k03otenrbab +2025-06-18T15:25:05.081Z [DEBUG] order-service - GET /api/v1/auth/logout - Status: 404 - Response time: 1282ms - IP: 192.168.113.218 - User: user_1044 - RequestID: ldbpmmwpthd +2025-06-18T15:25:05.181Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 390ms - RequestID: xuwsqkn07wo +2025-06-18T15:25:05.281Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 273ms - Rows affected: 71 - RequestID: kivrljqj2c +2025-06-18T15:25:05.381Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 141ms - IP: 192.168.33.76 - User: user_1078 - RequestID: wqbnealcajl +2025-06-18T15:25:05.481Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 200 - Response time: 856ms - IP: 192.168.133.7 - User: user_1009 - RequestID: mt72qbvlw3q +2025-06-18T15:25:05.581Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 1475ms - IP: 192.168.85.229 - User: user_1043 - RequestID: tmdlhdysovl +2025-06-18T15:25:05.681Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 489ms - Rows affected: 40 - RequestID: fjon2isiwrf +2025-06-18T15:25:05.781Z [TRACE] user-service - Auth event: login_failed - User: user_1063 - IP: 192.168.240.169 - RequestID: l4jvydnxxte +2025-06-18T15:25:05.881Z [TRACE] notification-service - Auth event: logout - User: user_1031 - IP: 192.168.113.218 - RequestID: 7aqzjylstli +2025-06-18T15:25:05.981Z [DEBUG] auth-service - GET /api/v1/users - Status: 502 - Response time: 1701ms - IP: 192.168.189.103 - User: user_1004 - RequestID: ssmr7mnhlo +2025-06-18T15:25:06.081Z [TRACE] auth-service - Operation: order_created - Processing time: 366ms - RequestID: 75ay2tv9sr +2025-06-18T15:25:06.181Z [DEBUG] user-service - PUT /api/v1/users - Status: 200 - Response time: 883ms - IP: 192.168.227.77 - User: user_1000 - RequestID: 1d9ihdpcu49 +2025-06-18T15:25:06.281Z [INFO] order-service - Operation: webhook_sent - Processing time: 681ms - RequestID: x2lnzsa16ul +2025-06-18T15:25:06.381Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 872ms - IP: 192.168.232.72 - User: user_1063 - RequestID: 2ighr7rl4jq +2025-06-18T15:25:06.481Z [TRACE] auth-service - Database SELECT on users - Execution time: 416ms - Rows affected: 88 - RequestID: 3nvrbvev4dk +2025-06-18T15:25:06.581Z [DEBUG] payment-service - GET /api/v1/inventory - Status: 200 - Response time: 343ms - IP: 192.168.46.63 - User: user_1035 - RequestID: hu8hpmuemkg +2025-06-18T15:25:06.681Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 502 - Response time: 575ms - IP: 192.168.159.94 - User: user_1031 - RequestID: upr3us6azw +2025-06-18T15:25:06.781Z [TRACE] inventory-service - Operation: cache_miss - Processing time: 542ms - RequestID: 1vigdv48mih +2025-06-18T15:25:06.881Z [TRACE] auth-service - Operation: cache_hit - Processing time: 329ms - RequestID: xtnc37rkykf +2025-06-18T15:25:06.981Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 500 - Response time: 429ms - IP: 192.168.189.103 - User: user_1000 - RequestID: 7m1ap6bnjbk +2025-06-18T15:25:07.081Z [DEBUG] payment-service - POST /api/v1/orders - Status: 404 - Response time: 488ms - IP: 192.168.33.76 - User: user_1041 - RequestID: mz0rtm352gk +2025-06-18T15:25:07.181Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 220ms - RequestID: o2kbuseqljk +2025-06-18T15:25:07.281Z [INFO] inventory-service - Operation: cache_hit - Processing time: 940ms - RequestID: u7j5xypl4u +2025-06-18T15:25:07.381Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 292ms - Rows affected: 47 - RequestID: xim9zzb3is9 +2025-06-18T15:25:07.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.13.72 - RequestID: v0ttktw37z +2025-06-18T15:25:07.581Z [INFO] notification-service - Database INSERT on products - Execution time: 229ms - Rows affected: 78 - RequestID: jnabxfdmxao +2025-06-18T15:25:07.681Z [INFO] payment-service - Auth event: password_change - User: user_1019 - IP: 192.168.97.87 - RequestID: n63h6vdnyqh +2025-06-18T15:25:07.781Z [INFO] order-service - Auth event: password_change - User: user_1015 - IP: 192.168.36.218 - RequestID: n9tibnfqb5o +2025-06-18T15:25:07.881Z [INFO] payment-service - Operation: payment_processed - Processing time: 620ms - RequestID: rf7ls04kz28 +2025-06-18T15:25:07.981Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.138.123 - RequestID: a8subs49v8 +2025-06-18T15:25:08.081Z [DEBUG] notification-service - POST /api/v1/payments - Status: 502 - Response time: 1044ms - IP: 192.168.229.123 - User: user_1039 - RequestID: 6uzsbpexcd +2025-06-18T15:25:08.181Z [INFO] payment-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.227.77 - RequestID: zywrd331n6o +2025-06-18T15:25:08.281Z [INFO] payment-service - DELETE /api/v1/orders - Status: 403 - Response time: 1546ms - IP: 192.168.174.114 - User: user_1069 - RequestID: jax4y390nzp +2025-06-18T15:25:08.381Z [DEBUG] notification-service - Auth event: login_failed - User: user_1027 - IP: 192.168.167.32 - RequestID: ztya96nfcu +2025-06-18T15:25:08.481Z [INFO] user-service - Auth event: password_change - User: user_1052 - IP: 192.168.11.60 - RequestID: gw62u6iu4lb +2025-06-18T15:25:08.581Z [TRACE] user-service - POST /api/v1/users - Status: 403 - Response time: 580ms - IP: 192.168.194.41 - User: user_1026 - RequestID: y76h2c5ws1 +2025-06-18T15:25:08.681Z [INFO] notification-service - Operation: payment_processed - Processing time: 601ms - RequestID: cjyexvkw86u +2025-06-18T15:25:08.781Z [TRACE] user-service - Operation: email_sent - Processing time: 436ms - RequestID: 76c1512eokb +2025-06-18T15:25:08.881Z [TRACE] user-service - PATCH /api/v1/payments - Status: 502 - Response time: 867ms - IP: 192.168.181.225 - User: user_1030 - RequestID: nllm4z9ao9 +2025-06-18T15:25:08.981Z [TRACE] notification-service - Operation: email_sent - Processing time: 499ms - RequestID: pfhb6dk7 +2025-06-18T15:25:09.081Z [INFO] notification-service - Auth event: login_success - User: user_1035 - IP: 192.168.28.146 - RequestID: 6dpdjhhmsw +2025-06-18T15:25:09.181Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 269ms - Rows affected: 3 - RequestID: u21t3uqah2n +2025-06-18T15:25:09.281Z [TRACE] inventory-service - Auth event: login_success - User: user_1092 - IP: 192.168.159.94 - RequestID: atw0yuwvfxc +2025-06-18T15:25:09.381Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 1005ms - RequestID: 1whxtsjictv +2025-06-18T15:25:09.481Z [TRACE] order-service - POST /api/v1/inventory - Status: 500 - Response time: 1422ms - IP: 192.168.36.218 - User: user_1060 - RequestID: puuql7nxso +2025-06-18T15:25:09.581Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 500 - Response time: 672ms - IP: 192.168.32.38 - User: user_1077 - RequestID: 7kdvfckek7e +2025-06-18T15:25:09.681Z [DEBUG] auth-service - Database UPDATE on products - Execution time: 476ms - Rows affected: 37 - RequestID: bg5qnskquh +2025-06-18T15:25:09.781Z [DEBUG] notification-service - Database DELETE on users - Execution time: 314ms - Rows affected: 36 - RequestID: p8cipujir6 +2025-06-18T15:25:09.881Z [INFO] auth-service - Database DELETE on audit_logs - Execution time: 494ms - Rows affected: 53 - RequestID: m5vrfol7fa8 +2025-06-18T15:25:09.981Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 416ms - Rows affected: 62 - RequestID: z0e3g1xafuo +2025-06-18T15:25:10.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1076 - IP: 192.168.144.38 - RequestID: g0woyhhicr +2025-06-18T15:25:10.181Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 844ms - RequestID: hw9j9pkmqj +2025-06-18T15:25:10.281Z [TRACE] payment-service - Database UPDATE on users - Execution time: 84ms - Rows affected: 81 - RequestID: i2wj9c4wvt +2025-06-18T15:25:10.381Z [DEBUG] order-service - Database SELECT on audit_logs - Execution time: 342ms - Rows affected: 57 - RequestID: dkb4i9axk6 +2025-06-18T15:25:10.481Z [TRACE] auth-service - Database INSERT on audit_logs - Execution time: 201ms - Rows affected: 2 - RequestID: r089faj0q2n +2025-06-18T15:25:10.581Z [DEBUG] notification-service - Operation: cache_miss - Processing time: 702ms - RequestID: 37pv2ej3f9 +2025-06-18T15:25:10.681Z [TRACE] inventory-service - Operation: email_sent - Processing time: 628ms - RequestID: avs2xpzghc +2025-06-18T15:25:10.781Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 953ms - RequestID: e5a9kgr3f7c +2025-06-18T15:25:10.881Z [INFO] auth-service - Database UPDATE on payments - Execution time: 307ms - Rows affected: 71 - RequestID: xmc242ifd18 +2025-06-18T15:25:10.981Z [INFO] user-service - Operation: order_created - Processing time: 119ms - RequestID: fbb2hweuam +2025-06-18T15:25:11.081Z [INFO] payment-service - PATCH /api/v1/orders - Status: 502 - Response time: 1126ms - IP: 192.168.211.72 - User: user_1028 - RequestID: 5ii31mtddis +2025-06-18T15:25:11.181Z [INFO] auth-service - PATCH /api/v1/users - Status: 403 - Response time: 1342ms - IP: 192.168.167.32 - User: user_1021 - RequestID: 7a1yonbq453 +2025-06-18T15:25:11.281Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 102ms - Rows affected: 45 - RequestID: bam8zslycvd +2025-06-18T15:25:11.381Z [DEBUG] order-service - DELETE /api/v1/auth/logout - Status: 404 - Response time: 1384ms - IP: 192.168.11.60 - User: user_1064 - RequestID: s6oys2c2dc +2025-06-18T15:25:11.481Z [DEBUG] inventory-service - PUT /api/v1/payments - Status: 403 - Response time: 386ms - IP: 192.168.227.233 - User: user_1051 - RequestID: wd3rpscanpc +2025-06-18T15:25:11.581Z [TRACE] auth-service - GET /api/v1/inventory - Status: 201 - Response time: 277ms - IP: 192.168.138.123 - User: user_1093 - RequestID: izmjq8zqxce +2025-06-18T15:25:11.681Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 770ms - RequestID: 682pqhunn68 +2025-06-18T15:25:11.781Z [INFO] payment-service - Database INSERT on payments - Execution time: 289ms - Rows affected: 36 - RequestID: t8tn951cqr +2025-06-18T15:25:11.881Z [INFO] inventory-service - Database DELETE on users - Execution time: 116ms - Rows affected: 75 - RequestID: m7fz9o70tko +2025-06-18T15:25:11.981Z [TRACE] user-service - Operation: cache_hit - Processing time: 290ms - RequestID: 89nfybfzqgm +2025-06-18T15:25:12.081Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 225ms - Rows affected: 51 - RequestID: ze5sy0t9rn +2025-06-18T15:25:12.181Z [TRACE] inventory-service - POST /api/v1/orders - Status: 503 - Response time: 481ms - IP: 192.168.138.123 - User: user_1057 - RequestID: htua06iu3ep +2025-06-18T15:25:12.281Z [DEBUG] user-service - Auth event: login_attempt - User: user_1011 - IP: 192.168.167.32 - RequestID: v04s2q4r9w +2025-06-18T15:25:12.381Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 377ms - Rows affected: 19 - RequestID: 3uuaodtymv5 +2025-06-18T15:25:12.481Z [INFO] inventory-service - Database INSERT on payments - Execution time: 447ms - Rows affected: 57 - RequestID: 4wadfjl8qr +2025-06-18T15:25:12.581Z [DEBUG] order-service - Auth event: password_change - User: user_1060 - IP: 192.168.227.233 - RequestID: zo40n10vuu +2025-06-18T15:25:12.681Z [TRACE] notification-service - POST /api/v1/inventory - Status: 403 - Response time: 1522ms - IP: 192.168.227.77 - User: user_1061 - RequestID: mmsxccqd9c +2025-06-18T15:25:12.781Z [DEBUG] user-service - POST /api/v1/users - Status: 404 - Response time: 1305ms - IP: 192.168.100.240 - User: user_1019 - RequestID: herf3wkr1x7 +2025-06-18T15:25:12.881Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 401 - Response time: 1208ms - IP: 192.168.32.38 - User: user_1076 - RequestID: o7sxn27byxo +2025-06-18T15:25:12.981Z [DEBUG] user-service - Database SELECT on products - Execution time: 427ms - Rows affected: 62 - RequestID: dbbeddj9to +2025-06-18T15:25:13.081Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 567ms - RequestID: rxkw816oia +2025-06-18T15:25:13.181Z [DEBUG] user-service - Operation: cache_hit - Processing time: 618ms - RequestID: v0yzihhrcoe +2025-06-18T15:25:13.281Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 298ms - RequestID: mmbk0ulxu48 +2025-06-18T15:25:13.381Z [INFO] payment-service - Auth event: login_failed - User: user_1077 - IP: 192.168.68.158 - RequestID: ad98fkel91i +2025-06-18T15:25:13.481Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 194ms - Rows affected: 51 - RequestID: n4941nuyxf +2025-06-18T15:25:13.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.227.77 - RequestID: lt755kv5ab +2025-06-18T15:25:13.681Z [INFO] user-service - GET /api/v1/orders - Status: 500 - Response time: 1464ms - IP: 192.168.240.169 - User: user_1068 - RequestID: xn0lpqz17t +2025-06-18T15:25:13.781Z [INFO] inventory-service - Auth event: logout - User: user_1019 - IP: 192.168.242.165 - RequestID: zp39qjl9uq +2025-06-18T15:25:13.881Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 378ms - Rows affected: 78 - RequestID: ny06wzghnm +2025-06-18T15:25:13.981Z [DEBUG] auth-service - Auth event: logout - User: user_1044 - IP: 192.168.85.229 - RequestID: gjpkjc7w6i9 +2025-06-18T15:25:14.081Z [DEBUG] payment-service - Database INSERT on sessions - Execution time: 8ms - Rows affected: 59 - RequestID: ypluu31qbw +2025-06-18T15:25:14.181Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 368ms - Rows affected: 64 - RequestID: t3k7azhaexl +2025-06-18T15:25:14.281Z [INFO] inventory-service - Database SELECT on orders - Execution time: 107ms - Rows affected: 34 - RequestID: iv3thmgb8a +2025-06-18T15:25:14.381Z [TRACE] user-service - Database SELECT on products - Execution time: 243ms - Rows affected: 65 - RequestID: 0z478pc3ee7d +2025-06-18T15:25:14.481Z [TRACE] payment-service - Database UPDATE on users - Execution time: 455ms - Rows affected: 82 - RequestID: 82s9yxw361a +2025-06-18T15:25:14.581Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 403 - Response time: 566ms - IP: 192.168.159.94 - User: user_1041 - RequestID: bpotxphy3t +2025-06-18T15:25:14.681Z [DEBUG] user-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.13.72 - RequestID: fd37v966gl6 +2025-06-18T15:25:14.781Z [INFO] inventory-service - Auth event: password_change - User: user_1076 - IP: 192.168.113.218 - RequestID: i531i9gsj6e +2025-06-18T15:25:14.881Z [TRACE] user-service - Database DELETE on products - Execution time: 110ms - Rows affected: 53 - RequestID: c8wmmtm3jqb +2025-06-18T15:25:14.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1050 - IP: 192.168.79.143 - RequestID: r2eksfwgxy +2025-06-18T15:25:15.081Z [TRACE] user-service - Operation: cache_miss - Processing time: 553ms - RequestID: o41b4jbkzd +2025-06-18T15:25:15.181Z [DEBUG] auth-service - PUT /api/v1/payments - Status: 404 - Response time: 1683ms - IP: 192.168.68.128 - User: user_1059 - RequestID: q1ai13w6uzs +2025-06-18T15:25:15.281Z [INFO] auth-service - Database DELETE on sessions - Execution time: 302ms - Rows affected: 49 - RequestID: okwy8am1t2 +2025-06-18T15:25:15.381Z [DEBUG] notification-service - GET /api/v1/users - Status: 404 - Response time: 1533ms - IP: 192.168.170.215 - User: user_1065 - RequestID: h2ucbp941o7 +2025-06-18T15:25:15.481Z [INFO] user-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.181.225 - RequestID: ohyvb77f9e +2025-06-18T15:25:15.581Z [DEBUG] notification-service - DELETE /api/v1/auth/logout - Status: 400 - Response time: 1681ms - IP: 192.168.211.72 - User: user_1055 - RequestID: 7tbnb9eu0vy +2025-06-18T15:25:15.681Z [TRACE] auth-service - Database INSERT on products - Execution time: 143ms - Rows affected: 58 - RequestID: flmpbq9lbk +2025-06-18T15:25:15.781Z [TRACE] order-service - Auth event: password_change - User: user_1039 - IP: 192.168.31.117 - RequestID: zkgh7emx56 +2025-06-18T15:25:15.881Z [TRACE] payment-service - Auth event: login_failed - User: user_1009 - IP: 192.168.68.128 - RequestID: pi2o8ak6sb9 +2025-06-18T15:25:15.981Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 65ms - RequestID: odsztzsutil +2025-06-18T15:25:16.081Z [INFO] order-service - Auth event: password_change - User: user_1069 - IP: 192.168.159.94 - RequestID: 7gq6e0lo3rn +2025-06-18T15:25:16.181Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.242.165 - RequestID: sh8mjkryjy +2025-06-18T15:25:16.281Z [DEBUG] user-service - Auth event: logout - User: user_1086 - IP: 192.168.211.72 - RequestID: 1vydz6ilnwl +2025-06-18T15:25:16.381Z [TRACE] notification-service - Operation: order_created - Processing time: 805ms - RequestID: yr93ynxoibf +2025-06-18T15:25:16.481Z [INFO] user-service - GET /api/v1/auth/login - Status: 200 - Response time: 1133ms - IP: 192.168.194.41 - User: user_1099 - RequestID: n3z9upb57he +2025-06-18T15:25:16.581Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 403 - Response time: 1353ms - IP: 192.168.68.158 - User: user_1021 - RequestID: f5udnu2d1vg +2025-06-18T15:25:16.681Z [DEBUG] user-service - Auth event: login_success - User: user_1074 - IP: 192.168.32.38 - RequestID: azxpa17nic +2025-06-18T15:25:16.781Z [INFO] payment-service - GET /api/v1/auth/login - Status: 404 - Response time: 1036ms - IP: 192.168.44.5 - User: user_1062 - RequestID: 06qwxa5ts76 +2025-06-18T15:25:16.881Z [DEBUG] auth-service - Database SELECT on audit_logs - Execution time: 395ms - Rows affected: 25 - RequestID: zgaw50v2vfs +2025-06-18T15:25:16.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.68.158 - RequestID: u5lma9om37s +2025-06-18T15:25:17.081Z [DEBUG] user-service - POST /api/v1/auth/login - Status: 401 - Response time: 162ms - IP: 192.168.33.76 - User: user_1025 - RequestID: tb56j0206b +2025-06-18T15:25:17.181Z [DEBUG] payment-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1157ms - IP: 192.168.85.229 - User: user_1060 - RequestID: 2meg01bxhu9 +2025-06-18T15:25:17.281Z [DEBUG] inventory-service - POST /api/v1/users - Status: 403 - Response time: 568ms - IP: 192.168.194.41 - User: user_1002 - RequestID: w7awqmfyok +2025-06-18T15:25:17.381Z [INFO] user-service - PATCH /api/v1/payments - Status: 502 - Response time: 1360ms - IP: 192.168.79.116 - User: user_1066 - RequestID: 7fyy3v60dzk +2025-06-18T15:25:17.481Z [INFO] notification-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1927ms - IP: 192.168.227.233 - User: user_1093 - RequestID: 2m5esyq8rrs +2025-06-18T15:25:17.581Z [TRACE] payment-service - Database UPDATE on payments - Execution time: 239ms - Rows affected: 1 - RequestID: 7e9ksiffc24 +2025-06-18T15:25:17.681Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 231ms - RequestID: ntez4yus8v +2025-06-18T15:25:17.781Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1601ms - IP: 192.168.36.218 - User: user_1041 - RequestID: 3y0hjflxja7 +2025-06-18T15:25:17.881Z [TRACE] order-service - Operation: inventory_updated - Processing time: 52ms - RequestID: xpvv3jgjgcc +2025-06-18T15:25:17.981Z [INFO] auth-service - Auth event: logout - User: user_1052 - IP: 192.168.174.114 - RequestID: lolgm0utbw +2025-06-18T15:25:18.081Z [TRACE] payment-service - GET /api/v1/users - Status: 403 - Response time: 1939ms - IP: 192.168.28.146 - User: user_1005 - RequestID: dfhqb75pw7m +2025-06-18T15:25:18.181Z [INFO] user-service - PATCH /api/v1/orders - Status: 403 - Response time: 1319ms - IP: 192.168.14.77 - User: user_1038 - RequestID: 2mbt5x0tcsl +2025-06-18T15:25:18.281Z [INFO] order-service - POST /api/v1/payments - Status: 502 - Response time: 92ms - IP: 192.168.147.171 - User: user_1079 - RequestID: anex07jbt0b +2025-06-18T15:25:18.381Z [INFO] user-service - Database UPDATE on payments - Execution time: 331ms - Rows affected: 77 - RequestID: gb3lvmwxwtu +2025-06-18T15:25:18.481Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1004 - IP: 192.168.100.240 - RequestID: hxgv4t8ghj7 +2025-06-18T15:25:18.581Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1316ms - IP: 192.168.174.114 - User: user_1059 - RequestID: robi2jthl0l +2025-06-18T15:25:18.681Z [DEBUG] order-service - Database INSERT on orders - Execution time: 485ms - Rows affected: 52 - RequestID: rucvxpl13 +2025-06-18T15:25:18.781Z [INFO] payment-service - Database SELECT on payments - Execution time: 252ms - Rows affected: 84 - RequestID: rfnle3y14ir +2025-06-18T15:25:18.881Z [TRACE] auth-service - Auth event: logout - User: user_1009 - IP: 192.168.113.218 - RequestID: r9ol5rpksg +2025-06-18T15:25:18.981Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1369ms - IP: 192.168.64.33 - User: user_1004 - RequestID: t1fg22l8nhg +2025-06-18T15:25:19.081Z [TRACE] payment-service - Database DELETE on sessions - Execution time: 497ms - Rows affected: 50 - RequestID: hu6n4hpj51s +2025-06-18T15:25:19.181Z [DEBUG] payment-service - Auth event: logout - User: user_1063 - IP: 192.168.147.171 - RequestID: jsl4culz2ad +2025-06-18T15:25:19.281Z [TRACE] payment-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.46.63 - RequestID: xmmrv9a0529 +2025-06-18T15:25:19.381Z [INFO] user-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.194.41 - RequestID: si6lcp5o1i +2025-06-18T15:25:19.481Z [TRACE] payment-service - Auth event: login_success - User: user_1076 - IP: 192.168.79.116 - RequestID: eon114if6yi +2025-06-18T15:25:19.581Z [INFO] order-service - Database UPDATE on payments - Execution time: 499ms - Rows affected: 7 - RequestID: tarvv5lga4 +2025-06-18T15:25:19.681Z [INFO] inventory-service - Operation: payment_processed - Processing time: 76ms - RequestID: l1cu97niw3o +2025-06-18T15:25:19.781Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 485ms - Rows affected: 50 - RequestID: ieu9aykvfdr +2025-06-18T15:25:19.881Z [INFO] inventory-service - Auth event: logout - User: user_1050 - IP: 192.168.247.134 - RequestID: kg38meqhi9 +2025-06-18T15:25:19.981Z [INFO] auth-service - Auth event: logout - User: user_1007 - IP: 192.168.227.233 - RequestID: gfdexdlyx3d +2025-06-18T15:25:20.081Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 563ms - RequestID: sb96nwmvdcl +2025-06-18T15:25:20.181Z [INFO] payment-service - Operation: payment_processed - Processing time: 242ms - RequestID: xhjljf0hqo +2025-06-18T15:25:20.281Z [INFO] user-service - Auth event: login_failed - User: user_1023 - IP: 192.168.32.38 - RequestID: 43en58cylr3 +2025-06-18T15:25:20.381Z [TRACE] user-service - Database DELETE on sessions - Execution time: 322ms - Rows affected: 86 - RequestID: 8dedwy72hs5 +2025-06-18T15:25:20.481Z [TRACE] user-service - Database INSERT on products - Execution time: 318ms - Rows affected: 44 - RequestID: 83w9mbbdr9v +2025-06-18T15:25:20.581Z [TRACE] order-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.79.116 - RequestID: b1d0ogrgxaf +2025-06-18T15:25:20.681Z [INFO] auth-service - Operation: email_sent - Processing time: 1022ms - RequestID: knwchufi4z +2025-06-18T15:25:20.781Z [TRACE] user-service - Operation: notification_queued - Processing time: 957ms - RequestID: 9n3bhahr4bg +2025-06-18T15:25:20.881Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 233ms - RequestID: oaa8wuh7p9d +2025-06-18T15:25:20.981Z [TRACE] payment-service - Auth event: logout - User: user_1023 - IP: 192.168.158.144 - RequestID: m0kwlo45jhf +2025-06-18T15:25:21.081Z [INFO] payment-service - Operation: cache_hit - Processing time: 751ms - RequestID: voxqoxysa7 +2025-06-18T15:25:21.181Z [TRACE] user-service - Auth event: logout - User: user_1073 - IP: 192.168.30.79 - RequestID: y8hxl8lkzoh +2025-06-18T15:25:21.281Z [TRACE] order-service - PUT /api/v1/payments - Status: 503 - Response time: 1566ms - IP: 192.168.235.117 - User: user_1010 - RequestID: 16pqincey8x +2025-06-18T15:25:21.381Z [DEBUG] notification-service - Database UPDATE on payments - Execution time: 459ms - Rows affected: 76 - RequestID: k4i09q5jf1 +2025-06-18T15:25:21.481Z [INFO] payment-service - PUT /api/v1/users - Status: 201 - Response time: 1741ms - IP: 192.168.31.117 - User: user_1019 - RequestID: a1cmsu939hm +2025-06-18T15:25:21.581Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1502ms - IP: 192.168.44.5 - User: user_1038 - RequestID: 5ck10k41ww3 +2025-06-18T15:25:21.681Z [DEBUG] payment-service - Operation: inventory_updated - Processing time: 208ms - RequestID: 2n9b205b814 +2025-06-18T15:25:21.781Z [INFO] user-service - Database INSERT on sessions - Execution time: 440ms - Rows affected: 48 - RequestID: w7jxhynk8yp +2025-06-18T15:25:21.881Z [DEBUG] order-service - Database DELETE on payments - Execution time: 336ms - Rows affected: 93 - RequestID: ac9l1lsx0s +2025-06-18T15:25:21.981Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 502 - Response time: 1435ms - IP: 192.168.32.38 - User: user_1030 - RequestID: 8heoe72ezmh +2025-06-18T15:25:22.081Z [DEBUG] user-service - Database SELECT on payments - Execution time: 337ms - Rows affected: 63 - RequestID: 9w0bl7c7a34 +2025-06-18T15:25:22.181Z [DEBUG] notification-service - Auth event: logout - User: user_1090 - IP: 192.168.1.152 - RequestID: k3mj5b1fo3p +2025-06-18T15:25:22.281Z [TRACE] notification-service - Auth event: login_success - User: user_1092 - IP: 192.168.44.5 - RequestID: u18j9sw9c3 +2025-06-18T15:25:22.381Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 469ms - Rows affected: 18 - RequestID: q94aq4vm8si +2025-06-18T15:25:22.481Z [TRACE] notification-service - Auth event: login_failed - User: user_1074 - IP: 192.168.11.60 - RequestID: wtam3rmnm3 +2025-06-18T15:25:22.581Z [DEBUG] auth-service - PUT /api/v1/orders - Status: 500 - Response time: 644ms - IP: 192.168.159.94 - User: user_1072 - RequestID: r3e9380jk9j +2025-06-18T15:25:22.681Z [TRACE] user-service - Operation: notification_queued - Processing time: 440ms - RequestID: rpp4731ezec +2025-06-18T15:25:22.781Z [TRACE] payment-service - GET /api/v1/inventory - Status: 200 - Response time: 952ms - IP: 192.168.85.229 - User: user_1020 - RequestID: c2rif0refud +2025-06-18T15:25:22.881Z [DEBUG] order-service - Operation: order_created - Processing time: 1011ms - RequestID: yule1l4aprb +2025-06-18T15:25:22.981Z [INFO] user-service - Operation: cache_miss - Processing time: 198ms - RequestID: 0py75l4veoae +2025-06-18T15:25:23.081Z [TRACE] notification-service - Auth event: login_success - User: user_1057 - IP: 192.168.79.143 - RequestID: slr9zip9e2c +2025-06-18T15:25:23.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.31.117 - RequestID: or2wq1s4fe8 +2025-06-18T15:25:23.281Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1766ms - IP: 192.168.64.33 - User: user_1020 - RequestID: 6n6zkkvnq1x +2025-06-18T15:25:23.381Z [DEBUG] user-service - Database SELECT on products - Execution time: 465ms - Rows affected: 45 - RequestID: h459zevbgpv +2025-06-18T15:25:23.481Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 934ms - RequestID: 4jqheyp1rgf +2025-06-18T15:25:23.581Z [INFO] order-service - Auth event: login_failed - User: user_1068 - IP: 192.168.144.38 - RequestID: y7idliz3il +2025-06-18T15:25:23.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 219ms - RequestID: zc6mfzgo4jn +2025-06-18T15:25:23.781Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1014 - IP: 192.168.133.7 - RequestID: e8sj1dcx6lo +2025-06-18T15:25:23.881Z [DEBUG] order-service - Auth event: logout - User: user_1089 - IP: 192.168.100.240 - RequestID: mgu2te7aj6 +2025-06-18T15:25:23.981Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 538ms - RequestID: r022j77ffs +2025-06-18T15:25:24.081Z [INFO] payment-service - POST /api/v1/payments - Status: 503 - Response time: 398ms - IP: 192.168.1.152 - User: user_1001 - RequestID: 2vkk2sa7rte +2025-06-18T15:25:24.181Z [INFO] order-service - Operation: order_created - Processing time: 687ms - RequestID: 0qbim1ue6on +2025-06-18T15:25:24.281Z [INFO] auth-service - Operation: order_created - Processing time: 373ms - RequestID: embg0922rok +2025-06-18T15:25:24.381Z [DEBUG] auth-service - Database INSERT on audit_logs - Execution time: 416ms - Rows affected: 75 - RequestID: 6wxhtbumesm +2025-06-18T15:25:24.481Z [DEBUG] order-service - Auth event: login_success - User: user_1043 - IP: 192.168.196.226 - RequestID: rahbo7oentt +2025-06-18T15:25:24.581Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 404 - Response time: 1132ms - IP: 192.168.242.165 - User: user_1048 - RequestID: u0t0eyay6mf +2025-06-18T15:25:24.681Z [INFO] payment-service - Database SELECT on products - Execution time: 120ms - Rows affected: 26 - RequestID: ga1n1ouxont +2025-06-18T15:25:24.781Z [INFO] user-service - GET /api/v1/auth/logout - Status: 401 - Response time: 828ms - IP: 192.168.31.117 - User: user_1070 - RequestID: d3sr1u64due +2025-06-18T15:25:24.881Z [INFO] user-service - Database INSERT on products - Execution time: 426ms - Rows affected: 45 - RequestID: rwktf07fi7q +2025-06-18T15:25:24.981Z [INFO] auth-service - PUT /api/v1/auth/logout - Status: 401 - Response time: 1129ms - IP: 192.168.68.158 - User: user_1037 - RequestID: l12gqbyz0eg +2025-06-18T15:25:25.081Z [TRACE] notification-service - Operation: order_created - Processing time: 549ms - RequestID: xn5qrhclzd +2025-06-18T15:25:25.181Z [INFO] inventory-service - Operation: webhook_sent - Processing time: 865ms - RequestID: u434i2vdzzm +2025-06-18T15:25:25.281Z [INFO] order-service - Operation: order_created - Processing time: 457ms - RequestID: prvsd1l1jm +2025-06-18T15:25:25.381Z [DEBUG] order-service - GET /api/v1/orders - Status: 500 - Response time: 644ms - IP: 192.168.79.143 - User: user_1054 - RequestID: q59dpyj6jq +2025-06-18T15:25:25.481Z [INFO] payment-service - Database SELECT on products - Execution time: 320ms - Rows affected: 21 - RequestID: y2hq4zfy1dd +2025-06-18T15:25:25.581Z [TRACE] inventory-service - Auth event: logout - User: user_1076 - IP: 192.168.46.63 - RequestID: o5i85r1rdy +2025-06-18T15:25:25.681Z [TRACE] order-service - Database SELECT on sessions - Execution time: 243ms - Rows affected: 96 - RequestID: uamqzldjme9 +2025-06-18T15:25:25.781Z [DEBUG] notification-service - Auth event: logout - User: user_1083 - IP: 192.168.32.38 - RequestID: yw2mc8687v +2025-06-18T15:25:25.881Z [DEBUG] notification-service - Database INSERT on users - Execution time: 192ms - Rows affected: 2 - RequestID: pw2seu832 +2025-06-18T15:25:25.981Z [TRACE] auth-service - Auth event: logout - User: user_1020 - IP: 192.168.247.134 - RequestID: fsfdf5izhzo +2025-06-18T15:25:26.081Z [TRACE] user-service - Operation: cache_hit - Processing time: 170ms - RequestID: 226a51ic10gh +2025-06-18T15:25:26.181Z [INFO] order-service - Database INSERT on audit_logs - Execution time: 220ms - Rows affected: 61 - RequestID: egvc625gunp +2025-06-18T15:25:26.281Z [DEBUG] order-service - Database SELECT on payments - Execution time: 116ms - Rows affected: 28 - RequestID: d1n9sh7rtn +2025-06-18T15:25:26.381Z [INFO] auth-service - Database SELECT on products - Execution time: 351ms - Rows affected: 32 - RequestID: elxttveg9zk +2025-06-18T15:25:26.481Z [DEBUG] order-service - Database UPDATE on payments - Execution time: 425ms - Rows affected: 82 - RequestID: 074u7kwflx3h +2025-06-18T15:25:26.581Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 403 - Response time: 506ms - IP: 192.168.194.41 - User: user_1066 - RequestID: ujaitqeja +2025-06-18T15:25:26.681Z [INFO] notification-service - Operation: inventory_updated - Processing time: 411ms - RequestID: uovop0wb7fl +2025-06-18T15:25:26.781Z [INFO] auth-service - Auth event: login_attempt - User: user_1034 - IP: 192.168.227.233 - RequestID: rljpgjp9zxj +2025-06-18T15:25:26.881Z [DEBUG] order-service - POST /api/v1/inventory - Status: 401 - Response time: 1142ms - IP: 192.168.10.184 - User: user_1005 - RequestID: g79g2k9bzr +2025-06-18T15:25:26.981Z [TRACE] notification-service - Operation: order_created - Processing time: 350ms - RequestID: gq9u7yfml36 +2025-06-18T15:25:27.081Z [DEBUG] auth-service - Auth event: login_success - User: user_1031 - IP: 192.168.147.171 - RequestID: nrzotgc4j0h +2025-06-18T15:25:27.181Z [INFO] order-service - Auth event: login_success - User: user_1043 - IP: 192.168.68.158 - RequestID: p07mwxwaqhn +2025-06-18T15:25:27.281Z [DEBUG] auth-service - Auth event: login_success - User: user_1044 - IP: 192.168.28.146 - RequestID: iz4dhmz77ns +2025-06-18T15:25:27.381Z [INFO] auth-service - PATCH /api/v1/orders - Status: 503 - Response time: 206ms - IP: 192.168.170.215 - User: user_1003 - RequestID: kzd6hsif42 +2025-06-18T15:25:27.481Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 464ms - Rows affected: 62 - RequestID: an84x3m4bdg +2025-06-18T15:25:27.581Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1641ms - IP: 192.168.104.37 - User: user_1083 - RequestID: 7nzf8xwwrfr +2025-06-18T15:25:27.681Z [DEBUG] user-service - Auth event: login_success - User: user_1084 - IP: 192.168.189.103 - RequestID: 0g31rbk52gxl +2025-06-18T15:25:27.781Z [TRACE] order-service - Database UPDATE on products - Execution time: 463ms - Rows affected: 97 - RequestID: l80abhvitx +2025-06-18T15:25:27.881Z [INFO] user-service - GET /api/v1/users - Status: 400 - Response time: 63ms - IP: 192.168.141.100 - User: user_1011 - RequestID: 0itci9axhnm +2025-06-18T15:25:27.981Z [INFO] auth-service - Operation: cache_miss - Processing time: 273ms - RequestID: 3p5yhu7tvn9 +2025-06-18T15:25:28.081Z [INFO] payment-service - Operation: payment_processed - Processing time: 70ms - RequestID: dpoi92cluxn +2025-06-18T15:25:28.181Z [INFO] user-service - Database SELECT on sessions - Execution time: 395ms - Rows affected: 46 - RequestID: s385i9mt3ir +2025-06-18T15:25:28.281Z [TRACE] payment-service - GET /api/v1/inventory - Status: 404 - Response time: 499ms - IP: 192.168.97.87 - User: user_1057 - RequestID: 473l6vzufrd +2025-06-18T15:25:28.381Z [INFO] payment-service - Operation: cache_miss - Processing time: 720ms - RequestID: in7d3y3421e +2025-06-18T15:25:28.481Z [TRACE] auth-service - Database SELECT on sessions - Execution time: 343ms - Rows affected: 67 - RequestID: 8yg2hdc1twp +2025-06-18T15:25:28.581Z [INFO] inventory-service - Auth event: login_attempt - User: user_1000 - IP: 192.168.144.38 - RequestID: 6f7i2yng9hk +2025-06-18T15:25:28.681Z [TRACE] auth-service - PUT /api/v1/auth/login - Status: 404 - Response time: 1138ms - IP: 192.168.229.123 - User: user_1056 - RequestID: vjt1p211hoh +2025-06-18T15:25:28.781Z [TRACE] auth-service - Operation: order_created - Processing time: 701ms - RequestID: 58qtv5nnm4m +2025-06-18T15:25:28.881Z [INFO] payment-service - Auth event: logout - User: user_1096 - IP: 192.168.159.94 - RequestID: o5hi2p25fgk +2025-06-18T15:25:28.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1042 - IP: 192.168.133.7 - RequestID: mqyb6pvgix +2025-06-18T15:25:29.081Z [DEBUG] inventory-service - GET /api/v1/auth/logout - Status: 500 - Response time: 492ms - IP: 192.168.46.63 - User: user_1012 - RequestID: btazm9in48 +2025-06-18T15:25:29.181Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 500 - Response time: 1369ms - IP: 192.168.68.128 - User: user_1054 - RequestID: 0jy7lb7fnyjm +2025-06-18T15:25:29.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1042 - IP: 192.168.242.165 - RequestID: 78zj9ep0qc6 +2025-06-18T15:25:29.381Z [DEBUG] user-service - Operation: cache_miss - Processing time: 498ms - RequestID: wsv04jljw +2025-06-18T15:25:29.481Z [INFO] user-service - POST /api/v1/orders - Status: 404 - Response time: 1378ms - IP: 192.168.174.114 - User: user_1009 - RequestID: atzsr6wh1zn +2025-06-18T15:25:29.581Z [TRACE] order-service - Auth event: login_failed - User: user_1014 - IP: 192.168.97.87 - RequestID: g2t8ynpyz2 +2025-06-18T15:25:29.681Z [TRACE] auth-service - Auth event: login_success - User: user_1082 - IP: 192.168.11.60 - RequestID: i8s3huf5fo +2025-06-18T15:25:29.781Z [TRACE] user-service - Operation: cache_miss - Processing time: 377ms - RequestID: astmghowdor +2025-06-18T15:25:29.881Z [TRACE] notification-service - Auth event: password_change - User: user_1000 - IP: 192.168.170.215 - RequestID: xa6qlfueu8f +2025-06-18T15:25:29.981Z [INFO] notification-service - Operation: order_created - Processing time: 882ms - RequestID: omy4rk3wkng +2025-06-18T15:25:30.081Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 400 - Response time: 1351ms - IP: 192.168.36.218 - User: user_1088 - RequestID: 9umyeyvwqr5 +2025-06-18T15:25:30.181Z [INFO] user-service - Auth event: login_failed - User: user_1048 - IP: 192.168.232.72 - RequestID: z7m2ene1r4 +2025-06-18T15:25:30.281Z [TRACE] auth-service - Database SELECT on products - Execution time: 58ms - Rows affected: 75 - RequestID: 7yelcvujk8d +2025-06-18T15:25:30.381Z [TRACE] user-service - Auth event: password_change - User: user_1027 - IP: 192.168.247.134 - RequestID: d7a6fsnsun5 +2025-06-18T15:25:30.481Z [INFO] inventory-service - Operation: notification_queued - Processing time: 932ms - RequestID: 37or9svydpm +2025-06-18T15:25:30.581Z [TRACE] auth-service - Auth event: login_success - User: user_1014 - IP: 192.168.133.7 - RequestID: ton7be5xz6k +2025-06-18T15:25:30.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 984ms - RequestID: a0oauu1lddl +2025-06-18T15:25:30.781Z [INFO] notification-service - PUT /api/v1/auth/login - Status: 500 - Response time: 954ms - IP: 192.168.247.134 - User: user_1047 - RequestID: hhgju1brpb7 +2025-06-18T15:25:30.881Z [TRACE] notification-service - Database SELECT on payments - Execution time: 291ms - Rows affected: 92 - RequestID: d00fe1d10o7 +2025-06-18T15:25:30.981Z [TRACE] auth-service - Operation: cache_miss - Processing time: 886ms - RequestID: w2zikqqbn9 +2025-06-18T15:25:31.081Z [INFO] auth-service - Database UPDATE on users - Execution time: 92ms - Rows affected: 17 - RequestID: y6mym718lqp +2025-06-18T15:25:31.181Z [TRACE] notification-service - Database DELETE on orders - Execution time: 362ms - Rows affected: 25 - RequestID: e7r9xem7x28 +2025-06-18T15:25:31.281Z [TRACE] auth-service - GET /api/v1/auth/login - Status: 200 - Response time: 551ms - IP: 192.168.79.116 - User: user_1002 - RequestID: bwdrx3l8d5i +2025-06-18T15:25:31.381Z [TRACE] user-service - Operation: notification_queued - Processing time: 654ms - RequestID: ar9ctq5yl9 +2025-06-18T15:25:31.481Z [TRACE] notification-service - Database UPDATE on users - Execution time: 194ms - Rows affected: 23 - RequestID: nhceta5nor +2025-06-18T15:25:31.581Z [TRACE] user-service - Auth event: login_success - User: user_1008 - IP: 192.168.1.152 - RequestID: 3z46rdjuzm +2025-06-18T15:25:31.681Z [TRACE] payment-service - PATCH /api/v1/orders - Status: 200 - Response time: 925ms - IP: 192.168.13.72 - User: user_1050 - RequestID: 03wfuj2qku5u +2025-06-18T15:25:31.781Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 188ms - RequestID: stzm1a84hn +2025-06-18T15:25:31.881Z [DEBUG] auth-service - Auth event: password_change - User: user_1000 - IP: 192.168.46.63 - RequestID: j1oiasmr89e +2025-06-18T15:25:31.981Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 298ms - Rows affected: 4 - RequestID: cnqqw3jxnrr +2025-06-18T15:25:32.081Z [TRACE] order-service - Operation: notification_queued - Processing time: 777ms - RequestID: 9egsslqq9pe +2025-06-18T15:25:32.181Z [DEBUG] notification-service - Auth event: login_success - User: user_1001 - IP: 192.168.158.144 - RequestID: trgya73sc8 +2025-06-18T15:25:32.281Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 90ms - Rows affected: 91 - RequestID: ju5e9lfhidn +2025-06-18T15:25:32.381Z [DEBUG] auth-service - Database UPDATE on users - Execution time: 43ms - Rows affected: 12 - RequestID: 8ge4o1z0pgc +2025-06-18T15:25:32.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1088 - IP: 192.168.31.117 - RequestID: 21xkui6byog +2025-06-18T15:25:32.581Z [INFO] payment-service - Database DELETE on users - Execution time: 415ms - Rows affected: 45 - RequestID: yeb4znlgwao +2025-06-18T15:25:32.681Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1458ms - IP: 192.168.64.33 - User: user_1079 - RequestID: mot2wcwrid +2025-06-18T15:25:32.781Z [INFO] inventory-service - Auth event: login_failed - User: user_1020 - IP: 192.168.79.141 - RequestID: 9l6m562g3kg +2025-06-18T15:25:32.881Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 403 - Response time: 32ms - IP: 192.168.1.152 - User: user_1078 - RequestID: jusdxug75w +2025-06-18T15:25:32.981Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 568ms - RequestID: itkmjbye3nc +2025-06-18T15:25:33.081Z [TRACE] payment-service - Database INSERT on audit_logs - Execution time: 179ms - Rows affected: 28 - RequestID: xjxfjcyv6ug +2025-06-18T15:25:33.181Z [INFO] user-service - Database DELETE on payments - Execution time: 237ms - Rows affected: 46 - RequestID: bxhmlo73wbg +2025-06-18T15:25:33.281Z [INFO] notification-service - Database SELECT on products - Execution time: 110ms - Rows affected: 53 - RequestID: oa27qat286 +2025-06-18T15:25:33.381Z [TRACE] user-service - Operation: webhook_sent - Processing time: 790ms - RequestID: 5rhw7vlwk9h +2025-06-18T15:25:33.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 239ms - RequestID: lmosw77ntdj +2025-06-18T15:25:33.581Z [TRACE] user-service - Database SELECT on sessions - Execution time: 463ms - Rows affected: 47 - RequestID: isex5maevp8 +2025-06-18T15:25:33.681Z [INFO] auth-service - Database DELETE on products - Execution time: 6ms - Rows affected: 1 - RequestID: kikveaixj5 +2025-06-18T15:25:33.781Z [DEBUG] inventory-service - Operation: order_created - Processing time: 980ms - RequestID: 3n7m35bqo5y +2025-06-18T15:25:33.881Z [TRACE] auth-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.133.7 - RequestID: 9isbuvgzol7 +2025-06-18T15:25:33.981Z [TRACE] payment-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.28.146 - RequestID: uhwg90q4l6k +2025-06-18T15:25:34.081Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 67ms - RequestID: qtp9rzkh1i +2025-06-18T15:25:34.181Z [INFO] payment-service - Auth event: login_success - User: user_1018 - IP: 192.168.232.72 - RequestID: zj31m4fig1o +2025-06-18T15:25:34.281Z [DEBUG] payment-service - Auth event: login_failed - User: user_1079 - IP: 192.168.181.225 - RequestID: 30jn1tfk34q +2025-06-18T15:25:34.381Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 718ms - RequestID: ske3j90bkd +2025-06-18T15:25:34.481Z [DEBUG] user-service - Auth event: password_change - User: user_1079 - IP: 192.168.31.117 - RequestID: kx806fhox5n +2025-06-18T15:25:34.581Z [TRACE] auth-service - Operation: payment_processed - Processing time: 150ms - RequestID: yxy1lsykuza +2025-06-18T15:25:34.681Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 190ms - Rows affected: 10 - RequestID: 11gxtgce2nuh +2025-06-18T15:25:34.781Z [TRACE] order-service - Operation: cache_hit - Processing time: 614ms - RequestID: 3z36ro75e69 +2025-06-18T15:25:34.881Z [TRACE] user-service - Auth event: logout - User: user_1050 - IP: 192.168.64.33 - RequestID: qvgue8skgyd +2025-06-18T15:25:34.981Z [INFO] order-service - Operation: cache_hit - Processing time: 770ms - RequestID: f583ym5hui7 +2025-06-18T15:25:35.081Z [DEBUG] payment-service - Auth event: login_success - User: user_1050 - IP: 192.168.167.32 - RequestID: ngvtx5ri5oo +2025-06-18T15:25:35.181Z [TRACE] user-service - Database SELECT on products - Execution time: 200ms - Rows affected: 11 - RequestID: 8x297rz9evw +2025-06-18T15:25:35.281Z [INFO] payment-service - Auth event: password_change - User: user_1053 - IP: 192.168.104.37 - RequestID: sk52kpc79oi +2025-06-18T15:25:35.381Z [TRACE] order-service - Auth event: login_success - User: user_1031 - IP: 192.168.170.215 - RequestID: njyk744zue +2025-06-18T15:25:35.481Z [TRACE] auth-service - Database UPDATE on products - Execution time: 494ms - Rows affected: 29 - RequestID: xnmahegcq8 +2025-06-18T15:25:35.581Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 609ms - RequestID: 06s9wbbzdbx +2025-06-18T15:25:35.681Z [TRACE] inventory-service - Database DELETE on audit_logs - Execution time: 229ms - Rows affected: 42 - RequestID: hsr42sl1mo5 +2025-06-18T15:25:35.781Z [TRACE] payment-service - Auth event: login_success - User: user_1058 - IP: 192.168.46.63 - RequestID: 9msv3p6ndwu +2025-06-18T15:25:35.881Z [DEBUG] user-service - POST /api/v1/payments - Status: 404 - Response time: 734ms - IP: 192.168.235.117 - User: user_1021 - RequestID: yfh9ckpvsh +2025-06-18T15:25:35.981Z [TRACE] inventory-service - Operation: order_created - Processing time: 772ms - RequestID: ef9jat9dc5 +2025-06-18T15:25:36.081Z [INFO] payment-service - Operation: webhook_sent - Processing time: 312ms - RequestID: furpcy2zp4s +2025-06-18T15:25:36.181Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 219ms - Rows affected: 78 - RequestID: 9cezw0is2a +2025-06-18T15:25:36.281Z [DEBUG] inventory-service - Auth event: logout - User: user_1045 - IP: 192.168.30.79 - RequestID: z1cr5w84l1 +2025-06-18T15:25:36.381Z [DEBUG] auth-service - Database UPDATE on payments - Execution time: 182ms - Rows affected: 38 - RequestID: zij5qyybahs +2025-06-18T15:25:36.481Z [TRACE] user-service - PATCH /api/v1/orders - Status: 500 - Response time: 1142ms - IP: 192.168.10.184 - User: user_1039 - RequestID: c68pqky6dn8 +2025-06-18T15:25:36.581Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 756ms - RequestID: fx0m7fhoep +2025-06-18T15:25:36.681Z [DEBUG] inventory-service - Operation: order_created - Processing time: 900ms - RequestID: mog1g03dlek +2025-06-18T15:25:36.781Z [DEBUG] inventory-service - Auth event: logout - User: user_1094 - IP: 192.168.138.123 - RequestID: dy9yrxub16b +2025-06-18T15:25:36.881Z [TRACE] payment-service - Auth event: password_change - User: user_1001 - IP: 192.168.196.226 - RequestID: wl52ayrq5fn +2025-06-18T15:25:36.981Z [DEBUG] order-service - Database SELECT on users - Execution time: 478ms - Rows affected: 40 - RequestID: 491vvipuktg +2025-06-18T15:25:37.081Z [INFO] inventory-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.32.38 - RequestID: l2c7at8cj4 +2025-06-18T15:25:37.181Z [INFO] user-service - Auth event: password_change - User: user_1071 - IP: 192.168.32.38 - RequestID: ynlmr5rc53a +2025-06-18T15:25:37.281Z [DEBUG] user-service - Database INSERT on orders - Execution time: 137ms - Rows affected: 50 - RequestID: 1d7ch1t3u4s +2025-06-18T15:25:37.381Z [DEBUG] user-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1969ms - IP: 192.168.64.33 - User: user_1041 - RequestID: ljmacryl3jd +2025-06-18T15:25:37.481Z [TRACE] notification-service - Operation: inventory_updated - Processing time: 375ms - RequestID: 9ug8s58c74m +2025-06-18T15:25:37.581Z [INFO] payment-service - Auth event: login_success - User: user_1081 - IP: 192.168.53.133 - RequestID: agpz3nn6aft +2025-06-18T15:25:37.681Z [INFO] inventory-service - Operation: cache_miss - Processing time: 440ms - RequestID: jpjztyvovi +2025-06-18T15:25:37.781Z [DEBUG] order-service - Operation: email_sent - Processing time: 756ms - RequestID: f26m8o879ow +2025-06-18T15:25:37.881Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 73ms - Rows affected: 32 - RequestID: 9pu1cjeo0b4 +2025-06-18T15:25:37.981Z [DEBUG] user-service - GET /api/v1/auth/login - Status: 502 - Response time: 467ms - IP: 192.168.235.117 - User: user_1091 - RequestID: ociaipo03d +2025-06-18T15:25:38.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.46.63 - RequestID: rjq2nquv71 +2025-06-18T15:25:38.181Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.36.218 - RequestID: v7z1suhtdw +2025-06-18T15:25:38.281Z [INFO] payment-service - Operation: cache_hit - Processing time: 557ms - RequestID: ksf5ka3z7ig +2025-06-18T15:25:38.381Z [TRACE] auth-service - PUT /api/v1/orders - Status: 500 - Response time: 913ms - IP: 192.168.79.141 - User: user_1040 - RequestID: gbysysyi7xd +2025-06-18T15:25:38.481Z [TRACE] user-service - Database SELECT on products - Execution time: 459ms - Rows affected: 90 - RequestID: ku5drrfc55 +2025-06-18T15:25:38.581Z [TRACE] order-service - Database UPDATE on orders - Execution time: 260ms - Rows affected: 20 - RequestID: y3uxpjc4kb +2025-06-18T15:25:38.681Z [INFO] notification-service - GET /api/v1/inventory - Status: 502 - Response time: 41ms - IP: 192.168.138.123 - User: user_1056 - RequestID: 4qno1wh18m +2025-06-18T15:25:38.781Z [INFO] notification-service - Database DELETE on orders - Execution time: 117ms - Rows affected: 76 - RequestID: t7xln5ktd7h +2025-06-18T15:25:38.881Z [INFO] user-service - Operation: cache_hit - Processing time: 364ms - RequestID: gf0wjsn1a1l +2025-06-18T15:25:38.981Z [TRACE] auth-service - Operation: email_sent - Processing time: 156ms - RequestID: jrizrc5t4ui +2025-06-18T15:25:39.081Z [INFO] payment-service - Operation: webhook_sent - Processing time: 400ms - RequestID: s6zssbow57o +2025-06-18T15:25:39.181Z [TRACE] payment-service - Database SELECT on orders - Execution time: 156ms - Rows affected: 4 - RequestID: wnm0wr4v3o +2025-06-18T15:25:39.281Z [INFO] payment-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.113.218 - RequestID: ndqeyuo0uoj +2025-06-18T15:25:39.381Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 365ms - Rows affected: 60 - RequestID: 5txhlb0q1zk +2025-06-18T15:25:39.481Z [DEBUG] auth-service - Auth event: login_failed - User: user_1095 - IP: 192.168.159.94 - RequestID: sqbsuhi0w3 +2025-06-18T15:25:39.581Z [INFO] payment-service - Auth event: token_refresh - User: user_1093 - IP: 192.168.227.77 - RequestID: v7it0on3mde +2025-06-18T15:25:39.681Z [TRACE] order-service - Auth event: login_success - User: user_1009 - IP: 192.168.147.171 - RequestID: nogto2soe4b +2025-06-18T15:25:39.781Z [INFO] payment-service - Database SELECT on sessions - Execution time: 416ms - Rows affected: 19 - RequestID: 9f95wn38p0g +2025-06-18T15:25:39.881Z [TRACE] order-service - Operation: webhook_sent - Processing time: 709ms - RequestID: lrbij2bz9q +2025-06-18T15:25:39.981Z [DEBUG] order-service - Auth event: token_refresh - User: user_1027 - IP: 192.168.158.144 - RequestID: 9crf67564 +2025-06-18T15:25:40.081Z [INFO] order-service - Operation: order_created - Processing time: 798ms - RequestID: 2nq12t6vzix +2025-06-18T15:25:40.181Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 500 - Response time: 497ms - IP: 192.168.159.94 - User: user_1089 - RequestID: rb4i311g38 +2025-06-18T15:25:40.281Z [INFO] inventory-service - Auth event: login_attempt - User: user_1087 - IP: 192.168.194.41 - RequestID: im6kgcru4tj +2025-06-18T15:25:40.381Z [TRACE] payment-service - Operation: email_sent - Processing time: 571ms - RequestID: 09jnouhax50s +2025-06-18T15:25:40.481Z [TRACE] user-service - Operation: webhook_sent - Processing time: 1014ms - RequestID: u6eaop2wj19 +2025-06-18T15:25:40.581Z [INFO] order-service - GET /api/v1/payments - Status: 502 - Response time: 1028ms - IP: 192.168.240.169 - User: user_1036 - RequestID: t1x19hxgr3 +2025-06-18T15:25:40.681Z [TRACE] notification-service - Operation: notification_queued - Processing time: 272ms - RequestID: 3nzbcb7x837 +2025-06-18T15:25:40.781Z [INFO] notification-service - Auth event: logout - User: user_1098 - IP: 192.168.31.117 - RequestID: wfg3jgysfz7 +2025-06-18T15:25:40.881Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 901ms - RequestID: vyv2z4vn6xd +2025-06-18T15:25:40.981Z [INFO] user-service - Operation: cache_hit - Processing time: 226ms - RequestID: owrk6ljxxnl +2025-06-18T15:25:41.081Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.147.171 - RequestID: muqxf3zpc5a +2025-06-18T15:25:41.181Z [DEBUG] order-service - PATCH /api/v1/inventory - Status: 403 - Response time: 1088ms - IP: 192.168.13.72 - User: user_1084 - RequestID: s18zvcgp3pi +2025-06-18T15:25:41.281Z [DEBUG] notification-service - POST /api/v1/orders - Status: 400 - Response time: 1407ms - IP: 192.168.240.169 - User: user_1038 - RequestID: 7vwxjp8vd3f +2025-06-18T15:25:41.381Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1096 - IP: 192.168.81.206 - RequestID: 7m64c6j5vvu +2025-06-18T15:25:41.481Z [INFO] auth-service - POST /api/v1/orders - Status: 401 - Response time: 1354ms - IP: 192.168.85.229 - User: user_1020 - RequestID: 9rkcqvuk6j8 +2025-06-18T15:25:41.581Z [INFO] notification-service - POST /api/v1/auth/logout - Status: 404 - Response time: 1739ms - IP: 192.168.227.77 - User: user_1058 - RequestID: bhv1p6uevi +2025-06-18T15:25:41.681Z [TRACE] order-service - Auth event: login_failed - User: user_1092 - IP: 192.168.167.32 - RequestID: 5miw4pdv5u6 +2025-06-18T15:25:41.781Z [INFO] order-service - POST /api/v1/orders - Status: 404 - Response time: 829ms - IP: 192.168.79.116 - User: user_1047 - RequestID: h6l0e0obj59 +2025-06-18T15:25:41.881Z [INFO] inventory-service - Operation: order_created - Processing time: 1045ms - RequestID: m3lx8vfsh1a +2025-06-18T15:25:41.981Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 396ms - RequestID: cfwfwqus2du +2025-06-18T15:25:42.081Z [TRACE] user-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.232.72 - RequestID: xr0s33plqr +2025-06-18T15:25:42.181Z [INFO] order-service - POST /api/v1/inventory - Status: 400 - Response time: 1942ms - IP: 192.168.10.184 - User: user_1080 - RequestID: g6rvpe99cn +2025-06-18T15:25:42.281Z [INFO] payment-service - Auth event: login_failed - User: user_1078 - IP: 192.168.64.33 - RequestID: r8yi17ot59 +2025-06-18T15:25:42.381Z [INFO] inventory-service - Operation: cache_hit - Processing time: 342ms - RequestID: 5xs3nvwdn2n +2025-06-18T15:25:42.481Z [TRACE] user-service - Auth event: login_failed - User: user_1024 - IP: 192.168.13.72 - RequestID: 0o000gxm97wr +2025-06-18T15:25:42.581Z [INFO] order-service - PATCH /api/v1/orders - Status: 502 - Response time: 148ms - IP: 192.168.64.33 - User: user_1011 - RequestID: gimnybecje8 +2025-06-18T15:25:42.681Z [INFO] order-service - POST /api/v1/auth/logout - Status: 403 - Response time: 100ms - IP: 192.168.158.144 - User: user_1076 - RequestID: f03kvahi7hh +2025-06-18T15:25:42.781Z [TRACE] inventory-service - Operation: email_sent - Processing time: 669ms - RequestID: 6wg08s2qcp +2025-06-18T15:25:42.881Z [DEBUG] notification-service - GET /api/v1/users - Status: 201 - Response time: 1179ms - IP: 192.168.1.152 - User: user_1055 - RequestID: bmkgszu45e +2025-06-18T15:25:42.981Z [TRACE] order-service - GET /api/v1/inventory - Status: 201 - Response time: 1006ms - IP: 192.168.104.37 - User: user_1053 - RequestID: i7hq39ms28f +2025-06-18T15:25:43.081Z [TRACE] order-service - Auth event: login_failed - User: user_1075 - IP: 192.168.1.152 - RequestID: aooryftchdl +2025-06-18T15:25:43.181Z [TRACE] auth-service - Database UPDATE on payments - Execution time: 337ms - Rows affected: 56 - RequestID: 3on6gavaahu +2025-06-18T15:25:43.281Z [INFO] payment-service - Database INSERT on audit_logs - Execution time: 392ms - Rows affected: 87 - RequestID: 5e16ox2nfgr +2025-06-18T15:25:43.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1000 - IP: 192.168.104.37 - RequestID: pdk5xnup6lp +2025-06-18T15:25:43.481Z [DEBUG] auth-service - Operation: email_sent - Processing time: 738ms - RequestID: v7lq4581y2 +2025-06-18T15:25:43.581Z [INFO] inventory-service - Database SELECT on payments - Execution time: 71ms - Rows affected: 33 - RequestID: 17ux9ht4vni +2025-06-18T15:25:43.681Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 246ms - Rows affected: 23 - RequestID: vbjqwk2nl39 +2025-06-18T15:25:43.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.81.206 - RequestID: ry8wvqwfgwc +2025-06-18T15:25:43.881Z [DEBUG] user-service - GET /api/v1/inventory - Status: 502 - Response time: 1610ms - IP: 192.168.30.79 - User: user_1036 - RequestID: jp0g7tenwdq +2025-06-18T15:25:43.981Z [TRACE] notification-service - Auth event: login_failed - User: user_1075 - IP: 192.168.10.184 - RequestID: y79tdh3yyo +2025-06-18T15:25:44.081Z [INFO] notification-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 371ms - IP: 192.168.170.215 - User: user_1063 - RequestID: o7rokmesyhc +2025-06-18T15:25:44.181Z [TRACE] notification-service - Operation: cache_miss - Processing time: 693ms - RequestID: wot5ro8jsre +2025-06-18T15:25:44.281Z [TRACE] order-service - Auth event: login_failed - User: user_1093 - IP: 192.168.138.123 - RequestID: zpn3koimy27 +2025-06-18T15:25:44.381Z [INFO] order-service - Auth event: logout - User: user_1073 - IP: 192.168.147.171 - RequestID: cp7faz18wcv +2025-06-18T15:25:44.481Z [INFO] inventory-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1202ms - IP: 192.168.53.133 - User: user_1022 - RequestID: 94zdumzox1 +2025-06-18T15:25:44.581Z [TRACE] payment-service - GET /api/v1/inventory - Status: 400 - Response time: 406ms - IP: 192.168.14.77 - User: user_1091 - RequestID: j345o8ktsp +2025-06-18T15:25:44.681Z [INFO] payment-service - PUT /api/v1/users - Status: 201 - Response time: 1799ms - IP: 192.168.79.143 - User: user_1002 - RequestID: ir8nsy92c4 +2025-06-18T15:25:44.781Z [INFO] user-service - Auth event: login_success - User: user_1028 - IP: 192.168.158.144 - RequestID: f2hm1ah1j6d +2025-06-18T15:25:44.881Z [TRACE] user-service - Database UPDATE on orders - Execution time: 178ms - Rows affected: 86 - RequestID: gplvjo07sk4 +2025-06-18T15:25:44.981Z [TRACE] inventory-service - Database DELETE on sessions - Execution time: 313ms - Rows affected: 35 - RequestID: mlf4xwn7ze +2025-06-18T15:25:45.081Z [INFO] auth-service - Database DELETE on sessions - Execution time: 204ms - Rows affected: 55 - RequestID: w8x64lrggy +2025-06-18T15:25:45.181Z [INFO] auth-service - Operation: notification_queued - Processing time: 991ms - RequestID: e64lpk5o9j5 +2025-06-18T15:25:45.281Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 257ms - IP: 192.168.32.38 - User: user_1084 - RequestID: n7dl4sxymke +2025-06-18T15:25:45.381Z [INFO] order-service - Auth event: token_refresh - User: user_1011 - IP: 192.168.104.37 - RequestID: jtodtsmtx6 +2025-06-18T15:25:45.481Z [TRACE] notification-service - Auth event: logout - User: user_1026 - IP: 192.168.97.87 - RequestID: y0sqooba8gh +2025-06-18T15:25:45.581Z [INFO] notification-service - Auth event: password_change - User: user_1087 - IP: 192.168.85.229 - RequestID: yqp4ljtwaej +2025-06-18T15:25:45.681Z [TRACE] user-service - Database UPDATE on orders - Execution time: 447ms - Rows affected: 59 - RequestID: p8ovh1gn1rc +2025-06-18T15:25:45.781Z [INFO] inventory-service - Auth event: token_refresh - User: user_1003 - IP: 192.168.235.117 - RequestID: zsmgp19fta +2025-06-18T15:25:45.881Z [INFO] inventory-service - Auth event: token_refresh - User: user_1020 - IP: 192.168.174.114 - RequestID: 86fevtq2944 +2025-06-18T15:25:45.981Z [TRACE] user-service - Database DELETE on sessions - Execution time: 95ms - Rows affected: 38 - RequestID: qrnrnk64woa +2025-06-18T15:25:46.081Z [INFO] auth-service - GET /api/v1/users - Status: 201 - Response time: 1488ms - IP: 192.168.187.199 - User: user_1099 - RequestID: qiqq9yz6co8 +2025-06-18T15:25:46.181Z [DEBUG] inventory-service - Database SELECT on products - Execution time: 94ms - Rows affected: 21 - RequestID: 2wsm4ry0o3t +2025-06-18T15:25:46.281Z [INFO] payment-service - Database UPDATE on orders - Execution time: 89ms - Rows affected: 59 - RequestID: b26zw7mit4 +2025-06-18T15:25:46.381Z [TRACE] inventory-service - Database INSERT on payments - Execution time: 120ms - Rows affected: 19 - RequestID: 7ulucda4tph +2025-06-18T15:25:46.481Z [INFO] notification-service - Auth event: logout - User: user_1053 - IP: 192.168.229.123 - RequestID: 4thed8o40yg +2025-06-18T15:25:46.581Z [INFO] payment-service - Database SELECT on sessions - Execution time: 431ms - Rows affected: 85 - RequestID: sl9c3eu5l0o +2025-06-18T15:25:46.681Z [INFO] auth-service - Operation: order_created - Processing time: 492ms - RequestID: jo33cio6yu +2025-06-18T15:25:46.781Z [TRACE] notification-service - Database INSERT on products - Execution time: 115ms - Rows affected: 51 - RequestID: n9e6y1upr9 +2025-06-18T15:25:46.881Z [INFO] order-service - PUT /api/v1/orders - Status: 403 - Response time: 345ms - IP: 192.168.147.171 - User: user_1087 - RequestID: gkpdsjhdi0g +2025-06-18T15:25:46.981Z [TRACE] user-service - PUT /api/v1/auth/login - Status: 401 - Response time: 104ms - IP: 192.168.1.152 - User: user_1011 - RequestID: ytve25t4nm +2025-06-18T15:25:47.081Z [DEBUG] payment-service - Database DELETE on users - Execution time: 161ms - Rows affected: 90 - RequestID: qhlp1u7n5s +2025-06-18T15:25:47.181Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 502 - Response time: 778ms - IP: 192.168.100.240 - User: user_1074 - RequestID: swo2zn2h9bm +2025-06-18T15:25:47.281Z [TRACE] auth-service - Operation: cache_miss - Processing time: 359ms - RequestID: 8x3dbaydkao +2025-06-18T15:25:47.381Z [DEBUG] auth-service - Operation: email_sent - Processing time: 614ms - RequestID: dxjg3bpl7j7 +2025-06-18T15:25:47.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1036 - IP: 192.168.147.171 - RequestID: 1zccehv6n1x +2025-06-18T15:25:47.581Z [TRACE] order-service - Operation: webhook_sent - Processing time: 135ms - RequestID: t0yud8rwkn +2025-06-18T15:25:47.681Z [TRACE] auth-service - Database DELETE on sessions - Execution time: 183ms - Rows affected: 27 - RequestID: vapok64yqxo +2025-06-18T15:25:47.781Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 44ms - Rows affected: 76 - RequestID: 4lcjc4v9p0g +2025-06-18T15:25:47.881Z [INFO] auth-service - Operation: email_sent - Processing time: 980ms - RequestID: jp7fdlvd5jh +2025-06-18T15:25:47.981Z [INFO] user-service - Operation: cache_miss - Processing time: 597ms - RequestID: o8hhi7wli4 +2025-06-18T15:25:48.081Z [TRACE] auth-service - Auth event: login_failed - User: user_1006 - IP: 192.168.242.165 - RequestID: v2irsafwfkd +2025-06-18T15:25:48.181Z [TRACE] order-service - DELETE /api/v1/payments - Status: 500 - Response time: 220ms - IP: 192.168.68.158 - User: user_1032 - RequestID: 1kenjieogb3 +2025-06-18T15:25:48.281Z [DEBUG] order-service - Database SELECT on users - Execution time: 81ms - Rows affected: 21 - RequestID: h60vj4tybrj +2025-06-18T15:25:48.381Z [TRACE] order-service - POST /api/v1/auth/login - Status: 503 - Response time: 1229ms - IP: 192.168.1.152 - User: user_1093 - RequestID: yn0y5xgewxp +2025-06-18T15:25:48.481Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 95ms - RequestID: 5hgswgmishv +2025-06-18T15:25:48.581Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 502 - Response time: 189ms - IP: 192.168.32.38 - User: user_1054 - RequestID: i5mrt3u13rs +2025-06-18T15:25:48.681Z [INFO] payment-service - Operation: cache_hit - Processing time: 292ms - RequestID: d1qoqeuhwks +2025-06-18T15:25:48.781Z [TRACE] notification-service - Operation: email_sent - Processing time: 799ms - RequestID: rrotup2lou +2025-06-18T15:25:48.881Z [INFO] auth-service - Operation: email_sent - Processing time: 831ms - RequestID: ku9rm0oormj +2025-06-18T15:25:48.981Z [TRACE] user-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.247.134 - RequestID: wv8nnglu4c +2025-06-18T15:25:49.081Z [INFO] payment-service - Auth event: login_attempt - User: user_1044 - IP: 192.168.64.33 - RequestID: gtad6g24er +2025-06-18T15:25:49.181Z [INFO] order-service - Operation: payment_processed - Processing time: 282ms - RequestID: qf1wzfn53w +2025-06-18T15:25:49.281Z [DEBUG] notification-service - Database INSERT on users - Execution time: 441ms - Rows affected: 95 - RequestID: hbsz1mz7db7 +2025-06-18T15:25:49.381Z [TRACE] order-service - Operation: inventory_updated - Processing time: 538ms - RequestID: tyfib3gl2n +2025-06-18T15:25:49.481Z [INFO] inventory-service - Auth event: login_failed - User: user_1073 - IP: 192.168.158.144 - RequestID: ksxfrh2mcta +2025-06-18T15:25:49.581Z [INFO] payment-service - Operation: order_created - Processing time: 115ms - RequestID: go4agititwh +2025-06-18T15:25:49.681Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 461ms - Rows affected: 99 - RequestID: ycs21joance +2025-06-18T15:25:49.781Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 241ms - RequestID: bcqw3ghf5j7 +2025-06-18T15:25:49.881Z [DEBUG] notification-service - Auth event: password_change - User: user_1062 - IP: 192.168.174.114 - RequestID: h55a9wnz3q +2025-06-18T15:25:49.981Z [DEBUG] order-service - POST /api/v1/orders - Status: 500 - Response time: 339ms - IP: 192.168.46.63 - User: user_1006 - RequestID: ex7hy6kbc86 +2025-06-18T15:25:50.081Z [INFO] notification-service - Auth event: login_failed - User: user_1049 - IP: 192.168.211.72 - RequestID: cpb06ucdd2o +2025-06-18T15:25:50.181Z [TRACE] auth-service - Database UPDATE on users - Execution time: 157ms - Rows affected: 28 - RequestID: cydhu80h8ot +2025-06-18T15:25:50.281Z [TRACE] payment-service - Database DELETE on products - Execution time: 108ms - Rows affected: 75 - RequestID: erneinbdwrc +2025-06-18T15:25:50.381Z [TRACE] order-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1777ms - IP: 192.168.1.152 - User: user_1065 - RequestID: gvaucx31vxj +2025-06-18T15:25:50.481Z [INFO] payment-service - Database SELECT on payments - Execution time: 208ms - Rows affected: 8 - RequestID: w7ba3oi1aag +2025-06-18T15:25:50.581Z [TRACE] notification-service - Auth event: logout - User: user_1099 - IP: 192.168.211.72 - RequestID: rtfzt0jg1yf +2025-06-18T15:25:50.681Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 371ms - IP: 192.168.1.152 - User: user_1067 - RequestID: 6yuhhx8lqy7 +2025-06-18T15:25:50.781Z [TRACE] notification-service - Database SELECT on payments - Execution time: 149ms - Rows affected: 41 - RequestID: ux9go0uenf +2025-06-18T15:25:50.881Z [DEBUG] order-service - Database SELECT on users - Execution time: 164ms - Rows affected: 6 - RequestID: 25jp5rkr9a8 +2025-06-18T15:25:50.981Z [INFO] order-service - Database UPDATE on orders - Execution time: 81ms - Rows affected: 99 - RequestID: j14ncacy6gk +2025-06-18T15:25:51.081Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 396ms - Rows affected: 62 - RequestID: zylvdce4yl +2025-06-18T15:25:51.181Z [DEBUG] auth-service - Database SELECT on products - Execution time: 233ms - Rows affected: 24 - RequestID: b329cf5gnfr +2025-06-18T15:25:51.281Z [DEBUG] notification-service - Auth event: password_change - User: user_1084 - IP: 192.168.211.72 - RequestID: lsmexygc2vr +2025-06-18T15:25:51.381Z [INFO] payment-service - Auth event: token_refresh - User: user_1081 - IP: 192.168.14.77 - RequestID: 0tl7ieb3g8vk +2025-06-18T15:25:51.481Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 205ms - Rows affected: 50 - RequestID: xk321sk7m4q +2025-06-18T15:25:51.581Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 704ms - RequestID: 6va48iujipl +2025-06-18T15:25:51.681Z [INFO] notification-service - PUT /api/v1/payments - Status: 404 - Response time: 881ms - IP: 192.168.187.199 - User: user_1007 - RequestID: 1n5x1emalun +2025-06-18T15:25:51.781Z [DEBUG] notification-service - Operation: order_created - Processing time: 749ms - RequestID: s2kfmjbhbtp +2025-06-18T15:25:51.881Z [DEBUG] payment-service - Auth event: password_change - User: user_1091 - IP: 192.168.144.38 - RequestID: 1wkanef8kkh +2025-06-18T15:25:51.981Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 422ms - Rows affected: 66 - RequestID: ggg7tfxbnwb +2025-06-18T15:25:52.081Z [INFO] notification-service - Database SELECT on products - Execution time: 27ms - Rows affected: 20 - RequestID: 9o7vkxxcumr +2025-06-18T15:25:52.181Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.79.143 - RequestID: y4ab08cdvgm +2025-06-18T15:25:52.281Z [TRACE] notification-service - Database SELECT on payments - Execution time: 62ms - Rows affected: 88 - RequestID: mf2u1mzo45s +2025-06-18T15:25:52.381Z [DEBUG] user-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.11.60 - RequestID: zzfi19k0e6 +2025-06-18T15:25:52.481Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 824ms - RequestID: wa85ujnxik +2025-06-18T15:25:52.581Z [INFO] order-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.44.5 - RequestID: ssl7o4q7gr +2025-06-18T15:25:52.681Z [INFO] order-service - PATCH /api/v1/orders - Status: 201 - Response time: 705ms - IP: 192.168.68.158 - User: user_1030 - RequestID: 77fwcvj58d9 +2025-06-18T15:25:52.781Z [DEBUG] order-service - Database SELECT on products - Execution time: 230ms - Rows affected: 16 - RequestID: sfiij6vk8g +2025-06-18T15:25:52.881Z [INFO] auth-service - Auth event: login_failed - User: user_1042 - IP: 192.168.68.128 - RequestID: lnahgmh2j8o +2025-06-18T15:25:52.981Z [INFO] notification-service - Operation: payment_processed - Processing time: 794ms - RequestID: e05n1wr63k9 +2025-06-18T15:25:53.081Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1409ms - IP: 192.168.104.37 - User: user_1070 - RequestID: ixj0xd9vvfp +2025-06-18T15:25:53.181Z [DEBUG] auth-service - DELETE /api/v1/users - Status: 503 - Response time: 1319ms - IP: 192.168.187.199 - User: user_1045 - RequestID: rhupzl45r6l +2025-06-18T15:25:53.281Z [DEBUG] payment-service - POST /api/v1/payments - Status: 200 - Response time: 460ms - IP: 192.168.68.158 - User: user_1024 - RequestID: kvcdl6ef0bl +2025-06-18T15:25:53.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1084 - IP: 192.168.240.169 - RequestID: o40mdirfb5d +2025-06-18T15:25:53.481Z [INFO] order-service - Database SELECT on orders - Execution time: 256ms - Rows affected: 12 - RequestID: owjwy11irhj +2025-06-18T15:25:53.581Z [INFO] payment-service - Auth event: login_failed - User: user_1049 - IP: 192.168.174.114 - RequestID: nambzvvf8kp +2025-06-18T15:25:53.681Z [TRACE] auth-service - DELETE /api/v1/auth/login - Status: 201 - Response time: 1698ms - IP: 192.168.138.123 - User: user_1012 - RequestID: gkmt0yiupd9 +2025-06-18T15:25:53.781Z [INFO] payment-service - POST /api/v1/auth/login - Status: 404 - Response time: 1505ms - IP: 192.168.31.117 - User: user_1093 - RequestID: wgyaac56n4g +2025-06-18T15:25:53.881Z [TRACE] notification-service - Auth event: token_refresh - User: user_1038 - IP: 192.168.113.218 - RequestID: 047nl3dgul2j +2025-06-18T15:25:53.981Z [INFO] user-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.31.117 - RequestID: eo52mlnkbdb +2025-06-18T15:25:54.081Z [TRACE] user-service - Database DELETE on payments - Execution time: 360ms - Rows affected: 70 - RequestID: 6fekt9gaf7r +2025-06-18T15:25:54.181Z [DEBUG] auth-service - Operation: order_created - Processing time: 730ms - RequestID: 6ggx4b4d4v3 +2025-06-18T15:25:54.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1025 - IP: 192.168.158.144 - RequestID: ypnd1ku6por +2025-06-18T15:25:54.381Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 201 - Response time: 1481ms - IP: 192.168.147.171 - User: user_1084 - RequestID: cwg5j00j8ao +2025-06-18T15:25:54.481Z [DEBUG] order-service - Operation: payment_processed - Processing time: 870ms - RequestID: zvrqyvnbj +2025-06-18T15:25:54.581Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 77ms - RequestID: nkjmo3fc4t +2025-06-18T15:25:54.681Z [TRACE] payment-service - Auth event: password_change - User: user_1056 - IP: 192.168.229.123 - RequestID: z6vrwca23y +2025-06-18T15:25:54.781Z [INFO] payment-service - PATCH /api/v1/orders - Status: 403 - Response time: 1301ms - IP: 192.168.28.146 - User: user_1047 - RequestID: nckqoeavjwo +2025-06-18T15:25:54.881Z [INFO] payment-service - Auth event: login_success - User: user_1065 - IP: 192.168.46.63 - RequestID: 7kxcfax9uc7 +2025-06-18T15:25:54.981Z [DEBUG] notification-service - Database DELETE on products - Execution time: 339ms - Rows affected: 48 - RequestID: it88aalxn9l +2025-06-18T15:25:55.081Z [INFO] auth-service - Database DELETE on sessions - Execution time: 422ms - Rows affected: 56 - RequestID: p6ej1yw3dkf +2025-06-18T15:25:55.181Z [TRACE] payment-service - Database UPDATE on orders - Execution time: 258ms - Rows affected: 92 - RequestID: tu7km1cj55 +2025-06-18T15:25:55.281Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 503 - Response time: 23ms - IP: 192.168.159.94 - User: user_1053 - RequestID: rjuyubjhlqg +2025-06-18T15:25:55.381Z [TRACE] order-service - Operation: cache_hit - Processing time: 303ms - RequestID: cmi08kdz9ye +2025-06-18T15:25:55.481Z [DEBUG] user-service - Auth event: password_change - User: user_1060 - IP: 192.168.28.146 - RequestID: vf3v1y7uodk +2025-06-18T15:25:55.581Z [TRACE] payment-service - Database DELETE on products - Execution time: 381ms - Rows affected: 50 - RequestID: 5inm2x0vu4e +2025-06-18T15:25:55.681Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 17ms - Rows affected: 11 - RequestID: s2ax5fxqxj +2025-06-18T15:25:55.781Z [INFO] payment-service - Database UPDATE on users - Execution time: 25ms - Rows affected: 87 - RequestID: 558tniyl8v8 +2025-06-18T15:25:55.881Z [INFO] notification-service - Auth event: logout - User: user_1024 - IP: 192.168.159.94 - RequestID: 18malc9oz7 +2025-06-18T15:25:55.981Z [DEBUG] user-service - Operation: notification_queued - Processing time: 498ms - RequestID: 4zkjp24tp6l +2025-06-18T15:25:56.081Z [INFO] inventory-service - Auth event: login_success - User: user_1092 - IP: 192.168.100.240 - RequestID: 0w9why3qe88j +2025-06-18T15:25:56.181Z [TRACE] auth-service - Auth event: logout - User: user_1012 - IP: 192.168.104.37 - RequestID: 8p34057j0ij +2025-06-18T15:25:56.281Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 182ms - Rows affected: 9 - RequestID: lrsqmvawul +2025-06-18T15:25:56.381Z [TRACE] order-service - Auth event: login_failed - User: user_1086 - IP: 192.168.1.152 - RequestID: a0tb3xadnjh +2025-06-18T15:25:56.481Z [DEBUG] inventory-service - Auth event: login_success - User: user_1094 - IP: 192.168.141.100 - RequestID: dqxklpqegzc +2025-06-18T15:25:56.581Z [INFO] user-service - GET /api/v1/auth/logout - Status: 502 - Response time: 1422ms - IP: 192.168.79.116 - User: user_1085 - RequestID: 0evvmh5pl4h7 +2025-06-18T15:25:56.681Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 681ms - RequestID: ubwxc4l1s2 +2025-06-18T15:25:56.781Z [DEBUG] user-service - Database UPDATE on users - Execution time: 218ms - Rows affected: 32 - RequestID: eqctvt862pk +2025-06-18T15:25:56.881Z [DEBUG] auth-service - Auth event: logout - User: user_1067 - IP: 192.168.97.87 - RequestID: 78n92ao7qbu +2025-06-18T15:25:56.981Z [TRACE] auth-service - Database UPDATE on audit_logs - Execution time: 416ms - Rows affected: 55 - RequestID: x2jfx4d1gip +2025-06-18T15:25:57.081Z [INFO] payment-service - Auth event: login_success - User: user_1044 - IP: 192.168.31.117 - RequestID: r0b8kvenntc +2025-06-18T15:25:57.181Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 401 - Response time: 1837ms - IP: 192.168.79.141 - User: user_1070 - RequestID: ssqjfk4gtri +2025-06-18T15:25:57.281Z [TRACE] auth-service - Auth event: login_success - User: user_1069 - IP: 192.168.187.199 - RequestID: dkbwibi2vg +2025-06-18T15:25:57.381Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 340ms - RequestID: fsdt5enqdd +2025-06-18T15:25:57.481Z [INFO] notification-service - Operation: inventory_updated - Processing time: 757ms - RequestID: n8x70gogdf8 +2025-06-18T15:25:57.581Z [TRACE] order-service - Database UPDATE on products - Execution time: 355ms - Rows affected: 9 - RequestID: moqi8rcpy6 +2025-06-18T15:25:57.681Z [DEBUG] payment-service - GET /api/v1/users - Status: 403 - Response time: 1418ms - IP: 192.168.247.134 - User: user_1084 - RequestID: 46d77tylt5v +2025-06-18T15:25:57.781Z [INFO] auth-service - Database DELETE on users - Execution time: 191ms - Rows affected: 0 - RequestID: mb1ucwamyfg +2025-06-18T15:25:57.881Z [DEBUG] inventory-service - DELETE /api/v1/payments - Status: 403 - Response time: 633ms - IP: 192.168.211.72 - User: user_1066 - RequestID: y99lvxv6bw +2025-06-18T15:25:57.981Z [INFO] inventory-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.235.117 - RequestID: 8roi6x3j22g +2025-06-18T15:25:58.081Z [INFO] order-service - Database DELETE on products - Execution time: 365ms - Rows affected: 3 - RequestID: p1pdgb1fff +2025-06-18T15:25:58.181Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 415ms - RequestID: csyoerwu8nb +2025-06-18T15:25:58.281Z [INFO] payment-service - Auth event: logout - User: user_1008 - IP: 192.168.189.103 - RequestID: 1aqczbobmei +2025-06-18T15:25:58.381Z [TRACE] notification-service - Operation: cache_hit - Processing time: 180ms - RequestID: jvo7fx9p4ad +2025-06-18T15:25:58.481Z [INFO] notification-service - Operation: cache_hit - Processing time: 176ms - RequestID: y5umptsd0k +2025-06-18T15:25:58.581Z [DEBUG] auth-service - Database INSERT on products - Execution time: 274ms - Rows affected: 36 - RequestID: u9td2txzwv7 +2025-06-18T15:25:58.681Z [INFO] order-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.247.134 - RequestID: 5l1r7ij19ji +2025-06-18T15:25:58.781Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 423ms - RequestID: dms2jgf2vf9 +2025-06-18T15:25:58.881Z [DEBUG] order-service - Auth event: password_change - User: user_1091 - IP: 192.168.159.94 - RequestID: wmmey6gj0f +2025-06-18T15:25:58.981Z [DEBUG] notification-service - Database UPDATE on audit_logs - Execution time: 392ms - Rows affected: 32 - RequestID: p9pw07j0sq +2025-06-18T15:25:59.081Z [INFO] inventory-service - Auth event: login_attempt - User: user_1025 - IP: 192.168.68.158 - RequestID: qle0wz9jrr9 +2025-06-18T15:25:59.181Z [TRACE] user-service - Database INSERT on users - Execution time: 187ms - Rows affected: 21 - RequestID: rea5jcsj5wh +2025-06-18T15:25:59.281Z [DEBUG] notification-service - Operation: order_created - Processing time: 660ms - RequestID: wb0a2dopsha +2025-06-18T15:25:59.381Z [DEBUG] auth-service - Auth event: login_success - User: user_1046 - IP: 192.168.100.240 - RequestID: fruyu5o07oa +2025-06-18T15:25:59.481Z [DEBUG] order-service - Operation: email_sent - Processing time: 62ms - RequestID: uph3o7hwz6h +2025-06-18T15:25:59.581Z [INFO] auth-service - Operation: email_sent - Processing time: 794ms - RequestID: gfd93yk1bzl +2025-06-18T15:25:59.681Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 403 - Response time: 1119ms - IP: 192.168.46.63 - User: user_1046 - RequestID: mjdarga1ejm +2025-06-18T15:25:59.781Z [INFO] inventory-service - Operation: order_created - Processing time: 721ms - RequestID: st5ynn6mkun +2025-06-18T15:25:59.881Z [INFO] order-service - Database SELECT on products - Execution time: 52ms - Rows affected: 51 - RequestID: 123aecgguayn +2025-06-18T15:25:59.981Z [INFO] user-service - Operation: cache_miss - Processing time: 485ms - RequestID: 743jl8rttih +2025-06-18T15:26:00.081Z [DEBUG] auth-service - Operation: order_created - Processing time: 701ms - RequestID: 30jmjjisf7c +2025-06-18T15:26:00.181Z [INFO] payment-service - Operation: cache_miss - Processing time: 194ms - RequestID: 4dm4gr7lja7 +2025-06-18T15:26:00.281Z [TRACE] auth-service - POST /api/v1/inventory - Status: 403 - Response time: 1110ms - IP: 192.168.227.77 - User: user_1095 - RequestID: e0xae195x2l +2025-06-18T15:26:00.381Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.11.60 - RequestID: ha9ndf8mqca +2025-06-18T15:26:00.481Z [DEBUG] notification-service - PATCH /api/v1/orders - Status: 200 - Response time: 57ms - IP: 192.168.79.141 - User: user_1020 - RequestID: eli5d9c49v +2025-06-18T15:26:00.581Z [TRACE] payment-service - GET /api/v1/users - Status: 200 - Response time: 1223ms - IP: 192.168.10.184 - User: user_1090 - RequestID: mjqzkixtf8g +2025-06-18T15:26:00.681Z [INFO] auth-service - Auth event: password_change - User: user_1006 - IP: 192.168.170.215 - RequestID: ogjl8pqsj2 +2025-06-18T15:26:00.781Z [TRACE] inventory-service - GET /api/v1/auth/login - Status: 500 - Response time: 1695ms - IP: 192.168.167.32 - User: user_1057 - RequestID: wmzpnwqx9t8 +2025-06-18T15:26:00.881Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 114ms - Rows affected: 39 - RequestID: 2z9c8zxxf02 +2025-06-18T15:26:00.981Z [TRACE] user-service - PATCH /api/v1/inventory - Status: 503 - Response time: 25ms - IP: 192.168.32.38 - User: user_1083 - RequestID: s96l3tgpm3 +2025-06-18T15:26:01.081Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.196.226 - RequestID: 3bxxr670e82 +2025-06-18T15:26:01.181Z [TRACE] user-service - Auth event: login_failed - User: user_1054 - IP: 192.168.187.199 - RequestID: jouwykcb8n +2025-06-18T15:26:01.281Z [TRACE] payment-service - PUT /api/v1/payments - Status: 200 - Response time: 1226ms - IP: 192.168.11.60 - User: user_1025 - RequestID: 2y18jzll4vn +2025-06-18T15:26:01.381Z [DEBUG] user-service - Database DELETE on users - Execution time: 158ms - Rows affected: 20 - RequestID: lbzkebo7dq +2025-06-18T15:26:01.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.32.38 - RequestID: 7645x7d1k1s +2025-06-18T15:26:01.581Z [INFO] payment-service - Operation: webhook_sent - Processing time: 79ms - RequestID: y1sup5cfjdp +2025-06-18T15:26:01.681Z [INFO] inventory-service - Database UPDATE on users - Execution time: 458ms - Rows affected: 32 - RequestID: qecpscfdpk8 +2025-06-18T15:26:01.781Z [DEBUG] notification-service - Auth event: login_success - User: user_1012 - IP: 192.168.196.226 - RequestID: rw39up8z93 +2025-06-18T15:26:01.881Z [TRACE] order-service - Database UPDATE on products - Execution time: 39ms - Rows affected: 15 - RequestID: qbtx02c +2025-06-18T15:26:01.981Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 141ms - Rows affected: 6 - RequestID: 7m235qny0u4 +2025-06-18T15:26:02.081Z [INFO] payment-service - PUT /api/v1/users - Status: 502 - Response time: 620ms - IP: 192.168.211.72 - User: user_1001 - RequestID: aonkac2g9w +2025-06-18T15:26:02.181Z [TRACE] user-service - Operation: email_sent - Processing time: 1029ms - RequestID: 3jtmtw9klyn +2025-06-18T15:26:02.281Z [TRACE] payment-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 323ms - IP: 192.168.144.38 - User: user_1091 - RequestID: jpr0aa1yfq +2025-06-18T15:26:02.381Z [TRACE] auth-service - GET /api/v1/auth/logout - Status: 502 - Response time: 278ms - IP: 192.168.30.79 - User: user_1090 - RequestID: 0jmz9utnxmc +2025-06-18T15:26:02.481Z [TRACE] user-service - Database UPDATE on payments - Execution time: 232ms - Rows affected: 81 - RequestID: 0wcpnjo0ispr +2025-06-18T15:26:02.581Z [INFO] inventory-service - PUT /api/v1/auth/login - Status: 503 - Response time: 147ms - IP: 192.168.247.134 - User: user_1020 - RequestID: 7fc9d83kf34 +2025-06-18T15:26:02.681Z [DEBUG] inventory-service - GET /api/v1/orders - Status: 400 - Response time: 579ms - IP: 192.168.181.225 - User: user_1011 - RequestID: 6xnai3pduew +2025-06-18T15:26:02.781Z [INFO] user-service - Database UPDATE on orders - Execution time: 214ms - Rows affected: 2 - RequestID: 76q0l8ynxux +2025-06-18T15:26:02.881Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1270ms - IP: 192.168.85.229 - User: user_1030 - RequestID: y6kp5u1dvua +2025-06-18T15:26:02.981Z [INFO] auth-service - Auth event: logout - User: user_1078 - IP: 192.168.85.229 - RequestID: vkhmepa4ikd +2025-06-18T15:26:03.081Z [DEBUG] auth-service - Database SELECT on products - Execution time: 459ms - Rows affected: 39 - RequestID: 9bmtrm81drv +2025-06-18T15:26:03.181Z [INFO] user-service - Auth event: login_success - User: user_1044 - IP: 192.168.232.72 - RequestID: w9a6lrtfja +2025-06-18T15:26:03.281Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 350ms - RequestID: qgzxtf8gx +2025-06-18T15:26:03.381Z [DEBUG] auth-service - Database INSERT on products - Execution time: 330ms - Rows affected: 54 - RequestID: 10cshnhe0hd +2025-06-18T15:26:03.481Z [INFO] user-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.33.76 - RequestID: 4jyujmgwoho +2025-06-18T15:26:03.581Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 472ms - RequestID: imw70o7b6x +2025-06-18T15:26:03.681Z [DEBUG] payment-service - Auth event: login_success - User: user_1071 - IP: 192.168.170.215 - RequestID: 1kuu67utjj6 +2025-06-18T15:26:03.781Z [TRACE] order-service - POST /api/v1/payments - Status: 401 - Response time: 1762ms - IP: 192.168.31.117 - User: user_1029 - RequestID: uea0gmpwc5 +2025-06-18T15:26:03.881Z [INFO] auth-service - Auth event: login_success - User: user_1098 - IP: 192.168.227.77 - RequestID: mwo6d4shvd +2025-06-18T15:26:03.981Z [TRACE] order-service - Database SELECT on products - Execution time: 379ms - Rows affected: 55 - RequestID: 83rz4ivt1x9 +2025-06-18T15:26:04.081Z [INFO] order-service - Operation: cache_hit - Processing time: 952ms - RequestID: 1snn8odgz2s +2025-06-18T15:26:04.181Z [DEBUG] notification-service - Database UPDATE on sessions - Execution time: 336ms - Rows affected: 33 - RequestID: 030curlog9kc +2025-06-18T15:26:04.281Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 649ms - RequestID: hh8x4itasrk +2025-06-18T15:26:04.381Z [INFO] payment-service - Operation: order_created - Processing time: 445ms - RequestID: tfe4g7gron +2025-06-18T15:26:04.481Z [INFO] order-service - Operation: webhook_sent - Processing time: 513ms - RequestID: 9y8ws9ipqxi +2025-06-18T15:26:04.581Z [TRACE] inventory-service - Auth event: login_success - User: user_1036 - IP: 192.168.1.152 - RequestID: bfvwoonmch +2025-06-18T15:26:04.681Z [DEBUG] inventory-service - Database INSERT on payments - Execution time: 420ms - Rows affected: 12 - RequestID: 49qhv6a4jwb +2025-06-18T15:26:04.781Z [INFO] notification-service - Operation: email_sent - Processing time: 855ms - RequestID: cceahr5q1xo +2025-06-18T15:26:04.881Z [DEBUG] inventory-service - Operation: order_created - Processing time: 836ms - RequestID: ey8dz7bxxi5 +2025-06-18T15:26:04.981Z [INFO] auth-service - Operation: webhook_sent - Processing time: 623ms - RequestID: 1jpi9kofgke +2025-06-18T15:26:05.081Z [DEBUG] notification-service - GET /api/v1/users - Status: 502 - Response time: 1133ms - IP: 192.168.79.141 - User: user_1041 - RequestID: cr3v1tzctae +2025-06-18T15:26:05.181Z [TRACE] auth-service - Auth event: login_attempt - User: user_1090 - IP: 192.168.44.5 - RequestID: pavvxg1fkzr +2025-06-18T15:26:05.281Z [DEBUG] order-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.97.87 - RequestID: p213upnlv6 +2025-06-18T15:26:05.381Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1152ms - IP: 192.168.10.184 - User: user_1037 - RequestID: 1fchvhnxay +2025-06-18T15:26:05.481Z [INFO] payment-service - Operation: cache_hit - Processing time: 794ms - RequestID: 1ritc80v3ct +2025-06-18T15:26:05.581Z [TRACE] notification-service - Operation: cache_miss - Processing time: 597ms - RequestID: gduk22rfyn7 +2025-06-18T15:26:05.681Z [DEBUG] order-service - Auth event: login_attempt - User: user_1004 - IP: 192.168.158.144 - RequestID: cmyok9q3apd +2025-06-18T15:26:05.781Z [INFO] order-service - Database DELETE on sessions - Execution time: 94ms - Rows affected: 57 - RequestID: jm96rf547di +2025-06-18T15:26:05.881Z [INFO] user-service - Database DELETE on orders - Execution time: 421ms - Rows affected: 55 - RequestID: plezfivjff +2025-06-18T15:26:05.981Z [TRACE] auth-service - Operation: cache_hit - Processing time: 279ms - RequestID: r8jnc6bypai +2025-06-18T15:26:06.081Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 268ms - RequestID: gokovatptz5 +2025-06-18T15:26:06.181Z [DEBUG] order-service - Auth event: login_success - User: user_1081 - IP: 192.168.235.117 - RequestID: igohpgvpgt +2025-06-18T15:26:06.281Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 1286ms - IP: 192.168.44.5 - User: user_1077 - RequestID: wxkd92nz52i +2025-06-18T15:26:06.381Z [DEBUG] payment-service - PUT /api/v1/auth/logout - Status: 503 - Response time: 1840ms - IP: 192.168.194.41 - User: user_1025 - RequestID: 3tvwx646sly +2025-06-18T15:26:06.481Z [TRACE] notification-service - Operation: order_created - Processing time: 802ms - RequestID: gwppgij8ia +2025-06-18T15:26:06.581Z [TRACE] order-service - GET /api/v1/auth/logout - Status: 500 - Response time: 1520ms - IP: 192.168.32.38 - User: user_1005 - RequestID: idjvk2hfove +2025-06-18T15:26:06.681Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 277ms - Rows affected: 45 - RequestID: o6l6rgz539 +2025-06-18T15:26:06.781Z [TRACE] order-service - Database SELECT on sessions - Execution time: 171ms - Rows affected: 5 - RequestID: ckk0z4qgrm4 +2025-06-18T15:26:06.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1027 - IP: 192.168.85.229 - RequestID: h8ku947v1to +2025-06-18T15:26:06.981Z [DEBUG] user-service - Operation: payment_processed - Processing time: 587ms - RequestID: w05h9xrqfmq +2025-06-18T15:26:07.081Z [TRACE] user-service - Database UPDATE on sessions - Execution time: 44ms - Rows affected: 81 - RequestID: xogwr1b16up +2025-06-18T15:26:07.181Z [DEBUG] order-service - Database UPDATE on products - Execution time: 443ms - Rows affected: 59 - RequestID: xv4zu1cz81 +2025-06-18T15:26:07.281Z [INFO] user-service - Operation: webhook_sent - Processing time: 81ms - RequestID: mwgsuxq7c8 +2025-06-18T15:26:07.381Z [INFO] auth-service - Auth event: login_failed - User: user_1028 - IP: 192.168.189.103 - RequestID: n93s6mbmi5f +2025-06-18T15:26:07.481Z [TRACE] auth-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.141.100 - RequestID: xe01eqbiyl8 +2025-06-18T15:26:07.581Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 366ms - Rows affected: 46 - RequestID: g64vbr0oy5 +2025-06-18T15:26:07.681Z [DEBUG] notification-service - Operation: email_sent - Processing time: 288ms - RequestID: zygtoor13dq +2025-06-18T15:26:07.781Z [TRACE] inventory-service - Database INSERT on orders - Execution time: 182ms - Rows affected: 53 - RequestID: wxyc4vgn8mj +2025-06-18T15:26:07.881Z [TRACE] payment-service - Operation: email_sent - Processing time: 764ms - RequestID: jhq7rqlkfc +2025-06-18T15:26:07.981Z [INFO] payment-service - Database SELECT on payments - Execution time: 24ms - Rows affected: 64 - RequestID: 44ydffkslk5 +2025-06-18T15:26:08.081Z [TRACE] payment-service - GET /api/v1/auth/login - Status: 401 - Response time: 115ms - IP: 192.168.235.117 - User: user_1024 - RequestID: qm9nd45pge +2025-06-18T15:26:08.181Z [TRACE] user-service - Operation: email_sent - Processing time: 557ms - RequestID: nrls2tjest +2025-06-18T15:26:08.281Z [INFO] notification-service - Operation: cache_hit - Processing time: 637ms - RequestID: awuwcq1mer7 +2025-06-18T15:26:08.381Z [DEBUG] user-service - Database INSERT on orders - Execution time: 149ms - Rows affected: 17 - RequestID: wxaasonzx1 +2025-06-18T15:26:08.481Z [INFO] order-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.68.128 - RequestID: dni5n7onqpi +2025-06-18T15:26:08.581Z [INFO] auth-service - DELETE /api/v1/users - Status: 500 - Response time: 1225ms - IP: 192.168.247.134 - User: user_1056 - RequestID: 5vgxj8ggkmo +2025-06-18T15:26:08.681Z [DEBUG] order-service - POST /api/v1/inventory - Status: 502 - Response time: 1386ms - IP: 192.168.11.60 - User: user_1003 - RequestID: 3dg6xvctemo +2025-06-18T15:26:08.781Z [TRACE] notification-service - Auth event: login_success - User: user_1097 - IP: 192.168.187.199 - RequestID: oq9swu2l0n +2025-06-18T15:26:08.881Z [INFO] notification-service - PATCH /api/v1/orders - Status: 503 - Response time: 548ms - IP: 192.168.247.134 - User: user_1056 - RequestID: 0iabvjha4dlq +2025-06-18T15:26:08.981Z [DEBUG] user-service - Operation: payment_processed - Processing time: 1034ms - RequestID: cpdm56gtmji +2025-06-18T15:26:09.081Z [TRACE] notification-service - Auth event: login_failed - User: user_1082 - IP: 192.168.13.72 - RequestID: fytfuyhgi89 +2025-06-18T15:26:09.181Z [INFO] user-service - Auth event: login_success - User: user_1029 - IP: 192.168.100.240 - RequestID: qsubxma0dr +2025-06-18T15:26:09.281Z [DEBUG] auth-service - Database DELETE on products - Execution time: 1ms - Rows affected: 83 - RequestID: iap07x53k +2025-06-18T15:26:09.381Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 223ms - Rows affected: 9 - RequestID: b2vbhjz3cqm +2025-06-18T15:26:09.481Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 362ms - Rows affected: 59 - RequestID: iyk48egafy +2025-06-18T15:26:09.581Z [DEBUG] order-service - Auth event: login_success - User: user_1032 - IP: 192.168.229.123 - RequestID: oxu9qx0zuug +2025-06-18T15:26:09.681Z [DEBUG] payment-service - Auth event: login_failed - User: user_1053 - IP: 192.168.227.77 - RequestID: h6qh4l2gr6k +2025-06-18T15:26:09.781Z [INFO] inventory-service - Auth event: login_attempt - User: user_1078 - IP: 192.168.147.171 - RequestID: 8czdj4tx8bu +2025-06-18T15:26:09.881Z [DEBUG] order-service - Database UPDATE on orders - Execution time: 443ms - Rows affected: 48 - RequestID: 4da8q8tj8ud +2025-06-18T15:26:09.981Z [TRACE] payment-service - Database DELETE on payments - Execution time: 102ms - Rows affected: 42 - RequestID: 6zpk2pz34q3 +2025-06-18T15:26:10.081Z [INFO] notification-service - Auth event: login_failed - User: user_1020 - IP: 192.168.240.169 - RequestID: m5qtpqxaorm +2025-06-18T15:26:10.181Z [TRACE] payment-service - Auth event: password_change - User: user_1070 - IP: 192.168.159.94 - RequestID: 7ntj4fuygte +2025-06-18T15:26:10.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 898ms - RequestID: 4d4s2cp7vl9 +2025-06-18T15:26:10.381Z [INFO] inventory-service - Auth event: login_attempt - User: user_1021 - IP: 192.168.1.152 - RequestID: vupm23hr2jk +2025-06-18T15:26:10.481Z [INFO] inventory-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.31.117 - RequestID: 50junhdn6bu +2025-06-18T15:26:10.581Z [INFO] payment-service - Auth event: password_change - User: user_1058 - IP: 192.168.232.72 - RequestID: xvyk5fwxaj +2025-06-18T15:26:10.681Z [TRACE] payment-service - Auth event: login_attempt - User: user_1092 - IP: 192.168.31.117 - RequestID: hl8e76tai1 +2025-06-18T15:26:10.781Z [INFO] notification-service - PATCH /api/v1/payments - Status: 201 - Response time: 1223ms - IP: 192.168.138.123 - User: user_1081 - RequestID: 0b45eq2nnfya +2025-06-18T15:26:10.881Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1085 - IP: 192.168.81.206 - RequestID: 61sykl7ox4p +2025-06-18T15:26:10.981Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 312ms - IP: 192.168.240.169 - User: user_1090 - RequestID: dxjbcd88wrm +2025-06-18T15:26:11.081Z [INFO] auth-service - Auth event: login_failed - User: user_1097 - IP: 192.168.158.144 - RequestID: 3qvkelzj5aw +2025-06-18T15:26:11.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 518ms - RequestID: wbpueo5i7me +2025-06-18T15:26:11.281Z [INFO] user-service - Operation: inventory_updated - Processing time: 753ms - RequestID: 6pqke0q7jhf +2025-06-18T15:26:11.381Z [TRACE] auth-service - Operation: cache_hit - Processing time: 816ms - RequestID: aw645zdbkdj +2025-06-18T15:26:11.481Z [TRACE] notification-service - Database INSERT on products - Execution time: 158ms - Rows affected: 63 - RequestID: 73sw47ca788 +2025-06-18T15:26:11.581Z [DEBUG] order-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.167.32 - RequestID: zp0odpkw9di +2025-06-18T15:26:11.681Z [TRACE] notification-service - Database UPDATE on users - Execution time: 486ms - Rows affected: 63 - RequestID: 82otjnnykod +2025-06-18T15:26:11.781Z [INFO] payment-service - Auth event: logout - User: user_1012 - IP: 192.168.194.41 - RequestID: t0mfajmfjb +2025-06-18T15:26:11.881Z [DEBUG] notification-service - DELETE /api/v1/payments - Status: 201 - Response time: 756ms - IP: 192.168.13.72 - User: user_1075 - RequestID: y1cy1qt34zi +2025-06-18T15:26:11.981Z [INFO] auth-service - Operation: email_sent - Processing time: 978ms - RequestID: xsov2f25ba +2025-06-18T15:26:12.081Z [TRACE] inventory-service - Auth event: logout - User: user_1087 - IP: 192.168.44.5 - RequestID: eklnbobx20f +2025-06-18T15:26:12.181Z [TRACE] order-service - Operation: cache_miss - Processing time: 370ms - RequestID: emafatnwx1f +2025-06-18T15:26:12.281Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1041 - IP: 192.168.196.226 - RequestID: a669gqkjtw +2025-06-18T15:26:12.381Z [INFO] payment-service - Database DELETE on orders - Execution time: 55ms - Rows affected: 57 - RequestID: admdr5p9dy +2025-06-18T15:26:12.481Z [INFO] auth-service - Auth event: logout - User: user_1044 - IP: 192.168.227.233 - RequestID: x62frkxitpf +2025-06-18T15:26:12.581Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 299ms - RequestID: hysvutm4d3s +2025-06-18T15:26:12.681Z [INFO] order-service - Auth event: login_failed - User: user_1001 - IP: 192.168.11.60 - RequestID: 7afzjztumm4 +2025-06-18T15:26:12.781Z [TRACE] order-service - Operation: cache_hit - Processing time: 859ms - RequestID: ivg8j8gxwwb +2025-06-18T15:26:12.881Z [TRACE] order-service - Auth event: password_change - User: user_1095 - IP: 192.168.147.171 - RequestID: uq5plub6b1o +2025-06-18T15:26:12.981Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.211.72 - RequestID: 6zscdleunlv +2025-06-18T15:26:13.081Z [INFO] auth-service - Operation: cache_hit - Processing time: 534ms - RequestID: 8eg76hm67pc +2025-06-18T15:26:13.181Z [TRACE] order-service - Auth event: login_failed - User: user_1094 - IP: 192.168.11.60 - RequestID: n66xjox9u8 +2025-06-18T15:26:13.281Z [DEBUG] inventory-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1582ms - IP: 192.168.240.169 - User: user_1040 - RequestID: 7d3t7a2307v +2025-06-18T15:26:13.381Z [INFO] inventory-service - POST /api/v1/orders - Status: 503 - Response time: 14ms - IP: 192.168.36.218 - User: user_1045 - RequestID: y31d2c5hb5p +2025-06-18T15:26:13.481Z [DEBUG] notification-service - Database INSERT on users - Execution time: 407ms - Rows affected: 31 - RequestID: jt93z8we2h9 +2025-06-18T15:26:13.581Z [DEBUG] auth-service - Database UPDATE on orders - Execution time: 455ms - Rows affected: 70 - RequestID: 3sry82kzxf +2025-06-18T15:26:13.681Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 480ms - Rows affected: 33 - RequestID: itjwpbytmtn +2025-06-18T15:26:13.781Z [TRACE] auth-service - Database DELETE on products - Execution time: 102ms - Rows affected: 98 - RequestID: 734m3p7mov3 +2025-06-18T15:26:13.881Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 557ms - RequestID: 2ef52bu0akc +2025-06-18T15:26:13.981Z [DEBUG] order-service - Database DELETE on payments - Execution time: 432ms - Rows affected: 4 - RequestID: e73y14qo8j8 +2025-06-18T15:26:14.081Z [DEBUG] notification-service - Auth event: logout - User: user_1093 - IP: 192.168.141.100 - RequestID: ypw5cl4qcgt +2025-06-18T15:26:14.181Z [TRACE] user-service - Database SELECT on orders - Execution time: 219ms - Rows affected: 32 - RequestID: x84xwv6brn +2025-06-18T15:26:14.281Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.189.103 - RequestID: hitg6oizuqg +2025-06-18T15:26:14.381Z [INFO] order-service - Database INSERT on orders - Execution time: 161ms - Rows affected: 17 - RequestID: 9y8k8jwv6 +2025-06-18T15:26:14.481Z [INFO] order-service - Auth event: login_failed - User: user_1013 - IP: 192.168.79.143 - RequestID: yjtd78f1cx +2025-06-18T15:26:14.581Z [TRACE] order-service - Auth event: logout - User: user_1093 - IP: 192.168.30.79 - RequestID: jmaw0pebxjb +2025-06-18T15:26:14.681Z [TRACE] user-service - Auth event: password_change - User: user_1001 - IP: 192.168.46.63 - RequestID: 3dioz60y3tw +2025-06-18T15:26:14.781Z [TRACE] user-service - PUT /api/v1/orders - Status: 200 - Response time: 56ms - IP: 192.168.33.76 - User: user_1070 - RequestID: hu8bog5gss5 +2025-06-18T15:26:14.881Z [DEBUG] user-service - Database SELECT on products - Execution time: 108ms - Rows affected: 64 - RequestID: fd2nm16j5gr +2025-06-18T15:26:14.981Z [DEBUG] inventory-service - Database INSERT on orders - Execution time: 430ms - Rows affected: 38 - RequestID: uzlunnri11r +2025-06-18T15:26:15.081Z [TRACE] user-service - Operation: payment_processed - Processing time: 480ms - RequestID: ma6rl8nn7zi +2025-06-18T15:26:15.181Z [INFO] auth-service - Database DELETE on users - Execution time: 66ms - Rows affected: 43 - RequestID: 22c7o2qkf6 +2025-06-18T15:26:15.281Z [TRACE] order-service - Auth event: login_success - User: user_1092 - IP: 192.168.189.103 - RequestID: 41epfm6sugf +2025-06-18T15:26:15.381Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 200 - Response time: 1492ms - IP: 192.168.229.123 - User: user_1022 - RequestID: g3a51n1r28h +2025-06-18T15:26:15.481Z [DEBUG] payment-service - PATCH /api/v1/orders - Status: 503 - Response time: 1389ms - IP: 192.168.68.128 - User: user_1081 - RequestID: ykd5a4s5lnd +2025-06-18T15:26:15.581Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1052 - IP: 192.168.144.38 - RequestID: v5bk6z7xgje +2025-06-18T15:26:15.681Z [TRACE] notification-service - Database DELETE on orders - Execution time: 454ms - Rows affected: 35 - RequestID: pp0w1nptljj +2025-06-18T15:26:15.781Z [DEBUG] payment-service - Operation: cache_miss - Processing time: 543ms - RequestID: 4ithkjxrrl5 +2025-06-18T15:26:15.881Z [INFO] auth-service - Database UPDATE on users - Execution time: 442ms - Rows affected: 16 - RequestID: 9eunxxcqvz +2025-06-18T15:26:15.981Z [INFO] order-service - Auth event: token_refresh - User: user_1064 - IP: 192.168.232.72 - RequestID: tfwkkji4iyq +2025-06-18T15:26:16.081Z [TRACE] user-service - Operation: cache_miss - Processing time: 395ms - RequestID: vzmwf9kbje +2025-06-18T15:26:16.181Z [INFO] payment-service - Auth event: token_refresh - User: user_1052 - IP: 192.168.1.152 - RequestID: puh7389g2up +2025-06-18T15:26:16.281Z [DEBUG] user-service - Operation: email_sent - Processing time: 125ms - RequestID: 93pbwraijbo +2025-06-18T15:26:16.381Z [DEBUG] order-service - Auth event: logout - User: user_1081 - IP: 192.168.31.117 - RequestID: zardpsmi58h +2025-06-18T15:26:16.481Z [DEBUG] payment-service - Operation: email_sent - Processing time: 1033ms - RequestID: k2azjfhm7 +2025-06-18T15:26:16.581Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1012 - IP: 192.168.235.117 - RequestID: ksc6zom03w +2025-06-18T15:26:16.681Z [DEBUG] auth-service - POST /api/v1/payments - Status: 200 - Response time: 947ms - IP: 192.168.79.141 - User: user_1075 - RequestID: zzm9r88k2oc +2025-06-18T15:26:16.781Z [INFO] payment-service - Auth event: login_failed - User: user_1021 - IP: 192.168.100.240 - RequestID: bns71835mm +2025-06-18T15:26:16.881Z [INFO] notification-service - Auth event: login_failed - User: user_1092 - IP: 192.168.138.123 - RequestID: vkmea5rvwq +2025-06-18T15:26:16.981Z [DEBUG] order-service - Operation: notification_queued - Processing time: 498ms - RequestID: 1mqouxpqj8r +2025-06-18T15:26:17.081Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 502 - Response time: 1865ms - IP: 192.168.44.5 - User: user_1076 - RequestID: 4tw9h14p2mb +2025-06-18T15:26:17.181Z [TRACE] user-service - PUT /api/v1/users - Status: 404 - Response time: 1666ms - IP: 192.168.11.60 - User: user_1005 - RequestID: jdzsqfldbd +2025-06-18T15:26:17.281Z [TRACE] user-service - DELETE /api/v1/orders - Status: 200 - Response time: 1697ms - IP: 192.168.79.141 - User: user_1044 - RequestID: 931s114i15k +2025-06-18T15:26:17.381Z [TRACE] payment-service - Auth event: token_refresh - User: user_1095 - IP: 192.168.104.37 - RequestID: o8zvhhr5j9b +2025-06-18T15:26:17.481Z [INFO] auth-service - Auth event: login_attempt - User: user_1059 - IP: 192.168.30.79 - RequestID: jfy9p4ju2dk +2025-06-18T15:26:17.581Z [INFO] user-service - Operation: order_created - Processing time: 110ms - RequestID: wad7koe77d9 +2025-06-18T15:26:17.681Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 197ms - IP: 192.168.30.79 - User: user_1038 - RequestID: poy4vwtjkpa +2025-06-18T15:26:17.781Z [INFO] payment-service - GET /api/v1/payments - Status: 502 - Response time: 303ms - IP: 192.168.167.32 - User: user_1055 - RequestID: qxyfz3ibc1o +2025-06-18T15:26:17.881Z [TRACE] order-service - Database SELECT on sessions - Execution time: 482ms - Rows affected: 23 - RequestID: 0akkoin33ew6 +2025-06-18T15:26:17.981Z [INFO] notification-service - Database DELETE on products - Execution time: 392ms - Rows affected: 39 - RequestID: no8rn7cb0e +2025-06-18T15:26:18.081Z [DEBUG] notification-service - Auth event: login_success - User: user_1033 - IP: 192.168.79.116 - RequestID: 5ee5aj9wjf +2025-06-18T15:26:18.181Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 404 - Response time: 1063ms - IP: 192.168.81.206 - User: user_1087 - RequestID: bbmtn1lilhm +2025-06-18T15:26:18.281Z [DEBUG] order-service - Operation: email_sent - Processing time: 615ms - RequestID: 8226fnxpl5f +2025-06-18T15:26:18.381Z [TRACE] inventory-service - Auth event: login_success - User: user_1030 - IP: 192.168.181.225 - RequestID: 0256s703h36a +2025-06-18T15:26:18.481Z [INFO] payment-service - Auth event: login_success - User: user_1076 - IP: 192.168.81.206 - RequestID: ze8448h3nxh +2025-06-18T15:26:18.581Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 899ms - RequestID: b2100qdbfov +2025-06-18T15:26:18.681Z [INFO] auth-service - GET /api/v1/auth/logout - Status: 200 - Response time: 1749ms - IP: 192.168.32.38 - User: user_1034 - RequestID: 66m0m7xgsqv +2025-06-18T15:26:18.781Z [INFO] payment-service - GET /api/v1/users - Status: 502 - Response time: 1905ms - IP: 192.168.227.77 - User: user_1081 - RequestID: cco8zxhmhx +2025-06-18T15:26:18.881Z [TRACE] notification-service - Auth event: login_success - User: user_1047 - IP: 192.168.147.171 - RequestID: bz8m1vwk1ef +2025-06-18T15:26:18.981Z [INFO] user-service - Database DELETE on users - Execution time: 403ms - Rows affected: 36 - RequestID: d21vcykfcbi +2025-06-18T15:26:19.081Z [INFO] user-service - PATCH /api/v1/users - Status: 403 - Response time: 1146ms - IP: 192.168.187.199 - User: user_1011 - RequestID: zzspv0tn3t9 +2025-06-18T15:26:19.181Z [TRACE] order-service - Database UPDATE on users - Execution time: 259ms - Rows affected: 1 - RequestID: nfc5b11iql +2025-06-18T15:26:19.281Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 403 - Response time: 1064ms - IP: 192.168.247.134 - User: user_1024 - RequestID: anfi67l3d7r +2025-06-18T15:26:19.381Z [TRACE] user-service - Operation: email_sent - Processing time: 785ms - RequestID: h2brqs108t7 +2025-06-18T15:26:19.481Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 503 - Response time: 171ms - IP: 192.168.187.199 - User: user_1033 - RequestID: axknsrwt7h +2025-06-18T15:26:19.581Z [INFO] order-service - Auth event: login_failed - User: user_1028 - IP: 192.168.113.218 - RequestID: wmul5jiiso +2025-06-18T15:26:19.681Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 503 - Response time: 1444ms - IP: 192.168.28.146 - User: user_1076 - RequestID: 2kmn388rhss +2025-06-18T15:26:19.781Z [DEBUG] payment-service - Auth event: login_failed - User: user_1065 - IP: 192.168.81.206 - RequestID: s2q0mca6uof +2025-06-18T15:26:19.881Z [TRACE] user-service - Operation: cache_miss - Processing time: 1001ms - RequestID: 3s8uplmgi4h +2025-06-18T15:26:19.981Z [TRACE] order-service - Auth event: login_success - User: user_1076 - IP: 192.168.141.100 - RequestID: wrmgftr5xwa +2025-06-18T15:26:20.081Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 404 - Response time: 690ms - IP: 192.168.170.215 - User: user_1001 - RequestID: mzgl0btrj9 +2025-06-18T15:26:20.181Z [INFO] notification-service - POST /api/v1/orders - Status: 400 - Response time: 1874ms - IP: 192.168.32.38 - User: user_1054 - RequestID: d1ycgq0c6lw +2025-06-18T15:26:20.281Z [TRACE] user-service - Operation: cache_hit - Processing time: 454ms - RequestID: 9yvxwpmnfi +2025-06-18T15:26:20.381Z [DEBUG] user-service - Auth event: password_change - User: user_1025 - IP: 192.168.133.7 - RequestID: w4xj9n6w59 +2025-06-18T15:26:20.481Z [TRACE] payment-service - Auth event: password_change - User: user_1082 - IP: 192.168.174.114 - RequestID: 8hgpmh23pix +2025-06-18T15:26:20.581Z [DEBUG] order-service - Auth event: login_attempt - User: user_1014 - IP: 192.168.53.133 - RequestID: rj80aim7n4d +2025-06-18T15:26:20.681Z [INFO] notification-service - Database UPDATE on payments - Execution time: 130ms - Rows affected: 74 - RequestID: ga379z1l37c +2025-06-18T15:26:20.781Z [TRACE] payment-service - Operation: cache_miss - Processing time: 175ms - RequestID: ilvesaoy7q +2025-06-18T15:26:20.881Z [INFO] payment-service - PATCH /api/v1/payments - Status: 500 - Response time: 879ms - IP: 192.168.240.169 - User: user_1046 - RequestID: yd6orkpcyto +2025-06-18T15:26:20.981Z [INFO] notification-service - Database UPDATE on products - Execution time: 213ms - Rows affected: 8 - RequestID: r1tcwgwndkn +2025-06-18T15:26:21.081Z [TRACE] notification-service - Database DELETE on users - Execution time: 405ms - Rows affected: 97 - RequestID: sghepqb06j +2025-06-18T15:26:21.181Z [INFO] inventory-service - Operation: order_created - Processing time: 702ms - RequestID: rvmx2m2zz4n +2025-06-18T15:26:21.281Z [TRACE] auth-service - Auth event: login_attempt - User: user_1062 - IP: 192.168.242.165 - RequestID: b9tox1jc3uv +2025-06-18T15:26:21.381Z [TRACE] inventory-service - Auth event: login_failed - User: user_1084 - IP: 192.168.46.63 - RequestID: ssrd747gynr +2025-06-18T15:26:21.481Z [INFO] user-service - Database INSERT on sessions - Execution time: 196ms - Rows affected: 4 - RequestID: 8bi0e6b24h4 +2025-06-18T15:26:21.581Z [DEBUG] auth-service - Auth event: login_failed - User: user_1060 - IP: 192.168.170.215 - RequestID: rt296hz4mi +2025-06-18T15:26:21.681Z [DEBUG] payment-service - Database INSERT on orders - Execution time: 73ms - Rows affected: 76 - RequestID: tln92q00vvs +2025-06-18T15:26:21.781Z [TRACE] order-service - PUT /api/v1/orders - Status: 502 - Response time: 644ms - IP: 192.168.79.143 - User: user_1006 - RequestID: 4uyu8uiwjy8 +2025-06-18T15:26:21.881Z [INFO] inventory-service - GET /api/v1/payments - Status: 400 - Response time: 1398ms - IP: 192.168.13.72 - User: user_1094 - RequestID: gxfpqj3cdd9 +2025-06-18T15:26:21.981Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 497ms - RequestID: dt0guy8a3e +2025-06-18T15:26:22.081Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 498ms - RequestID: lf6sn5rda4o +2025-06-18T15:26:22.181Z [TRACE] auth-service - Database SELECT on audit_logs - Execution time: 57ms - Rows affected: 69 - RequestID: ua3gi6dr0t +2025-06-18T15:26:22.281Z [INFO] order-service - Operation: inventory_updated - Processing time: 974ms - RequestID: ai0ir8blv0f +2025-06-18T15:26:22.381Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.79.116 - RequestID: mjn68o73to +2025-06-18T15:26:22.481Z [TRACE] user-service - Operation: cache_hit - Processing time: 535ms - RequestID: iz0u28iep1e +2025-06-18T15:26:22.581Z [DEBUG] order-service - Database INSERT on payments - Execution time: 449ms - Rows affected: 20 - RequestID: f758a0mqh4q +2025-06-18T15:26:22.681Z [DEBUG] auth-service - Database UPDATE on audit_logs - Execution time: 330ms - Rows affected: 90 - RequestID: zesoitrfi4 +2025-06-18T15:26:22.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 568ms - RequestID: w31rnizjx7 +2025-06-18T15:26:22.881Z [TRACE] order-service - Auth event: logout - User: user_1004 - IP: 192.168.33.76 - RequestID: gq7f2st0y9a +2025-06-18T15:26:22.981Z [INFO] auth-service - Operation: order_created - Processing time: 681ms - RequestID: 6rnpd8f6ofv +2025-06-18T15:26:23.081Z [DEBUG] payment-service - POST /api/v1/users - Status: 404 - Response time: 1608ms - IP: 192.168.133.7 - User: user_1067 - RequestID: 47ony0d7hjo +2025-06-18T15:26:23.181Z [INFO] payment-service - Database SELECT on users - Execution time: 388ms - Rows affected: 20 - RequestID: z2vsp0hoqz8 +2025-06-18T15:26:23.281Z [TRACE] notification-service - Operation: payment_processed - Processing time: 96ms - RequestID: zrmm5htywk +2025-06-18T15:26:23.381Z [INFO] inventory-service - DELETE /api/v1/payments - Status: 201 - Response time: 895ms - IP: 192.168.196.226 - User: user_1068 - RequestID: n7zd95xo2gb +2025-06-18T15:26:23.481Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 166ms - Rows affected: 27 - RequestID: 48d5luhu8pq +2025-06-18T15:26:23.581Z [DEBUG] order-service - Operation: notification_queued - Processing time: 767ms - RequestID: ak07szh1p57 +2025-06-18T15:26:23.681Z [TRACE] user-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.196.226 - RequestID: g4lk9fh1yzt +2025-06-18T15:26:23.781Z [INFO] order-service - Auth event: login_attempt - User: user_1086 - IP: 192.168.44.5 - RequestID: l6anigr5zv +2025-06-18T15:26:23.881Z [INFO] auth-service - Auth event: logout - User: user_1047 - IP: 192.168.44.5 - RequestID: 8iec3qrot0e +2025-06-18T15:26:23.981Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 302ms - Rows affected: 24 - RequestID: xyx7nl8vp1q +2025-06-18T15:26:24.081Z [TRACE] auth-service - PUT /api/v1/payments - Status: 401 - Response time: 993ms - IP: 192.168.240.169 - User: user_1023 - RequestID: fqvxt4mqwkf +2025-06-18T15:26:24.181Z [TRACE] user-service - Auth event: login_failed - User: user_1035 - IP: 192.168.79.143 - RequestID: 9wjjhsex2jl +2025-06-18T15:26:24.281Z [TRACE] payment-service - DELETE /api/v1/payments - Status: 201 - Response time: 1095ms - IP: 192.168.147.171 - User: user_1064 - RequestID: n68zaxzgg6s +2025-06-18T15:26:24.381Z [TRACE] notification-service - Database DELETE on users - Execution time: 5ms - Rows affected: 27 - RequestID: a3cd02co8sg +2025-06-18T15:26:24.481Z [INFO] notification-service - Operation: inventory_updated - Processing time: 606ms - RequestID: dtpzuitoam5 +2025-06-18T15:26:24.581Z [TRACE] user-service - Database INSERT on sessions - Execution time: 406ms - Rows affected: 57 - RequestID: lx9dcs0l2hm +2025-06-18T15:26:24.681Z [TRACE] notification-service - Auth event: login_failed - User: user_1012 - IP: 192.168.227.77 - RequestID: cl0uln0rfak +2025-06-18T15:26:24.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 380ms - RequestID: 1q2zrtlvde1 +2025-06-18T15:26:24.881Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 354ms - Rows affected: 93 - RequestID: mwcv3xa81l8 +2025-06-18T15:26:24.981Z [DEBUG] auth-service - Operation: order_created - Processing time: 762ms - RequestID: zyj73zs2byl +2025-06-18T15:26:25.081Z [TRACE] user-service - DELETE /api/v1/users - Status: 201 - Response time: 850ms - IP: 192.168.46.63 - User: user_1054 - RequestID: g5k9u5iaxu5 +2025-06-18T15:26:25.181Z [DEBUG] inventory-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1447ms - IP: 192.168.232.72 - User: user_1007 - RequestID: 3rcdhuw1i2a +2025-06-18T15:26:25.281Z [TRACE] user-service - DELETE /api/v1/auth/login - Status: 502 - Response time: 359ms - IP: 192.168.189.103 - User: user_1079 - RequestID: 4h34nhiryct +2025-06-18T15:26:25.381Z [INFO] order-service - POST /api/v1/auth/logout - Status: 400 - Response time: 806ms - IP: 192.168.104.37 - User: user_1079 - RequestID: pb0t38i0cf +2025-06-18T15:26:25.481Z [DEBUG] user-service - Operation: email_sent - Processing time: 108ms - RequestID: fesiluvjtzt +2025-06-18T15:26:25.581Z [TRACE] notification-service - Operation: email_sent - Processing time: 231ms - RequestID: zcccs0fgd7c +2025-06-18T15:26:25.681Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 201 - Response time: 768ms - IP: 192.168.64.33 - User: user_1013 - RequestID: x6w39zt0svk +2025-06-18T15:26:25.781Z [INFO] inventory-service - DELETE /api/v1/users - Status: 401 - Response time: 1484ms - IP: 192.168.31.117 - User: user_1055 - RequestID: v3xf28m9mc +2025-06-18T15:26:25.881Z [TRACE] notification-service - Database UPDATE on products - Execution time: 54ms - Rows affected: 60 - RequestID: x57ji578zj +2025-06-18T15:26:25.981Z [INFO] inventory-service - GET /api/v1/users - Status: 502 - Response time: 392ms - IP: 192.168.10.184 - User: user_1096 - RequestID: nnyrsvuluf +2025-06-18T15:26:26.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 690ms - RequestID: ujuqds3nzm +2025-06-18T15:26:26.181Z [TRACE] user-service - PUT /api/v1/users - Status: 403 - Response time: 1310ms - IP: 192.168.79.143 - User: user_1038 - RequestID: e2ycmcl7259 +2025-06-18T15:26:26.281Z [INFO] user-service - Operation: notification_queued - Processing time: 321ms - RequestID: 5i67od3kz05 +2025-06-18T15:26:26.381Z [TRACE] payment-service - Database DELETE on orders - Execution time: 58ms - Rows affected: 94 - RequestID: tib02fsirik +2025-06-18T15:26:26.481Z [TRACE] user-service - Operation: email_sent - Processing time: 945ms - RequestID: oo6v5b8wj3 +2025-06-18T15:26:26.581Z [INFO] payment-service - POST /api/v1/auth/logout - Status: 200 - Response time: 40ms - IP: 192.168.81.206 - User: user_1005 - RequestID: utkhsscirer +2025-06-18T15:26:26.681Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 200 - Response time: 308ms - IP: 192.168.68.158 - User: user_1054 - RequestID: uov9smbhr5d +2025-06-18T15:26:26.781Z [TRACE] payment-service - Operation: cache_hit - Processing time: 190ms - RequestID: omt5aop7j8 +2025-06-18T15:26:26.881Z [DEBUG] notification-service - Operation: email_sent - Processing time: 499ms - RequestID: yqgnyukmxg +2025-06-18T15:26:26.981Z [DEBUG] auth-service - Operation: order_created - Processing time: 575ms - RequestID: mhsab41efr +2025-06-18T15:26:27.081Z [TRACE] auth-service - Database UPDATE on products - Execution time: 141ms - Rows affected: 85 - RequestID: ej259ujth1 +2025-06-18T15:26:27.181Z [INFO] order-service - Auth event: logout - User: user_1094 - IP: 192.168.14.77 - RequestID: ek26c3blalf +2025-06-18T15:26:27.281Z [INFO] payment-service - Database UPDATE on audit_logs - Execution time: 476ms - Rows affected: 12 - RequestID: fplgzsyipf6 +2025-06-18T15:26:27.381Z [TRACE] inventory-service - PUT /api/v1/payments - Status: 400 - Response time: 184ms - IP: 192.168.30.79 - User: user_1044 - RequestID: w75tw0e60n +2025-06-18T15:26:27.481Z [TRACE] user-service - Operation: inventory_updated - Processing time: 605ms - RequestID: qmqfglm4gkd +2025-06-18T15:26:27.581Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 331ms - Rows affected: 60 - RequestID: k8pt5fg2ei +2025-06-18T15:26:27.681Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 492ms - Rows affected: 19 - RequestID: 9rjebtwm63j +2025-06-18T15:26:27.781Z [INFO] payment-service - Database DELETE on products - Execution time: 180ms - Rows affected: 41 - RequestID: hay20j6kkq +2025-06-18T15:26:27.881Z [TRACE] user-service - Database UPDATE on orders - Execution time: 28ms - Rows affected: 99 - RequestID: cwc2b034z44 +2025-06-18T15:26:27.981Z [DEBUG] notification-service - Database DELETE on payments - Execution time: 322ms - Rows affected: 20 - RequestID: f9f6au3sihu +2025-06-18T15:26:28.081Z [DEBUG] user-service - Operation: order_created - Processing time: 742ms - RequestID: b7skm5avnbs +2025-06-18T15:26:28.181Z [DEBUG] payment-service - PUT /api/v1/inventory - Status: 403 - Response time: 1844ms - IP: 192.168.181.225 - User: user_1087 - RequestID: f186lkmo5x +2025-06-18T15:26:28.281Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 201 - Response time: 489ms - IP: 192.168.227.233 - User: user_1034 - RequestID: pnvcw5s5bph +2025-06-18T15:26:28.381Z [INFO] order-service - Database UPDATE on sessions - Execution time: 400ms - Rows affected: 76 - RequestID: s4kz6lxxyhk +2025-06-18T15:26:28.481Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 155ms - RequestID: dh4qbe5sy1c +2025-06-18T15:26:28.581Z [INFO] user-service - Database SELECT on sessions - Execution time: 31ms - Rows affected: 30 - RequestID: wnft2v3iz4i +2025-06-18T15:26:28.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.79.141 - RequestID: 7e3w4zbftax +2025-06-18T15:26:28.781Z [INFO] payment-service - Operation: payment_processed - Processing time: 996ms - RequestID: lyltlg3szt +2025-06-18T15:26:28.881Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1070 - IP: 192.168.144.38 - RequestID: hcts6oz7jnh +2025-06-18T15:26:28.981Z [TRACE] payment-service - Operation: email_sent - Processing time: 467ms - RequestID: z1q8k96di5h +2025-06-18T15:26:29.081Z [INFO] user-service - Auth event: login_failed - User: user_1034 - IP: 192.168.64.33 - RequestID: ofq1baid3vs +2025-06-18T15:26:29.181Z [INFO] notification-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 1083ms - IP: 192.168.227.77 - User: user_1088 - RequestID: zzozyqqga0j +2025-06-18T15:26:29.281Z [INFO] notification-service - Database INSERT on users - Execution time: 74ms - Rows affected: 15 - RequestID: xn4wlmhu5v +2025-06-18T15:26:29.381Z [INFO] inventory-service - PUT /api/v1/inventory - Status: 502 - Response time: 662ms - IP: 192.168.30.79 - User: user_1051 - RequestID: 2qfrebst2wy +2025-06-18T15:26:29.481Z [TRACE] user-service - Auth event: logout - User: user_1059 - IP: 192.168.53.133 - RequestID: i7nj2jh46cm +2025-06-18T15:26:29.581Z [TRACE] user-service - Database DELETE on products - Execution time: 129ms - Rows affected: 87 - RequestID: oi1js6ixh6 +2025-06-18T15:26:29.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1063 - IP: 192.168.196.226 - RequestID: 7gasmi0auf +2025-06-18T15:26:29.781Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.85.229 - RequestID: la2pea87vy +2025-06-18T15:26:29.881Z [TRACE] payment-service - Auth event: logout - User: user_1039 - IP: 192.168.144.38 - RequestID: fl8wbfeap1b +2025-06-18T15:26:29.981Z [INFO] notification-service - POST /api/v1/auth/login - Status: 404 - Response time: 1671ms - IP: 192.168.85.229 - User: user_1061 - RequestID: qlbjub2vaph +2025-06-18T15:26:30.081Z [TRACE] auth-service - Auth event: login_success - User: user_1052 - IP: 192.168.247.134 - RequestID: ecshwymsyp +2025-06-18T15:26:30.181Z [DEBUG] auth-service - POST /api/v1/inventory - Status: 201 - Response time: 1228ms - IP: 192.168.167.32 - User: user_1000 - RequestID: n1l8a359na8 +2025-06-18T15:26:30.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1074 - IP: 192.168.158.144 - RequestID: xi5m2ckfr3r +2025-06-18T15:26:30.381Z [DEBUG] user-service - POST /api/v1/orders - Status: 500 - Response time: 1072ms - IP: 192.168.28.146 - User: user_1046 - RequestID: 0gghivlgnyi +2025-06-18T15:26:30.481Z [INFO] user-service - Operation: webhook_sent - Processing time: 824ms - RequestID: gcjlpfc4wb8 +2025-06-18T15:26:30.581Z [TRACE] payment-service - Auth event: login_success - User: user_1095 - IP: 192.168.81.206 - RequestID: 7kz5bywndom +2025-06-18T15:26:30.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.79.141 - RequestID: g5gppkh92nn +2025-06-18T15:26:30.781Z [INFO] notification-service - Database UPDATE on users - Execution time: 313ms - Rows affected: 2 - RequestID: 9v521z4ll4o +2025-06-18T15:26:30.881Z [INFO] order-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.81.206 - RequestID: wt7lhg95bge +2025-06-18T15:26:30.981Z [INFO] payment-service - PUT /api/v1/auth/login - Status: 201 - Response time: 1631ms - IP: 192.168.232.72 - User: user_1097 - RequestID: x90yuisy1r +2025-06-18T15:26:31.081Z [INFO] auth-service - Database SELECT on orders - Execution time: 348ms - Rows affected: 26 - RequestID: 1326r4dyvec9 +2025-06-18T15:26:31.181Z [INFO] auth-service - Auth event: logout - User: user_1077 - IP: 192.168.53.133 - RequestID: jlvt5mfed7 +2025-06-18T15:26:31.281Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 870ms - RequestID: ndogb8d45wq +2025-06-18T15:26:31.381Z [TRACE] inventory-service - Operation: cache_hit - Processing time: 879ms - RequestID: v9rt6g6wny +2025-06-18T15:26:31.481Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1066 - IP: 192.168.10.184 - RequestID: t72epk4au8n +2025-06-18T15:26:31.581Z [DEBUG] payment-service - Operation: email_sent - Processing time: 885ms - RequestID: b2xzmcizz7k +2025-06-18T15:26:31.681Z [DEBUG] auth-service - Auth event: logout - User: user_1013 - IP: 192.168.196.226 - RequestID: woculs15g6 +2025-06-18T15:26:31.781Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 1173ms - IP: 192.168.232.72 - User: user_1044 - RequestID: 397cs7mmv6l +2025-06-18T15:26:31.881Z [TRACE] user-service - Operation: email_sent - Processing time: 618ms - RequestID: zia1sj1x089 +2025-06-18T15:26:31.981Z [INFO] auth-service - Operation: notification_queued - Processing time: 298ms - RequestID: 23rv6nsqlbi +2025-06-18T15:26:32.081Z [INFO] notification-service - Auth event: login_failed - User: user_1090 - IP: 192.168.1.152 - RequestID: ltjcb3s0ta +2025-06-18T15:26:32.181Z [DEBUG] inventory-service - Database SELECT on payments - Execution time: 477ms - Rows affected: 91 - RequestID: 0jqjlxrxsl8c +2025-06-18T15:26:32.281Z [INFO] notification-service - PUT /api/v1/inventory - Status: 201 - Response time: 1137ms - IP: 192.168.33.76 - User: user_1066 - RequestID: b0rv7hz59i8 +2025-06-18T15:26:32.381Z [TRACE] order-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 579ms - IP: 192.168.31.117 - User: user_1095 - RequestID: 91g85495ulc +2025-06-18T15:26:32.481Z [TRACE] user-service - Database INSERT on users - Execution time: 130ms - Rows affected: 0 - RequestID: dbtgwq8zclv +2025-06-18T15:26:32.581Z [INFO] inventory-service - Database SELECT on audit_logs - Execution time: 364ms - Rows affected: 3 - RequestID: 11s9l7xjhoca +2025-06-18T15:26:32.681Z [TRACE] payment-service - Database DELETE on users - Execution time: 235ms - Rows affected: 54 - RequestID: kox7ao1nata +2025-06-18T15:26:32.781Z [TRACE] user-service - Database SELECT on audit_logs - Execution time: 129ms - Rows affected: 41 - RequestID: nej25dzl3a +2025-06-18T15:26:32.881Z [TRACE] user-service - Operation: cache_hit - Processing time: 79ms - RequestID: u1p3lhlnd5c +2025-06-18T15:26:32.981Z [TRACE] order-service - Operation: cache_hit - Processing time: 253ms - RequestID: 5rn2lz5hw98 +2025-06-18T15:26:33.081Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 500ms - RequestID: qdxp1eqi3lo +2025-06-18T15:26:33.181Z [INFO] user-service - Database INSERT on products - Execution time: 71ms - Rows affected: 53 - RequestID: 49lse97dei2 +2025-06-18T15:26:33.281Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 324ms - Rows affected: 0 - RequestID: ay2kjeh7l48 +2025-06-18T15:26:33.381Z [TRACE] order-service - Operation: cache_miss - Processing time: 87ms - RequestID: 5l6xl1ylehl +2025-06-18T15:26:33.481Z [DEBUG] inventory-service - PUT /api/v1/orders - Status: 502 - Response time: 185ms - IP: 192.168.194.41 - User: user_1052 - RequestID: 7j9owmjuohv +2025-06-18T15:26:33.581Z [INFO] auth-service - GET /api/v1/inventory - Status: 404 - Response time: 1725ms - IP: 192.168.227.77 - User: user_1036 - RequestID: 9dab2x2jl5m +2025-06-18T15:26:33.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1097 - IP: 192.168.141.100 - RequestID: 3qggjni83v7 +2025-06-18T15:26:33.781Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 1007ms - RequestID: u8linm5969a +2025-06-18T15:26:33.881Z [INFO] notification-service - Operation: cache_miss - Processing time: 504ms - RequestID: 57j9wb96gtt +2025-06-18T15:26:33.981Z [TRACE] user-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.28.146 - RequestID: u2po8kakpll +2025-06-18T15:26:34.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1062 - IP: 192.168.68.158 - RequestID: emv06vh2aga +2025-06-18T15:26:34.181Z [DEBUG] auth-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1069ms - IP: 192.168.144.38 - User: user_1042 - RequestID: 8y2vi25u3yl +2025-06-18T15:26:34.281Z [DEBUG] inventory-service - Auth event: login_success - User: user_1015 - IP: 192.168.11.60 - RequestID: 1djjdyarz1z +2025-06-18T15:26:34.381Z [TRACE] payment-service - GET /api/v1/inventory - Status: 401 - Response time: 1698ms - IP: 192.168.138.123 - User: user_1093 - RequestID: jeyjwe92m8 +2025-06-18T15:26:34.481Z [TRACE] payment-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 932ms - IP: 192.168.68.128 - User: user_1078 - RequestID: 4sjnx9vn1tm +2025-06-18T15:26:34.581Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 502 - Response time: 559ms - IP: 192.168.170.215 - User: user_1048 - RequestID: gcmogxa4e6b +2025-06-18T15:26:34.681Z [DEBUG] payment-service - Database UPDATE on orders - Execution time: 225ms - Rows affected: 50 - RequestID: go2xqa12p4w +2025-06-18T15:26:34.781Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 96ms - RequestID: h784nq7quyp +2025-06-18T15:26:34.881Z [TRACE] user-service - Auth event: login_success - User: user_1021 - IP: 192.168.196.226 - RequestID: z5nwp5ir1sc +2025-06-18T15:26:34.981Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 331ms - RequestID: 79iavxt9vro +2025-06-18T15:26:35.081Z [INFO] order-service - Operation: order_created - Processing time: 250ms - RequestID: 9l4xhp9b0zf +2025-06-18T15:26:35.181Z [INFO] payment-service - Database SELECT on orders - Execution time: 4ms - Rows affected: 50 - RequestID: vvq7nxfjhs +2025-06-18T15:26:35.281Z [DEBUG] user-service - PUT /api/v1/users - Status: 404 - Response time: 160ms - IP: 192.168.235.117 - User: user_1025 - RequestID: phydsywc65 +2025-06-18T15:26:35.381Z [INFO] user-service - Database SELECT on payments - Execution time: 253ms - Rows affected: 86 - RequestID: 81hb6vblzpf +2025-06-18T15:26:35.481Z [DEBUG] notification-service - Database DELETE on products - Execution time: 357ms - Rows affected: 88 - RequestID: om4jmzw5xxg +2025-06-18T15:26:35.581Z [TRACE] inventory-service - GET /api/v1/auth/logout - Status: 401 - Response time: 683ms - IP: 192.168.81.206 - User: user_1027 - RequestID: fvwdntcko85 +2025-06-18T15:26:35.681Z [INFO] order-service - Operation: order_created - Processing time: 835ms - RequestID: 4ep5yv6v6md +2025-06-18T15:26:35.781Z [TRACE] auth-service - Database INSERT on users - Execution time: 227ms - Rows affected: 13 - RequestID: clclnhbzuu +2025-06-18T15:26:35.881Z [INFO] payment-service - PUT /api/v1/users - Status: 400 - Response time: 519ms - IP: 192.168.64.33 - User: user_1071 - RequestID: htcmae2cfte +2025-06-18T15:26:35.981Z [DEBUG] auth-service - GET /api/v1/payments - Status: 404 - Response time: 802ms - IP: 192.168.232.72 - User: user_1062 - RequestID: 5bwnz3xdwr6 +2025-06-18T15:26:36.081Z [DEBUG] user-service - Database INSERT on sessions - Execution time: 394ms - Rows affected: 19 - RequestID: 4nu68v7ucli +2025-06-18T15:26:36.181Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 693ms - RequestID: ulwmems261h +2025-06-18T15:26:36.281Z [DEBUG] payment-service - Database DELETE on orders - Execution time: 430ms - Rows affected: 38 - RequestID: xw5wrlr7ocj +2025-06-18T15:26:36.381Z [INFO] inventory-service - Auth event: login_success - User: user_1078 - IP: 192.168.227.77 - RequestID: 0iygmdh6mp3l +2025-06-18T15:26:36.481Z [INFO] auth-service - Database UPDATE on products - Execution time: 126ms - Rows affected: 2 - RequestID: ewll8lk1yfg +2025-06-18T15:26:36.581Z [TRACE] user-service - Operation: webhook_sent - Processing time: 260ms - RequestID: noynge5l4u +2025-06-18T15:26:36.681Z [INFO] user-service - Auth event: login_attempt - User: user_1033 - IP: 192.168.113.218 - RequestID: 03rijq2dflsm +2025-06-18T15:26:36.781Z [TRACE] user-service - Database INSERT on audit_logs - Execution time: 46ms - Rows affected: 22 - RequestID: 123dlox2ydg +2025-06-18T15:26:36.881Z [TRACE] notification-service - Database INSERT on users - Execution time: 459ms - Rows affected: 29 - RequestID: c4ekry5wb3f +2025-06-18T15:26:36.981Z [INFO] order-service - Operation: webhook_sent - Processing time: 968ms - RequestID: 66vdd3lcar6 +2025-06-18T15:26:37.081Z [TRACE] payment-service - Database UPDATE on sessions - Execution time: 477ms - Rows affected: 5 - RequestID: khzikds778 +2025-06-18T15:26:37.181Z [TRACE] notification-service - Auth event: login_success - User: user_1067 - IP: 192.168.159.94 - RequestID: 94tbn3t9uxv +2025-06-18T15:26:37.281Z [INFO] payment-service - Auth event: password_change - User: user_1010 - IP: 192.168.97.87 - RequestID: vpcai7u70i +2025-06-18T15:26:37.381Z [TRACE] inventory-service - Database UPDATE on payments - Execution time: 96ms - Rows affected: 28 - RequestID: ii3okya8q1 +2025-06-18T15:26:37.481Z [TRACE] auth-service - Database SELECT on payments - Execution time: 193ms - Rows affected: 59 - RequestID: ory28x2sch9 +2025-06-18T15:26:37.581Z [INFO] order-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.240.169 - RequestID: 5onfvv4kdgq +2025-06-18T15:26:37.681Z [DEBUG] auth-service - GET /api/v1/orders - Status: 200 - Response time: 534ms - IP: 192.168.194.41 - User: user_1049 - RequestID: c5hu9rywg4d +2025-06-18T15:26:37.781Z [DEBUG] user-service - Auth event: logout - User: user_1099 - IP: 192.168.181.225 - RequestID: fdvux9xglzg +2025-06-18T15:26:37.881Z [TRACE] inventory-service - Auth event: login_success - User: user_1010 - IP: 192.168.211.72 - RequestID: kq0iej4elwl +2025-06-18T15:26:37.981Z [INFO] inventory-service - Database DELETE on products - Execution time: 190ms - Rows affected: 36 - RequestID: t9qp3ye0gt +2025-06-18T15:26:38.081Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 880ms - IP: 192.168.232.72 - User: user_1071 - RequestID: ccy4n1sr2u7 +2025-06-18T15:26:38.181Z [INFO] notification-service - Database UPDATE on audit_logs - Execution time: 226ms - Rows affected: 72 - RequestID: cqndkhmy81i +2025-06-18T15:26:38.281Z [TRACE] notification-service - PUT /api/v1/payments - Status: 404 - Response time: 42ms - IP: 192.168.100.240 - User: user_1092 - RequestID: n4btkkh6 +2025-06-18T15:26:38.381Z [INFO] user-service - Database SELECT on orders - Execution time: 417ms - Rows affected: 6 - RequestID: 35zawlsj3cy +2025-06-18T15:26:38.481Z [TRACE] payment-service - GET /api/v1/orders - Status: 502 - Response time: 1987ms - IP: 192.168.240.169 - User: user_1072 - RequestID: e9ay2ufk1yt +2025-06-18T15:26:38.581Z [INFO] auth-service - Auth event: login_failed - User: user_1072 - IP: 192.168.227.77 - RequestID: 8g6ogycajzh +2025-06-18T15:26:38.681Z [DEBUG] auth-service - POST /api/v1/auth/logout - Status: 503 - Response time: 57ms - IP: 192.168.235.117 - User: user_1070 - RequestID: lppjovbua2q +2025-06-18T15:26:38.781Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 401 - Response time: 215ms - IP: 192.168.33.76 - User: user_1056 - RequestID: 6xezx7givk7 +2025-06-18T15:26:38.881Z [INFO] user-service - Database UPDATE on sessions - Execution time: 498ms - Rows affected: 22 - RequestID: dzu3aryaxwu +2025-06-18T15:26:38.981Z [TRACE] auth-service - PUT /api/v1/users - Status: 400 - Response time: 1757ms - IP: 192.168.167.32 - User: user_1018 - RequestID: l1pkusuz48 +2025-06-18T15:26:39.081Z [TRACE] user-service - Auth event: password_change - User: user_1087 - IP: 192.168.227.233 - RequestID: x7qcudnebio +2025-06-18T15:26:39.181Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 400 - Response time: 647ms - IP: 192.168.229.123 - User: user_1018 - RequestID: 64nbngh7wmt +2025-06-18T15:26:39.281Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 883ms - RequestID: xcr2uisy9nq +2025-06-18T15:26:39.381Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 405ms - Rows affected: 46 - RequestID: ss71dnobos +2025-06-18T15:26:39.481Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 180ms - Rows affected: 71 - RequestID: whwygw2p58g +2025-06-18T15:26:39.581Z [TRACE] payment-service - PATCH /api/v1/users - Status: 401 - Response time: 1088ms - IP: 192.168.138.123 - User: user_1068 - RequestID: 0npbd64xri +2025-06-18T15:26:39.681Z [TRACE] notification-service - Auth event: password_change - User: user_1057 - IP: 192.168.138.123 - RequestID: xb0vfn4rlvm +2025-06-18T15:26:39.781Z [DEBUG] order-service - Operation: email_sent - Processing time: 581ms - RequestID: fvaccy1e1og +2025-06-18T15:26:39.881Z [INFO] order-service - Auth event: login_success - User: user_1067 - IP: 192.168.79.141 - RequestID: 64t2vkaf31e +2025-06-18T15:26:39.981Z [INFO] user-service - Operation: payment_processed - Processing time: 719ms - RequestID: 4t79l3eey7s +2025-06-18T15:26:40.081Z [DEBUG] order-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.1.152 - RequestID: pzt5koftlr +2025-06-18T15:26:40.181Z [TRACE] order-service - DELETE /api/v1/users - Status: 503 - Response time: 1030ms - IP: 192.168.97.87 - User: user_1038 - RequestID: pwwd8d63t7 +2025-06-18T15:26:40.281Z [TRACE] order-service - Operation: cache_miss - Processing time: 804ms - RequestID: kzmd2tl0ss +2025-06-18T15:26:40.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1045 - IP: 192.168.194.41 - RequestID: ymu45n8im3 +2025-06-18T15:26:40.481Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 106ms - Rows affected: 98 - RequestID: hhf0ielgqcn +2025-06-18T15:26:40.581Z [TRACE] order-service - PUT /api/v1/inventory - Status: 502 - Response time: 610ms - IP: 192.168.138.123 - User: user_1019 - RequestID: yzrzu5cdiy9 +2025-06-18T15:26:40.681Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 87ms - RequestID: iz9iogp0dyo +2025-06-18T15:26:40.781Z [INFO] inventory-service - PATCH /api/v1/auth/logout - Status: 200 - Response time: 461ms - IP: 192.168.11.60 - User: user_1094 - RequestID: jygw2ne1szl +2025-06-18T15:26:40.881Z [DEBUG] auth-service - Operation: email_sent - Processing time: 313ms - RequestID: h0iuxzhymzn +2025-06-18T15:26:40.981Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 404 - Response time: 241ms - IP: 192.168.144.38 - User: user_1009 - RequestID: 43t3fqemdse +2025-06-18T15:26:41.081Z [TRACE] notification-service - Auth event: login_attempt - User: user_1003 - IP: 192.168.68.128 - RequestID: ysmv5hpstna +2025-06-18T15:26:41.181Z [INFO] order-service - POST /api/v1/auth/login - Status: 401 - Response time: 220ms - IP: 192.168.113.218 - User: user_1036 - RequestID: 8w4zuyhkda5 +2025-06-18T15:26:41.281Z [TRACE] payment-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.30.79 - RequestID: qt3psunurmc +2025-06-18T15:26:41.381Z [INFO] inventory-service - Operation: cache_hit - Processing time: 152ms - RequestID: 9j0syiy8bnh +2025-06-18T15:26:41.481Z [INFO] payment-service - Auth event: login_failed - User: user_1055 - IP: 192.168.85.229 - RequestID: 8x8yn4iup05 +2025-06-18T15:26:41.581Z [DEBUG] order-service - Operation: cache_miss - Processing time: 551ms - RequestID: 4msnkbkiw5w +2025-06-18T15:26:41.681Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1067 - IP: 192.168.147.171 - RequestID: 82xzu7zo463 +2025-06-18T15:26:41.781Z [INFO] auth-service - DELETE /api/v1/inventory - Status: 401 - Response time: 1315ms - IP: 192.168.14.77 - User: user_1073 - RequestID: srtg9989z1f +2025-06-18T15:26:41.881Z [INFO] notification-service - Database UPDATE on products - Execution time: 75ms - Rows affected: 68 - RequestID: 03kiyekyqpl1 +2025-06-18T15:26:41.981Z [DEBUG] notification-service - Database INSERT on audit_logs - Execution time: 443ms - Rows affected: 67 - RequestID: uzkdb06n71g +2025-06-18T15:26:42.081Z [INFO] notification-service - Operation: order_created - Processing time: 827ms - RequestID: hwgibqgf7y +2025-06-18T15:26:42.181Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1243ms - IP: 192.168.141.100 - User: user_1017 - RequestID: fmhs5njiqlr +2025-06-18T15:26:42.281Z [DEBUG] inventory-service - PATCH /api/v1/auth/login - Status: 400 - Response time: 1796ms - IP: 192.168.13.72 - User: user_1062 - RequestID: b23cq74aiqo +2025-06-18T15:26:42.381Z [DEBUG] user-service - Database UPDATE on orders - Execution time: 56ms - Rows affected: 4 - RequestID: 937dla7zxpu +2025-06-18T15:26:42.481Z [TRACE] user-service - Auth event: login_attempt - User: user_1057 - IP: 192.168.33.76 - RequestID: f9b4ifd6cr +2025-06-18T15:26:42.581Z [TRACE] payment-service - Auth event: password_change - User: user_1009 - IP: 192.168.79.141 - RequestID: rxxgehmdon +2025-06-18T15:26:42.681Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 449ms - RequestID: cfto6qbeo4j +2025-06-18T15:26:42.781Z [DEBUG] payment-service - Database UPDATE on users - Execution time: 286ms - Rows affected: 73 - RequestID: 47qi6k1h856 +2025-06-18T15:26:42.881Z [INFO] user-service - PATCH /api/v1/users - Status: 401 - Response time: 283ms - IP: 192.168.159.94 - User: user_1042 - RequestID: bcubmc5iicu +2025-06-18T15:26:42.981Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 66ms - Rows affected: 98 - RequestID: obdivrztfkk +2025-06-18T15:26:43.081Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 156ms - Rows affected: 79 - RequestID: l0gfhquibi9 +2025-06-18T15:26:43.181Z [INFO] auth-service - Database SELECT on orders - Execution time: 249ms - Rows affected: 4 - RequestID: sslakro23p +2025-06-18T15:26:43.281Z [INFO] notification-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.1.152 - RequestID: dv9lypue6n +2025-06-18T15:26:43.381Z [TRACE] user-service - POST /api/v1/users - Status: 401 - Response time: 808ms - IP: 192.168.68.158 - User: user_1032 - RequestID: 9aeny9igqzj +2025-06-18T15:26:43.481Z [TRACE] order-service - Auth event: login_failed - User: user_1042 - IP: 192.168.196.226 - RequestID: n0v5qtxjk2 +2025-06-18T15:26:43.581Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 674ms - RequestID: ohh32k8nu1o +2025-06-18T15:26:43.681Z [INFO] user-service - Operation: email_sent - Processing time: 715ms - RequestID: llv5j9p8b1j +2025-06-18T15:26:43.781Z [INFO] auth-service - Operation: webhook_sent - Processing time: 685ms - RequestID: d3zplpb593u +2025-06-18T15:26:43.881Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1062 - IP: 192.168.141.100 - RequestID: 5791n0eyxvl +2025-06-18T15:26:43.981Z [INFO] user-service - DELETE /api/v1/inventory - Status: 503 - Response time: 1408ms - IP: 192.168.229.123 - User: user_1053 - RequestID: e262wwip1e +2025-06-18T15:26:44.081Z [TRACE] order-service - Operation: cache_miss - Processing time: 708ms - RequestID: dfrml1k7bgj +2025-06-18T15:26:44.181Z [INFO] inventory-service - POST /api/v1/inventory - Status: 400 - Response time: 1981ms - IP: 192.168.79.116 - User: user_1011 - RequestID: 9qawrqqe3j7 +2025-06-18T15:26:44.281Z [INFO] order-service - Auth event: login_attempt - User: user_1073 - IP: 192.168.133.7 - RequestID: dv8bpsxiajm +2025-06-18T15:26:44.381Z [TRACE] notification-service - Auth event: login_attempt - User: user_1023 - IP: 192.168.187.199 - RequestID: 76igdahvdue +2025-06-18T15:26:44.481Z [DEBUG] notification-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.181.225 - RequestID: 22tanws90mx +2025-06-18T15:26:44.581Z [INFO] notification-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.158.144 - RequestID: cgpn7ve7xvn +2025-06-18T15:26:44.681Z [INFO] user-service - Auth event: login_success - User: user_1085 - IP: 192.168.53.133 - RequestID: 3ha367d8o6c +2025-06-18T15:26:44.781Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 283ms - RequestID: ch0a4l0t9kv +2025-06-18T15:26:44.881Z [TRACE] user-service - PUT /api/v1/orders - Status: 400 - Response time: 798ms - IP: 192.168.53.133 - User: user_1018 - RequestID: b4vhi3j0ep8 +2025-06-18T15:26:44.981Z [INFO] user-service - DELETE /api/v1/users - Status: 401 - Response time: 1918ms - IP: 192.168.28.146 - User: user_1027 - RequestID: o3002xn23w +2025-06-18T15:26:45.081Z [DEBUG] user-service - Database SELECT on sessions - Execution time: 336ms - Rows affected: 90 - RequestID: 9mfsdzasy7m +2025-06-18T15:26:45.181Z [TRACE] inventory-service - Auth event: login_success - User: user_1039 - IP: 192.168.227.233 - RequestID: kgj5q3f80hp +2025-06-18T15:26:45.281Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 417ms - Rows affected: 88 - RequestID: a2lyn3q9y8e +2025-06-18T15:26:45.381Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 427ms - Rows affected: 60 - RequestID: ngbwrrqtw7r +2025-06-18T15:26:45.481Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 986ms - RequestID: 7a9f6ou33n5 +2025-06-18T15:26:45.581Z [INFO] inventory-service - Database INSERT on sessions - Execution time: 290ms - Rows affected: 86 - RequestID: bwes06zgdk6 +2025-06-18T15:26:45.681Z [DEBUG] user-service - PUT /api/v1/auth/login - Status: 403 - Response time: 279ms - IP: 192.168.211.72 - User: user_1014 - RequestID: 9jx1pfzst6j +2025-06-18T15:26:45.781Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 502 - Response time: 1643ms - IP: 192.168.30.79 - User: user_1044 - RequestID: a2pka3uyw +2025-06-18T15:26:45.881Z [INFO] order-service - PATCH /api/v1/users - Status: 404 - Response time: 455ms - IP: 192.168.30.79 - User: user_1047 - RequestID: 068cuse1t6p4 +2025-06-18T15:26:45.981Z [INFO] notification-service - Operation: notification_queued - Processing time: 274ms - RequestID: hy4he1q2nyi +2025-06-18T15:26:46.081Z [TRACE] user-service - Auth event: login_attempt - User: user_1077 - IP: 192.168.32.38 - RequestID: xwvce8zhzf8 +2025-06-18T15:26:46.181Z [DEBUG] inventory-service - Operation: inventory_updated - Processing time: 520ms - RequestID: 4q4vkw73rpt +2025-06-18T15:26:46.281Z [INFO] notification-service - Operation: inventory_updated - Processing time: 51ms - RequestID: puxk8cqt7k8 +2025-06-18T15:26:46.381Z [DEBUG] inventory-service - PUT /api/v1/auth/login - Status: 200 - Response time: 410ms - IP: 192.168.10.184 - User: user_1088 - RequestID: rsxkdn9gutr +2025-06-18T15:26:46.481Z [INFO] auth-service - Database INSERT on audit_logs - Execution time: 381ms - Rows affected: 32 - RequestID: paff609uc8i +2025-06-18T15:26:46.581Z [DEBUG] inventory-service - POST /api/v1/auth/login - Status: 503 - Response time: 34ms - IP: 192.168.32.38 - User: user_1054 - RequestID: 5018ggh6ah4 +2025-06-18T15:26:46.681Z [TRACE] auth-service - Auth event: password_change - User: user_1018 - IP: 192.168.158.144 - RequestID: 6e73gyb72kt +2025-06-18T15:26:46.781Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 43ms - Rows affected: 71 - RequestID: esw8o069i8u +2025-06-18T15:26:46.881Z [INFO] notification-service - DELETE /api/v1/inventory - Status: 401 - Response time: 548ms - IP: 192.168.14.77 - User: user_1075 - RequestID: 4jxycin2rn2 +2025-06-18T15:26:46.981Z [INFO] inventory-service - GET /api/v1/orders - Status: 502 - Response time: 1057ms - IP: 192.168.229.123 - User: user_1039 - RequestID: e4tyawjtkvq +2025-06-18T15:26:47.081Z [TRACE] payment-service - DELETE /api/v1/users - Status: 503 - Response time: 128ms - IP: 192.168.36.218 - User: user_1041 - RequestID: 8d660woybut +2025-06-18T15:26:47.181Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 404 - Response time: 907ms - IP: 192.168.133.7 - User: user_1025 - RequestID: 7qa87206jzy +2025-06-18T15:26:47.281Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 1003ms - RequestID: zdc59xzqjmn +2025-06-18T15:26:47.381Z [INFO] inventory-service - Database DELETE on products - Execution time: 343ms - Rows affected: 68 - RequestID: g2of1v8xgcg +2025-06-18T15:26:47.481Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 400 - Response time: 621ms - IP: 192.168.181.225 - User: user_1031 - RequestID: 6dgcwxw2mwg +2025-06-18T15:26:47.581Z [TRACE] order-service - DELETE /api/v1/auth/login - Status: 500 - Response time: 951ms - IP: 192.168.181.225 - User: user_1018 - RequestID: n998e5n7i2n +2025-06-18T15:26:47.681Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 404 - Response time: 629ms - IP: 192.168.240.169 - User: user_1049 - RequestID: c5zcgr4o6cl +2025-06-18T15:26:47.781Z [TRACE] auth-service - PUT /api/v1/orders - Status: 201 - Response time: 1191ms - IP: 192.168.242.165 - User: user_1075 - RequestID: bu5wvrpchdu +2025-06-18T15:26:47.881Z [DEBUG] auth-service - Auth event: login_failed - User: user_1009 - IP: 192.168.167.32 - RequestID: riya16pxkqm +2025-06-18T15:26:47.981Z [INFO] inventory-service - DELETE /api/v1/users - Status: 404 - Response time: 1195ms - IP: 192.168.232.72 - User: user_1001 - RequestID: luqwf4ow4ms +2025-06-18T15:26:48.081Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 404 - Response time: 1126ms - IP: 192.168.81.206 - User: user_1006 - RequestID: mero8fqsoym +2025-06-18T15:26:48.181Z [TRACE] notification-service - Auth event: login_success - User: user_1007 - IP: 192.168.104.37 - RequestID: h5cmhs5tk7b +2025-06-18T15:26:48.281Z [INFO] inventory-service - Database UPDATE on orders - Execution time: 318ms - Rows affected: 50 - RequestID: jexhop6je2k +2025-06-18T15:26:48.381Z [INFO] payment-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.133.7 - RequestID: eetom5gfmit +2025-06-18T15:26:48.481Z [TRACE] notification-service - Database SELECT on audit_logs - Execution time: 180ms - Rows affected: 64 - RequestID: gelk6ycsg9v +2025-06-18T15:26:48.581Z [DEBUG] user-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.242.165 - RequestID: f9t5u09bkhf +2025-06-18T15:26:48.681Z [INFO] order-service - PATCH /api/v1/orders - Status: 404 - Response time: 337ms - IP: 192.168.10.184 - User: user_1069 - RequestID: 50ru0m084tf +2025-06-18T15:26:48.781Z [INFO] inventory-service - Auth event: password_change - User: user_1090 - IP: 192.168.44.5 - RequestID: b1ydhumsw17 +2025-06-18T15:26:48.881Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 500 - Response time: 187ms - IP: 192.168.227.77 - User: user_1014 - RequestID: wbqk4g5571p +2025-06-18T15:26:48.981Z [TRACE] user-service - Operation: webhook_sent - Processing time: 480ms - RequestID: 75bn3at61uk +2025-06-18T15:26:49.081Z [TRACE] auth-service - Operation: order_created - Processing time: 406ms - RequestID: 6slqby6kln4 +2025-06-18T15:26:49.181Z [INFO] auth-service - Operation: payment_processed - Processing time: 208ms - RequestID: qpwxk86mfnf +2025-06-18T15:26:49.281Z [TRACE] user-service - Auth event: token_refresh - User: user_1044 - IP: 192.168.167.32 - RequestID: ljv1s2e0jc8 +2025-06-18T15:26:49.381Z [DEBUG] user-service - Database DELETE on audit_logs - Execution time: 52ms - Rows affected: 90 - RequestID: qewq9rmser +2025-06-18T15:26:49.481Z [DEBUG] user-service - Auth event: token_refresh - User: user_1007 - IP: 192.168.79.141 - RequestID: gznqp65rerf +2025-06-18T15:26:49.581Z [DEBUG] inventory-service - Auth event: password_change - User: user_1050 - IP: 192.168.79.141 - RequestID: ls094uj2thj +2025-06-18T15:26:49.681Z [INFO] payment-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 1998ms - IP: 192.168.100.240 - User: user_1003 - RequestID: w4qz5z0hb9 +2025-06-18T15:26:49.781Z [INFO] user-service - Auth event: password_change - User: user_1006 - IP: 192.168.247.134 - RequestID: 0rhrlkx0j44g +2025-06-18T15:26:49.881Z [TRACE] inventory-service - Operation: email_sent - Processing time: 52ms - RequestID: xfczy7a03dc +2025-06-18T15:26:49.981Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 424ms - RequestID: wudqgc7eik +2025-06-18T15:26:50.081Z [TRACE] notification-service - Operation: email_sent - Processing time: 485ms - RequestID: fte7z9mwybd +2025-06-18T15:26:50.181Z [INFO] payment-service - POST /api/v1/inventory - Status: 503 - Response time: 1769ms - IP: 192.168.158.144 - User: user_1043 - RequestID: k66cg76zk09 +2025-06-18T15:26:50.281Z [TRACE] inventory-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 480ms - IP: 192.168.133.7 - User: user_1029 - RequestID: lb07ooyikg +2025-06-18T15:26:50.381Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 502 - Response time: 234ms - IP: 192.168.247.134 - User: user_1076 - RequestID: 1a7aw4q8joe +2025-06-18T15:26:50.481Z [INFO] order-service - Operation: order_created - Processing time: 902ms - RequestID: emyngpzzq6 +2025-06-18T15:26:50.581Z [TRACE] inventory-service - PUT /api/v1/orders - Status: 201 - Response time: 294ms - IP: 192.168.167.32 - User: user_1047 - RequestID: 3stnfay60gy +2025-06-18T15:26:50.681Z [INFO] inventory-service - GET /api/v1/payments - Status: 401 - Response time: 1233ms - IP: 192.168.68.128 - User: user_1022 - RequestID: pt7avbymr8 +2025-06-18T15:26:50.781Z [TRACE] inventory-service - Database INSERT on audit_logs - Execution time: 333ms - Rows affected: 98 - RequestID: ulu2b4mhmen +2025-06-18T15:26:50.881Z [DEBUG] auth-service - PUT /api/v1/auth/logout - Status: 400 - Response time: 844ms - IP: 192.168.133.7 - User: user_1067 - RequestID: bhe9aj7l2tk +2025-06-18T15:26:50.981Z [INFO] auth-service - Database INSERT on orders - Execution time: 231ms - Rows affected: 59 - RequestID: vj2cbqzcyr +2025-06-18T15:26:51.081Z [INFO] inventory-service - Database UPDATE on payments - Execution time: 209ms - Rows affected: 20 - RequestID: 7gi3vbomif9 +2025-06-18T15:26:51.181Z [INFO] notification-service - Operation: inventory_updated - Processing time: 756ms - RequestID: qew1foc49oe +2025-06-18T15:26:51.281Z [TRACE] order-service - Auth event: login_attempt - User: user_1040 - IP: 192.168.229.123 - RequestID: 8nvhhxan9sv +2025-06-18T15:26:51.381Z [DEBUG] inventory-service - Database SELECT on audit_logs - Execution time: 125ms - Rows affected: 23 - RequestID: k9w0j32p37 +2025-06-18T15:26:51.481Z [TRACE] notification-service - Auth event: password_change - User: user_1049 - IP: 192.168.144.38 - RequestID: bkcvo67s26 +2025-06-18T15:26:51.581Z [DEBUG] inventory-service - Auth event: password_change - User: user_1037 - IP: 192.168.189.103 - RequestID: 299d8q5d2ru +2025-06-18T15:26:51.681Z [DEBUG] order-service - Database SELECT on users - Execution time: 303ms - Rows affected: 93 - RequestID: i7h9uo31d9p +2025-06-18T15:26:51.781Z [DEBUG] user-service - Auth event: logout - User: user_1063 - IP: 192.168.159.94 - RequestID: jqj8ki0kxa +2025-06-18T15:26:51.881Z [TRACE] auth-service - Database INSERT on users - Execution time: 338ms - Rows affected: 98 - RequestID: i2ce355ehc +2025-06-18T15:26:51.981Z [TRACE] payment-service - Database DELETE on audit_logs - Execution time: 18ms - Rows affected: 59 - RequestID: ksxnrlnexii +2025-06-18T15:26:52.081Z [TRACE] notification-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 263ms - IP: 192.168.32.38 - User: user_1022 - RequestID: w78efr5bp +2025-06-18T15:26:52.181Z [DEBUG] user-service - DELETE /api/v1/orders - Status: 200 - Response time: 283ms - IP: 192.168.13.72 - User: user_1037 - RequestID: cjbbmafhppn +2025-06-18T15:26:52.281Z [INFO] order-service - PUT /api/v1/payments - Status: 400 - Response time: 830ms - IP: 192.168.187.199 - User: user_1052 - RequestID: bd6qfyc9k46 +2025-06-18T15:26:52.381Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 300ms - Rows affected: 90 - RequestID: 1x9a3tvhgtxi +2025-06-18T15:26:52.481Z [TRACE] notification-service - DELETE /api/v1/orders - Status: 201 - Response time: 1521ms - IP: 192.168.174.114 - User: user_1027 - RequestID: dksc2qocd6 +2025-06-18T15:26:52.581Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 88ms - Rows affected: 95 - RequestID: wvyi43g37r9 +2025-06-18T15:26:52.681Z [INFO] order-service - Auth event: logout - User: user_1084 - IP: 192.168.100.240 - RequestID: t6sqe9aqpte +2025-06-18T15:26:52.781Z [DEBUG] inventory-service - POST /api/v1/users - Status: 400 - Response time: 275ms - IP: 192.168.30.79 - User: user_1008 - RequestID: kqmxiuq8at +2025-06-18T15:26:52.881Z [DEBUG] user-service - Auth event: logout - User: user_1004 - IP: 192.168.28.146 - RequestID: okitjhdjs2 +2025-06-18T15:26:52.981Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 855ms - IP: 192.168.194.41 - User: user_1051 - RequestID: niaawmz0hik +2025-06-18T15:26:53.081Z [INFO] user-service - Auth event: password_change - User: user_1061 - IP: 192.168.159.94 - RequestID: ba9e4ber8ji +2025-06-18T15:26:53.181Z [INFO] payment-service - Auth event: login_failed - User: user_1036 - IP: 192.168.170.215 - RequestID: m9k0tyuxd7h +2025-06-18T15:26:53.281Z [TRACE] payment-service - Auth event: login_success - User: user_1075 - IP: 192.168.79.143 - RequestID: iiuazayyco +2025-06-18T15:26:53.381Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 446ms - RequestID: h9jrrwf5tme +2025-06-18T15:26:53.481Z [TRACE] payment-service - Operation: inventory_updated - Processing time: 128ms - RequestID: hr2nwrlqkdk +2025-06-18T15:26:53.581Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 302ms - RequestID: h0u62uh8148 +2025-06-18T15:26:53.681Z [DEBUG] notification-service - PUT /api/v1/orders - Status: 200 - Response time: 1831ms - IP: 192.168.36.218 - User: user_1076 - RequestID: asrji666pen +2025-06-18T15:26:53.781Z [TRACE] order-service - DELETE /api/v1/orders - Status: 201 - Response time: 1274ms - IP: 192.168.10.184 - User: user_1041 - RequestID: msfmm1kf46l +2025-06-18T15:26:53.881Z [INFO] auth-service - PATCH /api/v1/auth/logout - Status: 401 - Response time: 188ms - IP: 192.168.133.7 - User: user_1019 - RequestID: 0h13it118hc +2025-06-18T15:26:53.981Z [TRACE] notification-service - Operation: order_created - Processing time: 999ms - RequestID: 5ii6djzph6s +2025-06-18T15:26:54.081Z [TRACE] user-service - Auth event: login_success - User: user_1056 - IP: 192.168.64.33 - RequestID: fooc4lalotd +2025-06-18T15:26:54.181Z [DEBUG] notification-service - Database UPDATE on products - Execution time: 384ms - Rows affected: 85 - RequestID: amhvc5v2hie +2025-06-18T15:26:54.281Z [INFO] inventory-service - Auth event: password_change - User: user_1009 - IP: 192.168.170.215 - RequestID: a94lacc733 +2025-06-18T15:26:54.381Z [INFO] notification-service - Auth event: password_change - User: user_1029 - IP: 192.168.68.158 - RequestID: qzpz2k6xe9g +2025-06-18T15:26:54.481Z [DEBUG] payment-service - Auth event: password_change - User: user_1077 - IP: 192.168.227.77 - RequestID: nhcrr90dt2 +2025-06-18T15:26:54.581Z [TRACE] user-service - Operation: email_sent - Processing time: 154ms - RequestID: a8492ia48 +2025-06-18T15:26:54.681Z [DEBUG] payment-service - Operation: email_sent - Processing time: 146ms - RequestID: 8dugevvyeq9 +2025-06-18T15:26:54.781Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1030 - IP: 192.168.81.206 - RequestID: miblycaidz +2025-06-18T15:26:54.881Z [DEBUG] inventory-service - Operation: order_created - Processing time: 108ms - RequestID: d311u1666en +2025-06-18T15:26:54.981Z [TRACE] notification-service - Database INSERT on audit_logs - Execution time: 241ms - Rows affected: 40 - RequestID: d2ybvicc3gw +2025-06-18T15:26:55.081Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 280ms - RequestID: 2tlbyunoymr +2025-06-18T15:26:55.181Z [TRACE] notification-service - PUT /api/v1/users - Status: 201 - Response time: 1974ms - IP: 192.168.79.143 - User: user_1091 - RequestID: 5go4wh95ypc +2025-06-18T15:26:55.281Z [INFO] notification-service - Database UPDATE on orders - Execution time: 429ms - Rows affected: 30 - RequestID: ikjt2q1eqc +2025-06-18T15:26:55.381Z [TRACE] order-service - Auth event: login_success - User: user_1012 - IP: 192.168.79.141 - RequestID: 6yvkeek09q4 +2025-06-18T15:26:55.481Z [INFO] notification-service - Operation: cache_miss - Processing time: 273ms - RequestID: emd7crcmpcp +2025-06-18T15:26:55.581Z [DEBUG] payment-service - Auth event: login_failed - User: user_1066 - IP: 192.168.181.225 - RequestID: l7mfh99vfr +2025-06-18T15:26:55.681Z [TRACE] inventory-service - Database DELETE on orders - Execution time: 102ms - Rows affected: 21 - RequestID: phw3fxq5k0e +2025-06-18T15:26:55.781Z [INFO] user-service - Auth event: login_attempt - User: user_1009 - IP: 192.168.194.41 - RequestID: axg55j8ms6c +2025-06-18T15:26:55.881Z [INFO] notification-service - Operation: email_sent - Processing time: 992ms - RequestID: 1whcw44xkmx +2025-06-18T15:26:55.981Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1080 - IP: 192.168.113.218 - RequestID: j333fyzwdt +2025-06-18T15:26:56.081Z [INFO] notification-service - Operation: email_sent - Processing time: 236ms - RequestID: sbo5hjh8q6 +2025-06-18T15:26:56.181Z [TRACE] notification-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.1.152 - RequestID: z522c6mcg8j +2025-06-18T15:26:56.281Z [DEBUG] order-service - Database INSERT on orders - Execution time: 464ms - Rows affected: 98 - RequestID: 6bo7zyxl277 +2025-06-18T15:26:56.381Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 380ms - Rows affected: 50 - RequestID: wpxnaw7lp1b +2025-06-18T15:26:56.481Z [INFO] auth-service - Database DELETE on sessions - Execution time: 198ms - Rows affected: 55 - RequestID: 21exlic0qti +2025-06-18T15:26:56.581Z [INFO] inventory-service - Operation: email_sent - Processing time: 843ms - RequestID: wdyujiisj0c +2025-06-18T15:26:56.681Z [INFO] payment-service - Operation: order_created - Processing time: 432ms - RequestID: iorsd84fbo +2025-06-18T15:26:56.781Z [DEBUG] auth-service - Auth event: logout - User: user_1044 - IP: 192.168.11.60 - RequestID: ekyjdkbyqq +2025-06-18T15:26:56.881Z [INFO] order-service - Operation: cache_miss - Processing time: 945ms - RequestID: aniakf8cik8 +2025-06-18T15:26:56.981Z [TRACE] inventory-service - DELETE /api/v1/auth/logout - Status: 502 - Response time: 99ms - IP: 192.168.247.134 - User: user_1004 - RequestID: qo8vrxfdxms +2025-06-18T15:26:57.081Z [TRACE] notification-service - PUT /api/v1/orders - Status: 500 - Response time: 1261ms - IP: 192.168.85.229 - User: user_1016 - RequestID: t8opp19kov +2025-06-18T15:26:57.181Z [TRACE] order-service - Database UPDATE on payments - Execution time: 353ms - Rows affected: 20 - RequestID: 5pumiysdxp +2025-06-18T15:26:57.281Z [INFO] inventory-service - PATCH /api/v1/users - Status: 502 - Response time: 1181ms - IP: 192.168.85.229 - User: user_1025 - RequestID: 2ii1hat9ck5 +2025-06-18T15:26:57.381Z [DEBUG] payment-service - DELETE /api/v1/orders - Status: 200 - Response time: 1193ms - IP: 192.168.85.229 - User: user_1067 - RequestID: ouqezyjbng +2025-06-18T15:26:57.481Z [DEBUG] inventory-service - GET /api/v1/payments - Status: 503 - Response time: 374ms - IP: 192.168.97.87 - User: user_1047 - RequestID: w10fb10v1fk +2025-06-18T15:26:57.581Z [TRACE] auth-service - Auth event: logout - User: user_1012 - IP: 192.168.10.184 - RequestID: 5o2floowo8 +2025-06-18T15:26:57.681Z [INFO] payment-service - Database SELECT on audit_logs - Execution time: 107ms - Rows affected: 5 - RequestID: fgodde17vv +2025-06-18T15:26:57.781Z [TRACE] inventory-service - Auth event: login_success - User: user_1044 - IP: 192.168.181.225 - RequestID: 72j3w4wd1u7 +2025-06-18T15:26:57.881Z [TRACE] auth-service - Auth event: login_success - User: user_1005 - IP: 192.168.32.38 - RequestID: uzzlapxfbq +2025-06-18T15:26:57.981Z [TRACE] user-service - Database DELETE on audit_logs - Execution time: 29ms - Rows affected: 44 - RequestID: jkpi6t1aqjf +2025-06-18T15:26:58.081Z [INFO] payment-service - Operation: inventory_updated - Processing time: 670ms - RequestID: rn4y5eqguve +2025-06-18T15:26:58.181Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 781ms - RequestID: lb1buv6ci99 +2025-06-18T15:26:58.281Z [INFO] payment-service - Database UPDATE on payments - Execution time: 145ms - Rows affected: 72 - RequestID: 3v28jl930pg +2025-06-18T15:26:58.381Z [INFO] payment-service - Auth event: password_change - User: user_1088 - IP: 192.168.196.226 - RequestID: xciejvnj3nr +2025-06-18T15:26:58.481Z [INFO] inventory-service - PUT /api/v1/payments - Status: 200 - Response time: 1692ms - IP: 192.168.36.218 - User: user_1013 - RequestID: o57f1g22kd +2025-06-18T15:26:58.581Z [DEBUG] order-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1260ms - IP: 192.168.144.38 - User: user_1056 - RequestID: cvn3dllnnkb +2025-06-18T15:26:58.681Z [TRACE] order-service - PUT /api/v1/users - Status: 403 - Response time: 516ms - IP: 192.168.242.165 - User: user_1071 - RequestID: i36y8ngnk8 +2025-06-18T15:26:58.781Z [INFO] auth-service - Operation: cache_hit - Processing time: 399ms - RequestID: 0z5yeyzgvrin +2025-06-18T15:26:58.881Z [TRACE] inventory-service - Database UPDATE on products - Execution time: 373ms - Rows affected: 43 - RequestID: 8t1owuimczr +2025-06-18T15:26:58.981Z [TRACE] payment-service - PUT /api/v1/orders - Status: 201 - Response time: 1222ms - IP: 192.168.144.38 - User: user_1025 - RequestID: ai5iay89eyk +2025-06-18T15:26:59.081Z [DEBUG] inventory-service - Operation: cache_miss - Processing time: 166ms - RequestID: pt1jlu1ad1 +2025-06-18T15:26:59.181Z [DEBUG] order-service - GET /api/v1/users - Status: 400 - Response time: 1300ms - IP: 192.168.32.38 - User: user_1040 - RequestID: 5dx4nd1s6x6 +2025-06-18T15:26:59.281Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 342ms - Rows affected: 95 - RequestID: n5q6lajqogl +2025-06-18T15:26:59.381Z [INFO] order-service - Auth event: login_success - User: user_1069 - IP: 192.168.30.79 - RequestID: juoshx15bvh +2025-06-18T15:26:59.481Z [TRACE] notification-service - PUT /api/v1/auth/login - Status: 403 - Response time: 1499ms - IP: 192.168.79.143 - User: user_1052 - RequestID: rb0sa3nn8q +2025-06-18T15:26:59.581Z [INFO] inventory-service - Database SELECT on products - Execution time: 126ms - Rows affected: 63 - RequestID: 855ww11xib9 +2025-06-18T15:26:59.681Z [INFO] order-service - Auth event: password_change - User: user_1042 - IP: 192.168.194.41 - RequestID: 4k6dwon4gbp +2025-06-18T15:26:59.781Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1037 - IP: 192.168.227.77 - RequestID: aeg4ktjwm5 +2025-06-18T15:26:59.881Z [INFO] notification-service - Database INSERT on payments - Execution time: 383ms - Rows affected: 32 - RequestID: 6iq1ach4w29 +2025-06-18T15:26:59.981Z [INFO] order-service - Operation: payment_processed - Processing time: 657ms - RequestID: ak6vibhjlx +2025-06-18T15:27:00.081Z [INFO] auth-service - Database SELECT on users - Execution time: 37ms - Rows affected: 22 - RequestID: r3qlmkh4yvh +2025-06-18T15:27:00.181Z [INFO] inventory-service - Auth event: login_attempt - User: user_1075 - IP: 192.168.189.103 - RequestID: 6t6qk3vfdqw +2025-06-18T15:27:00.281Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 187ms - Rows affected: 24 - RequestID: omjnkrmhqeq +2025-06-18T15:27:00.381Z [INFO] user-service - Database SELECT on products - Execution time: 79ms - Rows affected: 75 - RequestID: z54sved5kl +2025-06-18T15:27:00.481Z [TRACE] inventory-service - Database SELECT on audit_logs - Execution time: 171ms - Rows affected: 89 - RequestID: 04es1phou62f +2025-06-18T15:27:00.581Z [INFO] notification-service - Operation: cache_hit - Processing time: 495ms - RequestID: mebi41eqey +2025-06-18T15:27:00.681Z [TRACE] auth-service - Database UPDATE on sessions - Execution time: 320ms - Rows affected: 53 - RequestID: fodspcf5fa9 +2025-06-18T15:27:00.781Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.68.128 - RequestID: 0gqqxaze8ubf +2025-06-18T15:27:00.881Z [TRACE] payment-service - Auth event: login_attempt - User: user_1043 - IP: 192.168.138.123 - RequestID: 1szn51drxej +2025-06-18T15:27:00.981Z [DEBUG] order-service - PUT /api/v1/users - Status: 500 - Response time: 1302ms - IP: 192.168.32.38 - User: user_1096 - RequestID: a6zsx3iy3xe +2025-06-18T15:27:01.081Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 785ms - RequestID: 70t9ufgdxcu +2025-06-18T15:27:01.181Z [DEBUG] inventory-service - DELETE /api/v1/users - Status: 503 - Response time: 89ms - IP: 192.168.229.123 - User: user_1040 - RequestID: 23y519ahhfnh +2025-06-18T15:27:01.281Z [DEBUG] user-service - Database UPDATE on users - Execution time: 345ms - Rows affected: 8 - RequestID: cpltiqshubq +2025-06-18T15:27:01.381Z [INFO] notification-service - Operation: cache_hit - Processing time: 411ms - RequestID: rl81o3jabs +2025-06-18T15:27:01.481Z [TRACE] user-service - Operation: inventory_updated - Processing time: 376ms - RequestID: 0pe4n94jgji +2025-06-18T15:27:01.581Z [TRACE] user-service - Operation: inventory_updated - Processing time: 118ms - RequestID: p2q8r7cysg +2025-06-18T15:27:01.681Z [DEBUG] user-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 1266ms - IP: 192.168.133.7 - User: user_1061 - RequestID: hzv7is86v1g +2025-06-18T15:27:01.781Z [INFO] inventory-service - PATCH /api/v1/auth/login - Status: 503 - Response time: 971ms - IP: 192.168.189.103 - User: user_1031 - RequestID: s0uzich80z +2025-06-18T15:27:01.881Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 400 - Response time: 984ms - IP: 192.168.235.117 - User: user_1010 - RequestID: 1q9x0p2emor +2025-06-18T15:27:01.981Z [INFO] auth-service - GET /api/v1/inventory - Status: 401 - Response time: 545ms - IP: 192.168.229.123 - User: user_1083 - RequestID: 6pnwhzphv45 +2025-06-18T15:27:02.081Z [INFO] inventory-service - Auth event: login_failed - User: user_1098 - IP: 192.168.97.87 - RequestID: qk2ukpkjok +2025-06-18T15:27:02.181Z [INFO] user-service - Database SELECT on audit_logs - Execution time: 22ms - Rows affected: 24 - RequestID: cu9sraior +2025-06-18T15:27:02.281Z [DEBUG] auth-service - Operation: cache_hit - Processing time: 227ms - RequestID: dftk6toe6x +2025-06-18T15:27:02.381Z [INFO] payment-service - Operation: cache_miss - Processing time: 281ms - RequestID: oin3rjhe8s +2025-06-18T15:27:02.481Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 738ms - RequestID: d3gg66ozmki +2025-06-18T15:27:02.581Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1040 - IP: 192.168.144.38 - RequestID: 8rd3dvwbogt +2025-06-18T15:27:02.681Z [DEBUG] order-service - Database DELETE on products - Execution time: 44ms - Rows affected: 29 - RequestID: bc8s2s26fxf +2025-06-18T15:27:02.781Z [TRACE] user-service - Operation: inventory_updated - Processing time: 194ms - RequestID: bc3f2saf1ae +2025-06-18T15:27:02.881Z [INFO] notification-service - Operation: cache_hit - Processing time: 658ms - RequestID: 7kubduuyyxq +2025-06-18T15:27:02.981Z [DEBUG] auth-service - Operation: notification_queued - Processing time: 288ms - RequestID: qwytea759vj +2025-06-18T15:27:03.081Z [TRACE] order-service - Database DELETE on users - Execution time: 265ms - Rows affected: 66 - RequestID: 1mgujo50u99 +2025-06-18T15:27:03.181Z [DEBUG] inventory-service - Database DELETE on users - Execution time: 230ms - Rows affected: 1 - RequestID: p8x6l9uf8ja +2025-06-18T15:27:03.281Z [DEBUG] notification-service - Auth event: login_success - User: user_1017 - IP: 192.168.189.103 - RequestID: ev1p21r440d +2025-06-18T15:27:03.381Z [INFO] order-service - Operation: cache_hit - Processing time: 906ms - RequestID: nl5q9y8mvv +2025-06-18T15:27:03.481Z [DEBUG] notification-service - Database SELECT on products - Execution time: 119ms - Rows affected: 36 - RequestID: um4vhx29b9p +2025-06-18T15:27:03.581Z [INFO] notification-service - Auth event: login_failed - User: user_1009 - IP: 192.168.68.128 - RequestID: dbx6axeozbi +2025-06-18T15:27:03.681Z [DEBUG] payment-service - Auth event: logout - User: user_1094 - IP: 192.168.167.32 - RequestID: wpk8nl2gl5d +2025-06-18T15:27:03.781Z [INFO] order-service - POST /api/v1/inventory - Status: 401 - Response time: 1481ms - IP: 192.168.79.143 - User: user_1058 - RequestID: q60clh5u83l +2025-06-18T15:27:03.881Z [INFO] auth-service - Auth event: token_refresh - User: user_1058 - IP: 192.168.159.94 - RequestID: zm3xh92ph3 +2025-06-18T15:27:03.981Z [INFO] inventory-service - Database DELETE on users - Execution time: 106ms - Rows affected: 51 - RequestID: ljuyk3qed4 +2025-06-18T15:27:04.081Z [TRACE] inventory-service - Operation: email_sent - Processing time: 339ms - RequestID: e839si3bhis +2025-06-18T15:27:04.181Z [TRACE] notification-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1323ms - IP: 192.168.36.218 - User: user_1042 - RequestID: xszp8jzuc9m +2025-06-18T15:27:04.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1041 - IP: 192.168.235.117 - RequestID: lm8knzi6lvn +2025-06-18T15:27:04.381Z [TRACE] inventory-service - POST /api/v1/orders - Status: 401 - Response time: 1632ms - IP: 192.168.33.76 - User: user_1084 - RequestID: 0ssavovjbse +2025-06-18T15:27:04.481Z [TRACE] order-service - Auth event: login_failed - User: user_1025 - IP: 192.168.196.226 - RequestID: 48dreop8bqj +2025-06-18T15:27:04.581Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 404 - Response time: 1089ms - IP: 192.168.138.123 - User: user_1034 - RequestID: 95nihp141z6 +2025-06-18T15:27:04.681Z [INFO] order-service - Operation: webhook_sent - Processing time: 630ms - RequestID: 1xw7wvuqjpb +2025-06-18T15:27:04.781Z [INFO] user-service - Operation: inventory_updated - Processing time: 391ms - RequestID: 9s5vlfqxjq5 +2025-06-18T15:27:04.881Z [TRACE] order-service - Database SELECT on payments - Execution time: 494ms - Rows affected: 72 - RequestID: zxfc6oem308 +2025-06-18T15:27:04.981Z [TRACE] auth-service - Auth event: token_refresh - User: user_1018 - IP: 192.168.240.169 - RequestID: bs586kwljhm +2025-06-18T15:27:05.081Z [DEBUG] notification-service - Auth event: password_change - User: user_1039 - IP: 192.168.240.169 - RequestID: pkky0i4ttpj +2025-06-18T15:27:05.181Z [DEBUG] user-service - GET /api/v1/auth/logout - Status: 400 - Response time: 100ms - IP: 192.168.14.77 - User: user_1066 - RequestID: u1fpejj6ogp +2025-06-18T15:27:05.281Z [INFO] payment-service - Operation: notification_queued - Processing time: 385ms - RequestID: f5ujxiinpl +2025-06-18T15:27:05.381Z [DEBUG] order-service - Auth event: login_attempt - User: user_1088 - IP: 192.168.68.158 - RequestID: n8xfmwdo3c8 +2025-06-18T15:27:05.481Z [DEBUG] payment-service - POST /api/v1/payments - Status: 502 - Response time: 1296ms - IP: 192.168.133.7 - User: user_1023 - RequestID: lwjbxplvfp +2025-06-18T15:27:05.581Z [TRACE] notification-service - Operation: cache_hit - Processing time: 91ms - RequestID: 0cfz75ufhadm +2025-06-18T15:27:05.681Z [DEBUG] inventory-service - Auth event: password_change - User: user_1027 - IP: 192.168.227.77 - RequestID: pm7ap1rroxk +2025-06-18T15:27:05.781Z [TRACE] payment-service - Database DELETE on orders - Execution time: 407ms - Rows affected: 69 - RequestID: cjkdxv5vyyn +2025-06-18T15:27:05.881Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 201 - Response time: 1865ms - IP: 192.168.1.152 - User: user_1075 - RequestID: bqkm6ox7v2 +2025-06-18T15:27:05.981Z [TRACE] payment-service - Database INSERT on payments - Execution time: 135ms - Rows affected: 69 - RequestID: dvrxxmh6xct +2025-06-18T15:27:06.081Z [INFO] notification-service - Operation: email_sent - Processing time: 925ms - RequestID: 9d0yesqdyti +2025-06-18T15:27:06.181Z [INFO] payment-service - DELETE /api/v1/auth/login - Status: 200 - Response time: 188ms - IP: 192.168.211.72 - User: user_1010 - RequestID: s3q3rmr849i +2025-06-18T15:27:06.281Z [DEBUG] payment-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 808ms - IP: 192.168.227.233 - User: user_1060 - RequestID: xu92pwv2x3 +2025-06-18T15:27:06.381Z [DEBUG] payment-service - Auth event: logout - User: user_1071 - IP: 192.168.189.103 - RequestID: 6p1ndnhha06 +2025-06-18T15:27:06.481Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 1513ms - IP: 192.168.229.123 - User: user_1048 - RequestID: 3ywuoxbtgi9 +2025-06-18T15:27:06.581Z [TRACE] user-service - Database INSERT on orders - Execution time: 294ms - Rows affected: 63 - RequestID: s0ehnbgjdm +2025-06-18T15:27:06.681Z [INFO] auth-service - Auth event: login_success - User: user_1018 - IP: 192.168.36.218 - RequestID: 6n0671ulyfn +2025-06-18T15:27:06.781Z [DEBUG] order-service - Database UPDATE on audit_logs - Execution time: 38ms - Rows affected: 66 - RequestID: 6d9z3b9sthj +2025-06-18T15:27:06.881Z [TRACE] inventory-service - Database SELECT on products - Execution time: 474ms - Rows affected: 29 - RequestID: 8gab8k2xrph +2025-06-18T15:27:06.981Z [DEBUG] payment-service - Database UPDATE on products - Execution time: 150ms - Rows affected: 98 - RequestID: 6ll9b153lm7 +2025-06-18T15:27:07.081Z [INFO] user-service - Database INSERT on products - Execution time: 128ms - Rows affected: 68 - RequestID: 9tykh8d6yod +2025-06-18T15:27:07.181Z [INFO] payment-service - Operation: email_sent - Processing time: 78ms - RequestID: nhpubyzs1kh +2025-06-18T15:27:07.281Z [DEBUG] payment-service - POST /api/v1/auth/login - Status: 401 - Response time: 880ms - IP: 192.168.211.72 - User: user_1084 - RequestID: cir3qb8spxq +2025-06-18T15:27:07.381Z [DEBUG] notification-service - Auth event: login_success - User: user_1088 - IP: 192.168.11.60 - RequestID: t8ort2yuodh +2025-06-18T15:27:07.481Z [TRACE] payment-service - PATCH /api/v1/payments - Status: 401 - Response time: 1696ms - IP: 192.168.11.60 - User: user_1061 - RequestID: vdlsgb9pr1 +2025-06-18T15:27:07.581Z [TRACE] payment-service - Operation: webhook_sent - Processing time: 232ms - RequestID: uop7sdc0th +2025-06-18T15:27:07.681Z [DEBUG] auth-service - Auth event: password_change - User: user_1052 - IP: 192.168.28.146 - RequestID: df2bpu9p1tv +2025-06-18T15:27:07.781Z [DEBUG] notification-service - Auth event: logout - User: user_1030 - IP: 192.168.68.128 - RequestID: n6a83ccazh +2025-06-18T15:27:07.881Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 1035ms - RequestID: kb8e2gi5yrs +2025-06-18T15:27:07.981Z [INFO] user-service - Database SELECT on payments - Execution time: 129ms - Rows affected: 15 - RequestID: uorn6j9x6r +2025-06-18T15:27:08.081Z [DEBUG] inventory-service - Auth event: login_success - User: user_1080 - IP: 192.168.141.100 - RequestID: 8ott8hj8ogo +2025-06-18T15:27:08.181Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 201 - Response time: 1413ms - IP: 192.168.79.116 - User: user_1080 - RequestID: r0c5qdh8mpi +2025-06-18T15:27:08.281Z [TRACE] auth-service - Auth event: login_success - User: user_1070 - IP: 192.168.44.5 - RequestID: 7h4ikx9tssq +2025-06-18T15:27:08.381Z [TRACE] notification-service - Operation: webhook_sent - Processing time: 743ms - RequestID: fgvigbmreog +2025-06-18T15:27:08.481Z [DEBUG] user-service - Database INSERT on products - Execution time: 274ms - Rows affected: 83 - RequestID: fciw3xbzy36 +2025-06-18T15:27:08.581Z [TRACE] inventory-service - Database SELECT on payments - Execution time: 418ms - Rows affected: 79 - RequestID: dql5ekboif +2025-06-18T15:27:08.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 977ms - RequestID: 7krb4gkhxtv +2025-06-18T15:27:08.781Z [DEBUG] order-service - POST /api/v1/auth/logout - Status: 500 - Response time: 971ms - IP: 192.168.196.226 - User: user_1022 - RequestID: 6g69k4pvjwr +2025-06-18T15:27:08.881Z [DEBUG] inventory-service - Database DELETE on audit_logs - Execution time: 236ms - Rows affected: 11 - RequestID: r8ggvuroopd +2025-06-18T15:27:08.981Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 401 - Response time: 1491ms - IP: 192.168.28.146 - User: user_1055 - RequestID: u4nqaa8cps +2025-06-18T15:27:09.081Z [INFO] order-service - Operation: cache_miss - Processing time: 271ms - RequestID: 60jbv92ubwu +2025-06-18T15:27:09.181Z [TRACE] notification-service - Operation: order_created - Processing time: 489ms - RequestID: ff0bxzarv69 +2025-06-18T15:27:09.281Z [INFO] auth-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.247.134 - RequestID: lmyfq52bei +2025-06-18T15:27:09.381Z [DEBUG] inventory-service - Auth event: password_change - User: user_1008 - IP: 192.168.104.37 - RequestID: keeaj3m3tg +2025-06-18T15:27:09.481Z [DEBUG] user-service - Operation: notification_queued - Processing time: 656ms - RequestID: g9n329fxd6t +2025-06-18T15:27:09.581Z [TRACE] notification-service - PATCH /api/v1/inventory - Status: 403 - Response time: 212ms - IP: 192.168.187.199 - User: user_1072 - RequestID: sq03lcozra +2025-06-18T15:27:09.681Z [INFO] payment-service - Database DELETE on payments - Execution time: 143ms - Rows affected: 20 - RequestID: m3swfmiky6 +2025-06-18T15:27:09.781Z [INFO] user-service - Auth event: logout - User: user_1056 - IP: 192.168.227.233 - RequestID: ontvi2789xa +2025-06-18T15:27:09.881Z [TRACE] user-service - Database SELECT on products - Execution time: 175ms - Rows affected: 1 - RequestID: 1dsldd9mq7j +2025-06-18T15:27:09.981Z [DEBUG] payment-service - Operation: email_sent - Processing time: 573ms - RequestID: amg1bdgpqh +2025-06-18T15:27:10.081Z [INFO] order-service - PUT /api/v1/inventory - Status: 500 - Response time: 112ms - IP: 192.168.189.103 - User: user_1089 - RequestID: cpt76d2r0ai +2025-06-18T15:27:10.181Z [INFO] notification-service - PATCH /api/v1/inventory - Status: 403 - Response time: 977ms - IP: 192.168.46.63 - User: user_1015 - RequestID: q3gyv99j4to +2025-06-18T15:27:10.281Z [INFO] auth-service - Operation: payment_processed - Processing time: 913ms - RequestID: 8ud9lmthvw3 +2025-06-18T15:27:10.381Z [INFO] order-service - Auth event: logout - User: user_1026 - IP: 192.168.141.100 - RequestID: 9x06jxw5i9b +2025-06-18T15:27:10.481Z [DEBUG] auth-service - DELETE /api/v1/payments - Status: 502 - Response time: 1015ms - IP: 192.168.235.117 - User: user_1071 - RequestID: f1zvn78cin7 +2025-06-18T15:27:10.581Z [DEBUG] payment-service - Auth event: logout - User: user_1030 - IP: 192.168.31.117 - RequestID: 074ng42fyfw7 +2025-06-18T15:27:10.681Z [DEBUG] order-service - POST /api/v1/orders - Status: 201 - Response time: 228ms - IP: 192.168.79.141 - User: user_1011 - RequestID: dz37zgqhcpm +2025-06-18T15:27:10.781Z [TRACE] user-service - POST /api/v1/auth/login - Status: 503 - Response time: 1114ms - IP: 192.168.147.171 - User: user_1010 - RequestID: v9r5ewsi6wn +2025-06-18T15:27:10.881Z [INFO] order-service - Database SELECT on products - Execution time: 369ms - Rows affected: 38 - RequestID: 89h6cmfyw7j +2025-06-18T15:27:10.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1039 - IP: 192.168.68.158 - RequestID: yqhien3wa09 +2025-06-18T15:27:11.081Z [INFO] notification-service - GET /api/v1/payments - Status: 200 - Response time: 1428ms - IP: 192.168.32.38 - User: user_1044 - RequestID: xzk3d4v1pm +2025-06-18T15:27:11.181Z [DEBUG] auth-service - GET /api/v1/auth/logout - Status: 403 - Response time: 1166ms - IP: 192.168.181.225 - User: user_1026 - RequestID: vjc1tzv3wo +2025-06-18T15:27:11.281Z [INFO] inventory-service - Auth event: login_success - User: user_1067 - IP: 192.168.167.32 - RequestID: qn1gv0uq8ns +2025-06-18T15:27:11.381Z [TRACE] user-service - Auth event: login_failed - User: user_1026 - IP: 192.168.113.218 - RequestID: exaxckpd43 +2025-06-18T15:27:11.481Z [TRACE] auth-service - Auth event: login_success - User: user_1013 - IP: 192.168.138.123 - RequestID: bpambl6ei1 +2025-06-18T15:27:11.581Z [TRACE] inventory-service - PATCH /api/v1/inventory - Status: 401 - Response time: 83ms - IP: 192.168.232.72 - User: user_1015 - RequestID: gbobb3a69qc +2025-06-18T15:27:11.681Z [DEBUG] payment-service - Auth event: login_attempt - User: user_1068 - IP: 192.168.13.72 - RequestID: 2m622p1ceyu +2025-06-18T15:27:11.781Z [DEBUG] user-service - Auth event: login_success - User: user_1027 - IP: 192.168.31.117 - RequestID: xi2q1sucmt +2025-06-18T15:27:11.881Z [TRACE] order-service - Auth event: logout - User: user_1086 - IP: 192.168.79.116 - RequestID: o3uk4x5l56r +2025-06-18T15:27:11.981Z [INFO] notification-service - Auth event: logout - User: user_1067 - IP: 192.168.85.229 - RequestID: 8sunx4sle +2025-06-18T15:27:12.081Z [INFO] order-service - POST /api/v1/inventory - Status: 503 - Response time: 1479ms - IP: 192.168.53.133 - User: user_1059 - RequestID: vn5ay81fuec +2025-06-18T15:27:12.181Z [INFO] auth-service - Auth event: token_refresh - User: user_1068 - IP: 192.168.133.7 - RequestID: zj9rbln6gj +2025-06-18T15:27:12.281Z [TRACE] auth-service - DELETE /api/v1/auth/logout - Status: 500 - Response time: 759ms - IP: 192.168.46.63 - User: user_1048 - RequestID: pxs05lenii +2025-06-18T15:27:12.381Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 400 - Response time: 1150ms - IP: 192.168.227.77 - User: user_1033 - RequestID: iq8u80stsj +2025-06-18T15:27:12.481Z [TRACE] payment-service - Operation: payment_processed - Processing time: 784ms - RequestID: nhu1797ur7 +2025-06-18T15:27:12.581Z [TRACE] payment-service - Operation: notification_queued - Processing time: 614ms - RequestID: vm0h4avklzq +2025-06-18T15:27:12.681Z [INFO] inventory-service - Operation: cache_hit - Processing time: 299ms - RequestID: nlxwml6r8sa +2025-06-18T15:27:12.781Z [TRACE] order-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1811ms - IP: 192.168.232.72 - User: user_1005 - RequestID: pq30u6g6b7e +2025-06-18T15:27:12.881Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 112ms - Rows affected: 14 - RequestID: mynaz4fw62 +2025-06-18T15:27:12.981Z [INFO] auth-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1720ms - IP: 192.168.64.33 - User: user_1065 - RequestID: wmmxr8rl7va +2025-06-18T15:27:13.081Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1026 - IP: 192.168.68.158 - RequestID: u78e7uw6w4 +2025-06-18T15:27:13.181Z [DEBUG] notification-service - Database SELECT on users - Execution time: 486ms - Rows affected: 69 - RequestID: xtz4h4aozp +2025-06-18T15:27:13.281Z [DEBUG] payment-service - Database SELECT on users - Execution time: 94ms - Rows affected: 66 - RequestID: msdt4a3i95j +2025-06-18T15:27:13.381Z [INFO] inventory-service - Database UPDATE on users - Execution time: 259ms - Rows affected: 17 - RequestID: 90ytem5mv5r +2025-06-18T15:27:13.481Z [TRACE] user-service - Database INSERT on users - Execution time: 495ms - Rows affected: 3 - RequestID: e43w1dlhsq4 +2025-06-18T15:27:13.581Z [INFO] auth-service - Database SELECT on audit_logs - Execution time: 335ms - Rows affected: 12 - RequestID: hedq7zi433f +2025-06-18T15:27:13.681Z [TRACE] payment-service - Database INSERT on orders - Execution time: 47ms - Rows affected: 10 - RequestID: ine3maq4g2i +2025-06-18T15:27:13.781Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 983ms - RequestID: fkjh06w5jhu +2025-06-18T15:27:13.881Z [TRACE] payment-service - GET /api/v1/payments - Status: 502 - Response time: 1950ms - IP: 192.168.32.38 - User: user_1058 - RequestID: bkp22ko4oir +2025-06-18T15:27:13.981Z [TRACE] notification-service - Operation: notification_queued - Processing time: 599ms - RequestID: qwb4qb4wrc +2025-06-18T15:27:14.081Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 986ms - RequestID: e345amt2g9o +2025-06-18T15:27:14.181Z [INFO] notification-service - Auth event: password_change - User: user_1002 - IP: 192.168.79.143 - RequestID: oibfrnm7bo +2025-06-18T15:27:14.281Z [TRACE] order-service - Auth event: token_refresh - User: user_1029 - IP: 192.168.32.38 - RequestID: p8lxnvyqhvq +2025-06-18T15:27:14.381Z [TRACE] user-service - Operation: webhook_sent - Processing time: 195ms - RequestID: 54a3qs5amvv +2025-06-18T15:27:14.481Z [TRACE] user-service - Auth event: login_attempt - User: user_1053 - IP: 192.168.158.144 - RequestID: 9y8i8d7j474 +2025-06-18T15:27:14.581Z [TRACE] order-service - GET /api/v1/inventory - Status: 400 - Response time: 1069ms - IP: 192.168.81.206 - User: user_1070 - RequestID: o0pocak7j98 +2025-06-18T15:27:14.681Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 371ms - RequestID: rs8js9jexvh +2025-06-18T15:27:14.781Z [INFO] notification-service - Operation: email_sent - Processing time: 930ms - RequestID: dkexn4ixin +2025-06-18T15:27:14.881Z [TRACE] notification-service - PUT /api/v1/inventory - Status: 400 - Response time: 1619ms - IP: 192.168.79.143 - User: user_1081 - RequestID: m429sh3pwr +2025-06-18T15:27:14.981Z [DEBUG] user-service - Auth event: login_attempt - User: user_1072 - IP: 192.168.46.63 - RequestID: dqwf1dx9bap +2025-06-18T15:27:15.081Z [INFO] notification-service - POST /api/v1/users - Status: 404 - Response time: 1597ms - IP: 192.168.229.123 - User: user_1050 - RequestID: pya0cg5qi1m +2025-06-18T15:27:15.181Z [DEBUG] inventory-service - Database DELETE on payments - Execution time: 119ms - Rows affected: 76 - RequestID: esla3fi2tl5 +2025-06-18T15:27:15.281Z [DEBUG] notification-service - Database SELECT on orders - Execution time: 364ms - Rows affected: 62 - RequestID: d6k19io22hw +2025-06-18T15:27:15.381Z [DEBUG] notification-service - Operation: inventory_updated - Processing time: 191ms - RequestID: 9ccc703dvjs +2025-06-18T15:27:15.481Z [DEBUG] user-service - Database INSERT on audit_logs - Execution time: 227ms - Rows affected: 82 - RequestID: 8cll23fk4s +2025-06-18T15:27:15.581Z [TRACE] order-service - Database INSERT on orders - Execution time: 176ms - Rows affected: 71 - RequestID: x23uq2j3wgf +2025-06-18T15:27:15.681Z [DEBUG] notification-service - PUT /api/v1/auth/login - Status: 400 - Response time: 526ms - IP: 192.168.247.134 - User: user_1079 - RequestID: qymbzmgwl4 +2025-06-18T15:27:15.781Z [TRACE] order-service - Operation: email_sent - Processing time: 997ms - RequestID: s3hghtsuu8 +2025-06-18T15:27:15.881Z [INFO] notification-service - Database UPDATE on users - Execution time: 129ms - Rows affected: 79 - RequestID: u4717bu8vxq +2025-06-18T15:27:15.981Z [INFO] order-service - Database UPDATE on orders - Execution time: 209ms - Rows affected: 90 - RequestID: u8teekkqihr +2025-06-18T15:27:16.081Z [INFO] inventory-service - Operation: order_created - Processing time: 533ms - RequestID: uk238cy77qg +2025-06-18T15:27:16.181Z [INFO] user-service - Auth event: token_refresh - User: user_1002 - IP: 192.168.13.72 - RequestID: qw61rt3ep5 +2025-06-18T15:27:16.281Z [TRACE] user-service - DELETE /api/v1/inventory - Status: 503 - Response time: 244ms - IP: 192.168.68.128 - User: user_1089 - RequestID: c06bnz7jtpc +2025-06-18T15:27:16.381Z [INFO] payment-service - Operation: cache_miss - Processing time: 661ms - RequestID: idp99pe01n +2025-06-18T15:27:16.481Z [TRACE] auth-service - Operation: webhook_sent - Processing time: 479ms - RequestID: frm6tzgptq +2025-06-18T15:27:16.581Z [INFO] notification-service - Operation: email_sent - Processing time: 860ms - RequestID: 4yczoj630u +2025-06-18T15:27:16.681Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1002 - IP: 192.168.85.229 - RequestID: 6z44vttwv8l +2025-06-18T15:27:16.781Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 155ms - RequestID: 8od6953mbt9 +2025-06-18T15:27:16.881Z [DEBUG] user-service - Operation: payment_processed - Processing time: 502ms - RequestID: luo3jvyzyv +2025-06-18T15:27:16.981Z [DEBUG] payment-service - Database SELECT on users - Execution time: 97ms - Rows affected: 32 - RequestID: 3vyze2xoc38 +2025-06-18T15:27:17.081Z [TRACE] order-service - DELETE /api/v1/inventory - Status: 201 - Response time: 181ms - IP: 192.168.138.123 - User: user_1058 - RequestID: 935p8zaw5f8 +2025-06-18T15:27:17.181Z [DEBUG] auth-service - Operation: inventory_updated - Processing time: 403ms - RequestID: 93s7k54sci +2025-06-18T15:27:17.281Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 76ms - RequestID: scq4cqabbmg +2025-06-18T15:27:17.381Z [INFO] payment-service - Operation: cache_hit - Processing time: 614ms - RequestID: 6b2cz2ahzl +2025-06-18T15:27:17.481Z [TRACE] payment-service - GET /api/v1/users - Status: 404 - Response time: 1283ms - IP: 192.168.68.158 - User: user_1095 - RequestID: w8ivgqjg93 +2025-06-18T15:27:17.581Z [DEBUG] order-service - PUT /api/v1/payments - Status: 201 - Response time: 1558ms - IP: 192.168.138.123 - User: user_1048 - RequestID: fjwtl1hbg0d +2025-06-18T15:27:17.681Z [TRACE] payment-service - Operation: cache_hit - Processing time: 95ms - RequestID: cwvsaxy8b5k +2025-06-18T15:27:17.781Z [DEBUG] order-service - Operation: cache_miss - Processing time: 1000ms - RequestID: sz8jqwkbcs +2025-06-18T15:27:17.881Z [TRACE] notification-service - Database SELECT on payments - Execution time: 400ms - Rows affected: 15 - RequestID: 95huowp9swv +2025-06-18T15:27:17.981Z [DEBUG] notification-service - Auth event: login_attempt - User: user_1015 - IP: 192.168.44.5 - RequestID: tr7taz3a1k8 +2025-06-18T15:27:18.081Z [DEBUG] auth-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1013ms - IP: 192.168.28.146 - User: user_1037 - RequestID: rlsubm2n6kf +2025-06-18T15:27:18.181Z [DEBUG] order-service - DELETE /api/v1/users - Status: 503 - Response time: 1939ms - IP: 192.168.147.171 - User: user_1039 - RequestID: oqc647jze1 +2025-06-18T15:27:18.281Z [TRACE] order-service - Database INSERT on sessions - Execution time: 318ms - Rows affected: 46 - RequestID: 2wqdrkh9iid +2025-06-18T15:27:18.381Z [DEBUG] user-service - Auth event: login_failed - User: user_1078 - IP: 192.168.85.229 - RequestID: m6x79mlw4dr +2025-06-18T15:27:18.481Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 625ms - RequestID: l9ctmogsmc +2025-06-18T15:27:18.581Z [DEBUG] order-service - Database INSERT on users - Execution time: 345ms - Rows affected: 2 - RequestID: 100u1f3yegw +2025-06-18T15:27:18.681Z [DEBUG] notification-service - Auth event: logout - User: user_1042 - IP: 192.168.211.72 - RequestID: svozf1b5pzp +2025-06-18T15:27:18.781Z [INFO] user-service - DELETE /api/v1/inventory - Status: 500 - Response time: 1106ms - IP: 192.168.229.123 - User: user_1092 - RequestID: ok694jv9kpc +2025-06-18T15:27:18.881Z [INFO] notification-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.53.133 - RequestID: mhltwy9ote +2025-06-18T15:27:18.981Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1076 - IP: 192.168.46.63 - RequestID: yiurcck0ce +2025-06-18T15:27:19.081Z [INFO] inventory-service - Auth event: login_success - User: user_1053 - IP: 192.168.32.38 - RequestID: z4bil7r6fu +2025-06-18T15:27:19.181Z [TRACE] payment-service - Operation: payment_processed - Processing time: 333ms - RequestID: 3eyan4oslmh +2025-06-18T15:27:19.281Z [DEBUG] auth-service - Auth event: login_failed - User: user_1040 - IP: 192.168.85.229 - RequestID: ryknn5h7idk +2025-06-18T15:27:19.381Z [DEBUG] order-service - Auth event: token_refresh - User: user_1046 - IP: 192.168.141.100 - RequestID: jgb7dkmogqn +2025-06-18T15:27:19.481Z [INFO] user-service - Database UPDATE on audit_logs - Execution time: 59ms - Rows affected: 48 - RequestID: wcdvqepcv2q +2025-06-18T15:27:19.581Z [DEBUG] notification-service - Operation: notification_queued - Processing time: 404ms - RequestID: 0936ysc12736 +2025-06-18T15:27:19.681Z [DEBUG] user-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.13.72 - RequestID: os2nu9v4wlm +2025-06-18T15:27:19.781Z [TRACE] user-service - Operation: webhook_sent - Processing time: 391ms - RequestID: bmxc3xtwby4 +2025-06-18T15:27:19.881Z [TRACE] inventory-service - Auth event: logout - User: user_1086 - IP: 192.168.13.72 - RequestID: 4o5stmnhdxp +2025-06-18T15:27:19.981Z [DEBUG] notification-service - Auth event: login_failed - User: user_1075 - IP: 192.168.13.72 - RequestID: fx0j5bedrz +2025-06-18T15:27:20.081Z [DEBUG] user-service - DELETE /api/v1/auth/login - Status: 401 - Response time: 954ms - IP: 192.168.167.32 - User: user_1055 - RequestID: 0b5jbyudhlf +2025-06-18T15:27:20.181Z [DEBUG] user-service - Operation: order_created - Processing time: 253ms - RequestID: j5szwtxfvej +2025-06-18T15:27:20.281Z [INFO] order-service - Database UPDATE on users - Execution time: 318ms - Rows affected: 14 - RequestID: b0z6no54uag +2025-06-18T15:27:20.381Z [DEBUG] order-service - Auth event: token_refresh - User: user_1078 - IP: 192.168.240.169 - RequestID: r0pakv529jp +2025-06-18T15:27:20.481Z [INFO] payment-service - Operation: cache_miss - Processing time: 596ms - RequestID: tyvv52k73xf +2025-06-18T15:27:20.581Z [TRACE] auth-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1544ms - IP: 192.168.113.218 - User: user_1001 - RequestID: unz35ku10s +2025-06-18T15:27:20.681Z [INFO] payment-service - Database SELECT on sessions - Execution time: 440ms - Rows affected: 1 - RequestID: qe6mao1wkfb +2025-06-18T15:27:20.781Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1069 - IP: 192.168.242.165 - RequestID: z2bpamk33b7 +2025-06-18T15:27:20.881Z [INFO] user-service - Operation: notification_queued - Processing time: 1034ms - RequestID: v4nkvlmdja +2025-06-18T15:27:20.981Z [TRACE] order-service - Auth event: password_change - User: user_1033 - IP: 192.168.170.215 - RequestID: 6v5pd8r21a4 +2025-06-18T15:27:21.081Z [TRACE] payment-service - Operation: payment_processed - Processing time: 839ms - RequestID: kdhb0idkg0c +2025-06-18T15:27:21.181Z [INFO] user-service - DELETE /api/v1/payments - Status: 403 - Response time: 527ms - IP: 192.168.32.38 - User: user_1050 - RequestID: 1y4qsjdmjey +2025-06-18T15:27:21.281Z [DEBUG] inventory-service - Database DELETE on sessions - Execution time: 94ms - Rows affected: 48 - RequestID: dghaeiu5656 +2025-06-18T15:27:21.381Z [INFO] notification-service - Auth event: logout - User: user_1056 - IP: 192.168.240.169 - RequestID: x42di4zz8yr +2025-06-18T15:27:21.481Z [DEBUG] payment-service - Auth event: token_refresh - User: user_1000 - IP: 192.168.100.240 - RequestID: ff8dqlx2079 +2025-06-18T15:27:21.581Z [DEBUG] notification-service - Auth event: password_change - User: user_1063 - IP: 192.168.141.100 - RequestID: k87v269ltom +2025-06-18T15:27:21.681Z [TRACE] auth-service - Operation: cache_miss - Processing time: 459ms - RequestID: yvz94vqbzcg +2025-06-18T15:27:21.781Z [DEBUG] auth-service - Database INSERT on products - Execution time: 338ms - Rows affected: 14 - RequestID: row9bdbghoo +2025-06-18T15:27:21.881Z [INFO] notification-service - Auth event: password_change - User: user_1065 - IP: 192.168.33.76 - RequestID: drda0a5hn7 +2025-06-18T15:27:21.981Z [TRACE] order-service - Database SELECT on orders - Execution time: 352ms - Rows affected: 64 - RequestID: 4g0xlbgewc9 +2025-06-18T15:27:22.081Z [INFO] user-service - PUT /api/v1/auth/logout - Status: 502 - Response time: 1304ms - IP: 192.168.46.63 - User: user_1005 - RequestID: 7qn25rnsuq +2025-06-18T15:27:22.181Z [INFO] auth-service - Operation: cache_miss - Processing time: 1033ms - RequestID: mqsaktmg54k +2025-06-18T15:27:22.281Z [TRACE] inventory-service - Database SELECT on products - Execution time: 22ms - Rows affected: 65 - RequestID: hvfe7gyrq77 +2025-06-18T15:27:22.381Z [TRACE] notification-service - Auth event: login_success - User: user_1096 - IP: 192.168.97.87 - RequestID: n2wfjeat27 +2025-06-18T15:27:22.481Z [DEBUG] payment-service - POST /api/v1/orders - Status: 502 - Response time: 363ms - IP: 192.168.13.72 - User: user_1094 - RequestID: zr717lmd7gd +2025-06-18T15:27:22.581Z [DEBUG] payment-service - POST /api/v1/inventory - Status: 404 - Response time: 1692ms - IP: 192.168.229.123 - User: user_1028 - RequestID: i7h286139g +2025-06-18T15:27:22.681Z [TRACE] payment-service - PATCH /api/v1/auth/logout - Status: 502 - Response time: 1657ms - IP: 192.168.227.233 - User: user_1084 - RequestID: ga3iwnl80ju +2025-06-18T15:27:22.781Z [TRACE] order-service - PUT /api/v1/auth/logout - Status: 404 - Response time: 105ms - IP: 192.168.227.233 - User: user_1077 - RequestID: vw93zh4l4e +2025-06-18T15:27:22.881Z [DEBUG] auth-service - Operation: order_created - Processing time: 485ms - RequestID: n12yg58izla +2025-06-18T15:27:22.981Z [INFO] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 697ms - IP: 192.168.229.123 - User: user_1089 - RequestID: 15lrsubu1i +2025-06-18T15:27:23.081Z [DEBUG] notification-service - DELETE /api/v1/auth/login - Status: 403 - Response time: 388ms - IP: 192.168.28.146 - User: user_1026 - RequestID: te31pu7pfer +2025-06-18T15:27:23.181Z [INFO] auth-service - Database INSERT on products - Execution time: 275ms - Rows affected: 85 - RequestID: eajlcwuicyr +2025-06-18T15:27:23.281Z [TRACE] notification-service - Operation: cache_hit - Processing time: 1045ms - RequestID: oeezjcpydfc +2025-06-18T15:27:23.381Z [TRACE] payment-service - Auth event: login_success - User: user_1035 - IP: 192.168.36.218 - RequestID: wjep6aa534g +2025-06-18T15:27:23.481Z [INFO] auth-service - PUT /api/v1/auth/login - Status: 400 - Response time: 86ms - IP: 192.168.159.94 - User: user_1032 - RequestID: 8peuc65yafv +2025-06-18T15:27:23.581Z [INFO] auth-service - Database UPDATE on payments - Execution time: 144ms - Rows affected: 5 - RequestID: z58nk2ihtz +2025-06-18T15:27:23.681Z [DEBUG] inventory-service - Database DELETE on products - Execution time: 484ms - Rows affected: 77 - RequestID: mpg974hspqs +2025-06-18T15:27:23.781Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1013 - IP: 192.168.242.165 - RequestID: df9j12k3djl +2025-06-18T15:27:23.881Z [INFO] inventory-service - Database DELETE on users - Execution time: 415ms - Rows affected: 67 - RequestID: lrb4ni4dpf +2025-06-18T15:27:23.981Z [TRACE] user-service - Operation: payment_processed - Processing time: 845ms - RequestID: i1yi4ois8r +2025-06-18T15:27:24.081Z [TRACE] inventory-service - Auth event: logout - User: user_1035 - IP: 192.168.64.33 - RequestID: wschispg2el +2025-06-18T15:27:24.181Z [TRACE] notification-service - Auth event: logout - User: user_1075 - IP: 192.168.211.72 - RequestID: qes1k9f36kh +2025-06-18T15:27:24.281Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 200ms - Rows affected: 51 - RequestID: 9szpicq9oea +2025-06-18T15:27:24.381Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 82ms - Rows affected: 56 - RequestID: rci3bp74up +2025-06-18T15:27:24.481Z [TRACE] user-service - Operation: webhook_sent - Processing time: 241ms - RequestID: n3vzu4x5i7 +2025-06-18T15:27:24.581Z [TRACE] auth-service - Auth event: token_refresh - User: user_1050 - IP: 192.168.158.144 - RequestID: rhtqnqgdce8 +2025-06-18T15:27:24.681Z [INFO] notification-service - Auth event: login_success - User: user_1044 - IP: 192.168.46.63 - RequestID: 7wxov2lqme8 +2025-06-18T15:27:24.781Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 100ms - RequestID: ioh54meosff +2025-06-18T15:27:24.881Z [TRACE] payment-service - Auth event: token_refresh - User: user_1059 - IP: 192.168.30.79 - RequestID: 1em4bbex7b +2025-06-18T15:27:24.981Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 943ms - RequestID: bij8s484r6r +2025-06-18T15:27:25.081Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1036 - IP: 192.168.32.38 - RequestID: dw9lnztrnb +2025-06-18T15:27:25.181Z [INFO] order-service - Database DELETE on sessions - Execution time: 422ms - Rows affected: 59 - RequestID: 1wtdjnaebc3 +2025-06-18T15:27:25.281Z [INFO] order-service - Database INSERT on products - Execution time: 66ms - Rows affected: 82 - RequestID: qstyree05ms +2025-06-18T15:27:25.381Z [DEBUG] auth-service - Database DELETE on audit_logs - Execution time: 316ms - Rows affected: 95 - RequestID: jwz1t9z8m5o +2025-06-18T15:27:25.481Z [INFO] payment-service - Auth event: password_change - User: user_1057 - IP: 192.168.79.143 - RequestID: 32d7dwt7dza +2025-06-18T15:27:25.581Z [DEBUG] inventory-service - Operation: notification_queued - Processing time: 698ms - RequestID: rzdfhr0rfr +2025-06-18T15:27:25.681Z [TRACE] order-service - Database DELETE on orders - Execution time: 244ms - Rows affected: 27 - RequestID: uv8r2h76zd +2025-06-18T15:27:25.781Z [TRACE] order-service - Database SELECT on products - Execution time: 249ms - Rows affected: 87 - RequestID: 7qyl7w7byae +2025-06-18T15:27:25.881Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1079 - IP: 192.168.81.206 - RequestID: hm9gct20ema +2025-06-18T15:27:25.981Z [TRACE] user-service - Database INSERT on payments - Execution time: 353ms - Rows affected: 66 - RequestID: ifvdng8d4to +2025-06-18T15:27:26.081Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1019 - IP: 192.168.104.37 - RequestID: g6xrap6oh06 +2025-06-18T15:27:26.181Z [TRACE] payment-service - Database UPDATE on users - Execution time: 388ms - Rows affected: 25 - RequestID: 6lokbxkrdfs +2025-06-18T15:27:26.281Z [TRACE] inventory-service - Operation: webhook_sent - Processing time: 771ms - RequestID: azi9dgwcjt7 +2025-06-18T15:27:26.381Z [DEBUG] notification-service - Operation: payment_processed - Processing time: 545ms - RequestID: vtn0xhq0sd +2025-06-18T15:27:26.481Z [INFO] inventory-service - Database UPDATE on products - Execution time: 197ms - Rows affected: 5 - RequestID: yvtpxu638h +2025-06-18T15:27:26.581Z [DEBUG] order-service - Auth event: logout - User: user_1099 - IP: 192.168.187.199 - RequestID: idmwlf64tkp +2025-06-18T15:27:26.681Z [DEBUG] notification-service - GET /api/v1/inventory - Status: 502 - Response time: 1951ms - IP: 192.168.14.77 - User: user_1020 - RequestID: pus65xuh94 +2025-06-18T15:27:26.781Z [INFO] payment-service - Database DELETE on products - Execution time: 245ms - Rows affected: 15 - RequestID: c8a90zi5md8 +2025-06-18T15:27:26.881Z [DEBUG] order-service - Auth event: logout - User: user_1032 - IP: 192.168.31.117 - RequestID: xqo8ymephgp +2025-06-18T15:27:26.981Z [TRACE] notification-service - Auth event: password_change - User: user_1047 - IP: 192.168.81.206 - RequestID: mno82kbz0t +2025-06-18T15:27:27.081Z [DEBUG] notification-service - DELETE /api/v1/inventory - Status: 404 - Response time: 407ms - IP: 192.168.13.72 - User: user_1042 - RequestID: hrkcgp9q964 +2025-06-18T15:27:27.181Z [TRACE] notification-service - Operation: payment_processed - Processing time: 751ms - RequestID: f429jhqutif +2025-06-18T15:27:27.281Z [INFO] notification-service - Auth event: password_change - User: user_1031 - IP: 192.168.167.32 - RequestID: avskls251su +2025-06-18T15:27:27.381Z [INFO] user-service - Database INSERT on sessions - Execution time: 298ms - Rows affected: 59 - RequestID: o8c0vrh373m +2025-06-18T15:27:27.481Z [DEBUG] user-service - POST /api/v1/orders - Status: 403 - Response time: 486ms - IP: 192.168.104.37 - User: user_1099 - RequestID: kgdadq50pz +2025-06-18T15:27:27.581Z [INFO] order-service - Database UPDATE on orders - Execution time: 77ms - Rows affected: 94 - RequestID: t17pp8dhjt +2025-06-18T15:27:27.681Z [TRACE] user-service - Operation: payment_processed - Processing time: 369ms - RequestID: 6pqm3dqirxc +2025-06-18T15:27:27.781Z [TRACE] inventory-service - Database DELETE on payments - Execution time: 429ms - Rows affected: 95 - RequestID: 1pxr0z8b3p7i +2025-06-18T15:27:27.881Z [DEBUG] user-service - PATCH /api/v1/orders - Status: 503 - Response time: 1549ms - IP: 192.168.36.218 - User: user_1060 - RequestID: xlqny99k1se +2025-06-18T15:27:27.981Z [INFO] order-service - Database INSERT on orders - Execution time: 205ms - Rows affected: 69 - RequestID: 7e96iq8xvvs +2025-06-18T15:27:28.081Z [DEBUG] user-service - Database DELETE on orders - Execution time: 490ms - Rows affected: 88 - RequestID: tglb8zvmsic +2025-06-18T15:27:28.181Z [INFO] order-service - GET /api/v1/auth/login - Status: 201 - Response time: 572ms - IP: 192.168.138.123 - User: user_1041 - RequestID: gyuyocsv3ba +2025-06-18T15:27:28.281Z [INFO] payment-service - Database UPDATE on sessions - Execution time: 77ms - Rows affected: 6 - RequestID: miquopqch78 +2025-06-18T15:27:28.381Z [INFO] inventory-service - PUT /api/v1/users - Status: 500 - Response time: 367ms - IP: 192.168.1.152 - User: user_1066 - RequestID: iiu3z7nj258 +2025-06-18T15:27:28.481Z [TRACE] notification-service - Operation: cache_hit - Processing time: 640ms - RequestID: hz4zlqwhb3n +2025-06-18T15:27:28.581Z [DEBUG] order-service - PUT /api/v1/users - Status: 401 - Response time: 511ms - IP: 192.168.187.199 - User: user_1066 - RequestID: ee0fg9p53t5 +2025-06-18T15:27:28.681Z [DEBUG] payment-service - Auth event: password_change - User: user_1045 - IP: 192.168.235.117 - RequestID: 87ge1xqym6u +2025-06-18T15:27:28.781Z [INFO] inventory-service - Database SELECT on products - Execution time: 173ms - Rows affected: 43 - RequestID: hz9tbu4aozu +2025-06-18T15:27:28.881Z [INFO] order-service - PATCH /api/v1/inventory - Status: 503 - Response time: 1929ms - IP: 192.168.11.60 - User: user_1007 - RequestID: 9ja5kvgm6q6 +2025-06-18T15:27:28.981Z [INFO] payment-service - Auth event: logout - User: user_1007 - IP: 192.168.46.63 - RequestID: yzf6nxbil5t +2025-06-18T15:27:29.081Z [INFO] notification-service - Auth event: logout - User: user_1027 - IP: 192.168.85.229 - RequestID: hsilkkgw59u +2025-06-18T15:27:29.181Z [INFO] inventory-service - Operation: inventory_updated - Processing time: 166ms - RequestID: 8jn3tixnkfu +2025-06-18T15:27:29.281Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 326ms - RequestID: fh3jx00v0ml +2025-06-18T15:27:29.381Z [TRACE] auth-service - Auth event: login_attempt - User: user_1054 - IP: 192.168.31.117 - RequestID: sd1xqcul9z +2025-06-18T15:27:29.481Z [INFO] payment-service - Auth event: token_refresh - User: user_1094 - IP: 192.168.68.158 - RequestID: tmszyngp5n +2025-06-18T15:27:29.581Z [INFO] auth-service - Database INSERT on orders - Execution time: 145ms - Rows affected: 59 - RequestID: 59filcbd7i7 +2025-06-18T15:27:29.681Z [TRACE] auth-service - Database SELECT on products - Execution time: 347ms - Rows affected: 9 - RequestID: g40eshpavmw +2025-06-18T15:27:29.781Z [DEBUG] payment-service - DELETE /api/v1/payments - Status: 500 - Response time: 1139ms - IP: 192.168.158.144 - User: user_1013 - RequestID: de4ennmhzsh +2025-06-18T15:27:29.881Z [INFO] user-service - Operation: payment_processed - Processing time: 970ms - RequestID: 16kc00pmg4y +2025-06-18T15:27:29.981Z [DEBUG] order-service - Auth event: logout - User: user_1086 - IP: 192.168.174.114 - RequestID: fntx8fsg5uh +2025-06-18T15:27:30.081Z [TRACE] user-service - PUT /api/v1/orders - Status: 400 - Response time: 1280ms - IP: 192.168.79.143 - User: user_1060 - RequestID: 5ohu2r15gpb +2025-06-18T15:27:30.181Z [INFO] user-service - POST /api/v1/inventory - Status: 400 - Response time: 1639ms - IP: 192.168.85.229 - User: user_1047 - RequestID: fqwwwafziee +2025-06-18T15:27:30.281Z [INFO] order-service - Database INSERT on payments - Execution time: 301ms - Rows affected: 41 - RequestID: 387jfpl3zet +2025-06-18T15:27:30.381Z [INFO] notification-service - DELETE /api/v1/users - Status: 503 - Response time: 881ms - IP: 192.168.36.218 - User: user_1037 - RequestID: w0s99kpdewe +2025-06-18T15:27:30.481Z [TRACE] order-service - PATCH /api/v1/auth/login - Status: 500 - Response time: 1134ms - IP: 192.168.97.87 - User: user_1035 - RequestID: dkie33j4p6b +2025-06-18T15:27:30.581Z [TRACE] order-service - Auth event: password_change - User: user_1018 - IP: 192.168.181.225 - RequestID: x04b8in9vge +2025-06-18T15:27:30.681Z [TRACE] order-service - Operation: payment_processed - Processing time: 865ms - RequestID: atob1qap6wg +2025-06-18T15:27:30.781Z [INFO] auth-service - Operation: email_sent - Processing time: 106ms - RequestID: yv0m33bxhi +2025-06-18T15:27:30.881Z [TRACE] inventory-service - Auth event: logout - User: user_1074 - IP: 192.168.11.60 - RequestID: 8r2esprsvr8 +2025-06-18T15:27:30.981Z [INFO] order-service - Auth event: login_failed - User: user_1051 - IP: 192.168.174.114 - RequestID: dltoddungzu +2025-06-18T15:27:31.081Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 799ms - RequestID: vrxoobug7q8 +2025-06-18T15:27:31.181Z [TRACE] payment-service - Database UPDATE on audit_logs - Execution time: 145ms - Rows affected: 83 - RequestID: a0avv34xpp5 +2025-06-18T15:27:31.281Z [TRACE] inventory-service - Database INSERT on users - Execution time: 212ms - Rows affected: 68 - RequestID: 73ahs9kh8g6 +2025-06-18T15:27:31.381Z [INFO] auth-service - Auth event: logout - User: user_1034 - IP: 192.168.85.229 - RequestID: a2mnpuk17w +2025-06-18T15:27:31.481Z [INFO] payment-service - Auth event: login_failed - User: user_1084 - IP: 192.168.181.225 - RequestID: ywdqt9dvmcb +2025-06-18T15:27:31.581Z [INFO] payment-service - Auth event: login_success - User: user_1014 - IP: 192.168.30.79 - RequestID: a1l5cdkht6 +2025-06-18T15:27:31.681Z [INFO] payment-service - Auth event: login_attempt - User: user_1056 - IP: 192.168.81.206 - RequestID: 69e1ny34yes +2025-06-18T15:27:31.781Z [DEBUG] user-service - Operation: payment_processed - Processing time: 277ms - RequestID: poinb1ofvrg +2025-06-18T15:27:31.881Z [INFO] inventory-service - Auth event: logout - User: user_1040 - IP: 192.168.104.37 - RequestID: r3tgsu8k9k9 +2025-06-18T15:27:31.981Z [DEBUG] inventory-service - Operation: cache_hit - Processing time: 716ms - RequestID: nx012cmhxtg +2025-06-18T15:27:32.081Z [INFO] inventory-service - Auth event: login_attempt - User: user_1082 - IP: 192.168.235.117 - RequestID: iv2jfv95nwp +2025-06-18T15:27:32.181Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 305ms - Rows affected: 31 - RequestID: yh0c2z18efm +2025-06-18T15:27:32.281Z [DEBUG] auth-service - DELETE /api/v1/auth/login - Status: 404 - Response time: 710ms - IP: 192.168.64.33 - User: user_1084 - RequestID: ztsrn978weo +2025-06-18T15:27:32.381Z [TRACE] auth-service - Operation: inventory_updated - Processing time: 562ms - RequestID: lkqtted85v +2025-06-18T15:27:32.481Z [TRACE] inventory-service - Auth event: login_failed - User: user_1009 - IP: 192.168.53.133 - RequestID: kya5pr0iedp +2025-06-18T15:27:32.581Z [INFO] payment-service - Auth event: login_attempt - User: user_1083 - IP: 192.168.174.114 - RequestID: ioa08y0k18 +2025-06-18T15:27:32.681Z [INFO] auth-service - Operation: payment_processed - Processing time: 187ms - RequestID: eicfsgtaz1k +2025-06-18T15:27:32.781Z [TRACE] auth-service - Database SELECT on products - Execution time: 37ms - Rows affected: 37 - RequestID: n14adb62txb +2025-06-18T15:27:32.881Z [INFO] notification-service - Operation: payment_processed - Processing time: 541ms - RequestID: lohh5e207eg +2025-06-18T15:27:32.981Z [TRACE] notification-service - Operation: email_sent - Processing time: 654ms - RequestID: br2sp5511jk +2025-06-18T15:27:33.081Z [INFO] notification-service - Auth event: login_success - User: user_1082 - IP: 192.168.158.144 - RequestID: pw0wml9h72a +2025-06-18T15:27:33.181Z [DEBUG] payment-service - PUT /api/v1/payments - Status: 401 - Response time: 1997ms - IP: 192.168.158.144 - User: user_1059 - RequestID: egbw1mpz6p8 +2025-06-18T15:27:33.281Z [DEBUG] user-service - Database DELETE on sessions - Execution time: 142ms - Rows affected: 73 - RequestID: 7vmevi2b0ma +2025-06-18T15:27:33.381Z [TRACE] payment-service - GET /api/v1/inventory - Status: 500 - Response time: 1927ms - IP: 192.168.97.87 - User: user_1024 - RequestID: 6nnouu9z9kl +2025-06-18T15:27:33.481Z [TRACE] order-service - Operation: order_created - Processing time: 98ms - RequestID: z0l4jvkiuw +2025-06-18T15:27:33.581Z [TRACE] notification-service - Database DELETE on payments - Execution time: 426ms - Rows affected: 5 - RequestID: y8ks8larb7 +2025-06-18T15:27:33.681Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1028 - IP: 192.168.227.233 - RequestID: hnltbljvnu +2025-06-18T15:27:33.781Z [TRACE] notification-service - POST /api/v1/auth/login - Status: 201 - Response time: 1004ms - IP: 192.168.79.116 - User: user_1048 - RequestID: lded11144z +2025-06-18T15:27:33.881Z [INFO] payment-service - Database DELETE on audit_logs - Execution time: 31ms - Rows affected: 86 - RequestID: lb5vjmylhyp +2025-06-18T15:27:33.981Z [DEBUG] auth-service - Database SELECT on orders - Execution time: 286ms - Rows affected: 28 - RequestID: exx64u8jx3 +2025-06-18T15:27:34.081Z [DEBUG] notification-service - Database SELECT on users - Execution time: 216ms - Rows affected: 72 - RequestID: 6t1y1wv0og3 +2025-06-18T15:27:34.181Z [DEBUG] payment-service - Database INSERT on payments - Execution time: 135ms - Rows affected: 97 - RequestID: 495aa3kmqr +2025-06-18T15:27:34.281Z [INFO] notification-service - Operation: inventory_updated - Processing time: 507ms - RequestID: s9mfp1nc4xl +2025-06-18T15:27:34.381Z [TRACE] notification-service - Database SELECT on sessions - Execution time: 152ms - Rows affected: 6 - RequestID: 4f23xp9arfc +2025-06-18T15:27:34.481Z [DEBUG] payment-service - Operation: cache_hit - Processing time: 958ms - RequestID: 4ydgycroiei +2025-06-18T15:27:34.581Z [DEBUG] auth-service - Operation: webhook_sent - Processing time: 341ms - RequestID: nvi6797uchl +2025-06-18T15:27:34.681Z [DEBUG] payment-service - Operation: notification_queued - Processing time: 221ms - RequestID: oby9gsqsal +2025-06-18T15:27:34.781Z [TRACE] notification-service - Database UPDATE on payments - Execution time: 81ms - Rows affected: 90 - RequestID: fekd8ebp8du +2025-06-18T15:27:34.881Z [INFO] user-service - Operation: order_created - Processing time: 552ms - RequestID: 0oz65jph5vqn +2025-06-18T15:27:34.981Z [INFO] auth-service - Operation: email_sent - Processing time: 126ms - RequestID: 6lt61ay36ea +2025-06-18T15:27:35.081Z [DEBUG] user-service - Operation: inventory_updated - Processing time: 822ms - RequestID: 8u0si1xwlgq +2025-06-18T15:27:35.181Z [INFO] inventory-service - Database UPDATE on sessions - Execution time: 260ms - Rows affected: 66 - RequestID: hzxhgcq9pal +2025-06-18T15:27:35.281Z [TRACE] inventory-service - Operation: order_created - Processing time: 795ms - RequestID: 75wamxpy488 +2025-06-18T15:27:35.381Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 448ms - Rows affected: 34 - RequestID: yxifbxef6gf +2025-06-18T15:27:35.481Z [INFO] payment-service - Operation: cache_miss - Processing time: 747ms - RequestID: gd11fzszrg +2025-06-18T15:27:35.581Z [INFO] notification-service - Auth event: login_success - User: user_1092 - IP: 192.168.79.143 - RequestID: dfbxsv5fhqh +2025-06-18T15:27:35.681Z [TRACE] order-service - Operation: payment_processed - Processing time: 951ms - RequestID: 08y75j8j8gie +2025-06-18T15:27:35.781Z [DEBUG] auth-service - Database DELETE on sessions - Execution time: 357ms - Rows affected: 30 - RequestID: cwyrh24fjg +2025-06-18T15:27:35.881Z [TRACE] order-service - Database DELETE on sessions - Execution time: 293ms - Rows affected: 35 - RequestID: 1rp1zyulnyt +2025-06-18T15:27:35.981Z [INFO] inventory-service - Auth event: login_failed - User: user_1064 - IP: 192.168.227.77 - RequestID: 044q9onnyhi3 +2025-06-18T15:27:36.081Z [TRACE] payment-service - Operation: cache_hit - Processing time: 60ms - RequestID: 1kfddyoioyz +2025-06-18T15:27:36.181Z [INFO] user-service - PUT /api/v1/orders - Status: 201 - Response time: 1770ms - IP: 192.168.79.143 - User: user_1058 - RequestID: ensaxdmfa7 +2025-06-18T15:27:36.281Z [TRACE] payment-service - PUT /api/v1/users - Status: 404 - Response time: 1802ms - IP: 192.168.159.94 - User: user_1022 - RequestID: ne678b68b5 +2025-06-18T15:27:36.381Z [INFO] notification-service - Operation: inventory_updated - Processing time: 96ms - RequestID: wh538k01fh +2025-06-18T15:27:36.481Z [DEBUG] payment-service - Database DELETE on products - Execution time: 311ms - Rows affected: 16 - RequestID: x3vb609a8s +2025-06-18T15:27:36.581Z [TRACE] notification-service - Database INSERT on payments - Execution time: 472ms - Rows affected: 57 - RequestID: ymu3hkn92f +2025-06-18T15:27:36.681Z [INFO] auth-service - Auth event: login_failed - User: user_1080 - IP: 192.168.227.233 - RequestID: mwh6wf8mj3a +2025-06-18T15:27:36.781Z [INFO] inventory-service - Database SELECT on users - Execution time: 445ms - Rows affected: 83 - RequestID: y879cl2wf +2025-06-18T15:27:36.881Z [TRACE] auth-service - PUT /api/v1/auth/logout - Status: 200 - Response time: 501ms - IP: 192.168.30.79 - User: user_1058 - RequestID: vl1qwhjcx4d +2025-06-18T15:27:36.981Z [INFO] order-service - Auth event: password_change - User: user_1069 - IP: 192.168.68.128 - RequestID: 1032bpf4kzd +2025-06-18T15:27:37.081Z [INFO] order-service - PUT /api/v1/users - Status: 503 - Response time: 1370ms - IP: 192.168.36.218 - User: user_1017 - RequestID: eodmj5vj21h +2025-06-18T15:27:37.181Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 503 - Response time: 1358ms - IP: 192.168.14.77 - User: user_1036 - RequestID: rlye6nos5f +2025-06-18T15:27:37.281Z [TRACE] notification-service - Auth event: login_success - User: user_1026 - IP: 192.168.44.5 - RequestID: zfdwfidn0ep +2025-06-18T15:27:37.381Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 676ms - RequestID: ldkgelcxx0s +2025-06-18T15:27:37.481Z [TRACE] user-service - Auth event: logout - User: user_1063 - IP: 192.168.79.143 - RequestID: 74jolc8z9vi +2025-06-18T15:27:37.581Z [INFO] order-service - Database SELECT on users - Execution time: 108ms - Rows affected: 16 - RequestID: n0l7snjfvm +2025-06-18T15:27:37.681Z [INFO] notification-service - Auth event: login_failed - User: user_1082 - IP: 192.168.11.60 - RequestID: ln1tscxmgql +2025-06-18T15:27:37.781Z [INFO] auth-service - Operation: cache_miss - Processing time: 949ms - RequestID: em1359b47be +2025-06-18T15:27:37.881Z [INFO] auth-service - Database SELECT on orders - Execution time: 154ms - Rows affected: 12 - RequestID: 7hym0ow7ymt +2025-06-18T15:27:37.981Z [INFO] user-service - Operation: payment_processed - Processing time: 427ms - RequestID: 2dpgrm5shsh +2025-06-18T15:27:38.081Z [INFO] notification-service - PUT /api/v1/payments - Status: 201 - Response time: 1871ms - IP: 192.168.174.114 - User: user_1069 - RequestID: im2sjzf2pp +2025-06-18T15:27:38.181Z [TRACE] notification-service - Database DELETE on audit_logs - Execution time: 309ms - Rows affected: 52 - RequestID: 7yskwodh59e +2025-06-18T15:27:38.281Z [TRACE] user-service - Operation: inventory_updated - Processing time: 75ms - RequestID: u0fmqjq8ngn +2025-06-18T15:27:38.381Z [DEBUG] order-service - DELETE /api/v1/inventory - Status: 500 - Response time: 25ms - IP: 192.168.28.146 - User: user_1096 - RequestID: xwxc8sf5caa +2025-06-18T15:27:38.481Z [INFO] order-service - Operation: order_created - Processing time: 939ms - RequestID: c99zzmrwzk +2025-06-18T15:27:38.581Z [INFO] inventory-service - Database DELETE on payments - Execution time: 305ms - Rows affected: 82 - RequestID: 4bpuxtx3pek +2025-06-18T15:27:38.681Z [INFO] notification-service - GET /api/v1/orders - Status: 201 - Response time: 1900ms - IP: 192.168.44.5 - User: user_1011 - RequestID: y9qt84ikih +2025-06-18T15:27:38.781Z [DEBUG] auth-service - Operation: payment_processed - Processing time: 864ms - RequestID: i16y536dh5e +2025-06-18T15:27:38.881Z [INFO] auth-service - PATCH /api/v1/users - Status: 500 - Response time: 1880ms - IP: 192.168.229.123 - User: user_1060 - RequestID: 19efd5acg9g +2025-06-18T15:27:38.981Z [DEBUG] inventory-service - Database INSERT on audit_logs - Execution time: 270ms - Rows affected: 53 - RequestID: 6smtdh203p +2025-06-18T15:27:39.081Z [INFO] user-service - Database DELETE on payments - Execution time: 245ms - Rows affected: 8 - RequestID: dmerbb4q8z +2025-06-18T15:27:39.181Z [DEBUG] inventory-service - PATCH /api/v1/inventory - Status: 502 - Response time: 1244ms - IP: 192.168.247.134 - User: user_1003 - RequestID: y07z3pqfkhc +2025-06-18T15:27:39.281Z [INFO] user-service - Auth event: login_attempt - User: user_1049 - IP: 192.168.33.76 - RequestID: rj8ovk5h37 +2025-06-18T15:27:39.381Z [DEBUG] notification-service - Database SELECT on sessions - Execution time: 256ms - Rows affected: 98 - RequestID: 2ylbbq8kipm +2025-06-18T15:27:39.481Z [TRACE] notification-service - POST /api/v1/payments - Status: 403 - Response time: 350ms - IP: 192.168.167.32 - User: user_1020 - RequestID: 6jrdx0ox48s +2025-06-18T15:27:39.581Z [INFO] payment-service - Operation: notification_queued - Processing time: 939ms - RequestID: fr2ic2v3d18 +2025-06-18T15:27:39.681Z [TRACE] user-service - Auth event: password_change - User: user_1098 - IP: 192.168.13.72 - RequestID: 8jlizi1p3fx +2025-06-18T15:27:39.781Z [DEBUG] payment-service - Operation: order_created - Processing time: 595ms - RequestID: sntnf3hdvm9 +2025-06-18T15:27:39.881Z [INFO] notification-service - Database INSERT on products - Execution time: 200ms - Rows affected: 21 - RequestID: ve77ngdves +2025-06-18T15:27:39.981Z [INFO] auth-service - Auth event: logout - User: user_1022 - IP: 192.168.85.229 - RequestID: mutco9dr82 +2025-06-18T15:27:40.081Z [TRACE] user-service - Auth event: logout - User: user_1068 - IP: 192.168.1.152 - RequestID: vp1m8gaymz +2025-06-18T15:27:40.181Z [DEBUG] payment-service - Database DELETE on sessions - Execution time: 249ms - Rows affected: 16 - RequestID: gpzp0wg99i6 +2025-06-18T15:27:40.281Z [DEBUG] user-service - Database SELECT on products - Execution time: 486ms - Rows affected: 79 - RequestID: heq09cpmurn +2025-06-18T15:27:40.381Z [TRACE] user-service - Auth event: login_success - User: user_1093 - IP: 192.168.242.165 - RequestID: kp9rm03n8ai +2025-06-18T15:27:40.481Z [INFO] payment-service - Database DELETE on users - Execution time: 177ms - Rows affected: 54 - RequestID: nzm3hr29mno +2025-06-18T15:27:40.581Z [TRACE] user-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 1718ms - IP: 192.168.232.72 - User: user_1071 - RequestID: 6j3ql54qnbe +2025-06-18T15:27:40.681Z [DEBUG] order-service - Operation: cache_miss - Processing time: 822ms - RequestID: 326lmxp9e2d +2025-06-18T15:27:40.781Z [INFO] inventory-service - Operation: order_created - Processing time: 742ms - RequestID: max0hy87hb +2025-06-18T15:27:40.881Z [INFO] order-service - DELETE /api/v1/auth/logout - Status: 200 - Response time: 651ms - IP: 192.168.53.133 - User: user_1044 - RequestID: 9w4rjf65pm +2025-06-18T15:27:40.981Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 261ms - RequestID: pif88d985vf +2025-06-18T15:27:41.081Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1065 - IP: 192.168.158.144 - RequestID: c4fac4vp9x +2025-06-18T15:27:41.181Z [TRACE] order-service - Auth event: login_success - User: user_1019 - IP: 192.168.229.123 - RequestID: zk8bh3yebo +2025-06-18T15:27:41.281Z [DEBUG] notification-service - Database SELECT on products - Execution time: 270ms - Rows affected: 89 - RequestID: 3lg64ye656a +2025-06-18T15:27:41.381Z [DEBUG] order-service - Operation: webhook_sent - Processing time: 172ms - RequestID: g1amrnzpd16 +2025-06-18T15:27:41.481Z [TRACE] inventory-service - Operation: inventory_updated - Processing time: 340ms - RequestID: ustv5ew2ede +2025-06-18T15:27:41.581Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 418ms - Rows affected: 52 - RequestID: 935r322d8jg +2025-06-18T15:27:41.681Z [INFO] user-service - Auth event: logout - User: user_1087 - IP: 192.168.229.123 - RequestID: 8f7juhmzft +2025-06-18T15:27:41.781Z [TRACE] auth-service - DELETE /api/v1/users - Status: 200 - Response time: 1371ms - IP: 192.168.247.134 - User: user_1051 - RequestID: 3hc7pokrz1l +2025-06-18T15:27:41.881Z [INFO] user-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 212ms - IP: 192.168.1.152 - User: user_1073 - RequestID: 8a07tseofc +2025-06-18T15:27:41.981Z [DEBUG] inventory-service - Operation: webhook_sent - Processing time: 766ms - RequestID: espx4gsmeb4 +2025-06-18T15:27:42.081Z [DEBUG] inventory-service - Auth event: login_attempt - User: user_1058 - IP: 192.168.33.76 - RequestID: idkz12fbvti +2025-06-18T15:27:42.181Z [TRACE] order-service - GET /api/v1/payments - Status: 502 - Response time: 1891ms - IP: 192.168.10.184 - User: user_1098 - RequestID: xkx48onj5pj +2025-06-18T15:27:42.281Z [TRACE] notification-service - DELETE /api/v1/payments - Status: 503 - Response time: 154ms - IP: 192.168.170.215 - User: user_1094 - RequestID: gtrlpft8d7 +2025-06-18T15:27:42.381Z [INFO] order-service - Database UPDATE on sessions - Execution time: 195ms - Rows affected: 31 - RequestID: ztwbkskpaek +2025-06-18T15:27:42.481Z [INFO] order-service - Auth event: login_success - User: user_1020 - IP: 192.168.170.215 - RequestID: q9i0ony7yz +2025-06-18T15:27:42.581Z [INFO] order-service - Operation: inventory_updated - Processing time: 483ms - RequestID: 50q8wmgtxig +2025-06-18T15:27:42.681Z [INFO] auth-service - Database DELETE on users - Execution time: 156ms - Rows affected: 7 - RequestID: 0gbgvwwen56 +2025-06-18T15:27:42.781Z [TRACE] order-service - Database DELETE on audit_logs - Execution time: 254ms - Rows affected: 57 - RequestID: rz46ugu56 +2025-06-18T15:27:42.881Z [INFO] auth-service - Database DELETE on products - Execution time: 126ms - Rows affected: 76 - RequestID: 22xsemri422g +2025-06-18T15:27:42.981Z [INFO] auth-service - Auth event: login_attempt - User: user_1051 - IP: 192.168.1.152 - RequestID: sgf0xy14lr +2025-06-18T15:27:43.081Z [TRACE] inventory-service - Auth event: token_refresh - User: user_1024 - IP: 192.168.227.233 - RequestID: 6ei0maebxrl +2025-06-18T15:27:43.181Z [INFO] order-service - Database UPDATE on users - Execution time: 446ms - Rows affected: 12 - RequestID: z2d4ij9cxsj +2025-06-18T15:27:43.281Z [INFO] auth-service - PUT /api/v1/payments - Status: 401 - Response time: 867ms - IP: 192.168.167.32 - User: user_1094 - RequestID: dgzp5cvs4zm +2025-06-18T15:27:43.381Z [TRACE] order-service - Database SELECT on audit_logs - Execution time: 304ms - Rows affected: 51 - RequestID: d6sayhr6psc +2025-06-18T15:27:43.481Z [DEBUG] user-service - PATCH /api/v1/auth/logout - Status: 500 - Response time: 1576ms - IP: 192.168.97.87 - User: user_1028 - RequestID: 8p7j568phy +2025-06-18T15:27:43.581Z [DEBUG] auth-service - Database SELECT on users - Execution time: 164ms - Rows affected: 84 - RequestID: mm1f9c5elkc +2025-06-18T15:27:43.681Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 364ms - Rows affected: 93 - RequestID: 18eoihsnsnl +2025-06-18T15:27:43.781Z [TRACE] user-service - POST /api/v1/auth/logout - Status: 200 - Response time: 590ms - IP: 192.168.181.225 - User: user_1019 - RequestID: 2uhzsnc0ja7 +2025-06-18T15:27:43.881Z [INFO] notification-service - Database SELECT on audit_logs - Execution time: 335ms - Rows affected: 6 - RequestID: 7kfxeuhdzp2 +2025-06-18T15:27:43.981Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 200 - Response time: 1142ms - IP: 192.168.247.134 - User: user_1017 - RequestID: rpoic8srjxc +2025-06-18T15:27:44.081Z [TRACE] auth-service - Operation: order_created - Processing time: 572ms - RequestID: kwp89ugcws +2025-06-18T15:27:44.181Z [DEBUG] user-service - Operation: notification_queued - Processing time: 318ms - RequestID: u9y62a2okh +2025-06-18T15:27:44.281Z [DEBUG] inventory-service - Auth event: login_failed - User: user_1057 - IP: 192.168.81.206 - RequestID: gearl9n2oaf +2025-06-18T15:27:44.381Z [INFO] inventory-service - Auth event: logout - User: user_1072 - IP: 192.168.13.72 - RequestID: 57o2prj67y +2025-06-18T15:27:44.481Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.138.123 - RequestID: sqdffohje5 +2025-06-18T15:27:44.581Z [DEBUG] inventory-service - PATCH /api/v1/payments - Status: 200 - Response time: 1482ms - IP: 192.168.167.32 - User: user_1041 - RequestID: tbq7ermyt8e +2025-06-18T15:27:44.681Z [TRACE] order-service - Database INSERT on sessions - Execution time: 312ms - Rows affected: 87 - RequestID: zl9rsd1erec +2025-06-18T15:27:44.781Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 952ms - RequestID: q6yb2eb7gig +2025-06-18T15:27:44.881Z [INFO] payment-service - Operation: webhook_sent - Processing time: 916ms - RequestID: 006fjm6egqn02 +2025-06-18T15:27:44.981Z [DEBUG] order-service - Auth event: login_failed - User: user_1006 - IP: 192.168.11.60 - RequestID: hvtb128ooea +2025-06-18T15:27:45.081Z [TRACE] inventory-service - GET /api/v1/payments - Status: 502 - Response time: 772ms - IP: 192.168.113.218 - User: user_1004 - RequestID: nmb4udoqgb +2025-06-18T15:27:45.181Z [INFO] user-service - Auth event: login_success - User: user_1005 - IP: 192.168.170.215 - RequestID: chjhxaevhnw +2025-06-18T15:27:45.281Z [TRACE] user-service - Auth event: login_success - User: user_1062 - IP: 192.168.100.240 - RequestID: cz5ymhymgsw +2025-06-18T15:27:45.381Z [DEBUG] auth-service - Database INSERT on orders - Execution time: 377ms - Rows affected: 30 - RequestID: dnau6ul9etr +2025-06-18T15:27:45.481Z [INFO] notification-service - Auth event: password_change - User: user_1085 - IP: 192.168.13.72 - RequestID: s991ra5stbp +2025-06-18T15:27:45.581Z [INFO] payment-service - Database UPDATE on orders - Execution time: 135ms - Rows affected: 75 - RequestID: umoc4xjjs7 +2025-06-18T15:27:45.681Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1018 - IP: 192.168.104.37 - RequestID: vu400lil7ce +2025-06-18T15:27:45.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1061 - IP: 192.168.227.77 - RequestID: ddc01axshi7 +2025-06-18T15:27:45.881Z [DEBUG] payment-service - PATCH /api/v1/auth/login - Status: 200 - Response time: 720ms - IP: 192.168.181.225 - User: user_1070 - RequestID: 14zemnugbcj +2025-06-18T15:27:45.981Z [DEBUG] user-service - PUT /api/v1/payments - Status: 403 - Response time: 154ms - IP: 192.168.242.165 - User: user_1087 - RequestID: m45y08o5puh +2025-06-18T15:27:46.081Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 25ms - Rows affected: 68 - RequestID: qhrdqmgdvqj +2025-06-18T15:27:46.181Z [INFO] notification-service - Operation: webhook_sent - Processing time: 759ms - RequestID: x5rd64n491 +2025-06-18T15:27:46.281Z [TRACE] order-service - Database UPDATE on audit_logs - Execution time: 491ms - Rows affected: 83 - RequestID: 26032gj3tp6 +2025-06-18T15:27:46.381Z [TRACE] auth-service - Database DELETE on audit_logs - Execution time: 151ms - Rows affected: 73 - RequestID: oxa2ve196hf +2025-06-18T15:27:46.481Z [TRACE] inventory-service - Auth event: login_attempt - User: user_1067 - IP: 192.168.141.100 - RequestID: f4b8p0e1xdm +2025-06-18T15:27:46.581Z [TRACE] user-service - Auth event: login_success - User: user_1033 - IP: 192.168.159.94 - RequestID: gpis7l5pyzo +2025-06-18T15:27:46.681Z [INFO] inventory-service - Auth event: login_attempt - User: user_1097 - IP: 192.168.247.134 - RequestID: 4d1k31k9onl +2025-06-18T15:27:46.781Z [INFO] inventory-service - DELETE /api/v1/orders - Status: 403 - Response time: 1210ms - IP: 192.168.11.60 - User: user_1063 - RequestID: uulbmdjzcta +2025-06-18T15:27:46.881Z [INFO] order-service - Operation: email_sent - Processing time: 857ms - RequestID: autp99mizh8 +2025-06-18T15:27:46.981Z [DEBUG] auth-service - Database SELECT on payments - Execution time: 457ms - Rows affected: 4 - RequestID: 7sw0nooomdj +2025-06-18T15:27:47.081Z [INFO] inventory-service - Auth event: logout - User: user_1095 - IP: 192.168.167.32 - RequestID: p9binfdu1o +2025-06-18T15:27:47.181Z [TRACE] auth-service - Auth event: logout - User: user_1074 - IP: 192.168.10.184 - RequestID: vr8mbexb05c +2025-06-18T15:27:47.281Z [INFO] notification-service - PATCH /api/v1/auth/login - Status: 404 - Response time: 660ms - IP: 192.168.170.215 - User: user_1097 - RequestID: ouzq35ajs2 +2025-06-18T15:27:47.381Z [TRACE] inventory-service - PATCH /api/v1/users - Status: 201 - Response time: 797ms - IP: 192.168.30.79 - User: user_1094 - RequestID: o111ks3qhe +2025-06-18T15:27:47.481Z [INFO] order-service - Auth event: login_attempt - User: user_1019 - IP: 192.168.242.165 - RequestID: 5av4d7esr53 +2025-06-18T15:27:47.581Z [TRACE] order-service - DELETE /api/v1/orders - Status: 201 - Response time: 1030ms - IP: 192.168.159.94 - User: user_1093 - RequestID: 21qc7oa6ks4 +2025-06-18T15:27:47.681Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1945ms - IP: 192.168.247.134 - User: user_1029 - RequestID: k44ojy2m6gl +2025-06-18T15:27:47.781Z [DEBUG] inventory-service - POST /api/v1/orders - Status: 401 - Response time: 447ms - IP: 192.168.194.41 - User: user_1081 - RequestID: esfw9xlfy17 +2025-06-18T15:27:47.881Z [INFO] notification-service - Database UPDATE on sessions - Execution time: 389ms - Rows affected: 46 - RequestID: gam06rqi31w +2025-06-18T15:27:47.981Z [TRACE] inventory-service - PATCH /api/v1/payments - Status: 500 - Response time: 475ms - IP: 192.168.31.117 - User: user_1095 - RequestID: a2i062dxmu8 +2025-06-18T15:27:48.081Z [INFO] payment-service - GET /api/v1/auth/logout - Status: 400 - Response time: 137ms - IP: 192.168.11.60 - User: user_1092 - RequestID: xgmkxwdxa4g +2025-06-18T15:27:48.181Z [TRACE] order-service - POST /api/v1/inventory - Status: 200 - Response time: 1646ms - IP: 192.168.44.5 - User: user_1004 - RequestID: 9xcidm1kpi4 +2025-06-18T15:27:48.281Z [DEBUG] notification-service - Database INSERT on orders - Execution time: 192ms - Rows affected: 69 - RequestID: i3mxphhh6q +2025-06-18T15:27:48.381Z [INFO] order-service - Auth event: login_failed - User: user_1068 - IP: 192.168.147.171 - RequestID: pfldl5tsnt8 +2025-06-18T15:27:48.481Z [DEBUG] notification-service - Operation: webhook_sent - Processing time: 323ms - RequestID: 98sth6zllu6 +2025-06-18T15:27:48.581Z [INFO] notification-service - Auth event: login_success - User: user_1083 - IP: 192.168.247.134 - RequestID: ru847v41am +2025-06-18T15:27:48.681Z [INFO] auth-service - Auth event: password_change - User: user_1030 - IP: 192.168.113.218 - RequestID: 9dawpdsi1nm +2025-06-18T15:27:48.781Z [DEBUG] order-service - Auth event: logout - User: user_1094 - IP: 192.168.159.94 - RequestID: 5ehinxqjfbc +2025-06-18T15:27:48.881Z [INFO] user-service - GET /api/v1/users - Status: 503 - Response time: 1347ms - IP: 192.168.189.103 - User: user_1071 - RequestID: ozgpxqjl3vq +2025-06-18T15:27:48.981Z [TRACE] inventory-service - Auth event: login_success - User: user_1053 - IP: 192.168.227.233 - RequestID: 9tng8bjp1k4 +2025-06-18T15:27:49.081Z [TRACE] notification-service - Auth event: login_success - User: user_1000 - IP: 192.168.10.184 - RequestID: r7l4gcfwtp7 +2025-06-18T15:27:49.181Z [INFO] notification-service - PUT /api/v1/inventory - Status: 502 - Response time: 16ms - IP: 192.168.194.41 - User: user_1032 - RequestID: bh9bnyvjqld +2025-06-18T15:27:49.281Z [INFO] notification-service - Operation: payment_processed - Processing time: 360ms - RequestID: 4lh5vjuu85h +2025-06-18T15:27:49.381Z [INFO] order-service - Database DELETE on users - Execution time: 110ms - Rows affected: 55 - RequestID: epcbj1qc5q4 +2025-06-18T15:27:49.481Z [TRACE] auth-service - Operation: cache_miss - Processing time: 422ms - RequestID: 8zy7openwt5 +2025-06-18T15:27:49.581Z [TRACE] notification-service - GET /api/v1/orders - Status: 500 - Response time: 970ms - IP: 192.168.227.77 - User: user_1046 - RequestID: oe42qm25maq +2025-06-18T15:27:49.681Z [TRACE] notification-service - PUT /api/v1/auth/logout - Status: 403 - Response time: 1677ms - IP: 192.168.211.72 - User: user_1089 - RequestID: dn8ghu2bcy +2025-06-18T15:27:49.781Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 503 - Response time: 828ms - IP: 192.168.141.100 - User: user_1052 - RequestID: grsah74c4q9 +2025-06-18T15:27:49.881Z [DEBUG] notification-service - Database INSERT on products - Execution time: 386ms - Rows affected: 3 - RequestID: bdgvaw6ubwq +2025-06-18T15:27:49.981Z [DEBUG] payment-service - Auth event: login_success - User: user_1032 - IP: 192.168.68.128 - RequestID: wq2y6p4qjj +2025-06-18T15:27:50.081Z [TRACE] auth-service - Auth event: password_change - User: user_1019 - IP: 192.168.28.146 - RequestID: s6imymzb1o9 +2025-06-18T15:27:50.181Z [DEBUG] payment-service - Database SELECT on payments - Execution time: 258ms - Rows affected: 45 - RequestID: 2z8tjc3sgoi +2025-06-18T15:27:50.281Z [INFO] user-service - Database DELETE on audit_logs - Execution time: 272ms - Rows affected: 42 - RequestID: bbg3mde55ol +2025-06-18T15:27:50.381Z [INFO] auth-service - Auth event: password_change - User: user_1019 - IP: 192.168.68.158 - RequestID: xso47pvut5j +2025-06-18T15:27:50.481Z [DEBUG] auth-service - Operation: email_sent - Processing time: 726ms - RequestID: 9eqlrybiqxt +2025-06-18T15:27:50.581Z [TRACE] notification-service - Auth event: password_change - User: user_1092 - IP: 192.168.227.77 - RequestID: 0ltiaspl605p +2025-06-18T15:27:50.681Z [DEBUG] payment-service - Operation: webhook_sent - Processing time: 589ms - RequestID: sat26twyymk +2025-06-18T15:27:50.781Z [TRACE] inventory-service - Operation: email_sent - Processing time: 124ms - RequestID: 9018924o6wb +2025-06-18T15:27:50.881Z [DEBUG] order-service - Auth event: token_refresh - User: user_1031 - IP: 192.168.1.152 - RequestID: 9vtjuxo6xdo +2025-06-18T15:27:50.981Z [DEBUG] auth-service - GET /api/v1/orders - Status: 404 - Response time: 1247ms - IP: 192.168.68.158 - User: user_1089 - RequestID: 0d230q0w3y5r +2025-06-18T15:27:51.081Z [TRACE] user-service - PUT /api/v1/auth/logout - Status: 201 - Response time: 401ms - IP: 192.168.174.114 - User: user_1027 - RequestID: wgp8jgf0vuj +2025-06-18T15:27:51.181Z [DEBUG] order-service - Database INSERT on payments - Execution time: 224ms - Rows affected: 68 - RequestID: ioh0nkvfqob +2025-06-18T15:27:51.281Z [DEBUG] user-service - Operation: webhook_sent - Processing time: 308ms - RequestID: 70yi1uj5si7 +2025-06-18T15:27:51.381Z [TRACE] payment-service - Auth event: login_attempt - User: user_1039 - IP: 192.168.194.41 - RequestID: ops3ngqhnwl +2025-06-18T15:27:51.481Z [INFO] auth-service - GET /api/v1/inventory - Status: 403 - Response time: 1724ms - IP: 192.168.229.123 - User: user_1058 - RequestID: mosby9oo3d +2025-06-18T15:27:51.581Z [TRACE] notification-service - Operation: order_created - Processing time: 856ms - RequestID: e74hl3z5ho +2025-06-18T15:27:51.681Z [DEBUG] payment-service - Database UPDATE on payments - Execution time: 312ms - Rows affected: 7 - RequestID: 6zk2ntt26ux +2025-06-18T15:27:51.781Z [TRACE] auth-service - POST /api/v1/auth/login - Status: 403 - Response time: 1022ms - IP: 192.168.28.146 - User: user_1086 - RequestID: sj4z06to9cb +2025-06-18T15:27:51.881Z [TRACE] notification-service - Auth event: login_success - User: user_1075 - IP: 192.168.68.158 - RequestID: jimll4fwctp +2025-06-18T15:27:51.981Z [INFO] inventory-service - Auth event: password_change - User: user_1035 - IP: 192.168.144.38 - RequestID: qzuaee2gvgg +2025-06-18T15:27:52.081Z [INFO] order-service - Auth event: login_failed - User: user_1051 - IP: 192.168.64.33 - RequestID: whrndlvvlda +2025-06-18T15:27:52.181Z [INFO] user-service - Operation: cache_miss - Processing time: 943ms - RequestID: r9w71e51j8 +2025-06-18T15:27:52.281Z [TRACE] notification-service - Database DELETE on orders - Execution time: 6ms - Rows affected: 15 - RequestID: j2jk9nwp8cc +2025-06-18T15:27:52.381Z [TRACE] auth-service - Database SELECT on payments - Execution time: 185ms - Rows affected: 26 - RequestID: wg1sscbpfs +2025-06-18T15:27:52.481Z [DEBUG] inventory-service - Auth event: token_refresh - User: user_1077 - IP: 192.168.30.79 - RequestID: k4z8643hdt +2025-06-18T15:27:52.581Z [TRACE] order-service - Operation: cache_miss - Processing time: 438ms - RequestID: qluwi5k15q +2025-06-18T15:27:52.681Z [TRACE] order-service - Auth event: login_success - User: user_1083 - IP: 192.168.229.123 - RequestID: f9mr3o56tu +2025-06-18T15:27:52.781Z [TRACE] order-service - Database INSERT on payments - Execution time: 169ms - Rows affected: 90 - RequestID: r6fzisgink +2025-06-18T15:27:52.881Z [INFO] inventory-service - Database DELETE on payments - Execution time: 418ms - Rows affected: 1 - RequestID: 7q7g055um3u +2025-06-18T15:27:52.981Z [TRACE] user-service - Operation: cache_miss - Processing time: 572ms - RequestID: ep8czga3ir +2025-06-18T15:27:53.081Z [TRACE] payment-service - Operation: email_sent - Processing time: 315ms - RequestID: gippoj30zh +2025-06-18T15:27:53.181Z [INFO] notification-service - Auth event: login_attempt - User: user_1046 - IP: 192.168.81.206 - RequestID: h34gun7aan +2025-06-18T15:27:53.281Z [TRACE] notification-service - POST /api/v1/payments - Status: 400 - Response time: 1791ms - IP: 192.168.159.94 - User: user_1045 - RequestID: j4h3ipkd4j +2025-06-18T15:27:53.381Z [TRACE] notification-service - Database UPDATE on products - Execution time: 500ms - Rows affected: 33 - RequestID: tfcedvp7ppr +2025-06-18T15:27:53.481Z [TRACE] user-service - Database UPDATE on payments - Execution time: 177ms - Rows affected: 62 - RequestID: q42ezwnu5a +2025-06-18T15:27:53.581Z [TRACE] payment-service - Operation: email_sent - Processing time: 657ms - RequestID: kmgrbuz1cn +2025-06-18T15:27:53.681Z [INFO] payment-service - DELETE /api/v1/inventory - Status: 403 - Response time: 1626ms - IP: 192.168.211.72 - User: user_1000 - RequestID: 34z2jjz38l8 +2025-06-18T15:27:53.781Z [INFO] user-service - Operation: cache_miss - Processing time: 106ms - RequestID: 2msccxendn7 +2025-06-18T15:27:53.881Z [DEBUG] user-service - Operation: cache_hit - Processing time: 930ms - RequestID: glo6rtoiph +2025-06-18T15:27:53.981Z [INFO] inventory-service - Operation: cache_miss - Processing time: 93ms - RequestID: x9i4bif11r +2025-06-18T15:27:54.081Z [INFO] user-service - DELETE /api/v1/orders - Status: 400 - Response time: 1322ms - IP: 192.168.133.7 - User: user_1075 - RequestID: nrz78ttv0zn +2025-06-18T15:27:54.181Z [DEBUG] auth-service - Database INSERT on sessions - Execution time: 437ms - Rows affected: 51 - RequestID: xtgchigwqtc +2025-06-18T15:27:54.281Z [DEBUG] user-service - Database INSERT on payments - Execution time: 344ms - Rows affected: 23 - RequestID: r5uzk44twb +2025-06-18T15:27:54.381Z [DEBUG] payment-service - Database UPDATE on audit_logs - Execution time: 398ms - Rows affected: 41 - RequestID: o44tgrpcwt +2025-06-18T15:27:54.481Z [TRACE] notification-service - Operation: payment_processed - Processing time: 930ms - RequestID: lyxona8gayo +2025-06-18T15:27:54.581Z [TRACE] order-service - Database INSERT on sessions - Execution time: 325ms - Rows affected: 50 - RequestID: kefhiq5shtl +2025-06-18T15:27:54.681Z [TRACE] inventory-service - Operation: email_sent - Processing time: 87ms - RequestID: qslt5mjxejg +2025-06-18T15:27:54.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1072 - IP: 192.168.232.72 - RequestID: yowjqxljoxj +2025-06-18T15:27:54.881Z [INFO] order-service - Operation: order_created - Processing time: 852ms - RequestID: f5icrr1zeyp +2025-06-18T15:27:54.981Z [DEBUG] auth-service - Auth event: login_attempt - User: user_1001 - IP: 192.168.196.226 - RequestID: 22mld66yz5o +2025-06-18T15:27:55.081Z [INFO] user-service - Auth event: logout - User: user_1068 - IP: 192.168.46.63 - RequestID: 78vnlf2df06 +2025-06-18T15:27:55.181Z [INFO] payment-service - Auth event: token_refresh - User: user_1069 - IP: 192.168.170.215 - RequestID: 1rex5nrx74n +2025-06-18T15:27:55.281Z [DEBUG] order-service - PUT /api/v1/auth/login - Status: 502 - Response time: 1154ms - IP: 192.168.79.143 - User: user_1045 - RequestID: a0awbpdzmo +2025-06-18T15:27:55.381Z [INFO] order-service - Operation: payment_processed - Processing time: 195ms - RequestID: nn5bue3ovbl +2025-06-18T15:27:55.481Z [DEBUG] inventory-service - Operation: email_sent - Processing time: 50ms - RequestID: v4wvnzv7zuq +2025-06-18T15:27:55.581Z [TRACE] notification-service - Auth event: token_refresh - User: user_1097 - IP: 192.168.36.218 - RequestID: lvu8r6hbug +2025-06-18T15:27:55.681Z [INFO] order-service - PATCH /api/v1/payments - Status: 201 - Response time: 829ms - IP: 192.168.242.165 - User: user_1073 - RequestID: fgt2p5954bn +2025-06-18T15:27:55.781Z [TRACE] notification-service - Auth event: token_refresh - User: user_1099 - IP: 192.168.144.38 - RequestID: txj7tfezrhp +2025-06-18T15:27:55.881Z [DEBUG] auth-service - Database UPDATE on sessions - Execution time: 8ms - Rows affected: 15 - RequestID: xcjj04zi3he +2025-06-18T15:27:55.981Z [DEBUG] notification-service - Operation: cache_hit - Processing time: 615ms - RequestID: jx6rqhllp +2025-06-18T15:27:56.081Z [DEBUG] notification-service - Database SELECT on audit_logs - Execution time: 348ms - Rows affected: 76 - RequestID: z50wdplsouj +2025-06-18T15:27:56.181Z [TRACE] payment-service - Database UPDATE on products - Execution time: 453ms - Rows affected: 52 - RequestID: bb66jusyrq +2025-06-18T15:27:56.281Z [DEBUG] payment-service - Operation: payment_processed - Processing time: 168ms - RequestID: ltmfh7rwgz +2025-06-18T15:27:56.381Z [TRACE] order-service - PATCH /api/v1/users - Status: 201 - Response time: 459ms - IP: 192.168.85.229 - User: user_1052 - RequestID: xk2v7hwn5dg +2025-06-18T15:27:56.481Z [DEBUG] user-service - POST /api/v1/auth/logout - Status: 503 - Response time: 976ms - IP: 192.168.235.117 - User: user_1078 - RequestID: uva29jh11vc +2025-06-18T15:27:56.581Z [DEBUG] notification-service - Auth event: login_success - User: user_1086 - IP: 192.168.36.218 - RequestID: k15q4sl5ijq +2025-06-18T15:27:56.681Z [INFO] order-service - PATCH /api/v1/auth/logout - Status: 201 - Response time: 298ms - IP: 192.168.104.37 - User: user_1056 - RequestID: blnblu06zbm +2025-06-18T15:27:56.781Z [DEBUG] inventory-service - Auth event: login_success - User: user_1003 - IP: 192.168.68.128 - RequestID: t71rr5gg91p +2025-06-18T15:27:56.881Z [INFO] payment-service - PUT /api/v1/users - Status: 503 - Response time: 1208ms - IP: 192.168.194.41 - User: user_1074 - RequestID: 9fyfxru24mk +2025-06-18T15:27:56.981Z [INFO] user-service - Database SELECT on sessions - Execution time: 357ms - Rows affected: 30 - RequestID: 9gyqgl90u0c +2025-06-18T15:27:57.081Z [TRACE] inventory-service - Auth event: password_change - User: user_1059 - IP: 192.168.211.72 - RequestID: n4vw8bd7pdg +2025-06-18T15:27:57.181Z [INFO] order-service - Database UPDATE on orders - Execution time: 108ms - Rows affected: 30 - RequestID: 8ct8hz8pq63 +2025-06-18T15:27:57.281Z [DEBUG] inventory-service - DELETE /api/v1/orders - Status: 502 - Response time: 1461ms - IP: 192.168.30.79 - User: user_1051 - RequestID: d3qgoq8037f +2025-06-18T15:27:57.381Z [INFO] payment-service - Database DELETE on sessions - Execution time: 448ms - Rows affected: 41 - RequestID: s1tc27d128p +2025-06-18T15:27:57.481Z [INFO] notification-service - Database DELETE on users - Execution time: 51ms - Rows affected: 17 - RequestID: zy0pirhqfon +2025-06-18T15:27:57.581Z [INFO] user-service - Database SELECT on products - Execution time: 151ms - Rows affected: 0 - RequestID: uaymv8nkea +2025-06-18T15:27:57.681Z [INFO] user-service - Operation: cache_hit - Processing time: 1001ms - RequestID: 9c9b7ear4fs +2025-06-18T15:27:57.781Z [TRACE] order-service - Database INSERT on sessions - Execution time: 153ms - Rows affected: 32 - RequestID: 0p5lnm73cne +2025-06-18T15:27:57.881Z [TRACE] notification-service - Database DELETE on sessions - Execution time: 277ms - Rows affected: 5 - RequestID: f1fci5ssifc +2025-06-18T15:27:57.981Z [INFO] notification-service - Auth event: login_success - User: user_1015 - IP: 192.168.30.79 - RequestID: zht985rnqrf +2025-06-18T15:27:58.081Z [DEBUG] inventory-service - Database UPDATE on audit_logs - Execution time: 354ms - Rows affected: 6 - RequestID: m7bof7q8zdq +2025-06-18T15:27:58.181Z [INFO] order-service - GET /api/v1/auth/logout - Status: 404 - Response time: 478ms - IP: 192.168.158.144 - User: user_1013 - RequestID: swni6ugyjra +2025-06-18T15:27:58.281Z [INFO] inventory-service - Database INSERT on orders - Execution time: 347ms - Rows affected: 0 - RequestID: gzr1pvo3zc +2025-06-18T15:27:58.381Z [DEBUG] order-service - Database SELECT on users - Execution time: 5ms - Rows affected: 30 - RequestID: gae8nuh9in7 +2025-06-18T15:27:58.481Z [TRACE] auth-service - Auth event: token_refresh - User: user_1096 - IP: 192.168.79.116 - RequestID: n54l3k7joc +2025-06-18T15:27:58.581Z [TRACE] user-service - Auth event: token_refresh - User: user_1009 - IP: 192.168.181.225 - RequestID: n8lrbhntzg +2025-06-18T15:27:58.681Z [INFO] payment-service - Auth event: login_failed - User: user_1037 - IP: 192.168.1.152 - RequestID: n6gmxqegtnp +2025-06-18T15:27:58.781Z [DEBUG] notification-service - PATCH /api/v1/auth/logout - Status: 403 - Response time: 1328ms - IP: 192.168.229.123 - User: user_1057 - RequestID: 2elx433upin +2025-06-18T15:27:58.881Z [INFO] payment-service - Database INSERT on payments - Execution time: 351ms - Rows affected: 20 - RequestID: a55ylttfbxh +2025-06-18T15:27:58.981Z [TRACE] notification-service - Database DELETE on payments - Execution time: 23ms - Rows affected: 74 - RequestID: j015bzx3f4l +2025-06-18T15:27:59.081Z [DEBUG] notification-service - PATCH /api/v1/users - Status: 503 - Response time: 542ms - IP: 192.168.133.7 - User: user_1067 - RequestID: 4o5f29ca3s +2025-06-18T15:27:59.181Z [TRACE] payment-service - Operation: notification_queued - Processing time: 1032ms - RequestID: 6nq9jo1002s +2025-06-18T15:27:59.281Z [DEBUG] auth-service - Database INSERT on users - Execution time: 46ms - Rows affected: 14 - RequestID: 09wet7rnuhmi +2025-06-18T15:27:59.381Z [DEBUG] order-service - Operation: notification_queued - Processing time: 357ms - RequestID: y0r87rcuzy +2025-06-18T15:27:59.481Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 451ms - Rows affected: 93 - RequestID: amx5lo8ud0k +2025-06-18T15:27:59.581Z [TRACE] auth-service - Auth event: login_failed - User: user_1070 - IP: 192.168.133.7 - RequestID: la7wfi4woy +2025-06-18T15:27:59.681Z [DEBUG] user-service - Database DELETE on payments - Execution time: 170ms - Rows affected: 32 - RequestID: o1wsayvps7 +2025-06-18T15:27:59.781Z [TRACE] order-service - Auth event: login_success - User: user_1047 - IP: 192.168.1.152 - RequestID: 247ub3ib03 +2025-06-18T15:27:59.881Z [INFO] notification-service - Operation: order_created - Processing time: 352ms - RequestID: yib57v4hyl +2025-06-18T15:27:59.981Z [DEBUG] payment-service - Operation: email_sent - Processing time: 732ms - RequestID: j9loyyt4jck +2025-06-18T15:28:00.081Z [TRACE] order-service - Auth event: login_failed - User: user_1080 - IP: 192.168.187.199 - RequestID: 053wbufaty7j +2025-06-18T15:28:00.181Z [INFO] auth-service - POST /api/v1/payments - Status: 401 - Response time: 1032ms - IP: 192.168.187.199 - User: user_1029 - RequestID: l2crfd44r6 +2025-06-18T15:28:00.281Z [INFO] notification-service - Auth event: password_change - User: user_1072 - IP: 192.168.10.184 - RequestID: zub1hpppmf +2025-06-18T15:28:00.381Z [TRACE] payment-service - POST /api/v1/payments - Status: 404 - Response time: 277ms - IP: 192.168.194.41 - User: user_1052 - RequestID: yx72yvrjs3c +2025-06-18T15:28:00.481Z [TRACE] notification-service - Database SELECT on users - Execution time: 379ms - Rows affected: 38 - RequestID: y05z50nnf2h +2025-06-18T15:28:00.581Z [DEBUG] user-service - Auth event: logout - User: user_1035 - IP: 192.168.170.215 - RequestID: h45n3b11vzq +2025-06-18T15:28:00.681Z [TRACE] payment-service - DELETE /api/v1/inventory - Status: 502 - Response time: 1420ms - IP: 192.168.144.38 - User: user_1019 - RequestID: 8svmufxevd8 +2025-06-18T15:28:00.781Z [TRACE] user-service - Database SELECT on payments - Execution time: 295ms - Rows affected: 92 - RequestID: 2pjrqjn89n9 +2025-06-18T15:28:00.881Z [INFO] inventory-service - PUT /api/v1/users - Status: 401 - Response time: 599ms - IP: 192.168.167.32 - User: user_1046 - RequestID: oh7c520vz2 +2025-06-18T15:28:00.981Z [DEBUG] inventory-service - Auth event: logout - User: user_1079 - IP: 192.168.28.146 - RequestID: nghf5btwqoq +2025-06-18T15:28:01.081Z [DEBUG] auth-service - Database DELETE on products - Execution time: 384ms - Rows affected: 8 - RequestID: gljm3f5ib4u +2025-06-18T15:28:01.181Z [DEBUG] inventory-service - Database INSERT on sessions - Execution time: 140ms - Rows affected: 99 - RequestID: 2c38ym1bgs9 +2025-06-18T15:28:01.281Z [DEBUG] inventory-service - Database UPDATE on users - Execution time: 131ms - Rows affected: 52 - RequestID: 1ovryl282vh +2025-06-18T15:28:01.381Z [DEBUG] order-service - Auth event: login_success - User: user_1087 - IP: 192.168.104.37 - RequestID: bganj0c9sh6 +2025-06-18T15:28:01.481Z [TRACE] notification-service - PATCH /api/v1/orders - Status: 401 - Response time: 40ms - IP: 192.168.194.41 - User: user_1033 - RequestID: m2gr8aaaik +2025-06-18T15:28:01.581Z [INFO] order-service - PUT /api/v1/users - Status: 403 - Response time: 139ms - IP: 192.168.68.158 - User: user_1056 - RequestID: tbiec7xi7yi +2025-06-18T15:28:01.681Z [INFO] order-service - PUT /api/v1/payments - Status: 401 - Response time: 1787ms - IP: 192.168.14.77 - User: user_1045 - RequestID: 5qsbmmzz3cf +2025-06-18T15:28:01.781Z [TRACE] inventory-service - Operation: payment_processed - Processing time: 294ms - RequestID: w3f0utgmz4 +2025-06-18T15:28:01.881Z [TRACE] notification-service - Operation: cache_miss - Processing time: 182ms - RequestID: fcps4ozfgys +2025-06-18T15:28:01.981Z [DEBUG] payment-service - Auth event: password_change - User: user_1079 - IP: 192.168.44.5 - RequestID: 2vupylk5k83 +2025-06-18T15:28:02.081Z [INFO] notification-service - DELETE /api/v1/users - Status: 201 - Response time: 790ms - IP: 192.168.68.128 - User: user_1088 - RequestID: 2ptx63td8xw +2025-06-18T15:28:02.181Z [DEBUG] order-service - POST /api/v1/auth/login - Status: 401 - Response time: 155ms - IP: 192.168.31.117 - User: user_1084 - RequestID: pig1fe6xrpm +2025-06-18T15:28:02.281Z [TRACE] inventory-service - PUT /api/v1/auth/logout - Status: 500 - Response time: 734ms - IP: 192.168.104.37 - User: user_1094 - RequestID: gcosb3rv466 +2025-06-18T15:28:02.381Z [TRACE] user-service - Database INSERT on orders - Execution time: 316ms - Rows affected: 81 - RequestID: 4meyzs8iktk +2025-06-18T15:28:02.481Z [INFO] inventory-service - Operation: cache_hit - Processing time: 90ms - RequestID: xp245wek1z +2025-06-18T15:28:02.581Z [INFO] order-service - Database INSERT on orders - Execution time: 286ms - Rows affected: 81 - RequestID: e4qsfwud38u +2025-06-18T15:28:02.681Z [DEBUG] inventory-service - Operation: order_created - Processing time: 194ms - RequestID: 2t9j8zzo1jj +2025-06-18T15:28:02.781Z [INFO] order-service - Database INSERT on payments - Execution time: 57ms - Rows affected: 93 - RequestID: uq98xslpzqm +2025-06-18T15:28:02.881Z [DEBUG] payment-service - Operation: order_created - Processing time: 614ms - RequestID: 1fh12v6329 +2025-06-18T15:28:02.981Z [INFO] notification-service - POST /api/v1/inventory - Status: 401 - Response time: 531ms - IP: 192.168.227.77 - User: user_1007 - RequestID: e5w3ng0fdcl +2025-06-18T15:28:03.081Z [INFO] order-service - Auth event: login_attempt - User: user_1045 - IP: 192.168.1.152 - RequestID: il0zdazeb47 +2025-06-18T15:28:03.181Z [INFO] inventory-service - Auth event: password_change - User: user_1021 - IP: 192.168.113.218 - RequestID: so08ltfh4hr +2025-06-18T15:28:03.281Z [INFO] user-service - Auth event: logout - User: user_1085 - IP: 192.168.79.141 - RequestID: st43yisa1fn +2025-06-18T15:28:03.381Z [DEBUG] auth-service - GET /api/v1/users - Status: 502 - Response time: 1556ms - IP: 192.168.68.128 - User: user_1022 - RequestID: 3evzpxs6ly5 +2025-06-18T15:28:03.481Z [DEBUG] inventory-service - POST /api/v1/inventory - Status: 503 - Response time: 119ms - IP: 192.168.158.144 - User: user_1088 - RequestID: 9akr4gue3m7 +2025-06-18T15:28:03.581Z [TRACE] inventory-service - Auth event: password_change - User: user_1067 - IP: 192.168.170.215 - RequestID: o8lllri43d +2025-06-18T15:28:03.681Z [TRACE] notification-service - Auth event: logout - User: user_1079 - IP: 192.168.174.114 - RequestID: cfsnu9qu2a +2025-06-18T15:28:03.781Z [DEBUG] auth-service - Auth event: password_change - User: user_1035 - IP: 192.168.79.116 - RequestID: 9yrefi2cwdg +2025-06-18T15:28:03.881Z [INFO] order-service - POST /api/v1/orders - Status: 401 - Response time: 119ms - IP: 192.168.194.41 - User: user_1061 - RequestID: as0mq9ytypg +2025-06-18T15:28:03.981Z [INFO] inventory-service - Operation: notification_queued - Processing time: 572ms - RequestID: rip3yt3snh +2025-06-18T15:28:04.081Z [TRACE] auth-service - Database SELECT on products - Execution time: 348ms - Rows affected: 9 - RequestID: cwf3czuz4p4 +2025-06-18T15:28:04.181Z [TRACE] notification-service - Database UPDATE on sessions - Execution time: 333ms - Rows affected: 9 - RequestID: 5omgxcoj1o +2025-06-18T15:28:04.281Z [INFO] auth-service - Operation: cache_miss - Processing time: 378ms - RequestID: 75omic4oxw +2025-06-18T15:28:04.381Z [DEBUG] auth-service - Auth event: token_refresh - User: user_1004 - IP: 192.168.133.7 - RequestID: b5419prjfa5 +2025-06-18T15:28:04.481Z [TRACE] order-service - POST /api/v1/payments - Status: 400 - Response time: 1384ms - IP: 192.168.81.206 - User: user_1086 - RequestID: f7blj2mx0ag +2025-06-18T15:28:04.581Z [DEBUG] order-service - Database DELETE on users - Execution time: 498ms - Rows affected: 30 - RequestID: if0i119kxof +2025-06-18T15:28:04.681Z [INFO] user-service - DELETE /api/v1/orders - Status: 502 - Response time: 1995ms - IP: 192.168.211.72 - User: user_1038 - RequestID: 4iu9oxs3pwj +2025-06-18T15:28:04.781Z [DEBUG] inventory-service - PATCH /api/v1/auth/logout - Status: 400 - Response time: 1184ms - IP: 192.168.167.32 - User: user_1066 - RequestID: dwsh1vnserb +2025-06-18T15:28:04.881Z [TRACE] order-service - Auth event: password_change - User: user_1080 - IP: 192.168.68.128 - RequestID: tytobnlg5qf +2025-06-18T15:28:04.981Z [DEBUG] user-service - PUT /api/v1/inventory - Status: 404 - Response time: 1335ms - IP: 192.168.187.199 - User: user_1051 - RequestID: dodm5z5sfs4 +2025-06-18T15:28:05.081Z [DEBUG] user-service - PATCH /api/v1/payments - Status: 503 - Response time: 419ms - IP: 192.168.158.144 - User: user_1092 - RequestID: 3rl6bp59cl +2025-06-18T15:28:05.181Z [INFO] notification-service - Database SELECT on payments - Execution time: 43ms - Rows affected: 90 - RequestID: 31xaezjpptc +2025-06-18T15:28:05.281Z [DEBUG] notification-service - Operation: order_created - Processing time: 826ms - RequestID: ztv8bstsf0r +2025-06-18T15:28:05.381Z [DEBUG] auth-service - DELETE /api/v1/orders - Status: 400 - Response time: 701ms - IP: 192.168.28.146 - User: user_1053 - RequestID: 4t0foztub5o +2025-06-18T15:28:05.481Z [DEBUG] auth-service - Operation: cache_miss - Processing time: 456ms - RequestID: cqdl2mlxwqj +2025-06-18T15:28:05.581Z [DEBUG] notification-service - POST /api/v1/auth/login - Status: 404 - Response time: 512ms - IP: 192.168.189.103 - User: user_1088 - RequestID: 0vq7wz17e3e +2025-06-18T15:28:05.681Z [DEBUG] payment-service - PATCH /api/v1/payments - Status: 500 - Response time: 1796ms - IP: 192.168.46.63 - User: user_1094 - RequestID: vtymgy8ounk diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/kubectl_describe_pod_long-logs-app-84fbcbfb5f-57zrx_ask-holmes-namespace-47.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/kubectl_describe_pod_long-logs-app-84fbcbfb5f-57zrx_ask-holmes-namespace-47.txt new file mode 100644 index 00000000000..5cebc03fe56 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/kubectl_describe_pod_long-logs-app-84fbcbfb5f-57zrx_ask-holmes-namespace-47.txt @@ -0,0 +1,65 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"pod","name":"long-logs-app-84fbcbfb5f-57zrx","namespace":"ask-holmes-namespace-47"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl describe pod long-logs-app-84fbcbfb5f-57zrx -n ask-holmes-namespace-47", "params": {"kind": "pod", "name": "long-logs-app-84fbcbfb5f-57zrx", "namespace": "ask-holmes-namespace-47"}} +Name: long-logs-app-84fbcbfb5f-57zrx +Namespace: ask-holmes-namespace-47 +Priority: 0 +Service Account: default +Node: kind-double-node-worker/172.18.0.2 +Start Time: Wed, 18 Jun 2025 15:48:53 +0200 +Labels: app=long-logs-app + pod-template-hash=84fbcbfb5f +Annotations: +Status: Running +IP: 10.244.1.154 +IPs: + IP: 10.244.1.154 +Controlled By: ReplicaSet/long-logs-app-84fbcbfb5f +Containers: + long-logs-app: + Container ID: containerd://d278c5685486fdb411d717c228899fe9ca48123f85c179abf437a0dc9147890e + Image: us-central1-docker.pkg.dev/genuine-flight-317411/devel/long-logs:v1 + Image ID: us-central1-docker.pkg.dev/genuine-flight-317411/devel/long-logs@sha256:317ff888f71f9b5bc1bd15cb8db2f0cdb8a70a05ea674f91838acee1bba0ebcf + Port: + Host Port: + State: Running + Started: Wed, 18 Jun 2025 15:49:03 +0200 + Ready: True + Restart Count: 0 + Limits: + cpu: 500m + memory: 512Mi + Requests: + cpu: 100m + memory: 256Mi + Environment: + MODEL: gpt-4o + TOKENS: 5000000 + INTERVAL: 100 + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-bbj78 (ro) +Conditions: + Type Status + PodReadyToStartContainers True + Initialized True + Ready True + ContainersReady True + PodScheduled True +Volumes: + kube-api-access-bbj78: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: Burstable +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal Scheduled 2m6s default-scheduler Successfully assigned ask-holmes-namespace-47/long-logs-app-84fbcbfb5f-57zrx to kind-double-node-worker + Normal Pulling 2m5s kubelet Pulling image "us-central1-docker.pkg.dev/genuine-flight-317411/devel/long-logs:v1" + Normal Pulled 116s kubelet Successfully pulled image "us-central1-docker.pkg.dev/genuine-flight-317411/devel/long-logs:v1" in 9.045s (9.045s including waiting). Image size: 79984091 bytes. + Normal Created 116s kubelet Created container long-logs-app + Normal Started 116s kubelet Started container long-logs-app diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/kubectl_find_resource_long-logs-app_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/kubectl_find_resource_long-logs-app_pod.txt new file mode 100644 index 00000000000..0903744f7c8 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/kubectl_find_resource_long-logs-app_pod.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"pod","keyword":"long-logs-app"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide pod | grep long-logs-app", "params": {"kind": "pod", "keyword": "long-logs-app"}} +ask-holmes-namespace-47 long-logs-app-84fbcbfb5f-57zrx 1/1 Running 0 26s 10.244.1.154 kind-double-node-worker app=long-logs-app,pod-template-hash=84fbcbfb5f diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/manifest.yaml new file mode 100644 index 00000000000..c148b3c9ac6 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/manifest.yaml @@ -0,0 +1,40 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: ask-holmes-namespace-47 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: long-logs-app + namespace: ask-holmes-namespace-47 + labels: + app: long-logs-app +spec: + replicas: 1 + selector: + matchLabels: + app: long-logs-app + template: + metadata: + labels: + app: long-logs-app + spec: + containers: + - name: long-logs-app + image: us-central1-docker.pkg.dev/genuine-flight-317411/devel/long-logs:v1 + imagePullPolicy: Always + env: + - name: MODEL + value: "gpt-4o" + - name: TOKENS + value: "5000000" + - name: INTERVAL + value: "100" + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "64Mi" + restartPolicy: Always diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/test_case.yaml new file mode 100644 index 00000000000..95bef59602e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/test_case.yaml @@ -0,0 +1,15 @@ +user_prompt: "Why did the `long-logs-app` app in the `ask-holmes-namespace-47` namespace stopped working?" +tags: + - logs + - context_window + - medium + - kubernetes +skip: true +skip_reason: "Natan: I don't understand this eval - I don't see anything in the logs (either in mock data or the live pod logs) that implies a database issue" +expected_output: + - database ran out of free connections +before_test: kubectl apply -f ./manifest.yaml +after_test: kubectl delete -f ./manifest.yaml +evaluation: + # Sometimes Holmes does not fetch the logs and says the app is running without issues + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/toolsets.yaml new file mode 100644 index 00000000000..5ea5b239e0a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/47_truncated_logs_context_window/toolsets.yaml @@ -0,0 +1,5 @@ +toolsets: + kubernetes/logs: + enabled: true + kubernetes/core: + enabled: true diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_2025-06-12.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_2025-06-12.txt new file mode 100644 index 00000000000..e6b204d1958 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_2025-06-12.txt @@ -0,0 +1,13 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes-7bfb7f85b7-2w9ck","namespace":"default","start_time":"2025-06-12T00:00:00Z"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes-7bfb7f85b7-2w9ck", "start_time": "2025-06-12T00:00:00Z", "end_time": null, "filter": null, "limit": null}} +2025-06-12 22:14:51,711 ERROR Database error: The database at my.postgresql.com has become unavailable +2025-06-13 13:12:53,047 WARNING The application is suffering from memory pressure. The current memory usage is 594MB but the soft limit is 512MB. The hard limit is 768MB. +2025-06-13 15:11:53,047 INFO Memory pressure resolved. The current memory usage is 496MB. The soft limit is 512MB. The hard limit is 768MB. +2025-06-14 16:57:02,098 WARNING High CPU usage. Average CPU usage over the last 5 minutes is 325% the allocated CPU. If this issue persists the app will self-terminate. +2025-06-14 17:15:01,032 INFO CPU usage back to normal. +2025-06-15 16:57:02,098 ERROR Failed to execute query fetch_user_logs: Syntax error +2025-06-19 08:35:17,235 ERROR SSL certificate expired + Traceback (most recent call last): + File "/app/app.py", line 141, in check_certificate_expiry + raise ExpiredCertException(f"Certificate expired on {cert_expiry}") + ExpiredCertException: Certificate expired on 2024-08-03 17:00:08 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_2025-06-13.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_2025-06-13.txt new file mode 100644 index 00000000000..731fb549746 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_2025-06-13.txt @@ -0,0 +1,12 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes-7bfb7f85b7-2w9ck","namespace":"default","start_time":"2025-06-13T00:00:00Z"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes-7bfb7f85b7-2w9ck", "start_time": "2025-06-13T00:00:00Z", "end_time": null, "filter": null, "limit": null}} +2025-06-13 13:12:53,047 WARNING The application is suffering from memory pressure. The current memory usage is 594MB but the soft limit is 512MB. The hard limit is 768MB. +2025-06-13 15:11:53,047 INFO Memory pressure resolved. The current memory usage is 496MB. The soft limit is 512MB. The hard limit is 768MB. +2025-06-14 16:57:02,098 WARNING High CPU usage. Average CPU usage over the last 5 minutes is 325% the allocated CPU. If this issue persists the app will self-terminate. +2025-06-14 17:15:01,032 INFO CPU usage back to normal. +2025-06-15 16:57:02,098 ERROR Failed to execute query fetch_user_logs: Syntax error +2025-06-19 08:35:17,235 ERROR SSL certificate expired + Traceback (most recent call last): + File "/app/app.py", line 141, in check_certificate_expiry + raise ExpiredCertException(f"Certificate expired on {cert_expiry}") + ExpiredCertException: Certificate expired on 2024-08-03 17:00:08 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/get_current_time_.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/get_current_time_.txt new file mode 100644 index 00000000000..f987e366fa7 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/get_current_time_.txt @@ -0,0 +1,7 @@ +{"toolset_name":"datetime","tool_name":"get_current_time","match_params":{}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {}} +The current UTC date and time are 2025-06-19 08:12:45.811389+00:00. +The current UTC timestamp in seconds is 1750320765. +Today is Thursday. +The month is June. +The week number is 25. diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/kubectl_find_resource_robusta-holmes_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/kubectl_find_resource_robusta-holmes_pod.txt new file mode 100644 index 00000000000..f7def61f3ad --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/kubectl_find_resource_robusta-holmes_pod.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"pod","keyword":"robusta-holmes"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide pod | grep robusta-holmes", "params": {"kind": "pod", "keyword": "robusta-holmes"}} +default robusta-holmes-7bfb7f85b7-2w9ck 1/1 Running 6 (37m ago) 9d 10.244.1.63 kind-double-node-worker app=holmes,pod-template-hash=7bfb7f85b7 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/test_case.yaml new file mode 100644 index 00000000000..633ce995511 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/test_case.yaml @@ -0,0 +1,21 @@ +# Today is Thursday, ask for logs since last week mentioning specific day +user_prompt: "Show me the logs for the pod `robusta-holmes` since last Thursday" +tags: + - logs + - datetime + - synthetic + - medium # Holmes fetches data excluding Thurday and starting Friday in 5% of cases + - kubernetes +expected_output: + - 2025-06-12 The database at my.postgresql.com has become unavailable + - 2025-06-13 The application temporarily suffered from memory pressure + - 2025-06-14 Temporary high CPU usage + - 2025-06-15 Syntax error for query fetch_user_logs + - 2025-06-19 SSL certificate expired + +mock_policy: always_mock +skip: true +skip_reason: Test is often missing mock data + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/toolsets.yaml new file mode 100644 index 00000000000..5ea5b239e0a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/48_logs_since_thursday/toolsets.yaml @@ -0,0 +1,5 @@ +toolsets: + kubernetes/logs: + enabled: true + kubernetes/core: + enabled: true diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_-604800.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_-604800.txt new file mode 100644 index 00000000000..0b810c5145a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_-604800.txt @@ -0,0 +1,13 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes-7bfb7f85b7-2w9ck","namespace":"default","start_time":"-604800"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes-7bfb7f85b7-2w9ck", "start_time": "-604800", "end_time": null, "filter": null, "limit": null}} +2025-06-12 22:14:51,711 ERROR Database error: The database at my.postgresql.com has become unavailable +2025-06-13 13:12:53,047 WARNING The application is suffering from memory pressure. The current memory usage is 594MB but the soft limit is 512MB. The hard limit is 768MB. +2025-06-13 15:11:53,047 INFO Memory pressure resolved. The current memory usage is 496MB. The soft limit is 512MB. The hard limit is 768MB. +2025-06-14 16:57:02,098 WARNING High CPU usage. Average CPU usage over the last 5 minutes is 325% the allocated CPU. If this issue persists the app will self-terminate. +2025-06-14 17:15:01,032 INFO CPU usage back to normal. +2025-06-15 16:57:02,098 ERROR Failed to execute query fetch_user_logs: Syntax error +2025-06-19 08:35:17,235 ERROR SSL certificate expired + Traceback (most recent call last): + File "/app/app.py", line 141, in check_certificate_expiry + raise ExpiredCertException(f"Certificate expired on {cert_expiry}") + ExpiredCertException: Certificate expired on 2024-08-03 17:00:08 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_2025-06-12.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_2025-06-12.txt new file mode 100644 index 00000000000..e6b204d1958 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_2025-06-12.txt @@ -0,0 +1,13 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes-7bfb7f85b7-2w9ck","namespace":"default","start_time":"2025-06-12T00:00:00Z"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes-7bfb7f85b7-2w9ck", "start_time": "2025-06-12T00:00:00Z", "end_time": null, "filter": null, "limit": null}} +2025-06-12 22:14:51,711 ERROR Database error: The database at my.postgresql.com has become unavailable +2025-06-13 13:12:53,047 WARNING The application is suffering from memory pressure. The current memory usage is 594MB but the soft limit is 512MB. The hard limit is 768MB. +2025-06-13 15:11:53,047 INFO Memory pressure resolved. The current memory usage is 496MB. The soft limit is 512MB. The hard limit is 768MB. +2025-06-14 16:57:02,098 WARNING High CPU usage. Average CPU usage over the last 5 minutes is 325% the allocated CPU. If this issue persists the app will self-terminate. +2025-06-14 17:15:01,032 INFO CPU usage back to normal. +2025-06-15 16:57:02,098 ERROR Failed to execute query fetch_user_logs: Syntax error +2025-06-19 08:35:17,235 ERROR SSL certificate expired + Traceback (most recent call last): + File "/app/app.py", line 141, in check_certificate_expiry + raise ExpiredCertException(f"Certificate expired on {cert_expiry}") + ExpiredCertException: Certificate expired on 2024-08-03 17:00:08 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/get_current_time_.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/get_current_time_.txt new file mode 100644 index 00000000000..f987e366fa7 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/get_current_time_.txt @@ -0,0 +1,7 @@ +{"toolset_name":"datetime","tool_name":"get_current_time","match_params":{}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {}} +The current UTC date and time are 2025-06-19 08:12:45.811389+00:00. +The current UTC timestamp in seconds is 1750320765. +Today is Thursday. +The month is June. +The week number is 25. diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/kubectl_find_resource_robusta-holmes_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/kubectl_find_resource_robusta-holmes_pod.txt new file mode 100644 index 00000000000..f7def61f3ad --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/kubectl_find_resource_robusta-holmes_pod.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"pod","keyword":"robusta-holmes"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide pod | grep robusta-holmes", "params": {"kind": "pod", "keyword": "robusta-holmes"}} +default robusta-holmes-7bfb7f85b7-2w9ck 1/1 Running 6 (37m ago) 9d 10.244.1.63 kind-double-node-worker app=holmes,pod-template-hash=7bfb7f85b7 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/test_case.yaml new file mode 100644 index 00000000000..e27fca1cdf3 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/test_case.yaml @@ -0,0 +1,21 @@ +# 'last week' can be expected to mean 'since the begining of the last week' but some people might also mean 'since 7 days ago' +# This test case's intention is to accept both interpretation and thus validates that data for the last 7 days is found in the logs +user_prompt: "Show me the logs for the pod `robusta-holmes` since last week" +tags: + - logs + - datetime + - synthetic + - medium + - kubernetes +expected_output: + - 2025-06-12 The database at my.postgresql.com has become unavailable + - 2025-06-13 The application temporarily suffered from memory pressure + - 2025-06-14 Temporary high CPU usage + - 2025-06-15 Syntax error for query fetch_user_logs + - 2025-06-19 SSL certificate expired + +evaluation: + # Sometimes Holmes fetches logs without specifying start time + correctness: loose + +mock_policy: always_mock diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/toolsets.yaml new file mode 100644 index 00000000000..5ea5b239e0a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/49_logs_since_last_week/toolsets.yaml @@ -0,0 +1,5 @@ +toolsets: + kubernetes/logs: + enabled: true + kubernetes/core: + enabled: true diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsERROR_default_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsERROR_default_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z.txt new file mode 100644 index 00000000000..2ab61b02d9c --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsERROR_default_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z.txt @@ -0,0 +1,6 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes-7bfb7f85b7-2w9ck","namespace":"default","start_time":"2023-06-12T00:00:00Z","filter":"ERROR"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes-7bfb7f85b7-2w9ck", "start_time": "2023-06-12T00:00:00Z", "end_time": null, "filter": "ERROR", "limit": null}} +2025-08-06 08:34:19.202 WARNING Toolset 'datadog/rds' is invalid: 1 validation error for YAMLToolset + For further information visit https://errors.pydantic.dev/2.11/v/missing +2025-08-07 03:29:53.759 WARNING Toolset 'datadog/rds' is invalid: 1 validation error for YAMLToolset + For further information visit https://errors.pydantic.dev/2.11/v/missing diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsERROR_default_robusta-holmes_2023-06-12T00_00_00Z_2.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsERROR_default_robusta-holmes_2023-06-12T00_00_00Z_2.txt new file mode 100644 index 00000000000..5f92c8441ee --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsERROR_default_robusta-holmes_2023-06-12T00_00_00Z_2.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"namespace":"default","pod_name":"robusta-holmes","start_time":"2023-06-12T00:00:00Z","filter":"ERROR"}} +{"schema_version": "robusta:v1.0.0", "status": "error", "error": "error: error from server (NotFound): pods \"robusta-holmes\" not found in namespace \"default\"", "return_code": 1, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes", "start_time": "2023-06-12T00:00:00Z", "end_time": null, "filter": "ERROR", "limit": null}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsERROR_default_robusta-holmes_2025-06-12T00_00_00Z.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsERROR_default_robusta-holmes_2025-06-12T00_00_00Z.txt new file mode 100644 index 00000000000..46432c27409 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsERROR_default_robusta-holmes_2025-06-12T00_00_00Z.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes","namespace":"default","start_time":"2025-06-12T00:00:00Z","filter":"ERROR"}} +{"schema_version": "robusta:v1.0.0", "status": "error", "error": "error: error from server (NotFound): pods \"robusta-holmes\" not found in namespace \"default\"", "return_code": 1, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes", "start_time": "2025-06-12T00:00:00Z", "end_time": null, "filter": "ERROR", "limit": null}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsError_default_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z_2.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsError_default_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z_2.txt new file mode 100644 index 00000000000..278e60ff563 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsError_default_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z_2.txt @@ -0,0 +1,6 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes-7bfb7f85b7-2w9ck","namespace":"default","start_time":"2023-06-12T00:00:00Z","filter":"Error"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes-7bfb7f85b7-2w9ck", "start_time": "2023-06-12T00:00:00Z", "end_time": null, "filter": "Error", "limit": null}} +2025-08-06 08:34:19.202 WARNING Toolset 'datadog/rds' is invalid: 1 validation error for YAMLToolset + For further information visit https://errors.pydantic.dev/2.11/v/missing +2025-08-07 03:29:53.759 WARNING Toolset 'datadog/rds' is invalid: 1 validation error for YAMLToolset + For further information visit https://errors.pydantic.dev/2.11/v/missing diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsError_default_robusta-holmes_2023-06-12T00_00_00Z_3.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsError_default_robusta-holmes_2023-06-12T00_00_00Z_3.txt new file mode 100644 index 00000000000..4a7d0c8197e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsError_default_robusta-holmes_2023-06-12T00_00_00Z_3.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"namespace":"default","pod_name":"robusta-holmes","start_time":"2023-06-12T00:00:00Z","filter":"Error"}} +{"schema_version": "robusta:v1.0.0", "status": "error", "error": "error: error from server (NotFound): pods \"robusta-holmes\" not found in namespace \"default\"", "return_code": 1, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes", "start_time": "2023-06-12T00:00:00Z", "end_time": null, "filter": "Error", "limit": null}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsError_default_robusta-holmes_2025-06-12T00_00_00Z_2.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsError_default_robusta-holmes_2025-06-12T00_00_00Z_2.txt new file mode 100644 index 00000000000..7c41614a036 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsError_default_robusta-holmes_2025-06-12T00_00_00Z_2.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"namespace":"default","pod_name":"robusta-holmes","start_time":"2025-06-12T00:00:00Z","filter":"Error"}} +{"schema_version": "robusta:v1.0.0", "status": "error", "error": "error: error from server (NotFound): pods \"robusta-holmes\" not found in namespace \"default\"", "return_code": 1, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes", "start_time": "2025-06-12T00:00:00Z", "end_time": null, "filter": "Error", "limit": null}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsException_default_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsException_default_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z.txt new file mode 100644 index 00000000000..6d91c1b4e02 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsException_default_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes-7bfb7f85b7-2w9ck","namespace":"default","start_time":"2023-06-12T00:00:00Z","filter":"Exception"}} +{"schema_version": "robusta:v1.0.0", "status": "no_data", "error": null, "return_code": 0, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes-7bfb7f85b7-2w9ck", "start_time": "2023-06-12T00:00:00Z", "end_time": null, "filter": "Exception", "limit": null}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_2025-06-12.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_2025-06-12.txt new file mode 100644 index 00000000000..e6b204d1958 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logs_default_robusta-holmes-7bfb7f85b7-2w9ck_2025-06-12.txt @@ -0,0 +1,13 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes-7bfb7f85b7-2w9ck","namespace":"default","start_time":"2025-06-12T00:00:00Z"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes-7bfb7f85b7-2w9ck", "start_time": "2025-06-12T00:00:00Z", "end_time": null, "filter": null, "limit": null}} +2025-06-12 22:14:51,711 ERROR Database error: The database at my.postgresql.com has become unavailable +2025-06-13 13:12:53,047 WARNING The application is suffering from memory pressure. The current memory usage is 594MB but the soft limit is 512MB. The hard limit is 768MB. +2025-06-13 15:11:53,047 INFO Memory pressure resolved. The current memory usage is 496MB. The soft limit is 512MB. The hard limit is 768MB. +2025-06-14 16:57:02,098 WARNING High CPU usage. Average CPU usage over the last 5 minutes is 325% the allocated CPU. If this issue persists the app will self-terminate. +2025-06-14 17:15:01,032 INFO CPU usage back to normal. +2025-06-15 16:57:02,098 ERROR Failed to execute query fetch_user_logs: Syntax error +2025-06-19 08:35:17,235 ERROR SSL certificate expired + Traceback (most recent call last): + File "/app/app.py", line 141, in check_certificate_expiry + raise ExpiredCertException(f"Certificate expired on {cert_expiry}") + ExpiredCertException: Certificate expired on 2024-08-03 17:00:08 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsdefault_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsdefault_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z.txt new file mode 100644 index 00000000000..8b3bb1434e5 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logsdefault_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z.txt @@ -0,0 +1,170 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes-7bfb7f85b7-2w9ck","namespace":"default","start_time":"2023-06-12T00:00:00Z"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes-7bfb7f85b7-2w9ck", "start_time": "2023-06-12T00:00:00Z", "end_time": null, "filter": null, "limit": null}} +setting up colored logging +2025-08-06 08:34:17.806 INFO logger initialized using INFO log level +2025-08-06 08:34:17.806 INFO loading config /etc/robusta/config/active_playbooks.yaml +2025-08-06 08:34:18.337 WARNING No content found in file: /etc/holmes/config/model_list.yaml +2025-08-06 08:34:18.337 INFO loading config /etc/robusta/config/active_playbooks.yaml +2025-08-06 08:34:18.361 INFO Initializing Robusta platform connection for account 16ecba1a-7993-4dd1-a98c-d201462ccba7 +2025-08-06 08:34:18.380 INFO Supabase DAL login +2025-08-06 08:34:18.872 INFO Patching postgres execute +2025-08-06 08:34:18.873 INFO Skipping sentry initialization for custom version +2025-08-06 08:34:18.877 INFO Updating status of holmes +2025-08-06 08:34:19.202 WARNING Toolset 'datadog/rds' is invalid: 1 validation error for YAMLToolset +description + Field required [type=missing, input_value={'config': {'dd_api_key':...tadog/rds', 'tools': []}, input_type=dict] + For further information visit https://errors.pydantic.dev/2.11/v/missing +2025-08-06 08:34:19.244 INFO ✅ Toolset kubernetes/core +2025-08-06 08:34:19.244 INFO ✅ Toolset kubernetes/kube-prometheus-stack +2025-08-06 08:34:19.244 INFO ✅ Toolset internet +2025-08-06 08:34:19.244 INFO ✅ Toolset robusta +2025-08-06 08:34:19.515 INFO ✅ Toolset prometheus/metrics +2025-08-06 08:34:19.515 INFO ✅ Toolset kubernetes/logs +2025-08-06 08:34:19.918 INFO Toolsets upserted successfully. +2025-08-06 08:34:20.072 INFO Toolsets synchronized successfully. +2025-08-06 08:34:20.072 INFO Enabled toolsets: ['kubernetes/core', 'kubernetes/kube-prometheus-stack', 'internet', 'robusta', 'prometheus/metrics', 'kubernetes/logs'] +2025-08-06 08:34:20.072 INFO Disabled toolsets: ['kubernetes/live-metrics', 'kubernetes/kube-lineage-extras', 'helm/core', 'argocd/core', 'confluence', 'slab', 'opensearch/status', 'grafana/loki', 'grafana/tempo', 'newrelic', 'grafana/grafana', 'notion', 'kafka/admin', 'datadog/logs', 'datadog/metrics', 'datadog/traces', 'opensearch/logs', 'opensearch/traces', 'coralogix/logs', 'rabbitmq/core', 'git', 'bash', 'MongoDBAtlas', 'runbook', 'azure/sql', 'ServiceNow'] +2025-08-06 08:34:20,164 INFO Started server process [1] +2025-08-06 08:34:20,165 INFO Waiting for application startup. +2025-08-06 08:34:20,165 INFO Application startup complete. +2025-08-06 08:34:20,165 INFO Uvicorn running on http://0.0.0.0:5050 (Press CTRL+C to quit) +2025-08-06 08:39:37,900 INFO 10.244.1.201:54478 - "GET /api/model HTTP/1.1" 200 +2025-08-06 08:45:46,521 INFO 10.244.1.201:33102 - "GET /api/model HTTP/1.1" 200 +2025-08-06 09:00:55,395 INFO 10.244.1.201:49770 - "GET /api/model HTTP/1.1" 200 +09:06:47 - LiteLLM:INFO: utils.py:3085 - +LiteLLM completion() model= gpt-4o; provider = azure +2025-08-06 09:06:47.503 INFO +LiteLLM completion() model= gpt-4o; provider = azure +09:06:49 - LiteLLM:INFO: utils.py:1177 - Wrapper: Completed Call, calling success_handler +2025-08-06 09:06:49.204 INFO Wrapper: Completed Call, calling success_handler +09:06:49 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:06:49.204 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +09:06:49 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:06:49.205 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +09:06:49 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:06:49.206 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:06:49.207 INFO Running tool [bold]kubectl_find_resource[/bold]: kubectl get -A --show-labels -o wide pod | grep robusta +2025-08-06 09:06:49.363 INFO [dim]Finished in 0.15s, output length: 3,635 characters[/dim] + +09:06:49 - LiteLLM:INFO: utils.py:3085 - +LiteLLM completion() model= gpt-4o; provider = azure +2025-08-06 09:06:49.368 INFO +LiteLLM completion() model= gpt-4o; provider = azure +09:06:50 - LiteLLM:INFO: utils.py:1177 - Wrapper: Completed Call, calling success_handler +2025-08-06 09:06:50.210 INFO Wrapper: Completed Call, calling success_handler +09:06:50 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:06:50.210 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:06:50.212 INFO Running tool [bold]list_available_metrics[/bold]: Search Available Prometheus Metrics: name_filter="memory", type_filter="" +09:06:50 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:06:50.214 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:06:50.601 INFO [dim]Finished in 0.39s, output length: 13,336 characters[/dim] + +09:06:50 - LiteLLM:INFO: utils.py:3085 - +LiteLLM completion() model= gpt-4o; provider = azure +2025-08-06 09:06:50.605 INFO +LiteLLM completion() model= gpt-4o; provider = azure +09:06:59 - LiteLLM:INFO: utils.py:1177 - Wrapper: Completed Call, calling success_handler +2025-08-06 09:06:59.937 INFO Wrapper: Completed Call, calling success_handler +09:06:59 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:06:59.937 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +09:06:59 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:06:59.938 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:06:59.939 INFO Running tool [bold]execute_prometheus_range_query[/bold]: Execute Prometheus Query (range): promql='container_memory_working_set_bytes{pod="robusta-runner-7867c89f69-f6jsz",namespace="default"}', start=2025-08-06T08:51:47.479856+00:00, end=2025-08-06T09:06:47.479856+00:00, step=30, description='Memory usage of robusta-runner pod' +2025-08-06 09:07:00.173 INFO [dim]Finished in 0.23s, output length: 519 characters[/dim] + +09:07:00 - LiteLLM:INFO: utils.py:3085 - +LiteLLM completion() model= gpt-4o; provider = azure +2025-08-06 09:07:00.177 INFO +LiteLLM completion() model= gpt-4o; provider = azure +09:07:01 - LiteLLM:INFO: utils.py:1177 - Wrapper: Completed Call, calling success_handler +2025-08-06 09:07:01.216 INFO Wrapper: Completed Call, calling success_handler +09:07:01 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:07:01.217 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:07:01,218 INFO 10.244.1.201:54978 - "POST /api/chat HTTP/1.1" 200 +09:07:01 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:07:01.219 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +09:08:21 - LiteLLM:INFO: utils.py:3085 - +LiteLLM completion() model= gpt-4o; provider = azure +2025-08-06 09:08:21.190 INFO +LiteLLM completion() model= gpt-4o; provider = azure +09:08:22 - LiteLLM:INFO: utils.py:1177 - Wrapper: Completed Call, calling success_handler +2025-08-06 09:08:22.464 INFO Wrapper: Completed Call, calling success_handler +09:08:22 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:08:22.465 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:08:22.466 INFO Running tool [bold]kubectl_find_resource[/bold]: kubectl get -A --show-labels -o wide pod | grep customer-orders-69d64446d-zg5x8 +09:08:22 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:08:22.469 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:08:22.587 INFO [dim]Finished in 0.12s, output length: 290 characters[/dim] + +09:08:22 - LiteLLM:INFO: utils.py:3085 - +LiteLLM completion() model= gpt-4o; provider = azure +2025-08-06 09:08:22.589 INFO +LiteLLM completion() model= gpt-4o; provider = azure +09:08:23 - LiteLLM:INFO: utils.py:1177 - Wrapper: Completed Call, calling success_handler +2025-08-06 09:08:23.968 INFO Wrapper: Completed Call, calling success_handler +09:08:23 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:08:23.968 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +09:08:23 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:08:23.969 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:08:23.970 INFO Running tool [bold]execute_prometheus_range_query[/bold]: Execute Prometheus Query (range): promql='container_memory_working_set_bytes{pod="customer-orders-69d64446d-zg5x8",namespace="default"}', start=2025-08-06T08:51:47.479856+00:00, end=2025-08-06T09:06:47.479856+00:00, step=30, description='Memory usage of customer-orders pod' +2025-08-06 09:08:24.083 INFO [dim]Finished in 0.11s, output length: 12,276 characters[/dim] + +09:08:24 - LiteLLM:INFO: utils.py:3085 - +LiteLLM completion() model= gpt-4o; provider = azure +2025-08-06 09:08:24.087 INFO +LiteLLM completion() model= gpt-4o; provider = azure +09:08:25 - LiteLLM:INFO: utils.py:1177 - Wrapper: Completed Call, calling success_handler +2025-08-06 09:08:25.254 INFO Wrapper: Completed Call, calling success_handler +09:08:25 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:08:25.255 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +09:08:25 - LiteLLM:INFO: cost_calculator.py:636 - selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:08:25.256 INFO selected model name for cost calculation: azure/gpt-4o-2024-11-20 +2025-08-06 09:08:25,258 INFO 10.244.1.201:43620 - "POST /api/chat HTTP/1.1" 200 +2025-08-06 09:16:07,855 INFO 10.244.1.201:40380 - "GET /api/model HTTP/1.1" 200 +2025-08-06 09:31:20,316 INFO 10.244.1.201:46964 - "GET /api/model HTTP/1.1" 200 +2025-08-06 09:46:32,101 INFO 10.244.1.201:59142 - "GET /api/model HTTP/1.1" 200 +2025-08-06 10:01:44,006 INFO 10.244.1.201:36154 - "GET /api/model HTTP/1.1" 200 +2025-08-06 10:16:55,602 INFO 10.244.1.201:50734 - "GET /api/model HTTP/1.1" 200 +2025-08-06 10:32:06,823 INFO 10.244.1.201:59996 - "GET /api/model HTTP/1.1" 200 +2025-08-06 10:47:18,071 INFO 10.244.1.201:52444 - "GET /api/model HTTP/1.1" 200 +2025-08-06 11:02:30,254 INFO 10.244.1.201:41500 - "GET /api/model HTTP/1.1" 200 +2025-08-06 11:17:41,349 INFO 10.244.1.201:35106 - "GET /api/model HTTP/1.1" 200 +2025-08-06 11:32:53,645 INFO 10.244.1.201:46410 - "GET /api/model HTTP/1.1" 200 +2025-08-06 11:48:05,113 INFO 10.244.1.201:47416 - "GET /api/model HTTP/1.1" 200 +2025-08-06 12:03:17,892 INFO 10.244.1.201:42280 - "GET /api/model HTTP/1.1" 200 +2025-08-06 12:18:29,491 INFO 10.244.1.201:50634 - "GET /api/model HTTP/1.1" 200 +2025-08-06 12:33:40,805 INFO 10.244.1.201:47226 - "GET /api/model HTTP/1.1" 200 +2025-08-06 12:48:52,123 INFO 10.244.1.201:49198 - "GET /api/model HTTP/1.1" 200 +2025-08-06 13:04:09,124 INFO 10.244.1.201:37892 - "GET /api/model HTTP/1.1" 200 +2025-08-06 13:19:20,143 INFO 10.244.1.201:41248 - "GET /api/model HTTP/1.1" 200 +2025-08-06 13:34:33,635 INFO 10.244.1.201:41048 - "GET /api/model HTTP/1.1" 200 +2025-08-06 13:49:44,886 INFO 10.244.1.201:39144 - "GET /api/model HTTP/1.1" 200 +2025-08-06 14:04:56,661 INFO 10.244.1.201:33742 - "GET /api/model HTTP/1.1" 200 +setting up colored logging +2025-08-07 03:29:52.110 INFO logger initialized using INFO log level +2025-08-07 03:29:52.111 INFO loading config /etc/robusta/config/active_playbooks.yaml +2025-08-07 03:29:52.527 WARNING No content found in file: /etc/holmes/config/model_list.yaml +2025-08-07 03:29:52.527 INFO loading config /etc/robusta/config/active_playbooks.yaml +2025-08-07 03:29:52.562 INFO Initializing Robusta platform connection for account 16ecba1a-7993-4dd1-a98c-d201462ccba7 +2025-08-07 03:29:52.591 INFO Supabase DAL login +2025-08-07 03:29:53.036 INFO Patching postgres execute +2025-08-07 03:29:53.036 INFO Skipping sentry initialization for custom version +2025-08-07 03:29:53.040 INFO Updating status of holmes +2025-08-07 03:29:53.759 WARNING Toolset 'datadog/rds' is invalid: 1 validation error for YAMLToolset +description + Field required [type=missing, input_value={'config': {'dd_api_key':...tadog/rds', 'tools': []}, input_type=dict] + For further information visit https://errors.pydantic.dev/2.11/v/missing +2025-08-07 03:29:53.820 INFO ✅ Toolset kubernetes/core +2025-08-07 03:29:53.820 INFO ✅ Toolset kubernetes/kube-prometheus-stack +2025-08-07 03:29:53.821 INFO ✅ Toolset internet +2025-08-07 03:29:53.821 INFO ✅ Toolset robusta +2025-08-07 03:29:53.922 INFO ✅ Toolset prometheus/metrics +2025-08-07 03:29:53.922 INFO ✅ Toolset kubernetes/logs +2025-08-07 03:29:54.168 INFO Toolsets upserted successfully. +2025-08-07 03:29:54.304 INFO Toolsets synchronized successfully. +2025-08-07 03:29:54.304 INFO Enabled toolsets: ['kubernetes/core', 'kubernetes/kube-prometheus-stack', 'internet', 'robusta', 'prometheus/metrics', 'kubernetes/logs'] +2025-08-07 03:29:54.304 INFO Disabled toolsets: ['kubernetes/live-metrics', 'kubernetes/kube-lineage-extras', 'helm/core', 'argocd/core', 'confluence', 'slab', 'opensearch/status', 'grafana/loki', 'grafana/tempo', 'newrelic', 'grafana/grafana', 'notion', 'kafka/admin', 'datadog/logs', 'datadog/metrics', 'datadog/traces', 'opensearch/logs', 'opensearch/traces', 'coralogix/logs', 'rabbitmq/core', 'git', 'bash', 'MongoDBAtlas', 'runbook', 'azure/sql', 'ServiceNow'] +2025-08-07 03:29:54,396 INFO Started server process [1] +2025-08-07 03:29:54,396 INFO Waiting for application startup. +2025-08-07 03:29:54,396 INFO Application startup complete. +2025-08-07 03:29:54,397 INFO Uvicorn running on http://0.0.0.0:5050 (Press CTRL+C to quit) diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logserror_default_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z_3.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logserror_default_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z_3.txt new file mode 100644 index 00000000000..58a4bb0d23d --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logserror_default_robusta-holmes-fdf65b49-c7pb7_2023-06-12T00_00_00Z_3.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes-7bfb7f85b7-2w9ck","namespace":"default","start_time":"2023-06-12T00:00:00Z","filter":"error"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes-7bfb7f85b7-2w9ck", "start_time": "2023-06-12T00:00:00Z", "end_time": null, "filter": "error", "limit": null}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logserror_default_robusta-holmes_2023-06-12T00_00_00Z_4.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logserror_default_robusta-holmes_2023-06-12T00_00_00Z_4.txt new file mode 100644 index 00000000000..4c7ea242ddd --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logserror_default_robusta-holmes_2023-06-12T00_00_00Z_4.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes","namespace":"default","start_time":"2023-06-12T00:00:00Z","filter":"error"}} +{"schema_version": "robusta:v1.0.0", "status": "error", "error": "error: error from server (NotFound): pods \"robusta-holmes\" not found in namespace \"default\"", "return_code": 1, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes", "start_time": "2023-06-12T00:00:00Z", "end_time": null, "filter": "error", "limit": null}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logserror_default_robusta-holmes_2025-06-12T00_00_00Z_3.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logserror_default_robusta-holmes_2025-06-12T00_00_00Z_3.txt new file mode 100644 index 00000000000..a0acbdb05f1 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/fetch_pod_logserror_default_robusta-holmes_2025-06-12T00_00_00Z_3.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes","namespace":"default","start_time":"2025-06-12T00:00:00Z","filter":"error"}} +{"schema_version": "robusta:v1.0.0", "status": "error", "error": "error: error from server (NotFound): pods \"robusta-holmes\" not found in namespace \"default\"", "return_code": 1, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes", "start_time": "2025-06-12T00:00:00Z", "end_time": null, "filter": "error", "limit": null}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/get_current_time_.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/get_current_time_.txt new file mode 100644 index 00000000000..f987e366fa7 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/get_current_time_.txt @@ -0,0 +1,7 @@ +{"toolset_name":"datetime","tool_name":"get_current_time","match_params":{}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {}} +The current UTC date and time are 2025-06-19 08:12:45.811389+00:00. +The current UTC timestamp in seconds is 1750320765. +Today is Thursday. +The month is June. +The week number is 25. diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/kubectl_find_resourcerobusta-holmes_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/kubectl_find_resourcerobusta-holmes_pod.txt new file mode 100644 index 00000000000..2837fc16ce9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/kubectl_find_resourcerobusta-holmes_pod.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"pod","keyword":"robusta-holmes"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "url": null, "invocation": "kubectl get -A --show-labels -o wide pod | grep robusta-holmes", "params": {"kind": "pod", "keyword": "robusta-holmes"}} +default robusta-holmes-7bfb7f85b7-2w9ck 1/1 Running 1 (11m ago) 19h 10.244.1.52 kind-double-node-worker app=holmes,pod-template-hash=fdf65b49 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/test_case.yaml new file mode 100644 index 00000000000..f541bcec493 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/test_case.yaml @@ -0,0 +1,16 @@ +user_prompt: "What are the errors in pod robusta-holmes since June 12?" +tags: + - logs + - synthetic + - medium + - kubernetes +expected_output: | + The following issues are mentioned either as direct quotes or in summarized form. It's ok if specific dates are not mentioned: + - 2025-06-12 The database at my.postgresql.com has become unavailable + - 2025-06-15 Syntax error for query fetch_user_logs + - 2025-06-19 SSL certificate expired + +evaluation: + correctness: loose + +# mock_policy: always_mock diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/toolsets.yaml new file mode 100644 index 00000000000..5ea5b239e0a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50_logs_since_specific_date/toolsets.yaml @@ -0,0 +1,5 @@ +toolsets: + kubernetes/logs: + enabled: true + kubernetes/core: + enabled: true diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/fetch_pod_logs2024-12-31T23_59_59Z_Error_default_robusta-holmes-6bbcd9f6f5-2q4jc_2024-12-01T00_00_00Z.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/fetch_pod_logs2024-12-31T23_59_59Z_Error_default_robusta-holmes-6bbcd9f6f5-2q4jc_2024-12-01T00_00_00Z.txt new file mode 100644 index 00000000000..c5866c4efa8 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/fetch_pod_logs2024-12-31T23_59_59Z_Error_default_robusta-holmes-6bbcd9f6f5-2q4jc_2024-12-01T00_00_00Z.txt @@ -0,0 +1,13 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes-6bbcd9f6f5-2q4jc","namespace":"default","start_time":"2024-12-01T00:00:00Z","end_time":"2024-12-31T23:59:59Z","filter":"Error"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes-7bfb7f85b7-2w9ck", "start_time":"2024-12-01T00:00:00Z","end_time":"2024-12-31T23:59:59Z","filter":"Error", "limit": null}} +2025-06-12 22:14:51,711 ERROR Database error: The database at my.postgresql.com has become unavailable +2025-06-13 13:12:53,047 WARNING The application is suffering from memory pressure. The current memory usage is 594MB but the soft limit is 512MB. The hard limit is 768MB. +2025-06-13 15:11:53,047 INFO Memory pressure resolved. The current memory usage is 496MB. The soft limit is 512MB. The hard limit is 768MB. +2025-06-14 16:57:02,098 WARNING High CPU usage. Average CPU usage over the last 5 minutes is 325% the allocated CPU. If this issue persists the app will self-terminate. +2025-06-14 17:15:01,032 INFO CPU usage back to normal. +2025-06-15 16:57:02,098 ERROR Failed to execute query fetch_user_logs: Syntax error +2025-06-19 08:35:17,235 ERROR SSL certificate expired + Traceback (most recent call last): + File "/app/app.py", line 141, in check_certificate_expiry + raise ExpiredCertException(f"Certificate expired on {cert_expiry}") + ExpiredCertException: Certificate expired on 2024-08-03 17:00:08 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/fetch_pod_logs2024-12-31T23_59_59Z_default_robusta-holmes-6bbcd9f6f5-2q4jc_2024-12-01T00_00_00Z.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/fetch_pod_logs2024-12-31T23_59_59Z_default_robusta-holmes-6bbcd9f6f5-2q4jc_2024-12-01T00_00_00Z.txt new file mode 100644 index 00000000000..945492df02c --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/fetch_pod_logs2024-12-31T23_59_59Z_default_robusta-holmes-6bbcd9f6f5-2q4jc_2024-12-01T00_00_00Z.txt @@ -0,0 +1,13 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes-6bbcd9f6f5-2q4jc","namespace":"default","start_time":"2024-12-01T00:00:00Z","end_time":"2024-12-31T23:59:59Z"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes-7bfb7f85b7-2w9ck", "start_time": "2024-12-01T00:00:00Z", "end_time": "2024-12-31T23:59:59Z", "filter": null, "limit": null}} +2025-06-12 22:14:51,711 ERROR Database error: The database at my.postgresql.com has become unavailable +2025-06-13 13:12:53,047 WARNING The application is suffering from memory pressure. The current memory usage is 594MB but the soft limit is 512MB. The hard limit is 768MB. +2025-06-13 15:11:53,047 INFO Memory pressure resolved. The current memory usage is 496MB. The soft limit is 512MB. The hard limit is 768MB. +2025-06-14 16:57:02,098 WARNING High CPU usage. Average CPU usage over the last 5 minutes is 325% the allocated CPU. If this issue persists the app will self-terminate. +2025-06-14 17:15:01,032 INFO CPU usage back to normal. +2025-06-15 16:57:02,098 ERROR Failed to execute query fetch_user_logs: Syntax error +2025-06-19 08:35:17,235 ERROR SSL certificate expired + Traceback (most recent call last): + File "/app/app.py", line 141, in check_certificate_expiry + raise ExpiredCertException(f"Certificate expired on {cert_expiry}") + ExpiredCertException: Certificate expired on 2024-08-03 17:00:08 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/fetch_pod_logs2024-12-31T23_59_59Z_error_default_robusta-holmes-6bbcd9f6f5-2q4jc_2024-12-01T00_00_00Z_2.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/fetch_pod_logs2024-12-31T23_59_59Z_error_default_robusta-holmes-6bbcd9f6f5-2q4jc_2024-12-01T00_00_00Z_2.txt new file mode 100644 index 00000000000..0a2f972ba8c --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/fetch_pod_logs2024-12-31T23_59_59Z_error_default_robusta-holmes-6bbcd9f6f5-2q4jc_2024-12-01T00_00_00Z_2.txt @@ -0,0 +1,13 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes-6bbcd9f6f5-2q4jc","namespace":"default","start_time":"2024-12-01T00:00:00Z","end_time":"2024-12-31T23:59:59Z","filter":"error"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes-7bfb7f85b7-2w9ck", "start_time":"2024-12-01T00:00:00Z","end_time":"2024-12-31T23:59:59Z","filter":"error", "limit": null}} +2025-06-12 22:14:51,711 ERROR Database error: The database at my.postgresql.com has become unavailable +2025-06-13 13:12:53,047 WARNING The application is suffering from memory pressure. The current memory usage is 594MB but the soft limit is 512MB. The hard limit is 768MB. +2025-06-13 15:11:53,047 INFO Memory pressure resolved. The current memory usage is 496MB. The soft limit is 512MB. The hard limit is 768MB. +2025-06-14 16:57:02,098 WARNING High CPU usage. Average CPU usage over the last 5 minutes is 325% the allocated CPU. If this issue persists the app will self-terminate. +2025-06-14 17:15:01,032 INFO CPU usage back to normal. +2025-06-15 16:57:02,098 ERROR Failed to execute query fetch_user_logs: Syntax error +2025-06-19 08:35:17,235 ERROR SSL certificate expired + Traceback (most recent call last): + File "/app/app.py", line 141, in check_certificate_expiry + raise ExpiredCertException(f"Certificate expired on {cert_expiry}") + ExpiredCertException: Certificate expired on 2024-08-03 17:00:08 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/fetch_pod_logs_default.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/fetch_pod_logs_default.txt new file mode 100644 index 00000000000..fce3884a401 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/fetch_pod_logs_default.txt @@ -0,0 +1,13 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"robusta-holmes-6bbcd9f6f5-2q4jc","namespace":"default","start_time":"2024-12-01T00:00:00Z"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "default", "pod_name": "robusta-holmes-6bbcd9f6f5-2q4jc", "start_time": "2024-12-01T00:00:00Z", "end_time": null, "filter": null, "limit": null}} +2024-12-12 22:14:51,711 ERROR Database error: The database at my.postgresql.com has become unavailable +2024-12-13 13:12:53,047 WARNING The application is suffering from memory pressure. The current memory usage is 594MB but the soft limit is 512MB. The hard limit is 768MB. +2024-12-13 15:11:53,047 INFO Memory pressure resolved. The current memory usage is 496MB. The soft limit is 512MB. The hard limit is 768MB. +2024-12-14 16:57:02,098 WARNING High CPU usage. Average CPU usage over the last 5 minutes is 325% the allocated CPU. If this issue persists the app will self-terminate. +2024-12-14 17:15:01,032 INFO CPU usage back to normal. +2024-12-15 16:57:02,098 ERROR Failed to execute query fetch_user_logs: Syntax error +2024-12-19 08:35:17,235 ERROR SSL certificate expired + Traceback (most recent call last): + File "/app/app.py", line 141, in check_certificate_expiry + raise ExpiredCertException(f"Certificate expired on {cert_expiry}") + ExpiredCertException: Certificate expired on 2024-08-03 17:00:08 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/get_current_time_.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/get_current_time_.txt new file mode 100644 index 00000000000..f987e366fa7 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/get_current_time_.txt @@ -0,0 +1,7 @@ +{"toolset_name":"datetime","tool_name":"get_current_time","match_params":{}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {}} +The current UTC date and time are 2025-06-19 08:12:45.811389+00:00. +The current UTC timestamp in seconds is 1750320765. +Today is Thursday. +The month is June. +The week number is 25. diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/kubectl_find_resource_robusta-holmes_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/kubectl_find_resource_robusta-holmes_pod.txt new file mode 100644 index 00000000000..7dd8a5cb5ba --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/kubectl_find_resource_robusta-holmes_pod.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"pod","keyword":"robusta-holmes"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide pod | grep robusta-holmes", "params": {"kind": "pod", "keyword": "robusta-holmes"}} +default robusta-holmes-6bbcd9f6f5-2q4jc 1/1 Running 6 (37m ago) 9d 10.244.1.63 kind-double-node-worker app=holmes,pod-template-hash=7bfb7f85b7 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/test_case.yaml new file mode 100644 index 00000000000..900d5bd744f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/test_case.yaml @@ -0,0 +1,15 @@ +user_prompt: "What were the errors in pod robusta-holmes last December?" +tags: + - logs + - synthetic + - medium + - kubernetes +expected_output: + - 2024-12-12 The database at my.postgresql.com has become unavailable + - 2024-12-15 Syntax error for query fetch_user_logs + - 2024-12-19 SSL certificate expired + +evaluation: + correctness: loose + +mock_policy: always_mock diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/toolsets.yaml new file mode 100644 index 00000000000..5ea5b239e0a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/50a_logs_since_last_specific_month/toolsets.yaml @@ -0,0 +1,5 @@ +toolsets: + kubernetes/logs: + enabled: true + kubernetes/core: + enabled: true diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/fetch_pod_logs_ERROR_ask-holmes-namespace-51_my-app-51-59d94fd7cc-927wn_error_uppercase.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/fetch_pod_logs_ERROR_ask-holmes-namespace-51_my-app-51-59d94fd7cc-927wn_error_uppercase.txt new file mode 100644 index 00000000000..a5d27f71c70 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/fetch_pod_logs_ERROR_ask-holmes-namespace-51_my-app-51-59d94fd7cc-927wn_error_uppercase.txt @@ -0,0 +1,700 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"my-app-51-59d94fd7cc-927wn","namespace":"ask-holmes-namespace-51","filter":"ERROR"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "ask-holmes-namespace-51", "pod_name": "my-app-51-59d94fd7cc-927wn", "start_time": null, "end_time": null, "filter": "ERROR", "limit": null}} +2025-06-20T10:37:30.113Z [ERROR] auth-service - Authentication system error for user user_1062 from 192.168.152.169 - Error: Identity provider certificate expired - RequestID: k92x86k8msd +2025-06-20T10:37:30.113Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 496255 - RequestID: 7tjp58wxyed +2025-06-20T10:37:35.213Z [ERROR] auth-service - Authentication system error for user user_1022 from 192.168.162.209 - Error: Identity provider certificate expired - RequestID: qdgypkyq8k +2025-06-20T10:37:35.213Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(353798) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (353798, 'user_1085') - RequestID: 5sytti8tgnv +2025-06-20T10:37:40.313Z [ERROR] auth-service - Authentication system error for user user_1013 from 192.168.32.125 - Error: Identity provider certificate expired - RequestID: o9fk2s5mno +2025-06-20T10:37:40.314Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(426453) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (426453, 'user_1050') - RequestID: fqcnn72obig +2025-06-20T10:37:45.415Z [ERROR] auth-service - Authentication system error for user user_1080 from 192.168.13.14 - Error: Identity provider certificate expired - RequestID: 2kbxcv6qfs5 +2025-06-20T10:37:45.416Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(867202) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (867202, 'user_1089') - RequestID: 3ygoxcazggf +2025-06-20T10:37:50.517Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.172.121 - Error: Identity provider certificate expired - RequestID: ymcegix7zx +2025-06-20T10:37:50.517Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 116552 - RequestID: xms8bvt82fa +2025-06-20T10:37:55.617Z [ERROR] auth-service - Authentication system error for user user_1020 from 192.168.119.62 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: wop9xpaun58 +2025-06-20T10:37:55.617Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 640846 - RequestID: pvrae9p6y7c +2025-06-20T10:38:00.717Z [ERROR] auth-service - Authentication system error for user user_1028 from 192.168.203.86 - Error: Identity provider certificate expired - RequestID: 6y090cj57nr +2025-06-20T10:38:00.717Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 572360 - RequestID: wi8ao3t2b2 +2025-06-20T10:38:05.817Z [ERROR] auth-service - Authentication system error for user user_1085 from 192.168.249.127 - Error: Identity provider certificate expired - RequestID: 4pmmhntsxsw +2025-06-20T10:38:05.817Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(985166) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (985166, 'user_1024') - RequestID: j54qp2dn8ea +2025-06-20T10:38:10.917Z [ERROR] auth-service - Authentication system error for user user_1015 from 192.168.209.249 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: wtbyvgx5vzj +2025-06-20T10:38:10.917Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 548997 - RequestID: 3fehle4k69p +2025-06-20T10:38:16.017Z [ERROR] auth-service - Authentication system error for user user_1098 from 192.168.35.82 - Error: Identity provider certificate expired - RequestID: nbrg2xipqbe +2025-06-20T10:38:16.017Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 148617 - RequestID: 0c22o71fj4ja +2025-06-20T10:38:21.119Z [ERROR] auth-service - Authentication system error for user user_1087 from 192.168.217.231 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 14bokirpxbpl +2025-06-20T10:38:21.119Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 326112 - RequestID: cg71rddctf +2025-06-20T10:38:26.219Z [ERROR] auth-service - Authentication system error for user user_1003 from 192.168.197.194 - Error: Identity provider certificate expired - RequestID: ztuuc1lkat +2025-06-20T10:38:26.219Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(892694) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (892694, 'user_1075') - RequestID: lqosadrvin +2025-06-20T10:38:31.319Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.115.66 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ie2wz8xb08 +2025-06-20T10:38:31.319Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 426035 - RequestID: fpk2unqm67 +2025-06-20T10:38:36.421Z [ERROR] auth-service - Authentication system error for user user_1022 from 192.168.162.209 - Error: Identity provider certificate expired - RequestID: 2sq15m84erx +2025-06-20T10:38:36.421Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(770788) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (770788, 'user_1016') - RequestID: 6hb6k05l24w +2025-06-20T10:38:41.523Z [ERROR] auth-service - Authentication system error for user user_1021 from 192.168.204.182 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 46iftysub31 +2025-06-20T10:38:41.523Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 479670 - RequestID: 4yxvty1jzm6 +2025-06-20T10:38:46.624Z [ERROR] auth-service - Authentication system error for user user_1059 from 192.168.119.62 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 9gbgwfyxtc7 +2025-06-20T10:38:46.624Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 275482 - RequestID: 3uzvw51ezln +2025-06-20T10:38:51.726Z [ERROR] auth-service - Authentication system error for user user_1069 from 192.168.43.230 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 4jhhlr6foy6 +2025-06-20T10:38:51.726Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 309072 - RequestID: d86ldcn1b17 +2025-06-20T10:38:56.826Z [ERROR] auth-service - Authentication system error for user user_1042 from 192.168.16.121 - Error: Identity provider certificate expired - RequestID: xuetmd8foik +2025-06-20T10:38:56.826Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 319111 - RequestID: jat5j5q7hmo +2025-06-20T10:39:01.926Z [ERROR] auth-service - Authentication system error for user user_1060 from 192.168.239.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: uc55h1kgpy +2025-06-20T10:39:01.926Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 422186 - RequestID: aghyg2fpmow +2025-06-20T10:39:07.025Z [ERROR] auth-service - Authentication system error for user user_1092 from 192.168.209.249 - Error: Identity provider certificate expired - RequestID: 7m7fharf70j +2025-06-20T10:39:07.025Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 152491 - RequestID: qu6k3jmbdss +2025-06-20T10:39:12.125Z [ERROR] auth-service - Authentication system error for user user_1042 from 192.168.16.121 - Error: Identity provider certificate expired - RequestID: qk55r37wz0e +2025-06-20T10:39:12.125Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 377457 - RequestID: du29atadec5 +2025-06-20T10:39:17.227Z [ERROR] auth-service - Authentication system error for user user_1003 from 192.168.237.140 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: jxfrm2k321 +2025-06-20T10:39:17.227Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(658923) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (658923, 'user_1039') - RequestID: 9nqdycndhhu +2025-06-20T10:39:22.328Z [ERROR] auth-service - Authentication system error for user user_1002 from 192.168.249.127 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 4u9bxr3xpfs +2025-06-20T10:39:22.328Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(451551) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (451551, 'user_1007') - RequestID: ejckcc71s69 +2025-06-20T10:39:27.428Z [ERROR] auth-service - Authentication system error for user user_1029 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: f6ttxlpc5xp +2025-06-20T10:39:27.428Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(283308) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (283308, 'user_1032') - RequestID: xnrlbkjjw2 +2025-06-20T10:39:32.528Z [ERROR] auth-service - Authentication system error for user user_1018 from 192.168.154.185 - Error: Identity provider certificate expired - RequestID: ohkk2u71tce +2025-06-20T10:39:32.528Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 37844 - RequestID: 36bz70bdi68 +2025-06-20T10:39:37.628Z [ERROR] auth-service - Authentication system error for user user_1080 from 192.168.113.220 - Error: Identity provider certificate expired - RequestID: ur3qnnmmtg +2025-06-20T10:39:37.628Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(490895) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (490895, 'user_1068') - RequestID: 3ewrrdwwvy +2025-06-20T10:39:42.728Z [ERROR] auth-service - Authentication system error for user user_1019 from 192.168.132.247 - Error: Identity provider certificate expired - RequestID: sazg94cr67 +2025-06-20T10:39:42.728Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(416128) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (416128, 'user_1058') - RequestID: sgu8c9aqrt +2025-06-20T10:39:47.830Z [ERROR] auth-service - Authentication system error for user user_1027 from 192.168.4.60 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: q3j48z62888 +2025-06-20T10:39:47.830Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 562249 - RequestID: a8rvjk61krn +2025-06-20T10:39:52.930Z [ERROR] auth-service - Authentication system error for user user_1028 from 192.168.192.148 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: exj5r5i8hzd +2025-06-20T10:39:52.930Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 1875 - RequestID: 9m44i1qp5c4 +2025-06-20T10:39:58.030Z [ERROR] auth-service - Authentication system error for user user_1083 from 192.168.239.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: a8l4v6wdpvr +2025-06-20T10:39:58.030Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(440803) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (440803, 'user_1060') - RequestID: 4o3mp2k8ro2 +2025-06-20T10:40:03.130Z [ERROR] auth-service - Authentication system error for user user_1057 from 192.168.86.164 - Error: Identity provider certificate expired - RequestID: myps3dg2kvc +2025-06-20T10:40:03.130Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 286738 - RequestID: 23pqldqv0e1 +2025-06-20T10:40:08.230Z [ERROR] auth-service - Authentication system error for user user_1052 from 192.168.45.32 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 47j1723osnm +2025-06-20T10:40:08.230Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 623672 - RequestID: ddtbfrcfeel +2025-06-20T10:40:13.330Z [ERROR] auth-service - Authentication system error for user user_1057 from 192.168.166.68 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: varr4c1hrf +2025-06-20T10:40:13.330Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 985838 - RequestID: 2y9dkb9eqc9 +2025-06-20T10:40:18.431Z [ERROR] auth-service - Authentication system error for user user_1074 from 192.168.203.86 - Error: Identity provider certificate expired - RequestID: ktsdf9yyvm +2025-06-20T10:40:18.431Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(863890) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (863890, 'user_1028') - RequestID: xog3zd1h9fg +2025-06-20T10:40:23.531Z [ERROR] auth-service - Authentication system error for user user_1087 from 192.168.115.66 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ln5ilksw9h +2025-06-20T10:40:23.531Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(579410) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (579410, 'user_1092') - RequestID: 1xfnfz4zmit +2025-06-20T10:40:28.631Z [ERROR] auth-service - Authentication system error for user user_1061 from 192.168.204.182 - Error: Identity provider certificate expired - RequestID: 7e2pzeahcen +2025-06-20T10:40:28.631Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(108465) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (108465, 'user_1037') - RequestID: 2djf0i0ahj6 +2025-06-20T10:40:33.730Z [ERROR] auth-service - Authentication system error for user user_1096 from 192.168.203.86 - Error: Identity provider certificate expired - RequestID: h04kps1x59 +2025-06-20T10:40:33.730Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 290416 - RequestID: 09ncsjm0548g +2025-06-20T10:40:38.830Z [ERROR] auth-service - Authentication system error for user user_1076 from 192.168.86.164 - Error: Identity provider certificate expired - RequestID: tp7rznk22lc +2025-06-20T10:40:38.830Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 631608 - RequestID: 0icb59yjprdl +2025-06-20T10:40:43.930Z [ERROR] auth-service - Authentication system error for user user_1032 from 192.168.72.49 - Error: Identity provider certificate expired - RequestID: bdtrpapkqs +2025-06-20T10:40:43.930Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(588525) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (588525, 'user_1059') - RequestID: n8j59if3sa +2025-06-20T10:40:49.034Z [ERROR] auth-service - Authentication system error for user user_1043 from 192.168.16.121 - Error: Identity provider certificate expired - RequestID: uru0anvnvwo +2025-06-20T10:40:49.034Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(983254) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (983254, 'user_1010') - RequestID: 6tc5gzx6678 +2025-06-20T10:40:54.136Z [ERROR] auth-service - Authentication system error for user user_1054 from 192.168.135.187 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: agm42y75ypo +2025-06-20T10:40:54.136Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 668862 - RequestID: 4s1r4qhy7nj +2025-06-20T10:40:59.236Z [ERROR] auth-service - Authentication system error for user user_1027 from 192.168.239.220 - Error: Identity provider certificate expired - RequestID: d78jtsp8uw +2025-06-20T10:40:59.236Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 180775 - RequestID: fz0cysu7n2 +2025-06-20T10:41:04.336Z [ERROR] auth-service - Authentication system error for user user_1063 from 192.168.162.209 - Error: Identity provider certificate expired - RequestID: d2ice60tu3 +2025-06-20T10:41:04.336Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 217078 - RequestID: 95my7syx0cn +2025-06-20T10:41:09.436Z [ERROR] auth-service - Authentication system error for user user_1003 from 192.168.59.85 - Error: Identity provider certificate expired - RequestID: af44ecgxv8r +2025-06-20T10:41:09.436Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 506687 - RequestID: p6ll92gyiu +2025-06-20T10:41:14.536Z [ERROR] auth-service - Authentication system error for user user_1064 from 192.168.67.77 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: f1537qyucyw +2025-06-20T10:41:14.536Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 439031 - RequestID: 90xt48jdbbn +2025-06-20T10:41:19.638Z [ERROR] auth-service - Authentication system error for user user_1070 from 192.168.203.86 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 33dkg9uuetv +2025-06-20T10:41:19.638Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 666786 - RequestID: 9d6un76z4s6 +2025-06-20T10:41:24.738Z [ERROR] auth-service - Authentication system error for user user_1078 from 192.168.249.127 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 92l9g74izej +2025-06-20T10:41:24.738Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(835388) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (835388, 'user_1021') - RequestID: 1t5598ihhyc +2025-06-20T10:41:29.838Z [ERROR] auth-service - Authentication system error for user user_1010 from 192.168.239.220 - Error: Identity provider certificate expired - RequestID: td8xx3a9qr9 +2025-06-20T10:41:29.838Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 803687 - RequestID: x590bmsj04 +2025-06-20T10:41:34.939Z [ERROR] auth-service - Authentication system error for user user_1016 from 192.168.154.185 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 2e74ikqkbql +2025-06-20T10:41:34.939Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(494308) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (494308, 'user_1028') - RequestID: 4vpf0ava99e +2025-06-20T10:41:40.039Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.45.32 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: vvwrgdxssph +2025-06-20T10:41:40.039Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 813758 - RequestID: mm4y3r0qws +2025-06-20T10:41:45.139Z [ERROR] auth-service - Authentication system error for user user_1025 from 192.168.166.68 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: wk4nxkoqd5t +2025-06-20T10:41:45.139Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 487470 - RequestID: lya5bokune +2025-06-20T10:41:50.241Z [ERROR] auth-service - Authentication system error for user user_1077 from 192.168.154.185 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: mxm01fwtzcc +2025-06-20T10:41:50.241Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 614040 - RequestID: 4mh8jnhujqs +2025-06-20T10:41:55.341Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.141.228 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 3h39c9x9cpt +2025-06-20T10:41:55.341Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(901655) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (901655, 'user_1087') - RequestID: c9bb6db9nf4 +2025-06-20T10:42:00.441Z [ERROR] auth-service - Authentication system error for user user_1064 from 192.168.67.77 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: yhxulxrebk9 +2025-06-20T10:42:00.441Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(942997) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (942997, 'user_1074') - RequestID: dll0z169py7 +2025-06-20T10:42:05.542Z [ERROR] auth-service - Authentication system error for user user_1088 from 192.168.34.236 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ou63a8njcfa +2025-06-20T10:42:05.542Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 29415 - RequestID: ktljuykqgh9 +2025-06-20T10:42:10.641Z [ERROR] auth-service - Authentication system error for user user_1043 from 192.168.59.85 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: elz96528em +2025-06-20T10:42:10.641Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(262736) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (262736, 'user_1069') - RequestID: g9e5qfcqepf +2025-06-20T10:42:15.741Z [ERROR] auth-service - Authentication system error for user user_1079 from 192.168.209.249 - Error: Identity provider certificate expired - RequestID: 02kr5s1t6b4y +2025-06-20T10:42:15.741Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(461717) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (461717, 'user_1010') - RequestID: 3jtjjeylfpa +2025-06-20T10:42:20.843Z [ERROR] auth-service - Authentication system error for user user_1025 from 192.168.152.169 - Error: Identity provider certificate expired - RequestID: 5uf3fkjj4ei +2025-06-20T10:42:20.843Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(881194) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (881194, 'user_1035') - RequestID: vwq28a61w2 +2025-06-20T10:42:25.943Z [ERROR] auth-service - Authentication system error for user user_1096 from 192.168.141.228 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: dmq9yc54rtd +2025-06-20T10:42:25.943Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(21728) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (21728, 'user_1067') - RequestID: yl8ixrgnak +2025-06-20T10:42:31.045Z [ERROR] auth-service - Authentication system error for user user_1017 from 192.168.239.220 - Error: Identity provider certificate expired - RequestID: re7b7grwp2s +2025-06-20T10:42:31.045Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 826371 - RequestID: w2pt8je6w5 +2025-06-20T10:42:36.145Z [ERROR] auth-service - Authentication system error for user user_1062 from 192.168.138.229 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: r1kao80nzo +2025-06-20T10:42:36.145Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 609150 - RequestID: p2qo3oxv7t +2025-06-20T10:42:41.245Z [ERROR] auth-service - Authentication system error for user user_1051 from 192.168.4.60 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: lfmwdmqd5ie +2025-06-20T10:42:41.245Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(485753) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (485753, 'user_1015') - RequestID: nyieai6z31r +2025-06-20T10:42:46.345Z [ERROR] auth-service - Authentication system error for user user_1051 from 192.168.229.15 - Error: Identity provider certificate expired - RequestID: 05wbgbgpg6bx +2025-06-20T10:42:46.345Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(454905) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (454905, 'user_1092') - RequestID: 173b3ybaq67 +2025-06-20T10:42:51.446Z [ERROR] auth-service - Authentication system error for user user_1011 from 192.168.152.169 - Error: Identity provider certificate expired - RequestID: ilkdkegbrrf +2025-06-20T10:42:51.446Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(24398) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (24398, 'user_1089') - RequestID: unhucg6b66r +2025-06-20T10:42:56.548Z [ERROR] auth-service - Authentication system error for user user_1010 from 192.168.32.125 - Error: Identity provider certificate expired - RequestID: 6njzytnlwi4 +2025-06-20T10:42:56.548Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 645761 - RequestID: uxyodo2en1 +2025-06-20T10:43:01.649Z [ERROR] auth-service - Authentication system error for user user_1054 from 192.168.152.169 - Error: Identity provider certificate expired - RequestID: 28dxbxdoym6 +2025-06-20T10:43:01.649Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(784939) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (784939, 'user_1049') - RequestID: 0wrt6esbr54j +2025-06-20T10:43:06.750Z [ERROR] auth-service - Authentication system error for user user_1029 from 192.168.152.169 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: l64rat3f9dr +2025-06-20T10:43:06.750Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 404827 - RequestID: a9scos2m84j +2025-06-20T10:43:11.850Z [ERROR] auth-service - Authentication system error for user user_1085 from 192.168.126.119 - Error: Identity provider certificate expired - RequestID: 6ab62k0dypm +2025-06-20T10:43:11.850Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 79639 - RequestID: x54uyl9z3yo +2025-06-20T10:43:16.950Z [ERROR] auth-service - Authentication system error for user user_1035 from 192.168.115.66 - Error: Identity provider certificate expired - RequestID: o4e29hm22m +2025-06-20T10:43:16.950Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 537494 - RequestID: l0amfce24zb +2025-06-20T10:43:22.052Z [ERROR] auth-service - Authentication system error for user user_1018 from 192.168.13.14 - Error: Identity provider certificate expired - RequestID: ntb429to68e +2025-06-20T10:43:22.052Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(800382) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (800382, 'user_1024') - RequestID: 98owpi4dbx +2025-06-20T10:43:27.152Z [ERROR] auth-service - Authentication system error for user user_1051 from 192.168.229.15 - Error: Identity provider certificate expired - RequestID: t5s4ck5njko +2025-06-20T10:43:27.152Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(11001) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (11001, 'user_1077') - RequestID: fbz91hsgjew +2025-06-20T10:43:32.255Z [ERROR] auth-service - Authentication system error for user user_1052 from 192.168.172.121 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: yj49zdkaqcf +2025-06-20T10:43:32.255Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(641852) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (641852, 'user_1056') - RequestID: h6mgl6avz9k +2025-06-20T10:43:37.355Z [ERROR] auth-service - Authentication system error for user user_1049 from 192.168.59.85 - Error: Identity provider certificate expired - RequestID: lpmz6h3zeym +2025-06-20T10:43:37.355Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(954304) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (954304, 'user_1082') - RequestID: ixo4i0hdjz8 +2025-06-20T10:43:42.455Z [ERROR] auth-service - Authentication system error for user user_1011 from 192.168.135.187 - Error: Identity provider certificate expired - RequestID: 0qbm9aw9a5ug +2025-06-20T10:43:42.455Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(996099) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (996099, 'user_1065') - RequestID: 1peuy6s56rk +2025-06-20T10:43:47.557Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.197.194 - Error: Identity provider certificate expired - RequestID: 7thqh6airia +2025-06-20T10:43:47.557Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 212766 - RequestID: ome1rc7aytg +2025-06-20T10:43:52.659Z [ERROR] auth-service - Authentication system error for user user_1000 from 192.168.15.79 - Error: Identity provider certificate expired - RequestID: ck65tpoked +2025-06-20T10:43:52.659Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 506241 - RequestID: ndy5d83a8hc +2025-06-20T10:43:57.759Z [ERROR] auth-service - Authentication system error for user user_1012 from 192.168.72.49 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: xblm9i2cvpe +2025-06-20T10:43:57.759Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(329140) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (329140, 'user_1042') - RequestID: dzuoj9fdlyl +2025-06-20T10:44:02.862Z [ERROR] auth-service - Authentication system error for user user_1038 from 192.168.67.77 - Error: Identity provider certificate expired - RequestID: 4omo7x77n1w +2025-06-20T10:44:02.862Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(523949) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (523949, 'user_1067') - RequestID: lpvklr8np9m +2025-06-20T10:44:07.963Z [ERROR] auth-service - Authentication system error for user user_1090 from 192.168.143.242 - Error: Identity provider certificate expired - RequestID: ph89sq1gq3 +2025-06-20T10:44:07.963Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 148597 - RequestID: 8nkp3rgk4fv +2025-06-20T10:44:13.063Z [ERROR] auth-service - Authentication system error for user user_1002 from 192.168.240.4 - Error: Identity provider certificate expired - RequestID: z11e39osdyf +2025-06-20T10:44:13.063Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 988179 - RequestID: xr581esd5sc +2025-06-20T10:44:18.165Z [ERROR] auth-service - Authentication system error for user user_1080 from 192.168.108.24 - Error: Identity provider certificate expired - RequestID: qxy3gr6krk +2025-06-20T10:44:18.165Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(154977) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (154977, 'user_1035') - RequestID: sd5p64vtvba +2025-06-20T10:44:23.265Z [ERROR] auth-service - Authentication system error for user user_1041 from 192.168.16.121 - Error: Identity provider certificate expired - RequestID: zlov2d9p42 +2025-06-20T10:44:23.265Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(494080) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (494080, 'user_1063') - RequestID: 3suxqhsp61c +2025-06-20T10:44:28.365Z [ERROR] auth-service - Authentication system error for user user_1051 from 192.168.141.228 - Error: Identity provider certificate expired - RequestID: 3jna7ghypl3 +2025-06-20T10:44:28.365Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(794882) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (794882, 'user_1053') - RequestID: d992bmc50gd +2025-06-20T10:44:33.465Z [ERROR] auth-service - Authentication system error for user user_1078 from 192.168.59.85 - Error: Identity provider certificate expired - RequestID: ggkqj0lvkoh +2025-06-20T10:44:33.465Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 667023 - RequestID: xmu0dpma6ap +2025-06-20T10:44:38.564Z [ERROR] auth-service - Authentication system error for user user_1003 from 192.168.217.231 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: w325rw20eq +2025-06-20T10:44:38.564Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(249535) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (249535, 'user_1009') - RequestID: ebgo60geu7r +2025-06-20T10:44:43.664Z [ERROR] auth-service - Authentication system error for user user_1040 from 192.168.137.27 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 1ovlspzme6w +2025-06-20T10:44:43.664Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(5798) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (5798, 'user_1004') - RequestID: d9vfcmurvh +2025-06-20T10:44:48.766Z [ERROR] auth-service - Authentication system error for user user_1010 from 192.168.192.148 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 34lgorh22c8 +2025-06-20T10:44:48.766Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 936486 - RequestID: w3xn8yutg +2025-06-20T10:44:53.866Z [ERROR] auth-service - Authentication system error for user user_1099 from 192.168.67.77 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: it4l61defp +2025-06-20T10:44:53.866Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(21359) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (21359, 'user_1083') - RequestID: oo0k3ygla1m +2025-06-20T10:44:58.966Z [ERROR] auth-service - Authentication system error for user user_1067 from 192.168.132.247 - Error: Identity provider certificate expired - RequestID: qnehmh8tri8 +2025-06-20T10:44:58.966Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 363283 - RequestID: qmj6r7p6wa +2025-06-20T10:45:04.066Z [ERROR] auth-service - Authentication system error for user user_1032 from 192.168.192.148 - Error: Identity provider certificate expired - RequestID: dcqkqu2lkpv +2025-06-20T10:45:04.066Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(317651) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (317651, 'user_1083') - RequestID: 7oqn15hlwtp +2025-06-20T10:45:09.169Z [ERROR] auth-service - Authentication system error for user user_1010 from 192.168.45.32 - Error: Identity provider certificate expired - RequestID: 1yvx94ddnob +2025-06-20T10:45:09.169Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(332496) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (332496, 'user_1093') - RequestID: hkwifjrt80o +2025-06-20T10:45:14.269Z [ERROR] auth-service - Authentication system error for user user_1062 from 192.168.98.8 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: nt62gieglr +2025-06-20T10:45:14.269Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 886008 - RequestID: mugmeno1upr +2025-06-20T10:45:19.370Z [ERROR] auth-service - Authentication system error for user user_1050 from 192.168.143.242 - Error: Identity provider certificate expired - RequestID: b9schjd6onf +2025-06-20T10:45:19.371Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 131235 - RequestID: d6y5hhznhom +2025-06-20T10:45:24.471Z [ERROR] auth-service - Authentication system error for user user_1023 from 192.168.197.194 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 1vwe3no931tj +2025-06-20T10:45:24.471Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 737064 - RequestID: 4zamvu4z3gf +2025-06-20T10:45:29.570Z [ERROR] auth-service - Authentication system error for user user_1047 from 192.168.67.77 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: uyrzndmn5te +2025-06-20T10:45:29.570Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(959974) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (959974, 'user_1000') - RequestID: s55eepg3com +2025-06-20T10:45:34.670Z [ERROR] auth-service - Authentication system error for user user_1001 from 192.168.47.107 - Error: Identity provider certificate expired - RequestID: myed10fk0bl +2025-06-20T10:45:34.670Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 923193 - RequestID: 58z6i8lb6qm +2025-06-20T10:45:39.770Z [ERROR] auth-service - Authentication system error for user user_1090 from 192.168.72.49 - Error: Identity provider certificate expired - RequestID: nth3b39f9ei +2025-06-20T10:45:39.771Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(200947) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (200947, 'user_1082') - RequestID: 0kouuahe9bx +2025-06-20T10:45:44.871Z [ERROR] auth-service - Authentication system error for user user_1089 from 192.168.210.103 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: eq8amuzj5av +2025-06-20T10:45:44.871Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 875785 - RequestID: vhwxn9ods3j +2025-06-20T10:45:49.973Z [ERROR] auth-service - Authentication system error for user user_1057 from 192.168.239.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 7wv3hfsxbx +2025-06-20T10:45:49.973Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 3763 - RequestID: qdeu9hbp2tn +2025-06-20T10:45:55.076Z [ERROR] auth-service - Authentication system error for user user_1080 from 192.168.240.4 - Error: Identity provider certificate expired - RequestID: bljuqmzn3xi +2025-06-20T10:45:55.076Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(790660) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (790660, 'user_1024') - RequestID: 2ses330d005 +2025-06-20T10:46:00.176Z [ERROR] auth-service - Authentication system error for user user_1084 from 192.168.115.66 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: qj6ortzsood +2025-06-20T10:46:00.176Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 415748 - RequestID: u63hntv1vv +2025-06-20T10:46:05.276Z [ERROR] auth-service - Authentication system error for user user_1054 from 192.168.192.148 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: em42dfvfada +2025-06-20T10:46:05.276Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(7941) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (7941, 'user_1007') - RequestID: f2xf1ua9dfi +2025-06-20T10:46:10.377Z [ERROR] auth-service - Authentication system error for user user_1052 from 192.168.43.230 - Error: Identity provider certificate expired - RequestID: 53hq6zw2khc +2025-06-20T10:46:10.377Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 47225 - RequestID: vminxv9t0a +2025-06-20T10:46:15.477Z [ERROR] auth-service - Authentication system error for user user_1044 from 192.168.152.169 - Error: Identity provider certificate expired - RequestID: umieqinfbj +2025-06-20T10:46:15.477Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 843587 - RequestID: 1opjmop5l4s +2025-06-20T10:46:20.579Z [ERROR] auth-service - Authentication system error for user user_1080 from 192.168.59.85 - Error: Identity provider certificate expired - RequestID: gfwqthleex +2025-06-20T10:46:20.579Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 666417 - RequestID: p5wfe3z84xj +2025-06-20T10:46:25.679Z [ERROR] auth-service - Authentication system error for user user_1023 from 192.168.47.107 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: tjy9r2m8lw9 +2025-06-20T10:46:25.679Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(640988) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (640988, 'user_1080') - RequestID: av9wozro09q +2025-06-20T10:46:30.779Z [ERROR] auth-service - Authentication system error for user user_1076 from 192.168.59.85 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: yka7wh8rqgr +2025-06-20T10:46:30.779Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(712577) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (712577, 'user_1095') - RequestID: adc3xhjvgwb +2025-06-20T10:46:35.879Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.227.174 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: m7b9991swcd +2025-06-20T10:46:35.879Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(822940) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (822940, 'user_1042') - RequestID: oj1beii2l7 +2025-06-20T10:46:40.979Z [ERROR] auth-service - Authentication system error for user user_1084 from 192.168.217.206 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 1b77174hm5k +2025-06-20T10:46:40.979Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 543259 - RequestID: qq8stl4mie +2025-06-20T10:46:46.079Z [ERROR] auth-service - Authentication system error for user user_1046 from 192.168.35.82 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: brcffkpx3xn +2025-06-20T10:46:46.079Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 996277 - RequestID: m6p9bk12c0s +2025-06-20T10:46:51.182Z [ERROR] auth-service - Authentication system error for user user_1001 from 192.168.204.182 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: e41bl5xugmp +2025-06-20T10:46:51.182Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 569548 - RequestID: k62ypewhe1 +2025-06-20T10:46:56.282Z [ERROR] auth-service - Authentication system error for user user_1087 from 192.168.35.166 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: vnec7st8qid +2025-06-20T10:46:56.282Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(235567) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (235567, 'user_1035') - RequestID: az64t4liu25 +2025-06-20T10:47:01.383Z [ERROR] auth-service - Authentication system error for user user_1022 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: rgn4bzt24o +2025-06-20T10:47:01.383Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(925654) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (925654, 'user_1017') - RequestID: 0ht1l6w28ru6 +2025-06-20T10:47:06.483Z [ERROR] auth-service - Authentication system error for user user_1058 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: inhy7yvypbj +2025-06-20T10:47:06.483Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 785128 - RequestID: esihrcb3hgh +2025-06-20T10:47:11.583Z [ERROR] auth-service - Authentication system error for user user_1045 from 192.168.154.185 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 0p1u8dwnih +2025-06-20T10:47:11.583Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(737611) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (737611, 'user_1051') - RequestID: hhxdbtjtyzf +2025-06-20T10:47:16.683Z [ERROR] auth-service - Authentication system error for user user_1027 from 192.168.13.14 - Error: Identity provider certificate expired - RequestID: 7vt22e0kt0m +2025-06-20T10:47:16.683Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(342607) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (342607, 'user_1060') - RequestID: wz531tjqoll +2025-06-20T10:47:21.785Z [ERROR] auth-service - Authentication system error for user user_1081 from 192.168.16.121 - Error: Identity provider certificate expired - RequestID: 46rl5ykk3tw +2025-06-20T10:47:21.785Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(510194) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (510194, 'user_1067') - RequestID: n4beqryi2ic +2025-06-20T10:47:26.887Z [ERROR] auth-service - Authentication system error for user user_1085 from 192.168.45.32 - Error: Identity provider certificate expired - RequestID: 4cfzcwyzsq2 +2025-06-20T10:47:26.887Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(476420) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (476420, 'user_1050') - RequestID: ch6umvr2lc5 +2025-06-20T10:47:31.987Z [ERROR] auth-service - Authentication system error for user user_1039 from 192.168.143.242 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 1f9tmp8s3d3 +2025-06-20T10:47:31.987Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(520268) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (520268, 'user_1007') - RequestID: v3kyeuh9waa +2025-06-20T10:47:37.087Z [ERROR] auth-service - Authentication system error for user user_1067 from 192.168.132.247 - Error: Identity provider certificate expired - RequestID: q2vi3jaqct +2025-06-20T10:47:37.087Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 970897 - RequestID: prshj8p5f3j +2025-06-20T10:47:42.187Z [ERROR] auth-service - Authentication system error for user user_1059 from 192.168.135.187 - Error: Identity provider certificate expired - RequestID: 4g65h65mdgs +2025-06-20T10:47:42.187Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(941383) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (941383, 'user_1055') - RequestID: kwsi2h7pog +2025-06-20T10:47:47.288Z [ERROR] auth-service - Authentication system error for user user_1007 from 192.168.143.242 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: y6v8odr9yc +2025-06-20T10:47:47.289Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(242612) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (242612, 'user_1073') - RequestID: ij8ozt97yzl +2025-06-20T10:47:52.388Z [ERROR] auth-service - Authentication system error for user user_1069 from 192.168.143.242 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 8mz71i36wk +2025-06-20T10:47:52.389Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(362909) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (362909, 'user_1075') - RequestID: b5xc8sh2uo7 +2025-06-20T10:47:57.488Z [ERROR] auth-service - Authentication system error for user user_1088 from 192.168.141.228 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: rljddbiszlc +2025-06-20T10:47:57.488Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 193245 - RequestID: qhkm720wh +2025-06-20T10:48:02.588Z [ERROR] auth-service - Authentication system error for user user_1067 from 192.168.32.125 - Error: Identity provider certificate expired - RequestID: 6tqnjhfi57b +2025-06-20T10:48:02.588Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 616000 - RequestID: xujvmsaq4xm +2025-06-20T10:48:07.688Z [ERROR] auth-service - Authentication system error for user user_1075 from 192.168.209.249 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 1kn8ttejtgg +2025-06-20T10:48:07.689Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(139386) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (139386, 'user_1003') - RequestID: cxpic8o1wmk +2025-06-20T10:48:12.790Z [ERROR] auth-service - Authentication system error for user user_1066 from 192.168.227.174 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: j2bawqioago +2025-06-20T10:48:12.790Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(856324) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (856324, 'user_1090') - RequestID: 5ntsq0kydok +2025-06-20T10:48:17.892Z [ERROR] auth-service - Authentication system error for user user_1067 from 192.168.141.228 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: a89ni7741wl +2025-06-20T10:48:17.892Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 258961 - RequestID: cd452fhr0el +2025-06-20T10:48:22.992Z [ERROR] auth-service - Authentication system error for user user_1094 from 192.168.13.14 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: kylkn6heh1p +2025-06-20T10:48:22.992Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 121868 - RequestID: zw6y41iphtm +2025-06-20T10:48:28.092Z [ERROR] auth-service - Authentication system error for user user_1088 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: eha0h6q7ma +2025-06-20T10:48:28.092Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 368663 - RequestID: dqgruftro28 +2025-06-20T10:48:33.192Z [ERROR] auth-service - Authentication system error for user user_1047 from 192.168.166.68 - Error: Identity provider certificate expired - RequestID: drbgtpp3ua +2025-06-20T10:48:33.192Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 560319 - RequestID: e7xrvybttnt +2025-06-20T10:48:38.292Z [ERROR] auth-service - Authentication system error for user user_1029 from 192.168.239.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: upigf8higi8 +2025-06-20T10:48:38.292Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(380060) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (380060, 'user_1042') - RequestID: iynvarr8wwb +2025-06-20T10:48:43.392Z [ERROR] auth-service - Authentication system error for user user_1002 from 192.168.203.86 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: fd3siel9xm +2025-06-20T10:48:43.392Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 703385 - RequestID: 441llll8tmv +2025-06-20T10:48:48.494Z [ERROR] auth-service - Authentication system error for user user_1033 from 192.168.154.185 - Error: Identity provider certificate expired - RequestID: xnb16t92oai +2025-06-20T10:48:48.494Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(304940) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (304940, 'user_1091') - RequestID: 9r2ov338f14 +2025-06-20T10:48:53.594Z [ERROR] auth-service - Authentication system error for user user_1018 from 192.168.35.82 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: hfbnfeols0o +2025-06-20T10:48:53.594Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(565878) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (565878, 'user_1066') - RequestID: ugotcoftwe +2025-06-20T10:48:58.694Z [ERROR] auth-service - Authentication system error for user user_1077 from 192.168.72.49 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: wm1clv9bero +2025-06-20T10:48:58.694Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(167453) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (167453, 'user_1016') - RequestID: j94lk75uzgs +2025-06-20T10:49:03.794Z [ERROR] auth-service - Authentication system error for user user_1068 from 192.168.238.156 - Error: Identity provider certificate expired - RequestID: e6vusr1hzva +2025-06-20T10:49:03.794Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 471041 - RequestID: 7zzylua62zf +2025-06-20T10:49:08.897Z [ERROR] auth-service - Authentication system error for user user_1021 from 192.168.54.206 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 8170ec4wpic +2025-06-20T10:49:08.897Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 346075 - RequestID: 2h4woygrjg9 +2025-06-20T10:49:13.997Z [ERROR] auth-service - Authentication system error for user user_1094 from 192.168.172.121 - Error: Identity provider certificate expired - RequestID: 7u7yp7wpnp6 +2025-06-20T10:49:13.997Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 758946 - RequestID: y5z77fwkqtf +2025-06-20T10:49:19.099Z [ERROR] auth-service - Authentication system error for user user_1059 from 192.168.217.206 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: t2wuwy606yq +2025-06-20T10:49:19.099Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 593880 - RequestID: 5o493cuyv0k +2025-06-20T10:49:24.200Z [ERROR] auth-service - Authentication system error for user user_1030 from 192.168.54.206 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: sl2z7pox9cs +2025-06-20T10:49:24.200Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(780197) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (780197, 'user_1029') - RequestID: fpmnw3ye1ve +2025-06-20T10:49:29.299Z [ERROR] auth-service - Authentication system error for user user_1039 from 192.168.43.230 - Error: Identity provider certificate expired - RequestID: wb39z4c3dkh +2025-06-20T10:49:29.299Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 461899 - RequestID: o17r8qeihg +2025-06-20T10:49:34.399Z [ERROR] auth-service - Authentication system error for user user_1011 from 192.168.138.229 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: bdzorgpckaa +2025-06-20T10:49:34.399Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(203364) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (203364, 'user_1081') - RequestID: ymyvaf14z6k +2025-06-20T10:49:39.499Z [ERROR] auth-service - Authentication system error for user user_1038 from 192.168.113.220 - Error: Identity provider certificate expired - RequestID: 83m2k94uz5y +2025-06-20T10:49:39.499Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(930525) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (930525, 'user_1092') - RequestID: 6l52apklkgj +2025-06-20T10:49:44.599Z [ERROR] auth-service - Authentication system error for user user_1040 from 192.168.240.4 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: c3h44izhnjf +2025-06-20T10:49:44.599Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 396873 - RequestID: thia8hks92s +2025-06-20T10:49:49.704Z [ERROR] auth-service - Authentication system error for user user_1081 from 192.168.47.107 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 9hys6x3mm29 +2025-06-20T10:49:49.705Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 344053 - RequestID: dr85tuj5ti4 +2025-06-20T10:49:54.805Z [ERROR] auth-service - Authentication system error for user user_1068 from 192.168.141.228 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 2yzd4gxov8b +2025-06-20T10:49:54.805Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(613552) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (613552, 'user_1051') - RequestID: guwpzneefa +2025-06-20T10:49:59.905Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.86.164 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 5ik6rvqhomg +2025-06-20T10:49:59.905Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(208860) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (208860, 'user_1080') - RequestID: sfnbf6eyvnn +2025-06-20T10:50:05.005Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.19.191 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 91hvvbzgrd +2025-06-20T10:50:05.005Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(437767) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (437767, 'user_1032') - RequestID: l2bqj3xvvpr +2025-06-20T10:50:10.105Z [ERROR] auth-service - Authentication system error for user user_1066 from 192.168.32.125 - Error: Identity provider certificate expired - RequestID: bo8736kn0ve +2025-06-20T10:50:10.105Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 543862 - RequestID: 3rgax1lnqig +2025-06-20T10:50:15.206Z [ERROR] auth-service - Authentication system error for user user_1075 from 192.168.47.107 - Error: Identity provider certificate expired - RequestID: jmku1frp45c +2025-06-20T10:50:15.206Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(421583) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (421583, 'user_1084') - RequestID: hkry8p6omnm +2025-06-20T10:50:20.307Z [ERROR] auth-service - Authentication system error for user user_1001 from 192.168.32.125 - Error: Identity provider certificate expired - RequestID: fwukpieelov +2025-06-20T10:50:20.308Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 659845 - RequestID: cuuwol85lrp +2025-06-20T10:50:25.407Z [ERROR] auth-service - Authentication system error for user user_1019 from 192.168.98.8 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: j3c7zej64mr +2025-06-20T10:50:25.407Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(325160) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (325160, 'user_1067') - RequestID: 52lzy77ooz8 +2025-06-20T10:50:30.507Z [ERROR] auth-service - Authentication system error for user user_1079 from 192.168.238.156 - Error: Identity provider certificate expired - RequestID: 44g7xj6royt +2025-06-20T10:50:30.507Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(229367) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (229367, 'user_1024') - RequestID: hb23klp3o1 +2025-06-20T10:50:35.607Z [ERROR] auth-service - Authentication system error for user user_1091 from 192.168.203.86 - Error: Identity provider certificate expired - RequestID: gwma79gu8cv +2025-06-20T10:50:35.607Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 611830 - RequestID: f1wd7dndaxd +2025-06-20T10:50:40.707Z [ERROR] auth-service - Authentication system error for user user_1074 from 192.168.13.14 - Error: Identity provider certificate expired - RequestID: zrp2acqx6p +2025-06-20T10:50:40.708Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(1841) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (1841, 'user_1008') - RequestID: ummkvydj2ea +2025-06-20T10:50:45.807Z [ERROR] auth-service - Authentication system error for user user_1085 from 192.168.16.121 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 0u1am9qh1ov +2025-06-20T10:50:45.807Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 320538 - RequestID: y2meg0712ej +2025-06-20T10:50:50.909Z [ERROR] auth-service - Authentication system error for user user_1055 from 192.168.210.103 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: hu2cz7lhffl +2025-06-20T10:50:50.909Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 423305 - RequestID: p30tq0adchd +2025-06-20T10:50:56.009Z [ERROR] auth-service - Authentication system error for user user_1016 from 192.168.126.119 - Error: Identity provider certificate expired - RequestID: g46u6iyo78t +2025-06-20T10:50:56.009Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(558952) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (558952, 'user_1000') - RequestID: 7b5nbbxvbuo +2025-06-20T10:51:01.109Z [ERROR] auth-service - Authentication system error for user user_1055 from 192.168.59.85 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: x5wnb6sgdj +2025-06-20T10:51:01.109Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 407496 - RequestID: o1c9hf9vx2 +2025-06-20T10:51:06.209Z [ERROR] auth-service - Authentication system error for user user_1047 from 192.168.126.119 - Error: Identity provider certificate expired - RequestID: 2jbvzab43px +2025-06-20T10:51:06.209Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(325300) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (325300, 'user_1073') - RequestID: 6849g6vd9jp +2025-06-20T10:51:11.309Z [ERROR] auth-service - Authentication system error for user user_1073 from 192.168.229.15 - Error: Identity provider certificate expired - RequestID: ldis7fe36k +2025-06-20T10:51:11.309Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(110876) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (110876, 'user_1007') - RequestID: d4j3pdo8qm +2025-06-20T10:51:16.409Z [ERROR] auth-service - Authentication system error for user user_1027 from 192.168.59.85 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 6h5m03mmbe +2025-06-20T10:51:16.409Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(602694) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (602694, 'user_1073') - RequestID: w1xa1pc8bqf +2025-06-20T10:51:21.514Z [ERROR] auth-service - Authentication system error for user user_1011 from 192.168.113.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: okcpvzk16us +2025-06-20T10:51:21.514Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 468062 - RequestID: kagb6m4sfyd +2025-06-20T10:51:26.614Z [ERROR] auth-service - Authentication system error for user user_1030 from 192.168.143.242 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: x6y48tbzx9 +2025-06-20T10:51:26.614Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 658536 - RequestID: txxwqlv6gu +2025-06-20T10:51:31.716Z [ERROR] auth-service - Authentication system error for user user_1011 from 192.168.197.194 - Error: Identity provider certificate expired - RequestID: cj2p1eh6bl8 +2025-06-20T10:51:31.716Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(757459) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (757459, 'user_1012') - RequestID: j6nj0dz0p0r +2025-06-20T10:51:36.816Z [ERROR] auth-service - Authentication system error for user user_1056 from 192.168.119.62 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: jyh8cpac22b +2025-06-20T10:51:36.816Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(80291) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (80291, 'user_1014') - RequestID: n7wobs4w4wf +2025-06-20T10:51:41.916Z [ERROR] auth-service - Authentication system error for user user_1074 from 192.168.238.156 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 3ys486dmsw5 +2025-06-20T10:51:41.916Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 594694 - RequestID: kclwq014y9h +2025-06-20T10:51:47.016Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.238.156 - Error: Identity provider certificate expired - RequestID: 5vtmjkfuubn +2025-06-20T10:51:47.016Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(720331) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (720331, 'user_1066') - RequestID: s8yqphczdrl +2025-06-20T10:51:52.119Z [ERROR] auth-service - Authentication system error for user user_1090 from 192.168.249.127 - Error: Identity provider certificate expired - RequestID: ki28hoc6soi +2025-06-20T10:51:52.119Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 262529 - RequestID: vjq2d1ep5g +2025-06-20T10:51:57.219Z [ERROR] auth-service - Authentication system error for user user_1007 from 192.168.4.60 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 56pupf34d4h +2025-06-20T10:51:57.219Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 666321 - RequestID: wxhot5lowa +2025-06-20T10:52:02.319Z [ERROR] auth-service - Authentication system error for user user_1092 from 192.168.203.86 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 9qmy4uwqjgq +2025-06-20T10:52:02.319Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(261238) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (261238, 'user_1033') - RequestID: v5yq9ka4x0j +2025-06-20T10:52:07.419Z [ERROR] auth-service - Authentication system error for user user_1002 from 192.168.192.148 - Error: Identity provider certificate expired - RequestID: m5eosdwnf4 +2025-06-20T10:52:07.419Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 891255 - RequestID: y21ajn9q05r +2025-06-20T10:52:12.518Z [ERROR] auth-service - Authentication system error for user user_1051 from 192.168.143.242 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: yuldg6gmdvp +2025-06-20T10:52:12.518Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 393377 - RequestID: gz1etil4izd +2025-06-20T10:52:17.621Z [ERROR] auth-service - Authentication system error for user user_1074 from 192.168.13.14 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ffi2gzv9e6p +2025-06-20T10:52:17.621Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 758221 - RequestID: 6k4j92qprqj +2025-06-20T10:52:22.721Z [ERROR] auth-service - Authentication system error for user user_1096 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: uxbpt8byzdh +2025-06-20T10:52:22.721Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(853559) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (853559, 'user_1081') - RequestID: qyxhy4y0nx +2025-06-20T10:52:27.821Z [ERROR] auth-service - Authentication system error for user user_1087 from 192.168.45.32 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: omg61f2kbo8 +2025-06-20T10:52:27.821Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 237009 - RequestID: svsoy9v51en +2025-06-20T10:52:32.921Z [ERROR] auth-service - Authentication system error for user user_1005 from 192.168.237.140 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: qh81hcwf4f +2025-06-20T10:52:32.921Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 553197 - RequestID: uxpx9cwg0hh +2025-06-20T10:52:38.021Z [ERROR] auth-service - Authentication system error for user user_1073 from 192.168.34.236 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: xwiegqmtkn +2025-06-20T10:52:38.021Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(104771) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (104771, 'user_1087') - RequestID: qjoy2bejmyf +2025-06-20T10:52:43.121Z [ERROR] auth-service - Authentication system error for user user_1053 from 192.168.217.231 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: qea9a7k3u9e +2025-06-20T10:52:43.121Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(743029) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (743029, 'user_1082') - RequestID: 9u918fmrhyu +2025-06-20T10:52:48.221Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.238.156 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 3y0apydl73k +2025-06-20T10:52:48.221Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(998113) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (998113, 'user_1054') - RequestID: suvomu09n6m +2025-06-20T10:52:53.321Z [ERROR] auth-service - Authentication system error for user user_1031 from 192.168.86.164 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: j59x232luk +2025-06-20T10:52:53.321Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(122885) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (122885, 'user_1080') - RequestID: 1b5vkgnh5ro +2025-06-20T10:52:58.422Z [ERROR] auth-service - Authentication system error for user user_1036 from 192.168.217.231 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: tuiksaabd4 +2025-06-20T10:52:58.422Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(710224) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (710224, 'user_1034') - RequestID: ymwm0dy2mx +2025-06-20T10:53:03.522Z [ERROR] auth-service - Authentication system error for user user_1060 from 192.168.98.8 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: hhzv618u4hp +2025-06-20T10:53:03.522Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(854484) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (854484, 'user_1020') - RequestID: j96okaog5m +2025-06-20T10:53:08.622Z [ERROR] auth-service - Authentication system error for user user_1095 from 192.168.217.206 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: md61ap3t7fd +2025-06-20T10:53:08.622Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 680646 - RequestID: sxvgtjlfy1j +2025-06-20T10:53:13.723Z [ERROR] auth-service - Authentication system error for user user_1070 from 192.168.138.229 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 93wixmqh7o +2025-06-20T10:53:13.723Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(846772) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (846772, 'user_1045') - RequestID: 1xnvw08y9xl +2025-06-20T10:53:18.825Z [ERROR] auth-service - Authentication system error for user user_1095 from 192.168.126.119 - Error: Identity provider certificate expired - RequestID: 3haty6712mu +2025-06-20T10:53:18.825Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(403612) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (403612, 'user_1040') - RequestID: l9n2nvggwk +2025-06-20T10:53:23.925Z [ERROR] auth-service - Authentication system error for user user_1054 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: fyupbxg8k27 +2025-06-20T10:53:23.925Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 222075 - RequestID: jbbw54qyeck +2025-06-20T10:53:29.024Z [ERROR] auth-service - Authentication system error for user user_1078 from 192.168.132.247 - Error: Identity provider certificate expired - RequestID: 3zn7qmxqz4o +2025-06-20T10:53:29.024Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(43049) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (43049, 'user_1076') - RequestID: ks9eqb1hu3 +2025-06-20T10:53:34.124Z [ERROR] auth-service - Authentication system error for user user_1059 from 192.168.59.85 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ncygku5s3tp +2025-06-20T10:53:34.124Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(111671) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (111671, 'user_1003') - RequestID: ozbkjavv2kk +2025-06-20T10:53:39.224Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.203.86 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: gulwsktkspv +2025-06-20T10:53:39.224Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(715078) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (715078, 'user_1056') - RequestID: fradt4q3xqt +2025-06-20T10:53:44.324Z [ERROR] auth-service - Authentication system error for user user_1076 from 192.168.238.156 - Error: Identity provider certificate expired - RequestID: 2gx6ert8kpx +2025-06-20T10:53:44.324Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(202198) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (202198, 'user_1079') - RequestID: 635dlcaq8uj +2025-06-20T10:53:49.429Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.172.121 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: k2nsh9yy1n +2025-06-20T10:53:49.429Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 713555 - RequestID: 02s2u14czld9 +2025-06-20T10:53:54.531Z [ERROR] auth-service - Authentication system error for user user_1044 from 192.168.113.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: xlkduqv988 +2025-06-20T10:53:54.531Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 85145 - RequestID: 4sv4dzz7u9w +2025-06-20T10:53:59.631Z [ERROR] auth-service - Authentication system error for user user_1093 from 192.168.15.79 - Error: Identity provider certificate expired - RequestID: wjjh7ilyiy +2025-06-20T10:53:59.631Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(382474) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (382474, 'user_1036') - RequestID: 3x47l1omays +2025-06-20T10:54:04.734Z [ERROR] auth-service - Authentication system error for user user_1004 from 192.168.98.8 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: z61ioit1mdr +2025-06-20T10:54:04.734Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 510274 - RequestID: pe9ulmq8ps +2025-06-20T10:54:09.834Z [ERROR] auth-service - Authentication system error for user user_1023 from 192.168.35.166 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: zgr5lyojkoi +2025-06-20T10:54:09.834Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(272299) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (272299, 'user_1009') - RequestID: ojhd8y33zje +2025-06-20T10:54:14.934Z [ERROR] auth-service - Authentication system error for user user_1004 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: paizfxah1tc +2025-06-20T10:54:14.934Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 537312 - RequestID: hq5ssug7xo8 +2025-06-20T10:54:20.036Z [ERROR] auth-service - Authentication system error for user user_1003 from 192.168.229.15 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 4qycjx39zj5 +2025-06-20T10:54:20.036Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 905371 - RequestID: 16lw5z6zi7u +2025-06-20T10:54:25.136Z [ERROR] auth-service - Authentication system error for user user_1094 from 192.168.162.209 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 0d8ar5kcq49s +2025-06-20T10:54:25.136Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 56202 - RequestID: 4ih1wsr2qaj +2025-06-20T10:54:30.237Z [ERROR] auth-service - Authentication system error for user user_1058 from 192.168.159.31 - Error: Identity provider certificate expired - RequestID: k2qpji07hyi +2025-06-20T10:54:30.237Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(301009) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (301009, 'user_1080') - RequestID: ncbbspsl4h +2025-06-20T10:54:35.337Z [ERROR] auth-service - Authentication system error for user user_1034 from 192.168.227.174 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: qu382k4chmj +2025-06-20T10:54:35.337Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 965954 - RequestID: 71aru3hoi4j +2025-06-20T10:54:40.438Z [ERROR] auth-service - Authentication system error for user user_1036 from 192.168.217.231 - Error: Identity provider certificate expired - RequestID: ppx8us6htl +2025-06-20T10:54:40.438Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 973019 - RequestID: za6svipfkus +2025-06-20T10:54:45.538Z [ERROR] auth-service - Authentication system error for user user_1034 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: j7w54bdoesq +2025-06-20T10:54:45.538Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(162636) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (162636, 'user_1023') - RequestID: 23h9deab45l +2025-06-20T10:54:50.646Z [ERROR] auth-service - Authentication system error for user user_1049 from 192.168.45.32 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: pdbhnfft8t +2025-06-20T10:54:50.646Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(463016) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (463016, 'user_1025') - RequestID: x9j1vwrbg0n +2025-06-20T10:54:55.746Z [ERROR] auth-service - Authentication system error for user user_1043 from 192.168.86.164 - Error: Identity provider certificate expired - RequestID: 08kofwccg416 +2025-06-20T10:54:55.746Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 832052 - RequestID: lnshqgu8u0p +2025-06-20T10:55:00.849Z [ERROR] auth-service - Authentication system error for user user_1074 from 192.168.209.249 - Error: Identity provider certificate expired - RequestID: t8zqkt8tfqq +2025-06-20T10:55:00.849Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(308126) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (308126, 'user_1009') - RequestID: o58snz4lyen +2025-06-20T10:55:05.949Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.203.86 - Error: Identity provider certificate expired - RequestID: ub8oa9fu3vs +2025-06-20T10:55:05.949Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 543976 - RequestID: lstkk66j3j +2025-06-20T10:55:11.049Z [ERROR] auth-service - Authentication system error for user user_1097 from 192.168.35.82 - Error: Identity provider certificate expired - RequestID: r7plsr9ib6o +2025-06-20T10:55:11.049Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 641026 - RequestID: vipgd6ef9g +2025-06-20T10:55:16.148Z [ERROR] auth-service - Authentication system error for user user_1012 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: jwlyezkjhef +2025-06-20T10:55:16.148Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 927461 - RequestID: lzobm67o4ln +2025-06-20T10:55:21.250Z [ERROR] auth-service - Authentication system error for user user_1049 from 192.168.217.231 - Error: Identity provider certificate expired - RequestID: kr97b9zvvyp +2025-06-20T10:55:21.250Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 163853 - RequestID: pzkv14jvdvk +2025-06-20T10:55:26.350Z [ERROR] auth-service - Authentication system error for user user_1014 from 192.168.229.15 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: nnzb5u7g0l +2025-06-20T10:55:26.350Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(454777) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (454777, 'user_1007') - RequestID: vq60vg8u4l +2025-06-20T10:55:31.450Z [ERROR] auth-service - Authentication system error for user user_1088 from 192.168.209.249 - Error: Identity provider certificate expired - RequestID: 6xblpz272al +2025-06-20T10:55:31.450Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 622014 - RequestID: q778xm4oe1i +2025-06-20T10:55:36.551Z [ERROR] auth-service - Authentication system error for user user_1080 from 192.168.15.79 - Error: Identity provider certificate expired - RequestID: 0wn7dsy71t0m +2025-06-20T10:55:36.552Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(892557) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (892557, 'user_1046') - RequestID: 1qfog7swt1s +2025-06-20T10:55:41.652Z [ERROR] auth-service - Authentication system error for user user_1046 from 192.168.47.107 - Error: Identity provider certificate expired - RequestID: eki5uhcldkm +2025-06-20T10:55:41.653Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(180058) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (180058, 'user_1081') - RequestID: 2zw1x9msblp +2025-06-20T10:55:46.753Z [ERROR] auth-service - Authentication system error for user user_1073 from 192.168.45.32 - Error: Identity provider certificate expired - RequestID: sa1uxhjwu1e +2025-06-20T10:55:46.753Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 174413 - RequestID: jaatgew3i7 +2025-06-20T10:55:51.854Z [ERROR] auth-service - Authentication system error for user user_1083 from 192.168.240.4 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: hape4h8w1e +2025-06-20T10:55:51.854Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 800856 - RequestID: 4w1s07le894 +2025-06-20T10:55:56.954Z [ERROR] auth-service - Authentication system error for user user_1084 from 192.168.43.230 - Error: Identity provider certificate expired - RequestID: 7ztq09ca55x +2025-06-20T10:55:56.954Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(226703) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (226703, 'user_1077') - RequestID: rfln01e5zid +2025-06-20T10:56:02.054Z [ERROR] auth-service - Authentication system error for user user_1064 from 192.168.86.164 - Error: Identity provider certificate expired - RequestID: dggetssrogi +2025-06-20T10:56:02.054Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 631848 - RequestID: hj54bm1lovu +2025-06-20T10:56:07.154Z [ERROR] auth-service - Authentication system error for user user_1079 from 192.168.59.85 - Error: Identity provider certificate expired - RequestID: 3f5b5osi15v +2025-06-20T10:56:07.154Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 865062 - RequestID: x0fs789hsr +2025-06-20T10:56:12.254Z [ERROR] auth-service - Authentication system error for user user_1015 from 192.168.126.119 - Error: Identity provider certificate expired - RequestID: 7wimdb3endu +2025-06-20T10:56:12.254Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 190793 - RequestID: b6qkbv8wlsn +2025-06-20T10:56:17.356Z [ERROR] auth-service - Authentication system error for user user_1053 from 192.168.237.140 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ww1iiar9rc +2025-06-20T10:56:17.356Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(305610) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (305610, 'user_1083') - RequestID: oaqvlh23hed +2025-06-20T10:56:22.457Z [ERROR] auth-service - Authentication system error for user user_1065 from 192.168.154.185 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: h19ipuqcdke +2025-06-20T10:56:22.457Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(264780) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (264780, 'user_1079') - RequestID: vau2r0iw9p +2025-06-20T10:56:27.557Z [ERROR] auth-service - Authentication system error for user user_1062 from 192.168.34.236 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: zvhrtgxjtlo +2025-06-20T10:56:27.557Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 417225 - RequestID: nf8n6a2ec3l +2025-06-20T10:56:32.658Z [ERROR] auth-service - Authentication system error for user user_1055 from 192.168.59.85 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: tq5atitsf4 +2025-06-20T10:56:32.658Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(605938) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (605938, 'user_1060') - RequestID: 1j4n2zdohve +2025-06-20T10:56:37.757Z [ERROR] auth-service - Authentication system error for user user_1053 from 192.168.43.230 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 2bahp9rrhd8 +2025-06-20T10:56:37.757Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 808732 - RequestID: 54hg8qbrh8w +2025-06-20T10:56:42.859Z [ERROR] auth-service - Authentication system error for user user_1087 from 192.168.119.62 - Error: Identity provider certificate expired - RequestID: 9e3ltq2nitr +2025-06-20T10:56:42.859Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(86098) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (86098, 'user_1099') - RequestID: ayk9ll4zqq5 +2025-06-20T10:56:47.961Z [ERROR] auth-service - Authentication system error for user user_1045 from 192.168.72.49 - Error: Identity provider certificate expired - RequestID: snwe117668 +2025-06-20T10:56:47.961Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 134380 - RequestID: cxb8vn2gd5r +2025-06-20T10:56:53.065Z [ERROR] auth-service - Authentication system error for user user_1002 from 192.168.237.140 - Error: Identity provider certificate expired - RequestID: smri0mz1j4 +2025-06-20T10:56:53.065Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 492554 - RequestID: 0erm6cdf086s +2025-06-20T10:56:58.167Z [ERROR] auth-service - Authentication system error for user user_1089 from 192.168.166.68 - Error: Identity provider certificate expired - RequestID: pm33g94s9br +2025-06-20T10:56:58.167Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(129023) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (129023, 'user_1002') - RequestID: aae6isv1qsa +2025-06-20T10:57:03.267Z [ERROR] auth-service - Authentication system error for user user_1065 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: wal6sh4xzh +2025-06-20T10:57:03.267Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(520026) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (520026, 'user_1060') - RequestID: 8txura5ivg3 +2025-06-20T10:57:08.369Z [ERROR] auth-service - Authentication system error for user user_1055 from 192.168.166.68 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: s28qxc6uvk +2025-06-20T10:57:08.369Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(103672) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (103672, 'user_1046') - RequestID: dy2l3mz2yrh +2025-06-20T10:57:13.468Z [ERROR] auth-service - Authentication system error for user user_1014 from 192.168.204.182 - Error: Identity provider certificate expired - RequestID: zm2yrapvlpd +2025-06-20T10:57:13.468Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(911947) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (911947, 'user_1030') - RequestID: hpcx6nnugab +2025-06-20T10:57:18.570Z [ERROR] auth-service - Authentication system error for user user_1083 from 192.168.108.24 - Error: Identity provider certificate expired - RequestID: xez0dxai06 +2025-06-20T10:57:18.570Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 984036 - RequestID: 6roy0lo8u12 +2025-06-20T10:57:23.669Z [ERROR] auth-service - Authentication system error for user user_1007 from 192.168.15.79 - Error: Identity provider certificate expired - RequestID: foui2w748ap +2025-06-20T10:57:23.669Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(446550) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (446550, 'user_1008') - RequestID: ha2lmaa13q +2025-06-20T10:57:28.769Z [ERROR] auth-service - Authentication system error for user user_1041 from 192.168.13.14 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: eu5gxlptro9 +2025-06-20T10:57:28.769Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(421413) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (421413, 'user_1087') - RequestID: tkddmfqpk1 +2025-06-20T10:57:33.869Z [ERROR] auth-service - Authentication system error for user user_1035 from 192.168.138.229 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: saiajxwpdx +2025-06-20T10:57:33.869Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(960897) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (960897, 'user_1002') - RequestID: ul8gg229gug +2025-06-20T10:57:38.971Z [ERROR] auth-service - Authentication system error for user user_1012 from 192.168.4.60 - Error: Identity provider certificate expired - RequestID: 1q5lq923xtl +2025-06-20T10:57:38.971Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 88437 - RequestID: tka2dll9b48 +2025-06-20T10:57:44.070Z [ERROR] auth-service - Authentication system error for user user_1072 from 192.168.192.148 - Error: Identity provider certificate expired - RequestID: iua77ba972l +2025-06-20T10:57:44.070Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(719915) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (719915, 'user_1085') - RequestID: 36y1yx7wb2k +2025-06-20T10:57:49.171Z [ERROR] auth-service - Authentication system error for user user_1013 from 192.168.45.32 - Error: Identity provider certificate expired - RequestID: jj515xom9zk +2025-06-20T10:57:49.171Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 876065 - RequestID: 04b3jus1y96p +2025-06-20T10:57:54.271Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.16.121 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: rtvw8nz07cn +2025-06-20T10:57:54.271Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(509383) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (509383, 'user_1002') - RequestID: m7iqy38ebf +2025-06-20T10:57:59.369Z [ERROR] auth-service - Authentication system error for user user_1091 from 192.168.32.125 - Error: Identity provider certificate expired - RequestID: 66l1zfl15j4 +2025-06-20T10:57:59.369Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 929992 - RequestID: 1lv16agm59u +2025-06-20T10:58:04.469Z [ERROR] auth-service - Authentication system error for user user_1081 from 192.168.141.228 - Error: Identity provider certificate expired - RequestID: 6kvx42j6aky +2025-06-20T10:58:04.469Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 880515 - RequestID: ksnaymj7od +2025-06-20T10:58:09.569Z [ERROR] auth-service - Authentication system error for user user_1027 from 192.168.47.107 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 5hiojl35thj +2025-06-20T10:58:09.569Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(443322) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (443322, 'user_1094') - RequestID: 05z93n8dnkgd +2025-06-20T10:58:14.668Z [ERROR] auth-service - Authentication system error for user user_1067 from 192.168.98.8 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: prj4clh0k +2025-06-20T10:58:14.668Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(318895) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (318895, 'user_1008') - RequestID: 6n9lt1isdlv +2025-06-20T10:58:19.770Z [ERROR] auth-service - Authentication system error for user user_1052 from 192.168.237.140 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 6uu8egw1m6v +2025-06-20T10:58:19.770Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(868964) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (868964, 'user_1054') - RequestID: jhlsxgf83e +2025-06-20T10:58:24.870Z [ERROR] auth-service - Authentication system error for user user_1018 from 192.168.4.60 - Error: Identity provider certificate expired - RequestID: ip6ot3l36fg +2025-06-20T10:58:24.870Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 194913 - RequestID: p47a610yjz +2025-06-20T10:58:29.970Z [ERROR] auth-service - Authentication system error for user user_1018 from 192.168.237.140 - Error: Identity provider certificate expired - RequestID: ijc2vstnx1l +2025-06-20T10:58:29.970Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(790143) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (790143, 'user_1091') - RequestID: gz7mdopt7yf +2025-06-20T10:58:35.070Z [ERROR] auth-service - Authentication system error for user user_1078 from 192.168.162.209 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: c2v2ucly6zs +2025-06-20T10:58:35.070Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 625065 - RequestID: rf2ljsgj7h +2025-06-20T10:58:40.170Z [ERROR] auth-service - Authentication system error for user user_1032 from 192.168.239.220 - Error: Identity provider certificate expired - RequestID: piwun3d7pjm +2025-06-20T10:58:40.170Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(474176) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (474176, 'user_1029') - RequestID: q8y6rm7xts +2025-06-20T10:58:45.270Z [ERROR] auth-service - Authentication system error for user user_1013 from 192.168.19.191 - Error: Identity provider certificate expired - RequestID: 4tk07hs4mpe +2025-06-20T10:58:45.270Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 733477 - RequestID: axagd8uqb24 +2025-06-20T10:58:50.372Z [ERROR] auth-service - Authentication system error for user user_1019 from 192.168.135.187 - Error: Identity provider certificate expired - RequestID: t0tlbnif1wg +2025-06-20T10:58:50.372Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 898652 - RequestID: cwcqp40j186 +2025-06-20T10:58:55.472Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.229.15 - Error: Identity provider certificate expired - RequestID: ymdb3r4clc +2025-06-20T10:58:55.472Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(889078) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (889078, 'user_1066') - RequestID: jebad50tvjg +2025-06-20T10:59:00.572Z [ERROR] auth-service - Authentication system error for user user_1036 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: y58y93dhnor +2025-06-20T10:59:00.572Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(456235) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (456235, 'user_1009') - RequestID: wlits2kbgel +2025-06-20T10:59:05.672Z [ERROR] auth-service - Authentication system error for user user_1057 from 192.168.113.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: vs0f8yjtryn +2025-06-20T10:59:05.672Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(6222) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (6222, 'user_1092') - RequestID: 1pqutngcf55 +2025-06-20T10:59:10.772Z [ERROR] auth-service - Authentication system error for user user_1090 from 192.168.172.121 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: kw8ayowwl38 +2025-06-20T10:59:10.772Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 507046 - RequestID: vsl83fqjza +2025-06-20T10:59:15.874Z [ERROR] auth-service - Authentication system error for user user_1097 from 192.168.141.228 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: bjzm3zhrmvm +2025-06-20T10:59:15.874Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 654171 - RequestID: r11j2xzo5f9 +2025-06-20T10:59:20.976Z [ERROR] auth-service - Authentication system error for user user_1036 from 192.168.15.79 - Error: Identity provider certificate expired - RequestID: 9vc63fg2mme +2025-06-20T10:59:20.976Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 661138 - RequestID: tnn9np6gz3l +2025-06-20T10:59:26.076Z [ERROR] auth-service - Authentication system error for user user_1056 from 192.168.249.127 - Error: Identity provider certificate expired - RequestID: c4fmaxzwzkq +2025-06-20T10:59:26.076Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 320774 - RequestID: xqr5zn2epc +2025-06-20T10:59:31.176Z [ERROR] auth-service - Authentication system error for user user_1032 from 192.168.209.249 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 5ttzzb1qsqv +2025-06-20T10:59:31.176Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(161085) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (161085, 'user_1071') - RequestID: 4dckt5ilyae +2025-06-20T10:59:36.276Z [ERROR] auth-service - Authentication system error for user user_1098 from 192.168.229.15 - Error: Identity provider certificate expired - RequestID: wrr59vh57if +2025-06-20T10:59:36.276Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(885541) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (885541, 'user_1097') - RequestID: wy4rvqrxkb +2025-06-20T10:59:41.376Z [ERROR] auth-service - Authentication system error for user user_1071 from 192.168.108.24 - Error: Identity provider certificate expired - RequestID: 3w8l1vj4p4e +2025-06-20T10:59:41.376Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(256205) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (256205, 'user_1046') - RequestID: zwfp3g2g32 +2025-06-20T10:59:46.668Z [ERROR] auth-service - Authentication system error for user user_1043 from 192.168.4.60 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: slkka2a6gh9 +2025-06-20T10:59:46.668Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 781669 - RequestID: q0m6n7t1too +2025-06-20T10:59:52.457Z [ERROR] auth-service - Authentication system error for user user_1062 from 192.168.67.77 - Error: Identity provider certificate expired - RequestID: vlc1iihzibm +2025-06-20T10:59:52.458Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 135473 - RequestID: qgbfm9nxub +2025-06-20T10:59:57.790Z [ERROR] auth-service - Authentication system error for user user_1080 from 192.168.229.15 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: mt8ygjg5o3 +2025-06-20T10:59:57.790Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 688946 - RequestID: jyq243pz4z +2025-06-20T11:00:03.286Z [ERROR] auth-service - Authentication system error for user user_1046 from 192.168.35.82 - Error: Identity provider certificate expired - RequestID: ayh67f0106b +2025-06-20T11:00:03.286Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 357153 - RequestID: u2frrapvdha +2025-06-20T11:00:08.557Z [ERROR] auth-service - Authentication system error for user user_1071 from 192.168.249.127 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: vmqlzi977o +2025-06-20T11:00:08.557Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(705681) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (705681, 'user_1017') - RequestID: rpwa4pa58kk +2025-06-20T11:00:13.687Z [ERROR] auth-service - Authentication system error for user user_1071 from 192.168.137.27 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 32wtsicrsrh +2025-06-20T11:00:13.687Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 13422 - RequestID: 6i5ucrevlmh +2025-06-20T11:00:18.797Z [ERROR] auth-service - Authentication system error for user user_1035 from 192.168.159.31 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: vfvbxk7o05n +2025-06-20T11:00:18.798Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 666353 - RequestID: 6ctzkfsohxi +2025-06-20T11:00:23.897Z [ERROR] auth-service - Authentication system error for user user_1049 from 192.168.172.121 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 0iko5ji4fzul +2025-06-20T11:00:23.897Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 443592 - RequestID: c128ywzi2xf +2025-06-20T11:00:28.996Z [ERROR] auth-service - Authentication system error for user user_1094 from 192.168.59.85 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 4fuas64wrg3 +2025-06-20T11:00:28.997Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 778269 - RequestID: ckk8li238c +2025-06-20T11:00:34.096Z [ERROR] auth-service - Authentication system error for user user_1074 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: dunqrxxgkc +2025-06-20T11:00:34.097Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 801423 - RequestID: gp9i3s1obz +2025-06-20T11:00:39.197Z [ERROR] auth-service - Authentication system error for user user_1027 from 192.168.67.77 - Error: Identity provider certificate expired - RequestID: fuz7dp2zc1 +2025-06-20T11:00:39.197Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 275837 - RequestID: 92iyd1w9lfw +2025-06-20T11:00:44.296Z [ERROR] auth-service - Authentication system error for user user_1015 from 192.168.138.229 - Error: Identity provider certificate expired - RequestID: 1homdnejo58 +2025-06-20T11:00:44.297Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(988612) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (988612, 'user_1001') - RequestID: q7aybkyqzbn +2025-06-20T11:00:49.398Z [ERROR] auth-service - Authentication system error for user user_1051 from 192.168.54.206 - Error: Identity provider certificate expired - RequestID: hkmd5ly31ww +2025-06-20T11:00:49.398Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 732299 - RequestID: rc5w70gd48c +2025-06-20T11:00:54.499Z [ERROR] auth-service - Authentication system error for user user_1066 from 192.168.4.60 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 7towm6hrjik +2025-06-20T11:00:54.499Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 279915 - RequestID: h47ncqp4un +2025-06-20T11:00:59.599Z [ERROR] auth-service - Authentication system error for user user_1064 from 192.168.15.79 - Error: Identity provider certificate expired - RequestID: ssyjbdapnso +2025-06-20T11:00:59.599Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(755860) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (755860, 'user_1087') - RequestID: gztia1x3n68 +2025-06-20T11:01:04.702Z [ERROR] auth-service - Authentication system error for user user_1069 from 192.168.203.86 - Error: Identity provider certificate expired - RequestID: lbj3y6tb9p +2025-06-20T11:01:04.702Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(956470) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (956470, 'user_1048') - RequestID: 9yshhm04pge +2025-06-20T11:01:09.802Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.115.66 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 0jyn3vmueuwj +2025-06-20T11:01:09.802Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(371310) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (371310, 'user_1086') - RequestID: l5vegljmond +2025-06-20T11:01:14.902Z [ERROR] auth-service - Authentication system error for user user_1045 from 192.168.135.187 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 605njz4nygs +2025-06-20T11:01:14.902Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(203466) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (203466, 'user_1036') - RequestID: 4ktj4rje52l +2025-06-20T11:01:20.004Z [ERROR] auth-service - Authentication system error for user user_1038 from 192.168.4.60 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 7h59qbqnu9s +2025-06-20T11:01:20.004Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(806303) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (806303, 'user_1043') - RequestID: p50agreebnm +2025-06-20T11:01:25.104Z [ERROR] auth-service - Authentication system error for user user_1061 from 192.168.4.60 - Error: Identity provider certificate expired - RequestID: q0qhzoqndnq +2025-06-20T11:01:25.104Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 263253 - RequestID: uph50055g8m +2025-06-20T11:01:30.512Z [ERROR] auth-service - Authentication system error for user user_1072 from 192.168.162.209 - Error: Identity provider certificate expired - RequestID: wmgoyorrbld +2025-06-20T11:01:30.512Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(630373) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (630373, 'user_1037') - RequestID: b3wfirl2t8 +2025-06-20T11:01:35.938Z [ERROR] auth-service - Authentication system error for user user_1044 from 192.168.152.169 - Error: Identity provider certificate expired - RequestID: 7v9bnlrmlh7 +2025-06-20T11:01:35.942Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(414362) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (414362, 'user_1044') - RequestID: e9dcob5fcat +2025-06-20T11:01:41.288Z [ERROR] auth-service - Authentication system error for user user_1078 from 192.168.98.8 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: clyhrzaobk8 +2025-06-20T11:01:41.288Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 405175 - RequestID: axbufn7zgcw +2025-06-20T11:01:46.674Z [ERROR] auth-service - Authentication system error for user user_1040 from 192.168.126.119 - Error: Identity provider certificate expired - RequestID: 6l4a3xlh7f7 +2025-06-20T11:01:46.674Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(497098) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (497098, 'user_1025') - RequestID: uw3c4b1uqh9 +2025-06-20T11:01:51.814Z [ERROR] auth-service - Authentication system error for user user_1028 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ehqrrcbgbo5 +2025-06-20T11:01:51.814Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 83336 - RequestID: ktz7f45pev +2025-06-20T11:01:56.933Z [ERROR] auth-service - Authentication system error for user user_1043 from 192.168.192.148 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: vei9mct4hl8 +2025-06-20T11:01:56.933Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(458662) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (458662, 'user_1062') - RequestID: kko973ex8lq +2025-06-20T11:02:02.032Z [ERROR] auth-service - Authentication system error for user user_1020 from 192.168.115.66 - Error: Identity provider certificate expired - RequestID: erzsvp4o8i +2025-06-20T11:02:02.032Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(857813) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (857813, 'user_1039') - RequestID: 9lh30qz5ibk +2025-06-20T11:02:07.133Z [ERROR] auth-service - Authentication system error for user user_1083 from 192.168.159.31 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 04u3q973xmbf +2025-06-20T11:02:07.133Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(568055) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (568055, 'user_1015') - RequestID: o9n9ssisctd +2025-06-20T11:02:12.234Z [ERROR] auth-service - Authentication system error for user user_1045 from 192.168.217.206 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: v4hnhwbkpzs +2025-06-20T11:02:12.234Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(367444) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (367444, 'user_1010') - RequestID: ho6mhy2idde +2025-06-20T11:02:17.340Z [ERROR] auth-service - Authentication system error for user user_1091 from 192.168.249.127 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: x0kugduh8b +2025-06-20T11:02:17.340Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 386979 - RequestID: 47vokgdfj27 +2025-06-20T11:02:22.440Z [ERROR] auth-service - Authentication system error for user user_1053 from 192.168.159.31 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: b63sw686aom +2025-06-20T11:02:22.440Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(526221) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (526221, 'user_1004') - RequestID: ant3muqhx3a +2025-06-20T11:02:27.540Z [ERROR] auth-service - Authentication system error for user user_1058 from 192.168.138.229 - Error: Identity provider certificate expired - RequestID: h4rfpbgflxu +2025-06-20T11:02:27.540Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 374297 - RequestID: x6m0fk95jsg +2025-06-20T11:02:32.639Z [ERROR] auth-service - Authentication system error for user user_1020 from 192.168.217.231 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: z1iwhsuy8 +2025-06-20T11:02:32.639Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 831408 - RequestID: plkla4lr7j +2025-06-20T11:02:37.739Z [ERROR] auth-service - Authentication system error for user user_1068 from 192.168.203.86 - Error: Identity provider certificate expired - RequestID: jpf0lsdmtid +2025-06-20T11:02:37.739Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(112007) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (112007, 'user_1003') - RequestID: ylokyzsus +2025-06-20T11:02:42.839Z [ERROR] auth-service - Authentication system error for user user_1030 from 192.168.249.127 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 4ij40jrxz0r +2025-06-20T11:02:42.839Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(704939) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (704939, 'user_1096') - RequestID: grvnf56wrei +2025-06-20T11:02:47.940Z [ERROR] auth-service - Authentication system error for user user_1012 from 192.168.143.242 - Error: Identity provider certificate expired - RequestID: 238t1wrs9fq +2025-06-20T11:02:47.940Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 273368 - RequestID: 1ectgyepuy1 +2025-06-20T11:02:53.040Z [ERROR] auth-service - Authentication system error for user user_1093 from 192.168.98.8 - Error: Identity provider certificate expired - RequestID: 0cv2efppdyw4 +2025-06-20T11:02:53.040Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(948134) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (948134, 'user_1086') - RequestID: 4qfivsdry1a +2025-06-20T11:02:58.140Z [ERROR] auth-service - Authentication system error for user user_1076 from 192.168.45.32 - Error: Identity provider certificate expired - RequestID: 8pygtpjaq2a +2025-06-20T11:02:58.140Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(391783) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (391783, 'user_1071') - RequestID: diysqxkvr18 +2025-06-20T11:03:03.240Z [ERROR] auth-service - Authentication system error for user user_1012 from 192.168.217.231 - Error: Identity provider certificate expired - RequestID: qyjc1v0w6ec +2025-06-20T11:03:03.240Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 998869 - RequestID: f0az3g7g7wk +2025-06-20T11:03:08.339Z [ERROR] auth-service - Authentication system error for user user_1029 from 192.168.249.127 - Error: Identity provider certificate expired - RequestID: 7rgbmv9c1f3 +2025-06-20T11:03:08.340Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 96289 - RequestID: u7mp6ezk02r +2025-06-20T11:03:13.440Z [ERROR] auth-service - Authentication system error for user user_1013 from 192.168.13.14 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 24k0vwkzjhwi +2025-06-20T11:03:13.440Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(64992) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (64992, 'user_1076') - RequestID: uj0g51f7uj +2025-06-20T11:03:18.542Z [ERROR] auth-service - Authentication system error for user user_1025 from 192.168.16.121 - Error: Identity provider certificate expired - RequestID: 1h90rkqwz5y +2025-06-20T11:03:18.542Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(622882) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (622882, 'user_1066') - RequestID: b4db8ippw7b +2025-06-20T11:03:23.642Z [ERROR] auth-service - Authentication system error for user user_1098 from 192.168.143.242 - Error: Identity provider certificate expired - RequestID: hb7ulcckh1s +2025-06-20T11:03:23.642Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 46885 - RequestID: n880akajseg +2025-06-20T11:03:28.743Z [ERROR] auth-service - Authentication system error for user user_1010 from 192.168.34.236 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ztxeh95n3il +2025-06-20T11:03:28.743Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 511967 - RequestID: e65apuaj1se +2025-06-20T11:03:33.843Z [ERROR] auth-service - Authentication system error for user user_1061 from 192.168.132.247 - Error: Identity provider certificate expired - RequestID: weopgc990e +2025-06-20T11:03:33.843Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(880130) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (880130, 'user_1076') - RequestID: hb02q9tovl9 +2025-06-20T11:03:38.943Z [ERROR] auth-service - Authentication system error for user user_1034 from 192.168.141.228 - Error: Identity provider certificate expired - RequestID: ikm23pqej6r +2025-06-20T11:03:38.944Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 247547 - RequestID: hz1fiuhhjqw +2025-06-20T11:03:44.043Z [ERROR] auth-service - Authentication system error for user user_1065 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: v75x2mru6et +2025-06-20T11:03:44.043Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 698648 - RequestID: 7i2i82omueq +2025-06-20T11:03:49.145Z [ERROR] auth-service - Authentication system error for user user_1098 from 192.168.143.242 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: pccv74p0xcm +2025-06-20T11:03:49.145Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(966286) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (966286, 'user_1072') - RequestID: et6iybrj1iq +2025-06-20T11:03:54.245Z [ERROR] auth-service - Authentication system error for user user_1002 from 192.168.113.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 1qnf08f10ox +2025-06-20T11:03:54.245Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 359628 - RequestID: k0aljv3c6ja +2025-06-20T11:03:59.345Z [ERROR] auth-service - Authentication system error for user user_1037 from 192.168.249.127 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: i6qwbnxfm88 +2025-06-20T11:03:59.345Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 171331 - RequestID: 8o38d1q495q +2025-06-20T11:04:04.444Z [ERROR] auth-service - Authentication system error for user user_1088 from 192.168.159.31 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: g7u8m8mtg0l +2025-06-20T11:04:04.444Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(263676) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (263676, 'user_1074') - RequestID: rk38pgvz6o +2025-06-20T11:04:09.544Z [ERROR] auth-service - Authentication system error for user user_1089 from 192.168.154.185 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: lqu6e9s48qb +2025-06-20T11:04:09.544Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(760158) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (760158, 'user_1047') - RequestID: 21ukv7k45ns +2025-06-20T11:04:14.644Z [ERROR] auth-service - Authentication system error for user user_1018 from 192.168.239.220 - Error: Identity provider certificate expired - RequestID: c5xi6fq171f +2025-06-20T11:04:14.644Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 852457 - RequestID: am0hf3ecikq +2025-06-20T11:04:19.746Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.204.182 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: eckfgbmqi1h +2025-06-20T11:04:19.746Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 180116 - RequestID: 1ttv1vy2ixo +2025-06-20T11:04:24.846Z [ERROR] auth-service - Authentication system error for user user_1032 from 192.168.35.166 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: orwb3s7wuur +2025-06-20T11:04:24.846Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 751910 - RequestID: ytvsxptidh +2025-06-20T11:04:29.946Z [ERROR] auth-service - Authentication system error for user user_1054 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 8luf79raekj +2025-06-20T11:04:29.946Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 504022 - RequestID: pvi8hs2bi1i +2025-06-20T11:04:35.047Z [ERROR] auth-service - Authentication system error for user user_1085 from 192.168.210.103 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: z4gw669g28 +2025-06-20T11:04:35.047Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 352117 - RequestID: agurcb6xvl9 +2025-06-20T11:04:40.147Z [ERROR] auth-service - Authentication system error for user user_1086 from 192.168.203.86 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: yihu3ja4m4k +2025-06-20T11:04:40.147Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(342900) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (342900, 'user_1069') - RequestID: m15klxxjsbs +2025-06-20T11:04:45.247Z [ERROR] auth-service - Authentication system error for user user_1068 from 192.168.162.209 - Error: Identity provider certificate expired - RequestID: ue6i9ws2n7l +2025-06-20T11:04:45.247Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(444152) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (444152, 'user_1060') - RequestID: rng451l3rgf +2025-06-20T11:04:50.349Z [ERROR] auth-service - Authentication system error for user user_1079 from 192.168.113.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: nr5pfvvgkjj +2025-06-20T11:04:50.349Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 524092 - RequestID: z8o423wpf9j +2025-06-20T11:04:55.449Z [ERROR] auth-service - Authentication system error for user user_1003 from 192.168.19.191 - Error: Identity provider certificate expired - RequestID: 43guw0jfw8w +2025-06-20T11:04:55.449Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(456113) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (456113, 'user_1036') - RequestID: 5xzo031nbql +2025-06-20T11:05:00.552Z [ERROR] auth-service - Authentication system error for user user_1040 from 192.168.152.169 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: nd6bvh86gnl +2025-06-20T11:05:00.552Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(831990) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (831990, 'user_1038') - RequestID: unle7fj4pig +2025-06-20T11:05:05.652Z [ERROR] auth-service - Authentication system error for user user_1011 from 192.168.192.148 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: qrilgxu3y2 +2025-06-20T11:05:05.652Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(942179) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (942179, 'user_1079') - RequestID: 8alyy399hp +2025-06-20T11:05:10.752Z [ERROR] auth-service - Authentication system error for user user_1071 from 192.168.217.231 - Error: Identity provider certificate expired - RequestID: rxkkbu5okgb +2025-06-20T11:05:10.752Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(832783) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (832783, 'user_1068') - RequestID: i19ygs7f53h +2025-06-20T11:05:15.853Z [ERROR] auth-service - Authentication system error for user user_1073 from 192.168.217.206 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: rnqbjbc0gqp +2025-06-20T11:05:15.853Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(209058) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (209058, 'user_1031') - RequestID: 6bl5fi8cgpt +2025-06-20T11:05:20.954Z [ERROR] auth-service - Authentication system error for user user_1031 from 192.168.154.185 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: gxz0pdybgt +2025-06-20T11:05:20.955Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 336422 - RequestID: njp8iiov0j +2025-06-20T11:05:26.055Z [ERROR] auth-service - Authentication system error for user user_1084 from 192.168.172.121 - Error: Identity provider certificate expired - RequestID: urtkg73dh9r +2025-06-20T11:05:26.055Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(810964) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (810964, 'user_1091') - RequestID: y6k4gkgg4lq +2025-06-20T11:05:31.154Z [ERROR] auth-service - Authentication system error for user user_1057 from 192.168.217.231 - Error: Identity provider certificate expired - RequestID: knwvelsrqx +2025-06-20T11:05:31.155Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(425626) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (425626, 'user_1011') - RequestID: o481xnbqsdi +2025-06-20T11:05:36.258Z [ERROR] auth-service - Authentication system error for user user_1020 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: k8zxbg0ctks +2025-06-20T11:05:36.258Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(251921) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (251921, 'user_1027') - RequestID: q982q4hxio9 +2025-06-20T11:05:41.359Z [ERROR] auth-service - Authentication system error for user user_1088 from 192.168.16.121 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ybn1fldiadb +2025-06-20T11:05:41.360Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 374474 - RequestID: ulvsab7y6dt +2025-06-20T11:05:46.459Z [ERROR] auth-service - Authentication system error for user user_1066 from 192.168.54.206 - Error: Identity provider certificate expired - RequestID: z2u4l12mxio +2025-06-20T11:05:46.460Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 727246 - RequestID: 11qlv5l8jdbn +2025-06-20T11:05:51.561Z [ERROR] auth-service - Authentication system error for user user_1015 from 192.168.16.121 - Error: Identity provider certificate expired - RequestID: 5ovkyfgru4i +2025-06-20T11:05:51.561Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(949069) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (949069, 'user_1006') - RequestID: jeph897698 +2025-06-20T11:05:56.661Z [ERROR] auth-service - Authentication system error for user user_1062 from 192.168.72.49 - Error: Identity provider certificate expired - RequestID: onsnjo5mim +2025-06-20T11:05:56.661Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 769107 - RequestID: go29197foph +2025-06-20T11:06:01.761Z [ERROR] auth-service - Authentication system error for user user_1039 from 192.168.47.107 - Error: Identity provider certificate expired - RequestID: 87i8p3rpb62 +2025-06-20T11:06:01.761Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(477002) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (477002, 'user_1098') - RequestID: vepjx8f2bu +2025-06-20T11:06:06.863Z [ERROR] auth-service - Authentication system error for user user_1012 from 192.168.227.174 - Error: Identity provider certificate expired - RequestID: la5qeghovlf +2025-06-20T11:06:06.863Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 853930 - RequestID: xddqsnaldsi +2025-06-20T11:06:11.965Z [ERROR] auth-service - Authentication system error for user user_1077 from 192.168.229.15 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: zisit4605s +2025-06-20T11:06:11.965Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(470167) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (470167, 'user_1066') - RequestID: lp676uzrp2o +2025-06-20T11:06:17.064Z [ERROR] auth-service - Authentication system error for user user_1073 from 192.168.35.166 - Error: Identity provider certificate expired - RequestID: grr2789szrf +2025-06-20T11:06:17.065Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 72067 - RequestID: hhoagkte6tc +2025-06-20T11:06:22.166Z [ERROR] auth-service - Authentication system error for user user_1017 from 192.168.108.24 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: pi21i67rr +2025-06-20T11:06:22.166Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(352068) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (352068, 'user_1001') - RequestID: hbmoy2zf9ka +2025-06-20T11:06:27.266Z [ERROR] auth-service - Authentication system error for user user_1000 from 192.168.192.148 - Error: Identity provider certificate expired - RequestID: 3vcdqkrenvd +2025-06-20T11:06:27.266Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 786688 - RequestID: ovhcmgke0xo +2025-06-20T11:06:32.366Z [ERROR] auth-service - Authentication system error for user user_1089 from 192.168.45.32 - Error: Identity provider certificate expired - RequestID: 5masqjb2f9v +2025-06-20T11:06:32.366Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 623777 - RequestID: dwv4koa61do +2025-06-20T11:06:37.466Z [ERROR] auth-service - Authentication system error for user user_1074 from 192.168.35.82 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: uvtdlqx5d3 +2025-06-20T11:06:37.466Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 176358 - RequestID: d1sd7q7e9ce +2025-06-20T11:06:42.566Z [ERROR] auth-service - Authentication system error for user user_1026 from 192.168.119.62 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 4uz36u3n1t7 +2025-06-20T11:06:42.566Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 800041 - RequestID: 5fu6262lqpm +2025-06-20T11:06:47.669Z [ERROR] auth-service - Authentication system error for user user_1032 from 192.168.204.182 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: lyec3e5eiwa +2025-06-20T11:06:47.669Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 486246 - RequestID: cgsvq476v64 +2025-06-20T11:06:52.769Z [ERROR] auth-service - Authentication system error for user user_1070 from 192.168.86.164 - Error: Identity provider certificate expired - RequestID: jpsfzxwnb6f +2025-06-20T11:06:52.769Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(763727) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (763727, 'user_1042') - RequestID: m18bcnv4spr +2025-06-20T11:06:57.869Z [ERROR] auth-service - Authentication system error for user user_1092 from 192.168.154.185 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 9kwkpf2adse +2025-06-20T11:06:57.869Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(625976) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (625976, 'user_1072') - RequestID: w088j6fwr5p +2025-06-20T11:07:02.969Z [ERROR] auth-service - Authentication system error for user user_1056 from 192.168.47.107 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 66a8i5x38c6 +2025-06-20T11:07:02.969Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 554510 - RequestID: w3xt2ki2ckn +2025-06-20T11:07:08.069Z [ERROR] auth-service - Authentication system error for user user_1007 from 192.168.45.32 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: h95getkjpv +2025-06-20T11:07:08.069Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(661775) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (661775, 'user_1085') - RequestID: e2chqlmim3m diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/fetch_pod_logs_error_ask-holmes-namespace-51_my-app-51-59d94fd7cc-927wn.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/fetch_pod_logs_error_ask-holmes-namespace-51_my-app-51-59d94fd7cc-927wn.txt new file mode 100644 index 00000000000..7b0aa9f20a8 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/fetch_pod_logs_error_ask-holmes-namespace-51_my-app-51-59d94fd7cc-927wn.txt @@ -0,0 +1,670 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"my-app-51-59d94fd7cc-927wn","namespace":"ask-holmes-namespace-51","filter":"error"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": null, "data": null, "url": null, "invocation": null, "params": {"namespace": "ask-holmes-namespace-51", "pod_name": "my-app-51-59d94fd7cc-927wn", "start_time": null, "end_time": null, "filter": "error", "limit": null}} +2025-06-20T10:37:30.113Z [ERROR] auth-service - Authentication system error for user user_1062 from 192.168.152.169 - Error: Identity provider certificate expired - RequestID: k92x86k8msd +2025-06-20T10:37:30.113Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 496255 - RequestID: 7tjp58wxyed +2025-06-20T10:37:35.213Z [ERROR] auth-service - Authentication system error for user user_1022 from 192.168.162.209 - Error: Identity provider certificate expired - RequestID: qdgypkyq8k +2025-06-20T10:37:35.213Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(353798) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (353798, 'user_1085') - RequestID: 5sytti8tgnv +2025-06-20T10:37:40.313Z [ERROR] auth-service - Authentication system error for user user_1013 from 192.168.32.125 - Error: Identity provider certificate expired - RequestID: o9fk2s5mno +2025-06-20T10:37:40.314Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(426453) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (426453, 'user_1050') - RequestID: fqcnn72obig +2025-06-20T10:37:45.415Z [ERROR] auth-service - Authentication system error for user user_1080 from 192.168.13.14 - Error: Identity provider certificate expired - RequestID: 2kbxcv6qfs5 +2025-06-20T10:37:45.416Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(867202) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (867202, 'user_1089') - RequestID: 3ygoxcazggf +2025-06-20T10:37:50.517Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.172.121 - Error: Identity provider certificate expired - RequestID: ymcegix7zx +2025-06-20T10:37:50.517Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 116552 - RequestID: xms8bvt82fa +2025-06-20T10:37:55.617Z [ERROR] auth-service - Authentication system error for user user_1020 from 192.168.119.62 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: wop9xpaun58 +2025-06-20T10:37:55.617Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 640846 - RequestID: pvrae9p6y7c +2025-06-20T10:38:00.717Z [ERROR] auth-service - Authentication system error for user user_1028 from 192.168.203.86 - Error: Identity provider certificate expired - RequestID: 6y090cj57nr +2025-06-20T10:38:00.717Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 572360 - RequestID: wi8ao3t2b2 +2025-06-20T10:38:05.817Z [ERROR] auth-service - Authentication system error for user user_1085 from 192.168.249.127 - Error: Identity provider certificate expired - RequestID: 4pmmhntsxsw +2025-06-20T10:38:05.817Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(985166) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (985166, 'user_1024') - RequestID: j54qp2dn8ea +2025-06-20T10:38:10.917Z [ERROR] auth-service - Authentication system error for user user_1015 from 192.168.209.249 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: wtbyvgx5vzj +2025-06-20T10:38:10.917Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 548997 - RequestID: 3fehle4k69p +2025-06-20T10:38:16.017Z [ERROR] auth-service - Authentication system error for user user_1098 from 192.168.35.82 - Error: Identity provider certificate expired - RequestID: nbrg2xipqbe +2025-06-20T10:38:16.017Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 148617 - RequestID: 0c22o71fj4ja +2025-06-20T10:38:21.119Z [ERROR] auth-service - Authentication system error for user user_1087 from 192.168.217.231 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 14bokirpxbpl +2025-06-20T10:38:21.119Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 326112 - RequestID: cg71rddctf +2025-06-20T10:38:26.219Z [ERROR] auth-service - Authentication system error for user user_1003 from 192.168.197.194 - Error: Identity provider certificate expired - RequestID: ztuuc1lkat +2025-06-20T10:38:26.219Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(892694) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (892694, 'user_1075') - RequestID: lqosadrvin +2025-06-20T10:38:31.319Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.115.66 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ie2wz8xb08 +2025-06-20T10:38:31.319Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 426035 - RequestID: fpk2unqm67 +2025-06-20T10:38:36.421Z [ERROR] auth-service - Authentication system error for user user_1022 from 192.168.162.209 - Error: Identity provider certificate expired - RequestID: 2sq15m84erx +2025-06-20T10:38:36.421Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(770788) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (770788, 'user_1016') - RequestID: 6hb6k05l24w +2025-06-20T10:38:41.523Z [ERROR] auth-service - Authentication system error for user user_1021 from 192.168.204.182 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 46iftysub31 +2025-06-20T10:38:41.523Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 479670 - RequestID: 4yxvty1jzm6 +2025-06-20T10:38:46.624Z [ERROR] auth-service - Authentication system error for user user_1059 from 192.168.119.62 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 9gbgwfyxtc7 +2025-06-20T10:38:46.624Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 275482 - RequestID: 3uzvw51ezln +2025-06-20T10:38:51.726Z [ERROR] auth-service - Authentication system error for user user_1069 from 192.168.43.230 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 4jhhlr6foy6 +2025-06-20T10:38:51.726Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 309072 - RequestID: d86ldcn1b17 +2025-06-20T10:38:56.826Z [ERROR] auth-service - Authentication system error for user user_1042 from 192.168.16.121 - Error: Identity provider certificate expired - RequestID: xuetmd8foik +2025-06-20T10:38:56.826Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 319111 - RequestID: jat5j5q7hmo +2025-06-20T10:39:01.926Z [ERROR] auth-service - Authentication system error for user user_1060 from 192.168.239.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: uc55h1kgpy +2025-06-20T10:39:01.926Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 422186 - RequestID: aghyg2fpmow +2025-06-20T10:39:07.025Z [ERROR] auth-service - Authentication system error for user user_1092 from 192.168.209.249 - Error: Identity provider certificate expired - RequestID: 7m7fharf70j +2025-06-20T10:39:07.025Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 152491 - RequestID: qu6k3jmbdss +2025-06-20T10:39:12.125Z [ERROR] auth-service - Authentication system error for user user_1042 from 192.168.16.121 - Error: Identity provider certificate expired - RequestID: qk55r37wz0e +2025-06-20T10:39:12.125Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 377457 - RequestID: du29atadec5 +2025-06-20T10:39:17.227Z [ERROR] auth-service - Authentication system error for user user_1003 from 192.168.237.140 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: jxfrm2k321 +2025-06-20T10:39:17.227Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(658923) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (658923, 'user_1039') - RequestID: 9nqdycndhhu +2025-06-20T10:39:22.328Z [ERROR] auth-service - Authentication system error for user user_1002 from 192.168.249.127 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 4u9bxr3xpfs +2025-06-20T10:39:22.328Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(451551) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (451551, 'user_1007') - RequestID: ejckcc71s69 +2025-06-20T10:39:27.428Z [ERROR] auth-service - Authentication system error for user user_1029 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: f6ttxlpc5xp +2025-06-20T10:39:27.428Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(283308) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (283308, 'user_1032') - RequestID: xnrlbkjjw2 +2025-06-20T10:39:32.528Z [ERROR] auth-service - Authentication system error for user user_1018 from 192.168.154.185 - Error: Identity provider certificate expired - RequestID: ohkk2u71tce +2025-06-20T10:39:32.528Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 37844 - RequestID: 36bz70bdi68 +2025-06-20T10:39:37.628Z [ERROR] auth-service - Authentication system error for user user_1080 from 192.168.113.220 - Error: Identity provider certificate expired - RequestID: ur3qnnmmtg +2025-06-20T10:39:37.628Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(490895) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (490895, 'user_1068') - RequestID: 3ewrrdwwvy +2025-06-20T10:39:42.728Z [ERROR] auth-service - Authentication system error for user user_1019 from 192.168.132.247 - Error: Identity provider certificate expired - RequestID: sazg94cr67 +2025-06-20T10:39:42.728Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(416128) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (416128, 'user_1058') - RequestID: sgu8c9aqrt +2025-06-20T10:39:47.830Z [ERROR] auth-service - Authentication system error for user user_1027 from 192.168.4.60 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: q3j48z62888 +2025-06-20T10:39:47.830Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 562249 - RequestID: a8rvjk61krn +2025-06-20T10:39:52.930Z [ERROR] auth-service - Authentication system error for user user_1028 from 192.168.192.148 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: exj5r5i8hzd +2025-06-20T10:39:52.930Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 1875 - RequestID: 9m44i1qp5c4 +2025-06-20T10:39:58.030Z [ERROR] auth-service - Authentication system error for user user_1083 from 192.168.239.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: a8l4v6wdpvr +2025-06-20T10:39:58.030Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(440803) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (440803, 'user_1060') - RequestID: 4o3mp2k8ro2 +2025-06-20T10:40:03.130Z [ERROR] auth-service - Authentication system error for user user_1057 from 192.168.86.164 - Error: Identity provider certificate expired - RequestID: myps3dg2kvc +2025-06-20T10:40:03.130Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 286738 - RequestID: 23pqldqv0e1 +2025-06-20T10:40:08.230Z [ERROR] auth-service - Authentication system error for user user_1052 from 192.168.45.32 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 47j1723osnm +2025-06-20T10:40:08.230Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 623672 - RequestID: ddtbfrcfeel +2025-06-20T10:40:13.330Z [ERROR] auth-service - Authentication system error for user user_1057 from 192.168.166.68 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: varr4c1hrf +2025-06-20T10:40:13.330Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 985838 - RequestID: 2y9dkb9eqc9 +2025-06-20T10:40:18.431Z [ERROR] auth-service - Authentication system error for user user_1074 from 192.168.203.86 - Error: Identity provider certificate expired - RequestID: ktsdf9yyvm +2025-06-20T10:40:18.431Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(863890) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (863890, 'user_1028') - RequestID: xog3zd1h9fg +2025-06-20T10:40:23.531Z [ERROR] auth-service - Authentication system error for user user_1087 from 192.168.115.66 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ln5ilksw9h +2025-06-20T10:40:23.531Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(579410) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (579410, 'user_1092') - RequestID: 1xfnfz4zmit +2025-06-20T10:40:28.631Z [ERROR] auth-service - Authentication system error for user user_1061 from 192.168.204.182 - Error: Identity provider certificate expired - RequestID: 7e2pzeahcen +2025-06-20T10:40:28.631Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(108465) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (108465, 'user_1037') - RequestID: 2djf0i0ahj6 +2025-06-20T10:40:33.730Z [ERROR] auth-service - Authentication system error for user user_1096 from 192.168.203.86 - Error: Identity provider certificate expired - RequestID: h04kps1x59 +2025-06-20T10:40:33.730Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 290416 - RequestID: 09ncsjm0548g +2025-06-20T10:40:38.830Z [ERROR] auth-service - Authentication system error for user user_1076 from 192.168.86.164 - Error: Identity provider certificate expired - RequestID: tp7rznk22lc +2025-06-20T10:40:38.830Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 631608 - RequestID: 0icb59yjprdl +2025-06-20T10:40:43.930Z [ERROR] auth-service - Authentication system error for user user_1032 from 192.168.72.49 - Error: Identity provider certificate expired - RequestID: bdtrpapkqs +2025-06-20T10:40:43.930Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(588525) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (588525, 'user_1059') - RequestID: n8j59if3sa +2025-06-20T10:40:49.034Z [ERROR] auth-service - Authentication system error for user user_1043 from 192.168.16.121 - Error: Identity provider certificate expired - RequestID: uru0anvnvwo +2025-06-20T10:40:49.034Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(983254) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (983254, 'user_1010') - RequestID: 6tc5gzx6678 +2025-06-20T10:40:54.136Z [ERROR] auth-service - Authentication system error for user user_1054 from 192.168.135.187 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: agm42y75ypo +2025-06-20T10:40:54.136Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 668862 - RequestID: 4s1r4qhy7nj +2025-06-20T10:40:59.236Z [ERROR] auth-service - Authentication system error for user user_1027 from 192.168.239.220 - Error: Identity provider certificate expired - RequestID: d78jtsp8uw +2025-06-20T10:40:59.236Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 180775 - RequestID: fz0cysu7n2 +2025-06-20T10:41:04.336Z [ERROR] auth-service - Authentication system error for user user_1063 from 192.168.162.209 - Error: Identity provider certificate expired - RequestID: d2ice60tu3 +2025-06-20T10:41:04.336Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 217078 - RequestID: 95my7syx0cn +2025-06-20T10:41:09.436Z [ERROR] auth-service - Authentication system error for user user_1003 from 192.168.59.85 - Error: Identity provider certificate expired - RequestID: af44ecgxv8r +2025-06-20T10:41:09.436Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 506687 - RequestID: p6ll92gyiu +2025-06-20T10:41:14.536Z [ERROR] auth-service - Authentication system error for user user_1064 from 192.168.67.77 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: f1537qyucyw +2025-06-20T10:41:14.536Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 439031 - RequestID: 90xt48jdbbn +2025-06-20T10:41:19.638Z [ERROR] auth-service - Authentication system error for user user_1070 from 192.168.203.86 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 33dkg9uuetv +2025-06-20T10:41:19.638Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 666786 - RequestID: 9d6un76z4s6 +2025-06-20T10:41:24.738Z [ERROR] auth-service - Authentication system error for user user_1078 from 192.168.249.127 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 92l9g74izej +2025-06-20T10:41:24.738Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(835388) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (835388, 'user_1021') - RequestID: 1t5598ihhyc +2025-06-20T10:41:29.838Z [ERROR] auth-service - Authentication system error for user user_1010 from 192.168.239.220 - Error: Identity provider certificate expired - RequestID: td8xx3a9qr9 +2025-06-20T10:41:29.838Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 803687 - RequestID: x590bmsj04 +2025-06-20T10:41:34.939Z [ERROR] auth-service - Authentication system error for user user_1016 from 192.168.154.185 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 2e74ikqkbql +2025-06-20T10:41:34.939Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(494308) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (494308, 'user_1028') - RequestID: 4vpf0ava99e +2025-06-20T10:41:40.039Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.45.32 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: vvwrgdxssph +2025-06-20T10:41:40.039Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 813758 - RequestID: mm4y3r0qws +2025-06-20T10:41:45.139Z [ERROR] auth-service - Authentication system error for user user_1025 from 192.168.166.68 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: wk4nxkoqd5t +2025-06-20T10:41:45.139Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 487470 - RequestID: lya5bokune +2025-06-20T10:41:50.241Z [ERROR] auth-service - Authentication system error for user user_1077 from 192.168.154.185 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: mxm01fwtzcc +2025-06-20T10:41:50.241Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 614040 - RequestID: 4mh8jnhujqs +2025-06-20T10:41:55.341Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.141.228 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 3h39c9x9cpt +2025-06-20T10:41:55.341Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(901655) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (901655, 'user_1087') - RequestID: c9bb6db9nf4 +2025-06-20T10:42:00.441Z [ERROR] auth-service - Authentication system error for user user_1064 from 192.168.67.77 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: yhxulxrebk9 +2025-06-20T10:42:00.441Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(942997) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (942997, 'user_1074') - RequestID: dll0z169py7 +2025-06-20T10:42:05.542Z [ERROR] auth-service - Authentication system error for user user_1088 from 192.168.34.236 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ou63a8njcfa +2025-06-20T10:42:05.542Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 29415 - RequestID: ktljuykqgh9 +2025-06-20T10:42:10.641Z [ERROR] auth-service - Authentication system error for user user_1043 from 192.168.59.85 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: elz96528em +2025-06-20T10:42:10.641Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(262736) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (262736, 'user_1069') - RequestID: g9e5qfcqepf +2025-06-20T10:42:15.741Z [ERROR] auth-service - Authentication system error for user user_1079 from 192.168.209.249 - Error: Identity provider certificate expired - RequestID: 02kr5s1t6b4y +2025-06-20T10:42:15.741Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(461717) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (461717, 'user_1010') - RequestID: 3jtjjeylfpa +2025-06-20T10:42:20.843Z [ERROR] auth-service - Authentication system error for user user_1025 from 192.168.152.169 - Error: Identity provider certificate expired - RequestID: 5uf3fkjj4ei +2025-06-20T10:42:20.843Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(881194) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (881194, 'user_1035') - RequestID: vwq28a61w2 +2025-06-20T10:42:25.943Z [ERROR] auth-service - Authentication system error for user user_1096 from 192.168.141.228 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: dmq9yc54rtd +2025-06-20T10:42:25.943Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(21728) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (21728, 'user_1067') - RequestID: yl8ixrgnak +2025-06-20T10:42:31.045Z [ERROR] auth-service - Authentication system error for user user_1017 from 192.168.239.220 - Error: Identity provider certificate expired - RequestID: re7b7grwp2s +2025-06-20T10:42:31.045Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 826371 - RequestID: w2pt8je6w5 +2025-06-20T10:42:36.145Z [ERROR] auth-service - Authentication system error for user user_1062 from 192.168.138.229 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: r1kao80nzo +2025-06-20T10:42:36.145Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 609150 - RequestID: p2qo3oxv7t +2025-06-20T10:42:41.245Z [ERROR] auth-service - Authentication system error for user user_1051 from 192.168.4.60 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: lfmwdmqd5ie +2025-06-20T10:42:41.245Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(485753) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (485753, 'user_1015') - RequestID: nyieai6z31r +2025-06-20T10:42:46.345Z [ERROR] auth-service - Authentication system error for user user_1051 from 192.168.229.15 - Error: Identity provider certificate expired - RequestID: 05wbgbgpg6bx +2025-06-20T10:42:46.345Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(454905) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (454905, 'user_1092') - RequestID: 173b3ybaq67 +2025-06-20T10:42:51.446Z [ERROR] auth-service - Authentication system error for user user_1011 from 192.168.152.169 - Error: Identity provider certificate expired - RequestID: ilkdkegbrrf +2025-06-20T10:42:51.446Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(24398) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (24398, 'user_1089') - RequestID: unhucg6b66r +2025-06-20T10:42:56.548Z [ERROR] auth-service - Authentication system error for user user_1010 from 192.168.32.125 - Error: Identity provider certificate expired - RequestID: 6njzytnlwi4 +2025-06-20T10:42:56.548Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 645761 - RequestID: uxyodo2en1 +2025-06-20T10:43:01.649Z [ERROR] auth-service - Authentication system error for user user_1054 from 192.168.152.169 - Error: Identity provider certificate expired - RequestID: 28dxbxdoym6 +2025-06-20T10:43:01.649Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(784939) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (784939, 'user_1049') - RequestID: 0wrt6esbr54j +2025-06-20T10:43:06.750Z [ERROR] auth-service - Authentication system error for user user_1029 from 192.168.152.169 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: l64rat3f9dr +2025-06-20T10:43:06.750Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 404827 - RequestID: a9scos2m84j +2025-06-20T10:43:11.850Z [ERROR] auth-service - Authentication system error for user user_1085 from 192.168.126.119 - Error: Identity provider certificate expired - RequestID: 6ab62k0dypm +2025-06-20T10:43:11.850Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 79639 - RequestID: x54uyl9z3yo +2025-06-20T10:43:16.950Z [ERROR] auth-service - Authentication system error for user user_1035 from 192.168.115.66 - Error: Identity provider certificate expired - RequestID: o4e29hm22m +2025-06-20T10:43:16.950Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 537494 - RequestID: l0amfce24zb +2025-06-20T10:43:22.052Z [ERROR] auth-service - Authentication system error for user user_1018 from 192.168.13.14 - Error: Identity provider certificate expired - RequestID: ntb429to68e +2025-06-20T10:43:22.052Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(800382) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (800382, 'user_1024') - RequestID: 98owpi4dbx +2025-06-20T10:43:27.152Z [ERROR] auth-service - Authentication system error for user user_1051 from 192.168.229.15 - Error: Identity provider certificate expired - RequestID: t5s4ck5njko +2025-06-20T10:43:27.152Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(11001) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (11001, 'user_1077') - RequestID: fbz91hsgjew +2025-06-20T10:43:32.255Z [ERROR] auth-service - Authentication system error for user user_1052 from 192.168.172.121 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: yj49zdkaqcf +2025-06-20T10:43:32.255Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(641852) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (641852, 'user_1056') - RequestID: h6mgl6avz9k +2025-06-20T10:43:37.355Z [ERROR] auth-service - Authentication system error for user user_1049 from 192.168.59.85 - Error: Identity provider certificate expired - RequestID: lpmz6h3zeym +2025-06-20T10:43:37.355Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(954304) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (954304, 'user_1082') - RequestID: ixo4i0hdjz8 +2025-06-20T10:43:42.455Z [ERROR] auth-service - Authentication system error for user user_1011 from 192.168.135.187 - Error: Identity provider certificate expired - RequestID: 0qbm9aw9a5ug +2025-06-20T10:43:42.455Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(996099) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (996099, 'user_1065') - RequestID: 1peuy6s56rk +2025-06-20T10:43:47.557Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.197.194 - Error: Identity provider certificate expired - RequestID: 7thqh6airia +2025-06-20T10:43:47.557Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 212766 - RequestID: ome1rc7aytg +2025-06-20T10:43:52.659Z [ERROR] auth-service - Authentication system error for user user_1000 from 192.168.15.79 - Error: Identity provider certificate expired - RequestID: ck65tpoked +2025-06-20T10:43:52.659Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 506241 - RequestID: ndy5d83a8hc +2025-06-20T10:43:57.759Z [ERROR] auth-service - Authentication system error for user user_1012 from 192.168.72.49 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: xblm9i2cvpe +2025-06-20T10:43:57.759Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(329140) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (329140, 'user_1042') - RequestID: dzuoj9fdlyl +2025-06-20T10:44:02.862Z [ERROR] auth-service - Authentication system error for user user_1038 from 192.168.67.77 - Error: Identity provider certificate expired - RequestID: 4omo7x77n1w +2025-06-20T10:44:02.862Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(523949) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (523949, 'user_1067') - RequestID: lpvklr8np9m +2025-06-20T10:44:07.963Z [ERROR] auth-service - Authentication system error for user user_1090 from 192.168.143.242 - Error: Identity provider certificate expired - RequestID: ph89sq1gq3 +2025-06-20T10:44:07.963Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 148597 - RequestID: 8nkp3rgk4fv +2025-06-20T10:44:13.063Z [ERROR] auth-service - Authentication system error for user user_1002 from 192.168.240.4 - Error: Identity provider certificate expired - RequestID: z11e39osdyf +2025-06-20T10:44:13.063Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 988179 - RequestID: xr581esd5sc +2025-06-20T10:44:18.165Z [ERROR] auth-service - Authentication system error for user user_1080 from 192.168.108.24 - Error: Identity provider certificate expired - RequestID: qxy3gr6krk +2025-06-20T10:44:18.165Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(154977) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (154977, 'user_1035') - RequestID: sd5p64vtvba +2025-06-20T10:44:23.265Z [ERROR] auth-service - Authentication system error for user user_1041 from 192.168.16.121 - Error: Identity provider certificate expired - RequestID: zlov2d9p42 +2025-06-20T10:44:23.265Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(494080) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (494080, 'user_1063') - RequestID: 3suxqhsp61c +2025-06-20T10:44:28.365Z [ERROR] auth-service - Authentication system error for user user_1051 from 192.168.141.228 - Error: Identity provider certificate expired - RequestID: 3jna7ghypl3 +2025-06-20T10:44:28.365Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(794882) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (794882, 'user_1053') - RequestID: d992bmc50gd +2025-06-20T10:44:33.465Z [ERROR] auth-service - Authentication system error for user user_1078 from 192.168.59.85 - Error: Identity provider certificate expired - RequestID: ggkqj0lvkoh +2025-06-20T10:44:33.465Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 667023 - RequestID: xmu0dpma6ap +2025-06-20T10:44:38.564Z [ERROR] auth-service - Authentication system error for user user_1003 from 192.168.217.231 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: w325rw20eq +2025-06-20T10:44:38.564Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(249535) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (249535, 'user_1009') - RequestID: ebgo60geu7r +2025-06-20T10:44:43.664Z [ERROR] auth-service - Authentication system error for user user_1040 from 192.168.137.27 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 1ovlspzme6w +2025-06-20T10:44:43.664Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(5798) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (5798, 'user_1004') - RequestID: d9vfcmurvh +2025-06-20T10:44:48.766Z [ERROR] auth-service - Authentication system error for user user_1010 from 192.168.192.148 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 34lgorh22c8 +2025-06-20T10:44:48.766Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 936486 - RequestID: w3xn8yutg +2025-06-20T10:44:53.866Z [ERROR] auth-service - Authentication system error for user user_1099 from 192.168.67.77 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: it4l61defp +2025-06-20T10:44:53.866Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(21359) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (21359, 'user_1083') - RequestID: oo0k3ygla1m +2025-06-20T10:44:58.966Z [ERROR] auth-service - Authentication system error for user user_1067 from 192.168.132.247 - Error: Identity provider certificate expired - RequestID: qnehmh8tri8 +2025-06-20T10:44:58.966Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 363283 - RequestID: qmj6r7p6wa +2025-06-20T10:45:04.066Z [ERROR] auth-service - Authentication system error for user user_1032 from 192.168.192.148 - Error: Identity provider certificate expired - RequestID: dcqkqu2lkpv +2025-06-20T10:45:04.066Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(317651) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (317651, 'user_1083') - RequestID: 7oqn15hlwtp +2025-06-20T10:45:09.169Z [ERROR] auth-service - Authentication system error for user user_1010 from 192.168.45.32 - Error: Identity provider certificate expired - RequestID: 1yvx94ddnob +2025-06-20T10:45:09.169Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(332496) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (332496, 'user_1093') - RequestID: hkwifjrt80o +2025-06-20T10:45:14.269Z [ERROR] auth-service - Authentication system error for user user_1062 from 192.168.98.8 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: nt62gieglr +2025-06-20T10:45:14.269Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 886008 - RequestID: mugmeno1upr +2025-06-20T10:45:19.370Z [ERROR] auth-service - Authentication system error for user user_1050 from 192.168.143.242 - Error: Identity provider certificate expired - RequestID: b9schjd6onf +2025-06-20T10:45:19.371Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 131235 - RequestID: d6y5hhznhom +2025-06-20T10:45:24.471Z [ERROR] auth-service - Authentication system error for user user_1023 from 192.168.197.194 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 1vwe3no931tj +2025-06-20T10:45:24.471Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 737064 - RequestID: 4zamvu4z3gf +2025-06-20T10:45:29.570Z [ERROR] auth-service - Authentication system error for user user_1047 from 192.168.67.77 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: uyrzndmn5te +2025-06-20T10:45:29.570Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(959974) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (959974, 'user_1000') - RequestID: s55eepg3com +2025-06-20T10:45:34.670Z [ERROR] auth-service - Authentication system error for user user_1001 from 192.168.47.107 - Error: Identity provider certificate expired - RequestID: myed10fk0bl +2025-06-20T10:45:34.670Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 923193 - RequestID: 58z6i8lb6qm +2025-06-20T10:45:39.770Z [ERROR] auth-service - Authentication system error for user user_1090 from 192.168.72.49 - Error: Identity provider certificate expired - RequestID: nth3b39f9ei +2025-06-20T10:45:39.771Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(200947) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (200947, 'user_1082') - RequestID: 0kouuahe9bx +2025-06-20T10:45:44.871Z [ERROR] auth-service - Authentication system error for user user_1089 from 192.168.210.103 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: eq8amuzj5av +2025-06-20T10:45:44.871Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 875785 - RequestID: vhwxn9ods3j +2025-06-20T10:45:49.973Z [ERROR] auth-service - Authentication system error for user user_1057 from 192.168.239.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 7wv3hfsxbx +2025-06-20T10:45:49.973Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 3763 - RequestID: qdeu9hbp2tn +2025-06-20T10:45:55.076Z [ERROR] auth-service - Authentication system error for user user_1080 from 192.168.240.4 - Error: Identity provider certificate expired - RequestID: bljuqmzn3xi +2025-06-20T10:45:55.076Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(790660) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (790660, 'user_1024') - RequestID: 2ses330d005 +2025-06-20T10:46:00.176Z [ERROR] auth-service - Authentication system error for user user_1084 from 192.168.115.66 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: qj6ortzsood +2025-06-20T10:46:00.176Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 415748 - RequestID: u63hntv1vv +2025-06-20T10:46:05.276Z [ERROR] auth-service - Authentication system error for user user_1054 from 192.168.192.148 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: em42dfvfada +2025-06-20T10:46:05.276Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(7941) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (7941, 'user_1007') - RequestID: f2xf1ua9dfi +2025-06-20T10:46:10.377Z [ERROR] auth-service - Authentication system error for user user_1052 from 192.168.43.230 - Error: Identity provider certificate expired - RequestID: 53hq6zw2khc +2025-06-20T10:46:10.377Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 47225 - RequestID: vminxv9t0a +2025-06-20T10:46:15.477Z [ERROR] auth-service - Authentication system error for user user_1044 from 192.168.152.169 - Error: Identity provider certificate expired - RequestID: umieqinfbj +2025-06-20T10:46:15.477Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 843587 - RequestID: 1opjmop5l4s +2025-06-20T10:46:20.579Z [ERROR] auth-service - Authentication system error for user user_1080 from 192.168.59.85 - Error: Identity provider certificate expired - RequestID: gfwqthleex +2025-06-20T10:46:20.579Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 666417 - RequestID: p5wfe3z84xj +2025-06-20T10:46:25.679Z [ERROR] auth-service - Authentication system error for user user_1023 from 192.168.47.107 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: tjy9r2m8lw9 +2025-06-20T10:46:25.679Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(640988) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (640988, 'user_1080') - RequestID: av9wozro09q +2025-06-20T10:46:30.779Z [ERROR] auth-service - Authentication system error for user user_1076 from 192.168.59.85 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: yka7wh8rqgr +2025-06-20T10:46:30.779Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(712577) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (712577, 'user_1095') - RequestID: adc3xhjvgwb +2025-06-20T10:46:35.879Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.227.174 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: m7b9991swcd +2025-06-20T10:46:35.879Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(822940) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (822940, 'user_1042') - RequestID: oj1beii2l7 +2025-06-20T10:46:40.979Z [ERROR] auth-service - Authentication system error for user user_1084 from 192.168.217.206 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 1b77174hm5k +2025-06-20T10:46:40.979Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 543259 - RequestID: qq8stl4mie +2025-06-20T10:46:46.079Z [ERROR] auth-service - Authentication system error for user user_1046 from 192.168.35.82 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: brcffkpx3xn +2025-06-20T10:46:46.079Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 996277 - RequestID: m6p9bk12c0s +2025-06-20T10:46:51.182Z [ERROR] auth-service - Authentication system error for user user_1001 from 192.168.204.182 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: e41bl5xugmp +2025-06-20T10:46:51.182Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 569548 - RequestID: k62ypewhe1 +2025-06-20T10:46:56.282Z [ERROR] auth-service - Authentication system error for user user_1087 from 192.168.35.166 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: vnec7st8qid +2025-06-20T10:46:56.282Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(235567) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (235567, 'user_1035') - RequestID: az64t4liu25 +2025-06-20T10:47:01.383Z [ERROR] auth-service - Authentication system error for user user_1022 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: rgn4bzt24o +2025-06-20T10:47:01.383Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(925654) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (925654, 'user_1017') - RequestID: 0ht1l6w28ru6 +2025-06-20T10:47:06.483Z [ERROR] auth-service - Authentication system error for user user_1058 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: inhy7yvypbj +2025-06-20T10:47:06.483Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 785128 - RequestID: esihrcb3hgh +2025-06-20T10:47:11.583Z [ERROR] auth-service - Authentication system error for user user_1045 from 192.168.154.185 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 0p1u8dwnih +2025-06-20T10:47:11.583Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(737611) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (737611, 'user_1051') - RequestID: hhxdbtjtyzf +2025-06-20T10:47:16.683Z [ERROR] auth-service - Authentication system error for user user_1027 from 192.168.13.14 - Error: Identity provider certificate expired - RequestID: 7vt22e0kt0m +2025-06-20T10:47:16.683Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(342607) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (342607, 'user_1060') - RequestID: wz531tjqoll +2025-06-20T10:47:21.785Z [ERROR] auth-service - Authentication system error for user user_1081 from 192.168.16.121 - Error: Identity provider certificate expired - RequestID: 46rl5ykk3tw +2025-06-20T10:47:21.785Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(510194) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (510194, 'user_1067') - RequestID: n4beqryi2ic +2025-06-20T10:47:26.887Z [ERROR] auth-service - Authentication system error for user user_1085 from 192.168.45.32 - Error: Identity provider certificate expired - RequestID: 4cfzcwyzsq2 +2025-06-20T10:47:26.887Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(476420) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (476420, 'user_1050') - RequestID: ch6umvr2lc5 +2025-06-20T10:47:31.987Z [ERROR] auth-service - Authentication system error for user user_1039 from 192.168.143.242 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 1f9tmp8s3d3 +2025-06-20T10:47:31.987Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(520268) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (520268, 'user_1007') - RequestID: v3kyeuh9waa +2025-06-20T10:47:37.087Z [ERROR] auth-service - Authentication system error for user user_1067 from 192.168.132.247 - Error: Identity provider certificate expired - RequestID: q2vi3jaqct +2025-06-20T10:47:37.087Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 970897 - RequestID: prshj8p5f3j +2025-06-20T10:47:42.187Z [ERROR] auth-service - Authentication system error for user user_1059 from 192.168.135.187 - Error: Identity provider certificate expired - RequestID: 4g65h65mdgs +2025-06-20T10:47:42.187Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(941383) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (941383, 'user_1055') - RequestID: kwsi2h7pog +2025-06-20T10:47:47.288Z [ERROR] auth-service - Authentication system error for user user_1007 from 192.168.143.242 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: y6v8odr9yc +2025-06-20T10:47:47.289Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(242612) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (242612, 'user_1073') - RequestID: ij8ozt97yzl +2025-06-20T10:47:52.388Z [ERROR] auth-service - Authentication system error for user user_1069 from 192.168.143.242 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 8mz71i36wk +2025-06-20T10:47:52.389Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(362909) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (362909, 'user_1075') - RequestID: b5xc8sh2uo7 +2025-06-20T10:47:57.488Z [ERROR] auth-service - Authentication system error for user user_1088 from 192.168.141.228 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: rljddbiszlc +2025-06-20T10:47:57.488Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 193245 - RequestID: qhkm720wh +2025-06-20T10:48:02.588Z [ERROR] auth-service - Authentication system error for user user_1067 from 192.168.32.125 - Error: Identity provider certificate expired - RequestID: 6tqnjhfi57b +2025-06-20T10:48:02.588Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 616000 - RequestID: xujvmsaq4xm +2025-06-20T10:48:07.688Z [ERROR] auth-service - Authentication system error for user user_1075 from 192.168.209.249 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 1kn8ttejtgg +2025-06-20T10:48:07.689Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(139386) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (139386, 'user_1003') - RequestID: cxpic8o1wmk +2025-06-20T10:48:12.790Z [ERROR] auth-service - Authentication system error for user user_1066 from 192.168.227.174 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: j2bawqioago +2025-06-20T10:48:12.790Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(856324) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (856324, 'user_1090') - RequestID: 5ntsq0kydok +2025-06-20T10:48:17.892Z [ERROR] auth-service - Authentication system error for user user_1067 from 192.168.141.228 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: a89ni7741wl +2025-06-20T10:48:17.892Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 258961 - RequestID: cd452fhr0el +2025-06-20T10:48:22.992Z [ERROR] auth-service - Authentication system error for user user_1094 from 192.168.13.14 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: kylkn6heh1p +2025-06-20T10:48:22.992Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 121868 - RequestID: zw6y41iphtm +2025-06-20T10:48:28.092Z [ERROR] auth-service - Authentication system error for user user_1088 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: eha0h6q7ma +2025-06-20T10:48:28.092Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 368663 - RequestID: dqgruftro28 +2025-06-20T10:48:33.192Z [ERROR] auth-service - Authentication system error for user user_1047 from 192.168.166.68 - Error: Identity provider certificate expired - RequestID: drbgtpp3ua +2025-06-20T10:48:33.192Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 560319 - RequestID: e7xrvybttnt +2025-06-20T10:48:38.292Z [ERROR] auth-service - Authentication system error for user user_1029 from 192.168.239.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: upigf8higi8 +2025-06-20T10:48:38.292Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(380060) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (380060, 'user_1042') - RequestID: iynvarr8wwb +2025-06-20T10:48:43.392Z [ERROR] auth-service - Authentication system error for user user_1002 from 192.168.203.86 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: fd3siel9xm +2025-06-20T10:48:43.392Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 703385 - RequestID: 441llll8tmv +2025-06-20T10:48:48.494Z [ERROR] auth-service - Authentication system error for user user_1033 from 192.168.154.185 - Error: Identity provider certificate expired - RequestID: xnb16t92oai +2025-06-20T10:48:48.494Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(304940) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (304940, 'user_1091') - RequestID: 9r2ov338f14 +2025-06-20T10:48:53.594Z [ERROR] auth-service - Authentication system error for user user_1018 from 192.168.35.82 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: hfbnfeols0o +2025-06-20T10:48:53.594Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(565878) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (565878, 'user_1066') - RequestID: ugotcoftwe +2025-06-20T10:48:58.694Z [ERROR] auth-service - Authentication system error for user user_1077 from 192.168.72.49 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: wm1clv9bero +2025-06-20T10:48:58.694Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(167453) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (167453, 'user_1016') - RequestID: j94lk75uzgs +2025-06-20T10:49:03.794Z [ERROR] auth-service - Authentication system error for user user_1068 from 192.168.238.156 - Error: Identity provider certificate expired - RequestID: e6vusr1hzva +2025-06-20T10:49:03.794Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 471041 - RequestID: 7zzylua62zf +2025-06-20T10:49:08.897Z [ERROR] auth-service - Authentication system error for user user_1021 from 192.168.54.206 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 8170ec4wpic +2025-06-20T10:49:08.897Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 346075 - RequestID: 2h4woygrjg9 +2025-06-20T10:49:13.997Z [ERROR] auth-service - Authentication system error for user user_1094 from 192.168.172.121 - Error: Identity provider certificate expired - RequestID: 7u7yp7wpnp6 +2025-06-20T10:49:13.997Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 758946 - RequestID: y5z77fwkqtf +2025-06-20T10:49:19.099Z [ERROR] auth-service - Authentication system error for user user_1059 from 192.168.217.206 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: t2wuwy606yq +2025-06-20T10:49:19.099Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 593880 - RequestID: 5o493cuyv0k +2025-06-20T10:49:24.200Z [ERROR] auth-service - Authentication system error for user user_1030 from 192.168.54.206 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: sl2z7pox9cs +2025-06-20T10:49:24.200Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(780197) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (780197, 'user_1029') - RequestID: fpmnw3ye1ve +2025-06-20T10:49:29.299Z [ERROR] auth-service - Authentication system error for user user_1039 from 192.168.43.230 - Error: Identity provider certificate expired - RequestID: wb39z4c3dkh +2025-06-20T10:49:29.299Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 461899 - RequestID: o17r8qeihg +2025-06-20T10:49:34.399Z [ERROR] auth-service - Authentication system error for user user_1011 from 192.168.138.229 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: bdzorgpckaa +2025-06-20T10:49:34.399Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(203364) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (203364, 'user_1081') - RequestID: ymyvaf14z6k +2025-06-20T10:49:39.499Z [ERROR] auth-service - Authentication system error for user user_1038 from 192.168.113.220 - Error: Identity provider certificate expired - RequestID: 83m2k94uz5y +2025-06-20T10:49:39.499Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(930525) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (930525, 'user_1092') - RequestID: 6l52apklkgj +2025-06-20T10:49:44.599Z [ERROR] auth-service - Authentication system error for user user_1040 from 192.168.240.4 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: c3h44izhnjf +2025-06-20T10:49:44.599Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 396873 - RequestID: thia8hks92s +2025-06-20T10:49:49.704Z [ERROR] auth-service - Authentication system error for user user_1081 from 192.168.47.107 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 9hys6x3mm29 +2025-06-20T10:49:49.705Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 344053 - RequestID: dr85tuj5ti4 +2025-06-20T10:49:54.805Z [ERROR] auth-service - Authentication system error for user user_1068 from 192.168.141.228 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 2yzd4gxov8b +2025-06-20T10:49:54.805Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(613552) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (613552, 'user_1051') - RequestID: guwpzneefa +2025-06-20T10:49:59.905Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.86.164 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 5ik6rvqhomg +2025-06-20T10:49:59.905Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(208860) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (208860, 'user_1080') - RequestID: sfnbf6eyvnn +2025-06-20T10:50:05.005Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.19.191 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 91hvvbzgrd +2025-06-20T10:50:05.005Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(437767) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (437767, 'user_1032') - RequestID: l2bqj3xvvpr +2025-06-20T10:50:10.105Z [ERROR] auth-service - Authentication system error for user user_1066 from 192.168.32.125 - Error: Identity provider certificate expired - RequestID: bo8736kn0ve +2025-06-20T10:50:10.105Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 543862 - RequestID: 3rgax1lnqig +2025-06-20T10:50:15.206Z [ERROR] auth-service - Authentication system error for user user_1075 from 192.168.47.107 - Error: Identity provider certificate expired - RequestID: jmku1frp45c +2025-06-20T10:50:15.206Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(421583) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (421583, 'user_1084') - RequestID: hkry8p6omnm +2025-06-20T10:50:20.307Z [ERROR] auth-service - Authentication system error for user user_1001 from 192.168.32.125 - Error: Identity provider certificate expired - RequestID: fwukpieelov +2025-06-20T10:50:20.308Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 659845 - RequestID: cuuwol85lrp +2025-06-20T10:50:25.407Z [ERROR] auth-service - Authentication system error for user user_1019 from 192.168.98.8 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: j3c7zej64mr +2025-06-20T10:50:25.407Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(325160) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (325160, 'user_1067') - RequestID: 52lzy77ooz8 +2025-06-20T10:50:30.507Z [ERROR] auth-service - Authentication system error for user user_1079 from 192.168.238.156 - Error: Identity provider certificate expired - RequestID: 44g7xj6royt +2025-06-20T10:50:30.507Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(229367) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (229367, 'user_1024') - RequestID: hb23klp3o1 +2025-06-20T10:50:35.607Z [ERROR] auth-service - Authentication system error for user user_1091 from 192.168.203.86 - Error: Identity provider certificate expired - RequestID: gwma79gu8cv +2025-06-20T10:50:35.607Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 611830 - RequestID: f1wd7dndaxd +2025-06-20T10:50:40.707Z [ERROR] auth-service - Authentication system error for user user_1074 from 192.168.13.14 - Error: Identity provider certificate expired - RequestID: zrp2acqx6p +2025-06-20T10:50:40.708Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(1841) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (1841, 'user_1008') - RequestID: ummkvydj2ea +2025-06-20T10:50:45.807Z [ERROR] auth-service - Authentication system error for user user_1085 from 192.168.16.121 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 0u1am9qh1ov +2025-06-20T10:50:45.807Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 320538 - RequestID: y2meg0712ej +2025-06-20T10:50:50.909Z [ERROR] auth-service - Authentication system error for user user_1055 from 192.168.210.103 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: hu2cz7lhffl +2025-06-20T10:50:50.909Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 423305 - RequestID: p30tq0adchd +2025-06-20T10:50:56.009Z [ERROR] auth-service - Authentication system error for user user_1016 from 192.168.126.119 - Error: Identity provider certificate expired - RequestID: g46u6iyo78t +2025-06-20T10:50:56.009Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(558952) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (558952, 'user_1000') - RequestID: 7b5nbbxvbuo +2025-06-20T10:51:01.109Z [ERROR] auth-service - Authentication system error for user user_1055 from 192.168.59.85 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: x5wnb6sgdj +2025-06-20T10:51:01.109Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 407496 - RequestID: o1c9hf9vx2 +2025-06-20T10:51:06.209Z [ERROR] auth-service - Authentication system error for user user_1047 from 192.168.126.119 - Error: Identity provider certificate expired - RequestID: 2jbvzab43px +2025-06-20T10:51:06.209Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(325300) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (325300, 'user_1073') - RequestID: 6849g6vd9jp +2025-06-20T10:51:11.309Z [ERROR] auth-service - Authentication system error for user user_1073 from 192.168.229.15 - Error: Identity provider certificate expired - RequestID: ldis7fe36k +2025-06-20T10:51:11.309Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(110876) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (110876, 'user_1007') - RequestID: d4j3pdo8qm +2025-06-20T10:51:16.409Z [ERROR] auth-service - Authentication system error for user user_1027 from 192.168.59.85 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 6h5m03mmbe +2025-06-20T10:51:16.409Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(602694) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (602694, 'user_1073') - RequestID: w1xa1pc8bqf +2025-06-20T10:51:21.514Z [ERROR] auth-service - Authentication system error for user user_1011 from 192.168.113.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: okcpvzk16us +2025-06-20T10:51:21.514Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 468062 - RequestID: kagb6m4sfyd +2025-06-20T10:51:26.614Z [ERROR] auth-service - Authentication system error for user user_1030 from 192.168.143.242 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: x6y48tbzx9 +2025-06-20T10:51:26.614Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 658536 - RequestID: txxwqlv6gu +2025-06-20T10:51:31.716Z [ERROR] auth-service - Authentication system error for user user_1011 from 192.168.197.194 - Error: Identity provider certificate expired - RequestID: cj2p1eh6bl8 +2025-06-20T10:51:31.716Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(757459) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (757459, 'user_1012') - RequestID: j6nj0dz0p0r +2025-06-20T10:51:36.816Z [ERROR] auth-service - Authentication system error for user user_1056 from 192.168.119.62 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: jyh8cpac22b +2025-06-20T10:51:36.816Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(80291) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (80291, 'user_1014') - RequestID: n7wobs4w4wf +2025-06-20T10:51:41.916Z [ERROR] auth-service - Authentication system error for user user_1074 from 192.168.238.156 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 3ys486dmsw5 +2025-06-20T10:51:41.916Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 594694 - RequestID: kclwq014y9h +2025-06-20T10:51:47.016Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.238.156 - Error: Identity provider certificate expired - RequestID: 5vtmjkfuubn +2025-06-20T10:51:47.016Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(720331) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (720331, 'user_1066') - RequestID: s8yqphczdrl +2025-06-20T10:51:52.119Z [ERROR] auth-service - Authentication system error for user user_1090 from 192.168.249.127 - Error: Identity provider certificate expired - RequestID: ki28hoc6soi +2025-06-20T10:51:52.119Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 262529 - RequestID: vjq2d1ep5g +2025-06-20T10:51:57.219Z [ERROR] auth-service - Authentication system error for user user_1007 from 192.168.4.60 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 56pupf34d4h +2025-06-20T10:51:57.219Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 666321 - RequestID: wxhot5lowa +2025-06-20T10:52:02.319Z [ERROR] auth-service - Authentication system error for user user_1092 from 192.168.203.86 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 9qmy4uwqjgq +2025-06-20T10:52:02.319Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(261238) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (261238, 'user_1033') - RequestID: v5yq9ka4x0j +2025-06-20T10:52:07.419Z [ERROR] auth-service - Authentication system error for user user_1002 from 192.168.192.148 - Error: Identity provider certificate expired - RequestID: m5eosdwnf4 +2025-06-20T10:52:07.419Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 891255 - RequestID: y21ajn9q05r +2025-06-20T10:52:12.518Z [ERROR] auth-service - Authentication system error for user user_1051 from 192.168.143.242 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: yuldg6gmdvp +2025-06-20T10:52:12.518Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 393377 - RequestID: gz1etil4izd +2025-06-20T10:52:17.621Z [ERROR] auth-service - Authentication system error for user user_1074 from 192.168.13.14 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ffi2gzv9e6p +2025-06-20T10:52:17.621Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 758221 - RequestID: 6k4j92qprqj +2025-06-20T10:52:22.721Z [ERROR] auth-service - Authentication system error for user user_1096 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: uxbpt8byzdh +2025-06-20T10:52:22.721Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(853559) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (853559, 'user_1081') - RequestID: qyxhy4y0nx +2025-06-20T10:52:27.821Z [ERROR] auth-service - Authentication system error for user user_1087 from 192.168.45.32 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: omg61f2kbo8 +2025-06-20T10:52:27.821Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 237009 - RequestID: svsoy9v51en +2025-06-20T10:52:32.921Z [ERROR] auth-service - Authentication system error for user user_1005 from 192.168.237.140 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: qh81hcwf4f +2025-06-20T10:52:32.921Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 553197 - RequestID: uxpx9cwg0hh +2025-06-20T10:52:38.021Z [ERROR] auth-service - Authentication system error for user user_1073 from 192.168.34.236 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: xwiegqmtkn +2025-06-20T10:52:38.021Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(104771) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (104771, 'user_1087') - RequestID: qjoy2bejmyf +2025-06-20T10:52:43.121Z [ERROR] auth-service - Authentication system error for user user_1053 from 192.168.217.231 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: qea9a7k3u9e +2025-06-20T10:52:43.121Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(743029) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (743029, 'user_1082') - RequestID: 9u918fmrhyu +2025-06-20T10:52:48.221Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.238.156 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 3y0apydl73k +2025-06-20T10:52:48.221Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(998113) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (998113, 'user_1054') - RequestID: suvomu09n6m +2025-06-20T10:52:53.321Z [ERROR] auth-service - Authentication system error for user user_1031 from 192.168.86.164 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: j59x232luk +2025-06-20T10:52:53.321Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(122885) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (122885, 'user_1080') - RequestID: 1b5vkgnh5ro +2025-06-20T10:52:58.422Z [ERROR] auth-service - Authentication system error for user user_1036 from 192.168.217.231 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: tuiksaabd4 +2025-06-20T10:52:58.422Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(710224) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (710224, 'user_1034') - RequestID: ymwm0dy2mx +2025-06-20T10:53:03.522Z [ERROR] auth-service - Authentication system error for user user_1060 from 192.168.98.8 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: hhzv618u4hp +2025-06-20T10:53:03.522Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(854484) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (854484, 'user_1020') - RequestID: j96okaog5m +2025-06-20T10:53:08.622Z [ERROR] auth-service - Authentication system error for user user_1095 from 192.168.217.206 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: md61ap3t7fd +2025-06-20T10:53:08.622Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 680646 - RequestID: sxvgtjlfy1j +2025-06-20T10:53:13.723Z [ERROR] auth-service - Authentication system error for user user_1070 from 192.168.138.229 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 93wixmqh7o +2025-06-20T10:53:13.723Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(846772) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (846772, 'user_1045') - RequestID: 1xnvw08y9xl +2025-06-20T10:53:18.825Z [ERROR] auth-service - Authentication system error for user user_1095 from 192.168.126.119 - Error: Identity provider certificate expired - RequestID: 3haty6712mu +2025-06-20T10:53:18.825Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(403612) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (403612, 'user_1040') - RequestID: l9n2nvggwk +2025-06-20T10:53:23.925Z [ERROR] auth-service - Authentication system error for user user_1054 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: fyupbxg8k27 +2025-06-20T10:53:23.925Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 222075 - RequestID: jbbw54qyeck +2025-06-20T10:53:29.024Z [ERROR] auth-service - Authentication system error for user user_1078 from 192.168.132.247 - Error: Identity provider certificate expired - RequestID: 3zn7qmxqz4o +2025-06-20T10:53:29.024Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(43049) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (43049, 'user_1076') - RequestID: ks9eqb1hu3 +2025-06-20T10:53:34.124Z [ERROR] auth-service - Authentication system error for user user_1059 from 192.168.59.85 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ncygku5s3tp +2025-06-20T10:53:34.124Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(111671) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (111671, 'user_1003') - RequestID: ozbkjavv2kk +2025-06-20T10:53:39.224Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.203.86 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: gulwsktkspv +2025-06-20T10:53:39.224Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(715078) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (715078, 'user_1056') - RequestID: fradt4q3xqt +2025-06-20T10:53:44.324Z [ERROR] auth-service - Authentication system error for user user_1076 from 192.168.238.156 - Error: Identity provider certificate expired - RequestID: 2gx6ert8kpx +2025-06-20T10:53:44.324Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(202198) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (202198, 'user_1079') - RequestID: 635dlcaq8uj +2025-06-20T10:53:49.429Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.172.121 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: k2nsh9yy1n +2025-06-20T10:53:49.429Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 713555 - RequestID: 02s2u14czld9 +2025-06-20T10:53:54.531Z [ERROR] auth-service - Authentication system error for user user_1044 from 192.168.113.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: xlkduqv988 +2025-06-20T10:53:54.531Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 85145 - RequestID: 4sv4dzz7u9w +2025-06-20T10:53:59.631Z [ERROR] auth-service - Authentication system error for user user_1093 from 192.168.15.79 - Error: Identity provider certificate expired - RequestID: wjjh7ilyiy +2025-06-20T10:53:59.631Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(382474) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (382474, 'user_1036') - RequestID: 3x47l1omays +2025-06-20T10:54:04.734Z [ERROR] auth-service - Authentication system error for user user_1004 from 192.168.98.8 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: z61ioit1mdr +2025-06-20T10:54:04.734Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 510274 - RequestID: pe9ulmq8ps +2025-06-20T10:54:09.834Z [ERROR] auth-service - Authentication system error for user user_1023 from 192.168.35.166 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: zgr5lyojkoi +2025-06-20T10:54:09.834Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(272299) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (272299, 'user_1009') - RequestID: ojhd8y33zje +2025-06-20T10:54:14.934Z [ERROR] auth-service - Authentication system error for user user_1004 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: paizfxah1tc +2025-06-20T10:54:14.934Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 537312 - RequestID: hq5ssug7xo8 +2025-06-20T10:54:20.036Z [ERROR] auth-service - Authentication system error for user user_1003 from 192.168.229.15 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 4qycjx39zj5 +2025-06-20T10:54:20.036Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 905371 - RequestID: 16lw5z6zi7u +2025-06-20T10:54:25.136Z [ERROR] auth-service - Authentication system error for user user_1094 from 192.168.162.209 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 0d8ar5kcq49s +2025-06-20T10:54:25.136Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 56202 - RequestID: 4ih1wsr2qaj +2025-06-20T10:54:30.237Z [ERROR] auth-service - Authentication system error for user user_1058 from 192.168.159.31 - Error: Identity provider certificate expired - RequestID: k2qpji07hyi +2025-06-20T10:54:30.237Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(301009) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (301009, 'user_1080') - RequestID: ncbbspsl4h +2025-06-20T10:54:35.337Z [ERROR] auth-service - Authentication system error for user user_1034 from 192.168.227.174 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: qu382k4chmj +2025-06-20T10:54:35.337Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 965954 - RequestID: 71aru3hoi4j +2025-06-20T10:54:40.438Z [ERROR] auth-service - Authentication system error for user user_1036 from 192.168.217.231 - Error: Identity provider certificate expired - RequestID: ppx8us6htl +2025-06-20T10:54:40.438Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 973019 - RequestID: za6svipfkus +2025-06-20T10:54:45.538Z [ERROR] auth-service - Authentication system error for user user_1034 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: j7w54bdoesq +2025-06-20T10:54:45.538Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(162636) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (162636, 'user_1023') - RequestID: 23h9deab45l +2025-06-20T10:54:50.646Z [ERROR] auth-service - Authentication system error for user user_1049 from 192.168.45.32 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: pdbhnfft8t +2025-06-20T10:54:50.646Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(463016) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (463016, 'user_1025') - RequestID: x9j1vwrbg0n +2025-06-20T10:54:55.746Z [ERROR] auth-service - Authentication system error for user user_1043 from 192.168.86.164 - Error: Identity provider certificate expired - RequestID: 08kofwccg416 +2025-06-20T10:54:55.746Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 832052 - RequestID: lnshqgu8u0p +2025-06-20T10:55:00.849Z [ERROR] auth-service - Authentication system error for user user_1074 from 192.168.209.249 - Error: Identity provider certificate expired - RequestID: t8zqkt8tfqq +2025-06-20T10:55:00.849Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(308126) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (308126, 'user_1009') - RequestID: o58snz4lyen +2025-06-20T10:55:05.949Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.203.86 - Error: Identity provider certificate expired - RequestID: ub8oa9fu3vs +2025-06-20T10:55:05.949Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 543976 - RequestID: lstkk66j3j +2025-06-20T10:55:11.049Z [ERROR] auth-service - Authentication system error for user user_1097 from 192.168.35.82 - Error: Identity provider certificate expired - RequestID: r7plsr9ib6o +2025-06-20T10:55:11.049Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 641026 - RequestID: vipgd6ef9g +2025-06-20T10:55:16.148Z [ERROR] auth-service - Authentication system error for user user_1012 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: jwlyezkjhef +2025-06-20T10:55:16.148Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 927461 - RequestID: lzobm67o4ln +2025-06-20T10:55:21.250Z [ERROR] auth-service - Authentication system error for user user_1049 from 192.168.217.231 - Error: Identity provider certificate expired - RequestID: kr97b9zvvyp +2025-06-20T10:55:21.250Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 163853 - RequestID: pzkv14jvdvk +2025-06-20T10:55:26.350Z [ERROR] auth-service - Authentication system error for user user_1014 from 192.168.229.15 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: nnzb5u7g0l +2025-06-20T10:55:26.350Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(454777) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (454777, 'user_1007') - RequestID: vq60vg8u4l +2025-06-20T10:55:31.450Z [ERROR] auth-service - Authentication system error for user user_1088 from 192.168.209.249 - Error: Identity provider certificate expired - RequestID: 6xblpz272al +2025-06-20T10:55:31.450Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 622014 - RequestID: q778xm4oe1i +2025-06-20T10:55:36.551Z [ERROR] auth-service - Authentication system error for user user_1080 from 192.168.15.79 - Error: Identity provider certificate expired - RequestID: 0wn7dsy71t0m +2025-06-20T10:55:36.552Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(892557) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (892557, 'user_1046') - RequestID: 1qfog7swt1s +2025-06-20T10:55:41.652Z [ERROR] auth-service - Authentication system error for user user_1046 from 192.168.47.107 - Error: Identity provider certificate expired - RequestID: eki5uhcldkm +2025-06-20T10:55:41.653Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(180058) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (180058, 'user_1081') - RequestID: 2zw1x9msblp +2025-06-20T10:55:46.753Z [ERROR] auth-service - Authentication system error for user user_1073 from 192.168.45.32 - Error: Identity provider certificate expired - RequestID: sa1uxhjwu1e +2025-06-20T10:55:46.753Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 174413 - RequestID: jaatgew3i7 +2025-06-20T10:55:51.854Z [ERROR] auth-service - Authentication system error for user user_1083 from 192.168.240.4 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: hape4h8w1e +2025-06-20T10:55:51.854Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 800856 - RequestID: 4w1s07le894 +2025-06-20T10:55:56.954Z [ERROR] auth-service - Authentication system error for user user_1084 from 192.168.43.230 - Error: Identity provider certificate expired - RequestID: 7ztq09ca55x +2025-06-20T10:55:56.954Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(226703) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (226703, 'user_1077') - RequestID: rfln01e5zid +2025-06-20T10:56:02.054Z [ERROR] auth-service - Authentication system error for user user_1064 from 192.168.86.164 - Error: Identity provider certificate expired - RequestID: dggetssrogi +2025-06-20T10:56:02.054Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 631848 - RequestID: hj54bm1lovu +2025-06-20T10:56:07.154Z [ERROR] auth-service - Authentication system error for user user_1079 from 192.168.59.85 - Error: Identity provider certificate expired - RequestID: 3f5b5osi15v +2025-06-20T10:56:07.154Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 865062 - RequestID: x0fs789hsr +2025-06-20T10:56:12.254Z [ERROR] auth-service - Authentication system error for user user_1015 from 192.168.126.119 - Error: Identity provider certificate expired - RequestID: 7wimdb3endu +2025-06-20T10:56:12.254Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 190793 - RequestID: b6qkbv8wlsn +2025-06-20T10:56:17.356Z [ERROR] auth-service - Authentication system error for user user_1053 from 192.168.237.140 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ww1iiar9rc +2025-06-20T10:56:17.356Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(305610) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (305610, 'user_1083') - RequestID: oaqvlh23hed +2025-06-20T10:56:22.457Z [ERROR] auth-service - Authentication system error for user user_1065 from 192.168.154.185 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: h19ipuqcdke +2025-06-20T10:56:22.457Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(264780) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (264780, 'user_1079') - RequestID: vau2r0iw9p +2025-06-20T10:56:27.557Z [ERROR] auth-service - Authentication system error for user user_1062 from 192.168.34.236 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: zvhrtgxjtlo +2025-06-20T10:56:27.557Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 417225 - RequestID: nf8n6a2ec3l +2025-06-20T10:56:32.658Z [ERROR] auth-service - Authentication system error for user user_1055 from 192.168.59.85 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: tq5atitsf4 +2025-06-20T10:56:32.658Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(605938) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (605938, 'user_1060') - RequestID: 1j4n2zdohve +2025-06-20T10:56:37.757Z [ERROR] auth-service - Authentication system error for user user_1053 from 192.168.43.230 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 2bahp9rrhd8 +2025-06-20T10:56:37.757Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 808732 - RequestID: 54hg8qbrh8w +2025-06-20T10:56:42.859Z [ERROR] auth-service - Authentication system error for user user_1087 from 192.168.119.62 - Error: Identity provider certificate expired - RequestID: 9e3ltq2nitr +2025-06-20T10:56:42.859Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(86098) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (86098, 'user_1099') - RequestID: ayk9ll4zqq5 +2025-06-20T10:56:47.961Z [ERROR] auth-service - Authentication system error for user user_1045 from 192.168.72.49 - Error: Identity provider certificate expired - RequestID: snwe117668 +2025-06-20T10:56:47.961Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 134380 - RequestID: cxb8vn2gd5r +2025-06-20T10:56:53.065Z [ERROR] auth-service - Authentication system error for user user_1002 from 192.168.237.140 - Error: Identity provider certificate expired - RequestID: smri0mz1j4 +2025-06-20T10:56:53.065Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 492554 - RequestID: 0erm6cdf086s +2025-06-20T10:56:58.167Z [ERROR] auth-service - Authentication system error for user user_1089 from 192.168.166.68 - Error: Identity provider certificate expired - RequestID: pm33g94s9br +2025-06-20T10:56:58.167Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(129023) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (129023, 'user_1002') - RequestID: aae6isv1qsa +2025-06-20T10:57:03.267Z [ERROR] auth-service - Authentication system error for user user_1065 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: wal6sh4xzh +2025-06-20T10:57:03.267Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(520026) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (520026, 'user_1060') - RequestID: 8txura5ivg3 +2025-06-20T10:57:08.369Z [ERROR] auth-service - Authentication system error for user user_1055 from 192.168.166.68 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: s28qxc6uvk +2025-06-20T10:57:08.369Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(103672) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (103672, 'user_1046') - RequestID: dy2l3mz2yrh +2025-06-20T10:57:13.468Z [ERROR] auth-service - Authentication system error for user user_1014 from 192.168.204.182 - Error: Identity provider certificate expired - RequestID: zm2yrapvlpd +2025-06-20T10:57:13.468Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(911947) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (911947, 'user_1030') - RequestID: hpcx6nnugab +2025-06-20T10:57:18.570Z [ERROR] auth-service - Authentication system error for user user_1083 from 192.168.108.24 - Error: Identity provider certificate expired - RequestID: xez0dxai06 +2025-06-20T10:57:18.570Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 984036 - RequestID: 6roy0lo8u12 +2025-06-20T10:57:23.669Z [ERROR] auth-service - Authentication system error for user user_1007 from 192.168.15.79 - Error: Identity provider certificate expired - RequestID: foui2w748ap +2025-06-20T10:57:23.669Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(446550) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (446550, 'user_1008') - RequestID: ha2lmaa13q +2025-06-20T10:57:28.769Z [ERROR] auth-service - Authentication system error for user user_1041 from 192.168.13.14 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: eu5gxlptro9 +2025-06-20T10:57:28.769Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(421413) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (421413, 'user_1087') - RequestID: tkddmfqpk1 +2025-06-20T10:57:33.869Z [ERROR] auth-service - Authentication system error for user user_1035 from 192.168.138.229 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: saiajxwpdx +2025-06-20T10:57:33.869Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(960897) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (960897, 'user_1002') - RequestID: ul8gg229gug +2025-06-20T10:57:38.971Z [ERROR] auth-service - Authentication system error for user user_1012 from 192.168.4.60 - Error: Identity provider certificate expired - RequestID: 1q5lq923xtl +2025-06-20T10:57:38.971Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 88437 - RequestID: tka2dll9b48 +2025-06-20T10:57:44.070Z [ERROR] auth-service - Authentication system error for user user_1072 from 192.168.192.148 - Error: Identity provider certificate expired - RequestID: iua77ba972l +2025-06-20T10:57:44.070Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(719915) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (719915, 'user_1085') - RequestID: 36y1yx7wb2k +2025-06-20T10:57:49.171Z [ERROR] auth-service - Authentication system error for user user_1013 from 192.168.45.32 - Error: Identity provider certificate expired - RequestID: jj515xom9zk +2025-06-20T10:57:49.171Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 876065 - RequestID: 04b3jus1y96p +2025-06-20T10:57:54.271Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.16.121 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: rtvw8nz07cn +2025-06-20T10:57:54.271Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(509383) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (509383, 'user_1002') - RequestID: m7iqy38ebf +2025-06-20T10:57:59.369Z [ERROR] auth-service - Authentication system error for user user_1091 from 192.168.32.125 - Error: Identity provider certificate expired - RequestID: 66l1zfl15j4 +2025-06-20T10:57:59.369Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 929992 - RequestID: 1lv16agm59u +2025-06-20T10:58:04.469Z [ERROR] auth-service - Authentication system error for user user_1081 from 192.168.141.228 - Error: Identity provider certificate expired - RequestID: 6kvx42j6aky +2025-06-20T10:58:04.469Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 880515 - RequestID: ksnaymj7od +2025-06-20T10:58:09.569Z [ERROR] auth-service - Authentication system error for user user_1027 from 192.168.47.107 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 5hiojl35thj +2025-06-20T10:58:09.569Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(443322) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (443322, 'user_1094') - RequestID: 05z93n8dnkgd +2025-06-20T10:58:14.668Z [ERROR] auth-service - Authentication system error for user user_1067 from 192.168.98.8 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: prj4clh0k +2025-06-20T10:58:14.668Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(318895) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (318895, 'user_1008') - RequestID: 6n9lt1isdlv +2025-06-20T10:58:19.770Z [ERROR] auth-service - Authentication system error for user user_1052 from 192.168.237.140 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 6uu8egw1m6v +2025-06-20T10:58:19.770Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(868964) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (868964, 'user_1054') - RequestID: jhlsxgf83e +2025-06-20T10:58:24.870Z [ERROR] auth-service - Authentication system error for user user_1018 from 192.168.4.60 - Error: Identity provider certificate expired - RequestID: ip6ot3l36fg +2025-06-20T10:58:24.870Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 194913 - RequestID: p47a610yjz +2025-06-20T10:58:29.970Z [ERROR] auth-service - Authentication system error for user user_1018 from 192.168.237.140 - Error: Identity provider certificate expired - RequestID: ijc2vstnx1l +2025-06-20T10:58:29.970Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(790143) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (790143, 'user_1091') - RequestID: gz7mdopt7yf +2025-06-20T10:58:35.070Z [ERROR] auth-service - Authentication system error for user user_1078 from 192.168.162.209 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: c2v2ucly6zs +2025-06-20T10:58:35.070Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 625065 - RequestID: rf2ljsgj7h +2025-06-20T10:58:40.170Z [ERROR] auth-service - Authentication system error for user user_1032 from 192.168.239.220 - Error: Identity provider certificate expired - RequestID: piwun3d7pjm +2025-06-20T10:58:40.170Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(474176) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (474176, 'user_1029') - RequestID: q8y6rm7xts +2025-06-20T10:58:45.270Z [ERROR] auth-service - Authentication system error for user user_1013 from 192.168.19.191 - Error: Identity provider certificate expired - RequestID: 4tk07hs4mpe +2025-06-20T10:58:45.270Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 733477 - RequestID: axagd8uqb24 +2025-06-20T10:58:50.372Z [ERROR] auth-service - Authentication system error for user user_1019 from 192.168.135.187 - Error: Identity provider certificate expired - RequestID: t0tlbnif1wg +2025-06-20T10:58:50.372Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 898652 - RequestID: cwcqp40j186 +2025-06-20T10:58:55.472Z [ERROR] auth-service - Authentication system error for user user_1008 from 192.168.229.15 - Error: Identity provider certificate expired - RequestID: ymdb3r4clc +2025-06-20T10:58:55.472Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(889078) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (889078, 'user_1066') - RequestID: jebad50tvjg +2025-06-20T10:59:00.572Z [ERROR] auth-service - Authentication system error for user user_1036 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: y58y93dhnor +2025-06-20T10:59:00.572Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(456235) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (456235, 'user_1009') - RequestID: wlits2kbgel +2025-06-20T10:59:05.672Z [ERROR] auth-service - Authentication system error for user user_1057 from 192.168.113.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: vs0f8yjtryn +2025-06-20T10:59:05.672Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(6222) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (6222, 'user_1092') - RequestID: 1pqutngcf55 +2025-06-20T10:59:10.772Z [ERROR] auth-service - Authentication system error for user user_1090 from 192.168.172.121 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: kw8ayowwl38 +2025-06-20T10:59:10.772Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 507046 - RequestID: vsl83fqjza +2025-06-20T10:59:15.874Z [ERROR] auth-service - Authentication system error for user user_1097 from 192.168.141.228 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: bjzm3zhrmvm +2025-06-20T10:59:15.874Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 654171 - RequestID: r11j2xzo5f9 +2025-06-20T10:59:20.976Z [ERROR] auth-service - Authentication system error for user user_1036 from 192.168.15.79 - Error: Identity provider certificate expired - RequestID: 9vc63fg2mme +2025-06-20T10:59:20.976Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 661138 - RequestID: tnn9np6gz3l +2025-06-20T10:59:26.076Z [ERROR] auth-service - Authentication system error for user user_1056 from 192.168.249.127 - Error: Identity provider certificate expired - RequestID: c4fmaxzwzkq +2025-06-20T10:59:26.076Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 320774 - RequestID: xqr5zn2epc +2025-06-20T10:59:31.176Z [ERROR] auth-service - Authentication system error for user user_1032 from 192.168.209.249 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 5ttzzb1qsqv +2025-06-20T10:59:31.176Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(161085) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (161085, 'user_1071') - RequestID: 4dckt5ilyae +2025-06-20T10:59:36.276Z [ERROR] auth-service - Authentication system error for user user_1098 from 192.168.229.15 - Error: Identity provider certificate expired - RequestID: wrr59vh57if +2025-06-20T10:59:36.276Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(885541) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (885541, 'user_1097') - RequestID: wy4rvqrxkb +2025-06-20T10:59:41.376Z [ERROR] auth-service - Authentication system error for user user_1071 from 192.168.108.24 - Error: Identity provider certificate expired - RequestID: 3w8l1vj4p4e +2025-06-20T10:59:41.376Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(256205) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (256205, 'user_1046') - RequestID: zwfp3g2g32 +2025-06-20T10:59:46.668Z [ERROR] auth-service - Authentication system error for user user_1043 from 192.168.4.60 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: slkka2a6gh9 +2025-06-20T10:59:46.668Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 781669 - RequestID: q0m6n7t1too +2025-06-20T10:59:52.457Z [ERROR] auth-service - Authentication system error for user user_1062 from 192.168.67.77 - Error: Identity provider certificate expired - RequestID: vlc1iihzibm +2025-06-20T10:59:52.458Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 135473 - RequestID: qgbfm9nxub +2025-06-20T10:59:57.790Z [ERROR] auth-service - Authentication system error for user user_1080 from 192.168.229.15 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: mt8ygjg5o3 +2025-06-20T10:59:57.790Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 688946 - RequestID: jyq243pz4z +2025-06-20T11:00:03.286Z [ERROR] auth-service - Authentication system error for user user_1046 from 192.168.35.82 - Error: Identity provider certificate expired - RequestID: ayh67f0106b +2025-06-20T11:00:03.286Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 357153 - RequestID: u2frrapvdha +2025-06-20T11:00:08.557Z [ERROR] auth-service - Authentication system error for user user_1071 from 192.168.249.127 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: vmqlzi977o +2025-06-20T11:00:08.557Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(705681) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (705681, 'user_1017') - RequestID: rpwa4pa58kk +2025-06-20T11:00:13.687Z [ERROR] auth-service - Authentication system error for user user_1071 from 192.168.137.27 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 32wtsicrsrh +2025-06-20T11:00:13.687Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 13422 - RequestID: 6i5ucrevlmh +2025-06-20T11:00:18.797Z [ERROR] auth-service - Authentication system error for user user_1035 from 192.168.159.31 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: vfvbxk7o05n +2025-06-20T11:00:18.798Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 666353 - RequestID: 6ctzkfsohxi +2025-06-20T11:00:23.897Z [ERROR] auth-service - Authentication system error for user user_1049 from 192.168.172.121 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 0iko5ji4fzul +2025-06-20T11:00:23.897Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 443592 - RequestID: c128ywzi2xf +2025-06-20T11:00:28.996Z [ERROR] auth-service - Authentication system error for user user_1094 from 192.168.59.85 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 4fuas64wrg3 +2025-06-20T11:00:28.997Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 778269 - RequestID: ckk8li238c +2025-06-20T11:00:34.096Z [ERROR] auth-service - Authentication system error for user user_1074 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: dunqrxxgkc +2025-06-20T11:00:34.097Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 801423 - RequestID: gp9i3s1obz +2025-06-20T11:00:39.197Z [ERROR] auth-service - Authentication system error for user user_1027 from 192.168.67.77 - Error: Identity provider certificate expired - RequestID: fuz7dp2zc1 +2025-06-20T11:00:39.197Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 275837 - RequestID: 92iyd1w9lfw +2025-06-20T11:00:44.296Z [ERROR] auth-service - Authentication system error for user user_1015 from 192.168.138.229 - Error: Identity provider certificate expired - RequestID: 1homdnejo58 +2025-06-20T11:00:44.297Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(988612) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (988612, 'user_1001') - RequestID: q7aybkyqzbn +2025-06-20T11:00:49.398Z [ERROR] auth-service - Authentication system error for user user_1051 from 192.168.54.206 - Error: Identity provider certificate expired - RequestID: hkmd5ly31ww +2025-06-20T11:00:49.398Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 732299 - RequestID: rc5w70gd48c +2025-06-20T11:00:54.499Z [ERROR] auth-service - Authentication system error for user user_1066 from 192.168.4.60 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 7towm6hrjik +2025-06-20T11:00:54.499Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 279915 - RequestID: h47ncqp4un +2025-06-20T11:00:59.599Z [ERROR] auth-service - Authentication system error for user user_1064 from 192.168.15.79 - Error: Identity provider certificate expired - RequestID: ssyjbdapnso +2025-06-20T11:00:59.599Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(755860) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (755860, 'user_1087') - RequestID: gztia1x3n68 +2025-06-20T11:01:04.702Z [ERROR] auth-service - Authentication system error for user user_1069 from 192.168.203.86 - Error: Identity provider certificate expired - RequestID: lbj3y6tb9p +2025-06-20T11:01:04.702Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(956470) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (956470, 'user_1048') - RequestID: 9yshhm04pge +2025-06-20T11:01:09.802Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.115.66 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 0jyn3vmueuwj +2025-06-20T11:01:09.802Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(371310) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (371310, 'user_1086') - RequestID: l5vegljmond +2025-06-20T11:01:14.902Z [ERROR] auth-service - Authentication system error for user user_1045 from 192.168.135.187 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 605njz4nygs +2025-06-20T11:01:14.902Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(203466) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (203466, 'user_1036') - RequestID: 4ktj4rje52l +2025-06-20T11:01:20.004Z [ERROR] auth-service - Authentication system error for user user_1038 from 192.168.4.60 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 7h59qbqnu9s +2025-06-20T11:01:20.004Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(806303) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (806303, 'user_1043') - RequestID: p50agreebnm +2025-06-20T11:01:25.104Z [ERROR] auth-service - Authentication system error for user user_1061 from 192.168.4.60 - Error: Identity provider certificate expired - RequestID: q0qhzoqndnq +2025-06-20T11:01:25.104Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 263253 - RequestID: uph50055g8m +2025-06-20T11:01:30.512Z [ERROR] auth-service - Authentication system error for user user_1072 from 192.168.162.209 - Error: Identity provider certificate expired - RequestID: wmgoyorrbld +2025-06-20T11:01:30.512Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(630373) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (630373, 'user_1037') - RequestID: b3wfirl2t8 +2025-06-20T11:01:35.938Z [ERROR] auth-service - Authentication system error for user user_1044 from 192.168.152.169 - Error: Identity provider certificate expired - RequestID: 7v9bnlrmlh7 +2025-06-20T11:01:35.942Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(414362) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (414362, 'user_1044') - RequestID: e9dcob5fcat +2025-06-20T11:01:41.288Z [ERROR] auth-service - Authentication system error for user user_1078 from 192.168.98.8 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: clyhrzaobk8 +2025-06-20T11:01:41.288Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 405175 - RequestID: axbufn7zgcw +2025-06-20T11:01:46.674Z [ERROR] auth-service - Authentication system error for user user_1040 from 192.168.126.119 - Error: Identity provider certificate expired - RequestID: 6l4a3xlh7f7 +2025-06-20T11:01:46.674Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(497098) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (497098, 'user_1025') - RequestID: uw3c4b1uqh9 +2025-06-20T11:01:51.814Z [ERROR] auth-service - Authentication system error for user user_1028 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ehqrrcbgbo5 +2025-06-20T11:01:51.814Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 83336 - RequestID: ktz7f45pev +2025-06-20T11:01:56.933Z [ERROR] auth-service - Authentication system error for user user_1043 from 192.168.192.148 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: vei9mct4hl8 +2025-06-20T11:01:56.933Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(458662) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (458662, 'user_1062') - RequestID: kko973ex8lq +2025-06-20T11:02:02.032Z [ERROR] auth-service - Authentication system error for user user_1020 from 192.168.115.66 - Error: Identity provider certificate expired - RequestID: erzsvp4o8i +2025-06-20T11:02:02.032Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(857813) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (857813, 'user_1039') - RequestID: 9lh30qz5ibk +2025-06-20T11:02:07.133Z [ERROR] auth-service - Authentication system error for user user_1083 from 192.168.159.31 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 04u3q973xmbf +2025-06-20T11:02:07.133Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(568055) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (568055, 'user_1015') - RequestID: o9n9ssisctd +2025-06-20T11:02:12.234Z [ERROR] auth-service - Authentication system error for user user_1045 from 192.168.217.206 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: v4hnhwbkpzs +2025-06-20T11:02:12.234Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(367444) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (367444, 'user_1010') - RequestID: ho6mhy2idde +2025-06-20T11:02:17.340Z [ERROR] auth-service - Authentication system error for user user_1091 from 192.168.249.127 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: x0kugduh8b +2025-06-20T11:02:17.340Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 386979 - RequestID: 47vokgdfj27 +2025-06-20T11:02:22.440Z [ERROR] auth-service - Authentication system error for user user_1053 from 192.168.159.31 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: b63sw686aom +2025-06-20T11:02:22.440Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(526221) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (526221, 'user_1004') - RequestID: ant3muqhx3a +2025-06-20T11:02:27.540Z [ERROR] auth-service - Authentication system error for user user_1058 from 192.168.138.229 - Error: Identity provider certificate expired - RequestID: h4rfpbgflxu +2025-06-20T11:02:27.540Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 374297 - RequestID: x6m0fk95jsg +2025-06-20T11:02:32.639Z [ERROR] auth-service - Authentication system error for user user_1020 from 192.168.217.231 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: z1iwhsuy8 +2025-06-20T11:02:32.639Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 831408 - RequestID: plkla4lr7j +2025-06-20T11:02:37.739Z [ERROR] auth-service - Authentication system error for user user_1068 from 192.168.203.86 - Error: Identity provider certificate expired - RequestID: jpf0lsdmtid +2025-06-20T11:02:37.739Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(112007) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (112007, 'user_1003') - RequestID: ylokyzsus +2025-06-20T11:02:42.839Z [ERROR] auth-service - Authentication system error for user user_1030 from 192.168.249.127 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 4ij40jrxz0r +2025-06-20T11:02:42.839Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(704939) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (704939, 'user_1096') - RequestID: grvnf56wrei +2025-06-20T11:02:47.940Z [ERROR] auth-service - Authentication system error for user user_1012 from 192.168.143.242 - Error: Identity provider certificate expired - RequestID: 238t1wrs9fq +2025-06-20T11:02:47.940Z [ERROR] notification-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 273368 - RequestID: 1ectgyepuy1 +2025-06-20T11:02:53.040Z [ERROR] auth-service - Authentication system error for user user_1093 from 192.168.98.8 - Error: Identity provider certificate expired - RequestID: 0cv2efppdyw4 +2025-06-20T11:02:53.040Z [ERROR] inventory-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(948134) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (948134, 'user_1086') - RequestID: 4qfivsdry1a +2025-06-20T11:02:58.140Z [ERROR] auth-service - Authentication system error for user user_1076 from 192.168.45.32 - Error: Identity provider certificate expired - RequestID: 8pygtpjaq2a +2025-06-20T11:02:58.140Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(391783) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (391783, 'user_1071') - RequestID: diysqxkvr18 +2025-06-20T11:03:03.240Z [ERROR] auth-service - Authentication system error for user user_1012 from 192.168.217.231 - Error: Identity provider certificate expired - RequestID: qyjc1v0w6ec +2025-06-20T11:03:03.240Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 998869 - RequestID: f0az3g7g7wk +2025-06-20T11:03:08.339Z [ERROR] auth-service - Authentication system error for user user_1029 from 192.168.249.127 - Error: Identity provider certificate expired - RequestID: 7rgbmv9c1f3 +2025-06-20T11:03:08.340Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 96289 - RequestID: u7mp6ezk02r +2025-06-20T11:03:13.440Z [ERROR] auth-service - Authentication system error for user user_1013 from 192.168.13.14 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 24k0vwkzjhwi +2025-06-20T11:03:13.440Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(64992) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (64992, 'user_1076') - RequestID: uj0g51f7uj +2025-06-20T11:03:18.542Z [ERROR] auth-service - Authentication system error for user user_1025 from 192.168.16.121 - Error: Identity provider certificate expired - RequestID: 1h90rkqwz5y +2025-06-20T11:03:18.542Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(622882) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (622882, 'user_1066') - RequestID: b4db8ippw7b +2025-06-20T11:03:23.642Z [ERROR] auth-service - Authentication system error for user user_1098 from 192.168.143.242 - Error: Identity provider certificate expired - RequestID: hb7ulcckh1s +2025-06-20T11:03:23.642Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 46885 - RequestID: n880akajseg +2025-06-20T11:03:28.743Z [ERROR] auth-service - Authentication system error for user user_1010 from 192.168.34.236 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ztxeh95n3il +2025-06-20T11:03:28.743Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 511967 - RequestID: e65apuaj1se +2025-06-20T11:03:33.843Z [ERROR] auth-service - Authentication system error for user user_1061 from 192.168.132.247 - Error: Identity provider certificate expired - RequestID: weopgc990e +2025-06-20T11:03:33.843Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(880130) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (880130, 'user_1076') - RequestID: hb02q9tovl9 +2025-06-20T11:03:38.943Z [ERROR] auth-service - Authentication system error for user user_1034 from 192.168.141.228 - Error: Identity provider certificate expired - RequestID: ikm23pqej6r +2025-06-20T11:03:38.944Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 247547 - RequestID: hz1fiuhhjqw +2025-06-20T11:03:44.043Z [ERROR] auth-service - Authentication system error for user user_1065 from 192.168.15.79 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: v75x2mru6et +2025-06-20T11:03:44.043Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 698648 - RequestID: 7i2i82omueq +2025-06-20T11:03:49.145Z [ERROR] auth-service - Authentication system error for user user_1098 from 192.168.143.242 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: pccv74p0xcm +2025-06-20T11:03:49.145Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(966286) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (966286, 'user_1072') - RequestID: et6iybrj1iq +2025-06-20T11:03:54.245Z [ERROR] auth-service - Authentication system error for user user_1002 from 192.168.113.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 1qnf08f10ox +2025-06-20T11:03:54.245Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 359628 - RequestID: k0aljv3c6ja +2025-06-20T11:03:59.345Z [ERROR] auth-service - Authentication system error for user user_1037 from 192.168.249.127 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: i6qwbnxfm88 +2025-06-20T11:03:59.345Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 171331 - RequestID: 8o38d1q495q +2025-06-20T11:04:04.444Z [ERROR] auth-service - Authentication system error for user user_1088 from 192.168.159.31 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: g7u8m8mtg0l +2025-06-20T11:04:04.444Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(263676) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (263676, 'user_1074') - RequestID: rk38pgvz6o +2025-06-20T11:04:09.544Z [ERROR] auth-service - Authentication system error for user user_1089 from 192.168.154.185 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: lqu6e9s48qb +2025-06-20T11:04:09.544Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(760158) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (760158, 'user_1047') - RequestID: 21ukv7k45ns +2025-06-20T11:04:14.644Z [ERROR] auth-service - Authentication system error for user user_1018 from 192.168.239.220 - Error: Identity provider certificate expired - RequestID: c5xi6fq171f +2025-06-20T11:04:14.644Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 852457 - RequestID: am0hf3ecikq +2025-06-20T11:04:19.746Z [ERROR] auth-service - Authentication system error for user user_1082 from 192.168.204.182 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: eckfgbmqi1h +2025-06-20T11:04:19.746Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 180116 - RequestID: 1ttv1vy2ixo +2025-06-20T11:04:24.846Z [ERROR] auth-service - Authentication system error for user user_1032 from 192.168.35.166 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: orwb3s7wuur +2025-06-20T11:04:24.846Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 751910 - RequestID: ytvsxptidh +2025-06-20T11:04:29.946Z [ERROR] auth-service - Authentication system error for user user_1054 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: 8luf79raekj +2025-06-20T11:04:29.946Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 504022 - RequestID: pvi8hs2bi1i +2025-06-20T11:04:35.047Z [ERROR] auth-service - Authentication system error for user user_1085 from 192.168.210.103 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: z4gw669g28 +2025-06-20T11:04:35.047Z [ERROR] order-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 352117 - RequestID: agurcb6xvl9 +2025-06-20T11:04:40.147Z [ERROR] auth-service - Authentication system error for user user_1086 from 192.168.203.86 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: yihu3ja4m4k +2025-06-20T11:04:40.147Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(342900) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (342900, 'user_1069') - RequestID: m15klxxjsbs +2025-06-20T11:04:45.247Z [ERROR] auth-service - Authentication system error for user user_1068 from 192.168.162.209 - Error: Identity provider certificate expired - RequestID: ue6i9ws2n7l +2025-06-20T11:04:45.247Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(444152) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (444152, 'user_1060') - RequestID: rng451l3rgf +2025-06-20T11:04:50.349Z [ERROR] auth-service - Authentication system error for user user_1079 from 192.168.113.220 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: nr5pfvvgkjj +2025-06-20T11:04:50.349Z [ERROR] auth-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 524092 - RequestID: z8o423wpf9j +2025-06-20T11:04:55.449Z [ERROR] auth-service - Authentication system error for user user_1003 from 192.168.19.191 - Error: Identity provider certificate expired - RequestID: 43guw0jfw8w +2025-06-20T11:04:55.449Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(456113) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (456113, 'user_1036') - RequestID: 5xzo031nbql +2025-06-20T11:05:00.552Z [ERROR] auth-service - Authentication system error for user user_1040 from 192.168.152.169 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: nd6bvh86gnl +2025-06-20T11:05:00.552Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(831990) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (831990, 'user_1038') - RequestID: unle7fj4pig +2025-06-20T11:05:05.652Z [ERROR] auth-service - Authentication system error for user user_1011 from 192.168.192.148 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: qrilgxu3y2 +2025-06-20T11:05:05.652Z [ERROR] user-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(942179) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (942179, 'user_1079') - RequestID: 8alyy399hp +2025-06-20T11:05:10.752Z [ERROR] auth-service - Authentication system error for user user_1071 from 192.168.217.231 - Error: Identity provider certificate expired - RequestID: rxkkbu5okgb +2025-06-20T11:05:10.752Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(832783) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (832783, 'user_1068') - RequestID: i19ygs7f53h +2025-06-20T11:05:15.853Z [ERROR] auth-service - Authentication system error for user user_1073 from 192.168.217.206 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: rnqbjbc0gqp +2025-06-20T11:05:15.853Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(209058) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (209058, 'user_1031') - RequestID: 6bl5fi8cgpt +2025-06-20T11:05:20.954Z [ERROR] auth-service - Authentication system error for user user_1031 from 192.168.154.185 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: gxz0pdybgt +2025-06-20T11:05:20.955Z [ERROR] payment-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 336422 - RequestID: njp8iiov0j +2025-06-20T11:05:26.055Z [ERROR] auth-service - Authentication system error for user user_1084 from 192.168.172.121 - Error: Identity provider certificate expired - RequestID: urtkg73dh9r +2025-06-20T11:05:26.055Z [ERROR] auth-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(810964) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (810964, 'user_1091') - RequestID: y6k4gkgg4lq +2025-06-20T11:05:31.154Z [ERROR] auth-service - Authentication system error for user user_1057 from 192.168.217.231 - Error: Identity provider certificate expired - RequestID: knwvelsrqx +2025-06-20T11:05:31.155Z [ERROR] order-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(425626) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (425626, 'user_1011') - RequestID: o481xnbqsdi +2025-06-20T11:05:36.258Z [ERROR] auth-service - Authentication system error for user user_1020 from 192.168.132.247 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: k8zxbg0ctks +2025-06-20T11:05:36.258Z [ERROR] payment-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(251921) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (251921, 'user_1027') - RequestID: q982q4hxio9 +2025-06-20T11:05:41.359Z [ERROR] auth-service - Authentication system error for user user_1088 from 192.168.16.121 - Error: Failed to retrieve sessions from redis: TimeoutError - RequestID: ybn1fldiadb +2025-06-20T11:05:41.360Z [ERROR] inventory-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 374474 - RequestID: ulvsab7y6dt +2025-06-20T11:05:46.459Z [ERROR] auth-service - Authentication system error for user user_1066 from 192.168.54.206 - Error: Identity provider certificate expired - RequestID: z2u4l12mxio +2025-06-20T11:05:46.460Z [ERROR] user-service - PostgreSQL query failed: syntax error at or near "SELCT" - Query: SELCT * FROM users WHERE id = 727246 - RequestID: 11qlv5l8jdbn +2025-06-20T11:05:51.561Z [ERROR] auth-service - Authentication system error for user user_1015 from 192.168.16.121 - Error: Identity provider certificate expired - RequestID: 5ovkyfgru4i +2025-06-20T11:05:51.561Z [ERROR] notification-service - PostgreSQL query failed: duplicate key value violates unique constraint "auth_permission_pkey" DETAIL: Key (id)=(949069) already exists - Query: INSERT INTO auth_permission (id, user) VALUES (949069, 'user_1006') - RequestID: jeph897698 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/generate_logs.py new file mode 100644 index 00000000000..6d3a61272a5 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/generate_logs.py @@ -0,0 +1,70 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import time +import random +from datetime import datetime + + +def generate_logs(): + """Generate logs with various error types for summarization.""" + + # Define error scenarios without revealing exact messages + error_scenarios = [ + # Login errors + ( + "ERROR: Authentication failed: Redis connection timeout (5000ms exceeded)", + "login_redis", + ), + ( + "ERROR: Certificate validation failed: CN=idp.company.com expired on 2024-01-15", + "login_cert", + ), + # Database errors + ( + "ERROR: Query execution failed: Syntax error at position 23 - unexpected token 'SELCT'", + "db_syntax", + ), + ( + "ERROR: Insert failed: Duplicate key value violates unique constraint 'users_email_key'", + "db_constraint", + ), + ] + + # Generate 50 rounds of logs + for _ in range(50): + # Generate normal activity logs + for _ in range(random.randint(10, 20)): + timestamp = datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") + log_type = random.choice( + [ + "INFO: Health check completed", + "INFO: Request processed successfully", + "DEBUG: Cache hit for key user_profile_*", + "INFO: Background job executed", + ] + ) + print(f"[{timestamp}] {log_type}") + + # Generate errors from all categories + for error_msg, error_type in error_scenarios: + if random.random() < 0.3: # 30% chance for each error + timestamp = datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") + print(f"[{timestamp}] {error_msg}") + + # Add follow-up log entries + if "login" in error_type: + print(f"[{timestamp}] WARN: User authentication degraded") + elif "db" in error_type: + print(f"[{timestamp}] WARN: Database operation rollback initiated") + + # Keep pod running + while True: + time.sleep(3600) + + +if __name__ == "__main__": + generate_logs() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/kubectl_find_resource_my-app-51_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/kubectl_find_resource_my-app-51_pod.txt new file mode 100644 index 00000000000..022ee7e3e77 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/kubectl_find_resource_my-app-51_pod.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"pod","keyword":"my-app-51"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide pod | grep my-app-51", "params": {"kind": "pod", "keyword": "my-app-51"}} +ask-holmes-namespace-51 my-app-51-59d94fd7cc-927wn 1/1 Running 0 168m 10.244.1.135 kind-double-node-worker app=my-app-51,pod-template-hash=59d94fd7cc diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/manifest.yaml new file mode 100644 index 00000000000..a88c0d44b27 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/manifest.yaml @@ -0,0 +1,41 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: ask-holmes-namespace-51 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: my-app-51 + namespace: ask-holmes-namespace-51 + labels: + app: my-app-51 +spec: + replicas: 1 + selector: + matchLabels: + app: my-app-51 + template: + metadata: + labels: + app: my-app-51 + spec: + containers: + - name: main-container + image: python:3.9-slim + command: ["python", "/scripts/generate_logs.py"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "64Mi" + volumes: + - name: script-volume + secret: + secretName: my-app-51-logs-script + defaultMode: 0755 + restartPolicy: Always diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/mocks/response.txt new file mode 100644 index 00000000000..2e3d18ab50a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/mocks/response.txt @@ -0,0 +1,13 @@ +Errors in logs of pod my-app-51-74fb646bc4-rhsnv: + + 1 Certificate validation failed: CN=idp.company.com expired on 2024-01-15 + 2 Authentication failed: Redis connection timeout (5000ms exceeded) + 3 Insert failed: Duplicate key value violates unique constraint 'users_email_key' + 4 Query execution failed: Syntax error at position 23 - unexpected token 'SELCT' + +You should: + + • Renew or replace expired certificate for idp.company.com + • Check Redis connectivity and performance + • Fix duplicate email inserts in your database logic + • Correct SQL syntax errors (typo: 'SELCT' should be 'SELECT') \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/test_case.yaml new file mode 100644 index 00000000000..c62e67b157d --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/test_case.yaml @@ -0,0 +1,22 @@ +user_prompt: "Show me the errors in the logs of my-app-51" +tags: + - logs + - easy + - kubernetes +expected_output: | + A summary with the following errors in whichever order: + 1. Login issues due to redis timeouts + 2. Login issues due to Identity provider certificate expired + 3. DB query issues due to a syntax error + 4. DB query issues due unicity constraint volation +before_test: | + kubectl create namespace ask-holmes-namespace-51 || true + kubectl create secret generic my-app-51-logs-script \ + --from-file=generate_logs.py=./generate_logs.py \ + -n ask-holmes-namespace-51 --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f ./manifest.yaml + kubectl wait --for=condition=available deployment/my-app-51 -n ask-holmes-namespace-51 --timeout=90s + +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret my-app-51-logs-script -n ask-holmes-namespace-51 --ignore-not-found diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/toolsets.yaml new file mode 100644 index 00000000000..5ea5b239e0a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/51_logs_summarize_errors/toolsets.yaml @@ -0,0 +1,5 @@ +toolsets: + kubernetes/logs: + enabled: true + kubernetes/core: + enabled: true diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/kubectl_describepod_fast-fail-pod_ask-holmes-namespace-54b.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/kubectl_describepod_fast-fail-pod_ask-holmes-namespace-54b.txt new file mode 100644 index 00000000000..02dc88e0d3d --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/kubectl_describepod_fast-fail-pod_ask-holmes-namespace-54b.txt @@ -0,0 +1,55 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"pod","name":"fast-fail-pod","namespace":"namespace-54b"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl describe pod fast-fail-pod -n namespace-54b", "params": {"kind": "pod", "name": "fast-fail-pod", "namespace": "namespace-54b"}} +Name: fast-fail-pod +Namespace: namespace-54b +Priority: 0 +Service Account: default +Node: pool-5rdd4oamz-gl4h4/10.114.0.5 +Start Time: Tue, 01 Jul 2025 12:14:59 +0300 +Labels: +Annotations: +Status: Pending +IP: 10.244.0.82 +IPs: + IP: 10.244.0.82 +Containers: + fail-container: + Container ID: + Image: totallynonexistentregistry12345.io/doesnotexist/invalid:latest + Image ID: + Port: + Host Port: + State: Waiting + Reason: ImagePullBackOff + Ready: False + Restart Count: 0 + Environment: + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-kxgbc (ro) +Conditions: + Type Status + PodReadyToStartContainers True + Initialized True + Ready False + ContainersReady False + PodScheduled True +Volumes: + kube-api-access-kxgbc: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: BestEffort +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal Scheduled 116s default-scheduler Successfully assigned namespace-54b/fast-fail-pod to pool-5rdd4oamz-gl4h4 + Normal Pulling 29s (x4 over 116s) kubelet Pulling image "totallynonexistentregistry12345.io/doesnotexist/invalid:latest" + Warning Failed 29s (x4 over 116s) kubelet Failed to pull image "totallynonexistentregistry12345.io/doesnotexist/invalid:latest": failed to pull and unpack image "totallynonexistentregistry12345.io/doesnotexist/invalid:latest": failed to resolve reference "totallynonexistentregistry12345.io/doesnotexist/invalid:latest": failed to do request: Head "https://totallynonexistentregistry12345.io/v2/doesnotexist/invalid/manifests/latest": dial tcp: lookup totallynonexistentregistry12345.io on 67.207.67.2:53: no such host + Warning Failed 29s (x4 over 116s) kubelet Error: ErrImagePull + Warning Failed 14s (x6 over 115s) kubelet Error: ImagePullBackOff + Normal BackOff 2s (x7 over 115s) kubelet Back-off pulling image "totallynonexistentregistry12345.io/doesnotexist/invalid:latest" diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/kubectl_get_by_kind_in_namespacepod_ask-holmes-namespace-54b.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/kubectl_get_by_kind_in_namespacepod_ask-holmes-namespace-54b.txt new file mode 100644 index 00000000000..a16318e0227 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/kubectl_get_by_kind_in_namespacepod_ask-holmes-namespace-54b.txt @@ -0,0 +1,4 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_get_by_kind_in_namespace","match_params":{"kind":"pod","namespace":"namespace-54b"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get --show-labels -o wide pod -n namespace-54b", "params": {"kind": "pod", "namespace": "namespace-54b"}} +NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES LABELS +fast-fail-pod 0/1 ImagePullBackOff 0 116s 10.244.0.82 pool-5rdd4oamz-gl4h4 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/manifest.yaml new file mode 100644 index 00000000000..9daf2734c22 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/manifest.yaml @@ -0,0 +1,41 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: namespace-54a +--- +apiVersion: v1 +kind: Namespace +metadata: + name: namespace-54b +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: massive-pod-deployment-with-very-long-name + namespace: namespace-54a +spec: + replicas: 2000 + selector: + matchLabels: + app: massive-pod-deployment-with-very-long-name + template: + metadata: + labels: + app: massive-pod-deployment-with-very-long-name + spec: + nodeSelector: + non-existent-label: "true" # no node has this, will stay Pending + containers: + - name: dummy-container + image: nginx # a valid image to avoid ImagePull errors +--- +apiVersion: v1 +kind: Pod +metadata: + name: fast-fail-pod + namespace: namespace-54b +spec: + containers: + - name: fail-container + image: totallynonexistentregistry12345.io/doesnotexist/invalid:latest + imagePullPolicy: Always diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/mocks/response.txt new file mode 100644 index 00000000000..b55a6f25404 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/mocks/response.txt @@ -0,0 +1,6 @@ +Namespace namespace-54b on robusta-prod cluster has pod fast-fail-pod stuck in ImagePullBackOff. + +Root cause: Pod is trying to pull image totallynonexistentregistry12345.io/doesnotexist/invalid:latest, which does not exist. DNS +lookup for registry fails: "no such host". + +Fix: Update pod spec to use a valid image from an accessible registry. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/test_case.yaml new file mode 100644 index 00000000000..6add8bffe32 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/test_case.yaml @@ -0,0 +1,10 @@ +user_prompt: "can you please check what is going on in namespace-54b namespace on the robusta-prod cluster?" +expected_output: | + - mention fast-fail-pod failing because of image issues. + - doesn't mention any other pod or any other problem +before_test: kubectl apply -f ./manifest.yaml && ./wait_for_replicas.sh massive-pod-deployment-with-very-long-name 2000 namespace-54a +after_test: kubectl delete -f ./manifest.yaml && ./wait_for_replicas.sh massive-pod-deployment-with-very-long-name 0 namespace-54a +tags: + - easy + - kubernetes + - context_window diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/toolsets.yaml new file mode 100644 index 00000000000..3c9a2dc2475 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/toolsets.yaml @@ -0,0 +1,3 @@ +toolsets: + kubernetes/core: + enabled: true diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/wait_for_replicas.sh b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/wait_for_replicas.sh new file mode 100755 index 00000000000..71d31e8838d --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/54_not_truncated_when_getting_pods/wait_for_replicas.sh @@ -0,0 +1,44 @@ +#!/bin/bash + +# Usage: +# ./check_pods.sh [timeout-seconds] +# +# Example: +# ./check_pods.sh massive-pod-deployment-with-very-long-name 2000 default 600 + +set -e + +DEPLOYMENT_NAME="$1" +TARGET_REPLICAS="$2" +NAMESPACE="$3" +TIMEOUT="${4:-300}" # default 5 minutes + +if [ -z "$DEPLOYMENT_NAME" ] || [ -z "$TARGET_REPLICAS" ] || [ -z "$NAMESPACE" ]; then + echo "Usage: $0 [timeout-seconds]" + exit 1 +fi + +echo "🔎 Checking for $TARGET_REPLICAS pods in namespace '$NAMESPACE' for deployment '$DEPLOYMENT_NAME' with timeout ${TIMEOUT}s..." + +START_TIME=$(date +%s) + +while true; do + POD_COUNT=$(kubectl get pods -n "$NAMESPACE" --no-headers | grep "$DEPLOYMENT_NAME" | wc -l) + + echo "Currently detected $POD_COUNT pods (target $TARGET_REPLICAS)..." + + if [ "$POD_COUNT" -eq "$TARGET_REPLICAS" ]; then + echo "✅ Found the expected $TARGET_REPLICAS pods." + exit 0 + fi + + CURRENT_TIME=$(date +%s) + ELAPSED=$((CURRENT_TIME - START_TIME)) + + if [ "$ELAPSED" -ge "$TIMEOUT" ]; then + echo "❌ Timed out after ${TIMEOUT}s without reaching $TARGET_REPLICAS pods." + exit 1 + fi + + sleep 5 +done diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/conversation_history/00_system.md b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/conversation_history/00_system.md new file mode 100644 index 00000000000..a8cda664e12 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/conversation_history/00_system.md @@ -0,0 +1,105 @@ +You are a tool-calling AI assist provided with common devops and IT tools that you can use to troubleshoot problems or answer questions. +Whenever possible you MUST first use tools to investigate then answer the question. +Do not say 'based on the tool output' or explicitly refer to tools at all. +If you output an answer and then realize you need to call more tools or there are possible next steps, you may do so by calling tools at that point in time. +If you have a good and concrete suggestion for how the user can fix something, tell them even if not asked explicitly + +Use conversation history to maintain continuity when appropriate, ensuring efficiency in your responses. + + +In general: +* when it can provide extra information, first run as many tools as you need to gather more information, then respond. +* if possible, do so repeatedly with different tool calls each time to gather more information. +* do not stop investigating until you are at the final root cause you are able to find. +* use the "five whys" methodology to find the root cause. +* for example, if you found a problem in microservice A that is due to an error in microservice B, look at microservice B too and find the error in that. +* if you cannot find the resource/application that the user referred to, assume they made a typo or included/excluded characters like - and. +* in this case, try to find substrings or search for the correct spellings +* always provide detailed information like exact resource names, versions, labels, etc +* even if you found the root cause, keep investigating to find other possible root causes and to gather data for the answer like exact names +* when giving an answer don't say root cause but "possible root causes" and be clear to distinguish between what you know for certain and what is a possible explanation +* if a runbook url is present as well as tool that can fetch it, you MUST fetch the runbook before beginning your investigation and follow the steps written in it. +* if you don't know, say that the analysis was inconclusive. +* if there are multiple possible causes list them in a numbered list. +* there will often be errors in the data that are not relevant or that do not have an impact - ignore them in your conclusion if you were not able to tie them to an actual error. + +If investigating Kubernetes problems: +* run as many kubectl commands as you need to gather more information, then respond. +* if possible, do so repeatedly on different Kubernetes objects. +* for example, for deployments first run kubectl on the deployment then a replicaset inside it, then a pod inside that. +* if the user wants to find a specific term in a pod's logs, use kubectl_logs_grep +* use both kubectl_previous_logs and kubectl_logs when reading logs. Treat the output of both as a single unified logs stream +* when investigating a pod that crashed or application errors, always run kubectl_describe and fetch the logs +* do not give an answer like "The pod is pending" as that doesn't state why the pod is pending and how to fix it. +* do not give an answer like "Pod's node affinity/selector doesn't match any available nodes" because that doesn't include data on WHICH label doesn't match +* if investigating an issue on many pods, there is no need to check more than 3 individual pods in the same deployment. pick up to a representative 3 from each deployment if relevant +* if the user says something isn't working, ALWAYS: +** use kubectl_describe on the owner workload + individual pods and look for any transient issues they might have been referring to +** check the application aspects through the logs (kubectl_logs and kubectl_previous_logs) and other relevant tools +** look for misconfigured ingresses/services etc + +Handling Permission Errors +If during the investigation you encounter a permissions error (e.g., `Error from server (Forbidden):`), **ALWAYS** follow these steps to ensure a thorough resolution: +1.**Analyze the Error Message** + - Identify the missing resource, API group, and verbs from the error details. + - Never stop at reporting the error + - Proceed with an in-depth investigation. +2.**Locate the Relevant Helm Release** +Check if Helm tools are available, if they are available always use Helm commands to help user find the release associated with the Holmes pod: + - Run `helm list -A | grep holmes` to identify the release name. + - Run `helm get values -n ` to retrieve details such as `customClusterRoleRules` and `clusterName`. +If Helm tools are unavailable, skip this step. +3. **Check for Missing Permissions** + - Check for a cluster role with -holmes-cluster-role in its name and a service account with -holmes-service-account in its name to troubleshoot missing permissions where release name is the name you found earlier if helm tools are available (If the exact cluster role or service account isn't found, search for similar or related names, including variations or prefixes/suffixes that might be used in the cluster.) + - Focus on identifying absent permissions that align with the error message. +4. **Update the Configuration** +If necessary permissions are absent both in customClusterRoleRules and the cluster role mentioned previously, ALWAYS advise the user to update their configuration by modifying the `generated_values.yaml` file as follows: +``` +holmes: + customClusterRoleRules: + - apiGroups: [""] + resources: ["", ""] + verbs: ["", "", ""] +``` +After that instruct them to apply the changes with:: +``` + helm upgrade robusta/robusta --values=generated_values.yaml --set clusterName= +``` +5. **Fallback Guidelines** +- If you cannot determine the release or cluster name, use placeholders `` and ``. +- While you should attempt to retrieve details using Helm commands, do **not** direct the user to execute these commands themselves. +Reminder: +* Always adhere to this process, even if Helm tools are unavailable. +* Strive for thoroughness and precision, ensuring the issue is fully addressed. + +Special cases and how to reply: +* if you are unable to investigate something properly because you do not have tools that let you access the right data, explicitly tell the user that you are missing an integration to access XYZ which you would need to investigate. you should give an answer similar to "I don't have access to
. Please add a Holmes integration for so that I can investigate this." +* make sure you differentiate between "I investigated and found error X caused this problem" and "I tried to investigate but while investigating I got some errors that prevented me from completing the investigation." +* as a special case of that, If a tool generates a permission error when attempting to run it, follow the Handling Permission Errors section for detailed guidance. +* that is different than - for example - fetching a pod's logs and seeing that the pod itself has permission errors. in that case, you explain say that permission errors are the cause of the problem and give details +* Issues are a subset of findings. When asked about an issue or a finding and you have an id, use the tool `fetch_finding_by_id`. +* For any question, try to make the answer specific to the user's cluster. +** For example, if asked to port forward, find out the app or pod port (kubectl decribe) and provide a port forward command specific to the user's question + + + +Style guide: +* Reply with terse output. +* Be painfully concise. +* Leave out "the" and filler words when possible. +* Be terse but not at the expense of leaving out important data like the root cause and how to fix. + +Examples: + +User: Why did the webserver-example app crash? +(Call tool kubectl_find_resource kind=pod keyword=webserver`) +(Call tool kubectl_previous_logs namespace=demos pod=webserver-example-1299492-d9g9d # this pod name was found from the previous tool call) + +AI: `webserver-example-1299492-d9g9d` crashed due to email validation error during HTTP request for /api/create_user +Relevant logs: + +``` +2021-01-01T00:00:00.000Z [ERROR] Missing required field 'email' in request body +``` + +Validation error led to unhandled Java exception causing a crash. diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/kubectl_describepod_customer-relations-webapp-7c67c65579-hr4wn_default.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/kubectl_describepod_customer-relations-webapp-7c67c65579-hr4wn_default.txt new file mode 100644 index 00000000000..1ec8ccaed5f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/kubectl_describepod_customer-relations-webapp-7c67c65579-hr4wn_default.txt @@ -0,0 +1,53 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"pod","name":"customer-relations-webapp-7c67c65579-hr4wn","namespace":"default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl describe pod customer-relations-webapp-7c67c65579-hr4wn -n default", "params": {"kind": "pod", "name": "customer-relations-webapp-7c67c65579-hr4wn", "namespace": "default"}} +Name: customer-relations-webapp-7c67c65579-hr4wn +Namespace: default +Priority: 0 +Service Account: default +Node: kind-double-node-worker/172.18.0.2 +Start Time: Wed, 28 May 2025 14:24:31 +0200 +Labels: app=customer-relations + pod-template-hash=7c67c65579 + visualize=true +Annotations: +Status: Pending +IP: 10.244.1.17 +IPs: + IP: 10.244.1.17 +Controlled By: ReplicaSet/customer-relations-webapp-7c67c65579 +Containers: + crw-main-container: + Container ID: + Image: yourcompany/crw:latest + Image ID: + Port: + Host Port: + State: Waiting + Reason: ImagePullBackOff + Ready: False + Restart Count: 0 + Environment: + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-ndfsr (ro) +Conditions: + Type Status + PodReadyToStartContainers True + Initialized True + Ready False + ContainersReady False + PodScheduled True +Volumes: + kube-api-access-ndfsr: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: BestEffort +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal BackOff 3m6s (x541 over 127m) kubelet Back-off pulling image "yourcompany/crw:latest" diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/kubectl_describepod_customer-relations-webapp-7c67c65579-lqf4r_default.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/kubectl_describepod_customer-relations-webapp-7c67c65579-lqf4r_default.txt new file mode 100644 index 00000000000..d939419c51e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/kubectl_describepod_customer-relations-webapp-7c67c65579-lqf4r_default.txt @@ -0,0 +1,53 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"pod","name":"customer-relations-webapp-7c67c65579-lqf4r","namespace":"default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl describe pod customer-relations-webapp-7c67c65579-lqf4r -n default", "params": {"kind": "pod", "name": "customer-relations-webapp-7c67c65579-lqf4r", "namespace": "default"}} +Name: customer-relations-webapp-7c67c65579-lqf4r +Namespace: default +Priority: 0 +Service Account: default +Node: kind-double-node-worker/172.18.0.2 +Start Time: Wed, 28 May 2025 14:24:31 +0200 +Labels: app=customer-relations + pod-template-hash=7c67c65579 + visualize=true +Annotations: +Status: Pending +IP: 10.244.1.19 +IPs: + IP: 10.244.1.19 +Controlled By: ReplicaSet/customer-relations-webapp-7c67c65579 +Containers: + crw-main-container: + Container ID: + Image: yourcompany/crw:latest + Image ID: + Port: + Host Port: + State: Waiting + Reason: ImagePullBackOff + Ready: False + Restart Count: 0 + Environment: + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-t9frq (ro) +Conditions: + Type Status + PodReadyToStartContainers True + Initialized True + Ready False + ContainersReady False + PodScheduled True +Volumes: + kube-api-access-t9frq: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: BestEffort +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal BackOff 2m57s (x543 over 127m) kubelet Back-off pulling image "yourcompany/crw:latest" diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/kubectl_describepod_customer-relations-webapp-7c67c65579-m94rz_default.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/kubectl_describepod_customer-relations-webapp-7c67c65579-m94rz_default.txt new file mode 100644 index 00000000000..958b9e888c4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/kubectl_describepod_customer-relations-webapp-7c67c65579-m94rz_default.txt @@ -0,0 +1,53 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_describe","match_params":{"kind":"pod","name":"customer-relations-webapp-7c67c65579-m94rz","namespace":"default"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl describe pod customer-relations-webapp-7c67c65579-m94rz -n default", "params": {"kind": "pod", "name": "customer-relations-webapp-7c67c65579-m94rz", "namespace": "default"}} +Name: customer-relations-webapp-7c67c65579-m94rz +Namespace: default +Priority: 0 +Service Account: default +Node: kind-double-node-worker/172.18.0.2 +Start Time: Wed, 28 May 2025 14:24:31 +0200 +Labels: app=customer-relations + pod-template-hash=7c67c65579 + visualize=true +Annotations: +Status: Pending +IP: 10.244.1.106 +IPs: + IP: 10.244.1.106 +Controlled By: ReplicaSet/customer-relations-webapp-7c67c65579 +Containers: + crw-main-container: + Container ID: + Image: yourcompany/crw:latest + Image ID: + Port: + Host Port: + State: Waiting + Reason: ImagePullBackOff + Ready: False + Restart Count: 0 + Environment: + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-ml4s8 (ro) +Conditions: + Type Status + PodReadyToStartContainers True + Initialized True + Ready False + ContainersReady False + PodScheduled True +Volumes: + kube-api-access-ml4s8: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + ConfigMapOptional: + DownwardAPI: true +QoS Class: BestEffort +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal BackOff 2m55s (x542 over 127m) kubelet Back-off pulling image "yourcompany/crw:latest" diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/kubectl_find_resourcecustomer-relations-webapp_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/kubectl_find_resourcecustomer-relations-webapp_pod.txt new file mode 100644 index 00000000000..821bba95c90 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/kubectl_find_resourcecustomer-relations-webapp_pod.txt @@ -0,0 +1,5 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"pod","keyword":"customer-relations-webapp"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide pod | grep customer-relations-webapp", "params": {"kind": "pod", "keyword": "customer-relations-webapp"}} +default customer-relations-webapp-7c67c65579-hr4wn 0/1 ImagePullBackOff 0 47d 10.244.1.17 kind-double-node-worker app=customer-relations,pod-template-hash=7c67c65579,visualize=true +default customer-relations-webapp-7c67c65579-lqf4r 0/1 ImagePullBackOff 0 47d 10.244.1.19 kind-double-node-worker app=customer-relations,pod-template-hash=7c67c65579,visualize=true +default customer-relations-webapp-7c67c65579-m94rz 0/1 ImagePullBackOff 0 47d 10.244.1.106 kind-double-node-worker app=customer-relations,pod-template-hash=7c67c65579,visualize=true diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/test_case.yaml new file mode 100644 index 00000000000..46a935121c9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/test_case.yaml @@ -0,0 +1,17 @@ +user_prompt: "@holmes what’s wrong with the pod customer-relations-webapp on robusta-prod" +cluster_name: robusta-prod +tags: + - logs + - kubernetes + - hard +before_test: | + kubectl apply -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/image_pull_backoff/no_such_image.yaml + sleep 20 +after_test: | + kubectl delete -f https://raw.githubusercontent.com/robusta-dev/kubernetes-demos/main/image_pull_backoff/no_such_image.yaml +expected_output: "failure to pull image `yourcompany/crw:latest`" +evaluation: + correctness: loose +generate_mocks: False + +test_type: server diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/toolsets.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/toolsets.yaml new file mode 100644 index 00000000000..b93afd06eee --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_cluster_name_confusion/toolsets.yaml @@ -0,0 +1,25 @@ +toolsets: + kubernetes/logs: + enabled: true + kubernetes/core: + enabled: true + helm/core: + enabled: true + internet: + enabled: true + kafka/admin: + enabled: false + aws/security: + enabled: false + aws/rds: + enabled: false + aks/core: + enabled: false + kubernetes/live-metrics: + enabled: false + kubernetes/kube-prometheus-stack: + enabled: false + kubernetes/kube-lineage-extras: + enabled: false + runbook: + enabled: false diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/kubectl_find_resourcevideo-streamer_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/kubectl_find_resourcevideo-streamer_pod.txt new file mode 100644 index 00000000000..2d6ba3d2970 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/kubectl_find_resourcevideo-streamer_pod.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"pod","keyword":"video-streamer"}} +{"schema_version": "robusta:v1.0.0", "status": "error", "error": "Command `kubectl get -A --show-labels -o wide pod | grep video-streamer` failed with return code 1\nOutput:\n", "return_code": 1, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide pod | grep video-streamer", "params": {"kind": "pod", "keyword": "video-streamer"}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/kubectl_get_by_kind_in_namespacepod_app-57.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/kubectl_get_by_kind_in_namespacepod_app-57.txt new file mode 100644 index 00000000000..200220701a3 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/kubectl_get_by_kind_in_namespacepod_app-57.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_get_by_kind_in_namespace","match_params":{"kind":"pod","namespace":"app-57"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get --show-labels -o wide pod -n app-57", "params": {"kind": "pod", "namespace": "app-57"}} +No resources found in app-57 namespace. diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/manifest.yaml new file mode 100644 index 00000000000..a69a0be703f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/manifest.yaml @@ -0,0 +1,44 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: test-57 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: video-streamer + namespace: test-57 +spec: + replicas: 1 + selector: + matchLabels: + app: video-streamer + template: + metadata: + labels: + app: video-streamer + spec: + containers: + - name: app-container + image: busybox:1.35 + command: ["/bin/sh"] + args: + - -c + - | + echo "$(date) INFO: Application starting up" + echo "$(date) INFO: Connecting to database" + echo "$(date) WARN: Database connection slow" + echo "$(date) ERROR: Failed to connect to database: connection timeout" + echo "$(date) ERROR: Retrying database connection..." + echo "$(date) ERROR: Database connection failed after 3 retries" + echo "$(date) INFO: Switching to backup database" + echo "$(date) ERROR: Backup database also unavailable" + echo "$(date) ERROR: Application cannot start without database" + echo "$(date) FATAL: Shutting down application" + while true; do sleep 3600; done + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "64Mi" diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/test_case.yaml new file mode 100644 index 00000000000..9a7fc3937c2 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/57_wrong_namespace/test_case.yaml @@ -0,0 +1,12 @@ +# we ask about app-57 namespace but the deployment is in test-57 namespace +user_prompt: "get last logs from video-streamer in app-57 namespace" +expected_output: "video-streamer not found in namespace app-57, did you mean namespace test-57?" +before_test: 'kubectl apply -f ./manifest.yaml' +after_test: 'kubectl delete -f ./manifest.yaml' +evaluation: + correctness: loose +generate_mocks: False +tags: + - logs + - medium + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/58_counting_pods_by_status/kubernetes_countitems_select_.metadata.namespace_test-58_and_.status.phase_Running_.metadata.name_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/58_counting_pods_by_status/kubernetes_countitems_select_.metadata.namespace_test-58_and_.status.phase_Running_.metadata.name_pod.txt new file mode 100644 index 00000000000..4bc91dff843 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/58_counting_pods_by_status/kubernetes_countitems_select_.metadata.namespace_test-58_and_.status.phase_Running_.metadata.name_pod.txt @@ -0,0 +1,14 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubernetes_count","match_params":{"kind":"pod","jq_expr":".items[] | select(.metadata.namespace == \"test-58\" and .status.phase == \"Running\") | .metadata.name"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "echo \"Command executed: kubectl get pod --all-namespaces -o json | jq -c -r '.items[] | select(.metadata.namespace == \"test-58\" and .status.phase == \"Running\") | .metadata.name'\"\necho \"---\"\n\n# Execute the command and capture both stdout and stderr separately\ntemp_error=$(mktemp)\nmatches=$(kubectl get pod --all-namespaces -o json 2>\"$temp_error\" | jq -c -r '.items[] | select(.metadata.namespace == \"test-58\" and .status.phase == \"Running\") | .metadata.name' 2>>\"$temp_error\")\nexit_code=$?\nerror_output=$(cat \"$temp_error\")\nrm -f \"$temp_error\"\n\nif [ $exit_code -ne 0 ]; then\n echo \"Error executing command (exit code: $exit_code):\"\n echo \"$error_output\"\n exit $exit_code\nelse\n # Show any stderr warnings even if command succeeded\n if [ -n \"$error_output\" ]; then\n echo \"Warnings/stderr output:\"\n echo \"$error_output\"\n echo \"---\"\n fi\n\n # Filter out empty lines for accurate count\n filtered_matches=$(echo \"$matches\" | grep -v '^$' | grep -v '^null$')\n if [ -z \"$filtered_matches\" ]; then\n count=0\n else\n count=$(echo \"$filtered_matches\" | wc -l)\n fi\n preview=$(echo \"$filtered_matches\" | head -n 10 | cut -c 1-200 | nl)\n\n echo \"$count results\"\n echo \"---\"\n echo \"A *preview* of results is shown below (up to 10 results, up to 200 chars):\"\n echo \"$preview\"\nfi", "params": {"kind": "pod", "jq_expr": ".items[] | select(.metadata.namespace == \"test-58\" and .status.phase == \"Running\") | .metadata.name"}} +Command executed: kubectl get pod --all-namespaces -o json | jq -c -r '.items[] | select(.metadata.namespace == test-58 and .status.phase == Running) | .metadata.name' +--- + 7 results +--- +A *preview* of results is shown below (up to 10 results, up to 200 chars): + 1 alpha-pod + 2 beta-pod + 3 delta-pod + 4 epsilon-pod + 5 gamma-pod + 6 iota-pod + 7 kappa-pod diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/58_counting_pods_by_status/manifests.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/58_counting_pods_by_status/manifests.yaml new file mode 100644 index 00000000000..777a87c3dc0 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/58_counting_pods_by_status/manifests.yaml @@ -0,0 +1,124 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: test-58 +--- +# Running pods (5) +apiVersion: v1 +kind: Pod +metadata: + name: alpha-pod + namespace: test-58 +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: beta-pod + namespace: test-58 +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: gamma-pod + namespace: test-58 +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: delta-pod + namespace: test-58 +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: epsilon-pod + namespace: test-58 +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +# Failed pods (3) - using invalid image +apiVersion: v1 +kind: Pod +metadata: + name: zeta-pod + namespace: test-58 +spec: + containers: + - name: failing + image: nonexistent/invalid-image:latest + imagePullPolicy: Always +--- +apiVersion: v1 +kind: Pod +metadata: + name: eta-pod + namespace: test-58 +spec: + containers: + - name: failing + image: nonexistent/invalid-image:latest + imagePullPolicy: Always +--- +apiVersion: v1 +kind: Pod +metadata: + name: theta-pod + namespace: test-58 +spec: + containers: + - name: failing + image: nonexistent/invalid-image:latest + imagePullPolicy: Always +--- +# CrashLoopBackOff pods (2) - containers that exit immediately +apiVersion: v1 +kind: Pod +metadata: + name: iota-pod + namespace: test-58 +spec: + restartPolicy: Always + containers: + - name: crasher + image: busybox + command: ["sh", "-c", "exit 1"] +--- +apiVersion: v1 +kind: Pod +metadata: + name: kappa-pod + namespace: test-58 +spec: + restartPolicy: Always + containers: + - name: crasher + image: busybox + command: ["sh", "-c", "exit 1"] diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/58_counting_pods_by_status/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/58_counting_pods_by_status/test_case.yaml new file mode 100644 index 00000000000..8f45ad57836 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/58_counting_pods_by_status/test_case.yaml @@ -0,0 +1,14 @@ +user_prompt: "How many pods are actually running in the test-58 namespace?" +expected_output: + - 5 pods are running in the test-58 namespace +before_test: | + kubectl apply -f manifests.yaml + sleep 90 +after_test: | + kubectl delete -f manifests.yaml +evaluation: + correctness: loose +tags: + - counting + - medium + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/kubernetes_countitems_select_.metadata.namespace_test-59_and_.metadata.labels.env_prod_.metadata.name_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/kubernetes_countitems_select_.metadata.namespace_test-59_and_.metadata.labels.env_prod_.metadata.name_pod.txt new file mode 100644 index 00000000000..838a17cb878 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/kubernetes_countitems_select_.metadata.namespace_test-59_and_.metadata.labels.env_prod_.metadata.name_pod.txt @@ -0,0 +1,14 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubernetes_count","match_params":{"kind":"pod","jq_expr":".items[] | select(.metadata.namespace == \"test-59\" and .metadata.labels.env == \"prod\") | .metadata.name"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "echo \"Command executed: kubectl get pod --all-namespaces -o json | jq -c -r '.items[] | select(.metadata.namespace == \"test-59\" and .metadata.labels.env == \"prod\") | .metadata.name'\"\necho \"---\"\n\n# Execute the command and capture both stdout and stderr separately\ntemp_error=$(mktemp)\nmatches=$(kubectl get pod --all-namespaces -o json 2>\"$temp_error\" | jq -c -r '.items[] | select(.metadata.namespace == \"test-59\" and .metadata.labels.env == \"prod\") | .metadata.name' 2>>\"$temp_error\")\nexit_code=$?\nerror_output=$(cat \"$temp_error\")\nrm -f \"$temp_error\"\n\nif [ $exit_code -ne 0 ]; then\n echo \"Error executing command (exit code: $exit_code):\"\n echo \"$error_output\"\n exit $exit_code\nelse\n # Show any stderr warnings even if command succeeded\n if [ -n \"$error_output\" ]; then\n echo \"Warnings/stderr output:\"\n echo \"$error_output\"\n echo \"---\"\n fi\n\n # Filter out empty lines for accurate count\n filtered_matches=$(echo \"$matches\" | grep -v '^$' | grep -v '^null$')\n if [ -z \"$filtered_matches\" ]; then\n count=0\n else\n count=$(echo \"$filtered_matches\" | wc -l)\n fi\n preview=$(echo \"$filtered_matches\" | head -n 10 | cut -c 1-200 | nl)\n\n echo \"$count results\"\n echo \"---\"\n echo \"A *preview* of results is shown below (up to 10 results, up to 200 chars):\"\n echo \"$preview\"\nfi", "params": {"kind": "pod", "jq_expr": ".items[] | select(.metadata.namespace == \"test-59\" and .metadata.labels.env == \"prod\") | .metadata.name"}} +Command executed: kubectl get pod --all-namespaces -o json | jq -c -r '.items[] | select(.metadata.namespace == test-59 and .metadata.labels.env == prod) | .metadata.name' +--- + 7 results +--- +A *preview* of results is shown below (up to 10 results, up to 200 chars): + 1 monitor-agent + 2 queue-processor + 3 service-a + 4 service-b + 5 service-c + 6 worker-x + 7 worker-y diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/kubernetes_countitems_select_.metadata.namespace_test-59_and_.metadata.labels.environment_production_.metadata.name_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/kubernetes_countitems_select_.metadata.namespace_test-59_and_.metadata.labels.environment_production_.metadata.name_pod.txt new file mode 100644 index 00000000000..bc780a2e4cf --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/kubernetes_countitems_select_.metadata.namespace_test-59_and_.metadata.labels.environment_production_.metadata.name_pod.txt @@ -0,0 +1,7 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubernetes_count","match_params":{"kind":"pod","jq_expr":".items[] | select(.metadata.namespace == \"test-59\" and .metadata.labels.environment == \"production\") | .metadata.name"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "echo \"Command executed: kubectl get pod --all-namespaces -o json | jq -c -r '.items[] | select(.metadata.namespace == \"test-59\" and .metadata.labels.environment == \"production\") | .metadata.name'\"\necho \"---\"\n\n# Execute the command and capture both stdout and stderr separately\ntemp_error=$(mktemp)\nmatches=$(kubectl get pod --all-namespaces -o json 2>\"$temp_error\" | jq -c -r '.items[] | select(.metadata.namespace == \"test-59\" and .metadata.labels.environment == \"production\") | .metadata.name' 2>>\"$temp_error\")\nexit_code=$?\nerror_output=$(cat \"$temp_error\")\nrm -f \"$temp_error\"\n\nif [ $exit_code -ne 0 ]; then\n echo \"Error executing command (exit code: $exit_code):\"\n echo \"$error_output\"\n exit $exit_code\nelse\n # Show any stderr warnings even if command succeeded\n if [ -n \"$error_output\" ]; then\n echo \"Warnings/stderr output:\"\n echo \"$error_output\"\n echo \"---\"\n fi\n\n # Filter out empty lines for accurate count\n filtered_matches=$(echo \"$matches\" | grep -v '^$' | grep -v '^null$')\n if [ -z \"$filtered_matches\" ]; then\n count=0\n else\n count=$(echo \"$filtered_matches\" | wc -l)\n fi\n preview=$(echo \"$filtered_matches\" | head -n 10 | cut -c 1-200 | nl)\n\n echo \"$count results\"\n echo \"---\"\n echo \"A *preview* of results is shown below (up to 10 results, up to 200 chars):\"\n echo \"$preview\"\nfi", "params": {"kind": "pod", "jq_expr": ".items[] | select(.metadata.namespace == \"test-59\" and .metadata.labels.environment == \"production\") | .metadata.name"}} +Command executed: kubectl get pod --all-namespaces -o json | jq -c -r '.items[] | select(.metadata.namespace == test-59 and .metadata.labels.environment == production) | .metadata.name' +--- +0 results +--- +A *preview* of results is shown below (up to 10 results, up to 200 chars): diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/manifests.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/manifests.yaml new file mode 100644 index 00000000000..deebfe7d3ef --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/manifests.yaml @@ -0,0 +1,189 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: test-59 +--- +# Production environment pods (7) +apiVersion: v1 +kind: Pod +metadata: + name: service-a + namespace: test-59 + labels: + env: prod + tier: frontend +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: service-b + namespace: test-59 + labels: + env: prod + tier: backend +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: service-c + namespace: test-59 + labels: + env: prod + tier: database +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: worker-x + namespace: test-59 + labels: + env: prod + tier: worker +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: worker-y + namespace: test-59 + labels: + env: prod + tier: worker +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: queue-processor + namespace: test-59 + labels: + env: prod + tier: processing +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: monitor-agent + namespace: test-59 + labels: + env: prod + tier: monitoring +spec: + containers: + - name: nginx + image: nginx:alpine +--- +# Staging environment pods (4) +apiVersion: v1 +kind: Pod +metadata: + name: test-service-a + namespace: test-59 + labels: + env: staging + tier: frontend +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: test-service-b + namespace: test-59 + labels: + env: staging + tier: backend +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: test-worker + namespace: test-59 + labels: + env: staging + tier: worker +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: debug-pod + namespace: test-59 + labels: + env: staging + tier: debug +spec: + containers: + - name: nginx + image: nginx:alpine +--- +# Development environment pods (3) +apiVersion: v1 +kind: Pod +metadata: + name: dev-experiment + namespace: test-59 + labels: + env: dev + tier: experimental +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: dev-prototype + namespace: test-59 + labels: + env: dev + tier: prototype +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: local-build + namespace: test-59 + labels: + env: dev + tier: build +spec: + containers: + - name: nginx + image: nginx:alpine diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/mocks/response.txt new file mode 100644 index 00000000000..bbe016afeca --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/mocks/response.txt @@ -0,0 +1 @@ +There are 7 pods with the label env=prod in namespace test-59. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/test_case.yaml new file mode 100644 index 00000000000..662e82def1f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/59_label_based_counting/test_case.yaml @@ -0,0 +1,12 @@ +user_prompt: "How many pods have the label env=prod in namespace test-59?" +expected_output: + - either 7, 7 pods, etc. +before_test: | + kubectl apply -f manifests.yaml + sleep 60 +after_test: | + kubectl delete -f manifests.yaml +tags: + - counting + - easy + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/60_count_less_than/manifests.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/60_count_less_than/manifests.yaml new file mode 100644 index 00000000000..0b7bcb8cc2f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/60_count_less_than/manifests.yaml @@ -0,0 +1,126 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: test-60 +--- +# Stable pods (0 restarts) - 6 pods +apiVersion: v1 +kind: Pod +metadata: + name: stable-web-1 + namespace: test-60 +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: stable-web-2 + namespace: test-60 +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: stable-api-1 + namespace: test-60 +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: stable-api-2 + namespace: test-60 +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: stable-db-1 + namespace: test-60 +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Pod +metadata: + name: stable-worker-1 + namespace: test-60 +spec: + containers: + - name: nginx + image: nginx:alpine + ports: + - containerPort: 80 +--- +# Unstable pods (will have restarts) - 4 pods that crash and restart +apiVersion: v1 +kind: Pod +metadata: + name: batch-processor-1 + namespace: test-60 +spec: + restartPolicy: Always + containers: + - name: crasher + image: busybox + command: ["sh", "-c", "sleep 1; exit 1"] +--- +apiVersion: v1 +kind: Pod +metadata: + name: batch-processor-2 + namespace: test-60 +spec: + restartPolicy: Always + containers: + - name: crasher + image: busybox + command: ["sh", "-c", "sleep 1; exit 1"] +--- +apiVersion: v1 +kind: Pod +metadata: + name: data-analyzer-1 + namespace: test-60 +spec: + restartPolicy: Always + containers: + - name: crasher + image: busybox + command: ["sh", "-c", "sleep 1; exit 1"] +--- +apiVersion: v1 +kind: Pod +metadata: + name: data-analyzer-2 + namespace: test-60 +spec: + restartPolicy: Always + containers: + - name: crasher + image: busybox + command: ["sh", "-c", "sleep 1; exit 1"] diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/60_count_less_than/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/60_count_less_than/mocks/response.txt new file mode 100644 index 00000000000..349d8091d0e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/60_count_less_than/mocks/response.txt @@ -0,0 +1,8 @@ +There are 6 pods in namespace test-60 that have restarted fewer than 3 times: + + • stable-api-1 + • stable-api-2 + • stable-db-1 + • stable-web-1 + • stable-web-2 + • stable-worker-1 \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/60_count_less_than/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/60_count_less_than/test_case.yaml new file mode 100644 index 00000000000..59d7b3d5792 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/60_count_less_than/test_case.yaml @@ -0,0 +1,44 @@ +user_prompt: "How many pods in namespace test-60 have restarted fewer than 3 times?" +expected_output: + - either 6, 6 pods, etc. +before_test: | + kubectl apply -f manifests.yaml + # Wait for all pods to reach expected state with 90 second timeout + count=0 + while [ $count -lt 45 ]; do # 45 * 2 = 90 seconds + # Check if all unstable pods have at least 3 restarts + r1=$(kubectl get pod batch-processor-1 -n test-60 -o jsonpath="{.status.containerStatuses[0].restartCount}" 2>/dev/null || echo 0) + r2=$(kubectl get pod batch-processor-2 -n test-60 -o jsonpath="{.status.containerStatuses[0].restartCount}" 2>/dev/null || echo 0) + r3=$(kubectl get pod data-analyzer-1 -n test-60 -o jsonpath="{.status.containerStatuses[0].restartCount}" 2>/dev/null || echo 0) + r4=$(kubectl get pod data-analyzer-2 -n test-60 -o jsonpath="{.status.containerStatuses[0].restartCount}" 2>/dev/null || echo 0) + + if [ "$r1" -ge 3 ] && [ "$r2" -ge 3 ] && [ "$r3" -ge 3 ] && [ "$r4" -ge 3 ]; then + echo "All unstable pods have 3+ restarts" + break + fi + + echo "Waiting for unstable pods to restart... ($r1, $r2, $r3, $r4)" + count=$((count + 1)) + sleep 2 + done + + # Check if we timed out + if [ $count -eq 45 ]; then + echo "ERROR: Timeout waiting for pods to reach expected restart counts" + exit 1 + fi + + # Verify stable pods have 0 restarts + kubectl get pod stable-web-1 -n test-60 -o jsonpath='{.status.containerStatuses[0].restartCount}' | grep -E "^0$" || exit 1 + kubectl get pod stable-web-2 -n test-60 -o jsonpath='{.status.containerStatuses[0].restartCount}' | grep -E "^0$" || exit 1 + kubectl get pod stable-api-1 -n test-60 -o jsonpath='{.status.containerStatuses[0].restartCount}' | grep -E "^0$" || exit 1 + kubectl get pod stable-api-2 -n test-60 -o jsonpath='{.status.containerStatuses[0].restartCount}' | grep -E "^0$" || exit 1 + kubectl get pod stable-db-1 -n test-60 -o jsonpath='{.status.containerStatuses[0].restartCount}' | grep -E "^0$" || exit 1 + kubectl get pod stable-worker-1 -n test-60 -o jsonpath='{.status.containerStatuses[0].restartCount}' | grep -E "^0$" || exit 1 + +after_test: | + kubectl delete -f manifests.yaml --ignore-not-found=true +tags: + - counting + - easy + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/kubernetes_countitems_select_.metadata.namespace_test-61_.metadata.name_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/kubernetes_countitems_select_.metadata.namespace_test-61_.metadata.name_pod.txt new file mode 100644 index 00000000000..9b449236c2e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/kubernetes_countitems_select_.metadata.namespace_test-61_.metadata.name_pod.txt @@ -0,0 +1,13 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubernetes_count","match_params":{"kind":"pod","jq_expr":".items[] | select(.metadata.namespace == \"test-61\") | .metadata.name"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "echo \"Command executed: kubectl get pod --all-namespaces -o json | jq -c -r '.items[] | select(.metadata.namespace == \"test-61\") | .metadata.name'\"\necho \"---\"\n\n# Execute the command and capture both stdout and stderr separately\ntemp_error=$(mktemp)\nmatches=$(kubectl get pod --all-namespaces -o json 2>\"$temp_error\" | jq -c -r '.items[] | select(.metadata.namespace == \"test-61\") | .metadata.name' 2>>\"$temp_error\")\nexit_code=$?\nerror_output=$(cat \"$temp_error\")\nrm -f \"$temp_error\"\n\nif [ $exit_code -ne 0 ]; then\n echo \"Error executing command (exit code: $exit_code):\"\n echo \"$error_output\"\n exit $exit_code\nelse\n # Show any stderr warnings even if command succeeded\n if [ -n \"$error_output\" ]; then\n echo \"Warnings/stderr output:\"\n echo \"$error_output\"\n echo \"---\"\n fi\n\n # Filter out empty lines for accurate count\n filtered_matches=$(echo \"$matches\" | grep -v '^$' | grep -v '^null$')\n if [ -z \"$filtered_matches\" ]; then\n count=0\n else\n count=$(echo \"$filtered_matches\" | wc -l)\n fi\n preview=$(echo \"$filtered_matches\" | head -n 10 | cut -c 1-200 | nl)\n\n echo \"$count results\"\n echo \"---\"\n echo \"A *preview* of results is shown below (up to 10 results, up to 200 chars):\"\n echo \"$preview\"\nfi", "params": {"kind": "pod", "jq_expr": ".items[] | select(.metadata.namespace == \"test-61\") | .metadata.name"}} +Command executed: kubectl get pod --all-namespaces -o json | jq -c -r '.items[] | select(.metadata.namespace == test-61) | .metadata.name' +--- + 6 results +--- +A *preview* of results is shown below (up to 10 results, up to 200 chars): + 1 monitor-zeta + 2 queue-epsilon + 3 service-delta + 4 service-gamma + 5 worker-alpha + 6 worker-beta diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/manifests.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/manifests.yaml new file mode 100644 index 00000000000..02bdb20bc38 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/manifests.yaml @@ -0,0 +1,161 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: test-61 +--- +apiVersion: v1 +kind: Namespace +metadata: + name: test-611 +--- +# Pods in test-61 namespace (6 pods) +apiVersion: v1 +kind: Pod +metadata: + name: worker-alpha + namespace: test-61 +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: worker-beta + namespace: test-61 +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: service-gamma + namespace: test-61 +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: service-delta + namespace: test-61 +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: queue-epsilon + namespace: test-61 +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: monitor-zeta + namespace: test-61 +spec: + containers: + - name: nginx + image: nginx:alpine +--- +# Pods in test-611 namespace (9 pods) +apiVersion: v1 +kind: Pod +metadata: + name: app-one + namespace: test-611 +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: app-two + namespace: test-611 +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: app-three + namespace: test-611 +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: backend-one + namespace: test-611 +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: backend-two + namespace: test-611 +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: database-primary + namespace: test-611 +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: database-replica + namespace: test-611 +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: cache-server + namespace: test-611 +spec: + containers: + - name: nginx + image: nginx:alpine +--- +apiVersion: v1 +kind: Pod +metadata: + name: load-balancer + namespace: test-611 +spec: + containers: + - name: nginx + image: nginx:alpine diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/mocks/response.txt new file mode 100644 index 00000000000..b685d27308f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/mocks/response.txt @@ -0,0 +1 @@ +There are 6 pods running in the test-61 namespace. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/test_case.yaml new file mode 100644 index 00000000000..20de369e94e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/61_exact_match_counting/test_case.yaml @@ -0,0 +1,13 @@ +user_prompt: "How many pods are running in the test-61 namespace?" +description: "This tests exact matches vs substring matches, and verifies that pods in the test-611 namespace are NOT counted" +expected_output: + - either 6, 6 pods, etc. +before_test: | + kubectl apply -f manifests.yaml + sleep 60 +after_test: | + kubectl delete -f manifests.yaml +tags: + - counting + - easy + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/fetch_pod_logsERROR_10_production-62_payment-service-7cb79f8c87-z96z8.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/fetch_pod_logsERROR_10_production-62_payment-service-7cb79f8c87-z96z8.txt new file mode 100644 index 00000000000..08bb9b743c6 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/fetch_pod_logsERROR_10_production-62_payment-service-7cb79f8c87-z96z8.txt @@ -0,0 +1,7 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"payment-service-7cb79f8c87-z96z8","namespace":"production-62","filter":"ERROR","limit":10}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": null, "params": {"namespace": "production-62", "pod_name": "payment-service-7cb79f8c87-z96z8", "start_time": null, "end_time": null, "filter": "ERROR", "limit": 10}} +Fri Jul 11 13:23:24 UTC 2025 ERROR: Failed to connect to database: connection timeout +Fri Jul 11 13:23:24 UTC 2025 ERROR: Retrying database connection... +Fri Jul 11 13:23:24 UTC 2025 ERROR: Database connection failed after 3 retries +Fri Jul 11 13:23:24 UTC 2025 ERROR: Backup database also unavailable +Fri Jul 11 13:23:24 UTC 2025 ERROR: Application cannot start without database diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/generate_logs.py new file mode 100644 index 00000000000..3f2729162dd --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/generate_logs.py @@ -0,0 +1,39 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import time +from datetime import datetime + + +def generate_logs(): + """Generate logs with database connection errors.""" + + # Initial startup logs + print(f"{datetime.now()} INFO: Application starting up") + print(f"{datetime.now()} INFO: Connecting to database") + print(f"{datetime.now()} WARN: Database connection slow") + + # Generate database errors without revealing exact messages + print(f"{datetime.now()} ERROR: Database connection failed: ETIMEDOUT") + print(f"{datetime.now()} ERROR: Attempting reconnection (attempt 1/3)") + print(f"{datetime.now()} ERROR: Connection retry failed (attempt 2/3)") + print(f"{datetime.now()} ERROR: Maximum retry attempts exceeded") + print(f"{datetime.now()} INFO: Switching to backup database") + print(f"{datetime.now()} ERROR: Backup connection failed: ECONNREFUSED") + print(f"{datetime.now()} ERROR: Unable to establish database connection") + print(f"{datetime.now()} FATAL: Shutting down application") + + # Generate some additional health check logs + for _ in range(2000): + print(f"{datetime.now()} INFO: Status healthy") + + # Keep pod running + while True: + time.sleep(3600) + + +if __name__ == "__main__": + generate_logs() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/kubectl_find_resourcepayment-service_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/kubectl_find_resourcepayment-service_pod.txt new file mode 100644 index 00000000000..9a45625a724 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/kubectl_find_resourcepayment-service_pod.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"pod","keyword":"payment-service"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide pod | grep payment-service", "params": {"kind": "pod", "keyword": "payment-service"}} +production-62 payment-service-7cb79f8c87-z96z8 1/1 Running 0 14s 10.0.2.187 gke-natan-develop-pool-2-41363a6e-yi0r app=payment-service,pod-template-hash=7cb79f8c87 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/manifest.yaml new file mode 100644 index 00000000000..54af9dc8dc4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/manifest.yaml @@ -0,0 +1,33 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: payment-service + namespace: production-62 +spec: + replicas: 1 + selector: + matchLabels: + app: payment-service + template: + metadata: + labels: + app: payment-service + spec: + containers: + - name: app-container + image: python:3.9-slim + command: ["python", "/scripts/generate_logs.py"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "64Mi" + volumes: + - name: script-volume + secret: + secretName: payment-service-logs-script + defaultMode: 0755 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/mocks/response.txt new file mode 100644 index 00000000000..ac98be0c6ae --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/mocks/response.txt @@ -0,0 +1,10 @@ +Last 6 logs with "ERROR" from payment-service in production-62: + + 1 Database connection failed: ETIMEDOUT + 2 Attempting reconnection (attempt 1/3) + 3 Connection retry failed (attempt 2/3) + 4 Maximum retry attempts exceeded + 5 Backup connection failed: ECONNREFUSED + 6 Unable to establish database connection + +Root cause: payment-service cannot connect to its database. Check database availability, network, and credentials. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/test_case.yaml new file mode 100644 index 00000000000..a5141d43cc3 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/62_fetch_error_logs_with_errors/test_case.yaml @@ -0,0 +1,37 @@ +user_prompt: "post last 10 logs that contain \"ERROR\" from payment-service in production-62 namespace" +expected_output: | + The following logs are shown either directly or in summarized form: + ERROR: Database connection failed: ETIMEDOUT + ERROR: Attempting reconnection (attempt 1/3) + ERROR: Connection retry failed (attempt 2/3) + ERROR: Maximum retry attempts exceeded + ERROR: Backup connection failed: ECONNREFUSED + ERROR: Unable to establish database connection + + The following log is NOT shown: + INFO: Application starting up + WARN: Database connection slow + + The following log MAY be shown (it does not impact the correctness of the test): + FATAL: Shutting down application + +before_test: | + kubectl create namespace production-62 || true + kubectl create secret generic payment-service-logs-script \ + --from-file=generate_logs.py=./generate_logs.py \ + -n production-62 --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f ./manifest.yaml + kubectl wait --for=condition=available deployment/payment-service -n production-62 --timeout=90s + sleep 60 +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret payment-service-logs-script -n production-62 --ignore-not-found + kubectl delete namespace production-62 --ignore-not-found --wait=false + +tags: + - logs + - medium + - kubernetes + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/app.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/app.py new file mode 100644 index 00000000000..1dbdae4ec93 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/app.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import time +from datetime import datetime + + +def log(level, message): + """Print log message with timestamp and level""" + timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S") + print(f"{timestamp} {level}: {message}", flush=True) + + +def main(): + """Main application that generates logs without any ERROR level""" + log("INFO", "Application starting up") + log("INFO", "Loading configuration") + log("INFO", "Connecting to database") + time.sleep(0.5) + log("INFO", "Database connection established") + log("INFO", "Running health checks") + log("INFO", "All systems operational") + log("INFO", "Ready to serve requests") + + # Simulate some processing + log("DEBUG", "Processing request batch 1") + time.sleep(0.3) + log("INFO", "Request batch 1 completed successfully") + + log("DEBUG", "Processing request batch 2") + time.sleep(0.3) + log("INFO", "Request batch 2 completed successfully") + + log("INFO", "Application running smoothly") + + # Keep running with periodic heartbeat + while True: + log("INFO", "Heartbeat - application healthy") + time.sleep(60) + + +if __name__ == "__main__": + main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/fetch_pod_logsERROR_10_staging-63_user-api-6969cc599-n99kp.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/fetch_pod_logsERROR_10_staging-63_user-api-6969cc599-n99kp.txt new file mode 100644 index 00000000000..65c18c2d576 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/fetch_pod_logsERROR_10_staging-63_user-api-6969cc599-n99kp.txt @@ -0,0 +1,2 @@ +{"toolset_name":"kubernetes/logs","tool_name":"fetch_pod_logs","match_params":{"pod_name":"user-api-6969cc599-n99kp","namespace":"staging-63","filter":"ERROR","limit":10}} +{"schema_version": "robusta:v1.0.0", "status": "no_data", "error": null, "return_code": 0, "data": null, "url": null, "invocation": null, "params": {"namespace": "staging-63", "pod_name": "user-api-6969cc599-n99kp", "start_time": null, "end_time": null, "filter": "ERROR", "limit": 10}} diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/kubectl_find_resourceuser-api_pod.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/kubectl_find_resourceuser-api_pod.txt new file mode 100644 index 00000000000..1f24a3b41a0 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/kubectl_find_resourceuser-api_pod.txt @@ -0,0 +1,3 @@ +{"toolset_name":"kubernetes/core","tool_name":"kubectl_find_resource","match_params":{"kind":"pod","keyword":"user-api"}} +{"schema_version": "robusta:v1.0.0", "status": "success", "error": null, "return_code": 0, "data": null, "url": null, "invocation": "kubectl get -A --show-labels -o wide pod | grep user-api", "params": {"kind": "pod", "keyword": "user-api"}} +staging-63 user-api-6969cc599-n99kp 1/1 Running 0 16s 10.0.2.184 gke-natan-develop-pool-2-41363a6e-yi0r app=user-api,pod-template-hash=6969cc599 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/manifest.yaml new file mode 100644 index 00000000000..a05122ce1d4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/manifest.yaml @@ -0,0 +1,33 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: user-api + namespace: staging-63 +spec: + replicas: 1 + selector: + matchLabels: + app: user-api + template: + metadata: + labels: + app: user-api + spec: + containers: + - name: app-container + image: python:3.9-slim + command: ["python", "/app/app.py"] + volumeMounts: + - name: app-code + mountPath: /app + readOnly: true + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "64Mi" + volumes: + - name: app-code + secret: + secretName: app-code-63 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/mocks/response.txt new file mode 100644 index 00000000000..62cf321ab82 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/mocks/response.txt @@ -0,0 +1 @@ +No logs containing "ERROR" found in the last 10 entries for user-api-75c4d58bcd-tmbvt in staging-63. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/test_case.yaml new file mode 100644 index 00000000000..74b8f59622e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/63_fetch_error_logs_no_errors/test_case.yaml @@ -0,0 +1,17 @@ +user_prompt: "post last 10 logs that contain \"ERROR\" from user-api in staging-63 namespace" +expected_output: "No ERROR logs found" +before_test: | + # Create namespace first since the secret depends on it (|| true ignores if it already exists) + kubectl create namespace staging-63 || true + kubectl create secret generic app-code-63 -n staging-63 --from-file=app.py=./app.py --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f ./manifest.yaml + kubectl wait --for=condition=available deployment/user-api -n staging-63 --timeout=120s +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret app-code-63 -n staging-63 --ignore-not-found + kubectl delete namespace staging-63 --ignore-not-found --wait=false + +tags: + - logs + - easy + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/66_http_error_needle/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/66_http_error_needle/generate_logs.py new file mode 100644 index 00000000000..8c8eb805c65 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/66_http_error_needle/generate_logs.py @@ -0,0 +1,55 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import json +import random +from datetime import datetime, timedelta +import time + + +def generate_log_entry(status=200, message="OK", path="/api/health", level="INFO"): + timestamp = datetime.utcnow() - timedelta(seconds=random.randint(0, 3600)) + return json.dumps( + { + "timestamp": timestamp.isoformat() + "Z", + "level": "ERROR" if status >= 500 else level, + "service": "web-server", + "method": "GET", + "path": path, + "status": status, + "response_time_ms": random.randint(50, 200), + "message": message, + "client_ip": f"10.0.{random.randint(1,254)}.{random.randint(1,254)}", + "request_id": f"req-{random.randint(100000, 999999)}", + } + ) + + +def main(): + # Generate 50,000 successful requests + for i in range(50000): + print(generate_log_entry()) + + # The critical error in the middle + print( + generate_log_entry( + status=500, + message="Database connection timeout: Could not acquire connection from pool after 30s", + path="/api/orders", + ) + ) + + # Another 50,000 successful requests + for i in range(50000): + print(generate_log_entry()) + + # Keep pod running + while True: + time.sleep(3600) + + +if __name__ == "__main__": + main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/66_http_error_needle/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/66_http_error_needle/manifest.yaml new file mode 100644 index 00000000000..fc86e88bb17 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/66_http_error_needle/manifest.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: web-server + namespace: namespace-66 + labels: + app: web-server +spec: + replicas: 1 + selector: + matchLabels: + app: web-server + template: + metadata: + labels: + app: web-server + spec: + containers: + - name: web-server + image: python:3.9-slim + command: ["python"] + args: ["/scripts/generate_logs.py"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + volumes: + - name: script-volume + secret: + secretName: web-server-logs-script + defaultMode: 0755 + restartPolicy: Always diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/66_http_error_needle/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/66_http_error_needle/test_case.yaml new file mode 100644 index 00000000000..1d3dfdefd49 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/66_http_error_needle/test_case.yaml @@ -0,0 +1,22 @@ +user_prompt: "Whats wrong with web-server pod in namespace-66" +tags: + - logs + - context_window + - easy + - kubernetes +expected_output: + - Database connection timeout error occurred because could not acquire connection from pool after 30s +before_test: | + # Create namespace first since the secret depends on it (|| true ignores if it already exists) + kubectl create namespace namespace-66 || true + kubectl create secret generic web-server-logs-script \ + --from-file=generate_logs.py=./generate_logs.py \ + -n namespace-66 --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f ./manifest.yaml + sleep 30 +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret web-server-logs-script -n namespace-66 --ignore-not-found + kubectl delete namespace namespace-66 --ignore-not-found --wait=false +evaluation: + correctness: strict diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/67_performance_degradation/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/67_performance_degradation/generate_logs.py new file mode 100644 index 00000000000..ee6e0645f2e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/67_performance_degradation/generate_logs.py @@ -0,0 +1,64 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import json +from datetime import datetime +import time +import math + + +def generate_log_entry(response_time_ms, status="success", message=None): + timestamp = datetime.utcnow() + + if response_time_ms > 5000: + status = "timeout" + message = "Request timeout after 5000ms" + elif response_time_ms > 3000: + status = "slow" + message = "Response time exceeding SLA" + + return json.dumps( + { + "timestamp": timestamp.isoformat() + "Z", + "level": "ERROR" + if status == "timeout" + else "WARN" + if status == "slow" + else "INFO", + "service": "api-gateway", + "endpoint": "/api/process", + "response_time_ms": response_time_ms, + "status": status, + "message": message or f"Request processed in {response_time_ms}ms", + "cpu_usage": min( + 95, 20 + (response_time_ms / 100) + ), # CPU increases with response time + "memory_mb": 256 + (response_time_ms / 50), # Memory also increases + } + ) + + +def main(): + # Generate 100,000 logs showing gradual degradation + base_time = 100 # Start at 100ms + + for i in range(100000): + # Exponential growth in response time + # At i=0: 100ms, at i=50000: ~500ms, at i=90000: ~3000ms, at i=100000: timeout + response_time = int(base_time * math.exp(i / 20000)) + + # Cap at 6000ms to show timeouts + response_time = min(6000, response_time) + + print(generate_log_entry(response_time)) + + # Keep pod running + while True: + time.sleep(3600) + + +if __name__ == "__main__": + main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/67_performance_degradation/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/67_performance_degradation/manifest.yaml new file mode 100644 index 00000000000..c137c86b871 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/67_performance_degradation/manifest.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: api-gateway + namespace: namespace-67 + labels: + app: api-gateway +spec: + replicas: 1 + selector: + matchLabels: + app: api-gateway + template: + metadata: + labels: + app: api-gateway + spec: + containers: + - name: api-gateway + image: python:3.9-slim + command: ["python"] + args: ["/scripts/generate_logs.py"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + volumes: + - name: script-volume + secret: + secretName: api-gateway-logs-script + defaultMode: 0755 + restartPolicy: Always diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/67_performance_degradation/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/67_performance_degradation/test_case.yaml new file mode 100644 index 00000000000..34c11bf8505 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/67_performance_degradation/test_case.yaml @@ -0,0 +1,22 @@ +user_prompt: "What's wrong with api-gateway pod in namespace-67?" +tags: + - logs + - context_window + - medium + - kubernetes +expected_output: + - API gateway experiencing gradual performance degradation with response times increasing from 100ms to timeout after 5000ms +before_test: | + # Create namespace first since the secret depends on it (|| true ignores if it already exists) + kubectl create namespace namespace-67 || true + kubectl create secret generic api-gateway-logs-script \ + --from-file=generate_logs.py=./generate_logs.py \ + -n namespace-67 --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f ./manifest.yaml + sleep 40 +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret api-gateway-logs-script -n namespace-67 --ignore-not-found + kubectl delete namespace namespace-67 --ignore-not-found --wait=false +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/68_cascading_failures/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/68_cascading_failures/generate_logs.py new file mode 100644 index 00000000000..02096c935c2 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/68_cascading_failures/generate_logs.py @@ -0,0 +1,124 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import json +from datetime import datetime, timedelta +import time +import random + + +def generate_log_entry(service, level, message, timestamp_offset=0, trace_id=None): + timestamp = datetime.utcnow() - timedelta(seconds=timestamp_offset) + entry = { + "timestamp": timestamp.isoformat() + "Z", + "level": level, + "service": service, + "message": message, + "instance_id": f"{service}-{random.randint(1,3)}", + } + if trace_id: + entry["trace_id"] = trace_id + return json.dumps(entry) + + +def main(): + # Generate normal logs for first 10,000 entries + services = ["auth-service", "user-service", "order-service", "payment-processor"] + + for i in range(10000): + service = random.choice(services) + print( + generate_log_entry( + service, + "INFO", + "Processing request successfully", + timestamp_offset=3600 - i * 0.3, + ) + ) + + # The cascading failure starts here (around 10% into logs) + base_time = 3600 - 10000 * 0.3 + + # Root cause: Redis connection lost in auth-service + print( + generate_log_entry( + "auth-service", + "ERROR", + "Lost connection to Redis: Connection refused (ECONNREFUSED) redis-master:6379", + timestamp_offset=base_time, + ) + ) + + # 5 seconds later: user-service fails + print( + generate_log_entry( + "user-service", + "ERROR", + "Auth service unavailable: Failed to validate token - auth-service returned 503", + timestamp_offset=base_time - 5, + trace_id="trace-failure-001", + ) + ) + + # 10 seconds later: order-service fails + print( + generate_log_entry( + "order-service", + "ERROR", + "Cannot validate user: user-service responded with 503 Service Unavailable", + timestamp_offset=base_time - 10, + trace_id="trace-failure-001", + ) + ) + + # 15 seconds later: payment-processor fails + print( + generate_log_entry( + "payment-processor", + "ERROR", + "Order validation failed: Unable to process payment - order-service returned error", + timestamp_offset=base_time - 15, + trace_id="trace-failure-001", + ) + ) + + # More error logs showing the cascade + for i in range(100): + service = random.choice(services) + if service == "auth-service": + msg = "Redis connection failed: Connection pool exhausted" + elif service == "user-service": + msg = "Authentication service dependency failure" + elif service == "order-service": + msg = "User validation service unavailable" + else: + msg = "Upstream service chain failure" + + print( + generate_log_entry( + service, "ERROR", msg, timestamp_offset=base_time - 20 - i * 0.5 + ) + ) + + # Generate more normal logs to bury the errors + for i in range(89900): + service = random.choice(services) + print( + generate_log_entry( + service, + "INFO", + "Processing request successfully", + timestamp_offset=base_time - 100 - i * 0.3, + ) + ) + + # Keep pod running + while True: + time.sleep(3600) + + +if __name__ == "__main__": + main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/68_cascading_failures/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/68_cascading_failures/manifest.yaml new file mode 100644 index 00000000000..0fe9cc8fba3 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/68_cascading_failures/manifest.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: payment-processor + namespace: namespace-68 + labels: + app: payment-processor +spec: + replicas: 1 + selector: + matchLabels: + app: payment-processor + template: + metadata: + labels: + app: payment-processor + spec: + containers: + - name: payment-processor + image: python:3.9-slim + command: ["python"] + args: ["/scripts/generate_logs.py"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + volumes: + - name: script-volume + secret: + secretName: payment-processor-logs-script + defaultMode: 0755 + restartPolicy: Always diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/68_cascading_failures/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/68_cascading_failures/test_case.yaml new file mode 100644 index 00000000000..5975356d731 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/68_cascading_failures/test_case.yaml @@ -0,0 +1,23 @@ +user_prompt: "What caused the payment-processor pod failures in namespace-68?" +tags: + - logs + - context_window + - hard + - chain-of-causation + - kubernetes +expected_output: + - Payment processor failures caused by cascading failure starting from auth-service losing connection to Redis +before_test: | + # Create namespace first since the secret depends on it (|| true ignores if it already exists) + kubectl create namespace namespace-68 || true + kubectl create secret generic payment-processor-logs-script \ + --from-file=generate_logs.py=./generate_logs.py \ + -n namespace-68 --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f ./manifest.yaml + sleep 40 +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret payment-processor-logs-script -n namespace-68 --ignore-not-found + kubectl delete namespace namespace-68 --ignore-not-found --wait=false +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/69_rate_limit_exhaustion/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/69_rate_limit_exhaustion/generate_logs.py new file mode 100644 index 00000000000..0e1c7bab801 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/69_rate_limit_exhaustion/generate_logs.py @@ -0,0 +1,101 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import json +from datetime import datetime +import time +import random + + +def generate_log_entry(status=200, req_per_sec=10, client_ip=None, message="OK"): + timestamp = datetime.utcnow() + + return json.dumps( + { + "timestamp": timestamp.isoformat() + "Z", + "level": "ERROR" if status == 429 else "INFO", + "service": "api-limiter", + "method": "POST", + "path": "/api/data/ingest", + "status": status, + "message": message, + "client_ip": client_ip + or f"10.0.{random.randint(1,254)}.{random.randint(1,254)}", + "requests_per_second": req_per_sec, + "rate_limit": "100/second", + "request_id": f"req-{random.randint(100000, 999999)}", + } + ) + + +def main(): + # Generate 80,000 normal traffic logs (10 req/sec) + for i in range(80000): + print( + generate_log_entry( + status=200, + req_per_sec=random.randint(8, 12), + message="Request processed successfully", + ) + ) + + # Sudden spike from a specific client (position: 80% through logs) + spike_client = "10.0.50.123" + + # Log showing spike detection + print( + json.dumps( + { + "timestamp": datetime.utcnow().isoformat() + "Z", + "level": "WARN", + "service": "api-limiter", + "message": f"Traffic spike detected from {spike_client}: 1000 requests/second", + "client_ip": spike_client, + "requests_per_second": 1000, + "rate_limit_threshold": 100, + } + ) + ) + + # Generate 60 seconds of spike traffic (1000 req/sec) + for i in range(60000): + print( + generate_log_entry( + status=200, + req_per_sec=1000, + client_ip=spike_client, + message="Request processed (high rate)", + ) + ) + + # Rate limiting kicks in - 5,000 rejected requests + for i in range(5000): + print( + generate_log_entry( + status=429, + req_per_sec=1000, + client_ip=spike_client, + message="Too Many Requests - Rate limit exceeded (100/second)", + ) + ) + + # Back to normal traffic + for i in range(5000): + print( + generate_log_entry( + status=200, + req_per_sec=random.randint(8, 12), + message="Request processed successfully", + ) + ) + + # Keep pod running + while True: + time.sleep(3600) + + +if __name__ == "__main__": + main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/69_rate_limit_exhaustion/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/69_rate_limit_exhaustion/manifest.yaml new file mode 100644 index 00000000000..ae31349c18f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/69_rate_limit_exhaustion/manifest.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: api-limiter + namespace: namespace-69 + labels: + app: api-limiter +spec: + replicas: 1 + selector: + matchLabels: + app: api-limiter + template: + metadata: + labels: + app: api-limiter + spec: + containers: + - name: api-limiter + image: python:3.9-slim + command: ["python"] + args: ["/scripts/generate_logs.py"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + volumes: + - name: script-volume + secret: + secretName: api-limiter-logs-script + defaultMode: 0755 + restartPolicy: Always diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/69_rate_limit_exhaustion/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/69_rate_limit_exhaustion/test_case.yaml new file mode 100644 index 00000000000..5b4537f2c4d --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/69_rate_limit_exhaustion/test_case.yaml @@ -0,0 +1,22 @@ +user_prompt: "Why is the api-limiter pod in namespace-69 returning errors?" +tags: + - logs + - context_window + - hard + - kubernetes +expected_output: + - API limiter returning 429 Too Many Requests errors due to traffic spike of 1000 requests/second exceeding rate limit of 100/second +before_test: | + # Create namespace first since the secret depends on it (|| true ignores if it already exists) + kubectl create namespace namespace-69 || true + kubectl create secret generic api-limiter-logs-script \ + --from-file=generate_logs.py=./generate_logs.py \ + -n namespace-69 --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f ./manifest.yaml + sleep 45 +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret api-limiter-logs-script -n namespace-69 --ignore-not-found + kubectl delete namespace namespace-69 --ignore-not-found --wait=false +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/70_memory_leak_detection/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/70_memory_leak_detection/generate_logs.py new file mode 100644 index 00000000000..052b4a829c5 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/70_memory_leak_detection/generate_logs.py @@ -0,0 +1,100 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import json +from datetime import datetime +import time + + +def generate_log_entry(memory_mb, gc_pause_ms=None, error=None): + timestamp = datetime.utcnow() + + entry = { + "timestamp": timestamp.isoformat() + "Z", + "level": "ERROR" if error else "WARN" if memory_mb > 3000 else "INFO", + "service": "data-processor", + "memory_usage_mb": memory_mb, + "memory_limit_mb": 4096, + "memory_percentage": round((memory_mb / 4096) * 100, 2), + } + + if gc_pause_ms: + entry["gc_pause_ms"] = gc_pause_ms + entry["message"] = f"GC pause detected: {gc_pause_ms}ms" + elif error: + entry["error"] = error + entry["message"] = error + else: + entry["message"] = ( + f"Memory usage: {memory_mb}MB ({entry['memory_percentage']}%)" + ) + + return json.dumps(entry) + + +def main(): + # Simulate gradual memory leak over time + # Start at 100MB, grow to 4096MB (OOM) + + base_memory = 100 + records_per_gb = 25000 # Distribute memory growth across logs + + for i in range(100000): + # Calculate current memory usage (exponential growth) + memory_mb = int(base_memory + (i / records_per_gb) * 1000) + + # Cap at 4096MB + memory_mb = min(4096, memory_mb) + + # GC pauses get longer as memory pressure increases + if i % 1000 == 0 and memory_mb > 1000: + gc_pause = int((memory_mb / 4096) * 500) # Max 500ms GC pause + print(generate_log_entry(memory_mb, gc_pause_ms=gc_pause)) + + # Regular memory usage logs + print(generate_log_entry(memory_mb)) + + # Memory warnings as we approach limit + if memory_mb > 3500 and i % 100 == 0: + print( + json.dumps( + { + "timestamp": datetime.utcnow().isoformat() + "Z", + "level": "WARN", + "service": "data-processor", + "message": f"Memory usage critical: {memory_mb}MB of 4096MB ({round((memory_mb/4096)*100, 2)}%)", + "action": "Consider increasing memory limit or investigating memory leak", + } + ) + ) + + # OutOfMemoryError at the end + if memory_mb == 4096 and i > 99000: + print( + generate_log_entry( + memory_mb, error="java.lang.OutOfMemoryError: Java heap space" + ) + ) + print( + json.dumps( + { + "timestamp": datetime.utcnow().isoformat() + "Z", + "level": "ERROR", + "service": "data-processor", + "message": "Application crashed due to OutOfMemoryError", + "stack_trace": "java.lang.OutOfMemoryError: Java heap space\n\tat com.example.DataProcessor.processData(DataProcessor.java:142)\n\tat com.example.DataProcessor.main(DataProcessor.java:45)", + } + ) + ) + break + + # Keep pod running + while True: + time.sleep(3600) + + +if __name__ == "__main__": + main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/70_memory_leak_detection/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/70_memory_leak_detection/manifest.yaml new file mode 100644 index 00000000000..3cb191c39f3 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/70_memory_leak_detection/manifest.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: data-processor + namespace: namespace-70 + labels: + app: data-processor +spec: + replicas: 1 + selector: + matchLabels: + app: data-processor + template: + metadata: + labels: + app: data-processor + spec: + containers: + - name: data-processor + image: python:3.9-slim + command: ["python"] + args: ["/scripts/generate_logs.py"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + volumes: + - name: script-volume + secret: + secretName: data-processor-logs-script + defaultMode: 0755 + restartPolicy: Always diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/70_memory_leak_detection/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/70_memory_leak_detection/test_case.yaml new file mode 100644 index 00000000000..569757e5388 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/70_memory_leak_detection/test_case.yaml @@ -0,0 +1,23 @@ +user_prompt: "What's wrong with the data-processor pod in namespace-70?" +tags: + - logs + - context_window + - medium + - kubernetes +expected_output: + - Data processor experiencing memory leak with usage increasing from 100MB to 4096MB resulting in OutOfMemoryError +before_test: | + # Create namespace first since the secret depends on it (|| true ignores if it already exists) + kubectl create namespace namespace-70 || true + kubectl create secret generic data-processor-logs-script \ + --from-file=generate_logs.py=./generate_logs.py \ + -n namespace-70 --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f ./manifest.yaml + sleep 40 +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret data-processor-logs-script -n namespace-70 --ignore-not-found + kubectl delete namespace namespace-70 --ignore-not-found --wait=false + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/71_connection_pool_starvation/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/71_connection_pool_starvation/generate_logs.py new file mode 100644 index 00000000000..aa7c3b52462 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/71_connection_pool_starvation/generate_logs.py @@ -0,0 +1,154 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import json +from datetime import datetime +import time +import random + + +def generate_log_entry( + active_connections, + max_connections=100, + wait_time=None, + error=None, + sequence_num=None, +): + timestamp = datetime.utcnow() + + level = "INFO" + message = f"Database pool status: {active_connections}/{max_connections} connections active" + + if error: + level = "ERROR" + message = error + elif active_connections >= 95: + level = "WARN" + message = ( + f"Connection pool nearly exhausted: {active_connections}/{max_connections}" + ) + elif active_connections >= 80: + level = "WARN" + message = f"High connection pool usage: {active_connections}/{max_connections}" + + entry = { + "timestamp": timestamp.isoformat() + "Z", + "level": level, + "service": "backend-service", + "component": "database-pool", + "active_connections": active_connections, + "max_connections": max_connections, + "pool_usage_percent": round((active_connections / max_connections) * 100, 2), + "message": message, + } + + if wait_time: + entry["connection_wait_ms"] = wait_time + + if sequence_num is not None: + entry["seq"] = sequence_num + + return json.dumps(entry) + + +def main(): + seq = 0 + + # Normal operation for first ~1000 logs (5-20 connections) + # Was 50,000, now 1000 (50% of total) + for i in range(1000): + connections = random.randint(5, 20) + print(generate_log_entry(connections, sequence_num=seq)) + seq += 1 + + # Gradual increase during peak hours + # Was 10,000, now 200 (10% of total) + for i in range(200): + # Gradually increase from 20 to 80 connections + connections = 20 + int((i / 200) * 60) + wait_time = None if connections < 70 else random.randint(100, 500) + print(generate_log_entry(connections, wait_time=wait_time, sequence_num=seq)) + seq += 1 + + # Warning phase - approaching limit + print( + json.dumps( + { + "timestamp": datetime.utcnow().isoformat() + "Z", + "level": "WARN", + "service": "backend-service", + "component": "database-pool", + "message": "Connection wait time increasing: Average wait 500ms", + "avg_wait_ms": 500, + "active_connections": 80, + "seq": seq, + } + ) + ) + seq += 1 + + # Continue increasing to near limit + # Was 5,000, now 100 (5% of total) + for i in range(100): + connections = 80 + int((i / 100) * 15) # 80 to 95 + wait_time = random.randint(500, 2000) + print(generate_log_entry(connections, wait_time=wait_time, sequence_num=seq)) + seq += 1 + + # Critical phase - pool exhausted + print( + json.dumps( + { + "timestamp": datetime.utcnow().isoformat() + "Z", + "level": "ERROR", + "service": "backend-service", + "component": "database-pool", + "message": "Connection pool exhausted!", + "active_connections": 100, + "max_connections": 100, + "rejected_requests": 0, + "seq": seq, + } + ) + ) + seq += 1 + + # Multiple timeout errors + # Was 1,000, now 20 (1% of total) + for i in range(20): + print( + generate_log_entry( + 100, + error="Timeout waiting for database connection after 30000ms - Pool exhausted (100/100)", + sequence_num=seq, + ) + ) + seq += 1 + + # Some successful requests that managed to get connections + if i % 10 == 0: + print( + generate_log_entry( + 100, wait_time=random.randint(25000, 30000), sequence_num=seq + ) + ) + seq += 1 + + # More normal logs after the incident + # Was 34,000, now ~677 to reach 2000 total + remaining = 2000 - seq + for i in range(remaining): + connections = random.randint(5, 20) + print(generate_log_entry(connections, sequence_num=seq)) + seq += 1 + + # Keep pod running + while True: + time.sleep(3600) + + +if __name__ == "__main__": + main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/71_connection_pool_starvation/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/71_connection_pool_starvation/manifest.yaml new file mode 100644 index 00000000000..0d0da94843b --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/71_connection_pool_starvation/manifest.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: backend-service + namespace: namespace-71 + labels: + app: backend-service +spec: + replicas: 1 + selector: + matchLabels: + app: backend-service + template: + metadata: + labels: + app: backend-service + spec: + containers: + - name: backend-service + image: python:3.9-slim + command: ["python"] + args: ["/scripts/generate_logs.py"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + volumes: + - name: script-volume + secret: + secretName: backend-service-logs-script + defaultMode: 0755 + restartPolicy: Always diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/71_connection_pool_starvation/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/71_connection_pool_starvation/test_case.yaml new file mode 100644 index 00000000000..f3e866d771f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/71_connection_pool_starvation/test_case.yaml @@ -0,0 +1,22 @@ +user_prompt: "Whats wrong with backend-service pod in namespace-71?" +tags: + - logs + - context_window + - medium + - kubernetes +expected_output: + - Backend service unable to handle requests due to database connection pool exhausted at 100/100 connections causing timeouts +before_test: | + # Create namespace first since the secret depends on it (|| true ignores if it already exists) + kubectl create namespace namespace-71 || true + kubectl create secret generic backend-service-logs-script \ + --from-file=generate_logs.py=./generate_logs.py \ + -n namespace-71 --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f ./manifest.yaml + sleep 40 +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret backend-service-logs-script -n namespace-71 --ignore-not-found + kubectl delete namespace namespace-71 --ignore-not-found --wait=false +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73a_time_window_anomaly/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73a_time_window_anomaly/generate_logs.py new file mode 100644 index 00000000000..106850b8da1 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73a_time_window_anomaly/generate_logs.py @@ -0,0 +1,107 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import json +from datetime import datetime, timedelta +import time +import random + + +def generate_log_entry( + timestamp, status="success", message="Job executed successfully", error=None +): + entry = { + "timestamp": timestamp.isoformat() + "Z", + "level": "ERROR" if error else "INFO", + "service": "scheduler", + "job": "data-sync", + "status": status, + "message": message, + } + + if error: + entry["error"] = error + + return json.dumps(entry) + + +def main(): + # Generate 24 hours of logs, with issues only between 03:00-03:05 + start_time = datetime.utcnow() - timedelta(hours=24) + + # Generate a log every 10 seconds for 24 hours + current_time = start_time + log_count = 0 + + while current_time < datetime.utcnow(): + # Check if we're in the problematic time window (03:00-03:05) + hour = current_time.hour + minute = current_time.minute + + if hour == 3 and minute >= 0 and minute <= 5: + # Generate error logs during this window + print( + generate_log_entry( + current_time, + status="failed", + message="Job failed - Cannot connect to external API", + error="ConnectionError: Failed to establish connection to https://api.external-service.com - Connection timed out", + ) + ) + + # Add some diagnostic logs + if minute == 0 and current_time.second < 10: + print( + json.dumps( + { + "timestamp": current_time.isoformat() + "Z", + "level": "WARN", + "service": "scheduler", + "message": "Detected repeated failures during 03:00-03:05 window", + "note": "This appears to be a recurring pattern - possible maintenance window?", + } + ) + ) + else: + # Normal operation + print( + generate_log_entry( + current_time, + status="success", + message=f"Job executed successfully in {random.randint(100, 500)}ms", + ) + ) + + # Add some variety with different job types + if log_count % 100 == 0: + print( + json.dumps( + { + "timestamp": current_time.isoformat() + "Z", + "level": "INFO", + "service": "scheduler", + "job": "health-check", + "status": "success", + "message": "System health check passed", + } + ) + ) + + # Advance time by 10 seconds + current_time += timedelta(seconds=10) + log_count += 1 + + # Add slight randomness to make it more realistic + if random.random() < 0.1: + current_time += timedelta(seconds=random.randint(1, 5)) + + # Keep pod running + while True: + time.sleep(3600) + + +if __name__ == "__main__": + main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73a_time_window_anomaly/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73a_time_window_anomaly/manifest.yaml new file mode 100644 index 00000000000..7f4c2680853 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73a_time_window_anomaly/manifest.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: task-scheduler + namespace: namespace-73a + labels: + app: task-scheduler +spec: + replicas: 1 + selector: + matchLabels: + app: task-scheduler + template: + metadata: + labels: + app: task-scheduler + spec: + containers: + - name: task-scheduler + image: python:3.9-slim + command: ["python"] + args: ["/scripts/generate_logs.py"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + volumes: + - name: script-volume + secret: + secretName: task-scheduler-logs-script + defaultMode: 0755 + restartPolicy: Always diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73a_time_window_anomaly/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73a_time_window_anomaly/test_case.yaml new file mode 100644 index 00000000000..9e264bf5919 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73a_time_window_anomaly/test_case.yaml @@ -0,0 +1,22 @@ +user_prompt: "Were there issues with the task-scheduler pod in namespace-73a?" +tags: + - logs + - context_window + - datetime + - medium + - kubernetes +expected_output: + - Task scheduler pod experienced temporary issues between when it could not connect to an external API possibly due to a maintenance window +before_test: | + # Create namespace first since the secret depends on it (|| true ignores if it already exists) + kubectl create namespace namespace-73a || true + kubectl create secret generic task-scheduler-logs-script --from-file=generate_logs.py=./generate_logs.py -n namespace-73a --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f ./manifest.yaml + sleep 50 +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret task-scheduler-logs-script -n namespace-73a --ignore-not-found + kubectl delete namespace namespace-73a --ignore-not-found --wait=false + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73b_time_window_anomaly/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73b_time_window_anomaly/generate_logs.py new file mode 100644 index 00000000000..106850b8da1 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73b_time_window_anomaly/generate_logs.py @@ -0,0 +1,107 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import json +from datetime import datetime, timedelta +import time +import random + + +def generate_log_entry( + timestamp, status="success", message="Job executed successfully", error=None +): + entry = { + "timestamp": timestamp.isoformat() + "Z", + "level": "ERROR" if error else "INFO", + "service": "scheduler", + "job": "data-sync", + "status": status, + "message": message, + } + + if error: + entry["error"] = error + + return json.dumps(entry) + + +def main(): + # Generate 24 hours of logs, with issues only between 03:00-03:05 + start_time = datetime.utcnow() - timedelta(hours=24) + + # Generate a log every 10 seconds for 24 hours + current_time = start_time + log_count = 0 + + while current_time < datetime.utcnow(): + # Check if we're in the problematic time window (03:00-03:05) + hour = current_time.hour + minute = current_time.minute + + if hour == 3 and minute >= 0 and minute <= 5: + # Generate error logs during this window + print( + generate_log_entry( + current_time, + status="failed", + message="Job failed - Cannot connect to external API", + error="ConnectionError: Failed to establish connection to https://api.external-service.com - Connection timed out", + ) + ) + + # Add some diagnostic logs + if minute == 0 and current_time.second < 10: + print( + json.dumps( + { + "timestamp": current_time.isoformat() + "Z", + "level": "WARN", + "service": "scheduler", + "message": "Detected repeated failures during 03:00-03:05 window", + "note": "This appears to be a recurring pattern - possible maintenance window?", + } + ) + ) + else: + # Normal operation + print( + generate_log_entry( + current_time, + status="success", + message=f"Job executed successfully in {random.randint(100, 500)}ms", + ) + ) + + # Add some variety with different job types + if log_count % 100 == 0: + print( + json.dumps( + { + "timestamp": current_time.isoformat() + "Z", + "level": "INFO", + "service": "scheduler", + "job": "health-check", + "status": "success", + "message": "System health check passed", + } + ) + ) + + # Advance time by 10 seconds + current_time += timedelta(seconds=10) + log_count += 1 + + # Add slight randomness to make it more realistic + if random.random() < 0.1: + current_time += timedelta(seconds=random.randint(1, 5)) + + # Keep pod running + while True: + time.sleep(3600) + + +if __name__ == "__main__": + main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73b_time_window_anomaly/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73b_time_window_anomaly/manifest.yaml new file mode 100644 index 00000000000..d7bef76b434 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73b_time_window_anomaly/manifest.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cron-scheduler + namespace: namespace-73b + labels: + app: cron-scheduler +spec: + replicas: 1 + selector: + matchLabels: + app: cron-scheduler + template: + metadata: + labels: + app: cron-scheduler + spec: + containers: + - name: cron-scheduler + image: python:3.9-slim + command: ["python"] + args: ["/scripts/generate_logs.py"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + volumes: + - name: script-volume + secret: + secretName: cron-scheduler-logs-script + defaultMode: 0755 + restartPolicy: Always diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73b_time_window_anomaly/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73b_time_window_anomaly/test_case.yaml new file mode 100644 index 00000000000..a98ec29babd --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/73b_time_window_anomaly/test_case.yaml @@ -0,0 +1,23 @@ +user_prompt: "Were there issues with the cron-scheduler pod in namespace-73b?" +tags: + - logs + - context_window + - datetime + - medium + - kubernetes +expected_output: + - Cron scheduler pod experienced issues between 03:00-03:05 when it could not connect to an external API possibly due to a maintenance window + - Answer MUST include the time window of the issue (03:00-03:05) +before_test: | + # Create namespace first since the secret depends on it (|| true ignores if it already exists) + kubectl create namespace namespace-73b || true + kubectl create secret generic cron-scheduler-logs-script --from-file=generate_logs.py=./generate_logs.py -n namespace-73b --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f ./manifest.yaml + sleep 50 +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret cron-scheduler-logs-script -n namespace-73b --ignore-not-found + kubectl delete namespace namespace-73b --ignore-not-found --wait=false + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/74_config_change_impact/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/74_config_change_impact/generate_logs.py new file mode 100644 index 00000000000..4be41fc99a1 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/74_config_change_impact/generate_logs.py @@ -0,0 +1,126 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import json +from datetime import datetime +import time +import random + + +def generate_log_entry( + cache_ttl, cache_hits, cache_misses, message="Cache operation completed" +): + timestamp = datetime.utcnow() + hit_rate = ( + (cache_hits / (cache_hits + cache_misses) * 100) + if (cache_hits + cache_misses) > 0 + else 0 + ) + + entry = { + "timestamp": timestamp.isoformat() + "Z", + "level": "WARN" if hit_rate < 50 else "INFO", + "service": "cache-service", + "cache_stats": { + "hits": cache_hits, + "misses": cache_misses, + "rate": round(hit_rate, 2), + }, + "message": message, + } + + # Only occasionally include the TTL in metadata + if random.random() < 0.05: # 5% chance + entry["metadata"] = {"ttl": cache_ttl} + + return json.dumps(entry) + + +def main(): + # First 50,000 logs with normal cache TTL (3600 seconds = 1 hour) + total_hits = 0 + total_misses = 0 + + for i in range(50000): + # Good cache performance with 1 hour TTL + if random.random() < 0.85: # 85% hit rate + total_hits += 1 + hits = 1 + else: + total_misses += 1 + hits = 0 + + print( + generate_log_entry( + cache_ttl=3600, + cache_hits=total_hits, + cache_misses=total_misses, + message=f"Cache {'hit' if hits else 'miss'} for key: {random.randint(1000, 9999)}", + ) + ) + + # Just a generic config reload message without details + print( + json.dumps( + { + "timestamp": datetime.utcnow().isoformat() + "Z", + "level": "INFO", + "service": "cache-service", + "event": "configuration_reload", + "message": "Configuration reloaded successfully", + } + ) + ) + + # Next 50,000 logs with reduced cache TTL (60 seconds) + # Reset counters to show the dramatic change + total_hits = 0 + total_misses = 0 + + for i in range(50000): + # Poor cache performance with 60 second TTL + if random.random() < 0.25: # Only 25% hit rate now + total_hits += 1 + hits = 1 + else: + total_misses += 1 + hits = 0 + + print( + generate_log_entry( + cache_ttl=60, + cache_hits=total_hits, + cache_misses=total_misses, + message=f"Cache {'hit' if hits else 'miss'} for key: {random.randint(1000, 9999)}", + ) + ) + + # Add periodic warnings about poor cache performance + if i % 1000 == 0 and i > 0: + hit_rate = total_hits / (total_hits + total_misses) * 100 + if hit_rate < 30: + print( + json.dumps( + { + "timestamp": datetime.utcnow().isoformat() + "Z", + "level": "ERROR", + "service": "cache-service", + "message": "Performance degradation detected", + "metrics": { + "hit_rate": round(hit_rate, 2), + "total_operations": total_hits + total_misses, + }, + } + ) + ) + + # Keep pod running + while True: + time.sleep(3600) + + +if __name__ == "__main__": + main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/74_config_change_impact/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/74_config_change_impact/manifest.yaml new file mode 100644 index 00000000000..841c8628a8f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/74_config_change_impact/manifest.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: cache-service + namespace: namespace-74 + labels: + app: cache-service +spec: + replicas: 1 + selector: + matchLabels: + app: cache-service + template: + metadata: + labels: + app: cache-service + spec: + containers: + - name: cache-service + image: python:3.9-slim + command: ["python"] + args: ["/scripts/generate_logs.py"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + volumes: + - name: script-volume + secret: + secretName: cache-service-logs-script + defaultMode: 0755 + restartPolicy: Always diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/74_config_change_impact/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/74_config_change_impact/test_case.yaml new file mode 100644 index 00000000000..1655b358379 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/74_config_change_impact/test_case.yaml @@ -0,0 +1,25 @@ +user_prompt: "Why is the cache-service pod in namespace-74 performing poorly?" +tags: + - logs + - context_window + - hard + - kubernetes +expected_output: + - Cache service experiencing performance degradation after configuration reload event + - Cache hit rate dropped significantly (from ~85% to ~25%) + - Issue correlates with configuration change that likely modified cache expiration settings + - Performance metrics show clear before/after pattern around config reload timestamp +before_test: | + # Create namespace first since the secret depends on it (|| true ignores if it already exists) + kubectl create namespace namespace-74 || true + kubectl create secret generic cache-service-logs-script \ + --from-file=generate_logs.py=./generate_logs.py \ + -n namespace-74 --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f ./manifest.yaml + sleep 40 +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret cache-service-logs-script -n namespace-74 --ignore-not-found + kubectl delete namespace namespace-74 --ignore-not-found --wait=false +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/75_network_flapping/generate_logs.py b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/75_network_flapping/generate_logs.py new file mode 100644 index 00000000000..729342eeca1 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/75_network_flapping/generate_logs.py @@ -0,0 +1,186 @@ +#!/usr/bin/env python3 +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import json +from datetime import datetime +import time +import random + + +def generate_log_entry( + status="success", response_time=None, error=None, timeout_rate=0 +): + timestamp = datetime.utcnow() + + entry = { + "timestamp": timestamp.isoformat() + "Z", + "level": "ERROR" if error else "WARN" if timeout_rate > 0.1 else "INFO", + "service": "frontend", + "endpoint": "/api/backend", + "status": status, + } + + if response_time: + entry["response_time_ms"] = response_time + if error: + entry["error"] = error + entry["message"] = error + else: + entry["message"] = f"Request completed - Status: {status}" + if timeout_rate > 0: + entry["network_timeout_rate"] = round(timeout_rate, 3) + + return json.dumps(entry) + + +def main(): + # Pattern: Network issues that gradually worsen + # Phase 1: 1 timeout per 1000 requests (0.1%) + # Phase 2: 1 timeout per 100 requests (1%) + # Phase 3: 1 timeout per 10 requests (10%) + # Phase 4: More timeouts than successes (>50%) + + total_requests = 0 + total_timeouts = 0 + + # Phase 1: Very occasional timeouts (25,000 requests) + print( + json.dumps( + { + "timestamp": datetime.utcnow().isoformat() + "Z", + "level": "INFO", + "service": "frontend", + "message": "Network monitoring started", + "phase": "normal_operation", + } + ) + ) + + for i in range(25000): + total_requests += 1 + if i % 1000 == 500: # 1 in 1000 + total_timeouts += 1 + print( + generate_log_entry( + status="timeout", + error="Network timeout: Connection to backend timed out after 30000ms", + timeout_rate=total_timeouts / total_requests, + ) + ) + else: + print( + generate_log_entry( + status="success", response_time=random.randint(50, 200) + ) + ) + + # Phase 2: Degrading (25,000 requests) + print( + json.dumps( + { + "timestamp": datetime.utcnow().isoformat() + "Z", + "level": "WARN", + "service": "frontend", + "message": "Network degradation detected - timeout rate increasing", + "timeout_rate": round(total_timeouts / total_requests, 3), + } + ) + ) + + for i in range(25000): + total_requests += 1 + if i % 100 == 50: # 1 in 100 + total_timeouts += 1 + print( + generate_log_entry( + status="timeout", + error="Network timeout: Connection to backend timed out after 30000ms", + timeout_rate=total_timeouts / total_requests, + ) + ) + else: + print( + generate_log_entry( + status="success", + response_time=random.randint(100, 500), # Slower responses + ) + ) + + # Phase 3: Significant issues (25,000 requests) + print( + json.dumps( + { + "timestamp": datetime.utcnow().isoformat() + "Z", + "level": "ERROR", + "service": "frontend", + "message": "Network issues critical - high timeout rate detected", + "timeout_rate": round(total_timeouts / total_requests, 3), + "alert": "Network flapping detected between frontend and backend", + } + ) + ) + + for i in range(25000): + total_requests += 1 + if i % 10 == 5: # 1 in 10 + total_timeouts += 1 + print( + generate_log_entry( + status="timeout", + error="Network timeout: Connection to backend timed out after 30000ms", + timeout_rate=total_timeouts / total_requests, + ) + ) + else: + print( + generate_log_entry( + status="success", + response_time=random.randint(500, 2000), # Much slower + ) + ) + + # Phase 4: Critical failure (25,000 requests) + print( + json.dumps( + { + "timestamp": datetime.utcnow().isoformat() + "Z", + "level": "ERROR", + "service": "frontend", + "message": "CRITICAL: Network connectivity severely degraded", + "timeout_rate": round(total_timeouts / total_requests, 3), + "recommendation": "Investigate network path between frontend and backend services", + } + ) + ) + + for i in range(25000): + total_requests += 1 + if random.random() < 0.6: # 60% failure rate + total_timeouts += 1 + print( + generate_log_entry( + status="timeout", + error="Network timeout: Connection to backend timed out after 30000ms", + timeout_rate=total_timeouts / total_requests, + ) + ) + else: + print( + generate_log_entry( + status="success", + response_time=random.randint( + 2000, 5000 + ), # Very slow when successful + ) + ) + + # Keep pod running + while True: + time.sleep(3600) + + +if __name__ == "__main__": + main() diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/75_network_flapping/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/75_network_flapping/manifest.yaml new file mode 100644 index 00000000000..96bbcf074fd --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/75_network_flapping/manifest.yaml @@ -0,0 +1,35 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: frontend + namespace: namespace-75 + labels: + app: frontend +spec: + replicas: 1 + selector: + matchLabels: + app: frontend + template: + metadata: + labels: + app: frontend + spec: + containers: + - name: frontend + image: python:3.9-slim + command: ["python"] + args: ["/scripts/generate_logs.py"] + volumeMounts: + - name: script-volume + mountPath: /scripts + resources: + requests: + memory: "64Mi" + cpu: "10m" + volumes: + - name: script-volume + secret: + secretName: frontend-logs-script + defaultMode: 0755 + restartPolicy: Always diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/75_network_flapping/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/75_network_flapping/test_case.yaml new file mode 100644 index 00000000000..b80fb66e18f --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/75_network_flapping/test_case.yaml @@ -0,0 +1,23 @@ +user_prompt: "What's wrong with frontend pod in namespace-75?" +tags: + - logs + - context_window + - hard + - network + - kubernetes +expected_output: + - Frontend experiencing network flapping with timeout rate increasing from 0.1% to 60% when connecting to backend service +before_test: | + # Create namespace first since the secret depends on it (|| true ignores if it already exists) + kubectl create namespace namespace-75 || true + kubectl create secret generic frontend-logs-script \ + --from-file=generate_logs.py=./generate_logs.py \ + -n namespace-75 --dry-run=client -o yaml | kubectl apply -f - + kubectl apply -f ./manifest.yaml + sleep 40 +after_test: | + kubectl delete -f ./manifest.yaml + kubectl delete secret frontend-logs-script -n namespace-75 --ignore-not-found + kubectl delete namespace namespace-75 --ignore-not-found --wait=false +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/76_service_discovery_issue/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/76_service_discovery_issue/manifest.yaml new file mode 100644 index 00000000000..1d8dea8fe9a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/76_service_discovery_issue/manifest.yaml @@ -0,0 +1,87 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: namespace-76 +--- +# Backend deployment with specific labels +apiVersion: apps/v1 +kind: Deployment +metadata: + name: backend + namespace: namespace-76 +spec: + replicas: 1 + selector: + matchLabels: + app: backend + version: v1 + template: + metadata: + labels: + app: backend + version: v1 + spec: + containers: + - name: backend + image: nginx:alpine + ports: + - containerPort: 80 + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "64Mi" +--- +# Service with WRONG selector (missing version label) +apiVersion: v1 +kind: Service +metadata: + name: backend-service + namespace: namespace-76 +spec: + selector: + app: backend + version: v2 # Wrong version! Should be v1 + ports: + - port: 80 + targetPort: 80 +--- +# Frontend deployment trying to connect to backend +apiVersion: apps/v1 +kind: Deployment +metadata: + name: frontend + namespace: namespace-76 +spec: + replicas: 1 + selector: + matchLabels: + app: frontend + template: + metadata: + labels: + app: frontend + spec: + containers: + - name: frontend + image: busybox + command: ["/bin/sh"] + args: + - -c + - | + while true; do + echo "Trying to connect to backend-service..." + if wget -O- http://backend-service:80 -T 5; then + echo "Success!" + else + echo "ERROR: Connection to backend-service failed!" + fi + sleep 10 + done + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "64Mi" diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/76_service_discovery_issue/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/76_service_discovery_issue/mocks/response.txt new file mode 100644 index 00000000000..bf2cedcf29e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/76_service_discovery_issue/mocks/response.txt @@ -0,0 +1,6 @@ +Frontend pod can't connect to backend service because the backend-service has no endpoints. The service selector is +app=backend,version=v2, but the backend deployment pods are labeled app=backend,version=v1. No pods match the service selector, so +no traffic is routed. + +Fix: Update backend-service selector to match backend pod labels (app=backend,version=v1) or update backend pod labels to +version=v2. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/76_service_discovery_issue/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/76_service_discovery_issue/test_case.yaml new file mode 100644 index 00000000000..3d3d93a2aeb --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/76_service_discovery_issue/test_case.yaml @@ -0,0 +1,14 @@ +user_prompt: "Why can't the frontend pod connect to the backend service in namespace-76?" +tags: + - kubernetes + - medium +expected_output: + - Frontend cannot connect to backend because service selector has version v2 but backend pods have version v1 resulting in no endpoints +before_test: | + kubectl apply -f ./manifest.yaml + sleep 30 +after_test: | + kubectl delete -f ./manifest.yaml + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/77_liveness_probe_misconfiguration/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/77_liveness_probe_misconfiguration/manifest.yaml new file mode 100644 index 00000000000..3ecad0e4148 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/77_liveness_probe_misconfiguration/manifest.yaml @@ -0,0 +1,44 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: namespace-77 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: web-app + namespace: namespace-77 +spec: + replicas: 1 + selector: + matchLabels: + app: web-app + template: + metadata: + labels: + app: web-app + spec: + containers: + - name: web-app + image: nginx:alpine + ports: + - containerPort: 80 + livenessProbe: + httpGet: + path: /healthz + port: 8080 + initialDelaySeconds: 10 + periodSeconds: 5 + failureThreshold: 3 + readinessProbe: + httpGet: + path: / + port: 80 + initialDelaySeconds: 5 + periodSeconds: 5 + resources: + requests: + memory: 64Mi + cpu: 10m + limits: + memory: 64Mi diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/77_liveness_probe_misconfiguration/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/77_liveness_probe_misconfiguration/mocks/response.txt new file mode 100644 index 00000000000..9cd2519e88b --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/77_liveness_probe_misconfiguration/mocks/response.txt @@ -0,0 +1,8 @@ +web-app-7849658779-57zxb in namespace-77 keeps restarting because the liveness probe is failing: + + • Liveness probe: http-get on :8080/healthz + • Container runs nginx:alpine, which does not listen on port 8080 by default + • Events: "Liveness probe failed: dial tcp 10.244.1.130:8080: connect: connection refused" + • Pod is killed and restarted each time probe fails + +Fix: Update liveness probe to use a port nginx actually listens on (likely 80), or configure nginx to serve health checks on 8080. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/77_liveness_probe_misconfiguration/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/77_liveness_probe_misconfiguration/test_case.yaml new file mode 100644 index 00000000000..2d6c5583762 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/77_liveness_probe_misconfiguration/test_case.yaml @@ -0,0 +1,14 @@ +user_prompt: "Why does the web-app pod keep restarting in namespace-77?" +expected_output: + - Web app keeps restarting because liveness probe is configured on wrong port 8080 instead of 80 where nginx is listening +before_test: | + kubectl apply -f ./manifest.yaml + sleep 45 # Wait for probe failures and restarts +after_test: | + kubectl delete -f ./manifest.yaml +tags: + - medium + - kubernetes + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78a_missing_cpu_limits/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78a_missing_cpu_limits/manifest.yaml new file mode 100644 index 00000000000..440d83d691a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78a_missing_cpu_limits/manifest.yaml @@ -0,0 +1,42 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: namespace-78a +--- +apiVersion: v1 +kind: ResourceQuota +metadata: + name: compute-quota + namespace: namespace-78a +spec: + hard: + requests.cpu: 100m + requests.memory: 500Mi + limits.cpu: 100m + limits.memory: 500Mi + persistentvolumeclaims: '2' +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: api-server + namespace: namespace-78a +spec: + replicas: 3 + selector: + matchLabels: + app: api-server + template: + metadata: + labels: + app: api-server + spec: + containers: + - name: api-server + image: nginx:alpine + resources: + requests: + memory: 64Mi + cpu: 10m + limits: + memory: 64Mi diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78a_missing_cpu_limits/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78a_missing_cpu_limits/mocks/response.txt new file mode 100644 index 00000000000..861aa23effe --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78a_missing_cpu_limits/mocks/response.txt @@ -0,0 +1,13 @@ +Pods for deployment api-server in namespace-78a are pending because a resource quota named compute-quota requires limits.cpu to be +set for each container. The deployment only specifies limits.memory and omits limits.cpu. + +To fix: Add a limits.cpu value to the container spec in the deployment. Example: + + + resources: + limits: + cpu: 100m + memory: 64Mi + + +Then redeploy. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78a_missing_cpu_limits/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78a_missing_cpu_limits/test_case.yaml new file mode 100644 index 00000000000..69f0dfb5bb3 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78a_missing_cpu_limits/test_case.yaml @@ -0,0 +1,15 @@ +user_prompt: "Why are pods in pending state for the api-server deployment in namespace-78a?" +tags: + - kubernetes + - medium +expected_output: + - Pods cannot be created because the container spec is missing limits.cpu which is required by the ResourceQuota + - The api-server container must specify limits.cpu to comply with the compute-quota ResourceQuota +before_test: | + kubectl apply -f ./manifest.yaml + sleep 20 +after_test: | + kubectl delete -f ./manifest.yaml + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78b_cpu_quota_exceeded/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78b_cpu_quota_exceeded/manifest.yaml new file mode 100644 index 00000000000..c6537131b63 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78b_cpu_quota_exceeded/manifest.yaml @@ -0,0 +1,43 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: namespace-78b +--- +apiVersion: v1 +kind: ResourceQuota +metadata: + name: compute-quota + namespace: namespace-78b +spec: + hard: + requests.cpu: 20m + requests.memory: 500Mi + limits.cpu: 100m + limits.memory: 500Mi + persistentvolumeclaims: '2' +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: api-server + namespace: namespace-78b +spec: + replicas: 3 + selector: + matchLabels: + app: api-server + template: + metadata: + labels: + app: api-server + spec: + containers: + - name: api-server + image: nginx:alpine + resources: + requests: + memory: 64Mi + cpu: 10m + limits: + memory: 64Mi + cpu: 20m diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78b_cpu_quota_exceeded/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78b_cpu_quota_exceeded/test_case.yaml new file mode 100644 index 00000000000..faa5fe116ff --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/78b_cpu_quota_exceeded/test_case.yaml @@ -0,0 +1,16 @@ +user_prompt: "Why are pods in pending state for the api-server deployment in namespace-78b?" +tags: + - kubernetes + - medium +expected_output: + - Pods are pending due to CPU quota being exceeded + - The deployment needs more CPU than the namespace quota allows (quota is 20m, deployment needs 10m per pod) + - The namespace ResourceQuota prevents pod creation due to insufficient CPU requests available +before_test: | + kubectl apply -f ./manifest.yaml + sleep 20 +after_test: | + kubectl delete -f ./manifest.yaml + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/79_configmap_mount_issue/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/79_configmap_mount_issue/manifest.yaml new file mode 100644 index 00000000000..8b5ff64205a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/79_configmap_mount_issue/manifest.yaml @@ -0,0 +1,52 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: namespace-79 +--- +# Pod trying to mount a ConfigMap that doesn't exist +apiVersion: apps/v1 +kind: Deployment +metadata: + name: app-server + namespace: namespace-79 +spec: + replicas: 1 + selector: + matchLabels: + app: app-server + template: + metadata: + labels: + app: app-server + spec: + containers: + - name: app-server + image: busybox + command: ["/bin/sh"] + args: ["-c", "cat /config/app.properties && sleep 3600"] + volumeMounts: + - name: config-volume + mountPath: /config + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "64Mi" + cpu: "10m" + volumes: + - name: config-volume + configMap: + name: app-config # This ConfigMap doesn't exist! +--- +# Create a different ConfigMap with wrong name to make it more realistic +apiVersion: v1 +kind: ConfigMap +metadata: + name: app-configuration # Wrong name! Pod expects "app-config" + namespace: namespace-79 +data: + app.properties: | + server.port=8080 + database.url=localhost:5432 + cache.enabled=true diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/79_configmap_mount_issue/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/79_configmap_mount_issue/mocks/response.txt new file mode 100644 index 00000000000..c5a3199ea73 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/79_configmap_mount_issue/mocks/response.txt @@ -0,0 +1,4 @@ +app-server pod stuck in ContainerCreating because required ConfigMap "app-config" is missing in namespace-79. Pod can't mount +/config volume. + +Fix: Create ConfigMap "app-config" in namespace-79 or update pod spec to reference an existing ConfigMap. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/79_configmap_mount_issue/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/79_configmap_mount_issue/test_case.yaml new file mode 100644 index 00000000000..0eebfd48703 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/79_configmap_mount_issue/test_case.yaml @@ -0,0 +1,11 @@ +user_prompt: "Why is the app-server pod stuck in ContainerCreating state in namespace-79?" +expected_output: + - App server stuck in ContainerCreating because it tries to mount ConfigMap app-config which doesn't exist in the namespace +before_test: | + kubectl apply -f ./manifest.yaml + sleep 20 +after_test: | + kubectl delete -f ./manifest.yaml +tags: + - easy + - kubernetes diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/80_pvc_storage_class_mismatch/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/80_pvc_storage_class_mismatch/manifest.yaml new file mode 100644 index 00000000000..278af0136db --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/80_pvc_storage_class_mismatch/manifest.yaml @@ -0,0 +1,54 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: namespace-80 +--- +# PVC requesting non-existent storage class +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: database-pvc + namespace: namespace-80 +spec: + accessModes: + - ReadWriteOnce + storageClassName: fast-ssd # This storage class doesn't exist! + resources: + requests: + storage: 1Gi +--- +# StatefulSet trying to use the PVC +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: database + namespace: namespace-80 +spec: + serviceName: database-service + replicas: 1 + selector: + matchLabels: + app: database + template: + metadata: + labels: + app: database + spec: + containers: + - name: database + image: busybox + command: ["/bin/sh"] + args: ["-c", "echo 'Database started' && sleep 3600"] + volumeMounts: + - name: data-volume + mountPath: /data + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "64Mi" + volumes: + - name: data-volume + persistentVolumeClaim: + claimName: database-pvc diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/80_pvc_storage_class_mismatch/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/80_pvc_storage_class_mismatch/test_case.yaml new file mode 100644 index 00000000000..5c177810ab5 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/80_pvc_storage_class_mismatch/test_case.yaml @@ -0,0 +1,16 @@ +# similar to 24b - not sure we need both +user_prompt: "Why is the database not running in namespace-80?" +tags: + - kubernetes + - hard +expected_output: + - Database PVC not binding because it requests storage class fast-ssd which doesn't exist + - Output suggests changing to a different storage class that does exist +before_test: | + kubectl apply -f ./manifest.yaml + sleep 60 +after_test: | + kubectl delete -f ./manifest.yaml + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/81_service_account_permission_denied/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/81_service_account_permission_denied/manifest.yaml new file mode 100644 index 00000000000..dd647c0b6a4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/81_service_account_permission_denied/manifest.yaml @@ -0,0 +1,78 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: namespace-81 +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: monitoring-sa + namespace: namespace-81 +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: monitoring-role + namespace: namespace-81 +rules: +- apiGroups: + - '' + resources: + - pods + verbs: + - get +- apiGroups: + - '' + resources: + - services + verbs: + - get + - list +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: monitoring-rolebinding + namespace: namespace-81 +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: monitoring-role +subjects: +- kind: ServiceAccount + name: monitoring-sa + namespace: namespace-81 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: monitoring-agent + namespace: namespace-81 +spec: + replicas: 1 + selector: + matchLabels: + app: monitoring-agent + template: + metadata: + labels: + app: monitoring-agent + spec: + serviceAccountName: monitoring-sa + containers: + - name: monitoring-agent + image: bitnami/kubectl:latest + command: + - /bin/sh + args: + - -c + - "while true; do\n echo \"Attempting to list pods in namespace...\"\n if\ + \ kubectl get pods -n namespace-81; then\n echo \"Success: Listed pods\"\ + \n else\n echo \"ERROR: Permission denied - cannot list pods\"\n fi\n\ + \ sleep 30\ndone\n" + resources: + requests: + memory: 64Mi + cpu: 10m + limits: + memory: 64Mi diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/81_service_account_permission_denied/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/81_service_account_permission_denied/mocks/response.txt new file mode 100644 index 00000000000..58eacc9e5ca --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/81_service_account_permission_denied/mocks/response.txt @@ -0,0 +1,19 @@ +monitoring-agent in namespace-81 gets permission denied errors because its service account (monitoring-sa) only has "get" +permission on pods, not "list". The pod tries to "list" pods, but the Role (monitoring-role) does not grant "list" for pods—only +"get". + +To fix: Update monitoring-role to include "list" verb for pods. Example: + + + apiVersion: rbac.authorization.k8s.io/v1 + kind: Role + metadata: + name: monitoring-role + namespace: namespace-81 + rules: + - apiGroups: [""] + resources: ["pods"] + verbs: ["get", "list"] + + +Apply the updated Role to resolve the permission denied error. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/81_service_account_permission_denied/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/81_service_account_permission_denied/test_case.yaml new file mode 100644 index 00000000000..ee33659f042 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/81_service_account_permission_denied/test_case.yaml @@ -0,0 +1,14 @@ +user_prompt: "Why is the monitoring-agent getting permission denied errors in namespace-81?" +tags: + - kubernetes + - medium # failed 1/20 - https://www.braintrust.dev/app/robustadev/p/HolmesGPT/experiments/natan-all-easy-ask3?c=github-16532477432.2600.1&r=43781150-6d83-4682-893e-30e0a9a1ad9b&s=013ffb74-2805-42a7-bec9-3f20ec250010 +expected_output: + - Monitoring agent getting permission denied because its service account role only has get verb for pods but is missing list verb +before_test: | + kubectl apply -f ./manifest.yaml + sleep 30 +after_test: | + kubectl delete -f ./manifest.yaml + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/82_pod_anti_affinity_conflict/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/82_pod_anti_affinity_conflict/manifest.yaml new file mode 100644 index 00000000000..e0233bbec85 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/82_pod_anti_affinity_conflict/manifest.yaml @@ -0,0 +1,38 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: namespace-82 +--- +# Deployment with strict pod anti-affinity +apiVersion: apps/v1 +kind: Deployment +metadata: + name: silver-puffin + namespace: namespace-82 +spec: + replicas: 30 # Trying to schedule 30 pods (this eval assumes less than 30 nodes in cluster - otherwise the eval will be broken because scheduling can be satisfied) + selector: + matchLabels: + app: silver-puffin + template: + metadata: + labels: + app: silver-puffin + spec: + affinity: + podAntiAffinity: + requiredDuringSchedulingIgnoredDuringExecution: # Hard requirement + - labelSelector: + matchLabels: + app: silver-puffin + topologyKey: kubernetes.io/hostname # Can't be on same node + containers: + - name: silver-puffin + image: redis:alpine + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "64Mi" + cpu: "10m" diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/82_pod_anti_affinity_conflict/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/82_pod_anti_affinity_conflict/mocks/response.txt new file mode 100644 index 00000000000..81c0fe713b9 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/82_pod_anti_affinity_conflict/mocks/response.txt @@ -0,0 +1,9 @@ +silver-puffin pods in namespace-82 can't be scheduled because all 3 nodes failed pod anti-affinity rules. Scheduler events: + + + 0/3 nodes are available: 3 node(s) didn't match pod anti-affinity rules. preemption: 0/3 nodes are available: 3 No preemption + victims found for incoming pod. + + +To fix: Review pod anti-affinity settings in the deployment. Either relax anti-affinity constraints or add more nodes that satisfy +the rules. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/82_pod_anti_affinity_conflict/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/82_pod_anti_affinity_conflict/test_case.yaml new file mode 100644 index 00000000000..0fb753f27f3 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/82_pod_anti_affinity_conflict/test_case.yaml @@ -0,0 +1,15 @@ +user_prompt: "Why can't the silver-puffin pods be scheduled in namespace-82?" +tags: + - kubernetes + - medium +expected_output: + - Silver-puffin pods cannot be scheduled because pod anti-affinity rules require them on different nodes but insufficient nodes available + - It's ok if other reasons are mentioned too as long as the anti-affinity conflict is clearly stated +before_test: | + kubectl apply -f ./manifest.yaml + sleep 20 +after_test: | + kubectl delete -f ./manifest.yaml + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/83_secret_not_found/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/83_secret_not_found/manifest.yaml new file mode 100644 index 00000000000..fc55f5e3c79 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/83_secret_not_found/manifest.yaml @@ -0,0 +1,53 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: namespace-83 +--- +# Create a secret with a different name +apiVersion: v1 +kind: Secret +metadata: + name: db-credentials # Wrong name! + namespace: namespace-83 +type: Opaque +data: + username: YWRtaW4= # admin + password: cGFzc3dvcmQxMjM= # password123 +--- +# Database pod expecting a different secret name +apiVersion: apps/v1 +kind: Deployment +metadata: + name: database + namespace: namespace-83 +spec: + replicas: 1 + selector: + matchLabels: + app: database + template: + metadata: + labels: + app: database + spec: + containers: + - name: database + image: postgres:alpine + env: + - name: POSTGRES_USER + valueFrom: + secretKeyRef: + name: database-secret # This secret doesn't exist! + key: username + - name: POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: database-secret # This secret doesn't exist! + key: password + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "64Mi" + cpu: "10m" diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/83_secret_not_found/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/83_secret_not_found/mocks/response.txt new file mode 100644 index 00000000000..3a794bd0c3e --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/83_secret_not_found/mocks/response.txt @@ -0,0 +1,4 @@ +Database pod database-5d74977f4c-zq7pb in namespace-83 fails to start due to missing secret database-secret. Pod environment +variables reference keys in this secret, but it does not exist. + +Create the secret database-secret in namespace-83 with required keys (username, password) to resolve. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/83_secret_not_found/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/83_secret_not_found/test_case.yaml new file mode 100644 index 00000000000..b91931047bf --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/83_secret_not_found/test_case.yaml @@ -0,0 +1,11 @@ +user_prompt: "Why is the database pod failing to start in namespace-83?" +tags: + - kubernetes + - easy +expected_output: + - Database pod failing to start because it references Secret database-secret which doesn't exist in the namespace +before_test: | + kubectl apply -f ./manifest.yaml + sleep 20 +after_test: | + kubectl delete -f ./manifest.yaml diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/84_network_policy_blocking_traffic/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/84_network_policy_blocking_traffic/manifest.yaml new file mode 100644 index 00000000000..fb3b2ab284d --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/84_network_policy_blocking_traffic/manifest.yaml @@ -0,0 +1,107 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: namespace-84 +--- +# Backend deployment +apiVersion: apps/v1 +kind: Deployment +metadata: + name: backend + namespace: namespace-84 +spec: + replicas: 1 + selector: + matchLabels: + app: backend + template: + metadata: + labels: + app: backend + tier: backend + spec: + containers: + - name: backend + image: nginx:alpine + ports: + - containerPort: 80 + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "64Mi" +--- +# Backend service +apiVersion: v1 +kind: Service +metadata: + name: backend-service + namespace: namespace-84 +spec: + selector: + app: backend + ports: + - port: 80 + targetPort: 80 +--- +# Frontend deployment +apiVersion: apps/v1 +kind: Deployment +metadata: + name: frontend + namespace: namespace-84 +spec: + replicas: 1 + selector: + matchLabels: + app: frontend + template: + metadata: + labels: + app: frontend + tier: frontend + spec: + containers: + - name: frontend + image: busybox + command: ["/bin/sh"] + args: + - -c + - | + while true; do + echo "Trying to connect to backend-service..." + if wget -O- http://backend-service:80 -T 5; then + echo "Success!" + else + echo "ERROR: Connection timeout to backend-service!" + fi + sleep 15 + done + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "64Mi" +--- +# Network Policy that blocks frontend->backend traffic +apiVersion: networking.k8s.io/v1 +kind: NetworkPolicy +metadata: + name: backend-network-policy + namespace: namespace-84 +spec: + podSelector: + matchLabels: + app: backend + policyTypes: + - Ingress + ingress: + - from: + - podSelector: + matchLabels: + tier: backend # Only allows traffic from pods with tier=backend + ports: + - protocol: TCP + port: 80 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/84_network_policy_blocking_traffic/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/84_network_policy_blocking_traffic/test_case.yaml new file mode 100644 index 00000000000..5da4e0f4bff --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/84_network_policy_blocking_traffic/test_case.yaml @@ -0,0 +1,15 @@ +user_prompt: "Why is the frontend getting timeouts connecting to backend in namespace-84?" +tags: + - kubernetes + - network + - hard +expected_output: + - Frontend getting timeouts because NetworkPolicy on backend only allows ingress from pods with tier backend label not frontend +before_test: | + kubectl apply -f ./manifest.yaml + sleep 30 +after_test: | + kubectl delete -f ./manifest.yaml + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/85_hpa_not_scaling/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/85_hpa_not_scaling/manifest.yaml new file mode 100644 index 00000000000..c4e205ad1ac --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/85_hpa_not_scaling/manifest.yaml @@ -0,0 +1,45 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: namespace-85 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: golden-eagle + namespace: namespace-85 +spec: + replicas: 1 + selector: + matchLabels: + app: golden-eagle + template: + metadata: + labels: + app: golden-eagle + spec: + containers: + - name: golden-eagle + image: busybox + command: ["sh", "-c", "while true; do echo 'Working...'; sleep 1; done"] + # Note: Missing resource requests/limits - this is intentional to match the expected output +--- +apiVersion: autoscaling/v2 +kind: HorizontalPodAutoscaler +metadata: + name: golden-eagle-hpa + namespace: namespace-85 +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: golden-eagle + minReplicas: 1 + maxReplicas: 5 + metrics: + - type: Resource + resource: + name: cpu + target: + type: Utilization + averageUtilization: 50 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/85_hpa_not_scaling/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/85_hpa_not_scaling/mocks/response.txt new file mode 100644 index 00000000000..7b5939a8365 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/85_hpa_not_scaling/mocks/response.txt @@ -0,0 +1,9 @@ +golden-eagle deployment isn't scaling because the HPA can't get CPU metrics. HPA status: "ScalingActive: False" with reason +"FailedGetResourceMetric" and message "did not receive metrics for targeted pods (pods might be unready)". + +Events show repeated errors: "failed to get cpu utilization: no metrics returned from resource metrics API". + +Root cause: metrics-server isn't providing CPU metrics for golden-eagle pod. HPA can't compute replica count without metrics. + +Fix: Ensure metrics-server is running and healthy, and that golden-eagle pod requests/limits are set for CPU. Without metrics, HPA +won't scale. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/85_hpa_not_scaling/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/85_hpa_not_scaling/test_case.yaml new file mode 100644 index 00000000000..ffa5ab9b360 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/85_hpa_not_scaling/test_case.yaml @@ -0,0 +1,14 @@ +user_prompt: "Why isn't the golden-eagle deployment scaling despite high CPU usage in namespace-85?" +tags: + - kubernetes + - medium +expected_output: + - Golden-eagle deployment not scaling because HPA cannot calculate CPU metrics without resource requests defined in pod spec +before_test: | + kubectl apply -f ./manifest.yaml + sleep 30 +after_test: | + kubectl delete -f ./manifest.yaml + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/86_configmap_like_but_secret/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/86_configmap_like_but_secret/manifest.yaml new file mode 100644 index 00000000000..8dabba60f48 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/86_configmap_like_but_secret/manifest.yaml @@ -0,0 +1,68 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: production +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: frontend + namespace: production +spec: + replicas: 7 + selector: + matchLabels: + app: frontend + template: + metadata: + labels: + app: frontend + spec: + containers: + - name: frontend + image: company.io/frontend:v3.2.1 + ports: + - containerPort: 8080 + env: + - name: PORT + value: "8080" + volumeMounts: + - name: api-credentials + mountPath: /etc/app-secrets + readOnly: true + volumes: + - name: api-credentials + secret: + secretName: frontend-api-keys + optional: false +--- +apiVersion: v1 +kind: Secret +metadata: + name: backend-api-keys + namespace: production +type: Opaque +data: + api-key: YXBpLWtleS12YWx1ZQ== + client-id: Y2xpZW50LWlkLXZhbHVl + client-secret: Y2xpZW50LXNlY3JldC12YWx1ZQ== +--- +apiVersion: v1 +kind: Secret +metadata: + name: database-credentials + namespace: production +type: Opaque +data: + username: ZGJ1c2Vy + password: ZGJwYXNzd29yZA== +--- +apiVersion: v1 +kind: Secret +metadata: + name: tls-certificates + namespace: production +type: kubernetes.io/tls +data: + tls.crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCi4uLgotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0t + tls.key: LS0tLS1CRUdJTiBQUklWQVRFIEtFWS0tLS0tCi4uLgotLS0tLUVORCBQUklWQVRFIEtFWS0tLS0t diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/86_configmap_like_but_secret/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/86_configmap_like_but_secret/mocks/response.txt new file mode 100644 index 00000000000..2fc0dae1839 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/86_configmap_like_but_secret/mocks/response.txt @@ -0,0 +1,8 @@ +All frontend pods in production are stuck in ContainerCreating due to missing secret frontend-api-keys. Events show repeated +FailedMount errors: + + + MountVolume.SetUp failed for volume "api-credentials" : secret "frontend-api-keys" not found + + +No secret named frontend-api-keys exists in production. Create this secret with required keys to resolve. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/86_configmap_like_but_secret/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/86_configmap_like_but_secret/test_case.yaml new file mode 100644 index 00000000000..d0c4eba1e94 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/86_configmap_like_but_secret/test_case.yaml @@ -0,0 +1,16 @@ +description: | + Test case similar to ConfigMap missing example from runbook but with Secret mount failure. + Uses similar deployment name (frontend) and namespace (production) but with 7 replicas + instead of 5, and the root cause is a missing Secret instead of ConfigMap. + Tests that LLM actually diagnoses the issue rather than pattern matching. +user_prompt: "The frontend deployment in production namespace is showing issues. Can you investigate why some replicas are not running?" +expected_output: | + The issue should be identified as a missing Secret mount (frontend-api-keys), +before_test: | + kubectl apply -f manifest.yaml + sleep 30 +after_test: | + kubectl delete -f manifest.yaml +tags: + - kubernetes + - easy diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/97_logs_clarification_needed/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/97_logs_clarification_needed/mocks/response.txt new file mode 100644 index 00000000000..a2d020a5551 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/97_logs_clarification_needed/mocks/response.txt @@ -0,0 +1 @@ +Specify which pod you want logs for. There are many pods in the cluster. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/97_logs_clarification_needed/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/97_logs_clarification_needed/test_case.yaml new file mode 100644 index 00000000000..ba1f92f387a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/97_logs_clarification_needed/test_case.yaml @@ -0,0 +1,11 @@ +user_prompt: "Get me logs for the last 30 minutes" +expected_output: + - Asks the user for clarification on which pod to fetch logs from +tags: + - ask-for-clarification + - logs + - medium + - kubernetes + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/98_logs_transparency_default_time/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/98_logs_transparency_default_time/manifest.yaml new file mode 100644 index 00000000000..591bff931c4 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/98_logs_transparency_default_time/manifest.yaml @@ -0,0 +1,76 @@ +apiVersion: v1 +kind: Secret +metadata: + name: ocean-explorer-app + namespace: app-98 +type: Opaque +stringData: + app.py: | + import time + import sys + from datetime import datetime + + def main(): + print("Pod ocean-explorer starting...", flush=True) + + # Generate some logs with errors + logs = [ + ("2025-07-23 10:15:32", "INFO", "Application started successfully"), + ("2025-07-24 14:22:18", "ERROR", "Error connecting to external API: Connection timeout"), + ("2025-07-25 09:45:21", "WARN", "Memory usage at 85%"), + ("2025-07-26 16:33:45", "ERROR", "Rate limit exceeded for user requests"), + ("2025-07-27 11:28:59", "INFO", "Processed 1000 requests"), + ("2025-07-28 13:17:42", "ERROR", "Database connection pool exhausted"), + ("2025-07-29 08:55:13", "INFO", "Service health check passed") + ] + + # Print all logs + for timestamp, level, message in logs: + print(f"{timestamp} {level} {message}", flush=True) + + # Keep container running and periodically log + while True: + time.sleep(300) # 5 minutes + current_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S") + print(f"{current_time} INFO Service still running, health check passed", flush=True) + + if __name__ == "__main__": + main() + +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: ocean-explorer + namespace: app-98 +spec: + replicas: 1 + selector: + matchLabels: + app: ocean-explorer + template: + metadata: + labels: + app: ocean-explorer + spec: + containers: + - name: ocean-explorer + image: python:3.9-slim + command: ["python", "/app/app.py"] + env: + - name: PYTHONUNBUFFERED + value: "1" + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "128Mi" + volumeMounts: + - name: app-code + mountPath: /app + volumes: + - name: app-code + secret: + secretName: ocean-explorer-app + defaultMode: 0755 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/98_logs_transparency_default_time/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/98_logs_transparency_default_time/test_case.yaml new file mode 100644 index 00000000000..c1e89da903a --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/98_logs_transparency_default_time/test_case.yaml @@ -0,0 +1,22 @@ +user_prompt: "Show me the logs for the pod ocean-explorer in namespace app-98" +expected_output: | + Quotes or summarizes logs. + Explicitly says logs are for time period of last 7 days! + +before_test: | + kubectl create namespace app-98 || true + kubectl apply -f ./manifest.yaml + +after_test: | + kubectl delete -f ./manifest.yaml --ignore-not-found + kubectl delete namespace app-98 --ignore-not-found --wait=false + +tags: + - logs + - transparency + - datetime + - medium + - kubernetes + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/99_logs_transparency_custom_time/manifest.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/99_logs_transparency_custom_time/manifest.yaml new file mode 100644 index 00000000000..709b7c7edba --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/99_logs_transparency_custom_time/manifest.yaml @@ -0,0 +1,80 @@ +apiVersion: v1 +kind: Secret +metadata: + name: time-traveler-app + namespace: app-99 +type: Opaque +stringData: + app.py: | + import time + import sys + from datetime import datetime, timedelta + + def main(): + print("Pod time-traveler starting...", flush=True) + + # Get current time + now = datetime.utcnow() + + # Generate logs for the last 2 hours with relative timestamps + logs = [ + (now - timedelta(minutes=90), "INFO", "Service initialized"), + (now - timedelta(minutes=75), "WARN", "CPU usage spike detected"), + (now - timedelta(minutes=60), "ERROR", "API rate limit reached: 429 Too Many Requests"), + (now - timedelta(minutes=45), "INFO", "Rate limit reset, resuming operations"), + (now - timedelta(minutes=30), "ERROR", "Memory threshold exceeded: using 95% of allocated memory"), + (now - timedelta(minutes=15), "INFO", "Garbage collection completed, memory usage normalized"), + (now, "INFO", "Current status: healthy") + ] + + # Print all logs with UTC timestamps + for timestamp, level, message in logs: + formatted_time = timestamp.strftime("%Y-%m-%d %H:%M:%S") + print(f"{formatted_time} {level} {message}", flush=True) + + # Keep container running and periodically log + while True: + time.sleep(300) # 5 minutes + current_time = datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") + print(f"{current_time} INFO Service health check: all systems operational", flush=True) + + if __name__ == "__main__": + main() + +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: time-traveler + namespace: app-99 +spec: + replicas: 1 + selector: + matchLabels: + app: time-traveler + template: + metadata: + labels: + app: time-traveler + spec: + containers: + - name: time-traveler + image: python:3.9-slim + command: ["python", "/app/app.py"] + env: + - name: PYTHONUNBUFFERED + value: "1" + resources: + requests: + memory: "64Mi" + cpu: "10m" + limits: + memory: "128Mi" + volumeMounts: + - name: app-code + mountPath: /app + volumes: + - name: app-code + secret: + secretName: time-traveler-app + defaultMode: 0755 diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/99_logs_transparency_custom_time/mocks/response.txt b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/99_logs_transparency_custom_time/mocks/response.txt new file mode 100644 index 00000000000..77b4af7bd55 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/99_logs_transparency_custom_time/mocks/response.txt @@ -0,0 +1,11 @@ +Logs for pod time-traveler-565f79f9cb-cxs7m in namespace app-99 (last 24h): + + • 07:26:30 INFO Service initialized + • 07:41:30 WARN CPU usage spike detected + • 07:56:30 ERROR API rate limit reached: 429 Too Many Requests + • 08:11:30 INFO Rate limit reset, resuming operations + • 08:26:30 ERROR Memory threshold exceeded: using 95% of allocated memory + • 08:41:30 INFO Garbage collection completed, memory usage normalized + • 08:56:30 INFO Current status: healthy + +Recent issues: API rate limiting and high memory usage, both resolved. Pod is currently healthy. \ No newline at end of file diff --git a/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/99_logs_transparency_custom_time/test_case.yaml b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/99_logs_transparency_custom_time/test_case.yaml new file mode 100644 index 00000000000..f4279b2c77c --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/fixtures/ask_agent/99_logs_transparency_custom_time/test_case.yaml @@ -0,0 +1,22 @@ +user_prompt: "Show me the logs for the pod time-traveler in namespace app-99 from the last 24 hours" +expected_output: + Quotes or summarizes logs. + Explicitly says logs are for time period of last 24 hours! + +before_test: | + kubectl create namespace app-99 || true + kubectl apply -f ./manifest.yaml + +after_test: | + kubectl delete -f ./manifest.yaml --ignore-not-found + kubectl delete namespace app-99 --ignore-not-found --wait=false + +tags: + - logs + - transparency + - datetime + - medium + - kubernetes + +evaluation: + correctness: loose diff --git a/src/aks-agent/azext_aks_agent/tests/evals/helpers.py b/src/aks-agent/azext_aks_agent/tests/evals/helpers.py new file mode 100644 index 00000000000..7dd37c7df6c --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/helpers.py @@ -0,0 +1,197 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +"""Utilities for AKS Agent eval tests.""" +from __future__ import annotations + +from dataclasses import dataclass +from pathlib import Path +from typing import Any, Dict, Iterable, List, Mapping, Optional + +import yaml + +MOCK_FILE = "mocks/response.txt" +AI_MARKER = "AI:" +REQUIRED_ENV_VARS: tuple[str, ...] = ( + "MODEL", + "AKS_AGENT_RESOURCE_GROUP", + "AKS_AGENT_CLUSTER", + "KUBECONFIG", + "AZURE_API_KEY", + "AZURE_API_BASE", + "AZURE_API_VERSION", +) +MANDATORY_TAGS: tuple[str, ...] = ("easy", "medium", "hard") + + +@dataclass(frozen=True) +class Scenario: + """Represents a single eval scenario loaded from YAML.""" + + name: str + prompt: str + expected_output: List[str] + tags: List[str] + path: Path + before_commands: List[str] + after_commands: List[str] + resource_group: Optional[str] + cluster_name: Optional[str] + kubeconfig: Optional[str] + env_overrides: Dict[str, str] + evaluation_type: Optional[str] + mock_path: Path + + +def load_scenarios(fixtures_root: Path) -> List[Scenario]: + """Load all scenarios located beneath the fixtures root.""" + scenarios: List[Scenario] = [] + for yaml_path in sorted(fixtures_root.glob("**/test_case.yaml")): + with yaml_path.open("r", encoding="utf-8") as handle: + raw: Dict[str, Any] = yaml.safe_load(handle) or {} + + prompt = str(raw.get("user_prompt", "")).strip() + if not prompt: + raise ValueError(f"Scenario {yaml_path} missing 'user_prompt'") + + expected = _as_str_list(raw.get("expected_output")) + if not expected: + raise ValueError(f"Scenario {yaml_path} must define non-empty 'expected_output'") + + tags = _as_str_list(raw.get("tags")) + if not any(tag in MANDATORY_TAGS for tag in tags): + raise ValueError( + f"Scenario {yaml_path} must include one of {MANDATORY_TAGS!r}" + ) + + before_commands = _as_command_list(raw.get("before_test")) + after_commands = _as_command_list(raw.get("after_test")) + env_overrides = _as_env_override(raw.get("test_env_vars")) + evaluation_type = _parse_evaluation_type(raw.get("evaluation")) + + scenario = Scenario( + name=yaml_path.parent.name, + prompt=prompt, + expected_output=expected, + tags=tags, + path=yaml_path, + before_commands=before_commands, + after_commands=after_commands, + resource_group=_as_optional_str(raw.get("resource_group")), + cluster_name=_as_optional_str(raw.get("cluster_name")), + kubeconfig=_as_optional_str(raw.get("kubeconfig")), + env_overrides=env_overrides, + evaluation_type=evaluation_type, + mock_path=yaml_path.parent, + ) + scenarios.append(scenario) + return scenarios + + +def extract_ai_answer(output: str) -> str: + """Return the substring after the last AI marker.""" + index = output.rfind(AI_MARKER) + if index == -1: + raise ValueError("Could not locate 'AI:' marker in CLI output") + return output[index + len(AI_MARKER) :].strip() + + +def find_missing_env_vars(env: Mapping[str, str]) -> List[str]: + """Return a list of required environment variables that are missing or empty.""" + missing = [name for name in REQUIRED_ENV_VARS if not env.get(name)] + return missing + + +def ensure_expected_output(expected: Iterable[str], answer: str) -> Optional[str]: + """Verify each expected entry is present in the answer. + + Returns an error message when a check fails, otherwise ``None``. + """ + for item in expected: + if item not in answer: + return f"Expected substring not found in AI response: {item!r}" + return None + + +def _as_str_list(value: Any) -> List[str]: + if value is None: + return [] + if isinstance(value, str): + return [value] + if isinstance(value, list): + result: List[str] = [] + for item in value: + if not isinstance(item, str): + raise ValueError(f"List entries must be strings, got {type(item)!r}") + result.append(item) + return result + raise ValueError(f"Expected string or list of strings, got {type(value)!r}") + + +def _as_command_list(value: Any) -> List[str]: + commands = _as_str_list(value) + return [cmd.strip() for cmd in commands if cmd.strip()] + + +def _as_env_override(value: Any) -> Dict[str, str]: + if value is None: + return {} + if not isinstance(value, dict): + raise ValueError("test_env_vars must be a mapping of key/value strings") + overrides: Dict[str, str] = {} + for key, val in value.items(): + if not isinstance(key, str) or not isinstance(val, str): + raise ValueError("test_env_vars entries must be strings") + overrides[key] = val + return overrides + + +def _as_optional_str(value: Any) -> Optional[str]: + if value is None: + return None + if isinstance(value, str): + stripped = value.strip() + return stripped or None + raise ValueError(f"Expected string for optional field, got {type(value)!r}") + + +def _parse_evaluation_type(value: Any) -> Optional[str]: + if value is None: + return None + if not isinstance(value, dict): + raise ValueError("evaluation must be a mapping when provided") + correctness = value.get("correctness") + if correctness is None: + return None + if isinstance(correctness, dict): + eval_type = correctness.get("type") + else: + eval_type = correctness + if eval_type is None: + return None + if not isinstance(eval_type, str): + raise ValueError("evaluation.correctness.type must be a string when provided") + eval_type = eval_type.strip().lower() + if eval_type and eval_type not in {"strict", "loose"}: + raise ValueError( + "evaluation.correctness.type must be one of {'strict', 'loose'}" + ) + return eval_type or None + + +def load_mock_answer(scenario_dir: Path) -> str: + """Load the mocked answer for a scenario.""" + mock_path = scenario_dir / MOCK_FILE + if not mock_path.exists(): + raise FileNotFoundError(f"Mock response missing: {mock_path}") + return mock_path.read_text(encoding="utf-8") + + +def save_mock_answer(scenario_dir: Path, answer: str) -> Path: + """Persist the mocked answer for a scenario, returning the path.""" + mock_path = scenario_dir / MOCK_FILE + mock_path.parent.mkdir(parents=True, exist_ok=True) + mock_path.write_text(answer, encoding="utf-8") + return mock_path diff --git a/src/aks-agent/azext_aks_agent/tests/evals/test_ask_agent.py b/src/aks-agent/azext_aks_agent/tests/evals/test_ask_agent.py new file mode 100644 index 00000000000..5b91cf5b7c7 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/test_ask_agent.py @@ -0,0 +1,332 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from __future__ import annotations + +import os +import shlex +import subprocess +from pathlib import Path +from typing import Iterable + + +import pytest + +from .classifier import ( + CLASSIFIER_ENABLED, + DEFAULT_EVALUATION_TYPE, + evaluate_correctness, +) +from .helpers import ( + MANDATORY_TAGS, + Scenario, + ensure_expected_output, + extract_ai_answer, + find_missing_env_vars, + load_mock_answer, + load_scenarios, + save_mock_answer, +) +from .braintrust_uploader import BraintrustUploader + + +SCENARIO_ROOT = Path(__file__).parent / "fixtures" / "ask_agent" +DIFFICULTY_MARKS = {tag.lower() for tag in MANDATORY_TAGS} +MARKED_TAGS = DIFFICULTY_MARKS | {"kubernetes"} +RUN_LIVE = os.environ.get("RUN_LIVE", "").lower() == "true" +GENERATE_MOCKS = os.environ.get("GENERATE_MOCKS", "").lower() == "true" +ITERATIONS = int(os.environ.get("ITERATIONS", "1")) +BRAINTRUST_UPLOADER = BraintrustUploader(os.environ) + +pytestmark = [ + pytest.mark.skipif( + not RUN_LIVE, + reason="LIVE evals require RUN_LIVE=true; run manually when exercising AKS Agent evals", + ), + pytest.mark.aks_eval, +] + + +def _set_user_property(request: pytest.FixtureRequest, key: str, value: str) -> None: + for idx, (existing_key, _) in enumerate(request.node.user_properties): + if existing_key == key: + request.node.user_properties[idx] = (key, value) + return + request.node.user_properties.append((key, value)) + +def _resolve_evaluation_type(scenario: Scenario) -> str: + env_default = os.environ.get("CLASSIFIER_EVALUATION", DEFAULT_EVALUATION_TYPE) + evaluation_type = scenario.evaluation_type or env_default or "strict" + evaluation_type = evaluation_type.strip().lower() + return evaluation_type if evaluation_type in {"strict", "loose"} else "strict" + + +def _load_env() -> dict[str, str]: + env = os.environ.copy() + missing = find_missing_env_vars(env) + if missing: + joined = ", ".join(missing) + pytest.fail(f"Missing required environment variables for live eval run: {joined}") + return env + + +def _build_command(prompt: str, model: str, resource_group: str, cluster_name: str) -> list[str]: + # The prompt is a positional argument; spaces are preserved when sent as a single list item. + return [ + "az", + "aks", + "agent", + prompt, + "--model", + model, + "-g", + resource_group, + "-n", + cluster_name, + "--no-interactive", + ] + + +def _run_cli(command: Iterable[str], env: dict[str, str]) -> str: + try: + result = subprocess.run( # noqa: S603 + list(command), + check=True, + capture_output=True, + text=True, + env=env, + ) + except subprocess.CalledProcessError as exc: # pragma: no cover - live failure path + output = exc.stdout or "" + stderr = exc.stderr or "" + cmd_display = " ".join(shlex.quote(item) for item in exc.cmd) + pytest.fail( + "AKS Agent CLI call failed\n" + f"Command: {cmd_display}\n" + f"Return code: {exc.returncode}\n" + f"Stdout: {output}\n" + f"Stderr: {stderr}" + ) + return result.stdout + + +def _run_commands( + commands: list[str], env: dict[str, str], label: str, scenario: Scenario +) -> None: + for cmd in commands: + try: + completed = subprocess.run( # noqa: S603 + cmd, + check=True, + capture_output=True, + text=True, + env=env, + shell=True, + cwd=scenario.mock_path, + ) + except subprocess.CalledProcessError as exc: # pragma: no cover - live failure path + stdout = exc.stdout or "" + stderr = exc.stderr or "" + pytest.fail( + f"{label} command failed for scenario {scenario.name}\n" + f"Command: {cmd}\n" + f"Return code: {exc.returncode}\n" + f"Stdout: {stdout}\n" + f"Stderr: {stderr}" + ) + else: + # Provide quick visibility into command results when debugging failures. + if completed.stdout: + print(f"[{label}] {scenario.name}: {completed.stdout.strip()}") + + +def _scenario_params() -> list: + # Mirror scenario difficulty tags as pytest markers so ``-m `` selects cases. + params: list = [] + for scenario in load_scenarios(SCENARIO_ROOT): + marks = [] + for tag in scenario.tags: + normalized = tag.strip().lower() + if normalized in MARKED_TAGS: + marks.append(getattr(pytest.mark, normalized)) + params.append(pytest.param(scenario, id=scenario.name, marks=marks)) + return params + + +@pytest.mark.parametrize("scenario", _scenario_params()) +@pytest.mark.parametrize("iteration", range(ITERATIONS)) +def test_ask_agent_live( + scenario: Scenario, + iteration: int, + aks_skip_setup: bool, + aks_skip_cleanup: bool, + request: pytest.FixtureRequest, +) -> None: + iteration_label = f"[iteration {iteration + 1}/{ITERATIONS}]" + if RUN_LIVE: + env = _load_env() + + model = env["MODEL"] + resource_group = scenario.resource_group or env["AKS_AGENT_RESOURCE_GROUP"] + cluster_name = scenario.cluster_name or env["AKS_AGENT_CLUSTER"] + if scenario.kubeconfig: + env["KUBECONFIG"] = scenario.kubeconfig + + if scenario.env_overrides: + env.update(scenario.env_overrides) + + if iteration == 0 and scenario.before_commands and not aks_skip_setup: + print(f"{iteration_label} running setup commands for {scenario.name}") + _run_commands(scenario.before_commands, env, "setup", scenario) + + command = _build_command( + prompt=scenario.prompt, + model=model, + resource_group=resource_group, + cluster_name=cluster_name, + ) + + print(f"{iteration_label} invoking AKS Agent CLI for {scenario.name}") + try: + raw_output = _run_cli(command, env) + answer = "" + passed = True + error_message = None + try: + answer = extract_ai_answer(raw_output) + except ValueError as exc: + answer = raw_output + passed = False + error_message = str(exc) + + classifier_score = None + classifier_rationale = None + need_substring_validation = True + if CLASSIFIER_ENABLED: + evaluation_type = _resolve_evaluation_type(scenario) + classifier_result = evaluate_correctness( + expected_elements=scenario.expected_output, + output=answer, + evaluation_type=evaluation_type, + ) + if classifier_result is not None: + classifier_score = getattr(classifier_result, "score", None) + classifier_rationale = classifier_result.metadata.get( + "rationale", "" + ) + print( + f"{iteration_label} classifier score for {scenario.name}: {classifier_score}" + ) + if classifier_score is None: + print( + f"{iteration_label} classifier returned no score for {scenario.name}; falling back to substring checks" + ) + else: + need_substring_validation = False + if classifier_score < 1: + passed = False + if not error_message: + error_message = "Classifier judged answer incorrect" + else: + print( + f"{iteration_label} classifier unavailable for {scenario.name}; falling back to substring checks" + ) + + if need_substring_validation and passed: + check_error = ensure_expected_output(scenario.expected_output, answer) + if check_error: + passed = False + error_message = check_error + if classifier_score is not None: + _set_user_property(request, "classifier_score", str(classifier_score)) + if classifier_rationale: + _set_user_property(request, "classifier_rationale", classifier_rationale) + + record_info = BRAINTRUST_UPLOADER.record( + scenario_name=scenario.name, + iteration=iteration, + total_iterations=ITERATIONS, + prompt=scenario.prompt, + answer=answer, + expected_output=scenario.expected_output, + model=model, + tags=scenario.tags, + passed=passed, + run_live=True, + raw_output=raw_output, + resource_group=resource_group, + cluster_name=cluster_name, + error_message=error_message, + classifier_score=classifier_score, + classifier_rationale=classifier_rationale, + ) + if record_info: + span_id = record_info.get('span_id') + root_span_id = record_info.get('root_span_id') + url = record_info.get('url') + if span_id: + _set_user_property(request, 'braintrust_span_id', str(span_id)) + if root_span_id: + _set_user_property(request, 'braintrust_root_span_id', str(root_span_id)) + if url and iteration == ITERATIONS - 1: + _set_user_property(request, 'braintrust_experiment_url', str(url)) + + if not passed: + pytest.fail( + f"Scenario {scenario.name}: {error_message or 'evaluation failed'}\nAI answer:\n{answer}" + ) + + if GENERATE_MOCKS: + mock_path = save_mock_answer(scenario.mock_path, answer) + print(f"{iteration_label} [mock] wrote response to {mock_path}") + finally: + if ( + iteration == ITERATIONS - 1 + and scenario.after_commands + and not aks_skip_cleanup + ): + print(f"{iteration_label} running cleanup commands for {scenario.name}") + _run_commands(scenario.after_commands, env, "cleanup", scenario) + else: + if GENERATE_MOCKS: + pytest.fail("GENERATE_MOCKS requires RUN_LIVE=true") + try: + answer = load_mock_answer(scenario.mock_path) + print(f"{iteration_label} replayed mock response for {scenario.name}") + except FileNotFoundError: + pytest.skip(f"Mock response missing for scenario {scenario.name}; rerun with RUN_LIVE=true GENERATE_MOCKS=true") + + error = ensure_expected_output(scenario.expected_output, answer) + passed = error is None + record_info = BRAINTRUST_UPLOADER.record( + scenario_name=scenario.name, + iteration=iteration, + total_iterations=ITERATIONS, + prompt=scenario.prompt, + answer=answer, + expected_output=scenario.expected_output, + model=os.environ.get('MODEL', 'unknown'), + tags=scenario.tags, + passed=passed, + run_live=False, + raw_output=answer, + resource_group=os.environ.get('AKS_AGENT_RESOURCE_GROUP', ''), + cluster_name=os.environ.get('AKS_AGENT_CLUSTER', ''), + error_message=error, + classifier_score=None, + classifier_rationale=None, + ) + if record_info: + span_id = record_info.get('span_id') + root_span_id = record_info.get('root_span_id') + url = record_info.get('url') + if span_id: + _set_user_property(request, 'braintrust_span_id', str(span_id)) + if root_span_id: + _set_user_property(request, 'braintrust_root_span_id', str(root_span_id)) + if url: + _set_user_property(request, 'braintrust_experiment_url', str(url)) + if not passed: + pytest.fail(f"Scenario {scenario.name}: {error}\nAI answer:\n{answer}") diff --git a/src/aks-agent/azext_aks_agent/tests/evals/test_classifier.py b/src/aks-agent/azext_aks_agent/tests/evals/test_classifier.py new file mode 100644 index 00000000000..64de9841f78 --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/test_classifier.py @@ -0,0 +1,80 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from __future__ import annotations + +import importlib +import sys +from types import SimpleNamespace + +import pytest + +MODULE_PATH = "azext_aks_agent.tests.evals.classifier" + + +@pytest.fixture(autouse=True) +def _reset_classifier_module(monkeypatch: pytest.MonkeyPatch): + monkeypatch.delenv("ENABLE_CLASSIFIER", raising=False) + monkeypatch.delenv("CLASSIFIER_MODEL", raising=False) + monkeypatch.delenv("MODEL", raising=False) + monkeypatch.delenv("OPENAI_API_KEY", raising=False) + monkeypatch.delenv("AZURE_API_KEY", raising=False) + monkeypatch.delenv("AZURE_API_BASE", raising=False) + monkeypatch.delenv("AZURE_API_VERSION", raising=False) + monkeypatch.delenv("CLASSIFIER_EVALUATION", raising=False) + if MODULE_PATH in sys.modules: + del sys.modules[MODULE_PATH] + yield + if MODULE_PATH in sys.modules: + del sys.modules[MODULE_PATH] + + +def test_evaluate_correctness_disabled(monkeypatch: pytest.MonkeyPatch): + monkeypatch.setenv("ENABLE_CLASSIFIER", "false") + monkeypatch.setenv("AZURE_API_BASE", "https://example.openai.azure.com") + monkeypatch.setenv("AZURE_API_KEY", "key") + monkeypatch.setenv("AZURE_API_VERSION", "2024-02-15-preview") + classifier = importlib.import_module(MODULE_PATH) + result = classifier.evaluate_correctness( + expected_elements=["foo"], output="bar", evaluation_type="strict" + ) + assert result is None + + +def test_evaluate_correctness_success(monkeypatch: pytest.MonkeyPatch): + monkeypatch.setenv("ENABLE_CLASSIFIER", "true") + monkeypatch.setenv("MODEL", "azure/my-deployment") + monkeypatch.setenv("CLASSIFIER_MODEL", "azure/my-deployment") + monkeypatch.setenv("AZURE_API_BASE", "https://example.openai.azure.com") + monkeypatch.setenv("AZURE_API_KEY", "key") + monkeypatch.setenv("AZURE_API_VERSION", "2024-02-15-preview") + + stub_eval = SimpleNamespace(score=1, metadata={"rationale": "looks good"}) + + class StubClassifier: + def __init__(self, **_: object) -> None: + self.calls: list[tuple] = [] + + def __call__(self, **_: object): + return stub_eval + + def fake_create_client(): + return object(), "my-deployment" + + classifier = importlib.import_module(MODULE_PATH) + classifier._client_initialised = False + classifier._client_available = False + classifier._AUTOEVALS_AVAILABLE = True # type: ignore[attr-defined] + monkeypatch.setattr(classifier, "create_llm_client", fake_create_client) + monkeypatch.setattr(classifier, "LLMClassifier", StubClassifier) + monkeypatch.setattr(classifier, "autoevals_init", lambda client: None) + monkeypatch.setattr(classifier, "wrap_openai", lambda client: client) + + result = classifier.evaluate_correctness( + expected_elements=["foo"], + output="foo bar", + evaluation_type="strict", + ) + assert result is stub_eval diff --git a/src/aks-agent/azext_aks_agent/tests/evals/test_helpers.py b/src/aks-agent/azext_aks_agent/tests/evals/test_helpers.py new file mode 100644 index 00000000000..5933671ebfb --- /dev/null +++ b/src/aks-agent/azext_aks_agent/tests/evals/test_helpers.py @@ -0,0 +1,253 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from __future__ import annotations + +from pathlib import Path +from textwrap import dedent + +import pytest + +from . import helpers +from .braintrust_uploader import BraintrustUploader + + +def test_extract_ai_answer_uses_last_marker() -> None: + output = dedent( + """ + AI: previous answer + some other text + AI: final answer line + """ + ) + assert helpers.extract_ai_answer(output) == "final answer line" + + +def test_extract_ai_answer_missing_marker() -> None: + with pytest.raises(ValueError): + helpers.extract_ai_answer("No AI marker present") + + +def test_ensure_expected_output_success() -> None: + error = helpers.ensure_expected_output(["alpha", "beta"], "beta -- alpha -- gamma") + assert error is None + + +def test_ensure_expected_output_failure() -> None: + message = helpers.ensure_expected_output(["alpha", "beta"], "alpha only") + assert message is not None + assert "beta" in message + + +def test_find_missing_env_vars_detects_empty_values() -> None: + env = {name: "value" for name in helpers.REQUIRED_ENV_VARS} + env[helpers.REQUIRED_ENV_VARS[0]] = "" + missing = helpers.find_missing_env_vars(env) + assert helpers.REQUIRED_ENV_VARS[0] in missing + + +def test_load_scenarios_reads_prompt(tmp_path: Path) -> None: + root = tmp_path / "fixtures" + root.mkdir() + scenario_dir = root / "01_test" + scenario_dir.mkdir() + yaml_path = scenario_dir / "test_case.yaml" + yaml_path.write_text( + """ + user_prompt: say hello + expected_output: + - hello + tags: + - easy + before_test: echo setup + after_test: + - echo cleanup + resource_group: custom-rg + cluster_name: custom-cluster + kubeconfig: /fake/kubeconfig + test_env_vars: + EXTRA: '1' + evaluation: + correctness: + type: loose + """, + encoding="utf-8", + ) + + scenarios = helpers.load_scenarios(root) + assert len(scenarios) == 1 + scenario = scenarios[0] + assert scenario.prompt == "say hello" + assert scenario.expected_output == ["hello"] + assert scenario.tags == ["easy"] + assert scenario.before_commands == ["echo setup"] + assert scenario.after_commands == ["echo cleanup"] + assert scenario.resource_group == "custom-rg" + assert scenario.cluster_name == "custom-cluster" + assert scenario.kubeconfig == "/fake/kubeconfig" + assert scenario.env_overrides == {"EXTRA": "1"} + assert scenario.mock_path == scenario_dir + assert scenario.evaluation_type == "loose" + + +def test_load_scenarios_requires_easy_or_medium(tmp_path: Path) -> None: + root = tmp_path / "fixtures-bad" + root.mkdir() + scenario_dir = root / "01_bad" + scenario_dir.mkdir() + yaml_path = scenario_dir / "test_case.yaml" + yaml_path.write_text( + """ + user_prompt: say hello + expected_output: + - hello + tags: + - experimental + """, + encoding="utf-8", + ) + + with pytest.raises(ValueError) as exc: + helpers.load_scenarios(root) + assert "easy" in str(exc.value) + + +def test_load_scenarios_invalid_evaluation_type(tmp_path: Path) -> None: + root = tmp_path / "fixtures-eval" + root.mkdir() + scenario_dir = root / "01_bad_eval" + scenario_dir.mkdir() + yaml_path = scenario_dir / "test_case.yaml" + yaml_path.write_text( + """ + user_prompt: say hello + expected_output: + - hello + tags: + - easy + evaluation: + correctness: + type: fuzzy + """, + encoding="utf-8", + ) + + with pytest.raises(ValueError) as exc: + helpers.load_scenarios(root) + assert "evaluation.correctness.type" in str(exc.value) + + +def test_load_mock_answer(tmp_path: Path) -> None: + scenario_dir = tmp_path / "scenario" + mock_file = scenario_dir / helpers.MOCK_FILE + mock_file.parent.mkdir(parents=True, exist_ok=True) + mock_file.write_text("mocked answer", encoding="utf-8") + + assert helpers.load_mock_answer(scenario_dir) == "mocked answer" + + +def test_load_mock_answer_missing(tmp_path: Path) -> None: + scenario_dir = tmp_path / "scenario" + scenario_dir.mkdir() + with pytest.raises(FileNotFoundError): + helpers.load_mock_answer(scenario_dir) + + +def test_save_mock_answer(tmp_path: Path) -> None: + scenario_dir = tmp_path / "scenario" + path = helpers.save_mock_answer(scenario_dir, "saved answer") + assert path.exists() + assert path.read_text(encoding="utf-8") == "saved answer" + + + +class _StubSpan: + def __init__(self) -> None: + self.logged = [] + self.ended = False + def log(self, **kwargs): + self.logged.append(kwargs) + def end(self): + self.ended = True + + +class _StubExperiment: + def __init__(self) -> None: + self.spans: list[tuple[str, _StubSpan]] = [] + self.flush_called = False + def start_span(self, name: str): + span = _StubSpan() + self.spans.append((name, span)) + return span + def flush(self): + self.flush_called = True + + +class _StubBraintrustModule: + def __init__(self) -> None: + self.datasets = [] + self.experiments = [] + def init_dataset(self, project: str, name: str): + self.datasets.append((project, name)) + return object() + def init(self, project: str, experiment: str, dataset, open: bool, update: bool, metadata): + self.experiments.append((project, experiment, metadata)) + return _StubExperiment() + + +def test_braintrust_uploader_disabled_without_keys(monkeypatch): + uploader = BraintrustUploader({}) + assert not uploader.enabled + uploader.record( + scenario_name='demo', + iteration=0, + total_iterations=1, + prompt='hi', + answer='hello', + expected_output=['hello'], + model='model', + tags=[], + passed=True, + run_live=True, + raw_output='hello', + resource_group='', + cluster_name='', + ) + + +def test_braintrust_uploader_records(monkeypatch): + import sys + stub = _StubBraintrustModule() + monkeypatch.setitem(sys.modules, 'braintrust', stub) + env = { + 'BRAINTRUST_API_KEY': 'key', + 'BRAINTRUST_ORG': 'org', + 'BRAINTRUST_PROJECT': 'proj', + 'BRAINTRUST_DATASET': 'dataset', + 'EXPERIMENT_ID': 'experiment', + } + uploader = BraintrustUploader(env) + assert uploader.enabled + info = uploader.record( + scenario_name='demo', + iteration=1, + total_iterations=3, + prompt='hi', + answer='hello', + expected_output=['hello'], + model='model', + tags=['easy'], + passed=True, + run_live=True, + raw_output='hello', + resource_group='rg', + cluster_name='cluster', + ) + monkeypatch.delitem(sys.modules, 'braintrust', raising=False) + assert stub.datasets == [('proj', 'dataset')] + assert stub.experiments[-1][0] == 'proj' + assert info is not None + assert 'url' in info + assert 'classifier_score' in info diff --git a/src/aks-agent/conftest.py b/src/aks-agent/conftest.py new file mode 100644 index 00000000000..dc6783502b3 --- /dev/null +++ b/src/aks-agent/conftest.py @@ -0,0 +1,26 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from __future__ import annotations + +import pytest + + +def pytest_addoption(parser: pytest.Parser) -> None: + group = parser.getgroup("aks-agent-evals") + group.addoption( + "--skip-setup", + action="store_true", + dest="aks_skip_setup", + default=False, + help="Skip executing before_test commands in AKS Agent evals.", + ) + group.addoption( + "--skip-cleanup", + action="store_true", + dest="aks_skip_cleanup", + default=False, + help="Skip executing after_test commands in AKS Agent evals.", + )